blob: 3797079661e42df2bddc418632fae90c32cdbe4d [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===- MCELFStreamer.h - MCStreamer ELF Object File Interface ---*- 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#ifndef LLVM_MC_MCELFSTREAMER_H
11#define LLVM_MC_MCELFSTREAMER_H
12
13#include "llvm/ADT/SmallVector.h"
14#include "llvm/MC/MCDirectives.h"
15#include "llvm/MC/MCObjectStreamer.h"
16
17namespace llvm {
18
19class MCAsmBackend;
20class MCCodeEmitter;
21class MCExpr;
22class MCInst;
23
24class MCELFStreamer : public MCObjectStreamer {
25public:
26 MCELFStreamer(MCContext &Context, std::unique_ptr<MCAsmBackend> TAB,
Andrew Scullcdfcccc2018-10-05 20:58:37 +010027 std::unique_ptr<MCObjectWriter> OW,
28 std::unique_ptr<MCCodeEmitter> Emitter);
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010029
30 ~MCELFStreamer() override = default;
31
32 /// state management
33 void reset() override {
34 SeenIdent = false;
35 BundleGroups.clear();
36 MCObjectStreamer::reset();
37 }
38
39 /// \name MCStreamer Interface
40 /// @{
41
42 void InitSections(bool NoExecStack) override;
43 void ChangeSection(MCSection *Section, const MCExpr *Subsection) override;
44 void EmitLabel(MCSymbol *Symbol, SMLoc Loc = SMLoc()) override;
45 void EmitLabel(MCSymbol *Symbol, SMLoc Loc, MCFragment *F) override;
46 void EmitAssemblerFlag(MCAssemblerFlag Flag) override;
47 void EmitThumbFunc(MCSymbol *Func) override;
48 void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) override;
49 bool EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute) override;
50 void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) override;
51 void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
52 unsigned ByteAlignment) override;
53
54 void emitELFSize(MCSymbol *Symbol, const MCExpr *Value) override;
55 void emitELFSymverDirective(StringRef AliasName,
56 const MCSymbol *Aliasee) override;
57
58 void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
59 unsigned ByteAlignment) override;
60
61 void EmitZerofill(MCSection *Section, MCSymbol *Symbol = nullptr,
Andrew Scullcdfcccc2018-10-05 20:58:37 +010062 uint64_t Size = 0, unsigned ByteAlignment = 0,
63 SMLoc L = SMLoc()) override;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010064 void EmitTBSSSymbol(MCSection *Section, MCSymbol *Symbol, uint64_t Size,
65 unsigned ByteAlignment = 0) override;
66 void EmitValueImpl(const MCExpr *Value, unsigned Size,
67 SMLoc Loc = SMLoc()) override;
68
69 void EmitIdent(StringRef IdentString) override;
70
71 void EmitValueToAlignment(unsigned, int64_t, unsigned, unsigned) override;
72
Andrew Scullcdfcccc2018-10-05 20:58:37 +010073 void emitCGProfileEntry(const MCSymbolRefExpr *From,
74 const MCSymbolRefExpr *To, uint64_t Count) override;
75
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010076 void FinishImpl() override;
77
78 void EmitBundleAlignMode(unsigned AlignPow2) override;
79 void EmitBundleLock(bool AlignToEnd) override;
80 void EmitBundleUnlock() override;
81
82private:
83 bool isBundleLocked() const;
84 void EmitInstToFragment(const MCInst &Inst, const MCSubtargetInfo &) override;
85 void EmitInstToData(const MCInst &Inst, const MCSubtargetInfo &) override;
86
87 void fixSymbolsInTLSFixups(const MCExpr *expr);
Andrew Scullcdfcccc2018-10-05 20:58:37 +010088 void finalizeCGProfileEntry(const MCSymbolRefExpr *&S);
89 void finalizeCGProfile();
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010090
Andrew Scullcdfcccc2018-10-05 20:58:37 +010091 /// Merge the content of the fragment \p EF into the fragment \p DF.
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010092 void mergeFragment(MCDataFragment *, MCDataFragment *);
93
94 bool SeenIdent = false;
95
96 /// BundleGroups - The stack of fragments holding the bundle-locked
97 /// instructions.
98 SmallVector<MCDataFragment *, 4> BundleGroups;
99};
100
101MCELFStreamer *createARMELFStreamer(MCContext &Context,
102 std::unique_ptr<MCAsmBackend> TAB,
Andrew Scullcdfcccc2018-10-05 20:58:37 +0100103 std::unique_ptr<MCObjectWriter> OW,
Andrew Scull5e1ddfa2018-08-14 10:06:54 +0100104 std::unique_ptr<MCCodeEmitter> Emitter,
105 bool RelaxAll, bool IsThumb);
106
107} // end namespace llvm
108
109#endif // LLVM_MC_MCELFSTREAMER_H