Searched refs:UsedV (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A 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()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCMergeStringPool.cpp | 156 SmallVector<GlobalValue *, 4> UsedV; in collectCandidateConstants() local 157 collectUsedGlobalVariables(M, UsedV, /*CompilerUsed=*/false); in collectCandidateConstants() 163 AllUsedGlobals.insert(UsedV.begin(), UsedV.end()); in collectCandidateConstants()
|
/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(UsedV.begin(), UsedV.end()); in addModule()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | MergeFunctions.cpp | 416 SmallVector<GlobalValue *, 4> UsedV; in runOnModule() local 417 collectUsedGlobalVariables(M, UsedV, /*CompilerUsed=*/false); in runOnModule() 418 collectUsedGlobalVariables(M, UsedV, /*CompilerUsed=*/true); in runOnModule() 419 Used.insert(UsedV.begin(), UsedV.end()); in runOnModule()
|
H A D | GlobalOpt.cpp | 2148 GlobalVariable *UsedV; member in __anon969487690711::LLVMUsed 2154 UsedV = collectUsedGlobalVariables(M, Vec, false); in LLVMUsed() 2193 if (UsedV) in syncVariablesAndSets() 2194 setUsedInitializer(*UsedV, Used); in syncVariablesAndSets()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstructionCombining.cpp | 3092 static bool isRemovableWrite(CallBase &CB, Value *UsedV, in isRemovableWrite() argument 3109 return Dest && Dest->Ptr == UsedV; in isRemovableWrite()
|