212224b4cf* Added the primitive (environ): returns an alist of (string x string) as obtained from the system environ. * Added the primitive env: (env "key") retrieves the env value associated with key (env "key" "val") sets the env value assocuated with key to val (env "key" "val" overwrite?) same as above but it does not overwrite an existing value of overwrite? is #f.
Abdulaziz Ghuloum
2007-01-13 00:42:37 -0500
6359ca9ee4Fixed copyright notice to be 2006-2007 instead of 2006.
Abdulaziz Ghuloum
2007-01-11 19:22:32 -0500
09d9687fdd* Cogen no longer generates (int x) where x is a fixnum.
Abdulaziz Ghuloum
2007-01-09 09:44:00 +0300
ffc5ef557c(int x) is no longer emitted by the cogen. assembler handles (int x) and fixnums similarly.
Abdulaziz Ghuloum
2007-01-09 09:24:07 +0300
63575db860* makefile.ss is updated to use fork and waitpid in order to make use of the dual-core capability of my macbook :-) Compile-time is now 1.5secs real-time.
Abdulaziz Ghuloum
2007-01-01 02:48:17 +0300
a5618ef877* Fork, posix-fork, and waitpid are implemented.
Abdulaziz Ghuloum
2007-01-01 02:02:41 +0300
eb24d17049Fixed bug that caused mvcalls to lose their live masks.
Abdulaziz Ghuloum
2007-01-01 01:46:47 +0300
a8e1b860bbLive-masks are busted again. Some closures that are live are not traced by the GC.
Abdulaziz Ghuloum
2006-12-30 22:52:37 +0300
b10d954548updated TODO
Abdulaziz Ghuloum
2006-12-29 13:47:24 +0300
2ea03e0417* Fixed bug in collecting bignums. * time-it now displays the number of collections and bytes allocated.
Abdulaziz Ghuloum
2006-12-29 13:45:30 +0300
b507118f5dAdded libtimers.ss: (time-it proc) runs proc and reports the time. (time-it proc message) runs proc and reports the time, with message. (time <expr>) evaluates expr and prints the running time.
Abdulaziz Ghuloum
2006-12-29 10:53:47 +0300
d38880b777Fixed bug in libfasl that caused reading a thunk to return the code instead.
Abdulaziz Ghuloum
2006-12-26 12:03:43 +0300
0b38b1ff30ikarus-fasl.c plays along with the rtd-symbol game by setting and referencing rtd symbols.
Abdulaziz Ghuloum
2006-12-26 11:46:23 +0300
81b2f217a3* reader can now read fasl objects.
Abdulaziz Ghuloum
2006-12-26 11:39:14 +0300
f5f91712dd* Fasl file reader almost complete with full record and code reader.
Abdulaziz Ghuloum
2006-12-26 11:25:48 +0300
cfe69af8f8BUGS file added to keep track of some pending bugs.
Abdulaziz Ghuloum
2006-12-25 11:38:18 +0300
f25cc3cb67Pretty-printed gensyms: * print-gensym now accepts the symbol "pretty" as a valid argument. * The writer prints #:pretty-name if the print-gensym value is |pretty|. * The reader accepts #:id as a valid syntax. The result is a fresh gensym with id as a pretty-name.
Abdulaziz Ghuloum
2006-12-25 11:33:03 +0300
e7d0a0a1ccTokenize now recognizes gensym syntax: #{id0} => a fresh gensym with pretty-string id0 #{id0 id1} => an interned gensym with pretty-string id0 and unique-string id1. id0 and id1 can have any identifier syntax including bar-quoted ids. any number of whitespaces can be placed around id0 and id1.
Abdulaziz Ghuloum
2006-12-25 11:18:37 +0300
b9a369197agensym->unique-string now interns gensyms in the gensym table.
Abdulaziz Ghuloum
2006-12-25 10:25:40 +0300
b3a6744691renamed oblist to symbol_table in pcb
Abdulaziz Ghuloum
2006-12-25 09:28:53 +0300
711cabe8bbremoved all references to oblist from ss files
Abdulaziz Ghuloum
2006-12-25 09:20:09 +0300
72653c5ef1updated todo
Abdulaziz Ghuloum
2006-12-25 09:17:08 +0300
4f5490039b* (interrupt-handler) is added to handle INT signals. * Cafes now customize the interrupt-handler to suppress the error message during read that the default interrupt handler generates.
Abdulaziz Ghuloum
2006-12-24 12:53:01 +0300
da9518cc49added comment to libguardians about where the code came from.
Abdulaziz Ghuloum
2006-12-24 12:20:16 +0300
0a01d8b4b8makefile.ss and ikarusdoc now use "/usr/bin/env ikarus" in the shebang line.
Abdulaziz Ghuloum
2006-12-24 12:08:18 +0300
1e572559b7collect is added to the set of public primitives
Abdulaziz Ghuloum
2006-12-24 11:50:19 +0300
f729a725d2libinterpret is gone.
Abdulaziz Ghuloum
2006-12-24 11:27:53 +0300
599f68aa84* Ikarus now handles interrupts (e.g. ^C) by signalling an error when an interrupt occurs.
Abdulaziz Ghuloum
2006-12-24 11:24:53 +0300
7fed78fa9dAn alt-stack and interrupt-handler are added to ikarus-main.c. When an interrupt occurs, the engine_ticks is set to 1 and the interrupted field is set to 1 in the pcb.
Abdulaziz Ghuloum
2006-12-24 09:43:20 +0300
fc609b4916* lab/interupts program is added to experiment with sigaction and sigaltstack.
Abdulaziz Ghuloum
2006-12-24 09:25:01 +0300
e69f0a5c80* Assembler-output suppresses printing the closure-size; it prints a newline instead.
Abdulaziz Ghuloum
2006-12-23 05:17:57 +0300
b06b28f562* Print-gensym is now set to off during assembler-output.
Abdulaziz Ghuloum
2006-12-21 18:11:43 +0300
a41457ae66* Heap and stack overflows now use interrupt-calls in order to push the calls to the handlers outside of the main-line code.
Abdulaziz Ghuloum
2006-12-21 18:01:46 +0300
0af5f6cc2a* Engine handler is functional.
Abdulaziz Ghuloum
2006-12-21 17:49:30 +0300
efae97a6e0Actually, the profiling times show that memory-based tests can be performed at around 3 secs per 1 billion checks (about 6 times slower than register-based counters).
Abdulaziz Ghuloum
2006-12-21 16:32:45 +0300
67a850e712Profiling timing shows that we can do interrupt checks with cost: * about 2.0 secs per 1 billion checks if the counter is kept in memory * about 0.5 secs per 1 billion checks if the counter is kept in register.
Abdulaziz Ghuloum
2006-12-21 16:22:07 +0300
5615b03879* Input/output ports are closed when the last reference to them is dropped. Dropped files are closed before new files are opened.
Abdulaziz Ghuloum
2006-12-21 11:14:12 +0300
2fcae826d1* with-input-from-file, call-with-input-file, with-output-to-file, and call-with-output-file no longer use dynamic-wind to track if an exit continuation is invoked multiple times.
Abdulaziz Ghuloum
2006-12-21 10:56:07 +0300
5ccca042a6* Implementation of Guardian is complete. * Implementation not fully tested. May have corner cases.
Abdulaziz Ghuloum
2006-12-19 20:14:31 +0300
8dac92a512added guardians primitives, not tested
Abdulaziz Ghuloum
2006-12-19 19:41:13 +0300
3d2d52fe58Added a guardians field to the pcb. Added a guardians_loop procedure to the collector. In this revision, this procedure does nothing.
Abdulaziz Ghuloum
2006-12-18 23:08:33 +0300
e6c5c97b34fixed simple bug in r126 for missing return(y);
Abdulaziz Ghuloum
2006-12-17 03:07:21 +0300
b7410520cbrenamed all if (accounting) {...} to #if accounting ... #endif
Abdulaziz Ghuloum
2006-12-17 03:00:34 +0300
ac5ac00babrecord-case definition is moved to libcompile.ss and the file is deleted.
Abdulaziz Ghuloum
2006-12-17 02:18:11 +0300