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 766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
777 FP64FPU, | 777 FP64FPU, |
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 // S390 | 788 // S390 |
788 DISTINCT_OPS, | 789 DISTINCT_OPS, |
789 GENERAL_INSTR_EXT, | 790 GENERAL_INSTR_EXT, |
790 FLOATING_POINT_EXT, | 791 FLOATING_POINT_EXT, |
791 VECTOR_FACILITY, | 792 VECTOR_FACILITY, |
792 | 793 |
793 NUMBER_OF_CPU_FEATURES, | 794 NUMBER_OF_CPU_FEATURES, |
794 | 795 |
795 // ARM feature aliases (based on the standard configurations above). | 796 // ARM feature aliases (based on the standard configurations above). |
796 VFPv3 = ARMv7, | 797 VFPv3 = ARMv7, |
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1325 } // namespace internal | 1326 } // namespace internal |
1326 } // namespace v8 | 1327 } // namespace v8 |
1327 | 1328 |
1328 // Used by js-builtin-reducer to identify whether ReduceArrayIterator() is | 1329 // Used by js-builtin-reducer to identify whether ReduceArrayIterator() is |
1329 // reducing a JSArray method, or a JSTypedArray method. | 1330 // reducing a JSArray method, or a JSTypedArray method. |
1330 enum class ArrayIteratorKind { kArray, kTypedArray }; | 1331 enum class ArrayIteratorKind { kArray, kTypedArray }; |
1331 | 1332 |
1332 namespace i = v8::internal; | 1333 namespace i = v8::internal; |
1333 | 1334 |
1334 #endif // V8_GLOBALS_H_ | 1335 #endif // V8_GLOBALS_H_ |
OLD | NEW |