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 777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
788 // ARM64 | 788 // ARM64 |
789 ALWAYS_ALIGN_CSP, | 789 ALWAYS_ALIGN_CSP, |
790 // PPC | 790 // PPC |
791 FPR_GPR_MOV, | 791 FPR_GPR_MOV, |
792 LWSYNC, | 792 LWSYNC, |
793 ISELECT, | 793 ISELECT, |
794 // S390 | 794 // S390 |
795 DISTINCT_OPS, | 795 DISTINCT_OPS, |
796 GENERAL_INSTR_EXT, | 796 GENERAL_INSTR_EXT, |
797 FLOATING_POINT_EXT, | 797 FLOATING_POINT_EXT, |
| 798 VECTOR_FACILITY, |
798 | 799 |
799 NUMBER_OF_CPU_FEATURES, | 800 NUMBER_OF_CPU_FEATURES, |
800 | 801 |
801 // ARM feature aliases (based on the standard configurations above). | 802 // ARM feature aliases (based on the standard configurations above). |
802 VFPv3 = ARMv7, | 803 VFPv3 = ARMv7, |
803 NEON = ARMv7, | 804 NEON = ARMv7, |
804 VFP32DREGS = ARMv7, | 805 VFP32DREGS = ARMv7, |
805 SUDIV = ARMv7_SUDIV | 806 SUDIV = ARMv7_SUDIV |
806 }; | 807 }; |
807 | 808 |
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1312 } // namespace internal | 1313 } // namespace internal |
1313 } // namespace v8 | 1314 } // namespace v8 |
1314 | 1315 |
1315 // Used by js-builtin-reducer to identify whether ReduceArrayIterator() is | 1316 // Used by js-builtin-reducer to identify whether ReduceArrayIterator() is |
1316 // reducing a JSArray method, or a JSTypedArray method. | 1317 // reducing a JSArray method, or a JSTypedArray method. |
1317 enum class ArrayIteratorKind { kArray, kTypedArray }; | 1318 enum class ArrayIteratorKind { kArray, kTypedArray }; |
1318 | 1319 |
1319 namespace i = v8::internal; | 1320 namespace i = v8::internal; |
1320 | 1321 |
1321 #endif // V8_GLOBALS_H_ | 1322 #endif // V8_GLOBALS_H_ |
OLD | NEW |