1 //===-- MSP430MCInstLower.h - Lower MachineInstr to MCInst ------*- 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 #ifndef LLVM_LIB_TARGET_MSP430_MSP430MCINSTLOWER_H
10 #define LLVM_LIB_TARGET_MSP430_MSP430MCINSTLOWER_H
12 #include "llvm/Support/Compiler.h"
21 class MachineModuleInfoMachO
;
24 /// MSP430MCInstLower - This class is used to lower an MachineInstr
26 class LLVM_LIBRARY_VISIBILITY MSP430MCInstLower
{
31 MSP430MCInstLower(MCContext
&ctx
, AsmPrinter
&printer
)
32 : Ctx(ctx
), Printer(printer
) {}
33 void Lower(const MachineInstr
*MI
, MCInst
&OutMI
) const;
35 MCOperand
LowerSymbolOperand(const MachineOperand
&MO
, MCSymbol
*Sym
) const;
37 MCSymbol
*GetGlobalAddressSymbol(const MachineOperand
&MO
) const;
38 MCSymbol
*GetExternalSymbolSymbol(const MachineOperand
&MO
) const;
39 MCSymbol
*GetJumpTableSymbol(const MachineOperand
&MO
) const;
40 MCSymbol
*GetConstantPoolIndexSymbol(const MachineOperand
&MO
) const;
41 MCSymbol
*GetBlockAddressSymbol(const MachineOperand
&MO
) const;