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

Side by Side Diff: base/cpu.h

Issue 11009011: Use the cpuid instruction to generate the CPU brand string. And (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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
« no previous file with comments | « no previous file | base/cpu.cc » ('j') | content/browser/gpu/gpu_blacklist.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 14 matching lines...) Expand all
25 int type() const { return type_; } 25 int type() const { return type_; }
26 int extended_model() const { return ext_model_; } 26 int extended_model() const { return ext_model_; }
27 int extended_family() const { return ext_family_; } 27 int extended_family() const { return ext_family_; }
28 bool has_mmx() const { return has_mmx_; } 28 bool has_mmx() const { return has_mmx_; }
29 bool has_sse() const { return has_sse_; } 29 bool has_sse() const { return has_sse_; }
30 bool has_sse2() const { return has_sse2_; } 30 bool has_sse2() const { return has_sse2_; }
31 bool has_sse3() const { return has_sse3_; } 31 bool has_sse3() const { return has_sse3_; }
32 bool has_ssse3() const { return has_ssse3_; } 32 bool has_ssse3() const { return has_ssse3_; }
33 bool has_sse41() const { return has_sse41_; } 33 bool has_sse41() const { return has_sse41_; }
34 bool has_sse42() const { return has_sse42_; } 34 bool has_sse42() const { return has_sse42_; }
35 35 const std::string& cpu_brand() const { return cpu_brand_; }
Zhenyao Mo 2012/10/02 22:01:32 nit: you need an empty line before private: (sorry
36 private: 36 private:
37 // Query the processor for CPUID information. 37 // Query the processor for CPUID information.
38 void Initialize(); 38 void Initialize();
39 39
40 int type_; // process type 40 int type_; // process type
41 int family_; // family of the processor 41 int family_; // family of the processor
42 int model_; // model of processor 42 int model_; // model of processor
43 int stepping_; // processor revision number 43 int stepping_; // processor revision number
44 int ext_model_; 44 int ext_model_;
45 int ext_family_; 45 int ext_family_;
46 bool has_mmx_; 46 bool has_mmx_;
47 bool has_sse_; 47 bool has_sse_;
48 bool has_sse2_; 48 bool has_sse2_;
49 bool has_sse3_; 49 bool has_sse3_;
50 bool has_ssse3_; 50 bool has_ssse3_;
51 bool has_sse41_; 51 bool has_sse41_;
52 bool has_sse42_; 52 bool has_sse42_;
53 std::string cpu_vendor_; 53 std::string cpu_vendor_;
54 std::string cpu_brand_;
54 }; 55 };
55 56
56 } // namespace base 57 } // namespace base
57 58
58 #endif // BASE_CPU_H_ 59 #endif // BASE_CPU_H_
OLDNEW
« no previous file with comments | « no previous file | base/cpu.cc » ('j') | content/browser/gpu/gpu_blacklist.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698