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

Side by Side Diff: src/log.h

Issue 148223002: Remove CallICs (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Update test262 status file Created 6 years, 10 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/isolate.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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 V(CODE_DELETE_EVENT, "code-delete") \ 106 V(CODE_DELETE_EVENT, "code-delete") \
107 V(CODE_MOVING_GC, "code-moving-gc") \ 107 V(CODE_MOVING_GC, "code-moving-gc") \
108 V(SHARED_FUNC_MOVE_EVENT, "sfi-move") \ 108 V(SHARED_FUNC_MOVE_EVENT, "sfi-move") \
109 V(SNAPSHOT_POSITION_EVENT, "snapshot-pos") \ 109 V(SNAPSHOT_POSITION_EVENT, "snapshot-pos") \
110 V(SNAPSHOT_CODE_NAME_EVENT, "snapshot-code-name") \ 110 V(SNAPSHOT_CODE_NAME_EVENT, "snapshot-code-name") \
111 V(TICK_EVENT, "tick") \ 111 V(TICK_EVENT, "tick") \
112 V(REPEAT_META_EVENT, "repeat") \ 112 V(REPEAT_META_EVENT, "repeat") \
113 V(BUILTIN_TAG, "Builtin") \ 113 V(BUILTIN_TAG, "Builtin") \
114 V(CALL_DEBUG_BREAK_TAG, "CallDebugBreak") \ 114 V(CALL_DEBUG_BREAK_TAG, "CallDebugBreak") \
115 V(CALL_DEBUG_PREPARE_STEP_IN_TAG, "CallDebugPrepareStepIn") \ 115 V(CALL_DEBUG_PREPARE_STEP_IN_TAG, "CallDebugPrepareStepIn") \
116 V(CALL_IC_TAG, "CallIC") \
117 V(CALL_INITIALIZE_TAG, "CallInitialize") \ 116 V(CALL_INITIALIZE_TAG, "CallInitialize") \
118 V(CALL_MEGAMORPHIC_TAG, "CallMegamorphic") \ 117 V(CALL_MEGAMORPHIC_TAG, "CallMegamorphic") \
119 V(CALL_MISS_TAG, "CallMiss") \ 118 V(CALL_MISS_TAG, "CallMiss") \
120 V(CALL_NORMAL_TAG, "CallNormal") \ 119 V(CALL_NORMAL_TAG, "CallNormal") \
121 V(CALL_PRE_MONOMORPHIC_TAG, "CallPreMonomorphic") \ 120 V(CALL_PRE_MONOMORPHIC_TAG, "CallPreMonomorphic") \
122 V(LOAD_INITIALIZE_TAG, "LoadInitialize") \ 121 V(LOAD_INITIALIZE_TAG, "LoadInitialize") \
123 V(LOAD_PREMONOMORPHIC_TAG, "LoadPreMonomorphic") \ 122 V(LOAD_PREMONOMORPHIC_TAG, "LoadPreMonomorphic") \
124 V(LOAD_MEGAMORPHIC_TAG, "LoadMegamorphic") \ 123 V(LOAD_MEGAMORPHIC_TAG, "LoadMegamorphic") \
125 V(STORE_INITIALIZE_TAG, "StoreInitialize") \ 124 V(STORE_INITIALIZE_TAG, "StoreInitialize") \
126 V(STORE_PREMONOMORPHIC_TAG, "StorePreMonomorphic") \ 125 V(STORE_PREMONOMORPHIC_TAG, "StorePreMonomorphic") \
127 V(STORE_GENERIC_TAG, "StoreGeneric") \ 126 V(STORE_GENERIC_TAG, "StoreGeneric") \
128 V(STORE_MEGAMORPHIC_TAG, "StoreMegamorphic") \ 127 V(STORE_MEGAMORPHIC_TAG, "StoreMegamorphic") \
129 V(KEYED_CALL_DEBUG_BREAK_TAG, "KeyedCallDebugBreak") \ 128 V(KEYED_CALL_DEBUG_BREAK_TAG, "KeyedCallDebugBreak") \
130 V(KEYED_CALL_DEBUG_PREPARE_STEP_IN_TAG, \ 129 V(KEYED_CALL_DEBUG_PREPARE_STEP_IN_TAG, \
131 "KeyedCallDebugPrepareStepIn") \ 130 "KeyedCallDebugPrepareStepIn") \
132 V(KEYED_CALL_IC_TAG, "KeyedCallIC") \
133 V(KEYED_CALL_INITIALIZE_TAG, "KeyedCallInitialize") \ 131 V(KEYED_CALL_INITIALIZE_TAG, "KeyedCallInitialize") \
134 V(KEYED_CALL_MEGAMORPHIC_TAG, "KeyedCallMegamorphic") \ 132 V(KEYED_CALL_MEGAMORPHIC_TAG, "KeyedCallMegamorphic") \
135 V(KEYED_CALL_MISS_TAG, "KeyedCallMiss") \ 133 V(KEYED_CALL_MISS_TAG, "KeyedCallMiss") \
136 V(KEYED_CALL_NORMAL_TAG, "KeyedCallNormal") \ 134 V(KEYED_CALL_NORMAL_TAG, "KeyedCallNormal") \
137 V(KEYED_CALL_PRE_MONOMORPHIC_TAG, "KeyedCallPreMonomorphic") \ 135 V(KEYED_CALL_PRE_MONOMORPHIC_TAG, "KeyedCallPreMonomorphic") \
138 V(CALLBACK_TAG, "Callback") \ 136 V(CALLBACK_TAG, "Callback") \
139 V(EVAL_TAG, "Eval") \ 137 V(EVAL_TAG, "Eval") \
140 V(FUNCTION_TAG, "Function") \ 138 V(FUNCTION_TAG, "Function") \
141 V(HANDLER_TAG, "Handler") \ 139 V(HANDLER_TAG, "Handler") \
142 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \ 140 V(KEYED_LOAD_IC_TAG, "KeyedLoadIC") \
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
539 int length) = 0; 537 int length) = 0;
540 538
541 NameBuffer* name_buffer_; 539 NameBuffer* name_buffer_;
542 }; 540 };
543 541
544 542
545 } } // namespace v8::internal 543 } } // namespace v8::internal
546 544
547 545
548 #endif // V8_LOG_H_ 546 #endif // V8_LOG_H_
OLDNEW
« no previous file with comments | « src/isolate.cc ('k') | src/log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698