Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(331)

Side by Side Diff: src/log.h

Issue 1846963002: Use a dictionary-mode code cache on the map rather than a dual system. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 V(SNAPSHOT_CODE_NAME_EVENT, "snapshot-code-name") \ 93 V(SNAPSHOT_CODE_NAME_EVENT, "snapshot-code-name") \
94 V(TICK_EVENT, "tick") \ 94 V(TICK_EVENT, "tick") \
95 V(REPEAT_META_EVENT, "repeat") \ 95 V(REPEAT_META_EVENT, "repeat") \
96 V(BUILTIN_TAG, "Builtin") \ 96 V(BUILTIN_TAG, "Builtin") \
97 V(CALL_DEBUG_BREAK_TAG, "CallDebugBreak") \ 97 V(CALL_DEBUG_BREAK_TAG, "CallDebugBreak") \
98 V(CALL_DEBUG_PREPARE_STEP_IN_TAG, "CallDebugPrepareStepIn") \ 98 V(CALL_DEBUG_PREPARE_STEP_IN_TAG, "CallDebugPrepareStepIn") \
99 V(CALL_INITIALIZE_TAG, "CallInitialize") \ 99 V(CALL_INITIALIZE_TAG, "CallInitialize") \
100 V(CALL_MEGAMORPHIC_TAG, "CallMegamorphic") \ 100 V(CALL_MEGAMORPHIC_TAG, "CallMegamorphic") \
101 V(CALL_MISS_TAG, "CallMiss") \ 101 V(CALL_MISS_TAG, "CallMiss") \
102 V(CALL_NORMAL_TAG, "CallNormal") \ 102 V(CALL_NORMAL_TAG, "CallNormal") \
103 V(CALL_PRE_MONOMORPHIC_TAG, "CallPreMonomorphic") \
104 V(LOAD_INITIALIZE_TAG, "LoadInitialize") \ 103 V(LOAD_INITIALIZE_TAG, "LoadInitialize") \
105 V(LOAD_PREMONOMORPHIC_TAG, "LoadPreMonomorphic") \
106 V(LOAD_MEGAMORPHIC_TAG, "LoadMegamorphic") \ 104 V(LOAD_MEGAMORPHIC_TAG, "LoadMegamorphic") \
107 V(STORE_INITIALIZE_TAG, "StoreInitialize") \ 105 V(STORE_INITIALIZE_TAG, "StoreInitialize") \
108 V(STORE_PREMONOMORPHIC_TAG, "StorePreMonomorphic") \
109 V(STORE_GENERIC_TAG, "StoreGeneric") \ 106 V(STORE_GENERIC_TAG, "StoreGeneric") \
110 V(STORE_MEGAMORPHIC_TAG, "StoreMegamorphic") \ 107 V(STORE_MEGAMORPHIC_TAG, "StoreMegamorphic") \
111 V(KEYED_CALL_DEBUG_BREAK_TAG, "KeyedCallDebugBreak") \ 108 V(KEYED_CALL_DEBUG_BREAK_TAG, "KeyedCallDebugBreak") \
112 V(KEYED_CALL_DEBUG_PREPARE_STEP_IN_TAG, "KeyedCallDebugPrepareStepIn") \ 109 V(KEYED_CALL_DEBUG_PREPARE_STEP_IN_TAG, "KeyedCallDebugPrepareStepIn") \
113 V(KEYED_CALL_INITIALIZE_TAG, "KeyedCallInitialize") \ 110 V(KEYED_CALL_INITIALIZE_TAG, "KeyedCallInitialize") \
114 V(KEYED_CALL_MEGAMORPHIC_TAG, "KeyedCallMegamorphic") \ 111 V(KEYED_CALL_MEGAMORPHIC_TAG, "KeyedCallMegamorphic") \
115 V(KEYED_CALL_MISS_TAG, "KeyedCallMiss") \ 112 V(KEYED_CALL_MISS_TAG, "KeyedCallMiss") \
116 V(KEYED_CALL_NORMAL_TAG, "KeyedCallNormal") \ 113 V(KEYED_CALL_NORMAL_TAG, "KeyedCallNormal") \
117 V(KEYED_CALL_PRE_MONOMORPHIC_TAG, "KeyedCallPreMonomorphic") \
118 V(CALLBACK_TAG, "Callback") \ 114 V(CALLBACK_TAG, "Callback") \
119 V(EVAL_TAG, "Eval") \ 115 V(EVAL_TAG, "Eval") \
120 V(FUNCTION_TAG, "Function") \ 116 V(FUNCTION_TAG, "Function") \
121 V(HANDLER_TAG, "Handler") \ 117 V(HANDLER_TAG, "Handler") \
122 V(BYTECODE_HANDLER_TAG, "BytecodeHandler") \ 118 V(BYTECODE_HANDLER_TAG, "BytecodeHandler") \
123 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \ 119 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \
124 V(KEYED_LOAD_POLYMORPHIC_IC_TAG, "KeyedLoadPolymorphicIC") \ 120 V(KEYED_LOAD_POLYMORPHIC_IC_TAG, "KeyedLoadPolymorphicIC") \
125 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \ 121 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \
126 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \ 122 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \
127 V(KEYED_STORE_POLYMORPHIC_IC_TAG, "KeyedStorePolymorphicIC") \ 123 V(KEYED_STORE_POLYMORPHIC_IC_TAG, "KeyedStorePolymorphicIC") \
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 524
529 NameBuffer* name_buffer_; 525 NameBuffer* name_buffer_;
530 }; 526 };
531 527
532 528
533 } // namespace internal 529 } // namespace internal
534 } // namespace v8 530 } // namespace v8
535 531
536 532
537 #endif // V8_LOG_H_ 533 #endif // V8_LOG_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698