Home | History | Annotate | Download | only in massif

Lines Matching defs:ip

79 //   keeping XPt children sorted by 'ip' and use binary search in get_XCon.
512 // It's a bit of a fake XPt (ie. its 'ip' is zero), and is only used because
546 Addr ip; // code address
579 Addr ip;
620 static XPt* new_XPt(Addr ip, XPt* parent)
626 xpt->ip = ip;
723 sxpt->Sig.ip = xpt->ip;
844 // This is used for various buffers which can hold function names/IP
849 // Determine if the given IP belongs to a function that should be ignored.
850 static Bool fn_should_be_ignored(Addr ip)
854 ( VG_(get_fnname)(ip, buf, BUF_LEN) && is_member_fn(ignore_fns, buf)
952 Addr ip = ips[i];
954 // Look for IP in xpt's children.
960 // IP not found in the children.
962 XPt* new_child_xpt = new_XPt(ip, xpt);
967 } else if (ip == xpt->children[ch]->ip) {
968 // Found the IP in the children, stop.
2150 Vg_FnNameKind kind = VG_(get_fnname_kind_from_IP)(sxpt->Sig.ip);
2157 ip_desc = VG_(describe_IP)(sxpt->Sig.ip-1, ip_desc, BUF_LEN);
2520 alloc_xpt = new_XPt(/*ip*/0, /*parent*/NULL);