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 591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
602 | 602 |
603 | 603 |
604 // CPU feature flags. | 604 // CPU feature flags. |
605 enum CpuFeature { | 605 enum CpuFeature { |
606 // x86 | 606 // x86 |
607 SSE4_1, | 607 SSE4_1, |
608 SSE3, | 608 SSE3, |
609 SAHF, | 609 SAHF, |
610 AVX, | 610 AVX, |
611 FMA3, | 611 FMA3, |
| 612 ATOM, |
612 // ARM | 613 // ARM |
613 VFP3, | 614 VFP3, |
614 ARMv7, | 615 ARMv7, |
615 ARMv8, | 616 ARMv8, |
616 SUDIV, | 617 SUDIV, |
617 MLS, | 618 MLS, |
618 UNALIGNED_ACCESSES, | 619 UNALIGNED_ACCESSES, |
619 MOVW_MOVT_IMMEDIATE_LOADS, | 620 MOVW_MOVT_IMMEDIATE_LOADS, |
620 VFP32DREGS, | 621 VFP32DREGS, |
621 NEON, | 622 NEON, |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
817 DCHECK(IsValidFunctionKind(kind)); | 818 DCHECK(IsValidFunctionKind(kind)); |
818 return kind & FunctionKind::kDefaultConstructor; | 819 return kind & FunctionKind::kDefaultConstructor; |
819 } | 820 } |
820 | 821 |
821 | 822 |
822 } } // namespace v8::internal | 823 } } // namespace v8::internal |
823 | 824 |
824 namespace i = v8::internal; | 825 namespace i = v8::internal; |
825 | 826 |
826 #endif // V8_GLOBALS_H_ | 827 #endif // V8_GLOBALS_H_ |
OLD | NEW |