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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp1557 unsigned DstBitSize;
1576 DstBitSize = DstTy->getScalarSizeInBits();
1577 DstNum = (SrcNum * SrcBitSize) / DstBitSize;
1580 DstBitSize = DstTy->getPrimitiveSizeInBits();
1584 if (SrcNum * SrcBitSize != DstNum * DstBitSize)
1614 Elt.IntVal = Elt.IntVal.zext(DstBitSize);
1620 Tmp = Tmp.zext(DstBitSize);
1631 unsigned ShiftAmt = isLittleEndian ? 0 : DstBitSize * (Ratio - 1);
1637 // it could be DstBitSize == SrcBitSize, so check it
1638 if (DstBitSize < SrcBitSiz
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp242 unsigned DstBitSize = DL.getTypeSizeInBits(DstEltTy); local
261 unsigned ShiftAmt = isLittleEndian ? 0 : DstBitSize*(Ratio-1);
267 ShiftAmt += isLittleEndian ? DstBitSize : -DstBitSize;
272 IntegerType *DstIntTy = Type::getIntNTy(C->getContext(), DstBitSize);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp3190 unsigned DstBitSize = DstTy->getScalarSizeInBits(); local
3205 SrcLength == DstLength && SrcBitSize > DstBitSize;
3208 SrcLength == DstLength && SrcBitSize < DstBitSize;
3211 SrcLength == DstLength && SrcBitSize < DstBitSize;
3214 SrcLength == DstLength && SrcBitSize > DstBitSize;
3217 SrcLength == DstLength && SrcBitSize < DstBitSize;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp11409 unsigned DstBitSize = DstEltVT.getSizeInBits(); local
11413 if (SrcBitSize == DstBitSize) {
11454 if (SrcBitSize < DstBitSize) {
11455 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
11461 APInt NewBits = APInt(DstBitSize, 0);
11471 zextOrTrunc(SrcBitSize).zext(DstBitSize);
11486 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
11501 APInt ThisVal = OpVal.trunc(DstBitSize);
11503 OpVal.lshrInPlace(DstBitSize);

Completed in 279 milliseconds