1 //===-- MSP430TargetMachine.h - Define TargetMachine for MSP430 -*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
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"
24 /// MSP430TargetMachine
26 class MSP430TargetMachine
: public LLVMTargetMachine
{
27 std::unique_ptr
<TargetLoweringObjectFile
> TLOF
;
28 MSP430Subtarget Subtarget
;
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
,
36 ~MSP430TargetMachine() override
;
38 const MSP430Subtarget
*getSubtargetImpl(const Function
&F
) const override
{
41 TargetPassConfig
*createPassConfig(PassManagerBase
&PM
) override
;
43 TargetLoweringObjectFile
*getObjFileLowering() const override
{
48 createMachineFunctionInfo(BumpPtrAllocator
&Allocator
, const Function
&F
,
49 const TargetSubtargetInfo
*STI
) const override
;
50 }; // MSP430TargetMachine.
52 } // end namespace llvm