Home | History | Annotate | Download | only in massif

Lines Matching defs:ips

861 ips[])
868 // We ask for a few more IPs than clo_depth suggests we need. Then we
870 // circumstances, we may need to redo it all, asking for more IPs.
873 // - Else if after filtering we have >= clo_depth IPs, redo=False
884 VG_(tool_panic)("get_IPs: ips[] too small, inc. MAX_OVERESTIMATE?");
886 // Ask for more IPs than clo_depth suggests we need.
887 n_ips = VG_(get_StackTrace)( tid, ips, clo_depth + overestimate,
902 if (VG_(get_fnname)(ips[i], buf, BUF_LEN)) {
913 ips[i] = ips[i + n_alloc_fns_removed];
916 // If after filtering we have >= clo_depth IPs, redo=False
919 n_ips = clo_depth; // Ignore any IPs below --depth.
933 static Addr ips[MAX_IPS];
937 // After this call, the IPs we want are in ips[0]..ips[n_ips-1].
938 Int n_ips = get_IPs(tid, exclude_first_entry, ips);
942 if (n_ips > 0 && fn_should_be_ignored(ips[0])) {
948 Addr ip = ips[i];