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

Side by Side Diff: src/builtins.h

Issue 1222093007: Debugger: use debug break slot to break on call. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebased and 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 V(StoreIC_Slow, STORE_IC) \ 136 V(StoreIC_Slow, STORE_IC) \
137 V(KeyedStoreIC_Slow, KEYED_STORE_IC) \ 137 V(KeyedStoreIC_Slow, KEYED_STORE_IC) \
138 V(LoadIC_Normal, LOAD_IC) \ 138 V(LoadIC_Normal, LOAD_IC) \
139 V(LoadIC_Normal_Strong, LOAD_IC) \ 139 V(LoadIC_Normal_Strong, LOAD_IC) \
140 V(StoreIC_Normal, STORE_IC) 140 V(StoreIC_Normal, STORE_IC)
141 141
142 // Define list of builtins used by the debugger implemented in assembly. 142 // Define list of builtins used by the debugger implemented in assembly.
143 #define BUILTIN_LIST_DEBUG_A(V) \ 143 #define BUILTIN_LIST_DEBUG_A(V) \
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, \
147 DEBUG_BREAK) \
148 V(CallConstructStub_DebugBreak, BUILTIN, DEBUG_STUB, \
149 DEBUG_BREAK) \
150 V(CallConstructStub_Recording_DebugBreak, BUILTIN, DEBUG_STUB, \
151 DEBUG_BREAK) \
152 V(CallICStub_DebugBreak, CALL_IC, DEBUG_STUB, \
153 DEBUG_BREAK) \
154 V(Slot_DebugBreak, BUILTIN, DEBUG_STUB, \ 146 V(Slot_DebugBreak, BUILTIN, DEBUG_STUB, \
155 DEBUG_BREAK) \ 147 DEBUG_BREAK) \
156 V(PlainReturn_LiveEdit, BUILTIN, DEBUG_STUB, \ 148 V(PlainReturn_LiveEdit, BUILTIN, DEBUG_STUB, \
157 DEBUG_BREAK) \ 149 DEBUG_BREAK) \
158 V(FrameDropper_LiveEdit, BUILTIN, DEBUG_STUB, \ 150 V(FrameDropper_LiveEdit, BUILTIN, DEBUG_STUB, \
159 DEBUG_BREAK) 151 DEBUG_BREAK)
160 152
161 // Define list of builtins implemented in JavaScript. 153 // Define list of builtins implemented in JavaScript.
162 #define BUILTINS_LIST_JS(V) \ 154 #define BUILTINS_LIST_JS(V) \
163 V(EQUALS, 1) \ 155 V(EQUALS, 1) \
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 351
360 friend class BuiltinFunctionTable; 352 friend class BuiltinFunctionTable;
361 friend class Isolate; 353 friend class Isolate;
362 354
363 DISALLOW_COPY_AND_ASSIGN(Builtins); 355 DISALLOW_COPY_AND_ASSIGN(Builtins);
364 }; 356 };
365 357
366 } } // namespace v8::internal 358 } } // namespace v8::internal
367 359
368 #endif // V8_BUILTINS_H_ 360 #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