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

Side by Side Diff: src/log.h

Issue 1912633002: [ic] Split LoadIC into LoadGlobalIC and LoadIC. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebasing Created 4 years, 6 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/interpreter/interpreter.cc ('k') | src/log.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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 V(BYTECODE_HANDLER_TAG, "BytecodeHandler") \ 122 V(BYTECODE_HANDLER_TAG, "BytecodeHandler") \
123 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \ 123 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \
124 V(KEYED_LOAD_POLYMORPHIC_IC_TAG, "KeyedLoadPolymorphicIC") \ 124 V(KEYED_LOAD_POLYMORPHIC_IC_TAG, "KeyedLoadPolymorphicIC") \
125 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \ 125 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \
126 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \ 126 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \
127 V(KEYED_STORE_POLYMORPHIC_IC_TAG, "KeyedStorePolymorphicIC") \ 127 V(KEYED_STORE_POLYMORPHIC_IC_TAG, "KeyedStorePolymorphicIC") \
128 V(KEYED_EXTERNAL_ARRAY_STORE_IC_TAG, "KeyedExternalArrayStoreIC") \ 128 V(KEYED_EXTERNAL_ARRAY_STORE_IC_TAG, "KeyedExternalArrayStoreIC") \
129 V(LAZY_COMPILE_TAG, "LazyCompile") \ 129 V(LAZY_COMPILE_TAG, "LazyCompile") \
130 V(CALL_IC_TAG, "CallIC") \ 130 V(CALL_IC_TAG, "CallIC") \
131 V(LOAD_IC_TAG, "LoadIC") \ 131 V(LOAD_IC_TAG, "LoadIC") \
132 V(LOAD_GLOBAL_IC_TAG, "LoadGlobalIC") \
132 V(LOAD_POLYMORPHIC_IC_TAG, "LoadPolymorphicIC") \ 133 V(LOAD_POLYMORPHIC_IC_TAG, "LoadPolymorphicIC") \
133 V(REG_EXP_TAG, "RegExp") \ 134 V(REG_EXP_TAG, "RegExp") \
134 V(SCRIPT_TAG, "Script") \ 135 V(SCRIPT_TAG, "Script") \
135 V(STORE_IC_TAG, "StoreIC") \ 136 V(STORE_IC_TAG, "StoreIC") \
136 V(STORE_POLYMORPHIC_IC_TAG, "StorePolymorphicIC") \ 137 V(STORE_POLYMORPHIC_IC_TAG, "StorePolymorphicIC") \
137 V(STUB_TAG, "Stub") \ 138 V(STUB_TAG, "Stub") \
138 V(NATIVE_FUNCTION_TAG, "Function") \ 139 V(NATIVE_FUNCTION_TAG, "Function") \
139 V(NATIVE_LAZY_COMPILE_TAG, "LazyCompile") \ 140 V(NATIVE_LAZY_COMPILE_TAG, "LazyCompile") \
140 V(NATIVE_SCRIPT_TAG, "Script") 141 V(NATIVE_SCRIPT_TAG, "Script")
141 // Note that 'NATIVE_' cases for functions and scripts are mapped onto 142 // Note that 'NATIVE_' cases for functions and scripts are mapped onto
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 523
523 NameBuffer* name_buffer_; 524 NameBuffer* name_buffer_;
524 }; 525 };
525 526
526 527
527 } // namespace internal 528 } // namespace internal
528 } // namespace v8 529 } // namespace v8
529 530
530 531
531 #endif // V8_LOG_H_ 532 #endif // V8_LOG_H_
OLDNEW
« no previous file with comments | « src/interpreter/interpreter.cc ('k') | src/log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698