Searched refs:Users (Results 51 - 75 of 85) sorted by relevance

1234

/netbsd-current/external/gpl3/gcc/dist/libgcc/config/aarch64/
H A Dcrti.S31 # .init sections. Users may put any desired instructions in those
H A Dcrtn.S31 # fact return. Users may put any desired instructions in those sections.
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/arm/
H A Dcrtn.S40 # fact return. Users may put any desired instructions in those sections.
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/aarch64/
H A Dcrtn.S31 # fact return. Users may put any desired instructions in those sections.
/netbsd-current/external/gpl3/gcc/dist/libgcc/config/arm/
H A Dcrtn.S40 # fact return. Users may put any desired instructions in those sections.
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUPromoteAlloca.cpp447 SmallVector<User *, 8> Users(Alloca->users());
448 SmallVector<User *, 8> UseUsers(Users.size(), Alloca);
450 while (!Users.empty()) {
451 User *AllocaUser = Users.pop_back_val();
470 Users.push_back(CastUser);
492 Users.append(GEP->user_begin(), GEP->user_end());
H A DSIFoldOperands.cpp1663 SmallVector<const MachineInstr*, 8> Users;
1666 Users.push_back(&I);
1668 if (Users.empty())
1672 while (!Users.empty()) {
1673 const MachineInstr *I = Users.pop_back_val();
1681 Users.push_back(&U);
/netbsd-current/external/apache2/llvm/dist/llvm/utils/release/
H A Dbuild_llvm_package.bat24 set python32_dir=C:\Users\%USERNAME%\AppData\Local\Programs\Python\Python36-32
25 set python64_dir=C:\Users\%USERNAME%\AppData\Local\Programs\Python\Python36
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-mca/Views/
H A DBottleneckAnalysis.h145 SmallVectorImpl<User> &Users) const;
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/csky/
H A Dcrti.S26 # .init sections. Users may put any desired instructions in those
/netbsd-current/external/gpl3/gcc/dist/libgcc/config/csky/
H A Dcrti.S26 # .init sections. Users may put any desired instructions in those
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DCodeExtractor.cpp1004 std::vector<User *> Users(inputs[i]->user_begin(), inputs[i]->user_end());
1005 for (User *use : Users)
1023 std::vector<User *> Users(header->user_begin(), header->user_end());
1024 for (auto &U : Users)
1228 std::vector<User *> Users(outputs[i]->user_begin(), outputs[i]->user_end());
1229 for (unsigned u = 0, e = Users.size(); u != e; ++u) {
1230 Instruction *inst = cast<Instruction>(Users[u]);
H A DLocal.cpp1934 SmallVector<DbgVariableIntrinsic *, 1> Users;
1935 findDbgUsers(Users, &From);
1936 if (Users.empty())
1945 for (auto *DII : Users) {
1953 // Users which otherwise aren't dominated by the replacement value must
1962 for (auto *DII : Users) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonLoopIdiomRecognition.cpp1344 ValueSeq Users(Cycled.begin(), Cycled.end());
1345 for (unsigned i = 0; i < Users.size(); ++i) {
1346 Value *V = Users[i];
1362 Users.insert(T);
1368 if (Users.empty())
1372 ValueSeq Internal(Users.begin(), Users.end());
1414 if (isa<PHINode>(I) || !Users.count(&*I))
1429 if (Users.count(Op))
1474 if (!Users
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp2523 SmallVectorImpl<WeakTrackingVH> &Users,
2540 Users.emplace_back(I);
2554 Users.emplace_back(I);
2579 Users.emplace_back(I);
2585 Users.emplace_back(I);
2594 Users.emplace_back(I);
2615 SmallVector<WeakTrackingVH, 64> Users; local
2626 if (isAllocSiteRemovable(&MI, Users, &TLI)) {
2627 for (unsigned i = 0, e = Users.size(); i != e; ++i) {
2630 if (!Users[
2522 isAllocSiteRemovable(Instruction *AI, SmallVectorImpl<WeakTrackingVH> &Users, const TargetLibraryInfo *TLI) argument
[all...]
/netbsd-current/games/phantasia/
H A Dinterplayer.c32 Users = 0;
42 ++Users;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DPartialInlining.cpp956 std::vector<User *> Users(DuplicateFunction->user_begin(),
976 for (User *User : Users) {
1407 std::vector<User *> Users(Cloner.ClonedFunc->user_begin(),
1419 for (User *User : Users) {
H A DGlobalOpt.cpp1417 SmallVector<ConstantExpr*,4> Users;
1420 Users.push_back(cast<ConstantExpr>(U));
1430 for (auto *U : Users) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DTypePromotion.cpp423 SmallVector<Instruction*, 4> Users; local
436 Users.push_back(User);
439 for (auto *U : Users)
H A DMachineSink.cpp810 // Users for the defs are all dominated by SuccToSinkTo.
1412 auto &Users = SeenDbgUsers[MO.getReg()];
1413 for (auto &User : Users) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp736 SmallVector<const Value *, 2> Users;
737 Users.push_back(Ptr);
739 // Add PHIs that are equivalent to Ptr to Users.
741 getEquivalentPHIs(*PN, Users);
744 Ptr = Users.pop_back_val();
749 Users.push_back(U);
751 } while (!Users.empty());
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachineRegisterInfo.h827 ArrayRef<MachineInstr *> Users) const {
832 for (MachineInstr *MI : Users) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DControlHeightReduction.cpp1587 SmallVector<Instruction *, 8> Users; local
1595 Users.push_back(UI);
1603 Users.push_back(UI);
1607 if (Users.size() > 0) {
1618 for (Instruction *UI : Users) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp1225 Users.insert(&I);
1367 SmallPtrSet<Instruction *, 4> Users{};
1379 for (auto *I : Users)
1398 for (auto *U1 : Users)
1399 for (auto *U2 : Users)
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DVPlan.cpp83 assert(Users.empty() && "trying to delete a VPValue with remaining users");
1157 VPUser *User = Users[J];

Completed in 225 milliseconds

1234