Home
last modified time | relevance | path

Searched refs:UsedV (Results 1 – 5 of 5) sorted by relevance

/openbsd/src/gnu/llvm/llvm/lib/Analysis/
DMemoryLocation.cpp130 Value *UsedV = nullptr; in getForDest() local
137 if (!UsedV) { in getForDest()
139 UsedV = CB->getArgOperand(i); in getForDest()
144 if (UsedV != CB->getArgOperand(i)) in getForDest()
150 if (!UsedV) in getForDest()
157 return MemoryLocation::getBeforeOrAfter(UsedV, CB->getAAMetadata()); in getForDest()
/openbsd/src/gnu/llvm/llvm/lib/Object/
DIRSymtab.cpp142 SmallVector<GlobalValue *, 4> UsedV; in addModule() local
143 collectUsedGlobalVariables(*M, UsedV, /*CompilerUsed=*/false); in addModule()
144 collectUsedGlobalVariables(*M, UsedV, /*CompilerUsed=*/true); in addModule()
145 SmallPtrSet<GlobalValue *, 4> Used(UsedV.begin(), UsedV.end()); in addModule()
/openbsd/src/gnu/llvm/llvm/lib/Transforms/IPO/
DMergeFunctions.cpp414 SmallVector<GlobalValue *, 4> UsedV; in runOnModule() local
415 collectUsedGlobalVariables(M, UsedV, /*CompilerUsed=*/false); in runOnModule()
416 collectUsedGlobalVariables(M, UsedV, /*CompilerUsed=*/true); in runOnModule()
417 Used.insert(UsedV.begin(), UsedV.end()); in runOnModule()
DGlobalOpt.cpp2174 GlobalVariable *UsedV; member in __anona4c74ee50511::LLVMUsed
2180 UsedV = collectUsedGlobalVariables(M, Vec, false); in LLVMUsed()
2219 if (UsedV) in syncVariablesAndSets()
2220 setUsedInitializer(*UsedV, Used); in syncVariablesAndSets()
/openbsd/src/gnu/llvm/llvm/lib/Transforms/InstCombine/
DInstructionCombining.cpp2725 static bool isRemovableWrite(CallBase &CB, Value *UsedV, in isRemovableWrite() argument
2742 return Dest && Dest->Ptr == UsedV; in isRemovableWrite()