1 //===-- ARMMCInstLower.h - Lower MachineInstr to MCInst -------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 #ifndef ARM_MCINSTLOWER_H
11 #define ARM_MCINSTLOWER_H
13 #include "llvm/Support/Compiler.h"
23 class MCSymbolRefExpr
;
25 class MachineModuleInfoMachO
;
30 /// ARMMCInstLower - This class is used to lower an MachineInstr into an MCInst.
31 class LLVM_LIBRARY_VISIBILITY ARMMCInstLower
{
36 //const ARMSubtarget &getSubtarget() const;
38 ARMMCInstLower(MCContext
&ctx
, Mangler
&mang
, AsmPrinter
&printer
)
39 : Ctx(ctx
), Mang(mang
), Printer(printer
) {}
41 void Lower(const MachineInstr
*MI
, MCInst
&OutMI
) const;
43 //MCSymbol *GetPICBaseSymbol() const;
44 MCSymbol
*GetGlobalAddressSymbol(const GlobalValue
*GV
) const;
45 const MCSymbolRefExpr
*GetSymbolRef(const MachineOperand
&MO
) const;
46 const MCSymbolRefExpr
*GetExternalSymbolSymbol(const MachineOperand
&MO
)
48 MCSymbol
*GetJumpTableSymbol(const MachineOperand
&MO
) const;
49 MCSymbol
*GetConstantPoolIndexSymbol(const MachineOperand
&MO
) const;
50 MCOperand
LowerSymbolRefOperand(const MachineOperand
&MO
,
51 const MCSymbolRefExpr
*Expr
) const;
52 MCOperand
LowerSymbolOperand(const MachineOperand
&MO
, MCSymbol
*Sym
) const;
56 MachineModuleInfoMachO &getMachOMMI() const;