Searched refs:cpyDest (Results 1 - 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp561 Value *cpyDest, Value *cpySrc,
602 if (AllocaInst *A = dyn_cast<AllocaInst>(cpyDest)) {
613 } else if (Argument *A = dyn_cast<Argument>(cpyDest)) {
656 if (Instruction *cpyDestInst = dyn_cast<Instruction>(cpyDest))
665 if (AA.getModRefInfo(C, cpyDest, srcSize) != AliasAnalysis::NoModRef)
672 if (cpySrc->getType() != cpyDest->getType())
673 cpyDest = CastInst::CreatePointerCast(cpyDest, cpySrc->getType(),
674 cpyDest->getName(), C);
676 if (CS.getArgument(i)->getType() == cpyDest
560 performCallSlotOptzn(Instruction *cpy, Value *cpyDest, Value *cpySrc, uint64_t cpyLen, CallInst *C) argument
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp764 bool MemCpyOptPass::performCallSlotOptzn(Instruction *cpy, Value *cpyDest, argument
809 if (AllocaInst *A = dyn_cast<AllocaInst>(cpyDest)) {
820 } else if (Argument *A = dyn_cast<Argument>(cpyDest)) {
854 if (!isDestSufficientlyAligned && !isa<AllocaInst>(cpyDest))
897 if (Instruction *cpyDestInst = dyn_cast<Instruction>(cpyDest))
906 ModRefInfo MR = AA.getModRefInfo(C, cpyDest, srcSize);
909 MR = AA.callCapturesBefore(C, cpyDest, srcSize, &DT);
917 Value *Dest = cpySrc->getType() == cpyDest->getType() ? cpyDest
918 : CastInst::CreatePointerCast(cpyDest, cpySr
[all...]

Completed in 198 milliseconds