* Remove function scm_init_iprocs, remove struct scm_iproc and simplify
[bpt/guile.git] / libguile / ChangeLog
CommitLineData
e59bb516
DH
12000-04-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
2
3 * pairs.c (cxrs, scm_init_pairs): Simplify initialization of
4 c[ad]+r functions.
5
6 * procs.c (scm_init_iprocs), procs.h (scm_subr, scm_iproc,
7 scm_dsubr, scm_init_iprocs): Removed.
8
9 * procs.h (SCM_SUBRF, SCM_DSUBRF): Access the cell words
10 directly instead of casting a cell to a C struct.
11
820920e6
MD
122000-04-22 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
13
14 Better modularization of GC extensions through new C level GC
15 hooks:
16
17 * weaks.c (scm_weaks_prehistory): New function: Add
18 scm_weak_vector_gc_init to scm_before_mark_c_hook; Add
19 scm_mark_weak_vector_spines to scm_before_sweep_c_hook.
20 (scm_scan_weak_vectors): New function; added to
21 scm_after_sweep_c_hook.
22
23 * weaks.h (scm_weak_vectors, scm_weaks_prehistory): Added
24 declarations.
25
26 * guardians.h (scm_guardian_gc_init, scm_guardian_zombify): Are
27 now static.
28
29 * guardians.c (scm_guardian_gc_init): Turned into a hook function
30 and added to scm_before_mark_c_hook.
31 (scm_guardian_zombify): Turned into a hook function and added to
32 scm_before_sweep_c_hook.
33
34 * async.c (scm_sys_gc_async_thunk): Run after-gc-hook.
35 Added #include "libguile/gc.h".
36
37 * gc.h: Added #include "libguile/hooks.h".
38
39 * gc.c: Removed #include "libguile/guardians.h".
40 (scm_before_gc_c_hook, scm_before_mark_c_hook,
41 scm_before_sweep_c_hook, scm_after_sweep_c_hook,
42 scm_after_gc_c_hook): New C level hooks.
43 (scm_after_gc_hook): New Scheme level hook.
44 (scm_gc_sweep): Moved scanning of weak vectors to weaks.c.
45 (scm_igc): Moved initialization of scm_weak_vectors and the call
46 to scm_guardian_gc_init to respective module.
47 (scm_mark_weak_vector_spines): Moved to weaks.c;
48 Call to scm_guardian_zombify moved to guardians.c;
49 Run scm_before_gc_c_hook, scm_before_sweep_c_hook,
50 scm_after_gc_c_hook at appropriate places.
51 (scm_init_gc): Initialize scm_after_gc_hook.
52
53 * hooks.c, hooks.h (scm_make_hook_with_name): Removed deprecated
54 function.
55
56 * init.c (scm_boot_guile_1): Added `scm_init_hooks'.
57
58 * Makefile.am: Added hooks.c, hooks.h, hooks.x.
59
60 * feature.c, feature.h: Broke out hook code into separate files.
61
62 * hooks.c, hooks.h: New files.
9764c29b 63
a0599745
MD
64 * *.*: Change includes so that they always use the "prefixes"
65 libguile/, qt/, guile-readline/, or libltdl/.
66 (Thanks to Tim Mooney.)
67
68 * Makefile.am (INCLUDES): Removed THREAD_CPPFLAGS and INCLTDL.
69 (DEFS): Added. automake adds -I options to DEFS, and we don't
70 want that.
71 Removed all -I options except for the root source directory and
72 the root build directory.
73
f4b0c568
MD
74 * numbers.c (scm_odd_p, scm_even_p): Use SCM_WRONG_TYPE_ARG
75 instead of SCM_ASSERT (0, ...). (Some compilers will complain
76 about control reaching end of function otherwise, and, besides,
77 the new code is not less clear.)
78
9764c29b
MD
79 * gc.c (scm_must_malloc, scm_must_realloc, scm_must_free): Added
80 calls to malloc debugging functions.
81
82 * init.c (scm_boot_guile_1): Added calls to debug-malloc init
83 functions.
84
85 * Makefile.am: Added debug-malloc.c, debug-malloc.h,
86 debug-malloc.x.
87
88 * debug-malloc.c, debug-malloc.h: New files.
89
4219f20d
DH
902000-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
91
92 * numbers.c (scm_exact_p, scm_odd_p, scm_even_p): Added
93 documentation strings.
94
95 * numbers.c (scm_exact_p, scm_odd_p, scm_even_p, scm_abs,
96 scm_quotient): Reordered dispatch sequence to first handle
97 immediates, second handle bignums and finally handle generic
98 functions respectively signal wrong type arguments. Hopefully
99 this will allow for easier separation when goops is integrated.
100
195e6201
DH
1012000-04-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
102
103 * gc.c (which_seg): Use SCM2PTR to convert a non immediate SCM
104 variable into a pointer to a heap cell.
105
106 * gc.c (scm_mark_locations, scm_cellp, init_heap_seg,
107 scm_unhash_name): Remove redundant cast to SCM_CELLPTR.
108
9e882eec
DH
1092000-04-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
110
111 * print.c (scm_iprin1): Don't assign zero to SCM values, use
112 SCM_UNDEFINED instead.
113
114 * weaks.c (scm_make_weak_vector): Fix assignment of zero to a
115 vector element. (Still to be improved)
116
3201d763
DH
1172000-04-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
118
119 * eval.c (undef_cell): Removed, replaced by:
120
121 (undef_object): Added to replace undef_cell.
122
123 (scm_lookupcar, scm_lookupcar1): Use undef_object.
124
125 * eval.c (scm_lookupcar, scm_lookupcar1, scm_m_atfop,
126 scm_m_atbind, CHECK_EQVISH, SCM_CEVAL), procs.h (SCM_SETCODE):
127 Don't perform arithmetic operations with SCM values.
128
129 * eval.c (scm_lookupcar, scm_lookupcar1, scm_m_atfop,
130 scm_m_atbind, scm_eval_args, scm_deval_args, SCM_CEVAL): Use
131 symbolic names for the tc3 type codes.
132
133 * eval.c (scm_m_define, SCM_CEVAL, SCM_APPLY): Remove redundant
134 cast to SCM.
135
136 * eval.c (scm_eval_args, scm_deval_args, SCM_CEVAL): Made the
137 access of the struct vcell element explicit.
138
f7c38587
MD
1392000-04-19 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
140
141 * struct.c (scm_struct_free_light, scm_struct_free_standard,
142 scm_struct_free_entity): Use `scm_must_free' instead of `free'.
143
144 * procs.c (scm_make_subr_opt): Tell scm_must_realloc that we're
145 realloc:ing scm_subr_table ("what" instead of "who").
146
147 * numbers.c (scm_adjbig): Ditto.
148
baa702c8
DH
1492000-04-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
150
151 * unif.c (l2ra): Don't eliminate the call to scm_array_set_x
152 itself, as was done in the previous 'patch'. (Thanks to Radey
153 Shouman)
154
fee7ef83
DH
1552000-04-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
156
157 * options.c (scm_options), read.c (recsexpr): Remove redundant
158 SCM_IMP test.
159
160 * print.c (scm_iprin1): Made the access of the struct vcell
161 element explicit.
162
163 * print.h (SCM_PRINT_CLOSURE): Added call to SCM_PACK.
164
165 * ramap.c (scm_ra_eqp, ra_compare), unif.c
166 (scm_uniform_vector_ref, scm_cvref, rapr1): Separated accesses to
167 unsigned long and signed long arrays and clarified the way the
168 access is performed.
169
170 * ramap.c (scm_array_map_x, raeql), read.c (scm_lreadr), stacks.c
171 (narrow_stack), unif.c (scm_cvref, scm_uniform_array_read_x,
172 scm_raprin1): Use SCM_EQ_P to compare SCM values.
173
174 * strings.c (scm_makstr): Treat the msymbol slots as a field of
175 scm_bits_t values.
176
177 * struct.h (SCM_SET_VTABLE_DESTRUCTOR): Treat the struct data as
178 a field of scm_bits_t values.
179
180 * unif.c (l2ra): Don't test result of scm_array_set_x against
181 zero: It is always SCM_UNSPECIFIED.
182
9d0633a8
MD
1832000-04-18 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
184
185 * script.c (scm_compile_shell_switches): Also enable
186 record-positions when given the --debug option. (Thanks to Diego
187 Dainese.)
188
230d095f
DH
1892000-04-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
190
191 * print.c (ENTER_NESTED_DATA, print_circref, scm_iprlist):
192 Compare SCM's with SCM_EQ_P.
193
194 * print.c (scm_make_print_state), srcprop.c
195 (scm_source_properties): Use valid scheme object to initialize
196 SCM variable.
197
198 * print.c (scm_iprin1): Remove redundant calls to SCM_UNPACK.
199
c8045e8d
DH
2002000-04-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
201
202 * struct.c (scm_alloc_struct, scm_struct_free_0,
203 scm_struct_free_light, scm_struct_free_standard,
204 scm_struct_free_entity, scm_make_struct, scm_make_vtable_vtable),
205 struct.h (scm_struct_free_t, scm_alloc_struct, scm_struct_free_0,
206 scm_struct_free_light, scm_struct_free_standard,
207 scm_struct_free_entity): Struct data regions (and thus also
208 vtable data regions) are now C arrays of scm_bits_t elements.
209
210 * gc.c (scm_gc_mark, scm_gc_sweep, scm_unhash_name): Made the
211 mixup of glocs and structs explicit.
212
213 * gc.c (scm_unprotect_object): Compare SCM's with SCM_EQ_P.
214
b0c54567
DH
2152000-04-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
216
217 * eval.c (scm_unmemocar): Use macros to test for gloc cell.
218 Minimize scope of variable 'ir'.
219
220 * eval.h (SCM_IFRAME, SCM_IDIST), weaks.h (SCM_IS_WHVEC_ANY):
221 Added missing call to SCM_UNPACK.
222
b9c90f11
MD
2232000-04-17 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
224
7aac9824 225 * validate.h (SCM_VALIDATE_INUM_RANGE_COPY,
2891588b 226 SCM_VALIDATE_NUMBER_COPY): New macros.
b9c90f11 227
9ae58e2d
MD
2282000-04-16 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
229
230 * script.c (scm_compile_shell_switches): Added --debug option.
231
49e12eb3
MD
2322000-04-16 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
233
234 * vectors.c (scm_vector_set_x): Return SCM_UNSPECIFIED (as
235 specified by R5RS).
236
7c1e0b12
MD
2372000-04-15 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
238
239 * ports.h (SCM_INPUT_PORT_P, SCM_OUTPUT_PORT_P): New macros.
240 (SCM_INPORTP, SCM_OUTPORTP): Marked as deprecated.
241
242 * validate.h (SCM_VALIDATE_INPUT_PORT, SCM_VALIDATE_OUTPUT_PORT):
243 New macros.
244 Cleanup of code layout.
245
246 * ports.c, ports.h (close-input-port, close-output-port): New R5RS
247 procedures.
248
01c8a3dd
DH
2492000-04-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
250
251 * continuations.c (scm_make_cont, scm_dynthrow): Completely
252 separated implementations for defined (CHEAP_CONTINUATIONS) and
253 !defined (CHEAP_CONTINUATIONS). Also, now using memcpy for stack
254 copying.
255
256 * continuations.c (grow_stack): Renamed from grow_throw.
257
258 * continuations.c (copy_stack_and_call): New static function.
259
260 * continuations.c (scm_dynthrow): Simplified and made static.
261
262 * continuations.h (scm_dynthrow): Made static.
263
553f4414
MD
2642000-04-13 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
265
266 * unif.c, unif.h (shared-array-root, shared-array-offset,
267 shared-array-increments): New primitives.
268
cf551a2b
DH
2692000-04-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
270
271 * gc.c (scm_gc_sweep): Simplify the computation of freed memory
272 size for msymbols.
273
274 * symbols.h (SCM_SLOTS, SCM_SYMBOL_FUNC, SCM_SYMBOL_PROPS,
275 SCM_SYMBOL_HASH): The msymbol slots are now a field of scm_bits_t
276 values.
277
278 * symbols.h (SCM_SET_SYMBOL_FUNC, SCM_SET_SYMBOL_PROPS): New
279 macros.
280
281 symbols.c (scm_intern_obarray_soft, msymbolize, scm_symbol_fset_x,
282 scm_symbol_pset_x): Use them.
283
284 * symbols.c (scm_symbol_hash): Unpack to access SCM raw data.
285
12a8b769
DH
2862000-04-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
287
288 * ports.c (scm_port_print): The port data is read as raw data.
289
290 * ports.h (SCM_TC2PTOBNUM, SCM_PTOBNUM): Fix SCM/scm_bits_t
291 mismatch.
292
d8c40b9f
DH
2932000-04-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
294
295 * eval.c (SCM_CEVAL), objects.c (scm_mcache_lookup_cmethod,
296 scm_make_subclass_object), objects.h (SCM_CLASS_FLAGS,
297 SCM_ENTITY_PROCEDURE, SCM_ENTITY_SETTER), struct.c
298 (scm_struct_init, scm_struct_vtable_p, scm_make_struct,
299 scm_struct_ref, scm_struct_set_x), struct.h (SCM_STRUCT_DATA):
300 The struct data is now an array of scm_bits_t variables.
301
302 * objects.h (SCM_SET_ENTITY_PROCEDURE): New macro.
303
cf551a2b 304 objects.c (scm_set_object_procedure_x): Use it.
d8c40b9f
DH
305
306 * struct.c (scm_struct_init): Unused variable 'data' removed.
307
308 (scm_struct_vtable_p): Redundant SCM_IMP tests removed.
309
1c3e63f0
DH
3102000-04-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
311
312 * objects.h (SCM_OBJ_CLASS_FLAGS, SCM_OBJ_CLASS_REDEF), struct.h
313 (SCM_STRUCT_VTABLE_DATA, SCM_STRUCT_LAYOUT, SCM_STRUCT_VTABLE,
314 SCM_STRUCT_PRINTER): The struct vtable data is now an array of
315 scm_bits_t variables.
316
317 * struct.h (SCM_SET_STRUCT_LAYOUT): New macro.
318
cf551a2b 319 struct.c (scm_make_vtable_vtable): Use it.
1c3e63f0 320
bc66755e
DH
3212000-04-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
322
323 * symbols.c (scm_sym2vcell, scm_sym2ovcell_soft, scm_sym2ovcell,
324 scm_intern_obarray_soft, scm_sysintern0,
325 scm_string_to_obarray_symbol, scm_intern_symbol,
326 scm_unintern_symbol, scm_symbol_binding, scm_symbol_interned_p,
327 scm_symbol_bound_p, scm_symbol_set_x): Don't use C operators to
328 compare SCM values.
329
828865c3
DH
3302000-04-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
331
332 * numbers.c (scm_quotient, scm_modulo): Reordered to handle the
333 case of immediate numbers parameters first. Also, only use
334 decoded numbers for numerical comparison.
335
1cf49a85
MD
3362000-04-10 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
337
338 * objects.h: Don't redeclare scm_call_generic_0 and
339 scm_apply_generic. (Thanks to Tal Tversky.)
340
dba97178
DH
3412000-04-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
342
343 * hash.c (scm_hasher): Use symbolic names for the tc3 constants.
344 Unpack SCM value to use it as a switch parameter. Don't cast SCM
345 values to int values.
346
3da01fa3
MD
3472000-04-10 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
348
349 * coop.c (mother): Handled EINTR (the wait has been interrupted by
350 a signal).
351
451e591c
DH
3522000-04-07 Dirk Herrmann <D.Herrmann@tu-bs.de>
353
354 * __scm.h (SCM_WTA_DISPATCH_[012n]): To test whether a SCM value
355 contains a raw zero value it has to be unpacked.
356
357 * debug.c (with_traps_inner, scm_with_traps): Passing SCM values
358 via void * requires unpacking / packing.
359
360 * stacks.h (SCM_STACKP): Remove unnecessary SCM_NIMP test and use
361 SCM_EQ_P to compare SCM values.
362
363 * stacks.h (SCM_FRAME_VOID_P, SCM_FRAME_REAL_P, SCM_FRAME_PROC_P,
364 SCM_FRAME_EVAL_ARGS_P, SCM_FRAME_OVERFLOW_P): Remove unnecessary
365 call to SCM_UNPACK.
366
367 * tags.h (SCM_NECONSP): Define in terms of SCM_ECONSP
368
369 * tags.h (SCM_ECONSP): Clarify the test for glocs. This is still
370 quite ugly.
371
e94e3f21
ML
3722000-04-05 Michael Livshin <mlivshin@bigfoot.com>
373
374 * async.[ch]: unexpose low-level async access macros (thanks to
375 Dirk Herrmann).
376
377 * validate.h: move async validation macros to async.c (nobody else
378 needs them anyway), and rename them.
379
843e4e9d
ML
3802000-04-04 Michael Livshin <mlivshin@bigfoot.com>
381
382 * async.h: kill the scm_async_t struct. having a heap cell
383 pretending to be a C struct is not helthy, and is not needed here
384 anyway, as asyncs happily fit in one heap cell.
385
386 * async.c: reflect the fact that asyncs are now represented by
387 single heap cell each.
388
873c35ee
GH
3892000-04-04 Gary Houston <ghouston@arglist.com>
390
391 * error.c (scm_syserror): save errno before doing anything else,
392 since it's used in two expressions and may get mutated (thanks to
393 Dirk Herrmann).
394
4260a7fc
DH
3952000-04-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
396
397 * debug.c (scm_procedure_source, scm_procedure_environment),
398 gsubr.c (scm_make_gsubr_with_generic, scm_gsubr_apply), procs.c
399 (scm_procedure, scm_setter): Return valid scheme value as dummy.
400
401 * filesys.c (scm_readdir, scm_rewinddir, scm_closedir,
402 scm_dir_print, scm_dir_free), numbers.h (SCM_COMPLEX_REAL,
403 SCM_COMPLEX_IMAG), regex-posix.h (SCM_RGX), throw.c (JBJMPBUF,
404 SETJBJMPBUF, JBJMPBUF, SETJBJMPBUF, freejb, print_lazy_catch,
405 scm_ithrow), unif.c (scm_uniform_vector_ref, scm_cvref,
406 scm_array_set_x, rapr1), unif.h (SCM_ARRAY_V, SCM_ARRAY_BASE),
407 vectors.h (SCM_VELTS, SCM_VELTS_AS_STACKITEMS, SCM_SETVELTS): Use
408 SCM_{SET_}?CELL_WORD* to access cell entries with raw data.
409
410 * filesys.c (scm_closedir), numbers.c (scm_addbig), numbers.h
411 (SCM_SETNUMDIGS), throw.c (JBACTIVE, SCM_JBDFRAME,
412 SCM_SETJBDFRAME): Read and modify data bits in cell entry #0 using
413 SCM_{SET_}?CELL_WORD_0.
414
415 * filesys.c (fill_select_type, retrieve_select_type, scm_select),
416 numbers.c (scm_gcd, scm_lcm, scm_integer_expt, scm_zero_p,
417 scm_product, scm_divide), posix.c (scm_getgrgid), ramap.c
418 (scm_array_fill_int, racp), throw.c (scm_catch, scm_lazy_catch,
419 scm_ithrow), unif.c (scm_make_uve, scm_array_p,
420 scm_transpose_array, scm_array_set_x, scm_bit_set_star_x,
421 scm_bit_count_star, l2ra), variable.c (prin_var,
422 scm_make_variable, scm_make_undefined_variable,
423 scm_builtin_variable), vectors.c (scm_vector_set_length_x),
424 vports.c (sf_flush, sf_close): Don't use C operators to compare
425 SCM values.
426
427 * numbers.c (scm_odd_p, scm_even_p), variable.c (prin_var): Must
428 unpack SCM values to access their raw contents.
429
430 * numbers.c (big2str): Eliminate unnecessary casts to SCM.
431
432 * numbers.h (SCM_NEWREAL), regex-posix.h (SCM_RGXP), vports.c
433 (scm_make_soft_port): Use SCM_{SET_}?CELL_TYPE to access the cell
434 type information.
435
436 * throw.c (printjb): Eliminated unnecessary unpack.
437
438 * variable.c (make_vcell_variable): Smob data is of type
439 scm_bits_t.
440
5b15c3b4
MD
4412000-04-04 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
442
443 * print.c: Removed promise to rewrite printer code before next
444 release. :)
445
395c8567
MD
4462000-04-03 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
447
448 * iselect.c (add_fd_sets): Insert empty statement after label.
449 (Thanks to Tim Mooney.)
450
50fecba9
ML
4512000-04-03 Michael Livshin <mlivshin@bigfoot.com>
452
453 * guardians.c (scm_guardian_zombify): mark all zombies in a
454 separate loop after processing all the currently known live
455 guardians, so as to not introduce order dependencies (thanks to
f6e2fd8b 456 Gary Houston). note that the order problems are still there if
843e4e9d 457 some guardians are themselves zombies, but that's a sick case that
f6e2fd8b
ML
458 I'm not going to worry about.
459 also, make another outer loop to process zombified
50fecba9
ML
460 guardians (which are uncovered while marking zombies).
461
54778cd3
DH
4622000-04-03 Dirk Herrmann <D.Herrmann@tu-bs.de>
463
464 * evalext.c (scm_definedp, scm_m_undefine), gc.c
465 (scm_mark_weak_vector_spines, scm_gc_sweep), hashtab.c
466 (scm_hashq_ref, scm_hashv_ref, scm_hash_ref, scm_hashx_ref),
467 keywords.c (scm_make_keyword_from_dash_symbol), lang.c
468 (scm_nil_eq), lang.h (SCM_NILP, SCM_NIL2EOL), load.c
469 (scm_primitive_load), modules.c (scm_module_full_name), objects.c
470 (scm_class_of, scm_mcache_lookup_cmethod, scm_make_class_object),
471 ports.c (scm_close_all_ports_except), ports.h (SCM_EOF_OBJECT_P),
472 print.c (scm_iprin1, scm_prin1, scm_iprlist, scm_simple_format),
473 print.h (SCM_PRINT_STATE_P), procprop.c (scm_i_procedure_arity,
474 scm_stand_in_scm_proc, scm_procedure_property,
475 scm_set_procedure_property_x), procs.c
476 (scm_procedure_documentation), read.c (scm_lreadr, scm_lreadparen,
477 scm_lreadrecparen, scm_read_hash_extend), script.c
478 (scm_compile_shell_switches), srcprop.c (scm_source_property,
479 scm_set_source_property_x), srcprop.h (SCM_WHASHFOUNDP), stacks.c
480 (read_frame, NEXT_FRAME, read_frames, narrow_stack,
481 scm_make_stack, scm_stack_id), strop.c (scm_i_index,
482 scm_string_index, scm_string_rindex), struct.c (scm_struct_init),
483 validate.h (SCM_VALIDATE_BOOL_COPY, SCM_VALIDATE_INUM_DEF,
484 SCM_VALIDATE_INUM_DEF_COPY, SCM_VALIDATE_PROC,
485 SCM_VALIDATE_ARRAY): Don't use C operators to compare SCM values.
486
487 * feature.c (make_hook), keywords.c
488 (scm_make_keyword_from_dash_symbol), macros.c (scm_makacro,
489 scm_makmacro, scm_makmmacro), print.c (scm_iprin1,
490 scm_printer_apply, scm_port_with_print_state): Smob data is of type
491 scm_bits_t.
492
493 * feature.c (print_hook), gc.c (scm_object_address), hash.c
494 (scm_ihashq, scm_ihashv), print.c (scm_iprin1, scm_ipruk), smob.c
843e4e9d 495 (freeprint), struct.c (scm_print_struct): Must unpack
54778cd3
DH
496 SCM values to access their raw contents.
497
498 * fluids.c (apply_thunk, scm_with_fluids), hashtab.c (fold_proc,
499 scm_hash_fold), load.c (load, scm_primitive_load): Passing SCM
500 values via void * requires unpacking / packing.
501
502 * fports.c (scm_fport_buffer_add, scm_setvbuf), procs.h
503 (SCM_SUBRNUM, SCM_SET_SUBRNUM), srcprop.h (SRCPROPBRK, SRCBRKP):
504 Read and modify data bits in cell entry #0 using
505 SCM_{SET_}?CELL_WORD_0.
506
507 * fports.c (scm_fdes_to_port), gc.c (scm_gc_for_newcell,
508 scm_gc_sweep, init_heap_seg), init.c (start_stack), ports.c
509 (scm_void_port), procs.c (scm_make_subr_opt,
510 scm_make_procedure_with_setter), root.c (scm_internal_cwdr),
511 smob.c (scm_make_smob), strports.c (scm_mkstrport): Use
512 SCM_SET_CELL_TYPE to write the cell type information.
513
514 * gc.c (scm_gc_mark): Use SCM_CELL_OBJECT* to access SCM values
515 from cells that are no scheme pairs.
516
517 * gc.c (scm_gc_sweep), mallocs.c (prinmalloc), mallocs.h
518 (SCM_MALLOCDATA, SCM_SETMALLOCDATA), print.c (scm_ipruk), random.h
519 (SCM_RSTATE), root.h (SCM_ROOT_STATE), smob.c (scm_smob_free),
520 srcprop.c (freesrcprops), srcprop.h (SRCPROPPOS, SRCPROPFNAME,
521 SRCPROPCOPY, SRCPROPPLIST), struct.c (scm_make_struct,
522 scm_make_vtable_vtable): Use SCM_{SET_}?CELL_WORD* to access cell
523 entries with raw data.
524
525 * gc.c (scm_init_storage), sort.c (applyless), strop.c
526 (scm_string_to_list): Eliminate unnecessary casts to SCM.
527
528 * mallocs.c (scm_malloc_obj): Store result of malloc as raw
529 data.
530
531 * ports.c (scm_close_all_ports_except): Duplicate documentation
532 text removed.
533
534 * print.c (scm_iprin1): Use SCM_ITAG3.
535
536 * procs.h (SCM_SET_SUBRNUM): Fix shift direction.
537
538 * snarf.h (SCM_GPROC, SCM_GPROC1, SCM_SYMBOL, SCM_GLOBAL_SYMBOL,
539 SCM_KEYWORD, SCM_GLOBAL_KEYWORD, SCM_VCELL, SCM_GLOBAL_VCELL,
540 SCM_VCELL_INIT, SCM_GLOBAL_VCELL_INIT): Don't initialize globals
541 and static variables at their point of declaration, but rather in
542 the init function.
543
544 * tags.h (SCM_PACK): Automatically cast to scm_bits_t.
545
abeed821
GH
5462000-04-02 Gary Houston <ghouston@arglist.com>
547
548 * guardians.c (TCONC_IN, scm_make_guardian): set the CDR of the
549 empty tconc pair to SCM_EOL instead of SCM_BOOL_F, avoiding the
550 use of an improper list (which breaks g_print. g_print isn't
551 used).
552 guardians.c: Added more comments and modified the make-guardian
553 docstring. Reordered a few procedures.
554
cf498326
DH
5552000-04-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
556
557 * eval.c (scm_lookupcar1, scm_lookupcar, scm_m_case, scm_m_cond,
558 scm_m_lambda, iqq, scm_m_define, scm_m_expand_body, unmemocopy,
559 SCM_CEVAL), procs.h (SCM_TOP_LEVEL): Don't use C operators to
560 compare SCM values.
561
562 (scm_makprom): Smob data is of type scm_bits_t.
563
cffcab30
DH
5642000-03-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
565
566 * backtrace.c (display_error_body), debug.c (scm_procedure_source,
567 scm_reverse_lookup), dynl.c (scm_dynamic_link): Don't use C
568 operators to compare SCM values.
569
570 * debug.c (scm_make_debugobj), debug.h (SCM_DEBUGOBJ_FRAME,
571 SCM_SET_DEBUGOBJ_FRAME): Update SCM_{SET_}?DEBUGOBJ_FRAME to
572 access raw cell data with SCM_{SET_}?CELL_WORD_1.
573
574 * debug.c (scm_make_debugobj): Don't use SCM_SETCAR to set types.
575
576 * debug.c (scm_make_memoized), dynl.c (scm_dynamic_link): Smob
577 data is of type scm_bits_t.
578
7fa93bf8
DH
5792000-03-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
580
581 * gdbint.c (gdb_maybe_valid_type_p), guardians.c (TCONC_EMPTYP,
582 scm_guardian_zombify): Use SCM_EQ_P to compare SCM values.
583
584 * guardians.c (GUARDIAN): Use SCM_CELL_WORD_1 for raw data.
585
74a16888
DH
5862000-03-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
587
588 * ports.h (scm_port): Change type of stream member to scm_bits_t.
589
590 * gdbint.c (unmark_port, remark_port), ports.c (scm_markstream),
591 strports.c (st_resize_port, scm_mkstrport), vports (sf_flush,
592 sf_write, sf_fill_input, sf_close, scm_make_soft_port): Since
593 streams are now of type scm_bits_t, SCM streams have to be
594 unpacked/packed.
595
596 * ports.h (SCM_SETPTAB_ENTRY, SCM_SETSTREAM): Cast input to
597 scm_bits_t.
598
b6cc0ef6
MD
5992000-03-31 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
600
6a878357
MD
601 * coop-defs.h (struct coop_t): Added `sto'-field again because of
602 binary compatibility---let's remove it next time we alter some
603 major structure.
604
b6cc0ef6
MD
605 * coop.c (coop_quitting_p, coop_cond_create, coop_mutex_create,
606 coop_mother, coop_child): New variables.
607 (mother): New function.
608 (coop_create): New thread spawning mechanism which uses a "mother
609 thread". The "dummy" pthreads aren't healthy enough to give birth
610 to new threads since Linux threads thinks they are asleep.
611
612 * coop-defs.h (struct coop_t): Removed dummy_mutex.
613
614 * coop-defs.h, coop-threads.c (struct coop_t): Eliminate
615 `sto'-field when GUILE_PTHREAD_COMPAT is enabled.
616
843524cc
DH
6172000-03-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
618
619 * arbiters.c (scm_make_arbiter), async.c (scm_async), dynwind.c
620 (scm_internal_dynamic_wind): Smob data is always of type
621 scm_bits_t.
622
623 * arbiters.c (SCM_ARB_LOCKED, SCM_LOCK_ARB, SCM_UNLOCK_ARB):
624 Access the locking information in cell entry 0 with
625 SCM_{SET_}?CELL_WORD_0 instead of SCM_*CAR.
626
627 * async.c (scm_run_asyncs): Use SCM_NULLP to test for the empty
628 list.
629
630 * dynwind.c (scm_dowinds): Use SCM_EQ_P to compare SCM values.
631
632 * ports.h (SCM_PTAB_ENTRY, SCM_SETPTAB_ENTRY): Access the ptab
633 entry data using SCM_{SET_}?CELL_WORD_1 instead of SCM_{SET}?CDR.
634
fbd485ba
DH
6352000-03-29 Dirk Herrmann <D.Herrmann@tu-bs.de>
636
637 * alist.c (scm_sloppy_assq, scm_assq), eq.c (scm_eq_p, scm_eqv_p,
638 scm_equal_p), list.c (scm_ilength, scm_last_pair, scm_reverse,
639 scm_sloppy_memq, scm_delq_x, scm_delq1_x), tags.h (SCM_UNBNDP):
640 Don't use C operators == and != to compare SCM values, use
641 SCM_EQ_P instead.
642
643 * boolean.c (scm_boolean_p): Use SCM_BOOLP to determine whether a
644 SCM value is equal to #t or #f.
645
646 * eq.c (scm_eqv_p, scm_equal_p): Don't use SCM_CAR to access the
647 cell type entry of non immediate objects of unknown type. Use
648 SCM_CELL_TYPE instead.
649
650 * gh_data.c (gh_scm2bool, gh_module_lookup), list.c
651 (scm_sloppy_memv, scm_sloppy_member, scm_delv_x, scm_delete_x,
652 scm_delv1_x, scm_delete1_x), scmsigs.c (scm_sigaction): Use
653 SCM_FALSEP and SCM_TRUE_P to compare SCM values against #f and
654 #t.
655
656 * list.c (scm_listify): Use SCM_UNBNDP to test for an unbound
657 scheme value.
658
64e3bf6c
MD
6592000-03-29 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
660
0208baa0
MD
661 * coop-threads.c (scm_call_with_new_thread, scm_spawn_thread,
662 scm_make_mutex, scm_make_condition_variable): Cast data to
663 scm_bits_t in SCM_SET_CELL_WORD and SCM_NEWSMOB macros.
664
64e3bf6c
MD
665 * coop.c (coop_create): Set `specific' field, not `data' to NULL.
666
94113249
DH
6672000-03-29 Dirk Herrmann <D.Herrmann@tu-bs.de>
668
669 * smob.h (SCM_NEWSMOB, SCM_NEWSMOB2, SCM_NEWSMOB3, SCM_SMOB_DATA,
670 SCM_SET_SMOB_DATA, SCM_TC2SMOBNUM, SCM_SMOBNUM): To access smob
671 data, use SCM_{SET_}?CELL_TYPE or SCM_{SET_}?WORD_[1-3].
672
673 Note that this implies that smob data has always to be passed as
674 values of type scm_bits_t.
675
1978b33e
MD
6762000-03-29 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
677
678 * threads.c (scm_init_threads): Pass 0 size to scm_make_smob_type
679 for scm_tc16_thread. As the current COOP threads are written, GC
680 is not supposed to manage storage for threads.
681
682 * error.c (scm_error): Don't try to throw an error if
683 scm_gc_heap_lock is true.
684
685 * coop.c (coop_finish): New function. Called at exit.
686 (coop_aborthelp): Free thread structures when threads die.
687 Finished LinuxThreads compatibility support => COOP threads now
688 mesh with LinuxThreads.
843e4e9d 689
1978b33e
MD
690 * coop-threads.c (scm_call_with_new_thread, scm_spawn_thread):
691 Changed SETCDR --> SET_CELL_WORD_1.
692
693 * coop-threads.c (scheme_launch_thread): Set word 1 of handle to 0
694 when thread dies.
695
dd039d6d
DH
6962000-03-29 Dirk Herrmann <D.Herrmann@tu-bs.de>
697
698 * boolean.h (SCM_TRUE_P): New macro.
699
700 * boolean.h (SCM_FALSEP, SCM_NFALSEP, SCM_BOOLP), pairs.h
701 (SCM_NULLP, SCM_NNULLP): Use SCM_EQ_P to compare SCM values.
702
8b3bda20
DH
7032000-03-28 Dirk Herrmann <D.Herrmann@tu-bs.de>
704
705 * continuations.h (SCM_CONTREGS, SCM_SET_CONTREGS): New macros to
706 access continuation data.
707
708 (SCM_SETJMPBUF): Deprecated. Use SCM_SET_CONTREGS instead.
709
710 (SCM_JMPBUF, SCM_DYNENV, SCM_THROW_VALUE, SCM_BASE, SCM_SEQ,
711 SCM_DFRAME): Use SCM_CONTREGS instead of SCM_CHARS to access
712 continuation data.
713
843e4e9d 714 * continuations.c (scm_make_cont), init.c (start_stack),
8b3bda20
DH
715 root.c (scm_internal_cwdr): Use SCM_SET_CONTREGS instead of
716 SCM_SETJMPBUF.
717
3210f49a
DH
7182000-03-28 Dirk Herrmann <D.Herrmann@tu-bs.de>
719
720 * symbols.h (SCM_LENGTH, SCM_SETLENGTH): Access the length field
721 of strings and symbols by using SCM_{SET_}?CELL_WORD_0.
722
723 (SCM_CHARS, SCM_UCHARS, SCM_SETCHARS): Use SCM_{SET_}?CELL_WORD_1
724 to access the char * field of strings and symbols.
725
2d67e390
DH
7262000-03-27 Dirk Herrmann <D.Herrmann@tu-bs.de>
727
728 * gc.h (SCM_NEWCELL, SCM_NEWCELL2): Use SCM_SET_CELL_TYPE to set
729 the type entry of a new cell. Added a comment about things to
730 remember when updating the list of free cells.
731
732 (SCM_FREEP, SCM_MARKEDP): Use SCM_CELL_TYPE to access the type
733 entry of a cell.
734
76a369d9
DH
7352000-03-27 Dirk Herrmann <D.Herrmann@tu-bs.de>
736
737 * pairs.h (SCM_CAR, SCM_CDR, SCM_SETCAR, SCM_SETCDR): Use
738 SCM_CELL_OBJECT and SCM_SET_CELL_OBJECT. This change implies that
739 with strict type checking enabled these macros will only work if
740 given valid SCM parameters.
741
3210f49a 742 (SCM_GCCDR): Moved to tags.h.
76a369d9
DH
743
744 * tags.h (SCM_GCCDR): Moved here from pairs.h.
745
2549a709
DH
7462000-03-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
747
748 * tags.h (SCM2PTR, PTR2SCM): Moved to gc.h.
749
750 * pairs.h (scm_cell, SCM_CELLPTR, SCM_CELL_WORD*, SCM_CELL_OBJECT*,
751 SCM_SET_CELL_WORD*, SCM_SET_CELL_OBJECT*, SCM_CELL_TYPE,
752 SCM_SET_CELL_TYPE, SCM_PTR_LT, SCM_PTR_MASK, SCM_PTR_GT,
753 SCM_PTR_LE, SCM_PTR_GE, SCM_CELL_WORD_LOC, SCM_NEWCELL,
754 SCM_NEWCELL2): Moved to gc.h.
755
756 (SCM_CARLOC, SCM_CDRLOC, SCM_SETAND_CAR, SCM_SETAND_CDR,
757 SCM_SETOR_CAR, SCM_SETOR_CDR): Moved to gc.h. These names should
758 be changed, though, since the macros are not only pair related.
759
760 (SCMPTR): Deleted.
761
762 * gc.h (SCM2PTR, PTR2SCM, scm_cell, SCM_CELLPTR, SCM_CELL_WORD*,
763 SCM_CELL_OBJECT*, SCM_SET_CELL_WORD*, SCM_SET_CELL_OBJECT*,
764 SCM_CELL_TYPE, SCM_SET_CELL_TYPE, SCM_PTR_LT, SCM_PTR_MASK,
765 SCM_PTR_GT, SCM_PTR_LE, SCM_PTR_GE, SCM_CELL_WORD_LOC,
766 SCM_NEWCELL, SCM_NEWCELL2, SCM_CARLOC, SCM_CDRLOC, SCM_SETAND_CAR,
767 SCM_SETAND_CDR, SCM_SETOR_CAR, SCM_SETOR_CDR): Moved here from
768 tags.h and pairs.h.
769
8d3356e7
DH
7702000-03-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
771
772 * tags.h (SCM_STRICT_TYPING): New macro that, if defined,
773 activates strict compile time type checking for variables of
774 type SCM.
775 (SCM, SCM_PACK, SCM_UNPACK): Define according to whether
776 SCM_STRICT_TYPING or SCM_VOIDP_TEST are defined.
777 (SCM_EQ_P): Defined as a macro equivalent for eq?.
778
96f6f4ae
DH
7792000-03-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
780
781 * tags.h (SCM_POINTERS_MUNGED): Removed.
782
783 * gc.c (scm_gc_sweep, init_heap_seg): Removed use of
784 SCM_POINTERS_MUNGED, thus fixing some illegal casts to SCM.
785
0cbaaf0b
DH
7862000-03-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
787
788 * pairs.h (SCM_CELL_OBJECT, SCM_CELL_OBJECT_[0-3],
789 SCM_SET_CELL_OBJECT, SCM_SET_CELL_OBJECT_[0-3], SCM_CELL_TYPE,
790 SCM_SET_CELL_TYPE): Added a set of low level macros for accessing
791 cell entries.
792 (SCM_CELL_WORD_[0-3]): Renamed from the SCM_CELL_WORD[0-3].
793
794 * procs.h, procs.c: Instead of SCM_{SET_}?CELL_WORD[12], use the
795 newly introduced SCM_{SET_}?CELL_OBJECT_[12] macros.
796
7284d584
MD
7972000-03-23 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
798
799 * tags.h: Disabled definition of SCM_VOIDP_TEST.
800
801 Defining SCM as void * introduces problems which haven't been
802 handled yet. Developers who work with these issues can enable it
803 in their working copies.
804
805 Disabling this definition exposes a set of newly introduced and
806 older misuses of types which causes warning messages during
807 compilation. We'll fix this successively.
808
809 * gc.c (scm_mark_locations): Changed * (SCM **) X --> * (SCM *) X
810 in order to obtain a value of type SCM.
811 (scm_cellp): Updated with new changes to scm_mark_locations.
812
813 * continuations.h (SCM_SETJMPBUF): Cast second arg into SCM.
814
2f9055ea
MD
815 * continuations.c (scm_make_cont): Removed cast of size_t into
816 long.
817
7284d584
MD
818 * symbols.h (SCM_SETCHARS): Cast second arg into SCM.
819
f81e080b
DH
8202000-03-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
821
822 * numbers.h (SCM_SETNUMDIGS): Use SCM_BIGSIZEFIELD macro for
823 shifting, not constant. Thanks to Dale P. Smith.
824
825 * numbers.c (scm_sum, scm_difference): Don't test a SCM value
826 for being less than zero. Decode it to a C value first. Again,
827 thank you Dale.
828
1ff2fa6e
DH
8292000-03-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
830
831 * numbers.h, ramap.c, struct.h, vectors.h: Don't use SCM2PTR for
832 non scheme values. If raw data is stored in SCM variables, it has
833 to be accessed using SCM_UNPACK until a better solution is found.
834
3920465b
MD
8352000-03-22 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
836
6f29dc6d
MD
837 * tags.h (SCM_ECONSP, SCM_NECONSP): More corrections of
838 pointer-arithmetic induced by the SCM_PACK/UNPACK change.
839
840 * print.c (scm_iprin1): SCM_PACK/UNPACK corrections.
841
842 * gc.c (scm_gc_sweep): SCM_PACK/UNPACK corrections.
843
844 * eval.c (SCM_CEVAL, scm_unmemocar): SCM_PACK/UNPACK corrections.
845
846 * dynwind.c (scm_swap_bindings): SCM_PACK/UNPACK corrections.
847
3920465b
MD
848 * async.c, __scm.h: Removed lots of the old async click logic. It
849 is possible to reinsert it by defining GUILE_OLD_ASYNC_CLICK in
850 __scm.h. Let's try this out and dump the old code after the
851 threads reorganization.
852 (set-tick-rate, set-switch-rate): Conditionally removed.
853
90cca6f9
MD
8542000-03-21 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
855
856 * gc.c (scm_gc_mark): Bugfix 1: The recent SCM_PACK/UNPACK change
857 made SCM values into pointers. This turned an arithmetic
858 computation of the address of the vcell into a pointer-arithmetic
859 one, thereby screwing up marking of structs.
860 Bugfix 2: Removed incompletely introduced loop variable `j' used
861 when protecting the tail array of a struct.
862
8246bf3e
DH
8632000-03-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
864
865 * struct.h (SCM_STRUCT_DATA): Don't cast SCM values to pointers.
866
95c9e176
DH
8672000-03-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
868
869 * symbols.h, symbols.c (scm_strhash): Declare the string
870 parameter as constant, since it is not modified.
871
872 * symbols.c (scm_intern_obarray_soft,
873 scm_sysintern0_no_module_lookup): Can now pass constant strings
874 to scm_strhash without need for casting.
875
7352d0b2
DH
8762000-03-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
877
878 * vectors.h (SCM_VELTS, SCM_VELTS_AS_STACKITEMS): Don't cast SCM
879 values to pointers. Use SCM2PTR instead.
880
b00c8cdc 8812000-03-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
9b139b4e
DH
882
883 * async.c (scm_set_tick_rate, scm_set_switch_rate): Don't unpack
884 results of SCM_INUM.
885
df2d5178
MD
8862000-03-21 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
887
bd54e664
MD
888 * init.c (scm_boot_guile_1): Renamed GUILE_GC_TRIGGER_1 -->
889 GUILE_MIN_YIELD_1, GUILE_GC_TRIGGER_2 --> GUILE_MIN_YIELD_2.
890 GUILE_MIN_YIELD_X now take *positive* fractions of heap size.
891
892 * gc.c, gc.h (SCM_MIN_YIELD_1, SCM_MIN_YIELD_2,
893 min_yield_fraction, min_yield, adjust_min_yield): Renamed from
894 SCM_GC_TRIGGER_1, SCM_GC_TRIGGER_2, gc_trigger_fraction,
895 gc_trigger, adjust_gc_trigger.
896
df2d5178
MD
897 * gc.c (alloc_some_heap): Further improvement of minimal heap size
898 prediction.
899 (SCM_MAX): New macro.
900 (scm_freelist_t): New field: collected_1. Previous amount of
901 collected cells.
902 (gc_sweep_freelist_finish): Trigger based on two last values of
903 freelist->collected to avoid unnecessary allocation due to
904 temporary peaks.
bd54e664
MD
905 (SCM_INIT_HEAP_SIZE_1, SCM_GC_TRIGGER_1, SCM_GC_TRIGGER_2):
906 Adjusted to 45000 cells, 40% and 40%. Gives quick startup
907 without extra heap allocation.
df2d5178 908
f2961ccd
DH
9092000-03-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
910
911 * numbers.h (SCM_MAKINUM): The parameter to SCM_MAKINUM should
912 already be a C value. No need to unpack it.
913
3210f49a 914 * numbers.c (scm_long_long2num): Cast the parameter to scm_bits_t
f2961ccd
DH
915 if we know it fits into an inum.
916
917 * ramap.c (ramap_rp): An scm_tc7_[ui]vect object does point to a
918 field of long values. In contrast, SCM_VELTS accesses a field of
919 SCM values.
920
7b4cc831
MD
9212000-03-20 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
922
f1d316dd
MD
923 * gc.c (scm_gc_stats): Inserted explanation of local_scm_mtrigger
924 etc.
80770ddc
MD
925 (scm_gc_yield_1): New variable: Holds previous yield. Used to
926 make better judgements.
f1083dd7
MD
927 (gc_sweep_freelist_finish): Inserted explanation of use of
928 gc_trigger.
f1d316dd
MD
929
930 * print.h, stacks.h, options.c, options.h: Changed C++
931 commentaries to C.
7b4cc831 932
7a710745
DH
9332000-03-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
934
935 * tags.h (SCM2PTR, PTR2SCM): Use SCM_PACK / SCM_UNPACK correctly.
936
937 * numbers.h (SCM_INUMP, SCM_MAKINUM, SCM_INUM0, SCM_COMPLEX_REAL,
938 SCM_COMPLEX_IMAG, SCM_NUMP, SCM_BDIGITS): Use SCM_PACK /
939 SCM_UNPACK / SCM2PTR correctly.
940
1ef20c80
MD
9412000-03-20 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
942
943 * gc.c (adjust_gc_trigger): Improved documentation.
944 (alloc_some_heap): Since gc_trigger is used against
945 freelist->collected, this is the value which should be used to
946 predict minimum growth.
947
b464b970
DH
9482000-03-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
949
950 * eval.h: Fix mixup of packed/unpacked SCM values. (Thanks
951 Thien-Thi Nguyen for the patch.)
952
3ab9f56e
DH
9532000-03-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
954
955 * numbers.c (scm_ash): Fixed typing problems with the second
956 parameter and added some documentation. (Thanks Thien-Thi Nguyen
957 for indicating the problem.)
958
05bc3265
MD
9592000-03-19 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
960
78a4915a
MD
961 * gc.c, gc.h (scm_gc_yield): New variable.
962 (adjust_gc_trigger): Use scm_gc_yield.
963 (alloc_some_heap): Use scm_gc_yield instead of
964 scm_gc_cells_collected.
965
05bc3265
MD
966 * coop-threads.c: Addd #include "root.h", #include "strings.h".
967
968 * debug.c: Added #include "root.h". (Thanks to Thien-Thi Nguyen.)
969
970 * gc.c (scm_gc_for_newcell, adjust_gc_trigger): Improved GC
971 trigger adjustmeant: Take yield (freed cells) for all freelists
972 into account.
973 (SCM_INIT_HEAP_SIZE_1, SCM_GC_TRIGGER_1, SCM_GC_TRIGGER_2): Tuned
974 to 50000 cell heap with 45% trigger.
975 (scm_gc_cells_collected): Reintroduced.
976 (SCM_HEAP_SIZE): New macro.
977 (scm_gc_sweep): Reintroduced correct computation of
978 scm_cells_allocated.
979 (scm_freelist_t): Corrected commentary for field `cluster_size':
980 Clustersize counts objects, not cells; New member
981 `clusters_allocated'.
982
89e00824
ML
9832000-03-19 Michael Livshin <mlivshin@bigfoot.com>
984
985 * *.[hc]: add Emacs magic at the end of file, to ensure GNU
986 indentation style.
987
afcfc5bb
MD
9882000-03-19 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
989
990 * threads.h: Added #include "libguile/throw.h". (Thanks to
991 Thien-Thi Nguyen.)
992
a00c95d9
ML
9932000-03-18 Michael Livshin <mlivshin@bigfoot.com>
994
50fecba9
ML
995 * tags.h: (SCM_DOUBLE_CELLP, SCM_NDOUBLE_CELLP): new macros (bad
996 names, anyone got any better ones?)
a00c95d9
ML
997
998 * gc.h: (typedef struct scm_freelist_t) remove from here.
999
50fecba9 1000 * gc.c: (CELL_UP, CELL_DN) made these macros take additional
a00c95d9
ML
1001 parameter (the span).
1002 (CLUSTER_SIZE_IN_BYTES, ALIGNMENT_SLACK) new macros.
50fecba9 1003 (typedef struct scm_freelist_t) moved here from gc.h, it had no
a00c95d9
ML
1004 business being externally visible.
1005 (typedef struct scm_heap_seg_data_t) renamed from
1006 scm_heap_seg_data, to be style-compliant.
1007 (scm_mark_locations) if the possible pointer points to a
50fecba9
ML
1008 double-cell, check that it's properly aligned.
1009 (init_heap_seg) align double-cells properly, work with the
1010 assumption that the segment size divides cleanly by cluster size.
a00c95d9
ML
1011 (round_to_cluster_size) new function.
1012 (alloc_some_heap, make_initial_segment) use round_to_cluster_size
1013 to satisfy the new init_heap_seg invariant.
1014
28b3236d
DH
10152000-03-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
1016
1017 * _scm.h: Don't include async.h everywhere...
1018
1019 * eq.c eval.c iselect.c: ... only include it here.
1020
ba11fd4c
DH
10212000-03-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
1022
1023 * _scm.h: Don't include root.h everywhere...
1024
1025 * async.c continuations.c eq.c eval.c evalext.c feature.c gc.c
1026 gdbint.c gsubr.c ioext.c keywords.c lang.c load.c macros.c
1027 numbers.c objprop.c ports.c print.c procprop.c ramap.c read.c
1028 srcprop.c stackchk.c stacks.c strports.c symbols.c unif.c
1029 variable.c vectors.c vports.c: ... only include it here.
1030
7ab3fdd5
DH
10312000-03-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
1032
1033 * _scm.h: Don't include strings.h everywhere...
1034
1035 * backtrace.c dynl.c error.c feature.c filesys.c fports.c gc.c
1036 gdbint.c ioext.c load.c net_db.c numbers.c objects.c options.c
1037 ports.c posix.c print.c procs.c random.c read.c regex-posix.c
1038 simpos.c socket.c stacks.c stime.c strop.c strports.c struct.c
1039 symbols.c unif.c vectors.c version.c vports.c: ... only include it
1040 here.
1041
f04d8caf
DH
10422000-03-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
1043
1044 * _scm.h: Don't include ports.h everywhere...
1045
1046 * arbiters.c backtrace.c debug.c dynl.c dynwind.c eval.c feature.c
1047 fluids.c gc.c gdbint.c guardians.c hash.c keywords.c mallocs.c
1048 numbers.c objects.c print.c read.c root.c smob.c srcprop.c
1049 stackchk.c strports.c struct.c throw.c variable.c: ... only
1050 include it here.
1051
003d1fd0
DH
10522000-03-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
1053
1054 * _scm.h: Don't include vectors.h everywhere...
1055
1056 * eq.c eval.c filesys.c gc.c gsubr.c guardians.c hash.c hashtab.c
1057 keywords.c net_db.c numbers.c objects.c posix.c print.c procprop.c
1058 procs.c ramap.c random.c read.c scmsigs.c socket.c sort.c stime.c
1059 strports.c symbols.c unif.c vports.c weaks.c: ... only include it
1060 here.
1061
0fa27efa
DH
10622000-03-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
1063
1064 * genio.h: removed. (Only content was '/* delete me */'.)
1065
1066 * Makefile.am arbiters.c backtrace.c debug.c dynl.c dynwind.c
1067 error.c filesys.c fluids.c gc.c gsubr.c guardians.c keywords.c
1068 libguile.h mallocs.c numbers.c print.c random.c read.c root.c
1069 srcprop.c stackchk.c struct.c threads.c throw.c variable.c:
1070 Removed reference to genio.h
1071
148f31de
MD
10722000-03-17 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1073
1074 * gc.c, gc.h: Cleanup of the change of 2000-03-15.
1075 Cluster sizes are now independent of GC trigger values.
1076 GUILE_GC_TRIGGER_n can now specify a relative trigger value:
1077 A negative integer gives fraction of total heap size in percent.
1eb489a2 1078 (SCM_GC_TRIGGER_1, SCM_GC_TRIGGER_2): Default values set to -40.
148f31de
MD
1079
1080 * init.c (scm_boot_guile_1): Introduced new variable
1081 GUILE_MAX_SEGMENT_SIZE; New environment variable names:
1082 GUILE_INIT_SEGMENT_SIZE_1, GUILE_GC_TRIGGER_1,
1083 GUILE_INIT_SEGMENT_SIZE_2, GUILE_GC_TRIGGER_2
1084
6d0f81dd 10852000-03-16 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
a00c95d9 1086
6d0f81dd
MD
1087 * __scm.h (GC_FREE_SEGMENTS): Disable this until we have made
1088 freeing of segment work with the new GC scheme. (Thanks to
bc2c8d98
MD
1089 Michael Livshin.) Oops, also happened to make GUILE_NEW_GC_SCHEME
1090 the default, but I'll let this change stay in CVS Guile since this
1091 code is not expected to contain serious bugs.
a00c95d9 1092
17351a6f 10932000-03-16 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
c5133dc9 1094
6c7c449e
MD
1095 * gc.c, gc.h (scm_map_free_list): Define also if GUILE_DEBUG is
1096 defined.
5a551542
MD
1097 (scm_free_list_length): New procedure (GUILE_DEBUG).
1098 Fixed a small but serious bug introduced by the previous change.
1099
17351a6f
MD
1100 * gc.c (scm_gc_sweep): Moved variable n_objects to inner sweep
1101 loop and declare as register.
6c7c449e 1102
c5133dc9
MD
1103 * gc.c (scm_gc_sweep): Sigh... forgot to clear private freelists
1104 after GC.
1105
3820581c
GB
1106Wed Mar 15 08:27:04 2000 Greg J. Badros <gjb@cs.washington.edu>
1107
1108 * fluids.c: Docstring patch from Keisuke Nishida. Some
1109 reindentation, too, and a couple formals renamed. Should
1110 fluid-set! return UNSPECIFIED instead of a value?
1111
1112Wed Mar 15 08:24:58 2000 Greg J. Badros <gjb@cs.washington.edu>
1113
1114 * Makefile.am: Separate out DOT_X_FILES and DOT_DOC_FILES, and
a00c95d9 1115 generate the latter from the concrete listing of the former. Then
3820581c
GB
1116 make guile-procedures.txt depend on DOT_DOC_FILES instead of
1117 *.doc, so that rebuilding it works.
1118
dd6390bf
GB
1119Wed Mar 15 08:12:14 2000 Greg J. Badros <gjb@cs.washington.edu>
1120
1121 * libguile.h: Include libguile/validate.h. Thanks Keisuke Nishida!
1122
1123 * guile-snarf.awk.in: Replace docstring line-ending \n" and \n\n"
1124 with nothing and \n, respectively. Thanks Keisuke Nishida for
1125 noticing this problem.
1126
4fdb0ae2
MD
11272000-03-15 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1128
1129 * __scm.h (GUILE_NEW_GC_SCHEME): Define this if you want to test a
1130 new way of allocating heap. It makes Guile fast, but still
1131 contains bugs.
1132
1133 * gc.c, gc.h, pairs.h, init.c: Implementation of a new way of
1134 allocating heap. The basic idea is to trigger GC every Nth
1135 allocated cell and grow heap when free list runs out. The scheme
1136 has been extended so that GC isn't triggered until all remaining
1137 cells are used. The implementation is also prepared for
1138 development in the direction of POSIX threads.
1139
1140 * gc.c (SCM_EXPHEAP): In order to grow by a factor of 1.5,
1141 SCM_EXPHEAP should return half of the heap size.
1142
3d8d1283
MD
11432000-03-14 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1144
5f4edb86
MD
1145 The following change to init.c is only enabled if Guile was
1146 configured with --enable-guile-debug.
a00c95d9 1147
5f4edb86
MD
1148 * init.c (scm_i_getenv_int): New function.
1149 (scm_boot_guile_1): Use the environment variables
1150 GUILE_INIT_HEAP_SIZE, GUILE_INIT_HEAP_SIZE2 to select heap size if
1151 they exist. (This may be replaced by a Scheme level mechanism in
1152 the future.)
1153
3d8d1283 1154 * objprop.c (s_scm_set_object_property_x): Use scm_assq instead of
90e77861 1155 scm_assoc. (Thanks to Keisuke Nishida.)
3d8d1283 1156
b0e37c83
MD
11572000-03-14 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1158
1159 * eval.c, lang.c, lang.h (scm_lisp_nil, scm_lisp_t): Renamed from
2b260c0f 1160 scm_nil, scm_t. (Thanks to Keisuke Nishida.)
b0e37c83 1161
16d35552
MD
11622000-03-14 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1163
5ebf0091
MD
1164 * init.c (scm_boot_guile_1): Use same initial segment size for
1165 1-word and 2-word segments. Having the smaller size causes Guile
1166 to GC too often. Obviously something needs to be done to allow
1167 for a smaller 2-word segment without this to happen. (The amount
1168 of heap for each type should be automatically adapted to the
1169 application somehow.)
1170
31ed4cff
MD
1171 [Almost all of these changes should be documented in the NEWS
1172 file.]
1173
cf2c7413
MD
1174 * gc.h (scm_freelist_t): New type.
1175
1176 * pairs.h (SCM_NEWCELL, SCM_NEWCELL2): Use new style freelists.
1177
1178 * gc.c (SCM_INIT_HEAP_SIZE): Changed from 32768 --> 40000 so that
1179 all of Guile basics fits into one segment and there suitable room
1180 for work.
1181 (SCM_EXPHEAP): Now takes an argument. Grow by a factor of 1.5
1182 instead of 2.
1183 (scm_freelist, scm_freelist2): Now of type scm_freelist_t.
1184 Freelists now contains information about object span, cells
1185 collected and amount of cells in heap segments belonging to the
1186 list.
1187 (scm_heap_size, scm_gc_cells_collected): Removed.
1188
1189 * init.c (scm_boot_guile_1): Make 2-word segment 8K (512 cells).
1190
16d35552
MD
1191 * Makefile.am (libguile_la_LDFLAGS): Bumped library version
1192 number.
1193
cf2c7413 1194 * __scm.h eq.c, eval.c, gc.c, gc.h, gh_data, hash.c, numbers.c,
16d35552
MD
1195 numbers.h, objects.c, ramap.c, random.c, unif.c, unif.h: Extensive
1196 rewrite of handling of real and complex numbers.
1197 (SCM_FLOATS, SCM_SINGLES): These #ifdef conditionals have been
1198 removed along with the support for floats. (Float vectors are
1199 still supported.)
1200
1201 * tags.h (scm_tcs_bignums): Removed.
1202 (scm_tc16_bigpos, scm_tc16_bigneg): Replaced by scm_tc16_big.
1203 Use SCM_BIGSIGN(x) to test for sign!
1204 (scm_tc16_big): The new bignum type.
1205 (SCM_REAL_PART, SCM_IMAG_PART): Removed.
1206
1207 * numbers.h (SCM_BIGSIGN): Sign moved to bit 16.
1208 (scm_makdbl): Deprecated.
1209 (SCM_NEWREAL, SCM_NEWCOMPLEX): New macros.
1210 (SCM_SINGP): Deprecated.
1211 (SCM_FLO): Removed.
1212 (SCM_INEXP, SCM_CPLXP): Deprecated.
1213 (SCM_INEXACTP, SCM_COMPLEXP): New macros.
1214 (SCM_COMPLEX_REAL, SCM_COMPLEX_IMAG): Renamed from
1215 SCM_REAL, SCM_IMAG (and now only valid for complex numbers).
1216 (SCM_REAL, SCM_IMAG): New, *deprecated*, selectors which work both
1217 for doubles and complex numbers.
1218 (SCM_REAL_VALUE): New selector for doubles.
1219 (scm_double_t, scm_complex_t): New types.
1220 (scm_dbl): Removed.
1221
1222 * numbers.c (scm_floprint, scm_floequal): Removed.
1223 (scm_print_real, scm_print_complex, scm_real_equalp,
1224 scm_complex_equalp): New functions.
1225
1226 * unif.c (scm_makflo): Removed.
1227
1228 * smob.h (SCM_SMOB_PREDICATE): New macro.
1229 (SCM_NEWSMOB2, SCM_RETURN_NEWSMOB2, SCM_NEWSMOB3,
1230 SCM_RETURN_NEWSMOB3): New macros.
1231
12321999-11-21 Michael Livshin <mlivshin@bigfoot.com>
1233
1234 The following changes implement primitive support for double cells
1235 (i.e. four-word cells) and change the representation of some
1236 things to multi-cells instead of cons+malloc. (Applied and
1237 modified by mdj.)
1238
1239 * pairs.h (SCM_NEWCELL2): double-cell variants of SCM_NEWCELL.
1240 (SCM_CELL_WORD, SCM_CELL_WORDLOC, SCM_SET_CELL_WORD): primitive
1241 multi-cell access macros (used by the ones below).
1242 (SCM_CELL_WORD[0-3], SCM_SET_CELL_WORD[0-3]): multi-cell access
1243 macros.
1244
1245 * gc.c (scm_freelist2): multi-cell freelists.
1246 (inner_map_free_list): map_free_list, parameterized on ncells.
1247 "nn cells in segment mm" was misleading for ncells > 1; changed to
1248 "objects". still print cells too, though.
1249 (scm_map_free_list): rewritten using inner_map_free_list.
1250 (scm_check_freelist): get freelist as parameter, since now we have
1251 more than one.
1252 (scm_debug_newcell2): multi-cell variants of
1253 scm_debug_newcell.
1254 (scm_gc_for_newcell): take ncells and freelist pointer as
1255 parameters.
1256 (scm_gc_mark): add case for tc7_pws (procedures with setters are
1257 now double cells).
1258 (scm_gc_sweep): don't free the float data, since it's not malloced
1259 anymore.
1260 (init_heap_seg): didn't understand what n_new_objects stood for,
1261 so changed to n_new_cells.
1262 (make_initial_segment): new function, makes an initial segment
1263 according to given ncells.
1264 (scm_init_storage): call make_initial_segment, for ncells={1,2,3}.
1265
1266 * numbers.c (scm_makdbl): no malloc'ing needed, so the
1267 {DEFER,ALLOW}_INTS thing removed.
1268
1269 * numbers.h (struct scm_dbl): changed to represent a double cell,
1270 with the number in the second half.
16d35552
MD
1271
1272 * dynwind.c: changed the wind-guards representation to double
1273 cell.
1274
1275 * procs.c, procs.h: changed the procedure-with-setter representation
1276 to double cell.
1277
1278 * async.c, async.h: made async representation a double cell.
1279
16d35552 1280 * dynl.c: made dynamic_obj representation a double cell.
a00c95d9 1281
b70ecbd0
GH
12822000-03-13 Gary Houston <ghouston@arglist.com>
1283
1284 * ports.c (flush_void_port): renamed to flush_port_default.
1285 (end_input_void_port): renamed to end_input_default.
1286
1287 * init.c (scm_standard_stream_to_port): create a void port instead
1288 of opening /dev/null if the standard file descriptors are bad.
1289 advantages: no portability problems, doesn't waste a file descriptor,
1290 simplifies the code (thanks to Marius for the idea).
1291
1292 * vports.c (s_scm_make_soft_port): call scm_port_non_buffer.
1293
1294 * void ports: make reading from a void port give EOF instead of
1295 segv:
1296 * ports.c (s_scm_sys_make_void_port): modified docstring.
1297 (fill_input_void_port): new proc.
1298 (scm_init_ports): set up fill_input_void_port.
1299 * ports.c (scm_port_non_buffer): new proc.
1300 (scm_void_port): call scm_port_non_buffer.
1301
1302 * fports.c (scm_setvbuf): docstring: remove the fcntl documentation
1303 which was incorrectly appended.
1304
fdc7ea2d
MD
13052000-03-13 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1306
1307 * guile-doc-snarf.in: Don't use absolute path for `sed'. (Note
1308 that we can't use autoconf for this. Autoconf itself relies on
26fba922 1309 the existence of `sed' somewhere on your path.) (Thanks to Dirk
fdc7ea2d 1310 Herrman.)
a00c95d9 1311
68933ba3
MD
13122000-03-13 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1313
b44a555a
MD
1314 * Makefile.am (libguile_la_SOURCES): Moved iselect.c here from
1315 EXTRA_libguile_la_SOURCES.
1316
1317 * iselect.h: Always declare scm_internal_select.
1318
1319 * iselect.c (scm_internal_select): Added SCM_ASYNC_TICK at the
1320 end. Also let scm_internal_select be a real function also when
1321 not using threads.
1322
68933ba3
MD
1323 * __scm.h (SCM_TICK): Oops! Forgot to put SCM_ASYNC_TICK here...
1324
c7f6ea11
MD
13252000-03-13 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1326
1327 * __scm.h (SCM_ALLOW_INTS, SCM_REALLOW_INTS): Removed call to
1328 SCM_ASYNC_TICK. (This is a preparation for POSIX threads support,
1329 and kind of an experiment: Will this cause problems?)
1330
62dbc244
GB
1331Sun Mar 12 13:26:30 2000 Greg J. Badros <gjb@cs.washington.edu>
1332
1333 * Makefile.am: Added *.doc to DISTCLEANFILES.
1334
4f2f645d
GH
13352000-03-12 Gary Houston <ghouston@arglist.com>
1336
1337 * fports.c (scm_fdes_to_port): call fcntl F_GETFL to test that
1338 the fdes is valid before doing anything else. check that
1339 the file descriptor supports the modes required.
1340 (scm_fport_buffer_add): don't throw an error if fstat doesn't
1341 work: just use the default buffer size.
1342
1343 * throw.c: change an outdated comment about scm_internal_catch
1344 BODY: it doesn't take a jumpbuf arg.
1345
1346 * init.c (scm_standard_stream_to_port): install a handler in case
1347 scm_fdes_to_port throws an error. don't check here whether the
1348 file descriptor is valid, since scm_fdes_to_port will do that.
1349 set the revealed count depending on whether the port got the
1350 standard file descriptor.
1351 (stream_body_data): new type.
1352 (stream_body, stream_handler): new procs.
1353
7f782a0a
MD
13542000-03-12 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1355
67673f75
MD
1356 * stacks.c, stacks.h, struct.c, tags.h, unif.c (scm_bits_t):
1357 Renamed from SCMWORD.
1358
1359 * tags.h (SCM_NCELLP): Removed (SCMWORD).
1360
f1267706 1361 * arbiters.c (SCM_ARB_LOCKED): Use SCM_UNPACK_CAR.
67673f75 1362
74a426ae
MD
1363 * async.c, boolean.h, debug.c, dynl.c, dynwind.c, eval.c, eval.h,
1364 feature.h, filesys.h, fluids.h, fports.c, fports.h, gc.c, gc.h,
1365 hash.c, keywords.h, macros.c, numbers.c, numbers.h, objects.c,
1366 objects.h, options.c, pairs.h, ports.c, ports.h, print.c,
1367 procs.h, ramap.c, read.c, smob.c, smob.h, srcprop.h, stacks.c,
1368 stacks.h, strports.c, struct.c, struct.h, tag.c, tags.h,
1369 throw.c, unif.c, unif.h, variable.h, vectors.h, weaks.c,
f1267706 1370 weaks.h (SCM_PACK, SCM_UNPACK, SCM_UNPACK_CAR): Renamed from
74a426ae
MD
1371 SCM_ASSCM, SCM_ASWORD, SCM_CARW).
1372
7f782a0a
MD
1373 * numbers.h (SCM_SRS, SCM_INUM): Corrected SCM_ASSCM/ASWORD fixes.
1374
1375 * alist.c, eval.c, net_db.c, posix.c, print.c, snarf.h, struct.c,
1376 tags.h: Fixed copyright notices.
1377
1378 * struct.c, coop-threads.c: SCM_ASSCM/ASWORD fixes.
0cd87628 1379
7f782a0a 13802000-03-12 Marius Vollmer <mvo@zagadka.ping.de>
a00c95d9 1381
0cd87628
MV
1382 * init.c (scm_standard_stream_to_port): Check whether the file
1383 descriptor is valid and substitute "/dev/null" when not.
a00c95d9 1384
f3b5e185
MD
13852000-03-12 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1386
1387 * coop-defs.h (struct timespec): Conditionally defined.
1388
1389 * coop.c (coop_condition_variable_timed_wait_mutex): Use ETIMEDOUT
1390 instead of ETIME.
38eca29b
MD
1391
1392 * readline.c (match_paren): Bugfix: First arg to select is not
1393 number of descriptors but the number of the highest descriptor +
1394 1.
1395
1396 This is a preliminary attempt at a cleanup of the threads support
1397 code. It moves things to better places, makes arguments more
1398 consistent with the POSIX API (which is used in GNOME's glib), and
1399 adds new functionality.
a00c95d9 1400
38eca29b
MD
1401 * readline.c (scm_init_readline): Added new arg to scm_init_mutex.
1402
1403 * coop-defs.h (scm_mutex_trylock): New macro: alias for
1404 coop_mutex_trylock.
1405 (scm_cond_init): Changed definition to
1406 coop_new_condition_variable_init.
a00c95d9 1407
38eca29b
MD
1408 * coop.c: #include <errno.h>
1409 (coop_timeout_qinsert): Moved here from iselect.c
1410 (coop_new_mutex_init, coop_new_condition_variable_init): New
1411 functions. The strange names are temporary. Use scm_mutex_init
1412 and scm_cond_init instead.
1413 (coop_mutex_trylock): New function. Uses errno.h:EBUSY. errno.h
1414 is ANSI C, but should we check for individual error codes in
1415 configure.in?
1416 (coop_condition_variable_timed_wait_mutex): New function.
1417 (coop_key_create, coop_setspecific, coop_getspecific,
7f782a0a 1418 coop_key_delete): New functions.
38eca29b
MD
1419
1420 * iselect.c (coop_timout_qinsert): Moved to coop.c
1421
32e1616c
MD
14222000-03-11 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1423
1424 * pairs.h (SCM_SETAND_CAR, SCM_SETAND_CDR, SCM_SETOR_CAR,
1425 SCM_SETOR_CDR): Corrected SCM_ASSCM/WORD fixes.
1426
1427 * tags.h (SCM_VOIDP_TEST): Renamed from VOIDP_TEST.
1428 Layout cleanups.
1429
1430 * objects.h (SCM_CLASS_FLAGS, SCM_OBJ_CLASS_FLAGS,
1431 SCM_SET_CLASS_INSTANCE_SIZE), struct.h (SCM_STRUCT_VTABLE_DATA),
1432 proc.h (SCM_CLOSCAR): SCM_ASSCM/WORD fixes.
1433
1434 * eval.c (scm_lookupcar1): Inserted SCM_ASWORD in expressions
1435 dealing with ilocs.
1436
d5c39069
GB
14372000-03-11 Dale P. Smith <dpsm@en.com>, applied by Greg J. Badros, <gjb@cs.washington.edu>
1438
1439 * numbers.c (scm_copy_big_dec, scm_copy_smaller, scm_big_ior,
1440 scm_big_xor, scm_big_and, scm_big_test): Added new lowlevel bignum
1441 logical functions from SCM.
1442
1443 (logand, logior, logxor, logtest, logbit?): Extended scheme
1444 logical functions to use bignums from SCM.
1445
1446 (lognot): Removed call to `SCM_VALIDATE_INUM' that prevented
1447 lognot from using bignums.
1448
3e892913
GB
1449Thu Mar 9 11:33:25 2000 Greg J. Badros <gjb@cs.washington.edu>
1450
a00c95d9 1451 * vectors.h (SCM_VELTS_AS_STACKITEMS): Added this macro to help in
3e892913
GB
1452 eliminating some warnings.
1453
1454 * unif.c, strports.c, print.c, options.c: Fix some warnings on
1455 mis-use of SCM/long
1456
1457 * gc.c, gc.h: Added scm_return_first_int(), and added comment re:
1458 what the scm_return_first* functions do.
1459
7ac030d6
GB
14602000-03-09 Han-Wen Nienhuys <hanwen@cs.uu.nl>, applied by Greg J. Badros, <gjb@cs.washington.edu>
1461
1462 * libguile/*.[ch]: make a distinction between SCM as a generic
1463 name for a Scheme object (now a void*), and SCM as 32 bit word for
1464 storing tags and immediates (now a long int). Introduced
1465 SCM_ASWORD and SCM_ASSCM for conversion. Fixed various dubious
1466 code in the process: arbiter.c (use macros), unif.c (scm_array_p),
a00c95d9 1467
f635d2d4
GB
1468Wed Mar 8 10:15:59 2000 Greg J. Badros <gjb@cs.washington.edu>
1469
1470 * numbers.c: Use SCM_VALIDATE_LONG_COPY, and longs, not ints, in
1471 various logXXX primitives. Thanks Eric Moore!
1472
9eaa7fb6
GB
1473Tue Mar 7 08:05:22 2000 Greg J. Badros <gjb@cs.washington.edu>
1474
1475 * run-test, remaining-docs-needed: Added these scripts. The
1476 second one is only temporary until the docstring additions are
1477 complete. run-test may best live on, but is here mostly for
1478 convenience and awareness for now.
1479
1480 * hash.c: Docs, minor cleanup patch from Dirk Herrman.
1481
49673698
GB
1482Thu Mar 2 16:06:58 2000 Greg J. Badros <gjb@cs.washington.edu>
1483
1484 * error.h, error.c: Added `scm_wrong_type_arg_msg' to support
1485 displaying the expected type. Use SCM_LISTn in a couple places
1486 instead of scm_cons-ing by hand.
1487
1488 * __scm.h: Added SCM_ASSERT_TYPE macro.
1489
1490 * validate.h, scm_validate.h: Added the former, as a renamed
1491 version of the latter with SCM_ASSERT_TYPE used in
1492 SCM_MAKE_VALIDATE (instead of just SCM_ASSERT)
1493
1494 * Makefile.am: Rename scm_validate.h to validate.h.
1495
1496 * *.c, *.h: Include validate.h, not scm_validate.h (old name's
1497 prefix was superfluous).
1498
417bdef8
GB
1499Thu Mar 2 15:33:12 2000 Greg J. Badros <gjb@cs.washington.edu>
1500
1501 * hashtab.c: Improved documentation for lots of functions. Added
1502 handwritten docs for `hash-fold'.
1503
1504Thu Mar 2 15:13:25 2000 Greg J. Badros <gjb@cs.washington.edu>
1505
1506 * list.c: Added hand-written docs for `del{q,v,ete}1!'.
1507
26a760c6
GB
1508Thu Mar 2 12:38:30 2000 Greg J. Badros <gjb@cs.washington.edu>
1509
a00c95d9 1510 * list.c: Moved append docs to append! Thanks Dirk Hermann. Also,
26a760c6
GB
1511 added append docs from R4RS.
1512
1513 * strings.c: Docstring typo fix, + eliminate unneeded IMP tests.
1514 Thanks Dirk Hermann!
1515
1516 * chars.h: Provide SCM_CHARP, SCM_CHAR, SCM_MAKE_CHAR and
1517 deprecate SCM_ICHRP, SCM_ICHR, SCM_MAKICHR. Thanks Dirk Hermann!
a00c95d9 1518
26a760c6
GB
1519 * *.h, *.c: Use SCM_CHARP, SCM_CHAR, SCM_MAKE_CHAR throughout.
1520 Drop use of SCM_P for function prototypes... assume an ANSI C
1521 compiler. Thanks Dirk Hermann!
1522
898942f8
GB
1523Sat Feb 19 12:20:12 2000 Greg J. Badros <gjb@cs.washington.edu>
1524
1525 * ports.c: Made `set-port-column!' and `set-port-line!' each
1526 return SCM_UNSPECIFIED instead of a (not-scheme-object) integer
1527 that caused a seg fault. Also fixed `set-port-column!'s
1528 docstring. Thanks Han-Wen Nienhuys for finding the bug!
1529
84a3df2c
GB
1530Sun Feb 13 19:11:42 2000 Greg J. Badros <gjb@cs.washington.edu>
1531
1532 * arbiters.c, eq.c, gc.c, guardians.c, list.c, ports.c, print.c,
a00c95d9 1533 regex-posix.c, scmsigs.c, stime.c, strings.c, variable.c, stime.c,
84a3df2c
GB
1534 strings.c, variable.c: Added lots of documentation, cleaned up
1535 some existing documentation. Occasionally changed formal params
1536 to match docs. Also folded an #ifdef into the inners of a
1537 primitive instead of having two copies of the primitive
1538 (`get-internal-real-time', from stime.c)
1539
1540Sun Feb 13 18:12:19 2000 Greg J. Badros <gjb@cs.washington.edu>
1541
1542 * ports.c: Added docs for primitives missing them. Written by
1543 hand.
1544
3f557de6
GB
1545Sun Feb 13 09:40:36 2000 Greg J. Badros <gjb@cs.washington.edu>
1546
1547 * guile-doc-snarf.in: Use ${AWK} -f guile-func-name-check, not
1548 just execing guile-func-name-check. Thanks Michael Livshin!
1549
ddcccdb3
GB
1550Thu Feb 10 11:43:23 2000 Greg J. Badros <gjb@cs.washington.edu>
1551
1552 * guile-snarf.awk.in: Tweak to work with Sun/HP awk, removed some
1553 dead code. Patch from Michael Livshin.
1554
1555 * guile-doc-snarf.in: Tweak to work with Sun/HP sh. Patch from
1556 Michael Livshin.
1557
720e8692
GH
15582000-02-09 Gary Houston <ghouston@arglist.com>
1559
1560 * init.c (scm_init_standard_ports): when stdout is a tty, make the
1561 current-output-port unbuffered by default. this is less confusing
1562 for interactive use. it was line-buffered because of a
1563 performance problem with unbuffered ports, but I think it will be
1564 OK now.
1565
43ff3170
GH
15662000-02-08 Gary Houston <ghouston@arglist.com>
1567
1568 * __scm.h: don't define long_long or ulong_long if HAVE_LONG_LONGS
1569 is not defined.
1570
1571 * stime.c (scm_localtime, scm_mktime): if neither HAVE_TM_ZONE nor
1572 HAVE_TZNAME are defined, use an empty string instead of giving two
1573 spurious compile-time errors.
1574
4ba47302
GB
1575Tue Feb 8 13:57:46 2000 Greg J. Badros <gjb@cs.washington.edu>
1576
1577 * ports.c: Doc patches from Richard Kim. Pasted from MIT Scheme.
1578 Thanks Richard!
1579
09a617f7
GB
1580Mon Feb 7 09:07:31 2000 Greg J. Badros <gjb@cs.washington.edu>
1581
1582 * macros.c: Doc patches from Richard Kim. Pasted from scm.texi.
1583
9dbcf010
GB
1584Sun Feb 6 20:26:21 2000 Greg J. Badros <gjb@cs.washington.edu>
1585
1586 * pairs.c: Doc patches from Richard Kim. Pasted from MIT Scheme
1587 (which is GNU GPL'd).
1588
bd9e24b3
GH
15892000-01-31 Gary Houston <ghouston@arglist.com>
1590
1591 * strings.h: don't use SCM_P. don't include <string.h>.
1592 * error.c, gh_data.c, ports.c, script.c, strop.c: include <string.h>.
a00c95d9 1593
bd9e24b3
GH
1594 * strings.c (scm_string_ref): make the 2nd argument compulsory.
1595 previously it defaulted to zero for no good reason that I can see.
1596 use a local variable for SCM_INUM (k). replace
1597 SCM_VALIDATE_INUM_DEF with SCM_VALIDATE_INUM_COPY.
1598
1599 (scm_makfromstr): cosmetic changes.
1600
1601 (scm_string): Accept only chars in the list, not strings, for
1602 conformance to R5RS (particularly for list->string, which is
1603 supposed to be the inverse of string->list.) remove
1604 SCM_DEFER_INTS/SCM_ALLOW_INTS, which is unnecessary since
1605 scm_makstr handles the cell allocation. when reporting wrong-type
1606 arg, don't report the position as 1.
1607
1608 * posix.c (scm_init_posix): intern PIPE_BUF if it's defined.
1609
28d77376
GH
16102000-01-29 Gary Houston <ghouston@arglist.com>
1611
ae1b098b
GH
1612 * posix.c (scm_pipe): rewrote the docstring.
1613
28d77376
GH
1614 * filesys.c (scm_select, retrieve_select_type, get_element,
1615 fill_select_type, set_element): modified so that Scheme
1616 "select" tests port buffers for the ability to provide input
1617 or accept output. Previously only the underlying file descriptors
1618 were checked. Rewrote the docstring.
a00c95d9 1619
7f1497ce
GB
1620Thu Jan 27 10:14:25 2000 Greg J. Badros <gjb@cs.washington.edu>
1621
1622 * vectors.c, symbols.c, strorder.c: Documentation cut and pasted
1623 from Gregg Reynolds. Thanks Gregg!
1624
2288ff9b
GB
1625Thu Jan 27 09:59:38 2000 Greg J. Badros <gjb@cs.washington.edu>
1626
1627 * strop.c (scm_i_index): Obfuscated commented-out SCM_DEFINE by
1628 adding "x" prefix to the line so that guile-func-name-check
1629 doesn't complain unnecessarily.
1630
349af6dd
GB
1631Wed Jan 26 17:33:52 2000 Greg J. Badros <gjb@cs.washington.edu>
1632
1633 * throw.c: Factor out an #ifdef/#else/#endif choice more finely
1634 for maintainability.
1635
1636 * strop.c: Documentation added by Gregg A. Reynolds. Pasted in
1637 from qdocs, RnRs.
1638
a28eb127
GB
1639Wed Jan 26 10:02:11 2000 Greg J. Badros <gjb@cs.washington.edu>
1640
a00c95d9 1641 * tag.c: Added doc for `tag', but mark as deprecated since Mikael
a28eb127
GB
1642 suggests removing tag.c altogether (and using a new `class-of'
1643 instead).
1644
1645 * strings.c: Added documentation from Gregg A. Reynolds. Edited
1646 a bit by me to use FOO instead of @var{foo} and to have the
a00c95d9 1647 summary come before preconditions on input. Also dropped trailing
a28eb127
GB
1648 (rnrs) note.
1649
1650 * gsubr.c: Do not use SCM_DEFINE for `gsubr-apply'. Register the
1651 function with scm_make_subr_opt w/ last arg of 0 so it is not
1652 visible at the Scheme level. Mikael says that this is the right
1653 thing because the first arg to the proc is the guts of a compiled
1654 closure and shouldn't be exposed to the Scheme level.
1655
ac2259fc
GB
1656Tue Jan 25 17:15:47 2000 Greg J. Badros <gjb@cs.washington.edu>
1657
1658 * sort.c: typo in comment fixed.
1659
1660 * keywords.c: Added documentation.
1661
1662 * guardians.c: Added documentation (could be better).
1663
1664 * gc.c: Added docs for gc-set-debug-check-freelist.
1665
1666 * eq.c: Added docs for eq?, eqv? equal? abridged from R4RS.
1667
1668 * boolean.c: Added docs for `not', `boolean?' (by hand).
a00c95d9 1669
d928e0b4
GB
1670Tue Jan 25 13:28:56 2000 Greg J. Badros <gjb@cs.washington.edu>
1671
1672 * random.c: Added documentation, from SLIB page:
1673 http://angela.ctrl-c.liu.se/~calle/scheme/slib_toc.html
1674
1675Mon Jan 24 17:50:20 2000 Greg J. Badros <gjb@cs.washington.edu>
1676
1677 * variable.c, version.c: Added documentation, written by hand
1678 since I could not find anything already written that was
1679 relevant.
1680
d831b039
GH
16812000-01-23 Gary Houston <ghouston@arglist.com>
1682
a00c95d9 1683 * filesys.c (scm_chown): omit port/fdes support if HAVE_FCHOWN is
d831b039
GH
1684 not defined (thanks to Richard Y. Kim).
1685
88ec97ad
GB
1686Thu Jan 20 13:00:38 2000 Greg J. Badros <gjb@cs.washington.edu>
1687
1688 * Makefile.in: Removed, this is auto-generated.
1689
078e9092
GB
1690Thu Jan 20 11:33:47 2000 Dirk Hermann <dirk@ida.ing.tu-bs.de> --applied 01/20/00 gjb
1691
1692 * list.c: Put some variable initialization code at the point of
1693 declaration; Added a comment for list*; Formatting changes.
1694
1695 * load.c: use SCM_NNULLP to make sure the end of a list is not
1696 reached yet.
1697
e7a96050
MD
16982000-01-18 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1699
a177af34
MD
1700 * backtrace.c (scm_display_error_message): Bugfix: Don't use
1701 result of scm_list_p as C boolean.
1702 (scm_display_error_message, scm_set_print_params_x): Use new
1703 validation macros. (Thanks to Dirk Herrmann.)
1704
d06bcb02
MD
1705 * net_db.c (scm_resolv_error): Cast result from hstrerror.
1706
1707 * strports.c (st_end_input): Inserted parenthesis to get operator
1708 grouping correct.
1709
1710 * list.h (scm_init_list): Removed SCM_P around prototypes.
1711
1712 * fports.c, list.c, numbers.c, ports.c, stime.c, symbols.c,
1713 filesys.c, posix.c: Converted docstrings to ANSI C format and
e7a96050
MD
1714 escaped " occurring inside string literals.
1715
682eefe9
MD
1716Tue Jan 18 13:21:08 2000 Mikael Djurfeldt <mdj@r11n07-s.pdc.kth.se>
1717
1718 * posix.c (scm_mknod): Escape " occuring inside docstring.
1719
56cfe22b
MD
17202000-01-18 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1721
1722 * alist.c, chars.c, debug.c, dynl.c, dynwind.c, error.c, eval.c,
1723 evalext.c, filesys.c, gc.c, hash.c, hashtab.c, ioext.c,
1724 keywords.c, list.c, load.c, macros.c, net_db.c, numbers.c,
1725 objprop.c, ports.c, posix.c, print.c, procprop.c, procs.c,
1726 ramap.c, regex-posix.c, root.c, scmsigs.c, simpos.c, socket.c,
1727 stacks.c, stime.c, strings.c, strop.c, strports.c, struct.c,
1728 symbols.c, throw.c, unif.c, vectors.c, version.c, vports.c,
1729 weaks.c: Converted docstrings to ANSI C format.
a00c95d9 1730
56cfe22b
MD
1731 * filesys.c (scm_chmod), simpos.c (scm_system), version
1732 (scm_version), vports (scm_make_soft_port): Escape " occuring
1733 inside docstring.
1734
fcb1720f
GB
1735Mon Jan 17 11:41:22 2000 Greg J. Badros <gjb@cs.washington.edu>
1736
1737 * scm_validate.h: Added SCM_VALIDATE_ULONG_COPY,
1738 SCM_VALIDATE_LONG_COPY
1739
1740 * numbers.c: Use SCM_VALIDATE_ULONG_COPY, instead of
1741 SCM_VALIDATE_INUM_COPY to let bigger numbers be used. Rename a
1742 couple of formal arguments (and fix their uses) to make arguments
1743 match the documentation.
1744
b9af3d0e
MS
17452000-01-14 <mstachow@alum.mit.edu>
1746
1747 * Makefile.am: Augment path when running guile-doc-snarf so
1748 guile-func-name-check is found.
1749
153511a7
GB
1750Fri Jan 14 09:34:55 2000 Greg J. Badros <gjb@cs.washington.edu>
1751
1752 * scm_validate.h (SCM_NUM2LONG_DEF): Fix this macro to just use
1753 def, not SCM_MAKINUM(def); thanks Janis Bzerins!
1754
59d5245f
GB
1755Wed Jan 12 00:06:53 2000 Greg J. Badros <gjb@cs.washington.edu>
1756
1757 * net_db.c (s_scm_inet_makeaddr): Use SCM_NUM2ULONG since that's
1758 the way guile-1.3.4 worked, but #if 0 out the version using
1759 SCM_VALIDATE_INUM_COPY for stricter testing.
1760
95aec69f
GB
1761Tue Jan 11 18:24:18 2000 Greg J. Badros <gjb@cs.washington.edu>
1762
1763 * guile-doc-snarf.in: Use new $fullfilename for running
1764 guile-func-name-check, and put "$fullfilename" and "$filename" in
1765 quotes at uses to make sure re-splitting on whitespace does not
a00c95d9 1766 occur (so filenames w/ embedded whitespace would work okay, though
95aec69f
GB
1767 I sure hope we never have to deal with that! :-) ). Thanks to
1768 Mikael for pointing out the source_dir != build_dir was broken.
1769
b7ac2837
GB
1770Tue Jan 11 17:42:40 2000 Greg J. Badros <gjb@cs.washington.edu>
1771
1772 * scm_validate.h: Added SCM_NUM2LONG_DEF macro. Make
1773 SCM_OUT_OF_RANGE use SCM_MAKINUM, not scm_long2num. Added
1774 SCM_COERCE_ROSTRING macro. Added SCM_VALIDATE_NONEMPTYLIST
1775 macro. Fix SCM_VALIDATE_STRINGORSUBSTR macro to not use SLOPPY
1776 variants.
1777
1778 * ports.c (scm_port_closed_p): Validate that the arg is a PORT,
1779 then return whether it's an open port (was validating that it was
1780 an open port -- this was a bug I introduced back in December, but
1781 my careful reading of diffs caught it).
1782
1783 * numbers.c: Recombine the two conditional-compilation paths for
1784 all the log* primitives -- they were split based on #ifndef
1785 scm_long2num; factored out a SCM_LOGOP_RETURN macro, and fixed
1786 some bugs and inconsistencies in the two sets of implementations.
1787 (scm_lognot) Fixed *atrocious* re-use of a SCM as an integer!
1788
1789 * ioext.c: Use SCM_ASSERT_RANGE in a couple places, and
1790 SCM_VALIDATE_INUM_COPY once where it should've been used.
1791
1792 * fluids.c (scm_internal_with_fluids): Use
1793 SCM_VALIDATE_LIST_COPYLEN.
1794
1795 * filesys.c: Use SCM_NUM2LONG instead of SCM_VALIDATE_INUM_COPY;
1796 this is questionable as it relaxes type safety, but other changes
1797 were useful and all SCM_NUM2LONG's should probably be
1798 revisited. Use SCM_OUT_OF_RANGE, SCM_WRONG_TYPE_ARG.
1799
1800 * evalext.c: line-break change on 1 line.
1801
1802 * eval.c (nconc2last): Takes a non-empty list as its first
1803 argument, not just a list.
1804
1805 * dynl.c: Use new SCM_COERCE_ROSTRING macro.
1806
1807Tue Jan 11 15:44:23 2000 Greg J. Badros <gjb@cs.washington.edu>
1808
1809 * dynl.c, feature.c, filesys.c, fports.c, list.c, load.c,
1810 net_db.c, sort.c, stacks.c, unif.c: Use SCM_WTA, SCM_MISC_ERROR
1811 where possible.
1812
1813 * symbols.c (scm_sysintern0): Fixed the function name in a
1814 scm_misc_error invocation.
1815
1816 * print.c (scm_simple_format): Do not need SCM_COERCE_SUBSTR, and
1817 use scm_return_first to ward off latent GC bug that Mikael caught.
1818
1819 * async.c: Use SCM_VALIDATE_ASYNC_COPY one place where it wasn't
1820 used before but should've been.
1821
d61f6b02
MD
18222000-01-12 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1823
1824 * snarf.h (SCM_PROC1): Replaced SCM (*) (...) with
1825 SCM_FUNC_CAST_ARBITRARY_ARGS.
1826
88423ab1
GB
1827Tue Jan 11 13:44:07 2000 Greg J. Badros <gjb@cs.washington.edu>
1828
1829 * guile-func-name-check.in: Added this script to statically check
1830 #define FUNC_NAME, #undef FUNC_NAME in the source.
1831
1832 * sort.c, posix.c: Fix #undef FUNC_NAME lines to not have trailing
1833 redundant comment, semicolon; caught by new guile-func-name-check
1834 script.
1835
1836 * debug.c: Fix mistaken #define FUNC_NAME for scm_make_iloc.
1837 Caught by new guile-func-name-check-script.
1838
1839 * Makefile.am: Added guile-func-name-check to bin_SCRIPTS
1840
1841 * ramap.c: Fix #if 0'd out code to be syntactically acceptable to
1842 guile-func-name-check.
1843
a00c95d9 1844 * guile-doc-snarf.in: Run guile-func-name-check on the file before
88423ab1
GB
1845 doing the snarf.
1846
7f15e635
GB
1847Tue Jan 11 11:31:10 2000 Greg J. Badros <gjb@cs.washington.edu>
1848
1849 * fports.c, ports.c, ports.h, strports.c, vports.c: Make write
1850 port function take const void*, not void*.
1851
bf121b59
GB
1852Tue Jan 11 11:18:07 2000 Greg J. Badros <gjb@cs.washington.edu>
1853
1854 * scm_validate.h, chars.c, ports.c, print.c, read.c, strings.c,
1855 strop.c: Use SCM_VALIDATE_ICHR, SCM_VALIDATE_ICHR_COPY instead of
1856 SCM_VALIDATE_CHAR, SCM_VALIDATE_CHAR_COPY. Change made for
1857 consistency with the other macros dealing with immediate
1858 characters. (Similar to INT -> INUM change a week or so ago).
1859
7965d98f
GB
1860Tue Jan 11 10:41:46 2000 Greg J. Badros <gjb@cs.washington.edu>
1861
1862 * dynl.c, error.c, eval.c, feature.c, filesys.c, fports.c, list.c, load.c,
1863 net_db.c, read.c, socket.c: Update error messages to use ~A for
1864 %s, ~S for %S to work with new `simple-format' format and be
1865 standardized better.
1866
1867 * print.h, print.c (scm_simple_format): Added `simple-format'
1868 primitive. It's the old scm_display_error, with ARGS now a rest
a00c95d9 1869 parameter, and the destination first instead of last (and a couple
7965d98f
GB
1870 new capabilities inspired by `format' -- #t as destination means
1871 current-output-port, #f means return the formatted text as a
1872 string.
1873
1874 * gh.h, gh_data.c, ports.h, ports.c: Added some missing const specifications.
1875
1876 * backtrace.c (scm_display_error_message): Rewrote to use
1877 scm_simple_format() procedure.
1878
1879 * __scm.h: Added commented-out #define of GUILE_DEBUG_FREELIST
1880
f73d2411
MV
18812000-01-09 Marius Vollmer <mvo@zagadka.ping.de>
1882
1883 Finally applied the libltdl patch from Thomas Tanner, with slight
1884 modifications.
1885
1886 * DYNAMIC-LINKING: Removed because it is obsolete.
1887 * dynl.c: Use ANSI prototypes.
1888 (sysdep_dynl_link): Use lt_dlopenext instead of lt_dlopen.
1889 * scmconfig.h.in: Do not change, as it is automatically generated.
a00c95d9 1890
f73d2411
MV
1891 1999-07-25 Thomas Tanner <tanner@ffii.org>
1892
1893 * dynl-dl.c, dynl-dld.c, dynl-shl.c, dynl-vms.c: deleted
1894 (obsolete)
1895 * Makefile.am: likewise, add INCLTDL (libltdl headers) to
1896 INCLUDES, set dlpreopened files in LDFLAGS, link libguile
1897 against libltdl
1898 * dynl.c: use libltdl if DYNAMIC_LINKING is enabled,
1899 * guile.c: register preloaded modules
1900 * scmconfig.h.in: remove obsolete symbols
1901
38c1d3c4
GH
19022000-01-09 Gary Houston <ghouston@arglist.com>
1903
1904 * These changes should make it unnecessary to call tzset from
1905 Scheme after modifying the TZ environment variable, even if the
1906 system date facilities cache the value.
1907 * stime.c (setzone, scm_localtime): added comments.
1908 (tzset): don't define a noop tzset macro if HAVE_TZSET not defined.
1909 (setzone): don't call tzset.
1910 (restorezone): call tzset only if HAVE_TZSET is defined.
1911 (scm_tzset): don't define if HAVE_TZSET not defined. Change the
1912 doc string to indicate that this procedure isn't likely to do
1913 anything useful.
1914 (scm_localtime, scm_strftime, scm_mktime): call tzset if
1915 LOCALTIME_CACHE is defined.
1916
9359d657
MD
19172000-01-09 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1918
1919 * posix.c (scm_sync): Return SCM_UNSPECIFIED.
1920
f25f761d
GH
19212000-01-09 Gary Houston <ghouston@arglist.com>
1922
1923 * eval.c: define scm_unbound_variable_key ('unbound-variable).
1924 scm_lookupcar1: throw an error with key 'unbound-variable instead
1925 of 'misc-error when an unbound variable is encountered.
1926
a00c95d9 1927 * filesys.c (scm_mkdir, scm_rmdir, scm_getcwd, scm_select,
f25f761d
GH
1928 scm_symlink, scm_readlink, scm_lstat),
1929 posix.c (scm_setpgid, scm_setsid, scm_ctermid, scm_tcgetpgrp,
1930 scm_tcsetpgrp, scm_uname, scm_setlocale, scm_mknod, scm_nice,
1931 scm_sync),
a00c95d9 1932 simpos.c (scm_system),
f25f761d
GH
1933 stime.c (scm_times, scm_strptime):
1934 move the HAVE_XXX feature tests out of the procedure bodies.
1935 don't use SCM_SYSMISSING.
1936 scm_validate.h (SCM_SYSMISSING): removed.
1937 error.h, error.c (scm_sysmissing): comment that this is deprecated.
1938 see ChangeLog entry for 1999-12-28.
1939
a4dd2611
GB
1940Sat Jan 8 19:52:04 2000 Greg J. Badros <gjb@cs.washington.edu>
1941
1942 * scm_validate.h (SCM_VALIDATE_BOOL_COPY): Fix typo.
1943
1944Sat Jan 8 17:06:46 2000 Greg J. Badros <gjb@cs.washington.edu>
1945
1946 * backtrace.c: Fix spelling typo in a comment.
1947
1948 * snarf.h: Use new SCM_DOCS macro to encapsulate the non SCM_INIT
1949 text. Reformatted some of the expansions.
1950
5ac36451
GB
1951Fri Jan 7 15:50:46 2000 Greg J. Badros <gjb@cs.washington.edu>
1952
1953 * scm_validate.h (SCM_OUT_OF_RANGE): Use scm_out_of_range_pos to
1954 report the position of the argument.
1955
a00c95d9 1956 * error.h, error.c (scm_out_of_range_pos): Added this function to
5ac36451 1957 take extra "pos" argument, the position number of the errant
a00c95d9 1958 argument.
5ac36451
GB
1959
1960 * debug.c: Use SCM_OUT_OF_RANGE instead of scm_out_of_range.
1961
1962 * snarf.h: Use SCM_HERE and SCM_INIT as names, not SCM_NOTSNARF
1963 and SCM_SNARFING. Also put the %%% in the SCM_INIT since Mikael
1964 prefers that and I'm reasonably indifferent.
1965
1966Fri Jan 7 15:03:32 2000 Greg J. Badros <gjb@cs.washington.edu>
1967
1968 * snarf.h: Factor out differences between C++ and non-C++ into
1969 SCM_FUNC_CAST_ARBITRARY_ARGS macro. Modify all the snarf macro
1970 definitions to use SCM_NOTSNARF and SCM_SNARFING macros (like
1971 Mikael's macros, below, but changed names and SCM_SNARFING no
1972 longer expands to include %%% -- that must appear in the argument
1973 so that the token appears at the call-site as a reminder).
1974
088bb1d4
MD
19752000-01-07 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1976
1977 * snarf.h (SCM_INSITU, SCM_INIT): New snarf macros for use in user
1978 snarf macro definitions.
1979
636480e6
MD
19802000-01-06 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1981
1982 * chars.c (scm_integer_to_char): Use Greg's nice
1983 SCM_VALIDATE_INUM_RANGE macro for argument checking for closer
1984 adherence to R5RS.
1985
7c5628e2
GB
1986Thu Jan 6 11:48:49 2000 Greg J. Badros <gjb@cs.washington.edu>
1987
1988 * *.c, snarf.h: Replace GUILE_PROC1 with SCM_DEFINE1 throughout.
1989
2cc0f8cb
GB
1990Thu Jan 6 11:22:53 2000 Greg J. Badros <gjb@cs.washington.edu>
1991
1992 * Makefile.am (ETAGS_ARGS): Switch to SCM_DEFINE, SCM_DEFINE1
1993 instead of GUILE_PROC.
1994
1995Thu Jan 6 11:21:49 2000 Greg J. Badros <gjb@cs.washington.edu>
1996
a00c95d9 1997 * alist.c: Do not report mismatch errors on some uses of `tmp' (do
2cc0f8cb
GB
1998 this by using SCM_ARG2 instead of `2' in the SCM_VALIDATE_CONS
1999 macro call.
2000
9179dcdd
GB
2001Thu Jan 6 09:54:33 2000 Dirk Herrmann <dirk@ida.ing.tu-bs.de> --gjb applied
2002
2003 * scm_validate.h: Remove some redundant NIMP tests.
2004
2005 * alist.c: minimize scope of the tmp variables, and initialize
2006 them when declared. The strange SCM_NIMP tests are replaced by
2007 SCM_CONSP tests that more closely reflect the intended semantics.
2008 However, we don't get a performance penalty here, because the
2009 SCM_CONSP test was performed by the ALISTCELL test anyway. * The
2010 extremely ugly use of ASRTGO macros was removed: The calls to
2011 ASRTGO were not encapsulated by "#ifndef SCM_RECKLESS", but got a
2012 label parameter that only exists when SCM_RECKLESS is not defined.
2013 This works, because ASRTGO itself is defined in a way that it only
2014 makes use of the label parameter if SCM_RECKLESS is not defined
2015 (shudder!). Does guile make at all use of the possibility to
2016 define SCM_RECKLESS? * Codesize is likely to be reduced, since
2017 instead of two calls to SCM_ASSERT performed by the ALISTCELL test
2018 we now only get one test.
2019
2020 * list.c: Use SCM_NNULLP, not SCM_NIMP as appropriate. Also use
2021 SCM_NULLP instead of SCM_IMP. Drop use of "register" keyword on
2022 some variables in `list?'. Fix `reverse' and `reverse!'
2023 primitives to handle improper lists better.
2024
15b33280
GB
2025Wed Jan 5 11:24:53 2000 Greg J. Badros <gjb@cs.washington.edu>
2026
2027 * *.[ch]: Whitespace changes -- added space after SCM_VALIDATE_*
2028 macros and SCM_DEFINE macros to match GNU coding standards.
2029
ca8cd130
GB
2030Wed Jan 5 11:04:24 2000 Greg J. Badros <gjb@cs.washington.edu>
2031
2032 * *.[ch]: Replace GUILE_PROC w/ SCM_DEFINE.
2033
fb764465
GB
2034Wed Jan 5 10:59:06 2000 Greg J. Badros <gjb@cs.washington.edu>
2035
2036 * *.[ch]: Replace SCM_VALIDATE_INT w/ SCM_VALIDATE_INUM for
2037 better consistency with the names of other SCM_VALIDATE_ macros
2038 and better conformance to guile naming policy.
2039
2040Wed Jan 5 10:50:39 2000 Greg J. Badros <gjb@cs.washington.edu>
2041
2042 * ports.c (s_scm_close_all_ports_except): Use SCM_ARG1 in a
2043 SCM_VALIDATE instead of 1 to avoid a check on the argument (since
2044 it's not the actual name of the formal).
1e484823
GB
2045
2046 * guile-snarf.awk.in: Do argument/number mismatch checking and
2047 print warnings in an Emacs compile-mode parseable format.
2048
2049 * struct.c: Use SCM_ASSERT_RANGE instead of SCM_ASSERT w/
2050 SCM_OUTOFRANGE as 3rd argument.
2051
2052 * random.c: Fix argument/number mismatch (that I introduced :-( ).
2053
2054 * __scm.h: Do not #define SCM_ARG* when snarfing;
2055 lets us distinguish between 1 and SCM_ARG1 when snarfing as only
2056 the former (using the number) requires the argument to match the
2057 formal in the current argument snarfing check.
2058
2059 * snarf.h: Give new definition of SCM_ASSERT when in
a00c95d9 2060 snarfing mode to output a lexically-identifiable sequence that the
1e484823
GB
2061 guile-snarf.awk script uses to verify argument/position matching.
2062
2063 * ramap.c: Remove extraneous #undef FUNC_NAME.
2064
53fc4636
GB
2065Wed Jan 5 08:36:38 2000 Greg J. Badros <gjb@cs.washington.edu>
2066
2067 * guile-doc-snarf.awk.in: Removed -- guile-snarf.awk.in is the
a00c95d9 2068 current version of the same functionality; it writes the .x output
53fc4636
GB
2069 to stdout instead of directly into the file.
2070
2071Wed Jan 5 08:15:04 2000 Greg J. Badros <gjb@cs.washington.edu>
2072
2073 * unif.c, symbols.c, strings.c, stacks.c, random.c, print.c,
2074 posix.c: Eliminated a bunch of SCM_NIMP(..)s that are now
2075 redundant with the safer macros. Patch from Dirk Hermann applied
2076 by hand. Thanks Dirk!
2077
2078 * scm_validate.h: Added SCM_VALIDATE_VECTOR_OR_DVECTOR for some
2079 uses in random.c.
2080
2081 * ramap.c: whitespace change.
2082
3b5345d9
GB
2083Tue Jan 4 14:21:35 2000 Greg J. Badros <gjb@cs.washington.edu>
2084
2085 * options.c, objects.c, keywords.c, gc.c: Some redundant SCM_NIMP
2086 removals from Dirk Hermann.
2087
2088 * alist.c: Rename formals to match the parameter names in the
2089 documentation, updates to documentation. Thanks Dirk Hermann!
2090
169aec65
MD
20912000-01-04 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2092
db62436e
MD
2093 * eval.c (SCM_CEVAL): Reverse order of
2094 scm_stack_checking_enabled_p and SCM_STACK_OVERFLOW_P
2095 (Thanks to Brad Knotwell.)
169aec65 2096
da43d822
GB
2097Mon Jan 3 08:30:02 2000 Greg Harvey <Greg.Harvey@thezone.net> (applied --01/03/00 gjb)
2098
2099 * gc.c (scm_debug_newcell): Added SCM_SETCAR of the newly
a00c95d9 2100 allocated cell.
da43d822
GB
2101
2102 * pairs.h: Added a comment about the need for the SCM_SETCAR in
2103 SCM_NEWCELL macro.
2104
2105Mon Jan 3 08:25:19 2000 Greg J. Badros <gjb@cs.washington.edu>
2106
2107 * dynl-vms.c, debug.c, coop-threads.c, backtrace.c, eval.c: More
2108 SCM_NIMP tests that were redundant are now eliminated. Patches
2109 from Dirk Hermann applied by hand.
2110
339999c7 2111The ChangeLog continues in the file: "ChangeLog-1996-1999"