#include "AMDGPUInstPrinter.h" #include "llvm/MC/MCInst.h" using namespace llvm; void AMDGPUInstPrinter::printInst(const MCInst *MI, raw_ostream &OS, StringRef Annot) { printInstruction(MI, OS); printAnnotation(OS, Annot); } void AMDGPUInstPrinter::printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O) { const MCOperand &Op = MI->getOperand(OpNo); if (Op.isReg()) { O << getRegisterName(Op.getReg()); } else if (Op.isImm()) { O << Op.getImm(); } else if (Op.isFPImm()) { O << Op.getFPImm(); } else { assert(!"unknown operand type in printOperand"); } } void AMDGPUInstPrinter::printMemOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O) { printOperand(MI, OpNo, O); } #include "AMDGPUGenAsmWriter.inc"