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

Side by Side Diff: src/log.h

Issue 247373002: CallICStub with a "never patch" approach until customization. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: REBASE + code size multiplier. Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « src/liveedit.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 "allocation.h" 8 #include "allocation.h"
9 #include "objects.h" 9 #include "objects.h"
10 #include "platform.h" 10 #include "platform.h"
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 V(EVAL_TAG, "Eval") \ 114 V(EVAL_TAG, "Eval") \
115 V(FUNCTION_TAG, "Function") \ 115 V(FUNCTION_TAG, "Function") \
116 V(HANDLER_TAG, "Handler") \ 116 V(HANDLER_TAG, "Handler") \
117 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \ 117 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \
118 V(KEYED_LOAD_POLYMORPHIC_IC_TAG, "KeyedLoadPolymorphicIC") \ 118 V(KEYED_LOAD_POLYMORPHIC_IC_TAG, "KeyedLoadPolymorphicIC") \
119 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \ 119 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \
120 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \ 120 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \
121 V(KEYED_STORE_POLYMORPHIC_IC_TAG, "KeyedStorePolymorphicIC") \ 121 V(KEYED_STORE_POLYMORPHIC_IC_TAG, "KeyedStorePolymorphicIC") \
122 V(KEYED_EXTERNAL_ARRAY_STORE_IC_TAG, "KeyedExternalArrayStoreIC") \ 122 V(KEYED_EXTERNAL_ARRAY_STORE_IC_TAG, "KeyedExternalArrayStoreIC") \
123 V(LAZY_COMPILE_TAG, "LazyCompile") \ 123 V(LAZY_COMPILE_TAG, "LazyCompile") \
124 V(CALL_IC_TAG, "CallIC") \
124 V(LOAD_IC_TAG, "LoadIC") \ 125 V(LOAD_IC_TAG, "LoadIC") \
125 V(LOAD_POLYMORPHIC_IC_TAG, "LoadPolymorphicIC") \ 126 V(LOAD_POLYMORPHIC_IC_TAG, "LoadPolymorphicIC") \
126 V(REG_EXP_TAG, "RegExp") \ 127 V(REG_EXP_TAG, "RegExp") \
127 V(SCRIPT_TAG, "Script") \ 128 V(SCRIPT_TAG, "Script") \
128 V(STORE_IC_TAG, "StoreIC") \ 129 V(STORE_IC_TAG, "StoreIC") \
129 V(STORE_POLYMORPHIC_IC_TAG, "StorePolymorphicIC") \ 130 V(STORE_POLYMORPHIC_IC_TAG, "StorePolymorphicIC") \
130 V(STUB_TAG, "Stub") \ 131 V(STUB_TAG, "Stub") \
131 V(NATIVE_FUNCTION_TAG, "Function") \ 132 V(NATIVE_FUNCTION_TAG, "Function") \
132 V(NATIVE_LAZY_COMPILE_TAG, "LazyCompile") \ 133 V(NATIVE_LAZY_COMPILE_TAG, "LazyCompile") \
133 V(NATIVE_SCRIPT_TAG, "Script") 134 V(NATIVE_SCRIPT_TAG, "Script")
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 int length) = 0; 518 int length) = 0;
518 519
519 NameBuffer* name_buffer_; 520 NameBuffer* name_buffer_;
520 }; 521 };
521 522
522 523
523 } } // namespace v8::internal 524 } } // namespace v8::internal
524 525
525 526
526 #endif // V8_LOG_H_ 527 #endif // V8_LOG_H_
OLDNEW
« no previous file with comments | « src/liveedit.cc ('k') | src/log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698