blob: c7bd8736bb95a7754a939884e295e42db4f9d6c1 [file] [log] [blame]
Bruno Cardoso Lopes4cb31432009-06-03 17:47:27 +00001//===-- lib/CodeGen/ELFCodeEmitter.cpp ------------------------------------===//
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
Bruno Cardoso Lopes5d419102009-06-05 00:22:10 +000010#define DEBUG_TYPE "elfce"
11
Bruno Cardoso Lopes4cb31432009-06-03 17:47:27 +000012#include "ELFCodeEmitter.h"
13#include "llvm/Constants.h"
14#include "llvm/DerivedTypes.h"
15#include "llvm/Function.h"
16#include "llvm/CodeGen/MachineConstantPool.h"
17#include "llvm/CodeGen/MachineJumpTableInfo.h"
Bruno Cardoso Lopes4cb31432009-06-03 17:47:27 +000018#include "llvm/Target/TargetData.h"
19#include "llvm/Target/TargetMachine.h"
Bruno Cardoso Lopes5d419102009-06-05 00:22:10 +000020#include "llvm/Support/Debug.h"
Bruno Cardoso Lopes4cb31432009-06-03 17:47:27 +000021
22//===----------------------------------------------------------------------===//
23// ELFCodeEmitter Implementation
24//===----------------------------------------------------------------------===//
25
26namespace llvm {
27
28/// startFunction - This callback is invoked when a new machine function is
29/// about to be emitted.
Bruno Cardoso Lopes5d419102009-06-05 00:22:10 +000030void ELFCodeEmitter::startFunction(MachineFunction &MF) {
31 const TargetData *TD = TM.getTargetData();
32 const Function *F = MF.getFunction();
33
34 // Align the output buffer to the appropriate alignment, power of 2.
35 unsigned FnAlign = F->getAlignment();
36 unsigned TDAlign = TD->getPrefTypeAlignment(F->getType());
37 unsigned Align = std::max(FnAlign, TDAlign);
38 assert(!(Align & (Align-1)) && "Alignment is not a power of two!");
39
Bruno Cardoso Lopes4cb31432009-06-03 17:47:27 +000040 // Get the ELF Section that this function belongs in.
Bruno Cardoso Lopes5d419102009-06-05 00:22:10 +000041 ES = &EW.getTextSection();
42
43 // FIXME: better memory management, this will be replaced by BinaryObjects
44 ES->SectionData.reserve(4096);
45 BufferBegin = &ES->SectionData[0];
46 BufferEnd = BufferBegin + ES->SectionData.capacity();
Bruno Cardoso Lopes4cb31432009-06-03 17:47:27 +000047
48 // Upgrade the section alignment if required.
49 if (ES->Align < Align) ES->Align = Align;
50
Bruno Cardoso Lopes5d419102009-06-05 00:22:10 +000051 // Round the size up to the correct alignment for starting the new function.
52 ES->Size = (ES->Size + (Align-1)) & (-Align);
53
54 // Snaity check on allocated space for text section
55 assert( ES->Size < 4096 && "no more space in TextSection" );
56
57 // FIXME: Using ES->Size directly here instead of calculating it from the
58 // output buffer size (impossible because the code emitter deals only in raw
59 // bytes) forces us to manually synchronize size and write padding zero bytes
60 // to the output buffer for all non-text sections. For text sections, we do
61 // not synchonize the output buffer, and we just blow up if anyone tries to
62 // write non-code to it. An assert should probably be added to
63 // AddSymbolToSection to prevent calling it on the text section.
64 CurBufferPtr = BufferBegin + ES->Size;
65
66 // Record function start address relative to BufferBegin
67 FnStartPtr = CurBufferPtr;
Bruno Cardoso Lopes4cb31432009-06-03 17:47:27 +000068}
69
70/// finishFunction - This callback is invoked after the function is completely
71/// finished.
Bruno Cardoso Lopes5d419102009-06-05 00:22:10 +000072bool ELFCodeEmitter::finishFunction(MachineFunction &MF) {
73 // Add a symbol to represent the function.
Bruno Cardoso Lopesf5b0c5a2009-06-06 03:56:29 +000074 ELFSym FnSym(MF.getFunction());
Bruno Cardoso Lopes4cb31432009-06-03 17:47:27 +000075
Bruno Cardoso Lopesa029a272009-06-07 21:22:38 +000076 // Update Section Size
77 ES->Size = CurBufferPtr - BufferBegin;
78
Bruno Cardoso Lopes4cb31432009-06-03 17:47:27 +000079 // Figure out the binding (linkage) of the symbol.
Bruno Cardoso Lopes5d419102009-06-05 00:22:10 +000080 switch (MF.getFunction()->getLinkage()) {
Bruno Cardoso Lopes4cb31432009-06-03 17:47:27 +000081 default:
82 // appending linkage is illegal for functions.
83 assert(0 && "Unknown linkage type!");
84 case GlobalValue::ExternalLinkage:
Bruno Cardoso Lopesf5b0c5a2009-06-06 03:56:29 +000085 FnSym.SetBind(ELFSym::STB_GLOBAL);
Bruno Cardoso Lopes4cb31432009-06-03 17:47:27 +000086 break;
87 case GlobalValue::LinkOnceAnyLinkage:
88 case GlobalValue::LinkOnceODRLinkage:
89 case GlobalValue::WeakAnyLinkage:
90 case GlobalValue::WeakODRLinkage:
Bruno Cardoso Lopesf5b0c5a2009-06-06 03:56:29 +000091 FnSym.SetBind(ELFSym::STB_WEAK);
Bruno Cardoso Lopes4cb31432009-06-03 17:47:27 +000092 break;
93 case GlobalValue::PrivateLinkage:
94 assert (0 && "PrivateLinkage should not be in the symbol table.");
95 case GlobalValue::InternalLinkage:
Bruno Cardoso Lopesf5b0c5a2009-06-06 03:56:29 +000096 FnSym.SetBind(ELFSym::STB_LOCAL);
Bruno Cardoso Lopes4cb31432009-06-03 17:47:27 +000097 break;
98 }
99
Bruno Cardoso Lopes5d419102009-06-05 00:22:10 +0000100 // Set the symbol type as a function
Bruno Cardoso Lopesf5b0c5a2009-06-06 03:56:29 +0000101 FnSym.SetType(ELFSym::STT_FUNC);
Bruno Cardoso Lopes5d419102009-06-05 00:22:10 +0000102
Bruno Cardoso Lopes4cb31432009-06-03 17:47:27 +0000103 FnSym.SectionIdx = ES->SectionIdx;
Bruno Cardoso Lopes5d419102009-06-05 00:22:10 +0000104 FnSym.Size = CurBufferPtr-FnStartPtr;
105
106 // Offset from start of Section
107 FnSym.Value = FnStartPtr-BufferBegin;
Bruno Cardoso Lopes4cb31432009-06-03 17:47:27 +0000108
109 // Finally, add it to the symtab.
110 EW.SymbolTable.push_back(FnSym);
Bruno Cardoso Lopes5d419102009-06-05 00:22:10 +0000111
Bruno Cardoso Lopesa029a272009-06-07 21:22:38 +0000112 // Relocations
113 // -----------
114 // If we have emitted any relocations to function-specific objects such as
115 // basic blocks, constant pools entries, or jump tables, record their
116 // addresses now so that we can rewrite them with the correct addresses
117 // later.
118 for (unsigned i = 0, e = Relocations.size(); i != e; ++i) {
119 MachineRelocation &MR = Relocations[i];
120 intptr_t Addr;
121
122 if (MR.isBasicBlock()) {
123 Addr = getMachineBasicBlockAddress(MR.getBasicBlock());
124 MR.setConstantVal(ES->SectionIdx);
125 MR.setResultPointer((void*)Addr);
126 } else if (MR.isGlobalValue()) {
127 EW.PendingGlobals.insert(MR.getGlobalValue());
128 } else {
129 assert(0 && "Unhandled relocation type");
130 }
131 ES->Relocations.push_back(MR);
132 }
133 Relocations.clear();
134
Bruno Cardoso Lopes4cb31432009-06-03 17:47:27 +0000135 return false;
136}
137
138} // end namespace llvm