1 ;;;; target-only stuff from CMU CL's src/compiler/x86/insts.lisp
3 ;;;; i.e. stuff which was in CMU CL's insts.lisp file, but which in
4 ;;;; the SBCL build process can't be compiled into code for the
5 ;;;; cross-compilation host
7 ;;;; This software is part of the SBCL system. See the README file for
10 ;;;; This software is derived from the CMU CL system, which was
11 ;;;; written at Carnegie Mellon University and released into the
12 ;;;; public domain. The software is in the public domain and is
13 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
14 ;;;; files for more information.
18 (defun print-mem-access (value stream print-size-p dstate)
19 (declare (type list value)
21 (type (member t nil) print-size-p)
22 (type sb!disassem:disassem-state dstate))
24 (princ (sb!disassem:dstate-get-prop dstate 'width) stream)
25 (princ '| PTR | stream))
26 (write-char #\[ stream)
28 (macrolet ((pel ((var val) &body body)
29 ;; Print an element of the address, maybe with
30 ;; a leading separator.
34 (write-char #\+ stream))
37 (pel (base-reg (first value))
38 (print-addr-reg base-reg stream dstate))
39 (pel (index-reg (third value))
40 (print-addr-reg index-reg stream dstate)
41 (let ((index-scale (fourth value)))
42 (when (and index-scale (not (= index-scale 1)))
43 (write-char #\* stream)
44 (princ index-scale stream))))
45 (let ((offset (second value)))
46 (when (and offset (or firstp (not (zerop offset))))
47 (unless (or firstp (minusp offset))
48 (write-char #\+ stream))
51 (sb!disassem:princ16 offset stream)
54 (sb!disassem::note-code-constant-absolute offset dstate))
55 (sb!disassem:maybe-note-assembler-routine offset
58 (princ offset stream))))))
59 (write-char #\] stream))