003d5d66b1
ordinary functions, essentially by backing out half of rev.1.115 of amd64/exception.S. The handlers must be between certain labels for the purposes of profiling, and this was broken by scattering them in separately compiled .S files, especially for ordinary functions that ended up between the labels. Merge the files by #including them as before, except with different pathnames and better comments and organization. Changes to the scattered files are minimal -- just move the labels to the file that does the #includes. This also partly fixes profiling of IPIs -- all IPI handlers are now correctly classified as interrupt handlers, but many are still missing mcount calls.
152 lines
5.8 KiB
Plaintext
152 lines
5.8 KiB
Plaintext
# This file tells config what files go into building a kernel,
|
|
# files marked standard are always included.
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# The long compile-with and dependency lines are required because of
|
|
# limitations in config: backslash-newline doesn't work in strings, and
|
|
# dependency lines other than the first are silently ignored.
|
|
#
|
|
|
|
ia32_genassym.o standard \
|
|
dependency "$S/compat/ia32/ia32_genassym.c" \
|
|
compile-with "${CC} ${CFLAGS:N-fno-common} -c ${.IMPSRC}" \
|
|
no-obj no-implicit-rule \
|
|
clean "ia32_genassym.o"
|
|
#
|
|
ia32_assym.h standard \
|
|
dependency "$S/kern/genassym.sh ia32_genassym.o" \
|
|
compile-with "env NM=${NM} sh $S/kern/genassym.sh ia32_genassym.o > ${.TARGET}" \
|
|
no-obj no-implicit-rule before-depend \
|
|
clean "ia32_assym.h"
|
|
#
|
|
font.h optional sc_dflt_font \
|
|
compile-with "uudecode < /usr/share/syscons/fonts/${SC_DFLT_FONT}-8x16.fnt && file2c 'static u_char dflt_font_16[16*256] = {' '};' < ${SC_DFLT_FONT}-8x16 > font.h && uudecode < /usr/share/syscons/fonts/${SC_DFLT_FONT}-8x14.fnt && file2c 'static u_char dflt_font_14[14*256] = {' '};' < ${SC_DFLT_FONT}-8x14 >> font.h && uudecode < /usr/share/syscons/fonts/${SC_DFLT_FONT}-8x8.fnt && file2c 'static u_char dflt_font_8[8*256] = {' '};' < ${SC_DFLT_FONT}-8x8 >> font.h" \
|
|
no-obj no-implicit-rule before-depend \
|
|
clean "font.h ${SC_DFLT_FONT}-8x14 ${SC_DFLT_FONT}-8x16 ${SC_DFLT_FONT}-8x8"
|
|
#
|
|
atkbdmap.h optional atkbd_dflt_keymap \
|
|
compile-with "/usr/sbin/kbdcontrol -L ${ATKBD_DFLT_KEYMAP} | sed -e 's/^static keymap_t.* = /static keymap_t key_map = /' -e 's/^static accentmap_t.* = /static accentmap_t accent_map = /' > atkbdmap.h" \
|
|
no-obj no-implicit-rule before-depend \
|
|
clean "atkbdmap.h"
|
|
#
|
|
ukbdmap.h optional ukbd_dflt_keymap \
|
|
compile-with "/usr/sbin/kbdcontrol -L ${UKBD_DFLT_KEYMAP} | sed -e 's/^static keymap_t.* = /static keymap_t key_map = /' -e 's/^static accentmap_t.* = /static accentmap_t accent_map = /' > ukbdmap.h" \
|
|
no-obj no-implicit-rule before-depend \
|
|
clean "ukbdmap.h"
|
|
#
|
|
amd64/acpica/OsdEnvironment.c optional acpi
|
|
amd64/acpica/acpi_machdep.c optional acpi
|
|
amd64/acpica/acpi_wakeup.c optional acpi
|
|
amd64/acpica/madt.c optional acpi
|
|
amd64/amd64/amd64-gdbstub.c optional ddb
|
|
amd64/amd64/amd64_mem.c standard
|
|
#amd64/amd64/apic_vector.S standard
|
|
amd64/amd64/atomic.c standard
|
|
amd64/amd64/autoconf.c standard
|
|
amd64/amd64/busdma_machdep.c standard
|
|
amd64/amd64/cpu_switch.S standard
|
|
amd64/amd64/critical.c standard
|
|
amd64/amd64/db_disasm.c optional ddb
|
|
amd64/amd64/db_interface.c optional ddb
|
|
amd64/amd64/db_trace.c optional ddb
|
|
amd64/amd64/dump_machdep.c standard
|
|
amd64/amd64/elf_machdep.c standard
|
|
amd64/amd64/exception.S standard
|
|
amd64/amd64/fpu.c standard
|
|
amd64/amd64/identcpu.c standard
|
|
amd64/amd64/in_cksum.c optional inet
|
|
amd64/amd64/initcpu.c standard
|
|
amd64/amd64/intr_machdep.c standard
|
|
amd64/amd64/io_apic.c standard
|
|
amd64/amd64/legacy.c standard
|
|
amd64/amd64/local_apic.c standard
|
|
amd64/amd64/locore.S standard no-obj
|
|
amd64/amd64/machdep.c standard
|
|
amd64/amd64/mem.c standard
|
|
amd64/amd64/mp_machdep.c optional smp
|
|
amd64/amd64/mpboot.S optional smp
|
|
amd64/amd64/mptable.c optional mptable
|
|
amd64/amd64/mptable_pci.c optional mptable pci
|
|
amd64/amd64/nexus.c standard
|
|
amd64/amd64/pmap.c standard
|
|
amd64/amd64/prof_machdep.c optional profiling-routine
|
|
amd64/amd64/sigtramp.S standard
|
|
amd64/amd64/support.S standard
|
|
amd64/amd64/sys_machdep.c standard
|
|
amd64/amd64/trap.c standard
|
|
amd64/amd64/tsc.c standard
|
|
amd64/amd64/uio_machdep.c standard
|
|
amd64/amd64/uma_machdep.c standard
|
|
amd64/amd64/vm_machdep.c standard
|
|
amd64/isa/atpic.c optional atpic isa
|
|
#amd64/isa/atpic_vector.S optional atpic isa
|
|
amd64/isa/clock.c standard
|
|
amd64/isa/elcr.c standard
|
|
amd64/isa/isa.c standard
|
|
amd64/isa/isa_dma.c standard
|
|
amd64/isa/nmi.c standard
|
|
amd64/pci/pci_bus.c optional pci
|
|
amd64/pci/pci_cfgreg.c optional pci
|
|
crypto/blowfish/bf_enc.c optional crypto
|
|
crypto/blowfish/bf_enc.c optional ipsec ipsec_esp
|
|
crypto/des/des_ecb.c optional netsmbcrypto
|
|
crypto/des/des_enc.c optional crypto
|
|
crypto/des/des_enc.c optional ipsec ipsec_esp
|
|
crypto/des/des_enc.c optional netsmbcrypto
|
|
crypto/des/des_setkey.c optional netsmbcrypto
|
|
dev/fb/fb.c optional fb
|
|
dev/fb/fb.c optional vga
|
|
dev/fb/splash.c optional splash
|
|
dev/fb/vga.c optional vga
|
|
dev/fdc/fdc.c optional fdc
|
|
dev/kbd/atkbd.c optional atkbd
|
|
dev/kbd/atkbdc.c optional atkbdc
|
|
dev/kbd/kbd.c optional atkbd
|
|
dev/kbd/kbd.c optional kbd
|
|
dev/kbd/kbd.c optional sc
|
|
dev/kbd/kbd.c optional ukbd
|
|
dev/ppc/ppc.c optional ppc
|
|
dev/sio/sio.c optional sio
|
|
dev/sio/sio_isa.c optional sio isa
|
|
dev/syscons/apm/apm_saver.c optional apm_saver apm
|
|
dev/syscons/schistory.c optional sc
|
|
dev/syscons/scmouse.c optional sc
|
|
dev/syscons/scterm-dumb.c optional sc
|
|
dev/syscons/scterm-sc.c optional sc
|
|
dev/syscons/scterm.c optional sc
|
|
dev/syscons/scvgarndr.c optional sc vga
|
|
dev/syscons/scvidctl.c optional sc
|
|
dev/syscons/scvtb.c optional sc
|
|
dev/syscons/syscons.c optional sc
|
|
dev/syscons/sysmouse.c optional sc
|
|
dev/uart/uart_cpu_amd64.c optional uart
|
|
geom/geom_bsd.c standard
|
|
geom/geom_bsd_enc.c standard
|
|
geom/geom_mbr.c standard
|
|
geom/geom_mbr_enc.c standard
|
|
isa/atkbd_isa.c optional atkbd
|
|
isa/atkbdc_isa.c optional atkbdc
|
|
isa/psm.c optional psm
|
|
isa/syscons_isa.c optional sc
|
|
isa/vga_isa.c optional vga
|
|
kern/link_elf_obj.c standard
|
|
pci/agp_ali.c optional agp
|
|
pci/agp_amd.c optional agp
|
|
pci/agp_i810.c optional agp
|
|
pci/agp_intel.c optional agp
|
|
pci/agp_sis.c optional agp
|
|
pci/agp_via.c optional agp
|
|
#
|
|
# IA32 binary support
|
|
#
|
|
#amd64/ia32/ia32_exception.S optional ia32
|
|
amd64/ia32/ia32_signal.c optional ia32
|
|
amd64/ia32/ia32_sigtramp.S optional ia32
|
|
amd64/ia32/ia32_syscall.c optional ia32
|
|
compat/freebsd32/freebsd32_misc.c optional ia32
|
|
compat/freebsd32/freebsd32_syscalls.c optional ia32
|
|
compat/freebsd32/freebsd32_sysent.c optional ia32
|
|
compat/ia32/ia32_sysvec.c optional ia32
|
|
kern/imgact_elf32.c optional ia32
|