Home
last modified time | relevance | path

Searched refs:getDest (Results 1 – 20 of 20) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/
H A DModuleDependencyCollector.cpp116 StringRef VFSDir = getDest(); in writeFileMap()
147 SmallString<256> CacheDst = getDest(); in copyToRoot()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86LoadValueInjectionLoadHardening.cpp548 const Node *Dest = E.getDest(); in elimMitigatedEdgesAndNodes()
572 const Node *Dest = E.getDest(); in elimMitigatedEdgesAndNodes()
583 if (ReachableNodes.contains(*E.getDest())) { in elimMitigatedEdgesAndNodes()
635 Edges[Graph->getEdgeIndex(E)] = Graph->getNodeIndex(*E.getDest()); in hardenLoadsWithPlugin()
677 IngressEdgeMap[E.getDest()].push_back(&E); in hardenLoadsWithHeuristic()
693 SmallVector<const Edge *, 2> &IngressEdges = IngressEdgeMap[E.getDest()]; in hardenLoadsWithHeuristic()
H A DImmutableGraph.h55 const Node *getDest() const { return Dest; }; in getDest() function
384 size_type DestIdx = G.getNodeIndex(*E.getDest()); in trim()
410 static NodeRef edge_dest(EdgeRef E) { return E.getDest(); }
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp186 addRange(OffsetFromFirst, Size, MSI->getDest(), MSI->getDestAlign(), MSI); in addMemSet()
436 MSI->getDest()->getPointerOffsetFrom(StartPtr, DL); in tryMergingIntoMemset()
839 if (Instruction *I = tryMergingIntoMemset(MSI, MSI->getDest(), in processMemSet()
1126 if (M->getSource() != MDep->getDest() || MDep->isVolatile()) in processMemCpyMemCpyDependence()
1235 if (!BAA.isMustAlias(MemSet->getDest(), MemCpy->getDest())) in processMemSetMemCpyDependence()
1661 if (M->getSource() == M->getDest()) { in processMemCpy()
1730 if (performCallSlotOptzn(M, M, M->getDest(), M->getSource(), in processMemCpy()
1767 auto *DestAlloca = dyn_cast<AllocaInst>(M->getDest()); in processMemCpy()
1834 ByValArg->stripPointerCasts() != MDep->getDest()) in processByValArgument()
1929 if (!MDep || MDep->isVolatile() || AI != MDep->getDest()) in processImmutArgument()
H A DAlignmentFromAssumptions.cpp238 getNewAlignment(AASCEV, AlignSCEV, OffSCEV, MI->getDest(), SE); in processAssumption()
H A DLoopIdiomRecognize.cpp763 Value *Dest = MCI->getDest(); in processLoopMemCpy()
832 Value *Pointer = MSI->getDest(); in processLoopMemSet()
H A DSROA.cpp3339 if (llvm::is_contained(DbgAssign->location_ops(), II.getDest()) || in visitMemTransferInst()
3340 DbgAssign->getAddress() == II.getDest()) in visitMemTransferInst()
3341 DbgAssign->replaceVariableLocationOp(II.getDest(), AdjustedPtr); in visitMemTransferInst()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Frontend/
H A DUtils.h150 StringRef getDest() { return DestDir; } in getDest() function
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DVNCoercion.cpp262 return analyzeLoadFromClobberingWrite(LoadTy, LoadPtr, MI->getDest(), in analyzeLoadFromClobberingMemInst()
280 int Offset = analyzeLoadFromClobberingWrite(LoadTy, LoadPtr, MI->getDest(), in analyzeLoadFromClobberingMemInst()
H A DEvaluator.cpp405 Constant *Ptr = getVal(MSI->getDest()); in EvaluateBlock()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DLint.cpp304 Check(AA->alias(MCI->getSource(), Size, MCI->getDest(), Size) != in visitCallBase()
321 Check(AA->alias(MCII->getSource(), LS, MCII->getDest(), LS) != in visitCallBase()
H A DLoads.cpp554 Value *Dst = MSI->getDest(); in getAvailableLoadStore()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsicInst.h935 Value *getDest() const { return getRawDest()->stripPointerCasts(); } in getDest() function
1423 Value *getDest() const { return const_cast<Value *>(getArgOperand(0)); } in getDest() function
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64StackTagging.cpp399 MSI->getDest()->getPointerOffsetFrom(StartPtr, *DL); in collectInitializers()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLiveInterval.h975 LiveRange *getDest() const { return LR; } in getDest() function
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp133 if (!isModSet(AA->getModRefInfoMask(MI->getDest()))) { in SimplifyAnyMemTransfer()
232 getKnownAlignment(MI->getDest(), DL, MI, &AC, &DT); in SimplifyAnyMemSet()
242 if (!isModSet(AA->getModRefInfoMask(MI->getDest()))) { in SimplifyAnyMemSet()
278 Value *Dest = MI->getDest(); in SimplifyAnyMemSet()
1511 if (MTI->getSource() == MTI->getDest()) in visitCallInst()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DHWAddressSanitizer.cpp1004 return (!ClInstrumentWrites || ignoreAccess(MTI, MTI->getDest())) && in ignoreMemIntrinsic()
1008 return !ClInstrumentWrites || ignoreAccess(MI, MI->getDest()); in ignoreMemIntrinsic()
H A DDataFlowSanitizer.cpp2913 {ValShadow, ValOrigin, I.getDest(), in visitMemSetInst()
2929 Value *DestShadow = DFSF.DFS.getShadowAddress(I.getDest(), &I); in visitMemTransferInst()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPromoteAlloca.cpp777 Value *Dest = TransferInst->getDest(); in tryPromoteAllocaToVector()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp2397 Align DestAlign = getKnownAlignment(MI->getDest(), *DL); in optimizeCallInst()