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 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
616 VFP32DREGS, | 616 VFP32DREGS, |
617 NEON, | 617 NEON, |
618 // MIPS, MIPS64 | 618 // MIPS, MIPS64 |
619 FPU, | 619 FPU, |
620 FP64FPU, | 620 FP64FPU, |
621 MIPSr1, | 621 MIPSr1, |
622 MIPSr2, | 622 MIPSr2, |
623 MIPSr6, | 623 MIPSr6, |
624 // ARM64 | 624 // ARM64 |
625 ALWAYS_ALIGN_CSP, | 625 ALWAYS_ALIGN_CSP, |
| 626 COHERENT_CACHE, |
626 NUMBER_OF_CPU_FEATURES | 627 NUMBER_OF_CPU_FEATURES |
627 }; | 628 }; |
628 | 629 |
629 | 630 |
630 // Used to specify if a macro instruction must perform a smi check on tagged | 631 // Used to specify if a macro instruction must perform a smi check on tagged |
631 // values. | 632 // values. |
632 enum SmiCheckType { | 633 enum SmiCheckType { |
633 DONT_DO_SMI_CHECK, | 634 DONT_DO_SMI_CHECK, |
634 DO_SMI_CHECK | 635 DO_SMI_CHECK |
635 }; | 636 }; |
(...skipping 172 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 |