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

Side by Side Diff: base/cpu.h

Issue 2458333002: Add popcnt support for pnacl (Closed)
Patch Set: fix initializer Created 4 years, 1 month 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 | « no previous file | base/cpu.cc » ('j') | base/cpu_unittest.cc » ('J')
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 28 matching lines...) Expand all
39 int type() const { return type_; } 39 int type() const { return type_; }
40 int extended_model() const { return ext_model_; } 40 int extended_model() const { return ext_model_; }
41 int extended_family() const { return ext_family_; } 41 int extended_family() const { return ext_family_; }
42 bool has_mmx() const { return has_mmx_; } 42 bool has_mmx() const { return has_mmx_; }
43 bool has_sse() const { return has_sse_; } 43 bool has_sse() const { return has_sse_; }
44 bool has_sse2() const { return has_sse2_; } 44 bool has_sse2() const { return has_sse2_; }
45 bool has_sse3() const { return has_sse3_; } 45 bool has_sse3() const { return has_sse3_; }
46 bool has_ssse3() const { return has_ssse3_; } 46 bool has_ssse3() const { return has_ssse3_; }
47 bool has_sse41() const { return has_sse41_; } 47 bool has_sse41() const { return has_sse41_; }
48 bool has_sse42() const { return has_sse42_; } 48 bool has_sse42() const { return has_sse42_; }
49 bool has_popcnt() const { return has_popcnt_; }
49 bool has_avx() const { return has_avx_; } 50 bool has_avx() const { return has_avx_; }
50 bool has_avx2() const { return has_avx2_; } 51 bool has_avx2() const { return has_avx2_; }
51 bool has_aesni() const { return has_aesni_; } 52 bool has_aesni() const { return has_aesni_; }
52 bool has_non_stop_time_stamp_counter() const { 53 bool has_non_stop_time_stamp_counter() const {
53 return has_non_stop_time_stamp_counter_; 54 return has_non_stop_time_stamp_counter_;
54 } 55 }
55 56
56 IntelMicroArchitecture GetIntelMicroArchitecture() const; 57 IntelMicroArchitecture GetIntelMicroArchitecture() const;
57 const std::string& cpu_brand() const { return cpu_brand_; } 58 const std::string& cpu_brand() const { return cpu_brand_; }
58 59
59 private: 60 private:
60 // Query the processor for CPUID information. 61 // Query the processor for CPUID information.
61 void Initialize(); 62 void Initialize();
62 63
63 int signature_; // raw form of type, family, model, and stepping 64 int signature_; // raw form of type, family, model, and stepping
64 int type_; // process type 65 int type_; // process type
65 int family_; // family of the processor 66 int family_; // family of the processor
66 int model_; // model of processor 67 int model_; // model of processor
67 int stepping_; // processor revision number 68 int stepping_; // processor revision number
68 int ext_model_; 69 int ext_model_;
69 int ext_family_; 70 int ext_family_;
70 bool has_mmx_; 71 bool has_mmx_;
71 bool has_sse_; 72 bool has_sse_;
72 bool has_sse2_; 73 bool has_sse2_;
73 bool has_sse3_; 74 bool has_sse3_;
74 bool has_ssse3_; 75 bool has_ssse3_;
75 bool has_sse41_; 76 bool has_sse41_;
76 bool has_sse42_; 77 bool has_sse42_;
78 bool has_popcnt_;
77 bool has_avx_; 79 bool has_avx_;
78 bool has_avx2_; 80 bool has_avx2_;
79 bool has_aesni_; 81 bool has_aesni_;
80 bool has_non_stop_time_stamp_counter_; 82 bool has_non_stop_time_stamp_counter_;
81 std::string cpu_vendor_; 83 std::string cpu_vendor_;
82 std::string cpu_brand_; 84 std::string cpu_brand_;
83 }; 85 };
84 86
85 } // namespace base 87 } // namespace base
86 88
87 #endif // BASE_CPU_H_ 89 #endif // BASE_CPU_H_
OLDNEW
« no previous file with comments | « no previous file | base/cpu.cc » ('j') | base/cpu_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698