blob: 99a675d392f9ebbda97560f6065ce2a0c3b47b62 [file] [log] [blame]
Matt Fleming3565a062010-08-16 18:57:57 +00001//===- lib/MC/ELFObjectWriter.cpp - ELF File Writer -------------------===//
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 implements ELF object file writer information.
11//
12//===----------------------------------------------------------------------===//
13
Jan Sjödin24b17c62011-03-03 14:52:12 +000014#include "ELFObjectWriter.h"
Matt Fleming3565a062010-08-16 18:57:57 +000015#include "llvm/ADT/STLExtras.h"
16#include "llvm/ADT/StringMap.h"
17#include "llvm/ADT/Twine.h"
Evan Cheng78c10ee2011-07-25 23:24:55 +000018#include "llvm/MC/MCAsmBackend.h"
Matt Fleming3565a062010-08-16 18:57:57 +000019#include "llvm/MC/MCAsmLayout.h"
20#include "llvm/MC/MCContext.h"
Matt Fleming3565a062010-08-16 18:57:57 +000021#include "llvm/MC/MCExpr.h"
Matt Fleming3565a062010-08-16 18:57:57 +000022#include "llvm/MC/MCSectionELF.h"
Matt Fleming3565a062010-08-16 18:57:57 +000023#include "llvm/MC/MCValue.h"
24#include "llvm/Support/Debug.h"
25#include "llvm/Support/ErrorHandling.h"
26#include "llvm/Support/ELF.h"
Jason W Kime964d112011-05-11 22:53:06 +000027#include "llvm/Support/CommandLine.h"
28#include "llvm/ADT/Statistic.h"
Evan Chenga7cfc082011-07-23 00:45:41 +000029#include "llvm/ADT/StringSwitch.h"
Matt Fleming3565a062010-08-16 18:57:57 +000030
Evan Cheng8c3fee52011-07-25 18:43:53 +000031#include "../Target/X86/MCTargetDesc/X86FixupKinds.h"
Evan Chengbe740292011-07-23 00:00:19 +000032#include "../Target/ARM/MCTargetDesc/ARMFixupKinds.h"
Roman Divacky2c0d69f2011-08-02 15:51:38 +000033#include "../Target/PowerPC/MCTargetDesc/PPCFixupKinds.h"
Matt Fleming3565a062010-08-16 18:57:57 +000034
35#include <vector>
36using namespace llvm;
37
Jason W Kime964d112011-05-11 22:53:06 +000038#undef DEBUG_TYPE
39#define DEBUG_TYPE "reloc-info"
40
Jan Sjödin2ddfd952011-02-28 21:45:04 +000041bool ELFObjectWriter::isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) {
42 const MCFixupKindInfo &FKI =
43 Asm.getBackend().getFixupKindInfo((MCFixupKind) Kind);
44
45 return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel;
46}
47
48bool ELFObjectWriter::RelocNeedsGOT(MCSymbolRefExpr::VariantKind Variant) {
49 switch (Variant) {
50 default:
51 return false;
52 case MCSymbolRefExpr::VK_GOT:
53 case MCSymbolRefExpr::VK_PLT:
54 case MCSymbolRefExpr::VK_GOTPCREL:
Rafael Espindola378e0ec2011-06-05 01:20:06 +000055 case MCSymbolRefExpr::VK_GOTOFF:
Jan Sjödin2ddfd952011-02-28 21:45:04 +000056 case MCSymbolRefExpr::VK_TPOFF:
57 case MCSymbolRefExpr::VK_TLSGD:
58 case MCSymbolRefExpr::VK_GOTTPOFF:
59 case MCSymbolRefExpr::VK_INDNTPOFF:
60 case MCSymbolRefExpr::VK_NTPOFF:
61 case MCSymbolRefExpr::VK_GOTNTPOFF:
62 case MCSymbolRefExpr::VK_TLSLDM:
63 case MCSymbolRefExpr::VK_DTPOFF:
64 case MCSymbolRefExpr::VK_TLSLD:
65 return true;
66 }
67}
68
Jason W Kimd3443e92010-11-15 16:18:39 +000069ELFObjectWriter::~ELFObjectWriter()
70{}
71
Matt Fleming3565a062010-08-16 18:57:57 +000072// Emit the ELF header.
Daniel Dunbar115a3dd2010-11-13 07:33:40 +000073void ELFObjectWriter::WriteHeader(uint64_t SectionDataSize,
74 unsigned NumberOfSections) {
Matt Fleming3565a062010-08-16 18:57:57 +000075 // ELF Header
76 // ----------
77 //
78 // Note
79 // ----
80 // emitWord method behaves differently for ELF32 and ELF64, writing
81 // 4 bytes in the former and 8 in the latter.
82
83 Write8(0x7f); // e_ident[EI_MAG0]
84 Write8('E'); // e_ident[EI_MAG1]
85 Write8('L'); // e_ident[EI_MAG2]
86 Write8('F'); // e_ident[EI_MAG3]
87
Rafael Espindolabff66a82010-12-18 03:27:34 +000088 Write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
Matt Fleming3565a062010-08-16 18:57:57 +000089
90 // e_ident[EI_DATA]
Daniel Dunbar115a3dd2010-11-13 07:33:40 +000091 Write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB);
Matt Fleming3565a062010-08-16 18:57:57 +000092
93 Write8(ELF::EV_CURRENT); // e_ident[EI_VERSION]
Roman Divacky5baf79e2010-09-09 17:57:50 +000094 // e_ident[EI_OSABI]
Rafael Espindolabff66a82010-12-18 03:27:34 +000095 switch (TargetObjectWriter->getOSType()) {
Roman Divacky5baf79e2010-09-09 17:57:50 +000096 case Triple::FreeBSD: Write8(ELF::ELFOSABI_FREEBSD); break;
97 case Triple::Linux: Write8(ELF::ELFOSABI_LINUX); break;
98 default: Write8(ELF::ELFOSABI_NONE); break;
99 }
Matt Fleming3565a062010-08-16 18:57:57 +0000100 Write8(0); // e_ident[EI_ABIVERSION]
101
102 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD);
103
104 Write16(ELF::ET_REL); // e_type
105
Rafael Espindolabff66a82010-12-18 03:27:34 +0000106 Write16(TargetObjectWriter->getEMachine()); // e_machine = target
Matt Fleming3565a062010-08-16 18:57:57 +0000107
108 Write32(ELF::EV_CURRENT); // e_version
109 WriteWord(0); // e_entry, no entry point in .o file
110 WriteWord(0); // e_phoff, no program header for .o
Rafael Espindolabff66a82010-12-18 03:27:34 +0000111 WriteWord(SectionDataSize + (is64Bit() ? sizeof(ELF::Elf64_Ehdr) :
Benjamin Kramereb976772010-08-17 17:02:29 +0000112 sizeof(ELF::Elf32_Ehdr))); // e_shoff = sec hdr table off in bytes
Matt Fleming3565a062010-08-16 18:57:57 +0000113
Jason W Kim2d7a53a2011-02-04 21:41:11 +0000114 // e_flags = whatever the target wants
115 WriteEFlags();
Matt Fleming3565a062010-08-16 18:57:57 +0000116
117 // e_ehsize = ELF header size
Rafael Espindolabff66a82010-12-18 03:27:34 +0000118 Write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
Matt Fleming3565a062010-08-16 18:57:57 +0000119
120 Write16(0); // e_phentsize = prog header entry size
121 Write16(0); // e_phnum = # prog header entries = 0
122
123 // e_shentsize = Section header entry size
Rafael Espindolabff66a82010-12-18 03:27:34 +0000124 Write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
Matt Fleming3565a062010-08-16 18:57:57 +0000125
126 // e_shnum = # of section header ents
Rafael Espindola7be2c332010-10-31 00:16:26 +0000127 if (NumberOfSections >= ELF::SHN_LORESERVE)
128 Write16(0);
129 else
130 Write16(NumberOfSections);
Matt Fleming3565a062010-08-16 18:57:57 +0000131
132 // e_shstrndx = Section # of '.shstrtab'
Rafael Espindola7be2c332010-10-31 00:16:26 +0000133 if (NumberOfSections >= ELF::SHN_LORESERVE)
134 Write16(ELF::SHN_XINDEX);
135 else
136 Write16(ShstrtabIndex);
Matt Fleming3565a062010-08-16 18:57:57 +0000137}
138
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000139void ELFObjectWriter::WriteSymbolEntry(MCDataFragment *SymtabF,
140 MCDataFragment *ShndxF,
141 uint64_t name,
142 uint8_t info, uint64_t value,
143 uint64_t size, uint8_t other,
144 uint32_t shndx,
145 bool Reserved) {
Rafael Espindola7be2c332010-10-31 00:16:26 +0000146 if (ShndxF) {
Rafael Espindola7be2c332010-10-31 00:16:26 +0000147 if (shndx >= ELF::SHN_LORESERVE && !Reserved)
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000148 String32(*ShndxF, shndx);
Rafael Espindola7be2c332010-10-31 00:16:26 +0000149 else
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000150 String32(*ShndxF, 0);
Rafael Espindola7be2c332010-10-31 00:16:26 +0000151 }
152
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000153 uint16_t Index = (shndx >= ELF::SHN_LORESERVE && !Reserved) ?
154 uint16_t(ELF::SHN_XINDEX) : shndx;
155
Rafael Espindolabff66a82010-12-18 03:27:34 +0000156 if (is64Bit()) {
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000157 String32(*SymtabF, name); // st_name
158 String8(*SymtabF, info); // st_info
159 String8(*SymtabF, other); // st_other
160 String16(*SymtabF, Index); // st_shndx
161 String64(*SymtabF, value); // st_value
162 String64(*SymtabF, size); // st_size
Matt Fleming3565a062010-08-16 18:57:57 +0000163 } else {
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000164 String32(*SymtabF, name); // st_name
165 String32(*SymtabF, value); // st_value
166 String32(*SymtabF, size); // st_size
167 String8(*SymtabF, info); // st_info
168 String8(*SymtabF, other); // st_other
169 String16(*SymtabF, Index); // st_shndx
Matt Fleming3565a062010-08-16 18:57:57 +0000170 }
171}
172
Jan Sjödin2ddfd952011-02-28 21:45:04 +0000173uint64_t ELFObjectWriter::SymbolValue(MCSymbolData &Data,
174 const MCAsmLayout &Layout) {
Rafael Espindola2c6ec312010-09-27 21:23:02 +0000175 if (Data.isCommon() && Data.isExternal())
176 return Data.getCommonAlignment();
177
178 const MCSymbol &Symbol = Data.getSymbol();
Roman Divackyd1491862010-12-20 21:14:39 +0000179
180 if (Symbol.isAbsolute() && Symbol.isVariable()) {
181 if (const MCExpr *Value = Symbol.getVariableValue()) {
182 int64_t IntValue;
183 if (Value->EvaluateAsAbsolute(IntValue, Layout))
184 return (uint64_t)IntValue;
185 }
186 }
187
Rafael Espindola2c6ec312010-09-27 21:23:02 +0000188 if (!Symbol.isInSection())
189 return 0;
190
Rafael Espindola64695402011-05-16 16:17:21 +0000191
192 if (Data.getFragment()) {
193 if (Data.getFlags() & ELF_Other_ThumbFunc)
194 return Layout.getSymbolOffset(&Data)+1;
195 else
196 return Layout.getSymbolOffset(&Data);
197 }
Rafael Espindola2c6ec312010-09-27 21:23:02 +0000198
199 return 0;
200}
201
Rafael Espindola85f2ecc2010-12-07 00:27:36 +0000202void ELFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm,
203 const MCAsmLayout &Layout) {
Rafael Espindola88182132010-10-27 15:18:17 +0000204 // The presence of symbol versions causes undefined symbols and
205 // versions declared with @@@ to be renamed.
206
207 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
208 ie = Asm.symbol_end(); it != ie; ++it) {
209 const MCSymbol &Alias = it->getSymbol();
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000210 const MCSymbol &Symbol = Alias.AliasedSymbol();
Rafael Espindolaf571f9a2010-10-28 18:33:03 +0000211 MCSymbolData &SD = Asm.getSymbolData(Symbol);
212
Rafael Espindolaf571f9a2010-10-28 18:33:03 +0000213 // Not an alias.
214 if (&Symbol == &Alias)
215 continue;
216
Benjamin Kramer07ee6322010-10-27 19:53:52 +0000217 StringRef AliasName = Alias.getName();
Rafael Espindola88182132010-10-27 15:18:17 +0000218 size_t Pos = AliasName.find('@');
219 if (Pos == StringRef::npos)
220 continue;
221
Rafael Espindolaf571f9a2010-10-28 18:33:03 +0000222 // Aliases defined with .symvar copy the binding from the symbol they alias.
223 // This is the first place we are able to copy this information.
224 it->setExternal(SD.isExternal());
Jan Sjödin2ddfd952011-02-28 21:45:04 +0000225 MCELF::SetBinding(*it, MCELF::GetBinding(SD));
Rafael Espindolaf571f9a2010-10-28 18:33:03 +0000226
Benjamin Kramer07ee6322010-10-27 19:53:52 +0000227 StringRef Rest = AliasName.substr(Pos);
Rafael Espindola88182132010-10-27 15:18:17 +0000228 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
229 continue;
230
Rafael Espindola83ff4d22010-10-27 17:56:18 +0000231 // FIXME: produce a better error message.
232 if (Symbol.isUndefined() && Rest.startswith("@@") &&
233 !Rest.startswith("@@@"))
234 report_fatal_error("A @@ version cannot be undefined");
235
Benjamin Kramer07ee6322010-10-27 19:53:52 +0000236 Renames.insert(std::make_pair(&Symbol, &Alias));
Rafael Espindola88182132010-10-27 15:18:17 +0000237 }
238}
239
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000240void ELFObjectWriter::WriteSymbol(MCDataFragment *SymtabF,
241 MCDataFragment *ShndxF,
242 ELFSymbolData &MSD,
243 const MCAsmLayout &Layout) {
Rafael Espindola152c1062010-10-06 21:02:29 +0000244 MCSymbolData &OrigData = *MSD.SymbolData;
Rafael Espindolade89b012010-10-15 18:25:33 +0000245 MCSymbolData &Data =
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000246 Layout.getAssembler().getSymbolData(OrigData.getSymbol().AliasedSymbol());
Rafael Espindola152c1062010-10-06 21:02:29 +0000247
Rafael Espindola7be2c332010-10-31 00:16:26 +0000248 bool IsReserved = Data.isCommon() || Data.getSymbol().isAbsolute() ||
249 Data.getSymbol().isVariable();
250
Jan Sjödin2ddfd952011-02-28 21:45:04 +0000251 uint8_t Binding = MCELF::GetBinding(OrigData);
252 uint8_t Visibility = MCELF::GetVisibility(OrigData);
253 uint8_t Type = MCELF::GetType(Data);
Rafael Espindola152c1062010-10-06 21:02:29 +0000254
255 uint8_t Info = (Binding << ELF_STB_Shift) | (Type << ELF_STT_Shift);
256 uint8_t Other = Visibility;
257
Rafael Espindola2c6ec312010-09-27 21:23:02 +0000258 uint64_t Value = SymbolValue(Data, Layout);
Matt Fleming3565a062010-08-16 18:57:57 +0000259 uint64_t Size = 0;
Matt Fleming3565a062010-08-16 18:57:57 +0000260
Rafael Espindolaf7c10a32010-09-21 00:24:38 +0000261 assert(!(Data.isCommon() && !Data.isExternal()));
262
Rafael Espindolaf0121242010-12-22 16:03:00 +0000263 const MCExpr *ESize = Data.getSize();
264 if (ESize) {
265 int64_t Res;
266 if (!ESize->EvaluateAsAbsolute(Res, Layout))
267 report_fatal_error("Size expression must be absolute.");
268 Size = Res;
Matt Fleming3565a062010-08-16 18:57:57 +0000269 }
270
271 // Write out the symbol table entry
Rafael Espindola7be2c332010-10-31 00:16:26 +0000272 WriteSymbolEntry(SymtabF, ShndxF, MSD.StringIndex, Info, Value,
273 Size, Other, MSD.SectionIndex, IsReserved);
Matt Fleming3565a062010-08-16 18:57:57 +0000274}
275
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000276void ELFObjectWriter::WriteSymbolTable(MCDataFragment *SymtabF,
277 MCDataFragment *ShndxF,
278 const MCAssembler &Asm,
279 const MCAsmLayout &Layout,
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000280 const SectionIndexMapTy &SectionIndexMap) {
Matt Fleming3565a062010-08-16 18:57:57 +0000281 // The string table must be emitted first because we need the index
282 // into the string table for all the symbol names.
283 assert(StringTable.size() && "Missing string table");
284
285 // FIXME: Make sure the start of the symbol table is aligned.
286
287 // The first entry is the undefined symbol entry.
Rafael Espindola7be2c332010-10-31 00:16:26 +0000288 WriteSymbolEntry(SymtabF, ShndxF, 0, 0, 0, 0, 0, 0, false);
Matt Fleming3565a062010-08-16 18:57:57 +0000289
290 // Write the symbol table entries.
291 LastLocalSymbolIndex = LocalSymbolData.size() + 1;
292 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i) {
293 ELFSymbolData &MSD = LocalSymbolData[i];
Rafael Espindola7be2c332010-10-31 00:16:26 +0000294 WriteSymbol(SymtabF, ShndxF, MSD, Layout);
Matt Fleming3565a062010-08-16 18:57:57 +0000295 }
296
Rafael Espindola71859c62010-09-16 19:46:31 +0000297 // Write out a symbol table entry for each regular section.
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000298 for (MCAssembler::const_iterator i = Asm.begin(), e = Asm.end(); i != e;
299 ++i) {
Eli Friedmana44fa242010-08-16 21:17:09 +0000300 const MCSectionELF &Section =
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000301 static_cast<const MCSectionELF&>(i->getSection());
302 if (Section.getType() == ELF::SHT_RELA ||
303 Section.getType() == ELF::SHT_REL ||
304 Section.getType() == ELF::SHT_STRTAB ||
305 Section.getType() == ELF::SHT_SYMTAB)
Eli Friedmana44fa242010-08-16 21:17:09 +0000306 continue;
Rafael Espindola7be2c332010-10-31 00:16:26 +0000307 WriteSymbolEntry(SymtabF, ShndxF, 0, ELF::STT_SECTION, 0, 0,
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000308 ELF::STV_DEFAULT, SectionIndexMap.lookup(&Section), false);
Eli Friedmana44fa242010-08-16 21:17:09 +0000309 LastLocalSymbolIndex++;
310 }
Matt Fleming3565a062010-08-16 18:57:57 +0000311
312 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i) {
313 ELFSymbolData &MSD = ExternalSymbolData[i];
314 MCSymbolData &Data = *MSD.SymbolData;
Rafael Espindola3223f192010-10-06 16:47:31 +0000315 assert(((Data.getFlags() & ELF_STB_Global) ||
316 (Data.getFlags() & ELF_STB_Weak)) &&
317 "External symbol requires STB_GLOBAL or STB_WEAK flag");
Rafael Espindola7be2c332010-10-31 00:16:26 +0000318 WriteSymbol(SymtabF, ShndxF, MSD, Layout);
Jan Sjödin2ddfd952011-02-28 21:45:04 +0000319 if (MCELF::GetBinding(Data) == ELF::STB_LOCAL)
Matt Fleming3565a062010-08-16 18:57:57 +0000320 LastLocalSymbolIndex++;
321 }
322
323 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i) {
324 ELFSymbolData &MSD = UndefinedSymbolData[i];
325 MCSymbolData &Data = *MSD.SymbolData;
Rafael Espindola7be2c332010-10-31 00:16:26 +0000326 WriteSymbol(SymtabF, ShndxF, MSD, Layout);
Jan Sjödin2ddfd952011-02-28 21:45:04 +0000327 if (MCELF::GetBinding(Data) == ELF::STB_LOCAL)
Matt Fleming3565a062010-08-16 18:57:57 +0000328 LastLocalSymbolIndex++;
329 }
330}
331
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000332const MCSymbol *ELFObjectWriter::SymbolToReloc(const MCAssembler &Asm,
333 const MCValue &Target,
Jason W Kime964d112011-05-11 22:53:06 +0000334 const MCFragment &F,
335 const MCFixup &Fixup,
336 bool IsPCRel) const {
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000337 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000338 const MCSymbol &ASymbol = Symbol.AliasedSymbol();
339 const MCSymbol *Renamed = Renames.lookup(&Symbol);
340 const MCSymbolData &SD = Asm.getSymbolData(Symbol);
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000341
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000342 if (ASymbol.isUndefined()) {
343 if (Renamed)
344 return Renamed;
345 return &ASymbol;
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000346 }
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000347
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000348 if (SD.isExternal()) {
349 if (Renamed)
350 return Renamed;
351 return &Symbol;
352 }
Rafael Espindola73ffea42010-09-25 05:42:19 +0000353
Rafael Espindola7eae36b2010-09-30 20:18:35 +0000354 const MCSectionELF &Section =
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000355 static_cast<const MCSectionELF&>(ASymbol.getSection());
Rafael Espindola25958732010-11-24 21:57:39 +0000356 const SectionKind secKind = Section.getKind();
Rafael Espindola7eae36b2010-09-30 20:18:35 +0000357
Rafael Espindola25958732010-11-24 21:57:39 +0000358 if (secKind.isBSS())
Jason W Kime964d112011-05-11 22:53:06 +0000359 return ExplicitRelSym(Asm, Target, F, Fixup, IsPCRel);
Rafael Espindola7eae36b2010-09-30 20:18:35 +0000360
Rafael Espindola25958732010-11-24 21:57:39 +0000361 if (secKind.isThreadLocal()) {
362 if (Renamed)
363 return Renamed;
364 return &Symbol;
365 }
366
Rafael Espindola8cecf252010-10-06 16:23:36 +0000367 MCSymbolRefExpr::VariantKind Kind = Target.getSymA()->getKind();
Rafael Espindola3729d002010-10-05 23:57:26 +0000368 const MCSectionELF &Sec2 =
369 static_cast<const MCSectionELF&>(F.getParent()->getSection());
370
Rafael Espindola8cecf252010-10-06 16:23:36 +0000371 if (&Sec2 != &Section &&
Rafael Espindolac97f80e2010-10-18 16:38:04 +0000372 (Kind == MCSymbolRefExpr::VK_PLT ||
373 Kind == MCSymbolRefExpr::VK_GOTPCREL ||
Rafael Espindola25958732010-11-24 21:57:39 +0000374 Kind == MCSymbolRefExpr::VK_GOTOFF)) {
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000375 if (Renamed)
376 return Renamed;
377 return &Symbol;
378 }
Rafael Espindola3729d002010-10-05 23:57:26 +0000379
Rafael Espindola1c130262011-01-23 04:43:11 +0000380 if (Section.getFlags() & ELF::SHF_MERGE) {
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000381 if (Target.getConstant() == 0)
Jason W Kime964d112011-05-11 22:53:06 +0000382 return ExplicitRelSym(Asm, Target, F, Fixup, IsPCRel);
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000383 if (Renamed)
384 return Renamed;
385 return &Symbol;
Rafael Espindola1f52dfe2010-11-14 23:53:26 +0000386 }
Rafael Espindolac97f80e2010-10-18 16:38:04 +0000387
Jason W Kime964d112011-05-11 22:53:06 +0000388 return ExplicitRelSym(Asm, Target, F, Fixup, IsPCRel);
389
Rafael Espindola73ffea42010-09-25 05:42:19 +0000390}
391
Matt Fleming3565a062010-08-16 18:57:57 +0000392
Jason W Kim56a39902010-12-06 21:57:34 +0000393void ELFObjectWriter::RecordRelocation(const MCAssembler &Asm,
394 const MCAsmLayout &Layout,
395 const MCFragment *Fragment,
396 const MCFixup &Fixup,
397 MCValue Target,
398 uint64_t &FixedValue) {
399 int64_t Addend = 0;
400 int Index = 0;
401 int64_t Value = Target.getConstant();
402 const MCSymbol *RelocSymbol = NULL;
403
Rafael Espindola127a6a42010-12-17 07:28:17 +0000404 bool IsPCRel = isFixupKindPCRel(Asm, Fixup.getKind());
Jason W Kim56a39902010-12-06 21:57:34 +0000405 if (!Target.isAbsolute()) {
406 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
407 const MCSymbol &ASymbol = Symbol.AliasedSymbol();
Jason W Kime964d112011-05-11 22:53:06 +0000408 RelocSymbol = SymbolToReloc(Asm, Target, *Fragment, Fixup, IsPCRel);
Jason W Kim56a39902010-12-06 21:57:34 +0000409
410 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
411 const MCSymbol &SymbolB = RefB->getSymbol();
412 MCSymbolData &SDB = Asm.getSymbolData(SymbolB);
413 IsPCRel = true;
414
415 // Offset of the symbol in the section
416 int64_t a = Layout.getSymbolOffset(&SDB);
417
418 // Ofeset of the relocation in the section
419 int64_t b = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
420 Value += b - a;
421 }
422
423 if (!RelocSymbol) {
424 MCSymbolData &SD = Asm.getSymbolData(ASymbol);
425 MCFragment *F = SD.getFragment();
426
427 Index = F->getParent()->getOrdinal() + 1;
428
429 // Offset of the symbol in the section
430 Value += Layout.getSymbolOffset(&SD);
431 } else {
432 if (Asm.getSymbolData(Symbol).getFlags() & ELF_Other_Weakref)
433 WeakrefUsedInReloc.insert(RelocSymbol);
434 else
435 UsedInReloc.insert(RelocSymbol);
436 Index = -1;
437 }
438 Addend = Value;
439 // Compensate for the addend on i386.
Rafael Espindolabff66a82010-12-18 03:27:34 +0000440 if (is64Bit())
Jason W Kim56a39902010-12-06 21:57:34 +0000441 Value = 0;
442 }
443
444 FixedValue = Value;
445 unsigned Type = GetRelocType(Target, Fixup, IsPCRel,
446 (RelocSymbol != 0), Addend);
Jan Sjödin2ddfd952011-02-28 21:45:04 +0000447
Jason W Kim56a39902010-12-06 21:57:34 +0000448 uint64_t RelocOffset = Layout.getFragmentOffset(Fragment) +
449 Fixup.getOffset();
Roman Divacky2a66cea2011-08-04 19:08:19 +0000450
451 adjustFixupOffset(Fixup, RelocOffset);
Jason W Kim56a39902010-12-06 21:57:34 +0000452
Rafael Espindolabff66a82010-12-18 03:27:34 +0000453 if (!hasRelocationAddend())
454 Addend = 0;
Rafael Espindolabbf9c4a2011-08-04 13:05:26 +0000455
456 if (is64Bit())
457 assert(isInt<64>(Addend));
458 else
459 assert(isInt<32>(Addend));
460
Jason W Kim56a39902010-12-06 21:57:34 +0000461 ELFRelocationEntry ERE(RelocOffset, Index, Type, RelocSymbol, Addend);
462 Relocations[Fragment->getParent()].push_back(ERE);
463}
464
465
Benjamin Kramer0b6cbfe2010-08-23 21:19:37 +0000466uint64_t
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000467ELFObjectWriter::getSymbolIndexInSymbolTable(const MCAssembler &Asm,
468 const MCSymbol *S) {
Benjamin Kramer7b83c262010-08-25 20:09:43 +0000469 MCSymbolData &SD = Asm.getSymbolData(*S);
Rafael Espindolaab4a7af2010-11-14 03:12:24 +0000470 return SD.getIndex();
Matt Fleming3565a062010-08-16 18:57:57 +0000471}
472
Jan Sjödin2ddfd952011-02-28 21:45:04 +0000473bool ELFObjectWriter::isInSymtab(const MCAssembler &Asm,
474 const MCSymbolData &Data,
475 bool Used, bool Renamed) {
Rafael Espindola484291c2010-11-01 14:28:48 +0000476 if (Data.getFlags() & ELF_Other_Weakref)
477 return false;
478
Rafael Espindolabd701182010-10-19 19:31:37 +0000479 if (Used)
480 return true;
481
Rafael Espindola88182132010-10-27 15:18:17 +0000482 if (Renamed)
483 return false;
484
Rafael Espindola737cd212010-10-05 18:01:23 +0000485 const MCSymbol &Symbol = Data.getSymbol();
Rafael Espindolaa6866962010-10-27 14:44:52 +0000486
Rafael Espindolad1798862010-10-29 23:09:31 +0000487 if (Symbol.getName() == "_GLOBAL_OFFSET_TABLE_")
488 return true;
489
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000490 const MCSymbol &A = Symbol.AliasedSymbol();
Rafael Espindola21451e52011-02-23 20:22:07 +0000491 if (Symbol.isVariable() && !A.isVariable() && A.isUndefined())
492 return false;
493
Jan Sjödin2ddfd952011-02-28 21:45:04 +0000494 bool IsGlobal = MCELF::GetBinding(Data) == ELF::STB_GLOBAL;
Rafael Espindola21451e52011-02-23 20:22:07 +0000495 if (!Symbol.isVariable() && Symbol.isUndefined() && !IsGlobal)
Rafael Espindolaa6866962010-10-27 14:44:52 +0000496 return false;
497
Rafael Espindola737cd212010-10-05 18:01:23 +0000498 if (!Asm.isSymbolLinkerVisible(Symbol) && !Symbol.isUndefined())
499 return false;
500
Rafael Espindolabd701182010-10-19 19:31:37 +0000501 if (Symbol.isTemporary())
Rafael Espindola737cd212010-10-05 18:01:23 +0000502 return false;
503
504 return true;
505}
506
Jan Sjödin2ddfd952011-02-28 21:45:04 +0000507bool ELFObjectWriter::isLocal(const MCSymbolData &Data, bool isSignature,
508 bool isUsedInReloc) {
Rafael Espindola737cd212010-10-05 18:01:23 +0000509 if (Data.isExternal())
510 return false;
511
512 const MCSymbol &Symbol = Data.getSymbol();
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000513 const MCSymbol &RefSymbol = Symbol.AliasedSymbol();
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000514
515 if (RefSymbol.isUndefined() && !RefSymbol.isVariable()) {
516 if (isSignature && !isUsedInReloc)
517 return true;
518
Rafael Espindola737cd212010-10-05 18:01:23 +0000519 return false;
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000520 }
Rafael Espindola737cd212010-10-05 18:01:23 +0000521
522 return true;
523}
524
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000525void ELFObjectWriter::ComputeIndexMap(MCAssembler &Asm,
Rafael Espindola7c18fa82011-03-20 18:44:20 +0000526 SectionIndexMapTy &SectionIndexMap,
527 const RelMapTy &RelMap) {
Rafael Espindolabab2a802010-11-10 21:51:05 +0000528 unsigned Index = 1;
529 for (MCAssembler::iterator it = Asm.begin(),
530 ie = Asm.end(); it != ie; ++it) {
531 const MCSectionELF &Section =
532 static_cast<const MCSectionELF &>(it->getSection());
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000533 if (Section.getType() != ELF::SHT_GROUP)
534 continue;
535 SectionIndexMap[&Section] = Index++;
536 }
537
538 for (MCAssembler::iterator it = Asm.begin(),
539 ie = Asm.end(); it != ie; ++it) {
540 const MCSectionELF &Section =
541 static_cast<const MCSectionELF &>(it->getSection());
Rafael Espindola7c18fa82011-03-20 18:44:20 +0000542 if (Section.getType() == ELF::SHT_GROUP ||
543 Section.getType() == ELF::SHT_REL ||
544 Section.getType() == ELF::SHT_RELA)
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000545 continue;
Rafael Espindolabab2a802010-11-10 21:51:05 +0000546 SectionIndexMap[&Section] = Index++;
Rafael Espindola7c18fa82011-03-20 18:44:20 +0000547 const MCSectionELF *RelSection = RelMap.lookup(&Section);
548 if (RelSection)
549 SectionIndexMap[RelSection] = Index++;
Rafael Espindolabab2a802010-11-10 21:51:05 +0000550 }
551}
552
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000553void ELFObjectWriter::ComputeSymbolTable(MCAssembler &Asm,
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000554 const SectionIndexMapTy &SectionIndexMap,
Rafael Espindola7c18fa82011-03-20 18:44:20 +0000555 RevGroupMapTy RevGroupMap,
556 unsigned NumRegularSections) {
Rafael Espindola5c77c162010-10-05 15:48:37 +0000557 // FIXME: Is this the correct place to do this?
Rafael Espindola378e0ec2011-06-05 01:20:06 +0000558 // FIXME: Why is an undefined reference to _GLOBAL_OFFSET_TABLE_ needed?
Rafael Espindola5c77c162010-10-05 15:48:37 +0000559 if (NeedsGOT) {
560 llvm::StringRef Name = "_GLOBAL_OFFSET_TABLE_";
561 MCSymbol *Sym = Asm.getContext().GetOrCreateSymbol(Name);
562 MCSymbolData &Data = Asm.getOrCreateSymbolData(*Sym);
563 Data.setExternal(true);
Jan Sjödin2ddfd952011-02-28 21:45:04 +0000564 MCELF::SetBinding(Data, ELF::STB_GLOBAL);
Rafael Espindola5c77c162010-10-05 15:48:37 +0000565 }
566
Matt Fleming3565a062010-08-16 18:57:57 +0000567 // Index 0 is always the empty string.
568 StringMap<uint64_t> StringIndexMap;
569 StringTable += '\x00';
570
Rafael Espindolad5321da2011-04-07 23:21:52 +0000571 // FIXME: We could optimize suffixes in strtab in the same way we
572 // optimize them in shstrtab.
573
Rafael Espindolaa0949b52010-10-14 16:34:44 +0000574 // Add the data for the symbols.
Matt Fleming3565a062010-08-16 18:57:57 +0000575 for (MCAssembler::symbol_iterator it = Asm.symbol_begin(),
576 ie = Asm.symbol_end(); it != ie; ++it) {
577 const MCSymbol &Symbol = it->getSymbol();
578
Rafael Espindola484291c2010-11-01 14:28:48 +0000579 bool Used = UsedInReloc.count(&Symbol);
580 bool WeakrefUsed = WeakrefUsedInReloc.count(&Symbol);
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000581 bool isSignature = RevGroupMap.count(&Symbol);
582
583 if (!isInSymtab(Asm, *it,
584 Used || WeakrefUsed || isSignature,
Rafael Espindola88182132010-10-27 15:18:17 +0000585 Renames.count(&Symbol)))
Matt Fleming3565a062010-08-16 18:57:57 +0000586 continue;
587
Matt Fleming3565a062010-08-16 18:57:57 +0000588 ELFSymbolData MSD;
589 MSD.SymbolData = it;
Rafael Espindola94ed5fc2010-11-15 16:33:49 +0000590 const MCSymbol &RefSymbol = Symbol.AliasedSymbol();
Matt Fleming3565a062010-08-16 18:57:57 +0000591
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000592 // Undefined symbols are global, but this is the first place we
593 // are able to set it.
594 bool Local = isLocal(*it, isSignature, Used);
Jan Sjödin2ddfd952011-02-28 21:45:04 +0000595 if (!Local && MCELF::GetBinding(*it) == ELF::STB_LOCAL) {
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000596 MCSymbolData &SD = Asm.getSymbolData(RefSymbol);
Jan Sjödin2ddfd952011-02-28 21:45:04 +0000597 MCELF::SetBinding(*it, ELF::STB_GLOBAL);
598 MCELF::SetBinding(SD, ELF::STB_GLOBAL);
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000599 }
600
Rafael Espindola484291c2010-11-01 14:28:48 +0000601 if (RefSymbol.isUndefined() && !Used && WeakrefUsed)
Jan Sjödin2ddfd952011-02-28 21:45:04 +0000602 MCELF::SetBinding(*it, ELF::STB_WEAK);
Rafael Espindola484291c2010-11-01 14:28:48 +0000603
Rafael Espindolaf7c10a32010-09-21 00:24:38 +0000604 if (it->isCommon()) {
Rafael Espindolaa0949b52010-10-14 16:34:44 +0000605 assert(!Local);
Rafael Espindolaf7c10a32010-09-21 00:24:38 +0000606 MSD.SectionIndex = ELF::SHN_COMMON;
Rafael Espindolabf052ac2010-10-27 16:04:30 +0000607 } else if (Symbol.isAbsolute() || RefSymbol.isVariable()) {
Rafael Espindolaa0949b52010-10-14 16:34:44 +0000608 MSD.SectionIndex = ELF::SHN_ABS;
Rafael Espindola88182132010-10-27 15:18:17 +0000609 } else if (RefSymbol.isUndefined()) {
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000610 if (isSignature && !Used)
611 MSD.SectionIndex = SectionIndexMap.lookup(RevGroupMap[&Symbol]);
612 else
613 MSD.SectionIndex = ELF::SHN_UNDEF;
Matt Fleming3565a062010-08-16 18:57:57 +0000614 } else {
Rafael Espindolabab2a802010-11-10 21:51:05 +0000615 const MCSectionELF &Section =
616 static_cast<const MCSectionELF&>(RefSymbol.getSection());
617 MSD.SectionIndex = SectionIndexMap.lookup(&Section);
Rafael Espindola7be2c332010-10-31 00:16:26 +0000618 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
619 NeedsSymtabShndx = true;
Matt Fleming3565a062010-08-16 18:57:57 +0000620 assert(MSD.SectionIndex && "Invalid section index!");
Rafael Espindola5df0b652010-10-15 15:39:06 +0000621 }
622
Rafael Espindola88182132010-10-27 15:18:17 +0000623 // The @@@ in symbol version is replaced with @ in undefined symbols and
624 // @@ in defined ones.
625 StringRef Name = Symbol.getName();
Benjamin Kramer1261a2f2010-11-12 19:26:04 +0000626 SmallString<32> Buf;
627
Rafael Espindola88182132010-10-27 15:18:17 +0000628 size_t Pos = Name.find("@@@");
Rafael Espindola88182132010-10-27 15:18:17 +0000629 if (Pos != StringRef::npos) {
Benjamin Kramer1261a2f2010-11-12 19:26:04 +0000630 Buf += Name.substr(0, Pos);
631 unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1;
632 Buf += Name.substr(Pos + Skip);
633 Name = Buf;
Rafael Espindola88182132010-10-27 15:18:17 +0000634 }
635
Benjamin Kramer1261a2f2010-11-12 19:26:04 +0000636 uint64_t &Entry = StringIndexMap[Name];
Rafael Espindolaa6866962010-10-27 14:44:52 +0000637 if (!Entry) {
638 Entry = StringTable.size();
Benjamin Kramer1261a2f2010-11-12 19:26:04 +0000639 StringTable += Name;
Rafael Espindolaa6866962010-10-27 14:44:52 +0000640 StringTable += '\x00';
Matt Fleming3565a062010-08-16 18:57:57 +0000641 }
Rafael Espindolaa6866962010-10-27 14:44:52 +0000642 MSD.StringIndex = Entry;
643 if (MSD.SectionIndex == ELF::SHN_UNDEF)
644 UndefinedSymbolData.push_back(MSD);
645 else if (Local)
646 LocalSymbolData.push_back(MSD);
647 else
648 ExternalSymbolData.push_back(MSD);
Matt Fleming3565a062010-08-16 18:57:57 +0000649 }
650
651 // Symbols are required to be in lexicographic order.
652 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end());
653 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end());
654 array_pod_sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end());
655
656 // Set the symbol indices. Local symbols must come before all other
657 // symbols with non-local bindings.
Rafael Espindolaab4a7af2010-11-14 03:12:24 +0000658 unsigned Index = 1;
Matt Fleming3565a062010-08-16 18:57:57 +0000659 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i)
660 LocalSymbolData[i].SymbolData->setIndex(Index++);
Rafael Espindolaab4a7af2010-11-14 03:12:24 +0000661
662 Index += NumRegularSections;
663
Matt Fleming3565a062010-08-16 18:57:57 +0000664 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i)
665 ExternalSymbolData[i].SymbolData->setIndex(Index++);
666 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i)
667 UndefinedSymbolData[i].SymbolData->setIndex(Index++);
668}
669
Rafael Espindola7c18fa82011-03-20 18:44:20 +0000670void ELFObjectWriter::CreateRelocationSections(MCAssembler &Asm,
671 MCAsmLayout &Layout,
672 RelMapTy &RelMap) {
673 for (MCAssembler::const_iterator it = Asm.begin(),
674 ie = Asm.end(); it != ie; ++it) {
675 const MCSectionData &SD = *it;
676 if (Relocations[&SD].empty())
677 continue;
678
Matt Fleming3565a062010-08-16 18:57:57 +0000679 MCContext &Ctx = Asm.getContext();
Matt Fleming3565a062010-08-16 18:57:57 +0000680 const MCSectionELF &Section =
681 static_cast<const MCSectionELF&>(SD.getSection());
682
683 const StringRef SectionName = Section.getSectionName();
Rafael Espindolabff66a82010-12-18 03:27:34 +0000684 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
Matt Fleming3565a062010-08-16 18:57:57 +0000685 RelaSectionName += SectionName;
Benjamin Kramer299fbe32010-08-17 17:56:13 +0000686
687 unsigned EntrySize;
Rafael Espindolabff66a82010-12-18 03:27:34 +0000688 if (hasRelocationAddend())
689 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
Benjamin Kramer299fbe32010-08-17 17:56:13 +0000690 else
Rafael Espindolabff66a82010-12-18 03:27:34 +0000691 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
Matt Fleming3565a062010-08-16 18:57:57 +0000692
Rafael Espindola7c18fa82011-03-20 18:44:20 +0000693 const MCSectionELF *RelaSection =
694 Ctx.getELFSection(RelaSectionName, hasRelocationAddend() ?
695 ELF::SHT_RELA : ELF::SHT_REL, 0,
696 SectionKind::getReadOnly(),
697 EntrySize, "");
698 RelMap[&Section] = RelaSection;
699 Asm.getOrCreateSectionData(*RelaSection);
700 }
701}
Matt Fleming3565a062010-08-16 18:57:57 +0000702
Rafael Espindola7c18fa82011-03-20 18:44:20 +0000703void ELFObjectWriter::WriteRelocations(MCAssembler &Asm, MCAsmLayout &Layout,
704 const RelMapTy &RelMap) {
705 for (MCAssembler::const_iterator it = Asm.begin(),
706 ie = Asm.end(); it != ie; ++it) {
707 const MCSectionData &SD = *it;
708 const MCSectionELF &Section =
709 static_cast<const MCSectionELF&>(SD.getSection());
710
711 const MCSectionELF *RelaSection = RelMap.lookup(&Section);
712 if (!RelaSection)
713 continue;
Matt Fleming3565a062010-08-16 18:57:57 +0000714 MCSectionData &RelaSD = Asm.getOrCreateSectionData(*RelaSection);
Rafael Espindolabff66a82010-12-18 03:27:34 +0000715 RelaSD.setAlignment(is64Bit() ? 8 : 4);
Matt Fleming3565a062010-08-16 18:57:57 +0000716
717 MCDataFragment *F = new MCDataFragment(&RelaSD);
Rafael Espindola7c18fa82011-03-20 18:44:20 +0000718 WriteRelocationsFragment(Asm, F, &*it);
Matt Fleming3565a062010-08-16 18:57:57 +0000719 }
720}
721
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000722void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type,
723 uint64_t Flags, uint64_t Address,
724 uint64_t Offset, uint64_t Size,
725 uint32_t Link, uint32_t Info,
726 uint64_t Alignment,
727 uint64_t EntrySize) {
Matt Fleming3565a062010-08-16 18:57:57 +0000728 Write32(Name); // sh_name: index into string table
729 Write32(Type); // sh_type
730 WriteWord(Flags); // sh_flags
731 WriteWord(Address); // sh_addr
732 WriteWord(Offset); // sh_offset
733 WriteWord(Size); // sh_size
734 Write32(Link); // sh_link
735 Write32(Info); // sh_info
736 WriteWord(Alignment); // sh_addralign
737 WriteWord(EntrySize); // sh_entsize
738}
739
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000740void ELFObjectWriter::WriteRelocationsFragment(const MCAssembler &Asm,
741 MCDataFragment *F,
742 const MCSectionData *SD) {
Matt Fleming3565a062010-08-16 18:57:57 +0000743 std::vector<ELFRelocationEntry> &Relocs = Relocations[SD];
744 // sort by the r_offset just like gnu as does
745 array_pod_sort(Relocs.begin(), Relocs.end());
746
747 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
748 ELFRelocationEntry entry = Relocs[e - i - 1];
749
Rafael Espindola12203cc2010-11-21 00:48:25 +0000750 if (!entry.Index)
751 ;
752 else if (entry.Index < 0)
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000753 entry.Index = getSymbolIndexInSymbolTable(Asm, entry.Symbol);
754 else
Rafael Espindola12203cc2010-11-21 00:48:25 +0000755 entry.Index += LocalSymbolData.size();
Rafael Espindolabff66a82010-12-18 03:27:34 +0000756 if (is64Bit()) {
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000757 String64(*F, entry.r_offset);
Benjamin Kramer5e492e82010-09-09 18:01:29 +0000758
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000759 struct ELF::Elf64_Rela ERE64;
760 ERE64.setSymbolAndType(entry.Index, entry.Type);
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000761 String64(*F, ERE64.r_info);
Benjamin Kramer5e492e82010-09-09 18:01:29 +0000762
Rafael Espindolabff66a82010-12-18 03:27:34 +0000763 if (hasRelocationAddend())
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000764 String64(*F, entry.r_addend);
Benjamin Kramer5e492e82010-09-09 18:01:29 +0000765 } else {
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000766 String32(*F, entry.r_offset);
Benjamin Kramer5e492e82010-09-09 18:01:29 +0000767
Rafael Espindola8f413fa2010-10-05 15:11:03 +0000768 struct ELF::Elf32_Rela ERE32;
769 ERE32.setSymbolAndType(entry.Index, entry.Type);
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000770 String32(*F, ERE32.r_info);
Benjamin Kramer5e492e82010-09-09 18:01:29 +0000771
Rafael Espindolabff66a82010-12-18 03:27:34 +0000772 if (hasRelocationAddend())
Rafael Espindolaaf3d38f2010-11-10 20:02:59 +0000773 String32(*F, entry.r_addend);
Benjamin Kramer5e492e82010-09-09 18:01:29 +0000774 }
Matt Fleming3565a062010-08-16 18:57:57 +0000775 }
776}
777
Rafael Espindolad5321da2011-04-07 23:21:52 +0000778static int compareBySuffix(const void *a, const void *b) {
779 const MCSectionELF *secA = *static_cast<const MCSectionELF* const *>(a);
780 const MCSectionELF *secB = *static_cast<const MCSectionELF* const *>(b);
781 const StringRef &NameA = secA->getSectionName();
782 const StringRef &NameB = secB->getSectionName();
783 const unsigned sizeA = NameA.size();
784 const unsigned sizeB = NameB.size();
785 const unsigned len = std::min(sizeA, sizeB);
786 for (unsigned int i = 0; i < len; ++i) {
787 char ca = NameA[sizeA - i - 1];
788 char cb = NameB[sizeB - i - 1];
789 if (ca != cb)
790 return cb - ca;
791 }
792
793 return sizeB - sizeA;
794}
795
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000796void ELFObjectWriter::CreateMetadataSections(MCAssembler &Asm,
797 MCAsmLayout &Layout,
Rafael Espindola7c18fa82011-03-20 18:44:20 +0000798 SectionIndexMapTy &SectionIndexMap,
799 const RelMapTy &RelMap) {
Matt Fleming3565a062010-08-16 18:57:57 +0000800 MCContext &Ctx = Asm.getContext();
801 MCDataFragment *F;
802
Rafael Espindolabff66a82010-12-18 03:27:34 +0000803 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
Matt Fleming3565a062010-08-16 18:57:57 +0000804
Rafael Espindola38738bf2010-09-22 19:04:41 +0000805 // We construct .shstrtab, .symtab and .strtab in this order to match gnu as.
Rafael Espindola4283f4b2010-11-10 19:05:07 +0000806 const MCSectionELF *ShstrtabSection =
Rafael Espindola7be2c332010-10-31 00:16:26 +0000807 Ctx.getELFSection(".shstrtab", ELF::SHT_STRTAB, 0,
Rafael Espindola3f2d13c2010-11-11 03:40:25 +0000808 SectionKind::getReadOnly());
Rafael Espindola71859c62010-09-16 19:46:31 +0000809 MCSectionData &ShstrtabSD = Asm.getOrCreateSectionData(*ShstrtabSection);
810 ShstrtabSD.setAlignment(1);
Rafael Espindola71859c62010-09-16 19:46:31 +0000811
Rafael Espindola4283f4b2010-11-10 19:05:07 +0000812 const MCSectionELF *SymtabSection =
Rafael Espindola7be2c332010-10-31 00:16:26 +0000813 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0,
814 SectionKind::getReadOnly(),
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000815 EntrySize, "");
Matt Fleming3565a062010-08-16 18:57:57 +0000816 MCSectionData &SymtabSD = Asm.getOrCreateSectionData(*SymtabSection);
Rafael Espindolabff66a82010-12-18 03:27:34 +0000817 SymtabSD.setAlignment(is64Bit() ? 8 : 4);
Rafael Espindola7be2c332010-10-31 00:16:26 +0000818
819 MCSectionData *SymtabShndxSD = NULL;
820
821 if (NeedsSymtabShndx) {
Rafael Espindola4283f4b2010-11-10 19:05:07 +0000822 const MCSectionELF *SymtabShndxSection =
Rafael Espindola7be2c332010-10-31 00:16:26 +0000823 Ctx.getELFSection(".symtab_shndx", ELF::SHT_SYMTAB_SHNDX, 0,
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000824 SectionKind::getReadOnly(), 4, "");
Rafael Espindola7be2c332010-10-31 00:16:26 +0000825 SymtabShndxSD = &Asm.getOrCreateSectionData(*SymtabShndxSection);
826 SymtabShndxSD->setAlignment(4);
827 }
Matt Fleming3565a062010-08-16 18:57:57 +0000828
Rafael Espindola7c18fa82011-03-20 18:44:20 +0000829 const MCSectionELF *StrtabSection;
Matt Fleming3565a062010-08-16 18:57:57 +0000830 StrtabSection = Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0,
Rafael Espindola3f2d13c2010-11-11 03:40:25 +0000831 SectionKind::getReadOnly());
Matt Fleming3565a062010-08-16 18:57:57 +0000832 MCSectionData &StrtabSD = Asm.getOrCreateSectionData(*StrtabSection);
833 StrtabSD.setAlignment(1);
Matt Fleming3565a062010-08-16 18:57:57 +0000834
Rafael Espindola7c18fa82011-03-20 18:44:20 +0000835 ComputeIndexMap(Asm, SectionIndexMap, RelMap);
836
837 ShstrtabIndex = SectionIndexMap.lookup(ShstrtabSection);
838 SymbolTableIndex = SectionIndexMap.lookup(SymtabSection);
839 StringTableIndex = SectionIndexMap.lookup(StrtabSection);
Rafael Espindola71859c62010-09-16 19:46:31 +0000840
841 // Symbol table
842 F = new MCDataFragment(&SymtabSD);
Rafael Espindola7be2c332010-10-31 00:16:26 +0000843 MCDataFragment *ShndxF = NULL;
844 if (NeedsSymtabShndx) {
845 ShndxF = new MCDataFragment(SymtabShndxSD);
Rafael Espindola7be2c332010-10-31 00:16:26 +0000846 }
Rafael Espindola4beee3d2010-11-10 22:16:43 +0000847 WriteSymbolTable(F, ShndxF, Asm, Layout, SectionIndexMap);
Rafael Espindola71859c62010-09-16 19:46:31 +0000848
Matt Fleming3565a062010-08-16 18:57:57 +0000849 F = new MCDataFragment(&StrtabSD);
850 F->getContents().append(StringTable.begin(), StringTable.end());
Matt Fleming3565a062010-08-16 18:57:57 +0000851
Matt Fleming3565a062010-08-16 18:57:57 +0000852 F = new MCDataFragment(&ShstrtabSD);
853
Rafael Espindolad5321da2011-04-07 23:21:52 +0000854 std::vector<const MCSectionELF*> Sections;
855 for (MCAssembler::const_iterator it = Asm.begin(),
856 ie = Asm.end(); it != ie; ++it) {
857 const MCSectionELF &Section =
858 static_cast<const MCSectionELF&>(it->getSection());
859 Sections.push_back(&Section);
860 }
861 array_pod_sort(Sections.begin(), Sections.end(), compareBySuffix);
862
Matt Fleming3565a062010-08-16 18:57:57 +0000863 // Section header string table.
864 //
865 // The first entry of a string table holds a null character so skip
866 // section 0.
867 uint64_t Index = 1;
868 F->getContents() += '\x00';
869
Rafael Espindolad5321da2011-04-07 23:21:52 +0000870 for (unsigned int I = 0, E = Sections.size(); I != E; ++I) {
871 const MCSectionELF &Section = *Sections[I];
Matt Fleming3565a062010-08-16 18:57:57 +0000872
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000873 StringRef Name = Section.getSectionName();
Rafael Espindolad5321da2011-04-07 23:21:52 +0000874 if (I != 0) {
875 StringRef PreviousName = Sections[I - 1]->getSectionName();
876 if (PreviousName.endswith(Name)) {
877 SectionStringTableIndex[&Section] = Index - Name.size() - 1;
878 continue;
879 }
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000880 }
Matt Fleming3565a062010-08-16 18:57:57 +0000881 // Remember the index into the string table so we can write it
882 // into the sh_name field of the section header table.
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000883 SectionStringTableIndex[&Section] = Index;
Matt Fleming3565a062010-08-16 18:57:57 +0000884
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000885 Index += Name.size() + 1;
886 F->getContents() += Name;
Matt Fleming3565a062010-08-16 18:57:57 +0000887 F->getContents() += '\x00';
888 }
Rafael Espindola70703872010-09-30 02:22:20 +0000889}
890
Rafael Espindola96aa78c2011-01-23 17:55:27 +0000891void ELFObjectWriter::CreateIndexedSections(MCAssembler &Asm,
892 MCAsmLayout &Layout,
893 GroupMapTy &GroupMap,
Rafael Espindola7c18fa82011-03-20 18:44:20 +0000894 RevGroupMapTy &RevGroupMap,
895 SectionIndexMapTy &SectionIndexMap,
896 const RelMapTy &RelMap) {
Rafael Espindola96aa78c2011-01-23 17:55:27 +0000897 // Create the .note.GNU-stack section if needed.
898 MCContext &Ctx = Asm.getContext();
899 if (Asm.getNoExecStack()) {
900 const MCSectionELF *GnuStackSection =
901 Ctx.getELFSection(".note.GNU-stack", ELF::SHT_PROGBITS, 0,
902 SectionKind::getReadOnly());
903 Asm.getOrCreateSectionData(*GnuStackSection);
904 }
905
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000906 // Build the groups
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000907 for (MCAssembler::const_iterator it = Asm.begin(), ie = Asm.end();
908 it != ie; ++it) {
909 const MCSectionELF &Section =
910 static_cast<const MCSectionELF&>(it->getSection());
Rafael Espindola1c130262011-01-23 04:43:11 +0000911 if (!(Section.getFlags() & ELF::SHF_GROUP))
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000912 continue;
913
914 const MCSymbol *SignatureSymbol = Section.getGroup();
915 Asm.getOrCreateSymbolData(*SignatureSymbol);
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000916 const MCSectionELF *&Group = RevGroupMap[SignatureSymbol];
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000917 if (!Group) {
Rafael Espindola96aa78c2011-01-23 17:55:27 +0000918 Group = Ctx.CreateELFGroupSection();
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000919 MCSectionData &Data = Asm.getOrCreateSectionData(*Group);
920 Data.setAlignment(4);
921 MCDataFragment *F = new MCDataFragment(&Data);
922 String32(*F, ELF::GRP_COMDAT);
923 }
924 GroupMap[Group] = SignatureSymbol;
925 }
926
Rafael Espindola7c18fa82011-03-20 18:44:20 +0000927 ComputeIndexMap(Asm, SectionIndexMap, RelMap);
928
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000929 // Add sections to the groups
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000930 for (MCAssembler::const_iterator it = Asm.begin(), ie = Asm.end();
Rafael Espindola7c18fa82011-03-20 18:44:20 +0000931 it != ie; ++it) {
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000932 const MCSectionELF &Section =
933 static_cast<const MCSectionELF&>(it->getSection());
Rafael Espindola1c130262011-01-23 04:43:11 +0000934 if (!(Section.getFlags() & ELF::SHF_GROUP))
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000935 continue;
Rafael Espindola1f4f9e32010-11-14 04:17:37 +0000936 const MCSectionELF *Group = RevGroupMap[Section.getGroup()];
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000937 MCSectionData &Data = Asm.getOrCreateSectionData(*Group);
938 // FIXME: we could use the previous fragment
939 MCDataFragment *F = new MCDataFragment(&Data);
Rafael Espindola7c18fa82011-03-20 18:44:20 +0000940 unsigned Index = SectionIndexMap.lookup(&Section);
941 String32(*F, Index);
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000942 }
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000943}
944
Daniel Dunbar115a3dd2010-11-13 07:33:40 +0000945void ELFObjectWriter::WriteSection(MCAssembler &Asm,
946 const SectionIndexMapTy &SectionIndexMap,
947 uint32_t GroupSymbolIndex,
948 uint64_t Offset, uint64_t Size,
949 uint64_t Alignment,
950 const MCSectionELF &Section) {
Rafael Espindolac87a94a2010-11-10 23:36:59 +0000951 uint64_t sh_link = 0;
952 uint64_t sh_info = 0;
953
954 switch(Section.getType()) {
955 case ELF::SHT_DYNAMIC:
956 sh_link = SectionStringTableIndex[&Section];
957 sh_info = 0;
958 break;
959
960 case ELF::SHT_REL:
961 case ELF::SHT_RELA: {
962 const MCSectionELF *SymtabSection;
963 const MCSectionELF *InfoSection;
964 SymtabSection = Asm.getContext().getELFSection(".symtab", ELF::SHT_SYMTAB,
965 0,
Rafael Espindola3f2d13c2010-11-11 03:40:25 +0000966 SectionKind::getReadOnly());
Rafael Espindolac87a94a2010-11-10 23:36:59 +0000967 sh_link = SectionIndexMap.lookup(SymtabSection);
968 assert(sh_link && ".symtab not found");
969
970 // Remove ".rel" and ".rela" prefixes.
971 unsigned SecNameLen = (Section.getType() == ELF::SHT_REL) ? 4 : 5;
972 StringRef SectionName = Section.getSectionName().substr(SecNameLen);
973
974 InfoSection = Asm.getContext().getELFSection(SectionName,
975 ELF::SHT_PROGBITS, 0,
Rafael Espindola3f2d13c2010-11-11 03:40:25 +0000976 SectionKind::getReadOnly());
Rafael Espindolac87a94a2010-11-10 23:36:59 +0000977 sh_info = SectionIndexMap.lookup(InfoSection);
978 break;
979 }
980
981 case ELF::SHT_SYMTAB:
982 case ELF::SHT_DYNSYM:
983 sh_link = StringTableIndex;
984 sh_info = LastLocalSymbolIndex;
985 break;
986
987 case ELF::SHT_SYMTAB_SHNDX:
988 sh_link = SymbolTableIndex;
989 break;
990
991 case ELF::SHT_PROGBITS:
992 case ELF::SHT_STRTAB:
993 case ELF::SHT_NOBITS:
Rafael Espindola98976612010-12-26 21:30:59 +0000994 case ELF::SHT_NOTE:
Rafael Espindolac87a94a2010-11-10 23:36:59 +0000995 case ELF::SHT_NULL:
996 case ELF::SHT_ARM_ATTRIBUTES:
Jason W Kim86a97f22011-01-12 00:19:25 +0000997 case ELF::SHT_INIT_ARRAY:
998 case ELF::SHT_FINI_ARRAY:
999 case ELF::SHT_PREINIT_ARRAY:
Rafael Espindola0cf5e3d2011-01-23 05:43:40 +00001000 case ELF::SHT_X86_64_UNWIND:
Rafael Espindolac87a94a2010-11-10 23:36:59 +00001001 // Nothing to do.
1002 break;
1003
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001004 case ELF::SHT_GROUP: {
1005 sh_link = SymbolTableIndex;
1006 sh_info = GroupSymbolIndex;
1007 break;
1008 }
1009
Rafael Espindolac87a94a2010-11-10 23:36:59 +00001010 default:
1011 assert(0 && "FIXME: sh_type value not supported!");
1012 break;
1013 }
1014
1015 WriteSecHdrEntry(SectionStringTableIndex[&Section], Section.getType(),
1016 Section.getFlags(), 0, Offset, Size, sh_link, sh_info,
1017 Alignment, Section.getEntrySize());
1018}
1019
Jan Sjödin2ddfd952011-02-28 21:45:04 +00001020bool ELFObjectWriter::IsELFMetaDataSection(const MCSectionData &SD) {
Rafael Espindolaf8803fe2010-12-06 03:48:09 +00001021 return SD.getOrdinal() == ~UINT32_C(0) &&
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001022 !SD.getSection().isVirtualSection();
1023}
1024
Jan Sjödin2ddfd952011-02-28 21:45:04 +00001025uint64_t ELFObjectWriter::DataSectionSize(const MCSectionData &SD) {
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001026 uint64_t Ret = 0;
1027 for (MCSectionData::const_iterator i = SD.begin(), e = SD.end(); i != e;
1028 ++i) {
1029 const MCFragment &F = *i;
1030 assert(F.getKind() == MCFragment::FT_Data);
1031 Ret += cast<MCDataFragment>(F).getContents().size();
1032 }
1033 return Ret;
1034}
1035
Jan Sjödin2ddfd952011-02-28 21:45:04 +00001036uint64_t ELFObjectWriter::GetSectionFileSize(const MCAsmLayout &Layout,
1037 const MCSectionData &SD) {
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001038 if (IsELFMetaDataSection(SD))
1039 return DataSectionSize(SD);
1040 return Layout.getSectionFileSize(&SD);
1041}
1042
Jan Sjödin2ddfd952011-02-28 21:45:04 +00001043uint64_t ELFObjectWriter::GetSectionAddressSize(const MCAsmLayout &Layout,
1044 const MCSectionData &SD) {
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001045 if (IsELFMetaDataSection(SD))
1046 return DataSectionSize(SD);
Rafael Espindola85f2ecc2010-12-07 00:27:36 +00001047 return Layout.getSectionAddressSize(&SD);
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001048}
1049
Rafael Espindola7c18fa82011-03-20 18:44:20 +00001050void ELFObjectWriter::WriteDataSectionData(MCAssembler &Asm,
1051 const MCAsmLayout &Layout,
1052 const MCSectionELF &Section) {
1053 uint64_t FileOff = OS.tell();
1054 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
1055
1056 uint64_t Padding = OffsetToAlignment(FileOff, SD.getAlignment());
1057 WriteZeros(Padding);
1058 FileOff += Padding;
1059
1060 FileOff += GetSectionFileSize(Layout, SD);
1061
1062 if (IsELFMetaDataSection(SD)) {
1063 for (MCSectionData::const_iterator i = SD.begin(), e = SD.end(); i != e;
1064 ++i) {
1065 const MCFragment &F = *i;
1066 assert(F.getKind() == MCFragment::FT_Data);
1067 WriteBytes(cast<MCDataFragment>(F).getContents().str());
1068 }
1069 } else {
1070 Asm.WriteSectionData(&SD, Layout);
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001071 }
1072}
1073
Rafael Espindola7c18fa82011-03-20 18:44:20 +00001074void ELFObjectWriter::WriteSectionHeader(MCAssembler &Asm,
1075 const GroupMapTy &GroupMap,
1076 const MCAsmLayout &Layout,
1077 const SectionIndexMapTy &SectionIndexMap,
1078 const SectionOffsetMapTy &SectionOffsetMap) {
1079 const unsigned NumSections = Asm.size() + 1;
Matt Fleming3565a062010-08-16 18:57:57 +00001080
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001081 std::vector<const MCSectionELF*> Sections;
Rafael Espindola7c18fa82011-03-20 18:44:20 +00001082 Sections.resize(NumSections - 1);
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001083
1084 for (SectionIndexMapTy::const_iterator i=
1085 SectionIndexMap.begin(), e = SectionIndexMap.end(); i != e; ++i) {
1086 const std::pair<const MCSectionELF*, uint32_t> &p = *i;
Rafael Espindola7c18fa82011-03-20 18:44:20 +00001087 Sections[p.second - 1] = p.first;
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001088 }
1089
Matt Fleming3565a062010-08-16 18:57:57 +00001090 // Null section first.
Rafael Espindola7be2c332010-10-31 00:16:26 +00001091 uint64_t FirstSectionSize =
1092 NumSections >= ELF::SHN_LORESERVE ? NumSections : 0;
1093 uint32_t FirstSectionLink =
1094 ShstrtabIndex >= ELF::SHN_LORESERVE ? ShstrtabIndex : 0;
1095 WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, FirstSectionLink, 0, 0, 0);
Matt Fleming3565a062010-08-16 18:57:57 +00001096
Rafael Espindola7c18fa82011-03-20 18:44:20 +00001097 for (unsigned i = 0; i < NumSections - 1; ++i) {
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001098 const MCSectionELF &Section = *Sections[i];
1099 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
1100 uint32_t GroupSymbolIndex;
1101 if (Section.getType() != ELF::SHT_GROUP)
1102 GroupSymbolIndex = 0;
1103 else
Rafael Espindola7c18fa82011-03-20 18:44:20 +00001104 GroupSymbolIndex = getSymbolIndexInSymbolTable(Asm,
1105 GroupMap.lookup(&Section));
Matt Fleming3565a062010-08-16 18:57:57 +00001106
Rafael Espindola85f2ecc2010-12-07 00:27:36 +00001107 uint64_t Size = GetSectionAddressSize(Layout, SD);
Rafael Espindola6db8a9f2010-12-02 03:09:06 +00001108
Rafael Espindola2ff9e832010-11-11 18:13:52 +00001109 WriteSection(Asm, SectionIndexMap, GroupSymbolIndex,
Rafael Espindola7c18fa82011-03-20 18:44:20 +00001110 SectionOffsetMap.lookup(&Section), Size,
Rafael Espindolac87a94a2010-11-10 23:36:59 +00001111 SD.getAlignment(), Section);
Matt Fleming3565a062010-08-16 18:57:57 +00001112 }
1113}
1114
Rafael Espindola7c18fa82011-03-20 18:44:20 +00001115void ELFObjectWriter::ComputeSectionOrder(MCAssembler &Asm,
1116 std::vector<const MCSectionELF*> &Sections) {
1117 for (MCAssembler::iterator it = Asm.begin(),
1118 ie = Asm.end(); it != ie; ++it) {
1119 const MCSectionELF &Section =
1120 static_cast<const MCSectionELF &>(it->getSection());
1121 if (Section.getType() == ELF::SHT_GROUP)
1122 Sections.push_back(&Section);
1123 }
1124
1125 for (MCAssembler::iterator it = Asm.begin(),
1126 ie = Asm.end(); it != ie; ++it) {
1127 const MCSectionELF &Section =
1128 static_cast<const MCSectionELF &>(it->getSection());
1129 if (Section.getType() != ELF::SHT_GROUP &&
1130 Section.getType() != ELF::SHT_REL &&
1131 Section.getType() != ELF::SHT_RELA)
1132 Sections.push_back(&Section);
1133 }
1134
1135 for (MCAssembler::iterator it = Asm.begin(),
1136 ie = Asm.end(); it != ie; ++it) {
1137 const MCSectionELF &Section =
1138 static_cast<const MCSectionELF &>(it->getSection());
1139 if (Section.getType() == ELF::SHT_REL ||
1140 Section.getType() == ELF::SHT_RELA)
1141 Sections.push_back(&Section);
1142 }
1143}
1144
1145void ELFObjectWriter::WriteObject(MCAssembler &Asm,
1146 const MCAsmLayout &Layout) {
1147 GroupMapTy GroupMap;
1148 RevGroupMapTy RevGroupMap;
1149 SectionIndexMapTy SectionIndexMap;
1150
1151 unsigned NumUserSections = Asm.size();
1152
1153 DenseMap<const MCSectionELF*, const MCSectionELF*> RelMap;
1154 CreateRelocationSections(Asm, const_cast<MCAsmLayout&>(Layout), RelMap);
1155
1156 const unsigned NumUserAndRelocSections = Asm.size();
1157 CreateIndexedSections(Asm, const_cast<MCAsmLayout&>(Layout), GroupMap,
1158 RevGroupMap, SectionIndexMap, RelMap);
1159 const unsigned AllSections = Asm.size();
1160 const unsigned NumIndexedSections = AllSections - NumUserAndRelocSections;
1161
1162 unsigned NumRegularSections = NumUserSections + NumIndexedSections;
1163
1164 // Compute symbol table information.
1165 ComputeSymbolTable(Asm, SectionIndexMap, RevGroupMap, NumRegularSections);
1166
1167
1168 WriteRelocations(Asm, const_cast<MCAsmLayout&>(Layout), RelMap);
1169
1170 CreateMetadataSections(const_cast<MCAssembler&>(Asm),
1171 const_cast<MCAsmLayout&>(Layout),
1172 SectionIndexMap,
1173 RelMap);
1174
1175 uint64_t NaturalAlignment = is64Bit() ? 8 : 4;
1176 uint64_t HeaderSize = is64Bit() ? sizeof(ELF::Elf64_Ehdr) :
1177 sizeof(ELF::Elf32_Ehdr);
1178 uint64_t FileOff = HeaderSize;
1179
1180 std::vector<const MCSectionELF*> Sections;
1181 ComputeSectionOrder(Asm, Sections);
1182 unsigned NumSections = Sections.size();
1183 SectionOffsetMapTy SectionOffsetMap;
1184 for (unsigned i = 0; i < NumRegularSections + 1; ++i) {
1185 const MCSectionELF &Section = *Sections[i];
1186 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
1187
1188 FileOff = RoundUpToAlignment(FileOff, SD.getAlignment());
1189
1190 // Remember the offset into the file for this section.
1191 SectionOffsetMap[&Section] = FileOff;
1192
1193 // Get the size of the section in the output file (including padding).
1194 FileOff += GetSectionFileSize(Layout, SD);
1195 }
1196
1197 FileOff = RoundUpToAlignment(FileOff, NaturalAlignment);
1198
1199 const unsigned SectionHeaderOffset = FileOff - HeaderSize;
1200
1201 uint64_t SectionHeaderEntrySize = is64Bit() ?
1202 sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr);
1203 FileOff += (NumSections + 1) * SectionHeaderEntrySize;
1204
1205 for (unsigned i = NumRegularSections + 1; i < NumSections; ++i) {
1206 const MCSectionELF &Section = *Sections[i];
1207 const MCSectionData &SD = Asm.getOrCreateSectionData(Section);
1208
1209 FileOff = RoundUpToAlignment(FileOff, SD.getAlignment());
1210
1211 // Remember the offset into the file for this section.
1212 SectionOffsetMap[&Section] = FileOff;
1213
1214 // Get the size of the section in the output file (including padding).
1215 FileOff += GetSectionFileSize(Layout, SD);
1216 }
1217
1218 // Write out the ELF header ...
1219 WriteHeader(SectionHeaderOffset, NumSections + 1);
1220
1221 // ... then the regular sections ...
1222 // + because of .shstrtab
1223 for (unsigned i = 0; i < NumRegularSections + 1; ++i)
1224 WriteDataSectionData(Asm, Layout, *Sections[i]);
1225
1226 FileOff = OS.tell();
1227 uint64_t Padding = OffsetToAlignment(FileOff, NaturalAlignment);
1228 WriteZeros(Padding);
1229
1230 // ... then the section header table ...
1231 WriteSectionHeader(Asm, GroupMap, Layout, SectionIndexMap,
1232 SectionOffsetMap);
1233
1234 FileOff = OS.tell();
1235
1236 // ... and then the remainting sections ...
1237 for (unsigned i = NumRegularSections + 1; i < NumSections; ++i)
1238 WriteDataSectionData(Asm, Layout, *Sections[i]);
1239}
1240
Eli Friedman78c1e172011-03-03 07:24:36 +00001241bool
1242ELFObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
1243 const MCSymbolData &DataA,
1244 const MCFragment &FB,
1245 bool InSet,
1246 bool IsPCRel) const {
1247 if (DataA.getFlags() & ELF_STB_Weak)
1248 return false;
1249 return MCObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(
1250 Asm, DataA, FB,InSet, IsPCRel);
1251}
1252
Rafael Espindola6024c972010-12-17 17:45:22 +00001253MCObjectWriter *llvm::createELFObjectWriter(MCELFObjectTargetWriter *MOTW,
1254 raw_ostream &OS,
Rafael Espindolabff66a82010-12-18 03:27:34 +00001255 bool IsLittleEndian) {
1256 switch (MOTW->getEMachine()) {
Jason W Kimd3443e92010-11-15 16:18:39 +00001257 case ELF::EM_386:
1258 case ELF::EM_X86_64:
Rafael Espindolabff66a82010-12-18 03:27:34 +00001259 return new X86ELFObjectWriter(MOTW, OS, IsLittleEndian); break;
Jason W Kimd3443e92010-11-15 16:18:39 +00001260 case ELF::EM_ARM:
Rafael Espindolabff66a82010-12-18 03:27:34 +00001261 return new ARMELFObjectWriter(MOTW, OS, IsLittleEndian); break;
Wesley Peck4b047132010-11-21 22:06:28 +00001262 case ELF::EM_MBLAZE:
Rafael Espindolabff66a82010-12-18 03:27:34 +00001263 return new MBlazeELFObjectWriter(MOTW, OS, IsLittleEndian); break;
Roman Divacky2c0d69f2011-08-02 15:51:38 +00001264 case ELF::EM_PPC:
1265 case ELF::EM_PPC64:
1266 return new PPCELFObjectWriter(MOTW, OS, IsLittleEndian); break;
Benjamin Kramer32858772010-11-15 19:20:50 +00001267 default: llvm_unreachable("Unsupported architecture"); break;
Jason W Kimd3443e92010-11-15 16:18:39 +00001268 }
1269}
1270
1271
1272/// START OF SUBCLASSES for ELFObjectWriter
1273//===- ARMELFObjectWriter -------------------------------------------===//
1274
Rafael Espindola31f35782010-12-17 18:01:31 +00001275ARMELFObjectWriter::ARMELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindolabff66a82010-12-18 03:27:34 +00001276 raw_ostream &_OS,
1277 bool IsLittleEndian)
1278 : ELFObjectWriter(MOTW, _OS, IsLittleEndian)
Jason W Kimd3443e92010-11-15 16:18:39 +00001279{}
1280
1281ARMELFObjectWriter::~ARMELFObjectWriter()
1282{}
1283
Jason W Kim2d7a53a2011-02-04 21:41:11 +00001284// FIXME: get the real EABI Version from the Triple.
1285void ARMELFObjectWriter::WriteEFlags() {
1286 Write32(ELF::EF_ARM_EABIMASK & DefaultEABIVersion);
1287}
1288
Jason W Kim953a2a32011-02-07 01:11:15 +00001289// In ARM, _MergedGlobals and other most symbols get emitted directly.
1290// I.e. not as an offset to a section symbol.
Jason W Kime964d112011-05-11 22:53:06 +00001291// This code is an approximation of what ARM/gcc does.
1292
1293STATISTIC(PCRelCount, "Total number of PIC Relocations");
1294STATISTIC(NonPCRelCount, "Total number of non-PIC relocations");
Jason W Kim953a2a32011-02-07 01:11:15 +00001295
1296const MCSymbol *ARMELFObjectWriter::ExplicitRelSym(const MCAssembler &Asm,
1297 const MCValue &Target,
1298 const MCFragment &F,
Jason W Kime964d112011-05-11 22:53:06 +00001299 const MCFixup &Fixup,
1300 bool IsPCRel) const {
Jason W Kim953a2a32011-02-07 01:11:15 +00001301 const MCSymbol &Symbol = Target.getSymA()->getSymbol();
1302 bool EmitThisSym = false;
1303
Jason W Kime964d112011-05-11 22:53:06 +00001304 const MCSectionELF &Section =
1305 static_cast<const MCSectionELF&>(Symbol.getSection());
Jason W Kime964d112011-05-11 22:53:06 +00001306 bool InNormalSection = true;
1307 unsigned RelocType = 0;
1308 RelocType = GetRelocTypeInner(Target, Fixup, IsPCRel);
1309
Matt Beaumont-Gay6dcd4132011-05-11 23:34:51 +00001310 DEBUG(
1311 const MCSymbolRefExpr::VariantKind Kind = Target.getSymA()->getKind();
1312 MCSymbolRefExpr::VariantKind Kind2;
1313 Kind2 = Target.getSymB() ? Target.getSymB()->getKind() :
1314 MCSymbolRefExpr::VK_None;
1315 dbgs() << "considering symbol "
Jason W Kime964d112011-05-11 22:53:06 +00001316 << Section.getSectionName() << "/"
1317 << Symbol.getName() << "/"
1318 << " Rel:" << (unsigned)RelocType
1319 << " Kind: " << (int)Kind << "/" << (int)Kind2
1320 << " Tmp:"
1321 << Symbol.isAbsolute() << "/" << Symbol.isDefined() << "/"
1322 << Symbol.isVariable() << "/" << Symbol.isTemporary()
1323 << " Counts:" << PCRelCount << "/" << NonPCRelCount << "\n");
1324
Jason W Kimbebd44a2011-06-09 19:13:45 +00001325 if (IsPCRel) { ++PCRelCount;
Jason W Kime964d112011-05-11 22:53:06 +00001326 switch (RelocType) {
1327 default:
1328 // Most relocation types are emitted as explicit symbols
1329 InNormalSection =
1330 StringSwitch<bool>(Section.getSectionName())
1331 .Case(".data.rel.ro.local", false)
1332 .Case(".data.rel", false)
1333 .Case(".bss", false)
1334 .Default(true);
1335 EmitThisSym = true;
1336 break;
1337 case ELF::R_ARM_ABS32:
1338 // But things get strange with R_ARM_ABS32
1339 // In this case, most things that go in .rodata show up
1340 // as section relative relocations
1341 InNormalSection =
1342 StringSwitch<bool>(Section.getSectionName())
1343 .Case(".data.rel.ro.local", false)
1344 .Case(".data.rel", false)
1345 .Case(".rodata", false)
1346 .Case(".bss", false)
1347 .Default(true);
1348 EmitThisSym = false;
1349 break;
1350 }
Jason W Kim953a2a32011-02-07 01:11:15 +00001351 } else {
Jason W Kime964d112011-05-11 22:53:06 +00001352 NonPCRelCount++;
1353 InNormalSection =
1354 StringSwitch<bool>(Section.getSectionName())
1355 .Case(".data.rel.ro.local", false)
1356 .Case(".rodata", false)
1357 .Case(".data.rel", false)
1358 .Case(".bss", false)
1359 .Default(true);
1360
1361 switch (RelocType) {
1362 default: EmitThisSym = true; break;
1363 case ELF::R_ARM_ABS32: EmitThisSym = false; break;
1364 }
Jason W Kim953a2a32011-02-07 01:11:15 +00001365 }
Jason W Kime964d112011-05-11 22:53:06 +00001366
Jason W Kim953a2a32011-02-07 01:11:15 +00001367 if (EmitThisSym)
1368 return &Symbol;
Jason W Kime964d112011-05-11 22:53:06 +00001369 if (! Symbol.isTemporary() && InNormalSection) {
Jason W Kim953a2a32011-02-07 01:11:15 +00001370 return &Symbol;
Jason W Kime964d112011-05-11 22:53:06 +00001371 }
Jason W Kim953a2a32011-02-07 01:11:15 +00001372 return NULL;
1373}
1374
Jason W Kime964d112011-05-11 22:53:06 +00001375// Need to examine the Fixup when determining whether to
1376// emit the relocation as an explicit symbol or as a section relative
1377// offset
Jason W Kim85fed5e2010-12-01 02:40:06 +00001378unsigned ARMELFObjectWriter::GetRelocType(const MCValue &Target,
1379 const MCFixup &Fixup,
Jason W Kim56a39902010-12-06 21:57:34 +00001380 bool IsPCRel,
1381 bool IsRelocWithSymbol,
1382 int64_t Addend) {
Jason W Kim85fed5e2010-12-01 02:40:06 +00001383 MCSymbolRefExpr::VariantKind Modifier = Target.isAbsolute() ?
1384 MCSymbolRefExpr::VK_None : Target.getSymA()->getKind();
1385
Jason W Kime964d112011-05-11 22:53:06 +00001386 unsigned Type = GetRelocTypeInner(Target, Fixup, IsPCRel);
1387
1388 if (RelocNeedsGOT(Modifier))
1389 NeedsGOT = true;
1390
1391 return Type;
1392}
1393
1394unsigned ARMELFObjectWriter::GetRelocTypeInner(const MCValue &Target,
1395 const MCFixup &Fixup,
1396 bool IsPCRel) const {
1397 MCSymbolRefExpr::VariantKind Modifier = Target.isAbsolute() ?
1398 MCSymbolRefExpr::VK_None : Target.getSymA()->getKind();
1399
Jason W Kima0871e72010-12-08 23:14:44 +00001400 unsigned Type = 0;
Jason W Kim85fed5e2010-12-01 02:40:06 +00001401 if (IsPCRel) {
Jason W Kim85fed5e2010-12-01 02:40:06 +00001402 switch ((unsigned)Fixup.getKind()) {
1403 default: assert(0 && "Unimplemented");
Jason W Kim3fa4c1d2010-12-13 23:16:07 +00001404 case FK_Data_4:
1405 switch (Modifier) {
1406 default: llvm_unreachable("Unsupported Modifier");
1407 case MCSymbolRefExpr::VK_None:
Jason W Kime964d112011-05-11 22:53:06 +00001408 Type = ELF::R_ARM_REL32;
Jason W Kim1d866172011-01-13 00:07:51 +00001409 break;
Jason W Kim3fa4c1d2010-12-13 23:16:07 +00001410 case MCSymbolRefExpr::VK_ARM_TLSGD:
Jason W Kim1d866172011-01-13 00:07:51 +00001411 assert(0 && "unimplemented");
1412 break;
Jason W Kim3fa4c1d2010-12-13 23:16:07 +00001413 case MCSymbolRefExpr::VK_ARM_GOTTPOFF:
1414 Type = ELF::R_ARM_TLS_IE32;
Jason W Kim1d866172011-01-13 00:07:51 +00001415 break;
1416 }
1417 break;
Jason W Kim685c3502011-02-04 19:47:15 +00001418 case ARM::fixup_arm_uncondbranch:
Jason W Kim3fa4c1d2010-12-13 23:16:07 +00001419 switch (Modifier) {
1420 case MCSymbolRefExpr::VK_ARM_PLT:
Jason W Kim1d866172011-01-13 00:07:51 +00001421 Type = ELF::R_ARM_PLT32;
1422 break;
Jason W Kim3fa4c1d2010-12-13 23:16:07 +00001423 default:
Jason W Kim1d866172011-01-13 00:07:51 +00001424 Type = ELF::R_ARM_CALL;
1425 break;
1426 }
1427 break;
Jason W Kim685c3502011-02-04 19:47:15 +00001428 case ARM::fixup_arm_condbranch:
1429 Type = ELF::R_ARM_JUMP24;
1430 break;
Jason W Kim86a97f22011-01-12 00:19:25 +00001431 case ARM::fixup_arm_movt_hi16:
1432 case ARM::fixup_arm_movt_hi16_pcrel:
Jason W Kim1d866172011-01-13 00:07:51 +00001433 Type = ELF::R_ARM_MOVT_PREL;
1434 break;
Jason W Kim86a97f22011-01-12 00:19:25 +00001435 case ARM::fixup_arm_movw_lo16:
1436 case ARM::fixup_arm_movw_lo16_pcrel:
Jason W Kim1d866172011-01-13 00:07:51 +00001437 Type = ELF::R_ARM_MOVW_PREL_NC;
1438 break;
Evan Chengf3eb3bb2011-01-14 02:38:49 +00001439 case ARM::fixup_t2_movt_hi16:
1440 case ARM::fixup_t2_movt_hi16_pcrel:
1441 Type = ELF::R_ARM_THM_MOVT_PREL;
1442 break;
1443 case ARM::fixup_t2_movw_lo16:
1444 case ARM::fixup_t2_movw_lo16_pcrel:
1445 Type = ELF::R_ARM_THM_MOVW_PREL_NC;
1446 break;
Rafael Espindola298c8e12011-05-20 20:01:01 +00001447 case ARM::fixup_arm_thumb_bl:
1448 case ARM::fixup_arm_thumb_blx:
1449 switch (Modifier) {
1450 case MCSymbolRefExpr::VK_ARM_PLT:
1451 Type = ELF::R_ARM_THM_CALL;
1452 break;
1453 default:
1454 Type = ELF::R_ARM_NONE;
1455 break;
1456 }
1457 break;
Jason W Kim85fed5e2010-12-01 02:40:06 +00001458 }
1459 } else {
1460 switch ((unsigned)Fixup.getKind()) {
1461 default: llvm_unreachable("invalid fixup kind!");
Jason W Kima0871e72010-12-08 23:14:44 +00001462 case FK_Data_4:
1463 switch (Modifier) {
Jason W Kim3fa4c1d2010-12-13 23:16:07 +00001464 default: llvm_unreachable("Unsupported Modifier"); break;
1465 case MCSymbolRefExpr::VK_ARM_GOT:
Jason W Kim1d866172011-01-13 00:07:51 +00001466 Type = ELF::R_ARM_GOT_BREL;
1467 break;
Jason W Kim3fa4c1d2010-12-13 23:16:07 +00001468 case MCSymbolRefExpr::VK_ARM_TLSGD:
Jason W Kim1d866172011-01-13 00:07:51 +00001469 Type = ELF::R_ARM_TLS_GD32;
1470 break;
Jason W Kimf13743b2010-12-16 03:12:17 +00001471 case MCSymbolRefExpr::VK_ARM_TPOFF:
Jason W Kim1d866172011-01-13 00:07:51 +00001472 Type = ELF::R_ARM_TLS_LE32;
1473 break;
Jason W Kima0871e72010-12-08 23:14:44 +00001474 case MCSymbolRefExpr::VK_ARM_GOTTPOFF:
Jason W Kim1d866172011-01-13 00:07:51 +00001475 Type = ELF::R_ARM_TLS_IE32;
1476 break;
Jason W Kimf13743b2010-12-16 03:12:17 +00001477 case MCSymbolRefExpr::VK_None:
Jason W Kim1d866172011-01-13 00:07:51 +00001478 Type = ELF::R_ARM_ABS32;
1479 break;
Jason W Kim3fa4c1d2010-12-13 23:16:07 +00001480 case MCSymbolRefExpr::VK_ARM_GOTOFF:
Jason W Kim1d866172011-01-13 00:07:51 +00001481 Type = ELF::R_ARM_GOTOFF32;
1482 break;
1483 }
1484 break;
Jim Grosbachdff84b02010-12-02 00:28:45 +00001485 case ARM::fixup_arm_ldst_pcrel_12:
Owen Anderson9d63d902010-12-01 19:18:46 +00001486 case ARM::fixup_arm_pcrel_10:
Jim Grosbachdff84b02010-12-02 00:28:45 +00001487 case ARM::fixup_arm_adr_pcrel_12:
Jim Grosbach662a8162010-12-06 23:57:07 +00001488 case ARM::fixup_arm_thumb_bl:
Jim Grosbachb492a7c2010-12-09 19:50:12 +00001489 case ARM::fixup_arm_thumb_cb:
Bill Wendlingb8958b02010-12-08 01:57:09 +00001490 case ARM::fixup_arm_thumb_cp:
Jim Grosbache2467172010-12-10 18:21:33 +00001491 case ARM::fixup_arm_thumb_br:
Jason W Kim1d866172011-01-13 00:07:51 +00001492 assert(0 && "Unimplemented");
1493 break;
Jason W Kim685c3502011-02-04 19:47:15 +00001494 case ARM::fixup_arm_uncondbranch:
Jason W Kim1d866172011-01-13 00:07:51 +00001495 Type = ELF::R_ARM_CALL;
1496 break;
Jason W Kim685c3502011-02-04 19:47:15 +00001497 case ARM::fixup_arm_condbranch:
1498 Type = ELF::R_ARM_JUMP24;
1499 break;
Jason W Kim1d866172011-01-13 00:07:51 +00001500 case ARM::fixup_arm_movt_hi16:
1501 Type = ELF::R_ARM_MOVT_ABS;
1502 break;
Jason W Kim85fed5e2010-12-01 02:40:06 +00001503 case ARM::fixup_arm_movw_lo16:
Jason W Kim1d866172011-01-13 00:07:51 +00001504 Type = ELF::R_ARM_MOVW_ABS_NC;
1505 break;
Evan Chengf3eb3bb2011-01-14 02:38:49 +00001506 case ARM::fixup_t2_movt_hi16:
1507 Type = ELF::R_ARM_THM_MOVT_ABS;
1508 break;
1509 case ARM::fixup_t2_movw_lo16:
1510 Type = ELF::R_ARM_THM_MOVW_ABS_NC;
1511 break;
Jason W Kim85fed5e2010-12-01 02:40:06 +00001512 }
1513 }
1514
Jason W Kima0871e72010-12-08 23:14:44 +00001515 return Type;
Jason W Kim85fed5e2010-12-01 02:40:06 +00001516}
1517
Roman Divacky2c0d69f2011-08-02 15:51:38 +00001518//===- PPCELFObjectWriter -------------------------------------------===//
1519
1520PPCELFObjectWriter::PPCELFObjectWriter(MCELFObjectTargetWriter *MOTW,
1521 raw_ostream &_OS,
1522 bool IsLittleEndian)
1523 : ELFObjectWriter(MOTW, _OS, IsLittleEndian) {
1524}
1525
1526PPCELFObjectWriter::~PPCELFObjectWriter() {
1527}
1528
1529unsigned PPCELFObjectWriter::GetRelocType(const MCValue &Target,
1530 const MCFixup &Fixup,
1531 bool IsPCRel,
1532 bool IsRelocWithSymbol,
1533 int64_t Addend) {
1534 // determine the type of the relocation
1535 unsigned Type;
1536 if (IsPCRel) {
1537 switch ((unsigned)Fixup.getKind()) {
1538 default:
1539 llvm_unreachable("Unimplemented");
1540 case PPC::fixup_ppc_br24:
1541 Type = ELF::R_PPC_REL24;
1542 break;
1543 case FK_PCRel_4:
1544 Type = ELF::R_PPC_REL32;
1545 break;
1546 }
1547 } else {
1548 switch ((unsigned)Fixup.getKind()) {
1549 default: llvm_unreachable("invalid fixup kind!");
1550 case PPC::fixup_ppc_br24:
1551 Type = ELF::R_PPC_ADDR24;
1552 break;
1553 case PPC::fixup_ppc_brcond14:
1554 Type = ELF::R_PPC_ADDR14_BRTAKEN; // XXX: or BRNTAKEN?_
1555 break;
1556 case PPC::fixup_ppc_ha16:
1557 Type = ELF::R_PPC_ADDR16_HA;
1558 break;
1559 case PPC::fixup_ppc_lo16:
1560 Type = ELF::R_PPC_ADDR16_LO;
1561 break;
1562 case PPC::fixup_ppc_lo14:
1563 Type = ELF::R_PPC_ADDR14;
1564 break;
1565 case FK_Data_4:
1566 Type = ELF::R_PPC_ADDR32;
1567 break;
1568 case FK_Data_2:
1569 Type = ELF::R_PPC_ADDR16;
1570 break;
1571 }
1572 }
1573 return Type;
1574}
1575
Roman Divacky2a66cea2011-08-04 19:08:19 +00001576void
1577PPCELFObjectWriter::adjustFixupOffset(const MCFixup &Fixup, uint64_t &RelocOffset) {
1578 switch ((unsigned)Fixup.getKind()) {
1579 case PPC::fixup_ppc_ha16:
1580 case PPC::fixup_ppc_lo16:
1581 RelocOffset += 2;
1582 break;
1583 default:
1584 break;
1585 }
1586}
1587
Wesley Peck4b047132010-11-21 22:06:28 +00001588//===- MBlazeELFObjectWriter -------------------------------------------===//
Jason W Kimd3443e92010-11-15 16:18:39 +00001589
Rafael Espindola31f35782010-12-17 18:01:31 +00001590MBlazeELFObjectWriter::MBlazeELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindolabff66a82010-12-18 03:27:34 +00001591 raw_ostream &_OS,
1592 bool IsLittleEndian)
1593 : ELFObjectWriter(MOTW, _OS, IsLittleEndian) {
Wesley Peck4b047132010-11-21 22:06:28 +00001594}
1595
1596MBlazeELFObjectWriter::~MBlazeELFObjectWriter() {
1597}
1598
Jason W Kim56a39902010-12-06 21:57:34 +00001599unsigned MBlazeELFObjectWriter::GetRelocType(const MCValue &Target,
Wesley Peck4b047132010-11-21 22:06:28 +00001600 const MCFixup &Fixup,
Jason W Kim56a39902010-12-06 21:57:34 +00001601 bool IsPCRel,
1602 bool IsRelocWithSymbol,
1603 int64_t Addend) {
Wesley Peck4b047132010-11-21 22:06:28 +00001604 // determine the type of the relocation
1605 unsigned Type;
1606 if (IsPCRel) {
1607 switch ((unsigned)Fixup.getKind()) {
1608 default:
1609 llvm_unreachable("Unimplemented");
Rafael Espindolae04ed7e2010-11-28 14:17:56 +00001610 case FK_PCRel_4:
Wesley Peck4b047132010-11-21 22:06:28 +00001611 Type = ELF::R_MICROBLAZE_64_PCREL;
1612 break;
Rafael Espindolae04ed7e2010-11-28 14:17:56 +00001613 case FK_PCRel_2:
Wesley Peck4b047132010-11-21 22:06:28 +00001614 Type = ELF::R_MICROBLAZE_32_PCREL;
1615 break;
1616 }
1617 } else {
1618 switch ((unsigned)Fixup.getKind()) {
1619 default: llvm_unreachable("invalid fixup kind!");
1620 case FK_Data_4:
Jason W Kim56a39902010-12-06 21:57:34 +00001621 Type = ((IsRelocWithSymbol || Addend !=0)
1622 ? ELF::R_MICROBLAZE_32
1623 : ELF::R_MICROBLAZE_64);
Wesley Peck4b047132010-11-21 22:06:28 +00001624 break;
1625 case FK_Data_2:
1626 Type = ELF::R_MICROBLAZE_32;
1627 break;
1628 }
1629 }
Jason W Kim56a39902010-12-06 21:57:34 +00001630 return Type;
Wesley Peck4b047132010-11-21 22:06:28 +00001631}
Jason W Kimd3443e92010-11-15 16:18:39 +00001632
1633//===- X86ELFObjectWriter -------------------------------------------===//
1634
1635
Rafael Espindola31f35782010-12-17 18:01:31 +00001636X86ELFObjectWriter::X86ELFObjectWriter(MCELFObjectTargetWriter *MOTW,
Rafael Espindolabff66a82010-12-18 03:27:34 +00001637 raw_ostream &_OS,
1638 bool IsLittleEndian)
1639 : ELFObjectWriter(MOTW, _OS, IsLittleEndian)
Jason W Kimd3443e92010-11-15 16:18:39 +00001640{}
1641
1642X86ELFObjectWriter::~X86ELFObjectWriter()
1643{}
1644
Jason W Kim56a39902010-12-06 21:57:34 +00001645unsigned X86ELFObjectWriter::GetRelocType(const MCValue &Target,
1646 const MCFixup &Fixup,
1647 bool IsPCRel,
1648 bool IsRelocWithSymbol,
1649 int64_t Addend) {
Jason W Kimd3443e92010-11-15 16:18:39 +00001650 // determine the type of the relocation
1651
Rafael Espindola12203cc2010-11-21 00:48:25 +00001652 MCSymbolRefExpr::VariantKind Modifier = Target.isAbsolute() ?
1653 MCSymbolRefExpr::VK_None : Target.getSymA()->getKind();
Jason W Kimd3443e92010-11-15 16:18:39 +00001654 unsigned Type;
Rafael Espindolabff66a82010-12-18 03:27:34 +00001655 if (is64Bit()) {
Jason W Kimd3443e92010-11-15 16:18:39 +00001656 if (IsPCRel) {
Rafael Espindola3a83c402010-12-27 00:36:05 +00001657 switch ((unsigned)Fixup.getKind()) {
1658 default: llvm_unreachable("invalid fixup kind!");
Rafael Espindoladebd7e42011-05-01 03:50:49 +00001659
1660 case FK_Data_8: Type = ELF::R_X86_64_PC64; break;
1661 case FK_Data_4: Type = ELF::R_X86_64_PC32; break;
1662 case FK_Data_2: Type = ELF::R_X86_64_PC16; break;
1663
Rafael Espindola3a83c402010-12-27 00:36:05 +00001664 case FK_PCRel_8:
1665 assert(Modifier == MCSymbolRefExpr::VK_None);
1666 Type = ELF::R_X86_64_PC64;
Jason W Kimd3443e92010-11-15 16:18:39 +00001667 break;
Rafael Espindola7a549972011-01-01 19:05:35 +00001668 case X86::reloc_signed_4byte:
Rafael Espindolac3a561c2010-12-27 02:03:24 +00001669 case X86::reloc_riprel_4byte_movq_load:
Rafael Espindola3a83c402010-12-27 00:36:05 +00001670 case X86::reloc_riprel_4byte:
1671 case FK_PCRel_4:
1672 switch (Modifier) {
1673 default:
1674 llvm_unreachable("Unimplemented");
1675 case MCSymbolRefExpr::VK_None:
1676 Type = ELF::R_X86_64_PC32;
1677 break;
1678 case MCSymbolRefExpr::VK_PLT:
1679 Type = ELF::R_X86_64_PLT32;
1680 break;
1681 case MCSymbolRefExpr::VK_GOTPCREL:
1682 Type = ELF::R_X86_64_GOTPCREL;
1683 break;
1684 case MCSymbolRefExpr::VK_GOTTPOFF:
1685 Type = ELF::R_X86_64_GOTTPOFF;
Jason W Kimd3443e92010-11-15 16:18:39 +00001686 break;
Rafael Espindola3a83c402010-12-27 00:36:05 +00001687 case MCSymbolRefExpr::VK_TLSGD:
1688 Type = ELF::R_X86_64_TLSGD;
1689 break;
1690 case MCSymbolRefExpr::VK_TLSLD:
1691 Type = ELF::R_X86_64_TLSLD;
1692 break;
1693 }
Jason W Kimd3443e92010-11-15 16:18:39 +00001694 break;
Rafael Espindola3a83c402010-12-27 00:36:05 +00001695 case FK_PCRel_2:
1696 assert(Modifier == MCSymbolRefExpr::VK_None);
1697 Type = ELF::R_X86_64_PC16;
Jason W Kimd3443e92010-11-15 16:18:39 +00001698 break;
Joerg Sonnenbergerd45e8bf2011-02-21 23:25:41 +00001699 case FK_PCRel_1:
1700 assert(Modifier == MCSymbolRefExpr::VK_None);
1701 Type = ELF::R_X86_64_PC8;
1702 break;
Jason W Kimd3443e92010-11-15 16:18:39 +00001703 }
1704 } else {
1705 switch ((unsigned)Fixup.getKind()) {
1706 default: llvm_unreachable("invalid fixup kind!");
1707 case FK_Data_8: Type = ELF::R_X86_64_64; break;
1708 case X86::reloc_signed_4byte:
Jason W Kimd3443e92010-11-15 16:18:39 +00001709 switch (Modifier) {
1710 default:
1711 llvm_unreachable("Unimplemented");
1712 case MCSymbolRefExpr::VK_None:
1713 Type = ELF::R_X86_64_32S;
1714 break;
1715 case MCSymbolRefExpr::VK_GOT:
1716 Type = ELF::R_X86_64_GOT32;
1717 break;
1718 case MCSymbolRefExpr::VK_GOTPCREL:
1719 Type = ELF::R_X86_64_GOTPCREL;
1720 break;
1721 case MCSymbolRefExpr::VK_TPOFF:
1722 Type = ELF::R_X86_64_TPOFF32;
1723 break;
1724 case MCSymbolRefExpr::VK_DTPOFF:
1725 Type = ELF::R_X86_64_DTPOFF32;
1726 break;
1727 }
1728 break;
1729 case FK_Data_4:
1730 Type = ELF::R_X86_64_32;
1731 break;
1732 case FK_Data_2: Type = ELF::R_X86_64_16; break;
Rafael Espindolae04ed7e2010-11-28 14:17:56 +00001733 case FK_PCRel_1:
Jason W Kimd3443e92010-11-15 16:18:39 +00001734 case FK_Data_1: Type = ELF::R_X86_64_8; break;
1735 }
1736 }
1737 } else {
1738 if (IsPCRel) {
1739 switch (Modifier) {
1740 default:
1741 llvm_unreachable("Unimplemented");
1742 case MCSymbolRefExpr::VK_None:
1743 Type = ELF::R_386_PC32;
1744 break;
1745 case MCSymbolRefExpr::VK_PLT:
1746 Type = ELF::R_386_PLT32;
1747 break;
1748 }
1749 } else {
1750 switch ((unsigned)Fixup.getKind()) {
1751 default: llvm_unreachable("invalid fixup kind!");
1752
1753 case X86::reloc_global_offset_table:
1754 Type = ELF::R_386_GOTPC;
1755 break;
1756
1757 // FIXME: Should we avoid selecting reloc_signed_4byte in 32 bit mode
1758 // instead?
1759 case X86::reloc_signed_4byte:
Rafael Espindolae04ed7e2010-11-28 14:17:56 +00001760 case FK_PCRel_4:
Jason W Kimd3443e92010-11-15 16:18:39 +00001761 case FK_Data_4:
1762 switch (Modifier) {
1763 default:
1764 llvm_unreachable("Unimplemented");
1765 case MCSymbolRefExpr::VK_None:
1766 Type = ELF::R_386_32;
1767 break;
1768 case MCSymbolRefExpr::VK_GOT:
1769 Type = ELF::R_386_GOT32;
1770 break;
1771 case MCSymbolRefExpr::VK_GOTOFF:
1772 Type = ELF::R_386_GOTOFF;
1773 break;
1774 case MCSymbolRefExpr::VK_TLSGD:
1775 Type = ELF::R_386_TLS_GD;
1776 break;
1777 case MCSymbolRefExpr::VK_TPOFF:
1778 Type = ELF::R_386_TLS_LE_32;
1779 break;
1780 case MCSymbolRefExpr::VK_INDNTPOFF:
1781 Type = ELF::R_386_TLS_IE;
1782 break;
1783 case MCSymbolRefExpr::VK_NTPOFF:
1784 Type = ELF::R_386_TLS_LE;
1785 break;
1786 case MCSymbolRefExpr::VK_GOTNTPOFF:
1787 Type = ELF::R_386_TLS_GOTIE;
1788 break;
1789 case MCSymbolRefExpr::VK_TLSLDM:
1790 Type = ELF::R_386_TLS_LDM;
1791 break;
1792 case MCSymbolRefExpr::VK_DTPOFF:
1793 Type = ELF::R_386_TLS_LDO_32;
1794 break;
Nick Lewyckye0b87032011-06-04 17:38:07 +00001795 case MCSymbolRefExpr::VK_GOTTPOFF:
1796 Type = ELF::R_386_TLS_IE_32;
1797 break;
Jason W Kimd3443e92010-11-15 16:18:39 +00001798 }
1799 break;
1800 case FK_Data_2: Type = ELF::R_386_16; break;
Rafael Espindolae04ed7e2010-11-28 14:17:56 +00001801 case FK_PCRel_1:
Jason W Kimd3443e92010-11-15 16:18:39 +00001802 case FK_Data_1: Type = ELF::R_386_8; break;
1803 }
1804 }
1805 }
1806
1807 if (RelocNeedsGOT(Modifier))
1808 NeedsGOT = true;
1809
Jason W Kim56a39902010-12-06 21:57:34 +00001810 return Type;
Matt Fleming3565a062010-08-16 18:57:57 +00001811}