Lines Matching refs:InstructionSetFeatures
33 std::unique_ptr<const InstructionSetFeatures> InstructionSetFeatures::FromVariant( in FromVariant()
57 std::unique_ptr<const InstructionSetFeatures> InstructionSetFeatures::FromBitmap(InstructionSet isa, in FromBitmap()
59 std::unique_ptr<const InstructionSetFeatures> result; in FromBitmap()
90 std::unique_ptr<const InstructionSetFeatures> InstructionSetFeatures::FromCppDefines() { in FromCppDefines()
114 std::unique_ptr<const InstructionSetFeatures> InstructionSetFeatures::FromCpuInfo() { in FromCpuInfo()
137 std::unique_ptr<const InstructionSetFeatures> InstructionSetFeatures::FromHwcap() { in FromHwcap()
160 std::unique_ptr<const InstructionSetFeatures> InstructionSetFeatures::FromAssembly() { in FromAssembly()
183 std::unique_ptr<const InstructionSetFeatures> InstructionSetFeatures::AddFeaturesFromString( in AddFeaturesFromString()
187 return std::unique_ptr<const InstructionSetFeatures>(); in AddFeaturesFromString()
196 return std::unique_ptr<const InstructionSetFeatures>(); in AddFeaturesFromString()
206 return std::unique_ptr<const InstructionSetFeatures>(); in AddFeaturesFromString()
224 const ArmInstructionSetFeatures* InstructionSetFeatures::AsArmInstructionSetFeatures() const { in AsArmInstructionSetFeatures()
229 const Arm64InstructionSetFeatures* InstructionSetFeatures::AsArm64InstructionSetFeatures() const { in AsArm64InstructionSetFeatures()
234 const MipsInstructionSetFeatures* InstructionSetFeatures::AsMipsInstructionSetFeatures() const { in AsMipsInstructionSetFeatures()
239 const Mips64InstructionSetFeatures* InstructionSetFeatures::AsMips64InstructionSetFeatures() const { in AsMips64InstructionSetFeatures()
244 const X86InstructionSetFeatures* InstructionSetFeatures::AsX86InstructionSetFeatures() const { in AsX86InstructionSetFeatures()
250 const X86_64InstructionSetFeatures* InstructionSetFeatures::AsX86_64InstructionSetFeatures() const { in AsX86_64InstructionSetFeatures()
255 bool InstructionSetFeatures::FindVariantInArray(const char* const variants[], size_t num_variants, in FindVariantInArray()
262 std::ostream& operator<<(std::ostream& os, const InstructionSetFeatures& rhs) { in operator <<()