Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DScopeInfo.cpp73 bool IsExact = false; in getBaseInfo() local
78 IsExact = isa<VarDecl>(D); in getBaseInfo()
83 IsExact = isa<CXXThisExpr>(ME->getBase()->IgnoreParenImpCasts()); in getBaseInfo()
89 IsExact = IE->getBase()->isObjCSelfExpr(); in getBaseInfo()
104 IsExact = DoubleBase->isObjCSelfExpr(); in getBaseInfo()
113 return BaseInfoTy(D, IsExact); in getBaseInfo()
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DOperator.h123 IsExact = (1 << 0) enumerator
131 SubclassOptionalData = (SubclassOptionalData & ~IsExact) | (B * IsExact); in setIsExact()
137 return SubclassOptionalData & IsExact; in isExact()
/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DAPFloat.h641 bool *IsExact) const;
1071 bool *IsExact) const { in convertToInteger() argument
1073 convertToInteger(Input, Width, IsSigned, RM, IsExact)); in convertToInteger()
1076 bool *IsExact) const;
/freebsd-12.1/contrib/llvm/lib/IR/
H A DConstants.cpp2273 isExact ? PossiblyExactOperator::IsExact : 0); in getUDiv()
2278 isExact ? PossiblyExactOperator::IsExact : 0); in getSDiv()
2318 isExact ? PossiblyExactOperator::IsExact : 0); in getLShr()
2323 isExact ? PossiblyExactOperator::IsExact : 0); in getAShr()
3031 BO->setIsExact(SubclassOptionalData & PossiblyExactOperator::IsExact); in getAsInstruction()
/freebsd-12.1/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp886 bool IsExact = I.isExact() && match(Op0, m_Exact(m_Value())); in visitUDiv() local
889 if (IsExact) in visitUDiv()
H A DInstCombineCompares.cpp2045 bool IsExact = Shr->isExact(); in foldICmpShrConstant() local
2052 if (Pred == CmpInst::ICMP_SLT || (Pred == CmpInst::ICMP_SGT && IsExact)) { in foldICmpShrConstant()
2067 if (Pred == CmpInst::ICMP_ULT || (Pred == CmpInst::ICMP_UGT && IsExact)) { in foldICmpShrConstant()
5063 bool IsExact = false; in foldFCmpIntToFPConst() local
5065 RHS.convertToInteger(RHSCvt, APFloat::rmNearestTiesToEven, &IsExact); in foldFCmpIntToFPConst()
5069 if (!IsExact) { in foldFCmpIntToFPConst()
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DMachineInstr.h106 IsExact = 1 << 13 // Instruction supports division is enumerator
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DMachineInstr.cpp535 setFlag(MachineInstr::MIFlag::IsExact); in copyIRFlags()
1521 if (getFlag(MachineInstr::IsExact)) in print()
H A DMIRPrinter.cpp707 if (MI.getFlag(MachineInstr::IsExact)) in print()
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp361 bool IsExact; // describes whether parsed value was exact. member
524 return FPImm.IsExact; in getFPImmIsExact()
1913 CreateFPImm(APFloat Val, bool IsExact, SMLoc S, MCContext &Ctx) { in CreateFPImm() argument
1916 Op->FPImm.IsExact = IsExact; in CreateFPImm()
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DInstrEmitter.cpp902 MI->setFlag(MachineInstr::MIFlag::IsExact); in EmitMachineNode()
H A DSelectionDAG.cpp9203 bool IsExact; in getConstantFPSplatPow2ToLog2Int() local
9206 if (APF.convertToInteger(IntVal, APFloat::rmTowardZero, &IsExact) != in getConstantFPSplatPow2ToLog2Int()
9208 !IsExact) in getConstantFPSplatPow2ToLog2Int()
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp2568 bool IsExact; in SelectCVTFixedPosOperand() local
2573 FVal.convertToInteger(IntVal, APFloat::rmTowardZero, &IsExact); in SelectCVTFixedPosOperand()
2576 if (!IsExact || !IntVal.isPowerOf2()) return false; in SelectCVTFixedPosOperand()
/freebsd-12.1/contrib/llvm/lib/Support/
H A DAPFloat.cpp4300 roundingMode RM, bool *IsExact) const { in convertToInteger()
4303 .convertToInteger(Input, Width, IsSigned, RM, IsExact); in convertToInteger()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DExpr.cpp837 FloatingLiteralBits.IsExact = isexact; in FloatingLiteral()
844 FloatingLiteralBits.IsExact = false; in FloatingLiteral()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DExpr.h1485 bool isExact() const { return FloatingLiteralBits.IsExact; } in isExact()
1486 void setExact(bool E) { FloatingLiteralBits.IsExact = E; } in setExact()
H A DStmt.h366 unsigned IsExact : 1; in alignas() local
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprScalar.cpp852 bool IsExact; in EmitFloatConversionCheck() local
854 &IsExact) != APFloat::opOK) in EmitFloatConversionCheck()
/freebsd-12.1/contrib/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp1006 Flags |= MachineInstr::IsExact; in parseInstruction()
/freebsd-12.1/contrib/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2376 Flags |= SDivOperator::IsExact; in parseConstants()
/freebsd-12.1/contrib/llvm/lib/AsmParser/
H A DLLParser.cpp3402 if (Exact) Flags |= PossiblyExactOperator::IsExact; in ParseValID()