Re: [Larceny-users] LAP Format

2008-09-22 Thread Felix Klock
Ray- The easiest thing to do is probably to apply the make-readable procedure to the resulting s-exp. That turns the numbers into symbols for the different MacScheme assembly opcodes. If you want an actual table of this mapping, let me know and I'll send you code that generates one.

Re: [Larceny-users] fixnum math

2008-09-22 Thread William D Clinger
Ray Racine noticed: fx math is unexpectedly slower. Yes. This is mentioned in the note at the end of Larceny User Manual section 8.11 [1]. Larceny's GreatPrimOpCleanUp [2] will improve matters by making the R6RS fx operations run at the same speed as the generic operations, but the R6RS fx

Re: [Larceny-users] LAP Format

2008-09-22 Thread Felix Klock
Ray- Oh, I'm sorry Ray! I wrote make-readable when I should have written readify-lap readify-lap is available in the twobit.heap, but not in the larceny.heap Also in the twobit.heap, the opcodes are all in a table (the same one readify-lap uses) named *mnemonic-names*; see below. If you