| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | IRTranslator.h | 51 class User; variable 207 bool translateCopy(const User &U, const Value &V, 215 bool translateLoad(const User &U, MachineIRBuilder &MIRBuilder); 261 bool translateCall(const User &U, MachineIRBuilder &MIRBuilder); 284 bool translateCast(unsigned Opcode, const User &U, 288 bool translatePHI(const User &U, MachineIRBuilder &MIRBuilder); 309 bool translateUnaryOp(unsigned Opcode, const User &U, 314 bool translateBinaryOp(unsigned Opcode, const User &U, 340 bool translateBr(const User &U, MachineIRBuilder &MIRBuilder); 407 bool translateRet(const User &U, MachineIRBuilder &MIRBuilder); [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | User.cpp | 21 void User::replaceUsesOfWith(Value *From, Value *To) { in replaceUsesOfWith() 44 void User::allocHungoffUses(unsigned N, bool IsPhi) { in allocHungoffUses() 61 void User::growHungoffUses(unsigned NewNumUses, bool IsPhi) { in growHungoffUses() 93 ArrayRef<const uint8_t> User::getDescriptor() const { in getDescriptor() 98 MutableArrayRef<uint8_t> User::getDescriptor() { in getDescriptor() 109 bool User::isDroppable() const { in isDroppable() 132 User *Obj = reinterpret_cast<User*>(End); in allocateFixedOperandUser() 147 void *User::operator new(size_t Size, unsigned Us) { in operator new() 155 void *User::operator new(size_t Size) { in operator new() 159 User *Obj = reinterpret_cast<User *>(HungOffOperandList + 1); in operator new() [all …]
|
| H A D | ConstantsContext.h | 54 void *operator new(size_t S) { return User::operator new(S, 1); } in new() 55 void operator delete(void *Ptr) { User::operator delete(Ptr); } in delete() 81 void *operator new(size_t S) { return User::operator new(S, 2); } in new() 82 void operator delete(void *Ptr) { User::operator delete(Ptr); } in delete() 107 void *operator new(size_t S) { return User::operator new(S, 3); } in new() 108 void operator delete(void *Ptr) { User::operator delete(Ptr); } in delete() 134 void *operator new(size_t S) { return User::operator new(S, 2); } in new() 135 void operator delete(void *Ptr) { User::operator delete(Ptr); } in delete() 163 void operator delete(void *Ptr) { User::operator delete(Ptr); } in delete() 226 void operator delete(void *Ptr) { User::operator delete(Ptr); } in delete() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGBuilder.h | 86 class User; variable 699 void visitSDiv(const User &I); 707 void visitICmp(const User &I); 708 void visitFCmp(const User &I); 710 void visitTrunc(const User &I); 711 void visitZExt(const User &I); 712 void visitSExt(const User &I); 714 void visitFPExt(const User &I); 715 void visitFPToUI(const User &I); 716 void visitFPToSI(const User &I); [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64PromoteConstant.cpp | 104 Instruction *User; member 108 : C(C), User(User), Op(Op) {} in UpdateRecord() 212 IPI->second.emplace_back(User, OpNo); in appendAndTransferDominatedUses() 375 if (PHINode *PhiInst = dyn_cast<PHINode>(&User)) in findInsertionPoint() 378 return &User; in findInsertionPoint() 400 IPI.second.emplace_back(User, OpNo); in isDominated() 461 LLVM_DEBUG(User->print(dbgs())); in computeInsertionPoint() 470 if (isDominated(InsertionPoint, User, OpNo, InsertPts)) in computeInsertionPoint() 474 if (tryAndMerge(InsertionPoint, User, OpNo, InsertPts)) in computeInsertionPoint() 480 InsertPts[InsertionPoint].emplace_back(User, OpNo); in computeInsertionPoint() [all …]
|
| H A D | SVEIntrinsicOpts.cpp | 100 for (User *User : PTrue->users()) { in isPTruePromoted() 101 if (match(User, m_Intrinsic<Intrinsic::aarch64_sve_convert_to_svbool>())) { in isPTruePromoted() 102 ConvertToUses.push_back(cast<IntrinsicInst>(User)); in isPTruePromoted() 115 for (User *User : ConvertToUse->users()) { in isPTruePromoted() 116 auto *IntrUser = dyn_cast<IntrinsicInst>(User); in isPTruePromoted() 301 for (User *U : F.users()) in runOnModule()
|
| /freebsd-13.1/usr.sbin/cron/crontab/ |
| H A D | crontab.c | 106 if (!allowed(User)) { in main() 141 (void) strncpy(User, pw->pw_name, (sizeof User)-1); 142 User[(sizeof User)-1] = '\0'; 143 strcpy(RealUser, User); 158 (void) strncpy(User, pw->pw_name, (sizeof User)-1); 159 User[(sizeof User)-1] = '\0'; 268 log_it(RealUser, Pid, "LIST", User); in list_cmd() 298 log_it(RealUser, Pid, "DELETE", User); in delete_cmd() 332 log_it(RealUser, Pid, "BEGIN EDIT", User); 496 log_it(RealUser, Pid, "END EDIT", User); [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | IVUsers.cpp | 132 if (L->contains(User)) in IVUseShouldUsePostIncValue() 148 PHINode *PN = dyn_cast<PHINode>(User); in IVUseShouldUsePostIncValue() 209 if (!UniqueUsers.insert(User).second) in AddUsersImpl() 213 if (isa<PHINode>(User) && Processed.count(User)) in AddUsersImpl() 218 BasicBlock *UseBB = User->getParent(); in AddUsersImpl() 220 if (PHINode *PHI = dyn_cast<PHINode>(User)) { in AddUsersImpl() 235 if (LI->getLoopFor(User->getParent()) != L) { in AddUsersImpl() 236 if (isa<PHINode>(User) || Processed.count(User) || in AddUsersImpl() 237 !AddUsersImpl(User, SimpleLoopNests)) { in AddUsersImpl() 242 } else if (Processed.count(User) || !AddUsersImpl(User, SimpleLoopNests)) { in AddUsersImpl() [all …]
|
| H A D | TypeMetadataUtils.cpp | 30 Instruction *User = cast<Instruction>(U.getUser()); in findCallsAtConstantOffset() local 37 if (!DT.dominates(CI, User)) in findCallsAtConstantOffset() 39 if (isa<BitCastInst>(User)) { in findCallsAtConstantOffset() 42 } else if (auto *CI = dyn_cast<CallInst>(User)) { in findCallsAtConstantOffset() 44 } else if (auto *II = dyn_cast<InvokeInst>(User)) { in findCallsAtConstantOffset() 57 Value *User = U.getUser(); in findLoadCallsAtConstantOffset() local 58 if (isa<BitCastInst>(User)) { in findLoadCallsAtConstantOffset() 59 findLoadCallsAtConstantOffset(M, DevirtCalls, User, Offset, CI, DT); in findLoadCallsAtConstantOffset() 60 } else if (isa<LoadInst>(User)) { in findLoadCallsAtConstantOffset() 61 findCallsAtConstantOffset(DevirtCalls, nullptr, User, Offset, CI, DT); in findLoadCallsAtConstantOffset() [all …]
|
| H A D | GuardUtils.cpp | 18 bool llvm::isGuard(const User *U) { in isGuard() 22 bool llvm::isWidenableBranch(const User *U) { in isWidenableBranch() 29 bool llvm::isGuardAsWidenableBranch(const User *U) { in isGuardAsWidenableBranch() 44 bool llvm::parseWidenableBranch(const User *U, Value *&Condition, in parseWidenableBranch() 49 if (parseWidenableBranch(const_cast<User*>(U), C, WC, IfTrueBB, IfFalseBB)) { in parseWidenableBranch() 60 bool llvm::parseWidenableBranch(User *U, Use *&C,Use *&WC, in parseWidenableBranch()
|
| H A D | ObjCARCInstKind.cpp | 75 case ARCInstKind::User: in operator <<() 313 case ARCInstKind::User: in IsUser() 372 case ARCInstKind::User: in IsRetain() 407 case ARCInstKind::User: in IsAutorelease() 442 case ARCInstKind::User: in IsForwarding() 476 case ARCInstKind::User: in IsNoopOnNull() 511 case ARCInstKind::User: in IsNoopOnGlobal() 547 case ARCInstKind::User: in IsAlwaysTail() 586 case ARCInstKind::User: in IsNeverTail() 623 case ARCInstKind::User: in IsNoThrow() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | User.h | 44 class User : public Value { 73 User(Type *ty, unsigned vty, Use *, unsigned NumOps) in User() function 97 User(const User &) = delete; 107 User::operator delete(Usr); in delete() 119 User::operator delete(Usr); in delete() 317 static_assert(alignof(Use) >= alignof(User), 319 static_assert(alignof(Use *) >= alignof(User), 322 template<> struct simplify_type<User::op_iterator> { 325 static SimpleType getSimplifiedValue(User::op_iterator &Val) { 329 template<> struct simplify_type<User::const_op_iterator> { [all …]
|
| H A D | OperandTraits.h | 40 static unsigned operands(const User*) { in operands() 54 static unsigned operands(const User *U) { in operands() 73 return reinterpret_cast<Use*>(U) - static_cast<User*>(U)->getNumOperands(); in op_begin() 78 static unsigned operands(const User *U) { in operands() 96 static Use *op_begin(User* U) { in op_begin() 99 static Use *op_end(User* U) { in op_end() 102 static unsigned operands(const User *U) { in operands()
|
| H A D | Use.h | 35 class User; variable 60 Use(User *Parent) : Parent(Parent) {} in Use() 64 friend class User; variable 73 User *getUser() const { return Parent; }; in getUser() 97 User *Parent = nullptr;
|
| H A D | GetElementPtrTypeIterator.h | 30 template <typename ItTy = User::const_op_iterator> 139 inline gep_type_iterator gep_type_begin(const User *GEP) { in gep_type_begin() 146 inline gep_type_iterator gep_type_end(const User *GEP) { in gep_type_end() 150 inline gep_type_iterator gep_type_begin(const User &GEP) { in gep_type_begin() 157 inline gep_type_iterator gep_type_end(const User &GEP) { in gep_type_end()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | GuardUtils.h | 19 class User; variable 24 bool isGuard(const User *U); 28 bool isWidenableBranch(const User *U); 32 bool isGuardAsWidenableBranch(const User *U); 43 bool parseWidenableBranch(const User *U, Value *&Condition, 49 bool parseWidenableBranch(User *U, Use *&Cond, Use *&WC, BasicBlock *&IfTrueBB,
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | SSAUpdater.cpp | 191 if (PHINode *UserPN = dyn_cast<PHINode>(User)) in RewriteUse() 343 for (Instruction *User : Insts) in run() 344 UsesByBlock[User->getParent()].push_back(User); in run() 352 for (Instruction *User : Insts) { in run() 353 BasicBlock *BB = User->getParent(); in run() 448 for (Instruction *User : Insts) { in run() 453 if (!User->use_empty()) { in run() 454 Value *NewVal = ReplacedLoads[User]; in run() 467 User->replaceAllUsesWith(NewVal); in run() 470 instructionDeleted(User); in run() [all …]
|
| H A D | SimplifyIndVar.cpp | 779 for (User *U : Def->users()) { in pushIVUsers() 1087 return User; in getInsertPointForUses() 1511 if (User == NarrowDef) in widenWithVariantUse() 1513 if (!L->contains(User)) { in widenWithVariantUse() 1536 User = dyn_cast<SExtInst>(User); in widenWithVariantUse() 1538 User = dyn_cast<ZExtInst>(User); in widenWithVariantUse() 1539 if (!User || User->getType() != WideType) in widenWithVariantUse() 1541 ExtUsers.push_back(User); in widenWithVariantUse() 1608 DeadInsts.emplace_back(User); in widenWithVariantUse() 1613 Builder.SetInsertPoint(User); in widenWithVariantUse() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MCA/ |
| H A D | Instruction.cpp | 61 for (const std::pair<ReadState *, int> &User : Users) { in onInstructionIssued() local 62 ReadState *RS = User.first; in onInstructionIssued() 63 unsigned ReadCycles = std::max(0, CyclesLeft - User.second); in onInstructionIssued() 72 void WriteState::addUser(unsigned IID, ReadState *User, int ReadAdvance) { in addUser() argument 78 User->writeStartEvent(IID, RegisterID, ReadCycles); in addUser() 82 Users.emplace_back(User, ReadAdvance); in addUser() 85 void WriteState::addUser(unsigned IID, WriteState *User) { in addUser() argument 87 User->writeStartEvent(IID, RegisterID, std::max(0, CyclesLeft)); in addUser() 92 PartialWrite = User; in addUser() 93 User->setDependentWrite(this); in addUser()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/ |
| H A D | AMDGPULDSUtils.cpp | 120 SmallVector<User *, 8> UserStack(GV->users()); in collectNonKernelAccessorsOfLDS() 121 SmallPtrSet<User *, 8> VisitedUsers; in collectNonKernelAccessorsOfLDS() 153 SmallVector<User *, 8> UserStack; in getFunctionToInstsMap() 154 SmallPtrSet<User *, 8> VisitedUsers; in getFunctionToInstsMap() 202 SmallVector<User *> Stack{U}; in collectFunctionUses() 230 SmallPtrSet<const User *, 8> Visited; in hasUserInstruction() 231 SmallVector<const User *, 16> Stack(GV->users()); in hasUserInstruction() 234 const User *U = Stack.pop_back_val(); in hasUserInstruction() 254 SmallPtrSet<const User *, 8> Visited; in shouldLowerLDSToStruct() 255 SmallVector<const User *, 16> Stack(GV.users()); in shouldLowerLDSToStruct() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
| H A D | UninitializedValues.h | 39 const Expr *User; 55 UninitUse(const Expr *User, bool AlwaysUninit) in UninitUse() argument 56 : User(User), AlwaysUninit(AlwaysUninit) {} in UninitUse() 66 const Expr *getUser() const { return User; } in getUser()
|
| /freebsd-13.1/stand/forth/ |
| H A D | menu.rc | 32 set mainmenu_caption[1]="Boot Multi User [Enter]" 33 set maintoggled_text[1]="Boot [S]ingle User [Enter]" 35 set mainansi_caption[1]="^[1mB^[moot Multi User ^[1m[Enter]^[m" 36 set maintoggled_ansi[1]="Boot ^[1mS^[mingle User ^[1m[Enter]^[m" 40 set mainmenu_caption[2]="Boot [S]ingle User" 41 set maintoggled_text[2]="Boot [M]ulti User" 43 set mainansi_caption[2]="Boot ^[1mS^[mingle User" 44 set maintoggled_ansi[2]="Boot ^[1mM^[multi User" 129 set optionsmenu_caption[5]="[S]ingle User. off" 130 set optionstoggled_text[5]="[S]ingle User. On" [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUPromoteAlloca.cpp | 361 static bool canVectorizeInst(Instruction *Inst, User *User, in canVectorizeInst() argument 368 if (isa<AllocaInst>(User) && in canVectorizeInst() 388 if (isa<AllocaInst>(User) && in canVectorizeInst() 607 for (User *User : Val->users()) { in collectUsesWithPtrTypes() 608 if (is_contained(WorkList, User)) in collectUsesWithPtrTypes() 615 WorkList.push_back(User); in collectUsesWithPtrTypes() 660 WorkList.push_back(User); in collectUsesWithPtrTypes() 666 if (isa<InsertValueInst>(User) || isa<InsertElementInst>(User)) in collectUsesWithPtrTypes() 669 if (!User->getType()->isPointerTy()) in collectUsesWithPtrTypes() 702 WorkList.push_back(User); in collectUsesWithPtrTypes() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | FastISel.h | 59 class User; variable 264 bool selectOperator(const User *I, unsigned Opcode); 486 bool canFoldAddIntoGEP(const User *GEP, const Value *Add); 501 bool selectBinaryOp(const User *I, unsigned ISDOpcode); 502 bool selectFNeg(const User *I, const Value *In); 503 bool selectGetElementPtr(const User *I); 506 bool selectCall(const User *I); 508 bool selectBitCast(const User *I); 509 bool selectFreeze(const User *I); 510 bool selectCast(const User *I, unsigned Opcode); [all …]
|
| /freebsd-13.1/sys/contrib/device-tree/src/arm/ |
| H A D | am3517-evm.dts | 41 label = "User Push Button"; 47 label = "User Switch 1"; 53 label = "User Switch 2"; 59 label = "User Switch 3"; 65 label = "User Switch 4"; 71 label = "User Switch 5"; 77 label = "User Switch 6"; 83 label = "User Switch 7"; 89 label = "User Switch 8"; 197 /* User DIP swithes [1:8] / User LEDS [1:2] */
|