chromium/v8/src/compiler/graph.cc

// Copyright 2013 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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() {}

}  // namespace compiler
}  // namespace internal
}  // namespace v8