2012-02-18 20:03:15 +08:00
|
|
|
//==- X86ATTInstPrinter.h - Convert X86 MCInst to assembly syntax -*- C++ -*-=//
|
2009-09-14 03:30:11 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This class prints an X86 MCInst to AT&T style .s file syntax.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef X86_ATT_INST_PRINTER_H
|
|
|
|
#define X86_ATT_INST_PRINTER_H
|
|
|
|
|
2009-09-14 09:49:26 +08:00
|
|
|
#include "llvm/MC/MCInstPrinter.h"
|
|
|
|
|
2009-09-14 03:30:11 +08:00
|
|
|
namespace llvm {
|
2011-03-21 12:13:46 +08:00
|
|
|
|
|
|
|
class MCOperand;
|
2009-09-14 03:30:11 +08:00
|
|
|
|
2009-09-14 09:49:26 +08:00
|
|
|
class X86ATTInstPrinter : public MCInstPrinter {
|
2009-09-14 03:30:11 +08:00
|
|
|
public:
|
2012-03-06 03:33:20 +08:00
|
|
|
X86ATTInstPrinter(const MCAsmInfo &MAI, const MCRegisterInfo &MRI)
|
|
|
|
: MCInstPrinter(MAI, MRI) {}
|
|
|
|
|
2011-06-02 10:34:55 +08:00
|
|
|
virtual void printRegName(raw_ostream &OS, unsigned RegNo) const;
|
2011-09-16 07:38:46 +08:00
|
|
|
virtual void printInst(const MCInst *MI, raw_ostream &OS, StringRef Annot);
|
2010-02-12 06:57:32 +08:00
|
|
|
virtual StringRef getOpcodeName(unsigned Opcode) const;
|
|
|
|
|
2011-04-19 05:28:11 +08:00
|
|
|
// Autogenerated by tblgen, returns true if we successfully printed an
|
|
|
|
// alias.
|
2011-04-08 05:20:06 +08:00
|
|
|
bool printAliasInstr(const MCInst *MI, raw_ostream &OS);
|
|
|
|
|
2009-09-14 04:08:00 +08:00
|
|
|
// Autogenerated by tblgen.
|
2010-04-04 12:47:45 +08:00
|
|
|
void printInstruction(const MCInst *MI, raw_ostream &OS);
|
2009-09-14 04:19:22 +08:00
|
|
|
static const char *getRegisterName(unsigned RegNo);
|
2010-02-12 06:57:32 +08:00
|
|
|
static const char *getInstructionName(unsigned Opcode);
|
2009-09-14 03:30:11 +08:00
|
|
|
|
2010-04-04 12:47:45 +08:00
|
|
|
void printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &OS);
|
|
|
|
void printMemReference(const MCInst *MI, unsigned Op, raw_ostream &OS);
|
|
|
|
void printSSECC(const MCInst *MI, unsigned Op, raw_ostream &OS);
|
|
|
|
void print_pcrel_imm(const MCInst *MI, unsigned OpNo, raw_ostream &OS);
|
2009-09-14 03:30:11 +08:00
|
|
|
|
2010-04-04 12:47:45 +08:00
|
|
|
void printopaquemem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-14 03:30:11 +08:00
|
|
|
}
|
|
|
|
|
2010-04-04 12:47:45 +08:00
|
|
|
void printi8mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-14 03:30:11 +08:00
|
|
|
}
|
2010-04-04 12:47:45 +08:00
|
|
|
void printi16mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-14 03:30:11 +08:00
|
|
|
}
|
2010-04-04 12:47:45 +08:00
|
|
|
void printi32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-14 03:30:11 +08:00
|
|
|
}
|
2010-04-04 12:47:45 +08:00
|
|
|
void printi64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-14 03:30:11 +08:00
|
|
|
}
|
2010-04-04 12:47:45 +08:00
|
|
|
void printi128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-14 03:30:11 +08:00
|
|
|
}
|
2010-07-20 07:32:44 +08:00
|
|
|
void printi256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
|
|
|
}
|
2010-04-04 12:47:45 +08:00
|
|
|
void printf32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-14 03:30:11 +08:00
|
|
|
}
|
2010-04-04 12:47:45 +08:00
|
|
|
void printf64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-14 03:30:11 +08:00
|
|
|
}
|
2010-04-04 12:47:45 +08:00
|
|
|
void printf80mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-14 03:30:11 +08:00
|
|
|
}
|
2010-04-04 12:47:45 +08:00
|
|
|
void printf128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-14 03:30:11 +08:00
|
|
|
}
|
2010-07-10 02:27:43 +08:00
|
|
|
void printf256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
|
|
|
}
|
2009-09-14 03:30:11 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|