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

Side by Side Diff: src/builtins.h

Issue 1218493005: Debugger: use debug break slots instead of ICs (except for calls). (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: addressed comments Created 5 years, 5 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/assembler.cc ('k') | src/builtins.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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_BUILTINS_H_ 5 #ifndef V8_BUILTINS_H_
6 #define V8_BUILTINS_H_ 6 #define V8_BUILTINS_H_
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 10
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 V(Return_DebugBreak, BUILTIN, DEBUG_STUB, \ 144 V(Return_DebugBreak, BUILTIN, DEBUG_STUB, \
145 DEBUG_BREAK) \ 145 DEBUG_BREAK) \
146 V(CallFunctionStub_DebugBreak, BUILTIN, DEBUG_STUB, \ 146 V(CallFunctionStub_DebugBreak, BUILTIN, DEBUG_STUB, \
147 DEBUG_BREAK) \ 147 DEBUG_BREAK) \
148 V(CallConstructStub_DebugBreak, BUILTIN, DEBUG_STUB, \ 148 V(CallConstructStub_DebugBreak, BUILTIN, DEBUG_STUB, \
149 DEBUG_BREAK) \ 149 DEBUG_BREAK) \
150 V(CallConstructStub_Recording_DebugBreak, BUILTIN, DEBUG_STUB, \ 150 V(CallConstructStub_Recording_DebugBreak, BUILTIN, DEBUG_STUB, \
151 DEBUG_BREAK) \ 151 DEBUG_BREAK) \
152 V(CallICStub_DebugBreak, CALL_IC, DEBUG_STUB, \ 152 V(CallICStub_DebugBreak, CALL_IC, DEBUG_STUB, \
153 DEBUG_BREAK) \ 153 DEBUG_BREAK) \
154 V(LoadIC_DebugBreak, LOAD_IC, DEBUG_STUB, \
155 DEBUG_BREAK) \
156 V(KeyedLoadIC_DebugBreak, KEYED_LOAD_IC, DEBUG_STUB, \
157 DEBUG_BREAK) \
158 V(StoreIC_DebugBreak, STORE_IC, DEBUG_STUB, \
159 DEBUG_BREAK) \
160 V(KeyedStoreIC_DebugBreak, KEYED_STORE_IC, DEBUG_STUB, \
161 DEBUG_BREAK) \
162 V(CompareNilIC_DebugBreak, COMPARE_NIL_IC, DEBUG_STUB, \
163 DEBUG_BREAK) \
164 V(Slot_DebugBreak, BUILTIN, DEBUG_STUB, \ 154 V(Slot_DebugBreak, BUILTIN, DEBUG_STUB, \
165 DEBUG_BREAK) \ 155 DEBUG_BREAK) \
166 V(PlainReturn_LiveEdit, BUILTIN, DEBUG_STUB, \ 156 V(PlainReturn_LiveEdit, BUILTIN, DEBUG_STUB, \
167 DEBUG_BREAK) \ 157 DEBUG_BREAK) \
168 V(FrameDropper_LiveEdit, BUILTIN, DEBUG_STUB, \ 158 V(FrameDropper_LiveEdit, BUILTIN, DEBUG_STUB, \
169 DEBUG_BREAK) 159 DEBUG_BREAK)
170 160
171 // Define list of builtins implemented in JavaScript. 161 // Define list of builtins implemented in JavaScript.
172 #define BUILTINS_LIST_JS(V) \ 162 #define BUILTINS_LIST_JS(V) \
173 V(EQUALS, 1) \ 163 V(EQUALS, 1) \
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 359
370 friend class BuiltinFunctionTable; 360 friend class BuiltinFunctionTable;
371 friend class Isolate; 361 friend class Isolate;
372 362
373 DISALLOW_COPY_AND_ASSIGN(Builtins); 363 DISALLOW_COPY_AND_ASSIGN(Builtins);
374 }; 364 };
375 365
376 } } // namespace v8::internal 366 } } // namespace v8::internal
377 367
378 #endif // V8_BUILTINS_H_ 368 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/assembler.cc ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698