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

Side by Side Diff: src/builtins.h

Issue 2943002: Reimplement stack manipulations for LiveEdit (Closed)
Patch Set: follow codereview Created 10 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/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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 #define BUILTIN_LIST_DEBUG_A(V) \ 123 #define BUILTIN_LIST_DEBUG_A(V) \
124 V(Return_DebugBreak, BUILTIN, DEBUG_BREAK) \ 124 V(Return_DebugBreak, BUILTIN, DEBUG_BREAK) \
125 V(ConstructCall_DebugBreak, BUILTIN, DEBUG_BREAK) \ 125 V(ConstructCall_DebugBreak, BUILTIN, DEBUG_BREAK) \
126 V(StubNoRegisters_DebugBreak, BUILTIN, DEBUG_BREAK) \ 126 V(StubNoRegisters_DebugBreak, BUILTIN, DEBUG_BREAK) \
127 V(LoadIC_DebugBreak, LOAD_IC, DEBUG_BREAK) \ 127 V(LoadIC_DebugBreak, LOAD_IC, DEBUG_BREAK) \
128 V(KeyedLoadIC_DebugBreak, KEYED_LOAD_IC, DEBUG_BREAK) \ 128 V(KeyedLoadIC_DebugBreak, KEYED_LOAD_IC, DEBUG_BREAK) \
129 V(StoreIC_DebugBreak, STORE_IC, DEBUG_BREAK) \ 129 V(StoreIC_DebugBreak, STORE_IC, DEBUG_BREAK) \
130 V(KeyedStoreIC_DebugBreak, KEYED_STORE_IC, DEBUG_BREAK) \ 130 V(KeyedStoreIC_DebugBreak, KEYED_STORE_IC, DEBUG_BREAK) \
131 V(Slot_DebugBreak, BUILTIN, DEBUG_BREAK) \ 131 V(Slot_DebugBreak, BUILTIN, DEBUG_BREAK) \
132 V(PlainReturn_LiveEdit, BUILTIN, DEBUG_BREAK) \ 132 V(PlainReturn_LiveEdit, BUILTIN, DEBUG_BREAK) \
133 V(FrameDropper_LiveEdit, BUILTIN, DEBUG_BREAK) 133 V(RestarterPatch_LiveEdit, BUILTIN, DEBUG_BREAK)
134 #else 134 #else
135 #define BUILTIN_LIST_DEBUG_A(V) 135 #define BUILTIN_LIST_DEBUG_A(V)
136 #endif 136 #endif
137 137
138 // Define list of builtins implemented in JavaScript. 138 // Define list of builtins implemented in JavaScript.
139 #define BUILTINS_LIST_JS(V) \ 139 #define BUILTINS_LIST_JS(V) \
140 V(EQUALS, 1) \ 140 V(EQUALS, 1) \
141 V(STRICT_EQUALS, 1) \ 141 V(STRICT_EQUALS, 1) \
142 V(COMPARE, 2) \ 142 V(COMPARE, 2) \
143 V(ADD, 1) \ 143 V(ADD, 1) \
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 static void Generate_FunctionCall(MacroAssembler* masm); 254 static void Generate_FunctionCall(MacroAssembler* masm);
255 static void Generate_FunctionApply(MacroAssembler* masm); 255 static void Generate_FunctionApply(MacroAssembler* masm);
256 256
257 static void Generate_ArrayCode(MacroAssembler* masm); 257 static void Generate_ArrayCode(MacroAssembler* masm);
258 static void Generate_ArrayConstructCode(MacroAssembler* masm); 258 static void Generate_ArrayConstructCode(MacroAssembler* masm);
259 }; 259 };
260 260
261 } } // namespace v8::internal 261 } } // namespace v8::internal
262 262
263 #endif // V8_BUILTINS_H_ 263 #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