llvm/llvm/unittests/tools/llvm-exegesis/PowerPC/SnippetGeneratorTest.cpp

//===-- SnippetGeneratorTest.cpp --------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "../Common/AssemblerUtils.h"
#include "LlvmState.h"
#include "MCInstrDescView.h"
#include "PPCInstrInfo.h"
#include "ParallelSnippetGenerator.h"
#include "RegisterAliasing.h"
#include "SerialSnippetGenerator.h"
#include "TestBase.h"

namespace llvm {
namespace exegesis {
namespace {

AnyOf;
ElementsAre;
HasSubstr;
SizeIs;

MATCHER(IsInvalid, "") {}
MATCHER(IsReg, "") {}

template <typename SnippetGeneratorT>
class PPCSnippetGeneratorTest : public PPCTestBase {};

PPCSerialSnippetGeneratorTest;

PPCParallelSnippetGeneratorTest;

TEST_F(PPCSerialSnippetGeneratorTest, ImplicitSelfDependencyThroughExplicitRegs) {}

TEST_F(PPCSerialSnippetGeneratorTest, ImplicitSelfDependencyThroughTiedRegs) {}

TEST_F(PPCParallelSnippetGeneratorTest, MemoryUse) {}

} // namespace
} // namespace exegesis
} // namespace llvm