/src/sys/arch/ia64/include/ |
ptrace.h | 54 #define PTRACE_REG_PC(r) (r)->r_special.iip 56 #define PTRACE_REG_SET_PC(r, v) (r)->r_special.iip = (v)
|
mcontext.h | 70 * proper return values. Also, the IIP and CFM fields need to be preserved 91 * return values and that additionally IIP and CFM are valid. 116 #define _UC_MACHINE_PC(uc) ((uc)->uc_mcontext.mc_special.iip) 118 #define _UC_MACHINE_SET_PC(uc, pc) (uc)->uc_mcontext.mc_special.iip = (pc)
|
db_machdep.h | 56 ((db_addr_t)(regs)->tf_special.iip + (((regs)->tf_special.psr>>41) & 3)) 60 #define PC_REGS(regs) ((db_addr_t)(regs)->tf_special.iip + (((regs)->tf_special.psr>>41) & 3))
|
cpu.h | 152 #define TRAPF_PC(tf) ((tf)->tf_special.iip)
|
_regset.h | 74 unsigned long iip; member in struct:_special
|
ia64_cpu.h | 465 IA64_CR(iip)
|
/src/sys/arch/ia64/ia64/ |
db_interface.c | 154 u_long iip, slot; local in function:db_getip 164 iip = f->tf_special.iip; 166 *valuep = iip + slot; 170 iip = *valuep & ~0xf; 174 f->tf_special.iip = iip; 431 regs->tf_special.iip += 16;
|
trap.c | 263 printf(" cr.iip = 0x%lx\n", tf->tf_special.iip); 298 if (!asm_decode(tf->tf_special.iip, &bundle)) 591 tf->tf_special.iip = pcb->pcb_onfault; 614 tf->tf_special.iip += tf->tf_special.ifa << 4;
|
db_trace.c | 94 ip = tf->tf_special.iip + ((tf->tf_special.psr >> 41) & 3);
|
locore.S | 206 mov cr.iip = r17
|
exception.S | 122 mov r25 = cr.iip 127 st8 [r27] = r25, 8 // 0x10 IIP 273 mov r22=cr.iip 294 * r18=pr, r19=length, r20=unat, r21=rsc, r22=iip, r23=TOS 313 // r18=pr, r19=length, r20=unat, r21=rsc, r22=iip, r23=TOS 332 // r18=pr, r19=rnat, r20=bspstore, r21=rsc, r22=iip, r23=rp 352 // r18=fpsr, r19=rnat, r20=bspstore, r21=rsc, r22=iip, r23=ipsr 372 // r19=rnat, r20=bspstore, r22=iip, r23=ipsr 391 // r18=ndirty, r19=ifs, r22=iip 400 st8 [r31]=r22,16 // iip [all...] |
machdep.c | 785 tf->tf_special.iip = pack->ep_entry;
|
support.S | 104 mov cr.iip=r16 // setup for rfi
|
/src/sys/arch/mac68k/mac68k/ |
machdep.c | 2363 struct intvid_info_t *iip; local in function:get_mapping 2456 for (iip = intvid_info; iip->machineid; iip++) 2457 if (mac68k_machine.machineid == iip->machineid) 2460 if (mac68k_machine.machineid == iip->machineid && 2461 (phys & ~iip->fbmask) >= iip->fbbase && 2462 (phys & ~iip->fbmask) < (iip->fbbase + iip->fblen)) [all...] |
/src/usr.sbin/dumplfs/ |
dumplfs.c | 585 IINFO *iip, *iip2; local in function:dump_sum 643 iip = SEGSUM_IINFOSTART(lfsp, sp); 648 for (i = 0; i < lfs_ss_getninos(lfsp, sp); iip = NEXTLOWER_IINFO(lfsp, iip)) { 651 printf("\t0x%jx {", (intmax_t)lfs_ii_getblock(lfsp, iip)); 652 get(fd, fsbtobyte(lfsp, lfs_ii_getblock(lfsp, iip)), diblock, lfs_sb_getibsize(lfsp));
|
/src/sbin/fsck_lfs/ |
lfs.c | 797 IINFO *iibase, *iip; local in function:check_summary 825 iip = iibase; 830 if (i >= lfs_ss_getnfinfo(fs, sp) && lfs_ii_getblock(fs, iip) != daddr) { 836 pwarn("iip=0x%jx, daddr=0x%jx\n", 837 (uintmax_t)lfs_ii_getblock(fs, iip), 841 while (j < howmany(lfs_ss_getninos(fs, sp), LFS_INOPB(fs)) && lfs_ii_getblock(fs, iip) == daddr) { 849 iip = NEXTLOWER_IINFO(fs, iip);
|
pass6.c | 546 IINFO *iip; local in function:pass6 648 iip = SEGSUM_IINFOSTART(fs, bp->b_data); 653 ibdaddr = lfs_ii_getblock(fs, iip); 654 iip = NEXTLOWER_IINFO(fs, iip);
|
segwrite.c | 251 IINFO *iip; local in function:lfs_writeinode 289 iip = NTH_IINFO(fs, sp->segsum, sp->ninodes / LFS_INOPB(fs)); 290 lfs_ii_setblock(fs, iip, daddr);
|
/src/sys/ufs/lfs/ |
lfs_rfw.c | 556 IINFO *iip; local in function:check_segsum 652 iip = SEGSUM_IINFOSTART(fs, buf); 656 if (ninos && lfs_ii_getblock(fs, iip) == offset) { 684 iip = NEXTLOWER_IINFO(fs, iip);
|
lfs_accessors.h | 793 #define NEXTLOWER_IINFO(fs, iip) \ 794 ((IINFO *)((char *)(iip) - IINFOSIZE(fs))) 800 lfs_ii_getblock(STRUCT_LFS *fs, IINFO *iip) 803 return iip->u_64.ii_block; 805 return iip->u_32.ii_block; 810 lfs_ii_setblock(STRUCT_LFS *fs, IINFO *iip, uint64_t block) 813 iip->u_64.ii_block = block; 815 iip->u_32.ii_block = block;
|
lfs_segment.c | 1063 IINFO *iip; local in function:lfs_writeinode 1150 iip = NTH_IINFO(fs, sp->segsum, sp->ninodes / LFS_INOPB(fs)); 1151 lfs_ii_setblock(fs, iip, daddr);
|
/src/lib/libbluetooth/ |
bt_dev.c | 571 struct bt_devinquiry **iip) 588 if (iip == NULL) { 684 *iip = ii;
|
/src/sys/dev/pci/ |
mpii.c | 1393 struct mpii_msg_iocinit_reply iip; local in function:mpii_iocinit 1398 memset(&iip, 0, sizeof(iip)); 1447 if (mpii_handshake_recv(sc, &iip, dwordsof(iip)) != 0) { 1454 "whoinit: 0x%02x\n", DEVNAME(sc), iip.function, 1455 iip.msg_length, iip.whoinit); 1457 iip.msg_flags); 1459 iip.vf_id, iip.vp_id) [all...] |
/src/libexec/lfs_cleanerd/ |
lfs_cleanerd.c | 450 IINFO *iip; local in function:parse_pseg 469 iip = SEGSUM_IINFOSTART(fs, cp); 507 if (fic >= lfs_ss_getnfinfo(fs, ssp) && lfs_ii_getblock(fs, iip) != daddr) { 517 if (inoc < lfs_ss_getninos(fs, ssp) && lfs_ii_getblock(fs, iip) == daddr) { 559 iip = NEXTLOWER_IINFO(fs, iip);
|