2010-08-18 01:40:07 -05:00
|
|
|
#include "rust_internal.h"
|
|
|
|
#include "memory_region.h"
|
|
|
|
|
2011-03-02 15:43:33 -06:00
|
|
|
// NB: please do not commit code with this uncommented. It's
|
|
|
|
// hugely expensive and should only be used as a last resort.
|
|
|
|
//
|
2011-08-16 12:28:09 -05:00
|
|
|
// #define TRACK_ALLOCATIONS
|
2011-07-18 14:02:26 -05:00
|
|
|
|
|
|
|
#define MAGIC 0xbadc0ffe
|
|
|
|
|
|
|
|
memory_region::alloc_header *memory_region::get_header(void *mem) {
|
|
|
|
return (alloc_header *)((char *)mem - sizeof(alloc_header));
|
|
|
|
}
|
2010-08-18 01:40:07 -05:00
|
|
|
|
|
|
|
memory_region::memory_region(rust_srv *srv, bool synchronized) :
|
|
|
|
_srv(srv), _parent(NULL), _live_allocations(0),
|
2011-07-27 16:34:39 -05:00
|
|
|
_detailed_leaks(srv->env->detailed_leaks),
|
2011-07-21 20:48:19 -05:00
|
|
|
_synchronized(synchronized), _hack_allow_leaks(false) {
|
2010-08-18 01:40:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
memory_region::memory_region(memory_region *parent) :
|
|
|
|
_srv(parent->_srv), _parent(parent), _live_allocations(0),
|
2010-11-30 19:10:51 -06:00
|
|
|
_detailed_leaks(parent->_detailed_leaks),
|
2011-07-21 20:48:19 -05:00
|
|
|
_synchronized(parent->_synchronized), _hack_allow_leaks(false) {
|
2010-08-18 01:40:07 -05:00
|
|
|
}
|
|
|
|
|
2011-07-07 13:53:08 -05:00
|
|
|
void memory_region::add_alloc() {
|
2011-08-12 18:36:17 -05:00
|
|
|
//_live_allocations++;
|
|
|
|
sync::increment(_live_allocations);
|
2011-07-07 13:53:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void memory_region::dec_alloc() {
|
2011-08-12 18:36:17 -05:00
|
|
|
//_live_allocations--;
|
|
|
|
sync::decrement(_live_allocations);
|
2011-07-07 13:53:08 -05:00
|
|
|
}
|
|
|
|
|
2010-08-18 01:40:07 -05:00
|
|
|
void memory_region::free(void *mem) {
|
2011-07-07 13:53:08 -05:00
|
|
|
// printf("free: ptr 0x%" PRIxPTR" region=%p\n", (uintptr_t) mem, this);
|
2011-06-16 13:13:23 -05:00
|
|
|
if (!mem) { return; }
|
2010-08-18 01:40:07 -05:00
|
|
|
if (_synchronized) { _lock.lock(); }
|
2011-07-18 14:02:26 -05:00
|
|
|
alloc_header *alloc = get_header(mem);
|
|
|
|
assert(alloc->magic == MAGIC);
|
2010-08-18 01:40:07 -05:00
|
|
|
if (_live_allocations < 1) {
|
|
|
|
_srv->fatal("live_allocs < 1", __FILE__, __LINE__, "");
|
|
|
|
}
|
2011-08-12 18:36:17 -05:00
|
|
|
release_alloc(mem);
|
2011-07-18 14:02:26 -05:00
|
|
|
_srv->free(alloc);
|
2010-08-18 01:40:07 -05:00
|
|
|
if (_synchronized) { _lock.unlock(); }
|
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
memory_region::realloc(void *mem, size_t size) {
|
|
|
|
if (_synchronized) { _lock.lock(); }
|
|
|
|
if (!mem) {
|
2011-07-07 13:53:08 -05:00
|
|
|
add_alloc();
|
2010-08-18 01:40:07 -05:00
|
|
|
}
|
2011-07-18 14:02:26 -05:00
|
|
|
size += sizeof(alloc_header);
|
|
|
|
alloc_header *alloc = get_header(mem);
|
|
|
|
assert(alloc->magic == MAGIC);
|
|
|
|
alloc_header *newMem = (alloc_header *)_srv->realloc(alloc, size);
|
2011-07-07 18:24:35 -05:00
|
|
|
#ifdef TRACK_ALLOCATIONS
|
2011-07-18 14:02:26 -05:00
|
|
|
if (_allocation_list[newMem->index] != alloc) {
|
2011-07-13 17:44:09 -05:00
|
|
|
printf("at index %d, found %p, expected %p\n",
|
2011-07-18 14:02:26 -05:00
|
|
|
alloc->index, _allocation_list[alloc->index], alloc);
|
2011-08-03 22:33:22 -05:00
|
|
|
printf("realloc: ptr 0x%" PRIxPTR " (%s) is not in allocation_list\n",
|
|
|
|
(uintptr_t) &alloc->data, alloc->tag);
|
2010-08-18 01:40:07 -05:00
|
|
|
_srv->fatal("not in allocation_list", __FILE__, __LINE__, "");
|
|
|
|
}
|
2011-07-07 18:24:35 -05:00
|
|
|
else {
|
2011-07-18 14:02:26 -05:00
|
|
|
_allocation_list[newMem->index] = newMem;
|
2011-07-13 17:44:09 -05:00
|
|
|
// printf("realloc: stored %p at index %d, replacing %p\n",
|
2011-07-07 18:24:35 -05:00
|
|
|
// newMem, index, mem);
|
|
|
|
}
|
2010-08-18 01:40:07 -05:00
|
|
|
#endif
|
|
|
|
if (_synchronized) { _lock.unlock(); }
|
2011-07-18 14:02:26 -05:00
|
|
|
return newMem->data;
|
2010-08-18 01:40:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
2011-07-18 14:02:26 -05:00
|
|
|
memory_region::malloc(size_t size, const char *tag, bool zero) {
|
2010-08-18 01:40:07 -05:00
|
|
|
if (_synchronized) { _lock.lock(); }
|
2011-07-18 14:02:26 -05:00
|
|
|
size_t old_size = size;
|
|
|
|
size += sizeof(alloc_header);
|
|
|
|
alloc_header *mem = (alloc_header *)_srv->malloc(size);
|
|
|
|
mem->magic = MAGIC;
|
|
|
|
mem->tag = tag;
|
2011-08-12 18:36:17 -05:00
|
|
|
mem->index = -1;
|
|
|
|
claim_alloc(mem->data);
|
2011-07-18 14:02:26 -05:00
|
|
|
|
|
|
|
if(zero) {
|
|
|
|
memset(mem->data, 0, old_size);
|
|
|
|
}
|
|
|
|
|
2010-08-18 01:40:07 -05:00
|
|
|
if (_synchronized) { _lock.unlock(); }
|
2011-07-18 14:02:26 -05:00
|
|
|
return mem->data;
|
2010-08-18 01:40:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
2011-07-18 14:02:26 -05:00
|
|
|
memory_region::calloc(size_t size, const char *tag) {
|
|
|
|
return malloc(size, tag, true);
|
2010-08-18 01:40:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
memory_region::~memory_region() {
|
2011-07-07 18:24:35 -05:00
|
|
|
if (_synchronized) { _lock.lock(); }
|
2011-08-12 18:36:17 -05:00
|
|
|
if (_live_allocations == 0 && !_detailed_leaks) {
|
2011-07-07 18:24:35 -05:00
|
|
|
if (_synchronized) { _lock.unlock(); }
|
2010-08-18 01:40:07 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
char msg[128];
|
2011-08-12 18:36:17 -05:00
|
|
|
if(_live_allocations > 0) {
|
|
|
|
snprintf(msg, sizeof(msg),
|
|
|
|
"leaked memory in rust main loop (%d objects)",
|
|
|
|
_live_allocations);
|
|
|
|
}
|
2010-08-18 01:40:07 -05:00
|
|
|
#ifdef TRACK_ALLOCATIONS
|
2010-11-30 19:10:51 -06:00
|
|
|
if (_detailed_leaks) {
|
2011-08-16 12:28:09 -05:00
|
|
|
int leak_count = 0;
|
2010-11-30 19:10:51 -06:00
|
|
|
for (size_t i = 0; i < _allocation_list.size(); i++) {
|
|
|
|
if (_allocation_list[i] != NULL) {
|
2011-07-28 10:19:00 -05:00
|
|
|
alloc_header *header = (alloc_header*)_allocation_list[i];
|
|
|
|
printf("allocation (%s) 0x%" PRIxPTR " was not freed\n",
|
|
|
|
header->tag,
|
|
|
|
(uintptr_t) &header->data);
|
2011-08-12 18:36:17 -05:00
|
|
|
++leak_count;
|
2010-11-30 19:10:51 -06:00
|
|
|
}
|
2010-08-18 01:40:07 -05:00
|
|
|
}
|
2011-08-12 18:36:17 -05:00
|
|
|
assert(leak_count == _live_allocations);
|
2010-08-18 01:40:07 -05:00
|
|
|
}
|
|
|
|
#endif
|
2011-08-12 18:36:17 -05:00
|
|
|
if (!_hack_allow_leaks && _live_allocations > 0) {
|
2011-07-20 01:33:37 -05:00
|
|
|
_srv->fatal(msg, __FILE__, __LINE__,
|
|
|
|
"%d objects", _live_allocations);
|
|
|
|
}
|
2011-07-07 18:24:35 -05:00
|
|
|
if (_synchronized) { _lock.unlock(); }
|
2010-08-18 01:40:07 -05:00
|
|
|
}
|
2010-11-30 19:10:51 -06:00
|
|
|
|
2011-07-20 01:33:37 -05:00
|
|
|
void
|
|
|
|
memory_region::hack_allow_leaks() {
|
|
|
|
_hack_allow_leaks = true;
|
|
|
|
}
|
|
|
|
|
2011-08-12 18:36:17 -05:00
|
|
|
void
|
|
|
|
memory_region::release_alloc(void *mem) {
|
|
|
|
alloc_header *alloc = get_header(mem);
|
|
|
|
assert(alloc->magic == MAGIC);
|
|
|
|
|
|
|
|
#ifdef TRACK_ALLOCATIONS
|
|
|
|
if (_allocation_list[alloc->index] != alloc) {
|
|
|
|
printf("free: ptr 0x%" PRIxPTR " (%s) is not in allocation_list\n",
|
|
|
|
(uintptr_t) &alloc->data, alloc->tag);
|
|
|
|
_srv->fatal("not in allocation_list", __FILE__, __LINE__, "");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// printf("freed index %d\n", index);
|
|
|
|
_allocation_list[alloc->index] = NULL;
|
|
|
|
alloc->index = -1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
dec_alloc();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
memory_region::claim_alloc(void *mem) {
|
|
|
|
alloc_header *alloc = get_header(mem);
|
|
|
|
assert(alloc->magic == MAGIC);
|
|
|
|
#ifdef TRACK_ALLOCATIONS
|
|
|
|
alloc->index = _allocation_list.append(alloc);
|
|
|
|
#endif
|
|
|
|
add_alloc();
|
|
|
|
}
|
|
|
|
|
2010-11-30 19:10:51 -06:00
|
|
|
//
|
|
|
|
// Local Variables:
|
|
|
|
// mode: C++
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
2011-07-13 15:51:20 -05:00
|
|
|
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
2010-11-30 19:10:51 -06:00
|
|
|
// End:
|
|
|
|
//
|