blob: ebcfe35ebaadb5663480e4d99dee6ca8d47cb768 [file] [log] [blame]
Chris Lattner32018152005-06-27 06:28:45 +00001//===-- ELFWriter.h - Target-independent ELF writer support -----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner32018152005-06-27 06:28:45 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the ELFWriter class.
11//
12//===----------------------------------------------------------------------===//
13
Bill Wendling4b2ca1a2007-02-08 01:30:50 +000014#ifndef ELFWRITER_H
15#define ELFWRITER_H
Chris Lattner32018152005-06-27 06:28:45 +000016
Bruno Cardoso Lopesa029a272009-06-07 21:22:38 +000017#include "llvm/ADT/SetVector.h"
Chris Lattner32018152005-06-27 06:28:45 +000018#include "llvm/CodeGen/MachineFunctionPass.h"
Dan Gohmanc9235d22008-03-21 23:51:57 +000019#include <map>
Chris Lattner32018152005-06-27 06:28:45 +000020
21namespace llvm {
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +000022 class BinaryObject;
Bruno Cardoso Lopes45f5d642009-07-02 18:29:24 +000023 class Constant;
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +000024 class ConstantStruct;
25 class ELFCodeEmitter;
Bruno Cardoso Lopes6933d3e2009-07-06 09:26:48 +000026 class ELFRelocation;
27 class ELFSection;
Daniel Dunbar89e12a12009-07-13 06:00:13 +000028 struct ELFSym;
Chris Lattner32018152005-06-27 06:28:45 +000029 class GlobalVariable;
Chris Lattner75bbdff2005-07-11 03:11:10 +000030 class Mangler;
Chris Lattner6871aed2005-07-11 05:15:32 +000031 class MachineCodeEmitter;
Bruno Cardoso Lopese2b0ecd2009-07-18 23:24:01 +000032 class MachineConstantPoolEntry;
Bruno Cardoso Lopes6933d3e2009-07-06 09:26:48 +000033 class ObjectCodeEmitter;
Bruno Cardoso Lopes45f5d642009-07-02 18:29:24 +000034 class TargetAsmInfo;
35 class TargetELFWriterInfo;
Owen Andersoncb371882008-08-21 00:14:44 +000036 class raw_ostream;
Chris Lattner5fe575f2009-07-27 05:32:16 +000037 class SectionKind;
Chris Lattnerf26e03b2009-07-31 17:42:42 +000038 class MCContext;
Chris Lattner32018152005-06-27 06:28:45 +000039
Bruno Cardoso Lopes115934e2009-07-16 06:26:41 +000040 typedef std::vector<ELFSym*>::iterator ELFSymIter;
41 typedef std::vector<ELFSection*>::iterator ELFSectionIter;
Bruno Cardoso Lopes746e3bb2009-07-27 18:54:47 +000042 typedef SetVector<const GlobalValue*>::const_iterator PendingGblsIter;
43 typedef SetVector<const char *>::const_iterator PendingExtsIter;
Bruno Cardoso Lopes115934e2009-07-16 06:26:41 +000044
Chris Lattner32018152005-06-27 06:28:45 +000045 /// ELFWriter - This class implements the common target-independent code for
46 /// writing ELF files. Targets should derive a class from this to
47 /// parameterize the output format.
48 ///
49 class ELFWriter : public MachineFunctionPass {
Chris Lattner6871aed2005-07-11 05:15:32 +000050 friend class ELFCodeEmitter;
51 public:
Devang Patel19974732007-05-03 01:11:54 +000052 static char ID;
Devang Patel794fd752007-05-01 21:15:47 +000053
Bruno Cardoso Lopes6933d3e2009-07-06 09:26:48 +000054 /// Return the ELFCodeEmitter as an instance of ObjectCodeEmitter
55 ObjectCodeEmitter *getObjectCodeEmitter() {
56 return reinterpret_cast<ObjectCodeEmitter*>(ElfCE);
Chris Lattner6871aed2005-07-11 05:15:32 +000057 }
58
Owen Andersoncb371882008-08-21 00:14:44 +000059 ELFWriter(raw_ostream &O, TargetMachine &TM);
Chris Lattner6871aed2005-07-11 05:15:32 +000060 ~ELFWriter();
61
Chris Lattner32018152005-06-27 06:28:45 +000062 protected:
Chris Lattner32018152005-06-27 06:28:45 +000063 /// Output stream to send the resultant object file to.
Owen Andersoncb371882008-08-21 00:14:44 +000064 raw_ostream &O;
Chris Lattner32018152005-06-27 06:28:45 +000065
66 /// Target machine description.
Chris Lattner32018152005-06-27 06:28:45 +000067 TargetMachine &TM;
68
Chris Lattnerf26e03b2009-07-31 17:42:42 +000069 MCContext &OutContext;
70
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +000071 /// Target Elf Writer description.
72 const TargetELFWriterInfo *TEW;
73
Chris Lattner75bbdff2005-07-11 03:11:10 +000074 /// Mang - The object used to perform name mangling for this module.
Chris Lattner75bbdff2005-07-11 03:11:10 +000075 Mangler *Mang;
76
Chris Lattner6871aed2005-07-11 05:15:32 +000077 /// MCE - The MachineCodeEmitter object that we are exposing to emit machine
78 /// code for functions to the .o file.
Bruno Cardoso Lopes6933d3e2009-07-06 09:26:48 +000079 ELFCodeEmitter *ElfCE;
Chris Lattner6871aed2005-07-11 05:15:32 +000080
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +000081 /// TAI - Target Asm Info, provide information about section names for
82 /// globals and other target specific stuff.
83 const TargetAsmInfo *TAI;
84
Chris Lattner32018152005-06-27 06:28:45 +000085 //===------------------------------------------------------------------===//
Chris Lattner32018152005-06-27 06:28:45 +000086 // Properties inferred automatically from the target machine.
Bruno Cardoso Lopesa029a272009-06-07 21:22:38 +000087 //===------------------------------------------------------------------===//
Chris Lattner32018152005-06-27 06:28:45 +000088
89 /// is64Bit/isLittleEndian - This information is inferred from the target
90 /// machine directly, indicating whether to emit a 32- or 64-bit ELF file.
91 bool is64Bit, isLittleEndian;
92
93 /// doInitialization - Emit the file header and all of the global variables
94 /// for the module to the ELF file.
95 bool doInitialization(Module &M);
Chris Lattner32018152005-06-27 06:28:45 +000096 bool runOnMachineFunction(MachineFunction &MF);
97
Chris Lattner32018152005-06-27 06:28:45 +000098 /// doFinalization - Now that the module has been completely processed, emit
99 /// the ELF file to 'O'.
100 bool doFinalization(Module &M);
101
102 private:
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000103 /// Blob containing the Elf header
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000104 BinaryObject ElfHdr;
Bruno Cardoso Lopesa029a272009-06-07 21:22:38 +0000105
Chris Lattner32018152005-06-27 06:28:45 +0000106 /// SectionList - This is the list of sections that we have emitted to the
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000107 /// file. Once the file has been completely built, the section header table
Chris Lattner32018152005-06-27 06:28:45 +0000108 /// is constructed from this info.
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000109 std::vector<ELFSection*> SectionList;
Chris Lattner5f48ff72005-07-16 08:01:13 +0000110 unsigned NumSections; // Always = SectionList.size()
111
112 /// SectionLookup - This is a mapping from section name to section number in
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000113 /// the SectionList. Used to quickly gather the Section Index from TAI names
Chris Lattner5f48ff72005-07-16 08:01:13 +0000114 std::map<std::string, ELFSection*> SectionLookup;
115
Bruno Cardoso Lopes746e3bb2009-07-27 18:54:47 +0000116 /// PendingGlobals - Globals not processed as symbols yet.
117 SetVector<const GlobalValue*> PendingGlobals;
118
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000119 /// GblSymLookup - This is a mapping from global value to a symbol index
Bruno Cardoso Lopes171375f2009-07-18 19:30:09 +0000120 /// in the symbol table or private symbols list. This is useful since reloc
Bruno Cardoso Lopes746e3bb2009-07-27 18:54:47 +0000121 /// symbol references must be quickly mapped to their indices on the lists.
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000122 std::map<const GlobalValue*, uint32_t> GblSymLookup;
123
Bruno Cardoso Lopes746e3bb2009-07-27 18:54:47 +0000124 /// PendingExternals - Externals not processed as symbols yet.
125 SetVector<const char *> PendingExternals;
126
127 /// ExtSymLookup - This is a mapping from externals to a symbol index
128 /// in the symbol table list. This is useful since reloc symbol references
129 /// must be quickly mapped to their symbol table indices.
130 std::map<const char *, uint32_t> ExtSymLookup;
131
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000132 /// SymbolList - This is the list of symbols emitted to the symbol table.
133 /// When the SymbolList is finally built, local symbols must be placed in
134 /// the beginning while non-locals at the end.
135 std::vector<ELFSym*> SymbolList;
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000136
Bruno Cardoso Lopes171375f2009-07-18 19:30:09 +0000137 /// PrivateSyms - Record private symbols, every symbol here must never be
138 /// present in the SymbolList.
139 std::vector<ELFSym*> PrivateSyms;
140
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000141 // Remove tab from section name prefix. This is necessary becase TAI
142 // sometimes return a section name prefixed with elf unused chars. This is
Bruno Cardoso Lopes0b1308f2009-07-03 04:36:26 +0000143 // a little bit dirty. FIXME: find a better approach, maybe add more
144 // methods to TAI to get the clean name?
145 void fixNameForSection(std::string &Name) {
146 size_t Pos = Name.find("\t");
147 if (Pos != std::string::npos)
148 Name.erase(Pos, 1);
149
150 Pos = Name.find(".section ");
151 if (Pos != std::string::npos)
152 Name.erase(Pos, 9);
153
154 Pos = Name.find("\n");
155 if (Pos != std::string::npos)
156 Name.erase(Pos, 1);
157 }
158
Chris Lattner5f48ff72005-07-16 08:01:13 +0000159 /// getSection - Return the section with the specified name, creating a new
160 /// section if one does not already exist.
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000161 ELFSection &getSection(const std::string &Name, unsigned Type,
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000162 unsigned Flags = 0, unsigned Align = 0) {
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000163 std::string SName(Name);
164 fixNameForSection(SName);
Bruno Cardoso Lopes0b1308f2009-07-03 04:36:26 +0000165
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000166 ELFSection *&SN = SectionLookup[SName];
Bruno Cardoso Lopes0b1308f2009-07-03 04:36:26 +0000167 if (SN) return *SN;
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000168
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000169 SectionList.push_back(new ELFSection(SName, isLittleEndian, is64Bit));
170 SN = SectionList.back();
Chris Lattner5f48ff72005-07-16 08:01:13 +0000171 SN->SectionIdx = NumSections++;
Chris Lattner5f9cb592005-07-16 17:35:26 +0000172 SN->Type = Type;
173 SN->Flags = Flags;
Bruno Cardoso Lopesf5b0c5a2009-06-06 03:56:29 +0000174 SN->Link = ELFSection::SHN_UNDEF;
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000175 SN->Align = Align;
Chris Lattner5f48ff72005-07-16 08:01:13 +0000176 return *SN;
177 }
Chris Lattner32018152005-06-27 06:28:45 +0000178
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000179 /// TODO: support mangled names here to emit the right .text section
180 /// for c++ object files.
Bruno Cardoso Lopes5d419102009-06-05 00:22:10 +0000181 ELFSection &getTextSection() {
Bruno Cardoso Lopesf5b0c5a2009-06-06 03:56:29 +0000182 return getSection(".text", ELFSection::SHT_PROGBITS,
183 ELFSection::SHF_EXECINSTR | ELFSection::SHF_ALLOC);
Bruno Cardoso Lopes5d419102009-06-05 00:22:10 +0000184 }
185
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000186 ELFSection &getNonExecStackSection() {
187 return getSection(".note.GNU-stack", ELFSection::SHT_PROGBITS, 0, 1);
188 }
189
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000190 ELFSection &getSymbolTableSection() {
191 return getSection(".symtab", ELFSection::SHT_SYMTAB, 0);
192 }
193
194 ELFSection &getStringTableSection() {
195 return getSection(".strtab", ELFSection::SHT_STRTAB, 0, 1);
196 }
197
Bruno Cardoso Lopese39493e2009-06-23 04:39:27 +0000198 ELFSection &getSectionHeaderStringTableSection() {
199 return getSection(".shstrtab", ELFSection::SHT_STRTAB, 0, 1);
200 }
201
Chris Lattner56c32612005-07-16 17:40:34 +0000202 ELFSection &getDataSection() {
203 return getSection(".data", ELFSection::SHT_PROGBITS,
Bruno Cardoso Lopese39493e2009-06-23 04:39:27 +0000204 ELFSection::SHF_WRITE | ELFSection::SHF_ALLOC, 4);
Chris Lattner56c32612005-07-16 17:40:34 +0000205 }
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000206
Chris Lattner56c32612005-07-16 17:40:34 +0000207 ELFSection &getBSSSection() {
208 return getSection(".bss", ELFSection::SHT_NOBITS,
Bruno Cardoso Lopese39493e2009-06-23 04:39:27 +0000209 ELFSection::SHF_WRITE | ELFSection::SHF_ALLOC, 4);
Chris Lattner56c32612005-07-16 17:40:34 +0000210 }
211
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000212 ELFSection &getNullSection() {
213 return getSection("", ELFSection::SHT_NULL, 0);
214 }
Bruno Cardoso Lopesa029a272009-06-07 21:22:38 +0000215
Bruno Cardoso Lopese2b0ecd2009-07-18 23:24:01 +0000216 ELFSection &getJumpTableSection();
217 ELFSection &getConstantPoolSection(MachineConstantPoolEntry &CPE);
Bruno Cardoso Lopes0a38dc52009-07-20 08:52:02 +0000218 ELFSection &getRelocSection(ELFSection &S);
Bruno Cardoso Lopese2b0ecd2009-07-18 23:24:01 +0000219
Bruno Cardoso Lopes0b1308f2009-07-03 04:36:26 +0000220 // Helpers for obtaining ELF specific info.
Bruno Cardoso Lopesd2910662009-07-13 22:40:39 +0000221 unsigned getGlobalELFBinding(const GlobalValue *GV);
222 unsigned getGlobalELFType(const GlobalValue *GV);
Bruno Cardoso Lopes45f5d642009-07-02 18:29:24 +0000223 unsigned getGlobalELFVisibility(const GlobalValue *GV);
Chris Lattner5fe575f2009-07-27 05:32:16 +0000224 unsigned getElfSectionFlags(SectionKind Kind);
Bruno Cardoso Lopes45f5d642009-07-02 18:29:24 +0000225
Bruno Cardoso Lopes746e3bb2009-07-27 18:54:47 +0000226 // addGlobalSymbol - Add a global to be processed and to the
227 // global symbol lookup, use a zero index for non private symbols
228 // because the table index will be determined later.
229 void addGlobalSymbol(const GlobalValue *GV);
230
231 // addExternalSymbol - Add the external to be processed and to the
232 // external symbol lookup, use a zero index because the symbol
233 // table index will be determined later
234 void addExternalSymbol(const char *External);
Bruno Cardoso Lopes68491c12009-07-21 06:51:32 +0000235
Chris Lattner5f48ff72005-07-16 08:01:13 +0000236 // As we complete the ELF file, we need to update fields in the ELF header
237 // (e.g. the location of the section table). These members keep track of
238 // the offset in ELFHeader of these various pieces to update and other
239 // locations in the file.
Bruno Cardoso Lopesf5b0c5a2009-06-06 03:56:29 +0000240 unsigned ELFHdr_e_shoff_Offset; // e_shoff in ELF header.
241 unsigned ELFHdr_e_shstrndx_Offset; // e_shstrndx in ELF header.
242 unsigned ELFHdr_e_shnum_Offset; // e_shnum in ELF header.
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000243
Chris Lattner32018152005-06-27 06:28:45 +0000244 private:
Bruno Cardoso Lopesd2910662009-07-13 22:40:39 +0000245 void EmitGlobal(const GlobalValue *GV);
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000246 void EmitGlobalConstant(const Constant *C, ELFSection &GblS);
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000247 void EmitGlobalConstantStruct(const ConstantStruct *CVS,
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000248 ELFSection &GblS);
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000249 ELFSection &getGlobalSymELFSection(const GlobalVariable *GV, ELFSym &Sym);
Bruno Cardoso Lopesa029a272009-06-07 21:22:38 +0000250 void EmitRelocations();
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000251 void EmitRelocation(BinaryObject &RelSec, ELFRelocation &Rel, bool HasRelA);
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000252 void EmitSectionHeader(BinaryObject &SHdrTab, const ELFSection &SHdr);
Chris Lattner32018152005-06-27 06:28:45 +0000253 void EmitSectionTableStringTable();
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000254 void EmitSymbol(BinaryObject &SymbolTable, ELFSym &Sym);
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000255 void EmitSymbolTable();
Bruno Cardoso Lopesdf0b6502009-07-27 19:32:57 +0000256 void EmitStringTable(const std::string &ModuleName);
Chris Lattner5f48ff72005-07-16 08:01:13 +0000257 void OutputSectionsAndSectionTable();
Bruno Cardoso Lopes0a38dc52009-07-20 08:52:02 +0000258 void RelocateField(BinaryObject &BO, uint32_t Offset, int64_t Value,
259 unsigned Size);
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000260 unsigned SortSymbols();
Chris Lattner32018152005-06-27 06:28:45 +0000261 };
262}
263
264#endif