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

Side by Side Diff: src/globals.h

Issue 757503002: [x64] Introduce FMA3 instructions on scalar data elements. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: remove avx_os_support Created 6 years 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/flag-definitions.h ('k') | src/x64/assembler-x64.h » ('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 599 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 #define TRACK_MEMORY(name) 610 #define TRACK_MEMORY(name)
611 #endif 611 #endif
612 612
613 613
614 // CPU feature flags. 614 // CPU feature flags.
615 enum CpuFeature { 615 enum CpuFeature {
616 // x86 616 // x86
617 SSE4_1, 617 SSE4_1,
618 SSE3, 618 SSE3,
619 SAHF, 619 SAHF,
620 AVX,
621 FMA3,
620 // ARM 622 // ARM
621 VFP3, 623 VFP3,
622 ARMv7, 624 ARMv7,
623 ARMv8, 625 ARMv8,
624 SUDIV, 626 SUDIV,
625 MLS, 627 MLS,
626 UNALIGNED_ACCESSES, 628 UNALIGNED_ACCESSES,
627 MOVW_MOVT_IMMEDIATE_LOADS, 629 MOVW_MOVT_IMMEDIATE_LOADS,
628 VFP32DREGS, 630 VFP32DREGS,
629 NEON, 631 NEON,
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
820 DCHECK(IsValidFunctionKind(kind)); 822 DCHECK(IsValidFunctionKind(kind));
821 return kind & FunctionKind::kDefaultConstructor; 823 return kind & FunctionKind::kDefaultConstructor;
822 } 824 }
823 825
824 826
825 } } // namespace v8::internal 827 } } // namespace v8::internal
826 828
827 namespace i = v8::internal; 829 namespace i = v8::internal;
828 830
829 #endif // V8_GLOBALS_H_ 831 #endif // V8_GLOBALS_H_
OLDNEW
« no previous file with comments | « src/flag-definitions.h ('k') | src/x64/assembler-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698