2009-09-12 20:34:57 +00:00
|
|
|
//===-- X86MCInstLower.h - Lower MachineInstr to MCInst -------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef X86_MCINSTLOWER_H
|
|
|
|
#define X86_MCINSTLOWER_H
|
|
|
|
|
2009-09-13 18:33:59 +00:00
|
|
|
#include "llvm/Support/Compiler.h"
|
|
|
|
|
2009-09-12 20:34:57 +00:00
|
|
|
namespace llvm {
|
2010-07-20 22:30:53 +00:00
|
|
|
class MCAsmInfo;
|
2009-09-12 20:34:57 +00:00
|
|
|
class MCContext;
|
|
|
|
class MCInst;
|
|
|
|
class MCOperand;
|
|
|
|
class MCSymbol;
|
|
|
|
class MachineInstr;
|
2010-07-20 22:26:07 +00:00
|
|
|
class MachineFunction;
|
2009-09-16 06:25:03 +00:00
|
|
|
class MachineModuleInfoMachO;
|
2009-09-12 20:34:57 +00:00
|
|
|
class MachineOperand;
|
|
|
|
class Mangler;
|
2010-07-20 22:30:53 +00:00
|
|
|
class TargetMachine;
|
2009-09-20 07:35:34 +00:00
|
|
|
class X86AsmPrinter;
|
2009-09-12 20:34:57 +00:00
|
|
|
|
2009-09-12 21:01:20 +00:00
|
|
|
/// X86MCInstLower - This class is used to lower an MachineInstr into an MCInst.
|
2010-05-11 20:16:09 +00:00
|
|
|
class LLVM_LIBRARY_VISIBILITY X86MCInstLower {
|
2009-09-12 20:34:57 +00:00
|
|
|
MCContext &Ctx;
|
2009-10-19 21:59:25 +00:00
|
|
|
Mangler *Mang;
|
2010-07-20 22:26:07 +00:00
|
|
|
const MachineFunction &MF;
|
2010-07-20 22:30:53 +00:00
|
|
|
const TargetMachine &TM;
|
|
|
|
const MCAsmInfo &MAI;
|
2010-07-22 21:10:04 +00:00
|
|
|
X86AsmPrinter &AsmPrinter;
|
2009-09-12 20:34:57 +00:00
|
|
|
public:
|
2010-07-20 22:45:33 +00:00
|
|
|
X86MCInstLower(Mangler *mang, const MachineFunction &MF,
|
2010-07-22 21:10:04 +00:00
|
|
|
X86AsmPrinter &asmprinter);
|
2009-09-12 20:34:57 +00:00
|
|
|
|
|
|
|
void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
|
|
|
|
2010-02-08 23:03:41 +00:00
|
|
|
MCSymbol *GetSymbolFromOperand(const MachineOperand &MO) const;
|
2009-09-12 20:34:57 +00:00
|
|
|
MCOperand LowerSymbolOperand(const MachineOperand &MO, MCSymbol *Sym) const;
|
2009-09-16 06:25:03 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
MachineModuleInfoMachO &getMachOMMI() const;
|
2009-09-12 20:34:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|