Add support to the JIT for true non-lazy operation. When a call to a function
[oota-llvm.git] / lib / ExecutionEngine / JIT / JITMemoryManager.cpp
1 //===-- JITMemoryManager.cpp - Memory Allocator for JIT'd code ------------===//
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 //
10 // This file defines the DefaultJITMemoryManager class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/GlobalValue.h"
15 #include "llvm/ExecutionEngine/JITMemoryManager.h"
16 #include "llvm/Support/Compiler.h"
17 #include "llvm/System/Memory.h"
18 #include <map>
19 #include <vector>
20 #include <cassert>
21 #include <cstdio>
22 #include <cstdlib>
23 #include <cstring>
24 using namespace llvm;
25
26
27 JITMemoryManager::~JITMemoryManager() {}
28
29 //===----------------------------------------------------------------------===//
30 // Memory Block Implementation.
31 //===----------------------------------------------------------------------===//
32
33 namespace {
34   /// MemoryRangeHeader - For a range of memory, this is the header that we put
35   /// on the block of memory.  It is carefully crafted to be one word of memory.
36   /// Allocated blocks have just this header, free'd blocks have FreeRangeHeader
37   /// which starts with this.
38   struct FreeRangeHeader;
39   struct MemoryRangeHeader {
40     /// ThisAllocated - This is true if this block is currently allocated.  If
41     /// not, this can be converted to a FreeRangeHeader.
42     unsigned ThisAllocated : 1;
43     
44     /// PrevAllocated - Keep track of whether the block immediately before us is
45     /// allocated.  If not, the word immediately before this header is the size
46     /// of the previous block.
47     unsigned PrevAllocated : 1;
48     
49     /// BlockSize - This is the size in bytes of this memory block,
50     /// including this header.
51     uintptr_t BlockSize : (sizeof(intptr_t)*8 - 2);
52     
53
54     /// getBlockAfter - Return the memory block immediately after this one.
55     ///
56     MemoryRangeHeader &getBlockAfter() const {
57       return *(MemoryRangeHeader*)((char*)this+BlockSize);
58     }
59     
60     /// getFreeBlockBefore - If the block before this one is free, return it,
61     /// otherwise return null.
62     FreeRangeHeader *getFreeBlockBefore() const {
63       if (PrevAllocated) return 0;
64       intptr_t PrevSize = ((intptr_t *)this)[-1];
65       return (FreeRangeHeader*)((char*)this-PrevSize);
66     }
67     
68     /// FreeBlock - Turn an allocated block into a free block, adjusting
69     /// bits in the object headers, and adding an end of region memory block.
70     FreeRangeHeader *FreeBlock(FreeRangeHeader *FreeList);
71     
72     /// TrimAllocationToSize - If this allocated block is significantly larger
73     /// than NewSize, split it into two pieces (where the former is NewSize
74     /// bytes, including the header), and add the new block to the free list.
75     FreeRangeHeader *TrimAllocationToSize(FreeRangeHeader *FreeList, 
76                                           uint64_t NewSize);
77   };
78
79   /// FreeRangeHeader - For a memory block that isn't already allocated, this
80   /// keeps track of the current block and has a pointer to the next free block.
81   /// Free blocks are kept on a circularly linked list.
82   struct FreeRangeHeader : public MemoryRangeHeader {
83     FreeRangeHeader *Prev;
84     FreeRangeHeader *Next;
85     
86     /// getMinBlockSize - Get the minimum size for a memory block.  Blocks
87     /// smaller than this size cannot be created.
88     static unsigned getMinBlockSize() {
89       return sizeof(FreeRangeHeader)+sizeof(intptr_t);
90     }
91     
92     /// SetEndOfBlockSizeMarker - The word at the end of every free block is
93     /// known to be the size of the free block.  Set it for this block.
94     void SetEndOfBlockSizeMarker() {
95       void *EndOfBlock = (char*)this + BlockSize;
96       ((intptr_t *)EndOfBlock)[-1] = BlockSize;
97     }
98
99     FreeRangeHeader *RemoveFromFreeList() {
100       assert(Next->Prev == this && Prev->Next == this && "Freelist broken!");
101       Next->Prev = Prev;
102       return Prev->Next = Next;
103     }
104     
105     void AddToFreeList(FreeRangeHeader *FreeList) {
106       Next = FreeList;
107       Prev = FreeList->Prev;
108       Prev->Next = this;
109       Next->Prev = this;
110     }
111
112     /// GrowBlock - The block after this block just got deallocated.  Merge it
113     /// into the current block.
114     void GrowBlock(uintptr_t NewSize);
115     
116     /// AllocateBlock - Mark this entire block allocated, updating freelists
117     /// etc.  This returns a pointer to the circular free-list.
118     FreeRangeHeader *AllocateBlock();
119   };
120 }
121
122
123 /// AllocateBlock - Mark this entire block allocated, updating freelists
124 /// etc.  This returns a pointer to the circular free-list.
125 FreeRangeHeader *FreeRangeHeader::AllocateBlock() {
126   assert(!ThisAllocated && !getBlockAfter().PrevAllocated &&
127          "Cannot allocate an allocated block!");
128   // Mark this block allocated.
129   ThisAllocated = 1;
130   getBlockAfter().PrevAllocated = 1;
131  
132   // Remove it from the free list.
133   return RemoveFromFreeList();
134 }
135
136 /// FreeBlock - Turn an allocated block into a free block, adjusting
137 /// bits in the object headers, and adding an end of region memory block.
138 /// If possible, coalesce this block with neighboring blocks.  Return the
139 /// FreeRangeHeader to allocate from.
140 FreeRangeHeader *MemoryRangeHeader::FreeBlock(FreeRangeHeader *FreeList) {
141   MemoryRangeHeader *FollowingBlock = &getBlockAfter();
142   assert(ThisAllocated && "This block is already allocated!");
143   assert(FollowingBlock->PrevAllocated && "Flags out of sync!");
144   
145   FreeRangeHeader *FreeListToReturn = FreeList;
146   
147   // If the block after this one is free, merge it into this block.
148   if (!FollowingBlock->ThisAllocated) {
149     FreeRangeHeader &FollowingFreeBlock = *(FreeRangeHeader *)FollowingBlock;
150     // "FreeList" always needs to be a valid free block.  If we're about to
151     // coalesce with it, update our notion of what the free list is.
152     if (&FollowingFreeBlock == FreeList) {
153       FreeList = FollowingFreeBlock.Next;
154       FreeListToReturn = 0;
155       assert(&FollowingFreeBlock != FreeList && "No tombstone block?");
156     }
157     FollowingFreeBlock.RemoveFromFreeList();
158     
159     // Include the following block into this one.
160     BlockSize += FollowingFreeBlock.BlockSize;
161     FollowingBlock = &FollowingFreeBlock.getBlockAfter();
162     
163     // Tell the block after the block we are coalescing that this block is
164     // allocated.
165     FollowingBlock->PrevAllocated = 1;
166   }
167   
168   assert(FollowingBlock->ThisAllocated && "Missed coalescing?");
169   
170   if (FreeRangeHeader *PrevFreeBlock = getFreeBlockBefore()) {
171     PrevFreeBlock->GrowBlock(PrevFreeBlock->BlockSize + BlockSize);
172     return FreeListToReturn ? FreeListToReturn : PrevFreeBlock;
173   }
174
175   // Otherwise, mark this block free.
176   FreeRangeHeader &FreeBlock = *(FreeRangeHeader*)this;
177   FollowingBlock->PrevAllocated = 0;
178   FreeBlock.ThisAllocated = 0;
179
180   // Link this into the linked list of free blocks.
181   FreeBlock.AddToFreeList(FreeList);
182
183   // Add a marker at the end of the block, indicating the size of this free
184   // block.
185   FreeBlock.SetEndOfBlockSizeMarker();
186   return FreeListToReturn ? FreeListToReturn : &FreeBlock;
187 }
188
189 /// GrowBlock - The block after this block just got deallocated.  Merge it
190 /// into the current block.
191 void FreeRangeHeader::GrowBlock(uintptr_t NewSize) {
192   assert(NewSize > BlockSize && "Not growing block?");
193   BlockSize = NewSize;
194   SetEndOfBlockSizeMarker();
195   getBlockAfter().PrevAllocated = 0;
196 }
197
198 /// TrimAllocationToSize - If this allocated block is significantly larger
199 /// than NewSize, split it into two pieces (where the former is NewSize
200 /// bytes, including the header), and add the new block to the free list.
201 FreeRangeHeader *MemoryRangeHeader::
202 TrimAllocationToSize(FreeRangeHeader *FreeList, uint64_t NewSize) {
203   assert(ThisAllocated && getBlockAfter().PrevAllocated &&
204          "Cannot deallocate part of an allocated block!");
205
206   // Don't allow blocks to be trimmed below minimum required size
207   NewSize = std::max<uint64_t>(FreeRangeHeader::getMinBlockSize(), NewSize);
208
209   // Round up size for alignment of header.
210   unsigned HeaderAlign = __alignof(FreeRangeHeader);
211   NewSize = (NewSize+ (HeaderAlign-1)) & ~(HeaderAlign-1);
212   
213   // Size is now the size of the block we will remove from the start of the
214   // current block.
215   assert(NewSize <= BlockSize &&
216          "Allocating more space from this block than exists!");
217   
218   // If splitting this block will cause the remainder to be too small, do not
219   // split the block.
220   if (BlockSize <= NewSize+FreeRangeHeader::getMinBlockSize())
221     return FreeList;
222   
223   // Otherwise, we splice the required number of bytes out of this block, form
224   // a new block immediately after it, then mark this block allocated.
225   MemoryRangeHeader &FormerNextBlock = getBlockAfter();
226   
227   // Change the size of this block.
228   BlockSize = NewSize;
229   
230   // Get the new block we just sliced out and turn it into a free block.
231   FreeRangeHeader &NewNextBlock = (FreeRangeHeader &)getBlockAfter();
232   NewNextBlock.BlockSize = (char*)&FormerNextBlock - (char*)&NewNextBlock;
233   NewNextBlock.ThisAllocated = 0;
234   NewNextBlock.PrevAllocated = 1;
235   NewNextBlock.SetEndOfBlockSizeMarker();
236   FormerNextBlock.PrevAllocated = 0;
237   NewNextBlock.AddToFreeList(FreeList);
238   return &NewNextBlock;
239 }
240
241 //===----------------------------------------------------------------------===//
242 // Memory Block Implementation.
243 //===----------------------------------------------------------------------===//
244
245 namespace {  
246   /// DefaultJITMemoryManager - Manage memory for the JIT code generation.
247   /// This splits a large block of MAP_NORESERVE'd memory into two
248   /// sections, one for function stubs, one for the functions themselves.  We
249   /// have to do this because we may need to emit a function stub while in the
250   /// middle of emitting a function, and we don't know how large the function we
251   /// are emitting is.
252   class VISIBILITY_HIDDEN DefaultJITMemoryManager : public JITMemoryManager {
253     std::vector<sys::MemoryBlock> Blocks; // Memory blocks allocated by the JIT
254     FreeRangeHeader *FreeMemoryList;      // Circular list of free blocks.
255     
256     // When emitting code into a memory block, this is the block.
257     MemoryRangeHeader *CurBlock;
258     
259     unsigned char *CurStubPtr, *StubBase;
260     unsigned char *GOTBase;      // Target Specific reserved memory
261     void *DlsymTable;            // Stub external symbol information
262
263     // Centralize memory block allocation.
264     sys::MemoryBlock getNewMemoryBlock(unsigned size);
265     
266     std::map<const Function*, MemoryRangeHeader*> FunctionBlocks;
267     std::map<const Function*, MemoryRangeHeader*> TableBlocks;
268   public:
269     DefaultJITMemoryManager();
270     ~DefaultJITMemoryManager();
271
272     void AllocateGOT();
273     void SetDlsymTable(void *);
274     
275     unsigned char *allocateStub(const GlobalValue* F, unsigned StubSize,
276                                 unsigned Alignment);
277     
278     /// startFunctionBody - When a function starts, allocate a block of free
279     /// executable memory, returning a pointer to it and its actual size.
280     unsigned char *startFunctionBody(const Function *F, uintptr_t &ActualSize) {
281       CurBlock = FreeMemoryList;
282       
283       // Allocate the entire memory block.
284       FreeMemoryList = FreeMemoryList->AllocateBlock();
285       ActualSize = CurBlock->BlockSize-sizeof(MemoryRangeHeader);
286       return (unsigned char *)(CurBlock+1);
287     }
288     
289     /// endFunctionBody - The function F is now allocated, and takes the memory
290     /// in the range [FunctionStart,FunctionEnd).
291     void endFunctionBody(const Function *F, unsigned char *FunctionStart,
292                          unsigned char *FunctionEnd) {
293       assert(FunctionEnd > FunctionStart);
294       assert(FunctionStart == (unsigned char *)(CurBlock+1) &&
295              "Mismatched function start/end!");
296
297       uintptr_t BlockSize = FunctionEnd - (unsigned char *)CurBlock;
298       FunctionBlocks[F] = CurBlock;
299
300       // Release the memory at the end of this block that isn't needed.
301       FreeMemoryList =CurBlock->TrimAllocationToSize(FreeMemoryList, BlockSize);
302     }
303
304     /// allocateSpace - Allocate a memory block of the given size.
305     unsigned char *allocateSpace(intptr_t Size, unsigned Alignment) {
306       CurBlock = FreeMemoryList;
307       FreeMemoryList = FreeMemoryList->AllocateBlock();
308
309       unsigned char *result = (unsigned char *)CurBlock+1;
310
311       if (Alignment == 0) Alignment = 1;
312       result = (unsigned char*)(((intptr_t)result+Alignment-1) &
313                ~(intptr_t)(Alignment-1));
314
315       uintptr_t BlockSize = result + Size - (unsigned char *)CurBlock;
316       FreeMemoryList =CurBlock->TrimAllocationToSize(FreeMemoryList, BlockSize);
317
318       return result;
319     }
320
321     /// startExceptionTable - Use startFunctionBody to allocate memory for the 
322     /// function's exception table.
323     unsigned char* startExceptionTable(const Function* F, 
324                                        uintptr_t &ActualSize) {
325       return startFunctionBody(F, ActualSize);
326     }
327
328     /// endExceptionTable - The exception table of F is now allocated, 
329     /// and takes the memory in the range [TableStart,TableEnd).
330     void endExceptionTable(const Function *F, unsigned char *TableStart,
331                            unsigned char *TableEnd, 
332                            unsigned char* FrameRegister) {
333       assert(TableEnd > TableStart);
334       assert(TableStart == (unsigned char *)(CurBlock+1) &&
335              "Mismatched table start/end!");
336       
337       uintptr_t BlockSize = TableEnd - (unsigned char *)CurBlock;
338       TableBlocks[F] = CurBlock;
339
340       // Release the memory at the end of this block that isn't needed.
341       FreeMemoryList =CurBlock->TrimAllocationToSize(FreeMemoryList, BlockSize);
342     }
343     
344     unsigned char *getGOTBase() const {
345       return GOTBase;
346     }
347     
348     void *getDlsymTable() const {
349       return DlsymTable;
350     }
351     
352     /// deallocateMemForFunction - Deallocate all memory for the specified
353     /// function body.
354     void deallocateMemForFunction(const Function *F) {
355       std::map<const Function*, MemoryRangeHeader*>::iterator
356         I = FunctionBlocks.find(F);
357       if (I == FunctionBlocks.end()) return;
358       
359       // Find the block that is allocated for this function.
360       MemoryRangeHeader *MemRange = I->second;
361       assert(MemRange->ThisAllocated && "Block isn't allocated!");
362       
363       // Fill the buffer with garbage!
364 #ifndef NDEBUG
365       memset(MemRange+1, 0xCD, MemRange->BlockSize-sizeof(*MemRange));
366 #endif
367       
368       // Free the memory.
369       FreeMemoryList = MemRange->FreeBlock(FreeMemoryList);
370       
371       // Finally, remove this entry from FunctionBlocks.
372       FunctionBlocks.erase(I);
373       
374       I = TableBlocks.find(F);
375       if (I == TableBlocks.end()) return;
376       
377       // Find the block that is allocated for this function.
378       MemRange = I->second;
379       assert(MemRange->ThisAllocated && "Block isn't allocated!");
380       
381       // Fill the buffer with garbage!
382 #ifndef NDEBUG
383       memset(MemRange+1, 0xCD, MemRange->BlockSize-sizeof(*MemRange));
384 #endif
385       
386       // Free the memory.
387       FreeMemoryList = MemRange->FreeBlock(FreeMemoryList);
388       
389       // Finally, remove this entry from TableBlocks.
390       TableBlocks.erase(I);
391     }
392
393     /// setMemoryWritable - When code generation is in progress,
394     /// the code pages may need permissions changed.
395     void setMemoryWritable(void)
396     {
397       for (unsigned i = 0, e = Blocks.size(); i != e; ++i)
398         sys::Memory::setWritable(Blocks[i]);
399     }
400     /// setMemoryExecutable - When code generation is done and we're ready to
401     /// start execution, the code pages may need permissions changed.
402     void setMemoryExecutable(void)
403     {
404       for (unsigned i = 0, e = Blocks.size(); i != e; ++i)
405         sys::Memory::setExecutable(Blocks[i]);
406     }
407   };
408 }
409
410 DefaultJITMemoryManager::DefaultJITMemoryManager() {
411   // Allocate a 16M block of memory for functions.
412 #if defined(__APPLE__) && defined(__arm__)
413   sys::MemoryBlock MemBlock = getNewMemoryBlock(4 << 20);
414 #else
415   sys::MemoryBlock MemBlock = getNewMemoryBlock(16 << 20);
416 #endif
417
418   unsigned char *MemBase = static_cast<unsigned char*>(MemBlock.base());
419
420   // Allocate stubs backwards from the base, allocate functions forward
421   // from the base.
422   StubBase   = MemBase;
423   CurStubPtr = MemBase + 512*1024; // Use 512k for stubs, working backwards.
424   
425   // We set up the memory chunk with 4 mem regions, like this:
426   //  [ START
427   //    [ Free      #0 ] -> Large space to allocate functions from.
428   //    [ Allocated #1 ] -> Tiny space to separate regions.
429   //    [ Free      #2 ] -> Tiny space so there is always at least 1 free block.
430   //    [ Allocated #3 ] -> Tiny space to prevent looking past end of block.
431   //  END ]
432   //
433   // The last three blocks are never deallocated or touched.
434   
435   // Add MemoryRangeHeader to the end of the memory region, indicating that
436   // the space after the block of memory is allocated.  This is block #3.
437   MemoryRangeHeader *Mem3 = (MemoryRangeHeader*)(MemBase+MemBlock.size())-1;
438   Mem3->ThisAllocated = 1;
439   Mem3->PrevAllocated = 0;
440   Mem3->BlockSize     = 0;
441   
442   /// Add a tiny free region so that the free list always has one entry.
443   FreeRangeHeader *Mem2 = 
444     (FreeRangeHeader *)(((char*)Mem3)-FreeRangeHeader::getMinBlockSize());
445   Mem2->ThisAllocated = 0;
446   Mem2->PrevAllocated = 1;
447   Mem2->BlockSize     = FreeRangeHeader::getMinBlockSize();
448   Mem2->SetEndOfBlockSizeMarker();
449   Mem2->Prev = Mem2;   // Mem2 *is* the free list for now.
450   Mem2->Next = Mem2;
451
452   /// Add a tiny allocated region so that Mem2 is never coalesced away.
453   MemoryRangeHeader *Mem1 = (MemoryRangeHeader*)Mem2-1;
454   Mem1->ThisAllocated = 1;
455   Mem1->PrevAllocated = 0;
456   Mem1->BlockSize     = (char*)Mem2 - (char*)Mem1;
457   
458   // Add a FreeRangeHeader to the start of the function body region, indicating
459   // that the space is free.  Mark the previous block allocated so we never look
460   // at it.
461   FreeRangeHeader *Mem0 = (FreeRangeHeader*)CurStubPtr;
462   Mem0->ThisAllocated = 0;
463   Mem0->PrevAllocated = 1;
464   Mem0->BlockSize = (char*)Mem1-(char*)Mem0;
465   Mem0->SetEndOfBlockSizeMarker();
466   Mem0->AddToFreeList(Mem2);
467   
468   // Start out with the freelist pointing to Mem0.
469   FreeMemoryList = Mem0;
470
471   GOTBase = NULL;
472   DlsymTable = NULL;
473 }
474
475 void DefaultJITMemoryManager::AllocateGOT() {
476   assert(GOTBase == 0 && "Cannot allocate the got multiple times");
477   GOTBase = new unsigned char[sizeof(void*) * 8192];
478   HasGOT = true;
479 }
480
481 void DefaultJITMemoryManager::SetDlsymTable(void *ptr) {
482   DlsymTable = ptr;
483 }
484
485 DefaultJITMemoryManager::~DefaultJITMemoryManager() {
486   for (unsigned i = 0, e = Blocks.size(); i != e; ++i)
487     sys::Memory::ReleaseRWX(Blocks[i]);
488   
489   delete[] GOTBase;
490   Blocks.clear();
491 }
492
493 unsigned char *DefaultJITMemoryManager::allocateStub(const GlobalValue* F,
494                                                      unsigned StubSize,
495                                                      unsigned Alignment) {
496   CurStubPtr -= StubSize;
497   CurStubPtr = (unsigned char*)(((intptr_t)CurStubPtr) &
498                                 ~(intptr_t)(Alignment-1));
499   if (CurStubPtr < StubBase) {
500     // FIXME: allocate a new block
501     fprintf(stderr, "JIT ran out of memory for function stubs!\n");
502     abort();
503   }
504   return CurStubPtr;
505 }
506
507 sys::MemoryBlock DefaultJITMemoryManager::getNewMemoryBlock(unsigned size) {
508   // Allocate a new block close to the last one.
509   const sys::MemoryBlock *BOld = Blocks.empty() ? 0 : &Blocks.front();
510   std::string ErrMsg;
511   sys::MemoryBlock B = sys::Memory::AllocateRWX(size, BOld, &ErrMsg);
512   if (B.base() == 0) {
513     fprintf(stderr,
514             "Allocation failed when allocating new memory in the JIT\n%s\n",
515             ErrMsg.c_str());
516     abort();
517   }
518   Blocks.push_back(B);
519   return B;
520 }
521
522
523 JITMemoryManager *JITMemoryManager::CreateDefaultMemManager() {
524   return new DefaultJITMemoryManager();
525 }