2 * allocation routines for C code. For allocation done by Lisp look
3 * instead at src/compiler/target/alloc.lisp and .../macros.lisp
7 * This software is part of the SBCL system. See the README file for
10 * This software is derived from the CMU CL system, which was
11 * written at Carnegie Mellon University and released into the
12 * public domain. The software is in the public domain and is
13 * provided with absolutely no warranty. See the COPYING and CREDITS
14 * files for more information.
27 #include "genesis/vector.h"
28 #include "genesis/cons.h"
29 #include "genesis/bignum.h"
30 #include "genesis/sap.h"
32 #define GET_FREE_POINTER() dynamic_space_free_pointer
33 #define SET_FREE_POINTER(new_value) \
34 (dynamic_space_free_pointer = (new_value))
35 #define GET_GC_TRIGGER() current_auto_gc_trigger
36 #define SET_GC_TRIGGER(new_value) \
37 clear_auto_gc_trigger(); set_auto_gc_trigger(new_value);
39 #define ALIGNED_SIZE(n) (n+LOWTAG_MASK) & ~LOWTAG_MASK
41 #if defined LISP_FEATURE_GENCGC
42 extern lispobj *alloc(int bytes);
47 struct thread *th=arch_os_get_current_thread();
48 SetSymbolValue(PSEUDO_ATOMIC_INTERRUPTED, make_fixnum(0),th);
49 SetSymbolValue(PSEUDO_ATOMIC_ATOMIC, make_fixnum(1),th);
51 SetSymbolValue(PSEUDO_ATOMIC_ATOMIC, make_fixnum(0),th);
52 if (SymbolValue(PSEUDO_ATOMIC_INTERRUPTED,th))
53 /* even if we gc at this point, the new allocation will be
54 * protected from being moved, because result is on the c stack
56 do_pending_interrupt();
66 /* Round to dual word boundary. */
67 bytes = (bytes + LOWTAG_MASK) & ~LOWTAG_MASK;
69 result = (char *)GET_FREE_POINTER();
71 SET_FREE_POINTER((lispobj *)(result + bytes));
73 if (GET_GC_TRIGGER() && GET_FREE_POINTER() > GET_GC_TRIGGER()) {
74 SET_GC_TRIGGER((char *)GET_FREE_POINTER()
75 - (char *)current_dynamic_space);
77 return (lispobj *) result;
83 alloc_unboxed(int type, int words)
87 result = pa_alloc(ALIGNED_SIZE((1 + words) * sizeof(lispobj)));
88 *result = (lispobj) (words << N_WIDETAG_BITS) | type;
93 alloc_vector(int type, int length, int size)
95 struct vector *result;
97 result = (struct vector *)
98 pa_alloc(ALIGNED_SIZE((2 + (length*size + 31) / 32) * sizeof(lispobj)));
100 result->header = type;
101 result->length = make_fixnum(length);
103 return make_lispobj(result,OTHER_POINTER_LOWTAG);
107 alloc_cons(lispobj car, lispobj cdr)
109 struct cons *ptr = (struct cons *)pa_alloc(ALIGNED_SIZE(sizeof(struct cons)));
114 return make_lispobj(ptr, LIST_POINTER_LOWTAG);
122 if (-0x20000000 < n && n < 0x20000000)
123 return make_fixnum(n);
125 ptr = (struct bignum *)alloc_unboxed(BIGNUM_WIDETAG, 1);
129 return make_lispobj(ptr, OTHER_POINTER_LOWTAG);
134 alloc_base_string(char *str)
136 int len = strlen(str);
137 lispobj result = alloc_vector(SIMPLE_BASE_STRING_WIDETAG, len+1, 8);
138 struct vector *vec = (struct vector *)native_pointer(result);
140 vec->length = make_fixnum(len);
141 strcpy((char *)vec->data, str);
151 alloc_unboxed((int)SAP_WIDETAG, sizeof(struct sap)/sizeof(lispobj) -1);
153 return make_lispobj(sap,OTHER_POINTER_LOWTAG);