f263522a45
- Implement sampling modes and logging support in hwpmc(4). - Separate MI and MD parts of hwpmc(4) and allow sharing of PMC implementations across different architectures. Add support for P4 (EMT64) style PMCs to the amd64 code. - New pmcstat(8) options: -E (exit time counts) -W (counts every context switch), -R (print log file). - pmc(3) API changes, improve our ability to keep ABI compatibility in the future. Add more 'alias' names for commonly used events. - bug fixes & documentation.
44 lines
695 B
Makefile
44 lines
695 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
.PATH: ${.CURDIR}/../../dev/hwpmc
|
|
|
|
KMOD= hwpmc
|
|
|
|
SRCS= hwpmc_mod.c hwpmc_logging.c vnode_if.h
|
|
|
|
WARNS?= 2
|
|
|
|
.if ${MACHINE_ARCH} == "alpha"
|
|
SRCS+= hwpmc_alpha.c
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "amd64"
|
|
SRCS+= hwpmc_amd.c hwpmc_piv.c hwpmc_x86.c
|
|
SRCS+= device_if.h bus_if.h
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "arm"
|
|
SRCS+= hwpmc_arm.c
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
SRCS+= hwpmc_amd.c hwpmc_piv.c hwpmc_ppro.c hwpmc_pentium.c hwpmc_x86.c
|
|
SRCS+= device_if.h bus_if.h
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "ia64"
|
|
SRCS+= hwpmc_ia64.c
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "powerpc"
|
|
SRCS+= hwpmc_powerpc.c
|
|
.endif
|
|
|
|
.if ${MACHINE_ARCH} == "sparc64"
|
|
SRCS+= hwpmc_sparc64.c
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|