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 20 matching lines...) Expand all Loading... |
31 namespace v8 { namespace internal { | 31 namespace v8 { namespace internal { |
32 | 32 |
33 // Define list of builtins implemented in C. | 33 // Define list of builtins implemented in C. |
34 #define BUILTIN_LIST_C(V) \ | 34 #define BUILTIN_LIST_C(V) \ |
35 V(Illegal, 0) \ | 35 V(Illegal, 0) \ |
36 \ | 36 \ |
37 V(EmptyFunction, 0) \ | 37 V(EmptyFunction, 0) \ |
38 \ | 38 \ |
39 V(ArrayCode, 0) \ | 39 V(ArrayCode, 0) \ |
40 \ | 40 \ |
41 V(ArrayPush, 1) \ | 41 V(ArrayPush, -1) \ |
42 V(ArrayPop, 0) \ | 42 V(ArrayPop, -1) \ |
43 \ | 43 \ |
44 V(HandleApiCall, 0) \ | 44 V(HandleApiCall, 0) \ |
45 V(HandleApiCallAsFunction, 0) | 45 V(HandleApiCallAsFunction, 0) |
46 | 46 |
47 | 47 |
48 // Define list of builtins implemented in assembly. | 48 // Define list of builtins implemented in assembly. |
49 #define BUILTIN_LIST_A(V) \ | 49 #define BUILTIN_LIST_A(V) \ |
50 V(ArgumentsAdaptorTrampoline, BUILTIN, UNINITIALIZED) \ | 50 V(ArgumentsAdaptorTrampoline, BUILTIN, UNINITIALIZED) \ |
51 V(JSConstructCall, BUILTIN, UNINITIALIZED) \ | 51 V(JSConstructCall, BUILTIN, UNINITIALIZED) \ |
52 V(JSEntryTrampoline, BUILTIN, UNINITIALIZED) \ | 52 V(JSEntryTrampoline, BUILTIN, UNINITIALIZED) \ |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 static void Generate_KeyedStoreIC_DebugBreak(MacroAssembler* masm); | 227 static void Generate_KeyedStoreIC_DebugBreak(MacroAssembler* masm); |
228 static void Generate_ConstructCall_DebugBreak(MacroAssembler* masm); | 228 static void Generate_ConstructCall_DebugBreak(MacroAssembler* masm); |
229 static void Generate_Return_DebugBreak(MacroAssembler* masm); | 229 static void Generate_Return_DebugBreak(MacroAssembler* masm); |
230 static void Generate_Return_DebugBreakEntry(MacroAssembler* masm); | 230 static void Generate_Return_DebugBreakEntry(MacroAssembler* masm); |
231 static void Generate_StubNoRegisters_DebugBreak(MacroAssembler* masm); | 231 static void Generate_StubNoRegisters_DebugBreak(MacroAssembler* masm); |
232 }; | 232 }; |
233 | 233 |
234 } } // namespace v8::internal | 234 } } // namespace v8::internal |
235 | 235 |
236 #endif // V8_BUILTINS_H_ | 236 #endif // V8_BUILTINS_H_ |
OLD | NEW |