| 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 775 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 786 LWSYNC, | 786 LWSYNC, |
| 787 ISELECT, | 787 ISELECT, |
| 788 // S390 | 788 // S390 |
| 789 DISTINCT_OPS, | 789 DISTINCT_OPS, |
| 790 GENERAL_INSTR_EXT, | 790 GENERAL_INSTR_EXT, |
| 791 FLOATING_POINT_EXT, | 791 FLOATING_POINT_EXT, |
| 792 | 792 |
| 793 NUMBER_OF_CPU_FEATURES, | 793 NUMBER_OF_CPU_FEATURES, |
| 794 | 794 |
| 795 // ARM feature aliases (based on the standard configurations above). | 795 // ARM feature aliases (based on the standard configurations above). |
| 796 VFP3 = ARMv7, | 796 VFPv3 = ARMv7, |
| 797 NEON = ARMv7, | 797 NEON = ARMv7, |
| 798 VFP32DREGS = ARMv7, | 798 VFP32DREGS = ARMv7, |
| 799 SUDIV = ARMv7_SUDIV | 799 SUDIV = ARMv7_SUDIV |
| 800 }; | 800 }; |
| 801 | 801 |
| 802 // Defines hints about receiver values based on structural knowledge. | 802 // Defines hints about receiver values based on structural knowledge. |
| 803 enum class ConvertReceiverMode : unsigned { | 803 enum class ConvertReceiverMode : unsigned { |
| 804 kNullOrUndefined, // Guaranteed to be null or undefined. | 804 kNullOrUndefined, // Guaranteed to be null or undefined. |
| 805 kNotNullOrUndefined, // Guaranteed to never be null or undefined. | 805 kNotNullOrUndefined, // Guaranteed to never be null or undefined. |
| 806 kAny // No specific knowledge about receiver. | 806 kAny // No specific knowledge about receiver. |
| (...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1233 LIVE_EDIT_FRAME_DROPPED_IN_RETURN_CALL, | 1233 LIVE_EDIT_FRAME_DROPPED_IN_RETURN_CALL, |
| 1234 LIVE_EDIT_CURRENTLY_SET_MODE | 1234 LIVE_EDIT_CURRENTLY_SET_MODE |
| 1235 }; | 1235 }; |
| 1236 | 1236 |
| 1237 } // namespace internal | 1237 } // namespace internal |
| 1238 } // namespace v8 | 1238 } // namespace v8 |
| 1239 | 1239 |
| 1240 namespace i = v8::internal; | 1240 namespace i = v8::internal; |
| 1241 | 1241 |
| 1242 #endif // V8_GLOBALS_H_ | 1242 #endif // V8_GLOBALS_H_ |
| OLD | NEW |