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

Side by Side Diff: src/cpu.h

Issue 304153016: Use full include paths everywhere (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « src/counters.cc ('k') | src/cpu.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 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.
11 // 11 //
12 12
13 #ifndef V8_CPU_H_ 13 #ifndef V8_CPU_H_
14 #define V8_CPU_H_ 14 #define V8_CPU_H_
15 15
16 #include "allocation.h" 16 #include "src/allocation.h"
17 17
18 namespace v8 { 18 namespace v8 {
19 namespace internal { 19 namespace internal {
20 20
21 // ---------------------------------------------------------------------------- 21 // ----------------------------------------------------------------------------
22 // CPU 22 // CPU
23 // 23 //
24 // Query information about the processor. 24 // Query information about the processor.
25 // 25 //
26 // This class also has static methods for the architecture specific functions. 26 // This class also has static methods for the architecture specific functions.
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 bool has_neon_; 105 bool has_neon_;
106 bool has_thumbee_; 106 bool has_thumbee_;
107 bool has_vfp_; 107 bool has_vfp_;
108 bool has_vfp3_; 108 bool has_vfp3_;
109 bool has_vfp3_d32_; 109 bool has_vfp3_d32_;
110 }; 110 };
111 111
112 } } // namespace v8::internal 112 } } // namespace v8::internal
113 113
114 #endif // V8_CPU_H_ 114 #endif // V8_CPU_H_
OLDNEW
« no previous file with comments | « src/counters.cc ('k') | src/cpu.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698