Searched refs:user_begin (Results 1 - 25 of 65) sorted by relevance

123

/freebsd-current/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFIRPeephole.cpp65 auto *Inst = cast<Instruction>(*II->user_begin());
77 auto *II = dyn_cast<IntrinsicInst>(*LD->user_begin());
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanValue.h136 user_iterator user_begin() { return Users.begin(); } function in class:llvm::VPValue
137 const_user_iterator user_begin() const { return Users.begin(); } function in class:llvm::VPValue
140 user_range users() { return user_range(user_begin(), user_end()); }
142 return const_user_range(user_begin(), user_end());
151 auto Current = std::next(user_begin());
152 while (Current != user_end() && *user_begin() == *Current)
H A DVPlanSLP.cpp370 auto UI = V->user_begin();
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.h67 void OnMapSecondary(uptr p, uptr size, uptr user_begin, argument
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DInstructionWorklist.h118 add(cast<Instruction>(*I->user_begin()));
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULowerKernelAttributes.cpp118 Load = dyn_cast<LoadInst>(*U->user_begin()); // Load from GEP?
119 BCI = dyn_cast<BitCastInst>(*U->user_begin());
125 Load = dyn_cast<LoadInst>(*BCI->user_begin()); // Load from BCI?
H A DAMDGPUPromoteKernelArguments.cpp88 PtrUsers.append(U->user_begin(), U->user_end());
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonOptimizeSZextends.cpp128 for (auto UI = Ashr->user_begin(), UE = Ashr->user_end();
/freebsd-current/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_allocator.h57 void OnMapSecondary(uptr p, uptr size, uptr user_begin, argument
/freebsd-current/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_allocator.h42 void OnMapSecondary(uptr p, uptr size, uptr user_begin, argument
/freebsd-current/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXLowerAggrCopies.cpp105 auto *SI = cast<StoreInst>(*LI->user_begin());
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/HipStdPar/
H A DHipStdPar.cpp83 SmallVector<User *> Tmp(G.user_begin(), G.user_end());
95 Tmp.insert(Tmp.end(), U->user_begin(), U->user_end());
/freebsd-current/contrib/llvm-project/llvm/lib/Target/ARM/
H A DMVELaneInterleavingPass.cpp136 if (T->hasOneUse() && !isa<StoreInst>(*T->user_begin())) {
146 cast<Instruction>(*E->user_begin())->getOpcode() != Instruction::Mul) {
/freebsd-current/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86PartialReduction.cpp421 Instruction *U = cast<Instruction>(*Phi->user_begin());
426 U = cast<Instruction>(*U->user_begin());
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSplitModule.cpp84 Worklist.append(UU->user_begin(), UU->user_end());
/freebsd-current/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.h117 void OnMapSecondary(uptr p, uptr size, uptr user_begin, uptr user_size) const;
H A Dasan_allocator.cpp290 void AsanMapUnmapCallback::OnMapSecondary(uptr p, uptr size, uptr user_begin, argument
292 uptr user_end = RoundDownTo(user_begin + user_size, ASAN_SHADOW_GRANULARITY);
293 user_begin = RoundUpTo(user_begin, ASAN_SHADOW_GRANULARITY);
297 PoisonShadow(p, user_begin - p, kAsanHeapLeftRedzoneMagic);
/freebsd-current/contrib/llvm-project/llvm/lib/IR/
H A DValue.cpp162 return std::equal(++user_begin(), user_end(), user_begin());
192 return hasNItems(user_begin(), user_end(), N, isUnDroppableUser);
196 return hasNItemsOrMore(user_begin(), user_end(), N, isUnDroppableUser);
242 const_user_iterator UI = user_begin(), UE = user_end();
/freebsd-current/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.cpp1073 const Instruction *UserI = cast<Instruction>(*Ld->user_begin());
1089 UserI = cast<Instruction>(*UserI->user_begin());
1172 const Instruction *UserI = cast<Instruction>(*FoldedValue->user_begin());
1212 const Instruction *LdUser = cast<Instruction>(*I->user_begin());
1215 (!LdUser->hasOneUse() || !isa<StoreInst>(*LdUser->user_begin())))
/freebsd-current/contrib/llvm-project/llvm/include/llvm/IR/
H A DValue.h397 user_iterator user_begin() { function
401 const_user_iterator user_begin() const { function
H A DInstruction.h136 Instruction *user_back() { return cast<Instruction>(*user_begin());}
137 const Instruction *user_back() const { return cast<Instruction>(*user_begin());}
H A DCFG.h67 explicit inline PredIterator(Ptr *bb) : It(bb->user_begin()) {
/freebsd-current/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_allocator.cpp33 void OnMapSecondary(uptr p, uptr size, uptr user_begin, argument
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopRerollPass.cpp533 UUser = cast<Instruction>(*(UUser->user_begin()));
592 C = cast<Instruction>(*C->user_begin());
1164 UUser = dyn_cast<Instruction>(*(UUser->user_begin()));
1169 Instruction *BI = dyn_cast<BranchInst>(*UUser->user_begin());
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DPartialInlining.cpp310 User *User = *F.user_begin();
903 std::vector<User *> Users(DuplicateFunction->user_begin(),
1354 std::vector<User *> Users(Cloner.ClonedFunc->user_begin(),

Completed in 394 milliseconds

123