LLVM
8.0.1
|
A Graph object represents a Directed Graph and is used in XRay to compute and store function call graphs and associated statistical information. More...
#include "llvm/XRay/Graph.h"
Classes | |
class | EdgeView |
A class for ranging over all the edges in the graph. More... | |
class | InOutEdgeView |
A class for ranging over the incoming edges incident to a vertex. More... | |
class | VertexView |
A class for ranging over the vertices in the graph. More... | |
Public Types | |
typedef VI | VertexIdentifier |
These objects are used to name edges and vertices in the graph. More... | |
typedef std::pair< VI, VI > | EdgeIdentifier |
using | VertexValueType = detail::DenseMapPair< VertexIdentifier, VertexAttribute > |
This type is the value_type of all iterators which range over vertices, Determined by the Vertices DenseMap. More... | |
using | EdgeValueType = detail::DenseMapPair< EdgeIdentifier, EdgeAttribute > |
This type is the value_type of all iterators which range over edges, Determined by the Edges DenseMap. More... | |
using | size_type = std::size_t |
using | ConstInEdgeIterator = NeighborEdgeIteratorT< true, false > |
A const iterator type for iterating through the set of edges entering a vertex. More... | |
using | InEdgeIterator = NeighborEdgeIteratorT< false, false > |
An iterator type for iterating through the set of edges leaving a vertex. More... | |
using | ConstOutEdgeIterator = NeighborEdgeIteratorT< true, true > |
A const iterator type for iterating through the set of edges entering a vertex. More... | |
using | OutEdgeIterator = NeighborEdgeIteratorT< false, true > |
An iterator type for iterating through the set of edges leaving a vertex. More... | |
using | ConstVertexIterator = typename VertexMapT::const_iterator |
A const iterator type for iterating through the whole vertex set of the graph. More... | |
using | VertexIterator = typename VertexMapT::iterator |
An iterator type for iterating through the whole vertex set of the graph. More... | |
using | ConstEdgeIterator = typename EdgeMapT::const_iterator |
A const iterator for iterating through the entire edge set of the graph. More... | |
using | EdgeIterator = typename EdgeMapT::iterator |
An iterator for iterating through the entire edge set of the graph. More... | |
Public Member Functions | |
void | clear () |
Empty the Graph. More... | |
VertexView< false > | vertices () |
Returns a view object allowing iteration over the vertices of the graph. More... | |
VertexView< true > | vertices () const |
EdgeView< false > | edges () |
Returns a view object allowing iteration over the edges of the graph. More... | |
EdgeView< true > | edges () const |
InOutEdgeView< false, true > | outEdges (const VertexIdentifier I) |
Returns a view object allowing iteration over the edges which start at a vertex I. More... | |
InOutEdgeView< true, true > | outEdges (const VertexIdentifier I) const |
InOutEdgeView< false, false > | inEdges (const VertexIdentifier I) |
Returns a view object allowing iteration over the edges which point to a vertex I. More... | |
InOutEdgeView< true, false > | inEdges (const VertexIdentifier I) const |
VertexAttribute & | operator[] (const VertexIdentifier &I) |
Looks up the vertex with identifier I, if it does not exist it default constructs it. More... | |
EdgeAttribute & | operator[] (const EdgeIdentifier &I) |
Looks up the edge with identifier I, if it does not exist it default constructs it, if it's endpoints do not exist it also default constructs them. More... | |
Expected< VertexAttribute & > | at (const VertexIdentifier &I) |
Looks up a vertex with Identifier I, or an error if it does not exist. More... | |
Expected< const VertexAttribute & > | at (const VertexIdentifier &I) const |
Expected< EdgeAttribute & > | at (const EdgeIdentifier &I) |
Looks up an edge with Identifier I, or an error if it does not exist. More... | |
Expected< const EdgeAttribute & > | at (const EdgeIdentifier &I) const |
size_type | count (const VertexIdentifier &I) const |
Looks for a vertex with identifier I, returns 1 if one exists, and 0 otherwise. More... | |
size_type | count (const EdgeIdentifier &I) const |
Looks for an edge with Identifier I, returns 1 if one exists and 0 otherwise. More... | |
std::pair< VertexIterator, bool > | insert (const std::pair< VertexIdentifier, VertexAttribute > &Val) |
Inserts a vertex into the graph with Identifier Val.first, and Attribute Val.second. More... | |
std::pair< VertexIterator, bool > | insert (std::pair< VertexIdentifier, VertexAttribute > &&Val) |
std::pair< EdgeIterator, bool > | insert (const std::pair< EdgeIdentifier, EdgeAttribute > &Val) |
Inserts an edge into the graph with Identifier Val.first, and Attribute Val.second. More... | |
std::pair< EdgeIterator, bool > | insert (std::pair< EdgeIdentifier, EdgeAttribute > &&Val) |
Inserts an edge into the graph with Identifier Val.first, and Attribute Val.second. More... | |
A Graph object represents a Directed Graph and is used in XRay to compute and store function call graphs and associated statistical information.
The graph takes in four template parameters, these are:
Graph is CopyConstructible, CopyAssignable, MoveConstructible and MoveAssignable but is not EqualityComparible or LessThanComparible.
Usage Example Graph with weighted edges and vertices: Graph<int, int, int> G;
G[1] = 0; G[2] = 2; G[{1,2}] = 1; G[{2,1}] = -1; for(const auto &v : G.vertices()){ // Do something with the vertices in the graph; } for(const auto &e : G.edges()){ // Do something with the edges in the graph; }
Usage Example with StrRef keys. Graph<int, double, StrRef> StrG; char va[] = "Vertex A"; char vaa[] = "Vertex A"; char vb[] = "Vertex B"; // Vertices are referenced by String Refs. G[va] = 0; G[vb] = 1; G[{va, vb}] = 1.0; cout() << G[vaa] << " " << G[{vaa, vb}]; //prints "0 1.0".
using llvm::xray::Graph< VertexAttribute, EdgeAttribute, VI >::ConstEdgeIterator = typename EdgeMapT::const_iterator |
using llvm::xray::Graph< VertexAttribute, EdgeAttribute, VI >::ConstInEdgeIterator = NeighborEdgeIteratorT<true, false> |
using llvm::xray::Graph< VertexAttribute, EdgeAttribute, VI >::ConstOutEdgeIterator = NeighborEdgeIteratorT<true, true> |
using llvm::xray::Graph< VertexAttribute, EdgeAttribute, VI >::ConstVertexIterator = typename VertexMapT::const_iterator |
typedef std::pair<VI, VI> llvm::xray::Graph< VertexAttribute, EdgeAttribute, VI >::EdgeIdentifier |
using llvm::xray::Graph< VertexAttribute, EdgeAttribute, VI >::EdgeIterator = typename EdgeMapT::iterator |
using llvm::xray::Graph< VertexAttribute, EdgeAttribute, VI >::EdgeValueType = detail::DenseMapPair<EdgeIdentifier, EdgeAttribute> |
using llvm::xray::Graph< VertexAttribute, EdgeAttribute, VI >::InEdgeIterator = NeighborEdgeIteratorT<false, false> |
using llvm::xray::Graph< VertexAttribute, EdgeAttribute, VI >::OutEdgeIterator = NeighborEdgeIteratorT<false, true> |
using llvm::xray::Graph< VertexAttribute, EdgeAttribute, VI >::size_type = std::size_t |
typedef VI llvm::xray::Graph< VertexAttribute, EdgeAttribute, VI >::VertexIdentifier |
using llvm::xray::Graph< VertexAttribute, EdgeAttribute, VI >::VertexIterator = typename VertexMapT::iterator |
using llvm::xray::Graph< VertexAttribute, EdgeAttribute, VI >::VertexValueType = detail::DenseMapPair<VertexIdentifier, VertexAttribute> |
|
inline |
Looks up a vertex with Identifier I, or an error if it does not exist.
Definition at line 399 of file Graph.h.
References llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::end(), llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::find(), and llvm::make_error_code().
|
inline |
Definition at line 408 of file Graph.h.
References llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::end(), llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::find(), and llvm::make_error_code().
|
inline |
Looks up an edge with Identifier I, or an error if it does not exist.
Definition at line 418 of file Graph.h.
References llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::end(), llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::find(), and llvm::make_error_code().
|
inline |
Definition at line 427 of file Graph.h.
References llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::end(), llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::find(), and llvm::make_error_code().
|
inline |
Empty the Graph.
Definition at line 341 of file Graph.h.
References llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::clear().
|
inline |
Looks for a vertex with identifier I, returns 1 if one exists, and 0 otherwise.
Definition at line 438 of file Graph.h.
References llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::count().
|
inline |
Looks for an edge with Identifier I, returns 1 if one exists and 0 otherwise.
Definition at line 444 of file Graph.h.
References llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::count().
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Inserts a vertex into the graph with Identifier Val.first, and Attribute Val.second.
Definition at line 449 of file Graph.h.
References llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::insert().
|
inline |
Definition at line 454 of file Graph.h.
References llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::insert().
|
inline |
Inserts an edge into the graph with Identifier Val.first, and Attribute Val.second.
If the key is already in the map, it returns false and doesn't update the value.
Definition at line 462 of file Graph.h.
References llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::FindAndConstruct(), and llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::insert().
|
inline |
Inserts an edge into the graph with Identifier Val.first, and Attribute Val.second.
If the key is already in the map, it returns false and doesn't update the value.
Definition at line 479 of file Graph.h.
References llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::FindAndConstruct(), and llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::insert().
|
inline |
Looks up the vertex with identifier I, if it does not exist it default constructs it.
Definition at line 382 of file Graph.h.
References llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::FindAndConstruct().
|
inline |
Looks up the edge with identifier I, if it does not exist it default constructs it, if it's endpoints do not exist it also default constructs them.
Definition at line 389 of file Graph.h.
References llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::FindAndConstruct(), llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::insert(), and P.
|
inline |
|
inline |
|
inline |
|
inline |