-
- Downloads
Make CL:DISASSEMBLE conforming. Also update some of the
implementation details of DISASSEM:DISASSEMBLE. code/exports.lisp:: * Update packages so CL:DISASSEMBLE is not DISASSEM:DISASSEMBLE. code/misc.lisp:: * Define CL:DISASSEMBLE. compiler/fndb.lisp:: * Update defknow for disassemble. compiler/disassem.lisp:: * Print of source codes uses standard I/O syntax instead of inheriting from the environment. * Add new keyword arguments to DISASSEM:DISASSEMBLE for the base, case, and radix. These default to 16, :downcase, and *print-radix*, respectively. This means disassembly now prints out all numbers in base 16 and is in lowercase. * When printing a note for an assembler routine, we don't need to print the (hex) address if *print-base* is 16. compiler/x86/insts.lisp:: * Fix some issues when in print-mem-access. * Sometimes the absolute value of the value was printed instead of the value (displaying the wrong value). * Print out the value as an unsigned in some cases instead of signed value. * Fix print-label to print addresses as unsigned integers. This fixes the issue where things like call #x-4xxxxxxx were printed. i18n/locale/cmucl.pot:: * Update because of new or changed docstrings.
Showing
- src/code/exports.lisp 1 addition, 2 deletionssrc/code/exports.lisp
- src/code/misc.lisp 7 additions, 0 deletionssrc/code/misc.lisp
- src/compiler/disassem.lisp 31 additions, 8 deletionssrc/compiler/disassem.lisp
- src/compiler/fndb.lisp 1 addition, 3 deletionssrc/compiler/fndb.lisp
- src/compiler/x86/insts.lisp 12 additions, 11 deletionssrc/compiler/x86/insts.lisp
- src/i18n/locale/cmucl.pot 22 additions, 1 deletionsrc/i18n/locale/cmucl.pot
Loading
Please register or sign in to comment