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 192 matching lines...) Loading... |
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, \ | 207 V(CallFunctionStub_Recording_DebugBreak, BUILTIN, DEBUG_STUB, \ |
208 DEBUG_BREAK) \ | 208 DEBUG_BREAK) \ |
209 V(CallConstructStub_DebugBreak, BUILTIN, DEBUG_STUB, \ | 209 V(CallConstructStub_DebugBreak, BUILTIN, DEBUG_STUB, \ |
210 DEBUG_BREAK) \ | 210 DEBUG_BREAK) \ |
211 V(CallConstructStub_Recording_DebugBreak, BUILTIN, DEBUG_STUB, \ | 211 V(CallConstructStub_Recording_DebugBreak, BUILTIN, DEBUG_STUB, \ |
212 DEBUG_BREAK) \ | 212 DEBUG_BREAK) \ |
| 213 V(CallICStub_DebugBreak, CALL_IC, DEBUG_STUB, \ |
| 214 DEBUG_BREAK) \ |
213 V(LoadIC_DebugBreak, LOAD_IC, DEBUG_STUB, \ | 215 V(LoadIC_DebugBreak, LOAD_IC, DEBUG_STUB, \ |
214 DEBUG_BREAK) \ | 216 DEBUG_BREAK) \ |
215 V(KeyedLoadIC_DebugBreak, KEYED_LOAD_IC, DEBUG_STUB, \ | 217 V(KeyedLoadIC_DebugBreak, KEYED_LOAD_IC, DEBUG_STUB, \ |
216 DEBUG_BREAK) \ | 218 DEBUG_BREAK) \ |
217 V(StoreIC_DebugBreak, STORE_IC, DEBUG_STUB, \ | 219 V(StoreIC_DebugBreak, STORE_IC, DEBUG_STUB, \ |
218 DEBUG_BREAK) \ | 220 DEBUG_BREAK) \ |
219 V(KeyedStoreIC_DebugBreak, KEYED_STORE_IC, DEBUG_STUB, \ | 221 V(KeyedStoreIC_DebugBreak, KEYED_STORE_IC, DEBUG_STUB, \ |
220 DEBUG_BREAK) \ | 222 DEBUG_BREAK) \ |
221 V(CompareNilIC_DebugBreak, COMPARE_NIL_IC, DEBUG_STUB, \ | 223 V(CompareNilIC_DebugBreak, COMPARE_NIL_IC, DEBUG_STUB, \ |
222 DEBUG_BREAK) \ | 224 DEBUG_BREAK) \ |
(...skipping 184 matching lines...) Loading... |
407 | 409 |
408 friend class BuiltinFunctionTable; | 410 friend class BuiltinFunctionTable; |
409 friend class Isolate; | 411 friend class Isolate; |
410 | 412 |
411 DISALLOW_COPY_AND_ASSIGN(Builtins); | 413 DISALLOW_COPY_AND_ASSIGN(Builtins); |
412 }; | 414 }; |
413 | 415 |
414 } } // namespace v8::internal | 416 } } // namespace v8::internal |
415 | 417 |
416 #endif // V8_BUILTINS_H_ | 418 #endif // V8_BUILTINS_H_ |
OLD | NEW |