Home
last modified time | relevance | path

Searched refs:User (Results 1 – 25 of 338) sorted by relevance

12345678910>>...14

/minix/external/bsd/llvm/dist/llvm/lib/IR/
H A DUser.cpp21 void User::anchor() {} in anchor()
23 void User::replaceUsesOfWith(Value *From, Value *To) { in replaceUsesOfWith()
42 Use *User::allocHungoffUses(unsigned N) const { in allocHungoffUses()
48 (void) new(End) Use::UserRef(const_cast<User*>(this), 1); in allocHungoffUses()
56 void *User::operator new(size_t s, unsigned Us) { in operator new()
60 User *Obj = reinterpret_cast<User*>(End); in operator new()
71 void User::operator delete(void *Usr) { in operator delete()
72 User *Start = static_cast<User*>(Usr); in operator delete()
H A DDominators.cpp82 const Instruction *User) const { in dominates()
83 const BasicBlock *UseBB = User->getParent(); in dominates()
95 if (Def == User) in dominates()
102 if (isa<InvokeInst>(Def) || isa<PHINode>(User)) in dominates()
110 for (; &*I != Def && &*I != User; ++I) in dominates()
/minix/external/bsd/llvm/dist/llvm/lib/Analysis/
H A DScalarEvolutionNormalization.cpp32 if (L->contains(User)) return false; in IVUseShouldUsePostIncValue()
40 if (DT->dominates(LatchBlock, User->getParent())) in IVUseShouldUsePostIncValue()
47 PHINode *PN = dyn_cast<PHINode>(User); in IVUseShouldUsePostIncValue()
80 const SCEV *TransformSubExpr(const SCEV *S, Instruction *User,
84 const SCEV *TransformImpl(const SCEV *S, Instruction *User,
96 const SCEV *N = TransformSubExpr(O, User, OperandValToReplace); in TransformImpl()
136 User, OperandValToReplace); in TransformImpl()
167 User, OperandValToReplace); in TransformImpl()
182 User, OperandValToReplace); in TransformImpl()
238 Result = TransformImpl(S, User, OperandValToReplace); in TransformSubExpr()
[all …]
H A DIVUsers.cpp148 if (!UniqueUsers.insert(User).second) in AddUsersImpl()
152 if (isa<PHINode>(User) && Processed.count(User)) in AddUsersImpl()
157 BasicBlock *UseBB = User->getParent(); in AddUsersImpl()
159 if (PHINode *PHI = dyn_cast<PHINode>(User)) { in AddUsersImpl()
174 if (LI->getLoopFor(User->getParent()) != L) { in AddUsersImpl()
175 if (isa<PHINode>(User) || Processed.count(User) || in AddUsersImpl()
176 !AddUsersImpl(User, SimpleLoopNests)) { in AddUsersImpl()
181 } else if (Processed.count(User) || !AddUsersImpl(User, SimpleLoopNests)) { in AddUsersImpl()
182 DEBUG(dbgs() << "FOUND USER: " << *User << '\n' in AddUsersImpl()
189 IVStrideUse &NewUse = AddUser(User, I); in AddUsersImpl()
[all …]
H A DCodeMetrics.cpp48 for (const User *I : V->users()) in completeEphemeralValues()
60 if (const User *U = dyn_cast<User>(V)) in completeEphemeralValues()
/minix/external/bsd/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h727 void visitFSub(const User &I);
734 void visitSDiv(const User &I);
742 void visitICmp(const User &I);
743 void visitFCmp(const User &I);
745 void visitTrunc(const User &I);
746 void visitZExt(const User &I);
747 void visitSExt(const User &I);
749 void visitFPExt(const User &I);
750 void visitFPToUI(const User &I);
751 void visitFPToSI(const User &I);
[all …]
H A DInstrEmitter.cpp111 for (SDNode *User : Node->uses()) { in EmitCopyFromReg()
113 if (User->getOpcode() == ISD::CopyToReg && in EmitCopyFromReg()
124 SDValue Op = User->getOperand(i); in EmitCopyFromReg()
131 if (User->isMachineOpcode()) { in EmitCopyFromReg()
195 SDNode *User = *Node->use_begin(); in getDstOfOnlyCopyToRegUse() local
196 if (User->getOpcode() == ISD::CopyToReg && in getDstOfOnlyCopyToRegUse()
197 User->getOperand(2).getNode() == Node && in getDstOfOnlyCopyToRegUse()
198 User->getOperand(2).getResNo() == ResNo) { in getDstOfOnlyCopyToRegUse()
244 for (SDNode *User : Node->uses()) { in CreateVirtualRegisters()
474 for (SDNode *User : Node->uses()) { in EmitSubregNode()
[all …]
/minix/external/bsd/llvm/dist/llvm/include/llvm/IR/
H A DUser.h35 class User : public Value {
36 User(const User &) LLVM_DELETED_FUNCTION;
51 User(Type *ty, unsigned vty, Use *OpList, unsigned NumOps) in User() function
63 ~User() { in ~User()
176 template<> struct simplify_type<User::op_iterator> {
178 static SimpleType getSimplifiedValue(User::op_iterator &Val) {
182 template<> struct simplify_type<User::const_op_iterator> {
184 static SimpleType getSimplifiedValue(User::const_op_iterator &Val) {
H A DOperandTraits.h38 static unsigned operands(const User*) { in operands()
52 static unsigned operands(const User *U) { in operands()
68 return reinterpret_cast<Use*>(U) - static_cast<User*>(U)->getNumOperands(); in op_begin()
73 static unsigned operands(const User *U) { in operands()
94 static Use *op_begin(User* U) { in op_begin()
97 static Use *op_end(User* U) { in op_end()
100 static unsigned operands(const User *U) { in operands()
H A DGetElementPtrTypeIterator.h22 template<typename ItTy = User::const_op_iterator>
85 inline gep_type_iterator gep_type_begin(const User *GEP) { in gep_type_begin()
89 inline gep_type_iterator gep_type_end(const User *GEP) { in gep_type_end()
92 inline gep_type_iterator gep_type_begin(const User &GEP) { in gep_type_begin()
96 inline gep_type_iterator gep_type_end(const User &GEP) { in gep_type_end()
H A DCallSite.h41 typename UserTy = const User,
45 typename IterTy = User::const_op_iterator>
350 class CallSite : public CallSiteBase<Function, Value, User, Instruction,
351 CallInst, InvokeInst, User::op_iterator> {
352 typedef CallSiteBase<Function, Value, User, Instruction,
353 CallInst, InvokeInst, User::op_iterator> Base;
369 User::op_iterator getCallee() const;
H A DUse.h38 class User; variable
77 typedef PointerIntPair<User *, 1, unsigned> UserRef;
101 User *getUser() const;
/minix/external/bsd/llvm/dist/llvm/lib/Transforms/Utils/
H A DSSAUpdater.cpp180 if (PHINode *UserPN = dyn_cast<PHINode>(User)) in RewriteUse()
349 Instruction *User = Insts[i]; in run() local
350 UsesByBlock[User->getParent()].push_back(User); in run()
360 Instruction *User = Insts[i]; in run() local
361 BasicBlock *BB = User->getParent(); in run()
458 Instruction *User = Insts[i]; in run() local
464 if (!User->use_empty()) { in run()
465 Value *NewVal = ReplacedLoads[User]; in run()
478 User->replaceAllUsesWith(NewVal); in run()
481 instructionDeleted(User); in run()
[all …]
H A DLCSSA.cpp70 Instruction *User = cast<Instruction>(U.getUser()); in processInstruction() local
71 BasicBlock *UserBB = User->getParent(); in processInstruction()
72 if (PHINode *PN = dyn_cast<PHINode>(User)) in processInstruction()
156 Instruction *User = cast<Instruction>(UsesToRewrite[i]->getUser()); in processInstruction() local
157 BasicBlock *UserBB = User->getParent(); in processInstruction()
158 if (PHINode *PN = dyn_cast<PHINode>(User)) in processInstruction()
/minix/external/bsd/llvm/dist/clang/include/clang/Analysis/Analyses/
H A DUninitializedValues.h39 const Expr *User;
55 UninitUse(const Expr *User, bool AlwaysUninit) in UninitUse() argument
56 : User(User), UninitAfterCall(false), UninitAfterDecl(false), in UninitUse()
67 const Expr *getUser() const { return User; } in getUser()
/minix/external/bsd/tcpdump/dist/tests/
H A Dradius-rfc4675-v.out4 User-Name Attribute (1), length: 12, Value: bob-tagged
5 User-Password Attribute (2), length: 18, Value:
15 User-Priority-Table Attribute (59), length: 10, Value:
19 User-Name Attribute (1), length: 14, Value: bob-untagged
20 User-Password Attribute (2), length: 18, Value:
33 User-Name Attribute (1), length: 13, Value: bob-invalid
34 User-Password Attribute (2), length: 18, Value:
/minix/external/bsd/llvm/dist/llvm/test/YAMLParser/
H A Dspec-02-28.data5 User: ed
11 User: ed
17 User: ed
/minix/external/bsd/llvm/dist/llvm/lib/Target/R600/
H A DAMDGPUPromoteAlloca.cpp165 for (User *AllocaUser : Alloca->users()) { in tryPromoteAllocaToVector()
185 for (User *GEPUser : AllocaUser->users()) { in tryPromoteAllocaToVector()
239 for (User *User : Val->users()) { in collectUsesWithPtrTypes()
240 if(std::find(WorkList.begin(), WorkList.end(), User) != WorkList.end()) in collectUsesWithPtrTypes()
242 if (isa<CallInst>(User)) { in collectUsesWithPtrTypes()
243 WorkList.push_back(User); in collectUsesWithPtrTypes()
248 Instruction *UseInst = dyn_cast<Instruction>(User); in collectUsesWithPtrTypes()
252 if (!User->getType()->isPointerTy()) in collectUsesWithPtrTypes()
255 WorkList.push_back(User); in collectUsesWithPtrTypes()
257 Success &= collectUsesWithPtrTypes(User, WorkList); in collectUsesWithPtrTypes()
/minix/external/bsd/llvm/dist/llvm/unittests/IR/
H A DUseTest.cpp52 for (User *U : X.users()) { in TEST()
62 for (User *U : X.users()) { in TEST()
97 for (User *U : X.users()) { in TEST()
105 for (User *U : X.users()) { in TEST()
/minix/external/bsd/llvm/dist/llvm/include/llvm/CodeGen/
H A DFastISel.h245 bool selectOperator(const User *I, unsigned Opcode);
497 bool canFoldAddIntoGEP(const User *GEP, const Value *Add);
526 bool selectBinaryOp(const User *I, unsigned ISDOpcode);
527 bool selectFNeg(const User *I);
528 bool selectGetElementPtr(const User *I);
531 bool selectCall(const User *Call);
533 bool selectBitCast(const User *I);
534 bool selectCast(const User *I, unsigned Opcode);
535 bool selectExtractValue(const User *I);
536 bool selectInsertValue(const User *I);
/minix/crypto/external/bsd/heimdal/dist/lib/hx509/
H A Dtest_pkcs11.in44 certificate cert User certificate FILE:$srcdir/data/test.crt,$srcdir/data/test.key
54 certificate cert User certificate FILE:$srcdir/data/test.crt,$srcdir/data/test-pw.key
/minix/external/bsd/llvm/dist/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp476 for (User *U : V->users()) { in CanConvertToScalar()
632 IRBuilder<> Builder(User); in ConvertUsesToScalar()
1155 for (User *U : SI->users()) { in isSafeSelectToSpeculate()
1195 for (User *U : PN->users()) { in isSafePHIToSpeculate()
1254 for (User *U : AI->users()) { in tryToMakeAllocaBePromotable()
1449 for (User *U : AI->users()) in performPromotion()
1626 return MarkUnsafe(Info, User); in isSafeForScalarRepl()
1652 } else if (isa<PHINode>(User) || isa<SelectInst>(User)) { in isSafeForScalarRepl()
1655 return MarkUnsafe(Info, User); in isSafeForScalarRepl()
1678 for (User *U : I->users()) { in isSafePHISelectUseForScalarRepl()
[all …]
/minix/crypto/external/bsd/openssl/dist/ssl/
H A Dssl-lib.com344 $! Tell The User We Are Creating The SSL_TASK.
346 $! Tell The User We Are Creating The SSL_TASK.
350 $! Tell The User What File We Are Compiling.
559 $! Check The User's Options.
652 $! Tell The User Entered An Invalid Option.
925 $! Check To See If The User Wanted DECC.
934 $! Tell The User We Are Using DECC.
964 $! Tell The User We Are Using VAX C.
1002 $! Tell The User We Are Using GNUC.
1068 $! Else The User Entered An Invalid Argument.
[all …]
/minix/external/bsd/llvm/dist/llvm/unittests/Transforms/Utils/
H A DIntegerDivision.cpp49 Instruction* Quotient = dyn_cast<Instruction>(cast<User>(Ret)->getOperand(0)); in TEST()
79 Instruction* Quotient = dyn_cast<Instruction>(cast<User>(Ret)->getOperand(0)); in TEST()
109 Instruction* Remainder = dyn_cast<Instruction>(cast<User>(Ret)->getOperand(0)); in TEST()
139 Instruction* Remainder = dyn_cast<Instruction>(cast<User>(Ret)->getOperand(0)); in TEST()
170 Instruction* Quotient = dyn_cast<Instruction>(cast<User>(Ret)->getOperand(0)); in TEST()
200 Instruction* Quotient = dyn_cast<Instruction>(cast<User>(Ret)->getOperand(0)); in TEST()
230 Instruction* Remainder = dyn_cast<Instruction>(cast<User>(Ret)->getOperand(0)); in TEST()
260 Instruction* Remainder = dyn_cast<Instruction>(cast<User>(Ret)->getOperand(0)); in TEST()
/minix/external/bsd/llvm/dist/clang/test/CXX/temp/temp.decls/temp.friend/
H A Dp1.cpp93 template <class T> class User;
97 friend class User<bool>;
103 template <class T> class User { class
118 template class User<bool>; variable
119 template class User<int>; // expected-note {{requested here}} variable

12345678910>>...14