blob: b529489b1a6a736c8602c0a75d75026162693367 [file] [log] [blame]
Chris Lattnereb72dca2010-07-11 22:05:00 +00001//===-- 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 Win32 COFF object file streamer.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "WinCOFFStreamer"
15
Chandler Carruthd04a8d42012-12-03 16:50:05 +000016#include "llvm/MC/MCStreamer.h"
Evan Cheng78c10ee2011-07-25 23:24:55 +000017#include "llvm/MC/MCAsmBackend.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000018#include "llvm/MC/MCAsmLayout.h"
19#include "llvm/MC/MCAssembler.h"
20#include "llvm/MC/MCCodeEmitter.h"
21#include "llvm/MC/MCContext.h"
22#include "llvm/MC/MCExpr.h"
23#include "llvm/MC/MCObjectStreamer.h"
24#include "llvm/MC/MCSection.h"
25#include "llvm/MC/MCSectionCOFF.h"
26#include "llvm/MC/MCSymbol.h"
27#include "llvm/MC/MCValue.h"
28#include "llvm/MC/MCWin64EH.h"
Chris Lattnereb72dca2010-07-11 22:05:00 +000029#include "llvm/Support/COFF.h"
30#include "llvm/Support/Debug.h"
31#include "llvm/Support/ErrorHandling.h"
Evan Cheng3e74d6f2011-08-24 18:08:43 +000032#include "llvm/Support/TargetRegistry.h"
Chris Lattnereb72dca2010-07-11 22:05:00 +000033#include "llvm/Support/raw_ostream.h"
Rafael Espindola8f7d12c2011-12-17 01:14:52 +000034
Chris Lattnereb72dca2010-07-11 22:05:00 +000035using namespace llvm;
36
Chris Lattnereb72dca2010-07-11 22:05:00 +000037namespace {
38class WinCOFFStreamer : public MCObjectStreamer {
39public:
Michael J. Spencer8067adc2010-07-19 06:13:10 +000040 MCSymbol const *CurSymbol;
41
Chris Lattnereb72dca2010-07-11 22:05:00 +000042 WinCOFFStreamer(MCContext &Context,
Evan Cheng78c10ee2011-07-25 23:24:55 +000043 MCAsmBackend &MAB,
Chris Lattnereb72dca2010-07-11 22:05:00 +000044 MCCodeEmitter &CE,
45 raw_ostream &OS);
46
Michael J. Spencer8067adc2010-07-19 06:13:10 +000047 void AddCommonSymbol(MCSymbol *Symbol, uint64_t Size,
48 unsigned ByteAlignment, bool External);
49
Chris Lattnereb72dca2010-07-11 22:05:00 +000050 // MCStreamer interface
51
Rafael Espindolad80781b2010-09-15 21:48:40 +000052 virtual void InitSections();
Eli Bendersky030f63a2013-01-14 19:04:57 +000053 virtual void InitToTextSection();
Rafael Espindolaba210242010-11-28 16:22:59 +000054 virtual void EmitLabel(MCSymbol *Symbol);
Reed Kotler2c3a4642012-12-16 04:00:45 +000055 virtual void EmitDebugLabel(MCSymbol *Symbol);
Chris Lattnereb72dca2010-07-11 22:05:00 +000056 virtual void EmitAssemblerFlag(MCAssemblerFlag Flag);
Jim Grosbachce792992010-11-05 22:08:08 +000057 virtual void EmitThumbFunc(MCSymbol *Func);
Chris Lattnereb72dca2010-07-11 22:05:00 +000058 virtual void EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
59 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
60 virtual void BeginCOFFSymbolDef(MCSymbol const *Symbol);
61 virtual void EmitCOFFSymbolStorageClass(int StorageClass);
62 virtual void EmitCOFFSymbolType(int Type);
63 virtual void EndCOFFSymbolDef();
Rafael Espindola8f7d12c2011-12-17 01:14:52 +000064 virtual void EmitCOFFSecRel32(MCSymbol const *Symbol);
Chris Lattnereb72dca2010-07-11 22:05:00 +000065 virtual void EmitELFSize(MCSymbol *Symbol, const MCExpr *Value);
66 virtual void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Michael J. Spencer8067adc2010-07-19 06:13:10 +000067 unsigned ByteAlignment);
Benjamin Kramer36a16012011-09-01 23:04:27 +000068 virtual void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
69 unsigned ByteAlignment);
Chris Lattnereb72dca2010-07-11 22:05:00 +000070 virtual void EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
Evan Chengc90a1fc2012-06-22 20:14:46 +000071 uint64_t Size,unsigned ByteAlignment);
Chris Lattnereb72dca2010-07-11 22:05:00 +000072 virtual void EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
Michael J. Spencer8067adc2010-07-19 06:13:10 +000073 uint64_t Size, unsigned ByteAlignment);
Chris Lattnereb72dca2010-07-11 22:05:00 +000074 virtual void EmitFileDirective(StringRef Filename);
Charles Davis3185f5c2011-05-22 03:01:05 +000075 virtual void EmitWin64EHHandlerData();
Rafael Espindola99b42372012-01-07 03:13:18 +000076 virtual void FinishImpl();
Michael J. Spencer192d1362010-10-09 15:44:27 +000077
78private:
Rafael Espindolaf89671d2010-11-01 16:27:31 +000079 virtual void EmitInstToData(const MCInst &Inst) {
Michael J. Spencerf94cfb62013-01-03 01:09:22 +000080 MCDataFragment *DF = getOrCreateDataFragment();
81
82 SmallVector<MCFixup, 4> Fixups;
83 SmallString<256> Code;
84 raw_svector_ostream VecOS(Code);
85 getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
86 VecOS.flush();
87
88 // Add the fixups and data.
89 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
90 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size());
91 DF->getFixups().push_back(Fixups[i]);
92 }
93 DF->getContents().append(Code.begin(), Code.end());
Rafael Espindolaf89671d2010-11-01 16:27:31 +000094 }
95
Michael J. Spencer192d1362010-10-09 15:44:27 +000096 void SetSection(StringRef Section,
97 unsigned Characteristics,
98 SectionKind Kind) {
99 SwitchSection(getContext().getCOFFSection(Section, Characteristics, Kind));
100 }
101
102 void SetSectionText() {
103 SetSection(".text",
104 COFF::IMAGE_SCN_CNT_CODE
105 | COFF::IMAGE_SCN_MEM_EXECUTE
106 | COFF::IMAGE_SCN_MEM_READ,
107 SectionKind::getText());
108 EmitCodeAlignment(4, 0);
109 }
110
111 void SetSectionData() {
112 SetSection(".data",
113 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA
114 | COFF::IMAGE_SCN_MEM_READ
115 | COFF::IMAGE_SCN_MEM_WRITE,
116 SectionKind::getDataRel());
117 EmitCodeAlignment(4, 0);
118 }
119
120 void SetSectionBSS() {
121 SetSection(".bss",
122 COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA
123 | COFF::IMAGE_SCN_MEM_READ
124 | COFF::IMAGE_SCN_MEM_WRITE,
125 SectionKind::getBSS());
126 EmitCodeAlignment(4, 0);
127 }
Chris Lattnereb72dca2010-07-11 22:05:00 +0000128};
129} // end anonymous namespace.
130
131WinCOFFStreamer::WinCOFFStreamer(MCContext &Context,
Evan Cheng78c10ee2011-07-25 23:24:55 +0000132 MCAsmBackend &MAB,
Chris Lattnereb72dca2010-07-11 22:05:00 +0000133 MCCodeEmitter &CE,
134 raw_ostream &OS)
Evan Cheng78c10ee2011-07-25 23:24:55 +0000135 : MCObjectStreamer(Context, MAB, OS, &CE)
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000136 , CurSymbol(NULL) {
137}
138
139void WinCOFFStreamer::AddCommonSymbol(MCSymbol *Symbol, uint64_t Size,
140 unsigned ByteAlignment, bool External) {
141 assert(!Symbol->isInSection() && "Symbol must not already have a section!");
142
143 std::string SectionName(".bss$linkonce");
144 SectionName.append(Symbol->getName().begin(), Symbol->getName().end());
145
146 MCSymbolData &SymbolData = getAssembler().getOrCreateSymbolData(*Symbol);
147
148 unsigned Characteristics =
149 COFF::IMAGE_SCN_LNK_COMDAT |
150 COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA |
151 COFF::IMAGE_SCN_MEM_READ |
152 COFF::IMAGE_SCN_MEM_WRITE;
153
154 int Selection = COFF::IMAGE_COMDAT_SELECT_LARGEST;
155
156 const MCSection *Section = MCStreamer::getContext().getCOFFSection(
157 SectionName, Characteristics, Selection, SectionKind::getBSS());
158
159 MCSectionData &SectionData = getAssembler().getOrCreateSectionData(*Section);
160
161 if (SectionData.getAlignment() < ByteAlignment)
162 SectionData.setAlignment(ByteAlignment);
163
164 SymbolData.setExternal(External);
165
166 Symbol->setSection(*Section);
167
168 if (ByteAlignment != 1)
169 new MCAlignFragment(ByteAlignment, 0, 0, ByteAlignment, &SectionData);
170
171 SymbolData.setFragment(new MCFillFragment(0, 0, Size, &SectionData));
Chris Lattnereb72dca2010-07-11 22:05:00 +0000172}
173
174// MCStreamer interface
175
Eli Bendersky030f63a2013-01-14 19:04:57 +0000176void WinCOFFStreamer::InitToTextSection() {
177 SetSectionText();
178}
179
Rafael Espindolad80781b2010-09-15 21:48:40 +0000180void WinCOFFStreamer::InitSections() {
Michael J. Spencer192d1362010-10-09 15:44:27 +0000181 SetSectionText();
182 SetSectionData();
183 SetSectionBSS();
184 SetSectionText();
Rafael Espindolad80781b2010-09-15 21:48:40 +0000185}
186
Rafael Espindolaba210242010-11-28 16:22:59 +0000187void WinCOFFStreamer::EmitLabel(MCSymbol *Symbol) {
Rafael Espindolaba210242010-11-28 16:22:59 +0000188 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
Rafael Espindolaea4afa92010-11-28 17:18:55 +0000189 MCObjectStreamer::EmitLabel(Symbol);
Rafael Espindolaba210242010-11-28 16:22:59 +0000190}
191
Reed Kotler2c3a4642012-12-16 04:00:45 +0000192void WinCOFFStreamer::EmitDebugLabel(MCSymbol *Symbol) {
193 EmitLabel(Symbol);
194}
Chris Lattnereb72dca2010-07-11 22:05:00 +0000195void WinCOFFStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000196 llvm_unreachable("not implemented");
Chris Lattnereb72dca2010-07-11 22:05:00 +0000197}
198
Jim Grosbachce792992010-11-05 22:08:08 +0000199void WinCOFFStreamer::EmitThumbFunc(MCSymbol *Func) {
200 llvm_unreachable("not implemented");
201}
202
Chris Lattnereb72dca2010-07-11 22:05:00 +0000203void WinCOFFStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
204 MCSymbolAttr Attribute) {
Michael J. Spencerd47f4a92010-10-09 11:00:37 +0000205 assert(Symbol && "Symbol must be non-null!");
206 assert((Symbol->isInSection()
207 ? Symbol->getSection().getVariant() == MCSection::SV_COFF
208 : true) && "Got non COFF section in the COFF backend!");
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000209 switch (Attribute) {
210 case MCSA_WeakReference:
Michael J. Spencer4cee2892010-10-16 08:25:57 +0000211 case MCSA_Weak: {
212 MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
213 SD.modifyFlags(COFF::SF_WeakExternal, COFF::SF_WeakExternal);
214 SD.setExternal(true);
215 }
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000216 break;
217
218 case MCSA_Global:
219 getAssembler().getOrCreateSymbolData(*Symbol).setExternal(true);
220 break;
221
222 default:
223 llvm_unreachable("unsupported attribute");
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000224 }
Chris Lattnereb72dca2010-07-11 22:05:00 +0000225}
226
227void WinCOFFStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000228 llvm_unreachable("not implemented");
Chris Lattnereb72dca2010-07-11 22:05:00 +0000229}
230
231void WinCOFFStreamer::BeginCOFFSymbolDef(MCSymbol const *Symbol) {
Michael J. Spencerd47f4a92010-10-09 11:00:37 +0000232 assert((Symbol->isInSection()
233 ? Symbol->getSection().getVariant() == MCSection::SV_COFF
234 : true) && "Got non COFF section in the COFF backend!");
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000235 assert(CurSymbol == NULL && "EndCOFFSymbolDef must be called between calls "
236 "to BeginCOFFSymbolDef!");
237 CurSymbol = Symbol;
Chris Lattnereb72dca2010-07-11 22:05:00 +0000238}
239
240void WinCOFFStreamer::EmitCOFFSymbolStorageClass(int StorageClass) {
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000241 assert(CurSymbol != NULL && "BeginCOFFSymbolDef must be called first!");
242 assert((StorageClass & ~0xFF) == 0 && "StorageClass must only have data in "
243 "the first byte!");
244
245 getAssembler().getOrCreateSymbolData(*CurSymbol).modifyFlags(
246 StorageClass << COFF::SF_ClassShift,
247 COFF::SF_ClassMask);
Chris Lattnereb72dca2010-07-11 22:05:00 +0000248}
249
250void WinCOFFStreamer::EmitCOFFSymbolType(int Type) {
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000251 assert(CurSymbol != NULL && "BeginCOFFSymbolDef must be called first!");
252 assert((Type & ~0xFFFF) == 0 && "Type must only have data in the first 2 "
253 "bytes");
254
255 getAssembler().getOrCreateSymbolData(*CurSymbol).modifyFlags(
256 Type << COFF::SF_TypeShift,
257 COFF::SF_TypeMask);
Chris Lattnereb72dca2010-07-11 22:05:00 +0000258}
259
260void WinCOFFStreamer::EndCOFFSymbolDef() {
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000261 assert(CurSymbol != NULL && "BeginCOFFSymbolDef must be called first!");
262 CurSymbol = NULL;
Chris Lattnereb72dca2010-07-11 22:05:00 +0000263}
264
Rafael Espindola8f7d12c2011-12-17 01:14:52 +0000265void WinCOFFStreamer::EmitCOFFSecRel32(MCSymbol const *Symbol)
266{
267 MCDataFragment *DF = getOrCreateDataFragment();
268
Eli Bendersky64d9a322012-12-07 19:13:57 +0000269 DF->getFixups().push_back(
270 MCFixup::Create(DF->getContents().size(),
271 MCSymbolRefExpr::Create (Symbol, getContext ()),
272 FK_SecRel_4));
Rafael Espindola8f7d12c2011-12-17 01:14:52 +0000273 DF->getContents().resize(DF->getContents().size() + 4, 0);
274}
275
Chris Lattnereb72dca2010-07-11 22:05:00 +0000276void WinCOFFStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000277 llvm_unreachable("not implemented");
Chris Lattnereb72dca2010-07-11 22:05:00 +0000278}
279
280void WinCOFFStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000281 unsigned ByteAlignment) {
Michael J. Spencerd47f4a92010-10-09 11:00:37 +0000282 assert((Symbol->isInSection()
283 ? Symbol->getSection().getVariant() == MCSection::SV_COFF
284 : true) && "Got non COFF section in the COFF backend!");
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000285 AddCommonSymbol(Symbol, Size, ByteAlignment, true);
Chris Lattnereb72dca2010-07-11 22:05:00 +0000286}
287
Benjamin Kramer36a16012011-09-01 23:04:27 +0000288void WinCOFFStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
289 unsigned ByteAlignment) {
Michael J. Spencerd47f4a92010-10-09 11:00:37 +0000290 assert((Symbol->isInSection()
291 ? Symbol->getSection().getVariant() == MCSection::SV_COFF
292 : true) && "Got non COFF section in the COFF backend!");
Benjamin Kramer36a16012011-09-01 23:04:27 +0000293 AddCommonSymbol(Symbol, Size, ByteAlignment, false);
Chris Lattnereb72dca2010-07-11 22:05:00 +0000294}
295
296void WinCOFFStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
Evan Chengc90a1fc2012-06-22 20:14:46 +0000297 uint64_t Size,unsigned ByteAlignment) {
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000298 llvm_unreachable("not implemented");
Chris Lattnereb72dca2010-07-11 22:05:00 +0000299}
300
301void WinCOFFStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
302 uint64_t Size, unsigned ByteAlignment) {
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000303 llvm_unreachable("not implemented");
Chris Lattnereb72dca2010-07-11 22:05:00 +0000304}
305
Chris Lattnereb72dca2010-07-11 22:05:00 +0000306void WinCOFFStreamer::EmitFileDirective(StringRef Filename) {
307 // Ignore for now, linkers don't care, and proper debug
308 // info will be a much large effort.
309}
310
Charles Davis3185f5c2011-05-22 03:01:05 +0000311void WinCOFFStreamer::EmitWin64EHHandlerData() {
312 MCStreamer::EmitWin64EHHandlerData();
313
314 // We have to emit the unwind info now, because this directive
315 // actually switches to the .xdata section!
316 MCWin64EHUnwindEmitter::EmitUnwindInfo(*this, getCurrentW64UnwindInfo());
317}
318
Rafael Espindola99b42372012-01-07 03:13:18 +0000319void WinCOFFStreamer::FinishImpl() {
Charles Davis38ea9ee2011-05-22 04:15:07 +0000320 EmitW64Tables();
Rafael Espindola99b42372012-01-07 03:13:18 +0000321 MCObjectStreamer::FinishImpl();
Chris Lattnereb72dca2010-07-11 22:05:00 +0000322}
323
324namespace llvm
325{
326 MCStreamer *createWinCOFFStreamer(MCContext &Context,
Evan Cheng78c10ee2011-07-25 23:24:55 +0000327 MCAsmBackend &MAB,
Chris Lattnereb72dca2010-07-11 22:05:00 +0000328 MCCodeEmitter &CE,
Michael J. Spencere2195d82010-07-31 06:22:29 +0000329 raw_ostream &OS,
330 bool RelaxAll) {
Evan Cheng78c10ee2011-07-25 23:24:55 +0000331 WinCOFFStreamer *S = new WinCOFFStreamer(Context, MAB, CE, OS);
Michael J. Spencere2195d82010-07-31 06:22:29 +0000332 S->getAssembler().setRelaxAll(RelaxAll);
333 return S;
Chris Lattnereb72dca2010-07-11 22:05:00 +0000334 }
335}