Searched refs:DstSize (Results 1 - 3 of 3) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp798 unsigned DstSize = CI.getType()->getScalarSizeInBits(); local
800 // SrcSize < DstSize: zext(a & mask)
801 // SrcSize == DstSize: a & mask
802 // SrcSize > DstSize: trunc(a) & mask
803 if (SrcSize < DstSize) {
810 if (SrcSize == DstSize) {
815 if (SrcSize > DstSize) {
817 APInt AndValue(APInt::getLowBitsSet(DstSize, MidSize));
1192 unsigned DstSize = CI.getType()->getScalarSizeInBits(); local
1195 if (LHSTrunc->getType()->getScalarSizeInBits() <= DstSize
[all...]
H A DInstCombineShifts.cpp379 unsigned DstSize = TI->getType()->getScalarSizeInBits(); local
380 APInt MaskV(APInt::getLowBitsSet(SrcSize, DstSize));
/macosx-10.9.5/llvmCore-3425.0.33/lib/VMCore/
H A DInstructions.cpp2231 unsigned DstSize = DstTy->getScalarSizeInBits(); local
2232 if (SrcSize == DstSize)
2234 else if (SrcSize < DstSize)
2258 // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
2263 unsigned DstSize = DstTy->getScalarSizeInBits(); local
2264 if (SrcSize <= PtrSize && SrcSize == DstSize)

Completed in 129 milliseconds