2012-02-18 12:03:15 +00:00
|
|
|
//= X86IntelInstPrinter.h - Convert X86 MCInst to assembly syntax -*- C++ -*-=//
|
2009-09-20 07:17:49 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2012-10-03 19:00:20 +00:00
|
|
|
// This class prints an X86 MCInst to Intel style .s file syntax.
|
2009-09-20 07:17:49 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef X86_INTEL_INST_PRINTER_H
|
|
|
|
#define X86_INTEL_INST_PRINTER_H
|
|
|
|
|
|
|
|
#include "llvm/MC/MCInstPrinter.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
2011-03-21 04:13:46 +00:00
|
|
|
|
|
|
|
class MCOperand;
|
2009-09-20 07:17:49 +00:00
|
|
|
|
|
|
|
class X86IntelInstPrinter : public MCInstPrinter {
|
|
|
|
public:
|
2012-04-02 06:09:36 +00:00
|
|
|
X86IntelInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,
|
|
|
|
const MCRegisterInfo &MRI)
|
|
|
|
: MCInstPrinter(MAI, MII, MRI) {}
|
2011-04-07 21:20:06 +00:00
|
|
|
|
2011-06-02 02:34:55 +00:00
|
|
|
virtual void printRegName(raw_ostream &OS, unsigned RegNo) const;
|
2011-09-15 23:38:46 +00:00
|
|
|
virtual void printInst(const MCInst *MI, raw_ostream &OS, StringRef Annot);
|
2009-09-20 07:17:49 +00:00
|
|
|
|
|
|
|
// Autogenerated by tblgen.
|
2010-04-04 04:47:45 +00:00
|
|
|
void printInstruction(const MCInst *MI, raw_ostream &O);
|
2009-09-20 07:17:49 +00:00
|
|
|
static const char *getRegisterName(unsigned RegNo);
|
|
|
|
|
2010-04-04 04:47:45 +00:00
|
|
|
void printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O);
|
|
|
|
void printMemReference(const MCInst *MI, unsigned Op, raw_ostream &O);
|
|
|
|
void printSSECC(const MCInst *MI, unsigned Op, raw_ostream &O);
|
2012-10-09 05:26:13 +00:00
|
|
|
void printAVXCC(const MCInst *MI, unsigned Op, raw_ostream &O);
|
2012-09-10 22:50:57 +00:00
|
|
|
void printPCRelImm(const MCInst *MI, unsigned OpNo, raw_ostream &O);
|
2009-09-20 07:17:49 +00:00
|
|
|
|
2010-04-04 04:47:45 +00:00
|
|
|
void printopaquemem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
2009-09-20 07:17:49 +00:00
|
|
|
O << "OPAQUE PTR ";
|
2010-04-04 04:47:45 +00:00
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-20 07:17:49 +00:00
|
|
|
}
|
|
|
|
|
2010-04-04 04:47:45 +00:00
|
|
|
void printi8mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
2009-09-20 07:17:49 +00:00
|
|
|
O << "BYTE PTR ";
|
2010-04-04 04:47:45 +00:00
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-20 07:17:49 +00:00
|
|
|
}
|
2010-04-04 04:47:45 +00:00
|
|
|
void printi16mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
2009-09-20 07:17:49 +00:00
|
|
|
O << "WORD PTR ";
|
2010-04-04 04:47:45 +00:00
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-20 07:17:49 +00:00
|
|
|
}
|
2010-04-04 04:47:45 +00:00
|
|
|
void printi32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
2009-09-20 07:17:49 +00:00
|
|
|
O << "DWORD PTR ";
|
2010-04-04 04:47:45 +00:00
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-20 07:17:49 +00:00
|
|
|
}
|
2010-04-04 04:47:45 +00:00
|
|
|
void printi64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
2009-09-20 07:17:49 +00:00
|
|
|
O << "QWORD PTR ";
|
2010-04-04 04:47:45 +00:00
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-20 07:17:49 +00:00
|
|
|
}
|
2010-04-04 04:47:45 +00:00
|
|
|
void printi128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
2009-09-20 07:17:49 +00:00
|
|
|
O << "XMMWORD PTR ";
|
2010-04-04 04:47:45 +00:00
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-20 07:17:49 +00:00
|
|
|
}
|
2010-07-19 23:32:44 +00:00
|
|
|
void printi256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
O << "YMMWORD PTR ";
|
|
|
|
printMemReference(MI, OpNo, O);
|
|
|
|
}
|
2010-04-04 04:47:45 +00:00
|
|
|
void printf32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
2009-09-20 07:17:49 +00:00
|
|
|
O << "DWORD PTR ";
|
2010-04-04 04:47:45 +00:00
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-20 07:17:49 +00:00
|
|
|
}
|
2010-04-04 04:47:45 +00:00
|
|
|
void printf64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
2009-09-20 07:17:49 +00:00
|
|
|
O << "QWORD PTR ";
|
2010-04-04 04:47:45 +00:00
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-20 07:17:49 +00:00
|
|
|
}
|
2010-04-04 04:47:45 +00:00
|
|
|
void printf80mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
2009-09-20 07:17:49 +00:00
|
|
|
O << "XWORD PTR ";
|
2010-04-04 04:47:45 +00:00
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-20 07:17:49 +00:00
|
|
|
}
|
2010-04-04 04:47:45 +00:00
|
|
|
void printf128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
2009-09-20 07:17:49 +00:00
|
|
|
O << "XMMWORD PTR ";
|
2010-04-04 04:47:45 +00:00
|
|
|
printMemReference(MI, OpNo, O);
|
2009-09-20 07:17:49 +00:00
|
|
|
}
|
2010-07-09 18:27:43 +00:00
|
|
|
void printf256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
O << "YMMWORD PTR ";
|
|
|
|
printMemReference(MI, OpNo, O);
|
|
|
|
}
|
2009-09-20 07:17:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|