Lines Matching refs:stack

37 #       <count> <stack trace>
582 # Remove uniniteresting stack items
598 # each stack trace so a given entry exists at most once.
1029 the "focus" regular expression matches a routine name on the stack
1067 the stack trace matches the regular expression in any of the -ignore
2603 # Translate a stack of addresses into a stack of symbols
2633 # the translated stack should contain callees before callers.
2759 # If count is charged to stack [a,b,c,d], in generated profile,
2775 # If count is charged to stack [a,b,c,d], in generated profile,
2790 # If the second-youngest PC on the stack is always the same, returns
2987 # i.e., stack frames pushed by the CPU profiler signal handler.
2990 # the stack, so it does not get involved.)
2997 print STDERR "Removing $second_pc from all stack traces.\n";
3050 # To avoid double-counting due to recursion, skip a stack-trace
3231 # Add a stack of entries to specified profile, and add them to the $pcs
3236 my $stack = shift;
3240 foreach my $e (split(/\s+/, $stack)) {
3916 my $stack = shift;
3920 $stack =~ /(\s)/;
3922 my @addrs = split(' ', $stack);
3971 if ($d > (2**16)) { # TODO(csilvers): what's a reasonable max-stack-depth?
3974 error("$fname: stack trace depth >= 2**32\n");
3982 # Make key out of the stack entries
4204 my $stack = $5;
4208 AddEntries($profile, $pcs, FixCallerAddresses($stack), $counts[$index]);
4243 my $stack = "";
4266 $stack = $1;
4268 if ($stack eq "") {
4277 AddEntries($profile, $pcs, FixCallerAddresses($stack), $counts[$index]);
4283 FixCallerAddresses($stack), $counts[$index]);
4323 my ($cycles, $count, $stack) = ($1, $2, $3);
4333 AddEntries($profile, $pcs, FixCallerAddresses($stack), $values[$index]);
4337 my ($cycles, $stack) = ($1, $2);
4348 AddEntries($profile, $pcs, FixCallerAddresses($stack), $cycles);