blob: ee5a856ac223998925bba83a0c8449ff218a4f0f [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 Lopes6933d3e2009-07-06 09:26:48 +000032 class ObjectCodeEmitter;
Bruno Cardoso Lopes45f5d642009-07-02 18:29:24 +000033 class TargetAsmInfo;
34 class TargetELFWriterInfo;
Owen Andersoncb371882008-08-21 00:14:44 +000035 class raw_ostream;
Chris Lattner32018152005-06-27 06:28:45 +000036
Bruno Cardoso Lopes115934e2009-07-16 06:26:41 +000037 typedef std::vector<ELFSym*>::iterator ELFSymIter;
38 typedef std::vector<ELFSection*>::iterator ELFSectionIter;
39
Chris Lattner32018152005-06-27 06:28:45 +000040 /// ELFWriter - This class implements the common target-independent code for
41 /// writing ELF files. Targets should derive a class from this to
42 /// parameterize the output format.
43 ///
44 class ELFWriter : public MachineFunctionPass {
Chris Lattner6871aed2005-07-11 05:15:32 +000045 friend class ELFCodeEmitter;
46 public:
Devang Patel19974732007-05-03 01:11:54 +000047 static char ID;
Devang Patel794fd752007-05-01 21:15:47 +000048
Bruno Cardoso Lopes6933d3e2009-07-06 09:26:48 +000049 /// Return the ELFCodeEmitter as an instance of ObjectCodeEmitter
50 ObjectCodeEmitter *getObjectCodeEmitter() {
51 return reinterpret_cast<ObjectCodeEmitter*>(ElfCE);
Chris Lattner6871aed2005-07-11 05:15:32 +000052 }
53
Owen Andersoncb371882008-08-21 00:14:44 +000054 ELFWriter(raw_ostream &O, TargetMachine &TM);
Chris Lattner6871aed2005-07-11 05:15:32 +000055 ~ELFWriter();
56
Chris Lattner32018152005-06-27 06:28:45 +000057 protected:
Chris Lattner32018152005-06-27 06:28:45 +000058 /// Output stream to send the resultant object file to.
Owen Andersoncb371882008-08-21 00:14:44 +000059 raw_ostream &O;
Chris Lattner32018152005-06-27 06:28:45 +000060
61 /// Target machine description.
Chris Lattner32018152005-06-27 06:28:45 +000062 TargetMachine &TM;
63
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +000064 /// Target Elf Writer description.
65 const TargetELFWriterInfo *TEW;
66
Chris Lattner75bbdff2005-07-11 03:11:10 +000067 /// Mang - The object used to perform name mangling for this module.
Chris Lattner75bbdff2005-07-11 03:11:10 +000068 Mangler *Mang;
69
Chris Lattner6871aed2005-07-11 05:15:32 +000070 /// MCE - The MachineCodeEmitter object that we are exposing to emit machine
71 /// code for functions to the .o file.
Bruno Cardoso Lopes6933d3e2009-07-06 09:26:48 +000072 ELFCodeEmitter *ElfCE;
Chris Lattner6871aed2005-07-11 05:15:32 +000073
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +000074 /// TAI - Target Asm Info, provide information about section names for
75 /// globals and other target specific stuff.
76 const TargetAsmInfo *TAI;
77
Chris Lattner32018152005-06-27 06:28:45 +000078 //===------------------------------------------------------------------===//
Chris Lattner32018152005-06-27 06:28:45 +000079 // Properties inferred automatically from the target machine.
Bruno Cardoso Lopesa029a272009-06-07 21:22:38 +000080 //===------------------------------------------------------------------===//
Chris Lattner32018152005-06-27 06:28:45 +000081
82 /// is64Bit/isLittleEndian - This information is inferred from the target
83 /// machine directly, indicating whether to emit a 32- or 64-bit ELF file.
84 bool is64Bit, isLittleEndian;
85
86 /// doInitialization - Emit the file header and all of the global variables
87 /// for the module to the ELF file.
88 bool doInitialization(Module &M);
Chris Lattner32018152005-06-27 06:28:45 +000089 bool runOnMachineFunction(MachineFunction &MF);
90
Chris Lattner32018152005-06-27 06:28:45 +000091 /// doFinalization - Now that the module has been completely processed, emit
92 /// the ELF file to 'O'.
93 bool doFinalization(Module &M);
94
95 private:
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +000096 /// Blob containing the Elf header
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +000097 BinaryObject ElfHdr;
Bruno Cardoso Lopesa029a272009-06-07 21:22:38 +000098
Chris Lattner32018152005-06-27 06:28:45 +000099 /// SectionList - This is the list of sections that we have emitted to the
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000100 /// file. Once the file has been completely built, the section header table
Chris Lattner32018152005-06-27 06:28:45 +0000101 /// is constructed from this info.
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000102 std::vector<ELFSection*> SectionList;
Chris Lattner5f48ff72005-07-16 08:01:13 +0000103 unsigned NumSections; // Always = SectionList.size()
104
105 /// SectionLookup - This is a mapping from section name to section number in
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000106 /// the SectionList. Used to quickly gather the Section Index from TAI names
Chris Lattner5f48ff72005-07-16 08:01:13 +0000107 std::map<std::string, ELFSection*> SectionLookup;
108
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000109 /// GblSymLookup - This is a mapping from global value to a symbol index
110 /// in the symbol table. This is useful since relocations symbol references
111 /// must be quickly mapped to a symbol table index
112 std::map<const GlobalValue*, uint32_t> GblSymLookup;
113
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000114 /// SymbolList - This is the list of symbols emitted to the symbol table.
115 /// When the SymbolList is finally built, local symbols must be placed in
116 /// the beginning while non-locals at the end.
117 std::vector<ELFSym*> SymbolList;
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000118
119 /// PendingGlobals - List of externally defined symbols that we have been
120 /// asked to emit, but have not seen a reference to. When a reference
121 /// is seen, the symbol will move from this list to the SymbolList.
122 SetVector<GlobalValue*> PendingGlobals;
123
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000124 // Remove tab from section name prefix. This is necessary becase TAI
125 // sometimes return a section name prefixed with elf unused chars. This is
Bruno Cardoso Lopes0b1308f2009-07-03 04:36:26 +0000126 // a little bit dirty. FIXME: find a better approach, maybe add more
127 // methods to TAI to get the clean name?
128 void fixNameForSection(std::string &Name) {
129 size_t Pos = Name.find("\t");
130 if (Pos != std::string::npos)
131 Name.erase(Pos, 1);
132
133 Pos = Name.find(".section ");
134 if (Pos != std::string::npos)
135 Name.erase(Pos, 9);
136
137 Pos = Name.find("\n");
138 if (Pos != std::string::npos)
139 Name.erase(Pos, 1);
140 }
141
Chris Lattner5f48ff72005-07-16 08:01:13 +0000142 /// getSection - Return the section with the specified name, creating a new
143 /// section if one does not already exist.
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000144 ELFSection &getSection(const std::string &Name, unsigned Type,
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000145 unsigned Flags = 0, unsigned Align = 0) {
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000146 std::string SName(Name);
147 fixNameForSection(SName);
Bruno Cardoso Lopes0b1308f2009-07-03 04:36:26 +0000148
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000149 ELFSection *&SN = SectionLookup[SName];
Bruno Cardoso Lopes0b1308f2009-07-03 04:36:26 +0000150 if (SN) return *SN;
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000151
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000152 SectionList.push_back(new ELFSection(SName, isLittleEndian, is64Bit));
153 SN = SectionList.back();
Chris Lattner5f48ff72005-07-16 08:01:13 +0000154 SN->SectionIdx = NumSections++;
Chris Lattner5f9cb592005-07-16 17:35:26 +0000155 SN->Type = Type;
156 SN->Flags = Flags;
Bruno Cardoso Lopesf5b0c5a2009-06-06 03:56:29 +0000157 SN->Link = ELFSection::SHN_UNDEF;
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000158 SN->Align = Align;
Chris Lattner5f48ff72005-07-16 08:01:13 +0000159 return *SN;
160 }
Chris Lattner32018152005-06-27 06:28:45 +0000161
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000162 /// TODO: support mangled names here to emit the right .text section
163 /// for c++ object files.
Bruno Cardoso Lopes5d419102009-06-05 00:22:10 +0000164 ELFSection &getTextSection() {
Bruno Cardoso Lopesf5b0c5a2009-06-06 03:56:29 +0000165 return getSection(".text", ELFSection::SHT_PROGBITS,
166 ELFSection::SHF_EXECINSTR | ELFSection::SHF_ALLOC);
Bruno Cardoso Lopes5d419102009-06-05 00:22:10 +0000167 }
168
Bruno Cardoso Lopes0b1308f2009-07-03 04:36:26 +0000169 /// Get jump table section on the section name returned by TAI
170 ELFSection &getJumpTableSection(std::string SName, unsigned Align) {
171 return getSection(SName, ELFSection::SHT_PROGBITS,
172 ELFSection::SHF_ALLOC, Align);
173 }
174
Bruno Cardoso Lopesa5e0abd2009-06-25 07:36:24 +0000175 /// Get a constant pool section based on the section name returned by TAI
176 ELFSection &getConstantPoolSection(std::string SName, unsigned Align) {
177 return getSection(SName, ELFSection::SHT_PROGBITS,
178 ELFSection::SHF_MERGE | ELFSection::SHF_ALLOC, Align);
179 }
180
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000181 /// Return the relocation section of section 'S'. 'RelA' is true
182 /// if the relocation section contains entries with addends.
Bruno Cardoso Lopes45f5d642009-07-02 18:29:24 +0000183 ELFSection &getRelocSection(std::string SName, bool RelA, unsigned Align) {
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000184 std::string RelSName(".rel");
185 unsigned SHdrTy = RelA ? ELFSection::SHT_RELA : ELFSection::SHT_REL;
186
187 if (RelA) RelSName.append("a");
188 RelSName.append(SName);
189
Bruno Cardoso Lopes45f5d642009-07-02 18:29:24 +0000190 return getSection(RelSName, SHdrTy, 0, Align);
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000191 }
192
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000193 ELFSection &getNonExecStackSection() {
194 return getSection(".note.GNU-stack", ELFSection::SHT_PROGBITS, 0, 1);
195 }
196
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000197 ELFSection &getSymbolTableSection() {
198 return getSection(".symtab", ELFSection::SHT_SYMTAB, 0);
199 }
200
201 ELFSection &getStringTableSection() {
202 return getSection(".strtab", ELFSection::SHT_STRTAB, 0, 1);
203 }
204
Bruno Cardoso Lopese39493e2009-06-23 04:39:27 +0000205 ELFSection &getSectionHeaderStringTableSection() {
206 return getSection(".shstrtab", ELFSection::SHT_STRTAB, 0, 1);
207 }
208
Chris Lattner56c32612005-07-16 17:40:34 +0000209 ELFSection &getDataSection() {
210 return getSection(".data", ELFSection::SHT_PROGBITS,
Bruno Cardoso Lopese39493e2009-06-23 04:39:27 +0000211 ELFSection::SHF_WRITE | ELFSection::SHF_ALLOC, 4);
Chris Lattner56c32612005-07-16 17:40:34 +0000212 }
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000213
Chris Lattner56c32612005-07-16 17:40:34 +0000214 ELFSection &getBSSSection() {
215 return getSection(".bss", ELFSection::SHT_NOBITS,
Bruno Cardoso Lopese39493e2009-06-23 04:39:27 +0000216 ELFSection::SHF_WRITE | ELFSection::SHF_ALLOC, 4);
Chris Lattner56c32612005-07-16 17:40:34 +0000217 }
218
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000219 ELFSection &getNullSection() {
220 return getSection("", ELFSection::SHT_NULL, 0);
221 }
Bruno Cardoso Lopesa029a272009-06-07 21:22:38 +0000222
Bruno Cardoso Lopes0b1308f2009-07-03 04:36:26 +0000223 // Helpers for obtaining ELF specific info.
Bruno Cardoso Lopesd2910662009-07-13 22:40:39 +0000224 unsigned getGlobalELFBinding(const GlobalValue *GV);
225 unsigned getGlobalELFType(const GlobalValue *GV);
Bruno Cardoso Lopes45f5d642009-07-02 18:29:24 +0000226 unsigned getGlobalELFVisibility(const GlobalValue *GV);
Bruno Cardoso Lopes0b1308f2009-07-03 04:36:26 +0000227 unsigned getElfSectionFlags(unsigned Flags);
Bruno Cardoso Lopes45f5d642009-07-02 18:29:24 +0000228
Chris Lattner5f48ff72005-07-16 08:01:13 +0000229 // As we complete the ELF file, we need to update fields in the ELF header
230 // (e.g. the location of the section table). These members keep track of
231 // the offset in ELFHeader of these various pieces to update and other
232 // locations in the file.
Bruno Cardoso Lopesf5b0c5a2009-06-06 03:56:29 +0000233 unsigned ELFHdr_e_shoff_Offset; // e_shoff in ELF header.
234 unsigned ELFHdr_e_shstrndx_Offset; // e_shstrndx in ELF header.
235 unsigned ELFHdr_e_shnum_Offset; // e_shnum in ELF header.
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000236
Chris Lattner32018152005-06-27 06:28:45 +0000237 private:
Bruno Cardoso Lopesd2910662009-07-13 22:40:39 +0000238 void EmitGlobal(const GlobalValue *GV);
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000239 void EmitGlobalConstant(const Constant *C, ELFSection &GblS);
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000240 void EmitGlobalConstantStruct(const ConstantStruct *CVS,
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000241 ELFSection &GblS);
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000242 ELFSection &getGlobalSymELFSection(const GlobalVariable *GV, ELFSym &Sym);
Bruno Cardoso Lopesa029a272009-06-07 21:22:38 +0000243 void EmitRelocations();
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000244 void EmitRelocation(BinaryObject &RelSec, ELFRelocation &Rel, bool HasRelA);
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000245 void EmitSectionHeader(BinaryObject &SHdrTab, const ELFSection &SHdr);
Chris Lattner32018152005-06-27 06:28:45 +0000246 void EmitSectionTableStringTable();
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000247 void EmitSymbol(BinaryObject &SymbolTable, ELFSym &Sym);
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000248 void EmitSymbolTable();
Bruno Cardoso Lopesc236a342009-06-22 19:29:56 +0000249 void EmitStringTable();
Chris Lattner5f48ff72005-07-16 08:01:13 +0000250 void OutputSectionsAndSectionTable();
Bruno Cardoso Lopes4b70fab2009-07-15 20:49:10 +0000251 unsigned SortSymbols();
Chris Lattner32018152005-06-27 06:28:45 +0000252 };
253}
254
255#endif