[InstCombine] Signed saturation patterns
[llvm-core.git] / tools / llvm-mca / CodeRegionGenerator.h
blob9a10aa2c148b730e6e3d092409ab98dcf040a8e5
1 //===----------------------- CodeRegionGenerator.h --------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 /// \file
9 ///
10 /// This file declares classes responsible for generating llvm-mca
11 /// CodeRegions from various types of input. llvm-mca only analyzes CodeRegions,
12 /// so the classes here provide the input-to-CodeRegions translation.
14 //===----------------------------------------------------------------------===//
16 #ifndef LLVM_TOOLS_LLVM_MCA_CODEREGION_GENERATOR_H
17 #define LLVM_TOOLS_LLVM_MCA_CODEREGION_GENERATOR_H
19 #include "CodeRegion.h"
20 #include "llvm/MC/MCAsmInfo.h"
21 #include "llvm/MC/MCContext.h"
22 #include "llvm/MC/MCSubtargetInfo.h"
23 #include "llvm/Support/Error.h"
24 #include "llvm/Support/SourceMgr.h"
25 #include "llvm/Support/TargetRegistry.h"
26 #include <memory>
28 namespace llvm {
29 namespace mca {
31 /// This class is responsible for parsing the input given to the llvm-mca
32 /// driver, and converting that into a CodeRegions instance.
33 class CodeRegionGenerator {
34 protected:
35 CodeRegions Regions;
36 CodeRegionGenerator(const CodeRegionGenerator &) = delete;
37 CodeRegionGenerator &operator=(const CodeRegionGenerator &) = delete;
39 public:
40 CodeRegionGenerator(SourceMgr &SM) : Regions(SM) {}
41 virtual ~CodeRegionGenerator();
42 virtual Expected<const CodeRegions &> parseCodeRegions() = 0;
45 /// This class is responsible for parsing input ASM and generating
46 /// a CodeRegions instance.
47 class AsmCodeRegionGenerator final : public CodeRegionGenerator {
48 const Target &TheTarget;
49 MCContext &Ctx;
50 const MCAsmInfo &MAI;
51 const MCSubtargetInfo &STI;
52 const MCInstrInfo &MCII;
53 unsigned AssemblerDialect; // This is set during parsing.
55 public:
56 AsmCodeRegionGenerator(const Target &T, SourceMgr &SM, MCContext &C,
57 const MCAsmInfo &A, const MCSubtargetInfo &S,
58 const MCInstrInfo &I)
59 : CodeRegionGenerator(SM), TheTarget(T), Ctx(C), MAI(A), STI(S), MCII(I),
60 AssemblerDialect(0) {}
62 unsigned getAssemblerDialect() const { return AssemblerDialect; }
63 Expected<const CodeRegions &> parseCodeRegions() override;
66 } // namespace mca
67 } // namespace llvm
69 #endif // LLVM_TOOLS_LLVM_MCA_CODEREGION_GENERATOR_H