blob: 8dcd970cfc6377cdccd00c9b10f27bc8977b40ae [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 Lattner32018152005-06-27 06:28:45 +000038
Bruno Cardoso Lopes115934e2009-07-16 06:26:41 +000039 typedef std::vector<ELFSym*>::iterator ELFSymIter;
40 typedef std::vector<ELFSection*>::iterator ELFSectionIter;
41
Chris Lattner32018152005-06-27 06:28:45 +000042 /// ELFWriter - This class implements the common target-independent code for
43 /// writing ELF files. Targets should derive a class from this to
44 /// parameterize the output format.
45 ///
46 class ELFWriter : public MachineFunctionPass {
Chris Lattner6871aed2005-07-11 05:15:32 +000047 friend class ELFCodeEmitter;
48 public:
Devang Patel19974732007-05-03 01:11:54 +000049 static char ID;
Devang Patel794fd752007-05-01 21:15:47 +000050
Bruno Cardoso Lopes6933d3e2009-07-06 09:26:48 +000051 /// Return the ELFCodeEmitter as an instance of ObjectCodeEmitter
52 ObjectCodeEmitter *getObjectCodeEmitter() {
53 return reinterpret_cast<ObjectCodeEmitter*>(ElfCE);
Chris Lattner6871aed2005-07-11 05:15:32 +000054 }
55
Owen Andersoncb371882008-08-21 00:14:44 +000056 ELFWriter(raw_ostream &O, TargetMachine &TM);
Chris Lattner6871aed2005-07-11 05:15:32 +000057 ~ELFWriter();
58
Chris Lattner32018152005-06-27 06:28:45 +000059 protected:
Chris Lattner32018152005-06-27 06:28:45 +000060 /// Output stream to send the resultant object file to.
Owen Andersoncb371882008-08-21 00:14:44 +000061 raw_ostream &O;
Chris Lattner32018152005-06-27 06:28:45 +000062
63 /// Target machine description.
Chris Lattner32018152005-06-27 06:28:45 +000064 TargetMachine &TM;
65
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +000066 /// Target Elf Writer description.
67 const TargetELFWriterInfo *TEW;
68
Chris Lattner75bbdff2005-07-11 03:11:10 +000069 /// Mang - The object used to perform name mangling for this module.
Chris Lattner75bbdff2005-07-11 03:11:10 +000070 Mangler *Mang;
71
Chris Lattner6871aed2005-07-11 05:15:32 +000072 /// MCE - The MachineCodeEmitter object that we are exposing to emit machine
73 /// code for functions to the .o file.
Bruno Cardoso Lopes6933d3e2009-07-06 09:26:48 +000074 ELFCodeEmitter *ElfCE;
Chris Lattner6871aed2005-07-11 05:15:32 +000075
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +000076 /// TAI - Target Asm Info, provide information about section names for
77 /// globals and other target specific stuff.
78 const TargetAsmInfo *TAI;
79
Chris Lattner32018152005-06-27 06:28:45 +000080 //===------------------------------------------------------------------===//
Chris Lattner32018152005-06-27 06:28:45 +000081 // Properties inferred automatically from the target machine.
Bruno Cardoso Lopesa029a272009-06-07 21:22:38 +000082 //===------------------------------------------------------------------===//
Chris Lattner32018152005-06-27 06:28:45 +000083
84 /// is64Bit/isLittleEndian - This information is inferred from the target
85 /// machine directly, indicating whether to emit a 32- or 64-bit ELF file.
86 bool is64Bit, isLittleEndian;
87
88 /// doInitialization - Emit the file header and all of the global variables
89 /// for the module to the ELF file.
90 bool doInitialization(Module &M);
Chris Lattner32018152005-06-27 06:28:45 +000091 bool runOnMachineFunction(MachineFunction &MF);
92
Chris Lattner32018152005-06-27 06:28:45 +000093 /// doFinalization - Now that the module has been completely processed, emit
94 /// the ELF file to 'O'.
95 bool doFinalization(Module &M);
96
97 private:
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +000098 /// Blob containing the Elf header
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +000099 BinaryObject ElfHdr;
Bruno Cardoso Lopesa029a272009-06-07 21:22:38 +0000100
Chris Lattner32018152005-06-27 06:28:45 +0000101 /// SectionList - This is the list of sections that we have emitted to the
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000102 /// file. Once the file has been completely built, the section header table
Chris Lattner32018152005-06-27 06:28:45 +0000103 /// is constructed from this info.
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000104 std::vector<ELFSection*> SectionList;
Chris Lattner5f48ff72005-07-16 08:01:13 +0000105 unsigned NumSections; // Always = SectionList.size()
106
107 /// SectionLookup - This is a mapping from section name to section number in
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000108 /// the SectionList. Used to quickly gather the Section Index from TAI names
Chris Lattner5f48ff72005-07-16 08:01:13 +0000109 std::map<std::string, ELFSection*> SectionLookup;
110
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000111 /// GblSymLookup - This is a mapping from global value to a symbol index
Bruno Cardoso Lopes171375f2009-07-18 19:30:09 +0000112 /// in the symbol table or private symbols list. This is useful since reloc
113 /// symbol references must be quickly mapped to their indices on the lists
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000114 std::map<const GlobalValue*, uint32_t> GblSymLookup;
115
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000116 /// SymbolList - This is the list of symbols emitted to the symbol table.
117 /// When the SymbolList is finally built, local symbols must be placed in
118 /// the beginning while non-locals at the end.
119 std::vector<ELFSym*> SymbolList;
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000120
Bruno Cardoso Lopes171375f2009-07-18 19:30:09 +0000121 /// PrivateSyms - Record private symbols, every symbol here must never be
122 /// present in the SymbolList.
123 std::vector<ELFSym*> PrivateSyms;
124
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000125 /// PendingGlobals - List of externally defined symbols that we have been
126 /// asked to emit, but have not seen a reference to. When a reference
127 /// is seen, the symbol will move from this list to the SymbolList.
128 SetVector<GlobalValue*> PendingGlobals;
129
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000130 // Remove tab from section name prefix. This is necessary becase TAI
131 // sometimes return a section name prefixed with elf unused chars. This is
Bruno Cardoso Lopes0b1308f2009-07-03 04:36:26 +0000132 // a little bit dirty. FIXME: find a better approach, maybe add more
133 // methods to TAI to get the clean name?
134 void fixNameForSection(std::string &Name) {
135 size_t Pos = Name.find("\t");
136 if (Pos != std::string::npos)
137 Name.erase(Pos, 1);
138
139 Pos = Name.find(".section ");
140 if (Pos != std::string::npos)
141 Name.erase(Pos, 9);
142
143 Pos = Name.find("\n");
144 if (Pos != std::string::npos)
145 Name.erase(Pos, 1);
146 }
147
Chris Lattner5f48ff72005-07-16 08:01:13 +0000148 /// getSection - Return the section with the specified name, creating a new
149 /// section if one does not already exist.
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000150 ELFSection &getSection(const std::string &Name, unsigned Type,
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000151 unsigned Flags = 0, unsigned Align = 0) {
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000152 std::string SName(Name);
153 fixNameForSection(SName);
Bruno Cardoso Lopes0b1308f2009-07-03 04:36:26 +0000154
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000155 ELFSection *&SN = SectionLookup[SName];
Bruno Cardoso Lopes0b1308f2009-07-03 04:36:26 +0000156 if (SN) return *SN;
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000157
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000158 SectionList.push_back(new ELFSection(SName, isLittleEndian, is64Bit));
159 SN = SectionList.back();
Chris Lattner5f48ff72005-07-16 08:01:13 +0000160 SN->SectionIdx = NumSections++;
Chris Lattner5f9cb592005-07-16 17:35:26 +0000161 SN->Type = Type;
162 SN->Flags = Flags;
Bruno Cardoso Lopesf5b0c5a2009-06-06 03:56:29 +0000163 SN->Link = ELFSection::SHN_UNDEF;
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000164 SN->Align = Align;
Chris Lattner5f48ff72005-07-16 08:01:13 +0000165 return *SN;
166 }
Chris Lattner32018152005-06-27 06:28:45 +0000167
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000168 /// TODO: support mangled names here to emit the right .text section
169 /// for c++ object files.
Bruno Cardoso Lopes5d419102009-06-05 00:22:10 +0000170 ELFSection &getTextSection() {
Bruno Cardoso Lopesf5b0c5a2009-06-06 03:56:29 +0000171 return getSection(".text", ELFSection::SHT_PROGBITS,
172 ELFSection::SHF_EXECINSTR | ELFSection::SHF_ALLOC);
Bruno Cardoso Lopes5d419102009-06-05 00:22:10 +0000173 }
174
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000175 ELFSection &getNonExecStackSection() {
176 return getSection(".note.GNU-stack", ELFSection::SHT_PROGBITS, 0, 1);
177 }
178
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000179 ELFSection &getSymbolTableSection() {
180 return getSection(".symtab", ELFSection::SHT_SYMTAB, 0);
181 }
182
183 ELFSection &getStringTableSection() {
184 return getSection(".strtab", ELFSection::SHT_STRTAB, 0, 1);
185 }
186
Bruno Cardoso Lopese39493e2009-06-23 04:39:27 +0000187 ELFSection &getSectionHeaderStringTableSection() {
188 return getSection(".shstrtab", ELFSection::SHT_STRTAB, 0, 1);
189 }
190
Chris Lattner56c32612005-07-16 17:40:34 +0000191 ELFSection &getDataSection() {
192 return getSection(".data", ELFSection::SHT_PROGBITS,
Bruno Cardoso Lopese39493e2009-06-23 04:39:27 +0000193 ELFSection::SHF_WRITE | ELFSection::SHF_ALLOC, 4);
Chris Lattner56c32612005-07-16 17:40:34 +0000194 }
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000195
Chris Lattner56c32612005-07-16 17:40:34 +0000196 ELFSection &getBSSSection() {
197 return getSection(".bss", ELFSection::SHT_NOBITS,
Bruno Cardoso Lopese39493e2009-06-23 04:39:27 +0000198 ELFSection::SHF_WRITE | ELFSection::SHF_ALLOC, 4);
Chris Lattner56c32612005-07-16 17:40:34 +0000199 }
200
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000201 ELFSection &getNullSection() {
202 return getSection("", ELFSection::SHT_NULL, 0);
203 }
Bruno Cardoso Lopesa029a272009-06-07 21:22:38 +0000204
Bruno Cardoso Lopese2b0ecd2009-07-18 23:24:01 +0000205 ELFSection &getJumpTableSection();
206 ELFSection &getConstantPoolSection(MachineConstantPoolEntry &CPE);
Bruno Cardoso Lopes0a38dc52009-07-20 08:52:02 +0000207 ELFSection &getRelocSection(ELFSection &S);
Bruno Cardoso Lopese2b0ecd2009-07-18 23:24:01 +0000208
Bruno Cardoso Lopes0b1308f2009-07-03 04:36:26 +0000209 // Helpers for obtaining ELF specific info.
Bruno Cardoso Lopesd2910662009-07-13 22:40:39 +0000210 unsigned getGlobalELFBinding(const GlobalValue *GV);
211 unsigned getGlobalELFType(const GlobalValue *GV);
Bruno Cardoso Lopes45f5d642009-07-02 18:29:24 +0000212 unsigned getGlobalELFVisibility(const GlobalValue *GV);
Chris Lattner5fe575f2009-07-27 05:32:16 +0000213 unsigned getElfSectionFlags(SectionKind Kind);
Bruno Cardoso Lopes45f5d642009-07-02 18:29:24 +0000214
Bruno Cardoso Lopes68491c12009-07-21 06:51:32 +0000215 // setGlobalSymLookup - Set global value 'GV' with 'Index' in the lookup map
216 void setGlobalSymLookup(const GlobalValue *GV, unsigned Index) {
217 GblSymLookup[GV] = Index;
218 }
219
Chris Lattner5f48ff72005-07-16 08:01:13 +0000220 // As we complete the ELF file, we need to update fields in the ELF header
221 // (e.g. the location of the section table). These members keep track of
222 // the offset in ELFHeader of these various pieces to update and other
223 // locations in the file.
Bruno Cardoso Lopesf5b0c5a2009-06-06 03:56:29 +0000224 unsigned ELFHdr_e_shoff_Offset; // e_shoff in ELF header.
225 unsigned ELFHdr_e_shstrndx_Offset; // e_shstrndx in ELF header.
226 unsigned ELFHdr_e_shnum_Offset; // e_shnum in ELF header.
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000227
Chris Lattner32018152005-06-27 06:28:45 +0000228 private:
Bruno Cardoso Lopesd2910662009-07-13 22:40:39 +0000229 void EmitGlobal(const GlobalValue *GV);
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000230 void EmitGlobalConstant(const Constant *C, ELFSection &GblS);
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000231 void EmitGlobalConstantStruct(const ConstantStruct *CVS,
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000232 ELFSection &GblS);
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000233 ELFSection &getGlobalSymELFSection(const GlobalVariable *GV, ELFSym &Sym);
Bruno Cardoso Lopesa029a272009-06-07 21:22:38 +0000234 void EmitRelocations();
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000235 void EmitRelocation(BinaryObject &RelSec, ELFRelocation &Rel, bool HasRelA);
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000236 void EmitSectionHeader(BinaryObject &SHdrTab, const ELFSection &SHdr);
Chris Lattner32018152005-06-27 06:28:45 +0000237 void EmitSectionTableStringTable();
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000238 void EmitSymbol(BinaryObject &SymbolTable, ELFSym &Sym);
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000239 void EmitSymbolTable();
Bruno Cardoso Lopesc236a342009-06-22 19:29:56 +0000240 void EmitStringTable();
Chris Lattner5f48ff72005-07-16 08:01:13 +0000241 void OutputSectionsAndSectionTable();
Bruno Cardoso Lopes0a38dc52009-07-20 08:52:02 +0000242 void RelocateField(BinaryObject &BO, uint32_t Offset, int64_t Value,
243 unsigned Size);
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000244 unsigned SortSymbols();
Chris Lattner32018152005-06-27 06:28:45 +0000245 };
246}
247
248#endif