mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-21 00:32:23 +00:00
226036ee73
with changes to add a separate optional register update argument. Change all the NEON instructions with address register writeback to use it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99095 91177308-0d34-0410-b5e6-96231b3b80d8
103 lines
4.4 KiB
C++
103 lines
4.4 KiB
C++
//===-- ARMInstPrinter.h - Convert ARM MCInst to assembly syntax ----------===//
|
|
//
|
|
// 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 ARM MCInst to a .s file.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef ARMINSTPRINTER_H
|
|
#define ARMINSTPRINTER_H
|
|
|
|
#include "llvm/MC/MCInstPrinter.h"
|
|
|
|
namespace llvm {
|
|
class MCOperand;
|
|
|
|
class ARMInstPrinter : public MCInstPrinter {
|
|
bool VerboseAsm;
|
|
public:
|
|
ARMInstPrinter(raw_ostream &O, const MCAsmInfo &MAI, bool verboseAsm)
|
|
: MCInstPrinter(O, MAI), VerboseAsm(verboseAsm) {}
|
|
|
|
virtual void printInst(const MCInst *MI);
|
|
|
|
// Autogenerated by tblgen.
|
|
void printInstruction(const MCInst *MI);
|
|
static const char *getRegisterName(unsigned RegNo);
|
|
|
|
|
|
void printOperand(const MCInst *MI, unsigned OpNo,
|
|
const char *Modifier = 0);
|
|
|
|
void printSOImmOperand(const MCInst *MI, unsigned OpNum);
|
|
void printSOImm2PartOperand(const MCInst *MI, unsigned OpNum);
|
|
|
|
void printSORegOperand(const MCInst *MI, unsigned OpNum);
|
|
void printAddrMode2Operand(const MCInst *MI, unsigned OpNum);
|
|
void printAddrMode2OffsetOperand(const MCInst *MI, unsigned OpNum);
|
|
void printAddrMode3Operand(const MCInst *MI, unsigned OpNum);
|
|
void printAddrMode3OffsetOperand(const MCInst *MI, unsigned OpNum);
|
|
void printAddrMode4Operand(const MCInst *MI, unsigned OpNum,
|
|
const char *Modifier = 0);
|
|
void printAddrMode5Operand(const MCInst *MI, unsigned OpNum,
|
|
const char *Modifier = 0);
|
|
void printAddrMode6Operand(const MCInst *MI, unsigned OpNum);
|
|
void printAddrMode6OffsetOperand(const MCInst *MI, unsigned OpNum);
|
|
void printAddrModePCOperand(const MCInst *MI, unsigned OpNum,
|
|
const char *Modifier = 0);
|
|
|
|
void printBitfieldInvMaskImmOperand(const MCInst *MI, unsigned OpNum);
|
|
|
|
void printThumbS4ImmOperand(const MCInst *MI, unsigned OpNum);
|
|
void printThumbITMask(const MCInst *MI, unsigned OpNum);
|
|
void printThumbAddrModeRROperand(const MCInst *MI, unsigned OpNum);
|
|
void printThumbAddrModeRI5Operand(const MCInst *MI, unsigned OpNum,
|
|
unsigned Scale);
|
|
void printThumbAddrModeS1Operand(const MCInst *MI, unsigned OpNum);
|
|
void printThumbAddrModeS2Operand(const MCInst *MI, unsigned OpNum);
|
|
void printThumbAddrModeS4Operand(const MCInst *MI, unsigned OpNum);
|
|
void printThumbAddrModeSPOperand(const MCInst *MI, unsigned OpNum);
|
|
|
|
void printT2SOOperand(const MCInst *MI, unsigned OpNum);
|
|
void printT2AddrModeImm12Operand(const MCInst *MI, unsigned OpNum);
|
|
void printT2AddrModeImm8Operand(const MCInst *MI, unsigned OpNum);
|
|
void printT2AddrModeImm8s4Operand(const MCInst *MI, unsigned OpNum);
|
|
void printT2AddrModeImm8OffsetOperand(const MCInst *MI, unsigned OpNum);
|
|
void printT2AddrModeImm8s4OffsetOperand(const MCInst *MI, unsigned OpNum);
|
|
void printT2AddrModeSoRegOperand(const MCInst *MI, unsigned OpNum);
|
|
|
|
void printCPSOptionOperand(const MCInst *MI, unsigned OpNum);
|
|
void printMSRMaskOperand(const MCInst *MI, unsigned OpNum);
|
|
void printNegZeroOperand(const MCInst *MI, unsigned OpNum);
|
|
void printPredicateOperand(const MCInst *MI, unsigned OpNum);
|
|
void printMandatoryPredicateOperand(const MCInst *MI, unsigned OpNum);
|
|
void printSBitModifierOperand(const MCInst *MI, unsigned OpNum);
|
|
void printRegisterList(const MCInst *MI, unsigned OpNum);
|
|
void printCPInstOperand(const MCInst *MI, unsigned OpNum,
|
|
const char *Modifier);
|
|
void printJTBlockOperand(const MCInst *MI, unsigned OpNum) {}
|
|
void printJT2BlockOperand(const MCInst *MI, unsigned OpNum) {}
|
|
void printTBAddrMode(const MCInst *MI, unsigned OpNum);
|
|
void printNoHashImmediate(const MCInst *MI, unsigned OpNum);
|
|
void printVFPf32ImmOperand(const MCInst *MI, unsigned OpNum);
|
|
void printVFPf64ImmOperand(const MCInst *MI, unsigned OpNum);
|
|
void printHex8ImmOperand(const MCInst *MI, int OpNum) {}
|
|
void printHex16ImmOperand(const MCInst *MI, int OpNum) {}
|
|
void printHex32ImmOperand(const MCInst *MI, int OpNum) {}
|
|
void printHex64ImmOperand(const MCInst *MI, int OpNum) {}
|
|
|
|
void printPCLabel(const MCInst *MI, unsigned OpNum);
|
|
// FIXME: Implement.
|
|
void PrintSpecial(const MCInst *MI, const char *Kind) {}
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|