genassym.c revision 72276
150479Speter/*-
213244Sgraichen * Copyright (c) 1982, 1990 The Regents of the University of California.
313244Sgraichen * All rights reserved.
413244Sgraichen *
513244Sgraichen * This code is derived from software contributed to Berkeley by
613244Sgraichen * William Jolitz.
713244Sgraichen *
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/i386/i386/genassym.c 72276 2001-02-10 02:20:34Z jhb $
38 */
39
40#include "opt_user_ldt.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/* XXX */
54#ifdef KTR_PERCPU
55#include <sys/ktr.h>
56#endif
57#include <machine/bootinfo.h>
58#include <machine/tss.h>
59#include <sys/vmmeter.h>
60#include <vm/vm.h>
61#include <vm/vm_param.h>
62#include <vm/pmap.h>
63#include <vm/vm_map.h>
64#include <sys/user.h>
65#include <net/if.h>
66#include <netinet/in.h>
67#include <nfs/nfsv2.h>
68#include <nfs/rpcv2.h>
69#include <nfs/nfs.h>
70#include <nfs/nfsdiskless.h>
71#ifdef SMP
72#include <machine/apic.h>
73#endif
74#include <machine/cpu.h>
75#include <machine/sigframe.h>
76#include <machine/globaldata.h>
77#include <machine/vm86.h>
78
79ASSYM(P_VMSPACE, offsetof(struct proc, p_vmspace));
80ASSYM(VM_PMAP, offsetof(struct vmspace, vm_pmap));
81ASSYM(PM_ACTIVE, offsetof(struct pmap, pm_active));
82ASSYM(P_ADDR, offsetof(struct proc, p_addr));
83ASSYM(P_INTR_NESTING_LEVEL, offsetof(struct proc, p_intr_nesting_level));
84ASSYM(P_SFLAG, offsetof(struct proc, p_sflag));
85ASSYM(P_STAT, offsetof(struct proc, p_stat));
86ASSYM(P_WCHAN, offsetof(struct proc, p_wchan));
87
88ASSYM(PS_ASTPENDING, PS_ASTPENDING);
89ASSYM(PS_NEEDRESCHED, PS_NEEDRESCHED);
90
91#ifdef SMP
92ASSYM(P_ONCPU, offsetof(struct proc, p_oncpu));
93ASSYM(P_LASTCPU, offsetof(struct proc, p_lastcpu));
94#endif
95
96ASSYM(SSLEEP, SSLEEP);
97ASSYM(SRUN, SRUN);
98ASSYM(V_TRAP, offsetof(struct vmmeter, v_trap));
99ASSYM(V_SYSCALL, offsetof(struct vmmeter, v_syscall));
100ASSYM(V_INTR, offsetof(struct vmmeter, v_intr));
101ASSYM(UPAGES, UPAGES);
102ASSYM(PAGE_SIZE, PAGE_SIZE);
103ASSYM(NPTEPG, NPTEPG);
104ASSYM(NPDEPG, NPDEPG);
105ASSYM(PDESIZE, PDESIZE);
106ASSYM(PTESIZE, PTESIZE);
107ASSYM(PAGE_SHIFT, PAGE_SHIFT);
108ASSYM(PAGE_MASK, PAGE_MASK);
109ASSYM(PDRSHIFT, PDRSHIFT);
110ASSYM(USRSTACK, USRSTACK);
111ASSYM(VM_MAXUSER_ADDRESS, VM_MAXUSER_ADDRESS);
112ASSYM(KERNBASE, KERNBASE);
113ASSYM(MCLBYTES, MCLBYTES);
114ASSYM(PCB_CR3, offsetof(struct pcb, pcb_cr3));
115ASSYM(PCB_EDI, offsetof(struct pcb, pcb_edi));
116ASSYM(PCB_ESI, offsetof(struct pcb, pcb_esi));
117ASSYM(PCB_EBP, offsetof(struct pcb, pcb_ebp));
118ASSYM(PCB_ESP, offsetof(struct pcb, pcb_esp));
119ASSYM(PCB_EBX, offsetof(struct pcb, pcb_ebx));
120ASSYM(PCB_EIP, offsetof(struct pcb, pcb_eip));
121ASSYM(TSS_ESP0, offsetof(struct i386tss, tss_esp0));
122
123#ifdef USER_LDT
124ASSYM(PCB_USERLDT, offsetof(struct pcb, pcb_ldt));
125#endif
126
127ASSYM(PCB_GS, offsetof(struct pcb, pcb_gs));
128ASSYM(PCB_DR0, offsetof(struct pcb, pcb_dr0));
129ASSYM(PCB_DR1, offsetof(struct pcb, pcb_dr1));
130ASSYM(PCB_DR2, offsetof(struct pcb, pcb_dr2));
131ASSYM(PCB_DR3, offsetof(struct pcb, pcb_dr3));
132ASSYM(PCB_DR6, offsetof(struct pcb, pcb_dr6));
133ASSYM(PCB_DR7, offsetof(struct pcb, pcb_dr7));
134ASSYM(PCB_DBREGS, PCB_DBREGS);
135ASSYM(PCB_EXT, offsetof(struct pcb, pcb_ext));
136
137ASSYM(PCB_SCHEDNEST, offsetof(struct pcb, pcb_schednest));
138
139ASSYM(PCB_SPARE, offsetof(struct pcb, __pcb_spare));
140ASSYM(PCB_FLAGS, offsetof(struct pcb, pcb_flags));
141ASSYM(PCB_SAVEFPU, offsetof(struct pcb, pcb_savefpu));
142ASSYM(PCB_SAVEFPU_SIZE, sizeof(struct save87));
143ASSYM(PCB_ONFAULT, offsetof(struct pcb, pcb_onfault));
144
145#ifdef SMP
146ASSYM(PCB_SIZE, sizeof(struct pcb));
147#endif
148
149ASSYM(TF_TRAPNO, offsetof(struct trapframe, tf_trapno));
150ASSYM(TF_ERR, offsetof(struct trapframe, tf_err));
151ASSYM(TF_CS, offsetof(struct trapframe, tf_cs));
152ASSYM(TF_EFLAGS, offsetof(struct trapframe, tf_eflags));
153ASSYM(SIGF_HANDLER, offsetof(struct sigframe, sf_ahu.sf_handler));
154ASSYM(SIGF_SC, offsetof(struct osigframe, sf_siginfo.si_sc));
155ASSYM(SIGF_UC, offsetof(struct sigframe, sf_uc));
156ASSYM(SC_PS, offsetof(struct osigcontext, sc_ps));
157ASSYM(SC_FS, offsetof(struct osigcontext, sc_fs));
158ASSYM(SC_GS, offsetof(struct osigcontext, sc_gs));
159ASSYM(SC_TRAPNO, offsetof(struct osigcontext, sc_trapno));
160ASSYM(UC_EFLAGS, offsetof(ucontext_t, uc_mcontext.mc_eflags));
161ASSYM(UC_GS, offsetof(ucontext_t, uc_mcontext.mc_gs));
162ASSYM(ENOENT, ENOENT);
163ASSYM(EFAULT, EFAULT);
164ASSYM(ENAMETOOLONG, ENAMETOOLONG);
165ASSYM(MAXPATHLEN, MAXPATHLEN);
166ASSYM(BOOTINFO_SIZE, sizeof(struct bootinfo));
167ASSYM(BI_VERSION, offsetof(struct bootinfo, bi_version));
168ASSYM(BI_KERNELNAME, offsetof(struct bootinfo, bi_kernelname));
169ASSYM(BI_NFS_DISKLESS, offsetof(struct bootinfo, bi_nfs_diskless));
170ASSYM(BI_ENDCOMMON, offsetof(struct bootinfo, bi_endcommon));
171ASSYM(NFSDISKLESS_SIZE, sizeof(struct nfs_diskless));
172ASSYM(BI_SIZE, offsetof(struct bootinfo, bi_size));
173ASSYM(BI_SYMTAB, offsetof(struct bootinfo, bi_symtab));
174ASSYM(BI_ESYMTAB, offsetof(struct bootinfo, bi_esymtab));
175ASSYM(BI_KERNEND, offsetof(struct bootinfo, bi_kernend));
176ASSYM(GD_SIZEOF, sizeof(struct globaldata));
177ASSYM(GD_PRVSPACE, offsetof(struct globaldata, gd_prvspace));
178ASSYM(GD_CURPROC, offsetof(struct globaldata, gd_curproc));
179ASSYM(GD_NPXPROC, offsetof(struct globaldata, gd_npxproc));
180ASSYM(GD_IDLEPROC, offsetof(struct globaldata, gd_idleproc));
181ASSYM(GD_CURPCB, offsetof(struct globaldata, gd_curpcb));
182ASSYM(GD_COMMON_TSS, offsetof(struct globaldata, gd_common_tss));
183ASSYM(GD_SWITCHTIME, offsetof(struct globaldata, gd_switchtime));
184ASSYM(GD_SWITCHTICKS, offsetof(struct globaldata, gd_switchticks));
185ASSYM(GD_COMMON_TSSD, offsetof(struct globaldata, gd_common_tssd));
186ASSYM(GD_TSS_GDT, offsetof(struct globaldata, gd_tss_gdt));
187
188#ifdef USER_LDT
189ASSYM(GD_CURRENTLDT, offsetof(struct globaldata, gd_currentldt));
190#endif
191
192ASSYM(GD_WITNESS_SPIN_CHECK, offsetof(struct globaldata, gd_witness_spin_check));
193
194/* XXX */
195#ifdef KTR_PERCPU
196ASSYM(GD_KTR_IDX, offsetof(struct globaldata, gd_ktr_idx));
197ASSYM(GD_KTR_BUF, offsetof(struct globaldata, gd_ktr_buf));
198ASSYM(GD_KTR_BUF_DATA, offsetof(struct globaldata, gd_ktr_buf_data));
199#endif
200
201#ifdef SMP
202ASSYM(GD_CPUID, offsetof(struct globaldata, gd_cpuid));
203
204ASSYM(LA_VER, offsetof(struct LAPIC, version));
205ASSYM(LA_TPR, offsetof(struct LAPIC, tpr));
206ASSYM(LA_EOI, offsetof(struct LAPIC, eoi));
207ASSYM(LA_SVR, offsetof(struct LAPIC, svr));
208ASSYM(LA_ICR_LO, offsetof(struct LAPIC, icr_lo));
209ASSYM(LA_ICR_HI, offsetof(struct LAPIC, icr_hi));
210#endif
211
212ASSYM(KCSEL, GSEL(GCODE_SEL, SEL_KPL));
213ASSYM(KDSEL, GSEL(GDATA_SEL, SEL_KPL));
214ASSYM(KPSEL, GSEL(GPRIV_SEL, SEL_KPL));
215
216ASSYM(BC32SEL, GSEL(GBIOSCODE32_SEL, SEL_KPL));
217ASSYM(GPROC0_SEL, GPROC0_SEL);
218ASSYM(VM86_FRAMESIZE, sizeof(struct vm86frame));
219
220ASSYM(MTX_LOCK, offsetof(struct mtx, mtx_lock));
221ASSYM(MTX_RECURSECNT, offsetof(struct mtx, mtx_recurse));
222ASSYM(MTX_SAVEINTR, offsetof(struct mtx, mtx_saveintr));
223