Home | History | Annotate | Download | only in mips

Lines Matching defs:CpuFeatures

405 // CpuFeatures keeps track of which features are supported by the target CPU.
407 class CpuFeatures : public AllStatic {
443 ASSERT(CpuFeatures::IsSupported(f));
445 (CpuFeatures::found_by_runtime_probing_ & mask) == 0);
473 : old_supported_(CpuFeatures::supported_) {
475 CpuFeatures::supported_ |= (1u << f);
481 CpuFeatures::supported_ = old_supported_;
503 DISALLOW_COPY_AND_ASSIGN(CpuFeatures);