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/conf/kern.mk

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 # $FreeBSD$
    2 
    3 #
    4 # Warning flags for compiling the kernel and components of the kernel.
    5 #
    6 # Note that the newly added -Wcast-qual is responsible for generating 
    7 # most of the remaining warnings.  Warnings introduced with -Wall will
    8 # also pop up, but are easier to fix.
    9 .if ${CC} == "icc"
   10 #CWARNFLAGS=    -w2     # use this if you are terribly bored
   11 CWARNFLAGS=
   12 .else
   13 CWARNFLAGS?=    -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes \
   14                 -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual \
   15                 ${_wundef} ${_Wno_pointer_sign} -fformat-extensions
   16 .if !defined(WITH_GCC3)
   17 _Wno_pointer_sign=-Wno-pointer-sign
   18 .endif
   19 .if !defined(NO_UNDEF)
   20 _wundef=        -Wundef
   21 .endif
   22 .endif
   23 #
   24 # The following flags are next up for working on:
   25 #       -W
   26 
   27 #
   28 # On the i386, do not align the stack to 16-byte boundaries.  Otherwise GCC
   29 # 2.95 adds code to the entry and exit point of every function to align the
   30 # stack to 16-byte boundaries -- thus wasting approximately 12 bytes of stack
   31 # per function call.  While the 16-byte alignment may benefit micro benchmarks, 
   32 # it is probably an overall loss as it makes the code bigger (less efficient
   33 # use of code cache tag lines) and uses more stack (less efficient use of data
   34 # cache tag lines).  Explicitly prohibit the use of SSE and other SIMD
   35 # operations inside the kernel itself.  These operations are exclusively
   36 # reserved for user applications.
   37 #
   38 .if ${MACHINE_ARCH} == "i386" && ${CC} != "icc"
   39 CFLAGS+=        -mno-align-long-strings -mpreferred-stack-boundary=2 \
   40                 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3
   41 INLINE_LIMIT?=  8000
   42 .endif
   43 
   44 .if ${MACHINE_ARCH} == "arm"
   45 INLINE_LIMIT?=  8000
   46 .endif
   47 #
   48 # For IA-64, we use r13 for the kernel globals pointer and we only use
   49 # a very small subset of float registers for integer divides.
   50 #
   51 .if ${MACHINE_ARCH} == "ia64"
   52 CFLAGS+=        -ffixed-r13 -mfixed-range=f32-f127 -fpic #-mno-sdata
   53 INLINE_LIMIT?=  15000
   54 .endif
   55 
   56 #
   57 # For sparc64 we want the medany code model so modules may be located
   58 # anywhere in the 64-bit address space.  We also tell GCC to use floating
   59 # point emulation.  This avoids using floating point registers for integer
   60 # operations which it has a tendency to do.
   61 #
   62 .if ${MACHINE_ARCH} == "sparc64"
   63 CFLAGS+=        -mcmodel=medany -msoft-float
   64 INLINE_LIMIT?=  15000
   65 .endif
   66 
   67 #
   68 # For AMD64, we explicitly prohibit the use of FPU, SSE and other SIMD
   69 # operations inside the kernel itself.  These operations are exclusively
   70 # reserved for user applications.
   71 #
   72 .if ${MACHINE_ARCH} == "amd64"
   73 CFLAGS+=        -mcmodel=kernel -mno-red-zone \
   74                 -mfpmath=387 -mno-sse -mno-sse2 -mno-sse3 -mno-mmx -mno-3dnow \
   75                 -msoft-float -fno-asynchronous-unwind-tables
   76 INLINE_LIMIT?=  8000
   77 .endif
   78 
   79 #
   80 # For PowerPC we tell gcc to use floating point emulation.  This avoids using
   81 # floating point registers for integer operations which it has a tendency to do.
   82 # Also explicitly disable Altivec instructions inside the kernel.
   83 #
   84 .if ${MACHINE_ARCH} == "powerpc"
   85 CFLAGS+=        -msoft-float -mno-altivec
   86 INLINE_LIMIT?=  15000
   87 .endif
   88 
   89 #
   90 # For MIPS we also tell gcc to use floating point emulation and 
   91 # disable MIPS DSP ASE Instruction set.
   92 #
   93 .if ${MACHINE_ARCH} == "mips"
   94 CFLAGS+=        -msoft-float -mno-dsp
   95 INLINE_LIMIT?=  8000
   96 .endif
   97 
   98 #
   99 # GCC 3.0 and above like to do certain optimizations based on the
  100 # assumption that the program is linked against libc.  Stop this.
  101 #
  102 .if ${CC} == "icc"
  103 CFLAGS+=        -nolib_inline
  104 .else
  105 CFLAGS+=        -ffreestanding
  106 .endif
  107 
  108 .if ${CC} == "icc"
  109 CFLAGS+=        -restrict
  110 .endif
  111 
  112 #
  113 # GCC SSP support.
  114 #
  115 .if ${MK_SSP} != "no" && ${CC} != "icc" && ${MACHINE_ARCH} != "ia64" && \
  116         ${MACHINE_ARCH} != "arm" && ${MACHINE_ARCH} != "mips"
  117 CFLAGS+=        -fstack-protector
  118 .endif

Cache object: 76071218bb153c2be002f343eb1950df


[ 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.