Searched refs:UsedV (Results 1 – 5 of 5) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | MemoryLocation.cpp | 123 Value *UsedV = nullptr; in getForDest() local 130 if (!UsedV) { in getForDest() 132 UsedV = CB->getArgOperand(i); in getForDest() 137 if (UsedV != CB->getArgOperand(i)) in getForDest() 143 if (!UsedV) in getForDest() 150 return MemoryLocation::getBeforeOrAfter(UsedV, CB->getAAMetadata()); in getForDest()
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | IRSymtab.cpp | 140 SmallVector<GlobalValue *, 4> UsedV; in addModule() local 141 collectUsedGlobalVariables(*M, UsedV, /*CompilerUsed=*/false); in addModule() 142 collectUsedGlobalVariables(*M, UsedV, /*CompilerUsed=*/true); in addModule() 143 SmallPtrSet<GlobalValue *, 4> Used(llvm::from_range, UsedV); in addModule()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | MergeFunctions.cpp | 320 SmallVector<GlobalValue *, 4> UsedV; in runOnModule() local 321 collectUsedGlobalVariables(M, UsedV, /*CompilerUsed=*/false); in runOnModule() 322 collectUsedGlobalVariables(M, UsedV, /*CompilerUsed=*/true); in runOnModule() 323 MF.getUsed().insert_range(UsedV); in runOnModule()
|
| H A D | GlobalOpt.cpp | 2150 GlobalVariable *UsedV; member in __anon969487690711::LLVMUsed 2156 UsedV = collectUsedGlobalVariables(M, Vec, false); in LLVMUsed() 2195 if (UsedV) in syncVariablesAndSets() 2196 setUsedInitializer(*UsedV, Used); in syncVariablesAndSets()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstructionCombining.cpp | 3388 static bool isRemovableWrite(CallBase &CB, Value *UsedV, in isRemovableWrite() argument 3405 return Dest && Dest->Ptr == UsedV; in isRemovableWrite()
|