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
34049a77
Commit
34049a77
authored
33 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
more typos
parent
bc99c95f
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/rt/sap.lisp
+8
-8
8 additions, 8 deletions
compiler/rt/sap.lisp
with
8 additions
and
8 deletions
compiler/rt/sap.lisp
+
8
−
8
View file @
34049a77
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC).
;;; Scott Fahlman (FAHLMAN@CMUC).
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/sap.lisp,v 1.1
1
1992/03/10 09:
01:21
wlott Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/sap.lisp,v 1.1
2
1992/03/10 09:
22:49
wlott Exp $
;;;
;;;
;;; This file contains the IBM RT VM definition of SAP operations.
;;; This file contains the IBM RT VM definition of SAP operations.
;;;
;;;
...
@@ -262,7 +262,7 @@
...
@@ -262,7 +262,7 @@
;;; (the machines address units). Translate and signed-translate are the Lisp
;;; (the machines address units). Translate and signed-translate are the Lisp
;;; function calls for which these VOP's are in-line expansions.
;;; function calls for which these VOP's are in-line expansions.
;;;
;;;
(
defmacro
define-system-set
(
name
size
translate
data-sc
s
data-type
)
(
defmacro
define-system-set
(
name
size
translate
data-sc
data-type
)
(
let
((
set-form
(
let
((
set-form
(
ecase
size
(
ecase
size
(
:byte
'
(
inst
stc
data
base
offset
))
(
:byte
'
(
inst
stc
data
base
offset
))
...
@@ -274,11 +274,11 @@
...
@@ -274,11 +274,11 @@
(
:policy
:fast-safe
)
(
:policy
:fast-safe
)
(
:translate
,
translate
)
(
:translate
,
translate
)
(
:args
(
base
:scs
(
sap-reg
))
(
:args
(
base
:scs
(
sap-reg
))
(
data
:scs
(
,
@
data-sc
s
)
:target
result
:to
(
:result
0
)))
(
data
:scs
(
,
data-sc
)
:target
result
:to
(
:result
0
)))
(
:arg-types
system-area-pointer
(
:arg-types
system-area-pointer
(
:constant
(
unsigned-byte
15
))
(
:constant
(
unsigned-byte
15
))
,
data-type
)
,
data-type
)
(
:results
(
result
:scs
(
,
@
data-sc
s
)))
(
:results
(
result
:scs
(
,
data-sc
)))
(
:result-types
,
data-type
)
(
:result-types
,
data-type
)
(
:info
offset
)
(
:info
offset
)
(
:generator
5
(
:generator
5
...
@@ -290,11 +290,11 @@
...
@@ -290,11 +290,11 @@
(
:translate
,
translate
)
(
:translate
,
translate
)
(
:args
(
object
:scs
(
sap-reg
)
:to
(
:eval
0
))
(
:args
(
object
:scs
(
sap-reg
)
:to
(
:eval
0
))
(
offset
:scs
(
unsigned-reg
)
:target
base
)
(
offset
:scs
(
unsigned-reg
)
:target
base
)
(
data
:scs
(
,
@
data-sc
s
)
:target
result
(
data
:scs
(
,
data-sc
)
:target
result
:to
(
:eval
1
)))
:to
(
:eval
1
)))
(
:arg-types
system-area-pointer
positive-fixnum
,
data-type
)
(
:arg-types
system-area-pointer
positive-fixnum
,
data-type
)
(
:temporary
(
:scs
(
sap-reg
)
:from
(
:argument
1
)
:to
(
:eval
2
))
base
)
(
:temporary
(
:scs
(
sap-reg
)
:from
(
:argument
1
)
:to
(
:eval
2
))
base
)
(
:results
(
result
:scs
(
,
@
data-sc
s
)))
(
:results
(
result
:scs
(
,
data-sc
)))
(
:result-types
,
data-type
)
(
:result-types
,
data-type
)
(
:generator
7
(
:generator
7
(
move
base
offset
)
(
move
base
offset
)
...
@@ -306,10 +306,10 @@
...
@@ -306,10 +306,10 @@
)
;EVAL-WHEN
)
;EVAL-WHEN
(
define-system-set
8bit-system-set
:byte
%set-sap-ref-8
(
define-system-set
8bit-system-set
:byte
%set-sap-ref-8
(
unsigned-reg
)
positive-fixnum
)
unsigned-reg
positive-fixnum
)
(
define-system-set
16bit-system-set
:halfword
%set-sap-ref-16
(
define-system-set
16bit-system-set
:halfword
%set-sap-ref-16
(
unsigned-reg
)
positive-fixnum
)
unsigned-reg
positive-fixnum
)
(
define-system-set
32bit-system-set
:word
%set-sap-ref-32
(
define-system-set
32bit-system-set
:word
%set-sap-ref-32
unsigned-reg
unsigned-num
)
unsigned-reg
unsigned-num
)
...
...
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