| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 \ | 109 \ |
| 110 /* Interpreter */ \ | 110 /* Interpreter */ \ |
| 111 ASM(InterpreterEntryTrampoline) \ | 111 ASM(InterpreterEntryTrampoline) \ |
| 112 ASM(InterpreterPushArgsAndCall) \ | 112 ASM(InterpreterPushArgsAndCall) \ |
| 113 ASM(InterpreterPushArgsAndCallFunction) \ | 113 ASM(InterpreterPushArgsAndCallFunction) \ |
| 114 ASM(InterpreterPushArgsAndTailCall) \ | 114 ASM(InterpreterPushArgsAndTailCall) \ |
| 115 ASM(InterpreterPushArgsAndTailCallFunction) \ | 115 ASM(InterpreterPushArgsAndTailCallFunction) \ |
| 116 ASM(InterpreterPushArgsAndConstruct) \ | 116 ASM(InterpreterPushArgsAndConstruct) \ |
| 117 ASM(InterpreterPushArgsAndConstructFunction) \ | 117 ASM(InterpreterPushArgsAndConstructFunction) \ |
| 118 ASM(InterpreterPushArgsAndConstructArray) \ | 118 ASM(InterpreterPushArgsAndConstructArray) \ |
| 119 ASM(InterpreterEnterBytecodeAdvance) \ |
| 119 ASM(InterpreterEnterBytecodeDispatch) \ | 120 ASM(InterpreterEnterBytecodeDispatch) \ |
| 120 ASM(InterpreterOnStackReplacement) \ | 121 ASM(InterpreterOnStackReplacement) \ |
| 121 \ | 122 \ |
| 122 /* Code life-cycle */ \ | 123 /* Code life-cycle */ \ |
| 123 ASM(CompileLazy) \ | 124 ASM(CompileLazy) \ |
| 124 ASM(CompileBaseline) \ | 125 ASM(CompileBaseline) \ |
| 125 ASM(CompileOptimized) \ | 126 ASM(CompileOptimized) \ |
| 126 ASM(CompileOptimizedConcurrent) \ | 127 ASM(CompileOptimizedConcurrent) \ |
| 127 ASM(InOptimizationQueue) \ | 128 ASM(InOptimizationQueue) \ |
| 128 ASM(InstantiateAsmJs) \ | 129 ASM(InstantiateAsmJs) \ |
| (...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 831 | 832 |
| 832 friend class Isolate; | 833 friend class Isolate; |
| 833 | 834 |
| 834 DISALLOW_COPY_AND_ASSIGN(Builtins); | 835 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 835 }; | 836 }; |
| 836 | 837 |
| 837 } // namespace internal | 838 } // namespace internal |
| 838 } // namespace v8 | 839 } // namespace v8 |
| 839 | 840 |
| 840 #endif // V8_BUILTINS_BUILTINS_H_ | 841 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |