LLVM  8.0.1
XCoreInstPrinter.cpp
Go to the documentation of this file.
1 //===-- XCoreInstPrinter.cpp - Convert XCore 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 XCore MCInst to a .s file.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "XCoreInstPrinter.h"
15 #include "llvm/ADT/StringRef.h"
16 #include "llvm/MC/MCExpr.h"
17 #include "llvm/MC/MCInst.h"
18 #include "llvm/MC/MCSymbol.h"
19 #include "llvm/Support/Casting.h"
22 #include <cassert>
23 
24 using namespace llvm;
25 
26 #define DEBUG_TYPE "asm-printer"
27 
28 #include "XCoreGenAsmWriter.inc"
29 
30 void XCoreInstPrinter::printRegName(raw_ostream &OS, unsigned RegNo) const {
31  OS << StringRef(getRegisterName(RegNo)).lower();
32 }
33 
35  StringRef Annot, const MCSubtargetInfo &STI) {
36  printInstruction(MI, O);
37  printAnnotation(O, Annot);
38 }
39 
40 void XCoreInstPrinter::
41 printInlineJT(const MCInst *MI, int opNum, raw_ostream &O) {
42  report_fatal_error("can't handle InlineJT");
43 }
44 
45 void XCoreInstPrinter::
46 printInlineJT32(const MCInst *MI, int opNum, raw_ostream &O) {
47  report_fatal_error("can't handle InlineJT32");
48 }
49 
50 static void printExpr(const MCExpr *Expr, const MCAsmInfo *MAI,
51  raw_ostream &OS) {
52  int Offset = 0;
53  const MCSymbolRefExpr *SRE;
54 
55  if (const MCBinaryExpr *BE = dyn_cast<MCBinaryExpr>(Expr)) {
56  SRE = dyn_cast<MCSymbolRefExpr>(BE->getLHS());
57  const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(BE->getRHS());
58  assert(SRE && CE && "Binary expression must be sym+const.");
59  Offset = CE->getValue();
60  } else {
61  SRE = dyn_cast<MCSymbolRefExpr>(Expr);
62  assert(SRE && "Unexpected MCExpr type.");
63  }
65 
66  SRE->getSymbol().print(OS, MAI);
67 
68  if (Offset) {
69  if (Offset > 0)
70  OS << '+';
71  OS << Offset;
72  }
73 }
74 
75 void XCoreInstPrinter::
76 printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O) {
77  const MCOperand &Op = MI->getOperand(OpNo);
78  if (Op.isReg()) {
79  printRegName(O, Op.getReg());
80  return;
81  }
82 
83  if (Op.isImm()) {
84  O << Op.getImm();
85  return;
86  }
87 
88  assert(Op.isExpr() && "unknown operand kind in printOperand");
89  printExpr(Op.getExpr(), &MAI, O);
90 }
bool isImm() const
Definition: MCInst.h:59
LLVM_ATTRIBUTE_NORETURN void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
Definition: Error.cpp:140
This class represents lattice values for constants.
Definition: AllocatorList.h:24
VariantKind getKind() const
Definition: MCExpr.h:338
bool isReg() const
Definition: MCInst.h:58
void printInst(const MCInst *MI, raw_ostream &O, StringRef Annot, const MCSubtargetInfo &STI) override
Print the specified MCInst to the specified raw_ostream.
Base class for the full range of assembler expressions which are needed for parsing.
Definition: MCExpr.h:36
Represent a reference to a symbol from inside an expression.
Definition: MCExpr.h:166
unsigned getReg() const
Returns the register number.
Definition: MCInst.h:65
void printRegName(raw_ostream &OS, unsigned RegNo) const override
Print the assembler register name.
const MCExpr * getExpr() const
Definition: MCInst.h:96
Instances of this class represent a single low-level machine instruction.
Definition: MCInst.h:161
This class is intended to be used as a base class for asm properties and features specific to the tar...
Definition: MCAsmInfo.h:56
int64_t getImm() const
Definition: MCInst.h:76
void printInstruction(const MCInst *MI, raw_ostream &O)
bool isExpr() const
Definition: MCInst.h:61
Binary assembler expressions.
Definition: MCExpr.h:417
const MCSymbol & getSymbol() const
Definition: MCExpr.h:336
const MCOperand & getOperand(unsigned i) const
Definition: MCInst.h:182
static void printExpr(const MCExpr *Expr, const MCAsmInfo *MAI, raw_ostream &OS)
const MCAsmInfo & MAI
Definition: MCInstPrinter.h:46
Generic base class for all target subtargets.
LLVM_NODISCARD std::enable_if<!is_simple_type< Y >::value, typename cast_retty< X, const Y >::ret_type >::type dyn_cast(const Y &Val)
Definition: Casting.h:323
This file contains the declaration of the XCoreInstPrinter class, which is used to print XCore MCInst...
LLVM_NODISCARD std::string lower() const
Definition: StringRef.cpp:108
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
void printAnnotation(raw_ostream &OS, StringRef Annot)
Utility function for printing annotations.
This class implements an extremely fast bulk output stream that can only output to a stream...
Definition: raw_ostream.h:46
IRTranslator LLVM IR MI
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:49
Instances of this class represent operands of the MCInst class.
Definition: MCInst.h:35
static const char * getRegisterName(unsigned RegNo)
void print(raw_ostream &OS, const MCAsmInfo *MAI) const
print - Print the value to the stream OS.
Definition: MCSymbol.cpp:60