[email protected] | 55508c4 | 2012-06-12 08:29:32 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | de8d2667 | 2008-09-25 22:08:44 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef BASE_CPU_H_ |
| 6 | #define BASE_CPU_H_ |
| 7 | |
| 8 | #include <string> |
| 9 | |
[email protected] | 0bea725 | 2011-08-05 15:34:00 | [diff] [blame] | 10 | #include "base/base_export.h" |
[email protected] | 90509cb | 2011-03-25 18:46:38 | [diff] [blame] | 11 | |
[email protected] | de8d2667 | 2008-09-25 22:08:44 | [diff] [blame] | 12 | namespace base { |
| 13 | |
| 14 | // Query information about the processor. |
Thiago Farina | ba7d2a42 | 2017-06-17 00:18:49 | [diff] [blame] | 15 | class BASE_EXPORT CPU final { |
[email protected] | de8d2667 | 2008-09-25 22:08:44 | [diff] [blame] | 16 | public: |
[email protected] | de8d2667 | 2008-09-25 22:08:44 | [diff] [blame] | 17 | CPU(); |
| 18 | |
[email protected] | 5016a9dd | 2013-02-02 01:10:02 | [diff] [blame] | 19 | enum IntelMicroArchitecture { |
| 20 | PENTIUM, |
| 21 | SSE, |
| 22 | SSE2, |
| 23 | SSE3, |
| 24 | SSSE3, |
| 25 | SSE41, |
| 26 | SSE42, |
| 27 | AVX, |
fbarchard | 0ce41ae | 2015-10-02 03:23:19 | [diff] [blame] | 28 | AVX2, |
[email protected] | 5016a9dd | 2013-02-02 01:10:02 | [diff] [blame] | 29 | MAX_INTEL_MICRO_ARCHITECTURE |
| 30 | }; |
| 31 | |
[email protected] | de8d2667 | 2008-09-25 22:08:44 | [diff] [blame] | 32 | // Accessors for CPU information. |
| 33 | const std::string& vendor_name() const { return cpu_vendor_; } |
[email protected] | 5c8f89f69 | 2013-07-18 11:13:28 | [diff] [blame] | 34 | int signature() const { return signature_; } |
[email protected] | de8d2667 | 2008-09-25 22:08:44 | [diff] [blame] | 35 | int stepping() const { return stepping_; } |
| 36 | int model() const { return model_; } |
| 37 | int family() const { return family_; } |
| 38 | int type() const { return type_; } |
| 39 | int extended_model() const { return ext_model_; } |
| 40 | int extended_family() const { return ext_family_; } |
[email protected] | 55508c4 | 2012-06-12 08:29:32 | [diff] [blame] | 41 | bool has_mmx() const { return has_mmx_; } |
| 42 | bool has_sse() const { return has_sse_; } |
| 43 | bool has_sse2() const { return has_sse2_; } |
| 44 | bool has_sse3() const { return has_sse3_; } |
| 45 | bool has_ssse3() const { return has_ssse3_; } |
| 46 | bool has_sse41() const { return has_sse41_; } |
| 47 | bool has_sse42() const { return has_sse42_; } |
ilevy | b7d2f408 | 2016-10-30 20:46:57 | [diff] [blame] | 48 | bool has_popcnt() const { return has_popcnt_; } |
[email protected] | 5016a9dd | 2013-02-02 01:10:02 | [diff] [blame] | 49 | bool has_avx() const { return has_avx_; } |
fbarchard | 0ce41ae | 2015-10-02 03:23:19 | [diff] [blame] | 50 | bool has_avx2() const { return has_avx2_; } |
[email protected] | b54d16d | 2013-12-02 16:15:03 | [diff] [blame] | 51 | bool has_aesni() const { return has_aesni_; } |
[email protected] | aa31281 | 2013-04-30 19:46:05 | [diff] [blame] | 52 | bool has_non_stop_time_stamp_counter() const { |
| 53 | return has_non_stop_time_stamp_counter_; |
| 54 | } |
[email protected] | c37c1a8c | 2014-08-08 08:45:24 | [diff] [blame] | 55 | |
[email protected] | 5016a9dd | 2013-02-02 01:10:02 | [diff] [blame] | 56 | IntelMicroArchitecture GetIntelMicroArchitecture() const; |
[email protected] | 595d159 | 2012-10-04 21:05:23 | [diff] [blame] | 57 | const std::string& cpu_brand() const { return cpu_brand_; } |
[email protected] | de8d2667 | 2008-09-25 22:08:44 | [diff] [blame] | 58 | |
| 59 | private: |
| 60 | // Query the processor for CPUID information. |
| 61 | void Initialize(); |
| 62 | |
[email protected] | 5c8f89f69 | 2013-07-18 11:13:28 | [diff] [blame] | 63 | int signature_; // raw form of type, family, model, and stepping |
[email protected] | de8d2667 | 2008-09-25 22:08:44 | [diff] [blame] | 64 | int type_; // process type |
| 65 | int family_; // family of the processor |
| 66 | int model_; // model of processor |
| 67 | int stepping_; // processor revision number |
| 68 | int ext_model_; |
| 69 | int ext_family_; |
[email protected] | 7e6d42b | 2011-02-16 18:51:58 | [diff] [blame] | 70 | bool has_mmx_; |
| 71 | bool has_sse_; |
| 72 | bool has_sse2_; |
| 73 | bool has_sse3_; |
| 74 | bool has_ssse3_; |
| 75 | bool has_sse41_; |
| 76 | bool has_sse42_; |
ilevy | b7d2f408 | 2016-10-30 20:46:57 | [diff] [blame] | 77 | bool has_popcnt_; |
[email protected] | 5016a9dd | 2013-02-02 01:10:02 | [diff] [blame] | 78 | bool has_avx_; |
fbarchard | 0ce41ae | 2015-10-02 03:23:19 | [diff] [blame] | 79 | bool has_avx2_; |
[email protected] | b54d16d | 2013-12-02 16:15:03 | [diff] [blame] | 80 | bool has_aesni_; |
[email protected] | aa31281 | 2013-04-30 19:46:05 | [diff] [blame] | 81 | bool has_non_stop_time_stamp_counter_; |
[email protected] | de8d2667 | 2008-09-25 22:08:44 | [diff] [blame] | 82 | std::string cpu_vendor_; |
[email protected] | 595d159 | 2012-10-04 21:05:23 | [diff] [blame] | 83 | std::string cpu_brand_; |
[email protected] | de8d2667 | 2008-09-25 22:08:44 | [diff] [blame] | 84 | }; |
| 85 | |
| 86 | } // namespace base |
| 87 | |
| 88 | #endif // BASE_CPU_H_ |