| Index: tools/deep_memory_profiler/dmprof.py
|
| diff --git a/tools/deep_memory_profiler/dmprof.py b/tools/deep_memory_profiler/dmprof.py
|
| index 87b494bd1b4202cb5390e86edc990db584776640..7452c934d38ce7079754f714e5d643c558e4ded1 100644
|
| --- a/tools/deep_memory_profiler/dmprof.py
|
| +++ b/tools/deep_memory_profiler/dmprof.py
|
| @@ -1662,9 +1662,11 @@ class ExpandCommand(Command):
|
| component_match = policy.find(bucket)
|
| if component_match == component_name:
|
| stacktrace_sequence = ''
|
| + stacktrace_sequence += '(alloc=%d) ' % int(words[ALLOC_COUNT])
|
| + stacktrace_sequence += '(free=%d) ' % int(words[FREE_COUNT])
|
| if bucket.typeinfo:
|
| - stacktrace_sequence += '(type=%s)' % bucket.symbolized_typeinfo
|
| - stacktrace_sequence += ' (type.name=%s) ' % bucket.typeinfo_name
|
| + stacktrace_sequence += '(type=%s) ' % bucket.symbolized_typeinfo
|
| + stacktrace_sequence += '(type.name=%s) ' % bucket.typeinfo_name
|
| for function, sourcefile in zip(
|
| bucket.symbolized_stackfunction[
|
| 0 : min(len(bucket.symbolized_stackfunction), 1 + depth)],
|
|
|