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

  /external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp 381 unsigned SrcSize = TrOp->getType()->getScalarSizeInBits();
383 APInt MaskV(APInt::getLowBitsSet(SrcSize, DstSize));
    [all...]
InstCombineCasts.cpp     [all...]
InstructionCombining.cpp     [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 620 uint64_t SrcSize =
628 LinkFromSrc = SrcSize > DstSize;
630 if (SrcSize != DstSize)
    [all...]
  /external/llvm/lib/IR/
Instructions.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp 720 uint64_t SrcSize = DL.getTypeSizeInBits(Val->getType());
723 if (SrcSize > DstSize) {
724 Val = CGF.Builder.CreateLShr(Val, SrcSize - DstSize, "coerce.highbits");
728 Val = CGF.Builder.CreateShl(Val, DstSize - SrcSize, "coerce.highbits");
766 uint64_t SrcSize = CGF.CGM.getDataLayout().getTypeAllocSize(SrcTy);
777 if (SrcSize >= DstSize) {
778 // Generally SrcSize is never greater than DstSize, since this means we are
800 llvm::ConstantInt::get(CGF.IntPtrTy, SrcSize),
    [all...]
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp 450 unsigned SrcSize = DL->getTypeSizeInBits(Src->getScalarType());
453 return SrcSize == 32 && DestSize == 64;
    [all...]

Completed in 788 milliseconds