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
de841ba5
Commit
de841ba5
authored
34 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Fixed random merge problems and other assorted typos.
parent
625e984f
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
code/debug-int.lisp
+43
-31
43 additions, 31 deletions
code/debug-int.lisp
with
43 additions
and
31 deletions
code/debug-int.lisp
+
43
−
31
View file @
de841ba5
...
@@ -408,7 +408,8 @@
...
@@ -408,7 +408,8 @@
(
format
str
"#<~A-Debug-Function ~S>"
(
format
str
"#<~A-Debug-Function ~S>"
(
etypecase
obj
(
etypecase
obj
(
compiled-debug-function
"Compiled"
)
(
compiled-debug-function
"Compiled"
)
(
interpreted-debug-function
"Interpreted"
))
(
interpreted-debug-function
"Interpreted"
)
(
bogus-debug-function
"Bogus"
))
(
debug-function-name
obj
)))
(
debug-function-name
obj
)))
...
@@ -751,7 +752,8 @@
...
@@ -751,7 +752,8 @@
(
multiple-value-bind
(
fp
pc
)
(
multiple-value-bind
(
fp
pc
)
(
kernel:%caller-frame-and-pc
)
(
kernel:%caller-frame-and-pc
)
(
possibly-an-interpreted-frame
(
possibly-an-interpreted-frame
(
compute-calling-frame
fp
pc
nil
)
(
compute-calling-frame
(
int-sap
(
*
(
truly-the
fixnum
fp
)
vm:word-bytes
))
pc
nil
)
nil
)))
nil
)))
...
@@ -782,21 +784,31 @@
...
@@ -782,21 +784,31 @@
(
let
((
down
(
frame-%down
frame
)))
(
let
((
down
(
frame-%down
frame
)))
(
if
(
eq
down
:unparsed
)
(
if
(
eq
down
:unparsed
)
(
let*
((
real
(
frame-real-frame
frame
))
(
let*
((
real
(
frame-real-frame
frame
))
(
c-d-f
(
compiled-debug-function-compiler-debug-fun
(
debug-fun
(
frame-debug-function
real
)))
(
frame-debug-function
real
))))
(
setf
(
frame-%down
frame
)
(
setf
(
frame-%down
frame
)
(
possibly-an-interpreted-frame
(
etypecase
debug-fun
(
compute-calling-frame
(
compiled-debug-function
(
get-context-value
(
let
((
c-d-f
(
compiled-debug-function-compiler-debug-fun
real
debug-fun
)))
c::old-fp-save-offset
(
possibly-an-interpreted-frame
(
c::compiled-debug-function-old-fp
c-d-f
))
(
compute-calling-frame
(
get-context-value
(
int-sap
(
*
(
get-context-value
real
real
c::return-pc-save-offset
c::old-fp-save-offset
(
c::compiled-debug-function-return-pc
c-d-f
))
(
c::compiled-debug-function-old-fp
c-d-f
))
frame
)
vm:word-bytes
))
frame
)))
(
get-context-value
real
c::lra-save-offset
(
c::compiled-debug-function-return-pc
c-d-f
))
frame
)
frame
)))
(
bogus-debug-function
(
let
((
fp
(
frame-pointer
real
)))
(
compute-calling-frame
(
sap-ref-sap
fp
c::old-fp-save-offset
)
(
stack-ref
fp
c::lra-save-offset
)
frame
))))))
down
)))
down
)))
;;; CODE-OBJECT-FROM-BITS -- internal.
;;; CODE-OBJECT-FROM-BITS -- internal.
...
@@ -934,8 +946,6 @@
...
@@ -934,8 +946,6 @@
;;;
;;;
(
defun
compute-calling-frame
(
caller
lra
up-frame
)
(
defun
compute-calling-frame
(
caller
lra
up-frame
)
(
declare
(
type
system-area-pointer
caller
))
(
declare
(
type
system-area-pointer
caller
))
(
unless
(
cstack-pointer-valid-p
caller
)
(
return-from
compute-calling-frame
nil
))
(
when
(
cstack-pointer-valid-p
caller
)
(
when
(
cstack-pointer-valid-p
caller
)
(
multiple-value-bind
(
multiple-value-bind
(
code
pc-offset
escaped
)
(
code
pc-offset
escaped
)
...
@@ -963,12 +973,10 @@
...
@@ -963,12 +973,10 @@
"Bogus stack frame"
))
"Bogus stack frame"
))
(
t
(
t
(
debug-function-from-pc
code
pc-offset
)))))
(
debug-function-from-pc
code
pc-offset
)))))
(
make-frame
caller
(
make-compiled-frame
caller
up-frame
d-fun
up-frame
(
code-location-from-pc
d-fun
pc-offset
escaped
)
d-fun
(
if
up-frame
(
1+
(
frame-number
up-frame
))
0
)
(
code-location-from-pc
d-fun
pc-offset
)
escaped
)))))
(
if
up-frame
(
1+
(
frame-number
up-frame
))
0
)
escaped
)))))
;;;
;;;
...
@@ -1064,7 +1072,7 @@
...
@@ -1064,7 +1072,7 @@
(
let*
((
lra
(
stack-ref
catch
vm:catch-block-entry-pc-slot
))
(
let*
((
lra
(
stack-ref
catch
vm:catch-block-entry-pc-slot
))
(
word-offset
(
get-header-data
lra
)))
(
word-offset
(
get-header-data
lra
)))
(
push
(
cons
(
stack-ref
catch
vm:catch-block-tag-slot
)
(
push
(
cons
(
stack-ref
catch
vm:catch-block-tag-slot
)
(
make-code-location
(
make-
compiled-
code-location
(
*
word-offset
vm:word-bytes
)
(
*
word-offset
vm:word-bytes
)
(
frame-debug-function
frame
)))
(
frame-debug-function
frame
)))
res
)))
res
)))
...
@@ -1126,7 +1134,8 @@
...
@@ -1126,7 +1134,8 @@
(
interpreted-debug-function
(
interpreted-debug-function
(
c::lambda-eval-info-function
(
c::lambda-eval-info-function
(
c::leaf-info
(
c::leaf-info
(
interpreted-debug-function-ir1-lambda
debug-function
))))))
(
interpreted-debug-function-ir1-lambda
debug-function
))))
(
bogus-debug-function
nil
)))
cached-value
)))
cached-value
)))
...
@@ -1275,7 +1284,9 @@
...
@@ -1275,7 +1284,9 @@
(
compiled-debug-function
(
compiled-debug-function
(
compiled-debug-function-lambda-list
debug-function
))
(
compiled-debug-function-lambda-list
debug-function
))
(
interpreted-debug-function
(
interpreted-debug-function
(
interpreted-debug-function-lambda-list
debug-function
))))
(
interpreted-debug-function-lambda-list
debug-function
))
(
bogus-debug-function
nil
)))
;;; INTERPRETED-DEBUG-FUNCTION-LAMBDA-LIST -- Internal.
;;; INTERPRETED-DEBUG-FUNCTION-LAMBDA-LIST -- Internal.
;;;
;;;
...
@@ -2184,7 +2195,8 @@
...
@@ -2184,7 +2195,8 @@
(
interpreted-code-location-ir1-node
(
frame-code-location
frame
))
(
interpreted-code-location-ir1-node
(
frame-code-location
frame
))
(
interpreted-debug-variable-ir1-var
debug-var
)
(
interpreted-debug-variable-ir1-var
debug-var
)
(
frame-pointer
frame
)
(
frame-pointer
frame
)
(
interpreted-frame-closure
frame
))))
(
interpreted-frame-closure
frame
)
value
)))
value
)
value
)
;;;
;;;
(
defsetf
debug-variable-value
%set-debug-variable-value
)
(
defsetf
debug-variable-value
%set-debug-variable-value
)
...
@@ -2249,15 +2261,15 @@
...
@@ -2249,15 +2261,15 @@
(
setf
(
stack-ref
fp
(
c::sc-offset-offset
sc-offset
))
value
))
(
setf
(
stack-ref
fp
(
c::sc-offset-offset
sc-offset
))
value
))
(
#.
c:base-character-stack-sc-number
(
#.
c:base-character-stack-sc-number
(
with-nfp
(
nfp
)
(
with-nfp
(
nfp
)
(
setf
(
s
tack
-ref-32
nfp
(
c::sc-offset-offset
sc-offset
))
(
setf
(
s
ap
-ref-32
nfp
(
c::sc-offset-offset
sc-offset
))
(
char-code
(
the
character
value
)))))
(
char-code
(
the
character
value
)))))
(
#.
c:unsigned-stack-sc-number
(
#.
c:unsigned-stack-sc-number
(
with-nfp
(
nfp
)
(
with-nfp
(
nfp
)
(
setf
(
s
tack
-ref-32
nfp
(
c::sc-offset-offset
sc-offset
))
(
setf
(
s
ap
-ref-32
nfp
(
c::sc-offset-offset
sc-offset
))
(
the
(
unsigned-byte
32
)
value
))))
(
the
(
unsigned-byte
32
)
value
))))
(
#.
c:signed-stack-sc-number
(
#.
c:signed-stack-sc-number
(
with-nfp
(
nfp
)
(
with-nfp
(
nfp
)
(
setf
(
signed-s
tack
-ref-32
nfp
(
c::sc-offset-offset
sc-offset
))
(
setf
(
signed-s
ap
-ref-32
nfp
(
c::sc-offset-offset
sc-offset
))
(
the
(
signed-byte
32
)
value
))))
(
the
(
signed-byte
32
)
value
))))
(
#.
c:sap-stack-sc-number
(
#.
c:sap-stack-sc-number
(
with-nfp
(
nfp
)
(
with-nfp
(
nfp
)
...
...
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