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

/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp796 unsigned SrcSize = A->getType()->getScalarSizeInBits(); local
800 // SrcSize < DstSize: zext(a & mask)
801 // SrcSize == DstSize: a & mask
802 // SrcSize > DstSize: trunc(a) & mask
803 if (SrcSize < DstSize) {
804 APInt AndValue(APInt::getLowBitsSet(SrcSize, MidSize));
810 if (SrcSize == DstSize) {
811 APInt AndValue(APInt::getLowBitsSet(SrcSize, MidSize));
815 if (SrcSize > DstSize) {
H A DInstCombineShifts.cpp378 unsigned SrcSize = TrOp->getType()->getScalarSizeInBits(); local
380 APInt MaskV(APInt::getLowBitsSet(SrcSize, DstSize));
/macosx-10.10/llvmCore-3425.0.34/lib/VMCore/
H A DInstructions.cpp2230 unsigned SrcSize = SrcTy->getScalarSizeInBits(); local
2232 if (SrcSize == DstSize)
2234 else if (SrcSize < DstSize)
2258 // inttoptr, ptrtoint -> bitcast if SrcSize<=PtrSize and SrcSize==DstSize
2262 unsigned SrcSize = SrcTy->getScalarSizeInBits(); local
2264 if (SrcSize <= PtrSize && SrcSize == DstSize)
/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1694 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
1704 if (SrcSize > SlotSize)
1708 assert(SrcSize == SlotSize && "Invalid store");

Completed in 187 milliseconds