Home
last modified time | relevance | path

Searched refs:CurUser (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXLowerArgs.cpp278 for (User *CurUser : Ctx.InitialVal->users()) { in adjustByValArgAlignment()
279 if (auto *I = dyn_cast<LoadInst>(CurUser)) { in adjustByValArgAlignment()
284 if (auto *I = dyn_cast<BitCastInst>(CurUser)) { in adjustByValArgAlignment()
289 if (auto *I = dyn_cast<GetElementPtrInst>(CurUser)) { in adjustByValArgAlignment()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInferAddressSpaces.cpp1121 User *CurUser = I->getUser(); in skipToNextUser() local
1124 while (I != End && I->getUser() == CurUser) in skipToNextUser()
1238 User *CurUser = U.getUser(); in rewriteWithNewAddressSpaces() local
1240 if (CurUser == NewV) in rewriteWithNewAddressSpaces()
1243 if (auto *CurUserI = dyn_cast<Instruction>(CurUser); in rewriteWithNewAddressSpaces()
1248 if (auto *MI = dyn_cast<MemIntrinsic>(CurUser)) { in rewriteWithNewAddressSpaces()
1253 if (auto *II = dyn_cast<IntrinsicInst>(CurUser)) { in rewriteWithNewAddressSpaces()
1258 if (isa<Instruction>(CurUser)) { in rewriteWithNewAddressSpaces()
1259 if (ICmpInst *Cmp = dyn_cast<ICmpInst>(CurUser)) { in rewriteWithNewAddressSpaces()
1290 if (AddrSpaceCastInst *ASC = dyn_cast<AddrSpaceCastInst>(CurUser)) { in rewriteWithNewAddressSpaces()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp95 static bool findRefEdges(ModuleSummaryIndex &Index, const User *CurUser, in findRefEdges() argument
100 if (Visited.insert(CurUser).second) in findRefEdges()
101 Worklist.push_back(CurUser); in findRefEdges()