Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Carl Shapiro
cmucl
Commits
c86570c9
Commit
c86570c9
authored
27 years ago
by
dtc
Browse files
Options
Downloads
Patches
Plain Diff
Fix a bug in the movement of complex float arguments with a
destination on the stack.
parent
c93b3e4b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compiler/x86/float.lisp
+77
-71
77 additions, 71 deletions
compiler/x86/float.lisp
with
77 additions
and
71 deletions
compiler/x86/float.lisp
+
77
−
71
View file @
c86570c9
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/float.lisp,v 1.2
3
1998/0
2/24 18:10:17
dtc Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/float.lisp,v 1.2
4
1998/0
3/10 18:22:34
dtc Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -16,64 +16,68 @@
;;; Written by William Lott.
;;;
;;; Debugged by Paul F. Werkowski Spring/Summer 1995.
;;; Re-written and enhanced by Douglas Crosher, 1996, 1997, 1998.
;;;
;;; Rewrite, enhancements, complex-float support by
;;; Douglas Crosher, 1996, 1997, 1998.
;;;
(
in-package
:x86
)
(
defmacro
ea-for-xf-desc
(
tn
slot
)
`
(
make-ea
:dword
:base
,
tn
:disp
(
-
(
*
,
slot
vm:word-bytes
)
vm:other-pointer-type
)))
(
defun
ea-for-sf-desc
(
tn
)
(
ea-for-xf-desc
tn
vm:single-float-value-slot
))
(
defun
ea-for-df-desc
(
tn
)
(
ea-for-xf-desc
tn
vm:double-float-value-slot
))
(
defmacro
ea-for-xf-stack
(
tn
kind
)
`
(
make-ea
:dword
:base
ebp-tn
:disp
(
-
(
*
(
+
(
tn-offset
,
tn
)
(
case
,
kind
(
:single
1
)
(
:double
2
)))
vm:word-bytes
))))
(
defun
ea-for-sf-stack
(
tn
)
(
ea-for-xf-stack
tn
:single
))
(
defun
ea-for-df-stack
(
tn
)
(
ea-for-xf-stack
tn
:double
))
;;; Complex float EAs
(
macrolet
((
ea-for-xf-desc
(
tn
slot
)
`
(
make-ea
:dword
:base
,
tn
:disp
(
-
(
*
,
slot
vm:word-bytes
)
vm:other-pointer-type
))))
(
defun
ea-for-sf-desc
(
tn
)
(
ea-for-xf-desc
tn
vm:single-float-value-slot
))
(
defun
ea-for-df-desc
(
tn
)
(
ea-for-xf-desc
tn
vm:double-float-value-slot
))
;; Complex floats
#+
complex-float
(
defun
ea-for-csf-real-desc
(
tn
)
(
ea-for-xf-desc
tn
vm:complex-single-float-real-slot
))
#+
complex-float
(
defun
ea-for-csf-imag-desc
(
tn
)
(
ea-for-xf-desc
tn
vm:complex-single-float-imag-slot
))
#+
complex-float
(
defun
ea-for-cdf-real-desc
(
tn
)
(
ea-for-xf-desc
tn
vm:complex-double-float-real-slot
))
#+
complex-float
(
defun
ea-for-cdf-imag-desc
(
tn
)
(
ea-for-xf-desc
tn
vm:complex-double-float-imag-slot
)))
(
macrolet
((
ea-for-xf-stack
(
tn
kind
)
`
(
make-ea
:dword
:base
ebp-tn
:disp
(
-
(
*
(
+
(
tn-offset
,
tn
)
(
ecase
,
kind
(
:single
1
)
(
:double
2
)
(
:long
3
)))
vm:word-bytes
)))))
(
defun
ea-for-sf-stack
(
tn
)
(
ea-for-xf-stack
tn
:single
))
(
defun
ea-for-df-stack
(
tn
)
(
ea-for-xf-stack
tn
:double
)))
;;; Complex float stack EAs
#+
complex-float
(
progn
(
defun
ea-for-csf-real-desc
(
tn
)
(
ea-for-xf-desc
tn
vm:complex-single-float-real-slot
))
(
defun
ea-for-csf-imag-desc
(
tn
)
(
ea-for-xf-desc
tn
vm:complex-single-float-imag-slot
))
(
defun
ea-for-cdf-real-desc
(
tn
)
(
ea-for-xf-desc
tn
vm:complex-double-float-real-slot
))
(
defun
ea-for-cdf-imag-desc
(
tn
)
(
ea-for-xf-desc
tn
vm:complex-double-float-imag-slot
))
(
defmacro
ea-for-cxf-stack
(
tn
kind
slot
)
`
(
make-ea
:dword
:base
ebp-tn
:disp
(
-
(
*
(
+
(
tn-offset
,
tn
)
(
*
(
case
,
kind
(
:single
1
)
(
:double
2
))
(
case
,
slot
(
:real
1
)
(
:imag
2
))))
vm:word-bytes
))))
(
defun
ea-for-csf-real-stack
(
tn
)
(
ea-for-cxf-stack
tn
:single
:real
))
(
defun
ea-for-csf-imag-stack
(
tn
)
(
ea-for-cxf-stack
tn
:single
:imag
))
(
defun
ea-for-cdf-real-stack
(
tn
)
(
ea-for-cxf-stack
tn
:double
:real
))
(
defun
ea-for-cdf-imag-stack
(
tn
)
(
ea-for-cxf-stack
tn
:double
:imag
))
)
; complex-float
(
macrolet
((
ea-for-cxf-stack
(
tn
kind
slot
&optional
base
)
`
(
make-ea
:dword
:base
,
base
:disp
(
-
(
*
(
+
(
tn-offset
,
tn
)
(
*
(
ecase
,
kind
(
:single
1
)
(
:double
2
)
(
:long
3
))
(
ecase
,
slot
(
:real
1
)
(
:imag
2
))))
vm:word-bytes
)))))
(
defun
ea-for-csf-real-stack
(
tn
&optional
(
base
ebp-tn
))
(
ea-for-cxf-stack
tn
:single
:real
base
))
(
defun
ea-for-csf-imag-stack
(
tn
&optional
(
base
ebp-tn
))
(
ea-for-cxf-stack
tn
:single
:imag
base
))
;;
(
defun
ea-for-cdf-real-stack
(
tn
&optional
(
base
ebp-tn
))
(
ea-for-cxf-stack
tn
:double
:real
base
))
(
defun
ea-for-cdf-imag-stack
(
tn
&optional
(
base
ebp-tn
))
(
ea-for-cxf-stack
tn
:double
:imag
base
)))
;;; Abstract out the copying of a FP register to the FP stack top, and
;;; provide two alternatives for its implementation. Note: it's not
...
...
@@ -81,21 +85,19 @@
;;; here.
;;;
;;; Using a Pop then load.
(
defmacro
copy-fp-reg-to-fr0
(
reg
)
`
(
progn
(
assert
(
not
(
zerop
(
tn-offset
,
reg
))))
(
inst
fstp
fr0-tn
)
(
inst
fld
(
make-random-tn
:kind
:normal
:sc
(
sc-or-lose
'double-reg
*backend*
)
:offset
(
1-
(
tn-offset
,
reg
))))))
(
defun
copy-fp-reg-to-fr0
(
reg
)
(
assert
(
not
(
zerop
(
tn-offset
,
reg
))))
(
inst
fstp
fr0-tn
)
(
inst
fld
(
make-random-tn
:kind
:normal
:sc
(
sc-or-lose
'double-reg
*backend*
)
:offset
(
1-
(
tn-offset
reg
)))))
;;;
;;; Using Fxch then Fst to restore the original reg contents.
#+
nil
(
defmacro
copy-fp-reg-to-fr0
(
reg
)
`
(
progn
(
assert
(
not
(
zerop
(
tn-offset
,
reg
))))
(
inst
fxch
,
reg
)
(
inst
fst
,
reg
)))
(
defun
copy-fp-reg-to-fr0
(
reg
)
(
assert
(
not
(
zerop
(
tn-offset
reg
))))
(
inst
fxch
reg
)
(
inst
fst
reg
))
;;;; Move functions:
...
...
@@ -503,24 +505,28 @@
(
cond
((
zerop
(
tn-offset
real-tn
))
,@
(
ecase
format
(
:single
'
((
inst
fst
(
ea-for-csf-real-stack
y
))))
'
((
inst
fst
(
ea-for-csf-real-stack
y
fp
))))
(
:double
'
((
inst
fstd
(
ea-for-cdf-real-stack
y
))))))
'
((
inst
fstd
(
ea-for-cdf-real-stack
y
fp
))))))
(
t
(
inst
fxch
real-tn
)
,@
(
ecase
format
(
:single
'
((
inst
fst
(
ea-for-csf-real-stack
y
))))
'
((
inst
fst
(
ea-for-csf-real-stack
y
fp
))))
(
:double
'
((
inst
fstd
(
ea-for-cdf-real-stack
y
)))))
'
((
inst
fstd
(
ea-for-cdf-real-stack
y
fp
)))))
(
inst
fxch
real-tn
))))
(
let
((
imag-tn
(
complex-double-reg-imag-tn
x
)))
(
inst
fxch
imag-tn
)
,@
(
ecase
format
(
:single
'
((
inst
fst
(
ea-for-csf-imag-stack
y
))))
'
((
inst
fst
(
ea-for-csf-imag-stack
y
fp
))))
(
:double
'
((
inst
fstd
(
ea-for-cdf-imag-stack
y
)))))
'
((
inst
fstd
(
ea-for-cdf-imag-stack
y
fp
)))))
(
inst
fxch
imag-tn
))))))
(
define-move-vop
,
name
:move-argument
(
,
sc
descriptor-reg
)
(
,
sc
)))))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment