Searched refs:UsedV (Results 1 – 5 of 5) sorted by relevance
| /openbsd/src/gnu/llvm/llvm/lib/Analysis/ |
| D | MemoryLocation.cpp | 130 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/ |
| D | IRSymtab.cpp | 142 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/ |
| D | MergeFunctions.cpp | 414 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()
|
| D | GlobalOpt.cpp | 2174 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/ |
| D | InstructionCombining.cpp | 2725 static bool isRemovableWrite(CallBase &CB, Value *UsedV, in isRemovableWrite() argument 2742 return Dest && Dest->Ptr == UsedV; in isRemovableWrite()
|