| /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| GuardUtils.h | 19 class User; 24 bool isGuard(const User *U); 28 bool isWidenableBranch(const User *U); 32 bool isGuardAsWidenableBranch(const User *U); 43 bool parseWidenableBranch(const User *U, Value *&Condition, 49 bool parseWidenableBranch(User *U, Use *&Cond, Use *&WC, BasicBlock *&IfTrueBB,
|
| 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/include/llvm/CodeGen/GlobalISel/ |
| IRTranslator.h | 51 class User; 207 bool translateCopy(const User &U, const Value &V, 212 bool translateBitCast(const User &U, MachineIRBuilder &MIRBuilder); 215 bool translateLoad(const User &U, MachineIRBuilder &MIRBuilder); 218 bool translateStore(const User &U, MachineIRBuilder &MIRBuilder); 261 bool translateCall(const User &U, MachineIRBuilder &MIRBuilder); 276 bool translateInvoke(const User &U, MachineIRBuilder &MIRBuilder); 278 bool translateCallBr(const User &U, MachineIRBuilder &MIRBuilder); 280 bool translateLandingPad(const User &U, MachineIRBuilder &MIRBuilder); 284 bool translateCast(unsigned Opcode, const User &U [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| User.cpp | 1 //===-- User.cpp - Implement the User class -------------------------------===// 9 #include "llvm/IR/User.h" 18 // User Class 21 void User::replaceUsesOfWith(Value *From, Value *To) { 25 "Cannot call User::replaceUsesOfWith on a constant!"); 41 // User allocHungoffUses Implementation 44 void User::allocHungoffUses(unsigned N, bool IsPhi) { 61 void User::growHungoffUses(unsigned NewNumUses, bool IsPhi) { 87 // This is a private struct used by `User` to track the co-allocated descripto [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| DerivedUser.h | 12 #include "llvm/IR/User.h" 20 /// that wish to inherit from User should instead inherit from DerivedUser 25 /// loophole that allows classes outside of lib/IR to extend User to leverage 27 class DerivedUser : public User { 39 : User(Ty, VK, U, NumOps), DeleteValue(DeleteValue) {}
|
| OperandTraits.h | 10 // layout of various User subclasses. It also provides the means for accessing 17 #include "llvm/IR/User.h" 26 /// when it is a prefix to the User object, and the number of Use objects is 34 "adding virtual methods to subclasses of User breaks use lists"); 40 static unsigned operands(const User*) { 54 static unsigned operands(const User *U) { 64 /// when it is a prefix to the User object, and the number of Use objects is 72 "adding virtual methods to subclasses of User breaks use lists"); 73 return reinterpret_cast<Use*>(U) - static_cast<User*>(U)->getNumOperands(); 78 static unsigned operands(const User *U) [all...] |
| Use.h | 11 /// instruction or some other User instance which refers to a Value. The Use 14 /// Pointer tagging is used to efficiently find the User corresponding to a Use 15 /// without having to store a User pointer in every Use. A User is preceded in 18 /// able to find that User given a pointer to any Use. For details, see: 35 class User; 42 /// directly to the used value when we arrive from the User's operands, and 43 /// jumping directly to the User when we arrive from the Value's uses. 60 Use(User *Parent) : Parent(Parent) {} 64 friend class User; [all...] |
| 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...] |
| GetElementPtrTypeIterator.h | 21 #include "llvm/IR/User.h" 30 template <typename ItTy = User::const_op_iterator> 139 inline gep_type_iterator gep_type_begin(const User *GEP) { 146 inline gep_type_iterator gep_type_end(const User *GEP) { 150 inline gep_type_iterator gep_type_begin(const User &GEP) { 157 inline gep_type_iterator gep_type_end(const User &GEP) {
|
| /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...] |
| GuardUtils.cpp | 18 bool llvm::isGuard(const User *U) { 22 bool llvm::isWidenableBranch(const User *U) { 29 bool llvm::isGuardAsWidenableBranch(const User *U) { 44 bool llvm::parseWidenableBranch(const User *U, Value *&Condition, 49 if (parseWidenableBranch(const_cast<User*>(U), C, WC, IfTrueBB, IfFalseBB)) { 60 bool llvm::parseWidenableBranch(User *U, Use *&C,Use *&WC,
|
| 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...] |
| ValueLatticeUtils.cpp | 31 return all_of(GV->users(), [&](User *U) {
|
| /src/sys/arch/epoc32/stand/e32boot/exe/ |
| netbsd.cpp | 48 User::LeaveIfError(fsSession.Connect()); 50 User::LeaveIfError(file.Open(fsSession, aFilename, EFileRead)); 51 User::LeaveIfError(file.Size(size)); 54 User::LeaveIfError(file.Read(hdrBuf)); 60 User::Leave(KErrNotSupported); 62 User::LeaveIfError(file.Seek(ESeekStart, pos)); 65 User::LeaveIfError(file.Read(fileBuf)); 67 User::Leave(KErrNotFound); 74 (struct loaddesc *)PAGE_ALIGN(User::AllocL(ALIGN_SAFE_PAGE_SIZE));
|
| /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/sys/rump/dev/lib/libputter/ |
| Makefile | 7 COMMENT=User/kernel protocol transporter (for puffs and pud)
|
| /src/crypto/external/bsd/heimdal/dist/lib/hx509/ |
| test_pkcs11.in | 44 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
|
| /src/external/apache2/llvm/dist/llvm/lib/MCA/ |
| Instruction.cpp | 61 for (const std::pair<ReadState *, int> &User : Users) { 62 ReadState *RS = User.first; 63 unsigned ReadCycles = std::max(0, CyclesLeft - User.second); 72 void WriteState::addUser(unsigned IID, ReadState *User, int ReadAdvance) { 74 // update the list of users. We can just notify the user with 78 User->writeStartEvent(IID, RegisterID, ReadCycles); 82 Users.emplace_back(User, ReadAdvance); 85 void WriteState::addUser(unsigned IID, WriteState *User) { 87 User->writeStartEvent(IID, RegisterID, std::max(0, CyclesLeft)); 92 PartialWrite = User; [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/Utils/ |
| AMDGPULDSUtils.cpp | 33 User *InitialUser) { 38 SmallPtrSet<User *, 8> Visited; 39 SmallVector<User *, 16> Stack; 43 User *V = Stack.pop_back_val(); 68 // Unknown user, conservatively lower the variable 101 if (std::none_of(GV.user_begin(), GV.user_end(), [&](User *U) {
|
| AMDGPULDSUtils.h | 27 User *InitialUser);
|
| /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/llvm/lib/CodeGen/SelectionDAG/ |
| SelectionDAGBuilder.h | 86 class User; 489 void visit(unsigned Opcode, const User &I); 684 void visitUnary(const User &I, unsigned Opcode); 685 void visitFNeg(const User &I) { visitUnary(I, ISD::FNEG); } 687 void visitBinary(const User &I, unsigned Opcode); 688 void visitShift(const User &I, unsigned Opcode); 689 void visitAdd(const User &I) { visitBinary(I, ISD::ADD); } 690 void visitFAdd(const User &I) { visitBinary(I, ISD::FADD); } 691 void visitSub(const User &I) { visitBinary(I, ISD::SUB); } 692 void visitFSub(const User &I) { visitBinary(I, ISD::FSUB); [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| 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/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/bsd/kyua-cli/etc/kyua/ |
| kyua.conf | 9 -- User to drop privileges to when invoking kyua(1) as root and a test case
|