| OLD | NEW |
| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 V(KEYED_CALL_IC_TAG, "KeyedCallIC") \ | 110 V(KEYED_CALL_IC_TAG, "KeyedCallIC") \ |
| 111 V(KEYED_CALL_INITIALIZE_TAG, "KeyedCallInitialize") \ | 111 V(KEYED_CALL_INITIALIZE_TAG, "KeyedCallInitialize") \ |
| 112 V(KEYED_CALL_MEGAMORPHIC_TAG, "KeyedCallMegamorphic") \ | 112 V(KEYED_CALL_MEGAMORPHIC_TAG, "KeyedCallMegamorphic") \ |
| 113 V(KEYED_CALL_MISS_TAG, "KeyedCallMiss") \ | 113 V(KEYED_CALL_MISS_TAG, "KeyedCallMiss") \ |
| 114 V(KEYED_CALL_NORMAL_TAG, "KeyedCallNormal") \ | 114 V(KEYED_CALL_NORMAL_TAG, "KeyedCallNormal") \ |
| 115 V(KEYED_CALL_PRE_MONOMORPHIC_TAG, "KeyedCallPreMonomorphic") \ | 115 V(KEYED_CALL_PRE_MONOMORPHIC_TAG, "KeyedCallPreMonomorphic") \ |
| 116 V(CALLBACK_TAG, "Callback") \ | 116 V(CALLBACK_TAG, "Callback") \ |
| 117 V(EVAL_TAG, "Eval") \ | 117 V(EVAL_TAG, "Eval") \ |
| 118 V(FUNCTION_TAG, "Function") \ | 118 V(FUNCTION_TAG, "Function") \ |
| 119 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \ | 119 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \ |
| 120 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \ |
| 120 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \ | 121 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \ |
| 122 V(KEYED_EXTERNAL_ARRAY_STORE_IC_TAG, "KeyedExternalArrayStoreIC")\ |
| 121 V(LAZY_COMPILE_TAG, "LazyCompile") \ | 123 V(LAZY_COMPILE_TAG, "LazyCompile") \ |
| 122 V(LOAD_IC_TAG, "LoadIC") \ | 124 V(LOAD_IC_TAG, "LoadIC") \ |
| 123 V(REG_EXP_TAG, "RegExp") \ | 125 V(REG_EXP_TAG, "RegExp") \ |
| 124 V(SCRIPT_TAG, "Script") \ | 126 V(SCRIPT_TAG, "Script") \ |
| 125 V(STORE_IC_TAG, "StoreIC") \ | 127 V(STORE_IC_TAG, "StoreIC") \ |
| 126 V(STUB_TAG, "Stub") \ | 128 V(STUB_TAG, "Stub") \ |
| 127 V(NATIVE_FUNCTION_TAG, "Function") \ | 129 V(NATIVE_FUNCTION_TAG, "Function") \ |
| 128 V(NATIVE_LAZY_COMPILE_TAG, "LazyCompile") \ | 130 V(NATIVE_LAZY_COMPILE_TAG, "LazyCompile") \ |
| 129 V(NATIVE_SCRIPT_TAG, "Script") | 131 V(NATIVE_SCRIPT_TAG, "Script") |
| 130 // Note that 'NATIVE_' cases for functions and scripts are mapped onto | 132 // Note that 'NATIVE_' cases for functions and scripts are mapped onto |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 // Class that extracts stack trace, used for profiling. | 372 // Class that extracts stack trace, used for profiling. |
| 371 class StackTracer : public AllStatic { | 373 class StackTracer : public AllStatic { |
| 372 public: | 374 public: |
| 373 static void Trace(TickSample* sample); | 375 static void Trace(TickSample* sample); |
| 374 }; | 376 }; |
| 375 | 377 |
| 376 } } // namespace v8::internal | 378 } } // namespace v8::internal |
| 377 | 379 |
| 378 | 380 |
| 379 #endif // V8_LOG_H_ | 381 #endif // V8_LOG_H_ |
| OLD | NEW |