| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_BUILTINS_H_ | 5 #ifndef V8_BUILTINS_H_ |
| 6 #define V8_BUILTINS_H_ | 6 #define V8_BUILTINS_H_ |
| 7 | 7 |
| 8 namespace v8 { | 8 namespace v8 { |
| 9 namespace internal { | 9 namespace internal { |
| 10 | 10 |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 V(KeyedStoreIC_Slow, KEYED_STORE_IC) \ | 173 V(KeyedStoreIC_Slow, KEYED_STORE_IC) \ |
| 174 V(LoadIC_Normal, LOAD_IC) \ | 174 V(LoadIC_Normal, LOAD_IC) \ |
| 175 V(StoreIC_Normal, STORE_IC) | 175 V(StoreIC_Normal, STORE_IC) |
| 176 | 176 |
| 177 // Define list of builtins used by the debugger implemented in assembly. | 177 // Define list of builtins used by the debugger implemented in assembly. |
| 178 #define BUILTIN_LIST_DEBUG_A(V) \ | 178 #define BUILTIN_LIST_DEBUG_A(V) \ |
| 179 V(Return_DebugBreak, BUILTIN, DEBUG_STUB, \ | 179 V(Return_DebugBreak, BUILTIN, DEBUG_STUB, \ |
| 180 DEBUG_BREAK) \ | 180 DEBUG_BREAK) \ |
| 181 V(CallFunctionStub_DebugBreak, BUILTIN, DEBUG_STUB, \ | 181 V(CallFunctionStub_DebugBreak, BUILTIN, DEBUG_STUB, \ |
| 182 DEBUG_BREAK) \ | 182 DEBUG_BREAK) \ |
| 183 V(CallFunctionStub_Recording_DebugBreak, BUILTIN, DEBUG_STUB, \ | |
| 184 DEBUG_BREAK) \ | |
| 185 V(CallConstructStub_DebugBreak, BUILTIN, DEBUG_STUB, \ | 183 V(CallConstructStub_DebugBreak, BUILTIN, DEBUG_STUB, \ |
| 186 DEBUG_BREAK) \ | 184 DEBUG_BREAK) \ |
| 187 V(CallConstructStub_Recording_DebugBreak, BUILTIN, DEBUG_STUB, \ | 185 V(CallConstructStub_Recording_DebugBreak, BUILTIN, DEBUG_STUB, \ |
| 188 DEBUG_BREAK) \ | 186 DEBUG_BREAK) \ |
| 187 V(CallICStub_DebugBreak, CALL_IC, DEBUG_STUB, \ |
| 188 DEBUG_BREAK) \ |
| 189 V(LoadIC_DebugBreak, LOAD_IC, DEBUG_STUB, \ | 189 V(LoadIC_DebugBreak, LOAD_IC, DEBUG_STUB, \ |
| 190 DEBUG_BREAK) \ | 190 DEBUG_BREAK) \ |
| 191 V(KeyedLoadIC_DebugBreak, KEYED_LOAD_IC, DEBUG_STUB, \ | 191 V(KeyedLoadIC_DebugBreak, KEYED_LOAD_IC, DEBUG_STUB, \ |
| 192 DEBUG_BREAK) \ | 192 DEBUG_BREAK) \ |
| 193 V(StoreIC_DebugBreak, STORE_IC, DEBUG_STUB, \ | 193 V(StoreIC_DebugBreak, STORE_IC, DEBUG_STUB, \ |
| 194 DEBUG_BREAK) \ | 194 DEBUG_BREAK) \ |
| 195 V(KeyedStoreIC_DebugBreak, KEYED_STORE_IC, DEBUG_STUB, \ | 195 V(KeyedStoreIC_DebugBreak, KEYED_STORE_IC, DEBUG_STUB, \ |
| 196 DEBUG_BREAK) \ | 196 DEBUG_BREAK) \ |
| 197 V(CompareNilIC_DebugBreak, COMPARE_NIL_IC, DEBUG_STUB, \ | 197 V(CompareNilIC_DebugBreak, COMPARE_NIL_IC, DEBUG_STUB, \ |
| 198 DEBUG_BREAK) \ | 198 DEBUG_BREAK) \ |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 | 380 |
| 381 friend class BuiltinFunctionTable; | 381 friend class BuiltinFunctionTable; |
| 382 friend class Isolate; | 382 friend class Isolate; |
| 383 | 383 |
| 384 DISALLOW_COPY_AND_ASSIGN(Builtins); | 384 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 385 }; | 385 }; |
| 386 | 386 |
| 387 } } // namespace v8::internal | 387 } } // namespace v8::internal |
| 388 | 388 |
| 389 #endif // V8_BUILTINS_H_ | 389 #endif // V8_BUILTINS_H_ |
| OLD | NEW |