/external/llvm/lib/Transforms/Scalar/ |
D | Float2Int.cpp | 196 APInt Min = APInt::getMinValue(BW).zextOrSelf(MaxIntegerBW+1); in walkBackwards() 197 APInt Max = APInt::getMaxValue(BW).zextOrSelf(MaxIntegerBW+1); in walkBackwards()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | ConstantRange.cpp | 298 Lower = Lower.zextOrSelf(BitWidth); in makeGuaranteedNoWrapRegion() 299 Upper = Upper.zextOrSelf(BitWidth); in makeGuaranteedNoWrapRegion() 595 APInt Min = APInt::getMinValue(BW).zextOrSelf(ResultBitWidth); in castOp() 596 APInt Max = APInt::getMaxValue(BW).zextOrSelf(ResultBitWidth); in castOp()
|
/external/llvm/lib/Analysis/ |
D | MemoryBuiltins.cpp | 461 Size *= C->getValue().zextOrSelf(IntTyBits); in visitAllocaInst() 497 APInt MaxSize = Arg->getValue().zextOrSelf(IntTyBits); in visitCallSite()
|
D | BasicAliasAnalysis.cpp | 201 Offset += Const->getValue().zextOrSelf(Offset.getBitWidth()); in GetLinearExpression() 212 APInt RHS = RHSC->getValue().zextOrSelf(Offset.getBitWidth()); in GetLinearExpression() 289 Offset = Offset.trunc(SmallWidth).sext(NewWidth).zextOrSelf(OldWidth); in GetLinearExpression()
|
D | ConstantFolding.cpp | 98 Result |= ElementCI->getValue().zextOrSelf(IT->getBitWidth()); in FoldBitCast()
|
/external/llvm/include/llvm/ADT/ |
D | APInt.h | 549 APInt Val = V.zextOrSelf(NewLen); in getSplat() 1220 APInt LLVM_ATTRIBUTE_UNUSED_RESULT zextOrSelf(unsigned width) const;
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | APInt.h | 553 APInt Val = V.zextOrSelf(NewLen); in getSplat() 1196 APInt zextOrSelf(unsigned width) const;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | BasicAliasAnalysis.cpp | 249 Offset += Const->getValue().zextOrSelf(Offset.getBitWidth()); in GetLinearExpression() 259 APInt RHS = RHSC->getValue().zextOrSelf(Offset.getBitWidth()); in GetLinearExpression() 349 Offset = Offset.trunc(SmallWidth).sext(NewWidth).zextOrSelf(OldWidth); in GetLinearExpression()
|
D | MemoryBuiltins.cpp | 603 APInt MaxSize = Arg->getValue().zextOrSelf(IntTyBits); in visitCallSite()
|
D | ConstantFolding.cpp | 86 Result |= ElementCI->getValue().zextOrSelf(Result.getBitWidth()); in foldConstVectorToAPInt()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/ |
D | HexagonConstPropagation.cpp | 1209 const APInt Zx1 = A1.zextOrSelf(MaxW); in evaluateCMPii() 1210 const APInt Zx2 = A2.zextOrSelf(MaxW); in evaluateCMPii() 1805 APInt LoBits = (Bits < BW) ? A1.trunc(Bits) : A1.zextOrSelf(Bits); in evaluateSplati() 2530 APInt HV = HiVs[i].zextOrSelf(64) << 32; in evaluateHexRSEQ32() 2532 APInt LV = LoVs[j].zextOrSelf(64); in evaluateHexRSEQ32()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | APInt.h | 1376 APInt zextOrSelf(unsigned width) const;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/ |
D | LoadStoreVectorizer.cpp | 401 APInt IdxDiff = PtrDelta.udiv(Stride).zextOrSelf(IdxBitWidth); in lookThroughComplexAddresses()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | APInt.cpp | 524 APInt Val = V.zextOrSelf(NewLen); in getSplat() 898 APInt APInt::zextOrSelf(unsigned width) const { in zextOrSelf() function in APInt
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineLoadStoreAlloca.cpp | 664 if ((CS->getValue().zextOrSelf(128)*APInt(128, TypeSize)).ugt(MaxSize)) in isObjectSizeLessThanOrEq()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineLoadStoreAlloca.cpp | 843 if ((CS->getValue().zextOrSelf(128)*APInt(128, TypeSize)).ugt(MaxSize)) in isObjectSizeLessThanOrEq()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | AsmPrinter.cpp | 1919 APInt Value = CI->getValue().zextOrSelf(Size); in isRepeatedByteSequence()
|
/external/llvm/lib/Support/ |
D | APInt.cpp | 1037 APInt APInt::zextOrSelf(unsigned width) const { in zextOrSelf() function in APInt
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | APInt.cpp | 1015 APInt APInt::zextOrSelf(unsigned width) const { in zextOrSelf() function in APInt
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/ |
D | AsmPrinter.cpp | 2220 APInt Value = CI->getValue().zextOrSelf(Size); in isRepeatedByteSequence()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 2377 APInt DemandedSrc = DemandedElts.zextOrSelf(NumSrcElts).shl(Idx); in computeKnownBits() 3536 APInt DemandedSrc = DemandedElts.zextOrSelf(NumSrcElts).shl(Idx); in ComputeNumSignBits()
|
D | DAGCombiner.cpp | 825 LHS = LHS.zextOrSelf(Bits); in zeroExtendToMatch() 826 RHS = RHS.zextOrSelf(Bits); in zeroExtendToMatch()
|
/external/clang/lib/Sema/ |
D | SemaDecl.cpp | 14759 FlagBits = FlagBits.zextOrSelf(EVal.getBitWidth()) | EVal; in IsValueInFlagEnum()
|