| 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 767 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 778 MIPSr1, | 778 MIPSr1, |
| 779 MIPSr2, | 779 MIPSr2, |
| 780 MIPSr6, | 780 MIPSr6, |
| 781 // ARM64 | 781 // ARM64 |
| 782 ALWAYS_ALIGN_CSP, | 782 ALWAYS_ALIGN_CSP, |
| 783 // PPC | 783 // PPC |
| 784 FPR_GPR_MOV, | 784 FPR_GPR_MOV, |
| 785 LWSYNC, | 785 LWSYNC, |
| 786 ISELECT, | 786 ISELECT, |
| 787 VSX, | 787 VSX, |
| 788 MODULO, |
| 788 // S390 | 789 // S390 |
| 789 DISTINCT_OPS, | 790 DISTINCT_OPS, |
| 790 GENERAL_INSTR_EXT, | 791 GENERAL_INSTR_EXT, |
| 791 FLOATING_POINT_EXT, | 792 FLOATING_POINT_EXT, |
| 792 VECTOR_FACILITY, | 793 VECTOR_FACILITY, |
| 793 | 794 |
| 794 NUMBER_OF_CPU_FEATURES, | 795 NUMBER_OF_CPU_FEATURES, |
| 795 | 796 |
| 796 // ARM feature aliases (based on the standard configurations above). | 797 // ARM feature aliases (based on the standard configurations above). |
| 797 VFPv3 = ARMv7, | 798 VFPv3 = ARMv7, |
| (...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1326 } // namespace internal | 1327 } // namespace internal |
| 1327 } // namespace v8 | 1328 } // namespace v8 |
| 1328 | 1329 |
| 1329 // Used by js-builtin-reducer to identify whether ReduceArrayIterator() is | 1330 // Used by js-builtin-reducer to identify whether ReduceArrayIterator() is |
| 1330 // reducing a JSArray method, or a JSTypedArray method. | 1331 // reducing a JSArray method, or a JSTypedArray method. |
| 1331 enum class ArrayIteratorKind { kArray, kTypedArray }; | 1332 enum class ArrayIteratorKind { kArray, kTypedArray }; |
| 1332 | 1333 |
| 1333 namespace i = v8::internal; | 1334 namespace i = v8::internal; |
| 1334 | 1335 |
| 1335 #endif // V8_GLOBALS_H_ | 1336 #endif // V8_GLOBALS_H_ |
| OLD | NEW |