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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 V(StoreIC_Slow, STORE_IC) \ | 136 V(StoreIC_Slow, STORE_IC) \ |
137 V(KeyedStoreIC_Slow, KEYED_STORE_IC) \ | 137 V(KeyedStoreIC_Slow, KEYED_STORE_IC) \ |
138 V(LoadIC_Normal, LOAD_IC) \ | 138 V(LoadIC_Normal, LOAD_IC) \ |
139 V(LoadIC_Normal_Strong, LOAD_IC) \ | 139 V(LoadIC_Normal_Strong, LOAD_IC) \ |
140 V(StoreIC_Normal, STORE_IC) | 140 V(StoreIC_Normal, STORE_IC) |
141 | 141 |
142 // Define list of builtins used by the debugger implemented in assembly. | 142 // Define list of builtins used by the debugger implemented in assembly. |
143 #define BUILTIN_LIST_DEBUG_A(V) \ | 143 #define BUILTIN_LIST_DEBUG_A(V) \ |
144 V(Return_DebugBreak, BUILTIN, DEBUG_STUB, \ | 144 V(Return_DebugBreak, BUILTIN, DEBUG_STUB, \ |
145 DEBUG_BREAK) \ | 145 DEBUG_BREAK) \ |
146 V(CallFunctionStub_DebugBreak, BUILTIN, DEBUG_STUB, \ | |
147 DEBUG_BREAK) \ | |
148 V(CallConstructStub_DebugBreak, BUILTIN, DEBUG_STUB, \ | |
149 DEBUG_BREAK) \ | |
150 V(CallConstructStub_Recording_DebugBreak, BUILTIN, DEBUG_STUB, \ | |
151 DEBUG_BREAK) \ | |
152 V(CallICStub_DebugBreak, CALL_IC, DEBUG_STUB, \ | |
153 DEBUG_BREAK) \ | |
154 V(Slot_DebugBreak, BUILTIN, DEBUG_STUB, \ | 146 V(Slot_DebugBreak, BUILTIN, DEBUG_STUB, \ |
155 DEBUG_BREAK) \ | 147 DEBUG_BREAK) \ |
156 V(PlainReturn_LiveEdit, BUILTIN, DEBUG_STUB, \ | 148 V(PlainReturn_LiveEdit, BUILTIN, DEBUG_STUB, \ |
157 DEBUG_BREAK) \ | 149 DEBUG_BREAK) \ |
158 V(FrameDropper_LiveEdit, BUILTIN, DEBUG_STUB, \ | 150 V(FrameDropper_LiveEdit, BUILTIN, DEBUG_STUB, \ |
159 DEBUG_BREAK) | 151 DEBUG_BREAK) |
160 | 152 |
161 // Define list of builtins implemented in JavaScript. | 153 // Define list of builtins implemented in JavaScript. |
162 #define BUILTINS_LIST_JS(V) \ | 154 #define BUILTINS_LIST_JS(V) \ |
163 V(EQUALS, 1) \ | 155 V(EQUALS, 1) \ |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
359 | 351 |
360 friend class BuiltinFunctionTable; | 352 friend class BuiltinFunctionTable; |
361 friend class Isolate; | 353 friend class Isolate; |
362 | 354 |
363 DISALLOW_COPY_AND_ASSIGN(Builtins); | 355 DISALLOW_COPY_AND_ASSIGN(Builtins); |
364 }; | 356 }; |
365 | 357 |
366 } } // namespace v8::internal | 358 } } // namespace v8::internal |
367 | 359 |
368 #endif // V8_BUILTINS_H_ | 360 #endif // V8_BUILTINS_H_ |
OLD | NEW |