2012-02-18 12:03:15 +00:00
|
|
|
//==- X86ATTInstPrinter.h - Convert X86 MCInst to assembly syntax -*- C++ -*-=//
|
2009-09-13 19:30:11 +00: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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_TARGET_X86_INSTPRINTER_X86ATTINSTPRINTER_H
|
|
|
|
#define LLVM_LIB_TARGET_X86_INSTPRINTER_X86ATTINSTPRINTER_H
|
2009-09-13 19:30:11 +00:00
|
|
|
|
2009-09-14 01:49:26 +00:00
|
|
|
#include "llvm/MC/MCInstPrinter.h"
|
|
|
|
|
2009-09-13 19:30:11 +00:00
|
|
|
namespace llvm {
|
2011-03-21 04:13:46 +00:00
|
|
|
|
|
|
|
class MCOperand;
|
2014-03-31 06:53:13 +00:00
|
|
|
|
|
|
|
class X86ATTInstPrinter final : public MCInstPrinter {
|
2009-09-13 19:30:11 +00:00
|
|
|
public:
|
2012-04-02 06:09:36 +00:00
|
|
|
X86ATTInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,
|
|
|
|
const MCRegisterInfo &MRI)
|
|
|
|
: MCInstPrinter(MAI, MII, MRI) {}
|
2012-03-05 19:33:20 +00:00
|
|
|
|
2014-03-09 07:44:38 +00:00
|
|
|
void printRegName(raw_ostream &OS, unsigned RegNo) const override;
|
|
|
|
void printInst(const MCInst *MI, raw_ostream &OS, StringRef Annot) override;
|
2010-02-11 22:57:32 +00:00
|
|
|
|
2011-04-18 21:28:11 +00:00
|
|
|
// Autogenerated by tblgen, returns true if we successfully printed an
|
|
|
|
// alias.
|
2011-04-07 21:20:06 +00:00
|
|
|
bool printAliasInstr(const MCInst *MI, raw_ostream &OS);
|
2014-05-12 18:04:06 +00:00
|
|
|
void printCustomAliasOperand(const MCInst *MI, unsigned OpIdx,
|
|
|
|
unsigned PrintMethodIdx, raw_ostream &O);
|
2011-04-07 21:20:06 +00:00
|
|
|
|
2009-09-13 20:08:00 +00:00
|
|
|
// Autogenerated by tblgen.
|
2010-04-04 04:47:45 +00:00
|
|
|
void printInstruction(const MCInst *MI, raw_ostream &OS);
|
2009-09-13 20:19:22 +00:00
|
|
|
static const char *getRegisterName(unsigned RegNo);
|
2009-09-13 19:30:11 +00:00
|
|
|
|
2010-04-04 04:47:45 +00: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);
|
2012-10-09 05:26:13 +00:00
|
|
|
void printAVXCC(const MCInst *MI, unsigned Op, raw_ostream &OS);
|
2012-09-10 22:50:57 +00:00
|
|
|
void printPCRelImm(const MCInst *MI, unsigned OpNo, raw_ostream &OS);
|
2014-01-22 15:08:08 +00:00
|
|
|
void printSrcIdx(const MCInst *MI, unsigned OpNo, raw_ostream &OS);
|
2014-01-22 15:08:21 +00:00
|
|
|
void printDstIdx(const MCInst *MI, unsigned OpNo, raw_ostream &OS);
|
2013-08-25 22:23:38 +00:00
|
|
|
void printMemOffset(const MCInst *MI, unsigned OpNo, raw_ostream &OS);
|
2014-01-01 15:12:34 +00:00
|
|
|
void printRoundingControl(const MCInst *MI, unsigned Op, raw_ostream &OS);
|
2013-08-25 22:23:38 +00:00
|
|
|
|
2010-04-04 04:47:45 +00:00
|
|
|
void printopaquemem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-13 19:30:11 +00:00
|
|
|
}
|
|
|
|
|
2010-04-04 04:47:45 +00:00
|
|
|
void printi8mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-13 19:30:11 +00:00
|
|
|
}
|
2010-04-04 04:47:45 +00:00
|
|
|
void printi16mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-13 19:30:11 +00:00
|
|
|
}
|
2010-04-04 04:47:45 +00:00
|
|
|
void printi32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-13 19:30:11 +00:00
|
|
|
}
|
2010-04-04 04:47:45 +00:00
|
|
|
void printi64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-13 19:30:11 +00:00
|
|
|
}
|
2010-04-04 04:47:45 +00:00
|
|
|
void printi128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-13 19:30:11 +00:00
|
|
|
}
|
2010-07-19 23:32:44 +00:00
|
|
|
void printi256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
|
|
|
}
|
2013-07-28 08:28:38 +00:00
|
|
|
void printi512mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
|
|
|
}
|
2010-04-04 04:47:45 +00:00
|
|
|
void printf32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-13 19:30:11 +00:00
|
|
|
}
|
2010-04-04 04:47:45 +00:00
|
|
|
void printf64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-13 19:30:11 +00:00
|
|
|
}
|
2010-04-04 04:47:45 +00:00
|
|
|
void printf80mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-13 19:30:11 +00:00
|
|
|
}
|
2010-04-04 04:47:45 +00:00
|
|
|
void printf128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-13 19:30:11 +00:00
|
|
|
}
|
2010-07-09 18:27:43 +00:00
|
|
|
void printf256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
|
|
|
}
|
2013-07-28 08:28:38 +00:00
|
|
|
void printf512mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
|
|
|
}
|
2013-08-25 22:23:38 +00:00
|
|
|
|
2014-01-22 15:08:08 +00:00
|
|
|
void printSrcIdx8(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printSrcIdx(MI, OpNo, O);
|
|
|
|
}
|
|
|
|
void printSrcIdx16(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printSrcIdx(MI, OpNo, O);
|
|
|
|
}
|
|
|
|
void printSrcIdx32(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printSrcIdx(MI, OpNo, O);
|
|
|
|
}
|
|
|
|
void printSrcIdx64(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printSrcIdx(MI, OpNo, O);
|
|
|
|
}
|
2014-01-22 15:08:21 +00:00
|
|
|
void printDstIdx8(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printDstIdx(MI, OpNo, O);
|
|
|
|
}
|
|
|
|
void printDstIdx16(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printDstIdx(MI, OpNo, O);
|
|
|
|
}
|
|
|
|
void printDstIdx32(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printDstIdx(MI, OpNo, O);
|
|
|
|
}
|
|
|
|
void printDstIdx64(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printDstIdx(MI, OpNo, O);
|
|
|
|
}
|
2013-08-25 22:23:38 +00:00
|
|
|
void printMemOffs8(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemOffset(MI, OpNo, O);
|
|
|
|
}
|
|
|
|
void printMemOffs16(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemOffset(MI, OpNo, O);
|
|
|
|
}
|
|
|
|
void printMemOffs32(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemOffset(MI, OpNo, O);
|
|
|
|
}
|
|
|
|
void printMemOffs64(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemOffset(MI, OpNo, O);
|
|
|
|
}
|
2009-09-13 19:30:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|