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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 V(KEYED_CALL_IC_TAG, "KeyedCallIC") \ | 112 V(KEYED_CALL_IC_TAG, "KeyedCallIC") \ |
113 V(KEYED_CALL_INITIALIZE_TAG, "KeyedCallInitialize") \ | 113 V(KEYED_CALL_INITIALIZE_TAG, "KeyedCallInitialize") \ |
114 V(KEYED_CALL_MEGAMORPHIC_TAG, "KeyedCallMegamorphic") \ | 114 V(KEYED_CALL_MEGAMORPHIC_TAG, "KeyedCallMegamorphic") \ |
115 V(KEYED_CALL_MISS_TAG, "KeyedCallMiss") \ | 115 V(KEYED_CALL_MISS_TAG, "KeyedCallMiss") \ |
116 V(KEYED_CALL_NORMAL_TAG, "KeyedCallNormal") \ | 116 V(KEYED_CALL_NORMAL_TAG, "KeyedCallNormal") \ |
117 V(KEYED_CALL_PRE_MONOMORPHIC_TAG, "KeyedCallPreMonomorphic") \ | 117 V(KEYED_CALL_PRE_MONOMORPHIC_TAG, "KeyedCallPreMonomorphic") \ |
118 V(CALLBACK_TAG, "Callback") \ | 118 V(CALLBACK_TAG, "Callback") \ |
119 V(EVAL_TAG, "Eval") \ | 119 V(EVAL_TAG, "Eval") \ |
120 V(FUNCTION_TAG, "Function") \ | 120 V(FUNCTION_TAG, "Function") \ |
121 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \ | 121 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \ |
| 122 V(KEYED_LOAD_MEGAMORPHIC_IC_TAG, "KeyedLoadMegamorphicIC") \ |
122 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \ | 123 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \ |
123 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \ | 124 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \ |
| 125 V(KEYED_STORE_MEGAMORPHIC_IC_TAG, "KeyedStoreMegamorphicIC") \ |
124 V(KEYED_EXTERNAL_ARRAY_STORE_IC_TAG, "KeyedExternalArrayStoreIC")\ | 126 V(KEYED_EXTERNAL_ARRAY_STORE_IC_TAG, "KeyedExternalArrayStoreIC")\ |
125 V(LAZY_COMPILE_TAG, "LazyCompile") \ | 127 V(LAZY_COMPILE_TAG, "LazyCompile") \ |
126 V(LOAD_IC_TAG, "LoadIC") \ | 128 V(LOAD_IC_TAG, "LoadIC") \ |
127 V(REG_EXP_TAG, "RegExp") \ | 129 V(REG_EXP_TAG, "RegExp") \ |
128 V(SCRIPT_TAG, "Script") \ | 130 V(SCRIPT_TAG, "Script") \ |
129 V(STORE_IC_TAG, "StoreIC") \ | 131 V(STORE_IC_TAG, "StoreIC") \ |
130 V(STUB_TAG, "Stub") \ | 132 V(STUB_TAG, "Stub") \ |
131 V(NATIVE_FUNCTION_TAG, "Function") \ | 133 V(NATIVE_FUNCTION_TAG, "Function") \ |
132 V(NATIVE_LAZY_COMPILE_TAG, "LazyCompile") \ | 134 V(NATIVE_LAZY_COMPILE_TAG, "LazyCompile") \ |
133 V(NATIVE_SCRIPT_TAG, "Script") | 135 V(NATIVE_SCRIPT_TAG, "Script") |
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
437 // Class that extracts stack trace, used for profiling. | 439 // Class that extracts stack trace, used for profiling. |
438 class StackTracer : public AllStatic { | 440 class StackTracer : public AllStatic { |
439 public: | 441 public: |
440 static void Trace(Isolate* isolate, TickSample* sample); | 442 static void Trace(Isolate* isolate, TickSample* sample); |
441 }; | 443 }; |
442 | 444 |
443 } } // namespace v8::internal | 445 } } // namespace v8::internal |
444 | 446 |
445 | 447 |
446 #endif // V8_LOG_H_ | 448 #endif // V8_LOG_H_ |
OLD | NEW |