| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 V(BYTECODE_HANDLER_TAG, "BytecodeHandler") \ | 122 V(BYTECODE_HANDLER_TAG, "BytecodeHandler") \ |
| 123 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \ | 123 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \ |
| 124 V(KEYED_LOAD_POLYMORPHIC_IC_TAG, "KeyedLoadPolymorphicIC") \ | 124 V(KEYED_LOAD_POLYMORPHIC_IC_TAG, "KeyedLoadPolymorphicIC") \ |
| 125 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \ | 125 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \ |
| 126 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \ | 126 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \ |
| 127 V(KEYED_STORE_POLYMORPHIC_IC_TAG, "KeyedStorePolymorphicIC") \ | 127 V(KEYED_STORE_POLYMORPHIC_IC_TAG, "KeyedStorePolymorphicIC") \ |
| 128 V(KEYED_EXTERNAL_ARRAY_STORE_IC_TAG, "KeyedExternalArrayStoreIC") \ | 128 V(KEYED_EXTERNAL_ARRAY_STORE_IC_TAG, "KeyedExternalArrayStoreIC") \ |
| 129 V(LAZY_COMPILE_TAG, "LazyCompile") \ | 129 V(LAZY_COMPILE_TAG, "LazyCompile") \ |
| 130 V(CALL_IC_TAG, "CallIC") \ | 130 V(CALL_IC_TAG, "CallIC") \ |
| 131 V(LOAD_IC_TAG, "LoadIC") \ | 131 V(LOAD_IC_TAG, "LoadIC") \ |
| 132 V(LOAD_GLOBAL_IC_TAG, "LoadGlobalIC") \ |
| 132 V(LOAD_POLYMORPHIC_IC_TAG, "LoadPolymorphicIC") \ | 133 V(LOAD_POLYMORPHIC_IC_TAG, "LoadPolymorphicIC") \ |
| 133 V(REG_EXP_TAG, "RegExp") \ | 134 V(REG_EXP_TAG, "RegExp") \ |
| 134 V(SCRIPT_TAG, "Script") \ | 135 V(SCRIPT_TAG, "Script") \ |
| 135 V(STORE_IC_TAG, "StoreIC") \ | 136 V(STORE_IC_TAG, "StoreIC") \ |
| 136 V(STORE_POLYMORPHIC_IC_TAG, "StorePolymorphicIC") \ | 137 V(STORE_POLYMORPHIC_IC_TAG, "StorePolymorphicIC") \ |
| 137 V(STUB_TAG, "Stub") \ | 138 V(STUB_TAG, "Stub") \ |
| 138 V(NATIVE_FUNCTION_TAG, "Function") \ | 139 V(NATIVE_FUNCTION_TAG, "Function") \ |
| 139 V(NATIVE_LAZY_COMPILE_TAG, "LazyCompile") \ | 140 V(NATIVE_LAZY_COMPILE_TAG, "LazyCompile") \ |
| 140 V(NATIVE_SCRIPT_TAG, "Script") | 141 V(NATIVE_SCRIPT_TAG, "Script") |
| 141 // Note that 'NATIVE_' cases for functions and scripts are mapped onto | 142 // Note that 'NATIVE_' cases for functions and scripts are mapped onto |
| (...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 | 523 |
| 523 NameBuffer* name_buffer_; | 524 NameBuffer* name_buffer_; |
| 524 }; | 525 }; |
| 525 | 526 |
| 526 | 527 |
| 527 } // namespace internal | 528 } // namespace internal |
| 528 } // namespace v8 | 529 } // namespace v8 |
| 529 | 530 |
| 530 | 531 |
| 531 #endif // V8_LOG_H_ | 532 #endif // V8_LOG_H_ |
| OLD | NEW |