| 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 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 598 | 598 |
| 599 | 599 |
| 600 // CPU feature flags. | 600 // CPU feature flags. |
| 601 enum CpuFeature { | 601 enum CpuFeature { |
| 602 // x86 | 602 // x86 |
| 603 SSE4_1, | 603 SSE4_1, |
| 604 SSE3, | 604 SSE3, |
| 605 SAHF, | 605 SAHF, |
| 606 AVX, | 606 AVX, |
| 607 FMA3, | 607 FMA3, |
| 608 ATOM, |
| 608 // ARM | 609 // ARM |
| 609 VFP3, | 610 VFP3, |
| 610 ARMv7, | 611 ARMv7, |
| 611 ARMv8, | 612 ARMv8, |
| 612 SUDIV, | 613 SUDIV, |
| 613 MLS, | 614 MLS, |
| 614 UNALIGNED_ACCESSES, | 615 UNALIGNED_ACCESSES, |
| 615 MOVW_MOVT_IMMEDIATE_LOADS, | 616 MOVW_MOVT_IMMEDIATE_LOADS, |
| 616 VFP32DREGS, | 617 VFP32DREGS, |
| 617 NEON, | 618 NEON, |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 808 DCHECK(IsValidFunctionKind(kind)); | 809 DCHECK(IsValidFunctionKind(kind)); |
| 809 return kind & FunctionKind::kDefaultConstructor; | 810 return kind & FunctionKind::kDefaultConstructor; |
| 810 } | 811 } |
| 811 | 812 |
| 812 | 813 |
| 813 } } // namespace v8::internal | 814 } } // namespace v8::internal |
| 814 | 815 |
| 815 namespace i = v8::internal; | 816 namespace i = v8::internal; |
| 816 | 817 |
| 817 #endif // V8_GLOBALS_H_ | 818 #endif // V8_GLOBALS_H_ |
| OLD | NEW |