2018-07-01 15:52:15 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 Calvin Rose
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to
|
|
|
|
* deal in the Software without restriction, including without limitation the
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
#include <janet/janet.h>
|
2018-07-04 03:07:35 +00:00
|
|
|
#include "regalloc.h"
|
2018-07-01 15:52:15 +00:00
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
void janetc_regalloc_init(JanetcRegisterAllocator *ra) {
|
2018-07-01 15:52:15 +00:00
|
|
|
ra->chunks = NULL;
|
|
|
|
ra->count = 0;
|
|
|
|
ra->capacity = 0;
|
|
|
|
ra->max = 0;
|
2018-07-01 19:49:33 +00:00
|
|
|
ra->regtemps = 0;
|
2018-07-01 15:52:15 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
void janetc_regalloc_deinit(JanetcRegisterAllocator *ra) {
|
2018-07-01 15:52:15 +00:00
|
|
|
free(ra->chunks);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fallbacks for when ctz not available */
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define count_trailing_zeros(x) __builtin_ctz(x)
|
|
|
|
#define count_trailing_ones(x) __builtin_ctz(~(x))
|
|
|
|
#else
|
|
|
|
static int32_t count_trailing_ones(uint32_t x) {
|
|
|
|
int32_t ret = 0;
|
|
|
|
while (x & 1) {
|
|
|
|
ret++;
|
|
|
|
x >>= 1;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#define count_trailing_zeros(x) count_trailing_ones(~(x))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Get ith bit */
|
|
|
|
#define ithbit(I) ((uint32_t)1 << (I))
|
|
|
|
|
|
|
|
/* Get N bits */
|
|
|
|
#define nbits(N) (ithbit(N) - 1)
|
|
|
|
|
|
|
|
/* Copy a regsiter allocator */
|
2018-09-06 02:18:42 +00:00
|
|
|
void janetc_regalloc_clone(JanetcRegisterAllocator *dest, JanetcRegisterAllocator *src) {
|
2018-07-01 15:52:15 +00:00
|
|
|
size_t size;
|
|
|
|
dest->count = src->count;
|
|
|
|
dest->capacity = src->capacity;
|
|
|
|
dest->max = src->max;
|
|
|
|
size = sizeof(uint32_t) * dest->capacity;
|
|
|
|
dest->chunks = malloc(size);
|
2018-07-04 03:07:35 +00:00
|
|
|
dest->regtemps = 0;
|
2018-07-01 15:52:15 +00:00
|
|
|
if (!dest->chunks) {
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_OUT_OF_MEMORY;
|
2018-07-01 15:52:15 +00:00
|
|
|
}
|
|
|
|
memcpy(dest->chunks, src->chunks, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate one more chunk in chunks */
|
2018-09-06 02:18:42 +00:00
|
|
|
static void pushchunk(JanetcRegisterAllocator *ra) {
|
2018-07-01 15:52:15 +00:00
|
|
|
/* Registers 240-255 are always allocated (reserved) */
|
|
|
|
uint32_t chunk = ra->count == 7 ? 0xFFFF0000 : 0;
|
|
|
|
int32_t newcount = ra->count + 1;
|
|
|
|
if (newcount > ra->capacity) {
|
|
|
|
int32_t newcapacity = newcount * 2;
|
|
|
|
ra->chunks = realloc(ra->chunks, newcapacity * sizeof(uint32_t));
|
|
|
|
if (!ra->chunks) {
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_OUT_OF_MEMORY;
|
2018-07-01 15:52:15 +00:00
|
|
|
}
|
|
|
|
ra->capacity = newcapacity;
|
|
|
|
}
|
|
|
|
ra->chunks[ra->count] = chunk;
|
|
|
|
ra->count = newcount;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Reallocate a given register */
|
2018-09-06 02:18:42 +00:00
|
|
|
void janetc_regalloc_touch(JanetcRegisterAllocator *ra, int32_t reg) {
|
2018-07-01 15:52:15 +00:00
|
|
|
int32_t chunk = reg >> 5;
|
|
|
|
int32_t bit = reg & 0x1F;
|
|
|
|
while (chunk >= ra->count) pushchunk(ra);
|
|
|
|
ra->chunks[chunk] |= ithbit(bit);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate one register. */
|
2018-09-06 02:18:42 +00:00
|
|
|
int32_t janetc_regalloc_1(JanetcRegisterAllocator *ra) {
|
2018-07-01 15:52:15 +00:00
|
|
|
/* Get the nth bit in the array */
|
|
|
|
int32_t bit, chunk, nchunks, reg;
|
|
|
|
bit = -1;
|
|
|
|
nchunks = ra->count;
|
|
|
|
for (chunk = 0; chunk < nchunks; chunk++) {
|
|
|
|
uint32_t block = ra->chunks[chunk];
|
|
|
|
if (block == 0xFFFFFFFF) continue;
|
|
|
|
bit = count_trailing_ones(block);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* No reg found */
|
|
|
|
if (bit == -1) {
|
|
|
|
pushchunk(ra);
|
|
|
|
bit = 0;
|
|
|
|
chunk = nchunks;
|
|
|
|
}
|
|
|
|
/* set the bit at index bit in chunk */
|
|
|
|
ra->chunks[chunk] |= ithbit(bit);
|
|
|
|
reg = (chunk << 5) + bit;
|
|
|
|
if (reg > ra->max)
|
|
|
|
ra->max = reg;
|
|
|
|
return reg;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Free a register. The register must have been previously allocated
|
|
|
|
* without being freed. */
|
2018-09-06 02:18:42 +00:00
|
|
|
void janetc_regalloc_free(JanetcRegisterAllocator *ra, int32_t reg) {
|
2018-07-01 15:52:15 +00:00
|
|
|
int32_t chunk = reg >> 5;
|
|
|
|
int32_t bit = reg & 0x1F;
|
|
|
|
ra->chunks[chunk] &= ~ithbit(bit);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get a register that will fit in 8 bits (< 256). Do not call this
|
2018-09-06 02:18:42 +00:00
|
|
|
* twice with the same value of nth without calling janetc_regalloc_free
|
2018-07-01 15:52:15 +00:00
|
|
|
* on the returned register before. */
|
2018-09-06 02:18:42 +00:00
|
|
|
int32_t janetc_regalloc_temp(JanetcRegisterAllocator *ra, JanetcRegisterTemp nth) {
|
2018-07-01 15:52:15 +00:00
|
|
|
int32_t oldmax = ra->max;
|
2018-07-04 03:07:35 +00:00
|
|
|
if (ra->regtemps & (1 << nth)) {
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_exit("regtemp already allocated");
|
2018-07-04 03:07:35 +00:00
|
|
|
}
|
2018-07-01 19:49:33 +00:00
|
|
|
ra->regtemps |= 1 << nth;
|
2018-09-06 02:18:42 +00:00
|
|
|
int32_t reg = janetc_regalloc_1(ra);
|
2018-07-01 15:52:15 +00:00
|
|
|
if (reg > 0xFF) {
|
|
|
|
reg = 0xF0 + nth;
|
|
|
|
ra->max = (reg > oldmax) ? reg : oldmax;
|
|
|
|
}
|
|
|
|
return reg;
|
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
void janetc_regalloc_freetemp(JanetcRegisterAllocator *ra, int32_t reg, JanetcRegisterTemp nth) {
|
2018-07-04 03:07:35 +00:00
|
|
|
ra->regtemps &= ~(1 << nth);
|
|
|
|
if (reg < 0xF0)
|
2018-09-06 02:18:42 +00:00
|
|
|
janetc_regalloc_free(ra, reg);
|
2018-07-04 03:07:35 +00:00
|
|
|
}
|
|
|
|
|
2018-07-01 19:49:33 +00:00
|
|
|
/* Disable multi-slot allocation for now. */
|
|
|
|
|
|
|
|
/*
|
2018-09-06 02:18:42 +00:00
|
|
|
static int32_t checkrange(JanetcRegisterAllocator *ra, int32_t start, int32_t end) {
|
2018-07-01 15:52:15 +00:00
|
|
|
int32_t startchunk = start / 32;
|
|
|
|
int32_t endchunk = end / 32;
|
|
|
|
for (int32_t chunk = startchunk; chunk <= endchunk; chunk++) {
|
|
|
|
while (ra->count <= chunk) pushchunk(ra);
|
|
|
|
uint32_t mask = 0xFFFFFFFF;
|
|
|
|
if (chunk == startchunk)
|
|
|
|
mask &= ~nbits(start & 0x1F);
|
|
|
|
if (chunk == endchunk)
|
|
|
|
mask &= nbits(end & 0x1F);
|
|
|
|
uint32_t block = ra->chunks[chunk];
|
|
|
|
uint32_t masking = mask & block;
|
|
|
|
if (masking) {
|
|
|
|
int32_t nextbit = (block == 0xFFFFFFFF)
|
|
|
|
? 32
|
|
|
|
: count_trailing_zeros(masking) + 1;
|
|
|
|
return chunk * 32 + nextbit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
static void markrange(JanetcRegisterAllocator *ra, int32_t start, int32_t end) {
|
2018-07-01 15:52:15 +00:00
|
|
|
int32_t startchunk = start / 32;
|
|
|
|
int32_t endchunk = end / 32;
|
|
|
|
for (int32_t chunk = startchunk; chunk <= endchunk; chunk++) {
|
|
|
|
uint32_t mask = 0xFFFFFFFF;
|
|
|
|
if (chunk == startchunk)
|
|
|
|
mask &= ~nbits(start & 0x1F);
|
|
|
|
if (chunk == endchunk)
|
|
|
|
mask &= nbits(end & 0x1F);
|
|
|
|
ra->chunks[chunk] |= mask;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
void janetc_regalloc_freerange(JanetcRegisterAllocator *ra, int32_t start, int32_t n) {
|
2018-07-01 15:52:15 +00:00
|
|
|
int32_t end = start + n - 1;
|
|
|
|
int32_t startchunk = start / 32;
|
|
|
|
int32_t endchunk = end / 32;
|
|
|
|
for (int32_t chunk = startchunk; chunk <= endchunk; chunk++) {
|
|
|
|
uint32_t mask = 0;
|
|
|
|
if (chunk == startchunk)
|
|
|
|
mask |= nbits(start & 0x1F);
|
|
|
|
if (chunk == endchunk)
|
|
|
|
mask |= ~nbits(end & 0x1F);
|
|
|
|
ra->chunks[chunk] &= mask;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
int32_t janetc_regalloc_n(JanetcRegisterAllocator *ra, int32_t n) {
|
2018-07-01 15:52:15 +00:00
|
|
|
int32_t start = 0, end = 0, next = 0;
|
|
|
|
while (next >= 0) {
|
|
|
|
start = next;
|
|
|
|
end = start + n - 1;
|
|
|
|
next = checkrange(ra, start, end);
|
|
|
|
}
|
|
|
|
markrange(ra, start, end);
|
|
|
|
if (end > ra->max)
|
|
|
|
ra->max = end;
|
|
|
|
return start;
|
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
int32_t janetc_regalloc_call(JanetcRegisterAllocator *ra, int32_t callee, int32_t nargs) {
|
2018-07-01 15:52:15 +00:00
|
|
|
if (checkrange(ra, callee, callee + nargs) < 0) {
|
|
|
|
markrange(ra, callee + 1, callee + nargs);
|
|
|
|
return callee;
|
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
return janetc_regalloc_n(ra, nargs + 1);
|
2018-07-01 15:52:15 +00:00
|
|
|
}
|
|
|
|
|
2018-07-01 19:49:33 +00:00
|
|
|
*/
|