chromium/v8/src/compiler/linear-scheduler.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/linear-scheduler.h"

#include "src/compiler/graph.h"
#include "src/compiler/node-properties.h"
#include "src/compiler/node.h"
#include "src/zone/zone-containers.h"

namespace v8 {
namespace internal {
namespace compiler {

LinearScheduler::LinearScheduler(Zone* zone, Graph* graph)
    :{}

void LinearScheduler::ComputeControlLevel() {}

Node* LinearScheduler::GetEarlySchedulePosition(Node* node) {}

bool LinearScheduler::SameBasicBlock(Node* node0, Node* node1) {}

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