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

Side by Side Diff: src/log.h

Issue 25044002: Tag handlers as HANDLER rather than STUB. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comment Created 7 years, 2 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/ic.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 // 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
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 "KeyedCallDebugPrepareStepIn") \ 124 "KeyedCallDebugPrepareStepIn") \
125 V(KEYED_CALL_IC_TAG, "KeyedCallIC") \ 125 V(KEYED_CALL_IC_TAG, "KeyedCallIC") \
126 V(KEYED_CALL_INITIALIZE_TAG, "KeyedCallInitialize") \ 126 V(KEYED_CALL_INITIALIZE_TAG, "KeyedCallInitialize") \
127 V(KEYED_CALL_MEGAMORPHIC_TAG, "KeyedCallMegamorphic") \ 127 V(KEYED_CALL_MEGAMORPHIC_TAG, "KeyedCallMegamorphic") \
128 V(KEYED_CALL_MISS_TAG, "KeyedCallMiss") \ 128 V(KEYED_CALL_MISS_TAG, "KeyedCallMiss") \
129 V(KEYED_CALL_NORMAL_TAG, "KeyedCallNormal") \ 129 V(KEYED_CALL_NORMAL_TAG, "KeyedCallNormal") \
130 V(KEYED_CALL_PRE_MONOMORPHIC_TAG, "KeyedCallPreMonomorphic") \ 130 V(KEYED_CALL_PRE_MONOMORPHIC_TAG, "KeyedCallPreMonomorphic") \
131 V(CALLBACK_TAG, "Callback") \ 131 V(CALLBACK_TAG, "Callback") \
132 V(EVAL_TAG, "Eval") \ 132 V(EVAL_TAG, "Eval") \
133 V(FUNCTION_TAG, "Function") \ 133 V(FUNCTION_TAG, "Function") \
134 V(HANDLER_TAG, "Handler") \
134 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \ 135 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \
135 V(KEYED_LOAD_POLYMORPHIC_IC_TAG, "KeyedLoadPolymorphicIC") \ 136 V(KEYED_LOAD_POLYMORPHIC_IC_TAG, "KeyedLoadPolymorphicIC") \
136 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \ 137 V(KEYED_EXTERNAL_ARRAY_LOAD_IC_TAG, "KeyedExternalArrayLoadIC") \
137 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \ 138 V(KEYED_STORE_IC_TAG, "KeyedStoreIC") \
138 V(KEYED_STORE_POLYMORPHIC_IC_TAG, "KeyedStorePolymorphicIC") \ 139 V(KEYED_STORE_POLYMORPHIC_IC_TAG, "KeyedStorePolymorphicIC") \
139 V(KEYED_EXTERNAL_ARRAY_STORE_IC_TAG, "KeyedExternalArrayStoreIC") \ 140 V(KEYED_EXTERNAL_ARRAY_STORE_IC_TAG, "KeyedExternalArrayStoreIC") \
140 V(LAZY_COMPILE_TAG, "LazyCompile") \ 141 V(LAZY_COMPILE_TAG, "LazyCompile") \
141 V(LOAD_IC_TAG, "LoadIC") \ 142 V(LOAD_IC_TAG, "LoadIC") \
142 V(LOAD_POLYMORPHIC_IC_TAG, "LoadPolymorphicIC") \ 143 V(LOAD_POLYMORPHIC_IC_TAG, "LoadPolymorphicIC") \
143 V(REG_EXP_TAG, "RegExp") \ 144 V(REG_EXP_TAG, "RegExp") \
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 int length) = 0; 528 int length) = 0;
528 529
529 NameBuffer* name_buffer_; 530 NameBuffer* name_buffer_;
530 }; 531 };
531 532
532 533
533 } } // namespace v8::internal 534 } } // namespace v8::internal
534 535
535 536
536 #endif // V8_LOG_H_ 537 #endif // V8_LOG_H_
OLDNEW
« no previous file with comments | « src/ic.cc ('k') | src/log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698