Searched refs:SrcBitSize (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp1556 unsigned SrcBitSize;
1563 SrcBitSize = SrcTy->getScalarSizeInBits();
1569 SrcBitSize = SrcTy->getPrimitiveSizeInBits();
1577 DstNum = (SrcNum * SrcBitSize) / DstBitSize;
1584 if (SrcNum * SrcBitSize != DstNum * DstBitSize)
1615 unsigned ShiftAmt = isLittleEndian ? 0 : SrcBitSize * (Ratio - 1);
1618 Tmp = Tmp.zext(SrcBitSize);
1622 ShiftAmt += isLittleEndian ? SrcBitSize : -SrcBitSize;
1634 Elt.IntVal = Elt.IntVal.zext(SrcBitSize);
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp314 unsigned SrcBitSize = local
318 if (ByteStart*8 >= SrcBitSize)
323 if (ByteStart == 0 && ByteSize*8 == SrcBitSize)
328 if ((SrcBitSize&7) == 0 && (ByteStart+ByteSize)*8 <= SrcBitSize)
333 if ((ByteStart+ByteSize)*8 < SrcBitSize) {
334 assert((SrcBitSize&7) && "Shouldn't get byte sized case here");
H A DVerifier.cpp2574 unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); local
2581 Assert(SrcBitSize > DestBitSize, "DestTy too big for Trunc", &I);
2596 unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); local
2599 Assert(SrcBitSize < DestBitSize, "Type too small for ZExt", &I);
2610 unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); local
2617 Assert(SrcBitSize < DestBitSize, "Type too small for SExt", &I);
2627 unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); local
2634 Assert(SrcBitSize > DestBitSize, "DestTy too big for FPTrunc", &I);
2645 unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); local
2652 Assert(SrcBitSize < DestBitSiz
[all...]
H A DInstructions.cpp3189 unsigned SrcBitSize = SrcTy->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/Transforms/InstCombine/
H A DInstCombineCasts.cpp1391 uint32_t SrcBitSize = SrcTy->getScalarSizeInBits(); local
1396 if (ComputeNumSignBits(Res, 0, &CI) > DestBitSize - SrcBitSize)
1400 Value *ShAmt = ConstantInt::get(DestTy, DestBitSize-SrcBitSize);
1410 unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); local
1412 Constant *ShAmt = ConstantInt::get(DestTy, DestBitSize - SrcBitSize);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp209 unsigned SrcBitSize = SrcEltTy->getPrimitiveSizeInBits(); local
214 unsigned ShiftAmt = isLittleEndian ? 0 : SrcBitSize*(Ratio-1);
230 ShiftAmt += isLittleEndian ? SrcBitSize : -SrcBitSize;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp11408 unsigned SrcBitSize = SrcEltVT.getSizeInBits(); local
11413 if (SrcBitSize == DstBitSize) {
11454 if (SrcBitSize < DstBitSize) {
11455 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
11465 NewBits <<= SrcBitSize; local
11471 zextOrTrunc(SrcBitSize).zext(DstBitSize);
11486 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
11498 getAPIntValue().zextOrTrunc(SrcBitSize);

Completed in 213 milliseconds