Searched defs:Node (Results 251 - 275 of 302) sorted by relevance

<<111213

/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp48 bool TargetLowering::isInTailCallPosition(SelectionDAG &DAG, SDNode *Node, argument
65 return isUsedByReturnOnly(Node, Chain);
97 Entry.Node = Ops[i];
98 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext());
H A DSelectionDAG.cpp754 llvm_unreachable("Node is not in map!");
803 SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos); local
804 return Node;
821 SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos); local
822 return Node;
838 SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos); local
839 return Node;
4232 Entry.Node = Dst; Args.push_back(Entry);
4233 Entry.Node = Src; Args.push_back(Entry);
4234 Entry.Node
[all...]
/external/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp307 static bool isScaledConstantInRange(SDValue Node, int Scale, argument
313 const ConstantSDNode *C = dyn_cast<ConstantSDNode>(Node);
/external/llvm/lib/Target/Mips/
H A DMipsSEISelLowering.cpp598 BuildVectorSDNode *Node = dyn_cast<BuildVectorSDNode>(N.getNode()); local
600 if (!Node)
607 if (!Node->isConstantSplat(SplatValue, SplatUndef, SplatBitSize, HasAnyUndefs,
2320 BuildVectorSDNode *Node = cast<BuildVectorSDNode>(Op); local
2330 if (Node->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
2369 Result = DAG.getNode(ISD::BITCAST, SDLoc(Node), ResTy, Result);
2372 } else if (isSplatVector(Node))
2374 else if (!isConstantOrUndefBUILD_VECTOR(Node)) {
2378 EVT ResTy = Node->getValueType(0);
2386 Node
2695 ShuffleVectorSDNode *Node = cast<ShuffleVectorSDNode>(Op); local
[all...]
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp1259 SDNode *Node = Op.getNode();
1260 SDLoc dl(Node);
1262 unsigned NumOperands = Node->getNumOperands();
1264 SDValue SubOp = Node->getOperand(i);
1273 return DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0), Ops);
1439 SDNode *Node = Op.getNode(); local
1440 LoadSDNode *LD = cast<LoadSDNode>(Node);
1441 SDLoc dl(Node);
1443 assert(Node->getValueType(0) == MVT::i1 &&
1557 SDNode *Node local
[all...]
/external/llvm/lib/Target/R600/
H A DAMDGPUISelLowering.cpp561 SDNode *Node = LowerLOAD(SDValue(N, 0), DAG).getNode(); local
562 if (!Node)
565 Results.push_back(SDValue(Node, 0));
566 Results.push_back(SDValue(Node, 1));
569 DAG.ReplaceAllUsesOfValueWith(SDValue(N,1), SDValue(Node, 1));
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp1975 Entry.Node = Arg;
1984 Entry.Node,
1991 Entry.Node = FIPtr;
2018 Entry.Node = RetPtr;
2377 SDNode *Node = Op.getNode(); local
2378 EVT VT = Node->getValueType(0);
2379 SDValue InChain = Node->getOperand(0);
2380 SDValue VAListPtr = Node->getOperand(1);
2382 const Value *SV = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
2383 SDLoc DL(Node);
[all...]
/external/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp195 SDNode *SelectAtomic64(SDNode *Node, unsigned Opc);
196 SDNode *SelectAtomicLoadArith(SDNode *Node, MVT NVT);
1570 SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) { argument
1571 SDValue Chain = Node->getOperand(0);
1572 SDValue In1 = Node->getOperand(1);
1573 SDValue In2L = Node->getOperand(2);
1574 SDValue In2H = Node->getOperand(3);
1577 if (!SelectAddr(Node, In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
1580 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1582 SDNode *ResNode = CurDAG->getMachineNode(Opc, SDLoc(Node),
1765 SelectAtomicLoadArith(SDNode *Node, MVT NVT) argument
2029 SelectGather(SDNode *Node, unsigned Opc) argument
2058 Select(SDNode *Node) argument
[all...]
H A DX86InstrInfo.cpp5484 // Visit the dominator subtree rooted at Node in pre-order.
5489 bool VisitNode(MachineDomTreeNode *Node, unsigned TLSBaseAddrReg) { argument
5490 MachineBasicBlock *BB = Node->getBlock();
5511 for (MachineDomTreeNode::iterator I = Node->begin(), E = Node->end();
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp827 // reference to said Node. Otherwise just return 0.
829 MDNode *Node; local
830 if (!(Node = Inst->getMetadata(NodeId))) {
847 assert(Node->getNumOperands() == 1 &&
849 Hash = cast<MDString>(Node->getOperand(0));
884 MDNode *Node = nullptr; local
890 Node = MDNode::get(Inst->getContext(),
893 Inst->setMetadata(NodeId, Node);
/external/llvm/lib/Transforms/Scalar/
H A DGVN.cpp644 LeaderTableEntry *Node = TableAllocator.Allocate<LeaderTableEntry>(); local
645 Node->Val = V;
646 Node->BB = BB;
647 Node->Next = Curr.Next;
648 Curr.Next = Node;
2682 const LeaderTableEntry *Node = &I->second; local
2683 assert(Node->Val != Inst && "Inst still in value numbering scope!");
2685 while (Node->Next) {
2686 Node = Node
[all...]
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DNodes.py143 class Node(object): class in inherits:object
278 if isinstance(x, Node):
315 class CompilerDirectivesNode(Node):
321 # body Node
370 class StatListNode(Node):
407 class StatNode(Node):
452 class CDeclaratorNode(Node):
764 class CArgDeclNode(Node):
862 class CBaseTypeNode(Node):
875 class CAnalysedBaseTypeNode(Node)
[all...]
H A DExprNodes.py26 from Nodes import Node namespace
156 class ExprNode(Node):
2563 # Node created during analyse_types phase
2586 # Node created during analyse_types phase
3891 nogil_check = Node.gil_error
4895 nogil_check = Node.gil_error
5137 nogil_check = Node.gil_error
6525 class ComprehensionAppendNode(Node):
10331 class CascadedCmpNode(Node, CmpNode):
10542 nogil_check = Node
[all...]
/external/clang/include/clang/AST/
H A DASTContext.h456 ParentVector getParents(const NodeT &Node) { argument
457 return getParents(ast_type_traits::DynTypedNode::create(Node));
460 ParentVector getParents(const ast_type_traits::DynTypedNode &Node);
/external/clang/lib/Analysis/
H A DCFG.cpp76 /// LocalScope - Node in tree of local scopes created for C++ implicit
4468 static std::string getNodeLabel(const CFGBlock *Node, const CFG* Graph) { argument
4473 print_block(Out,Graph, *Node, *GraphHelper, false, false);
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp5806 llvm::MDNode *Node = llvm::MDNode::get(getLLVMContext(), local
5814 SI->setMetadata(CGM.getModule().getMDKindID("nontemporal"), Node);
H A DCGExpr.cpp2198 llvm::MDNode *Node = MDHelper.createBranchWeights((1U << 20) - 1, 1); local
2199 Branch->setMetadata(llvm::LLVMContext::MD_prof, Node);
3346 llvm::MDNode *Node = MDHelper.createFPMath(Accuracy); local
3348 cast<llvm::Instruction>(Val)->setMetadata(llvm::LLVMContext::MD_fpmath, Node);
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2901 const ExplodedNode *Node = WS.front(); local
2907 PriorityMap.insert(std::make_pair(Node, Priority));
2915 if (RemainingNodes.erase(Node))
2919 for (ExplodedNode::const_pred_iterator I = Node->succ_begin(),
2920 E = Node->succ_end();
/external/clang/test/SemaCXX/
H A Dwarn-thread-safety-analysis.cpp3091 class Node { class in namespace:ExistentialPatternMatching
3104 Node n1;
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h84 /// Node predicates
120 SDNode *Node; // The node defining the value we are using. member in class:llvm::SDValue
123 SDValue() : Node(nullptr), ResNo(0) {}
124 SDValue(SDNode *node, unsigned resno) : Node(node), ResNo(resno) {}
130 SDNode *getNode() const { return Node; }
133 void setNode(SDNode *N) { Node = N; }
135 inline SDNode *operator->() const { return Node; }
138 return Node == O.Node && ResNo == O.ResNo;
144 return std::tie(Node, ResN
1938 const SDNode *Node; member in class:SDNodeIterator
[all...]
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp1794 SDValue SystemZTargetLowering::lowerGlobalAddress(GlobalAddressSDNode *Node, argument
1796 SDLoc DL(Node);
1797 const GlobalValue *GV = Node->getGlobal();
1798 int64_t Offset = Node->getOffset();
1833 SDValue SystemZTargetLowering::lowerGlobalTLSAddress(GlobalAddressSDNode *Node, argument
1835 SDLoc DL(Node);
1836 const GlobalValue *GV = Node->getGlobal();
1872 SDValue SystemZTargetLowering::lowerBlockAddress(BlockAddressSDNode *Node, argument
1874 SDLoc DL(Node);
1875 const BlockAddress *BA = Node
2192 auto *Node = cast<AtomicSDNode>(Op.getNode()); local
2202 auto *Node = cast<AtomicSDNode>(Op.getNode()); local
2215 auto *Node = cast<AtomicSDNode>(Op.getNode()); local
2288 auto *Node = cast<AtomicSDNode>(Op.getNode()); local
2325 auto *Node = cast<AtomicSDNode>(Op.getNode()); local
2391 auto *Node = cast<MemIntrinsicSDNode>(Op.getNode()); local
[all...]
/external/opencv/cvaux/src/
H A Dcvlee.cpp1762 CvVoronoiNode2D Node; local
1763 Node.next_free = NULL;
1812 pNode1 = _cvWriteSeqElem(&Node,NodeWriter);
1813 pNode2 = _cvWriteSeqElem(&Node,NodeWriter);
1851 pNode1 = _cvWriteSeqElem(&Node,NodeWriter);
1896 Node.pt.x = pSite->node1->node.x;
1897 Node.pt.y = pSite->node1->node.y;
1898 Node.radius = 0;
1899 pNewSite->node[0] = pNewSite->node[1] = _cvWriteSeqElem(&Node,NodeWriter);
1952 CvVoronoiNode2D Node; local
2132 CvVoronoiNodeInt Node; local
2277 CvVoronoiNodeInt Node; local
2653 CvVoronoiNodeInt Node; local
2937 CvVoronoiNodeInt Node; local
3213 CvVoronoiNodeInt Node; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/clang/tools/libclang/
H A DCIndex.cpp1929 void VisitOMPClauseList(T *Node);
1966 void OMPClauseEnqueue::VisitOMPClauseList(T *Node) { argument
1967 for (const auto *I : Node->varlists())
2202 const OffsetOfNode &Node = E->getComponent(I-1); local
2203 switch (Node.getKind()) {
2205 AddStmt(E->getIndexExpr(Node.getArrayExprIndex()));
2208 AddMemberRef(Node.getField(), Node.getSourceRange().getEnd());
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHeapTest.cpp633 class Node : public GarbageCollected<Node> { class in namespace:blink
635 static Node* create(int i)
637 return new Node(i);
645 Node(int i) : m_value(i) { } function in class:blink::Node
1696 Persistent<Node> typedHeapObject = Node::create(0);
5322 s_node = new Persistent<Node>(Node::create(10));
5327 static Persistent<Node>* s_nod
[all...]

Completed in 7118 milliseconds

<<111213