Searched refs:DstBitSize (Results 1 - 4 of 4) sorted by relevance

/freebsd-9.3-release/contrib/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp1503 unsigned DstBitSize;
1522 DstBitSize = DstTy->getScalarSizeInBits();
1523 DstNum = (SrcNum * SrcBitSize) / DstBitSize;
1526 DstBitSize = DstTy->getPrimitiveSizeInBits();
1530 if (SrcNum * SrcBitSize != DstNum * DstBitSize)
1560 Elt.IntVal = Elt.IntVal.zext(DstBitSize);
1566 Tmp = Tmp.zext(DstBitSize);
1577 unsigned ShiftAmt = isLittleEndian ? 0 : DstBitSize * (Ratio - 1);
1583 // it could be DstBitSize == SrcBitSize, so check it
1584 if (DstBitSize < SrcBitSiz
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Analysis/
H A DConstantFolding.cpp195 unsigned DstBitSize = DstEltTy->getPrimitiveSizeInBits(); local
203 unsigned ShiftAmt = isLittleEndian ? 0 : DstBitSize*(Ratio-1);
209 ShiftAmt += isLittleEndian ? DstBitSize : -DstBitSize;
/freebsd-9.3-release/contrib/llvm/lib/IR/
H A DInstructions.cpp2768 unsigned DstBitSize = DstTy->getScalarSizeInBits(); local
2783 SrcLength == DstLength && SrcBitSize > DstBitSize;
2786 SrcLength == DstLength && SrcBitSize < DstBitSize;
2789 SrcLength == DstLength && SrcBitSize < DstBitSize;
2792 SrcLength == DstLength && SrcBitSize > DstBitSize;
2795 SrcLength == DstLength && SrcBitSize < DstBitSize;
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp5850 unsigned DstBitSize = DstEltVT.getSizeInBits(); local
5854 if (SrcBitSize == DstBitSize) {
5906 if (SrcBitSize < DstBitSize) {
5907 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
5913 APInt NewBits = APInt(DstBitSize, 0);
5923 zextOrTrunc(SrcBitSize).zext(DstBitSize);
5940 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
5956 APInt ThisVal = OpVal.trunc(DstBitSize);
5962 OpVal = OpVal.lshr(DstBitSize);

Completed in 210 milliseconds