LLVM 19.0.0git
CSKYAsmPrinter.h
Go to the documentation of this file.
1//===-- CSKYAsmPrinter.h - CSKY implementation of AsmPrinter ----*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_LIB_TARGET_CSKY_CSKYASMPRINTER_H
10#define LLVM_LIB_TARGET_CSKY_CSKYASMPRINTER_H
11
12#include "CSKYMCInstLower.h"
13#include "CSKYSubtarget.h"
16
17namespace llvm {
19 CSKYMCInstLower MCInstLowering;
20
21 const MCSubtargetInfo *Subtarget;
22 const TargetInstrInfo *TII;
23
24 bool InConstantPool = false;
25
26 /// Keep a pointer to constantpool entries of the current
27 /// MachineFunction.
29
30 void expandTLSLA(const MachineInstr *MI);
31 void emitCustomConstantPool(const MachineInstr *MI);
32 void emitAttributes();
33
34public:
36 std::unique_ptr<MCStreamer> Streamer);
37
38 StringRef getPassName() const override { return "CSKY Assembly Printer"; }
39
40 void EmitToStreamer(MCStreamer &S, const MCInst &Inst);
41
42 /// tblgen'erated driver function for lowering simple MI->MC
43 /// pseudo instructions.
45 const MachineInstr *MI);
46
47 void emitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) override;
48
49 void emitFunctionBodyEnd() override;
50
51 void emitStartOfAsmFile(Module &M) override;
52
53 void emitEndOfAsmFile(Module &M) override;
54
55 void emitInstruction(const MachineInstr *MI) override;
56
57 bool runOnMachineFunction(MachineFunction &MF) override;
58
59 // we emit constant pools customly!
60 void emitConstantPool() override {}
61
62 bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
63 const char *ExtraCode, raw_ostream &OS) override;
64
65 bool PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
66 const char *ExtraCode, raw_ostream &OS) override;
67};
68} // end namespace llvm
69
70#endif // LLVM_LIB_TARGET_CSKY_CSKYASMPRINTER_H
#define LLVM_LIBRARY_VISIBILITY
Definition: Compiler.h:131
const HexagonInstrInfo * TII
IRTranslator LLVM IR MI
const char LLVMTargetMachineRef TM
raw_pwrite_stream & OS
This class is intended to be used as a driving class for all asm writers.
Definition: AsmPrinter.h:84
StringRef getPassName() const override
getPassName - Return a nice clean name for a pass.
void emitConstantPool() override
Print to the current output stream assembly representations of the constants in the constant pool MCP...
bool emitPseudoExpansionLowering(MCStreamer &OutStreamer, const MachineInstr *MI)
tblgen'erated driver function for lowering simple MI->MC pseudo instructions.
Instances of this class represent a single low-level machine instruction.
Definition: MCInst.h:184
Streaming machine code generation interface.
Definition: MCStreamer.h:212
Generic base class for all target subtargets.
Abstract base class for all machine specific constantpool value subclasses.
The MachineConstantPool class keeps track of constants referenced by a function which must be spilled...
Representation of each machine instruction.
Definition: MachineInstr.h:69
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
TargetInstrInfo - Interface to description of machine instruction set.
Primary interface to the complete machine description for the target machine.
Definition: TargetMachine.h:76
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18