expected_output_minimal.log |
|
317 |
logalloc_munge.py |
This script takes a log from the replace-malloc logalloc library on stdin
and munges it so that it can be used with the logalloc-replay tool.
Given the following output:
13663 malloc(42)=0x7f0c33502040
13663 malloc(24)=0x7f0c33503040
13663 free(0x7f0c33502040)
The resulting output is:
1 malloc(42)=#1
1 malloc(24)=#2
1 free(#1)
See README for more details.
|
4050 |
Makefile.in |
|
1756 |
moz.build |
|
2664 |
Replay.cpp |
Here, it doesn't matter that fprintf may allocate memory. |
34927 |
replay.log |
|
339 |