]> git.xonotic.org Git - xonotic/gmqcc.git/blob - alloc.c
ca6504a062bd76795934f8995b7f43f3acc77469
[xonotic/gmqcc.git] / alloc.c
1 /*
2  * Copyright (C) 2012 
3  *      Dale Weiler
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of
6  * this software and associated documentation files (the "Software"), to deal in
7  * the Software without restriction, including without limitation the rights to
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9  * of the Software, and to permit persons to whom the Software is furnished to do
10  * so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in all
13  * copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21  * SOFTWARE.
22  */
23 #include <stdint.h>
24 #include <stdlib.h>
25 #include "gmqcc.h"
26
27 /*
28  * The compiler has it's own memory tracker / allocator for debugging
29  * reasons.  It will help find things like buggy CSE or OOMs (if this
30  * compiler ever grows to that point.)
31  */
32 struct memblock_t {
33         const char  *file;
34         unsigned int line;
35         unsigned int byte;
36 };
37
38 void *memory_a(unsigned int byte, unsigned int line, const char *file) {
39         struct memblock_t *data = malloc(sizeof(struct memblock_t) + byte);
40         if (!data) return NULL;
41         data->line = line;
42         data->byte = byte;
43         data->file = file;
44         printf("[MEM] allocation: %08u (bytes) at %s:%u\n", byte, file, line);
45         return (void*)((uintptr_t)data+sizeof(struct memblock_t));
46 }
47
48 void memory_d(void *ptrn, unsigned int line, const char *file) {
49         if (!ptrn) return;
50         void              *data = (void*)((uintptr_t)ptrn-sizeof(struct memblock_t));
51         struct memblock_t *info = (struct memblock_t*)data;
52         printf("[MEM] released:   %08u (bytes) at %s:%u\n", info->byte, file, line);
53         free(data);
54 }