]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - sys/conf/kern.mk
MFC r231982:
[FreeBSD/stable/9.git] / sys / conf / kern.mk
1 # $FreeBSD$
2
3 #
4 # Warning flags for compiling the kernel and components of the kernel:
5 #
6 CWARNFLAGS?=    -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes \
7                 -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual \
8                 -Wundef -Wno-pointer-sign -fformat-extensions \
9                 -Wmissing-include-dirs -fdiagnostics-show-option \
10                 ${CWARNEXTRA}
11 #
12 # The following flags are next up for working on:
13 #       -Wextra
14
15 # Disable a few warnings for clang, since there are several places in the
16 # kernel where fixing them is more trouble than it is worth, or where there is
17 # a false positive.
18 .if ${CC:T:Mclang} == "clang"
19 NO_WCONSTANT_CONVERSION=        -Wno-constant-conversion
20 NO_WARRAY_BOUNDS=               -Wno-array-bounds
21 NO_WSHIFT_COUNT_NEGATIVE=       -Wno-shift-count-negative
22 NO_WSHIFT_COUNT_OVERFLOW=       -Wno-shift-count-overflow
23 NO_WUNUSED_VALUE=               -Wno-unused-value
24 NO_WSELF_ASSIGN=                -Wno-self-assign
25 NO_WFORMAT_SECURITY=            -Wno-format-security
26 # Several other warnings which might be useful in some cases, but not severe
27 # enough to error out the whole kernel build.  Display them anyway, so there is
28 # some incentive to fix them eventually.
29 CWARNEXTRA?=    -Wno-error-tautological-compare -Wno-error-empty-body \
30                 -Wno-error-parentheses-equality
31 .endif
32
33 #
34 # On i386, do not align the stack to 16-byte boundaries.  Otherwise GCC 2.95
35 # and above adds code to the entry and exit point of every function to align the
36 # stack to 16-byte boundaries -- thus wasting approximately 12 bytes of stack
37 # per function call.  While the 16-byte alignment may benefit micro benchmarks,
38 # it is probably an overall loss as it makes the code bigger (less efficient
39 # use of code cache tag lines) and uses more stack (less efficient use of data
40 # cache tag lines).  Explicitly prohibit the use of FPU, SSE and other SIMD
41 # operations inside the kernel itself.  These operations are exclusively
42 # reserved for user applications.
43 #
44 # gcc:
45 # Setting -mno-mmx implies -mno-3dnow
46 # Setting -mno-sse implies -mno-sse2, -mno-sse3 and -mno-ssse3
47 #
48 # clang:
49 # Setting -mno-mmx implies -mno-3dnow, -mno-3dnowa, -mno-sse, -mno-sse2,
50 #                          -mno-sse3, -mno-ssse3, -mno-sse41 and -mno-sse42
51 #
52 .if ${MACHINE_CPUARCH} == "i386"
53 .if ${CC:T:Mclang} != "clang"
54 CFLAGS+=        -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-sse
55 .else
56 CFLAGS+=        -mno-aes -mno-avx
57 .endif
58 CFLAGS+=        -mno-mmx -msoft-float
59 INLINE_LIMIT?=  8000
60 .endif
61
62 .if ${MACHINE_CPUARCH} == "arm"
63 INLINE_LIMIT?=  8000
64 .endif
65
66 #
67 # For IA-64, we use r13 for the kernel globals pointer and we only use
68 # a very small subset of float registers for integer divides.
69 #
70 .if ${MACHINE_CPUARCH} == "ia64"
71 CFLAGS+=        -ffixed-r13 -mfixed-range=f32-f127 -fpic #-mno-sdata
72 INLINE_LIMIT?=  15000
73 .endif
74
75 #
76 # For sparc64 we want the medany code model so modules may be located
77 # anywhere in the 64-bit address space.  We also tell GCC to use floating
78 # point emulation.  This avoids using floating point registers for integer
79 # operations which it has a tendency to do.
80 #
81 .if ${MACHINE_CPUARCH} == "sparc64"
82 CFLAGS+=        -mcmodel=medany -msoft-float
83 INLINE_LIMIT?=  15000
84 .endif
85
86 #
87 # For AMD64, we explicitly prohibit the use of FPU, SSE and other SIMD
88 # operations inside the kernel itself.  These operations are exclusively
89 # reserved for user applications.
90 #
91 # gcc:
92 # Setting -mno-mmx implies -mno-3dnow
93 # Setting -mno-sse implies -mno-sse2, -mno-sse3, -mno-ssse3 and -mfpmath=387
94 #
95 # clang:
96 # Setting -mno-mmx implies -mno-3dnow, -mno-3dnowa, -mno-sse, -mno-sse2,
97 #                          -mno-sse3, -mno-ssse3, -mno-sse41 and -mno-sse42
98 # (-mfpmath= is not supported)
99 #
100 .if ${MACHINE_CPUARCH} == "amd64"
101 .if ${CC:T:Mclang} != "clang"
102 CFLAGS+=        -mno-sse
103 .else
104 CFLAGS+=        -mno-aes -mno-avx
105 .endif
106 CFLAGS+=        -mcmodel=kernel -mno-red-zone -mno-mmx -msoft-float \
107                 -fno-asynchronous-unwind-tables
108 INLINE_LIMIT?=  8000
109 .endif
110
111 #
112 # For PowerPC we tell gcc to use floating point emulation.  This avoids using
113 # floating point registers for integer operations which it has a tendency to do.
114 # Also explicitly disable Altivec instructions inside the kernel.
115 #
116 .if ${MACHINE_CPUARCH} == "powerpc"
117 CFLAGS+=        -msoft-float -mno-altivec
118 INLINE_LIMIT?=  15000
119 .endif
120
121 #
122 # Use dot symbols on powerpc64 to make ddb happy
123 #
124 .if ${MACHINE_ARCH} == "powerpc64"
125 CFLAGS+=        -mcall-aixdesc
126 .endif
127
128 #
129 # For MIPS we also tell gcc to use floating point emulation
130 #
131 .if ${MACHINE_CPUARCH} == "mips"
132 CFLAGS+=        -msoft-float
133 INLINE_LIMIT?=  8000
134 .endif
135
136 #
137 # GCC 3.0 and above like to do certain optimizations based on the
138 # assumption that the program is linked against libc.  Stop this.
139 #
140 CFLAGS+=        -ffreestanding
141
142 #
143 # GCC SSP support
144 #
145 .if ${MK_SSP} != "no" && ${MACHINE_CPUARCH} != "ia64" && \
146     ${MACHINE_CPUARCH} != "arm" && ${MACHINE_CPUARCH} != "mips"
147 CFLAGS+=        -fstack-protector
148 .endif
149
150 #
151 # Enable CTF conversation on request
152 #
153 .if defined(WITH_CTF)
154 .undef NO_CTF
155 .endif