/external/clang/lib/Sema/ |
D | ScopeInfo.cpp | 63 bool IsExact = false; in getBaseInfo() local 68 IsExact = isa<VarDecl>(D); in getBaseInfo() 73 IsExact = isa<CXXThisExpr>(ME->getBase()->IgnoreParenImpCasts()); in getBaseInfo() 79 IsExact = IE->getBase()->isObjCSelfExpr(); in getBaseInfo() 94 IsExact = DoubleBase->isObjCSelfExpr(); in getBaseInfo() 103 return BaseInfoTy(D, IsExact); in getBaseInfo()
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | Operator.h | 129 IsExact = (1 << 0) enumerator 135 SubclassOptionalData = (SubclassOptionalData & ~IsExact) | (B * IsExact); in setIsExact() 144 return SubclassOptionalData & IsExact; in isExact()
|
/external/llvm/include/llvm/IR/ |
D | Operator.h | 129 IsExact = (1 << 0) enumerator 136 SubclassOptionalData = (SubclassOptionalData & ~IsExact) | (B * IsExact); in setIsExact() 142 return SubclassOptionalData & IsExact; in isExact()
|
/external/swiftshader/third_party/llvm-7.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()
|
/external/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()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
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;
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | Constants.cpp | 1815 isExact ? PossiblyExactOperator::IsExact : 0); in getUDiv() 1820 isExact ? PossiblyExactOperator::IsExact : 0); in getSDiv() 1860 isExact ? PossiblyExactOperator::IsExact : 0); in getLShr() 1865 isExact ? PossiblyExactOperator::IsExact : 0); in getAShr()
|
/external/llvm/lib/IR/ |
D | Constants.cpp | 2167 isExact ? PossiblyExactOperator::IsExact : 0); in getUDiv() 2172 isExact ? PossiblyExactOperator::IsExact : 0); in getSDiv() 2212 isExact ? PossiblyExactOperator::IsExact : 0); in getLShr() 2217 isExact ? PossiblyExactOperator::IsExact : 0); in getAShr() 2907 BO->setIsExact(SubclassOptionalData & PossiblyExactOperator::IsExact); in getAsInstruction()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | Constants.cpp | 2221 isExact ? PossiblyExactOperator::IsExact : 0); in getUDiv() 2226 isExact ? PossiblyExactOperator::IsExact : 0); in getSDiv() 2266 isExact ? PossiblyExactOperator::IsExact : 0); in getLShr() 2271 isExact ? PossiblyExactOperator::IsExact : 0); in getAShr() 2979 BO->setIsExact(SubclassOptionalData & PossiblyExactOperator::IsExact); in getAsInstruction()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineMulDivRem.cpp | 1078 bool IsExact = I.isExact() && match(Op0, m_Exact(m_Value())); in visitUDiv() local 1081 if (IsExact) in visitUDiv()
|
D | InstCombineCompares.cpp | 4314 bool IsExact = false; in FoldFCmp_IntToFP_Cst() local 4316 RHS.convertToInteger(RHSCvt, APFloat::rmNearestTiesToEven, &IsExact); in FoldFCmp_IntToFP_Cst() 4320 if (!IsExact) { in FoldFCmp_IntToFP_Cst()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineMulDivRem.cpp | 951 bool IsExact = I.isExact() && match(Op0, m_Exact(m_Value())); in visitUDiv() local 954 if (IsExact) in visitUDiv()
|
D | InstCombineCompares.cpp | 2012 bool IsExact = Shr->isExact(); in foldICmpShrConstant() local 2019 if (Pred == CmpInst::ICMP_SLT || (Pred == CmpInst::ICMP_SGT && IsExact)) { in foldICmpShrConstant() 2034 if (Pred == CmpInst::ICMP_ULT || (Pred == CmpInst::ICMP_UGT && IsExact)) { in foldICmpShrConstant() 4898 bool IsExact = false; in foldFCmpIntToFPConst() local 4900 RHS.convertToInteger(RHSCvt, APFloat::rmNearestTiesToEven, &IsExact); in foldFCmpIntToFPConst() 4904 if (!IsExact) { in foldFCmpIntToFPConst()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/AsmParser/ |
D | AArch64AsmParser.cpp | 355 bool IsExact; // describes whether parsed value was exact. member 508 return FPImm.IsExact; in getFPImmIsExact() 1880 CreateFPImm(APFloat Val, bool IsExact, SMLoc S, MCContext &Ctx) { in CreateFPImm() argument 1883 Op->FPImm.IsExact = IsExact; in CreateFPImm()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/ |
D | AArch64ISelDAGToDAG.cpp | 2575 bool IsExact; in SelectCVTFixedPosOperand() local 2580 FVal.convertToInteger(IntVal, APFloat::rmTowardZero, &IsExact); in SelectCVTFixedPosOperand() 2583 if (!IsExact || !IntVal.isPowerOf2()) return false; in SelectCVTFixedPosOperand()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64ISelDAGToDAG.cpp | 2371 bool IsExact; in SelectCVTFixedPosOperand() local 2376 FVal.convertToInteger(IntVal, APFloat::rmTowardZero, &IsExact); in SelectCVTFixedPosOperand() 2379 if (!IsExact || !IntVal.isPowerOf2()) return false; in SelectCVTFixedPosOperand()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | APFloat.cpp | 4300 roundingMode RM, bool *IsExact) const { in convertToInteger() 4303 .convertToInteger(Input, Width, IsSigned, RM, IsExact); in convertToInteger()
|
/external/clang/lib/AST/ |
D | Expr.cpp | 735 FloatingLiteralBits.IsExact = isexact; in FloatingLiteral() 742 FloatingLiteralBits.IsExact = false; in FloatingLiteral()
|
/external/clang/include/clang/AST/ |
D | Expr.h | 1394 bool isExact() const { return FloatingLiteralBits.IsExact; } in isExact() 1395 void setExact(bool E) { FloatingLiteralBits.IsExact = E; } in setExact()
|
D | Stmt.h | 158 unsigned IsExact : 1; in LLVM_ALIGNAS() local
|
/external/clang/lib/CodeGen/ |
D | CGExprScalar.cpp | 617 bool IsExact; in EmitFloatConversionCheck() local 619 &IsExact) != APFloat::opOK) in EmitFloatConversionCheck()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 7227 bool IsExact; in getConstantFPSplatPow2ToLog2Int() local 7230 if (APF.convertToInteger(IntVal, APFloat::rmTowardZero, &IsExact) != in getConstantFPSplatPow2ToLog2Int() 7232 !IsExact) in getConstantFPSplatPow2ToLog2Int()
|
/external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 1363 Flags |= SDivOperator::IsExact; in ParseConstants()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 8618 bool IsExact; in getConstantFPSplatPow2ToLog2Int() local 8621 if (APF.convertToInteger(IntVal, APFloat::rmTowardZero, &IsExact) != in getConstantFPSplatPow2ToLog2Int() 8623 !IsExact) in getConstantFPSplatPow2ToLog2Int()
|
/external/swiftshader/third_party/LLVM/lib/AsmParser/ |
D | LLParser.cpp | 2255 if (Exact) Flags |= PossiblyExactOperator::IsExact; in ParseValID()
|