Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / lib / Target / MSP430 / MSP430TargetMachine.h
blobf9af9a7e26f6969daa8ac1a21774a75fe4336e3e
1 //===-- MSP430TargetMachine.h - Define TargetMachine for MSP430 -*- 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 //
9 // This file declares the MSP430 specific subclass of TargetMachine.
11 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_LIB_TARGET_MSP430_MSP430TARGETMACHINE_H
15 #define LLVM_LIB_TARGET_MSP430_MSP430TARGETMACHINE_H
17 #include "MSP430Subtarget.h"
18 #include "llvm/Target/TargetMachine.h"
19 #include <optional>
21 namespace llvm {
22 class StringRef;
24 /// MSP430TargetMachine
25 ///
26 class MSP430TargetMachine : public LLVMTargetMachine {
27 std::unique_ptr<TargetLoweringObjectFile> TLOF;
28 MSP430Subtarget Subtarget;
30 public:
31 MSP430TargetMachine(const Target &T, const Triple &TT, StringRef CPU,
32 StringRef FS, const TargetOptions &Options,
33 std::optional<Reloc::Model> RM,
34 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL,
35 bool JIT);
36 ~MSP430TargetMachine() override;
38 const MSP430Subtarget *getSubtargetImpl(const Function &F) const override {
39 return &Subtarget;
41 TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
43 TargetLoweringObjectFile *getObjFileLowering() const override {
44 return TLOF.get();
47 MachineFunctionInfo *
48 createMachineFunctionInfo(BumpPtrAllocator &Allocator, const Function &F,
49 const TargetSubtargetInfo *STI) const override;
50 }; // MSP430TargetMachine.
52 } // end namespace llvm
54 #endif