Searched defs:DstBitSize (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Analysis/
H A DConstantFolding.cpp154 unsigned DstBitSize = DstEltTy->getPrimitiveSizeInBits(); local
162 unsigned ShiftAmt = isLittleEndian ? 0 : DstBitSize*(Ratio-1);
168 ShiftAmt += isLittleEndian ? DstBitSize : -DstBitSize;
/external/llvm/lib/VMCore/
H A DInstructions.cpp2611 unsigned DstBitSize = DstTy->getScalarSizeInBits(); local
2626 SrcLength == DstLength && SrcBitSize > DstBitSize;
2629 SrcLength == DstLength && SrcBitSize < DstBitSize;
2632 SrcLength == DstLength && SrcBitSize < DstBitSize;
2635 SrcLength == DstLength && SrcBitSize > DstBitSize;
2638 SrcLength == DstLength && SrcBitSize < DstBitSize;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp5106 unsigned DstBitSize = DstEltVT.getSizeInBits(); local
5110 if (SrcBitSize == DstBitSize) {
5162 if (SrcBitSize < DstBitSize) {
5163 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
5169 APInt NewBits = APInt(DstBitSize, 0);
5179 zextOrTrunc(SrcBitSize).zext(DstBitSize);
5196 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
5212 APInt ThisVal = OpVal.trunc(DstBitSize);
5218 OpVal = OpVal.lshr(DstBitSize);

Completed in 48 milliseconds