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

Side by Side Diff: src/globals.h

Issue 1995483002: [arm][arm64] Remove COHERENT_CACHE support (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 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/assembler.cc ('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 <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after
699 VFP32DREGS, 699 VFP32DREGS,
700 NEON, 700 NEON,
701 // MIPS, MIPS64 701 // MIPS, MIPS64
702 FPU, 702 FPU,
703 FP64FPU, 703 FP64FPU,
704 MIPSr1, 704 MIPSr1,
705 MIPSr2, 705 MIPSr2,
706 MIPSr6, 706 MIPSr6,
707 // ARM64 707 // ARM64
708 ALWAYS_ALIGN_CSP, 708 ALWAYS_ALIGN_CSP,
709 COHERENT_CACHE,
710 // PPC 709 // PPC
711 FPR_GPR_MOV, 710 FPR_GPR_MOV,
712 LWSYNC, 711 LWSYNC,
713 ISELECT, 712 ISELECT,
714 // S390 713 // S390
715 DISTINCT_OPS, 714 DISTINCT_OPS,
716 GENERAL_INSTR_EXT, 715 GENERAL_INSTR_EXT,
717 FLOATING_POINT_EXT, 716 FLOATING_POINT_EXT,
718 NUMBER_OF_CPU_FEATURES 717 NUMBER_OF_CPU_FEATURES
719 }; 718 };
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
1069 return static_cast<uint32_t>(bit_cast<uintptr_t>(address) >> 1068 return static_cast<uint32_t>(bit_cast<uintptr_t>(address) >>
1070 kPointerSizeLog2); 1069 kPointerSizeLog2);
1071 } 1070 }
1072 1071
1073 } // namespace internal 1072 } // namespace internal
1074 } // namespace v8 1073 } // namespace v8
1075 1074
1076 namespace i = v8::internal; 1075 namespace i = v8::internal;
1077 1076
1078 #endif // V8_GLOBALS_H_ 1077 #endif // V8_GLOBALS_H_
OLDNEW
« no previous file with comments | « src/assembler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698