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

Side by Side Diff: src/globals.h

Issue 797233002: Make FlushICache NOP for Nvidia Denver CPU's. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressed review comments and corrected few formatting errors 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/base/cpu.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 605 matching lines...) Expand 10 before | Expand all | Expand 10 after
616 VFP32DREGS, 616 VFP32DREGS,
617 NEON, 617 NEON,
618 // MIPS, MIPS64 618 // MIPS, MIPS64
619 FPU, 619 FPU,
620 FP64FPU, 620 FP64FPU,
621 MIPSr1, 621 MIPSr1,
622 MIPSr2, 622 MIPSr2,
623 MIPSr6, 623 MIPSr6,
624 // ARM64 624 // ARM64
625 ALWAYS_ALIGN_CSP, 625 ALWAYS_ALIGN_CSP,
626 COHERENT_CACHE,
626 NUMBER_OF_CPU_FEATURES 627 NUMBER_OF_CPU_FEATURES
627 }; 628 };
628 629
629 630
630 // Used to specify if a macro instruction must perform a smi check on tagged 631 // Used to specify if a macro instruction must perform a smi check on tagged
631 // values. 632 // values.
632 enum SmiCheckType { 633 enum SmiCheckType {
633 DONT_DO_SMI_CHECK, 634 DONT_DO_SMI_CHECK,
634 DO_SMI_CHECK 635 DO_SMI_CHECK
635 }; 636 };
(...skipping 172 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/base/cpu.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698