OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_LOG_H_ | 5 #ifndef V8_LOG_H_ |
6 #define V8_LOG_H_ | 6 #define V8_LOG_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 V(SNAPSHOT_CODE_NAME_EVENT, "snapshot-code-name") \ | 92 V(SNAPSHOT_CODE_NAME_EVENT, "snapshot-code-name") \ |
93 V(TICK_EVENT, "tick") \ | 93 V(TICK_EVENT, "tick") \ |
94 V(REPEAT_META_EVENT, "repeat") \ | 94 V(REPEAT_META_EVENT, "repeat") \ |
95 V(BUILTIN_TAG, "Builtin") \ | 95 V(BUILTIN_TAG, "Builtin") \ |
96 V(CALL_DEBUG_BREAK_TAG, "CallDebugBreak") \ | 96 V(CALL_DEBUG_BREAK_TAG, "CallDebugBreak") \ |
97 V(CALL_DEBUG_PREPARE_STEP_IN_TAG, "CallDebugPrepareStepIn") \ | 97 V(CALL_DEBUG_PREPARE_STEP_IN_TAG, "CallDebugPrepareStepIn") \ |
98 V(CALL_INITIALIZE_TAG, "CallInitialize") \ | 98 V(CALL_INITIALIZE_TAG, "CallInitialize") \ |
99 V(CALL_MEGAMORPHIC_TAG, "CallMegamorphic") \ | 99 V(CALL_MEGAMORPHIC_TAG, "CallMegamorphic") \ |
100 V(CALL_MISS_TAG, "CallMiss") \ | 100 V(CALL_MISS_TAG, "CallMiss") \ |
101 V(CALL_NORMAL_TAG, "CallNormal") \ | 101 V(CALL_NORMAL_TAG, "CallNormal") \ |
102 V(CALL_PRE_MONOMORPHIC_TAG, "CallPreMonomorphic") \ | |
103 V(LOAD_INITIALIZE_TAG, "LoadInitialize") \ | 102 V(LOAD_INITIALIZE_TAG, "LoadInitialize") \ |
104 V(LOAD_PREMONOMORPHIC_TAG, "LoadPreMonomorphic") \ | |
105 V(LOAD_MEGAMORPHIC_TAG, "LoadMegamorphic") \ | 103 V(LOAD_MEGAMORPHIC_TAG, "LoadMegamorphic") \ |
106 V(STORE_INITIALIZE_TAG, "StoreInitialize") \ | 104 V(STORE_INITIALIZE_TAG, "StoreInitialize") \ |
107 V(STORE_PREMONOMORPHIC_TAG, "StorePreMonomorphic") \ | |
108 V(STORE_GENERIC_TAG, "StoreGeneric") \ | 105 V(STORE_GENERIC_TAG, "StoreGeneric") \ |
109 V(STORE_MEGAMORPHIC_TAG, "StoreMegamorphic") \ | 106 V(STORE_MEGAMORPHIC_TAG, "StoreMegamorphic") \ |
110 V(KEYED_CALL_DEBUG_BREAK_TAG, "KeyedCallDebugBreak") \ | 107 V(KEYED_CALL_DEBUG_BREAK_TAG, "KeyedCallDebugBreak") \ |
111 V(KEYED_CALL_DEBUG_PREPARE_STEP_IN_TAG, "KeyedCallDebugPrepareStepIn") \ | 108 V(KEYED_CALL_DEBUG_PREPARE_STEP_IN_TAG, "KeyedCallDebugPrepareStepIn") \ |
112 V(KEYED_CALL_INITIALIZE_TAG, "KeyedCallInitialize") \ | 109 V(KEYED_CALL_INITIALIZE_TAG, "KeyedCallInitialize") \ |
113 V(KEYED_CALL_MEGAMORPHIC_TAG, "KeyedCallMegamorphic") \ | 110 V(KEYED_CALL_MEGAMORPHIC_TAG, "KeyedCallMegamorphic") \ |
114 V(KEYED_CALL_MISS_TAG, "KeyedCallMiss") \ | 111 V(KEYED_CALL_MISS_TAG, "KeyedCallMiss") \ |
115 V(KEYED_CALL_NORMAL_TAG, "KeyedCallNormal") \ | 112 V(KEYED_CALL_NORMAL_TAG, "KeyedCallNormal") \ |
116 V(KEYED_CALL_PRE_MONOMORPHIC_TAG, "KeyedCallPreMonomorphic") \ | |
117 V(CALLBACK_TAG, "Callback") \ | 113 V(CALLBACK_TAG, "Callback") \ |
118 V(EVAL_TAG, "Eval") \ | 114 V(EVAL_TAG, "Eval") \ |
119 V(FUNCTION_TAG, "Function") \ | 115 V(FUNCTION_TAG, "Function") \ |
120 V(HANDLER_TAG, "Handler") \ | 116 V(HANDLER_TAG, "Handler") \ |
121 V(BYTECODE_HANDLER_TAG, "BytecodeHandler") \ | 117 V(BYTECODE_HANDLER_TAG, "BytecodeHandler") \ |
122 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \ | 118 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \ |
123 V(KEYED_LOAD_POLYMORPHIC_IC_TAG, "KeyedLoadPolymorphicIC") \ | 119 V(KEYED_LOAD_POLYMORPHIC_IC_TAG, "KeyedLoadPolymorphicIC") \ |
124 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \ | 120 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \ |
125 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \ | 121 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \ |
126 V(KEYED_STORE_POLYMORPHIC_IC_TAG, "KeyedStorePolymorphicIC") \ | 122 V(KEYED_STORE_POLYMORPHIC_IC_TAG, "KeyedStorePolymorphicIC") \ |
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
526 | 522 |
527 NameBuffer* name_buffer_; | 523 NameBuffer* name_buffer_; |
528 }; | 524 }; |
529 | 525 |
530 | 526 |
531 } // namespace internal | 527 } // namespace internal |
532 } // namespace v8 | 528 } // namespace v8 |
533 | 529 |
534 | 530 |
535 #endif // V8_LOG_H_ | 531 #endif // V8_LOG_H_ |
OLD | NEW |