Searched refs:nodes_begin (Results 1 - 25 of 32) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DStmtGraphTraits.h40 static nodes_iterator nodes_begin(clang::Stmt* S) { function in struct:llvm::GraphTraits
66 static nodes_iterator nodes_begin(const clang::Stmt* S) { function in struct:llvm::GraphTraits
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DGraphTraits.h52 // static nodes_iterator nodes_begin(GraphType *G)
109 return make_range(GraphTraits<GraphType>::nodes_begin(G),
115 return make_range(GraphTraits<Inverse<GraphType>>::nodes_begin(G),
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineRegionInfo.h147 static nodes_iterator nodes_begin(MachineRegionInfo *RI) { function in struct:llvm::GraphTraits
166 static nodes_iterator nodes_begin(MachineRegionInfoPass *RI) { function in struct:llvm::GraphTraits
167 return GraphTraits<MachineRegionInfo *>::nodes_begin(&RI->getRegionInfo());
H A DMachineFunction.h1088 static nodes_iterator nodes_begin(MachineFunction *F) {
1105 static nodes_iterator nodes_begin(const MachineFunction *F) { function in struct:llvm::MachineFunction::GraphTraits
H A DScheduleDAG.h677 static nodes_iterator nodes_begin(ScheduleDAG *G) { function in struct:llvm::SUnit::GraphTraits
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DRegionIterator.h289 static nodes_iterator nodes_begin(RegionT *R) { \
305 static nodes_iterator nodes_begin(RegionT *R) { \
329 static nodes_iterator nodes_begin(RegionInfo* RI) { function in struct:llvm::GraphTraits
348 static nodes_iterator nodes_begin(RegionInfoPass* RI) { function in struct:llvm::GraphTraits
349 return GraphTraits<RegionInfo*>::nodes_begin(&RI->getRegionInfo());
H A DPostDominators.h104 static nodes_iterator nodes_begin(PostDominatorTree *N) { function in struct:llvm::GraphTraits
H A DCallGraph.h491 static nodes_iterator nodes_begin(CallGraph *CG) { function in struct:GraphTraits
518 static nodes_iterator nodes_begin(const CallGraph *CG) { function in struct:GraphTraits
H A DDDG.h504 static nodes_iterator nodes_begin(DataDependenceGraph *DG) { function in struct:llvm::DDGEdge::GraphTraits
545 static nodes_iterator nodes_begin(const DataDependenceGraph *DG) { function in struct:llvm::DDGEdge::GraphTraits
H A DCFGPrinter.h108 static nodes_iterator nodes_begin(DOTFuncInfo *CFGInfo) { function in struct:llvm::GraphTraits
H A DRegionInfoImpl.h315 return GraphTraits<RegionT *>::nodes_begin(static_cast<RegionT *>(this));
326 return GraphTraits<const RegionT *>::nodes_begin(
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DImmutableGraph.h91 const Node *nodes_begin() const { return nodes().begin(); } function in class:llvm::ImmutableGraph
103 return std::distance(nodes_begin(), &N);
186 return Set.G.nodes_begin() + Current;
414 static NodeRef getEntryNode(GraphT *G) { return G->nodes_begin(); }
425 static nodes_iterator nodes_begin(GraphT *G) { function
426 return {G->nodes_begin(), &getNode};
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DDominators.h202 static nodes_iterator nodes_begin(NodeRef N) { function in struct:llvm::DomTreeGraphTraitsBase
223 static nodes_iterator nodes_begin(DominatorTree *N) { function in struct:llvm::GraphTraits
H A DCFG.h355 static nodes_iterator nodes_begin(Function *F) { function in struct:llvm::GraphTraits
372 static nodes_iterator nodes_begin(const Function *F) { function in struct:llvm::GraphTraits
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Analysis/
H A DCallGraph.h278 static nodes_iterator nodes_begin(clang::CallGraph *CG) { function in struct:llvm::GraphTraits
304 static nodes_iterator nodes_begin(const clang::CallGraph *CG) { function in struct:llvm::GraphTraits
H A DCFG.h1308 iterator nodes_begin() { return iterator(Blocks.begin()); }
1310 const_iterator nodes_begin() const { return const_iterator(Blocks.begin()); }
1532 static nodes_iterator nodes_begin(::clang::CFG* F) { return F->nodes_begin();}
1543 static nodes_iterator nodes_begin( const ::clang::CFG* F) {
1544 return F->nodes_begin();
1561 static nodes_iterator nodes_begin( ::clang::CFG* F) {return F->nodes_begin();}
1571 static nodes_iterator nodes_begin(const ::clang::CFG* F) {
1572 return F->nodes_begin();
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h400 node_iterator nodes_begin() { return Nodes.begin(); } function in class:clang::ento::ExplodedGraph
404 const_node_iterator nodes_begin() const { return Nodes.begin(); } function in class:clang::ento::ExplodedGraph
536 static nodes_iterator nodes_begin(const GraphTy G) { function in struct:llvm::GraphTraits
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DAnalyzerStatsChecker.cpp54 for (ExplodedGraph::node_iterator I = G.nodes_begin();
H A DUnreachableCodeChecker.cpp61 for (ExplodedGraph::node_iterator I = G.nodes_begin(), E = G.nodes_end();
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DDominators.h361 static nodes_iterator nodes_begin(::clang::DomTreeNode *N) { function in struct:llvm::GraphTraits
376 static nodes_iterator nodes_begin(clang::CFGDomTree *N) { function in struct:llvm::GraphTraits
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineBlockFrequencyInfo.cpp103 static nodes_iterator nodes_begin(const MachineBlockFrequencyInfo *G) { function in struct:llvm::GraphTraits
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DCallPrinter.cpp128 static nodes_iterator nodes_begin(CallGraphDOTInfo *CGInfo) { function in struct:llvm::GraphTraits
H A DBlockFrequencyInfo.cpp114 static nodes_iterator nodes_begin(const BlockFrequencyInfo *G) { function in struct:llvm::GraphTraits
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DModuleManager.cpp483 static nodes_iterator nodes_begin(const ModuleManager &Manager) { function in struct:llvm::GraphTraits
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlan.h1483 static nodes_iterator nodes_begin(GraphRef N) {
1502 static nodes_iterator nodes_begin(GraphRef N) {
1523 static nodes_iterator nodes_begin(GraphRef N) {

Completed in 146 milliseconds

12