Home
last modified time | relevance | path

Searched refs:OldU (Results 1 – 4 of 4) sorted by relevance

/openbsd/src/gnu/llvm/llvm/lib/Transforms/IPO/
DAttributorAttributes.cpp1811 auto EquivalentUseCB = [&](const Use &OldU, const Use &NewU) { in updateImpl() argument
1812 assert(OffsetInfoMap.count(OldU) && "Old use should be known already!"); in updateImpl()
1815 if (!(OffsetInfoMap[NewU] == OffsetInfoMap[OldU])) { in updateImpl()
1817 << OffsetInfoMap[NewU] << " vs " << OffsetInfoMap[OldU] in updateImpl()
1821 return OffsetInfoMap[NewU] == OffsetInfoMap[OldU]; in updateImpl()
1823 OffsetInfoMap[NewU] = OffsetInfoMap[OldU]; in updateImpl()
5552 auto EquivalentUseCB = [&](const Use &OldU, const Use &NewU) { in updateImpl() argument
5553 if (auto *SI = dyn_cast<StoreInst>(OldU.getUser())) { in updateImpl()
DAttributor.cpp1555 function_ref<bool(const Use &OldU, const Use &NewU)> EquivalentUseCB) { in checkForAllUses() argument
/openbsd/src/gnu/llvm/llvm/lib/Analysis/
DConstantFolding.cpp1128 for (const Use &OldU : C->operands()) { in ConstantFoldConstantImpl() local
1129 Constant *OldC = cast<Constant>(&OldU); in ConstantFoldConstantImpl()
/openbsd/src/gnu/llvm/llvm/include/llvm/Transforms/IPO/
DAttributor.h1971 function_ref<bool(const Use &OldU, const Use &NewU)>