Searched refs:CpuFeature (Results 1 – 6 of 6) sorted by relevance
110 explicit Features(CpuFeature f) : bits_(1u << f) {} in Features()111 Features(CpuFeature f1, CpuFeature f2) : bits_((1u << f1) | (1u << f2)) {} in Features()113 bool Contains(CpuFeature f) const { return (bits_ & (1u << f)); } in Contains()119 bool IsSupported(CpuFeature feature) const { in IsSupported()
74 Stream Build(CpuFeature feature) { in Build()77 Stream Build(CpuFeature feature1, CpuFeature feature2) { in Build()
82 bool IsEnabled(CpuFeature f) { in IsEnabled()187 CpuFeatureScope(AssemblerBase* assembler, CpuFeature f);194 CpuFeatureScope(AssemblerBase* assembler, CpuFeature f) {}222 static bool IsSupported(CpuFeature f) { in IsSupported()
694 enum CpuFeature { enum
244 CpuFeatureScope::CpuFeatureScope(AssemblerBase* assembler, CpuFeature f) in CpuFeatureScope()
108 (CpuFeatures::IsSupported(static_cast<CpuFeature>(check)))