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

Side by Side Diff: src/builtins.h

Issue 1118007: LiveEdit: implement frame dropping (Closed)
Patch Set: adding rule to mjsunit.status Created 10 years, 8 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 119
120 #ifdef ENABLE_DEBUGGER_SUPPORT 120 #ifdef ENABLE_DEBUGGER_SUPPORT
121 // Define list of builtins used by the debugger implemented in assembly. 121 // Define list of builtins used by the debugger implemented in assembly.
122 #define BUILTIN_LIST_DEBUG_A(V) \ 122 #define BUILTIN_LIST_DEBUG_A(V) \
123 V(Return_DebugBreak, BUILTIN, DEBUG_BREAK) \ 123 V(Return_DebugBreak, BUILTIN, DEBUG_BREAK) \
124 V(ConstructCall_DebugBreak, BUILTIN, DEBUG_BREAK) \ 124 V(ConstructCall_DebugBreak, BUILTIN, DEBUG_BREAK) \
125 V(StubNoRegisters_DebugBreak, BUILTIN, DEBUG_BREAK) \ 125 V(StubNoRegisters_DebugBreak, BUILTIN, DEBUG_BREAK) \
126 V(LoadIC_DebugBreak, LOAD_IC, DEBUG_BREAK) \ 126 V(LoadIC_DebugBreak, LOAD_IC, DEBUG_BREAK) \
127 V(KeyedLoadIC_DebugBreak, KEYED_LOAD_IC, DEBUG_BREAK) \ 127 V(KeyedLoadIC_DebugBreak, KEYED_LOAD_IC, DEBUG_BREAK) \
128 V(StoreIC_DebugBreak, STORE_IC, DEBUG_BREAK) \ 128 V(StoreIC_DebugBreak, STORE_IC, DEBUG_BREAK) \
129 V(KeyedStoreIC_DebugBreak, KEYED_STORE_IC, DEBUG_BREAK) 129 V(KeyedStoreIC_DebugBreak, KEYED_STORE_IC, DEBUG_BREAK) \
130 V(PlainReturn_LiveEdit, BUILTIN, DEBUG_BREAK) \
131 V(FrameDropper_LiveEdit, BUILTIN, DEBUG_BREAK)
130 #else 132 #else
131 #define BUILTIN_LIST_DEBUG_A(V) 133 #define BUILTIN_LIST_DEBUG_A(V)
132 #endif 134 #endif
133 135
134 // Define list of builtins implemented in JavaScript. 136 // Define list of builtins implemented in JavaScript.
135 #define BUILTINS_LIST_JS(V) \ 137 #define BUILTINS_LIST_JS(V) \
136 V(EQUALS, 1) \ 138 V(EQUALS, 1) \
137 V(STRICT_EQUALS, 1) \ 139 V(STRICT_EQUALS, 1) \
138 V(COMPARE, 2) \ 140 V(COMPARE, 2) \
139 V(ADD, 1) \ 141 V(ADD, 1) \
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 static void Generate_FunctionCall(MacroAssembler* masm); 253 static void Generate_FunctionCall(MacroAssembler* masm);
252 static void Generate_FunctionApply(MacroAssembler* masm); 254 static void Generate_FunctionApply(MacroAssembler* masm);
253 255
254 static void Generate_ArrayCode(MacroAssembler* masm); 256 static void Generate_ArrayCode(MacroAssembler* masm);
255 static void Generate_ArrayConstructCode(MacroAssembler* masm); 257 static void Generate_ArrayConstructCode(MacroAssembler* masm);
256 }; 258 };
257 259
258 } } // namespace v8::internal 260 } } // namespace v8::internal
259 261
260 #endif // V8_BUILTINS_H_ 262 #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