zpu: wip eke out some simple instructions for load/store/add
[llvm/zpu.git] / lib / Target / X86 / InstPrinter / X86IntelInstPrinter.h
blob6f120322742b274455931a64d3f68ac7a876d66b
1 //===-- X86IntelInstPrinter.h - Convert X86 MCInst to assembly syntax -----===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This class prints an X86 MCInst to intel style .s file syntax.
12 //===----------------------------------------------------------------------===//
14 #ifndef X86_INTEL_INST_PRINTER_H
15 #define X86_INTEL_INST_PRINTER_H
17 #include "llvm/MC/MCInstPrinter.h"
18 #include "llvm/Support/raw_ostream.h"
20 namespace llvm {
21 class MCOperand;
23 class X86IntelInstPrinter : public MCInstPrinter {
24 public:
25 X86IntelInstPrinter(const MCAsmInfo &MAI)
26 : MCInstPrinter(MAI) {}
28 virtual void printInst(const MCInst *MI, raw_ostream &OS);
29 virtual StringRef getOpcodeName(unsigned Opcode) const;
31 // Autogenerated by tblgen.
32 void printInstruction(const MCInst *MI, raw_ostream &O);
33 static const char *getRegisterName(unsigned RegNo);
34 static const char *getInstructionName(unsigned Opcode);
37 void printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O);
38 void printMemReference(const MCInst *MI, unsigned Op, raw_ostream &O);
39 void printSSECC(const MCInst *MI, unsigned Op, raw_ostream &O);
40 void print_pcrel_imm(const MCInst *MI, unsigned OpNo, raw_ostream &O);
42 void printopaquemem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
43 O << "OPAQUE PTR ";
44 printMemReference(MI, OpNo, O);
47 void printi8mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
48 O << "BYTE PTR ";
49 printMemReference(MI, OpNo, O);
51 void printi16mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
52 O << "WORD PTR ";
53 printMemReference(MI, OpNo, O);
55 void printi32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
56 O << "DWORD PTR ";
57 printMemReference(MI, OpNo, O);
59 void printi64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
60 O << "QWORD PTR ";
61 printMemReference(MI, OpNo, O);
63 void printi128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
64 O << "XMMWORD PTR ";
65 printMemReference(MI, OpNo, O);
67 void printi256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
68 O << "YMMWORD PTR ";
69 printMemReference(MI, OpNo, O);
71 void printf32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
72 O << "DWORD PTR ";
73 printMemReference(MI, OpNo, O);
75 void printf64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
76 O << "QWORD PTR ";
77 printMemReference(MI, OpNo, O);
79 void printf80mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
80 O << "XWORD PTR ";
81 printMemReference(MI, OpNo, O);
83 void printf128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
84 O << "XMMWORD PTR ";
85 printMemReference(MI, OpNo, O);
87 void printf256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
88 O << "YMMWORD PTR ";
89 printMemReference(MI, OpNo, O);
95 #endif