| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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_GLOBALS_H_ | 5 #ifndef V8_GLOBALS_H_ |
| 6 #define V8_GLOBALS_H_ | 6 #define V8_GLOBALS_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 784 FPR_GPR_MOV, | 784 FPR_GPR_MOV, |
| 785 LWSYNC, | 785 LWSYNC, |
| 786 ISELECT, | 786 ISELECT, |
| 787 VSX, | 787 VSX, |
| 788 MODULO, | 788 MODULO, |
| 789 // S390 | 789 // S390 |
| 790 DISTINCT_OPS, | 790 DISTINCT_OPS, |
| 791 GENERAL_INSTR_EXT, | 791 GENERAL_INSTR_EXT, |
| 792 FLOATING_POINT_EXT, | 792 FLOATING_POINT_EXT, |
| 793 VECTOR_FACILITY, | 793 VECTOR_FACILITY, |
| 794 MISC_INSTR_EXT2, |
| 794 | 795 |
| 795 NUMBER_OF_CPU_FEATURES, | 796 NUMBER_OF_CPU_FEATURES, |
| 796 | 797 |
| 797 // ARM feature aliases (based on the standard configurations above). | 798 // ARM feature aliases (based on the standard configurations above). |
| 798 VFPv3 = ARMv7, | 799 VFPv3 = ARMv7, |
| 799 NEON = ARMv7, | 800 NEON = ARMv7, |
| 800 VFP32DREGS = ARMv7, | 801 VFP32DREGS = ARMv7, |
| 801 SUDIV = ARMv7_SUDIV | 802 SUDIV = ARMv7_SUDIV |
| 802 }; | 803 }; |
| 803 | 804 |
| (...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1336 } // namespace internal | 1337 } // namespace internal |
| 1337 } // namespace v8 | 1338 } // namespace v8 |
| 1338 | 1339 |
| 1339 // Used by js-builtin-reducer to identify whether ReduceArrayIterator() is | 1340 // Used by js-builtin-reducer to identify whether ReduceArrayIterator() is |
| 1340 // reducing a JSArray method, or a JSTypedArray method. | 1341 // reducing a JSArray method, or a JSTypedArray method. |
| 1341 enum class ArrayIteratorKind { kArray, kTypedArray }; | 1342 enum class ArrayIteratorKind { kArray, kTypedArray }; |
| 1342 | 1343 |
| 1343 namespace i = v8::internal; | 1344 namespace i = v8::internal; |
| 1344 | 1345 |
| 1345 #endif // V8_GLOBALS_H_ | 1346 #endif // V8_GLOBALS_H_ |
| OLD | NEW |