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

Unified Diff: src/builtins.h

Issue 1232803002: Debugger: refactor reloc info. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix mips 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/assembler.cc ('k') | src/debug.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/builtins.h
diff --git a/src/builtins.h b/src/builtins.h
index 13e3a90e1922add7355acc239329c01e3f24ee19..b526e785812ca13c6f8b5f90f9e57b6346f81f13 100644
--- a/src/builtins.h
+++ b/src/builtins.h
@@ -139,15 +139,11 @@ enum BuiltinExtraArguments {
V(StoreIC_Normal, STORE_IC)
// Define list of builtins used by the debugger implemented in assembly.
-#define BUILTIN_LIST_DEBUG_A(V) \
- V(Return_DebugBreak, BUILTIN, DEBUG_STUB, \
- DEBUG_BREAK) \
- V(Slot_DebugBreak, BUILTIN, DEBUG_STUB, \
- DEBUG_BREAK) \
- V(PlainReturn_LiveEdit, BUILTIN, DEBUG_STUB, \
- DEBUG_BREAK) \
- V(FrameDropper_LiveEdit, BUILTIN, DEBUG_STUB, \
- DEBUG_BREAK)
+#define BUILTIN_LIST_DEBUG_A(V) \
+ V(Return_DebugBreak, BUILTIN, DEBUG_STUB, kNoExtraICState) \
+ V(Slot_DebugBreak, BUILTIN, DEBUG_STUB, kNoExtraICState) \
+ V(PlainReturn_LiveEdit, BUILTIN, DEBUG_STUB, kNoExtraICState) \
+ V(FrameDropper_LiveEdit, BUILTIN, DEBUG_STUB, kNoExtraICState)
// Define list of builtins implemented in JavaScript.
#define BUILTINS_LIST_JS(V) \
« no previous file with comments | « src/assembler.cc ('k') | src/debug.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698