HomeSort by: relevance | last modified time | path
    Searched defs:SrcWidth (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
FixedPointBuilder.h 35 unsigned SrcWidth = SrcSema.getWidth();
45 unsigned ResultWidth = SrcWidth;
77 ResultWidth = std::max(SrcWidth + DstScale - SrcScale, DstWidth);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
APFixedPoint.cpp 418 unsigned SrcWidth = getWidth();
423 if (SrcWidth < DstWidth) {
425 } else if (SrcWidth > DstWidth) {
426 DstMin = DstMin.extend(SrcWidth);
427 DstMax = DstMax.extend(SrcWidth);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
ConstantFold.cpp 1290 unsigned SrcWidth =
1292 APInt PossiblySetBits(APInt::getLowBitsSet(DstWidth, SrcWidth));
1329 unsigned SrcWidth = std::min(DstWidth, Log2(*GVAlign));
1330 APInt BitsNotSet(APInt::getLowBitsSet(DstWidth, SrcWidth));
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 919 unsigned SrcWidth = X->getType()->getScalarSizeInBits();
920 if (ShAmt < SrcWidth &&
921 MaskedValueIsZero(X, APInt::getHighBitsSet(SrcWidth, ShAmt), 0, &I))
InstCombineVectorOps.cpp 239 unsigned SrcWidth = SrcTy->getScalarSizeInBits();
251 Type *SrcIntTy = IntegerType::getIntNTy(Scalar->getContext(), SrcWidth);
InstCombineCasts.cpp 734 unsigned SrcWidth = SrcTy->getScalarSizeInBits();
759 if (DestWidth * 2 < SrcWidth) {
805 Constant *One = ConstantInt::get(SrcTy, APInt(SrcWidth, 1));
813 Constant *One = ConstantInt::get(SrcTy, APInt(SrcWidth, 1));
825 unsigned MaxShiftAmt = SrcWidth - std::max(DestWidth, AWidth);
832 APInt(SrcWidth, MaxShiftAmt)))) {
857 unsigned MaxShiftAmt = SrcWidth - DestWidth;
862 APInt(SrcWidth, MaxShiftAmt)))) {
919 if (SrcWidth % DestWidth == 0) {
920 uint64_t TruncRatio = SrcWidth / DestWidth
    [all...]

Completed in 75 milliseconds