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 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
447 TFS(StoreICStrict, STORE_IC, StoreICState::kStrictModeState, \ | 447 TFS(StoreICStrict, STORE_IC, StoreICState::kStrictModeState, \ |
448 StoreWithVector) \ | 448 StoreWithVector) \ |
449 TFS(StoreICStrictTrampoline, STORE_IC, StoreICState::kStrictModeState, \ | 449 TFS(StoreICStrictTrampoline, STORE_IC, StoreICState::kStrictModeState, \ |
450 Store) \ | 450 Store) \ |
451 TFS(KeyedStoreIC, KEYED_STORE_IC, kNoExtraICState, StoreWithVector) \ | 451 TFS(KeyedStoreIC, KEYED_STORE_IC, kNoExtraICState, StoreWithVector) \ |
452 TFS(KeyedStoreICTrampoline, KEYED_STORE_IC, kNoExtraICState, Store) \ | 452 TFS(KeyedStoreICTrampoline, KEYED_STORE_IC, kNoExtraICState, Store) \ |
453 TFS(KeyedStoreICStrict, KEYED_STORE_IC, StoreICState::kStrictModeState, \ | 453 TFS(KeyedStoreICStrict, KEYED_STORE_IC, StoreICState::kStrictModeState, \ |
454 StoreWithVector) \ | 454 StoreWithVector) \ |
455 TFS(KeyedStoreICStrictTrampoline, KEYED_STORE_IC, \ | 455 TFS(KeyedStoreICStrictTrampoline, KEYED_STORE_IC, \ |
456 StoreICState::kStrictModeState, Store) \ | 456 StoreICState::kStrictModeState, Store) \ |
| 457 TFS(LoadGlobalIC, LOAD_GLOBAL_IC, LoadGlobalICState::kNotInsideTypeOfState, \ |
| 458 LoadGlobalWithVector) \ |
| 459 TFS(LoadGlobalICInsideTypeof, LOAD_GLOBAL_IC, \ |
| 460 LoadGlobalICState::kInsideTypeOfState, LoadGlobalWithVector) \ |
| 461 TFS(LoadGlobalICTrampoline, LOAD_GLOBAL_IC, \ |
| 462 LoadGlobalICState::kNotInsideTypeOfState, LoadGlobal) \ |
| 463 TFS(LoadGlobalICInsideTypeofTrampoline, LOAD_GLOBAL_IC, \ |
| 464 LoadGlobalICState::kInsideTypeOfState, LoadGlobal) \ |
457 \ | 465 \ |
458 /* Math */ \ | 466 /* Math */ \ |
459 /* ES6 section 20.2.2.1 Math.abs ( x ) */ \ | 467 /* ES6 section 20.2.2.1 Math.abs ( x ) */ \ |
460 TFJ(MathAbs, 1) \ | 468 TFJ(MathAbs, 1) \ |
461 /* ES6 section 20.2.2.2 Math.acos ( x ) */ \ | 469 /* ES6 section 20.2.2.2 Math.acos ( x ) */ \ |
462 TFJ(MathAcos, 1) \ | 470 TFJ(MathAcos, 1) \ |
463 /* ES6 section 20.2.2.3 Math.acosh ( x ) */ \ | 471 /* ES6 section 20.2.2.3 Math.acosh ( x ) */ \ |
464 TFJ(MathAcosh, 1) \ | 472 TFJ(MathAcosh, 1) \ |
465 /* ES6 section 20.2.2.4 Math.asin ( x ) */ \ | 473 /* ES6 section 20.2.2.4 Math.asin ( x ) */ \ |
466 TFJ(MathAsin, 1) \ | 474 TFJ(MathAsin, 1) \ |
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
901 | 909 |
902 friend class Isolate; | 910 friend class Isolate; |
903 | 911 |
904 DISALLOW_COPY_AND_ASSIGN(Builtins); | 912 DISALLOW_COPY_AND_ASSIGN(Builtins); |
905 }; | 913 }; |
906 | 914 |
907 } // namespace internal | 915 } // namespace internal |
908 } // namespace v8 | 916 } // namespace v8 |
909 | 917 |
910 #endif // V8_BUILTINS_BUILTINS_H_ | 918 #endif // V8_BUILTINS_BUILTINS_H_ |
OLD | NEW |