| 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 "include/v8stdint.h" | 8 #include "include/v8stdint.h" |
| 9 | 9 |
| 10 #include "src/base/build_config.h" | 10 #include "src/base/build_config.h" |
| (...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 609 // CPU feature flags. | 609 // CPU feature flags. |
| 610 enum CpuFeature { | 610 enum CpuFeature { |
| 611 // x86 | 611 // x86 |
| 612 SSE4_1, | 612 SSE4_1, |
| 613 SSE3, | 613 SSE3, |
| 614 SAHF, | 614 SAHF, |
| 615 // ARM | 615 // ARM |
| 616 VFP3, | 616 VFP3, |
| 617 ARMv7, | 617 ARMv7, |
| 618 SUDIV, | 618 SUDIV, |
| 619 MLS, |
| 619 UNALIGNED_ACCESSES, | 620 UNALIGNED_ACCESSES, |
| 620 MOVW_MOVT_IMMEDIATE_LOADS, | 621 MOVW_MOVT_IMMEDIATE_LOADS, |
| 621 VFP32DREGS, | 622 VFP32DREGS, |
| 622 NEON, | 623 NEON, |
| 623 // MIPS | 624 // MIPS |
| 624 FPU, | 625 FPU, |
| 625 // ARM64 | 626 // ARM64 |
| 626 ALWAYS_ALIGN_CSP, | 627 ALWAYS_ALIGN_CSP, |
| 627 NUMBER_OF_CPU_FEATURES | 628 NUMBER_OF_CPU_FEATURES |
| 628 }; | 629 }; |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 757 enum MinusZeroMode { | 758 enum MinusZeroMode { |
| 758 TREAT_MINUS_ZERO_AS_ZERO, | 759 TREAT_MINUS_ZERO_AS_ZERO, |
| 759 FAIL_ON_MINUS_ZERO | 760 FAIL_ON_MINUS_ZERO |
| 760 }; | 761 }; |
| 761 | 762 |
| 762 } } // namespace v8::internal | 763 } } // namespace v8::internal |
| 763 | 764 |
| 764 namespace i = v8::internal; | 765 namespace i = v8::internal; |
| 765 | 766 |
| 766 #endif // V8_GLOBALS_H_ | 767 #endif // V8_GLOBALS_H_ |
| OLD | NEW |