Home
last modified time | relevance | path

Searched refs:User (Results 1 – 25 of 634) sorted by relevance

12345678910>>...26

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DIRTranslator.h55 class User; variable
229 bool translateCopy(const User &U, const Value &V,
237 bool translateLoad(const User &U, MachineIRBuilder &MIRBuilder);
291 bool translateCall(const User &U, MachineIRBuilder &MIRBuilder);
314 bool translateCast(unsigned Opcode, const User &U,
318 bool translatePHI(const User &U, MachineIRBuilder &MIRBuilder);
339 bool translateUnaryOp(unsigned Opcode, const User &U,
344 bool translateBinaryOp(unsigned Opcode, const User &U,
370 bool translateBr(const User &U, MachineIRBuilder &MIRBuilder);
441 bool translateRet(const User &U, MachineIRBuilder &MIRBuilder);
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DUser.cpp21 bool User::replaceUsesOfWith(Value *From, Value *To) { in replaceUsesOfWith()
50 void User::allocHungoffUses(unsigned N, bool IsPhi) { in allocHungoffUses()
67 void User::growHungoffUses(unsigned NewNumUses, bool IsPhi) { in growHungoffUses()
99 ArrayRef<const uint8_t> User::getDescriptor() const { in getDescriptor()
104 MutableArrayRef<uint8_t> User::getDescriptor() { in getDescriptor()
115 bool User::isDroppable() const { in isDroppable()
138 User *Obj = reinterpret_cast<User*>(End); in allocateFixedOperandUser()
153 void *User::operator new(size_t Size, unsigned Us) { in operator new()
161 void *User::operator new(size_t Size) { in operator new()
165 User *Obj = reinterpret_cast<User *>(HungOffOperandList + 1); in operator new()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DGuardUtils.h19 class User; variable
25 bool isGuard(const User *U);
33 bool isWidenableBranch(const User *U);
37 bool isGuardAsWidenableBranch(const User *U);
48 bool parseWidenableBranch(const User *U, Value *&Condition,
54 bool parseWidenableBranch(User *U, Use *&Cond, Use *&WC, BasicBlock *&IfTrueBB,
62 void parseWidenableGuard(const User *U, llvm::SmallVectorImpl<Value *> &Checks);
66 Value *extractWidenableCondition(const User *U);
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h90 class User; variable
549 void visitSDiv(const User &I);
557 void visitICmp(const User &I);
558 void visitFCmp(const User &I);
560 void visitTrunc(const User &I);
561 void visitZExt(const User &I);
562 void visitSExt(const User &I);
564 void visitFPExt(const User &I);
565 void visitFPToUI(const User &I);
566 void visitFPToSI(const User &I);
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64PromoteConstant.cpp104 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 …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DIVUsers.cpp100 if (L->contains(User)) in IVUseShouldUsePostIncValue()
109 if (DT->dominates(LatchBlock, User->getParent())) in IVUseShouldUsePostIncValue()
116 PHINode *PN = dyn_cast<PHINode>(User); in IVUseShouldUsePostIncValue()
175 Instruction *User = cast<Instruction>(U.getUser()); in AddUsersIfInteresting() local
176 if (!UniqueUsers.insert(User).second) in AddUsersIfInteresting()
180 if (isa<PHINode>(User) && Processed.count(User)) in AddUsersIfInteresting()
190 if (LI->getLoopFor(User->getParent()) != L) { in AddUsersIfInteresting()
191 if (isa<PHINode>(User) || Processed.count(User) || in AddUsersIfInteresting()
192 !AddUsersIfInteresting(User)) { in AddUsersIfInteresting()
197 } else if (Processed.count(User) || !AddUsersIfInteresting(User)) { in AddUsersIfInteresting()
[all …]
H A DTypeMetadataUtils.cpp29 Instruction *User = cast<Instruction>(U.getUser()); in findCallsAtConstantOffset() local
36 if (!DT.dominates(CI, User)) in findCallsAtConstantOffset()
38 if (isa<BitCastInst>(User)) { in findCallsAtConstantOffset()
41 } else if (auto *CI = dyn_cast<CallInst>(User)) { in findCallsAtConstantOffset()
43 } else if (auto *II = dyn_cast<InvokeInst>(User)) { in findCallsAtConstantOffset()
56 Value *User = U.getUser(); in findLoadCallsAtConstantOffset() local
57 if (isa<BitCastInst>(User)) { in findLoadCallsAtConstantOffset()
58 findLoadCallsAtConstantOffset(M, DevirtCalls, User, Offset, CI, DT); in findLoadCallsAtConstantOffset()
59 } else if (isa<LoadInst>(User)) { in findLoadCallsAtConstantOffset()
60 findCallsAtConstantOffset(DevirtCalls, nullptr, User, Offset, CI, DT); in findLoadCallsAtConstantOffset()
[all …]
H A DGuardUtils.cpp18 bool llvm::isGuard(const User *U) { in isGuard()
26 bool llvm::isWidenableBranch(const User *U) { in isWidenableBranch()
33 bool llvm::isGuardAsWidenableBranch(const User *U) { in isGuardAsWidenableBranch()
53 bool llvm::parseWidenableBranch(const User *U, Value *&Condition, in parseWidenableBranch()
58 if (parseWidenableBranch(const_cast<User*>(U), C, WC, IfTrueBB, IfFalseBB)) { in parseWidenableBranch()
69 bool llvm::parseWidenableBranch(User *U, Use *&C,Use *&WC, in parseWidenableBranch()
138 void llvm::parseWidenableGuard(const User *U, in parseWidenableGuard()
151 Value *llvm::extractWidenableCondition(const User *U) { in extractWidenableCondition()
H A DObjCARCInstKind.cpp75 case ARCInstKind::User: in operator <<()
312 case ARCInstKind::User: in IsUser()
371 case ARCInstKind::User: in IsRetain()
406 case ARCInstKind::User: in IsAutorelease()
441 case ARCInstKind::User: in IsForwarding()
475 case ARCInstKind::User: in IsNoopOnNull()
510 case ARCInstKind::User: in IsNoopOnGlobal()
546 case ARCInstKind::User: in IsAlwaysTail()
585 case ARCInstKind::User: in IsNeverTail()
622 case ARCInstKind::User: in IsNoThrow()
[all …]
/freebsd-14.2/usr.sbin/cron/crontab/
H A Dcrontab.c88 if (!allowed(User)) { in main()
125 (void) strncpy(User, pw->pw_name, (sizeof User)-1); in parse_args()
126 User[(sizeof User)-1] = '\0'; in parse_args()
127 strcpy(RealUser, User); in parse_args()
142 (void) strncpy(User, pw->pw_name, (sizeof User)-1); in parse_args()
143 User[(sizeof User)-1] = '\0'; in parse_args()
254 log_it(RealUser, Pid, "LIST", User); in list_cmd()
284 log_it(RealUser, Pid, "DELETE", User); in delete_cmd()
317 log_it(RealUser, Pid, "BEGIN EDIT", User);
482 log_it(RealUser, Pid, "END EDIT", User);
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DUser.h44 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 DOperandTraits.h40 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 DGenericConvergenceVerifierImpl.h144 auto checkToken = [&](const InstructionT *Token, const InstructionT *User, in verify()
148 {Context.print(Token), Context.print(User)}); in verify()
153 auto *BB = User->getParent(); in verify()
164 Check(ContextT::getIntrinsicID(*User) == in verify()
169 {Context.print(User), CI.print(BBCycle)}); in verify()
180 {Context.print(User), Context.printAsOperand(BB), CI.print(BBCycle)}); in verify()
184 {Context.print(User), Context.print(CycleHearts[BBCycle]), in verify()
186 CycleHearts[BBCycle] = User; in verify()
H A DUse.h34 class User; variable
59 Use(User *Parent) : Parent(Parent) {} in Use()
63 friend class User; variable
72 User *getUser() const { return Parent; }; in getUser()
96 User *Parent = nullptr;
H A DGetElementPtrTypeIterator.h30 template <typename ItTy = User::const_op_iterator>
173 inline gep_type_iterator gep_type_begin(const User *GEP) { in gep_type_begin()
180 inline gep_type_iterator gep_type_end(const User *GEP) { in gep_type_end()
184 inline gep_type_iterator gep_type_begin(const User &GEP) { in gep_type_begin()
191 inline gep_type_iterator gep_type_end(const User &GEP) { in gep_type_end()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSSAUpdater.cpp393 for (Instruction *User : Insts) in run()
394 UsesByBlock[User->getParent()].push_back(User); in run()
402 for (Instruction *User : Insts) { in run()
403 BasicBlock *BB = User->getParent(); in run()
498 for (Instruction *User : Insts) { in run()
499 if (!shouldDelete(User)) in run()
506 if (!User->use_empty()) { in run()
507 Value *NewVal = ReplacedLoads[User]; in run()
520 User->replaceAllUsesWith(NewVal); in run()
523 instructionDeleted(User); in run()
[all …]
H A DDemoteRegToStack.cpp156 for (User *U : P->users()) { in DemotePHIToStack()
157 Instruction *User = cast<Instruction>(U); in DemotePHIToStack() local
158 Users.push_back(User); in DemotePHIToStack()
160 for (Instruction *User : Users) { in DemotePHIToStack()
162 new LoadInst(P->getType(), Slot, P->getName() + ".reload", User); in DemotePHIToStack()
163 User->replaceUsesOfWith(P, V); in DemotePHIToStack()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MCA/
H A DInstruction.cpp61 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-14.2/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DUninitializedValues.h39 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-14.2/stand/forth/
H A Dmenu.rc31 set mainmenu_caption[1]="Boot Multi User [Enter]"
32 set maintoggled_text[1]="Boot [S]ingle User [Enter]"
34 set mainansi_caption[1]="^[1mB^[moot Multi User ^[1m[Enter]^[m"
35 set maintoggled_ansi[1]="Boot ^[1mS^[mingle User ^[1m[Enter]^[m"
39 set mainmenu_caption[2]="Boot [S]ingle User"
40 set maintoggled_text[2]="Boot [M]ulti User"
42 set mainansi_caption[2]="Boot ^[1mS^[mingle User"
43 set maintoggled_ansi[2]="Boot ^[1mM^[multi User"
128 set optionsmenu_caption[5]="[S]ingle User. off"
129 set optionstoggled_text[5]="[S]ingle User. On"
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCGenScalarMASSEntries.cpp126 SmallVector<User *, 4> TheUsers; in runOnModule()
127 for (auto *User : Func.users()) in runOnModule() local
128 TheUsers.push_back(User); in runOnModule()
130 for (auto *User : TheUsers) in runOnModule() local
131 if (auto *CI = dyn_cast_or_null<CallInst>(User)) { in runOnModule()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DConstantHoisting.cpp598 for (auto User : ConstCand->Uses) { in maximizeConstantsInRange() local
599 unsigned Opcode = User.Inst->getOpcode(); in maximizeConstantsInRange()
600 unsigned OpndIdx = User.OpndIdx; in maximizeConstantsInRange()
774 Mat->setDebugLoc(Adj->User.Inst->getDebugLoc()); in emitBaseConstants()
776 Value *Opnd = Adj->User.Inst->getOperand(Adj->User.OpndIdx); in emitBaseConstants()
781 if (!updateOperand(Adj->User.Inst, Adj->User.OpndIdx, Mat) && Adj->Offset) in emitBaseConstants()
804 updateOperand(Adj->User.Inst, Adj->User.OpndIdx, ClonedCastInst); in emitBaseConstants()
813 updateOperand(Adj->User.Inst, Adj->User.OpndIdx, Mat); in emitBaseConstants()
823 ConstExprInst->setDebugLoc(Adj->User.Inst->getDebugLoc()); in emitBaseConstants()
828 if (!updateOperand(Adj->User.Inst, Adj->User.OpndIdx, ConstExprInst)) { in emitBaseConstants()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionSpecialization.cpp186 if (KnownConstants.contains(User)) in getUserBonus()
199 C = visit(*User); in getUserBonus()
207 KnownConstants.insert({User, C}); in getUserBonus()
219 << *User << "\n"); in getUserBonus()
222 for (auto *U : User->users()) in getUserBonus()
482 if (User == Call) in getPromotableAlloca()
547 for (User *U : F->users()) { in promoteConstantStackValues()
766 for (User *U : F->users()) { in run()
824 for (User *U : F->users()) { in findSpecializations()
999 for (User *U : A->users()) { in getInliningBonus()
[all …]
/freebsd-14.2/sys/contrib/device-tree/src/arm/
H A Dam3517-evm.dts41 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";
203 /* User DIP swithes [1:8] / User LEDS [1:2] */
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DFastISel.h60 class User; variable
265 bool selectOperator(const User *I, unsigned Opcode);
491 bool canFoldAddIntoGEP(const User *GEP, const Value *Add);
506 bool selectBinaryOp(const User *I, unsigned ISDOpcode);
507 bool selectFNeg(const User *I, const Value *In);
508 bool selectGetElementPtr(const User *I);
511 bool selectCall(const User *I);
513 bool selectBitCast(const User *I);
514 bool selectFreeze(const User *I);
515 bool selectCast(const User *I, unsigned Opcode);
[all …]

12345678910>>...26