Searched refs:User (Results 1 - 25 of 378) sorted by relevance

1234567891011>>

/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DDataFlow.h17 #include "llvm/User.h"
60 template <> struct GraphTraits<Inverse<const User*> > {
62 typedef User::const_op_iterator ChildIteratorType;
64 static NodeType *getEntryNode(Inverse<const User*> G) {
69 if (const User *U = dyn_cast<User>(N))
75 if(const User *U = dyn_cast<User>(N))
81 template <> struct GraphTraits<Inverse<User*> > {
83 typedef User
[all...]
H A DGetElementPtrTypeIterator.h18 #include "llvm/User.h"
22 template<typename ItTy = User::const_op_iterator>
85 inline gep_type_iterator gep_type_begin(const User *GEP) {
89 inline gep_type_iterator gep_type_end(const User *GEP) {
92 inline gep_type_iterator gep_type_begin(const User &GEP) {
96 inline gep_type_iterator gep_type_end(const User &GEP) {
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DUser.cpp1 //===-- User.cpp - Implement the User class -------------------------------===//
12 #include "llvm/User.h"
17 // User Class
23 void User::replaceUsesOfWith(Value *From, Value *To) {
27 "Cannot call User::replaceUsesOfWith on a constant!");
39 // User allocHungoffUses Implementation
42 Use *User::allocHungoffUses(unsigned N) const {
44 // the User.
48 (void) new(End) Use::UserRef(const_cast<User*>(thi
[all...]
/external/llvm/lib/IR/
H A DUser.cpp1 //===-- User.cpp - Implement the User class -------------------------------===//
10 #include "llvm/IR/User.h"
19 // User Class
22 void User::anchor() {}
24 void User::replaceUsesOfWith(Value *From, Value *To) {
28 "Cannot call User::replaceUsesOfWith on a constant!");
40 // User allocHungoffUses Implementation
43 void User::allocHungoffUses(unsigned N, bool IsPhi) {
53 // the User
[all...]
/external/llvm/lib/Analysis/
H A DTypeMetadataUtils.cpp27 Value *User = U.getUser(); local
28 if (isa<BitCastInst>(User)) {
29 findCallsAtConstantOffset(DevirtCalls, HasNonCallUses, User, Offset);
30 } else if (auto CI = dyn_cast<CallInst>(User)) {
32 } else if (auto II = dyn_cast<InvokeInst>(User)) {
46 Value *User = U.getUser(); local
47 if (isa<BitCastInst>(User)) {
48 findLoadCallsAtConstantOffset(M, DevirtCalls, User, Offset);
49 } else if (isa<LoadInst>(User)) {
50 findCallsAtConstantOffset(DevirtCalls, nullptr, User, Offse
[all...]
H A DScalarEvolutionNormalization.cpp21 /// IVUseShouldUsePostIncValue - We have discovered a "User" of an IV expression
29 static bool IVUseShouldUsePostIncValue(Instruction *User, Value *Operand, argument
32 if (L->contains(User)) return false;
40 if (DT->dominates(LatchBlock, User->getParent()))
47 PHINode *PN = dyn_cast<PHINode>(User);
80 const SCEV *TransformSubExpr(const SCEV *S, Instruction *User,
84 const SCEV *TransformImpl(const SCEV *S, Instruction *User,
92 TransformImpl(const SCEV *S, Instruction *User, Value *OperandValToReplace) { argument
96 const SCEV *N = TransformSubExpr(O, User, OperandValToReplace);
133 IVUseShouldUsePostIncValue(User, OperandValToReplac
229 TransformSubExpr(const SCEV *S, Instruction *User, Value *OperandValToReplace) argument
245 TransformForPostIncUse(TransformKind Kind, const SCEV *S, Instruction *User, Value *OperandValToReplace, PostIncLoopSet &Loops, ScalarEvolution &SE, DominatorTree &DT) argument
[all...]
H A DIVUsers.cpp158 Instruction *User = cast<Instruction>(U.getUser()); local
159 if (!UniqueUsers.insert(User).second)
163 if (isa<PHINode>(User) && Processed.count(User))
168 BasicBlock *UseBB = User->getParent();
170 if (PHINode *PHI = dyn_cast<PHINode>(User)) {
182 // If User is already in Processed, we don't want to recurse into it again,
185 if (LI->getLoopFor(User->getParent()) != L) {
186 if (isa<PHINode>(User) || Processed.count(User) ||
244 AddUser(Instruction *User, Value *Operand) argument
[all...]
/external/ppp/pppd/plugins/radius/etc/
H A Ddictionary.compat6 ATTRIBUTE User-Service-Type 6 integer
19 VALUE Service-Type Shell-User 6
21 VALUE Service-Type Dialback-Login-User 3
22 VALUE Service-Type Dialback-Framed-User 4
37 VALUE Service-Type Exec-User 7
43 ATTRIBUTE User-Name-Is-Star 1035 integer
44 VALUE User-Name-Is-Star No 0
45 VALUE User-Name-Is-Star Yes 1
/external/autotest/frontend/
H A Dapache_auth.py1 from django.contrib.auth.models import User, Group, check_password namespace
17 frontend.afe.models.User database.
21 user = User.objects.get(username=username)
22 except User.DoesNotExist:
24 user = User(username=username,
37 user, created = models.User.objects.get_or_create(login=username)
43 return User.objects.get(pk=user_id)
44 except User.DoesNotExist:
73 system, and replaces the username in thread_local with the actual User model
85 thread_local.set_user(models.User
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/
H A DUser.h1 //===-- llvm/User.h - User class definition ---------------------*- C++ -*-===//
11 // Each instance of the Value class keeps track of what User's have handles
14 // * Instructions are the largest class of User's.
28 /// for use of the User class
32 class User : public Value { class in namespace:llvm
33 User(const User &); // Do not implement
38 /// OperandList - This is a pointer to the array of Uses for this User.
45 /// NumOperands - The number of values used by this User
50 User(Type *ty, unsigned vty, Use *OpList, unsigned NumOps) function in class:llvm::User
[all...]
H A DOperandTraits.h11 // layout of various User subclasses. It also provides the means for accessing
18 #include "llvm/User.h"
27 /// when it is a prefix to the User object, and the number of Use objects is
38 static unsigned operands(const User*) { argument
52 static unsigned operands(const User *U) {
62 /// when it is a prefix to the User object, and the number of Use objects is
68 return reinterpret_cast<Use*>(U) - static_cast<User*>(U)->getNumOperands();
73 static unsigned operands(const User *U) {
83 /// when it is not a prefix to the User object, but allocated at an unrelated
85 /// Assumes that the User subclas
[all...]
/external/clang/include/clang/Analysis/Analyses/
H A DUninitializedValues.h39 const Expr *User; member in class:clang::UninitUse
55 UninitUse(const Expr *User, bool AlwaysUninit) argument
56 : User(User), UninitAfterCall(false), UninitAfterDecl(false),
67 const Expr *getUser() const { return User; }
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DScalarEvolutionNormalization.cpp21 /// IVUseShouldUsePostIncValue - We have discovered a "User" of an IV expression
29 static bool IVUseShouldUsePostIncValue(Instruction *User, Value *Operand, argument
32 if (L->contains(User)) return false;
40 if (DT->dominates(LatchBlock, User->getParent()))
47 PHINode *PN = dyn_cast<PHINode>(User);
80 const SCEV *TransformSubExpr(const SCEV *S, Instruction *User,
84 const SCEV *TransformImpl(const SCEV *S, Instruction *User,
92 TransformImpl(const SCEV *S, Instruction *User, Value *OperandValToReplace) { argument
96 const SCEV *N = TransformSubExpr(O, User, OperandValToReplace);
123 if (IVUseShouldUsePostIncValue(User, OperandValToReplac
200 TransformSubExpr(const SCEV *S, Instruction *User, Value *OperandValToReplace) argument
216 TransformForPostIncUse(TransformKind Kind, const SCEV *S, Instruction *User, Value *OperandValToReplace, PostIncLoopSet &Loops, ScalarEvolution &SE, DominatorTree &DT) argument
[all...]
H A DIVUsers.cpp110 Instruction *User = cast<Instruction>(*UI); local
111 if (!UniqueUsers.insert(User))
115 if (isa<PHINode>(User) && Processed.count(User))
122 // If User is already in Processed, we don't want to recurse into it again,
125 if (LI->getLoopFor(User->getParent()) != L) {
126 if (isa<PHINode>(User) || Processed.count(User) ||
127 !AddUsersIfInteresting(User)) {
128 DEBUG(dbgs() << "FOUND USER in other loop: " << *User << '\
156 AddUser(Instruction *User, Value *Operand) argument
[all...]
/external/swiftshader/third_party/LLVM/tools/opt/
H A DAnalysisWrappers.cpp42 Instruction *User = dyn_cast<Instruction>(*UI); local
43 if (!User) continue;
45 CallSite CS(cast<Value>(User));
56 errs() << *User;
/external/llvm/include/llvm/IR/
H A DOperandTraits.h11 // layout of various User subclasses. It also provides the means for accessing
18 #include "llvm/IR/User.h"
27 /// when it is a prefix to the User object, and the number of Use objects is
38 static unsigned operands(const User*) { argument
52 static unsigned operands(const User *U) {
62 /// when it is a prefix to the User object, and the number of Use objects is
68 return reinterpret_cast<Use*>(U) - static_cast<User*>(U)->getNumOperands();
73 static unsigned operands(const User *U) {
83 /// when it is not a prefix to the User object, but allocated at an unrelated
85 /// Assumes that the User subclas
[all...]
H A DUser.h1 //===-- llvm/User.h - User class definition ---------------------*- C++ -*-===//
11 // Each instance of the Value class keeps track of what User's have handles
33 /// \brief Compile-time customization of User operands.
39 class User : public Value { class in namespace:llvm
40 User(const User &) = delete;
49 /// Allocate a User with an operand pointer co-allocated.
55 /// Allocate a User with the operands co-allocated.
60 /// Allocate a User wit
70 User(Type *ty, unsigned vty, Use *, unsigned NumOps) function in class:llvm::User
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h385 void visit(unsigned Opcode, const User &I);
476 void visitBinary(const User &I, unsigned OpCode);
477 void visitShift(const User &I, unsigned Opcode);
478 void visitAdd(const User &I) { visitBinary(I, ISD::ADD); }
479 void visitFAdd(const User &I) { visitBinary(I, ISD::FADD); }
480 void visitSub(const User &I) { visitBinary(I, ISD::SUB); }
481 void visitFSub(const User &I);
482 void visitMul(const User &I) { visitBinary(I, ISD::MUL); }
483 void visitFMul(const User &I) { visitBinary(I, ISD::FMUL); }
484 void visitURem(const User
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64PromoteConstant.cpp96 Instruction *User; member in struct:__anon12821::AArch64PromoteConstant::UpdateRecord
99 UpdateRecord(Constant *C, Instruction *User, unsigned Op) argument
100 : C(C), User(User), Op(Op) {}
141 Instruction *findInsertionPoint(Instruction &User, unsigned OpNo);
148 /// \param User the user of the constant
154 bool isDominated(Instruction *NewPt, Instruction *User, unsigned OpNo,
162 /// \param User the user of the constant
170 bool tryAndMerge(Instruction *NewPt, Instruction *User, unsigned OpNo,
177 /// \param User th
196 appendAndTransferDominatedUses(Instruction *NewPt, Instruction *User, unsigned OpNo, InsertionPoints::iterator &IPI, InsertionPoints &InsertPts) argument
349 findInsertionPoint(Instruction &User, unsigned OpNo) argument
359 isDominated(Instruction *NewPt, Instruction *User, unsigned OpNo, InsertionPoints &InsertPts) argument
386 tryAndMerge(Instruction *NewPt, Instruction *User, unsigned OpNo, InsertionPoints &InsertPts) argument
437 computeInsertionPoint( Instruction *User, unsigned OpNo, InsertionPoints &InsertPts) argument
[all...]
/external/llvm/include/llvm/Analysis/
H A DScalarEvolutionNormalization.h70 Instruction *User,
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
H A DScalarEvolutionNormalization.h70 Instruction *User,
/external/valgrind/gdbserver_tests/
H A Dnlvgdbsigqueue.stdoutB.exp10 Program received signal SIGUSR1, User defined signal 1.
14 Program received signal SIGUSR1, User defined signal 1.
/external/llvm/lib/Transforms/Utils/
H A DSSAUpdater.cpp179 Instruction *User = cast<Instruction>(U.getUser()); local
182 if (PHINode *UserPN = dyn_cast<PHINode>(User))
185 V = GetValueInMiddleOfBlock(User->getParent());
196 Instruction *User = cast<Instruction>(U.getUser()); local
199 if (PHINode *UserPN = dyn_cast<PHINode>(User))
202 V = GetValueAtEndOfBlock(User->getParent());
349 for (Instruction *User : Insts)
350 UsesByBlock[User->getParent()].push_back(User);
358 for (Instruction *User
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DSSAUpdater.cpp206 Instruction *User = cast<Instruction>(U.getUser()); local
209 if (PHINode *UserPN = dyn_cast<PHINode>(User))
212 V = GetValueInMiddleOfBlock(User->getParent());
222 Instruction *User = cast<Instruction>(U.getUser()); local
225 if (PHINode *UserPN = dyn_cast<PHINode>(User))
228 V = GetValueAtEndOfBlock(User->getParent());
385 Instruction *User = Insts[i]; local
386 UsesByBlock[User->getParent()].push_back(User);
396 Instruction *User local
494 Instruction *User = Insts[i]; local
[all...]
/external/autotest/scheduler/shard/
H A Dshard_client_integration_tests.py119 models.User.deserialize(serialized_user)
120 models.User.objects.get(id=3, login='test_user')
124 models.User.deserialize(serialized_user)
125 models.User.objects.get(id=3, login='fake_user')
130 models.User.objects.all().delete()
131 models.User.deserialize(serialized_user)
132 models.User.objects.get(login='new_user')

Completed in 622 milliseconds

1234567891011>>