Home
last modified time | relevance | path

Searched refs:zextOrSelf (Results 1 – 23 of 23) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
DFloat2Int.cpp196 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/
DConstantRange.cpp298 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/
DMemoryBuiltins.cpp461 Size *= C->getValue().zextOrSelf(IntTyBits); in visitAllocaInst()
497 APInt MaxSize = Arg->getValue().zextOrSelf(IntTyBits); in visitCallSite()
DBasicAliasAnalysis.cpp201 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()
DConstantFolding.cpp98 Result |= ElementCI->getValue().zextOrSelf(IT->getBitWidth()); in FoldBitCast()
/external/llvm/include/llvm/ADT/
DAPInt.h549 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/
DAPInt.h553 APInt Val = V.zextOrSelf(NewLen); in getSplat()
1196 APInt zextOrSelf(unsigned width) const;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DBasicAliasAnalysis.cpp249 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()
DMemoryBuiltins.cpp603 APInt MaxSize = Arg->getValue().zextOrSelf(IntTyBits); in visitCallSite()
DConstantFolding.cpp86 Result |= ElementCI->getValue().zextOrSelf(Result.getBitWidth()); in foldConstVectorToAPInt()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonConstPropagation.cpp1209 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/
DAPInt.h1376 APInt zextOrSelf(unsigned width) const;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/
DLoadStoreVectorizer.cpp401 APInt IdxDiff = PtrDelta.udiv(Stride).zextOrSelf(IdxBitWidth); in lookThroughComplexAddresses()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DAPInt.cpp524 APInt Val = V.zextOrSelf(NewLen); in getSplat()
898 APInt APInt::zextOrSelf(unsigned width) const { in zextOrSelf() function in APInt
/external/llvm/lib/Transforms/InstCombine/
DInstCombineLoadStoreAlloca.cpp664 if ((CS->getValue().zextOrSelf(128)*APInt(128, TypeSize)).ugt(MaxSize)) in isObjectSizeLessThanOrEq()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
DInstCombineLoadStoreAlloca.cpp843 if ((CS->getValue().zextOrSelf(128)*APInt(128, TypeSize)).ugt(MaxSize)) in isObjectSizeLessThanOrEq()
/external/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp1919 APInt Value = CI->getValue().zextOrSelf(Size); in isRepeatedByteSequence()
/external/llvm/lib/Support/
DAPInt.cpp1037 APInt APInt::zextOrSelf(unsigned width) const { in zextOrSelf() function in APInt
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DAPInt.cpp1015 APInt APInt::zextOrSelf(unsigned width) const { in zextOrSelf() function in APInt
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp2220 APInt Value = CI->getValue().zextOrSelf(Size); in isRepeatedByteSequence()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp2377 APInt DemandedSrc = DemandedElts.zextOrSelf(NumSrcElts).shl(Idx); in computeKnownBits()
3536 APInt DemandedSrc = DemandedElts.zextOrSelf(NumSrcElts).shl(Idx); in ComputeNumSignBits()
DDAGCombiner.cpp825 LHS = LHS.zextOrSelf(Bits); in zeroExtendToMatch()
826 RHS = RHS.zextOrSelf(Bits); in zeroExtendToMatch()
/external/clang/lib/Sema/
DSemaDecl.cpp14759 FlagBits = FlagBits.zextOrSelf(EVal.getBitWidth()) | EVal; in IsValueInFlagEnum()