blob: 12a38819197a90aa4d91dfbbef86aa64cb1f3455 [file] [log] [blame]
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001// Copyright 2013 the V8 project 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.
4
5#include "src/base/cpu.h"
6
7#if V8_LIBC_MSVCRT
8#include <intrin.h> // __cpuid()
9#endif
Emily Bernierd0a1eb72015-03-24 16:35:39 -040010#if V8_OS_LINUX
11#include <linux/auxvec.h> // AT_HWCAP
12#endif
13#if V8_GLIBC_PREREQ(2, 16)
14#include <sys/auxv.h> // getauxval()
Ben Murdochb8a8cc12014-11-26 15:28:44 +000015#endif
16#if V8_OS_QNX
17#include <sys/syspage.h> // cpuinfo
18#endif
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000019#if V8_OS_LINUX && V8_HOST_ARCH_PPC
20#include <elf.h>
21#endif
22#if V8_OS_AIX
23#include <sys/systemcfg.h> // _system_configuration
24#ifndef POWER_8
25#define POWER_8 0x10000
26#endif
27#endif
Emily Bernierd0a1eb72015-03-24 16:35:39 -040028#if V8_OS_POSIX
29#include <unistd.h> // sysconf()
30#endif
Ben Murdochb8a8cc12014-11-26 15:28:44 +000031
32#include <ctype.h>
33#include <limits.h>
34#include <stdio.h>
35#include <stdlib.h>
36#include <string.h>
37#include <algorithm>
38
39#include "src/base/logging.h"
40#if V8_OS_WIN
41#include "src/base/win32-headers.h" // NOLINT
42#endif
43
44namespace v8 {
45namespace base {
46
Emily Bernierd0a1eb72015-03-24 16:35:39 -040047#if defined(__pnacl__)
48// Portable host shouldn't do feature detection.
49#elif V8_HOST_ARCH_IA32 || V8_HOST_ARCH_X64
Ben Murdochb8a8cc12014-11-26 15:28:44 +000050
51// Define __cpuid() for non-MSVC libraries.
52#if !V8_LIBC_MSVCRT
53
54static V8_INLINE void __cpuid(int cpu_info[4], int info_type) {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000055// Clear ecx to align with __cpuid() of MSVC:
56// https://msdn.microsoft.com/en-us/library/hskdteyh.aspx
Ben Murdochb8a8cc12014-11-26 15:28:44 +000057#if defined(__i386__) && defined(__pic__)
58 // Make sure to preserve ebx, which contains the pointer
59 // to the GOT in case we're generating PIC.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000060 __asm__ volatile(
61 "mov %%ebx, %%edi\n\t"
62 "cpuid\n\t"
63 "xchg %%edi, %%ebx\n\t"
64 : "=a"(cpu_info[0]), "=D"(cpu_info[1]), "=c"(cpu_info[2]),
65 "=d"(cpu_info[3])
66 : "a"(info_type), "c"(0));
Ben Murdochb8a8cc12014-11-26 15:28:44 +000067#else
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000068 __asm__ volatile("cpuid \n\t"
69 : "=a"(cpu_info[0]), "=b"(cpu_info[1]), "=c"(cpu_info[2]),
70 "=d"(cpu_info[3])
71 : "a"(info_type), "c"(0));
Ben Murdochb8a8cc12014-11-26 15:28:44 +000072#endif // defined(__i386__) && defined(__pic__)
73}
74
75#endif // !V8_LIBC_MSVCRT
76
77#elif V8_HOST_ARCH_ARM || V8_HOST_ARCH_ARM64 \
78 || V8_HOST_ARCH_MIPS || V8_HOST_ARCH_MIPS64
79
80#if V8_OS_LINUX
81
82#if V8_HOST_ARCH_ARM
83
84// See <uapi/asm/hwcap.h> kernel header.
85/*
86 * HWCAP flags - for elf_hwcap (in kernel) and AT_HWCAP
87 */
88#define HWCAP_SWP (1 << 0)
89#define HWCAP_HALF (1 << 1)
90#define HWCAP_THUMB (1 << 2)
91#define HWCAP_26BIT (1 << 3) /* Play it safe */
92#define HWCAP_FAST_MULT (1 << 4)
93#define HWCAP_FPA (1 << 5)
94#define HWCAP_VFP (1 << 6)
95#define HWCAP_EDSP (1 << 7)
96#define HWCAP_JAVA (1 << 8)
97#define HWCAP_IWMMXT (1 << 9)
98#define HWCAP_CRUNCH (1 << 10)
99#define HWCAP_THUMBEE (1 << 11)
100#define HWCAP_NEON (1 << 12)
101#define HWCAP_VFPv3 (1 << 13)
102#define HWCAP_VFPv3D16 (1 << 14) /* also set for VFPv4-D16 */
103#define HWCAP_TLS (1 << 15)
104#define HWCAP_VFPv4 (1 << 16)
105#define HWCAP_IDIVA (1 << 17)
106#define HWCAP_IDIVT (1 << 18)
107#define HWCAP_VFPD32 (1 << 19) /* set if VFP has 32 regs (not 16) */
108#define HWCAP_IDIV (HWCAP_IDIVA | HWCAP_IDIVT)
109#define HWCAP_LPAE (1 << 20)
110
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000111static uint32_t ReadELFHWCaps() {
112 uint32_t result = 0;
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400113#if V8_GLIBC_PREREQ(2, 16)
114 result = static_cast<uint32_t>(getauxval(AT_HWCAP));
115#else
116 // Read the ELF HWCAP flags by parsing /proc/self/auxv.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000117 FILE* fp = fopen("/proc/self/auxv", "r");
118 if (fp != NULL) {
119 struct { uint32_t tag; uint32_t value; } entry;
120 for (;;) {
121 size_t n = fread(&entry, sizeof(entry), 1, fp);
122 if (n == 0 || (entry.tag == 0 && entry.value == 0)) {
123 break;
124 }
125 if (entry.tag == AT_HWCAP) {
126 result = entry.value;
127 break;
128 }
129 }
130 fclose(fp);
131 }
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400132#endif
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000133 return result;
134}
135
136#endif // V8_HOST_ARCH_ARM
137
138#if V8_HOST_ARCH_MIPS
139int __detect_fp64_mode(void) {
140 double result = 0;
141 // Bit representation of (double)1 is 0x3FF0000000000000.
Paul Lind18a7ebb2014-12-17 22:29:32 -0800142 __asm__ volatile(
143 ".set push\n\t"
144 ".set noreorder\n\t"
145 ".set oddspreg\n\t"
146 "lui $t0, 0x3FF0\n\t"
147 "ldc1 $f0, %0\n\t"
148 "mtc1 $t0, $f1\n\t"
149 "sdc1 $f0, %0\n\t"
150 ".set pop\n\t"
151 : "+m"(result)
152 :
153 : "t0", "$f0", "$f1", "memory");
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000154
155 return !(result == 1);
156}
157
158
159int __detect_mips_arch_revision(void) {
160 // TODO(dusmil): Do the specific syscall as soon as it is implemented in mips
Paul Lind18a7ebb2014-12-17 22:29:32 -0800161 // kernel.
162 uint32_t result = 0;
163 __asm__ volatile(
164 "move $v0, $zero\n\t"
165 // Encoding for "addi $v0, $v0, 1" on non-r6,
166 // which is encoding for "bovc $v0, %v0, 1" on r6.
167 // Use machine code directly to avoid compilation errors with different
168 // toolchains and maintain compatibility.
169 ".word 0x20420001\n\t"
170 "sw $v0, %0\n\t"
171 : "=m"(result)
172 :
173 : "v0", "memory");
174 // Result is 0 on r6 architectures, 1 on other architecture revisions.
175 // Fall-back to the least common denominator which is mips32 revision 1.
176 return result ? 1 : 6;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000177}
178#endif
179
180// Extract the information exposed by the kernel via /proc/cpuinfo.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000181class CPUInfo final {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000182 public:
183 CPUInfo() : datalen_(0) {
184 // Get the size of the cpuinfo file by reading it until the end. This is
185 // required because files under /proc do not always return a valid size
186 // when using fseek(0, SEEK_END) + ftell(). Nor can the be mmap()-ed.
187 static const char PATHNAME[] = "/proc/cpuinfo";
188 FILE* fp = fopen(PATHNAME, "r");
189 if (fp != NULL) {
190 for (;;) {
191 char buffer[256];
192 size_t n = fread(buffer, 1, sizeof(buffer), fp);
193 if (n == 0) {
194 break;
195 }
196 datalen_ += n;
197 }
198 fclose(fp);
199 }
200
201 // Read the contents of the cpuinfo file.
202 data_ = new char[datalen_ + 1];
203 fp = fopen(PATHNAME, "r");
204 if (fp != NULL) {
205 for (size_t offset = 0; offset < datalen_; ) {
206 size_t n = fread(data_ + offset, 1, datalen_ - offset, fp);
207 if (n == 0) {
208 break;
209 }
210 offset += n;
211 }
212 fclose(fp);
213 }
214
215 // Zero-terminate the data.
216 data_[datalen_] = '\0';
217 }
218
219 ~CPUInfo() {
220 delete[] data_;
221 }
222
223 // Extract the content of a the first occurence of a given field in
224 // the content of the cpuinfo file and return it as a heap-allocated
225 // string that must be freed by the caller using delete[].
226 // Return NULL if not found.
227 char* ExtractField(const char* field) const {
228 DCHECK(field != NULL);
229
230 // Look for first field occurence, and ensure it starts the line.
231 size_t fieldlen = strlen(field);
232 char* p = data_;
233 for (;;) {
234 p = strstr(p, field);
235 if (p == NULL) {
236 return NULL;
237 }
238 if (p == data_ || p[-1] == '\n') {
239 break;
240 }
241 p += fieldlen;
242 }
243
244 // Skip to the first colon followed by a space.
245 p = strchr(p + fieldlen, ':');
246 if (p == NULL || !isspace(p[1])) {
247 return NULL;
248 }
249 p += 2;
250
251 // Find the end of the line.
252 char* q = strchr(p, '\n');
253 if (q == NULL) {
254 q = data_ + datalen_;
255 }
256
257 // Copy the line into a heap-allocated buffer.
258 size_t len = q - p;
259 char* result = new char[len + 1];
260 if (result != NULL) {
261 memcpy(result, p, len);
262 result[len] = '\0';
263 }
264 return result;
265 }
266
267 private:
268 char* data_;
269 size_t datalen_;
270};
271
272#if V8_HOST_ARCH_ARM || V8_HOST_ARCH_MIPS || V8_HOST_ARCH_MIPS64
273
274// Checks that a space-separated list of items contains one given 'item'.
275static bool HasListItem(const char* list, const char* item) {
276 ssize_t item_len = strlen(item);
277 const char* p = list;
278 if (p != NULL) {
279 while (*p != '\0') {
280 // Skip whitespace.
281 while (isspace(*p)) ++p;
282
283 // Find end of current list item.
284 const char* q = p;
285 while (*q != '\0' && !isspace(*q)) ++q;
286
287 if (item_len == q - p && memcmp(p, item, item_len) == 0) {
288 return true;
289 }
290
291 // Skip to next item.
292 p = q;
293 }
294 }
295 return false;
296}
297
298#endif // V8_HOST_ARCH_ARM || V8_HOST_ARCH_MIPS || V8_HOST_ARCH_MIPS64
299
300#endif // V8_OS_LINUX
301
302#endif // V8_HOST_ARCH_IA32 || V8_HOST_ARCH_X64
303
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400304CPU::CPU()
305 : stepping_(0),
306 model_(0),
307 ext_model_(0),
308 family_(0),
309 ext_family_(0),
310 type_(0),
311 implementer_(0),
312 architecture_(0),
313 variant_(-1),
314 part_(0),
Ben Murdoch097c5b22016-05-18 11:27:45 +0100315 icache_line_size_(UNKNOWN_CACHE_LINE_SIZE),
316 dcache_line_size_(UNKNOWN_CACHE_LINE_SIZE),
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400317 has_fpu_(false),
318 has_cmov_(false),
319 has_sahf_(false),
320 has_mmx_(false),
321 has_sse_(false),
322 has_sse2_(false),
323 has_sse3_(false),
324 has_ssse3_(false),
325 has_sse41_(false),
326 has_sse42_(false),
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000327 is_atom_(false),
328 has_osxsave_(false),
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400329 has_avx_(false),
330 has_fma3_(false),
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000331 has_bmi1_(false),
332 has_bmi2_(false),
333 has_lzcnt_(false),
334 has_popcnt_(false),
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400335 has_idiva_(false),
336 has_neon_(false),
337 has_thumb2_(false),
338 has_vfp_(false),
339 has_vfp3_(false),
340 has_vfp3_d32_(false),
341 is_fp64_mode_(false) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000342 memcpy(vendor_, "Unknown", 8);
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400343#if V8_OS_NACL
344// Portable host shouldn't do feature detection.
345// TODO(jfb): Remove the hardcoded ARM simulator flags in the build, and
346// hardcode them here instead.
347#elif V8_HOST_ARCH_IA32 || V8_HOST_ARCH_X64
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000348 int cpu_info[4];
349
350 // __cpuid with an InfoType argument of 0 returns the number of
351 // valid Ids in CPUInfo[0] and the CPU identification string in
352 // the other three array elements. The CPU identification string is
353 // not in linear order. The code below arranges the information
354 // in a human readable form. The human readable order is CPUInfo[1] |
355 // CPUInfo[3] | CPUInfo[2]. CPUInfo[2] and CPUInfo[3] are swapped
356 // before using memcpy to copy these three array elements to cpu_string.
357 __cpuid(cpu_info, 0);
358 unsigned num_ids = cpu_info[0];
359 std::swap(cpu_info[2], cpu_info[3]);
360 memcpy(vendor_, cpu_info + 1, 12);
361 vendor_[12] = '\0';
362
363 // Interpret CPU feature information.
364 if (num_ids > 0) {
365 __cpuid(cpu_info, 1);
366 stepping_ = cpu_info[0] & 0xf;
367 model_ = ((cpu_info[0] >> 4) & 0xf) + ((cpu_info[0] >> 12) & 0xf0);
368 family_ = (cpu_info[0] >> 8) & 0xf;
369 type_ = (cpu_info[0] >> 12) & 0x3;
370 ext_model_ = (cpu_info[0] >> 16) & 0xf;
371 ext_family_ = (cpu_info[0] >> 20) & 0xff;
372 has_fpu_ = (cpu_info[3] & 0x00000001) != 0;
373 has_cmov_ = (cpu_info[3] & 0x00008000) != 0;
374 has_mmx_ = (cpu_info[3] & 0x00800000) != 0;
375 has_sse_ = (cpu_info[3] & 0x02000000) != 0;
376 has_sse2_ = (cpu_info[3] & 0x04000000) != 0;
377 has_sse3_ = (cpu_info[2] & 0x00000001) != 0;
378 has_ssse3_ = (cpu_info[2] & 0x00000200) != 0;
379 has_sse41_ = (cpu_info[2] & 0x00080000) != 0;
380 has_sse42_ = (cpu_info[2] & 0x00100000) != 0;
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000381 has_popcnt_ = (cpu_info[2] & 0x00800000) != 0;
382 has_osxsave_ = (cpu_info[2] & 0x08000000) != 0;
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400383 has_avx_ = (cpu_info[2] & 0x10000000) != 0;
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000384 has_fma3_ = (cpu_info[2] & 0x00001000) != 0;
385
386 if (family_ == 0x6) {
387 switch (model_) {
388 case 0x1c: // SLT
389 case 0x26:
390 case 0x36:
391 case 0x27:
392 case 0x35:
393 case 0x37: // SLM
394 case 0x4a:
395 case 0x4d:
396 case 0x4c: // AMT
397 case 0x6e:
398 is_atom_ = true;
399 }
400 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000401 }
402
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000403 // There are separate feature flags for VEX-encoded GPR instructions.
404 if (num_ids >= 7) {
405 __cpuid(cpu_info, 7);
406 has_bmi1_ = (cpu_info[1] & 0x00000008) != 0;
407 has_bmi2_ = (cpu_info[1] & 0x00000100) != 0;
408 }
409
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000410 // Query extended IDs.
411 __cpuid(cpu_info, 0x80000000);
412 unsigned num_ext_ids = cpu_info[0];
413
414 // Interpret extended CPU feature information.
415 if (num_ext_ids > 0x80000000) {
416 __cpuid(cpu_info, 0x80000001);
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000417 has_lzcnt_ = (cpu_info[2] & 0x00000020) != 0;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000418 // SAHF must be probed in long mode.
419 has_sahf_ = (cpu_info[2] & 0x00000001) != 0;
420 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000421
422#elif V8_HOST_ARCH_ARM
423
424#if V8_OS_LINUX
425
426 CPUInfo cpu_info;
427
428 // Extract implementor from the "CPU implementer" field.
429 char* implementer = cpu_info.ExtractField("CPU implementer");
430 if (implementer != NULL) {
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400431 char* end;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000432 implementer_ = strtol(implementer, &end, 0);
433 if (end == implementer) {
434 implementer_ = 0;
435 }
436 delete[] implementer;
437 }
438
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400439 char* variant = cpu_info.ExtractField("CPU variant");
440 if (variant != NULL) {
441 char* end;
442 variant_ = strtol(variant, &end, 0);
443 if (end == variant) {
444 variant_ = -1;
445 }
446 delete[] variant;
447 }
448
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000449 // Extract part number from the "CPU part" field.
450 char* part = cpu_info.ExtractField("CPU part");
451 if (part != NULL) {
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400452 char* end;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000453 part_ = strtol(part, &end, 0);
454 if (end == part) {
455 part_ = 0;
456 }
457 delete[] part;
458 }
459
460 // Extract architecture from the "CPU Architecture" field.
461 // The list is well-known, unlike the the output of
462 // the 'Processor' field which can vary greatly.
463 // See the definition of the 'proc_arch' array in
464 // $KERNEL/arch/arm/kernel/setup.c and the 'c_show' function in
465 // same file.
466 char* architecture = cpu_info.ExtractField("CPU architecture");
467 if (architecture != NULL) {
468 char* end;
469 architecture_ = strtol(architecture, &end, 10);
470 if (end == architecture) {
Ben Murdochda12d292016-06-02 14:46:10 +0100471 // Kernels older than 3.18 report "CPU architecture: AArch64" on ARMv8.
472 if (strcmp(architecture, "AArch64") == 0) {
473 architecture_ = 8;
474 } else {
475 architecture_ = 0;
476 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000477 }
478 delete[] architecture;
479
480 // Unfortunately, it seems that certain ARMv6-based CPUs
481 // report an incorrect architecture number of 7!
482 //
483 // See http://code.google.com/p/android/issues/detail?id=10812
484 //
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400485 // We try to correct this by looking at the 'elf_platform'
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000486 // field reported by the 'Processor' field, which is of the
487 // form of "(v7l)" for an ARMv7-based CPU, and "(v6l)" for
488 // an ARMv6-one. For example, the Raspberry Pi is one popular
489 // ARMv6 device that reports architecture 7.
490 if (architecture_ == 7) {
491 char* processor = cpu_info.ExtractField("Processor");
492 if (HasListItem(processor, "(v6l)")) {
493 architecture_ = 6;
494 }
495 delete[] processor;
496 }
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400497
498 // elf_platform moved to the model name field in Linux v3.8.
499 if (architecture_ == 7) {
500 char* processor = cpu_info.ExtractField("model name");
501 if (HasListItem(processor, "(v6l)")) {
502 architecture_ = 6;
503 }
504 delete[] processor;
505 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000506 }
507
508 // Try to extract the list of CPU features from ELF hwcaps.
509 uint32_t hwcaps = ReadELFHWCaps();
510 if (hwcaps != 0) {
511 has_idiva_ = (hwcaps & HWCAP_IDIVA) != 0;
512 has_neon_ = (hwcaps & HWCAP_NEON) != 0;
513 has_vfp_ = (hwcaps & HWCAP_VFP) != 0;
514 has_vfp3_ = (hwcaps & (HWCAP_VFPv3 | HWCAP_VFPv3D16 | HWCAP_VFPv4)) != 0;
515 has_vfp3_d32_ = (has_vfp3_ && ((hwcaps & HWCAP_VFPv3D16) == 0 ||
516 (hwcaps & HWCAP_VFPD32) != 0));
517 } else {
518 // Try to fallback to "Features" CPUInfo field.
519 char* features = cpu_info.ExtractField("Features");
520 has_idiva_ = HasListItem(features, "idiva");
521 has_neon_ = HasListItem(features, "neon");
522 has_thumb2_ = HasListItem(features, "thumb2");
523 has_vfp_ = HasListItem(features, "vfp");
524 if (HasListItem(features, "vfpv3d16")) {
525 has_vfp3_ = true;
526 } else if (HasListItem(features, "vfpv3")) {
527 has_vfp3_ = true;
528 has_vfp3_d32_ = true;
529 }
530 delete[] features;
531 }
532
533 // Some old kernels will report vfp not vfpv3. Here we make an attempt
534 // to detect vfpv3 by checking for vfp *and* neon, since neon is only
535 // available on architectures with vfpv3. Checking neon on its own is
536 // not enough as it is possible to have neon without vfp.
537 if (has_vfp_ && has_neon_) {
538 has_vfp3_ = true;
539 }
540
541 // VFPv3 implies ARMv7, see ARM DDI 0406B, page A1-6.
542 if (architecture_ < 7 && has_vfp3_) {
543 architecture_ = 7;
544 }
545
546 // ARMv7 implies Thumb2.
547 if (architecture_ >= 7) {
548 has_thumb2_ = true;
549 }
550
551 // The earliest architecture with Thumb2 is ARMv6T2.
552 if (has_thumb2_ && architecture_ < 6) {
553 architecture_ = 6;
554 }
555
556 // We don't support any FPUs other than VFP.
557 has_fpu_ = has_vfp_;
558
559#elif V8_OS_QNX
560
561 uint32_t cpu_flags = SYSPAGE_ENTRY(cpuinfo)->flags;
562 if (cpu_flags & ARM_CPU_FLAG_V7) {
563 architecture_ = 7;
564 has_thumb2_ = true;
565 } else if (cpu_flags & ARM_CPU_FLAG_V6) {
566 architecture_ = 6;
567 // QNX doesn't say if Thumb2 is available.
568 // Assume false for the architectures older than ARMv7.
569 }
570 DCHECK(architecture_ >= 6);
571 has_fpu_ = (cpu_flags & CPU_FLAG_FPU) != 0;
572 has_vfp_ = has_fpu_;
573 if (cpu_flags & ARM_CPU_FLAG_NEON) {
574 has_neon_ = true;
575 has_vfp3_ = has_vfp_;
576#ifdef ARM_CPU_FLAG_VFP_D32
577 has_vfp3_d32_ = (cpu_flags & ARM_CPU_FLAG_VFP_D32) != 0;
578#endif
579 }
580 has_idiva_ = (cpu_flags & ARM_CPU_FLAG_IDIV) != 0;
581
582#endif // V8_OS_LINUX
583
584#elif V8_HOST_ARCH_MIPS || V8_HOST_ARCH_MIPS64
585
586 // Simple detection of FPU at runtime for Linux.
587 // It is based on /proc/cpuinfo, which reveals hardware configuration
588 // to user-space applications. According to MIPS (early 2010), no similar
589 // facility is universally available on the MIPS architectures,
590 // so it's up to individual OSes to provide such.
591 CPUInfo cpu_info;
592 char* cpu_model = cpu_info.ExtractField("cpu model");
593 has_fpu_ = HasListItem(cpu_model, "FPU");
594 delete[] cpu_model;
595#ifdef V8_HOST_ARCH_MIPS
596 is_fp64_mode_ = __detect_fp64_mode();
597 architecture_ = __detect_mips_arch_revision();
598#endif
599
600#elif V8_HOST_ARCH_ARM64
601
602 CPUInfo cpu_info;
603
604 // Extract implementor from the "CPU implementer" field.
605 char* implementer = cpu_info.ExtractField("CPU implementer");
606 if (implementer != NULL) {
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400607 char* end;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000608 implementer_ = strtol(implementer, &end, 0);
609 if (end == implementer) {
610 implementer_ = 0;
611 }
612 delete[] implementer;
613 }
614
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400615 char* variant = cpu_info.ExtractField("CPU variant");
616 if (variant != NULL) {
617 char* end;
618 variant_ = strtol(variant, &end, 0);
619 if (end == variant) {
620 variant_ = -1;
621 }
622 delete[] variant;
623 }
624
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000625 // Extract part number from the "CPU part" field.
626 char* part = cpu_info.ExtractField("CPU part");
627 if (part != NULL) {
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400628 char* end;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000629 part_ = strtol(part, &end, 0);
630 if (end == part) {
631 part_ = 0;
632 }
633 delete[] part;
634 }
635
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000636#elif V8_HOST_ARCH_PPC
637
638#ifndef USE_SIMULATOR
639#if V8_OS_LINUX
640 // Read processor info from /proc/self/auxv.
641 char* auxv_cpu_type = NULL;
642 FILE* fp = fopen("/proc/self/auxv", "r");
643 if (fp != NULL) {
644#if V8_TARGET_ARCH_PPC64
645 Elf64_auxv_t entry;
646#else
647 Elf32_auxv_t entry;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000648#endif
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000649 for (;;) {
650 size_t n = fread(&entry, sizeof(entry), 1, fp);
651 if (n == 0 || entry.a_type == AT_NULL) {
652 break;
653 }
Ben Murdoch097c5b22016-05-18 11:27:45 +0100654 switch (entry.a_type) {
655 case AT_PLATFORM:
656 auxv_cpu_type = reinterpret_cast<char*>(entry.a_un.a_val);
657 break;
658 case AT_ICACHEBSIZE:
659 icache_line_size_ = entry.a_un.a_val;
660 break;
661 case AT_DCACHEBSIZE:
662 dcache_line_size_ = entry.a_un.a_val;
663 break;
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000664 }
665 }
666 fclose(fp);
667 }
668
669 part_ = -1;
670 if (auxv_cpu_type) {
671 if (strcmp(auxv_cpu_type, "power8") == 0) {
672 part_ = PPC_POWER8;
673 } else if (strcmp(auxv_cpu_type, "power7") == 0) {
674 part_ = PPC_POWER7;
675 } else if (strcmp(auxv_cpu_type, "power6") == 0) {
676 part_ = PPC_POWER6;
677 } else if (strcmp(auxv_cpu_type, "power5") == 0) {
678 part_ = PPC_POWER5;
679 } else if (strcmp(auxv_cpu_type, "ppc970") == 0) {
680 part_ = PPC_G5;
681 } else if (strcmp(auxv_cpu_type, "ppc7450") == 0) {
682 part_ = PPC_G4;
683 } else if (strcmp(auxv_cpu_type, "pa6t") == 0) {
684 part_ = PPC_PA6T;
685 }
686 }
687
688#elif V8_OS_AIX
689 switch (_system_configuration.implementation) {
690 case POWER_8:
691 part_ = PPC_POWER8;
692 break;
693 case POWER_7:
694 part_ = PPC_POWER7;
695 break;
696 case POWER_6:
697 part_ = PPC_POWER6;
698 break;
699 case POWER_5:
700 part_ = PPC_POWER5;
701 break;
702 }
703#endif // V8_OS_AIX
704#endif // !USE_SIMULATOR
705#endif // V8_HOST_ARCH_PPC
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000706}
707
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000708} // namespace base
709} // namespace v8