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
c7219461
Commit
c7219461
authored
34 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
Moved debug defknowns and exports here from mips/debug. Symbols are now
exported from KERNEL instead of being internal to DI.
parent
b1f373fd
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compiler/generic/vm-fndb.lisp
+20
-3
20 additions, 3 deletions
compiler/generic/vm-fndb.lisp
with
20 additions
and
3 deletions
compiler/generic/vm-fndb.lisp
+
20
−
3
View file @
c7219461
...
...
@@ -7,11 +7,11 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-fndb.lisp,v 1.3
4
1991/0
2/20 15:17:28
ram Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-fndb.lisp,v 1.3
5
1991/0
3/14 14:22:55
ram Exp $"
)
;;;
;;; **********************************************************************
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-fndb.lisp,v 1.3
4
1991/0
2/20 15:17:28
ram Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-fndb.lisp,v 1.3
5
1991/0
3/14 14:22:55
ram Exp $
;;;
;;; This file defines the machine specific function signatures.
;;;
...
...
@@ -22,7 +22,12 @@
(
import
'
(
lisp::%raw-bits
lisp::simple-array-p
))
(
in-package
"KERNEL"
)
(
export
'
(
funcallable-instance-p
%set-funcallable-instance-info
))
(
export
'
(
current-sp
current-fp
stack-ref
%set-stack-ref
lra-code-header
function-code-header
make-lisp-obj
get-lisp-obj-address
function-word-offset
funcallable-instance-p
%set-funcallable-instance-info
))
(
in-package
"C"
)
...
...
@@ -139,6 +144,18 @@
control-stack-pointer-sap
)
()
system-area-pointer
(
flushable
))
;;;; Debugger support:
(
defknown
current-sp
()
system-area-pointer
(
movable
flushable
))
(
defknown
current-fp
()
system-area-pointer
(
movable
flushable
))
(
defknown
stack-ref
(
system-area-pointer
index
)
t
(
flushable
))
(
defknown
%set-stack-ref
(
system-area-pointer
index
t
)
t
(
unsafe
))
(
defknown
lra-code-header
(
t
)
t
(
movable
flushable
))
(
defknown
function-code-header
(
t
)
t
(
movable
flushable
))
(
defknown
make-lisp-obj
((
unsigned-byte
32
))
t
(
movable
flushable
))
(
defknown
get-lisp-obj-address
(
t
)
(
unsigned-byte
32
)
(
movable
flushable
))
(
defknown
function-word-offset
(
function
)
index
(
movable
flushable
))
;;;; 32bit logical operations
...
...
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