Searched refs:CpuFeature (Results 1 – 7 of 7) sorted by relevance
69 explicit Features(CpuFeature f) : bits_(1u << f) {} in Features()70 Features(CpuFeature f1, CpuFeature f2) : bits_((1u << f1) | (1u << f2)) {} in Features()72 bool Contains(CpuFeature f) const { return (bits_ & (1u << f)); } in Contains()78 bool IsSupported(CpuFeature feature) const { in IsSupported()
63 Stream Build(CpuFeature feature) { in Build()66 Stream Build(CpuFeature feature1, CpuFeature feature2) { in Build()
45 void SelectInstructions(CpuFeature feature) { in SelectInstructions()49 void SelectInstructions(CpuFeature feature1, CpuFeature feature2) { in SelectInstructions()
78 bool IsEnabled(CpuFeature f) { in IsEnabled()149 CpuFeatureScope(AssemblerBase* assembler, CpuFeature f);156 CpuFeatureScope(AssemblerBase* assembler, CpuFeature f) {}184 static bool IsSupported(CpuFeature f) { in IsSupported()
611 enum CpuFeature { enum
179 CpuFeatureScope::CpuFeatureScope(AssemblerBase* assembler, CpuFeature f) in CpuFeatureScope()
108 (CpuFeatures::IsSupported(static_cast<CpuFeature>(check)))