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

/external/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp580 Value *cpyDest, Value *cpySrc,
622 if (AllocaInst *A = dyn_cast<AllocaInst>(cpyDest)) {
633 } else if (Argument *A = dyn_cast<Argument>(cpyDest)) {
661 if (!isDestSufficientlyAligned && !isa<AllocaInst>(cpyDest))
690 if (Instruction *cpyDestInst = dyn_cast<Instruction>(cpyDest))
699 AliasAnalysis::ModRefResult MR = AA.getModRefInfo(C, cpyDest, srcSize);
702 MR = AA.callCapturesBefore(C, cpyDest, srcSize, &DT);
710 Value *Dest = cpySrc->getType() == cpyDest->getType() ? cpyDest
711 : CastInst::CreatePointerCast(cpyDest, cpySr
579 performCallSlotOptzn(Instruction *cpy, Value *cpyDest, Value *cpySrc, uint64_t cpyLen, unsigned cpyAlign, CallInst *C) argument
[all...]

Completed in 110 milliseconds