Home
last modified time | relevance | path

Searched refs:supported_ (Results 1 – 8 of 8) sorted by relevance

/external/v8/src/arm/
Dassembler-arm.cc77 supported_ |= CpuFeaturesImpliedByCompiler(); in ProbeImpl()
86 supported_ |= 1u << ARMv7; in ProbeImpl()
87 if (FLAG_enable_vfp3) supported_ |= 1u << VFP3; in ProbeImpl()
88 if (FLAG_enable_neon) supported_ |= 1u << NEON | 1u << VFP32DREGS; in ProbeImpl()
89 if (FLAG_enable_sudiv) supported_ |= 1u << SUDIV; in ProbeImpl()
90 if (FLAG_enable_movw_movt) supported_ |= 1u << MOVW_MOVT_IMMEDIATE_LOADS; in ProbeImpl()
91 if (FLAG_enable_32dregs) supported_ |= 1u << VFP32DREGS; in ProbeImpl()
93 if (FLAG_enable_mls) supported_ |= 1u << MLS; in ProbeImpl()
94 if (FLAG_enable_unaligned_accesses) supported_ |= 1u << UNALIGNED_ACCESSES; in ProbeImpl()
103 supported_ |= 1u << VFP3 | 1u << ARMv7; in ProbeImpl()
[all …]
/external/v8/src/mips/
Dassembler-mips.cc92 supported_ |= CpuFeaturesImpliedByCompiler(); in ProbeImpl()
101 supported_ |= 1u << FPU; in ProbeImpl()
104 supported_ |= 1u << FP64FPU; in ProbeImpl()
107 supported_ |= 1u << FP64FPU; in ProbeImpl()
112 if (cpu.has_fpu()) supported_ |= 1u << FPU; in ProbeImpl()
114 if (cpu.is_fp64_mode()) supported_ |= 1u << FP64FPU; in ProbeImpl()
116 supported_ |= 1u << FP64FPU; in ProbeImpl()
120 supported_ |= 1u << MIPSr6; in ProbeImpl()
122 supported_ |= 1u << MIPSr1; in ProbeImpl()
123 supported_ |= 1u << MIPSr2; in ProbeImpl()
[all …]
/external/v8/src/
Dassembler.h181 return supported_; in SupportedFeatures()
185 return (supported_ & (1u << f)) != 0; in IsSupported()
205 static unsigned supported_; variable
Dassembler.cc202 unsigned CpuFeatures::supported_ = 0; member in v8::internal::CpuFeatures
1384 return ExternalReference(&CpuFeatures::supported_); in cpu_features()
/external/v8/src/x64/
Dassembler-x64.cc27 if (cpu.has_sse41() && FLAG_enable_sse4_1) supported_ |= 1u << SSE4_1; in ProbeImpl()
28 if (cpu.has_sse3() && FLAG_enable_sse3) supported_ |= 1u << SSE3; in ProbeImpl()
30 if (cpu.has_sahf() && FLAG_enable_sahf) supported_|= 1u << SAHF; in ProbeImpl()
/external/v8/src/mips64/
Dassembler-mips64.cc92 supported_ |= CpuFeaturesImpliedByCompiler(); in ProbeImpl()
101 supported_ |= 1u << FPU; in ProbeImpl()
105 if (cpu.has_fpu()) supported_ |= 1u << FPU; in ProbeImpl()
/external/v8/src/ia32/
Dassembler-ia32.cc61 if (cpu.has_sse41() && FLAG_enable_sse4_1) supported_ |= 1u << SSE4_1; in ProbeImpl()
62 if (cpu.has_sse3() && FLAG_enable_sse3) supported_ |= 1u << SSE3; in ProbeImpl()
/external/v8/src/arm64/
Dassembler-arm64.cc50 if (FLAG_enable_always_align_csp) supported_ |= 1u << ALWAYS_ALIGN_CSP; in ProbeImpl()
55 supported_ |= 1u << ALWAYS_ALIGN_CSP; in ProbeImpl()