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

  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 806 unsigned DstSize = CI.getType()->getScalarSizeInBits();
808 // SrcSize < DstSize: zext(a & mask)
809 // SrcSize == DstSize: a & mask
810 // SrcSize > DstSize: trunc(a) & mas
    [all...]
InstCombineShifts.cpp 378 unsigned DstSize = TI->getType()->getScalarSizeInBits();
379 APInt MaskV(APInt::getLowBitsSet(SrcSize, DstSize));
  /external/clang/lib/CodeGen/
CGCall.cpp 382 /// with an in-memory size smaller than DstSize.
386 uint64_t DstSize, CodeGenFunction &CGF) {
396 if (FirstEltSize < DstSize &&
407 return EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF);
460 uint64_t DstSize = CGF.CGM.getTargetData().getTypeAllocSize(Ty);
463 SrcPtr = EnterStructPointerForCoercedAccess(SrcPtr, SrcSTy, DstSize, CGF);
478 if (SrcSize >= DstSize) {
479 // Generally SrcSize is never greater than DstSize, since this means we are
561 uint64_t DstSize = CGF.CGM.getTargetData().getTypeAllocSize(DstTy);
564 if (SrcSize <= DstSize) {
    [all...]
CGBuiltin.cpp 551 llvm::APSInt Size, DstSize;
553 !E->getArg(3)->EvaluateAsInt(DstSize, CGM.getContext()))
555 if (Size.ugt(DstSize))
575 llvm::APSInt Size, DstSize;
577 !E->getArg(3)->EvaluateAsInt(DstSize, CGM.getContext()))
579 if (Size.ugt(DstSize))
607 llvm::APSInt Size, DstSize;
609 !E->getArg(3)->EvaluateAsInt(DstSize, CGM.getContext()))
611 if (Size.ugt(DstSize))
    [all...]
  /external/llvm/lib/CodeGen/
RegisterCoalescer.cpp     [all...]
  /external/llvm/lib/VMCore/
Instructions.cpp     [all...]

Completed in 104 milliseconds