Skip to content
Snippets Groups Projects
Commit df0e56dc authored by rtoy's avatar rtoy
Browse files

Fix the long-long callback issues reported by Luis Oliveira,

cmucl-imp, 2005/11/02.

o long-long args to callbacks were getting the wrong value because
  both halves were getting written to the same memory location when
  saving register args to memory.
o A long-long return value was getting word-swapped; ppc is
  big-endian, not little-endian.
parent acab9207
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ppc/c-call.lisp,v 1.16 2005/11/17 03:33:45 rtoy Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ppc/c-call.lisp,v 1.17 2005/11/20 03:17:41 rtoy Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -496,11 +496,14 @@ a pointer to the arguments."
linkage-area-size)))
(cond
(integerp
(loop repeat words
for gpr = (pop gprs)
when gpr do
(inst stw gpr sp offset)
do (incf words-processed)))
(dotimes (k words)
(let ((gpr (pop gprs)))
(cond (gpr
(inst stw gpr sp offset)
(incf words-processed)
(incf offset vm:word-bytes))
(t
(error "Out of integer arg registers!?!?"))))))
;; The handling of floats is a little ugly because we
;; hard-code the number of words for single- and
;; double-floats.
......@@ -537,7 +540,7 @@ a pointer to the arguments."
(inst li arg2 (fixnumize index))
(inst addi arg3 sp linkage-area-size)
(inst addi arg4 sp (- (* return-area-size vm:word-bytes)))
;; FIXME!
;; Save sp, setup the frame
(inst mflr r0)
(inst stw r0 sp (* 2 vm:word-bytes))
......@@ -558,7 +561,8 @@ a pointer to the arguments."
(loop repeat return-area-size
with gprs = (mapcar #'make-gpr '(3 4))
for gpr = (pop gprs)
for offset downfrom (- vm:word-bytes) by vm:word-bytes
for offset from (- (* return-area-size vm:word-bytes))
by vm:word-bytes
do (inst lwz gpr sp offset)))
(alien::single$
;; Get the FP value into F1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment