Lines Matching refs:stack
1 # stackcollapse.py - format perf samples with one line per distinct call stack
5 # separated stack including the program name (from the "comm" field) and the
6 # function names from the call stack. The second is a count:
39 # formatting options for the bottom entry of the stack
42 help="include thread id in stack"),
45 help="include process id in stack"),
97 stack = list()
103 stack.append(tidy_function_name(entry['sym']['name'],
108 stack.append(tidy_function_name(param_dict['symbol'],
119 stack.append(comm)
121 stack_string = ';'.join(reversed(stack))
126 for stack in list:
127 print("%s %d" % (stack, lines[stack]))