OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 V(LoadIC_Normal, LOAD_IC) \ | 197 V(LoadIC_Normal, LOAD_IC) \ |
198 V(StoreIC_Normal, STORE_IC) | 198 V(StoreIC_Normal, STORE_IC) |
199 | 199 |
200 #ifdef ENABLE_DEBUGGER_SUPPORT | 200 #ifdef ENABLE_DEBUGGER_SUPPORT |
201 // Define list of builtins used by the debugger implemented in assembly. | 201 // Define list of builtins used by the debugger implemented in assembly. |
202 #define BUILTIN_LIST_DEBUG_A(V) \ | 202 #define BUILTIN_LIST_DEBUG_A(V) \ |
203 V(Return_DebugBreak, BUILTIN, DEBUG_STUB, \ | 203 V(Return_DebugBreak, BUILTIN, DEBUG_STUB, \ |
204 DEBUG_BREAK) \ | 204 DEBUG_BREAK) \ |
205 V(CallFunctionStub_DebugBreak, BUILTIN, DEBUG_STUB, \ | 205 V(CallFunctionStub_DebugBreak, BUILTIN, DEBUG_STUB, \ |
206 DEBUG_BREAK) \ | 206 DEBUG_BREAK) \ |
207 V(CallFunctionStub_Recording_DebugBreak, BUILTIN, DEBUG_STUB, \ | |
208 DEBUG_BREAK) \ | |
209 V(CallConstructStub_DebugBreak, BUILTIN, DEBUG_STUB, \ | 207 V(CallConstructStub_DebugBreak, BUILTIN, DEBUG_STUB, \ |
210 DEBUG_BREAK) \ | 208 DEBUG_BREAK) \ |
211 V(CallConstructStub_Recording_DebugBreak, BUILTIN, DEBUG_STUB, \ | 209 V(CallConstructStub_Recording_DebugBreak, BUILTIN, DEBUG_STUB, \ |
212 DEBUG_BREAK) \ | 210 DEBUG_BREAK) \ |
| 211 V(CallICStub_DebugBreak, CALL_IC, DEBUG_STUB, \ |
| 212 DEBUG_BREAK) \ |
213 V(LoadIC_DebugBreak, LOAD_IC, DEBUG_STUB, \ | 213 V(LoadIC_DebugBreak, LOAD_IC, DEBUG_STUB, \ |
214 DEBUG_BREAK) \ | 214 DEBUG_BREAK) \ |
215 V(KeyedLoadIC_DebugBreak, KEYED_LOAD_IC, DEBUG_STUB, \ | 215 V(KeyedLoadIC_DebugBreak, KEYED_LOAD_IC, DEBUG_STUB, \ |
216 DEBUG_BREAK) \ | 216 DEBUG_BREAK) \ |
217 V(StoreIC_DebugBreak, STORE_IC, DEBUG_STUB, \ | 217 V(StoreIC_DebugBreak, STORE_IC, DEBUG_STUB, \ |
218 DEBUG_BREAK) \ | 218 DEBUG_BREAK) \ |
219 V(KeyedStoreIC_DebugBreak, KEYED_STORE_IC, DEBUG_STUB, \ | 219 V(KeyedStoreIC_DebugBreak, KEYED_STORE_IC, DEBUG_STUB, \ |
220 DEBUG_BREAK) \ | 220 DEBUG_BREAK) \ |
221 V(CompareNilIC_DebugBreak, COMPARE_NIL_IC, DEBUG_STUB, \ | 221 V(CompareNilIC_DebugBreak, COMPARE_NIL_IC, DEBUG_STUB, \ |
222 DEBUG_BREAK) \ | 222 DEBUG_BREAK) \ |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
407 | 407 |
408 friend class BuiltinFunctionTable; | 408 friend class BuiltinFunctionTable; |
409 friend class Isolate; | 409 friend class Isolate; |
410 | 410 |
411 DISALLOW_COPY_AND_ASSIGN(Builtins); | 411 DISALLOW_COPY_AND_ASSIGN(Builtins); |
412 }; | 412 }; |
413 | 413 |
414 } } // namespace v8::internal | 414 } } // namespace v8::internal |
415 | 415 |
416 #endif // V8_BUILTINS_H_ | 416 #endif // V8_BUILTINS_H_ |
OLD | NEW |