| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 V(EVAL_TAG, "Eval") \ | 137 V(EVAL_TAG, "Eval") \ |
| 138 V(FUNCTION_TAG, "Function") \ | 138 V(FUNCTION_TAG, "Function") \ |
| 139 V(HANDLER_TAG, "Handler") \ | 139 V(HANDLER_TAG, "Handler") \ |
| 140 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \ | 140 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \ |
| 141 V(KEYED_LOAD_POLYMORPHIC_IC_TAG, "KeyedLoadPolymorphicIC") \ | 141 V(KEYED_LOAD_POLYMORPHIC_IC_TAG, "KeyedLoadPolymorphicIC") \ |
| 142 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \ | 142 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \ |
| 143 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \ | 143 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \ |
| 144 V(KEYED_STORE_POLYMORPHIC_IC_TAG, "KeyedStorePolymorphicIC") \ | 144 V(KEYED_STORE_POLYMORPHIC_IC_TAG, "KeyedStorePolymorphicIC") \ |
| 145 V(KEYED_EXTERNAL_ARRAY_STORE_IC_TAG, "KeyedExternalArrayStoreIC") \ | 145 V(KEYED_EXTERNAL_ARRAY_STORE_IC_TAG, "KeyedExternalArrayStoreIC") \ |
| 146 V(LAZY_COMPILE_TAG, "LazyCompile") \ | 146 V(LAZY_COMPILE_TAG, "LazyCompile") \ |
| 147 V(CALL_IC_TAG, "CallIC") \ |
| 147 V(LOAD_IC_TAG, "LoadIC") \ | 148 V(LOAD_IC_TAG, "LoadIC") \ |
| 148 V(LOAD_POLYMORPHIC_IC_TAG, "LoadPolymorphicIC") \ | 149 V(LOAD_POLYMORPHIC_IC_TAG, "LoadPolymorphicIC") \ |
| 149 V(REG_EXP_TAG, "RegExp") \ | 150 V(REG_EXP_TAG, "RegExp") \ |
| 150 V(SCRIPT_TAG, "Script") \ | 151 V(SCRIPT_TAG, "Script") \ |
| 151 V(STORE_IC_TAG, "StoreIC") \ | 152 V(STORE_IC_TAG, "StoreIC") \ |
| 152 V(STORE_POLYMORPHIC_IC_TAG, "StorePolymorphicIC") \ | 153 V(STORE_POLYMORPHIC_IC_TAG, "StorePolymorphicIC") \ |
| 153 V(STUB_TAG, "Stub") \ | 154 V(STUB_TAG, "Stub") \ |
| 154 V(NATIVE_FUNCTION_TAG, "Function") \ | 155 V(NATIVE_FUNCTION_TAG, "Function") \ |
| 155 V(NATIVE_LAZY_COMPILE_TAG, "LazyCompile") \ | 156 V(NATIVE_LAZY_COMPILE_TAG, "LazyCompile") \ |
| 156 V(NATIVE_SCRIPT_TAG, "Script") | 157 V(NATIVE_SCRIPT_TAG, "Script") |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 int length) = 0; | 541 int length) = 0; |
| 541 | 542 |
| 542 NameBuffer* name_buffer_; | 543 NameBuffer* name_buffer_; |
| 543 }; | 544 }; |
| 544 | 545 |
| 545 | 546 |
| 546 } } // namespace v8::internal | 547 } } // namespace v8::internal |
| 547 | 548 |
| 548 | 549 |
| 549 #endif // V8_LOG_H_ | 550 #endif // V8_LOG_H_ |
| OLD | NEW |