Home
last modified time | relevance | path

Searched refs:DstElemTy (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/
H A DDXILLegalizePass.cpp372 Type *DstElemTy = DstArrTy->getElementType(); in emitMemcpyExpansion() local
373 uint64_t DstElemByteSize = DL.getTypeStoreSize(DstElemTy); in emitMemcpyExpansion()
381 assert(DstElemTy == SrcElemTy && in emitMemcpyExpansion()
398 Value *DstPtr = Builder.CreateInBoundsGEP(DstElemTy, Dst, Offset, "gep"); in emitMemcpyExpansion()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp1515 Type *DstElemTy; in executeBitCastInst() local
1535 DstElemTy = DstTy->getScalarType(); in executeBitCastInst()
1539 DstElemTy = DstTy; in executeBitCastInst()
1608 if (DstElemTy->isDoubleTy()) { in executeBitCastInst()
1613 } else if (DstElemTy->isFloatTy()) { in executeBitCastInst()
1622 if (DstElemTy->isDoubleTy()) in executeBitCastInst()
1624 else if (DstElemTy->isFloatTy()) { in executeBitCastInst()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DMachineIRBuilder.cpp787 const LLT DstElemTy = DstTy.isVector() ? DstTy.getElementType() : DstTy; in buildShuffleVector() local
790 assert(DstElemTy == ElemTy1 && DstElemTy == ElemTy2); in buildShuffleVector()
791 (void)DstElemTy; in buildShuffleVector()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanRecipes.cpp3350 Type *DstElemTy = DstVTy->getElementType(); in createBitOrPointerCast() local
3351 assert((DL.getTypeSizeInBits(SrcElemTy) == DL.getTypeSizeInBits(DstElemTy)) && in createBitOrPointerCast()
3355 if (CastInst::isBitOrNoopPointerCastable(SrcElemTy, DstElemTy, DL)) { in createBitOrPointerCast()
3362 assert((DstElemTy->isPointerTy() != SrcElemTy->isPointerTy()) && in createBitOrPointerCast()
3364 assert((DstElemTy->isFloatingPointTy() != SrcElemTy->isFloatingPointTy()) && in createBitOrPointerCast()