Commit Graph

  • 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
  • 6359ca9ee4 Fixed 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
  • eb24d17049 Fixed bug that caused mvcalls to lose their live masks. Abdulaziz Ghuloum 2007-01-01 01:46:47 +0300
  • a8e1b860bb Live-masks are busted again. Some closures that are live are not traced by the GC. Abdulaziz Ghuloum 2006-12-30 22:52:37 +0300
  • b10d954548 updated 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
  • b507118f5d Added 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
  • d38880b777 Fixed bug in libfasl that caused reading a thunk to return the code instead. Abdulaziz Ghuloum 2006-12-26 12:03:43 +0300
  • 0b38b1ff30 ikarus-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
  • 9c00592520 fasl-read handles negative fixnums. Abdulaziz Ghuloum 2006-12-26 09:22:58 +0300
  • 3ddceaa164 fasl-read now handled pairs, positive-fixnums and the empty list. Abdulaziz Ghuloum 2006-12-26 06:32:59 +0300
  • d41a2c0096 fasl-write now returns void instead of the meaningless number it used to return Abdulaziz Ghuloum 2006-12-26 06:25:35 +0300
  • 4fa2bdf0d9 tokenize recognizes #@ as a fasl header and calls $fasl-read (in libfasl.ss). Abdulaziz Ghuloum 2006-12-26 06:21:07 +0300
  • 903023592d Updated todo. Abdulaziz Ghuloum 2006-12-26 06:05:54 +0300
  • cfe69af8f8 BUGS file added to keep track of some pending bugs. Abdulaziz Ghuloum 2006-12-25 11:38:18 +0300
  • f25cc3cb67 Pretty-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
  • e7d0a0a1cc Tokenize 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
  • 158980aeea The fasl-loader interns gensyms by default now. Abdulaziz Ghuloum 2006-12-25 10:35:18 +0300
  • b9a369197a gensym->unique-string now interns gensyms in the gensym table. Abdulaziz Ghuloum 2006-12-25 10:25:40 +0300
  • b3a6744691 renamed oblist to symbol_table in pcb Abdulaziz Ghuloum 2006-12-25 09:28:53 +0300
  • 711cabe8bb removed all references to oblist from ss files Abdulaziz Ghuloum 2006-12-25 09:20:09 +0300
  • 72653c5ef1 updated 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
  • da9518cc49 added comment to libguardians about where the code came from. Abdulaziz Ghuloum 2006-12-24 12:20:16 +0300
  • 06158d90e0 deleted Makefile Abdulaziz Ghuloum 2006-12-24 12:09:21 +0300
  • 0a01d8b4b8 makefile.ss and ikarusdoc now use "/usr/bin/env ikarus" in the shebang line. Abdulaziz Ghuloum 2006-12-24 12:08:18 +0300
  • 1e572559b7 collect is added to the set of public primitives Abdulaziz Ghuloum 2006-12-24 11:50:19 +0300
  • f729a725d2 libinterpret 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
  • 7fed78fa9d An 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
  • 3aa22ea200 * Added 'add imm, mem' instruction format. Abdulaziz Ghuloum 2006-12-21 17:16:33 +0300
  • efae97a6e0 Actually, 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
  • 67a850e712 Profiling 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
  • f7aa4c99e1 added libguardians.ss Abdulaziz Ghuloum 2006-12-19 20:15:36 +0300
  • 5ccca042a6 * Implementation of Guardian is complete. * Implementation not fully tested. May have corner cases. Abdulaziz Ghuloum 2006-12-19 20:14:31 +0300
  • 8dac92a512 added guardians primitives, not tested Abdulaziz Ghuloum 2006-12-19 19:41:13 +0300
  • 3d2d52fe58 Added 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
  • e6c5c97b34 fixed simple bug in r126 for missing return(y); Abdulaziz Ghuloum 2006-12-17 03:07:21 +0300
  • b7410520cb renamed all if (accounting) {...} to #if accounting ... #endif Abdulaziz Ghuloum 2006-12-17 03:00:34 +0300
  • ac5ac00bab record-case definition is moved to libcompile.ss and the file is deleted. Abdulaziz Ghuloum 2006-12-17 02:18:11 +0300
  • 52acb437e8 added: lab/prof/ lab/prof/Makefile lab/prof/main lab/prof/main.c lab/prof/main.s Abdulaziz Ghuloum 2006-12-17 02:15:38 +0300
  • 63dd3ba9b4 Moved test files to tests directory Abdulaziz Ghuloum 2006-12-17 02:11:57 +0300
  • 37aafc2240 added a TODO list Abdulaziz Ghuloum 2006-12-13 11:06:21 -0500
  • 5f3ee8a2c4 renamed lib dir to src Abdulaziz Ghuloum 2006-12-10 23:13:16 -0500
  • 5a0a7068a8 fx+ open-coded Abdulaziz Ghuloum 2006-12-08 08:42:56 -0500
  • 96c647b69d fx+ in progress Abdulaziz Ghuloum 2006-12-08 06:12:35 -0500
  • 1d2a277063 not done with fx-/fx+/fx* Abdulaziz Ghuloum 2006-12-07 15:42:25 -0500
  • 8aab527c56 predicates now evaluate their args in the acum. Abdulaziz Ghuloum 2006-12-07 03:36:31 -0500
  • bd71be0d64 * Cadr is now open-coded. Abdulaziz Ghuloum 2006-12-07 02:48:31 -0500
  • 1487c5ed54 * Open-coded fxadd1 and fxsub1. Abdulaziz Ghuloum 2006-12-07 02:14:02 -0500
  • d7565580bf added intel docs Abdulaziz Ghuloum 2006-12-07 01:38:04 -0500
  • 0fd967384b removed reference to memv in recordize Abdulaziz Ghuloum 2006-12-06 21:39:13 -0500
  • 69008ea318 Rewrote recordize to get rid of the environment: total saving ~ 50ms. Abdulaziz Ghuloum 2006-12-06 21:33:33 -0500
  • 5abcbccb3a changed compile-expr to expand first Abdulaziz Ghuloum 2006-12-06 21:20:15 -0500
  • cd4eef2382 Documented libtoplevel.ss a bit. Abdulaziz Ghuloum 2006-12-06 21:05:19 -0500
  • 2a2a3ab7fb * Added quotient. * Added remainder. * Added quotient+remainder :-) Abdulaziz Ghuloum 2006-12-06 20:53:54 -0500
  • f378c48daf Added Rich Lewis's Sudoku solver and problems. Abdulaziz Ghuloum 2006-12-06 18:27:16 -0500
  • 4143501988 * Added ~% to the format metas. * Exported string->list. Abdulaziz Ghuloum 2006-12-06 18:26:37 -0500
  • 584e7706ea added optimize-gc note Abdulaziz Ghuloum 2006-12-06 11:08:50 -0500
  • 0f2bcdb2a0 added an mmap cache to avoid repeated mmaps/munmaps Abdulaziz Ghuloum 2006-12-06 11:07:27 -0500
  • 5f051d3122 fixed memory extension bug in the collector Abdulaziz Ghuloum 2006-12-06 10:08:34 -0500
  • 6b0ec86de6 more stupid optimizations Abdulaziz Ghuloum 2006-12-06 01:26:44 -0500
  • 06c64dab3a more optimizations Abdulaziz Ghuloum 2006-12-06 00:33:25 -0500
  • 15a36e7333 eqv? -> eq? optimization Abdulaziz Ghuloum 2006-12-05 23:26:02 -0500
  • ac38b15c6c memq is open-coded if the second argument is a constant list Abdulaziz Ghuloum 2006-12-05 22:29:00 -0500
  • 0d476b91e2 cleaup optimizr a bit Abdulaziz Ghuloum 2006-12-05 21:30:42 -0500
  • 6e6291e158 Memv is optimized as memq if the second argument is a list containing no bignums. Abdulaziz Ghuloum 2006-12-05 21:05:04 -0500
  • ca8707c5e6 starting primitive optimizer Abdulaziz Ghuloum 2006-12-05 20:45:36 -0500
  • d006951ed7 symbol-table now puts an "unbound" in the symbol-value cell of the symbols it creates Abdulaziz Ghuloum 2006-12-05 19:42:09 -0500
  • b8e595b6e6 removed some install-underflow-handler procedure that was not used Abdulaziz Ghuloum 2006-12-05 19:21:58 -0500
  • 09c0ec0732 added assv Abdulaziz Ghuloum 2006-12-05 19:18:36 -0500
  • ed26e7d080 removed vector-memq and vector-memv since they were not used anywhere Abdulaziz Ghuloum 2006-12-05 19:12:28 -0500
  • 0048c829b3 added eqv? and memv Abdulaziz Ghuloum 2006-12-05 19:09:53 -0500
  • 71f98ef203 removed .vimview Abdulaziz Ghuloum 2006-12-05 16:07:28 -0500
  • 90afd21ac8 removed vimview files Abdulaziz Ghuloum 2006-12-05 16:06:41 -0500
  • 276f317885 tracer for multiple values is added Abdulaziz Ghuloum 2006-12-05 15:08:00 -0500
  • c5e1221ace removed message-case from a file and included it in libchezio.ss Abdulaziz Ghuloum 2006-12-05 14:06:13 -0500
  • 1c35c6939d removed all unsafe-record code Abdulaziz Ghuloum 2006-12-05 14:00:31 -0500
  • bbf0936963 added more examples about traces in libtrace.ss Abdulaziz Ghuloum 2006-12-05 13:56:54 -0500
  • d9915f371b added trace-define Abdulaziz Ghuloum 2006-12-05 13:28:23 -0500
  • 80c8ca7a5c added vimviews to repository Abdulaziz Ghuloum 2006-12-05 13:03:22 -0500
  • 6136e60716 eval-cp removed for calls to thunks Abdulaziz Ghuloum 2006-12-04 23:15:03 -0500
  • 876a2d7824 Procedure codes no longer save their cp if the cp has no free vars. Abdulaziz Ghuloum 2006-12-04 22:43:42 -0500
  • 62b42e8bb8 optimize direct calls online Abdulaziz Ghuloum 2006-12-04 22:05:44 -0500
  • 36b3ec82d2 every case-lambda case now has a label Abdulaziz Ghuloum 2006-12-04 20:13:21 -0500
  • c54ade7cef case-info record type for cases Abdulaziz Ghuloum 2006-12-04 19:58:24 -0500
  • b8b4172797 removed clambda-code record type Abdulaziz Ghuloum 2006-12-04 19:05:02 -0500