blob: e0e71d01fa5aa960a2ae319e477113f85ebbd022 [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"
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +000019#include "llvm/Support/Debug.h"
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +000020#include "llvm/Target/TargetAsmInfo.h"
21#include "llvm/Target/TargetELFWriterInfo.h"
Bruno Cardoso Lopesf5b0c5a2009-06-06 03:56:29 +000022#include "ELF.h"
Chris Lattner5f48ff72005-07-16 08:01:13 +000023#include <list>
Dan Gohmanc9235d22008-03-21 23:51:57 +000024#include <map>
Chris Lattner32018152005-06-27 06:28:45 +000025
26namespace llvm {
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +000027 class BinaryObject;
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +000028 class ConstantStruct;
29 class ELFCodeEmitter;
Chris Lattner32018152005-06-27 06:28:45 +000030 class GlobalVariable;
Chris Lattner75bbdff2005-07-11 03:11:10 +000031 class Mangler;
Chris Lattner6871aed2005-07-11 05:15:32 +000032 class MachineCodeEmitter;
Owen Andersoncb371882008-08-21 00:14:44 +000033 class raw_ostream;
Chris Lattner32018152005-06-27 06:28:45 +000034
35 /// ELFWriter - This class implements the common target-independent code for
36 /// writing ELF files. Targets should derive a class from this to
37 /// parameterize the output format.
38 ///
39 class ELFWriter : public MachineFunctionPass {
Chris Lattner6871aed2005-07-11 05:15:32 +000040 friend class ELFCodeEmitter;
41 public:
Devang Patel19974732007-05-03 01:11:54 +000042 static char ID;
Devang Patel794fd752007-05-01 21:15:47 +000043
Chris Lattner6871aed2005-07-11 05:15:32 +000044 MachineCodeEmitter &getMachineCodeEmitter() const {
45 return *(MachineCodeEmitter*)MCE;
46 }
47
Owen Andersoncb371882008-08-21 00:14:44 +000048 ELFWriter(raw_ostream &O, TargetMachine &TM);
Chris Lattner6871aed2005-07-11 05:15:32 +000049 ~ELFWriter();
50
Chris Lattner5f48ff72005-07-16 08:01:13 +000051 typedef std::vector<unsigned char> DataBuffer;
52
Chris Lattner32018152005-06-27 06:28:45 +000053 protected:
Chris Lattner32018152005-06-27 06:28:45 +000054 /// Output stream to send the resultant object file to.
Owen Andersoncb371882008-08-21 00:14:44 +000055 raw_ostream &O;
Chris Lattner32018152005-06-27 06:28:45 +000056
57 /// Target machine description.
Chris Lattner32018152005-06-27 06:28:45 +000058 TargetMachine &TM;
59
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +000060 /// Target Elf Writer description.
61 const TargetELFWriterInfo *TEW;
62
Chris Lattner75bbdff2005-07-11 03:11:10 +000063 /// Mang - The object used to perform name mangling for this module.
Chris Lattner75bbdff2005-07-11 03:11:10 +000064 Mangler *Mang;
65
Chris Lattner6871aed2005-07-11 05:15:32 +000066 /// MCE - The MachineCodeEmitter object that we are exposing to emit machine
67 /// code for functions to the .o file.
68 ELFCodeEmitter *MCE;
69
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +000070 /// TAI - Target Asm Info, provide information about section names for
71 /// globals and other target specific stuff.
72 const TargetAsmInfo *TAI;
73
Chris Lattner32018152005-06-27 06:28:45 +000074 //===------------------------------------------------------------------===//
Chris Lattner32018152005-06-27 06:28:45 +000075 // Properties inferred automatically from the target machine.
Bruno Cardoso Lopesa029a272009-06-07 21:22:38 +000076 //===------------------------------------------------------------------===//
Chris Lattner32018152005-06-27 06:28:45 +000077
78 /// is64Bit/isLittleEndian - This information is inferred from the target
79 /// machine directly, indicating whether to emit a 32- or 64-bit ELF file.
80 bool is64Bit, isLittleEndian;
81
82 /// doInitialization - Emit the file header and all of the global variables
83 /// for the module to the ELF file.
84 bool doInitialization(Module &M);
Chris Lattner32018152005-06-27 06:28:45 +000085 bool runOnMachineFunction(MachineFunction &MF);
86
Chris Lattner32018152005-06-27 06:28:45 +000087 /// doFinalization - Now that the module has been completely processed, emit
88 /// the ELF file to 'O'.
89 bool doFinalization(Module &M);
90
91 private:
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +000092 /// Blob containing the Elf header
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +000093 BinaryObject ElfHdr;
Bruno Cardoso Lopesa029a272009-06-07 21:22:38 +000094
Chris Lattner32018152005-06-27 06:28:45 +000095 /// SectionList - This is the list of sections that we have emitted to the
96 /// file. Once the file has been completely built, the section header table
97 /// is constructed from this info.
Chris Lattner5f48ff72005-07-16 08:01:13 +000098 std::list<ELFSection> SectionList;
99 unsigned NumSections; // Always = SectionList.size()
100
101 /// SectionLookup - This is a mapping from section name to section number in
102 /// the SectionList.
103 std::map<std::string, ELFSection*> SectionLookup;
104
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000105 /// GblSymLookup - This is a mapping from global value to a symbol index
106 /// in the symbol table. This is useful since relocations symbol references
107 /// must be quickly mapped to a symbol table index
108 std::map<const GlobalValue*, uint32_t> GblSymLookup;
109
110 /// SymbolList - This is the list of symbols emitted to the symbol table
111 /// Local symbols go to the front and Globals to the back.
112 std::list<ELFSym> SymbolList;
113
114 /// PendingGlobals - List of externally defined symbols that we have been
115 /// asked to emit, but have not seen a reference to. When a reference
116 /// is seen, the symbol will move from this list to the SymbolList.
117 SetVector<GlobalValue*> PendingGlobals;
118
Chris Lattner5f48ff72005-07-16 08:01:13 +0000119 /// getSection - Return the section with the specified name, creating a new
120 /// section if one does not already exist.
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000121 ELFSection &getSection(const std::string &Name, unsigned Type,
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000122 unsigned Flags = 0, unsigned Align = 0) {
Chris Lattner5f48ff72005-07-16 08:01:13 +0000123 ELFSection *&SN = SectionLookup[Name];
124 if (SN) return *SN;
125
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000126 // Remove tab from section name prefix. This is necessary becase TAI
127 // sometimes return a section name prefixed with a "\t" char.
128 std::string SectionName(Name);
129 size_t Pos = SectionName.find("\t");
130 if (Pos != std::string::npos)
131 SectionName.erase(Pos, 1);
132
133 SectionList.push_back(ELFSection(SectionName, isLittleEndian, is64Bit));
Chris Lattner5f48ff72005-07-16 08:01:13 +0000134 SN = &SectionList.back();
135 SN->SectionIdx = NumSections++;
Chris Lattner5f9cb592005-07-16 17:35:26 +0000136 SN->Type = Type;
137 SN->Flags = Flags;
Bruno Cardoso Lopesf5b0c5a2009-06-06 03:56:29 +0000138 SN->Link = ELFSection::SHN_UNDEF;
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000139 SN->Align = Align;
Chris Lattner5f48ff72005-07-16 08:01:13 +0000140 return *SN;
141 }
Chris Lattner32018152005-06-27 06:28:45 +0000142
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000143 /// TODO: support mangled names here to emit the right .text section
144 /// for c++ object files.
Bruno Cardoso Lopes5d419102009-06-05 00:22:10 +0000145 ELFSection &getTextSection() {
Bruno Cardoso Lopesf5b0c5a2009-06-06 03:56:29 +0000146 return getSection(".text", ELFSection::SHT_PROGBITS,
147 ELFSection::SHF_EXECINSTR | ELFSection::SHF_ALLOC);
Bruno Cardoso Lopes5d419102009-06-05 00:22:10 +0000148 }
149
Bruno Cardoso Lopesa5e0abd2009-06-25 07:36:24 +0000150 /// Get a constant pool section based on the section name returned by TAI
151 ELFSection &getConstantPoolSection(std::string SName, unsigned Align) {
152 return getSection(SName, ELFSection::SHT_PROGBITS,
153 ELFSection::SHF_MERGE | ELFSection::SHF_ALLOC, Align);
154 }
155
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000156 /// Return the relocation section of section 'S'. 'RelA' is true
157 /// if the relocation section contains entries with addends.
158 ELFSection &getRelocSection(std::string SName, bool RelA) {
159 std::string RelSName(".rel");
160 unsigned SHdrTy = RelA ? ELFSection::SHT_RELA : ELFSection::SHT_REL;
161
162 if (RelA) RelSName.append("a");
163 RelSName.append(SName);
164
165 return getSection(RelSName, SHdrTy, 0, TEW->getPrefELFAlignment());
166 }
167
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000168 ELFSection &getNonExecStackSection() {
169 return getSection(".note.GNU-stack", ELFSection::SHT_PROGBITS, 0, 1);
170 }
171
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000172 ELFSection &getSymbolTableSection() {
173 return getSection(".symtab", ELFSection::SHT_SYMTAB, 0);
174 }
175
176 ELFSection &getStringTableSection() {
177 return getSection(".strtab", ELFSection::SHT_STRTAB, 0, 1);
178 }
179
Bruno Cardoso Lopese39493e2009-06-23 04:39:27 +0000180 ELFSection &getSectionHeaderStringTableSection() {
181 return getSection(".shstrtab", ELFSection::SHT_STRTAB, 0, 1);
182 }
183
Chris Lattner56c32612005-07-16 17:40:34 +0000184 ELFSection &getDataSection() {
185 return getSection(".data", ELFSection::SHT_PROGBITS,
Bruno Cardoso Lopese39493e2009-06-23 04:39:27 +0000186 ELFSection::SHF_WRITE | ELFSection::SHF_ALLOC, 4);
Chris Lattner56c32612005-07-16 17:40:34 +0000187 }
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000188
Chris Lattner56c32612005-07-16 17:40:34 +0000189 ELFSection &getBSSSection() {
190 return getSection(".bss", ELFSection::SHT_NOBITS,
Bruno Cardoso Lopese39493e2009-06-23 04:39:27 +0000191 ELFSection::SHF_WRITE | ELFSection::SHF_ALLOC, 4);
Chris Lattner56c32612005-07-16 17:40:34 +0000192 }
193
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000194 ELFSection &getNullSection() {
195 return getSection("", ELFSection::SHT_NULL, 0);
196 }
Bruno Cardoso Lopesa029a272009-06-07 21:22:38 +0000197
Chris Lattner5f48ff72005-07-16 08:01:13 +0000198 // As we complete the ELF file, we need to update fields in the ELF header
199 // (e.g. the location of the section table). These members keep track of
200 // the offset in ELFHeader of these various pieces to update and other
201 // locations in the file.
Bruno Cardoso Lopesf5b0c5a2009-06-06 03:56:29 +0000202 unsigned ELFHdr_e_shoff_Offset; // e_shoff in ELF header.
203 unsigned ELFHdr_e_shstrndx_Offset; // e_shstrndx in ELF header.
204 unsigned ELFHdr_e_shnum_Offset; // e_shnum in ELF header.
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000205
Chris Lattner32018152005-06-27 06:28:45 +0000206 private:
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000207 void EmitFunctionDeclaration(const Function *F);
208 void EmitGlobalVar(const GlobalVariable *GV);
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000209 void EmitGlobalConstant(const Constant *C, ELFSection &GblS);
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000210 void EmitGlobalConstantStruct(const ConstantStruct *CVS,
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000211 ELFSection &GblS);
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000212 unsigned getGlobalELFLinkage(const GlobalVariable *GV);
213 ELFSection &getGlobalSymELFSection(const GlobalVariable *GV, ELFSym &Sym);
Bruno Cardoso Lopesa029a272009-06-07 21:22:38 +0000214 void EmitRelocations();
Bruno Cardoso Lopes0d3193e2009-06-22 19:16:16 +0000215 void EmitRelocation(BinaryObject &RelSec, ELFRelocation &Rel, bool HasRelA);
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000216 void EmitSectionHeader(BinaryObject &SHdrTab, const ELFSection &SHdr);
Chris Lattner32018152005-06-27 06:28:45 +0000217 void EmitSectionTableStringTable();
Bruno Cardoso Lopesae9163f2009-06-14 07:53:21 +0000218 void EmitSymbol(BinaryObject &SymbolTable, ELFSym &Sym);
Bruno Cardoso Lopesc997d452009-06-11 19:16:03 +0000219 void EmitSymbolTable();
Bruno Cardoso Lopesc236a342009-06-22 19:29:56 +0000220 void EmitStringTable();
Chris Lattner5f48ff72005-07-16 08:01:13 +0000221 void OutputSectionsAndSectionTable();
Chris Lattner32018152005-06-27 06:28:45 +0000222 };
223}
224
225#endif