| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 /* Apply and entries */ \ | 90 /* Apply and entries */ \ |
| 91 ASM(Apply) \ | 91 ASM(Apply) \ |
| 92 ASM(JSEntryTrampoline) \ | 92 ASM(JSEntryTrampoline) \ |
| 93 ASM(JSConstructEntryTrampoline) \ | 93 ASM(JSConstructEntryTrampoline) \ |
| 94 ASM(ResumeGeneratorTrampoline) \ | 94 ASM(ResumeGeneratorTrampoline) \ |
| 95 \ | 95 \ |
| 96 /* Stack and interrupt check */ \ | 96 /* Stack and interrupt check */ \ |
| 97 ASM(InterruptCheck) \ | 97 ASM(InterruptCheck) \ |
| 98 ASM(StackCheck) \ | 98 ASM(StackCheck) \ |
| 99 \ | 99 \ |
| 100 /* String helpers */ \ |
| 101 TFS(StringEqual, BUILTIN, kNoExtraICState, Compare) \ |
| 102 TFS(StringNotEqual, BUILTIN, kNoExtraICState, Compare) \ |
| 103 TFS(StringLessThan, BUILTIN, kNoExtraICState, Compare) \ |
| 104 TFS(StringLessThanOrEqual, BUILTIN, kNoExtraICState, Compare) \ |
| 105 TFS(StringGreaterThan, BUILTIN, kNoExtraICState, Compare) \ |
| 106 TFS(StringGreaterThanOrEqual, BUILTIN, kNoExtraICState, Compare) \ |
| 107 \ |
| 100 /* Interpreter */ \ | 108 /* Interpreter */ \ |
| 101 ASM(InterpreterEntryTrampoline) \ | 109 ASM(InterpreterEntryTrampoline) \ |
| 102 ASM(InterpreterMarkBaselineOnReturn) \ | 110 ASM(InterpreterMarkBaselineOnReturn) \ |
| 103 ASM(InterpreterPushArgsAndCall) \ | 111 ASM(InterpreterPushArgsAndCall) \ |
| 104 ASM(InterpreterPushArgsAndCallFunction) \ | 112 ASM(InterpreterPushArgsAndCallFunction) \ |
| 105 ASM(InterpreterPushArgsAndTailCall) \ | 113 ASM(InterpreterPushArgsAndTailCall) \ |
| 106 ASM(InterpreterPushArgsAndTailCallFunction) \ | 114 ASM(InterpreterPushArgsAndTailCallFunction) \ |
| 107 ASM(InterpreterPushArgsAndConstruct) \ | 115 ASM(InterpreterPushArgsAndConstruct) \ |
| 108 ASM(InterpreterPushArgsAndConstructFunction) \ | 116 ASM(InterpreterPushArgsAndConstructFunction) \ |
| 109 ASM(InterpreterPushArgsAndConstructArray) \ | 117 ASM(InterpreterPushArgsAndConstructArray) \ |
| (...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 718 | 726 |
| 719 friend class Isolate; | 727 friend class Isolate; |
| 720 | 728 |
| 721 DISALLOW_COPY_AND_ASSIGN(Builtins); | 729 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 722 }; | 730 }; |
| 723 | 731 |
| 724 } // namespace internal | 732 } // namespace internal |
| 725 } // namespace v8 | 733 } // namespace v8 |
| 726 | 734 |
| 727 #endif // V8_BUILTINS_BUILTINS_H_ | 735 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |