Home | History | Annotate | Download | only in arm

Lines Matching defs:CpuFeatures

501 // CpuFeatures keeps track of which features are supported by the target CPU.
503 class CpuFeatures : public AllStatic {
538 ASSERT(CpuFeatures::IsSupported(f));
540 (CpuFeatures::found_by_runtime_probing_ & mask) == 0);
568 : old_supported_(CpuFeatures::supported_) {
570 CpuFeatures::supported_ |= (1u << f);
576 CpuFeatures::supported_ = old_supported_;
598 DISALLOW_COPY_AND_ASSIGN(CpuFeatures);