| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 \ | 123 \ |
| 124 /* Interpreter */ \ | 124 /* Interpreter */ \ |
| 125 ASM(InterpreterEntryTrampoline) \ | 125 ASM(InterpreterEntryTrampoline) \ |
| 126 ASM(InterpreterMarkBaselineOnReturn) \ | 126 ASM(InterpreterMarkBaselineOnReturn) \ |
| 127 ASM(InterpreterPushArgsAndCallFunction) \ | 127 ASM(InterpreterPushArgsAndCallFunction) \ |
| 128 ASM(InterpreterPushArgsAndTailCallFunction) \ | 128 ASM(InterpreterPushArgsAndTailCallFunction) \ |
| 129 ASM(InterpreterPushArgsAndCall) \ | 129 ASM(InterpreterPushArgsAndCall) \ |
| 130 ASM(InterpreterPushArgsAndTailCall) \ | 130 ASM(InterpreterPushArgsAndTailCall) \ |
| 131 ASM(InterpreterPushArgsAndConstruct) \ | 131 ASM(InterpreterPushArgsAndConstruct) \ |
| 132 ASM(InterpreterEnterBytecodeDispatch) \ | 132 ASM(InterpreterEnterBytecodeDispatch) \ |
| 133 ASM(InterpreterOnStackReplacement) \ |
| 133 \ | 134 \ |
| 134 /* Code life-cycle */ \ | 135 /* Code life-cycle */ \ |
| 135 ASM(CompileLazy) \ | 136 ASM(CompileLazy) \ |
| 136 ASM(CompileBaseline) \ | 137 ASM(CompileBaseline) \ |
| 137 ASM(CompileOptimized) \ | 138 ASM(CompileOptimized) \ |
| 138 ASM(CompileOptimizedConcurrent) \ | 139 ASM(CompileOptimizedConcurrent) \ |
| 139 ASM(InOptimizationQueue) \ | 140 ASM(InOptimizationQueue) \ |
| 140 ASM(InstantiateAsmJs) \ | 141 ASM(InstantiateAsmJs) \ |
| 141 ASM(MarkCodeAsToBeExecutedOnce) \ | 142 ASM(MarkCodeAsToBeExecutedOnce) \ |
| 142 ASM(MarkCodeAsExecutedOnce) \ | 143 ASM(MarkCodeAsExecutedOnce) \ |
| (...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 643 | 644 |
| 644 friend class Isolate; | 645 friend class Isolate; |
| 645 | 646 |
| 646 DISALLOW_COPY_AND_ASSIGN(Builtins); | 647 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 647 }; | 648 }; |
| 648 | 649 |
| 649 } // namespace internal | 650 } // namespace internal |
| 650 } // namespace v8 | 651 } // namespace v8 |
| 651 | 652 |
| 652 #endif // V8_BUILTINS_BUILTINS_H_ | 653 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |