0.6.12.3:
[sbcl.git] / src / runtime / alloc.c
1 /*
2  * allocation routines
3  */
4
5 /*
6  * This software is part of the SBCL system. See the README file for
7  * more information.
8  *
9  * This software is derived from the CMU CL system, which was
10  * written at Carnegie Mellon University and released into the
11  * public domain. The software is in the public domain and is
12  * provided with absolutely no warranty. See the COPYING and CREDITS
13  * files for more information.
14  */
15
16 #include "runtime.h"
17 #include "sbcl.h"
18 #include "alloc.h"
19 #include "globals.h"
20 #include "gc.h"
21 #include <stdio.h>
22
23 #ifdef ibmrt
24 #define GET_FREE_POINTER() ((lispobj *)SymbolValue(ALLOCATION_POINTER))
25 #define SET_FREE_POINTER(new_value) \
26     (SetSymbolValue(ALLOCATION_POINTER,(lispobj)(new_value)))
27 #define GET_GC_TRIGGER() ((lispobj *)SymbolValue(INTERNAL_GC_TRIGGER))
28 #define SET_GC_TRIGGER(new_value) \
29     (SetSymbolValue(INTERNAL_GC_TRIGGER,(lispobj)(new_value)))
30 #else
31 #define GET_FREE_POINTER() dynamic_space_free_pointer
32 #define SET_FREE_POINTER(new_value) \
33   (dynamic_space_free_pointer = (new_value))
34 #define GET_GC_TRIGGER() current_auto_gc_trigger
35 #define SET_GC_TRIGGER(new_value) \
36     clear_auto_gc_trigger(); set_auto_gc_trigger(new_value);
37 #endif
38
39 #define ALIGNED_SIZE(n) (n+lowtag_Mask) & ~lowtag_Mask
40
41 #if defined(WANT_CGC) || defined(GENCGC)
42 extern lispobj *alloc(int bytes);
43 #else
44 static lispobj *alloc(int bytes)
45 {
46     lispobj *result;
47
48     /* Round to dual word boundary. */
49     bytes = (bytes + lowtag_Mask) & ~lowtag_Mask;
50
51     result = GET_FREE_POINTER();
52
53     SET_FREE_POINTER(result + (bytes / sizeof(lispobj)));
54
55     if (GET_GC_TRIGGER() && GET_FREE_POINTER() > GET_GC_TRIGGER()) {
56         SET_GC_TRIGGER((char *)GET_FREE_POINTER()
57                        - (char *)current_dynamic_space);
58     }
59     return result;
60 }
61 #endif
62
63 static lispobj *alloc_unboxed(int type, int words)
64 {
65     lispobj *result;
66
67     result = alloc(ALIGNED_SIZE((1 + words) * sizeof(lispobj)));
68     *result = (lispobj) (words << type_Bits) | type;
69     return result;
70 }
71
72 static lispobj alloc_vector(int type, int length, int size)
73 {
74     struct vector *result;
75
76     result = (struct vector *)
77       alloc(ALIGNED_SIZE((2 + (length*size + 31) / 32) * sizeof(lispobj)));
78
79     result->header = type;
80     result->length = make_fixnum(length);
81
82     return ((lispobj)result)|type_OtherPointer;
83 }
84
85 lispobj alloc_cons(lispobj car, lispobj cdr)
86 {
87     struct cons *ptr = (struct cons *)alloc(ALIGNED_SIZE(sizeof(struct cons)));
88
89     ptr->car = car;
90     ptr->cdr = cdr;
91
92     return (lispobj)ptr | type_ListPointer;
93 }
94
95 lispobj alloc_number(long n)
96 {
97     struct bignum *ptr;
98
99     if (-0x20000000 < n && n < 0x20000000)
100         return make_fixnum(n);
101     else {
102         ptr = (struct bignum *)alloc_unboxed(type_Bignum, 1);
103
104         ptr->digits[0] = n;
105
106         return (lispobj) ptr | type_OtherPointer;
107     }
108 }
109
110 lispobj alloc_string(char *str)
111 {
112     int len = strlen(str);
113     lispobj result = alloc_vector(type_SimpleString, len+1, 8);
114     struct vector *vec = (struct vector *)PTR(result);
115
116     vec->length = make_fixnum(len);
117     strcpy((char *)vec->data, str);
118
119     return result;
120 }
121
122 lispobj alloc_sap(void *ptr)
123 {
124     struct sap *sap = (struct sap *)alloc_unboxed
125         ((int)type_Sap, 
126          ((sizeof (struct sap)) - (sizeof (lispobj))) /  (sizeof (u32)));
127
128     sap->pointer = ptr;
129     return (lispobj) sap | type_OtherPointer;
130 }