| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 \ | 122 \ |
| 123 /* Interpreter */ \ | 123 /* Interpreter */ \ |
| 124 ASM(InterpreterEntryTrampoline) \ | 124 ASM(InterpreterEntryTrampoline) \ |
| 125 ASM(InterpreterMarkBaselineOnReturn) \ | 125 ASM(InterpreterMarkBaselineOnReturn) \ |
| 126 ASM(InterpreterPushArgsAndCall) \ | 126 ASM(InterpreterPushArgsAndCall) \ |
| 127 ASM(InterpreterPushArgsAndCallFunction) \ | 127 ASM(InterpreterPushArgsAndCallFunction) \ |
| 128 ASM(InterpreterPushArgsAndTailCall) \ | 128 ASM(InterpreterPushArgsAndTailCall) \ |
| 129 ASM(InterpreterPushArgsAndTailCallFunction) \ | 129 ASM(InterpreterPushArgsAndTailCallFunction) \ |
| 130 ASM(InterpreterPushArgsAndConstruct) \ | 130 ASM(InterpreterPushArgsAndConstruct) \ |
| 131 ASM(InterpreterPushArgsAndConstructFunction) \ | 131 ASM(InterpreterPushArgsAndConstructFunction) \ |
| 132 ASM(InterpreterPushArgsAndConstructArray) \ |
| 132 ASM(InterpreterEnterBytecodeDispatch) \ | 133 ASM(InterpreterEnterBytecodeDispatch) \ |
| 133 ASM(InterpreterOnStackReplacement) \ | 134 ASM(InterpreterOnStackReplacement) \ |
| 134 \ | 135 \ |
| 135 /* Code life-cycle */ \ | 136 /* Code life-cycle */ \ |
| 136 ASM(CompileLazy) \ | 137 ASM(CompileLazy) \ |
| 137 ASM(CompileBaseline) \ | 138 ASM(CompileBaseline) \ |
| 138 ASM(CompileOptimized) \ | 139 ASM(CompileOptimized) \ |
| 139 ASM(CompileOptimizedConcurrent) \ | 140 ASM(CompileOptimizedConcurrent) \ |
| 140 ASM(InOptimizationQueue) \ | 141 ASM(InOptimizationQueue) \ |
| 141 ASM(InstantiateAsmJs) \ | 142 ASM(InstantiateAsmJs) \ |
| (...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 691 | 692 |
| 692 friend class Isolate; | 693 friend class Isolate; |
| 693 | 694 |
| 694 DISALLOW_COPY_AND_ASSIGN(Builtins); | 695 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 695 }; | 696 }; |
| 696 | 697 |
| 697 } // namespace internal | 698 } // namespace internal |
| 698 } // namespace v8 | 699 } // namespace v8 |
| 699 | 700 |
| 700 #endif // V8_BUILTINS_BUILTINS_H_ | 701 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |