| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | ScopeInfo.cpp | 73 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 D | Operator.h | 123 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 D | APFloat.h | 641 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 D | Constants.cpp | 2273 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 D | InstCombineMulDivRem.cpp | 886 bool IsExact = I.isExact() && match(Op0, m_Exact(m_Value())); in visitUDiv() local 889 if (IsExact) in visitUDiv()
|
| H A D | InstCombineCompares.cpp | 2045 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 D | MachineInstr.h | 106 IsExact = 1 << 13 // Instruction supports division is enumerator
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | MachineInstr.cpp | 535 setFlag(MachineInstr::MIFlag::IsExact); in copyIRFlags() 1521 if (getFlag(MachineInstr::IsExact)) in print()
|
| H A D | MIRPrinter.cpp | 707 if (MI.getFlag(MachineInstr::IsExact)) in print()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AArch64/AsmParser/ |
| H A D | AArch64AsmParser.cpp | 361 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 D | InstrEmitter.cpp | 902 MI->setFlag(MachineInstr::MIFlag::IsExact); in EmitMachineNode()
|
| H A D | SelectionDAG.cpp | 9203 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 D | AArch64ISelDAGToDAG.cpp | 2568 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 D | APFloat.cpp | 4300 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 D | Expr.cpp | 837 FloatingLiteralBits.IsExact = isexact; in FloatingLiteral() 844 FloatingLiteralBits.IsExact = false; in FloatingLiteral()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | Expr.h | 1485 bool isExact() const { return FloatingLiteralBits.IsExact; } in isExact() 1486 void setExact(bool E) { FloatingLiteralBits.IsExact = E; } in setExact()
|
| H A D | Stmt.h | 366 unsigned IsExact : 1; in alignas() local
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGExprScalar.cpp | 852 bool IsExact; in EmitFloatConversionCheck() local 854 &IsExact) != APFloat::opOK) in EmitFloatConversionCheck()
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/MIRParser/ |
| H A D | MIParser.cpp | 1006 Flags |= MachineInstr::IsExact; in parseInstruction()
|
| /freebsd-12.1/contrib/llvm/lib/Bitcode/Reader/ |
| H A D | BitcodeReader.cpp | 2376 Flags |= SDivOperator::IsExact; in parseConstants()
|
| /freebsd-12.1/contrib/llvm/lib/AsmParser/ |
| H A D | LLParser.cpp | 3402 if (Exact) Flags |= PossiblyExactOperator::IsExact; in ParseValID()
|