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

Side by Side Diff: src/builtins.h

Issue 14106011: Allow setting debugger breakpoints on CompareNilICs (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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/arm/debug-arm.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 // 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 V(CallConstructStub_Recording_DebugBreak, BUILTIN, DEBUG_STUB, \ 223 V(CallConstructStub_Recording_DebugBreak, BUILTIN, DEBUG_STUB, \
224 DEBUG_BREAK) \ 224 DEBUG_BREAK) \
225 V(LoadIC_DebugBreak, LOAD_IC, DEBUG_STUB, \ 225 V(LoadIC_DebugBreak, LOAD_IC, DEBUG_STUB, \
226 DEBUG_BREAK) \ 226 DEBUG_BREAK) \
227 V(KeyedLoadIC_DebugBreak, KEYED_LOAD_IC, DEBUG_STUB, \ 227 V(KeyedLoadIC_DebugBreak, KEYED_LOAD_IC, DEBUG_STUB, \
228 DEBUG_BREAK) \ 228 DEBUG_BREAK) \
229 V(StoreIC_DebugBreak, STORE_IC, DEBUG_STUB, \ 229 V(StoreIC_DebugBreak, STORE_IC, DEBUG_STUB, \
230 DEBUG_BREAK) \ 230 DEBUG_BREAK) \
231 V(KeyedStoreIC_DebugBreak, KEYED_STORE_IC, DEBUG_STUB, \ 231 V(KeyedStoreIC_DebugBreak, KEYED_STORE_IC, DEBUG_STUB, \
232 DEBUG_BREAK) \ 232 DEBUG_BREAK) \
233 V(CompareNilIC_DebugBreak, COMPARE_NIL_IC, DEBUG_STUB, \
234 DEBUG_BREAK) \
233 V(Slot_DebugBreak, BUILTIN, DEBUG_STUB, \ 235 V(Slot_DebugBreak, BUILTIN, DEBUG_STUB, \
234 DEBUG_BREAK) \ 236 DEBUG_BREAK) \
235 V(PlainReturn_LiveEdit, BUILTIN, DEBUG_STUB, \ 237 V(PlainReturn_LiveEdit, BUILTIN, DEBUG_STUB, \
236 DEBUG_BREAK) \ 238 DEBUG_BREAK) \
237 V(FrameDropper_LiveEdit, BUILTIN, DEBUG_STUB, \ 239 V(FrameDropper_LiveEdit, BUILTIN, DEBUG_STUB, \
238 DEBUG_BREAK) 240 DEBUG_BREAK)
239 #else 241 #else
240 #define BUILTIN_LIST_DEBUG_A(V) 242 #define BUILTIN_LIST_DEBUG_A(V)
241 #endif 243 #endif
242 244
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 409
408 friend class BuiltinFunctionTable; 410 friend class BuiltinFunctionTable;
409 friend class Isolate; 411 friend class Isolate;
410 412
411 DISALLOW_COPY_AND_ASSIGN(Builtins); 413 DISALLOW_COPY_AND_ASSIGN(Builtins);
412 }; 414 };
413 415
414 } } // namespace v8::internal 416 } } // namespace v8::internal
415 417
416 #endif // V8_BUILTINS_H_ 418 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/arm/debug-arm.cc ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698