[368] | 1 | ////////////////////////////////////////////////////////////////////////////////// |
---|
| 2 | // File : remote_malloc.c |
---|
| 3 | // Date : 01/08/2014 |
---|
| 4 | // Author : alain greiner |
---|
| 5 | // Copyright (c) UPMC-LIP6 |
---|
| 6 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 7 | |
---|
| 8 | #include "giet_config.h" |
---|
| 9 | #include "hard_config.h" |
---|
| 10 | #include "remote_malloc.h" |
---|
| 11 | #include "stdio.h" |
---|
| 12 | #include "spin_lock.h" |
---|
| 13 | |
---|
| 14 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 15 | // Global variables describing allocators: one heap per cluster. |
---|
| 16 | // For each cluster, cur[x][y] is the virtual adrress of first free byte |
---|
| 17 | // in heap, max[x][y] is the virtual address of first forbidden byte on top |
---|
| 18 | // of heap, and lock[x][y] protect exclusive access to heap[x][y]. |
---|
| 19 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 20 | |
---|
[375] | 21 | unsigned int remote_malloc_cur[X_SIZE][Y_SIZE] = {[0 ... X_SIZE-1][0 ... Y_SIZE-1] = 0}; |
---|
[368] | 22 | |
---|
[375] | 23 | unsigned int remote_malloc_max[X_SIZE][Y_SIZE] = {[0 ... X_SIZE-1][0 ... Y_SIZE-1] = 0}; |
---|
[368] | 24 | |
---|
| 25 | giet_lock_t remote_malloc_lock[X_SIZE][Y_SIZE] __attribute__((aligned(512))); |
---|
| 26 | |
---|
| 27 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 28 | // This function returne the virtual base address of the allocated block. |
---|
| 29 | // - length is the block length (number of bytes) |
---|
| 30 | // - align is the alignment constrain (vbase multiple of Ox1 << align). |
---|
| 31 | // - If (x < X_SIZE) and (y < Y_SIZE), it uses the heap defined in cluster(x,y). |
---|
| 32 | // - It uses the heap in cluster running the calling task if x oy y too large. |
---|
| 33 | // The calling task exit with an error message if the request cannot be satisfied. |
---|
| 34 | /////////////////////////////////////////////////////////////////////////////////// |
---|
| 35 | void* remote_malloc( unsigned int length, |
---|
| 36 | unsigned int align, |
---|
| 37 | unsigned int x, |
---|
| 38 | unsigned int y ) |
---|
| 39 | { |
---|
| 40 | // checking alignment constraint |
---|
| 41 | if ( align > 31 ) |
---|
| 42 | { |
---|
[431] | 43 | giet_exit(" in remote_malloc(), align constraint > 31\n"); |
---|
[368] | 44 | } |
---|
| 45 | |
---|
| 46 | // checking requested length |
---|
| 47 | if ( length == 0 ) |
---|
| 48 | { |
---|
[431] | 49 | giet_exit(" in remote_malloc(), requested length = 0\n"); |
---|
[368] | 50 | } |
---|
| 51 | |
---|
[431] | 52 | unsigned int gpid = giet_procid(); |
---|
| 53 | unsigned int cluster = gpid >> P_WIDTH; |
---|
[368] | 54 | unsigned int proc_x = cluster >> Y_WIDTH; |
---|
| 55 | unsigned int proc_y = cluster & ((1<<Y_WIDTH)-1); |
---|
[431] | 56 | unsigned int lpid = gpid & ((1<<P_WIDTH)-1); |
---|
| 57 | |
---|
| 58 | #if GIET_DEBUG_MALLOC |
---|
[368] | 59 | giet_shr_printf("\n[DEBUG MALLOC] Processor[%d,%d,%d] enters remote_malloc()" |
---|
| 60 | " : length = %x / align = %x for heap(%d,%d)\n", |
---|
| 61 | proc_x, proc_y, lpid, length, (1<<align), x, y ); |
---|
| 62 | #endif |
---|
| 63 | |
---|
| 64 | |
---|
| 65 | unsigned int heap_x; // heap x coordinate |
---|
| 66 | unsigned int heap_y; // heap y coordibnate |
---|
| 67 | unsigned int heap_base; // heap base address |
---|
| 68 | unsigned int heap_length; // heap length |
---|
| 69 | unsigned int vbase; // virtual address to be returned |
---|
| 70 | |
---|
| 71 | unsigned int quantum = 1 << align; |
---|
| 72 | |
---|
| 73 | // compute cluster coordinates |
---|
| 74 | if ( (x < X_SIZE) && (y < Y_SIZE) ) |
---|
| 75 | { |
---|
| 76 | heap_x = x; |
---|
| 77 | heap_y = y; |
---|
| 78 | } |
---|
| 79 | else |
---|
| 80 | { |
---|
[431] | 81 | heap_x = proc_x; |
---|
| 82 | heap_y = proc_y; |
---|
[368] | 83 | } |
---|
| 84 | |
---|
| 85 | // get heap vbase and length if allocator[x][y] not initialised yet |
---|
| 86 | if ( remote_malloc_max[heap_x][heap_y] == 0 ) |
---|
| 87 | { |
---|
| 88 | giet_heap_info( &heap_base, |
---|
| 89 | &heap_length, |
---|
| 90 | heap_x, |
---|
| 91 | heap_y ); |
---|
| 92 | |
---|
| 93 | if ( heap_length == 0 ) |
---|
| 94 | { |
---|
| 95 | giet_exit("in remote_malloc(): heap length = 0\n"); |
---|
| 96 | } |
---|
| 97 | |
---|
| 98 | remote_malloc_cur[heap_x][heap_y] = heap_base; |
---|
| 99 | remote_malloc_max[heap_x][heap_y] = heap_base + heap_length; |
---|
| 100 | |
---|
| 101 | // initialise lock |
---|
| 102 | lock_release( &remote_malloc_lock[heap_x][heap_y] ); |
---|
| 103 | |
---|
| 104 | #if GIET_DEBUG_MALLOC |
---|
| 105 | giet_shr_printf("\n[DEBUG MALLOC] Processor[%d,%d,%d] initializes heap(%d,%d)\n" |
---|
| 106 | " - heap_base = %x\n" |
---|
| 107 | " - heap_size = %x\n", |
---|
| 108 | proc_x, proc_y, lpid, heap_x, heap_y, |
---|
| 109 | heap_base, heap_length ); |
---|
| 110 | #endif |
---|
| 111 | |
---|
| 112 | } |
---|
| 113 | |
---|
| 114 | // take the lock |
---|
| 115 | lock_acquire( &remote_malloc_lock[heap_x][heap_y] ); |
---|
| 116 | |
---|
| 117 | #if GIET_DEBUG_MALLOC |
---|
| 118 | giet_shr_printf("\n[DEBUG MALLOC] Processor[%d,%d,%d] takes lock for heap(%d,%d)\n", |
---|
| 119 | proc_x, proc_y, lpid, heap_x, heap_y ); |
---|
| 120 | #endif |
---|
| 121 | |
---|
| 122 | // compute vbase |
---|
| 123 | vbase = remote_malloc_cur[heap_x][heap_y]; |
---|
| 124 | if ( vbase % quantum ) vbase = ((vbase / quantum) + 1 ) * quantum; |
---|
| 125 | |
---|
| 126 | #if GIET_DEBUG_MALLOC |
---|
| 127 | giet_shr_printf("\n[DEBUG MALLOC] Processor[%d,%d,%d] allocate vaddr = %x in heap(%d,%d)\n", |
---|
| 128 | proc_x, proc_y, lpid, vbase, heap_x, heap_y ); |
---|
| 129 | #endif |
---|
| 130 | |
---|
| 131 | // check overflow |
---|
| 132 | if ( (vbase + length) > remote_malloc_max[heap_x][heap_y] ) |
---|
| 133 | { |
---|
| 134 | giet_exit("in remote_malloc(), heap overflow\n"); |
---|
| 135 | } |
---|
| 136 | |
---|
| 137 | // update heap pointer |
---|
| 138 | remote_malloc_cur[heap_x][heap_y] = vbase + length; |
---|
| 139 | |
---|
| 140 | // release the lock |
---|
| 141 | lock_release( &remote_malloc_lock[heap_x][heap_y] ); |
---|
| 142 | |
---|
| 143 | #if GIET_DEBUG_MALLOC |
---|
| 144 | giet_shr_printf("\n[DEBUG MALLOC] Processor[%d,%d,%d] releases lock for heap(%d,%d)\n", |
---|
| 145 | proc_x, proc_y, lpid, heap_x, heap_y ); |
---|
| 146 | #endif |
---|
| 147 | |
---|
| 148 | return (void*)vbase; |
---|
| 149 | } // end remote_malloc() |
---|
| 150 | |
---|
| 151 | |
---|
| 152 | |
---|
| 153 | // Local Variables: |
---|
| 154 | // tab-width: 4 |
---|
| 155 | // c-basic-offset: 4 |
---|
| 156 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
---|
| 157 | // indent-tabs-mode: nil |
---|
| 158 | // End: |
---|
| 159 | // vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|
| 160 | |
---|
| 161 | |
---|
| 162 | |
---|