sigframe
struct sigframe *sfp;
sfp = (struct sigframe *)sp - 1;
struct sigframe *sfp;
p = (register_t *)((u_register_t)p - sizeof(struct sigframe));
sfp = (struct sigframe *)p;
bzero(sfp, sizeof(struct sigframe));
struct sigframe sf, *sfp;
sp -= sizeof(struct sigframe);
sfp = (struct sigframe *)STACKALIGN(sp);
ASSYM(SIGF_HANDLER, offsetof(struct sigframe, sf_ahu.sf_handler));
ASSYM(SIGF_UC, offsetof(struct sigframe, sf_uc));
struct sigframe *fp, frame;
fp = (struct sigframe *)((uintptr_t)td->td_sigstk.ss_sp +
fp = (struct sigframe *)td->td_frame->tf_usr_sp;
ASSYM(SIGF_UC, offsetof(struct sigframe, sf_uc));
struct sigframe *fp, frame;
fp = (struct sigframe *)addr;
ASSYM(SF_UC, offsetof(struct sigframe, sf_uc));
struct sigframe sf, *sfp;
sp -= sizeof(struct sigframe);
sfp = (struct sigframe *)((unsigned int)sp & ~0xF);
ASSYM(SIGF_HANDLER, offsetof(struct sigframe, sf_ahu.sf_handler));
ASSYM(SIGF_UC, offsetof(struct sigframe, sf_uc));
struct sigframe sf;
offsetof(struct sigframe, sf_uc));
offsetof(struct sigframe, sf_uc);
offsetof(struct sigframe, sf_si);
ASSYM(SF_UC, offsetof(struct sigframe, sf_uc));
struct sigframe *fp, frame;
fp = (struct sigframe *)((uintptr_t)td->td_sigstk.ss_sp +
fp = (struct sigframe *)td->td_frame->tf_sp;
ASSYM(SF_UC, offsetof(struct sigframe, sf_uc));