Current Path : /usr/src/sys/ia64/ia64/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/src/sys/ia64/ia64/genassym.c |
/*- * Copyright (c) 1982, 1990 The Regents of the University of California. * All rights reserved. * * This code is derived from software contributed to Berkeley by * William Jolitz. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * $FreeBSD: release/9.1.0/sys/ia64/ia64/genassym.c 221271 2011-04-30 20:49:00Z marcel $ */ #include "opt_compat.h" #include "opt_kstack_pages.h" #include <sys/param.h> #include <sys/systm.h> #include <sys/assym.h> #include <sys/proc.h> #include <sys/bio.h> #include <sys/buf.h> #include <sys/errno.h> #include <sys/proc.h> #include <sys/mount.h> #include <sys/socket.h> #include <sys/resource.h> #include <sys/resourcevar.h> #include <sys/ucontext.h> #include <machine/frame.h> #include <machine/elf.h> #include <machine/pal.h> #include <machine/pcb.h> #include <sys/vmmeter.h> #include <vm/vm.h> #include <vm/vm_param.h> #include <vm/pmap.h> #include <vm/vm_map.h> #include <net/if.h> #include <netinet/in.h> #ifdef COMPAT_FREEBSD32 ASSYM(COMPAT_FREEBSD32, COMPAT_FREEBSD32); #endif ASSYM(DT_NULL, DT_NULL); ASSYM(DT_RELA, DT_RELA); ASSYM(DT_RELAENT, DT_RELAENT); ASSYM(DT_RELASZ, DT_RELASZ); ASSYM(DT_SYMTAB, DT_SYMTAB); ASSYM(DT_SYMENT, DT_SYMENT); ASSYM(EFAULT, EFAULT); ASSYM(ENAMETOOLONG, ENAMETOOLONG); ASSYM(ERESTART, ERESTART); ASSYM(FRAME_SYSCALL, FRAME_SYSCALL); ASSYM(IA64_PBVM_BASE, IA64_PBVM_BASE); ASSYM(IA64_PBVM_PAGE_SHIFT, IA64_PBVM_PAGE_SHIFT); ASSYM(IA64_PBVM_PGTBL, IA64_PBVM_PGTBL); ASSYM(IA64_PBVM_RR, IA64_PBVM_RR); ASSYM(IA64_VM_MINKERN_REGION, IA64_VM_MINKERN_REGION); ASSYM(KSTACK_PAGES, KSTACK_PAGES); ASSYM(MC_PRESERVED, offsetof(mcontext_t, mc_preserved)); ASSYM(MC_PRESERVED_FP, offsetof(mcontext_t, mc_preserved_fp)); ASSYM(MC_SPECIAL, offsetof(mcontext_t, mc_special)); ASSYM(MC_SPECIAL_BSPSTORE, offsetof(mcontext_t, mc_special.bspstore)); ASSYM(MC_SPECIAL_RNAT, offsetof(mcontext_t, mc_special.rnat)); ASSYM(PAGE_SHIFT, PAGE_SHIFT); ASSYM(PAGE_SIZE, PAGE_SIZE); ASSYM(PC_CURRENT_PMAP, offsetof(struct pcpu, pc_md.current_pmap)); ASSYM(PC_CURTHREAD, offsetof(struct pcpu, pc_curthread)); ASSYM(PC_IDLETHREAD, offsetof(struct pcpu, pc_idlethread)); ASSYM(PCB_CURRENT_PMAP, offsetof(struct pcb, pcb_current_pmap)); ASSYM(PCB_ONFAULT, offsetof(struct pcb, pcb_onfault)); ASSYM(PCB_SPECIAL_RP, offsetof(struct pcb, pcb_special.rp)); ASSYM(R_IA_64_DIR64LSB, R_IA_64_DIR64LSB); ASSYM(R_IA_64_FPTR64LSB, R_IA_64_FPTR64LSB); ASSYM(R_IA_64_NONE, R_IA_64_NONE); ASSYM(R_IA_64_REL64LSB, R_IA_64_REL64LSB); ASSYM(SIZEOF_PCB, sizeof(struct pcb)); ASSYM(SIZEOF_SPECIAL, sizeof(struct _special)); ASSYM(SIZEOF_TRAPFRAME, sizeof(struct trapframe)); ASSYM(TD_FLAGS, offsetof(struct thread, td_flags)); ASSYM(TD_KSTACK, offsetof(struct thread, td_kstack)); ASSYM(TD_PCB, offsetof(struct thread, td_pcb)); ASSYM(TDF_ASTPENDING, TDF_ASTPENDING); ASSYM(TDF_NEEDRESCHED, TDF_NEEDRESCHED); ASSYM(UC_MCONTEXT, offsetof(ucontext_t, uc_mcontext)); ASSYM(VM_MAXUSER_ADDRESS, VM_MAXUSER_ADDRESS);