Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: src/globals.h

Issue 2360243002: [arm] Clean up use of IsSupported and IsEnabled. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/compiler/arm/instruction-selector-arm.cc ('k') | test/cctest/test-assembler-arm.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/compiler/arm/instruction-selector-arm.cc ('k') | test/cctest/test-assembler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698