Lines Matching refs:InstructionSetFeatures
36 class InstructionSetFeatures {
39 static const InstructionSetFeatures* FromVariant(InstructionSet isa,
44 static const InstructionSetFeatures* FromBitmap(InstructionSet isa, uint32_t bitmap);
47 static const InstructionSetFeatures* FromCppDefines();
50 static const InstructionSetFeatures* FromCpuInfo();
54 static const InstructionSetFeatures* FromHwcap();
58 static const InstructionSetFeatures* FromAssembly();
62 const InstructionSetFeatures* AddFeaturesFromString(const std::string& feature_list,
66 virtual bool Equals(const InstructionSetFeatures* other) const = 0;
100 virtual ~InstructionSetFeatures() {} in ~InstructionSetFeatures()
103 explicit InstructionSetFeatures(bool smp) : smp_(smp) {} in InstructionSetFeatures() function
110 virtual const InstructionSetFeatures*
117 DISALLOW_COPY_AND_ASSIGN(InstructionSetFeatures);
119 std::ostream& operator<<(std::ostream& os, const InstructionSetFeatures& rhs);