HomeSort by relevance Sort by last modified time
    Searched refs:NodeTy (Results 1 - 9 of 9) sorted by null

  /external/llvm/include/llvm/ADT/
ilist_node.h 20 template<typename NodeTy>
25 template<typename NodeTy>
27 friend struct ilist_traits<NodeTy>;
28 NodeTy *Prev;
30 NodeTy *getPrev() { return Prev; }
31 const NodeTy *getPrev() const { return Prev; }
32 void setPrev(NodeTy *P) { Prev = P; }
36 template<typename NodeTy>
42 template<typename NodeTy>
43 class ilist_node : private ilist_half_node<NodeTy> {
    [all...]
ilist.h 49 template<typename NodeTy, typename Traits> class iplist;
50 template<typename NodeTy> class ilist_iterator;
55 template<typename NodeTy>
57 static NodeTy *getPrev(NodeTy *N) { return N->getPrev(); }
58 static NodeTy *getNext(NodeTy *N) { return N->getNext(); }
59 static const NodeTy *getPrev(const NodeTy *N) { return N->getPrev(); }
60 static const NodeTy *getNext(const NodeTy *N) { return N->getNext();
    [all...]
  /external/llvm/include/llvm/IR/
SymbolTableListTraits.h 33 template<typename NodeTy> class ilist_iterator;
34 template<typename NodeTy, typename Traits> class iplist;
  /external/llvm/include/llvm/Analysis/
IntervalIterator.h 88 template<class NodeTy, class OrigContainer_t, class GT = GraphTraits<NodeTy*>,
89 class IGT = GraphTraits<Inverse<NodeTy*> > >
97 typedef IntervalIterator<NodeTy, OrigContainer_t> _Self;
166 bool ProcessInterval(NodeTy *Node) {
191 void ProcessNode(Interval *Int, NodeTy *Node) {
  /external/clang/lib/StaticAnalyzer/Core/
ExplodedGraph.cpp 304 NodeTy::Profile(profile, L, State, IsSink);
305 NodeTy* V = Nodes.FindNodeOrInsertPos(profile, InsertPos);
314 V = (NodeTy*) getAllocator().Allocate<NodeTy>();
317 new (V) NodeTy(L, State, IsSink);
335 ExplodedGraph::trim(ArrayRef<const NodeTy *> Sinks,
352 for (ArrayRef<const NodeTy *>::iterator I = Sinks.begin(), E = Sinks.end();
  /external/llvm/lib/Target/Mips/
MipsSEISelDAGToDAG.cpp 310 EVT NodeTy = Node->getValueType(0);
332 if (NodeTy == MVT::i32)
337 std::pair<SDNode*, SDNode*> LoHi = selectMULT(Node, MultOpc, DL, NodeTy,
352 if (Subtarget.hasMips32() && NodeTy == MVT::i32)
354 MultOpc = NodeTy == MVT::i32 ? Mips::MULT : Mips::DMULT;
355 Result = selectMULT(Node, MultOpc, DL, NodeTy, true, false).first;
360 if (NodeTy == MVT::i32)
365 Result = selectMULT(Node, MultOpc, DL, NodeTy, false, true).second;
Mips16ISelDAGToDAG.cpp 239 EVT NodeTy = Node->getValueType(0);
284 std::pair<SDNode*, SDNode*> LoHi = selectMULT(Node, MultOpc, DL, NodeTy,
298 SDNode *Result = selectMULT(Node, MultOpc, DL, NodeTy, false, true).second;
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h 323 typedef ExplodedNode NodeTy;
371 ExplodedGraph *trim(ArrayRef<const NodeTy *> Nodes,
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h     [all...]

Completed in 349 milliseconds