| 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 736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 747 // ARM64 | 747 // ARM64 |
| 748 ALWAYS_ALIGN_CSP, | 748 ALWAYS_ALIGN_CSP, |
| 749 // PPC | 749 // PPC |
| 750 FPR_GPR_MOV, | 750 FPR_GPR_MOV, |
| 751 LWSYNC, | 751 LWSYNC, |
| 752 ISELECT, | 752 ISELECT, |
| 753 // S390 | 753 // S390 |
| 754 DISTINCT_OPS, | 754 DISTINCT_OPS, |
| 755 GENERAL_INSTR_EXT, | 755 GENERAL_INSTR_EXT, |
| 756 FLOATING_POINT_EXT, | 756 FLOATING_POINT_EXT, |
| 757 // PPC/S390 | |
| 758 UNALIGNED_ACCESSES, | |
| 759 | 757 |
| 760 NUMBER_OF_CPU_FEATURES, | 758 NUMBER_OF_CPU_FEATURES, |
| 761 | 759 |
| 762 // ARM feature aliases (based on the standard configurations above). | 760 // ARM feature aliases (based on the standard configurations above). |
| 763 VFP3 = ARMv7, | 761 VFP3 = ARMv7, |
| 764 NEON = ARMv7, | 762 NEON = ARMv7, |
| 765 VFP32DREGS = ARMv7, | 763 VFP32DREGS = ARMv7, |
| 766 SUDIV = ARMv7_SUDIV | 764 SUDIV = ARMv7_SUDIV |
| 767 }; | 765 }; |
| 768 | 766 |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1166 public: | 1164 public: |
| 1167 enum { kNone = 0x00, kSignedSmall = 0x01, kNumber = 0x3, kAny = 0x7 }; | 1165 enum { kNone = 0x00, kSignedSmall = 0x01, kNumber = 0x3, kAny = 0x7 }; |
| 1168 }; | 1166 }; |
| 1169 | 1167 |
| 1170 } // namespace internal | 1168 } // namespace internal |
| 1171 } // namespace v8 | 1169 } // namespace v8 |
| 1172 | 1170 |
| 1173 namespace i = v8::internal; | 1171 namespace i = v8::internal; |
| 1174 | 1172 |
| 1175 #endif // V8_GLOBALS_H_ | 1173 #endif // V8_GLOBALS_H_ |
| OLD | NEW |