Closed
Bug 506714
Opened 16 years ago
Closed 16 years ago
trace tree visualizer
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
Tracking | Status | |
---|---|---|
status1.9.2 | --- | beta1-fixed |
People
(Reporter: dvander, Assigned: dvander)
Details
(Whiteboard: fixed-in-tracemonkey)
Attachments
(2 files, 1 obsolete file)
14.95 KB,
patch
|
gal
:
review+
|
Details | Diff | Splinter Review |
8.54 KB,
patch
|
Details | Diff | Splinter Review |
This is a little python script that eats some new debug spew and spits out a DOT file. I made it for seeing why recursion wasn't compiling correctly in some files. It draws some boxes/circles/lines that try show all traces and guards and how they connect together.
Example of output:
http://users.alliedmods.net/~dvander/fibonacci.png
Comment 1•16 years ago
|
||
What's the input for that example Fibonacci output?
/be
![]() |
Assignee | |
Comment 2•16 years ago
|
||
function fib(n) {
if (n < 2){ return 1; }
return fib(n-2) + fib(n-1);
}
print(fib(22));
![]() |
Assignee | |
Comment 3•16 years ago
|
||
Would like to get this out of my queue so I can stop rebasing it :)
Assignee: general → dvander
Attachment #390864 -
Attachment is obsolete: true
Status: NEW → ASSIGNED
Attachment #395189 -
Flags: review?(gal)
Updated•16 years ago
|
Attachment #395189 -
Flags: review?(gal) → review+
![]() |
Assignee | |
Comment 4•16 years ago
|
||
Whiteboard: fixed-in-tracemonkey
![]() |
Assignee | |
Comment 5•16 years ago
|
||
broke non-spew builds.
http://hg.mozilla.org/tracemonkey/rev/c7b5f6192809
![]() |
Assignee | |
Comment 6•16 years ago
|
||
Attachment #395875 -
Flags: review?
![]() |
Assignee | |
Updated•16 years ago
|
Attachment #395875 -
Flags: review? → review?(nnethercote)
![]() |
Assignee | |
Comment 7•16 years ago
|
||
Comment on attachment 395875 [details] [diff] [review]
warning fixes for gcc
http://hg.mozilla.org/tracemonkey/rev/fa58ccc48a91
Attachment #395875 -
Flags: review?(nnethercote)
Comment 8•16 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
Comment 10•16 years ago
|
||
status1.9.2:
--- → beta1-fixed
Flags: wanted1.9.2+
Updated•16 years ago
|
Flags: in-testsuite-
You need to log in
before you can comment on or make changes to this bug.
Description
•