Home
last modified time | relevance | path

Searched refs:IsExact (Results 1 – 18 of 18) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DOperator.h123 IsExact = (1 << 0) enumerator
131 SubclassOptionalData = (SubclassOptionalData & ~IsExact) | (B * IsExact); in setIsExact()
137 return SubclassOptionalData & IsExact; in isExact()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPFloat.h988 bool *IsExact) const { in convertToInteger() argument
989 return getIEEE().convertToInteger(Input, Width, IsSigned, RM, IsExact); in convertToInteger()
992 bool *IsExact) const { in convertToInteger() argument
993 return getIEEE().convertToInteger(Result, RM, IsExact); in convertToInteger()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPFloat.h658 bool *IsExact) const;
1091 bool *IsExact) const { in convertToInteger() argument
1093 convertToInteger(Input, Width, IsSigned, RM, IsExact)); in convertToInteger()
1096 bool *IsExact) const;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstants.cpp2353 isExact ? PossiblyExactOperator::IsExact : 0); in getUDiv()
2358 isExact ? PossiblyExactOperator::IsExact : 0); in getSDiv()
2398 isExact ? PossiblyExactOperator::IsExact : 0); in getLShr()
2403 isExact ? PossiblyExactOperator::IsExact : 0); in getAShr()
3112 BO->setIsExact(SubclassOptionalData & PossiblyExactOperator::IsExact); in getAsInstruction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp974 bool IsExact = I.isExact() && match(Op0, m_Exact(m_Value())); in visitUDiv() local
977 if (IsExact) in visitUDiv()
DInstCombineCompares.cpp2190 bool IsExact = Shr->isExact(); in foldICmpShrConstant() local
2197 if (Pred == CmpInst::ICMP_SLT || (Pred == CmpInst::ICMP_SGT && IsExact)) { in foldICmpShrConstant()
2212 if (Pred == CmpInst::ICMP_ULT || (Pred == CmpInst::ICMP_UGT && IsExact)) { in foldICmpShrConstant()
5700 bool IsExact = false; in foldFCmpIntToFPConst() local
5702 RHS.convertToInteger(RHSCvt, APFloat::rmNearestTiesToEven, &IsExact); in foldFCmpIntToFPConst()
5706 if (!IsExact) { in foldFCmpIntToFPConst()
DInstCombineSelect.cpp567 bool IsExact = Ashr->isExact() && cast<Instruction>(TrueVal)->isExact(); in foldSelectICmpLshrAshr() local
568 return Builder.CreateAShr(X, Y, IC->getName(), IsExact); in foldSelectICmpLshrAshr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineInstr.cpp540 MIFlags |= MachineInstr::MIFlag::IsExact; in copyFlagsFromInstruction()
1539 if (getFlag(MachineInstr::IsExact)) in print()
DMIRPrinter.cpp753 if (MI.getFlag(MachineInstr::IsExact)) in print()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineInstr.h105 IsExact = 1 << 13, // Instruction supports division is enumerator
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/AsmParser/
DAArch64AsmParser.cpp363 bool IsExact; // describes whether parsed value was exact. member
526 return FPImm.IsExact; in getFPImmIsExact()
1902 CreateFPImm(APFloat Val, bool IsExact, SMLoc S, MCContext &Ctx) { in CreateFPImm() argument
1905 Op->FPImm.IsExact = IsExact; in CreateFPImm()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DInstrEmitter.cpp884 MI->setFlag(MachineInstr::MIFlag::IsExact); in EmitMachineNode()
DSelectionDAG.cpp9641 bool IsExact; in getConstantFPSplatPow2ToLog2Int() local
9644 if (APF.convertToInteger(IntVal, APFloat::rmTowardZero, &IsExact) != in getConstantFPSplatPow2ToLog2Int()
9646 !IsExact) in getConstantFPSplatPow2ToLog2Int()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPFloat.cpp4377 roundingMode RM, bool *IsExact) const { in convertToInteger()
4380 .convertToInteger(Input, Width, IsSigned, RM, IsExact); in convertToInteger()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64ISelDAGToDAG.cpp2685 bool IsExact; in SelectCVTFixedPosOperand() local
2690 FVal.convertToInteger(IntVal, APFloat::rmTowardZero, &IsExact); in SelectCVTFixedPosOperand()
2693 if (!IsExact || !IntVal.isPowerOf2()) return false; in SelectCVTFixedPosOperand()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MIRParser/
DMIParser.cpp1211 Flags |= MachineInstr::IsExact; in parseInstruction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp2557 Flags |= SDivOperator::IsExact; in parseConstants()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/
DLLParser.cpp3516 if (Exact) Flags |= PossiblyExactOperator::IsExact; in ParseValID()