Home
last modified time | relevance | path

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

/external/v8/src/arm/
Dassembler-arm.cc84 supported_ |= CpuFeaturesImpliedByCompiler(); in ProbeImpl()
93 supported_ |= 1u << ARMv8; in ProbeImpl()
95 supported_ |= 1u << ARMv7 | 1u << VFP3 | 1u << NEON | 1u << VFP32DREGS; in ProbeImpl()
96 supported_ |= 1u << SUDIV | 1u << MLS; in ProbeImpl()
97 if (FLAG_enable_movw_movt) supported_ |= 1u << MOVW_MOVT_IMMEDIATE_LOADS; in ProbeImpl()
100 supported_ |= 1u << ARMv7; in ProbeImpl()
101 if (FLAG_enable_vfp3) supported_ |= 1u << VFP3; in ProbeImpl()
102 if (FLAG_enable_neon) supported_ |= 1u << NEON | 1u << VFP32DREGS; in ProbeImpl()
103 if (FLAG_enable_sudiv) supported_ |= 1u << SUDIV; in ProbeImpl()
104 if (FLAG_enable_movw_movt) supported_ |= 1u << MOVW_MOVT_IMMEDIATE_LOADS; in ProbeImpl()
[all …]
/external/v8/src/ia32/
Dassembler-ia32.cc115 if (cpu.has_sse41() && FLAG_enable_sse4_1) supported_ |= 1u << SSE4_1; in ProbeImpl()
116 if (cpu.has_sse3() && FLAG_enable_sse3) supported_ |= 1u << SSE3; in ProbeImpl()
119 supported_ |= 1u << AVX; in ProbeImpl()
123 supported_ |= 1u << FMA3; in ProbeImpl()
125 if (cpu.has_bmi1() && FLAG_enable_bmi1) supported_ |= 1u << BMI1; in ProbeImpl()
126 if (cpu.has_bmi2() && FLAG_enable_bmi2) supported_ |= 1u << BMI2; in ProbeImpl()
127 if (cpu.has_lzcnt() && FLAG_enable_lzcnt) supported_ |= 1u << LZCNT; in ProbeImpl()
128 if (cpu.has_popcnt() && FLAG_enable_popcnt) supported_ |= 1u << POPCNT; in ProbeImpl()
130 if (cpu.is_atom()) supported_ |= 1u << ATOM; in ProbeImpl()
132 supported_ |= 1u << ATOM; in ProbeImpl()
/external/v8/src/mips/
Dassembler-mips.cc68 supported_ |= CpuFeaturesImpliedByCompiler(); in ProbeImpl()
77 supported_ |= 1u << FPU; in ProbeImpl()
80 supported_ |= 1u << FP64FPU; in ProbeImpl()
83 supported_ |= 1u << FP64FPU; in ProbeImpl()
88 if (cpu.has_fpu()) supported_ |= 1u << FPU; in ProbeImpl()
90 if (cpu.is_fp64_mode()) supported_ |= 1u << FP64FPU; in ProbeImpl()
92 supported_ |= 1u << FP64FPU; in ProbeImpl()
96 supported_ |= 1u << MIPSr6; in ProbeImpl()
98 supported_ |= 1u << MIPSr1; in ProbeImpl()
99 supported_ |= 1u << MIPSr2; in ProbeImpl()
[all …]
/external/v8/src/ppc/
Dassembler-ppc.cc57 supported_ |= CpuFeaturesImpliedByCompiler(); in ProbeImpl()
71 supported_ |= (1u << FPR_GPR_MOV); in ProbeImpl()
77 supported_ |= (1u << LWSYNC); in ProbeImpl()
81 supported_ |= (1u << ISELECT); in ProbeImpl()
86 supported_ |= (1u << FPU); in ProbeImpl()
90 supported_ |= (1u << FPU); in ProbeImpl()
93 supported_ |= (1u << FPU); in ProbeImpl()
94 supported_ |= (1u << LWSYNC); in ProbeImpl()
95 supported_ |= (1u << ISELECT); in ProbeImpl()
97 supported_ |= (1u << FPR_GPR_MOV); in ProbeImpl()
/external/v8/src/
Dassembler.h219 return supported_; in SupportedFeatures()
223 return (supported_ & (1u << f)) != 0; in IsSupported()
245 static unsigned supported_; variable
Dassembler.cc267 unsigned CpuFeatures::supported_ = 0; member in v8::internal::CpuFeatures
1404 return ExternalReference(&CpuFeatures::supported_); in cpu_features()
/external/v8/src/x64/
Dassembler-x64.cc81 if (cpu.has_sse41() && FLAG_enable_sse4_1) supported_ |= 1u << SSE4_1; in ProbeImpl()
82 if (cpu.has_sse3() && FLAG_enable_sse3) supported_ |= 1u << SSE3; in ProbeImpl()
84 if (cpu.has_sahf() && FLAG_enable_sahf) supported_ |= 1u << SAHF; in ProbeImpl()
87 supported_ |= 1u << AVX; in ProbeImpl()
91 supported_ |= 1u << FMA3; in ProbeImpl()
93 if (cpu.has_bmi1() && FLAG_enable_bmi1) supported_ |= 1u << BMI1; in ProbeImpl()
94 if (cpu.has_bmi2() && FLAG_enable_bmi2) supported_ |= 1u << BMI2; in ProbeImpl()
95 if (cpu.has_lzcnt() && FLAG_enable_lzcnt) supported_ |= 1u << LZCNT; in ProbeImpl()
96 if (cpu.has_popcnt() && FLAG_enable_popcnt) supported_ |= 1u << POPCNT; in ProbeImpl()
98 if (cpu.is_atom()) supported_ |= 1u << ATOM; in ProbeImpl()
[all …]
/external/v8/src/mips64/
Dassembler-mips64.cc68 supported_ |= CpuFeaturesImpliedByCompiler(); in ProbeImpl()
77 supported_ |= 1u << FPU; in ProbeImpl()
81 if (cpu.has_fpu()) supported_ |= 1u << FPU; in ProbeImpl()
/external/v8/src/arm64/
Dassembler-arm64.cc49 supported_ = 0; in ProbeImpl()
59 supported_ |= 1u << COHERENT_CACHE; in ProbeImpl()