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
3 // found in the LICENSE file.
10 #include "base/base_export.h"
14 // Query information about the processor.
15 class BASE_EXPORT CPU
{
20 // Accessors for CPU information.
21 const std::string
& vendor_name() const { return cpu_vendor_
; }
22 int stepping() const { return stepping_
; }
23 int model() const { return model_
; }
24 int family() const { return family_
; }
25 int type() const { return type_
; }
26 int extended_model() const { return ext_model_
; }
27 int extended_family() const { return ext_family_
; }
28 bool has_mmx() const { return has_mmx_
; }
29 bool has_sse() const { return has_sse_
; }
30 bool has_sse2() const { return has_sse2_
; }
31 bool has_sse3() const { return has_sse3_
; }
32 bool has_ssse3() const { return has_ssse3_
; }
33 bool has_sse41() const { return has_sse41_
; }
34 bool has_sse42() const { return has_sse42_
; }
35 const std::string
& cpu_brand() const { return cpu_brand_
; }
38 // Query the processor for CPUID information.
41 int type_
; // process type
42 int family_
; // family of the processor
43 int model_
; // model of processor
44 int stepping_
; // processor revision number
54 std::string cpu_vendor_
;
55 std::string cpu_brand_
;