Changeset View
Changeset View
Standalone View
Standalone View
sys/amd64/amd64/genassym.c
Show First 20 Lines • Show All 199 Lines • ▼ Show 20 Lines | |||||
ASSYM(PTI_RFLAGS, offsetof(struct pti_frame, pti_rflags)); | ASSYM(PTI_RFLAGS, offsetof(struct pti_frame, pti_rflags)); | ||||
ASSYM(PTI_RSP, offsetof(struct pti_frame, pti_rsp)); | ASSYM(PTI_RSP, offsetof(struct pti_frame, pti_rsp)); | ||||
ASSYM(PTI_SS, offsetof(struct pti_frame, pti_ss)); | ASSYM(PTI_SS, offsetof(struct pti_frame, pti_ss)); | ||||
ASSYM(PTI_SIZE, sizeof(struct pti_frame)); | ASSYM(PTI_SIZE, sizeof(struct pti_frame)); | ||||
ASSYM(SIGF_HANDLER, offsetof(struct sigframe, sf_ahu.sf_handler)); | ASSYM(SIGF_HANDLER, offsetof(struct sigframe, sf_ahu.sf_handler)); | ||||
ASSYM(SIGF_UC, offsetof(struct sigframe, sf_uc)); | ASSYM(SIGF_UC, offsetof(struct sigframe, sf_uc)); | ||||
ASSYM(UC_EFLAGS, offsetof(ucontext_t, uc_mcontext.mc_rflags)); | ASSYM(UC_EFLAGS, offsetof(ucontext_t, uc_mcontext.mc_rflags)); | ||||
ASSYM(UC_RDI, offsetof(ucontext_t, uc_mcontext.mc_rdi)); | |||||
ASSYM(UC_RSI, offsetof(ucontext_t, uc_mcontext.mc_rsi)); | |||||
ASSYM(UC_RDX, offsetof(ucontext_t, uc_mcontext.mc_rdx)); | |||||
ASSYM(UC_RCX, offsetof(ucontext_t, uc_mcontext.mc_rcx)); | |||||
ASSYM(UC_R8, offsetof(ucontext_t, uc_mcontext.mc_r8)); | |||||
ASSYM(UC_R9, offsetof(ucontext_t, uc_mcontext.mc_r9)); | |||||
ASSYM(UC_RAX, offsetof(ucontext_t, uc_mcontext.mc_rax)); | |||||
ASSYM(UC_RBX, offsetof(ucontext_t, uc_mcontext.mc_rbx)); | |||||
ASSYM(UC_RBP, offsetof(ucontext_t, uc_mcontext.mc_rbp)); | |||||
ASSYM(UC_R10, offsetof(ucontext_t, uc_mcontext.mc_r10)); | |||||
ASSYM(UC_R11, offsetof(ucontext_t, uc_mcontext.mc_r11)); | |||||
ASSYM(UC_R12, offsetof(ucontext_t, uc_mcontext.mc_r12)); | |||||
ASSYM(UC_R13, offsetof(ucontext_t, uc_mcontext.mc_r13)); | |||||
ASSYM(UC_R14, offsetof(ucontext_t, uc_mcontext.mc_r14)); | |||||
ASSYM(UC_R15, offsetof(ucontext_t, uc_mcontext.mc_r15)); | |||||
ASSYM(UC_FS, offsetof(ucontext_t, uc_mcontext.mc_fs)); | |||||
ASSYM(UC_GS, offsetof(ucontext_t, uc_mcontext.mc_gs)); | |||||
ASSYM(UC_ES, offsetof(ucontext_t, uc_mcontext.mc_es)); | |||||
ASSYM(UC_DS, offsetof(ucontext_t, uc_mcontext.mc_ds)); | |||||
ASSYM(UC_RIP, offsetof(ucontext_t, uc_mcontext.mc_rip)); | |||||
ASSYM(UC_CS, offsetof(ucontext_t, uc_mcontext.mc_cs)); | |||||
ASSYM(UC_RFLAGS, offsetof(ucontext_t, uc_mcontext.mc_rflags)); | |||||
ASSYM(UC_RSP, offsetof(ucontext_t, uc_mcontext.mc_rsp)); | |||||
ASSYM(UC_SS, offsetof(ucontext_t, uc_mcontext.mc_ss)); | |||||
ASSYM(UC_FSBASE, offsetof(ucontext_t, uc_mcontext.mc_fsbase)); | |||||
ASSYM(UC_GSBASE, offsetof(ucontext_t, uc_mcontext.mc_gsbase)); | |||||
ASSYM(ENOENT, ENOENT); | ASSYM(ENOENT, ENOENT); | ||||
ASSYM(EFAULT, EFAULT); | ASSYM(EFAULT, EFAULT); | ||||
ASSYM(ENAMETOOLONG, ENAMETOOLONG); | ASSYM(ENAMETOOLONG, ENAMETOOLONG); | ||||
ASSYM(MAXCOMLEN, MAXCOMLEN); | ASSYM(MAXCOMLEN, MAXCOMLEN); | ||||
ASSYM(MAXPATHLEN, MAXPATHLEN); | ASSYM(MAXPATHLEN, MAXPATHLEN); | ||||
ASSYM(PC_SIZEOF, sizeof(struct pcpu)); | ASSYM(PC_SIZEOF, sizeof(struct pcpu)); | ||||
ASSYM(PC_PRVSPACE, offsetof(struct pcpu, pc_prvspace)); | ASSYM(PC_PRVSPACE, offsetof(struct pcpu, pc_prvspace)); | ||||
ASSYM(PC_CURTHREAD, offsetof(struct pcpu, pc_curthread)); | ASSYM(PC_CURTHREAD, offsetof(struct pcpu, pc_curthread)); | ||||
▲ Show 20 Lines • Show All 62 Lines • Show Last 20 Lines |