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

Side by Side Diff: src/globals.h

Issue 331803003: Emulate MLS on pre-ARMv6T2. Cleaned up thumbee vs. thumb2 confusion. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Cleaned up thumbee vs. thumb2 confusion. Created 6 years, 6 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 | Annotate | Revision Log
« src/cpu.cc ('K') | « src/flag-definitions.h ('k') | no next file » | 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 "include/v8stdint.h" 8 #include "include/v8stdint.h"
9 9
10 #include "src/base/build_config.h" 10 #include "src/base/build_config.h"
(...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after
609 // CPU feature flags. 609 // CPU feature flags.
610 enum CpuFeature { 610 enum CpuFeature {
611 // x86 611 // x86
612 SSE4_1, 612 SSE4_1,
613 SSE3, 613 SSE3,
614 SAHF, 614 SAHF,
615 // ARM 615 // ARM
616 VFP3, 616 VFP3,
617 ARMv7, 617 ARMv7,
618 SUDIV, 618 SUDIV,
619 MLS,
619 UNALIGNED_ACCESSES, 620 UNALIGNED_ACCESSES,
620 MOVW_MOVT_IMMEDIATE_LOADS, 621 MOVW_MOVT_IMMEDIATE_LOADS,
621 VFP32DREGS, 622 VFP32DREGS,
622 NEON, 623 NEON,
623 // MIPS 624 // MIPS
624 FPU, 625 FPU,
625 // ARM64 626 // ARM64
626 ALWAYS_ALIGN_CSP, 627 ALWAYS_ALIGN_CSP,
627 NUMBER_OF_CPU_FEATURES 628 NUMBER_OF_CPU_FEATURES
628 }; 629 };
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
757 enum MinusZeroMode { 758 enum MinusZeroMode {
758 TREAT_MINUS_ZERO_AS_ZERO, 759 TREAT_MINUS_ZERO_AS_ZERO,
759 FAIL_ON_MINUS_ZERO 760 FAIL_ON_MINUS_ZERO
760 }; 761 };
761 762
762 } } // namespace v8::internal 763 } } // namespace v8::internal
763 764
764 namespace i = v8::internal; 765 namespace i = v8::internal;
765 766
766 #endif // V8_GLOBALS_H_ 767 #endif // V8_GLOBALS_H_
OLDNEW
« src/cpu.cc ('K') | « src/flag-definitions.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698