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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 TFS(LoadGlobalIC_Slow, HANDLER, Code::LOAD_GLOBAL_IC, LoadGlobalWithVector, \ | 240 TFS(LoadGlobalIC_Slow, HANDLER, Code::LOAD_GLOBAL_IC, LoadGlobalWithVector, \ |
241 1) \ | 241 1) \ |
242 TFS(LoadField, BUILTIN, kNoExtraICState, LoadField, 1) \ | 242 TFS(LoadField, BUILTIN, kNoExtraICState, LoadField, 1) \ |
243 TFS(LoadIC_FunctionPrototype, HANDLER, Code::LOAD_IC, LoadWithVector, 1) \ | 243 TFS(LoadIC_FunctionPrototype, HANDLER, Code::LOAD_IC, LoadWithVector, 1) \ |
244 ASH(LoadIC_Getter_ForDeopt, BUILTIN, kNoExtraICState) \ | 244 ASH(LoadIC_Getter_ForDeopt, BUILTIN, kNoExtraICState) \ |
245 TFS(LoadIC_Miss, BUILTIN, kNoExtraICState, LoadWithVector, 1) \ | 245 TFS(LoadIC_Miss, BUILTIN, kNoExtraICState, LoadWithVector, 1) \ |
246 TFS(LoadIC_Slow, HANDLER, Code::LOAD_IC, LoadWithVector, 1) \ | 246 TFS(LoadIC_Slow, HANDLER, Code::LOAD_IC, LoadWithVector, 1) \ |
247 TFS(LoadIC_Uninitialized, BUILTIN, kNoExtraICState, LoadWithVector, 1) \ | 247 TFS(LoadIC_Uninitialized, BUILTIN, kNoExtraICState, LoadWithVector, 1) \ |
248 TFS(StoreIC_Miss, BUILTIN, kNoExtraICState, StoreWithVector, 1) \ | 248 TFS(StoreIC_Miss, BUILTIN, kNoExtraICState, StoreWithVector, 1) \ |
249 ASH(StoreIC_Setter_ForDeopt, BUILTIN, kNoExtraICState) \ | 249 ASH(StoreIC_Setter_ForDeopt, BUILTIN, kNoExtraICState) \ |
| 250 TFS(StoreIC_Uninitialized, BUILTIN, kNoExtraICState, StoreWithVector, 1) \ |
| 251 TFS(StoreICStrict_Uninitialized, BUILTIN, kNoExtraICState, StoreWithVector, \ |
| 252 1) \ |
250 \ | 253 \ |
251 /* Built-in functions for Javascript */ \ | 254 /* Built-in functions for Javascript */ \ |
252 /* Special internal builtins */ \ | 255 /* Special internal builtins */ \ |
253 CPP(EmptyFunction) \ | 256 CPP(EmptyFunction) \ |
254 CPP(Illegal) \ | 257 CPP(Illegal) \ |
255 CPP(RestrictedFunctionPropertiesThrower) \ | 258 CPP(RestrictedFunctionPropertiesThrower) \ |
256 CPP(RestrictedStrictArgumentsPropertiesThrower) \ | 259 CPP(RestrictedStrictArgumentsPropertiesThrower) \ |
257 CPP(UnsupportedThrower) \ | 260 CPP(UnsupportedThrower) \ |
258 TFJ(ReturnReceiver, 0) \ | 261 TFJ(ReturnReceiver, 0) \ |
259 \ | 262 \ |
(...skipping 753 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1013 | 1016 |
1014 friend class Isolate; | 1017 friend class Isolate; |
1015 | 1018 |
1016 DISALLOW_COPY_AND_ASSIGN(Builtins); | 1019 DISALLOW_COPY_AND_ASSIGN(Builtins); |
1017 }; | 1020 }; |
1018 | 1021 |
1019 } // namespace internal | 1022 } // namespace internal |
1020 } // namespace v8 | 1023 } // namespace v8 |
1021 | 1024 |
1022 #endif // V8_BUILTINS_BUILTINS_H_ | 1025 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |