Home
last modified time | relevance | path

Searched refs:StrictFP (Results 1 – 13 of 13) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DForceFunctionAttrs.cpp67 .Case("strictfp", Attribute::StrictFP) in parseAttrKind()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/IR/
DAttributesCompatFunc.inc59 StrictFP,
128 .Case("strictfp", Attribute::StrictFP)
453 return llvm::Attribute::StrictFP;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/include/llvm/IR/
DAttributes.inc59 StrictFP,
128 .Case("strictfp", Attribute::StrictFP)
453 return llvm::Attribute::StrictFP;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DAttributes.td171 def StrictFP : EnumAttr<"strictfp">;
DIRBuilder.h260 if (!F->hasFnAttribute(Attribute::StrictFP)) { in setConstrainedFPFunctionAttr()
261 F->addFnAttr(Attribute::StrictFP); in setConstrainedFPFunctionAttr()
266 if (!I->hasFnAttr(Attribute::StrictFP)) in setConstrainedFPCallAttr()
267 I->addAttribute(AttributeList::FunctionIndex, Attribute::StrictFP); in setConstrainedFPCallAttr()
DInstrTypes.h1653 bool isStrictFP() const { return hasFnAttr(Attribute::StrictFP); }
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DCodeExtractor.cpp915 case Attribute::StrictFP: in constructFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
DSystemZISelLowering.cpp2658 enum class CmpMode { Int, FP, StrictFP, SignalingFP }; enumerator
2666 case CmpMode::StrictFP: return SystemZISD::STRICT_VFCMPE; in getVectorComparison()
2676 case CmpMode::StrictFP: return SystemZISD::STRICT_VFCMPHE; in getVectorComparison()
2686 case CmpMode::StrictFP: return SystemZISD::STRICT_VFCMPH; in getVectorComparison()
2695 case CmpMode::StrictFP: return 0; in getVectorComparison()
2791 Chain ? CmpMode::StrictFP : IsFP ? CmpMode::FP : CmpMode::Int; in lowerVectorSETCC()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DAttributes.cpp379 if (hasAttribute(Attribute::StrictFP)) in getAsString()
DVerifier.cpp1547 case Attribute::StrictFP: in isFuncOnlyAttr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp1271 case Attribute::StrictFP: return 1ULL << 55; in getRawAttributeMask()
1515 return Attribute::StrictFP; in getAttrFromCode()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp699 case Attribute::StrictFP: in getAttrKindEncoding()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/
DLLParser.cpp1324 case lltok::kw_strictfp: B.addAttribute(Attribute::StrictFP); break; in ParseFnAttributeValuePairs()