HomeSort by relevance Sort by last modified time
    Searched refs:SrcSize (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 796 unsigned SrcSize = A->getType()->getScalarSizeInBits();
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));
    [all...]
InstCombineShifts.cpp 378 unsigned SrcSize = TrOp->getType()->getScalarSizeInBits();
380 APInt MaskV(APInt::getLowBitsSet(SrcSize, DstSize));
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp 663 uint64_t SrcSize = CGF.CGM.getTargetData().getTypeAllocSize(SrcTy);
674 if (SrcSize >= DstSize) {
675 // Generally SrcSize is never greater than DstSize, since this means we are
743 uint64_t SrcSize = CGF.CGM.getTargetData().getTypeAllocSize(SrcTy);
746 DstPtr = EnterStructPointerForCoercedAccess(DstPtr, DstSTy, SrcSize, CGF);
762 if (SrcSize <= DstSize) {
771 // Generally SrcSize is never greater than DstSize, since this means we are
    [all...]
  /external/llvm/lib/VMCore/
Instructions.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp     [all...]

Completed in 188 milliseconds