#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);
}
TEST_F(LinearSchedulerTest, BuildSimpleScheduleEmpty) { … }
TEST_F(LinearSchedulerTest, BuildSimpleScheduleOneParameter) { … }
TARGET_TEST_F(LinearSchedulerTest, FloatingDiamond) { … }
TARGET_TEST_F(LinearSchedulerTest, NestedFloatingDiamonds) { … }
TARGET_TEST_F(LinearSchedulerTest, LoopedFloatingDiamond) { … }
}
}
}