/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Operator.h | 123 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/ |
D | APFloat.h | 988 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/ |
D | APFloat.h | 658 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/ |
D | Constants.cpp | 2353 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/ |
D | InstCombineMulDivRem.cpp | 974 bool IsExact = I.isExact() && match(Op0, m_Exact(m_Value())); in visitUDiv() local 977 if (IsExact) in visitUDiv()
|
D | InstCombineCompares.cpp | 2190 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()
|
D | InstCombineSelect.cpp | 567 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/ |
D | MachineInstr.cpp | 540 MIFlags |= MachineInstr::MIFlag::IsExact; in copyFlagsFromInstruction() 1539 if (getFlag(MachineInstr::IsExact)) in print()
|
D | MIRPrinter.cpp | 753 if (MI.getFlag(MachineInstr::IsExact)) in print()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | MachineInstr.h | 105 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/ |
D | AArch64AsmParser.cpp | 363 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/ |
D | InstrEmitter.cpp | 884 MI->setFlag(MachineInstr::MIFlag::IsExact); in EmitMachineNode()
|
D | SelectionDAG.cpp | 9641 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/ |
D | APFloat.cpp | 4377 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/ |
D | AArch64ISelDAGToDAG.cpp | 2685 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/ |
D | MIParser.cpp | 1211 Flags |= MachineInstr::IsExact; in parseInstruction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 2557 Flags |= SDivOperator::IsExact; in parseConstants()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/ |
D | LLParser.cpp | 3516 if (Exact) Flags |= PossiblyExactOperator::IsExact; in ParseValID()
|