| /freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/ |
| D | User.cpp | 173 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()
|
| D | Value.cpp | 197 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/ |
| D | User.h | 100 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()
|
| D | Value.h | 487 void dropDroppableUsesIn(User &Usr);
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/ |
| D | LazyValueInfo.cpp | 1238 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 …]
|
| D | MemorySSAUpdater.cpp | 333 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/ |
| D | StripSymbols.cpp | 136 static bool OnlyUsedBy(Value *V, Value *Usr) { in OnlyUsedBy() argument 138 if (U != Usr) in OnlyUsedBy()
|
| D | AttributorAttributes.cpp | 1170 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 …]
|
| D | LowerTypeTests.cpp | 1742 auto *Usr = dyn_cast<CallInst>(U.getUser()); in isDirectCall() local 1743 if (Usr) { in isDirectCall() 1744 auto *CB = dyn_cast<CallBase>(Usr); in isDirectCall()
|
| D | OpenMPOpt.cpp | 903 for (User *Usr : I.users()) { in mergeParallelRegions() 904 Instruction &UsrI = *cast<Instruction>(Usr); in mergeParallelRegions()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/ |
| D | CodeGenPrepare.cpp | 7645 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/ |
| D | LoopUtils.cpp | 619 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/ |
| D | InstCombineCompares.cpp | 5022 auto *Usr = cast<Instruction>(U); in dominatesAllUses() local 5023 if (Usr != UI && !DT.dominates(DB, Usr->getParent())) in dominatesAllUses()
|
| /freebsd-12-stable/contrib/byacc/ |
| D | CHANGES | 1257 "BSD 4.4 Lite Usr.bin Sources". See
|
| /freebsd-12-stable/contrib/gdb/gdb/doc/ |
| D | gdb.info-2 | 2309 `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'
|
| D | gdb.texinfo | 11547 @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/ |
| D | ChangeLog | 3755 * parser.c (cp_lexer_new_main): Usr GGC_RESIZEVEC instead of
|