| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 /* String helpers */ \ | 102 /* String helpers */ \ |
| 103 TFS(StringEqual, BUILTIN, kNoExtraICState, Compare) \ | 103 TFS(StringEqual, BUILTIN, kNoExtraICState, Compare) \ |
| 104 TFS(StringNotEqual, BUILTIN, kNoExtraICState, Compare) \ | 104 TFS(StringNotEqual, BUILTIN, kNoExtraICState, Compare) \ |
| 105 TFS(StringLessThan, BUILTIN, kNoExtraICState, Compare) \ | 105 TFS(StringLessThan, BUILTIN, kNoExtraICState, Compare) \ |
| 106 TFS(StringLessThanOrEqual, BUILTIN, kNoExtraICState, Compare) \ | 106 TFS(StringLessThanOrEqual, BUILTIN, kNoExtraICState, Compare) \ |
| 107 TFS(StringGreaterThan, BUILTIN, kNoExtraICState, Compare) \ | 107 TFS(StringGreaterThan, BUILTIN, kNoExtraICState, Compare) \ |
| 108 TFS(StringGreaterThanOrEqual, BUILTIN, kNoExtraICState, Compare) \ | 108 TFS(StringGreaterThanOrEqual, BUILTIN, kNoExtraICState, Compare) \ |
| 109 \ | 109 \ |
| 110 /* Interpreter */ \ | 110 /* Interpreter */ \ |
| 111 ASM(InterpreterEntryTrampoline) \ | 111 ASM(InterpreterEntryTrampoline) \ |
| 112 ASM(InterpreterMarkBaselineOnReturn) \ | |
| 113 ASM(InterpreterPushArgsAndCall) \ | 112 ASM(InterpreterPushArgsAndCall) \ |
| 114 ASM(InterpreterPushArgsAndCallFunction) \ | 113 ASM(InterpreterPushArgsAndCallFunction) \ |
| 115 ASM(InterpreterPushArgsAndTailCall) \ | 114 ASM(InterpreterPushArgsAndTailCall) \ |
| 116 ASM(InterpreterPushArgsAndTailCallFunction) \ | 115 ASM(InterpreterPushArgsAndTailCallFunction) \ |
| 117 ASM(InterpreterPushArgsAndConstruct) \ | 116 ASM(InterpreterPushArgsAndConstruct) \ |
| 118 ASM(InterpreterPushArgsAndConstructFunction) \ | 117 ASM(InterpreterPushArgsAndConstructFunction) \ |
| 119 ASM(InterpreterPushArgsAndConstructArray) \ | 118 ASM(InterpreterPushArgsAndConstructArray) \ |
| 120 ASM(InterpreterEnterBytecodeDispatch) \ | 119 ASM(InterpreterEnterBytecodeDispatch) \ |
| 121 ASM(InterpreterOnStackReplacement) \ | 120 ASM(InterpreterOnStackReplacement) \ |
| 122 \ | 121 \ |
| (...skipping 709 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 832 | 831 |
| 833 friend class Isolate; | 832 friend class Isolate; |
| 834 | 833 |
| 835 DISALLOW_COPY_AND_ASSIGN(Builtins); | 834 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 836 }; | 835 }; |
| 837 | 836 |
| 838 } // namespace internal | 837 } // namespace internal |
| 839 } // namespace v8 | 838 } // namespace v8 |
| 840 | 839 |
| 841 #endif // V8_BUILTINS_BUILTINS_H_ | 840 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |