Min-Yih Hsu 97579dcc6d [MCA] Introducing incremental SourceMgr and resumable pipeline
The new resumable mca::Pipeline capability introduced in this patch
allows users to save the current state of pipeline and resume from the
very checkpoint.
It is better (but not require) to use with the new IncrementalSourceMgr,
where users can add mca::Instruction incrementally rather than having a
fixed number of instructions ahead-of-time.

Note that we're using unit tests to test these new features. Because
integrating them into the `llvm-mca` tool will make too many churns.

Differential Revision: https://reviews.llvm.org/D127083
2022-06-24 15:39:51 -07:00

31 lines
907 B
C++

//===---- X86TestBase.h -----------------------------------------*- 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
//
//===----------------------------------------------------------------------===//
// Test fixture common to all X86 MCA tests.
//===----------------------------------------------------------------------===//
#ifndef LLVM_UNITTESTS_TOOLS_LLVMMCA_X86_X86TESTBASE_H
#define LLVM_UNITTESTS_TOOLS_LLVMMCA_X86_X86TESTBASE_H
#include "MCATestBase.h"
#include "llvm/ADT/SmallVector.h"
namespace llvm {
namespace mca {
class X86TestBase : public MCATestBase {
protected:
X86TestBase();
void getSimpleInsts(SmallVectorImpl<MCInst> &Insts, unsigned Repeats = 1);
};
} // end namespace mca
} // end namespace llvm
#endif