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

Side by Side Diff: src/globals.h

Issue 809003002: x86: enable check of Atom (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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/ia32/assembler-ia32.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 587 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 598
599 599
600 // CPU feature flags. 600 // CPU feature flags.
601 enum CpuFeature { 601 enum CpuFeature {
602 // x86 602 // x86
603 SSE4_1, 603 SSE4_1,
604 SSE3, 604 SSE3,
605 SAHF, 605 SAHF,
606 AVX, 606 AVX,
607 FMA3, 607 FMA3,
608 ATOM,
608 // ARM 609 // ARM
609 VFP3, 610 VFP3,
610 ARMv7, 611 ARMv7,
611 ARMv8, 612 ARMv8,
612 SUDIV, 613 SUDIV,
613 MLS, 614 MLS,
614 UNALIGNED_ACCESSES, 615 UNALIGNED_ACCESSES,
615 MOVW_MOVT_IMMEDIATE_LOADS, 616 MOVW_MOVT_IMMEDIATE_LOADS,
616 VFP32DREGS, 617 VFP32DREGS,
617 NEON, 618 NEON,
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_
OLDNEW
« no previous file with comments | « src/flag-definitions.h ('k') | src/ia32/assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698