Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cmucl
cmucl
Commits
283a599c
Commit
283a599c
authored
Mar 10, 1990
by
ram
Browse files
Added dumping of START-PC and ELSEWHERE-PC in DEBUG-INFO-FOR-COMPONENT.
parent
4ad388af
Changes
1
Show whitespace changes
Inline
Side-by-side
compiler/debug-dump.lisp
View file @
283a599c
...
...
@@ -448,7 +448,8 @@
(
let*
((
2env
(
environment-info
(
lambda-environment
fun
)))
(
dfun
(
make-compiled-debug-function
:name
(
cond
((
leaf-name
fun
))
((
let
((
ef
(
functional-entry-function
fun
)))
((
let
((
ef
(
functional-entry-function
fun
)))
(
and
ef
(
leaf-name
ef
))))
(
t
(
component-name
component
)))
...
...
@@ -457,8 +458,12 @@
(
ir2-environment-return-pc
2env
))
:old-cont
(
tn-sc-offset
(
ir2-environment-old-cont
2env
))
;; Not right...
:start-pc
0
)))
:start-pc
(
label-location
(
ir2-environment-environment-start
2env
))
:elsewhere-pc
(
label-location
(
ir2-environment-elsewhere-start
2env
)))))
(
when
(
>=
level
1
)
(
setf
(
compiled-debug-function-variables
dfun
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment