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

Side by Side Diff: src/globals.h

Issue 853703002: [x86] Avoid memory form of PUSH/CALL for ATOM. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebase Created 5 years, 11 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/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 591 matching lines...) Expand 10 before | Expand all | Expand 10 after
602 602
603 603
604 // CPU feature flags. 604 // CPU feature flags.
605 enum CpuFeature { 605 enum CpuFeature {
606 // x86 606 // x86
607 SSE4_1, 607 SSE4_1,
608 SSE3, 608 SSE3,
609 SAHF, 609 SAHF,
610 AVX, 610 AVX,
611 FMA3, 611 FMA3,
612 ATOM,
612 // ARM 613 // ARM
613 VFP3, 614 VFP3,
614 ARMv7, 615 ARMv7,
615 ARMv8, 616 ARMv8,
616 SUDIV, 617 SUDIV,
617 MLS, 618 MLS,
618 UNALIGNED_ACCESSES, 619 UNALIGNED_ACCESSES,
619 MOVW_MOVT_IMMEDIATE_LOADS, 620 MOVW_MOVT_IMMEDIATE_LOADS,
620 VFP32DREGS, 621 VFP32DREGS,
621 NEON, 622 NEON,
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
817 DCHECK(IsValidFunctionKind(kind)); 818 DCHECK(IsValidFunctionKind(kind));
818 return kind & FunctionKind::kDefaultConstructor; 819 return kind & FunctionKind::kDefaultConstructor;
819 } 820 }
820 821
821 822
822 } } // namespace v8::internal 823 } } // namespace v8::internal
823 824
824 namespace i = v8::internal; 825 namespace i = v8::internal;
825 826
826 #endif // V8_GLOBALS_H_ 827 #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