Searched defs:User (Results 1 - 25 of 55) sorted by last modified time

123

/external/valgrind/main/drd/tests/
H A Dtsan_unittest.cpp2670 void User() { function in namespace:test53
2690 MyThreadArray t(Initializer, User, User);
2715 void User() { function in namespace:test54
2733 MyThreadArray t(Initializer, User, User);
2830 // test58: TN. User defined synchronization. {{{1
2871 // test59: TN. User defined synchronization. Annotated {{{1
/external/valgrind/main/memcheck/
H A Dmc_errors.c148 } User; member in union:_MC_Error::__anon33008
505 if (!extra->Err.User.isAddrErr)
511 extra->Err.User.isAddrErr
514 VG_(pp_addrinfo_mc)(VG_(get_error_address)(err), &extra->Err.User.ai,
516 if (extra->Err.User.origin_ec && !extra->Err.User.isAddrErr)
517 mc_pp_origin( extra->Err.User.origin_ec,
518 extra->Err.User.otag & 3 );
521 extra->Err.User.isAddrErr
524 VG_(pp_addrinfo_mc)(VG_(get_error_address)(err), &extra->Err.User
[all...]
/external/robolectric/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp542 ExternalUser (Value *S, llvm::User *U, int L) :
543 Scalar(S), User(U), Lane(L){};
547 llvm::User *User; member in struct:__anon26372::BoUpSLP::ExternalUser
554 /// This list holds pairs of (Internal Scalar : External User).
612 for (User *U : Scalar->users()) {
731 for (User *U : Scalar->users()) {
743 DEBUG(dbgs() << "SLP: User from a different basic block "
800 for (User *U : VL[i]->users()) {
1955 llvm::User *Use local
[all...]
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h250 /// User - The user of this value.
251 SDNode *User; member in class:llvm::SDUse
260 SDUse() : Val(), User(nullptr), Prev(nullptr), Next(nullptr) {}
270 SDNode *getUser() { return User; }
301 void setUser(SDNode *p) { User = p; }
/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
31 /// for use of the User class
35 class User : public Value { class in namespace:llvm
36 User(const User &) LLVM_DELETED_FUNCTION;
42 /// NumOperands - The number of values used by this User.
46 /// OperandList - This is a pointer to the array of Uses for this User.
54 User(Typ function in class:llvm::User
[all...]
/external/llvm/lib/Analysis/
H A DIVUsers.cpp147 Instruction *User = cast<Instruction>(U.getUser()); local
148 if (!UniqueUsers.insert(User))
152 if (isa<PHINode>(User) && Processed.count(User))
157 BasicBlock *UseBB = User->getParent();
159 if (PHINode *PHI = dyn_cast<PHINode>(User)) {
171 // If User is already in Processed, we don't want to recurse into it again,
174 if (LI->getLoopFor(User->getParent()) != L) {
175 if (isa<PHINode>(User) || Processed.count(User) ||
233 AddUser(Instruction *User, Value *Operand) argument
[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...]
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp349 for (const User *U : PN->users()) {
353 // If User is inside DestBB block and it is a PHINode then check
489 Instruction *User = cast<Instruction>(*UI); local
493 BasicBlock *UserBB = User->getParent();
494 if (PHINode *PN = dyn_cast<PHINode>(User)) {
582 Instruction *User = cast<Instruction>(*UI); local
588 if (isa<PHINode>(User))
592 BasicBlock *UserBB = User->getParent();
626 static bool isExtractBitsCandidateUse(Instruction *User) { argument
627 if (!isa<TruncInst>(User)) {
643 SinkShiftAndTruncate(BinaryOperator *ShiftI, Instruction *User, ConstantInt *CI, DenseMap<BasicBlock *, BinaryOperator *> &InsertedShifts, const TargetLowering &TLI) argument
738 Instruction *User = cast<Instruction>(*UI); local
2425 Instruction *User = MemoryUses[i].first; local
2930 Instruction *User = cast<Instruction>(U.getUser()); local
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp4866 SDNode *User = *UI; local
4867 if (User == N)
4872 if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) {
4873 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
4879 SDValue UseOp = User->getOperand(i);
4887 ExtendNodes.push_back(User);
4895 if (User->getOpcode() == ISD::CopyToReg)
8538 SDNode *User = *UI; local
8542 if (User->getOpcode() == ISD::SRL && User
[all...]
H A DFastISel.cpp361 bool FastISel::SelectBinaryOp(const User *I, unsigned ISDOpcode) {
469 bool FastISel::SelectGetElementPtr(const User *I) {
665 bool FastISel::SelectCall(const User *I) {
838 bool FastISel::SelectCast(const User *I, unsigned Opcode) {
873 bool FastISel::SelectBitCast(const User *I) {
1008 FastISel::SelectFNeg(const User *I) {
1052 FastISel::SelectExtractValue(const User *U) {
1093 FastISel::SelectOperator(const User *I, unsigned Opcode) {
1720 MachineInstr *User = RI->getParent(); local
1725 FuncInfo.InsertPt = User;
[all...]
H A DLegalizeTypes.cpp355 SDNode *User = *UI; local
356 int NodeId = User->getNodeId();
361 User->setNodeId(NodeId-1);
365 Worklist.push_back(User);
379 User->setNodeId(User->getNumOperands() - 1);
382 if (User->getNumOperands() == 1)
383 Worklist.push_back(User);
H A DScheduleDAGFast.cpp733 SDNode *User = findGluedUser(N); local
734 if (User) {
736 GluedMap.insert(std::make_pair(N, User));
H A DScheduleDAGSDNodes.cpp111 static void CheckForPhysRegDependency(SDNode *Def, SDNode *User, unsigned Op, argument
115 if (Op != 2 || User->getOpcode() != ISD::CopyToReg)
118 unsigned Reg = cast<RegisterSDNode>(User->getOperand(1))->getReg();
122 unsigned ResNo = User->getOperand(2).getResNo();
228 SDNode *User = *I; local
229 if (User == Node || !Visited.insert(User))
232 if (!TII->areLoadsFromSameBasePtr(Base, User, Offset1, Offset2) ||
239 O2SMap.insert(std::make_pair(Offset2, User));
242 Base = User;
[all...]
H A DSelectionDAG.cpp5822 SDNode *User = *UI; local
5825 RemoveNodeFromCSEMaps(User);
5835 } while (UI != UE && *UI == User);
5837 // Now that we have modified User, add it back to the CSE maps. If it
5839 AddModifiedNodeToCSEMaps(User);
5870 SDNode *User = *UI; local
5873 RemoveNodeFromCSEMaps(User);
5883 } while (UI != UE && *UI == User);
5885 // Now that we have modified User, add it back to the CSE maps. If it
5887 AddModifiedNodeToCSEMaps(User);
5909 SDNode *User = *UI; local
5954 SDNode *User = *UI; local
6000 SDNode *User; member in struct:__anon25813::UseMemo
6046 SDNode *User = Uses[UseIndex].User; local
6306 SDNode *User = *I; local
[all...]
H A DSelectionDAGISel.cpp2006 SDNode *User = *UI; local
2008 if (User->getOpcode() == ISD::HANDLENODE) // Root of the graph.
2014 unsigned UserOpcode = User->getOpcode();
2015 if (User->isMachineOpcode() ||
2024 if (User->getNodeId() == -1)
2029 if (User->getOpcode() != ISD::TokenFactor) {
2041 ChainedNodesInPattern.end(), User))
2052 InteriorChainedNodes.push_back(User);
2079 switch (WalkChainUsers(User, ChainedNodesInPattern, InteriorChainedNodes)) {
2099 ChainedNodesInPattern.push_back(User);
[all...]
/external/llvm/lib/IR/
H A DConstants.cpp346 for (const User *U : users()) {
416 const Constant *User = dyn_cast<Constant>(C->user_back()); local
417 if (!User) return false; // Non-constant usage;
418 if (!removeDeadUsersOfConstant(User))
435 const Constant *User = dyn_cast<Constant>(*I); local
436 if (!User) {
442 if (!removeDeadUsersOfConstant(User)) {
1086 User::const_op_iterator OI = std::next(this->op_begin());
H A DValue.cpp10 // This file implements the Value, ValueHandle, and User classes.
128 const Instruction *User = dyn_cast<Instruction>(*UI); local
129 if (User && User->getParent() == BB)
520 for (User::const_op_iterator I = GEP->op_begin()+1,
/external/llvm/lib/Target/AArch64/
H A DAArch64AddressTypePromotion.cpp217 for (const User *U : SExt->users()) {
288 Instruction *User = dyn_cast<Instruction>(U.getUser()); local
289 assert(User && "User of sext is not an Instruction!");
290 User->setOperand(U.getOperandNo(), SExt);
438 for (const User *U : SExt->users()) {
H A DAArch64ISelLowering.cpp7397 SDNode *User = *UI; local
7398 if (User->getOpcode() != ISD::ADD
7404 if (User->isPredecessorOf(LD) || LD->isPredecessorOf(User))
7408 if (User->isPredecessorOf(Vector.getNode()))
7412 SDValue Inc = User->getOperand(User->getOperand(0) == Addr ? 1 : 0);
7443 DCI.CombineTo(User, SDValue(UpdN.getNode(), 1)); // Write back register
7464 SDNode *User = *UI; local
7465 if (User
[all...]
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp8837 SDNode *User = *UI; local
8838 if (User->getOpcode() != ISD::ADD ||
8844 if (User->isPredecessorOf(N) || N->isPredecessorOf(User))
8906 SDValue Inc = User->getOperand(User->getOperand(0) == Addr ? 1 : 0);
8945 DCI.CombineTo(User, SDValue(UpdN.getNode(), NumResultVecs));
8992 SDNode *User = *UI; local
8993 if (User->getOpcode() != ARMISD::VDUPLANE ||
8994 VLDLaneNo != cast<ConstantSDNode>(User
9018 SDNode *User = *UI; local
[all...]
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp2702 SDNode *User = *UI; local
2703 if (User->getOpcode() != ISD::FADD)
2729 SDNode *User = *UI; local
2730 int orderNo3 = User->getIROrder();
2739 SDNode *User = *UI; local
2740 int orderNo3 = User->getIROrder();
/external/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp1586 SDNode *User = *UI; local
1587 if (!User->isMachineOpcode())
1589 if (User->getMachineOpcode() != PPC::SELECT_I4 &&
1590 User->getMachineOpcode() != PPC::SELECT_I8)
1593 SDNode *Op2 = User->getOperand(2).getNode();
1616 SDNode *User = *UI; local
1617 assert((User->getMachineOpcode() == PPC::SELECT_I4 ||
1618 User->getMachineOpcode() == PPC::SELECT_I8) &&
1620 ToReplace.push_back(User);
1625 SDNode *User local
[all...]
H A DPPCISelLowering.cpp7534 SDNode *User = *UI; local
7535 if (User != N && !Visited.count(User))
7543 if (User->getOpcode() == ISD::SELECT) {
7544 if (User->getOperand(0) == Inputs[i])
7546 } else if (User->getOpcode() == ISD::SELECT_CC) {
7547 if (User->getOperand(0) == Inputs[i] ||
7548 User->getOperand(1) == Inputs[i])
7558 SDNode *User = *UI; local
7559 if (User !
7741 SDNode *User = *UI; local
7765 SDNode *User = *UI; local
8222 SDNode *User = *UI; local
8354 SDNode *User = *UI; local
[all...]

Completed in 428 milliseconds

123