Lines Matching defs:ip
381 static XArray* /* of StackBlock */ get_StackBlocks_for_IP ( Addr ip )
383 XArray* blocks = VG_(di_get_stack_blocks_at_ip)( ip, True/*arrays only*/ );
1322 of the ip are guaranteed to be zero */
1323 inline static UWord compute_II_hash ( Addr ip, UWord htab_size ) {
1324 return (ip >> 0) & (htab_size - 1);
1399 Addr ip,
1417 ix = compute_II_hash(ip, sf->htab_size);
1425 if (sf->htab[ix].insn_addr == ip)
1444 tl_assert(ip != 0); /* CAN'T REPRESENT THIS */
1445 sf->htab[ix].insn_addr = ip;
1456 Addr ip,
1460 UWord ix = compute_II_hash(ip, sf->htab_size);
1462 if (LIKELY(sf->htab[ix].insn_addr == ip)) {
1469 tl_assert(ip != 0);
1470 sf->htab[ix].insn_addr = ip;
1478 return find_or_create_IInstance_SLOW( sf, ip, ip_frameblocks );
1748 Word ip = cache->nInUse / 2; /* doesn't seem critical */
1752 for (i = cache->nInUse-1; i > ip; i--) {
1757 cache->elems[ip].addr = toadd_addr;
1758 cache->elems[ip].szB = toadd_szB;
1759 cache->elems[ip].inv = *inv;
1774 Word sszB, Addr ip, XArray* ip_frameBlocks )
1792 iinstance = find_or_create_IInstance( frame, ip, ip_frameBlocks );
1938 Addr ip = ip_post_call_insn;
1939 ok = VG_(get_fnname_w_offset)( ip, &fnname );
1944 VG_(printf)("> %s %#lx\n", ok ? fnname : "???", ip);
2072 /* the current insn's IP */