HomeSort by relevance Sort by last modified time
    Searched refs:CpuFeatures (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /cts/tests/tests/os/src/android/os/cts/
CpuInstructionsTest.java 20 import android.os.cts.CpuFeatures;
28 if (!CpuFeatures.isArm64Cpu()) {
37 if (!CpuFeatures.isArm64CpuIn32BitMode()) {
NoExecutePermissionTest.java 54 if (CpuFeatures.isArmCpu() && !CpuFeatures.isArm7Compatible()) {
59 if (CpuFeatures.isMipsCpu()) {
TaggedPointerTest.java 22 import android.os.cts.CpuFeatures;
33 if (!CpuFeatures.isArm64Cpu()) {
CpuFeaturesTest.java 28 import android.os.cts.CpuFeatures;
40 if (!CpuFeatures.isArm64CpuIn32BitMode()) {
44 int hwcaps = CpuFeatures.getHwCaps();
49 assertHwCap("VFP", hwcaps, CpuFeatures.HWCAP_VFP);
50 assertHwCap("NEON", hwcaps, CpuFeatures.HWCAP_NEON);
51 assertHwCap("VFPv3", hwcaps, CpuFeatures.HWCAP_VFPv3);
52 assertHwCap("VFPv4", hwcaps, CpuFeatures.HWCAP_VFPv4);
53 assertHwCap("IDIVA", hwcaps, CpuFeatures.HWCAP_IDIVA);
54 assertHwCap("IDIVT", hwcaps, CpuFeatures.HWCAP_IDIVT);
101 if (!CpuFeatures.isArmCpu()
    [all...]
CpuFeatures.java 21 public class CpuFeatures {
SeccompTest.java 58 return (CpuFeatures.isArmCpu() || CpuFeatures.isArm64Cpu()) &&
  /external/v8/src/ia32/
cpu-ia32.cc 21 void CpuFeatures::FlushICache(void* start, size_t size) {
assembler-ia32-inl.h 48 bool CpuFeatures::SupportsCrankshaft() { return true; }
61 if (flush_icache) CpuFeatures::FlushICache(p, sizeof(uint32_t));
66 if (flush_icache) CpuFeatures::FlushICache(p, sizeof(uint32_t));
73 if (flush_icache) CpuFeatures::FlushICache(p, sizeof(uint32_t));
79 if (flush_icache) CpuFeatures::FlushICache(p, sizeof(uint32_t));
84 if (flush_icache) CpuFeatures::FlushICache(p, sizeof(uint32_t));
146 CpuFeatures::FlushICache(pc_, sizeof(Address));
199 CpuFeatures::FlushICache(pc_, sizeof(Address));
296 CpuFeatures::FlushICache(pc_, sizeof(Address));
303 CpuFeatures::FlushICache(pc_, sizeof(Address))
    [all...]
  /external/v8/src/x64/
cpu-x64.cc 21 void CpuFeatures::FlushICache(void* start, size_t size) {
assembler-x64-inl.h 17 bool CpuFeatures::SupportsCrankshaft() { return true; }
199 CpuFeatures::FlushICache(pc, sizeof(int32_t));
232 if (flush_icache) CpuFeatures::FlushICache(pc_, sizeof(Address));
235 if (flush_icache) CpuFeatures::FlushICache(pc_, sizeof(int32_t));
240 if (flush_icache) CpuFeatures::FlushICache(p, sizeof(uint32_t));
317 CpuFeatures::FlushICache(pc_, sizeof(Address));
364 CpuFeatures::FlushICache(pc_, sizeof(Address));
442 CpuFeatures::FlushICache(
474 CpuFeatures::FlushICache(pc_, sizeof(Address));
481 CpuFeatures::FlushICache(pc_, sizeof(Address))
    [all...]
  /external/v8/src/x87/
cpu-x87.cc 21 void CpuFeatures::FlushICache(void* start, size_t size) {
assembler-x87-inl.h 48 bool CpuFeatures::SupportsCrankshaft() { return true; }
61 if (flush_icache) CpuFeatures::FlushICache(p, sizeof(uint32_t));
66 if (flush_icache) CpuFeatures::FlushICache(p, sizeof(uint32_t));
73 if (flush_icache) CpuFeatures::FlushICache(p, sizeof(uint32_t));
79 if (flush_icache) CpuFeatures::FlushICache(p, sizeof(uint32_t));
84 if (flush_icache) CpuFeatures::FlushICache(p, sizeof(uint32_t));
147 CpuFeatures::FlushICache(pc_, sizeof(Address));
200 CpuFeatures::FlushICache(pc_, sizeof(Address));
297 CpuFeatures::FlushICache(pc_, sizeof(Address));
304 CpuFeatures::FlushICache(pc_, sizeof(Address))
    [all...]
  /external/v8/src/arm/
cpu-arm.cc 27 void CpuFeatures::FlushICache(void* start, size_t size) {
assembler-arm-inl.h 50 bool CpuFeatures::SupportsCrankshaft() { return IsSupported(VFP3); }
59 return CpuFeatures::IsSupported(VFP32DREGS) ? 32 : 16;
466 if (CpuFeatures::IsSupported(ARMv7)) {
494 if (CpuFeatures::IsSupported(ARMv7)) {
532 if (CpuFeatures::IsSupported(ARMv7)) {
551 if (!CpuFeatures::IsSupported(ARMv7) && IsMovImmed(Memory::int32_at(pc))) {
590 } else if (CpuFeatures::IsSupported(ARMv7)) {
626 // CpuFeatures::FlushICache(pc, sizeof(target));
632 } else if (CpuFeatures::IsSupported(ARMv7)) {
644 CpuFeatures::FlushICache(pc, 2 * kInstrSize)
    [all...]
codegen-arm.cc 70 CpuFeatures::FlushICache(buffer, actual_size);
86 if (!CpuFeatures::IsSupported(UNALIGNED_ACCESSES)) return stub;
100 if (CpuFeatures::IsSupported(NEON)) {
109 if (CpuFeatures::cache_line_size() == 32) {
115 if (CpuFeatures::cache_line_size() == 32) {
121 if (CpuFeatures::cache_line_size() == 32) {
125 if (CpuFeatures::cache_line_size() == 32) {
135 if (CpuFeatures::cache_line_size() == 32) {
230 CpuFeatures::FlushICache(buffer, actual_size);
243 if (!CpuFeatures::IsSupported(UNALIGNED_ACCESSES)) return stub
    [all...]
assembler-arm.cc 76 void CpuFeatures::ProbeImpl(bool cross_compile) {
133 void CpuFeatures::PrintTarget() {
185 void CpuFeatures::PrintFeatures() {
189 CpuFeatures::IsSupported(ARMv7),
190 CpuFeatures::IsSupported(VFP3),
191 CpuFeatures::IsSupported(VFP32DREGS),
192 CpuFeatures::IsSupported(NEON),
193 CpuFeatures::IsSupported(SUDIV),
194 CpuFeatures::IsSupported(UNALIGNED_ACCESSES),
195 CpuFeatures::IsSupported(MOVW_MOVT_IMMEDIATE_LOADS))
    [all...]
  /external/v8/src/mips/
cpu-mips.cc 27 void CpuFeatures::FlushICache(void* start, size_t size) {
  /external/v8/src/mips64/
cpu-mips64.cc 27 void CpuFeatures::FlushICache(void* start, size_t size) {
  /external/v8/src/arm64/
cpu-arm64.cc 43 void CpuFeatures::FlushICache(void* address, size_t length) {
  /external/v8/src/
v8.cc 80 CpuFeatures::Probe(false);
flags.cc 517 CpuFeatures::Probe(false);
518 CpuFeatures::PrintTarget();
519 CpuFeatures::PrintFeatures();
assembler.cc 181 DCHECK(CpuFeatures::IsSupported(f));
201 bool CpuFeatures::initialized_ = false;
202 unsigned CpuFeatures::supported_ = 0;
203 unsigned CpuFeatures::cache_line_size_ = 0;
    [all...]
  /external/v8/test/cctest/
test-code-stubs-arm.cc 129 CpuFeatures::FlushICache(buffer, actual_size);
test-code-stubs-arm64.cc 125 CpuFeatures::FlushICache(buffer, actual_size);
test-disasm-arm.cc 269 if (CpuFeatures::IsSupported(ARMv7)) {
363 if (CpuFeatures::IsSupported(ARMv7)) {
431 if (CpuFeatures::IsSupported(VFP3)) {
598 if (CpuFeatures::IsSupported(VFP32DREGS)) {
686 if (CpuFeatures::IsSupported(NEON)) {
    [all...]

Completed in 1096 milliseconds

1 2 3 4