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
b06befbe
Commit
b06befbe
authored
30 years ago
by
hallgren
Browse files
Options
Downloads
Patches
Plain Diff
Updated for the sgi.
parent
ccf62ba2
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
code/debug-int.lisp
+2
-2
2 additions, 2 deletions
code/debug-int.lisp
code/exports.lisp
+9
-3
9 additions, 3 deletions
code/exports.lisp
with
11 additions
and
5 deletions
code/debug-int.lisp
+
2
−
2
View file @
b06befbe
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
;;;
(
ext:file-comment
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug-int.lisp,v 1.6
5
1994/0
4/06 17:02
:40 hallgren Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug-int.lisp,v 1.6
6
1994/0
6/22 13:21
:40 hallgren Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
...
@@ -1095,7 +1095,7 @@
...
@@ -1095,7 +1095,7 @@
vm:other-pointer-type
)
vm:other-pointer-type
)
code-header-len
)))
code-header-len
)))
;; Check to see if we were executing in a branch delay slot.
;; Check to see if we were executing in a branch delay slot.
#+
pmax
; pmax only
#+
(
or
pmax
sgi
)
; pmax only
(
when
(
logbitp
31
(
alien:slot
scp
'mips::sc-cause
))
(
when
(
logbitp
31
(
alien:slot
scp
'mips::sc-cause
))
(
incf
pc-offset
vm:word-bytes
))
(
incf
pc-offset
vm:word-bytes
))
(
unless
(
<=
0
pc-offset
(
unless
(
<=
0
pc-offset
...
...
This diff is collapsed.
Click to expand it.
code/exports.lisp
+
9
−
3
View file @
b06befbe
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
;;;
(
ext:file-comment
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/exports.lisp,v 1.
99
1994/0
4/06 17:03:07
hallgren Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/exports.lisp,v 1.
100
1994/0
6/22 13:25:20
hallgren Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
...
@@ -63,6 +63,10 @@
...
@@ -63,6 +63,10 @@
(
if
(
find-package
"ALPHA"
)
(
if
(
find-package
"ALPHA"
)
(
rename-package
"ALPHA"
"ALPHA"
'
(
"VM"
"OLD-ALPHA"
))
(
rename-package
"ALPHA"
"ALPHA"
'
(
"VM"
"OLD-ALPHA"
))
(
make-package
"ALPHA"
:nicknames
'
(
"VM"
"OLD-ALPHA"
)
:use
nil
))
(
make-package
"ALPHA"
:nicknames
'
(
"VM"
"OLD-ALPHA"
)
:use
nil
))
#+
sgi
(
if
(
find-package
"SGI"
)
(
rename-package
"SGI"
"SGI"
'
(
"VM"
"OLD-SGI"
))
(
make-package
"SGI"
:nicknames
'
(
"VM"
"OLD-SGI"
)
:use
nil
))
(
if
(
find-package
"CONDITIONS"
)
(
if
(
find-package
"CONDITIONS"
)
(
rename-package
"CONDITIONS"
"CONDITIONS"
'nil
)
(
rename-package
"CONDITIONS"
"CONDITIONS"
'nil
)
(
make-package
"CONDITIONS"
:nicknames
'nil
:use
nil
))
(
make-package
"CONDITIONS"
:nicknames
'nil
:use
nil
))
...
@@ -560,10 +564,11 @@
...
@@ -560,10 +564,11 @@
"DOUBLE-FLOAT-P"
"SIMPLE-ARRAY-P"
"SINGLE-FLOAT-P"
))
"DOUBLE-FLOAT-P"
"SIMPLE-ARRAY-P"
"SINGLE-FLOAT-P"
))
(
intern
name
"KERNEL"
))
(
intern
name
"KERNEL"
))
(
defpackage
#+
pmax
"MIPS"
#+
sparc
"SPARC"
#+
ibmrt
"RT"
(
defpackage
#+
pmax
"MIPS"
#+
sparc
"SPARC"
#+
ibmrt
"RT"
#+
x86
"X86"
#+
hppa
"HPPA"
#+
alpha
"ALPHA"
#+
x86
"X86"
#+
hppa
"HPPA"
#+
alpha
"ALPHA"
#+
sgi
"SGI"
(
:nicknames
"VM"
(
:nicknames
"VM"
#+
pmax
"OLD-MIPS"
#+
sparc
"OLD-SPARC"
#+
ibmrt
"OLD-RT"
#+
pmax
"OLD-MIPS"
#+
sparc
"OLD-SPARC"
#+
ibmrt
"OLD-RT"
#+
x86
"OLD-X86"
#+
hppa
"HPPA"
#+
alpha
"OLD-ALPHA"
)
#+
x86
"OLD-X86"
#+
hppa
"HPPA"
#+
alpha
"OLD-ALPHA"
#+
sgi
"OLD-SGI"
)
(
:import-from
"LISP"
"%ARRAY-TYPEP"
"%ASET"
"%BITSET"
"%CHARSET"
(
:import-from
"LISP"
"%ARRAY-TYPEP"
"%ASET"
"%BITSET"
"%CHARSET"
"%PUT"
"%RPLACA"
"%RPLACD"
"%SBITSET"
"%SCHARSET"
"%PUT"
"%RPLACA"
"%RPLACD"
"%SBITSET"
"%SCHARSET"
"%SET-DOCUMENTATION"
"%SET-FDEFINITION"
"%SET-FILL-POINTER"
"%SET-DOCUMENTATION"
"%SET-FDEFINITION"
"%SET-FILL-POINTER"
...
@@ -1083,6 +1088,7 @@
...
@@ -1083,6 +1088,7 @@
"FIXED-ALLOC"
"FIXED-ALLOC"
"HPPA-FASL-FILE-IMPLEMENTATION"
"HPPA-FASL-FILE-IMPLEMENTATION"
"ALPHA-FASL-FILE-IMPLEMENTATION"
"ALPHA-FASL-FILE-IMPLEMENTATION"
"SGI-FASL-FILE-IMPLEMENTATION"
"MAKE-UNBOUND-MARKER"
"MAKE-UNBOUND-MARKER"
"RETURN-SINGLE"
"RETURN-SINGLE"
"BACKEND-PAGE-SIZE"
"BACKEND-PAGE-SIZE"
...
...
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