HomeSort by: relevance | last modified time | path
    Searched defs:User (Results 1 - 25 of 67) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
User.h 1 //===- llvm/User.h - User class definition ----------------------*- C++ -*-===//
10 // Each instance of the Value class keeps track of what User's have handles
38 /// Compile-time customization of User operands.
44 class User : public Value {
52 /// Allocate a User with an operand pointer co-allocated.
58 /// Allocate a User with the operands co-allocated.
63 /// Allocate a User with the operands co-allocated. If DescBytes is non-zero
73 User(Type *ty, unsigned vty, Use *, unsigned NumOps)
80 "Error in initializing hung off uses for User");
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SSAUpdaterBulk.cpp 27 /// user. For PHI-nodes this block is the corresponding predecessor, for other
30 auto *User = cast<Instruction>(U->getUser());
32 if (auto *UserPN = dyn_cast<PHINode>(User))
35 return User->getParent();
LCSSA.cpp 112 Instruction *User = cast<Instruction>(U.getUser());
113 BasicBlock *UserBB = User->getParent();
118 if (auto *PN = dyn_cast<PHINode>(User))
206 Instruction *User = cast<Instruction>(UseToRewrite->getUser());
207 BasicBlock *UserBB = User->getParent();
212 if (auto *PN = dyn_cast<PHINode>(User))
SSAUpdater.cpp 188 Instruction *User = cast<Instruction>(U.getUser());
191 if (PHINode *UserPN = dyn_cast<PHINode>(User))
194 V = GetValueInMiddleOfBlock(User->getParent());
200 Instruction *User = cast<Instruction>(U.getUser());
203 if (PHINode *UserPN = dyn_cast<PHINode>(User))
206 V = GetValueAtEndOfBlock(User->getParent());
343 for (Instruction *User : Insts)
344 UsesByBlock[User->getParent()].push_back(User);
352 for (Instruction *User : Insts)
    [all...]
  /src/external/mit/isl/dist/doc/
