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_BUILTINS_H_ | 5 #ifndef V8_BUILTINS_BUILTINS_H_ |
6 #define V8_BUILTINS_BUILTINS_H_ | 6 #define V8_BUILTINS_BUILTINS_H_ |
7 | 7 |
8 #include "src/base/flags.h" | 8 #include "src/base/flags.h" |
9 #include "src/handles.h" | 9 #include "src/handles.h" |
10 | 10 |
(...skipping 109 matching lines...) Loading... |
120 \ | 120 \ |
121 /* Interpreter */ \ | 121 /* Interpreter */ \ |
122 ASM(InterpreterEntryTrampoline) \ | 122 ASM(InterpreterEntryTrampoline) \ |
123 ASM(InterpreterMarkBaselineOnReturn) \ | 123 ASM(InterpreterMarkBaselineOnReturn) \ |
124 ASM(InterpreterPushArgsAndCall) \ | 124 ASM(InterpreterPushArgsAndCall) \ |
125 ASM(InterpreterPushArgsAndCallFunction) \ | 125 ASM(InterpreterPushArgsAndCallFunction) \ |
126 ASM(InterpreterPushArgsAndTailCall) \ | 126 ASM(InterpreterPushArgsAndTailCall) \ |
127 ASM(InterpreterPushArgsAndTailCallFunction) \ | 127 ASM(InterpreterPushArgsAndTailCallFunction) \ |
128 ASM(InterpreterPushArgsAndConstruct) \ | 128 ASM(InterpreterPushArgsAndConstruct) \ |
129 ASM(InterpreterPushArgsAndConstructFunction) \ | 129 ASM(InterpreterPushArgsAndConstructFunction) \ |
| 130 ASM(InterpreterPushArgsAndConstructArray) \ |
130 ASM(InterpreterEnterBytecodeDispatch) \ | 131 ASM(InterpreterEnterBytecodeDispatch) \ |
131 ASM(InterpreterOnStackReplacement) \ | 132 ASM(InterpreterOnStackReplacement) \ |
132 \ | 133 \ |
133 /* Code life-cycle */ \ | 134 /* Code life-cycle */ \ |
134 ASM(CompileLazy) \ | 135 ASM(CompileLazy) \ |
135 ASM(CompileBaseline) \ | 136 ASM(CompileBaseline) \ |
136 ASM(CompileOptimized) \ | 137 ASM(CompileOptimized) \ |
137 ASM(CompileOptimizedConcurrent) \ | 138 ASM(CompileOptimizedConcurrent) \ |
138 ASM(InOptimizationQueue) \ | 139 ASM(InOptimizationQueue) \ |
139 ASM(InstantiateAsmJs) \ | 140 ASM(InstantiateAsmJs) \ |
(...skipping 561 matching lines...) Loading... |
701 | 702 |
702 friend class Isolate; | 703 friend class Isolate; |
703 | 704 |
704 DISALLOW_COPY_AND_ASSIGN(Builtins); | 705 DISALLOW_COPY_AND_ASSIGN(Builtins); |
705 }; | 706 }; |
706 | 707 |
707 } // namespace internal | 708 } // namespace internal |
708 } // namespace v8 | 709 } // namespace v8 |
709 | 710 |
710 #endif // V8_BUILTINS_BUILTINS_H_ | 711 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |