HomeSort by relevance Sort by last modified time
    Searched defs:DstSize (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 382 unsigned DstSize = TI->getType()->getScalarSizeInBits();
383 APInt MaskV(APInt::getLowBitsSet(SrcSize, DstSize));
    [all...]
InstCombineCasts.cpp     [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 618 uint64_t DstSize =
628 LinkFromSrc = SrcSize > DstSize;
630 if (SrcSize != DstSize)
    [all...]
  /external/llvm/lib/IR/
Instructions.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp 659 /// with an in-memory size smaller than DstSize.
663 uint64_t DstSize, CodeGenFunction &CGF) {
673 if (FirstEltSize < DstSize &&
684 return EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF);
721 uint64_t DstSize = DL.getTypeSizeInBits(DestIntTy);
723 if (SrcSize > DstSize) {
724 Val = CGF.Builder.CreateLShr(Val, SrcSize - DstSize, "coerce.highbits");
728 Val = CGF.Builder.CreateShl(Val, DstSize - SrcSize, "coerce.highbits");
759 uint64_t DstSize = CGF.CGM.getDataLayout().getTypeAllocSize(Ty);
762 SrcPtr = EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF)
    [all...]
CGBuiltin.cpp 644 llvm::APSInt Size, DstSize;
646 !E->getArg(3)->EvaluateAsInt(DstSize, CGM.getContext()))
648 if (Size.ugt(DstSize))
671 llvm::APSInt Size, DstSize;
673 !E->getArg(3)->EvaluateAsInt(DstSize, CGM.getContext()))
675 if (Size.ugt(DstSize))
710 llvm::APSInt Size, DstSize;
712 !E->getArg(3)->EvaluateAsInt(DstSize, CGM.getContext()))
714 if (Size.ugt(DstSize))
    [all...]

Completed in 234 milliseconds