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

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: Addressed comment 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
« no previous file with comments | « src/ic/x87/stub-cache-x87.cc ('k') | src/mips/code-stubs-mips.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 V(SNAPSHOT_CODE_NAME_EVENT, "snapshot-code-name") \ 92 V(SNAPSHOT_CODE_NAME_EVENT, "snapshot-code-name") \
93 V(TICK_EVENT, "tick") \ 93 V(TICK_EVENT, "tick") \
94 V(REPEAT_META_EVENT, "repeat") \ 94 V(REPEAT_META_EVENT, "repeat") \
95 V(BUILTIN_TAG, "Builtin") \ 95 V(BUILTIN_TAG, "Builtin") \
96 V(CALL_DEBUG_BREAK_TAG, "CallDebugBreak") \ 96 V(CALL_DEBUG_BREAK_TAG, "CallDebugBreak") \
97 V(CALL_DEBUG_PREPARE_STEP_IN_TAG, "CallDebugPrepareStepIn") \ 97 V(CALL_DEBUG_PREPARE_STEP_IN_TAG, "CallDebugPrepareStepIn") \
98 V(CALL_INITIALIZE_TAG, "CallInitialize") \ 98 V(CALL_INITIALIZE_TAG, "CallInitialize") \
99 V(CALL_MEGAMORPHIC_TAG, "CallMegamorphic") \ 99 V(CALL_MEGAMORPHIC_TAG, "CallMegamorphic") \
100 V(CALL_MISS_TAG, "CallMiss") \ 100 V(CALL_MISS_TAG, "CallMiss") \
101 V(CALL_NORMAL_TAG, "CallNormal") \ 101 V(CALL_NORMAL_TAG, "CallNormal") \
102 V(CALL_PRE_MONOMORPHIC_TAG, "CallPreMonomorphic") \
103 V(LOAD_INITIALIZE_TAG, "LoadInitialize") \ 102 V(LOAD_INITIALIZE_TAG, "LoadInitialize") \
104 V(LOAD_PREMONOMORPHIC_TAG, "LoadPreMonomorphic") \
105 V(LOAD_MEGAMORPHIC_TAG, "LoadMegamorphic") \ 103 V(LOAD_MEGAMORPHIC_TAG, "LoadMegamorphic") \
106 V(STORE_INITIALIZE_TAG, "StoreInitialize") \ 104 V(STORE_INITIALIZE_TAG, "StoreInitialize") \
107 V(STORE_PREMONOMORPHIC_TAG, "StorePreMonomorphic") \
108 V(STORE_GENERIC_TAG, "StoreGeneric") \ 105 V(STORE_GENERIC_TAG, "StoreGeneric") \
109 V(STORE_MEGAMORPHIC_TAG, "StoreMegamorphic") \ 106 V(STORE_MEGAMORPHIC_TAG, "StoreMegamorphic") \
110 V(KEYED_CALL_DEBUG_BREAK_TAG, "KeyedCallDebugBreak") \ 107 V(KEYED_CALL_DEBUG_BREAK_TAG, "KeyedCallDebugBreak") \
111 V(KEYED_CALL_DEBUG_PREPARE_STEP_IN_TAG, "KeyedCallDebugPrepareStepIn") \ 108 V(KEYED_CALL_DEBUG_PREPARE_STEP_IN_TAG, "KeyedCallDebugPrepareStepIn") \
112 V(KEYED_CALL_INITIALIZE_TAG, "KeyedCallInitialize") \ 109 V(KEYED_CALL_INITIALIZE_TAG, "KeyedCallInitialize") \
113 V(KEYED_CALL_MEGAMORPHIC_TAG, "KeyedCallMegamorphic") \ 110 V(KEYED_CALL_MEGAMORPHIC_TAG, "KeyedCallMegamorphic") \
114 V(KEYED_CALL_MISS_TAG, "KeyedCallMiss") \ 111 V(KEYED_CALL_MISS_TAG, "KeyedCallMiss") \
115 V(KEYED_CALL_NORMAL_TAG, "KeyedCallNormal") \ 112 V(KEYED_CALL_NORMAL_TAG, "KeyedCallNormal") \
116 V(KEYED_CALL_PRE_MONOMORPHIC_TAG, "KeyedCallPreMonomorphic") \
117 V(CALLBACK_TAG, "Callback") \ 113 V(CALLBACK_TAG, "Callback") \
118 V(EVAL_TAG, "Eval") \ 114 V(EVAL_TAG, "Eval") \
119 V(FUNCTION_TAG, "Function") \ 115 V(FUNCTION_TAG, "Function") \
120 V(HANDLER_TAG, "Handler") \ 116 V(HANDLER_TAG, "Handler") \
121 V(BYTECODE_HANDLER_TAG, "BytecodeHandler") \ 117 V(BYTECODE_HANDLER_TAG, "BytecodeHandler") \
122 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \ 118 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \
123 V(KEYED_LOAD_POLYMORPHIC_IC_TAG, "KeyedLoadPolymorphicIC") \ 119 V(KEYED_LOAD_POLYMORPHIC_IC_TAG, "KeyedLoadPolymorphicIC") \
124 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \ 120 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \
125 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \ 121 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \
126 V(KEYED_STORE_POLYMORPHIC_IC_TAG, "KeyedStorePolymorphicIC") \ 122 V(KEYED_STORE_POLYMORPHIC_IC_TAG, "KeyedStorePolymorphicIC") \
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 522
527 NameBuffer* name_buffer_; 523 NameBuffer* name_buffer_;
528 }; 524 };
529 525
530 526
531 } // namespace internal 527 } // namespace internal
532 } // namespace v8 528 } // namespace v8
533 529
534 530
535 #endif // V8_LOG_H_ 531 #endif // V8_LOG_H_
OLDNEW
« no previous file with comments | « src/ic/x87/stub-cache-x87.cc ('k') | src/mips/code-stubs-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698