#include "src/compiler/graph.h"
#include <algorithm>
#include "src/compiler/graph-visualizer.h"
#include "src/compiler/node.h"
#include "src/compiler/verifier.h"
namespace v8 {
namespace internal {
namespace compiler {
Graph::Graph(Zone* zone)
: … { … }
void Graph::Decorate(Node* node) { … }
void Graph::AddDecorator(GraphDecorator* decorator) { … }
void Graph::RemoveDecorator(GraphDecorator* decorator) { … }
Node* Graph::NewNode(const Operator* op, int input_count, Node* const* inputs,
bool incomplete) { … }
Node* Graph::NewNodeUnchecked(const Operator* op, int input_count,
Node* const* inputs, bool incomplete) { … }
Node* Graph::CloneNode(const Node* node) { … }
NodeId Graph::NextNodeId() { … }
void Graph::Print() const { … }
void Graph::RecordSimdStore(Node* store) { … }
ZoneVector<Node*> const& Graph::GetSimdStoreNodes() { … }
}
}
}