Searched refs:users (Results 76 - 100 of 208) sorted by relevance

123456789

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreLowerThreadLocal.cpp163 for (User *U : GV->users())
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroEarly.cpp143 for (User *U : CoroId->users())
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp167 for (User *U : I->users()) {
370 // If this is an unmodified argument, move the name and users over to the
408 for (User *U : TheAlloca->users()) {
420 // Otherwise, if we promoted this argument, then all users are load
421 // instructions (or GEPs with only load users), and all loads should be
486 for (User *U : Callee->users()) {
693 // Ensure that the only users of the GEP are load instructions.
694 for (User *GEPU : GEP->users())
732 return true; // No users, this is a dead argument.
H A DStripSymbols.cpp134 for (User *U : V->users())
/freebsd-13-stable/usr.bin/
H A DMakefile283 SUBDIR.${MK_UTMPX}+= users
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRForTarget.cpp878 // Replace the load with the call in all users
1030 // Replace the load with the call in all users
1359 for (llvm::User *u : global_variable->users()) {
1536 SmallVector<User *, 16> users; local
1540 for (llvm::User *u : old_constant->users())
1541 users.push_back(u);
1543 for (size_t i = 0; i < users.size(); ++i) {
1544 User *user = users[i];
/freebsd-13-stable/sys/contrib/openzfs/tests/test-runner/bin/
H A Dtest-runner.py.in411 users = [self.pre_user, self.user, self.post_user, self.failsafe_user]
419 for user in [user for user in users if len(user)]:
514 users = [self.pre_user, self.user, self.post_user, self.failsafe_user]
529 for user in [user for user in users if len(user)]:
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFunctionLoweringInfo.cpp53 for (const User *U : I->users())
61 // For the users of the source value being used for compare instruction, if
70 for (const User *U : V->users()) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DObjCARCContract.cpp690 // Replace bitcast users of Arg that are dominated by Inst.
693 // Add all bitcast users of the function argument first.
694 for (User *U : OrigArg->users())
701 for (User *U : BC->users())
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopRotationUtils.cpp104 // Now fix up users of the instructions in OrigHeader, inserting PHI nodes
139 // The original users in the OrigHeader are already using the
161 // The original users in the OrigHeader are already using the original
198 if (llvm::any_of(Phi.users(), [HeaderExit](const User *U) {
647 for (User *UseI : IVOpnd->users()) {
H A DLoopVersioning.cpp147 for (User *U : Inst->users())
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DValue.h298 /// values or constant users.
318 /// values or constant users.
418 iterator_range<user_iterator> users() { function
422 iterator_range<const_user_iterator> users() const { function
437 /// Return true if this Value has exactly N users.
440 /// Return true if this value has N users or more.
458 /// Return true if this value has N users or more.
/freebsd-13-stable/sys/conf/
H A Dkern.opts.mk6 # Define MK_* variables (which are either "yes" or "no") for users
/freebsd-13-stable/crypto/openssl/
H A DNOTES.PERL83 1. for Linux users, the easiest is to install with the use of your
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DWasmEHPrepare.cpp200 for (User *U : ThrowF->users()) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp108 for (User *U : IIP->users()) {
143 for (User *U : Arg->users()) {
516 for (User *U : AI->users()) {
992 for (User *U : PN->users()) {
1024 // If we have no users, they must be all self uses, just nuke the PHI.
1029 // extracted out of it. First, sort the users by their offset and size.
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp1401 // Add users to the worklist which may be simplified now.
1402 for (User *U : I->users())
1445 for (User *U : LIC->users()) {
1462 for (User *U : LIC->users()) {
1473 // all its users.
1476 // the LIC->users() iterator !. However, we can make this instruction
1477 // dead by replacing all its users and push it onto the worklist so that
1606 for (User *U : PN->users())
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DDivergenceAnalysis.cpp198 // marks all users of loop-carried values of the loop headed by LoopHeader as
207 // Otherwise potential users of loop-carried values could be anywhere in the
235 // taint outside users of values carried by DivLoop
271 for (const auto *User : V.users()) {
347 // Thus all users have to be in the dominance region of the loop header,
409 // propagate value divergence to users
H A DInlineAdvisor.cpp215 for (User *U : Caller->users()) {
H A DLegacyDivergenceAnalysis.cpp113 // Finds all users of I that are outside the influence region, and add these
114 // users to Worklist.
197 // these users are sync dependent on TI.
261 for (User *U : V->users()) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPropagateAttributes.cpp247 for (User *U : F.users()) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTDC.cpp103 // any and/or/xor i1 users to the queue.
108 for (auto *U : I->users()) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/
H A DTruncInstCombine.cpp16 // 4. All instructions in the dag must not have users outside the dag.
246 // can't shrink something that has multiple users, unless all users are
255 for (auto *U : I->users())
261 // even if it has multiple users. Thus, update the DesiredBitWidth and
400 // We still need to check that the instruction has no users before we erase
401 // it, because {SExt, ZExt}Inst Instruction might have other users that was
/freebsd-13-stable/sys/ofed/include/rdma/
H A Dib_sa.h310 atomic_t users; member in struct:ib_sa_client
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFAbstractMemberAccess.cpp411 for (User *U : Call->users()) {
443 for (User *U : BitCast->users()) {
473 for (User *U : GEP->users()) {

Completed in 276 milliseconds

123456789