The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/i386/i386/genassym.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * SPDX-License-Identifier: BSD-3-Clause
    3  *
    4  * Copyright (c) 1982, 1990 The Regents of the University of California.
    5  * All rights reserved.
    6  *
    7  * This code is derived from software contributed to Berkeley by
    8  * William Jolitz.
    9  *
   10  * Redistribution and use in source and binary forms, with or without
   11  * modification, are permitted provided that the following conditions
   12  * are met:
   13  * 1. Redistributions of source code must retain the above copyright
   14  *    notice, this list of conditions and the following disclaimer.
   15  * 2. Redistributions in binary form must reproduce the above copyright
   16  *    notice, this list of conditions and the following disclaimer in the
   17  *    documentation and/or other materials provided with the distribution.
   18  * 3. Neither the name of the University nor the names of its contributors
   19  *    may be used to endorse or promote products derived from this software
   20  *    without specific prior written permission.
   21  *
   22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
   23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
   26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   32  * SUCH DAMAGE.
   33  *
   34  *      from: @(#)genassym.c    5.11 (Berkeley) 5/10/91
   35  */
   36 
   37 #include <sys/cdefs.h>
   38 __FBSDID("$FreeBSD$");
   39 
   40 #include "opt_apic.h"
   41 #include "opt_hwpmc_hooks.h"
   42 #include "opt_kstack_pages.h"
   43 
   44 #include <sys/param.h>
   45 #include <sys/systm.h>
   46 #include <sys/assym.h>
   47 #include <sys/bio.h>
   48 #include <sys/buf.h>
   49 #ifdef  HWPMC_HOOKS
   50 #include <sys/pmckern.h>
   51 #endif
   52 #include <sys/proc.h>
   53 #include <sys/errno.h>
   54 #include <sys/mount.h>
   55 #include <sys/mutex.h>
   56 #include <sys/socket.h>
   57 #include <sys/resourcevar.h>
   58 #include <sys/signalvar.h>
   59 #include <sys/ucontext.h>
   60 #include <machine/bootinfo.h>
   61 #include <machine/tss.h>
   62 #include <sys/vmmeter.h>
   63 #include <vm/vm.h>
   64 #include <vm/vm_param.h>
   65 #include <vm/pmap.h>
   66 #include <vm/vm_map.h>
   67 #include <sys/proc.h>
   68 #include <net/if.h>
   69 #include <netinet/in.h>
   70 #include <nfs/nfsproto.h>
   71 #include <nfsclient/nfs.h>
   72 #include <nfs/nfsdiskless.h>
   73 #ifdef DEV_APIC
   74 #include <x86/apicreg.h>
   75 #endif
   76 #include <machine/cpu.h>
   77 #include <machine/pcb_ext.h>
   78 #include <machine/pcb.h>
   79 #include <machine/sigframe.h>
   80 #include <machine/vm86.h>
   81 #include <machine/proc.h>
   82 
   83 ASSYM(P_VMSPACE, offsetof(struct proc, p_vmspace));
   84 ASSYM(VM_PMAP, offsetof(struct vmspace, vm_pmap));
   85 ASSYM(PM_ACTIVE, offsetof(struct pmap, pm_active));
   86 
   87 ASSYM(TD_FLAGS, offsetof(struct thread, td_flags));
   88 ASSYM(TD_LOCK, offsetof(struct thread, td_lock));
   89 ASSYM(TD_PCB, offsetof(struct thread, td_pcb));
   90 ASSYM(TD_PFLAGS, offsetof(struct thread, td_pflags));
   91 ASSYM(TD_PROC, offsetof(struct thread, td_proc));
   92 ASSYM(TD_MD, offsetof(struct thread, td_md));
   93 
   94 ASSYM(TDP_CALLCHAIN, TDP_CALLCHAIN);
   95 
   96 ASSYM(P_MD, offsetof(struct proc, p_md));
   97 ASSYM(MD_LDT, offsetof(struct mdproc, md_ldt));
   98 
   99 ASSYM(TDF_ASTPENDING, TDF_ASTPENDING);
  100 ASSYM(TDF_NEEDRESCHED, TDF_NEEDRESCHED);
  101 
  102 ASSYM(TD0_KSTACK_PAGES, TD0_KSTACK_PAGES);
  103 ASSYM(PAGE_SIZE, PAGE_SIZE);
  104 ASSYM(PAGE_SHIFT, PAGE_SHIFT);
  105 ASSYM(PAGE_MASK, PAGE_MASK);
  106 ASSYM(PCB_CR0, offsetof(struct pcb, pcb_cr0));
  107 ASSYM(PCB_CR2, offsetof(struct pcb, pcb_cr2));
  108 ASSYM(PCB_CR3, offsetof(struct pcb, pcb_cr3));
  109 ASSYM(PCB_CR4, offsetof(struct pcb, pcb_cr4));
  110 ASSYM(PCB_EDI, offsetof(struct pcb, pcb_edi));
  111 ASSYM(PCB_ESI, offsetof(struct pcb, pcb_esi));
  112 ASSYM(PCB_EBP, offsetof(struct pcb, pcb_ebp));
  113 ASSYM(PCB_ESP, offsetof(struct pcb, pcb_esp));
  114 ASSYM(PCB_EBX, offsetof(struct pcb, pcb_ebx));
  115 ASSYM(PCB_EIP, offsetof(struct pcb, pcb_eip));
  116 ASSYM(TSS_ESP0, offsetof(struct i386tss, tss_esp0));
  117 
  118 ASSYM(PCB_DS, offsetof(struct pcb, pcb_ds));
  119 ASSYM(PCB_ES, offsetof(struct pcb, pcb_es));
  120 ASSYM(PCB_FS, offsetof(struct pcb, pcb_fs));
  121 ASSYM(PCB_GS, offsetof(struct pcb, pcb_gs));
  122 ASSYM(PCB_SS, offsetof(struct pcb, pcb_ss));
  123 ASSYM(PCB_DR0, offsetof(struct pcb, pcb_dr0));
  124 ASSYM(PCB_DR1, offsetof(struct pcb, pcb_dr1));
  125 ASSYM(PCB_DR2, offsetof(struct pcb, pcb_dr2));
  126 ASSYM(PCB_DR3, offsetof(struct pcb, pcb_dr3));
  127 ASSYM(PCB_DR6, offsetof(struct pcb, pcb_dr6));
  128 ASSYM(PCB_DR7, offsetof(struct pcb, pcb_dr7));
  129 ASSYM(PCB_DBREGS, PCB_DBREGS);
  130 ASSYM(PCB_EXT, offsetof(struct pcb, pcb_ext));
  131 
  132 ASSYM(PCB_EXT_TSS, offsetof(struct pcb_ext, ext_tss));
  133 
  134 ASSYM(PCB_FSD, offsetof(struct pcb, pcb_fsd));
  135 ASSYM(PCB_GSD, offsetof(struct pcb, pcb_gsd));
  136 ASSYM(PCB_VM86, offsetof(struct pcb, pcb_vm86));
  137 ASSYM(PCB_FLAGS, offsetof(struct pcb, pcb_flags));
  138 ASSYM(PCB_SAVEFPU, offsetof(struct pcb, pcb_save));
  139 ASSYM(PCB_ONFAULT, offsetof(struct pcb, pcb_onfault));
  140 
  141 ASSYM(PCB_SIZE, sizeof(struct pcb));
  142 ASSYM(PCB_VM86CALL, PCB_VM86CALL);
  143 
  144 ASSYM(PCB_GDT, offsetof(struct pcb, pcb_gdt));
  145 ASSYM(PCB_IDT, offsetof(struct pcb, pcb_idt));
  146 ASSYM(PCB_LDT, offsetof(struct pcb, pcb_ldt));
  147 ASSYM(PCB_TR, offsetof(struct pcb, pcb_tr));
  148 
  149 ASSYM(TF_FS, offsetof(struct trapframe, tf_fs));
  150 ASSYM(TF_ES, offsetof(struct trapframe, tf_es));
  151 ASSYM(TF_DS, offsetof(struct trapframe, tf_ds));
  152 ASSYM(TF_TRAPNO, offsetof(struct trapframe, tf_trapno));
  153 ASSYM(TF_ERR, offsetof(struct trapframe, tf_err));
  154 ASSYM(TF_EIP, offsetof(struct trapframe, tf_eip));
  155 ASSYM(TF_CS, offsetof(struct trapframe, tf_cs));
  156 ASSYM(TF_EFLAGS, offsetof(struct trapframe, tf_eflags));
  157 ASSYM(TF_SZ, sizeof(struct trapframe));
  158 
  159 ASSYM(SIGF_HANDLER, offsetof(struct sigframe, sf_ahu.sf_handler));
  160 #ifdef COMPAT_43
  161 ASSYM(SIGF_SC, offsetof(struct osigframe, sf_siginfo.si_sc));
  162 #endif
  163 ASSYM(SIGF_UC, offsetof(struct sigframe, sf_uc));
  164 #ifdef COMPAT_FREEBSD4
  165 ASSYM(SIGF_UC4, offsetof(struct sigframe4, sf_uc));
  166 #endif
  167 #ifdef COMPAT_43
  168 ASSYM(SC_PS, offsetof(struct osigcontext, sc_ps));
  169 ASSYM(SC_FS, offsetof(struct osigcontext, sc_fs));
  170 ASSYM(SC_GS, offsetof(struct osigcontext, sc_gs));
  171 ASSYM(SC_TRAPNO, offsetof(struct osigcontext, sc_trapno));
  172 #endif
  173 #ifdef COMPAT_FREEBSD4
  174 ASSYM(UC4_EFLAGS, offsetof(struct ucontext4, uc_mcontext.mc_eflags));
  175 ASSYM(UC4_GS, offsetof(struct ucontext4, uc_mcontext.mc_gs));
  176 #endif
  177 ASSYM(UC_EFLAGS, offsetof(ucontext_t, uc_mcontext.mc_eflags));
  178 ASSYM(UC_GS, offsetof(ucontext_t, uc_mcontext.mc_gs));
  179 ASSYM(ENOENT, ENOENT);
  180 ASSYM(EFAULT, EFAULT);
  181 ASSYM(ENAMETOOLONG, ENAMETOOLONG);
  182 ASSYM(MAXCOMLEN, MAXCOMLEN);
  183 ASSYM(MAXPATHLEN, MAXPATHLEN);
  184 ASSYM(BOOTINFO_SIZE, sizeof(struct bootinfo));
  185 ASSYM(BI_VERSION, offsetof(struct bootinfo, bi_version));
  186 ASSYM(BI_KERNELNAME, offsetof(struct bootinfo, bi_kernelname));
  187 ASSYM(BI_NFS_DISKLESS, offsetof(struct bootinfo, bi_nfs_diskless));
  188 ASSYM(BI_ENDCOMMON, offsetof(struct bootinfo, bi_endcommon));
  189 ASSYM(NFSDISKLESS_SIZE, sizeof(struct nfs_diskless));
  190 ASSYM(BI_SIZE, offsetof(struct bootinfo, bi_size));
  191 ASSYM(BI_SYMTAB, offsetof(struct bootinfo, bi_symtab));
  192 ASSYM(BI_ESYMTAB, offsetof(struct bootinfo, bi_esymtab));
  193 ASSYM(BI_KERNEND, offsetof(struct bootinfo, bi_kernend));
  194 ASSYM(PC_SIZEOF, sizeof(struct pcpu));
  195 ASSYM(PC_PRVSPACE, offsetof(struct pcpu, pc_prvspace));
  196 ASSYM(PC_CURTHREAD, offsetof(struct pcpu, pc_curthread));
  197 ASSYM(PC_FPCURTHREAD, offsetof(struct pcpu, pc_fpcurthread));
  198 ASSYM(PC_IDLETHREAD, offsetof(struct pcpu, pc_idlethread));
  199 ASSYM(PC_CURPCB, offsetof(struct pcpu, pc_curpcb));
  200 ASSYM(PC_COMMON_TSSP, offsetof(struct pcpu, pc_common_tssp));
  201 ASSYM(PC_COMMON_TSSD, offsetof(struct pcpu, pc_common_tssd));
  202 ASSYM(PC_TSS_GDT, offsetof(struct pcpu, pc_tss_gdt));
  203 ASSYM(PC_FSGS_GDT, offsetof(struct pcpu, pc_fsgs_gdt));
  204 ASSYM(PC_CURRENTLDT, offsetof(struct pcpu, pc_currentldt));
  205 ASSYM(PC_CPUID, offsetof(struct pcpu, pc_cpuid));
  206 ASSYM(PC_CURPMAP, offsetof(struct pcpu, pc_curpmap));
  207 ASSYM(PC_PRIVATE_TSS, offsetof(struct pcpu, pc_private_tss));
  208 ASSYM(PC_KESP0, offsetof(struct pcpu, pc_kesp0));
  209 ASSYM(PC_TRAMPSTK, offsetof(struct pcpu, pc_trampstk));
  210 ASSYM(PC_COPYOUT_BUF, offsetof(struct pcpu, pc_copyout_buf));
  211 ASSYM(PC_IBPB_SET, offsetof(struct pcpu, pc_ibpb_set));
  212 ASSYM(PC_MDS_TMP, offsetof(struct pcpu, pc_mds_tmp));
  213 ASSYM(PC_MDS_BUF, offsetof(struct pcpu, pc_mds_buf));
  214 ASSYM(PC_MDS_BUF64, offsetof(struct pcpu, pc_mds_buf64));
  215 ASSYM(PMAP_TRM_MIN_ADDRESS, PMAP_TRM_MIN_ADDRESS);
  216 ASSYM(KERNLOAD, KERNLOAD);
  217 ASSYM(KERNBASE, KERNBASE);
  218 
  219 #ifdef DEV_APIC
  220 ASSYM(LA_EOI, LAPIC_EOI * LAPIC_MEM_MUL);
  221 ASSYM(LA_ISR, LAPIC_ISR0 * LAPIC_MEM_MUL);
  222 #endif
  223 
  224 ASSYM(KCSEL, GSEL(GCODE_SEL, SEL_KPL));
  225 ASSYM(KDSEL, GSEL(GDATA_SEL, SEL_KPL));
  226 ASSYM(KPSEL, GSEL(GPRIV_SEL, SEL_KPL));
  227 
  228 ASSYM(BC32SEL, GSEL(GBIOSCODE32_SEL, SEL_KPL));
  229 ASSYM(GPROC0_SEL, GPROC0_SEL);
  230 ASSYM(VM86_FRAMESIZE, sizeof(struct vm86frame));
  231 ASSYM(VM86_STACK_SPACE, VM86_STACK_SPACE);
  232 
  233 ASSYM(TRAMP_COPYOUT_SZ, TRAMP_COPYOUT_SZ);
  234 
  235 #ifdef  HWPMC_HOOKS
  236 ASSYM(PMC_FN_USER_CALLCHAIN, PMC_FN_USER_CALLCHAIN);
  237 #endif

Cache object: 7870694127399c22cbb080ae9977750f


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.