| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 |
| 11 // with the distribution. | 11 // with the distribution. |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 V(KEYED_CALL_IC_TAG, "KeyedCallIC") \ | 115 V(KEYED_CALL_IC_TAG, "KeyedCallIC") \ |
| 116 V(KEYED_CALL_INITIALIZE_TAG, "KeyedCallInitialize") \ | 116 V(KEYED_CALL_INITIALIZE_TAG, "KeyedCallInitialize") \ |
| 117 V(KEYED_CALL_MEGAMORPHIC_TAG, "KeyedCallMegamorphic") \ | 117 V(KEYED_CALL_MEGAMORPHIC_TAG, "KeyedCallMegamorphic") \ |
| 118 V(KEYED_CALL_MISS_TAG, "KeyedCallMiss") \ | 118 V(KEYED_CALL_MISS_TAG, "KeyedCallMiss") \ |
| 119 V(KEYED_CALL_NORMAL_TAG, "KeyedCallNormal") \ | 119 V(KEYED_CALL_NORMAL_TAG, "KeyedCallNormal") \ |
| 120 V(KEYED_CALL_PRE_MONOMORPHIC_TAG, "KeyedCallPreMonomorphic") \ | 120 V(KEYED_CALL_PRE_MONOMORPHIC_TAG, "KeyedCallPreMonomorphic") \ |
| 121 V(CALLBACK_TAG, "Callback") \ | 121 V(CALLBACK_TAG, "Callback") \ |
| 122 V(EVAL_TAG, "Eval") \ | 122 V(EVAL_TAG, "Eval") \ |
| 123 V(FUNCTION_TAG, "Function") \ | 123 V(FUNCTION_TAG, "Function") \ |
| 124 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \ | 124 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \ |
| 125 V(KEYED_LOAD_MEGAMORPHIC_IC_TAG, "KeyedLoadMegamorphicIC") \ |
| 125 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \ | 126 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \ |
| 126 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \ | 127 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \ |
| 128 V(KEYED_STORE_MEGAMORPHIC_IC_TAG, "KeyedStoreMegamorphicIC") \ |
| 127 V(KEYED_EXTERNAL_ARRAY_STORE_IC_TAG, "KeyedExternalArrayStoreIC")\ | 129 V(KEYED_EXTERNAL_ARRAY_STORE_IC_TAG, "KeyedExternalArrayStoreIC")\ |
| 128 V(LAZY_COMPILE_TAG, "LazyCompile") \ | 130 V(LAZY_COMPILE_TAG, "LazyCompile") \ |
| 129 V(LOAD_IC_TAG, "LoadIC") \ | 131 V(LOAD_IC_TAG, "LoadIC") \ |
| 130 V(REG_EXP_TAG, "RegExp") \ | 132 V(REG_EXP_TAG, "RegExp") \ |
| 131 V(SCRIPT_TAG, "Script") \ | 133 V(SCRIPT_TAG, "Script") \ |
| 132 V(STORE_IC_TAG, "StoreIC") \ | 134 V(STORE_IC_TAG, "StoreIC") \ |
| 133 V(STUB_TAG, "Stub") \ | 135 V(STUB_TAG, "Stub") \ |
| 134 V(NATIVE_FUNCTION_TAG, "Function") \ | 136 V(NATIVE_FUNCTION_TAG, "Function") \ |
| 135 V(NATIVE_LAZY_COMPILE_TAG, "LazyCompile") \ | 137 V(NATIVE_LAZY_COMPILE_TAG, "LazyCompile") \ |
| 136 V(NATIVE_SCRIPT_TAG, "Script") | 138 V(NATIVE_SCRIPT_TAG, "Script") |
| (...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 // Class that extracts stack trace, used for profiling. | 467 // Class that extracts stack trace, used for profiling. |
| 466 class StackTracer : public AllStatic { | 468 class StackTracer : public AllStatic { |
| 467 public: | 469 public: |
| 468 static void Trace(Isolate* isolate, TickSample* sample); | 470 static void Trace(Isolate* isolate, TickSample* sample); |
| 469 }; | 471 }; |
| 470 | 472 |
| 471 } } // namespace v8::internal | 473 } } // namespace v8::internal |
| 472 | 474 |
| 473 | 475 |
| 474 #endif // V8_LOG_H_ | 476 #endif // V8_LOG_H_ |
| OLD | NEW |