frame64
#define v9next_frame(f) ((struct frame64*)(f->fr_fp+BIAS))
struct frame64 db_fr;
DDB_REGS->db_fr = *(struct frame64 *)(uintptr_t)tf->tf_out[6];
DDB_REGS->db_fr = *(struct frame64 *)(tf->tf_out[6] + BIAS);
copyin((void *)(tf->tf_out[6] + BIAS), &DDB_REGS->db_fr, sizeof(struct frame64));
struct frame64 *f64;
f64 = (struct frame64 *)(frame + BIAS);
f64 = (struct frame64 *)(frame + BIAS);
frame = (uint64_t)((struct frame64 *)(u_long)(frame + BIAS))->fr_fp;
struct frame64* f = (struct frame64*)(u_long)(frame + BIAS);
struct frame64 fr;
if (!INKERNEL(((struct frame64 *)(u_long)(frame)))
if (!INKERNEL(((struct frame64 *)(u_long)(frame))))
copyin(((void *)&((struct frame64 *)(u_long)frame)->fr_fp), &frame, sizeof(frame));
frame = ((struct frame64 *)(u_long)frame)->fr_fp;
struct frame64 *fp64;
fp64 = (struct frame64*)(((char*)fp)+BIAS);
offsetof(struct frame64, fr_argx);