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/globals.h" | 9 #include "src/globals.h" |
10 | 10 |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 ASM(ConstructWithSpread) \ | 95 ASM(ConstructWithSpread) \ |
96 ASM(JSConstructStubApi) \ | 96 ASM(JSConstructStubApi) \ |
97 ASM(JSConstructStubGeneric) \ | 97 ASM(JSConstructStubGeneric) \ |
98 ASM(JSBuiltinsConstructStub) \ | 98 ASM(JSBuiltinsConstructStub) \ |
99 ASM(JSBuiltinsConstructStubForDerived) \ | 99 ASM(JSBuiltinsConstructStubForDerived) \ |
100 TFS(FastNewClosure, BUILTIN, kNoExtraICState, FastNewClosure) \ | 100 TFS(FastNewClosure, BUILTIN, kNoExtraICState, FastNewClosure) \ |
101 TFS(FastNewFunctionContextEval, BUILTIN, kNoExtraICState, \ | 101 TFS(FastNewFunctionContextEval, BUILTIN, kNoExtraICState, \ |
102 FastNewFunctionContext) \ | 102 FastNewFunctionContext) \ |
103 TFS(FastNewFunctionContextFunction, BUILTIN, kNoExtraICState, \ | 103 TFS(FastNewFunctionContextFunction, BUILTIN, kNoExtraICState, \ |
104 FastNewFunctionContext) \ | 104 FastNewFunctionContext) \ |
| 105 TFS(FastNewStrictArguments, BUILTIN, kNoExtraICState, \ |
| 106 FastNewStrictArguments) \ |
| 107 TFS(FastNewSloppyArguments, BUILTIN, kNoExtraICState, \ |
| 108 FastNewSloppyArguments) \ |
| 109 TFS(FastNewRestParameter, BUILTIN, kNoExtraICState, FastNewRestParameter) \ |
105 TFS(FastCloneRegExp, BUILTIN, kNoExtraICState, FastCloneRegExp) \ | 110 TFS(FastCloneRegExp, BUILTIN, kNoExtraICState, FastCloneRegExp) \ |
106 TFS(FastCloneShallowArrayTrack, BUILTIN, kNoExtraICState, \ | 111 TFS(FastCloneShallowArrayTrack, BUILTIN, kNoExtraICState, \ |
107 FastCloneShallowArray) \ | 112 FastCloneShallowArray) \ |
108 TFS(FastCloneShallowArrayDontTrack, BUILTIN, kNoExtraICState, \ | 113 TFS(FastCloneShallowArrayDontTrack, BUILTIN, kNoExtraICState, \ |
109 FastCloneShallowArray) \ | 114 FastCloneShallowArray) \ |
110 TFS(FastCloneShallowObject0, BUILTIN, kNoExtraICState, \ | 115 TFS(FastCloneShallowObject0, BUILTIN, kNoExtraICState, \ |
111 FastCloneShallowObject) \ | 116 FastCloneShallowObject) \ |
112 TFS(FastCloneShallowObject1, BUILTIN, kNoExtraICState, \ | 117 TFS(FastCloneShallowObject1, BUILTIN, kNoExtraICState, \ |
113 FastCloneShallowObject) \ | 118 FastCloneShallowObject) \ |
114 TFS(FastCloneShallowObject2, BUILTIN, kNoExtraICState, \ | 119 TFS(FastCloneShallowObject2, BUILTIN, kNoExtraICState, \ |
(...skipping 828 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
943 | 948 |
944 friend class Isolate; | 949 friend class Isolate; |
945 | 950 |
946 DISALLOW_COPY_AND_ASSIGN(Builtins); | 951 DISALLOW_COPY_AND_ASSIGN(Builtins); |
947 }; | 952 }; |
948 | 953 |
949 } // namespace internal | 954 } // namespace internal |
950 } // namespace v8 | 955 } // namespace v8 |
951 | 956 |
952 #endif // V8_BUILTINS_BUILTINS_H_ | 957 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |