Searched defs:CpuFeatures (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/mips/
H A Dassembler-mips.h405 // CpuFeatures keeps track of which features are supported by the target CPU.
407 class CpuFeatures : public AllStatic { class in namespace:v8::internal
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);
/external/v8/src/arm/
H A Dassembler-arm.h501 // CpuFeatures keeps track of which features are supported by the target CPU.
503 class CpuFeatures : public AllStatic { class in namespace:v8::internal
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);

Completed in 43 milliseconds