| 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 753 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 764 BMI1, | 764 BMI1, |
| 765 BMI2, | 765 BMI2, |
| 766 LZCNT, | 766 LZCNT, |
| 767 POPCNT, | 767 POPCNT, |
| 768 ATOM, | 768 ATOM, |
| 769 // ARM | 769 // ARM |
| 770 // - Standard configurations. The baseline is ARMv6+VFPv2. | 770 // - Standard configurations. The baseline is ARMv6+VFPv2. |
| 771 ARMv7, // ARMv7-A + VFPv3-D32 + NEON | 771 ARMv7, // ARMv7-A + VFPv3-D32 + NEON |
| 772 ARMv7_SUDIV, // ARMv7-A + VFPv4-D32 + NEON + SUDIV | 772 ARMv7_SUDIV, // ARMv7-A + VFPv4-D32 + NEON + SUDIV |
| 773 ARMv8, // ARMv8-A (+ all of the above) | 773 ARMv8, // ARMv8-A (+ all of the above) |
| 774 // - Additional tuning flags. | |
| 775 MOVW_MOVT_IMMEDIATE_LOADS, | |
| 776 // MIPS, MIPS64 | 774 // MIPS, MIPS64 |
| 777 FPU, | 775 FPU, |
| 778 FP64FPU, | 776 FP64FPU, |
| 779 MIPSr1, | 777 MIPSr1, |
| 780 MIPSr2, | 778 MIPSr2, |
| 781 MIPSr6, | 779 MIPSr6, |
| 782 // ARM64 | 780 // ARM64 |
| 783 ALWAYS_ALIGN_CSP, | 781 ALWAYS_ALIGN_CSP, |
| 784 // PPC | 782 // PPC |
| 785 FPR_GPR_MOV, | 783 FPR_GPR_MOV, |
| (...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1232 LIVE_EDIT_FRAME_DROPPED_IN_RETURN_CALL, | 1230 LIVE_EDIT_FRAME_DROPPED_IN_RETURN_CALL, |
| 1233 LIVE_EDIT_CURRENTLY_SET_MODE | 1231 LIVE_EDIT_CURRENTLY_SET_MODE |
| 1234 }; | 1232 }; |
| 1235 | 1233 |
| 1236 } // namespace internal | 1234 } // namespace internal |
| 1237 } // namespace v8 | 1235 } // namespace v8 |
| 1238 | 1236 |
| 1239 namespace i = v8::internal; | 1237 namespace i = v8::internal; |
| 1240 | 1238 |
| 1241 #endif // V8_GLOBALS_H_ | 1239 #endif // V8_GLOBALS_H_ |
| OLD | NEW |