Hover effects in views should not be invoked when mouse events are disabled
[chromium-blink-merge.git] / base / cpu.h
blob1d45258e06ebcc986d51cd54cba9db7e6d480414
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.
5 #ifndef BASE_CPU_H_
6 #define BASE_CPU_H_
8 #include <string>
10 #include "base/base_export.h"
12 namespace base {
14 // Query information about the processor.
15 class BASE_EXPORT CPU {
16 public:
17 // Constructor
18 CPU();
20 enum IntelMicroArchitecture {
21 PENTIUM,
22 SSE,
23 SSE2,
24 SSE3,
25 SSSE3,
26 SSE41,
27 SSE42,
28 AVX,
29 MAX_INTEL_MICRO_ARCHITECTURE
32 // Accessors for CPU information.
33 const std::string& vendor_name() const { return cpu_vendor_; }
34 int stepping() const { return stepping_; }
35 int model() const { return model_; }
36 int family() const { return family_; }
37 int type() const { return type_; }
38 int extended_model() const { return ext_model_; }
39 int extended_family() const { return ext_family_; }
40 bool has_mmx() const { return has_mmx_; }
41 bool has_sse() const { return has_sse_; }
42 bool has_sse2() const { return has_sse2_; }
43 bool has_sse3() const { return has_sse3_; }
44 bool has_ssse3() const { return has_ssse3_; }
45 bool has_sse41() const { return has_sse41_; }
46 bool has_sse42() const { return has_sse42_; }
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_;
51 IntelMicroArchitecture GetIntelMicroArchitecture() const;
52 const std::string& cpu_brand() const { return cpu_brand_; }
54 private:
55 // Query the processor for CPUID information.
56 void Initialize();
58 int type_; // process type
59 int family_; // family of the processor
60 int model_; // model of processor
61 int stepping_; // processor revision number
62 int ext_model_;
63 int ext_family_;
64 bool has_mmx_;
65 bool has_sse_;
66 bool has_sse2_;
67 bool has_sse3_;
68 bool has_ssse3_;
69 bool has_sse41_;
70 bool has_sse42_;
71 bool has_avx_;
72 bool has_non_stop_time_stamp_counter_;
73 std::string cpu_vendor_;
74 std::string cpu_brand_;
77 } // namespace base
79 #endif // BASE_CPU_H_