Lines Matching defs:ip
79 // keeping XPt children sorted by 'ip' and use binary search in get_XCon.
508 // It's a bit of a fake XPt (ie. its 'ip' is zero), and is only used because
542 Addr ip; // code address
575 Addr ip;
616 static XPt* new_XPt(Addr ip, XPt* parent)
622 xpt->ip = ip;
719 sxpt->Sig.ip = xpt->ip;
840 // This is used for various buffers which can hold function names/IP
845 // Determine if the given IP belongs to a function that should be ignored.
846 static Bool fn_should_be_ignored(Addr ip)
850 ( VG_(get_fnname)(ip, buf, BUF_LEN) && is_member_fn(ignore_fns, buf)
948 Addr ip = ips[i];
950 // Look for IP in xpt's children.
956 // IP not found in the children.
958 XPt* new_child_xpt = new_XPt(ip, xpt);
963 } else if (ip == xpt->children[ch]->ip) {
964 // Found the IP in the children, stop.
2193 Vg_FnNameKind kind = VG_(get_fnname_kind_from_IP)(sxpt->Sig.ip);
2200 ip_desc = VG_(describe_IP)(sxpt->Sig.ip-1, ip_desc, BUF_LEN);
2618 alloc_xpt = new_XPt(/*ip*/0, /*parent*/NULL);