Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / lib / Object / RecordStreamer.h
bloba568739d3763cc67527af17ba2e34d869deaba47
1 //===- RecordStreamer.h - Record asm defined and used symbols ---*- 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 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_LIB_OBJECT_RECORDSTREAMER_H
10 #define LLVM_LIB_OBJECT_RECORDSTREAMER_H
12 #include "llvm/ADT/DenseMap.h"
13 #include "llvm/ADT/StringMap.h"
14 #include "llvm/MC/MCDirectives.h"
15 #include "llvm/MC/MCStreamer.h"
16 #include "llvm/Support/SMLoc.h"
17 #include <vector>
19 namespace llvm {
21 class MCSymbol;
22 class Module;
24 class RecordStreamer : public MCStreamer {
25 public:
26 enum State { NeverSeen, Global, Defined, DefinedGlobal, DefinedWeak, Used,
27 UndefinedWeak};
29 private:
30 const Module &M;
31 StringMap<State> Symbols;
32 // Map of aliases created by .symver directives, saved so we can update
33 // their symbol binding after parsing complete. This maps from each
34 // aliasee to its list of aliases.
35 DenseMap<const MCSymbol *, std::vector<StringRef>> SymverAliasMap;
37 /// Get the state recorded for the given symbol.
38 State getSymbolState(const MCSymbol *Sym);
40 void markDefined(const MCSymbol &Symbol);
41 void markGlobal(const MCSymbol &Symbol, MCSymbolAttr Attribute);
42 void markUsed(const MCSymbol &Symbol);
43 void visitUsedSymbol(const MCSymbol &Sym) override;
45 public:
46 RecordStreamer(MCContext &Context, const Module &M);
48 void emitInstruction(const MCInst &Inst, const MCSubtargetInfo &STI) override;
49 void emitLabel(MCSymbol *Symbol, SMLoc Loc = SMLoc()) override;
50 void emitAssignment(MCSymbol *Symbol, const MCExpr *Value) override;
51 bool emitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute) override;
52 void emitZerofill(MCSection *Section, MCSymbol *Symbol, uint64_t Size,
53 Align ByteAlignment, SMLoc Loc = SMLoc()) override;
54 void emitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
55 Align ByteAlignment) override;
57 // Ignore COFF-specific directives; we do not need any information from them,
58 // but the default implementation of these methods crashes, so we override
59 // them with versions that do nothing.
60 void beginCOFFSymbolDef(const MCSymbol *Symbol) override {}
61 void emitCOFFSymbolStorageClass(int StorageClass) override {}
62 void emitCOFFSymbolType(int Type) override {}
63 void endCOFFSymbolDef() override {}
65 /// Record .symver aliases for later processing.
66 void emitELFSymverDirective(const MCSymbol *OriginalSym, StringRef Name,
67 bool KeepOriginalSym) override;
69 // Emit ELF .symver aliases and ensure they have the same binding as the
70 // defined symbol they alias with.
71 void flushSymverDirectives();
73 // Symbols iterators
74 using const_iterator = StringMap<State>::const_iterator;
75 const_iterator begin();
76 const_iterator end();
78 // SymverAliasMap iterators
79 using const_symver_iterator = decltype(SymverAliasMap)::const_iterator;
80 iterator_range<const_symver_iterator> symverAliases();
83 } // end namespace llvm
85 #endif // LLVM_LIB_OBJECT_RECORDSTREAMER_H