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
191258c1
Commit
191258c1
authored
Jul 30, 1992
by
hallgren
Browse files
Changed NATIVE-COMPILE-COMPONENT to output the disassembly to the trace file
when using new-assem.
parent
2fe1ec02
Changes
1
Show whitespace changes
Inline
Side-by-side
compiler/main.lisp
View file @
191258c1
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/main.lisp,v 1.6
7
1992/07/
28 20:23:02 wlott
Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/main.lisp,v 1.6
8
1992/07/
30 13:24:54 hallgren
Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -293,6 +293,14 @@
component
)
(
assem:dump-segment
*code-segment*
:stream
*compiler-trace-output*
))
(
when
(
and
*compiler-trace-output*
(
backend-featurep
:new-assembler
))
(
format
*compiler-trace-output*
"~|~%Disassembly of code for ~S~2%"
component
)
(
disassem:disassemble-blocks
*code-segment*
*compiler-trace-output*
*backend*
))
(
when
*count-vop-usages*
(
count-vops
component
))
...
...
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