2017-02-07 05:55:43 +08:00
|
|
|
//=- X86ATTInstPrinter.h - Convert X86 MCInst to assembly syntax --*- C++ -*-=//
|
2009-09-14 03:30:11 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2009-09-14 03:30:11 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This class prints an X86 MCInst to AT&T style .s file syntax.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_X86_INSTPRINTER_X86ATTINSTPRINTER_H
|
|
|
|
#define LLVM_LIB_TARGET_X86_INSTPRINTER_X86ATTINSTPRINTER_H
|
2009-09-14 03:30:11 +08:00
|
|
|
|
2018-06-05 18:41:39 +08:00
|
|
|
#include "X86InstPrinterCommon.h"
|
2009-09-14 09:49:26 +08:00
|
|
|
|
2009-09-14 03:30:11 +08:00
|
|
|
namespace llvm {
|
2011-03-21 12:13:46 +08:00
|
|
|
|
2018-06-05 18:41:39 +08:00
|
|
|
class X86ATTInstPrinter final : public X86InstPrinterCommon {
|
2009-09-14 03:30:11 +08:00
|
|
|
public:
|
2012-04-02 14:09:36 +08:00
|
|
|
X86ATTInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,
|
2015-03-31 06:16:37 +08:00
|
|
|
const MCRegisterInfo &MRI)
|
2018-06-05 18:41:39 +08:00
|
|
|
: X86InstPrinterCommon(MAI, MII, MRI) {}
|
2012-03-06 03:33:20 +08:00
|
|
|
|
2014-03-09 15:44:38 +08:00
|
|
|
void printRegName(raw_ostream &OS, unsigned RegNo) const override;
|
2015-03-28 04:36:02 +08:00
|
|
|
void printInst(const MCInst *MI, raw_ostream &OS, StringRef Annot,
|
|
|
|
const MCSubtargetInfo &STI) override;
|
2010-02-12 06:57:32 +08:00
|
|
|
|
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);
|
2014-05-13 02:04:06 +08:00
|
|
|
void printCustomAliasOperand(const MCInst *MI, unsigned OpIdx,
|
|
|
|
unsigned PrintMethodIdx, raw_ostream &O);
|
2011-04-08 05:20:06 +08:00
|
|
|
|
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);
|
2009-09-14 03:30:11 +08:00
|
|
|
|
2018-06-05 18:41:39 +08:00
|
|
|
void printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &OS) override;
|
2010-04-04 12:47:45 +08:00
|
|
|
void printMemReference(const MCInst *MI, unsigned Op, raw_ostream &OS);
|
2013-08-26 06:23:38 +08:00
|
|
|
void printMemOffset(const MCInst *MI, unsigned OpNo, raw_ostream &OS);
|
2018-06-05 18:41:39 +08:00
|
|
|
void printSrcIdx(const MCInst *MI, unsigned Op, raw_ostream &O);
|
|
|
|
void printDstIdx(const MCInst *MI, unsigned Op, raw_ostream &O);
|
2015-01-23 16:00:59 +08:00
|
|
|
void printU8Imm(const MCInst *MI, unsigned Op, raw_ostream &OS);
|
2019-02-04 12:15:10 +08:00
|
|
|
void printSTiRegOperand(const MCInst *MI, unsigned OpNo, raw_ostream &OS);
|
2013-08-26 06:23:38 +08:00
|
|
|
|
2015-01-08 15:41:30 +08:00
|
|
|
void printanymem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
|
|
|
}
|
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
|
|
|
}
|
2014-12-04 13:20:33 +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);
|
|
|
|
}
|
2013-07-28 16:28:38 +08:00
|
|
|
void printi512mem(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);
|
|
|
|
}
|
2013-07-28 16:28:38 +08:00
|
|
|
void printf512mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
|
|
|
|
printMemReference(MI, OpNo, O);
|
|
|
|
}
|
2013-08-26 06:23:38 +08:00
|
|
|
|
2014-01-22 23:08:08 +08: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 23:08:21 +08: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-26 06:23:38 +08: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);
|
|
|
|
}
|
2014-09-04 06:46:44 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool HasCustomInstComment;
|
2009-09-14 03:30:11 +08:00
|
|
|
};
|
|
|
|
|
2017-02-07 05:55:43 +08:00
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif // LLVM_LIB_TARGET_X86_INSTPRINTER_X86ATTINSTPRINTER_H
|