manual.tex 81 \chapter{User Manual}
83 \input{user}
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
TypeMetadataUtils.cpp 30 Instruction *User = cast<Instruction>(U.getUser());
37 if (!DT.dominates(CI, User))
39 if (isa<BitCastInst>(User)) {
40 findCallsAtConstantOffset(DevirtCalls, HasNonCallUses, User, Offset, CI,
42 } else if (auto *CI = dyn_cast<CallInst>(User)) {
44 } else if (auto *II = dyn_cast<InvokeInst>(User)) {
57 Value *User = U.getUser();
58 if (isa<BitCastInst>(User)) {
59 findLoadCallsAtConstantOffset(M, DevirtCalls, User, Offset, CI, DT);
60 } else if (isa<LoadInst>(User)) {
    [all...]
IVUsers.cpp 121 /// IVUseShouldUsePostIncValue - We have discovered a "User" of an IV expression
122 /// and now we need to decide whether the user should use the preinc or post-inc
123 /// value. If this user should use the post-inc version of the IV, return true.
129 static bool IVUseShouldUsePostIncValue(Instruction *User, Value *Operand,
131 // If the user is in the loop, use the preinc value.
132 if (L->contains(User))
139 // Ok, the user is outside of the loop. If it is dominated by the latch
141 if (DT->dominates(LatchBlock, User->getParent()))
148 PHINode *PN = dyn_cast<PHINode>(User);
172 // Add this IV user to the Processed set before returning false to ensure tha
    [all...]
  /src/external/gpl3/gdb/dist/sim/testsuite/bfin/
lmu_excpt_prot0.S 122 // go to user mode. and enable exceptions
123 LD32_LABEL(r0, User);
163 // go to user mode. and enable exceptions
164 LD32_LABEL(r0, User);
170 User:
174 // Protection violation - Illegal User Write Access
200 // Protection violation - Illegal User Read Access
lmu_excpt_prot1.S 127 // go to user mode. and enable exceptions
128 LD32_LABEL(r0, User);
169 // go to user mode. and enable exceptions
170 LD32_LABEL(r0, User);
176 User:
180 // Protection violation - Illegal User Write Access
207 // Protection violation - Illegal User Read Access
lmu_excpt_align.S 30 // go to user mode. and enable exceptions
31 LD32_LABEL(r0, User);
40 User:
lmu_excpt_default.S 3 // - MMR access in User mode
4 // - DAG1 Access MMRs (supv/user mode, read/write)
5 // - DAG1 Access Scratch SRAM (user or supervisor mode, read/write)
33 // go to user mode. and enable exceptions
34 LD32_LABEL(r0, User);
126 // Now, go to User mode
127 LD32_LABEL(r0, User);
132 User:
lmu_excpt_illaddr.S 73 // go to user mode. and enable exceptions
74 LD32_LABEL(r0, User);
317 User:
  /src/external/gpl3/gdb.old/dist/sim/testsuite/bfin/
lmu_excpt_prot0.S 122 // go to user mode. and enable exceptions
123 LD32_LABEL(r0, User);
163 // go to user mode. and enable exceptions
164 LD32_LABEL(r0, User);
170 User:
174 // Protection violation - Illegal User Write Access
200 // Protection violation - Illegal User Read Access
lmu_excpt_prot1.S 127 // go to user mode. and enable exceptions
128 LD32_LABEL(r0, User);
169 // go to user mode. and enable exceptions
170 LD32_LABEL(r0, User);
176 User:
180 // Protection violation - Illegal User Write Access
207 // Protection violation - Illegal User Read Access
lmu_excpt_align.S 30 // go to user mode. and enable exceptions
31 LD32_LABEL(r0, User);
40 User:
lmu_excpt_default.S 3 // - MMR access in User mode
4 // - DAG1 Access MMRs (supv/user mode, read/write)
5 // - DAG1 Access Scratch SRAM (user or supervisor mode, read/write)
33 // go to user mode. and enable exceptions
34 LD32_LABEL(r0, User);
126 // Now, go to User mode
127 LD32_LABEL(r0, User);
132 User:
lmu_excpt_illaddr.S 73 // go to user mode. and enable exceptions
74 LD32_LABEL(r0, User);
317 User:
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64PromoteConstant.cpp 104 Instruction *User;
107 UpdateRecord(Constant *C, Instruction *User, unsigned Op)
108 : C(C), User(User), Op(Op) {}
152 Instruction *findInsertionPoint(Instruction &User, unsigned OpNo);
159 /// \param User the user of the constant
165 bool isDominated(Instruction *NewPt, Instruction *User, unsigned OpNo,
173 /// \param User the user of the constan
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
UninitializedValues.h 39 const Expr *User;
55 UninitUse(const Expr *User, bool AlwaysUninit)
56 : User(User), AlwaysUninit(AlwaysUninit) {}
66 const Expr *getUser() const { return User; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ObjCARCInstKind.h 27 /// of a User or CallOrUser).
52 User, ///< could "use" a pointer
58 /// Test if the given class is a kind of user.
113 return isa<InvokeInst>(V) ? ARCInstKind::CallOrUser : ARCInstKind::User;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.cpp 111 static void CheckForPhysRegDependency(SDNode *Def, SDNode *User, unsigned Op,
115 if (Op != 2 || User->getOpcode() != ISD::CopyToReg)
118 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
122 unsigned ResNo = User->getOperand(2).getResNo();
240 SDNode *User = *I;
241 if (User == Node || !Visited.insert(User).second)
244 if (!TII->areLoadsFromSameBasePtr(Base, User, Offset1, Offset2) ||
246 hasTiedInput(User)) {
253 O2SMap.insert(std::make_pair(Offset2, User));
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARC/
ARCOptAddrMode.cpp 147 MachineInstr *User = it->getParent();
148 if (User->isPHI()) {
149 unsigned BBOperandIdx = User->getOperandNo(&*it) + 1;
150 MachineBasicBlock *MBB = User->getOperand(BBOperandIdx).getMBB();
158 User = &*MBB->rbegin();
161 if (!MDT->dominates(MI, User))
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonVectorLoopCarriedReuse.cpp 31 #include "llvm/IR/User.h"
391 Instruction *User = cast<Instruction>(U.getUser());
393 if (User->getParent() != BB)
395 if (ReplacedInsts.count(User)) {
396 LLVM_DEBUG(dbgs() << *User
400 if (isa<PHINode>(User))
402 if (User->mayHaveSideEffects())
404 if (!canReplace(User))
407 PNUsers.push_back(User);
  /src/external/bsd/cron/dist/
crontab.c 32 /* crontab - install and manage per-user crontab files
54 static char User[MAX_UNAME], RealUser[MAX_UNAME];
75 (void)fprintf(stderr, "usage:\t%s [-u user] file\n", getprogname());
76 (void)fprintf(stderr, "\t%s [-u user] [ -e | -l | -r ]\n", getprogname());
78 (void)fprintf(stderr, "\t-e\t(edit user's crontab)\n");
79 (void)fprintf(stderr, "\t-l\t(list user's crontab)\n");
80 (void)fprintf(stderr, "\t-r\t(delete user's crontab)\n");
109 User, getprogname());
190 if (strlen(pw->pw_name) >= sizeof User) {
193 (void)strlcpy(User, pw->pw_name, sizeof(User))
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
VirtualFileSystem.h 50 uint32_t User;
63 llvm::sys::TimePoint<> MTime, uint32_t User, uint32_t Group,
81 uint32_t getUser() const { return User; }
425 Optional<uint32_t> User, Optional<uint32_t> Group,
435 /// path. The VFS owns the buffer. If present, User, Group, Type
442 Optional<uint32_t> User = None, Optional<uint32_t> Group = None,
461 /// If present, User, Group, Type and Perms apply to the newly-created file
468 Optional<uint32_t> User = None,
559 /// User = Group = 0

Completed in 54 milliseconds

1 2 3