Home
last modified time | relevance | path

Searched refs:Usr (Results 1 – 17 of 17) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
DUser.cpp173 LLVM_NO_SANITIZE_MEMORY_ATTRIBUTE void User::operator delete(void *Usr) { in operator delete() argument
176 User *Obj = static_cast<User *>(Usr); in operator delete()
180 Use **HungOffOperandList = static_cast<Use **>(Usr) - 1; in operator delete()
186 Use *UseBegin = static_cast<Use *>(Usr) - Obj->NumUserOperands; in operator delete()
193 Use *Storage = static_cast<Use *>(Usr) - Obj->NumUserOperands; in operator delete()
DValue.cpp197 void Value::dropDroppableUsesIn(User &Usr) { in dropDroppableUsesIn() argument
198 assert(Usr.isDroppable() && "Expected a droppable user!"); in dropDroppableUsesIn()
199 for (Use &UsrOp : Usr.operands()) { in dropDroppableUsesIn()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
DUser.h100 void operator delete(void *Usr);
102 void operator delete(void *Usr, unsigned) { in delete() argument
107 User::operator delete(Usr); in delete()
114 void operator delete(void *Usr, unsigned, unsigned) { in delete() argument
119 User::operator delete(Usr); in delete()
DValue.h487 void dropDroppableUsesIn(User &Usr);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
DLazyValueInfo.cpp1238 static bool usesOperand(User *Usr, Value *Op) { in usesOperand() argument
1239 return is_contained(Usr->operands(), Op); in usesOperand()
1246 static bool isOperationFoldable(User *Usr) { in isOperationFoldable() argument
1247 return isa<CastInst>(Usr) || isa<BinaryOperator>(Usr) || isa<FreezeInst>(Usr); in isOperationFoldable()
1254 static ValueLatticeElement constantFoldUser(User *Usr, Value *Op, in constantFoldUser() argument
1257 assert(isOperationFoldable(Usr) && "Precondition"); in constantFoldUser()
1260 if (auto *CI = dyn_cast<CastInst>(Usr)) { in constantFoldUser()
1267 } else if (auto *BO = dyn_cast<BinaryOperator>(Usr)) { in constantFoldUser()
1278 } else if (isa<FreezeInst>(Usr)) { in constantFoldUser()
1279 assert(cast<FreezeInst>(Usr)->getOperand(0) == Op && "Operand 0 isn't Op"); in constantFoldUser()
[all …]
DMemorySSAUpdater.cpp333 User *Usr = U.getUser(); in insertDef() local
334 return !isa<MemoryUse>(Usr) && Usr != MD; in insertDef()
1139 MemoryAccess *Usr = cast<MemoryAccess>(U.getUser()); in applyInsertUpdates() local
1140 if (MemoryPhi *UsrPhi = dyn_cast<MemoryPhi>(Usr)) { in applyInsertUpdates()
1145 BasicBlock *DominatedBlock = Usr->getBlock(); in applyInsertUpdates()
1154 cast<MemoryUseOrDef>(Usr)->resetOptimized(); in applyInsertUpdates()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
DStripSymbols.cpp136 static bool OnlyUsedBy(Value *V, Value *Usr) { in OnlyUsedBy() argument
138 if (U != Usr) in OnlyUsedBy()
DAttributorAttributes.cpp1170 auto HandlePassthroughUser = [&](Value *Usr, OffsetInfo &PtrOI, in updateImpl()
1172 OffsetInfo &UsrOI = OffsetInfoMap[Usr]; in updateImpl()
1180 User *Usr = U.getUser(); in updateImpl() local
1182 << *Usr << "\n"); in updateImpl()
1186 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Usr)) { in updateImpl()
1188 return HandlePassthroughUser(Usr, PtrOI, Follow); in updateImpl()
1197 if (auto *GEP = dyn_cast<GEPOperator>(Usr)) { in updateImpl()
1198 OffsetInfo &UsrOI = OffsetInfoMap[Usr]; in updateImpl()
1226 if (isa<CastInst>(Usr) || isa<SelectInst>(Usr)) in updateImpl()
1227 return HandlePassthroughUser(Usr, PtrOI, Follow); in updateImpl()
[all …]
DLowerTypeTests.cpp1742 auto *Usr = dyn_cast<CallInst>(U.getUser()); in isDirectCall() local
1743 if (Usr) { in isDirectCall()
1744 auto *CB = dyn_cast<CallBase>(Usr); in isDirectCall()
DOpenMPOpt.cpp903 for (User *Usr : I.users()) { in mergeParallelRegions()
904 Instruction &UsrI = *cast<Instruction>(Usr); in mergeParallelRegions()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
DCodeGenPrepare.cpp7645 if (find_if(GEPI->users(), [&](User *Usr) { in tryUnmergingGEPsAcrossIndirectBr() argument
7646 if (auto *I = dyn_cast<Instruction>(Usr)) { in tryUnmergingGEPsAcrossIndirectBr()
7658 for (User *Usr : GEPIOp->users()) { in tryUnmergingGEPsAcrossIndirectBr()
7659 if (Usr == GEPI) continue; in tryUnmergingGEPsAcrossIndirectBr()
7661 if (!isa<Instruction>(Usr)) in tryUnmergingGEPsAcrossIndirectBr()
7663 auto *UI = cast<Instruction>(Usr); in tryUnmergingGEPsAcrossIndirectBr()
7668 if (!isa<GetElementPtrInst>(Usr)) in tryUnmergingGEPsAcrossIndirectBr()
7670 auto *UGEPI = cast<GetElementPtrInst>(Usr); in tryUnmergingGEPsAcrossIndirectBr()
7715 assert(find_if(GEPIOp->users(), [&](User *Usr) { in tryUnmergingGEPsAcrossIndirectBr() argument
7716 return cast<Instruction>(Usr)->getParent() != SrcBlock; in tryUnmergingGEPsAcrossIndirectBr()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
DLoopUtils.cpp619 if (auto *Usr = dyn_cast<Instruction>(U.getUser())) in deleteDeadLoop() local
620 if (L->contains(Usr->getParent())) in deleteDeadLoop()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
DInstCombineCompares.cpp5022 auto *Usr = cast<Instruction>(U); in dominatesAllUses() local
5023 if (Usr != UI && !DT.dominates(DB, Usr->getParent())) in dominatesAllUses()
/freebsd-12-stable/contrib/byacc/
DCHANGES1257 "BSD 4.4 Lite Usr.bin Sources". See
/freebsd-12-stable/contrib/gdb/gdb/doc/
Dgdb.info-22309 `Base=0x02698000 Dirty Acc. Not-Cached Write-Back Usr Read-Write +0xd30'
2328 `Base=0x00029000 Dirty Acc. Not-Cached Write-Back Usr Read-Write +0x110'
Dgdb.texinfo11547 @exdent @code{Base=0x02698000 Dirty Acc. Not-Cached Write-Back Usr Read-Write +0xd30}
11568 @exdent @code{Base=0x00029000 Dirty Acc. Not-Cached Write-Back Usr Read-Write +0x110}
/freebsd-12-stable/contrib/gcc/cp/
DChangeLog3755 * parser.c (cp_lexer_new_main): Usr GGC_RESIZEVEC instead of