-
Notifications
You must be signed in to change notification settings - Fork 8
/
EpiphanyAsmPrinter.h
80 lines (62 loc) · 2.82 KB
/
EpiphanyAsmPrinter.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// EpiphanyAsmPrinter.h - Print machine code to an Epiphany .s file -*- C++ -*-=//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file defines the Epiphany assembly printer class.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_EPIPHANYASMPRINTER_H
#define LLVM_EPIPHANYASMPRINTER_H
#include "Epiphany.h"
#include "EpiphanyTargetMachine.h"
#include "llvm/CodeGen/AsmPrinter.h"
#include "llvm/MC/MCStreamer.h"
#include "llvm/Support/Compiler.h"
namespace llvm {
class MCOperand;
class LLVM_LIBRARY_VISIBILITY EpiphanyAsmPrinter : public AsmPrinter {
/// Subtarget - Keep a pointer to the EpiphanySubtarget around so that we can
/// make the right decision when printing asm code for different targets.
const EpiphanySubtarget *Subtarget;
// emitPseudoExpansionLowering - tblgen'erated.
bool emitPseudoExpansionLowering(MCStreamer &OutStreamer,
const MachineInstr *MI);
public:
explicit EpiphanyAsmPrinter(TargetMachine &TM, MCStreamer &Streamer)
: AsmPrinter(TM, Streamer) {
Subtarget = &TM.getSubtarget<EpiphanySubtarget>();
}
bool lowerOperand(const MachineOperand &MO, MCOperand &MCOp) const;
MCOperand lowerSymbolOperand(const MachineOperand &MO,
const MCSymbol *Sym) const;
void EmitInstruction(const MachineInstr *MI);
void EmitEndOfAsmFile(Module &M);
bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNum,
unsigned AsmVariant, const char *ExtraCode,
raw_ostream &O);
bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNum,
unsigned AsmVariant, const char *ExtraCode,
raw_ostream &O);
void PrintDebugValueComment(const MachineInstr *MI, raw_ostream &OS);
/// printSymbolicAddress - Given some kind of reasonably bare symbolic
/// reference, print out the appropriate asm string to represent it. If
/// appropriate, a relocation-specifier will be produced, composed of a
/// general class derived from the MO parameter and an instruction-specific
/// suffix, provided in Suffix. E.g. ":got_lo12:" if a Suffix of "lo12" is
/// given.
bool printSymbolicAddress(const MachineOperand &MO,
bool PrintImmediatePrefix,
StringRef Suffix, raw_ostream &O);
MachineLocation getDebugValueLocation(const MachineInstr *MI) const;
virtual const char *getPassName() const {
return "Epiphany Assembly Printer";
}
virtual bool runOnMachineFunction(MachineFunction &MF);
};
} // end namespace llvm
#endif