| 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 688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 699 VFP32DREGS, | 699 VFP32DREGS, |
| 700 NEON, | 700 NEON, |
| 701 // MIPS, MIPS64 | 701 // MIPS, MIPS64 |
| 702 FPU, | 702 FPU, |
| 703 FP64FPU, | 703 FP64FPU, |
| 704 MIPSr1, | 704 MIPSr1, |
| 705 MIPSr2, | 705 MIPSr2, |
| 706 MIPSr6, | 706 MIPSr6, |
| 707 // ARM64 | 707 // ARM64 |
| 708 ALWAYS_ALIGN_CSP, | 708 ALWAYS_ALIGN_CSP, |
| 709 COHERENT_CACHE, | |
| 710 // PPC | 709 // PPC |
| 711 FPR_GPR_MOV, | 710 FPR_GPR_MOV, |
| 712 LWSYNC, | 711 LWSYNC, |
| 713 ISELECT, | 712 ISELECT, |
| 714 // S390 | 713 // S390 |
| 715 DISTINCT_OPS, | 714 DISTINCT_OPS, |
| 716 GENERAL_INSTR_EXT, | 715 GENERAL_INSTR_EXT, |
| 717 FLOATING_POINT_EXT, | 716 FLOATING_POINT_EXT, |
| 718 NUMBER_OF_CPU_FEATURES | 717 NUMBER_OF_CPU_FEATURES |
| 719 }; | 718 }; |
| (...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1069 return static_cast<uint32_t>(bit_cast<uintptr_t>(address) >> | 1068 return static_cast<uint32_t>(bit_cast<uintptr_t>(address) >> |
| 1070 kPointerSizeLog2); | 1069 kPointerSizeLog2); |
| 1071 } | 1070 } |
| 1072 | 1071 |
| 1073 } // namespace internal | 1072 } // namespace internal |
| 1074 } // namespace v8 | 1073 } // namespace v8 |
| 1075 | 1074 |
| 1076 namespace i = v8::internal; | 1075 namespace i = v8::internal; |
| 1077 | 1076 |
| 1078 #endif // V8_GLOBALS_H_ | 1077 #endif // V8_GLOBALS_H_ |
| OLD | NEW |