X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fx86%2Ftarget-insts.lisp;h=c761ee092a81a576536f9910f7f6faf99abbd556;hb=b83353d9f998e5c0e34604b5593df70c66d2c510;hp=01ffe7cf3e1f86aa0d9e35da5c445cb210bb3b74;hpb=cea4896b2482b7b2b429c1631d774b4cfbc0efba;p=sbcl.git diff --git a/src/compiler/x86/target-insts.lisp b/src/compiler/x86/target-insts.lisp index 01ffe7c..c761ee0 100644 --- a/src/compiler/x86/target-insts.lisp +++ b/src/compiler/x86/target-insts.lisp @@ -1,4 +1,8 @@ ;;;; target-only stuff from CMU CL's src/compiler/x86/insts.lisp +;;;; +;;;; i.e. stuff which was in CMU CL's insts.lisp file, but which in +;;;; the SBCL build process can't be compiled into code for the +;;;; cross-compilation host ;;;; This software is part of the SBCL system. See the README file for ;;;; more information. @@ -13,36 +17,44 @@ (defun print-mem-access (value stream print-size-p dstate) (declare (type list value) - (type stream stream) - (type (member t nil) print-size-p) - (type sb!disassem:disassem-state dstate)) + (type stream stream) + (type (member t nil) print-size-p) + (type sb!disassem:disassem-state dstate)) (when print-size-p - (princ (sb!disassem:dstate-get-prop dstate 'width) stream) + (princ (inst-operand-size dstate) stream) (princ '| PTR | stream)) + (maybe-print-segment-override stream dstate) (write-char #\[ stream) (let ((firstp t)) (macrolet ((pel ((var val) &body body) - ;; Print an element of the address, maybe with - ;; a leading separator. - `(let ((,var ,val)) - (when ,var - (unless firstp - (write-char #\+ stream)) - ,@body - (setq firstp nil))))) + ;; Print an element of the address, maybe with + ;; a leading separator. + `(let ((,var ,val)) + (when ,var + (unless firstp + (write-char #\+ stream)) + ,@body + (setq firstp nil))))) (pel (base-reg (first value)) - (print-addr-reg base-reg stream dstate)) + (print-addr-reg base-reg stream dstate)) (pel (index-reg (third value)) - (print-addr-reg index-reg stream dstate) - (let ((index-scale (fourth value))) - (when (and index-scale (not (= index-scale 1))) - (write-char #\* stream) - (princ index-scale stream)))) + (print-addr-reg index-reg stream dstate) + (let ((index-scale (fourth value))) + (when (and index-scale (not (= index-scale 1))) + (write-char #\* stream) + (princ index-scale stream)))) (let ((offset (second value))) - (when (and offset (or firstp (not (zerop offset)))) - (unless (or firstp (minusp offset)) - (write-char #\+ stream)) - (if firstp - (sb!disassem:princ16 offset stream) - (princ offset stream)))))) + (when (and offset (or firstp (not (zerop offset)))) + (unless (or firstp (minusp offset)) + (write-char #\+ stream)) + (if firstp + (progn + (sb!disassem:princ16 offset stream) + (or (minusp offset) + (nth-value 1 + (sb!disassem::note-code-constant-absolute offset dstate)) + (sb!disassem:maybe-note-assembler-routine offset + nil + dstate))) + (princ offset stream)))))) (write-char #\] stream))