Searched defs:NodeStack (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Analysis/
H A DLazyCallGraph.cpp581 SmallVectorImpl<Node *> &NodeStack) {
586 while (!NodeStack.empty() && NodeStack.back()->DFSNumber > RootN->DFSNumber) {
587 assert(NodeStack.back()->LowLink >= RootN->LowLink &&
590 NewSCC->insert(*NodeStack.pop_back_val());
580 formSCC(Node *RootN, SmallVectorImpl<Node *> &NodeStack) argument
/external/llvm/include/llvm/CodeGen/PBQP/
H A DRegAllocSolver.h279 std::vector<NodeId> NodeStack; local
287 NodeStack.push_back(NId);
309 NodeStack.push_back(NId);
319 NodeStack.push_back(NId);
325 return NodeStack;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp2423 /// NodeStack - The node stack when the scope was formed.
2424 SmallVector<SDValue, 4> NodeStack; member in struct:__anon25818::MatchScope
2487 SmallVector<SDValue, 8> NodeStack; local
2489 NodeStack.push_back(N);
2614 NewEntry.NodeStack.append(NodeStack.begin(), NodeStack.end());
2627 if (NodeStack.size() > 1)
2628 Parent = NodeStack[NodeStack
[all...]

Completed in 982 milliseconds