1 /* -*- c++ -*- */ 2 /* 3 * Copyright © 2010-2014 Intel Corporation 4 * 5 * Permission is hereby granted, free of charge, to any person obtaining a 6 * copy of this software and associated documentation files (the "Software"), 7 * to deal in the Software without restriction, including without limitation 8 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 9 * and/or sell copies of the Software, and to permit persons to whom the 10 * Software is furnished to do so, subject to the following conditions: 11 * 12 * The above copyright notice and this permission notice (including the next 13 * paragraph) shall be included in all copies or substantial portions of the 14 * Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 22 * IN THE SOFTWARE. 23 */ 24 25 #pragma once 26 27 #include "util/compiler.h" 28 #include "util/glheader.h" 29 #include "util/macros.h" 30 #include "util/rounding.h" 31 #include "util/u_math.h" 32 33 namespace brw { 34 /** 35 * Simple allocator used to keep track of virtual GRFs. 36 */ 37 class simple_allocator { 38 public: simple_allocator()39 simple_allocator() : 40 sizes(NULL), offsets(NULL), count(0), total_size(0), capacity(0) 41 { 42 } 43 ~simple_allocator()44 ~simple_allocator() 45 { 46 free(offsets); 47 free(sizes); 48 } 49 50 unsigned allocate(unsigned size)51 allocate(unsigned size) 52 { 53 assert(size > 0); 54 if (capacity <= count) { 55 capacity = MAX2(16, capacity * 2); 56 sizes = (unsigned *)realloc(sizes, capacity * sizeof(unsigned)); 57 offsets = (unsigned *)realloc(offsets, capacity * sizeof(unsigned)); 58 } 59 60 sizes[count] = size; 61 offsets[count] = total_size; 62 total_size += size; 63 64 return count++; 65 } 66 67 /** 68 * Array of sizes for each allocation. The allocation unit is up to the 69 * back-end, but it's expected to be one scalar value in the FS back-end 70 * and one vec4 in the VEC4 back-end. 71 */ 72 unsigned *sizes; 73 74 /** 75 * Array of offsets from the start of the VGRF space in allocation 76 * units. 77 */ 78 unsigned *offsets; 79 80 /** Total number of VGRFs allocated. */ 81 unsigned count; 82 83 /** Cumulative size in allocation units. */ 84 unsigned total_size; 85 86 private: 87 unsigned capacity; 88 }; 89 } 90