genassym.c revision 93264
1/*-
2 * Copyright (c) 1982, 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 *    notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 *    notice, this list of conditions and the following disclaimer in the
15 *    documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 *    must display the following acknowledgement:
18 *	This product includes software developed by the University of
19 *	California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 *    may be used to endorse or promote products derived from this software
22 *    without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 *	from: @(#)genassym.c	5.11 (Berkeley) 5/10/91
37 * $FreeBSD: head/sys/amd64/amd64/genassym.c 93264 2002-03-27 05:39:23Z dillon $
38 */
39
40#include "opt_kstack_pages.h"
41
42#include <sys/param.h>
43#include <sys/systm.h>
44#include <sys/assym.h>
45#include <sys/bio.h>
46#include <sys/buf.h>
47#include <sys/proc.h>
48#include <sys/errno.h>
49#include <sys/mount.h>
50#include <sys/mutex.h>
51#include <sys/socket.h>
52#include <sys/resourcevar.h>
53#include <sys/ucontext.h>
54#include <sys/user.h>
55#include <machine/bootinfo.h>
56#include <machine/tss.h>
57#include <sys/vmmeter.h>
58#include <vm/vm.h>
59#include <vm/vm_param.h>
60#include <vm/pmap.h>
61#include <vm/vm_map.h>
62#include <sys/user.h>
63#include <sys/proc.h>
64#include <net/if.h>
65#include <netinet/in.h>
66#include <nfs/nfsproto.h>
67#include <nfs/rpcv2.h>
68#include <nfsclient/nfs.h>
69#include <nfsclient/nfsdiskless.h>
70#ifdef SMP
71#include <machine/apic.h>
72#endif
73#include <machine/cpu.h>
74#include <machine/sigframe.h>
75#include <machine/vm86.h>
76#include <machine/proc.h>
77
78ASSYM(P_VMSPACE, offsetof(struct proc, p_vmspace));
79ASSYM(VM_PMAP, offsetof(struct vmspace, vm_pmap));
80ASSYM(PM_ACTIVE, offsetof(struct pmap, pm_active));
81ASSYM(P_SFLAG, offsetof(struct proc, p_sflag));
82ASSYM(P_STAT, offsetof(struct proc, p_stat));
83ASSYM(P_UAREA, offsetof(struct proc, p_uarea));
84
85/*ASSYM(TD_STAT, offsetof(struct thread, td__stat));*/
86ASSYM(TD_FLAGS, offsetof(struct thread, td_flags));
87ASSYM(TD_WCHAN, offsetof(struct thread, td_wchan));
88ASSYM(TD_PCB, offsetof(struct thread, td_pcb));
89ASSYM(TD_KSE, offsetof(struct thread, td_kse));
90ASSYM(TD_PROC, offsetof(struct thread, td_proc));
91ASSYM(TD_INTR_NESTING_LEVEL, offsetof(struct thread, td_intr_nesting_level));
92ASSYM(TD_CRITNEST, offsetof(struct thread, td_critnest));
93ASSYM(TD_MD, offsetof(struct thread, td_md));
94
95ASSYM(P_MD, offsetof(struct proc, p_md));
96ASSYM(MD_LDT, offsetof(struct mdproc, md_ldt));
97ASSYM(MD_SAVECRIT, offsetof(struct mdthread, md_savecrit));
98
99ASSYM(KE_FLAGS, offsetof(struct kse, ke_flags));
100
101ASSYM(KEF_ASTPENDING, KEF_ASTPENDING);
102ASSYM(KEF_NEEDRESCHED, KEF_NEEDRESCHED);
103
104ASSYM(SSLEEP, SSLEEP);
105ASSYM(SRUN, SRUN);
106ASSYM(V_TRAP, offsetof(struct vmmeter, v_trap));
107ASSYM(V_SYSCALL, offsetof(struct vmmeter, v_syscall));
108ASSYM(V_INTR, offsetof(struct vmmeter, v_intr));
109/* ASSYM(UPAGES, UPAGES);*/
110ASSYM(UAREA_PAGES, UAREA_PAGES);
111ASSYM(KSTACK_PAGES, KSTACK_PAGES);
112ASSYM(PAGE_SIZE, PAGE_SIZE);
113ASSYM(NPTEPG, NPTEPG);
114ASSYM(NPDEPG, NPDEPG);
115ASSYM(PDESIZE, PDESIZE);
116ASSYM(PTESIZE, PTESIZE);
117ASSYM(PAGE_SHIFT, PAGE_SHIFT);
118ASSYM(PAGE_MASK, PAGE_MASK);
119ASSYM(PDRSHIFT, PDRSHIFT);
120ASSYM(USRSTACK, USRSTACK);
121ASSYM(VM_MAXUSER_ADDRESS, VM_MAXUSER_ADDRESS);
122ASSYM(KERNBASE, KERNBASE);
123ASSYM(MCLBYTES, MCLBYTES);
124ASSYM(PCB_CR3, offsetof(struct pcb, pcb_cr3));
125ASSYM(PCB_EDI, offsetof(struct pcb, pcb_edi));
126ASSYM(PCB_ESI, offsetof(struct pcb, pcb_esi));
127ASSYM(PCB_EBP, offsetof(struct pcb, pcb_ebp));
128ASSYM(PCB_ESP, offsetof(struct pcb, pcb_esp));
129ASSYM(PCB_EBX, offsetof(struct pcb, pcb_ebx));
130ASSYM(PCB_EIP, offsetof(struct pcb, pcb_eip));
131ASSYM(TSS_ESP0, offsetof(struct i386tss, tss_esp0));
132
133ASSYM(PCB_GS, offsetof(struct pcb, pcb_gs));
134ASSYM(PCB_DR0, offsetof(struct pcb, pcb_dr0));
135ASSYM(PCB_DR1, offsetof(struct pcb, pcb_dr1));
136ASSYM(PCB_DR2, offsetof(struct pcb, pcb_dr2));
137ASSYM(PCB_DR3, offsetof(struct pcb, pcb_dr3));
138ASSYM(PCB_DR6, offsetof(struct pcb, pcb_dr6));
139ASSYM(PCB_DR7, offsetof(struct pcb, pcb_dr7));
140ASSYM(PCB_PSL, offsetof(struct pcb, pcb_psl));
141ASSYM(PCB_DBREGS, PCB_DBREGS);
142ASSYM(PCB_EXT, offsetof(struct pcb, pcb_ext));
143
144ASSYM(PCB_SPARE, offsetof(struct pcb, __pcb_spare));
145ASSYM(PCB_FLAGS, offsetof(struct pcb, pcb_flags));
146ASSYM(PCB_SAVEFPU, offsetof(struct pcb, pcb_save));
147ASSYM(PCB_SAVEFPU_SIZE, sizeof(union savefpu));
148ASSYM(PCB_SAVE87_SIZE, sizeof(struct save87));
149ASSYM(PCB_ONFAULT, offsetof(struct pcb, pcb_onfault));
150
151ASSYM(PCB_SIZE, sizeof(struct pcb));
152
153ASSYM(TF_TRAPNO, offsetof(struct trapframe, tf_trapno));
154ASSYM(TF_ERR, offsetof(struct trapframe, tf_err));
155ASSYM(TF_CS, offsetof(struct trapframe, tf_cs));
156ASSYM(TF_EFLAGS, offsetof(struct trapframe, tf_eflags));
157ASSYM(SIGF_HANDLER, offsetof(struct sigframe, sf_ahu.sf_handler));
158ASSYM(SIGF_SC, offsetof(struct osigframe, sf_siginfo.si_sc));
159ASSYM(SIGF_UC, offsetof(struct sigframe, sf_uc));
160ASSYM(SC_PS, offsetof(struct osigcontext, sc_ps));
161ASSYM(SC_FS, offsetof(struct osigcontext, sc_fs));
162ASSYM(SC_GS, offsetof(struct osigcontext, sc_gs));
163ASSYM(SC_TRAPNO, offsetof(struct osigcontext, sc_trapno));
164ASSYM(UC_EFLAGS, offsetof(ucontext_t, uc_mcontext.mc_eflags));
165ASSYM(UC_GS, offsetof(ucontext_t, uc_mcontext.mc_gs));
166ASSYM(ENOENT, ENOENT);
167ASSYM(EFAULT, EFAULT);
168ASSYM(ENAMETOOLONG, ENAMETOOLONG);
169ASSYM(MAXPATHLEN, MAXPATHLEN);
170ASSYM(BOOTINFO_SIZE, sizeof(struct bootinfo));
171ASSYM(BI_VERSION, offsetof(struct bootinfo, bi_version));
172ASSYM(BI_KERNELNAME, offsetof(struct bootinfo, bi_kernelname));
173ASSYM(BI_NFS_DISKLESS, offsetof(struct bootinfo, bi_nfs_diskless));
174ASSYM(BI_ENDCOMMON, offsetof(struct bootinfo, bi_endcommon));
175ASSYM(NFSDISKLESS_SIZE, sizeof(struct nfs_diskless));
176ASSYM(BI_SIZE, offsetof(struct bootinfo, bi_size));
177ASSYM(BI_SYMTAB, offsetof(struct bootinfo, bi_symtab));
178ASSYM(BI_ESYMTAB, offsetof(struct bootinfo, bi_esymtab));
179ASSYM(BI_KERNEND, offsetof(struct bootinfo, bi_kernend));
180ASSYM(PC_SIZEOF, sizeof(struct pcpu));
181ASSYM(PC_PRVSPACE, offsetof(struct pcpu, pc_prvspace));
182ASSYM(PC_CURTHREAD, offsetof(struct pcpu, pc_curthread));
183ASSYM(PC_INT_PENDING, offsetof(struct pcpu, pc_int_pending));
184ASSYM(PC_IPENDING, offsetof(struct pcpu, pc_ipending));
185ASSYM(PC_FPENDING, offsetof(struct pcpu, pc_fpending));
186ASSYM(PC_SPENDING, offsetof(struct pcpu, pc_spending));
187ASSYM(PC_FPCURTHREAD, offsetof(struct pcpu, pc_fpcurthread));
188ASSYM(PC_IDLETHREAD, offsetof(struct pcpu, pc_idlethread));
189ASSYM(PC_CURPCB, offsetof(struct pcpu, pc_curpcb));
190ASSYM(PC_COMMON_TSS, offsetof(struct pcpu, pc_common_tss));
191ASSYM(PC_COMMON_TSSD, offsetof(struct pcpu, pc_common_tssd));
192ASSYM(PC_TSS_GDT, offsetof(struct pcpu, pc_tss_gdt));
193ASSYM(PC_CURRENTLDT, offsetof(struct pcpu, pc_currentldt));
194ASSYM(PC_CPUID, offsetof(struct pcpu, pc_cpuid));
195
196#ifdef SMP
197ASSYM(LA_VER, offsetof(struct LAPIC, version));
198ASSYM(LA_TPR, offsetof(struct LAPIC, tpr));
199ASSYM(LA_EOI, offsetof(struct LAPIC, eoi));
200ASSYM(LA_SVR, offsetof(struct LAPIC, svr));
201ASSYM(LA_ICR_LO, offsetof(struct LAPIC, icr_lo));
202ASSYM(LA_ICR_HI, offsetof(struct LAPIC, icr_hi));
203#endif
204
205ASSYM(KCSEL, GSEL(GCODE_SEL, SEL_KPL));
206ASSYM(KDSEL, GSEL(GDATA_SEL, SEL_KPL));
207ASSYM(KPSEL, GSEL(GPRIV_SEL, SEL_KPL));
208
209ASSYM(BC32SEL, GSEL(GBIOSCODE32_SEL, SEL_KPL));
210ASSYM(GPROC0_SEL, GPROC0_SEL);
211ASSYM(VM86_FRAMESIZE, sizeof(struct vm86frame));
212
213ASSYM(MTX_LOCK, offsetof(struct mtx, mtx_lock));
214ASSYM(MTX_RECURSECNT, offsetof(struct mtx, mtx_recurse));
215
216#ifdef PC98
217#include <machine/bus.h>
218
219ASSYM(BUS_SPACE_HANDLE_BASE, offsetof(struct bus_space_handle, bsh_base));
220ASSYM(BUS_SPACE_HANDLE_IAT, offsetof(struct bus_space_handle, bsh_iat));
221#endif
222