2005-07-01 22:44:09 +00:00
|
|
|
//===-- X86ATTAsmPrinter.h - Convert X86 LLVM code to Intel assembly ------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// AT&T assembly code printer class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef X86ATTASMPRINTER_H
|
|
|
|
#define X86ATTASMPRINTER_H
|
|
|
|
|
|
|
|
#include "X86AsmPrinter.h"
|
|
|
|
#include "llvm/CodeGen/ValueTypes.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
struct X86ATTAsmPrinter : public X86SharedAsmPrinter {
|
2006-03-13 23:20:37 +00:00
|
|
|
X86ATTAsmPrinter(std::ostream &O, X86TargetMachine &TM)
|
2005-07-01 22:44:09 +00:00
|
|
|
: X86SharedAsmPrinter(O, TM) { }
|
|
|
|
|
|
|
|
virtual const char *getPassName() const {
|
|
|
|
return "X86 AT&T-Style Assembly Printer";
|
|
|
|
}
|
|
|
|
|
|
|
|
/// printInstruction - This method is automatically generated by tablegen
|
|
|
|
/// from the instruction set description. This method returns true if the
|
|
|
|
/// machine instruction was sufficiently described to print it, otherwise it
|
|
|
|
/// returns false.
|
|
|
|
bool printInstruction(const MachineInstr *MI);
|
|
|
|
|
2006-02-06 23:41:19 +00:00
|
|
|
// These methods are used by the tablegen'erated instruction printer.
|
|
|
|
void printOperand(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
const char *Modifier = 0);
|
2005-11-30 18:54:35 +00:00
|
|
|
void printi8mem(const MachineInstr *MI, unsigned OpNo) {
|
2005-07-01 22:44:09 +00:00
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2005-11-30 18:54:35 +00:00
|
|
|
void printi16mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
|
|
|
void printi32mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
|
|
|
void printi64mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2006-02-22 02:26:30 +00:00
|
|
|
void printi128mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2005-11-30 18:54:35 +00:00
|
|
|
void printf32mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
|
|
|
void printf64mem(const MachineInstr *MI, unsigned OpNo) {
|
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
2006-01-31 22:28:30 +00:00
|
|
|
void printf128mem(const MachineInstr *MI, unsigned OpNo) {
|
2005-11-30 18:54:35 +00:00
|
|
|
printMemReference(MI, OpNo);
|
|
|
|
}
|
|
|
|
|
2006-04-28 23:19:39 +00:00
|
|
|
bool printAsmMRegister(const MachineOperand &MO, const char Mode);
|
2006-04-28 21:19:05 +00:00
|
|
|
bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
unsigned AsmVariant, const char *ExtraCode);
|
|
|
|
bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
|
|
|
|
unsigned AsmVariant, const char *ExtraCode);
|
2006-04-28 23:11:40 +00:00
|
|
|
|
|
|
|
void printMachineInstruction(const MachineInstr *MI);
|
2005-11-30 18:54:35 +00:00
|
|
|
void printSSECC(const MachineInstr *MI, unsigned Op);
|
2005-07-01 22:44:09 +00:00
|
|
|
void printMemReference(const MachineInstr *MI, unsigned Op);
|
2006-02-18 00:15:05 +00:00
|
|
|
void printPICLabel(const MachineInstr *MI, unsigned Op);
|
2005-07-01 22:44:09 +00:00
|
|
|
bool runOnMachineFunction(MachineFunction &F);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|