| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |