Fix "add_list_pointer()" to keep things in proper order.
[smatch.git] / lib.c
blobe5147780ff42779ed0a2ea72380e1f1aaa720a48
1 /*
2 * 'sparse' library helper routines.
4 * Copyright (C) 2003 Transmeta Corp.
5 * 2003 Linus Torvalds
7 * Licensed under the Open Software License version 1.1
8 */
9 #include <ctype.h>
10 #include <fcntl.h>
11 #include <stdarg.h>
12 #include <stddef.h>
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <string.h>
17 #include <sys/mman.h>
18 #include <sys/types.h>
19 #include <sys/stat.h>
21 #include "lib.h"
22 #include "token.h"
23 #include "parse.h"
24 #include "symbol.h"
25 #include "expression.h"
26 #include "scope.h"
27 #include "linearize.h"
29 struct token *skip_to(struct token *token, int op)
31 while (!match_op(token, op) && !eof_token(token))
32 token = token->next;
33 return token;
36 struct token *expect(struct token *token, int op, const char *where)
38 if (!match_op(token, op)) {
39 static struct token bad_token;
40 if (token != &bad_token) {
41 bad_token.next = token;
42 warn(token->pos, "Expected %s %s", show_special(op), where);
43 warn(token->pos, "got %s", show_token(token));
45 if (op == ';')
46 return skip_to(token, op);
47 return &bad_token;
49 return token->next;
52 unsigned int hexval(unsigned int c)
54 int retval = 256;
55 switch (c) {
56 case '0'...'9':
57 retval = c - '0';
58 break;
59 case 'a'...'f':
60 retval = c - 'a' + 10;
61 break;
62 case 'A'...'F':
63 retval = c - 'A' + 10;
64 break;
66 return retval;
70 * Simple allocator for data that doesn't get partially free'd.
71 * The tokenizer and parser allocate a _lot_ of small data structures
72 * (often just two-three bytes for things like small integers),
73 * and since they all depend on each other you can't free them
74 * individually _anyway_. So do something that is very space-
75 * efficient: allocate larger "blobs", and give out individual
76 * small bits and pieces of it with no maintenance overhead.
78 struct allocation_blob {
79 struct allocation_blob *next;
80 unsigned int left, offset;
81 unsigned char data[];
84 #define CHUNK 32768
85 #define blob_alloc(size) mmap(NULL, ((size)+4095) & ~4095, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0)
86 #define blob_free(addr,size) munmap((addr), ((size)+4095) & ~4095)
88 struct allocator_struct {
89 const char *name;
90 struct allocation_blob *blobs;
91 unsigned int alignment;
92 unsigned int chunking;
93 /* statistics */
94 unsigned int allocations, total_bytes, useful_bytes;
97 void drop_all_allocations(struct allocator_struct *desc)
99 struct allocation_blob *blob = desc->blobs;
101 desc->blobs = NULL;
102 desc->allocations = 0;
103 desc->total_bytes = 0;
104 desc->useful_bytes = 0;
105 while (blob) {
106 struct allocation_blob *next = blob->next;
107 blob_free(blob, desc->chunking);
108 blob = next;
112 void *allocate(struct allocator_struct *desc, unsigned int size)
114 unsigned long alignment = desc->alignment;
115 struct allocation_blob *blob = desc->blobs;
116 void *retval;
118 desc->allocations++;
119 desc->useful_bytes += size;
120 size = (size + alignment - 1) & ~(alignment-1);
121 if (!blob || blob->left < size) {
122 unsigned int offset, chunking = desc->chunking;
123 struct allocation_blob *newblob = blob_alloc(chunking);
124 if (!newblob)
125 die("out of memory");
126 desc->total_bytes += chunking;
127 newblob->next = blob;
128 blob = newblob;
129 desc->blobs = newblob;
130 offset = offsetof(struct allocation_blob, data);
131 if (alignment > offset)
132 offset = alignment;
133 blob->left = chunking - offset;
134 blob->offset = offset - offsetof(struct allocation_blob, data);
136 retval = blob->data + blob->offset;
137 blob->offset += size;
138 blob->left -= size;
139 return retval;
142 static void show_allocations(struct allocator_struct *x)
144 fprintf(stderr, "%s: %d allocations, %d bytes (%d total bytes, "
145 "%6.2f%% usage, %6.2f average size)\n",
146 x->name, x->allocations, x->useful_bytes, x->total_bytes,
147 100 * (double) x->useful_bytes / x->total_bytes,
148 (double) x->useful_bytes / x->allocations);
151 struct allocator_struct ident_allocator = { "identifiers", NULL, __alignof__(struct ident), CHUNK };
152 struct allocator_struct token_allocator = { "tokens", NULL, __alignof__(struct token), CHUNK };
153 struct allocator_struct symbol_allocator = { "symbols", NULL, __alignof__(struct symbol), CHUNK };
154 struct allocator_struct expression_allocator = { "expressions", NULL, __alignof__(struct expression), CHUNK };
155 struct allocator_struct statement_allocator = { "statements", NULL, __alignof__(struct statement), CHUNK };
156 struct allocator_struct string_allocator = { "strings", NULL, __alignof__(struct statement), CHUNK };
157 struct allocator_struct scope_allocator = { "scopes", NULL, __alignof__(struct scope), CHUNK };
158 struct allocator_struct bytes_allocator = { "bytes", NULL, 1, CHUNK };
159 struct allocator_struct basic_block_allocator = { "basic_block", NULL, __alignof__(struct basic_block), CHUNK };
160 struct allocator_struct entrypoint_allocator = { "entrypoint", NULL, __alignof__(struct entrypoint), CHUNK };
162 #define __ALLOCATOR(type, size, x) \
163 type *__alloc_##x(int extra) \
165 return allocate(&x##_allocator, size+extra); \
167 void show_##x##_alloc(void) \
169 show_allocations(&x##_allocator); \
171 void clear_##x##_alloc(void) \
173 drop_all_allocations(&x##_allocator); \
175 #define ALLOCATOR(x) __ALLOCATOR(struct x, sizeof(struct x), x)
177 ALLOCATOR(ident); ALLOCATOR(token); ALLOCATOR(symbol);
178 ALLOCATOR(expression); ALLOCATOR(statement); ALLOCATOR(string);
179 ALLOCATOR(scope); __ALLOCATOR(void, 0, bytes);
180 ALLOCATOR(basic_block); ALLOCATOR(entrypoint);
182 int ptr_list_size(struct ptr_list *head)
184 int nr = 0;
186 if (head) {
187 struct ptr_list *list = head;
188 do {
189 nr += list->nr;
190 } while ((list = list->next) != head);
192 return nr;
195 void iterate(struct ptr_list *head, void (*callback)(void *, void *, int), void *data)
197 struct ptr_list *list = head;
198 int flag = ITERATE_FIRST;
200 if (!head)
201 return;
202 do {
203 int i;
204 for (i = 0; i < list->nr; i++) {
205 if (i == list->nr-1 && list->next == head)
206 flag |= ITERATE_LAST;
207 callback(list->list[i], data, flag);
208 flag = 0;
210 list = list->next;
211 } while (list != head);
214 void add_ptr_list(struct ptr_list **listp, void *ptr)
216 struct ptr_list *list = *listp;
217 struct ptr_list *last;
218 int nr;
220 if (!list || (nr = (last = list->prev)->nr) >= LIST_NODE_NR) {
221 struct ptr_list *newlist = malloc(sizeof(*newlist));
222 if (!newlist)
223 die("out of memory for symbol/statement lists");
224 memset(newlist, 0, sizeof(*newlist));
225 if (!list) {
226 newlist->next = newlist;
227 newlist->prev = newlist;
228 *listp = newlist;
229 } else {
230 newlist->prev = last;
231 newlist->next = list;
232 list->prev = newlist;
233 last->next = newlist;
235 last = newlist;
236 nr = 0;
238 last->list[nr] = ptr;
239 nr++;
240 last->nr = nr;
243 void concat_ptr_list(struct ptr_list *a, struct ptr_list **b)
245 void *entry;
246 FOR_EACH_PTR(a, entry) {
247 add_ptr_list(b, entry);
248 } END_FOR_EACH_PTR;
251 void free_ptr_list(struct ptr_list **listp)
253 struct ptr_list *tmp, *list = *listp;
255 if (!list)
256 return;
258 list->prev->next = NULL;
259 while (list) {
260 tmp = list;
261 list = list->next;
262 free(tmp);
265 *listp = NULL;
268 static void do_warn(const char *type, struct position pos, const char * fmt, va_list args)
270 static char buffer[512];
271 const char *name;
273 vsprintf(buffer, fmt, args);
274 name = input_streams[pos.stream].name;
276 fprintf(stderr, "%s: %s:%d:%d: %s\n",
277 type, name, pos.line, pos.pos, buffer);
280 void warn(struct position pos, const char * fmt, ...)
282 static int warnings = 0;
283 va_list args;
285 if (warnings > 100) {
286 static int once = 0;
287 if (once)
288 return;
289 fmt = "too many warnings";
290 once = 1;
293 va_start(args, fmt);
294 do_warn("warning", pos, fmt, args);
295 va_end(args);
296 warnings++;
299 void error(struct position pos, const char * fmt, ...)
301 va_list args;
302 va_start(args, fmt);
303 do_warn("error", pos, fmt, args);
304 va_end(args);
305 exit(1);
308 void die(const char *fmt, ...)
310 va_list args;
311 static char buffer[512];
313 va_start(args, fmt);
314 vsnprintf(buffer, sizeof(buffer), fmt, args);
315 va_end(args);
317 fprintf(stderr, "%s\n", buffer);
318 exit(1);
321 unsigned int pre_buffer_size;
322 unsigned char pre_buffer[8192];
324 int preprocess_only;
325 char *include;
326 int include_fd = -1;
328 void add_pre_buffer(const char *fmt, ...)
330 va_list args;
331 unsigned int size;
333 va_start(args, fmt);
334 size = pre_buffer_size;
335 size += vsnprintf(pre_buffer + size,
336 sizeof(pre_buffer) - size,
337 fmt, args);
338 pre_buffer_size = size;
339 va_end(args);
342 char **handle_switch_D(char *arg, char **next)
344 const char *name = arg + 1;
345 const char *value = "";
346 for (;;) {
347 char c;
348 c = *++arg;
349 if (!c)
350 break;
351 if (isspace(c) || c == '=') {
352 *arg = '\0';
353 value = arg + 1;
354 break;
357 add_pre_buffer("#define %s %s\n", name, value);
358 return next;
361 char **handle_switch_E(char *arg, char **next)
363 preprocess_only = 1;
364 return next;
367 char **handle_switch_v(char *arg, char **next)
369 verbose = 1;
370 return next;
372 char **handle_switch_I(char *arg, char **next)
374 add_pre_buffer("#add_include \"%s/\"\n", arg + 1);
375 return next;
378 char **handle_switch_i(char *arg, char **next)
380 if (*next && !strcmp(arg, "include")) {
381 char *name = *++next;
382 int fd = open(name, O_RDONLY);
384 include_fd = fd;
385 include = name;
386 if (fd < 0)
387 perror(name);
389 return next;
392 char **handle_switch(char *arg, char **next)
394 char **rc = next;
396 switch (*arg) {
397 case 'D': rc = handle_switch_D(arg, next); break;
398 case 'E': rc = handle_switch_E(arg, next); break;
399 case 'v': rc = handle_switch_v(arg, next); break;
400 case 'I': rc = handle_switch_I(arg, next); break;
401 case 'i': rc = handle_switch_i(arg, next); break;
402 default:
404 * Ignore unknown command line options:
405 * they're probably gcc switches
407 break;
409 return rc;
412 void create_builtin_stream(void)
414 add_pre_buffer("#define __i386__ 1\n");
415 add_pre_buffer("#define __linux__ 1\n");
416 add_pre_buffer("#define __STDC__ 1\n");
417 add_pre_buffer("#define linux linux\n");
418 add_pre_buffer("#define cond_syscall(x)\n");
419 add_pre_buffer("#define __GNUC__ 2\n");
420 add_pre_buffer("#define __GNUC_MINOR__ 95\n");
421 add_pre_buffer("#define __func__ \"function\"\n");
422 add_pre_buffer("#define __extension__\n");
423 add_pre_buffer("#define __pragma__\n");
424 add_pre_buffer("#define __builtin_stdarg_start(a,b) ((a) = (__builtin_va_list)(&(b)))\n");
425 add_pre_buffer("#define __builtin_va_arg(arg,type) ((type)0)\n");
426 add_pre_buffer("#define __builtin_va_end(arg)\n");