Home
last modified time | relevance | path

Searched refs:CpuFeatures (Results 1 – 25 of 94) sorted by relevance

1234

/external/chromium_org/v8/src/ia32/
Dassembler-ia32-inl.h48 bool CpuFeatures::SupportsCrankshaft() { return true; } in SupportsCrankshaft()
61 if (flush_icache) CpuFeatures::FlushICache(p, sizeof(uint32_t)); in apply()
66 if (flush_icache) CpuFeatures::FlushICache(p, sizeof(uint32_t)); in apply()
73 if (flush_icache) CpuFeatures::FlushICache(p, sizeof(uint32_t)); in apply()
79 if (flush_icache) CpuFeatures::FlushICache(p, sizeof(uint32_t)); in apply()
84 if (flush_icache) CpuFeatures::FlushICache(p, sizeof(uint32_t)); in apply()
146 CpuFeatures::FlushICache(pc_, sizeof(Address)); in set_target_object()
199 CpuFeatures::FlushICache(pc_, sizeof(Address)); in set_target_cell()
296 CpuFeatures::FlushICache(pc_, sizeof(Address)); in Visit()
303 CpuFeatures::FlushICache(pc_, sizeof(Address)); in Visit()
[all …]
Dcpu-ia32.cc21 void CpuFeatures::FlushICache(void* start, size_t size) { in FlushICache()
/external/chromium_org/v8/src/x87/
Dassembler-x87-inl.h48 bool CpuFeatures::SupportsCrankshaft() { return true; } in SupportsCrankshaft()
61 if (flush_icache) CpuFeatures::FlushICache(p, sizeof(uint32_t)); in apply()
66 if (flush_icache) CpuFeatures::FlushICache(p, sizeof(uint32_t)); in apply()
73 if (flush_icache) CpuFeatures::FlushICache(p, sizeof(uint32_t)); in apply()
79 if (flush_icache) CpuFeatures::FlushICache(p, sizeof(uint32_t)); in apply()
84 if (flush_icache) CpuFeatures::FlushICache(p, sizeof(uint32_t)); in apply()
147 CpuFeatures::FlushICache(pc_, sizeof(Address)); in set_target_object()
200 CpuFeatures::FlushICache(pc_, sizeof(Address)); in set_target_cell()
297 CpuFeatures::FlushICache(pc_, sizeof(Address)); in Visit()
304 CpuFeatures::FlushICache(pc_, sizeof(Address)); in Visit()
[all …]
Dcpu-x87.cc21 void CpuFeatures::FlushICache(void* start, size_t size) { in FlushICache()
/external/chromium_org/v8/src/x64/
Dassembler-x64-inl.h17 bool CpuFeatures::SupportsCrankshaft() { return true; } in SupportsCrankshaft()
199 CpuFeatures::FlushICache(pc, sizeof(int32_t)); in set_target_address_at()
232 if (flush_icache) CpuFeatures::FlushICache(pc_, sizeof(Address)); in apply()
235 if (flush_icache) CpuFeatures::FlushICache(pc_, sizeof(int32_t)); in apply()
240 if (flush_icache) CpuFeatures::FlushICache(p, sizeof(uint32_t)); in apply()
317 CpuFeatures::FlushICache(pc_, sizeof(Address)); in set_target_object()
364 CpuFeatures::FlushICache(pc_, sizeof(Address)); in set_target_cell()
442 CpuFeatures::FlushICache( in set_call_address()
474 CpuFeatures::FlushICache(pc_, sizeof(Address)); in Visit()
481 CpuFeatures::FlushICache(pc_, sizeof(Address)); in Visit()
[all …]
Dcpu-x64.cc21 void CpuFeatures::FlushICache(void* start, size_t size) { in FlushICache()
/external/chromium_org/v8/src/arm/
Dassembler-arm-inl.h50 bool CpuFeatures::SupportsCrankshaft() { return IsSupported(VFP3); } in SupportsCrankshaft()
59 return CpuFeatures::IsSupported(VFP32DREGS) ? 32 : 16; in NumRegisters()
466 if (CpuFeatures::IsSupported(ARMv7)) { in target_address_from_return_address()
494 if (CpuFeatures::IsSupported(ARMv7)) { in return_address_from_call_start()
532 if (CpuFeatures::IsSupported(ARMv7)) { in is_constant_pool_load()
551 if (!CpuFeatures::IsSupported(ARMv7) && IsMovImmed(Memory::int32_at(pc))) { in constant_pool_entry_address()
590 } else if (CpuFeatures::IsSupported(ARMv7)) { in target_address_at()
632 } else if (CpuFeatures::IsSupported(ARMv7)) { in set_target_address_at()
644 CpuFeatures::FlushICache(pc, 2 * kInstrSize); in set_target_address_at()
664 CpuFeatures::FlushICache(pc, 4 * kInstrSize); in set_target_address_at()
Dcodegen-arm.cc70 CpuFeatures::FlushICache(buffer, actual_size); in CreateExpFunction()
86 if (!CpuFeatures::IsSupported(UNALIGNED_ACCESSES)) return stub; in CreateMemCopyUint8Function()
100 if (CpuFeatures::IsSupported(NEON)) { in CreateMemCopyUint8Function()
109 if (CpuFeatures::cache_line_size() == 32) { in CreateMemCopyUint8Function()
115 if (CpuFeatures::cache_line_size() == 32) { in CreateMemCopyUint8Function()
121 if (CpuFeatures::cache_line_size() == 32) { in CreateMemCopyUint8Function()
125 if (CpuFeatures::cache_line_size() == 32) { in CreateMemCopyUint8Function()
135 if (CpuFeatures::cache_line_size() == 32) { in CreateMemCopyUint8Function()
230 CpuFeatures::FlushICache(buffer, actual_size); in CreateMemCopyUint8Function()
243 if (!CpuFeatures::IsSupported(UNALIGNED_ACCESSES)) return stub; in CreateMemCopyUint16Uint8Function()
[all …]
Dassembler-arm.cc76 void CpuFeatures::ProbeImpl(bool cross_compile) { in ProbeImpl()
133 void CpuFeatures::PrintTarget() { in PrintTarget()
185 void CpuFeatures::PrintFeatures() { in PrintFeatures()
189 CpuFeatures::IsSupported(ARMv7), in PrintFeatures()
190 CpuFeatures::IsSupported(VFP3), in PrintFeatures()
191 CpuFeatures::IsSupported(VFP32DREGS), in PrintFeatures()
192 CpuFeatures::IsSupported(NEON), in PrintFeatures()
193 CpuFeatures::IsSupported(SUDIV), in PrintFeatures()
194 CpuFeatures::IsSupported(UNALIGNED_ACCESSES), in PrintFeatures()
195 CpuFeatures::IsSupported(MOVW_MOVT_IMMEDIATE_LOADS)); in PrintFeatures()
[all …]
Dcpu-arm.cc27 void CpuFeatures::FlushICache(void* start, size_t size) { in FlushICache()
/external/chromium_org/base/android/java/src/org/chromium/base/
DCpuFeatures.java21 public abstract class CpuFeatures { class
/external/chromium_org/v8/src/mips/
Dcpu-mips.cc27 void CpuFeatures::FlushICache(void* start, size_t size) { in FlushICache()
Dassembler-mips-inl.h50 bool CpuFeatures::SupportsCrankshaft() { return IsSupported(FPU); } in SupportsCrankshaft()
128 CpuFeatures::FlushICache(p, count * sizeof(uint32_t)); in apply()
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
DChildProcessConnectionImpl.java18 import org.chromium.base.CpuFeatures;
331 bundle.putInt(EXTRA_CPU_COUNT, CpuFeatures.getCount()); in doConnectionSetupLocked()
332 bundle.putLong(EXTRA_CPU_FEATURES, CpuFeatures.getMask()); in doConnectionSetupLocked()
/external/chromium_org/v8/src/mips64/
Dcpu-mips64.cc27 void CpuFeatures::FlushICache(void* start, size_t size) { in FlushICache()
Dassembler-mips64-inl.h50 bool CpuFeatures::SupportsCrankshaft() { return IsSupported(FPU); } in SupportsCrankshaft()
120 CpuFeatures::FlushICache(p, count * sizeof(uint32_t)); in apply()
/external/chromium_org/v8/src/arm64/
Dcpu-arm64.cc43 void CpuFeatures::FlushICache(void* address, size_t length) { in FlushICache()
/external/chromium_org/v8/src/
Dflags.cc517 CpuFeatures::Probe(false); in PrintHelp()
518 CpuFeatures::PrintTarget(); in PrintHelp()
519 CpuFeatures::PrintFeatures(); in PrintHelp()
Dv8.cc80 CpuFeatures::Probe(false); in InitializeOncePerProcessImpl()
Dassembler.cc181 DCHECK(CpuFeatures::IsSupported(f)); in CpuFeatureScope()
201 bool CpuFeatures::initialized_ = false;
202 unsigned CpuFeatures::supported_ = 0;
203 unsigned CpuFeatures::cache_line_size_ = 0;
1013 Redirect(isolate, FUNCTION_ADDR(CpuFeatures::FlushICache))); in flush_icache_function()
1383 DCHECK(CpuFeatures::initialized_); in cpu_features()
1384 return ExternalReference(&CpuFeatures::supported_); in cpu_features()
/external/chromium_org/v8/test/cctest/
Dtest-disasm-arm.cc269 if (CpuFeatures::IsSupported(ARMv7)) { in TEST()
363 if (CpuFeatures::IsSupported(ARMv7)) { in TEST()
431 if (CpuFeatures::IsSupported(VFP3)) { in TEST()
598 if (CpuFeatures::IsSupported(VFP32DREGS)) { in TEST()
686 if (CpuFeatures::IsSupported(NEON)) { in TEST()
867 if (CpuFeatures::IsSupported(ARMv7)) { in TEST()
Dtest-code-stubs-arm.cc129 CpuFeatures::FlushICache(buffer, actual_size); in MakeConvertDToIFuncTrampoline()
Dtest-assembler-arm.cc238 if (CpuFeatures::IsSupported(VFP3)) {
362 if (CpuFeatures::IsSupported(ARMv7)) {
397 if (CpuFeatures::IsSupported(ARMv7)) {
438 if (CpuFeatures::IsSupported(VFP3)) { in TestRoundingMode()
1015 if (!CpuFeatures::IsSupported(VFP32DREGS)) {
1040 if (CpuFeatures::IsSupported(VFP3)) {
1258 if (CpuFeatures::IsSupported(NEON)) {
1457 if (CpuFeatures::IsSupported(SUDIV)) {
Dtest-code-stubs-arm64.cc125 CpuFeatures::FlushICache(buffer, actual_size); in MakeConvertDToIFuncTrampoline()
Dtest-code-stubs-mips.cc130 CpuFeatures::FlushICache(buffer, actual_size); in MakeConvertDToIFuncTrampoline()

1234