update NOTICE and LICENSE
[nit.git] / clib / nit_main.c
1 /* This file is part of NIT ( http://www.nitlanguage.org ).
2 *
3 * Copyright 2006-2009 Jean Privat <jean@pryen.org>
4 *
5 * This file is free software, which comes along with NIT. This software is
6 * distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
7 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
8 * PARTICULAR PURPOSE. You can modify it is you want, provided this header
9 * is kept unaltered, and a notification of the changes is added.
10 * You are allowed to redistribute it and sell it, alone or is a part of
11 * another product.
12 */
13
14 #include "nit_common.h"
15 #include <signal.h>
16 #include <stdarg.h>
17 #include "gc.h"
18
19 bigint object_id_counter = 1000000;
20 enum gc_option { large, gc_opt_malloc, boehm, nitgc } gc_option;
21
22 #ifdef WITH_LIBGC
23 #define GC_DEBUG
24 #include <gc/gc.h>
25 #endif
26
27 void *raw_alloc(size_t s0)
28 {
29 switch (gc_option) {
30 case nitgc: return malloc(s0);
31 case gc_opt_malloc: return malloc(s0);
32 default: return alloc(s0);
33 }
34 }
35
36 void register_static_object(val_t *o)
37 {
38 switch (gc_option) {
39 case nitgc: GC_add_static_object(o); break;
40 default: break;
41 }
42 return;
43 }
44
45 void *large_alloc(size_t s0)
46 {
47 static char * alloc_pos = NULL;
48 static size_t alloc_size = 0;
49 void * res;
50 size_t s = ((s0+3)/4)*4;
51 if(alloc_size < s) {
52 alloc_size = s + 1024*1024;
53 alloc_pos = (char *)calloc(alloc_size, 1);
54 }
55 res = alloc_pos;
56 alloc_size -= s;
57 alloc_pos += s;
58 return res;
59 }
60
61 void * alloc(size_t s0)
62 {
63 switch (gc_option) {
64 #ifdef WITH_LIBGC
65 case boehm: return GC_MALLOC(s0);
66 #endif
67 case nitgc: return Nit_gc_malloc(s0);
68 case gc_opt_malloc: return calloc(1, s0);
69 case large:
70 default: return large_alloc(s0);
71 }
72 }
73
74 int glob_argc;
75 char **glob_argv;
76 val_t G_sys;
77
78 void exithandler(int s) {
79 fprintf(stderr, "Recieved signal %d\n", s);
80 nit_exit(1);
81 }
82 void initialize_gc_option(void) {
83 /* GC default */
84 char *def;
85 #ifdef WITH_LIBGC
86 gc_option = boehm;
87 def = "boehm";
88 #else
89 gc_option = nitgc;
90 def = "nitgc";
91 #endif
92
93 /* Process GC runtime selection */
94 if (getenv("NIT_GC_OPTION") != NULL) {
95 char *opt=getenv("NIT_GC_OPTION");
96 if (strcmp(opt, "boehm")==0) {
97 #ifdef WITH_LIBGC
98 gc_option = boehm;
99 #else
100 fprintf(stderr, "Compiled without Boehm GC support. Using default '%s'.\n", def);
101 #endif
102 } else if (strcmp(opt, "nitgc")==0) {
103 gc_option = nitgc;
104 } else if (strcmp(opt, "malloc")==0) {
105 gc_option = gc_opt_malloc;
106 } else if (strcmp(opt, "large")==0) {
107 gc_option = large;
108 } else if (strcmp(opt, "help")==0) {
109 fprintf(stderr, "NIT_GC_OPTION accepts 'nitgc'"
110 #ifdef WITH_LIBGC
111 ", 'boehm'"
112 #endif
113 ", 'large', 'malloc'. Default is '%s'.\n", def);
114 exit(1);
115 } else {
116 fprintf(stderr, "Invalid GC option in NIT_GC_OPTION environment variable. Using default '%s'.\n", def);
117 }
118 }
119
120 /* Initialize GC (if needed) */
121 switch(gc_option) {
122 #ifdef WITH_LIBGC
123 case boehm: GC_INIT(); break;
124 #endif
125 case nitgc: Nit_gc_init(); break;
126 default: break; /* Nothing */
127 }
128 }
129 void prepare_signals(void) {
130 initialize_gc_option();
131
132 signal(SIGINT,exithandler);
133 signal(SIGABRT,exithandler);
134 signal(SIGSEGV,exithandler);
135 signal(SIGILL, exithandler);
136 signal(SIGFPE, exithandler);
137 signal(SIGTERM,exithandler);
138 signal(SIGBUS, exithandler);
139 }
140 struct stack_frame_t *stack_frame_head = NULL;
141 void nit_exit(int i) {
142 char *opt=getenv("NIT_NO_STACK");
143 if (opt == NULL || strcmp(opt, "0")==0) {
144 fprintf(stderr, ",---- Stack trace -- - - -\n");
145 while(stack_frame_head != NULL) {
146 fprintf(stderr, "| %s (%s:%d)\n", stack_frame_head->meth, stack_frame_head->file, stack_frame_head->line);
147 if (stack_frame_head == stack_frame_head->prev) break;
148 stack_frame_head = stack_frame_head->prev;
149 }
150 fprintf(stderr, "`------------------- - - -\n");
151 }
152 exit(i);
153 }
154
155 void nit_abort(const char* s, const char* msg, const char* loc, int line) {
156 fprintf(stderr, s, msg);
157 fprintf(stderr, " (%s", loc);
158 if (line != 0) fprintf(stderr, ":%d", line);
159 fprintf(stderr, ")\n");
160 nit_exit(1);
161 }