Searched refs:CpuFeatures (Results 1 - 25 of 97) sorted by relevance

1234

/external/chromium_org/base/android/java/src/org/chromium/base/
H A DCpuFeatures.java21 public abstract class CpuFeatures { class
/external/chromium_org/v8/src/ia32/
H A Dcpu-ia32.cc45 CpuFeatures::Probe();
50 return CpuFeatures::IsSupported(SSE2);
/external/v8/src/ia32/
H A Dcpu-ia32.cc45 CpuFeatures::Probe();
50 return CpuFeatures::IsSupported(SSE2);
H A Dassembler-ia32.cc49 // Implementation of CpuFeatures
52 bool CpuFeatures::initialized_ = false;
54 uint64_t CpuFeatures::supported_ = 0;
55 uint64_t CpuFeatures::found_by_runtime_probing_ = 0;
60 void CpuFeatures::Probe() {
409 if (!CpuFeatures::IsSupported(SSE2)) {
486 ASSERT(CpuFeatures::IsEnabled(CPUID));
708 ASSERT(CpuFeatures::IsEnabled(CMOV));
1298 ASSERT(CpuFeatures::IsEnabled(RDTSC));
1652 ASSERT(CpuFeatures
[all...]
H A Dcodegen-ia32.cc113 if (buffer == NULL || !CpuFeatures::IsSupported(SSE2)) return &sqrt;
119 CpuFeatures::Scope use_sse2(SSE2);
178 if (CpuFeatures::IsSupported(SSE2)) {
179 CpuFeatures::Scope enable(SSE2);
427 if (CpuFeatures::IsSupported(SSE2)) {
428 CpuFeatures::Scope use_sse2(SSE2);
452 if (CpuFeatures::IsSupported(SSE2)) {
453 CpuFeatures::Scope fscope(SSE2);
473 if (CpuFeatures::IsSupported(SSE2)) {
474 CpuFeatures
[all...]
/external/chromium_org/v8/src/x64/
H A Dcpu-x64.cc45 CpuFeatures::Probe();
/external/v8/src/x64/
H A Dcpu-x64.cc45 CpuFeatures::Probe();
/external/chromium_org/v8/src/arm/
H A Dcpu-arm.cc45 CpuFeatures::Probe();
50 return CpuFeatures::IsSupported(VFP3);
H A Dassembler-arm.cc48 bool CpuFeatures::initialized_ = false;
50 unsigned CpuFeatures::supported_ = 0;
51 unsigned CpuFeatures::found_by_runtime_probing_only_ = 0;
52 unsigned CpuFeatures::cache_line_size_ = 64;
56 ASSERT(CpuFeatures::initialized_);
57 return ExternalReference(&CpuFeatures::supported_);
101 void CpuFeatures::Probe() {
207 void CpuFeatures::PrintTarget() {
262 void CpuFeatures::PrintFeatures() {
266 CpuFeatures
[all...]
H A Dcodegen-arm.cc121 if (Serializer::enabled() || !CpuFeatures::IsSupported(UNALIGNED_ACCESSES)) {
136 if (CpuFeatures::IsSupported(NEON)) {
145 if (CpuFeatures::cache_line_size() == 32) {
151 if (CpuFeatures::cache_line_size() == 32) {
157 if (CpuFeatures::cache_line_size() == 32) {
161 if (CpuFeatures::cache_line_size() == 32) {
171 if (CpuFeatures::cache_line_size() == 32) {
279 if (Serializer::enabled() || !CpuFeatures::IsSupported(UNALIGNED_ACCESSES)) {
291 if (CpuFeatures::IsSupported(NEON)) {
/external/chromium_org/v8/src/mips/
H A Dcpu-mips.cc51 CpuFeatures::Probe();
56 return CpuFeatures::IsSupported(FPU);
/external/v8/src/arm/
H A Dcpu-arm.cc45 CpuFeatures::Probe();
50 return CpuFeatures::IsSupported(VFP3);
H A Dassembler-arm.cc48 bool CpuFeatures::initialized_ = false;
50 unsigned CpuFeatures::supported_ = 0;
51 unsigned CpuFeatures::found_by_runtime_probing_ = 0;
82 void CpuFeatures::Probe() {
739 if (CpuFeatures::IsSupported(ARMv7)) {
803 !CpuFeatures::IsSupported(ARMv7)) {
846 !CpuFeatures::IsSupported(ARMv7)) {
1275 ASSERT(CpuFeatures::IsSupported(ARMv7));
1303 ASSERT(CpuFeatures::IsSupported(ARMv7));
1323 ASSERT(CpuFeatures
[all...]
/external/v8/src/mips/
H A Dcpu-mips.cc51 CpuFeatures::Probe();
56 return CpuFeatures::IsSupported(FPU);
H A Dassembler-mips.h405 // CpuFeatures keeps track of which features are supported by the target CPU.
407 class CpuFeatures : public AllStatic { class in namespace:v8::internal
443 ASSERT(CpuFeatures::IsSupported(f));
445 (CpuFeatures::found_by_runtime_probing_ & mask) == 0);
473 : old_supported_(CpuFeatures::supported_) {
475 CpuFeatures::supported_ |= (1u << f);
481 CpuFeatures::supported_ = old_supported_;
503 DISALLOW_COPY_AND_ASSIGN(CpuFeatures);
/external/v8/test/cctest/
H A Dtest-assembler-ia32.cc171 if (!CpuFeatures::IsSupported(SSE2)) return;
178 CHECK(CpuFeatures::IsSupported(SSE2));
179 { CpuFeatures::Scope fscope(SSE2);
206 if (!CpuFeatures::IsSupported(SSE2)) return;
213 CHECK(CpuFeatures::IsSupported(SSE2));
214 CpuFeatures::Scope fscope(SSE2);
263 if (!CpuFeatures::IsSupported(SSE2)) return;
266 CHECK(CpuFeatures::IsSupported(SSE2));
267 CpuFeatures::Scope fscope(SSE2);
309 if (!CpuFeatures
[all...]
H A Dtest-disasm-x64.cc102 CHECK(CpuFeatures::IsSupported(CPUID));
103 CpuFeatures::Scope fscope(CPUID);
107 CHECK(CpuFeatures::IsSupported(RDTSC));
108 CpuFeatures::Scope fscope(RDTSC);
351 if (CpuFeatures::IsSupported(SSE2)) {
352 CpuFeatures::Scope fscope(SSE2);
374 if (CpuFeatures::IsSupported(CMOV)) {
375 CpuFeatures::Scope use_cmov(CMOV);
397 if (CpuFeatures::IsSupported(SSE2)) {
398 CpuFeatures
[all...]
H A Dtest-disasm-ia32.cc110 CHECK(CpuFeatures::IsSupported(CPUID));
111 CpuFeatures::Scope fscope(CPUID);
115 CHECK(CpuFeatures::IsSupported(RDTSC));
116 CpuFeatures::Scope fscope(RDTSC);
371 if (CpuFeatures::IsSupported(SSE2)) {
372 CpuFeatures::Scope fscope(SSE2);
393 if (CpuFeatures::IsSupported(CMOV)) {
394 CpuFeatures::Scope use_cmov(CMOV);
416 if (CpuFeatures::IsSupported(SSE2)) {
417 CpuFeatures
[all...]
H A Dtest-assembler-arm.cc249 if (CpuFeatures::IsSupported(VFP3)) {
250 CpuFeatures::Scope scope(VFP3);
363 if (CpuFeatures::IsSupported(ARMv7)) {
364 CpuFeatures::Scope scope(ARMv7);
399 if (CpuFeatures::IsSupported(ARMv7)) {
400 CpuFeatures::Scope scope(ARMv7);
442 if (CpuFeatures::IsSupported(VFP3)) {
443 CpuFeatures::Scope scope(VFP3);
645 if (CpuFeatures::IsSupported(VFP3)) {
646 CpuFeatures
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-disasm-x64.cc94 CHECK(CpuFeatures::IsSupported(CPUID));
95 CpuFeatures::Scope fscope(CPUID);
99 CHECK(CpuFeatures::IsSupported(RDTSC));
100 CpuFeatures::Scope fscope(RDTSC);
344 if (CpuFeatures::IsSupported(SSE2)) {
345 CpuFeatures::Scope fscope(SSE2);
367 if (CpuFeatures::IsSupported(CMOV)) {
368 CpuFeatures::Scope use_cmov(CMOV);
390 if (CpuFeatures::IsSupported(SSE2)) {
391 CpuFeatures
[all...]
H A Dtest-assembler-ia32.cc164 if (!CpuFeatures::IsSupported(SSE2)) return;
172 CHECK(CpuFeatures::IsSupported(SSE2));
200 if (!CpuFeatures::IsSupported(SSE2)) return;
208 CHECK(CpuFeatures::IsSupported(SSE2));
259 if (!CpuFeatures::IsSupported(SSE2)) return;
305 if (!CpuFeatures::IsSupported(SSE2)) return;
490 ASSERT(CpuFeatures::IsSupported(SSE2));
531 if (!CpuFeatures::IsSupported(SSE2)) return;
H A Dtest-disasm-ia32.cc103 CHECK(CpuFeatures::IsSupported(CPUID));
108 CHECK(CpuFeatures::IsSupported(RDTSC));
362 if (CpuFeatures::IsSupported(SSE2)) {
384 if (CpuFeatures::IsSupported(CMOV)) {
407 if (CpuFeatures::IsSupported(SSE2)) {
436 if (CpuFeatures::IsSupported(SSE2) &&
437 CpuFeatures::IsSupported(SSE4_1)) {
H A Dtest-disasm-arm.cc269 if (CpuFeatures::IsSupported(ARMv7)) {
363 if (CpuFeatures::IsSupported(ARMv7)) {
429 if (CpuFeatures::IsSupported(VFP3)) {
596 if (CpuFeatures::IsSupported(VFP32DREGS)) {
684 if (CpuFeatures::IsSupported(NEON)) {
863 if (CpuFeatures::IsSupported(ARMv7)) {
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DChildProcessConnection.java23 import org.chromium.base.CpuFeatures;
388 bundle.putInt(EXTRA_CPU_COUNT, CpuFeatures.getCount());
389 bundle.putLong(EXTRA_CPU_FEATURES, CpuFeatures.getMask());
/external/chromium_org/v8/src/
H A Dflags.cc524 CpuFeatures::PrintTarget();
525 CpuFeatures::Probe();
526 CpuFeatures::PrintFeatures();

Completed in 297 milliseconds

1234