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

  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 747 Type* DstTy = cast<PointerType>(CI->getType())->getElementType();
748 if (!SrcTy->isSized() || !DstTy->isSized())
750 if (!TD || TD->getTypeAllocSize(SrcTy) != TD->getTypeAllocSize(DstTy))
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp 736 llvm::Type *DstTy =
738 if (SrcTy == DstTy) {
745 if (llvm::StructType *DstSTy = dyn_cast<llvm::StructType>(DstTy)) {
747 DstTy = cast<llvm::PointerType>(DstPtr->getType())->getElementType();
753 (isa<llvm::IntegerType>(DstTy) || isa<llvm::PointerType>(DstTy))) {
754 Src = CoerceIntOrPtrToIntOrPtr(Src, DstTy, CGF);
759 uint64_t DstSize = CGF.CGM.getTargetData().getTypeAllocSize(DstTy);
780 CGF.Builder.CreateBitCast(Tmp, llvm::PointerType::getUnqual(DstTy));
    [all...]
CGExprScalar.cpp 100 Value *EmitConversionToBool(Value *Src, QualType DstTy);
104 Value *EmitScalarConversion(Value *Src, QualType SrcTy, QualType DstTy);
110 QualType SrcTy, QualType DstTy);
562 llvm::Type *DstTy = ConvertType(DstType);
565 if (SrcTy == DstTy)
571 if (isa<llvm::PointerType>(DstTy)) {
574 return Builder.CreateBitCast(Src, DstTy, "conv");
584 return Builder.CreateIntToPtr(IntResult, DstTy, "conv");
589 assert(isa<llvm::IntegerType>(DstTy) && "not ptr->int?");
590 return Builder.CreatePtrToInt(Src, DstTy, "conv")
    [all...]
  /external/llvm/lib/VMCore/
Instructions.cpp     [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
SemaExpr.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 356 milliseconds