diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-27 05:02:02 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-27 05:02:02 +0100 |
commit | e145344767f25bca786ffb298f3a2109d21b2bf6 (patch) | |
tree | 9e5e8703ff82c3a07ef6c0430ec4210bc73ca1e8 | |
parent | 75207ddffdd7a255116fdc06062d8c23460ffe12 (diff) | |
download | serenity-e145344767f25bca786ffb298f3a2109d21b2bf6.zip |
LibC: Remove the validate_mallocation() stuff since Binutils hates it.
-rw-r--r-- | LibC/stdlib.cpp | 33 |
1 files changed, 2 insertions, 31 deletions
diff --git a/LibC/stdlib.cpp b/LibC/stdlib.cpp index 8bd49ed5ee..cc152b9b12 100644 --- a/LibC/stdlib.cpp +++ b/LibC/stdlib.cpp @@ -24,15 +24,6 @@ struct MallocHeader { uint16_t chunk_count : 15; bool is_mmap : 1; size_t size; - - uint32_t compute_xorcheck() const - { - return 0x19820413 ^ ((first_chunk_index << 16) | chunk_count) ^ size; - } -}; - -struct MallocFooter { - uint32_t xorcheck; }; #define CHUNK_SIZE 32 @@ -51,7 +42,7 @@ void* malloc(size_t size) return nullptr; // We need space for the MallocHeader structure at the head of the block. - size_t real_size = size + sizeof(MallocHeader) + sizeof(MallocFooter); + size_t real_size = size + sizeof(MallocHeader); if (real_size >= PAGE_SIZE) { auto* memory = mmap(nullptr, real_size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, 0, 0); @@ -111,16 +102,13 @@ void* malloc(size_t size) header->is_mmap = false; header->size = size; - auto* footer = (MallocFooter*)((byte*)header + (header->chunk_count * CHUNK_SIZE) - sizeof(MallocFooter)); - footer->xorcheck = header->compute_xorcheck(); - for (size_t k = first_chunk; k < (first_chunk + chunks_needed); ++k) s_malloc_map[k / 8] |= 1 << (k % 8); s_malloc_sum_alloc += header->chunk_count * CHUNK_SIZE; s_malloc_sum_free -= header->chunk_count * CHUNK_SIZE; - memset(ptr, MALLOC_SCRUB_BYTE, (header->chunk_count * CHUNK_SIZE) - (sizeof(MallocHeader) + sizeof(MallocFooter))); + memset(ptr, MALLOC_SCRUB_BYTE, (header->chunk_count * CHUNK_SIZE) - sizeof(MallocHeader)); return ptr; } } @@ -132,21 +120,6 @@ void* malloc(size_t size) return nullptr; } -static void validate_mallocation(void* ptr, const char* func) -{ - auto* header = (MallocHeader*)((((byte*)ptr) - sizeof(MallocHeader))); - if (header->size == 0) { - fprintf(stderr, "%s called on bad pointer %p, size=0\n", func, ptr); - assert(false); - } - auto* footer = (MallocFooter*)((byte*)header + (header->chunk_count * CHUNK_SIZE) - sizeof(MallocFooter)); - uint32_t expected_xorcheck = header->compute_xorcheck(); - if (footer->xorcheck != expected_xorcheck) { - fprintf(stderr, "%s called on bad pointer %p, xorcheck=%w (expected %w)\n", func, ptr, footer->xorcheck, expected_xorcheck); - assert(false); - } -} - void free(void* ptr) { if (!ptr) @@ -160,7 +133,6 @@ void free(void* ptr) return; } - validate_mallocation(ptr, "free()"); for (unsigned i = header->first_chunk_index; i < (header->first_chunk_index + header->chunk_count); ++i) s_malloc_map[i / 8] &= ~(1 << (i % 8)); @@ -190,7 +162,6 @@ void* realloc(void *ptr, size_t size) { if (!ptr) return malloc(size); - validate_mallocation(ptr, "realloc()"); auto* header = (MallocHeader*)((((byte*)ptr) - sizeof(MallocHeader))); size_t old_size = header->size; if (size == old_size) |