blob: 6744df5c91fba2f12a9e70137e0513caeb509e63 [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);
Saleem Abdulrasool1c9cd022013-08-09 01:52:03 +000058 virtual bool EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute);
Chris Lattnereb72dca2010-07-11 22:05:00 +000059 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);
Rafael Espindolac7ce3e42013-10-16 01:05:45 +000075 virtual void EmitIdent(StringRef IdentString);
Charles Davis3185f5c2011-05-22 03:01:05 +000076 virtual void EmitWin64EHHandlerData();
Rafael Espindola99b42372012-01-07 03:13:18 +000077 virtual void FinishImpl();
Michael J. Spencer192d1362010-10-09 15:44:27 +000078
79private:
Rafael Espindolaf89671d2010-11-01 16:27:31 +000080 virtual void EmitInstToData(const MCInst &Inst) {
Michael J. Spencerf94cfb62013-01-03 01:09:22 +000081 MCDataFragment *DF = getOrCreateDataFragment();
82
83 SmallVector<MCFixup, 4> Fixups;
84 SmallString<256> Code;
85 raw_svector_ostream VecOS(Code);
86 getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups);
87 VecOS.flush();
88
89 // Add the fixups and data.
90 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) {
91 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size());
92 DF->getFixups().push_back(Fixups[i]);
93 }
94 DF->getContents().append(Code.begin(), Code.end());
Rafael Espindolaf89671d2010-11-01 16:27:31 +000095 }
96
Michael J. Spencer192d1362010-10-09 15:44:27 +000097 void SetSection(StringRef Section,
98 unsigned Characteristics,
99 SectionKind Kind) {
100 SwitchSection(getContext().getCOFFSection(Section, Characteristics, Kind));
101 }
102
103 void SetSectionText() {
104 SetSection(".text",
105 COFF::IMAGE_SCN_CNT_CODE
106 | COFF::IMAGE_SCN_MEM_EXECUTE
107 | COFF::IMAGE_SCN_MEM_READ,
108 SectionKind::getText());
109 EmitCodeAlignment(4, 0);
110 }
111
112 void SetSectionData() {
113 SetSection(".data",
114 COFF::IMAGE_SCN_CNT_INITIALIZED_DATA
115 | COFF::IMAGE_SCN_MEM_READ
116 | COFF::IMAGE_SCN_MEM_WRITE,
117 SectionKind::getDataRel());
118 EmitCodeAlignment(4, 0);
119 }
120
121 void SetSectionBSS() {
122 SetSection(".bss",
123 COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA
124 | COFF::IMAGE_SCN_MEM_READ
125 | COFF::IMAGE_SCN_MEM_WRITE,
126 SectionKind::getBSS());
127 EmitCodeAlignment(4, 0);
128 }
Chris Lattnereb72dca2010-07-11 22:05:00 +0000129};
130} // end anonymous namespace.
131
Chandler Carruth5da36652013-01-31 23:29:57 +0000132WinCOFFStreamer::WinCOFFStreamer(MCContext &Context, MCAsmBackend &MAB,
133 MCCodeEmitter &CE, raw_ostream &OS)
Rafael Espindola320296a2013-10-08 13:08:17 +0000134 : MCObjectStreamer(Context, 0, MAB, OS, &CE), CurSymbol(NULL) {}
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000135
136void WinCOFFStreamer::AddCommonSymbol(MCSymbol *Symbol, uint64_t Size,
137 unsigned ByteAlignment, bool External) {
138 assert(!Symbol->isInSection() && "Symbol must not already have a section!");
139
140 std::string SectionName(".bss$linkonce");
141 SectionName.append(Symbol->getName().begin(), Symbol->getName().end());
142
143 MCSymbolData &SymbolData = getAssembler().getOrCreateSymbolData(*Symbol);
144
145 unsigned Characteristics =
146 COFF::IMAGE_SCN_LNK_COMDAT |
147 COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA |
148 COFF::IMAGE_SCN_MEM_READ |
149 COFF::IMAGE_SCN_MEM_WRITE;
150
151 int Selection = COFF::IMAGE_COMDAT_SELECT_LARGEST;
152
153 const MCSection *Section = MCStreamer::getContext().getCOFFSection(
Nico Rieck80646282013-07-06 12:13:10 +0000154 SectionName, Characteristics, SectionKind::getBSS(), Selection);
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000155
156 MCSectionData &SectionData = getAssembler().getOrCreateSectionData(*Section);
157
158 if (SectionData.getAlignment() < ByteAlignment)
159 SectionData.setAlignment(ByteAlignment);
160
161 SymbolData.setExternal(External);
162
Richard Mitton5cc319a2013-09-19 23:21:01 +0000163 AssignSection(Symbol, Section);
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000164
165 if (ByteAlignment != 1)
166 new MCAlignFragment(ByteAlignment, 0, 0, ByteAlignment, &SectionData);
167
168 SymbolData.setFragment(new MCFillFragment(0, 0, Size, &SectionData));
Chris Lattnereb72dca2010-07-11 22:05:00 +0000169}
170
171// MCStreamer interface
172
Eli Bendersky030f63a2013-01-14 19:04:57 +0000173void WinCOFFStreamer::InitToTextSection() {
174 SetSectionText();
175}
176
Rafael Espindolad80781b2010-09-15 21:48:40 +0000177void WinCOFFStreamer::InitSections() {
Michael J. Spencer192d1362010-10-09 15:44:27 +0000178 SetSectionText();
179 SetSectionData();
180 SetSectionBSS();
181 SetSectionText();
Rafael Espindolad80781b2010-09-15 21:48:40 +0000182}
183
Rafael Espindolaba210242010-11-28 16:22:59 +0000184void WinCOFFStreamer::EmitLabel(MCSymbol *Symbol) {
Rafael Espindolaba210242010-11-28 16:22:59 +0000185 assert(Symbol->isUndefined() && "Cannot define a symbol twice!");
Rafael Espindolaea4afa92010-11-28 17:18:55 +0000186 MCObjectStreamer::EmitLabel(Symbol);
Rafael Espindolaba210242010-11-28 16:22:59 +0000187}
188
Reed Kotler2c3a4642012-12-16 04:00:45 +0000189void WinCOFFStreamer::EmitDebugLabel(MCSymbol *Symbol) {
190 EmitLabel(Symbol);
191}
Chris Lattnereb72dca2010-07-11 22:05:00 +0000192void WinCOFFStreamer::EmitAssemblerFlag(MCAssemblerFlag Flag) {
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000193 llvm_unreachable("not implemented");
Chris Lattnereb72dca2010-07-11 22:05:00 +0000194}
195
Jim Grosbachce792992010-11-05 22:08:08 +0000196void WinCOFFStreamer::EmitThumbFunc(MCSymbol *Func) {
197 llvm_unreachable("not implemented");
198}
199
Saleem Abdulrasool1c9cd022013-08-09 01:52:03 +0000200bool WinCOFFStreamer::EmitSymbolAttribute(MCSymbol *Symbol,
Chris Lattnereb72dca2010-07-11 22:05:00 +0000201 MCSymbolAttr Attribute) {
Michael J. Spencerd47f4a92010-10-09 11:00:37 +0000202 assert(Symbol && "Symbol must be non-null!");
203 assert((Symbol->isInSection()
204 ? Symbol->getSection().getVariant() == MCSection::SV_COFF
205 : true) && "Got non COFF section in the COFF backend!");
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000206 switch (Attribute) {
207 case MCSA_WeakReference:
Michael J. Spencer4cee2892010-10-16 08:25:57 +0000208 case MCSA_Weak: {
209 MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
210 SD.modifyFlags(COFF::SF_WeakExternal, COFF::SF_WeakExternal);
211 SD.setExternal(true);
212 }
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000213 break;
214
215 case MCSA_Global:
216 getAssembler().getOrCreateSymbolData(*Symbol).setExternal(true);
217 break;
218
219 default:
Saleem Abdulrasool1c9cd022013-08-09 01:52:03 +0000220 return false;
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000221 }
Saleem Abdulrasool1c9cd022013-08-09 01:52:03 +0000222
223 return true;
Chris Lattnereb72dca2010-07-11 22:05:00 +0000224}
225
226void WinCOFFStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000227 llvm_unreachable("not implemented");
Chris Lattnereb72dca2010-07-11 22:05:00 +0000228}
229
230void WinCOFFStreamer::BeginCOFFSymbolDef(MCSymbol const *Symbol) {
Michael J. Spencerd47f4a92010-10-09 11:00:37 +0000231 assert((Symbol->isInSection()
232 ? Symbol->getSection().getVariant() == MCSection::SV_COFF
233 : true) && "Got non COFF section in the COFF backend!");
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000234 assert(CurSymbol == NULL && "EndCOFFSymbolDef must be called between calls "
235 "to BeginCOFFSymbolDef!");
236 CurSymbol = Symbol;
Chris Lattnereb72dca2010-07-11 22:05:00 +0000237}
238
239void WinCOFFStreamer::EmitCOFFSymbolStorageClass(int StorageClass) {
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000240 assert(CurSymbol != NULL && "BeginCOFFSymbolDef must be called first!");
241 assert((StorageClass & ~0xFF) == 0 && "StorageClass must only have data in "
242 "the first byte!");
243
244 getAssembler().getOrCreateSymbolData(*CurSymbol).modifyFlags(
245 StorageClass << COFF::SF_ClassShift,
246 COFF::SF_ClassMask);
Chris Lattnereb72dca2010-07-11 22:05:00 +0000247}
248
249void WinCOFFStreamer::EmitCOFFSymbolType(int Type) {
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000250 assert(CurSymbol != NULL && "BeginCOFFSymbolDef must be called first!");
251 assert((Type & ~0xFFFF) == 0 && "Type must only have data in the first 2 "
252 "bytes");
253
254 getAssembler().getOrCreateSymbolData(*CurSymbol).modifyFlags(
255 Type << COFF::SF_TypeShift,
256 COFF::SF_TypeMask);
Chris Lattnereb72dca2010-07-11 22:05:00 +0000257}
258
259void WinCOFFStreamer::EndCOFFSymbolDef() {
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000260 assert(CurSymbol != NULL && "BeginCOFFSymbolDef must be called first!");
261 CurSymbol = NULL;
Chris Lattnereb72dca2010-07-11 22:05:00 +0000262}
263
Rafael Espindola8f7d12c2011-12-17 01:14:52 +0000264void WinCOFFStreamer::EmitCOFFSecRel32(MCSymbol const *Symbol)
265{
266 MCDataFragment *DF = getOrCreateDataFragment();
267
Eli Bendersky64d9a322012-12-07 19:13:57 +0000268 DF->getFixups().push_back(
269 MCFixup::Create(DF->getContents().size(),
270 MCSymbolRefExpr::Create (Symbol, getContext ()),
271 FK_SecRel_4));
Rafael Espindola8f7d12c2011-12-17 01:14:52 +0000272 DF->getContents().resize(DF->getContents().size() + 4, 0);
273}
274
Chris Lattnereb72dca2010-07-11 22:05:00 +0000275void WinCOFFStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) {
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000276 llvm_unreachable("not implemented");
Chris Lattnereb72dca2010-07-11 22:05:00 +0000277}
278
279void WinCOFFStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000280 unsigned ByteAlignment) {
Michael J. Spencerd47f4a92010-10-09 11:00:37 +0000281 assert((Symbol->isInSection()
282 ? Symbol->getSection().getVariant() == MCSection::SV_COFF
283 : true) && "Got non COFF section in the COFF backend!");
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000284 AddCommonSymbol(Symbol, Size, ByteAlignment, true);
Chris Lattnereb72dca2010-07-11 22:05:00 +0000285}
286
Benjamin Kramer36a16012011-09-01 23:04:27 +0000287void WinCOFFStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
288 unsigned ByteAlignment) {
Michael J. Spencerd47f4a92010-10-09 11:00:37 +0000289 assert((Symbol->isInSection()
290 ? Symbol->getSection().getVariant() == MCSection::SV_COFF
291 : true) && "Got non COFF section in the COFF backend!");
Benjamin Kramer36a16012011-09-01 23:04:27 +0000292 AddCommonSymbol(Symbol, Size, ByteAlignment, false);
Chris Lattnereb72dca2010-07-11 22:05:00 +0000293}
294
295void WinCOFFStreamer::EmitZerofill(const MCSection *Section, MCSymbol *Symbol,
Evan Chengc90a1fc2012-06-22 20:14:46 +0000296 uint64_t Size,unsigned ByteAlignment) {
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000297 llvm_unreachable("not implemented");
Chris Lattnereb72dca2010-07-11 22:05:00 +0000298}
299
300void WinCOFFStreamer::EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol,
301 uint64_t Size, unsigned ByteAlignment) {
Michael J. Spencer8067adc2010-07-19 06:13:10 +0000302 llvm_unreachable("not implemented");
Chris Lattnereb72dca2010-07-11 22:05:00 +0000303}
304
Chris Lattnereb72dca2010-07-11 22:05:00 +0000305void WinCOFFStreamer::EmitFileDirective(StringRef Filename) {
306 // Ignore for now, linkers don't care, and proper debug
307 // info will be a much large effort.
308}
309
Rafael Espindolac7ce3e42013-10-16 01:05:45 +0000310// TODO: Implement this if you want to emit .comment section in COFF obj files.
311void WinCOFFStreamer::EmitIdent(StringRef IdentString) {
312 llvm_unreachable("unsupported directive");
313}
314
Charles Davis3185f5c2011-05-22 03:01:05 +0000315void WinCOFFStreamer::EmitWin64EHHandlerData() {
316 MCStreamer::EmitWin64EHHandlerData();
317
318 // We have to emit the unwind info now, because this directive
319 // actually switches to the .xdata section!
320 MCWin64EHUnwindEmitter::EmitUnwindInfo(*this, getCurrentW64UnwindInfo());
321}
322
Rafael Espindola99b42372012-01-07 03:13:18 +0000323void WinCOFFStreamer::FinishImpl() {
Charles Davis38ea9ee2011-05-22 04:15:07 +0000324 EmitW64Tables();
Rafael Espindola99b42372012-01-07 03:13:18 +0000325 MCObjectStreamer::FinishImpl();
Chris Lattnereb72dca2010-07-11 22:05:00 +0000326}
327
328namespace llvm
329{
330 MCStreamer *createWinCOFFStreamer(MCContext &Context,
Evan Cheng78c10ee2011-07-25 23:24:55 +0000331 MCAsmBackend &MAB,
Chris Lattnereb72dca2010-07-11 22:05:00 +0000332 MCCodeEmitter &CE,
Michael J. Spencere2195d82010-07-31 06:22:29 +0000333 raw_ostream &OS,
334 bool RelaxAll) {
Evan Cheng78c10ee2011-07-25 23:24:55 +0000335 WinCOFFStreamer *S = new WinCOFFStreamer(Context, MAB, CE, OS);
Michael J. Spencere2195d82010-07-31 06:22:29 +0000336 S->getAssembler().setRelaxAll(RelaxAll);
337 return S;
Chris Lattnereb72dca2010-07-11 22:05:00 +0000338 }
339}