| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 /* Construct */ \ | 75 /* Construct */ \ |
| 76 /* ES6 section 9.2.2 [[Construct]] ( argumentsList, newTarget) */ \ | 76 /* ES6 section 9.2.2 [[Construct]] ( argumentsList, newTarget) */ \ |
| 77 ASM(ConstructFunction) \ | 77 ASM(ConstructFunction) \ |
| 78 /* ES6 section 9.4.1.2 [[Construct]] (argumentsList, newTarget) */ \ | 78 /* ES6 section 9.4.1.2 [[Construct]] (argumentsList, newTarget) */ \ |
| 79 ASM(ConstructBoundFunction) \ | 79 ASM(ConstructBoundFunction) \ |
| 80 ASM(ConstructedNonConstructable) \ | 80 ASM(ConstructedNonConstructable) \ |
| 81 /* ES6 section 9.5.14 [[Construct]] ( argumentsList, newTarget) */ \ | 81 /* ES6 section 9.5.14 [[Construct]] ( argumentsList, newTarget) */ \ |
| 82 ASM(ConstructProxy) \ | 82 ASM(ConstructProxy) \ |
| 83 /* ES6 section 7.3.13 Construct (F, [argumentsList], [newTarget]) */ \ | 83 /* ES6 section 7.3.13 Construct (F, [argumentsList], [newTarget]) */ \ |
| 84 ASM(Construct) \ | 84 ASM(Construct) \ |
| 85 ASM(ConstructWithSpread) \ |
| 85 ASM(JSConstructStubApi) \ | 86 ASM(JSConstructStubApi) \ |
| 86 ASM(JSConstructStubGeneric) \ | 87 ASM(JSConstructStubGeneric) \ |
| 87 ASM(JSBuiltinsConstructStub) \ | 88 ASM(JSBuiltinsConstructStub) \ |
| 88 ASM(JSBuiltinsConstructStubForDerived) \ | 89 ASM(JSBuiltinsConstructStubForDerived) \ |
| 89 \ | 90 \ |
| 90 /* Apply and entries */ \ | 91 /* Apply and entries */ \ |
| 91 ASM(Apply) \ | 92 ASM(Apply) \ |
| 92 ASM(JSEntryTrampoline) \ | 93 ASM(JSEntryTrampoline) \ |
| 93 ASM(JSConstructEntryTrampoline) \ | 94 ASM(JSConstructEntryTrampoline) \ |
| 94 ASM(ResumeGeneratorTrampoline) \ | 95 ASM(ResumeGeneratorTrampoline) \ |
| (...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 856 | 857 |
| 857 friend class Isolate; | 858 friend class Isolate; |
| 858 | 859 |
| 859 DISALLOW_COPY_AND_ASSIGN(Builtins); | 860 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 860 }; | 861 }; |
| 861 | 862 |
| 862 } // namespace internal | 863 } // namespace internal |
| 863 } // namespace v8 | 864 } // namespace v8 |
| 864 | 865 |
| 865 #endif // V8_BUILTINS_BUILTINS_H_ | 866 #endif // V8_BUILTINS_BUILTINS_H_ |
| OLD | NEW |