Move MCSymbol Value in to the union of Offset and CommonSize.
[oota-llvm.git] / lib / MC / WinCOFFStreamer.cpp
1 //===-- llvm/MC/WinCOFFStreamer.cpp -----------------------------*- 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 file contains an implementation of a Windows COFF object file streamer.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/MC/MCAsmBackend.h"
15 #include "llvm/MC/MCAsmLayout.h"
16 #include "llvm/MC/MCAssembler.h"
17 #include "llvm/MC/MCCodeEmitter.h"
18 #include "llvm/MC/MCContext.h"
19 #include "llvm/MC/MCExpr.h"
20 #include "llvm/MC/MCObjectFileInfo.h"
21 #include "llvm/MC/MCObjectStreamer.h"
22 #include "llvm/MC/MCSection.h"
23 #include "llvm/MC/MCSectionCOFF.h"
24 #include "llvm/MC/MCStreamer.h"
25 #include "llvm/MC/MCSymbolCOFF.h"
26 #include "llvm/MC/MCValue.h"
27 #include "llvm/MC/MCWinCOFFStreamer.h"
28 #include "llvm/Support/COFF.h"
29 #include "llvm/Support/Debug.h"
30 #include "llvm/Support/ErrorHandling.h"
31 #include "llvm/Support/MathExtras.h"
32 #include "llvm/Support/TargetRegistry.h"
33 #include "llvm/Support/raw_ostream.h"
34
35 using namespace llvm;
36
37 #define DEBUG_TYPE "WinCOFFStreamer"
38
39 namespace llvm {
40 MCWinCOFFStreamer::MCWinCOFFStreamer(MCContext &Context, MCAsmBackend &MAB,
41                                      MCCodeEmitter &CE, raw_pwrite_stream &OS)
42     : MCObjectStreamer(Context, MAB, OS, &CE), CurSymbol(nullptr) {}
43
44 void MCWinCOFFStreamer::EmitInstToData(const MCInst &Inst,
45                                        const MCSubtargetInfo &STI) {
46   MCDataFragment *DF = getOrCreateDataFragment();
47
48   SmallVector<MCFixup, 4> Fixups;
49   SmallString<256> Code;
50   raw_svector_ostream VecOS(Code);
51   getAssembler().getEmitter().encodeInstruction(Inst, VecOS, Fixups, STI);
52   VecOS.flush();
53
54   // Add the fixups and data.
55   for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
56     Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size());
57     DF->getFixups().push_back(Fixups[i]);
58   }
59
60   DF->getContents().append(Code.begin(), Code.end());
61 }
62
63 void MCWinCOFFStreamer::InitSections(bool NoExecStack) {
64   // FIXME: this is identical to the ELF one.
65   // This emulates the same behavior of GNU as. This makes it easier
66   // to compare the output as the major sections are in the same order.
67   SwitchSection(getContext().getObjectFileInfo()->getTextSection());
68   EmitCodeAlignment(4);
69
70   SwitchSection(getContext().getObjectFileInfo()->getDataSection());
71   EmitCodeAlignment(4);
72
73   SwitchSection(getContext().getObjectFileInfo()->getBSSSection());
74   EmitCodeAlignment(4);
75
76   SwitchSection(getContext().getObjectFileInfo()->getTextSection());
77 }
78
79 void MCWinCOFFStreamer::EmitLabel(MCSymbol *Symbol) {
80   assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
81   MCObjectStreamer::EmitLabel(Symbol);
82 }
83
84 void MCWinCOFFStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
85   llvm_unreachable("not implemented");
86 }
87
88 void MCWinCOFFStreamer::EmitThumbFunc(MCSymbol *Func) {
89   llvm_unreachable("not implemented");
90 }
91
92 bool MCWinCOFFStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
93                                             MCSymbolAttr Attribute) {
94   assert(Symbol && "Symbol must be non-null!");
95   assert((!Symbol->isInSection() ||
96           Symbol->getSection().getVariant() == MCSection::SV_COFF) &&
97          "Got non-COFF section in the COFF backend!");
98
99   getAssembler().registerSymbol(*Symbol);
100
101   switch (Attribute) {
102   default: return false;
103   case MCSA_WeakReference:
104   case MCSA_Weak:
105     cast<MCSymbolCOFF>(Symbol)->setIsWeakExternal();
106     Symbol->setExternal(true);
107     break;
108   case MCSA_Global:
109     Symbol->setExternal(true);
110     break;
111   }
112
113   return true;
114 }
115
116 void MCWinCOFFStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
117   llvm_unreachable("not implemented");
118 }
119
120 void MCWinCOFFStreamer::BeginCOFFSymbolDef(MCSymbol const *Symbol) {
121   assert((!Symbol->isInSection() ||
122           Symbol->getSection().getVariant() == MCSection::SV_COFF) &&
123          "Got non-COFF section in the COFF backend!");
124
125   if (CurSymbol)
126     FatalError("starting a new symbol definition without completing the "
127                "previous one");
128   CurSymbol = Symbol;
129 }
130
131 void MCWinCOFFStreamer::EmitCOFFSymbolStorageClass(int StorageClass) {
132   if (!CurSymbol)
133     FatalError("storage class specified outside of symbol definition");
134
135   if (StorageClass & ~COFF::SSC_Invalid)
136     FatalError("storage class value '" + Twine(StorageClass) +
137                "' out of range");
138
139   getAssembler().registerSymbol(*CurSymbol);
140   cast<MCSymbolCOFF>(CurSymbol)->setClass((uint16_t)StorageClass);
141 }
142
143 void MCWinCOFFStreamer::EmitCOFFSymbolType(int Type) {
144   if (!CurSymbol)
145     FatalError("symbol type specified outside of a symbol definition");
146
147   if (Type & ~0xffff)
148     FatalError("type value '" + Twine(Type) + "' out of range");
149
150   getAssembler().registerSymbol(*CurSymbol);
151   cast<MCSymbolCOFF>(CurSymbol)->setType((uint16_t)Type);
152 }
153
154 void MCWinCOFFStreamer::EndCOFFSymbolDef() {
155   if (!CurSymbol)
156     FatalError("ending symbol definition without starting one");
157   CurSymbol = nullptr;
158 }
159
160 void MCWinCOFFStreamer::EmitCOFFSafeSEH(MCSymbol const *Symbol) {
161   // SafeSEH is a feature specific to 32-bit x86.  It does not exist (and is
162   // unnecessary) on all platforms which use table-based exception dispatch.
163   if (getContext().getObjectFileInfo()->getTargetTriple().getArch() !=
164       Triple::x86)
165     return;
166
167   if (cast<MCSymbolCOFF>(Symbol)->isSafeSEH())
168     return;
169
170   MCSection *SXData = getContext().getObjectFileInfo()->getSXDataSection();
171   getAssembler().registerSection(*SXData);
172   if (SXData->getAlignment() < 4)
173     SXData->setAlignment(4);
174
175   new MCSafeSEHFragment(Symbol, SXData);
176
177   getAssembler().registerSymbol(*Symbol);
178   cast<MCSymbolCOFF>(Symbol)->setIsSafeSEH();
179 }
180
181 void MCWinCOFFStreamer::EmitCOFFSectionIndex(MCSymbol const *Symbol) {
182   MCDataFragment *DF = getOrCreateDataFragment();
183   const MCSymbolRefExpr *SRE = MCSymbolRefExpr::create(Symbol, getContext());
184   MCFixup Fixup = MCFixup::create(DF->getContents().size(), SRE, FK_SecRel_2);
185   DF->getFixups().push_back(Fixup);
186   DF->getContents().resize(DF->getContents().size() + 2, 0);
187 }
188
189 void MCWinCOFFStreamer::EmitCOFFSecRel32(MCSymbol const *Symbol) {
190   MCDataFragment *DF = getOrCreateDataFragment();
191   const MCSymbolRefExpr *SRE = MCSymbolRefExpr::create(Symbol, getContext());
192   MCFixup Fixup = MCFixup::create(DF->getContents().size(), SRE, FK_SecRel_4);
193   DF->getFixups().push_back(Fixup);
194   DF->getContents().resize(DF->getContents().size() + 4, 0);
195 }
196
197 void MCWinCOFFStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
198                                          unsigned ByteAlignment) {
199   assert((!Symbol->isInSection() ||
200           Symbol->getSection().getVariant() == MCSection::SV_COFF) &&
201          "Got non-COFF section in the COFF backend!");
202
203   const Triple &T = getContext().getObjectFileInfo()->getTargetTriple();
204   if (T.isKnownWindowsMSVCEnvironment()) {
205     if (ByteAlignment > 32)
206       report_fatal_error("alignment is limited to 32-bytes");
207
208     // Round size up to alignment so that we will honor the alignment request.
209     Size = std::max(Size, static_cast<uint64_t>(ByteAlignment));
210   }
211
212   AssignSection(Symbol, nullptr);
213
214   getAssembler().registerSymbol(*Symbol);
215   Symbol->setExternal(true);
216   Symbol->setCommon(Size, ByteAlignment);
217
218   if (!T.isKnownWindowsMSVCEnvironment() && ByteAlignment > 1) {
219     SmallString<128> Directive;
220     raw_svector_ostream OS(Directive);
221     const MCObjectFileInfo *MFI = getContext().getObjectFileInfo();
222
223     OS << " -aligncomm:\"" << Symbol->getName() << "\","
224        << Log2_32_Ceil(ByteAlignment);
225     OS.flush();
226
227     PushSection();
228     SwitchSection(MFI->getDrectveSection());
229     EmitBytes(Directive);
230     PopSection();
231   }
232 }
233
234 void MCWinCOFFStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
235                                               unsigned ByteAlignment) {
236   assert(!Symbol->isInSection() && "Symbol must not already have a section!");
237
238   MCSection *Section = getContext().getObjectFileInfo()->getBSSSection();
239   getAssembler().registerSection(*Section);
240   if (Section->getAlignment() < ByteAlignment)
241     Section->setAlignment(ByteAlignment);
242
243   getAssembler().registerSymbol(*Symbol);
244   Symbol->setExternal(false);
245
246   AssignSection(Symbol, Section);
247
248   if (ByteAlignment != 1)
249     new MCAlignFragment(ByteAlignment, /*Value=*/0, /*ValueSize=*/0,
250                         ByteAlignment, Section);
251
252   MCFillFragment *Fragment = new MCFillFragment(
253       /*Value=*/0, /*ValueSize=*/0, Size, Section);
254   Symbol->setFragment(Fragment);
255 }
256
257 void MCWinCOFFStreamer::EmitZerofill(MCSection *Section, MCSymbol *Symbol,
258                                      uint64_t Size, unsigned ByteAlignment) {
259   llvm_unreachable("not implemented");
260 }
261
262 void MCWinCOFFStreamer::EmitTBSSSymbol(MCSection *Section, MCSymbol *Symbol,
263                                        uint64_t Size, unsigned ByteAlignment) {
264   llvm_unreachable("not implemented");
265 }
266
267 void MCWinCOFFStreamer::EmitFileDirective(StringRef Filename) {
268   getAssembler().addFileName(Filename);
269 }
270
271 // TODO: Implement this if you want to emit .comment section in COFF obj files.
272 void MCWinCOFFStreamer::EmitIdent(StringRef IdentString) {
273   llvm_unreachable("not implemented");
274 }
275
276 void MCWinCOFFStreamer::EmitWinEHHandlerData() {
277   llvm_unreachable("not implemented");
278 }
279
280 void MCWinCOFFStreamer::FinishImpl() {
281   MCObjectStreamer::FinishImpl();
282 }
283
284 LLVM_ATTRIBUTE_NORETURN
285 void MCWinCOFFStreamer::FatalError(const Twine &Msg) const {
286   getContext().reportFatalError(SMLoc(), Msg);
287 }
288 }
289