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
956fca84
Commit
956fca84
authored
31 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Fixed %function-self, (setf %funcallable-instance-function), etc. for the
gengc system.
parent
bb4b8a37
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/mips/system.lisp
+21
-20
21 additions, 20 deletions
compiler/mips/system.lisp
with
21 additions
and
20 deletions
compiler/mips/system.lisp
+
21
−
20
View file @
956fca84
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/system.lisp,v 1.4
7
1993/0
1/13 16:02:06
wlott Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/system.lisp,v 1.4
8
1993/0
5/21 16:38:35
wlott Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -254,7 +254,7 @@
(
define-vop
(
%function-self
)
(
:policy
:fast-safe
)
(
:translate
(
setf
%function-self
)
)
(
:translate
%function-self
)
(
:args
(
function
:scs
(
descriptor-reg
)))
(
:temporary
(
:scs
(
any-reg
))
temp
)
(
:results
(
result
:scs
(
descriptor-reg
)))
...
...
@@ -263,31 +263,32 @@
(
inst
addu
result
temp
(
-
function-pointer-type
(
*
function-code-offset
word-bytes
)))))
(
defknown
%set-function-self
(
function
function
)
(
values
)
(
unsafe
))
(
def-source-transform
%closure-function
(
closure
)
`
(
%function-self
,
closure
))
(
def-source-transform
%funcallable-instance-function
(
fin
)
`
(
%function-self
,
fin
))
(
define-vop
(
%set-function-self
)
(
:policy
:fast-safe
)
(
:translate
%
set
-
function-self
)
(
:args
(
function
:scs
(
descriptor-reg
))
(
new-self
:scs
(
descriptor-reg
)))
(
:translate
(
set
f
%
function-self
)
)
(
:args
(
new-self
:scs
(
descriptor-reg
)
:target
result
)
(
function
:scs
(
descriptor-reg
)))
(
:temporary
(
:scs
(
any-reg
))
temp
)
(
:results
(
result
:scs
(
descriptor-reg
)))
(
:generator
3
(
inst
addu
temp
new-self
(
-
(
*
function-code-offset
word-bytes
)
function-pointer-type
))
(
storew
temp
function
function-entry-point-slot
function-pointer-type
)))
(
def-source-transform
%closure-function
(
closure
)
`
(
%function-self
,
closure
))
(
def-source-transform
(
setf
%function-self
)
(
new-self
fun
)
`
(
let
((
new-self
,
new-self
)
(
fun
,
fun
))
(
%set-function-self
fun
new-self
)
new-self
))
(
def-source-transform
%set-funcallable-instance-function
(
fin
fun
)
`
(
let
((
fin
,
fin
)
(
fun
,
fun
))
(
%set-function-self
fin
fun
)
fun
))
(
storew
temp
function
function-entry-point-slot
function-pointer-type
)
(
move
result
new-self
)))
;; Would have really liked to use a source-transform for this, but they
;; don't work with setf functions.
;;
(
defknown
((
setf
%funcallable-instance-function
))
(
function
function
)
function
(
unsafe
))
(
deftransform
(
setf
%funcallable-instance-function
)
((
value
fin
))
'
(
setf
(
%function-self
fin
)
value
))
)
; #+gengc progn
...
...
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