ikarus/scheme
Abdulaziz Ghuloum 45346ef865 - Added cp0! including:
- (optimize-level [0,1,2])  and  ikarus -O[0,1,2]
       where -O0 = no optimizations
             -O1 = using old optimizer
             -O2 = using the new cp0 optimizer
       defaults to -O1 for now.
   - (cp0-size-limit n) which is the limit of the residual size for
     each inlining attempt
   - (cp0-effort-limit n) which is the limit on the effort expended 
     for each inlining attempt
   
- Rewrote the syntax-match macro to make use of the same technology
  used in syntax-case itself resulting in reduced code size.

- Added (system-value <symbol>) which returns the system value.
  E.g., (system-value 'car) => #<procedure car>
  This is pretty much the same as 
    (eval <symbol> (environment '(ikarus)))
  except that it does not involve compiling the expression or 
  consulting the library/expander systems.

- Fixed the fasl loader to make it understand complex numbers.
2008-06-28 02:25:44 -07:00
..
tests Added test to exercise last bug fixed (refilling io read buffer 2008-06-08 06:42:58 -07:00
unicode Added -m32 to CFLAGS/LDFLAGS, updated copyright dates and version no. 2008-01-29 00:34:34 -05:00
Makefile.am More work on cp0 which can now swallow the compiler but cannot yet 2008-06-22 22:10:05 -07:00
Makefile.in More work on cp0 which can now swallow the compiler but cannot yet 2008-06-22 22:10:05 -07:00
ikarus.apply.ss Added -m32 to CFLAGS/LDFLAGS, updated copyright dates and version no. 2008-01-29 00:34:34 -05:00
ikarus.boot.prebuilt - Added cp0! including: 2008-06-28 02:25:44 -07:00
ikarus.bytevectors.ss - Added cp0! including: 2008-06-28 02:25:44 -07:00
ikarus.cafe.ss Added (interaction-environment). 2008-05-01 06:02:36 -04:00
ikarus.chars.ss - Added cp0! including: 2008-06-28 02:25:44 -07:00
ikarus.code-objects.ss removed all symbolicly linked files. 2008-02-14 17:45:15 -05:00
ikarus.codecs.ss Added -m32 to CFLAGS/LDFLAGS, updated copyright dates and version no. 2008-01-29 00:34:34 -05:00
ikarus.collect.ss Added -m32 to CFLAGS/LDFLAGS, updated copyright dates and version no. 2008-01-29 00:34:34 -05:00
ikarus.command-line.ss Added -m32 to CFLAGS/LDFLAGS, updated copyright dates and version no. 2008-01-29 00:34:34 -05:00
ikarus.compiler.altcogen.ss - Added cp0! including: 2008-06-28 02:25:44 -07:00
ikarus.compiler.source-optimizer.ss - Added cp0! including: 2008-06-28 02:25:44 -07:00
ikarus.compiler.ss - Added cp0! including: 2008-06-28 02:25:44 -07:00
ikarus.conditions.ss fixed bug in IO where the system was silently eating up any 2008-06-08 06:19:29 -07:00
ikarus.control.ss Added -m32 to CFLAGS/LDFLAGS, updated copyright dates and version no. 2008-01-29 00:34:34 -05:00
ikarus.date-string.ss Added -m32 to CFLAGS/LDFLAGS, updated copyright dates and version no. 2008-01-29 00:34:34 -05:00
ikarus.enumerations.ss Fixed a bug in enum-set-universe not returning an enum type. 2008-05-05 23:53:48 -04:00
ikarus.exceptions.ss The bottom-most exception handler now only exits. 2008-06-07 08:32:00 -07:00
ikarus.fasl.ss fasl reader/writer now understands complex numbers. 2008-05-21 00:40:42 -07:00
ikarus.fasl.write.ss Added inexact complex numbers. 2008-05-24 10:13:01 -07:00
ikarus.fixnums.ss - Added cp0! including: 2008-06-28 02:25:44 -07:00
ikarus.guardians.ss Added -m32 to CFLAGS/LDFLAGS, updated copyright dates and version no. 2008-01-29 00:34:34 -05:00
ikarus.handlers.ss All parameters that are bound to variables now have proper names. 2008-06-19 01:58:59 -07:00
ikarus.hash-tables.ss Added -m32 to CFLAGS/LDFLAGS, updated copyright dates and version no. 2008-01-29 00:34:34 -05:00
ikarus.intel-assembler.ss allocation overflow check sequence is a little tighter now. 2008-06-10 23:01:22 -07:00
ikarus.io.ss Added port-position and port-has-port-position? 2008-06-19 21:49:24 -07:00
ikarus.lists.ss fixed "inaccurate error message" bug in map when applied a non-list 2008-05-12 02:39:28 -07:00
ikarus.load.ss ikarus.reader is now loadable separately. 2008-05-20 23:21:37 -07:00
ikarus.main.ss - Added cp0! including: 2008-06-28 02:25:44 -07:00
ikarus.multiple-values.ss Added -m32 to CFLAGS/LDFLAGS, updated copyright dates and version no. 2008-01-29 00:34:34 -05:00
ikarus.not-yet-implemented.ss Added port-position and port-has-port-position? 2008-06-19 21:49:24 -07:00
ikarus.numerics.ss - Added cp0! including: 2008-06-28 02:25:44 -07:00
ikarus.pairs.ss - Added cp0! including: 2008-06-28 02:25:44 -07:00
ikarus.posix.ss (waitpid -1 #f) now returns #f if no child has died yet. 2008-06-13 22:11:51 -07:00
ikarus.predicates.ss Added inexact complex numbers. 2008-05-24 10:13:01 -07:00
ikarus.pretty-formats.ss Fixed a paren mismatch in "macro?" helper in printer. 2008-05-13 06:09:58 -07:00
ikarus.pretty-print.ss Added copyright notice to pretty-formats.ss 2008-05-12 00:37:55 -07:00
ikarus.promises.ss Added -m32 to CFLAGS/LDFLAGS, updated copyright dates and version no. 2008-01-29 00:34:34 -05:00
ikarus.reader.annotated.ss dropping input-port-byte-position from (ikarus)'s exports. 2008-06-09 01:36:27 -07:00
ikarus.reader.ss fixed incorrect handling of ".ddd" when reading from a port. 2008-06-10 18:38:06 -07:00
ikarus.records.procedural.ss Fixes bug 194259. R6RS records can now be written and read back 2008-02-26 03:53:00 -05:00
ikarus.singular-objects.ss Added -m32 to CFLAGS/LDFLAGS, updated copyright dates and version no. 2008-01-29 00:34:34 -05:00
ikarus.sort.ss Added -m32 to CFLAGS/LDFLAGS, updated copyright dates and version no. 2008-01-29 00:34:34 -05:00
ikarus.string-to-number.ss fixed minor bug in syntax-case where the wraps and marks of 2008-06-10 12:35:56 -07:00
ikarus.strings.ss Applied a patch supplied by Derick Eddington that provides enhanced 2008-06-13 05:43:17 -07:00
ikarus.structs.ss - Added cp0! including: 2008-06-28 02:25:44 -07:00
ikarus.symbols.ss - Added cp0! including: 2008-06-28 02:25:44 -07:00
ikarus.time-and-date.ss Added -m32 to CFLAGS/LDFLAGS, updated copyright dates and version no. 2008-01-29 00:34:34 -05:00
ikarus.timer.ss Added -m32 to CFLAGS/LDFLAGS, updated copyright dates and version no. 2008-01-29 00:34:34 -05:00
ikarus.trace.ss Added -m32 to CFLAGS/LDFLAGS, updated copyright dates and version no. 2008-01-29 00:34:34 -05:00
ikarus.unicode-conversion.ss Added -m32 to CFLAGS/LDFLAGS, updated copyright dates and version no. 2008-01-29 00:34:34 -05:00
ikarus.unicode-data.ss ikarus.reader is now loadable separately. 2008-05-20 23:21:37 -07:00
ikarus.vectors.ss - Added cp0! including: 2008-06-28 02:25:44 -07:00
ikarus.writer.ss ikarus.reader is now loadable separately. 2008-05-20 23:21:37 -07:00
last-revision - Added cp0! including: 2008-06-28 02:25:44 -07:00
makefile.ss - Added cp0! including: 2008-06-28 02:25:44 -07:00
pass-specify-rep-primops.ss - Added cp0! including: 2008-06-28 02:25:44 -07:00
pass-specify-rep.ss added some preliminary work for known-types. 2008-05-16 23:27:08 -07:00
psyntax.builders.ss * libraries are now expanded to a special library-letrec* form. 2007-11-17 09:53:22 -05:00
psyntax.compat.ss ikarus.reader is now loadable separately. 2008-05-20 23:21:37 -07:00
psyntax.config.ss renamed: 2007-10-17 20:07:10 -04:00
psyntax.expander.ss - Added cp0! including: 2008-06-28 02:25:44 -07:00
psyntax.internal.ss removed all symbolicly linked files. 2008-02-14 17:45:15 -05:00
psyntax.library-manager.ss better error message when a library file "foo.ss" does not contain 2008-06-05 00:58:04 -07:00
run-tests.ss added bitwise-ior. 2008-05-18 02:27:55 -07:00
test64.ss Passing 709 tests in 64-bit mode 2008-04-12 15:06:55 -04:00
todo-r6rs.ss Added -m32 to CFLAGS/LDFLAGS, updated copyright dates and version no. 2008-01-29 00:34:34 -05:00
x86-64-repl.ss Added a disassembler tool for 64-bit code (using macos otool64). Also, 2008-01-03 23:03:22 -05:00