Home | History | Annotate | Download | only in exp-sgcheck

Lines Matching defs:ip

382 static XArray* /* of StackBlock */ get_StackBlocks_for_IP ( Addr ip )
384 XArray* blocks = VG_(di_get_stack_blocks_at_ip)( ip, True/*arrays only*/ );
1314 of the ip are guaranteed to be zero */
1315 inline static UWord compute_II_hash ( Addr ip, UWord htab_size ) {
1316 return (ip >> 0) & (htab_size - 1);
1391 Addr ip,
1409 ix = compute_II_hash(ip, sf->htab_size);
1417 if (sf->htab[ix].insn_addr == ip)
1436 tl_assert(ip != 0); /* CAN'T REPRESENT THIS */
1437 sf->htab[ix].insn_addr = ip;
1448 Addr ip,
1452 UWord ix = compute_II_hash(ip, sf->htab_size);
1454 if (LIKELY(sf->htab[ix].insn_addr == ip)) {
1461 tl_assert(ip != 0);
1462 sf->htab[ix].insn_addr = ip;
1470 return find_or_create_IInstance_SLOW( sf, ip, ip_frameblocks );
1740 Word ip = cache->nInUse / 2; /* doesn't seem critical */
1744 for (i = cache->nInUse-1; i > ip; i--) {
1749 cache->elems[ip].addr = toadd_addr;
1750 cache->elems[ip].szB = toadd_szB;
1751 cache->elems[ip].inv = *inv;
1766 Word sszB, Addr ip, XArray* ip_frameBlocks )
1784 iinstance = find_or_create_IInstance( frame, ip, ip_frameBlocks );
1930 Addr ip = ip_post_call_insn;
1931 ok = VG_(get_fnname_w_offset)( ip, fnname, sizeof(fnname) );
1936 VG_(printf)("> %s %#lx\n", ok ? fnname : "???", ip);
2064 /* the current insn's IP */