Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Shayne Fletcher
Glasgow Haskell Compiler
Commits
c56641e7
Commit
c56641e7
authored
Mar 14, 2006
by
Simon Marlow
Browse files
small improvements to the debug printer
parent
960a5e6a
Changes
1
Hide whitespace changes
Inline
Side-by-side
ghc/rts/Printer.c
View file @
c56641e7
...
...
@@ -540,10 +540,13 @@ printStackChunk( StgPtr sp, StgPtr spBottom )
case
UPDATE_FRAME
:
case
CATCH_FRAME
:
case
STOP_FRAME
:
printObj
((
StgClosure
*
)
sp
);
continue
;
case
STOP_FRAME
:
printObj
((
StgClosure
*
)
sp
);
return
;
case
RET_DYN
:
{
StgRetDyn
*
r
;
...
...
@@ -577,7 +580,7 @@ printStackChunk( StgPtr sp, StgPtr spBottom )
case
RET_SMALL
:
case
RET_VEC_SMALL
:
debugBelch
(
"RET_SMALL (%p)
\n
"
,
sp
);
debugBelch
(
"RET_SMALL (%p)
\n
"
,
info
);
bitmap
=
info
->
layout
.
bitmap
;
printSmallBitmap
(
spBottom
,
sp
+
1
,
BITMAP_BITS
(
bitmap
),
BITMAP_SIZE
(
bitmap
));
...
...
@@ -607,10 +610,10 @@ printStackChunk( StgPtr sp, StgPtr spBottom )
ret_fun
=
(
StgRetFun
*
)
sp
;
fun_info
=
get_fun_itbl
(
ret_fun
->
fun
);
size
=
ret_fun
->
size
;
debugBelch
(
"RET_FUN (%p) (type=%d)
\n
"
,
ret_fun
,
fun_info
->
f
.
fun_type
);
debugBelch
(
"RET_FUN (%p) (type=%d)
\n
"
,
ret_fun
->
fun
,
fun_info
->
f
.
fun_type
);
switch
(
fun_info
->
f
.
fun_type
)
{
case
ARG_GEN
:
printSmallBitmap
(
spBottom
,
sp
+
1
,
printSmallBitmap
(
spBottom
,
sp
+
2
,
BITMAP_BITS
(
fun_info
->
f
.
b
.
bitmap
),
BITMAP_SIZE
(
fun_info
->
f
.
b
.
bitmap
));
break
;
...
...
@@ -620,7 +623,7 @@ printStackChunk( StgPtr sp, StgPtr spBottom )
GET_FUN_LARGE_BITMAP
(
fun_info
)
->
size
);
break
;
default:
printSmallBitmap
(
spBottom
,
sp
+
1
,
printSmallBitmap
(
spBottom
,
sp
+
2
,
BITMAP_BITS
(
stg_arg_bitmaps
[
fun_info
->
f
.
fun_type
]),
BITMAP_SIZE
(
stg_arg_bitmaps
[
fun_info
->
f
.
fun_type
]));
break
;
...
...
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