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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 \ | 83 \ |
84 /* Uses KeyedLoadIC_Initialize; must be after in list. */ \ | 84 /* Uses KeyedLoadIC_Initialize; must be after in list. */ \ |
85 V(FunctionCall, BUILTIN, UNINITIALIZED) \ | 85 V(FunctionCall, BUILTIN, UNINITIALIZED) \ |
86 V(FunctionApply, BUILTIN, UNINITIALIZED) | 86 V(FunctionApply, BUILTIN, UNINITIALIZED) |
87 | 87 |
88 | 88 |
89 #ifdef ENABLE_DEBUGGER_SUPPORT | 89 #ifdef ENABLE_DEBUGGER_SUPPORT |
90 // Define list of builtins used by the debugger implemented in assembly. | 90 // Define list of builtins used by the debugger implemented in assembly. |
91 #define BUILTIN_LIST_DEBUG_A(V) \ | 91 #define BUILTIN_LIST_DEBUG_A(V) \ |
92 V(Return_DebugBreak, BUILTIN, DEBUG_BREAK) \ | 92 V(Return_DebugBreak, BUILTIN, DEBUG_BREAK) \ |
93 V(Return_DebugBreakEntry, BUILTIN, DEBUG_BREAK) \ | |
94 V(ConstructCall_DebugBreak, BUILTIN, DEBUG_BREAK) \ | 93 V(ConstructCall_DebugBreak, BUILTIN, DEBUG_BREAK) \ |
95 V(StubNoRegisters_DebugBreak, BUILTIN, DEBUG_BREAK) \ | 94 V(StubNoRegisters_DebugBreak, BUILTIN, DEBUG_BREAK) \ |
96 V(LoadIC_DebugBreak, LOAD_IC, DEBUG_BREAK) \ | 95 V(LoadIC_DebugBreak, LOAD_IC, DEBUG_BREAK) \ |
97 V(KeyedLoadIC_DebugBreak, KEYED_LOAD_IC, DEBUG_BREAK) \ | 96 V(KeyedLoadIC_DebugBreak, KEYED_LOAD_IC, DEBUG_BREAK) \ |
98 V(StoreIC_DebugBreak, STORE_IC, DEBUG_BREAK) \ | 97 V(StoreIC_DebugBreak, STORE_IC, DEBUG_BREAK) \ |
99 V(KeyedStoreIC_DebugBreak, KEYED_STORE_IC, DEBUG_BREAK) | 98 V(KeyedStoreIC_DebugBreak, KEYED_STORE_IC, DEBUG_BREAK) |
100 #else | 99 #else |
101 #define BUILTIN_LIST_DEBUG_A(V) | 100 #define BUILTIN_LIST_DEBUG_A(V) |
102 #endif | 101 #endif |
103 | 102 |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 static void Generate_JSConstructEntryTrampoline(MacroAssembler* masm); | 215 static void Generate_JSConstructEntryTrampoline(MacroAssembler* masm); |
217 static void Generate_ArgumentsAdaptorTrampoline(MacroAssembler* masm); | 216 static void Generate_ArgumentsAdaptorTrampoline(MacroAssembler* masm); |
218 | 217 |
219 static void Generate_FunctionCall(MacroAssembler* masm); | 218 static void Generate_FunctionCall(MacroAssembler* masm); |
220 static void Generate_FunctionApply(MacroAssembler* masm); | 219 static void Generate_FunctionApply(MacroAssembler* masm); |
221 }; | 220 }; |
222 | 221 |
223 } } // namespace v8::internal | 222 } } // namespace v8::internal |
224 | 223 |
225 #endif // V8_BUILTINS_H_ | 224 #endif // V8_BUILTINS_H_ |
OLD | NEW |