Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(252)

Side by Side Diff: src/log.h

Issue 6546036: Combine typed and pixel arrays. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: fix wrong external element call Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 V(KEYED_CALL_IC_TAG, "KeyedCallIC") \ 112 V(KEYED_CALL_IC_TAG, "KeyedCallIC") \
113 V(KEYED_CALL_INITIALIZE_TAG, "KeyedCallInitialize") \ 113 V(KEYED_CALL_INITIALIZE_TAG, "KeyedCallInitialize") \
114 V(KEYED_CALL_MEGAMORPHIC_TAG, "KeyedCallMegamorphic") \ 114 V(KEYED_CALL_MEGAMORPHIC_TAG, "KeyedCallMegamorphic") \
115 V(KEYED_CALL_MISS_TAG, "KeyedCallMiss") \ 115 V(KEYED_CALL_MISS_TAG, "KeyedCallMiss") \
116 V(KEYED_CALL_NORMAL_TAG, "KeyedCallNormal") \ 116 V(KEYED_CALL_NORMAL_TAG, "KeyedCallNormal") \
117 V(KEYED_CALL_PRE_MONOMORPHIC_TAG, "KeyedCallPreMonomorphic") \ 117 V(KEYED_CALL_PRE_MONOMORPHIC_TAG, "KeyedCallPreMonomorphic") \
118 V(CALLBACK_TAG, "Callback") \ 118 V(CALLBACK_TAG, "Callback") \
119 V(EVAL_TAG, "Eval") \ 119 V(EVAL_TAG, "Eval") \
120 V(FUNCTION_TAG, "Function") \ 120 V(FUNCTION_TAG, "Function") \
121 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \ 121 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \
122 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \
122 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \ 123 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \
124 V(KEYED_EXTERNAL_ARRAY_STORE_IC_TAG, "KeyedExternalArrayStoreIC")\
123 V(LAZY_COMPILE_TAG, "LazyCompile") \ 125 V(LAZY_COMPILE_TAG, "LazyCompile") \
124 V(LOAD_IC_TAG, "LoadIC") \ 126 V(LOAD_IC_TAG, "LoadIC") \
125 V(REG_EXP_TAG, "RegExp") \ 127 V(REG_EXP_TAG, "RegExp") \
126 V(SCRIPT_TAG, "Script") \ 128 V(SCRIPT_TAG, "Script") \
127 V(STORE_IC_TAG, "StoreIC") \ 129 V(STORE_IC_TAG, "StoreIC") \
128 V(STUB_TAG, "Stub") \ 130 V(STUB_TAG, "Stub") \
129 V(NATIVE_FUNCTION_TAG, "Function") \ 131 V(NATIVE_FUNCTION_TAG, "Function") \
130 V(NATIVE_LAZY_COMPILE_TAG, "LazyCompile") \ 132 V(NATIVE_LAZY_COMPILE_TAG, "LazyCompile") \
131 V(NATIVE_SCRIPT_TAG, "Script") 133 V(NATIVE_SCRIPT_TAG, "Script")
132 // Note that 'NATIVE_' cases for functions and scripts are mapped onto 134 // Note that 'NATIVE_' cases for functions and scripts are mapped onto
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 // Class that extracts stack trace, used for profiling. 374 // Class that extracts stack trace, used for profiling.
373 class StackTracer : public AllStatic { 375 class StackTracer : public AllStatic {
374 public: 376 public:
375 static void Trace(TickSample* sample); 377 static void Trace(TickSample* sample);
376 }; 378 };
377 379
378 } } // namespace v8::internal 380 } } // namespace v8::internal
379 381
380 382
381 #endif // V8_LOG_H_ 383 #endif // V8_LOG_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698