mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-07-02 15:40:38 +02:00
Convert scm_gc_malloc* calls to scm_allocate*
* libguile/arrays.c: * libguile/bitvectors.c: * libguile/bytevectors.c: * libguile/chooks.c: * libguile/continuations.c: * libguile/control.c: * libguile/dynstack.c: * libguile/ephemerons.c: * libguile/filesys.c: * libguile/foreign.c: * libguile/fports.c: * libguile/frames.c: * libguile/gsubr.c: * libguile/hashtab.c: * libguile/i18n.c: * libguile/integers.c: * libguile/intrinsics.c: * libguile/load.c: * libguile/loader.c: * libguile/macros.c: * libguile/numbers.c: * libguile/options.c: * libguile/ports.c: * libguile/programs.h: * libguile/random.c: * libguile/read.c: * libguile/regex-posix.c: * libguile/smob.c: * libguile/srfi-14.c: * libguile/strings.c: * libguile/struct.c: * libguile/threads.c: * libguile/threads.h: * libguile/values.c: * libguile/vm.c: Convert all calls to scm_gc_malloc_pointerless to scm_allocate_pointerless. Convert scm_gc_malloc to either scm_allocate_tagged or scm_allocate_sloppy, depending on whether the value can be precisely traced or not.
This commit is contained in:
parent
290a57b1b0
commit
f2ad6525e6
35 changed files with 126 additions and 102 deletions
|
@ -32,6 +32,7 @@
|
|||
#include "procs.h"
|
||||
#include "random.h"
|
||||
#include "symbols.h"
|
||||
#include "threads.h"
|
||||
#include "variable.h"
|
||||
|
||||
#include "macros.h"
|
||||
|
@ -92,8 +93,8 @@ SCM
|
|||
scm_i_make_primitive_syntax_transformer (const char *name,
|
||||
scm_t_macro_primitive fn)
|
||||
{
|
||||
struct scm_syntax_transformer *tx = scm_gc_malloc (sizeof (*tx),
|
||||
"syntax transformer");
|
||||
struct scm_syntax_transformer *tx =
|
||||
scm_allocate_tagged (SCM_I_CURRENT_THREAD, sizeof (*tx));
|
||||
tx->tag = scm_tc16_syntax_transformer;
|
||||
tx->primitive = fn;
|
||||
tx->name = scm_from_utf8_symbol (name);
|
||||
|
@ -122,8 +123,8 @@ SCM_DEFINE (scm_make_syntax_transformer, "make-syntax-transformer", 3, 0, 0,
|
|||
|
||||
SCM_VALIDATE_SYMBOL (2, type);
|
||||
|
||||
struct scm_syntax_transformer *tx = scm_gc_malloc (sizeof (*tx),
|
||||
"syntax transformer");
|
||||
struct scm_syntax_transformer *tx = scm_allocate_tagged (SCM_I_CURRENT_THREAD,
|
||||
sizeof (*tx));
|
||||
tx->tag = scm_tc16_syntax_transformer;
|
||||
tx->primitive = NULL;
|
||||
tx->name = name;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue