2012-02-17 01:23:50 +00:00
|
|
|
//===-- MipsMCInstLower.h - Lower MachineInstr to MCInst -------*- C++ -*--===//
|
2011-07-07 20:24:54 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef MIPSMCINSTLOWER_H
|
|
|
|
#define MIPSMCINSTLOWER_H
|
2014-04-30 15:06:25 +00:00
|
|
|
#include "MCTargetDesc/MipsMCExpr.h"
|
2011-11-08 22:26:47 +00:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2011-07-07 20:24:54 +00:00
|
|
|
#include "llvm/CodeGen/MachineOperand.h"
|
|
|
|
#include "llvm/Support/Compiler.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class MCContext;
|
|
|
|
class MCInst;
|
|
|
|
class MCOperand;
|
|
|
|
class MachineInstr;
|
|
|
|
class MachineFunction;
|
|
|
|
class MipsAsmPrinter;
|
2012-02-28 07:46:26 +00:00
|
|
|
|
2011-07-07 20:24:54 +00:00
|
|
|
/// MipsMCInstLower - This class is used to lower an MachineInstr into an
|
|
|
|
// MCInst.
|
|
|
|
class LLVM_LIBRARY_VISIBILITY MipsMCInstLower {
|
|
|
|
typedef MachineOperand::MachineOperandType MachineOperandType;
|
2012-03-28 00:22:50 +00:00
|
|
|
MCContext *Ctx;
|
2011-07-07 20:24:54 +00:00
|
|
|
MipsAsmPrinter &AsmPrinter;
|
|
|
|
public:
|
2012-03-28 00:22:50 +00:00
|
|
|
MipsMCInstLower(MipsAsmPrinter &asmprinter);
|
2013-10-29 16:24:21 +00:00
|
|
|
void Initialize(MCContext *C);
|
2011-07-07 20:24:54 +00:00
|
|
|
void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
2012-09-27 01:59:07 +00:00
|
|
|
MCOperand LowerOperand(const MachineOperand& MO, unsigned offset = 0) const;
|
2012-07-16 15:14:51 +00:00
|
|
|
|
2011-07-07 20:24:54 +00:00
|
|
|
private:
|
|
|
|
MCOperand LowerSymbolOperand(const MachineOperand &MO,
|
2011-08-16 02:15:03 +00:00
|
|
|
MachineOperandType MOTy, unsigned Offset) const;
|
2014-04-30 15:06:25 +00:00
|
|
|
MCOperand createSub(MachineBasicBlock *BB1, MachineBasicBlock *BB2,
|
|
|
|
MCSymbolRefExpr::VariantKind Kind) const;
|
2014-05-27 18:53:06 +00:00
|
|
|
void lowerLongBranchLUi(const MachineInstr *MI, MCInst &OutMI) const;
|
2014-04-30 15:06:25 +00:00
|
|
|
void lowerLongBranchADDiu(const MachineInstr *MI, MCInst &OutMI,
|
|
|
|
int Opcode,
|
|
|
|
MCSymbolRefExpr::VariantKind Kind) const;
|
|
|
|
bool lowerLongBranch(const MachineInstr *MI, MCInst &OutMI) const;
|
2011-07-07 20:24:54 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|