| OLD | NEW |
| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(Slot_DebugBreak, BUILTIN, DEBUG_BREAK) \ |
| 130 V(PlainReturn_LiveEdit, BUILTIN, DEBUG_BREAK) \ | 131 V(PlainReturn_LiveEdit, BUILTIN, DEBUG_BREAK) \ |
| 131 V(FrameDropper_LiveEdit, BUILTIN, DEBUG_BREAK) | 132 V(FrameDropper_LiveEdit, BUILTIN, DEBUG_BREAK) |
| 132 #else | 133 #else |
| 133 #define BUILTIN_LIST_DEBUG_A(V) | 134 #define BUILTIN_LIST_DEBUG_A(V) |
| 134 #endif | 135 #endif |
| 135 | 136 |
| 136 // Define list of builtins implemented in JavaScript. | 137 // Define list of builtins implemented in JavaScript. |
| 137 #define BUILTINS_LIST_JS(V) \ | 138 #define BUILTINS_LIST_JS(V) \ |
| 138 V(EQUALS, 1) \ | 139 V(EQUALS, 1) \ |
| 139 V(STRICT_EQUALS, 1) \ | 140 V(STRICT_EQUALS, 1) \ |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 static void Generate_FunctionCall(MacroAssembler* masm); | 253 static void Generate_FunctionCall(MacroAssembler* masm); |
| 253 static void Generate_FunctionApply(MacroAssembler* masm); | 254 static void Generate_FunctionApply(MacroAssembler* masm); |
| 254 | 255 |
| 255 static void Generate_ArrayCode(MacroAssembler* masm); | 256 static void Generate_ArrayCode(MacroAssembler* masm); |
| 256 static void Generate_ArrayConstructCode(MacroAssembler* masm); | 257 static void Generate_ArrayConstructCode(MacroAssembler* masm); |
| 257 }; | 258 }; |
| 258 | 259 |
| 259 } } // namespace v8::internal | 260 } } // namespace v8::internal |
| 260 | 261 |
| 261 #endif // V8_BUILTINS_H_ | 262 #endif // V8_BUILTINS_H_ |
| OLD | NEW |