kernel - Introduce lightweight buffers
[dragonfly.git] / sys / platform / vkernel / i386 / genassym.c
... / ...
CommitLineData
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: src/sys/i386/i386/genassym.c,v 1.86.2.3 2002/03/03 05:42:49 nyan Exp $
38 * $DragonFly: src/sys/platform/vkernel/i386/genassym.c,v 1.58 2007/06/29 21:54:11 dillon Exp $
39 */
40
41#include <sys/param.h>
42#include <sys/systm.h>
43#include <sys/assym.h>
44#include <sys/interrupt.h>
45#include <sys/buf.h>
46#include <sys/proc.h>
47#include <sys/errno.h>
48#include <sys/mount.h>
49#include <sys/socket.h>
50#include <sys/lock.h>
51#include <sys/resourcevar.h>
52#include <machine/frame.h>
53/*#include <machine/bootinfo.h>*/
54#include <machine/tss.h>
55#include <sys/vmmeter.h>
56#include <sys/machintr.h>
57#include <vm/vm.h>
58#include <vm/vm_param.h>
59#include <vm/pmap.h>
60#include <vm/vm_map.h>
61#include <sys/user.h>
62#include <net/if.h>
63#include <netinet/in.h>
64#include <vfs/nfs/nfsv2.h>
65#include <vfs/nfs/rpcv2.h>
66#include <vfs/nfs/nfs.h>
67#include <vfs/nfs/nfsdiskless.h>
68
69#include <machine/segments.h>
70#include <machine/sigframe.h>
71#include <machine/vm86.h>
72#include <machine/globaldata.h>
73#include <machine/pmap.h>
74
75ASSYM(P_VMSPACE, offsetof(struct proc, p_vmspace));
76ASSYM(VM_PMAP, offsetof(struct vmspace, vm_pmap));
77ASSYM(PM_ACTIVE, offsetof(struct pmap, pm_active));
78
79ASSYM(LWP_VMSPACE, offsetof(struct lwp, lwp_vmspace));
80
81ASSYM(TD_PROC, offsetof(struct thread, td_proc));
82ASSYM(TD_LWP, offsetof(struct thread, td_lwp));
83ASSYM(TD_PCB, offsetof(struct thread, td_pcb));
84ASSYM(TD_SP, offsetof(struct thread, td_sp));
85ASSYM(TD_PRI, offsetof(struct thread, td_pri));
86ASSYM(TD_MACH, offsetof(struct thread, td_mach));
87ASSYM(TD_WCHAN, offsetof(struct thread, td_wchan));
88ASSYM(TD_NEST_COUNT, offsetof(struct thread, td_nest_count));
89#ifdef SMP
90ASSYM(TD_MPCOUNT, offsetof(struct thread, td_mpcount));
91#endif
92ASSYM(TD_FLAGS, offsetof(struct thread, td_flags));
93ASSYM(TDF_RUNNING, TDF_RUNNING);
94
95ASSYM(TD_SAVEFPU, offsetof(struct thread, td_mach) + offsetof(struct md_thread, mtd_savefpu));
96
97ASSYM(TDPRI_CRIT, TDPRI_CRIT);
98ASSYM(TDPRI_INT_SUPPORT, TDPRI_INT_SUPPORT);
99#ifdef SMP
100ASSYM(CPUMASK_LOCK, CPUMASK_LOCK);
101#endif
102
103ASSYM(V_TRAP, offsetof(struct vmmeter, v_trap));
104ASSYM(V_SYSCALL, offsetof(struct vmmeter, v_syscall));
105ASSYM(V_SENDSYS, offsetof(struct vmmeter, v_sendsys));
106ASSYM(V_WAITSYS, offsetof(struct vmmeter, v_waitsys));
107ASSYM(V_INTR, offsetof(struct vmmeter, v_intr));
108ASSYM(V_FORWARDED_INTS, offsetof(struct vmmeter, v_forwarded_ints));
109ASSYM(V_FORWARDED_HITS, offsetof(struct vmmeter, v_forwarded_hits));
110ASSYM(V_FORWARDED_MISSES, offsetof(struct vmmeter, v_forwarded_misses));
111
112ASSYM(PAGE_SIZE, PAGE_SIZE);
113ASSYM(PAGE_SHIFT, PAGE_SHIFT);
114ASSYM(PAGE_MASK, PAGE_MASK);
115ASSYM(USRSTACK, USRSTACK);
116ASSYM(VM_MAX_USER_ADDRESS, VM_MAX_USER_ADDRESS);
117ASSYM(MCLBYTES, MCLBYTES);
118
119/* PCB_CR3 */
120ASSYM(PCB_EDI, offsetof(struct pcb, pcb_edi));
121ASSYM(PCB_ESI, offsetof(struct pcb, pcb_esi));
122ASSYM(PCB_EBP, offsetof(struct pcb, pcb_ebp));
123ASSYM(PCB_ESP, offsetof(struct pcb, pcb_esp));
124ASSYM(PCB_EBX, offsetof(struct pcb, pcb_ebx));
125ASSYM(PCB_EIP, offsetof(struct pcb, pcb_eip));
126ASSYM(TSS_ESP0, offsetof(struct i386tss, tss_esp0));
127
128/*ASSYM(PCB_USERLDT, offsetof(struct pcb, pcb_ldt));*/
129
130#if 1
131ASSYM(PCB_DR0, offsetof(struct pcb, pcb_dr0));
132ASSYM(PCB_DR1, offsetof(struct pcb, pcb_dr1));
133ASSYM(PCB_DR2, offsetof(struct pcb, pcb_dr2));
134ASSYM(PCB_DR3, offsetof(struct pcb, pcb_dr3));
135ASSYM(PCB_DR6, offsetof(struct pcb, pcb_dr6));
136ASSYM(PCB_DR7, offsetof(struct pcb, pcb_dr7));
137ASSYM(PCB_DBREGS, PCB_DBREGS);
138ASSYM(PCB_EXT, offsetof(struct pcb, pcb_ext));
139#endif
140
141ASSYM(PCB_SPARE, offsetof(struct pcb, __pcb_spare));
142ASSYM(PCB_FLAGS, offsetof(struct pcb, pcb_flags));
143ASSYM(PCB_SAVEFPU, offsetof(struct pcb, pcb_save));
144ASSYM(PCB_SAVEFPU_SIZE, sizeof(union savefpu));
145ASSYM(PCB_SAVE87_SIZE, sizeof(struct save87));
146ASSYM(PCB_ONFAULT, offsetof(struct pcb, pcb_onfault));
147
148ASSYM(PCB_SIZE, sizeof(struct pcb));
149
150ASSYM(TF_TRAPNO, offsetof(struct trapframe, tf_trapno));
151ASSYM(TF_XFLAGS, offsetof(struct trapframe, tf_xflags));
152ASSYM(TF_ERR, offsetof(struct trapframe, tf_err));
153ASSYM(TF_CS, offsetof(struct trapframe, tf_cs));
154ASSYM(TF_EFLAGS, offsetof(struct trapframe, tf_eflags));
155ASSYM(SIGF_HANDLER, offsetof(struct sigframe, sf_ahu.sf_handler));
156ASSYM(SIGF_UC, offsetof(struct sigframe, sf_uc));
157ASSYM(UC_EFLAGS, offsetof(ucontext_t, uc_mcontext.mc_eflags));
158ASSYM(ENOENT, ENOENT);
159ASSYM(EFAULT, EFAULT);
160ASSYM(ENAMETOOLONG, ENAMETOOLONG);
161ASSYM(MAXPATHLEN, MAXPATHLEN);
162
163#if 0
164ASSYM(BOOTINFO_SIZE, sizeof(struct bootinfo));
165ASSYM(BI_VERSION, offsetof(struct bootinfo, bi_version));
166ASSYM(BI_KERNELNAME, offsetof(struct bootinfo, bi_kernelname));
167ASSYM(BI_NFS_DISKLESS, offsetof(struct bootinfo, bi_nfs_diskless));
168ASSYM(BI_ENDCOMMON, offsetof(struct bootinfo, bi_endcommon));
169ASSYM(NFSDISKLESS_SIZE, sizeof(struct nfs_diskless));
170ASSYM(BI_SIZE, offsetof(struct bootinfo, bi_size));
171ASSYM(BI_SYMTAB, offsetof(struct bootinfo, bi_symtab));
172ASSYM(BI_ESYMTAB, offsetof(struct bootinfo, bi_esymtab));
173ASSYM(BI_KERNEND, offsetof(struct bootinfo, bi_kernend));
174#endif
175
176ASSYM(GD_CURTHREAD, offsetof(struct mdglobaldata, mi.gd_curthread));
177ASSYM(GD_CPUID, offsetof(struct mdglobaldata, mi.gd_cpuid));
178ASSYM(GD_CPUMASK, offsetof(struct mdglobaldata, mi.gd_cpumask));
179ASSYM(GD_CNT, offsetof(struct mdglobaldata, mi.gd_cnt));
180ASSYM(GD_INTR_NESTING_LEVEL, offsetof(struct mdglobaldata, mi.gd_intr_nesting_level));
181ASSYM(GD_REQFLAGS, offsetof(struct mdglobaldata, mi.gd_reqflags));
182
183ASSYM(GD_CURRENTLDT, offsetof(struct mdglobaldata, gd_currentldt));
184
185ASSYM(RQF_IPIQ, RQF_IPIQ);
186ASSYM(RQF_INTPEND, RQF_INTPEND);
187ASSYM(RQF_AST_OWEUPC, RQF_AST_OWEUPC);
188ASSYM(RQF_AST_SIGNAL, RQF_AST_SIGNAL);
189ASSYM(RQF_AST_USER_RESCHED, RQF_AST_USER_RESCHED);
190ASSYM(RQF_AST_LWKT_RESCHED, RQF_AST_LWKT_RESCHED);
191ASSYM(RQF_AST_UPCALL, RQF_AST_UPCALL);
192ASSYM(RQF_AST_MASK, RQF_AST_MASK);
193
194ASSYM(FIRST_SOFTINT, FIRST_SOFTINT);
195ASSYM(MDGLOBALDATA_BASEALLOC_PAGES, MDGLOBALDATA_BASEALLOC_PAGES);
196
197ASSYM(GD_FPENDING, offsetof(struct mdglobaldata, gd_fpending));
198ASSYM(GD_IPENDING, offsetof(struct mdglobaldata, gd_ipending));
199ASSYM(GD_SPENDING, offsetof(struct mdglobaldata, gd_spending));
200ASSYM(GD_COMMON_TSS, offsetof(struct mdglobaldata, gd_common_tss));
201ASSYM(GD_COMMON_TSSD, offsetof(struct mdglobaldata, gd_common_tssd));
202ASSYM(GD_TSS_GDT, offsetof(struct mdglobaldata, gd_tss_gdt));
203ASSYM(GD_LWBUF_FPAGES, offsetof(struct mdglobaldata, gd_lwbuf_fpages));
204ASSYM(GD_NPXTHREAD, offsetof(struct mdglobaldata, gd_npxthread));
205ASSYM(GD_FPU_LOCK, offsetof(struct mdglobaldata, gd_fpu_lock));
206ASSYM(GD_SAVEFPU, offsetof(struct mdglobaldata, gd_savefpu));
207ASSYM(GD_OTHER_CPUS, offsetof(struct mdglobaldata, gd_other_cpus));
208ASSYM(GD_SS_EFLAGS, offsetof(struct mdglobaldata, gd_ss_eflags));
209
210ASSYM(GD_CMAP1, offsetof(struct mdglobaldata, gd_CMAP1));
211ASSYM(GD_CMAP2, offsetof(struct mdglobaldata, gd_CMAP2));
212ASSYM(GD_CMAP3, offsetof(struct mdglobaldata, gd_CMAP3));
213ASSYM(GD_PMAP1, offsetof(struct mdglobaldata, gd_PMAP1));
214ASSYM(GD_CADDR1, offsetof(struct mdglobaldata, gd_CADDR1));
215ASSYM(GD_CADDR2, offsetof(struct mdglobaldata, gd_CADDR2));
216ASSYM(GD_CADDR3, offsetof(struct mdglobaldata, gd_CADDR3));
217ASSYM(GD_PADDR1, offsetof(struct mdglobaldata, gd_PADDR1));
218
219ASSYM(PS_IDLESTACK, offsetof(struct privatespace, idlestack));
220ASSYM(PS_IDLESTACK_PAGE, offsetof(struct privatespace, idlestack) / PAGE_SIZE);
221ASSYM(PS_IDLESTACK_TOP, sizeof(struct privatespace));
222ASSYM(PS_SIZEOF, sizeof(struct privatespace));
223