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