security/sandbox/chromium/base/cpu.cc

Fri, 16 Jan 2015 18:13:44 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 18:13:44 +0100
branch
TOR_BUG_9701
changeset 14
925c144e1f1f
permissions
-rw-r--r--

Integrate suggestion from review to improve consistency with existing code.

michael@0 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
michael@0 2 // Use of this source code is governed by a BSD-style license that can be
michael@0 3 // found in the LICENSE file.
michael@0 4
michael@0 5 #include "base/cpu.h"
michael@0 6
michael@0 7 #include <string.h>
michael@0 8
michael@0 9 #include <algorithm>
michael@0 10
michael@0 11 #include "build/build_config.h"
michael@0 12
michael@0 13 #if defined(ARCH_CPU_X86_FAMILY)
michael@0 14 #if defined(_MSC_VER)
michael@0 15 #include <intrin.h>
michael@0 16 #endif
michael@0 17 #endif
michael@0 18
michael@0 19 namespace base {
michael@0 20
michael@0 21 CPU::CPU()
michael@0 22 : signature_(0),
michael@0 23 type_(0),
michael@0 24 family_(0),
michael@0 25 model_(0),
michael@0 26 stepping_(0),
michael@0 27 ext_model_(0),
michael@0 28 ext_family_(0),
michael@0 29 has_mmx_(false),
michael@0 30 has_sse_(false),
michael@0 31 has_sse2_(false),
michael@0 32 has_sse3_(false),
michael@0 33 has_ssse3_(false),
michael@0 34 has_sse41_(false),
michael@0 35 has_sse42_(false),
michael@0 36 has_non_stop_time_stamp_counter_(false),
michael@0 37 cpu_vendor_("unknown") {
michael@0 38 Initialize();
michael@0 39 }
michael@0 40
michael@0 41 #if defined(ARCH_CPU_X86_FAMILY)
michael@0 42 #ifndef _MSC_VER
michael@0 43
michael@0 44 #if defined(__pic__) && defined(__i386__)
michael@0 45
michael@0 46 void __cpuid(int cpu_info[4], int info_type) {
michael@0 47 __asm__ volatile (
michael@0 48 "mov %%ebx, %%edi\n"
michael@0 49 "cpuid\n"
michael@0 50 "xchg %%edi, %%ebx\n"
michael@0 51 : "=a"(cpu_info[0]), "=D"(cpu_info[1]), "=c"(cpu_info[2]), "=d"(cpu_info[3])
michael@0 52 : "a"(info_type)
michael@0 53 );
michael@0 54 }
michael@0 55
michael@0 56 void __cpuidex(int cpu_info[4], int info_type, int info_index) {
michael@0 57 __asm__ volatile (
michael@0 58 "mov %%ebx, %%edi\n"
michael@0 59 "cpuid\n"
michael@0 60 "xchg %%edi, %%ebx\n"
michael@0 61 : "=a"(cpu_info[0]), "=D"(cpu_info[1]), "=c"(cpu_info[2]), "=d"(cpu_info[3])
michael@0 62 : "a"(info_type), "c"(info_index)
michael@0 63 );
michael@0 64 }
michael@0 65
michael@0 66 #else
michael@0 67
michael@0 68 void __cpuid(int cpu_info[4], int info_type) {
michael@0 69 __asm__ volatile (
michael@0 70 "cpuid \n\t"
michael@0 71 : "=a"(cpu_info[0]), "=b"(cpu_info[1]), "=c"(cpu_info[2]), "=d"(cpu_info[3])
michael@0 72 : "a"(info_type)
michael@0 73 );
michael@0 74 }
michael@0 75
michael@0 76 void __cpuidex(int cpu_info[4], int info_type, int info_index) {
michael@0 77 __asm__ volatile (
michael@0 78 "cpuid \n\t"
michael@0 79 : "=a"(cpu_info[0]), "=b"(cpu_info[1]), "=c"(cpu_info[2]), "=d"(cpu_info[3])
michael@0 80 : "a"(info_type), "c"(info_index)
michael@0 81 );
michael@0 82 }
michael@0 83
michael@0 84 #endif
michael@0 85 #endif // _MSC_VER
michael@0 86 #endif // ARCH_CPU_X86_FAMILY
michael@0 87
michael@0 88 void CPU::Initialize() {
michael@0 89 #if defined(ARCH_CPU_X86_FAMILY)
michael@0 90 int cpu_info[4] = {-1};
michael@0 91 char cpu_string[48];
michael@0 92
michael@0 93 // __cpuid with an InfoType argument of 0 returns the number of
michael@0 94 // valid Ids in CPUInfo[0] and the CPU identification string in
michael@0 95 // the other three array elements. The CPU identification string is
michael@0 96 // not in linear order. The code below arranges the information
michael@0 97 // in a human readable form. The human readable order is CPUInfo[1] |
michael@0 98 // CPUInfo[3] | CPUInfo[2]. CPUInfo[2] and CPUInfo[3] are swapped
michael@0 99 // before using memcpy to copy these three array elements to cpu_string.
michael@0 100 __cpuid(cpu_info, 0);
michael@0 101 int num_ids = cpu_info[0];
michael@0 102 std::swap(cpu_info[2], cpu_info[3]);
michael@0 103 memcpy(cpu_string, &cpu_info[1], 3 * sizeof(cpu_info[1]));
michael@0 104 cpu_vendor_.assign(cpu_string, 3 * sizeof(cpu_info[1]));
michael@0 105
michael@0 106 // Interpret CPU feature information.
michael@0 107 if (num_ids > 0) {
michael@0 108 __cpuid(cpu_info, 1);
michael@0 109 signature_ = cpu_info[0];
michael@0 110 stepping_ = cpu_info[0] & 0xf;
michael@0 111 model_ = ((cpu_info[0] >> 4) & 0xf) + ((cpu_info[0] >> 12) & 0xf0);
michael@0 112 family_ = (cpu_info[0] >> 8) & 0xf;
michael@0 113 type_ = (cpu_info[0] >> 12) & 0x3;
michael@0 114 ext_model_ = (cpu_info[0] >> 16) & 0xf;
michael@0 115 ext_family_ = (cpu_info[0] >> 20) & 0xff;
michael@0 116 has_mmx_ = (cpu_info[3] & 0x00800000) != 0;
michael@0 117 has_sse_ = (cpu_info[3] & 0x02000000) != 0;
michael@0 118 has_sse2_ = (cpu_info[3] & 0x04000000) != 0;
michael@0 119 has_sse3_ = (cpu_info[2] & 0x00000001) != 0;
michael@0 120 has_ssse3_ = (cpu_info[2] & 0x00000200) != 0;
michael@0 121 has_sse41_ = (cpu_info[2] & 0x00080000) != 0;
michael@0 122 has_sse42_ = (cpu_info[2] & 0x00100000) != 0;
michael@0 123 has_avx_ = (cpu_info[2] & 0x10000000) != 0;
michael@0 124 }
michael@0 125
michael@0 126 // Get the brand string of the cpu.
michael@0 127 __cpuid(cpu_info, 0x80000000);
michael@0 128 const int parameter_end = 0x80000004;
michael@0 129 int max_parameter = cpu_info[0];
michael@0 130
michael@0 131 if (cpu_info[0] >= parameter_end) {
michael@0 132 char* cpu_string_ptr = cpu_string;
michael@0 133
michael@0 134 for (int parameter = 0x80000002; parameter <= parameter_end &&
michael@0 135 cpu_string_ptr < &cpu_string[sizeof(cpu_string)]; parameter++) {
michael@0 136 __cpuid(cpu_info, parameter);
michael@0 137 memcpy(cpu_string_ptr, cpu_info, sizeof(cpu_info));
michael@0 138 cpu_string_ptr += sizeof(cpu_info);
michael@0 139 }
michael@0 140 cpu_brand_.assign(cpu_string, cpu_string_ptr - cpu_string);
michael@0 141 }
michael@0 142
michael@0 143 const int parameter_containing_non_stop_time_stamp_counter = 0x80000007;
michael@0 144 if (max_parameter >= parameter_containing_non_stop_time_stamp_counter) {
michael@0 145 __cpuid(cpu_info, parameter_containing_non_stop_time_stamp_counter);
michael@0 146 has_non_stop_time_stamp_counter_ = (cpu_info[3] & (1 << 8)) != 0;
michael@0 147 }
michael@0 148 #endif
michael@0 149 }
michael@0 150
michael@0 151 CPU::IntelMicroArchitecture CPU::GetIntelMicroArchitecture() const {
michael@0 152 if (has_avx()) return AVX;
michael@0 153 if (has_sse42()) return SSE42;
michael@0 154 if (has_sse41()) return SSE41;
michael@0 155 if (has_ssse3()) return SSSE3;
michael@0 156 if (has_sse3()) return SSE3;
michael@0 157 if (has_sse2()) return SSE2;
michael@0 158 if (has_sse()) return SSE;
michael@0 159 return PENTIUM;
michael@0 160 }
michael@0 161
michael@0 162 } // namespace base

mercurial