LLVM  8.0.1
MipsELFStreamer.h
Go to the documentation of this file.
1 //===- MipsELFStreamer.h - ELF Object Output --------------------*- C++ -*-===//
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 is a custom MCELFStreamer which allows us to insert some hooks before
11 // emitting data into an actual object file.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 #ifndef LLVM_LIB_TARGET_MIPS_MCTARGETDESC_MIPSELFSTREAMER_H
16 #define LLVM_LIB_TARGET_MIPS_MCTARGETDESC_MIPSELFSTREAMER_H
17 
18 #include "MipsOptionRecord.h"
19 #include "llvm/ADT/SmallVector.h"
20 #include "llvm/MC/MCELFStreamer.h"
21 #include <memory>
22 
23 namespace llvm {
24 
25 class MCAsmBackend;
26 class MCCodeEmitter;
27 class MCContext;
28 class MCSubtargetInfo;
29 struct MCDwarfFrameInfo;
30 
33  MipsRegInfoRecord *RegInfoRecord;
35 
36 public:
37  MipsELFStreamer(MCContext &Context, std::unique_ptr<MCAsmBackend> MAB,
38  std::unique_ptr<MCObjectWriter> OW,
39  std::unique_ptr<MCCodeEmitter> Emitter);
40 
41  /// Overriding this function allows us to add arbitrary behaviour before the
42  /// \p Inst is actually emitted. For example, we can inspect the operands and
43  /// gather sufficient information that allows us to reason about the register
44  /// usage for the translation unit.
45  void EmitInstruction(const MCInst &Inst, const MCSubtargetInfo &STI,
46  bool = false) override;
47 
48  /// Overriding this function allows us to record all labels that should be
49  /// marked as microMIPS. Based on this data marking is done in
50  /// EmitInstruction.
51  void EmitLabel(MCSymbol *Symbol, SMLoc Loc = SMLoc()) override;
52 
53  /// Overriding this function allows us to dismiss all labels that are
54  /// candidates for marking as microMIPS when .section directive is processed.
56  const MCExpr *Subsection = nullptr) override;
57 
58  /// Overriding these functions allows us to dismiss all labels that are
59  /// candidates for marking as microMIPS when .word/.long/.4byte etc
60  /// directives are emitted.
61  void EmitValueImpl(const MCExpr *Value, unsigned Size, SMLoc Loc) override;
62  void EmitIntValue(uint64_t Value, unsigned Size) override;
63 
64  // Overriding these functions allows us to avoid recording of these labels
65  // in EmitLabel and later marking them as microMIPS.
66  void EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) override;
67  void EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) override;
68  MCSymbol *EmitCFILabel() override;
69 
70  /// Emits all the option records stored up until the point it's called.
71  void EmitMipsOptionRecords();
72 
73  /// Mark labels as microMIPS, if necessary for the subtarget.
75 };
76 
78  std::unique_ptr<MCAsmBackend> MAB,
79  std::unique_ptr<MCObjectWriter> OW,
80  std::unique_ptr<MCCodeEmitter> Emitter,
81  bool RelaxAll);
82 } // end namespace llvm
83 
84 #endif // LLVM_LIB_TARGET_MIPS_MCTARGETDESC_MIPSELFSTREAMER_H
Instances of this class represent a uniqued identifier for a section in the current translation unit...
Definition: MCSection.h:39
LLVMContext & Context
This class represents lattice values for constants.
Definition: AllocatorList.h:24
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition: MCSymbol.h:42
MipsELFStreamer(MCContext &Context, std::unique_ptr< MCAsmBackend > MAB, std::unique_ptr< MCObjectWriter > OW, std::unique_ptr< MCCodeEmitter > Emitter)
Base class for the full range of assembler expressions which are needed for parsing.
Definition: MCExpr.h:36
void EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) override
void createPendingLabelRelocs()
Mark labels as microMIPS, if necessary for the subtarget.
Context object for machine code objects.
Definition: MCContext.h:63
Instances of this class represent a single low-level machine instruction.
Definition: MCInst.h:161
void EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) override
void SwitchSection(MCSection *Section, const MCExpr *Subsection=nullptr) override
Overriding this function allows us to dismiss all labels that are candidates for marking as microMIPS...
void EmitIntValue(uint64_t Value, unsigned Size) override
Special case of EmitValue that avoids the client having to pass in a MCExpr for constant integers...
This is a &#39;vector&#39; (really, a variable-sized array), optimized for the case when the array is small...
Definition: SmallVector.h:847
void EmitMipsOptionRecords()
Emits all the option records stored up until the point it&#39;s called.
void EmitValueImpl(const MCExpr *Value, unsigned Size, SMLoc Loc) override
Overriding these functions allows us to dismiss all labels that are candidates for marking as microMI...
Generic base class for all target subtargets.
void EmitLabel(MCSymbol *Symbol, SMLoc Loc=SMLoc()) override
Overriding this function allows us to record all labels that should be marked as microMIPS.
uint32_t Size
Definition: Profile.cpp:47
MCELFStreamer * createMipsELFStreamer(MCContext &Context, std::unique_ptr< MCAsmBackend > MAB, std::unique_ptr< MCObjectWriter > OW, std::unique_ptr< MCCodeEmitter > Emitter, bool RelaxAll)
MCSymbol * EmitCFILabel() override
When emitting an object file, create and emit a real label.
LLVM Value Representation.
Definition: Value.h:73
Represents a location in source code.
Definition: SMLoc.h:24
void EmitInstruction(const MCInst &Inst, const MCSubtargetInfo &STI, bool=false) override
Overriding this function allows us to add arbitrary behaviour before the Inst is actually emitted...