mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	Used to allow context sensitive printing of super-register or sub-register references. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152043 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			88 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| //==- X86ATTInstPrinter.h - Convert X86 MCInst to assembly syntax -*- C++ -*-=//
 | |
| //
 | |
| //                     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.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| 
 | |
| #ifndef X86_ATT_INST_PRINTER_H
 | |
| #define X86_ATT_INST_PRINTER_H
 | |
| 
 | |
| #include "llvm/MC/MCInstPrinter.h"
 | |
| 
 | |
| namespace llvm {
 | |
| 
 | |
| class MCOperand;
 | |
|   
 | |
| class X86ATTInstPrinter : public MCInstPrinter {
 | |
| public:
 | |
|   X86ATTInstPrinter(const MCAsmInfo &MAI, const MCRegisterInfo &MRI)
 | |
|     : MCInstPrinter(MAI, MRI) {}
 | |
| 
 | |
|   virtual void printRegName(raw_ostream &OS, unsigned RegNo) const;
 | |
|   virtual void printInst(const MCInst *MI, raw_ostream &OS, StringRef Annot);
 | |
|   virtual StringRef getOpcodeName(unsigned Opcode) const;
 | |
| 
 | |
|   // Autogenerated by tblgen, returns true if we successfully printed an
 | |
|   // alias.
 | |
|   bool printAliasInstr(const MCInst *MI, raw_ostream &OS);
 | |
| 
 | |
|   // Autogenerated by tblgen.
 | |
|   void printInstruction(const MCInst *MI, raw_ostream &OS);
 | |
|   static const char *getRegisterName(unsigned RegNo);
 | |
|   static const char *getInstructionName(unsigned Opcode);
 | |
| 
 | |
|   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);
 | |
|   void print_pcrel_imm(const MCInst *MI, unsigned OpNo, raw_ostream &OS);
 | |
|   
 | |
|   void printopaquemem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
 | |
|     printMemReference(MI, OpNo, O);
 | |
|   }
 | |
|   
 | |
|   void printi8mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
 | |
|     printMemReference(MI, OpNo, O);
 | |
|   }
 | |
|   void printi16mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
 | |
|     printMemReference(MI, OpNo, O);
 | |
|   }
 | |
|   void printi32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
 | |
|     printMemReference(MI, OpNo, O);
 | |
|   }
 | |
|   void printi64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
 | |
|     printMemReference(MI, OpNo, O);
 | |
|   }
 | |
|   void printi128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
 | |
|     printMemReference(MI, OpNo, O);
 | |
|   }
 | |
|   void printi256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
 | |
|     printMemReference(MI, OpNo, O);
 | |
|   }
 | |
|   void printf32mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
 | |
|     printMemReference(MI, OpNo, O);
 | |
|   }
 | |
|   void printf64mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
 | |
|     printMemReference(MI, OpNo, O);
 | |
|   }
 | |
|   void printf80mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
 | |
|     printMemReference(MI, OpNo, O);
 | |
|   }
 | |
|   void printf128mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
 | |
|     printMemReference(MI, OpNo, O);
 | |
|   }
 | |
|   void printf256mem(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
 | |
|     printMemReference(MI, OpNo, O);
 | |
|   }
 | |
| };
 | |
|   
 | |
| }
 | |
| 
 | |
| #endif
 |