HomeSort by relevance Sort by last modified time
    Searched defs:GraphT (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/Support/
GenericDomTreeConstruction.h 32 template<class GraphT>
33 unsigned DFSPass(DominatorTreeBase<typename GraphT::NodeType>& DT,
34 typename GraphT::NodeType* V, unsigned N) {
55 SmallVector<std::pair<typename GraphT::NodeType*,
56 typename GraphT::ChildIteratorType>, 32> Worklist;
57 Worklist.push_back(std::make_pair(V, GraphT::child_begin(V)));
59 typename GraphT::NodeType* BB = Worklist.back().first;
60 typename GraphT::ChildIteratorType NextSucc = Worklist.back().second;
62 typename DominatorTreeBase<typename GraphT::NodeType>::InfoRec &BBInfo =
66 if (NextSucc == GraphT::child_begin(BB))
    [all...]
  /external/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 597 typedef bfi_detail::IrreducibleGraph GraphT;
599 typedef const GraphT::IrrNode NodeType;
600 typedef GraphT::IrrNode::iterator ChildIteratorType;
602 static const NodeType *getEntryNode(const GraphT &G) {
CFLAliasAnalysis.cpp 631 typedef WeightedBidirectionalGraph<std::pair<EdgeType, StratifiedAttrs>> GraphT;
632 typedef DenseMap<Value *, GraphT::Node> NodeMapT;
661 SmallVectorImpl<Value *> &, NodeMapT &, GraphT &);
677 GraphT &);
814 NodeMapT &Map, GraphT &Graph) {
816 auto Pair = Map.insert(std::make_pair(Val, GraphT::Node()));
877 NodeMapT &Map, GraphT &Graph) {
908 GraphT Graph;
    [all...]

Completed in 141 milliseconds