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
62da4b52
Commit
62da4b52
authored
34 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
Added debugger package hackery.
parent
113c001a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/setup.lisp
+54
-6
54 additions, 6 deletions
tools/setup.lisp
with
54 additions
and
6 deletions
tools/setup.lisp
+
54
−
6
View file @
62da4b52
...
@@ -29,6 +29,7 @@
...
@@ -29,6 +29,7 @@
(
defmacro
eval-stack-local
(
fp
offset
)
(
defmacro
eval-stack-local
(
fp
offset
)
`
(
svref
*eval-stack*
(
+
,
fp
,
offset
)))
`
(
svref
*eval-stack*
(
+
,
fp
,
offset
)))
#-
new-compiler
#-
new-compiler
(
in-package
"C"
:use
'
(
"EXTENSIONS"
"SYSTEM"
"LISP"
))
(
in-package
"C"
:use
'
(
"EXTENSIONS"
"SYSTEM"
"LISP"
))
...
@@ -38,12 +39,6 @@
...
@@ -38,12 +39,6 @@
entry-node-info-st-top
entry-node-info-nlx-tag
entry-node-info-st-top
entry-node-info-nlx-tag
*compile-time-define-macros*
))
*compile-time-define-macros*
))
#-
new-compiler
(
in-package
"DEBUG"
)
#-
new-compiler
(
export
'
(
var
arg
))
#-
new-compiler
#-
new-compiler
(
setq
clc::*peep-enable*
t
)
(
setq
clc::*peep-enable*
t
)
#-
new-compiler
#-
new-compiler
...
@@ -104,6 +99,59 @@
...
@@ -104,6 +99,59 @@
(
when
found
(
when
found
(
unintern
found
(
find-package
"LISP"
))))
(
unintern
found
(
find-package
"LISP"
))))
#-
new-compiler
(
in-package
"DEBUG"
)
#-
new-compiler
(
export
'
(
var
arg
))
(
in-package
"DEBUG-INTERNALS"
:nicknames
'
(
"DI"
))
;;; The compiler's debug-source structure is almost exactly what we want, so
;;; just get these symbols and export them.
;;;
(
import
'
(
c::debug-source-from
c::debug-source-name
c::debug-source-created
c::debug-source-compiled
c::debug-source-start-positions
c::debug-source
c::debug-source-p
))
(
export
'
(
debug-variable-name
debug-variable-package
debug-variable-symbol
debug-variable-id
debug-variable-value
debug-variable-validity
debug-variable-valid-value
debug-variable
debug-variable-p
top-frame
frame-down
frame-up
frame-debug-function
frame-code-location
eval-in-frame
return-from-frame
frame-catches
frame-number
frame
frame-p
do-blocks
debug-function-lambda-list
do-debug-function-variables
debug-function-symbol-variables
ambiguous-debug-variables
preprocess-for-eval
function-debug-function
debug-function-function
debug-function-kind
debug-function-name
debug-function
debug-function-p
do-debug-block-locations
debug-block-successors
debug-block
debug-block-p
debug-block-elsewhere-p
make-breakpoint
activate-breakpoint
deactivate-breakpoint
breakpoint-hook-function
breakpoint-info
breakpoint-kind
breakpoint-what
breakpoint
breakpoint-p
code-location-debug-function
code-location-debug-block
code-location-top-level-form-offset
code-location-form-number
code-location-debug-source
code-location
code-location-p
unknown-code-location
unknown-code-location-p
debug-source-from
debug-source-name
debug-source-created
debug-source-compiled
debug-source-root-number
debug-source-start-positions
form-number-translations
source-path-context
debug-source
debug-source-p
debug-condition
no-debug-info
no-debug-function-returns
no-debug-blocks
lambda-list-unavailable
debug-error
unhandled-condition
invalid-control-stack-pointer
unknown-code-location
unknown-debug-variable
invalid-value
))
#-
new-compiler
#-
new-compiler
(
in-package
"LISP"
)
(
in-package
"LISP"
)
#-
new-compiler
#-
new-compiler
...
...
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