chromium/v8/test/unittests/compiler/linear-scheduler-unittest.cc

// Copyright 2015 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/access-builder.h"
#include "src/compiler/common-operator.h"
#include "src/compiler/graph.h"
#include "src/compiler/node.h"
#include "src/compiler/opcodes.h"
#include "src/compiler/operator.h"
#include "src/compiler/simplified-operator.h"
#include "test/unittests/compiler/compiler-test-utils.h"
#include "test/unittests/test-utils.h"
#include "testing/gmock/include/gmock/gmock.h"

AnyOf;

namespace v8 {
namespace internal {
namespace compiler {

class LinearSchedulerTest : public TestWithIsolateAndZone {};

namespace {

const Operator kIntAdd(IrOpcode::kInt32Add, Operator::kPure, "Int32Add", 2, 0,
                       0, 1, 0, 0);

}  // namespace

TEST_F(LinearSchedulerTest, BuildSimpleScheduleEmpty) {}

TEST_F(LinearSchedulerTest, BuildSimpleScheduleOneParameter) {}

TARGET_TEST_F(LinearSchedulerTest, FloatingDiamond) {}

TARGET_TEST_F(LinearSchedulerTest, NestedFloatingDiamonds) {}

TARGET_TEST_F(LinearSchedulerTest, LoopedFloatingDiamond) {}

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