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

Side by Side Diff: src/base/cpu.h

Issue 1371083003: [presubmit] Enable readability/namespace linter checking. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 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
OLDNEW
1 // Copyright 2006-2013 the V8 project authors. All rights reserved. 1 // Copyright 2006-2013 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 // This module contains the architecture-specific code. This make the rest of 5 // This module contains the architecture-specific code. This make the rest of
6 // the code less dependent on differences between different processor 6 // the code less dependent on differences between different processor
7 // architecture. 7 // architecture.
8 // The classes have the same definition for all architectures. The 8 // The classes have the same definition for all architectures. The
9 // implementation for a particular architecture is put in cpu_<arch>.cc. 9 // implementation for a particular architecture is put in cpu_<arch>.cc.
10 // The build system then uses the implementation for the target architecture. 10 // The build system then uses the implementation for the target architecture.
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 bool has_popcnt_; 138 bool has_popcnt_;
139 bool has_idiva_; 139 bool has_idiva_;
140 bool has_neon_; 140 bool has_neon_;
141 bool has_thumb2_; 141 bool has_thumb2_;
142 bool has_vfp_; 142 bool has_vfp_;
143 bool has_vfp3_; 143 bool has_vfp3_;
144 bool has_vfp3_d32_; 144 bool has_vfp3_d32_;
145 bool is_fp64_mode_; 145 bool is_fp64_mode_;
146 }; 146 };
147 147
148 } } // namespace v8::base 148 } // namespace base
149 } // namespace v8
149 150
150 #endif // V8_BASE_CPU_H_ 151 #endif // V8_BASE_CPU_H_
OLDNEW
« no previous file with comments | « src/base/atomicops_internals_x86_msvc.h ('k') | src/base/cpu.cc » ('j') | src/objects.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698