2012-02-18 13:03:15 +01:00
|
|
|
//===-- X86MCInstLower.h - Lower MachineInstr to MCInst ---------*- C++ -*-===//
|
2009-09-12 22:34:57 +02:00
|
|
|
//
|
|
|
|
// 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 20:33:59 +02:00
|
|
|
#include "llvm/Support/Compiler.h"
|
|
|
|
|
2009-09-12 22:34:57 +02:00
|
|
|
namespace llvm {
|
2010-07-21 00:30:53 +02:00
|
|
|
class MCAsmInfo;
|
2009-09-12 22:34:57 +02:00
|
|
|
class MCContext;
|
|
|
|
class MCInst;
|
|
|
|
class MCOperand;
|
|
|
|
class MCSymbol;
|
|
|
|
class MachineInstr;
|
2010-07-21 00:26:07 +02:00
|
|
|
class MachineFunction;
|
2009-09-16 08:25:03 +02:00
|
|
|
class MachineModuleInfoMachO;
|
2009-09-12 22:34:57 +02:00
|
|
|
class MachineOperand;
|
|
|
|
class Mangler;
|
2010-07-21 00:30:53 +02:00
|
|
|
class TargetMachine;
|
2009-09-20 09:35:34 +02:00
|
|
|
class X86AsmPrinter;
|
2012-08-01 20:39:17 +02:00
|
|
|
|
2009-09-12 23:01:20 +02:00
|
|
|
/// X86MCInstLower - This class is used to lower an MachineInstr into an MCInst.
|
2010-05-11 22:16:09 +02:00
|
|
|
class LLVM_LIBRARY_VISIBILITY X86MCInstLower {
|
2009-09-12 22:34:57 +02:00
|
|
|
MCContext &Ctx;
|
2009-10-19 23:59:25 +02:00
|
|
|
Mangler *Mang;
|
2010-07-21 00:26:07 +02:00
|
|
|
const MachineFunction &MF;
|
2010-07-21 00:30:53 +02:00
|
|
|
const TargetMachine &TM;
|
|
|
|
const MCAsmInfo &MAI;
|
2010-07-22 23:10:04 +02:00
|
|
|
X86AsmPrinter &AsmPrinter;
|
2009-09-12 22:34:57 +02:00
|
|
|
public:
|
2010-07-21 00:45:33 +02:00
|
|
|
X86MCInstLower(Mangler *mang, const MachineFunction &MF,
|
2010-07-22 23:10:04 +02:00
|
|
|
X86AsmPrinter &asmprinter);
|
2012-08-01 20:39:17 +02:00
|
|
|
|
2009-09-12 22:34:57 +02:00
|
|
|
void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
|
|
|
|
2010-02-09 00:03:41 +01:00
|
|
|
MCSymbol *GetSymbolFromOperand(const MachineOperand &MO) const;
|
2009-09-12 22:34:57 +02:00
|
|
|
MCOperand LowerSymbolOperand(const MachineOperand &MO, MCSymbol *Sym) const;
|
2012-08-01 20:39:17 +02:00
|
|
|
|
2009-09-16 08:25:03 +02:00
|
|
|
private:
|
|
|
|
MachineModuleInfoMachO &getMachOMMI() const;
|
2009-09-12 22:34:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|