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

Side by Side Diff: base/cpu.h

Issue 13583007: Create a field trial to test if we can detect good QPC implementations. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | base/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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium 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 BASE_CPU_H_ 5 #ifndef BASE_CPU_H_
6 #define BASE_CPU_H_ 6 #define BASE_CPU_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/base_export.h" 10 #include "base/base_export.h"
(...skipping 27 matching lines...) Expand all
38 int extended_model() const { return ext_model_; } 38 int extended_model() const { return ext_model_; }
39 int extended_family() const { return ext_family_; } 39 int extended_family() const { return ext_family_; }
40 bool has_mmx() const { return has_mmx_; } 40 bool has_mmx() const { return has_mmx_; }
41 bool has_sse() const { return has_sse_; } 41 bool has_sse() const { return has_sse_; }
42 bool has_sse2() const { return has_sse2_; } 42 bool has_sse2() const { return has_sse2_; }
43 bool has_sse3() const { return has_sse3_; } 43 bool has_sse3() const { return has_sse3_; }
44 bool has_ssse3() const { return has_ssse3_; } 44 bool has_ssse3() const { return has_ssse3_; }
45 bool has_sse41() const { return has_sse41_; } 45 bool has_sse41() const { return has_sse41_; }
46 bool has_sse42() const { return has_sse42_; } 46 bool has_sse42() const { return has_sse42_; }
47 bool has_avx() const { return has_avx_; } 47 bool has_avx() const { return has_avx_; }
48 bool has_non_stop_time_stamp_counter() const {
49 return has_non_stop_time_stamp_counter_;
50 }
48 IntelMicroArchitecture GetIntelMicroArchitecture() const; 51 IntelMicroArchitecture GetIntelMicroArchitecture() const;
49 const std::string& cpu_brand() const { return cpu_brand_; } 52 const std::string& cpu_brand() const { return cpu_brand_; }
50 53
51 private: 54 private:
52 // Query the processor for CPUID information. 55 // Query the processor for CPUID information.
53 void Initialize(); 56 void Initialize();
54 57
55 int type_; // process type 58 int type_; // process type
56 int family_; // family of the processor 59 int family_; // family of the processor
57 int model_; // model of processor 60 int model_; // model of processor
58 int stepping_; // processor revision number 61 int stepping_; // processor revision number
59 int ext_model_; 62 int ext_model_;
60 int ext_family_; 63 int ext_family_;
61 bool has_mmx_; 64 bool has_mmx_;
62 bool has_sse_; 65 bool has_sse_;
63 bool has_sse2_; 66 bool has_sse2_;
64 bool has_sse3_; 67 bool has_sse3_;
65 bool has_ssse3_; 68 bool has_ssse3_;
66 bool has_sse41_; 69 bool has_sse41_;
67 bool has_sse42_; 70 bool has_sse42_;
68 bool has_avx_; 71 bool has_avx_;
72 bool has_non_stop_time_stamp_counter_;
69 std::string cpu_vendor_; 73 std::string cpu_vendor_;
70 std::string cpu_brand_; 74 std::string cpu_brand_;
71 }; 75 };
72 76
73 } // namespace base 77 } // namespace base
74 78
75 #endif // BASE_CPU_H_ 79 #endif // BASE_CPU_H_
OLDNEW
« no previous file with comments | « no previous file | base/cpu.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698