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

/freebsd-10.0-release/contrib/llvm/lib/IR/
H A DVerifier.cpp1094 unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); local
1101 Assert1(SrcBitSize > DestBitSize,"DestTy too big for Trunc", &I);
1116 unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); local
1119 Assert1(SrcBitSize < DestBitSize,"Type too small for ZExt", &I);
1130 unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); local
1137 Assert1(SrcBitSize < DestBitSize,"Type too small for SExt", &I);
1147 unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); local
1154 Assert1(SrcBitSize > DestBitSize,"DestTy too big for FPTrunc", &I);
1165 unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); local
1172 Assert1(SrcBitSize < DestBitSiz
1317 unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits(); local
[all...]
H A DConstantFold.cpp296 unsigned SrcBitSize = local
300 if (ByteStart*8 >= SrcBitSize)
305 if (ByteStart == 0 && ByteSize*8 == SrcBitSize)
310 if ((SrcBitSize&7) == 0 && (ByteStart+ByteSize)*8 <= SrcBitSize)
315 if ((ByteStart+ByteSize)*8 < SrcBitSize) {
316 assert((SrcBitSize&7) && "Shouldn't get byte sized case here");
H A DInstructions.cpp2642 unsigned SrcBitSize = SrcTy->getScalarSizeInBits(); local
2658 SrcLength == DstLength && SrcBitSize > DstBitSize;
2661 SrcLength == DstLength && SrcBitSize < DstBitSize;
2664 SrcLength == DstLength && SrcBitSize < DstBitSize;
2667 SrcLength == DstLength && SrcBitSize > DstBitSize;
2670 SrcLength == DstLength && SrcBitSize < DstBitSize;
/freebsd-10.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1078 uint32_t SrcBitSize = SrcTy->getScalarSizeInBits(); local
1083 if (ComputeNumSignBits(Res) > DestBitSize - SrcBitSize)
1087 Value *ShAmt = ConstantInt::get(DestTy, DestBitSize-SrcBitSize);
1096 uint32_t SrcBitSize = SrcTy->getScalarSizeInBits(); local
1100 Value *ShAmt = ConstantInt::get(DestTy, DestBitSize-SrcBitSize);
/freebsd-10.0-release/contrib/llvm/lib/Analysis/
H A DConstantFolding.cpp166 unsigned SrcBitSize = SrcEltTy->getPrimitiveSizeInBits(); local
171 unsigned ShiftAmt = isLittleEndian ? 0 : SrcBitSize*(Ratio-1);
183 ShiftAmt += isLittleEndian ? SrcBitSize : -SrcBitSize;
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp5713 unsigned SrcBitSize = SrcEltVT.getSizeInBits(); local
5718 if (SrcBitSize == DstBitSize) {
5770 if (SrcBitSize < DstBitSize) {
5771 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
5781 NewBits <<= SrcBitSize; local
5787 zextOrTrunc(SrcBitSize).zext(DstBitSize);
5804 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
5817 getAPIntValue().zextOrTrunc(SrcBitSize);
5822 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)

Completed in 219 milliseconds