| /cts/tests/src/android/os/cts/ | 
| CpuFeatures.java | 19 public class CpuFeatures { 
 | 
| /external/v8/src/ia32/ | 
| cpu-ia32.cc | 45   CpuFeatures::Probe(); 50   return CpuFeatures::IsSupported(SSE2);
 
 | 
| assembler-ia32.cc | 49 // Implementation of CpuFeatures 52 bool CpuFeatures::initialized_ = false;
 54 uint64_t CpuFeatures::supported_ = 0;
 55 uint64_t CpuFeatures::found_by_runtime_probing_ = 0;
 58 void CpuFeatures::Probe() {
 390   ASSERT(CpuFeatures::IsEnabled(CPUID));
 751   ASSERT(CpuFeatures::IsEnabled(CMOV));
 762   ASSERT(CpuFeatures::IsEnabled(CMOV));
 773   ASSERT(CpuFeatures::IsEnabled(CMOV));
 [all...]
 | 
| assembler-ia32.h | 441 // CpuFeatures keeps track of which features are supported by the target CPU. 444 //   if (CpuFeatures::IsSupported(SSE2)) {
 445 //     CpuFeatures::Scope fscope(SSE2);
 450 class CpuFeatures : public AllStatic {
 488       ASSERT(CpuFeatures::IsSupported(f));
 490              (CpuFeatures::found_by_runtime_probing_ & mask) == 0);
 516         : old_supported_(CpuFeatures::supported_) {
 518         CpuFeatures::supported_ |= (static_cast<uint64_t>(1) << f);
 524         CpuFeatures::supported_ = old_supported_;
 546   DISALLOW_COPY_AND_ASSIGN(CpuFeatures);
 [all...]
 | 
| codegen-ia32.cc | 93   if (CpuFeatures::IsSupported(SSE2)) { 94     CpuFeatures::Scope enable(SSE2);
 
 | 
| code-stubs-ia32.cc | 747         if (CpuFeatures::IsSupported(SSE2)) { 748           CpuFeatures::Scope use_sse2(SSE2);
 792         if (CpuFeatures::IsSupported(SSE2)) {
 793           CpuFeatures::Scope use_sse2(SSE2);
 924       if (CpuFeatures::IsSupported(SSE2)) {
 925         CpuFeatures::Scope use_sse2(SSE2);
 [all...]
 | 
| code-stubs-ia32.h | 83     use_sse3_ = CpuFeatures::IsSupported(SSE3); 
 | 
| /cts/tests/tests/os/src/android/os/cts/ | 
| BuildTest.java | 38         if (CpuFeatures.isArmCpu()) { 44         if (CpuFeatures.isArm7Compatible()) {
 46                     + RO_PRODUCT_CPU_ABI  + " must be set to " + CpuFeatures.ARMEABI_V7 + " and "
 47                     + RO_PRODUCT_CPU_ABI2 + " must be set to " + CpuFeatures.ARMEABI;
 48             assertProperty(message, RO_PRODUCT_CPU_ABI, CpuFeatures.ARMEABI_V7);
 49             assertProperty(message, RO_PRODUCT_CPU_ABI2, CpuFeatures.ARMEABI);
 50             assertEquals(message, CpuFeatures.ARMEABI_V7, Build.CPU_ABI);
 51             assertEquals(message, CpuFeatures.ARMEABI, Build.CPU_ABI2);
 54                     + RO_PRODUCT_CPU_ABI  + " must be set to " + CpuFeatures.ARMEABI + " and "
 56             assertProperty(message, RO_PRODUCT_CPU_ABI, CpuFeatures.ARMEABI)
 [all...]
 | 
| NoExecutePermissionTest.java | 71         if (CpuFeatures.isArmCpu() && !CpuFeatures.isArm7Compatible()) { 
 | 
| /external/v8/src/x64/ | 
| cpu-x64.cc | 45   CpuFeatures::Probe(); 
 | 
| assembler-x64.cc | 39 // Implementation of CpuFeatures 43 bool CpuFeatures::initialized_ = false;
 45 uint64_t CpuFeatures::supported_ = CpuFeatures::kDefaultCpuFeatures;
 46 uint64_t CpuFeatures::found_by_runtime_probing_ = 0;
 49 void CpuFeatures::Probe() {
 1008   ASSERT(CpuFeatures::IsEnabled(CPUID));
 [all...]
 | 
| assembler-x64.h | 428 // CpuFeatures keeps track of which features are supported by the target CPU. 431 //   if (CpuFeatures::IsSupported(SSE3)) {
 432 //     CpuFeatures::Scope fscope(SSE3);
 437 class CpuFeatures : public AllStatic {
 475       ASSERT(CpuFeatures::IsSupported(f));
 477              (CpuFeatures::found_by_runtime_probing_ & mask) == 0);
 513   DISALLOW_COPY_AND_ASSIGN(CpuFeatures);
 [all...]
 | 
| /external/v8/src/arm/ | 
| cpu-arm.cc | 45   CpuFeatures::Probe(); 50   return CpuFeatures::IsSupported(VFP3);
 
 | 
| assembler-arm.cc | 48 bool CpuFeatures::initialized_ = false; 50 unsigned CpuFeatures::supported_ = 0;
 51 unsigned CpuFeatures::found_by_runtime_probing_ = 0;
 74 void CpuFeatures::Probe() {
 723         if (CpuFeatures::IsSupported(ARMv7)) {
 787           !CpuFeatures::IsSupported(ARMv7)) {
 830             !CpuFeatures::IsSupported(ARMv7)) {
 [all...]
 | 
| code-stubs-arm.cc | 501   if (CpuFeatures::IsSupported(VFP3)) { 502     CpuFeatures::Scope scope(VFP3);
 569   if (CpuFeatures::IsSupported(VFP3) &&
 571     CpuFeatures::Scope scope(VFP3);
 584   if (CpuFeatures::IsSupported(VFP3)) {
 585     CpuFeatures::Scope scope(VFP3);
 675   if (CpuFeatures::IsSupported(VFP3)) {
 676     CpuFeatures::Scope scope(VFP3);
 743   if (CpuFeatures::IsSupported(VFP3)) {
 744     CpuFeatures::Scope scope(VFP3)
 [all...]
 | 
| assembler-arm.h | 473 // CpuFeatures keeps track of which features are supported by the target CPU. 475 class CpuFeatures : public AllStatic {
 509       ASSERT(CpuFeatures::IsSupported(f));
 511              (CpuFeatures::found_by_runtime_probing_ & mask) == 0);
 537         : old_supported_(CpuFeatures::supported_) {
 539         CpuFeatures::supported_ |= (1u << f);
 545         CpuFeatures::supported_ = old_supported_;
 567   DISALLOW_COPY_AND_ASSIGN(CpuFeatures);
 [all...]
 | 
| code-stubs-arm.h | 82     use_vfp3_ = CpuFeatures::IsSupported(VFP3); 
 | 
| macro-assembler-arm.cc | 298              CpuFeatures::IsSupported(ARMv7) && 311   if (!CpuFeatures::IsSupported(ARMv7)) {
 326   if (!CpuFeatures::IsSupported(ARMv7)) {
 354   if (!CpuFeatures::IsSupported(ARMv7)) {
 368   if (!CpuFeatures::IsSupported(ARMv7)) {
 379   if (!CpuFeatures::IsSupported(ARMv7)) {
 625   if (CpuFeatures::IsSupported(ARMv7)) {
 626     CpuFeatures::Scope scope(ARMv7);
 650   if (CpuFeatures::IsSupported(ARMv7)) {
 651     CpuFeatures::Scope scope(ARMv7)
 [all...]
 | 
| stub-cache-arm.cc | [all...] | 
| /external/v8/src/mips/ | 
| cpu-mips.cc | 51   CpuFeatures* cpu_features = Isolate::Current()->cpu_features(); 
 | 
| assembler-mips.h | 343 // CpuFeatures keeps track of which features are supported by the target CPU. 345 class CpuFeatures {
 381     CpuFeatures* cpu_features_;
 390   CpuFeatures();
 398   DISALLOW_COPY_AND_ASSIGN(CpuFeatures);
 [all...]
 | 
| /external/v8/test/cctest/ | 
| test-assembler-ia32.cc | 171   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::IsSupported(SSE2)) return
 [all...]
 | 
| test-disasm-ia32.cc | 110     CHECK(CpuFeatures::IsSupported(CPUID)); 111     CpuFeatures::Scope fscope(CPUID);
 115     CHECK(CpuFeatures::IsSupported(RDTSC));
 116     CpuFeatures::Scope fscope(RDTSC);
 378     if (CpuFeatures::IsSupported(SSE2)) {
 379       CpuFeatures::Scope fscope(SSE2);
 400     if (CpuFeatures::IsSupported(CMOV)) {
 401       CpuFeatures::Scope use_cmov(CMOV);
 423     if (CpuFeatures::IsSupported(SSE2)) {
 424       CpuFeatures::Scope fscope(SSE2)
 [all...]
 | 
| test-assembler-arm.cc | 249   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::Scope scope(VFP3)
 [all...]
 | 
| test-disasm-arm.cc | 273   if (CpuFeatures::IsSupported(ARMv7)) { 363   if (CpuFeatures::IsSupported(ARMv7)) {
 418   if (CpuFeatures::IsSupported(VFP3)) {
 419     CpuFeatures::Scope scope(VFP3);
 
 |