aboutsummaryrefslogtreecommitdiff
path: root/sys/conf/kern.pre.mk
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2013-11-06 05:26:15 +0000
committerWarner Losh <imp@FreeBSD.org>2013-11-06 05:26:15 +0000
commitbf100f266b6c813ad02d3c9850a96e8bb8c8e6f2 (patch)
treedab164653fb69212d69317f7e9b625b8cfc0c534 /sys/conf/kern.pre.mk
parent74832336954449e9655ef460c3eed485f6a04794 (diff)
downloadsrc-bf100f266b6c813ad02d3c9850a96e8bb8c8e6f2.tar.gz
src-bf100f266b6c813ad02d3c9850a96e8bb8c8e6f2.zip
Remove the gross hack for the Octeon Simple Executive to the least
intrusive place for it to be: the octeon std file. Fix a comment while I'm here. Allow for future architectural specific flags. Reviewed by: jmallet@
Notes
Notes: svn path=/head/; revision=257735
Diffstat (limited to 'sys/conf/kern.pre.mk')
-rw-r--r--sys/conf/kern.pre.mk19
1 files changed, 10 insertions, 9 deletions
diff --git a/sys/conf/kern.pre.mk b/sys/conf/kern.pre.mk
index b01d5061aec5..394d0cc71a8f 100644
--- a/sys/conf/kern.pre.mk
+++ b/sys/conf/kern.pre.mk
@@ -80,16 +80,17 @@ INCLUDES+= -I$S/dev/cxgb -I$S/dev/cxgbe
CFLAGS= ${COPTFLAGS} ${C_DIALECT} ${DEBUG} ${CWARNFLAGS}
CFLAGS+= ${INCLUDES} -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h
+CFLAGS_PARAM_INLINE_UNIT_GROWTH?=100
+CFLAGS_PARAM_LARGE_FUNCTION_GROWTH?=1000
+.if ${MACHINE_CPUARCH} == "mips"
+CFLAGS_ARCH_PARAMS?=--param max-inline-insns-single=1000
+.endif
.if ${COMPILER_TYPE} != "clang"
CFLAGS+= -fno-common -finline-limit=${INLINE_LIMIT}
-.if ${MACHINE_CPUARCH} != "mips"
-CFLAGS+= --param inline-unit-growth=100
-CFLAGS+= --param large-function-growth=1000
-.else
-# XXX Actually a gross hack just for Octeon because of the Simple Executive.
-CFLAGS+= --param inline-unit-growth=10000
-CFLAGS+= --param large-function-growth=100000
-CFLAGS+= --param max-inline-insns-single=10000
+CFLAGS+= --param inline-unit-growth=${CFLAGS_PARAM_INLINE_UNIT_GROWTH}
+CFLAGS+= --param large-function-growth=${CFLAGS_PARAM_LARGE_FUNCTION_GROWTH}
+.if defined(CFLAGS_ARCH_PARAMS)
+CFLAGS+=${CFLAGS_ARCH_PARAMS}
.endif
.endif
WERROR?= -Werror
@@ -193,7 +194,7 @@ MKMODULESENV+= WITHOUT_MODULES="${WITHOUT_MODULES}"
MKMODULESENV+= DEBUG_FLAGS="${DEBUG}"
.endif
-# Are various things configured?
+# Detect knerel config options that force stack frames to be turned on.
DDB_ENABLED!= grep DDB opt_ddb.h || true ; echo
DTR_ENABLED!= grep KDTRACE_FRAME opt_kdtrace.h || true ; echo
HWPMC_ENABLED!= grep HWPMC opt_hwpmc_hooks.h || true ; echo