LLVM  8.0.1
MCWinCOFFStreamer.h
Go to the documentation of this file.
1 //===- MCWinCOFFStreamer.h - COFF 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_MCWINCOFFSTREAMER_H
11 #define LLVM_MC_MCWINCOFFSTREAMER_H
12 
13 #include "llvm/MC/MCDirectives.h"
15 
16 namespace llvm {
17 
18 class MCAsmBackend;
19 class MCContext;
20 class MCCodeEmitter;
21 class MCInst;
22 class MCSection;
23 class MCSubtargetInfo;
24 class MCSymbol;
25 class StringRef;
26 class raw_pwrite_stream;
27 
29 public:
30  MCWinCOFFStreamer(MCContext &Context, std::unique_ptr<MCAsmBackend> MAB,
31  std::unique_ptr<MCCodeEmitter> CE,
32  std::unique_ptr<MCObjectWriter> OW);
33 
34  /// state management
35  void reset() override {
36  CurSymbol = nullptr;
38  }
39 
40  /// \name MCStreamer interface
41  /// \{
42 
43  void InitSections(bool NoExecStack) override;
44  void EmitLabel(MCSymbol *Symbol, SMLoc Loc = SMLoc()) override;
45  void EmitAssemblerFlag(MCAssemblerFlag Flag) override;
46  void EmitThumbFunc(MCSymbol *Func) override;
47  bool EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute) override;
48  void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) override;
49  void BeginCOFFSymbolDef(MCSymbol const *Symbol) override;
50  void EmitCOFFSymbolStorageClass(int StorageClass) override;
51  void EmitCOFFSymbolType(int Type) override;
52  void EndCOFFSymbolDef() override;
53  void EmitCOFFSafeSEH(MCSymbol const *Symbol) override;
54  void EmitCOFFSymbolIndex(MCSymbol const *Symbol) override;
55  void EmitCOFFSectionIndex(MCSymbol const *Symbol) override;
56  void EmitCOFFSecRel32(MCSymbol const *Symbol, uint64_t Offset) override;
57  void EmitCOFFImgRel32(MCSymbol const *Symbol, int64_t Offset) override;
58  void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
59  unsigned ByteAlignment) override;
60  void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
61  unsigned ByteAlignment) override;
62  void EmitZerofill(MCSection *Section, MCSymbol *Symbol, uint64_t Size,
63  unsigned ByteAlignment, SMLoc Loc = SMLoc()) override;
64  void EmitTBSSSymbol(MCSection *Section, MCSymbol *Symbol, uint64_t Size,
65  unsigned ByteAlignment) override;
66  void EmitIdent(StringRef IdentString) override;
67  void EmitWinEHHandlerData(SMLoc Loc) override;
68  void FinishImpl() override;
69 
70  /// \}
71 
72 protected:
74 
75  void EmitInstToData(const MCInst &Inst, const MCSubtargetInfo &STI) override;
76 
77 private:
78  void Error(const Twine &Msg) const;
79 };
80 
81 } // end namespace llvm
82 
83 #endif // LLVM_MC_MCWINCOFFSTREAMER_H
Instances of this class represent a uniqued identifier for a section in the current translation unit...
Definition: MCSection.h:39
void FinishImpl() override
Streamer specific finalization.
LLVMContext & Context
This class represents lattice values for constants.
Definition: AllocatorList.h:24
MCWinCOFFStreamer(MCContext &Context, std::unique_ptr< MCAsmBackend > MAB, std::unique_ptr< MCCodeEmitter > CE, std::unique_ptr< MCObjectWriter > OW)
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition: MCSymbol.h:42
const MCSymbol * CurSymbol
void InitSections(bool NoExecStack) override
Create the default sections and set the initial one.
void EmitAssemblerFlag(MCAssemblerFlag Flag) override
Note in the output the specified Flag.
COFF::SymbolStorageClass StorageClass
Definition: COFFYAML.cpp:354
void EmitCOFFSecRel32(MCSymbol const *Symbol, uint64_t Offset) override
Emits a COFF section relative relocation.
void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) override
Emit a common symbol.
void EmitCOFFSymbolType(int Type) override
Emit the type of the symbol.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition: Twine.h:81
void EmitInstToData(const MCInst &Inst, const MCSubtargetInfo &STI) override
void EmitWinEHHandlerData(SMLoc Loc) override
void BeginCOFFSymbolDef(MCSymbol const *Symbol) override
Start emitting COFF symbol definition.
Context object for machine code objects.
Definition: MCContext.h:63
Streaming object file generation interface.
void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) override
Set the DescValue for the Symbol.
Instances of this class represent a single low-level machine instruction.
Definition: MCInst.h:161
Flag
These should be considered private to the implementation of the MCInstrDesc class.
Definition: MCInstrDesc.h:118
void EndCOFFSymbolDef() override
Marks the end of the symbol definition.
void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) override
Emit a local common (.lcomm) symbol.
void EmitLabel(MCSymbol *Symbol, SMLoc Loc=SMLoc()) override
Emit a label for Symbol into the current section.
The instances of the Type class are immutable: once they are created, they are never changed...
Definition: Type.h:46
void EmitCOFFSymbolStorageClass(int StorageClass) override
Emit the storage class of the symbol.
void EmitZerofill(MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment, SMLoc Loc=SMLoc()) override
Emit the zerofill section and an optional symbol.
void EmitCOFFImgRel32(MCSymbol const *Symbol, int64_t Offset) override
Emits a COFF image relative relocation.
void reset() override
state management
void EmitCOFFSectionIndex(MCSymbol const *Symbol) override
Emits a COFF section index.
bool EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute) override
Add the given Attribute to Symbol.
void EmitCOFFSafeSEH(MCSymbol const *Symbol) override
MCSymbolAttr
Definition: MCDirectives.h:19
void EmitCOFFSymbolIndex(MCSymbol const *Symbol) override
Emits the symbol table index of a Symbol into the current section.
MCAssemblerFlag
Definition: MCDirectives.h:48
void reset() override
state management
Generic base class for all target subtargets.
void EmitIdent(StringRef IdentString) override
Emit the "identifiers" directive.
void EmitTBSSSymbol(MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) override
Emit a thread local bss (.tbss) symbol.
uint32_t Size
Definition: Profile.cpp:47
Lightweight error class with error context and mandatory checking.
Definition: Error.h:158
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:49
Represents a location in source code.
Definition: SMLoc.h:24
void EmitThumbFunc(MCSymbol *Func) override
Note in the output that the specified Func is a Thumb mode function (ARM target only).