1# $FreeBSD$ 2 3# Set default CPU compile flags and baseline CPUTYPE for each arch. The 4# compile flags must support the minimum CPU type for each architecture but 5# may tune support for more advanced processors. 6 7.if !defined(CPUTYPE) || empty(CPUTYPE) 8_CPUCFLAGS = 9. if ${MACHINE_CPUARCH} == "aarch64" 10MACHINE_CPU = arm64 11. elif ${MACHINE_CPUARCH} == "amd64" 12MACHINE_CPU = amd64 sse2 sse mmx 13. elif ${MACHINE_CPUARCH} == "arm" 14MACHINE_CPU = arm 15. elif ${MACHINE_CPUARCH} == "i386" 16MACHINE_CPU = i486 17. elif ${MACHINE_CPUARCH} == "mips" 18MACHINE_CPU = mips 19. elif ${MACHINE_CPUARCH} == "powerpc" 20MACHINE_CPU = aim 21. elif ${MACHINE_CPUARCH} == "riscv" 22MACHINE_CPU = riscv 23. elif ${MACHINE_CPUARCH} == "sparc64" 24MACHINE_CPU = ultrasparc 25. endif 26.else 27 28# Handle aliases (not documented in make.conf to avoid user confusion 29# between e.g. i586 and pentium) 30 31. if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386" 32. if ${CPUTYPE} == "barcelona" 33CPUTYPE = amdfam10 34. elif ${CPUTYPE} == "core-avx2" 35CPUTYPE = haswell 36. elif ${CPUTYPE} == "core-avx-i" 37CPUTYPE = ivybridge 38. elif ${CPUTYPE} == "corei7-avx" 39CPUTYPE = sandybridge 40. elif ${CPUTYPE} == "corei7" 41CPUTYPE = nehalem 42. elif ${CPUTYPE} == "slm" 43CPUTYPE = silvermont 44. elif ${CPUTYPE} == "atom" 45CPUTYPE = bonnell 46. elif ${CPUTYPE} == "core" 47CPUTYPE = prescott 48. endif 49. if ${MACHINE_CPUARCH} == "amd64" 50. if ${CPUTYPE} == "prescott" 51CPUTYPE = nocona 52. endif 53. else 54. if ${CPUTYPE} == "k7" 55CPUTYPE = athlon 56. elif ${CPUTYPE} == "p4" 57CPUTYPE = pentium4 58. elif ${CPUTYPE} == "p4m" 59CPUTYPE = pentium4m 60. elif ${CPUTYPE} == "p3" 61CPUTYPE = pentium3 62. elif ${CPUTYPE} == "p3m" 63CPUTYPE = pentium3m 64. elif ${CPUTYPE} == "p-m" 65CPUTYPE = pentium-m 66. elif ${CPUTYPE} == "p2" 67CPUTYPE = pentium2 68. elif ${CPUTYPE} == "i686" 69CPUTYPE = pentiumpro 70. elif ${CPUTYPE} == "i586/mmx" 71CPUTYPE = pentium-mmx 72. elif ${CPUTYPE} == "i586" 73CPUTYPE = pentium 74. endif 75. endif 76. elif ${MACHINE_ARCH} == "sparc64" 77. if ${CPUTYPE} == "us" 78CPUTYPE = ultrasparc 79. elif ${CPUTYPE} == "us3" 80CPUTYPE = ultrasparc3 81. endif 82. endif 83 84############################################################################### 85# Logic to set up correct gcc optimization flag. This must be included 86# after /etc/make.conf so it can react to the local value of CPUTYPE 87# defined therein. Consult: 88# http://gcc.gnu.org/onlinedocs/gcc/ARM-Options.html 89# http://gcc.gnu.org/onlinedocs/gcc/RS-6000-and-PowerPC-Options.html 90# http://gcc.gnu.org/onlinedocs/gcc/MIPS-Options.html 91# http://gcc.gnu.org/onlinedocs/gcc/SPARC-Options.html 92# http://gcc.gnu.org/onlinedocs/gcc/i386-and-x86_002d64-Options.html 93 94. if ${MACHINE_CPUARCH} == "i386" 95. if ${CPUTYPE} == "crusoe" 96_CPUCFLAGS = -march=i686 -falign-functions=0 -falign-jumps=0 -falign-loops=0 97. elif ${CPUTYPE} == "k5" 98_CPUCFLAGS = -march=pentium 99. elif ${CPUTYPE} == "c7" 100_CPUCFLAGS = -march=c3-2 101. else 102_CPUCFLAGS = -march=${CPUTYPE} 103. endif 104. elif ${MACHINE_CPUARCH} == "amd64" 105_CPUCFLAGS = -march=${CPUTYPE} 106. elif ${MACHINE_CPUARCH} == "arm" 107. if ${CPUTYPE} == "xscale" 108#XXX: gcc doesn't seem to like -mcpu=xscale, and dies while rebuilding itself 109#_CPUCFLAGS = -mcpu=xscale 110_CPUCFLAGS = -march=armv5te -D__XSCALE__ 111. elif ${CPUTYPE:M*soft*} != "" 112_CPUCFLAGS = -mfloat-abi=softfp 113. elif ${CPUTYPE} == "armv6" 114_CPUCFLAGS = -march=${CPUTYPE} 115. elif ${CPUTYPE} == "cortexa" 116_CPUCFLAGS = -march=armv7 -mfpu=vfp 117. elif ${CPUTYPE:Marmv[4567]*} != "" 118# Handle all the armvX types that FreeBSD runs: 119# armv4, armv4t, armv5, armv5te, armv6, armv6t2, armv7, armv7-a, armv7ve 120# they require -march=. All the others require -mcpu=. 121_CPUCFLAGS = -march=${CPUTYPE} 122. else 123# Common values for FreeBSD 124# arm: (any arm v4 or v5 processor you are targeting) 125# arm920t, arm926ej-s, marvell-pj4, fa526, fa626, 126# fa606te, fa626te, fa726te 127# armv6: (any arm v7 or v8 processor you are targeting and the arm1176jzf-s) 128# arm1176jzf-s, generic-armv7-a, cortex-a5, cortex-a7, cortex-a8, 129# cortex-a9, cortex-a12, cortex-a15, cortex-a17, cortex-a53, cortex-a57, 130# cortex-a72, exynos-m1 131_CPUCFLAGS = -mcpu=${CPUTYPE} 132. endif 133. elif ${MACHINE_ARCH} == "powerpc" 134. if ${CPUTYPE} == "e500" 135_CPUCFLAGS = -Wa,-me500 -msoft-float 136. else 137_CPUCFLAGS = -mcpu=${CPUTYPE} -mno-powerpc64 138. endif 139. elif ${MACHINE_ARCH} == "powerpcspe" 140_CPUCFLAGS = -Wa,-me500 -mspe=yes -mabi=spe -mfloat-gprs=double 141. elif ${MACHINE_ARCH} == "powerpc64" 142_CPUCFLAGS = -mcpu=${CPUTYPE} 143. elif ${MACHINE_CPUARCH} == "mips" 144# mips[1234], mips32, mips64, and all later releases need to have mips 145# preserved (releases later than r2 require external toolchain) 146. if ${CPUTYPE:Mmips32*} != "" || ${CPUTYPE:Mmips64*} != "" || \ 147 ${CPUTYPE:Mmips[1234]} != "" 148_CPUCFLAGS = -march=${CPUTYPE} 149. else 150# Default -march to the CPUTYPE passed in, with mips stripped off so we 151# accept either mips4kc or 4kc, mostly for historical reasons 152# Typical values for cores: 153# 4kc, 24kc, 34kc, 74kc, 1004kc, octeon, octeon+, octeon2, octeon3, 154# sb1, xlp, xlr 155_CPUCFLAGS = -march=${CPUTYPE:S/^mips//} 156. endif 157. elif ${MACHINE_ARCH} == "sparc64" 158. if ${CPUTYPE} == "v9" 159_CPUCFLAGS = -mcpu=v9 160. elif ${CPUTYPE} == "ultrasparc" 161_CPUCFLAGS = -mcpu=ultrasparc 162. elif ${CPUTYPE} == "ultrasparc3" 163_CPUCFLAGS = -mcpu=ultrasparc3 164. endif 165. elif ${MACHINE_CPUARCH} == "aarch64" 166_CPUCFLAGS = -mcpu=${CPUTYPE} 167. endif 168 169# Set up the list of CPU features based on the CPU type. This is an 170# unordered list to make it easy for client makefiles to test for the 171# presence of a CPU feature. 172 173########## i386 174. if ${MACHINE_CPUARCH} == "i386" 175. if ${CPUTYPE} == "znver1" 176MACHINE_CPU = avx2 avx sse42 sse41 ssse3 sse4a sse3 sse2 sse mmx k6 k5 i586 177. elif ${CPUTYPE} == "bdver4" 178MACHINE_CPU = xop avx2 avx sse42 sse41 ssse3 sse4a sse3 sse2 sse mmx k6 k5 i586 179. elif ${CPUTYPE} == "bdver3" || ${CPUTYPE} == "bdver2" || \ 180 ${CPUTYPE} == "bdver1" 181MACHINE_CPU = xop avx sse42 sse41 ssse3 sse4a sse3 sse2 sse mmx k6 k5 i586 182. elif ${CPUTYPE} == "btver2" 183MACHINE_CPU = avx sse42 sse41 ssse3 sse4a sse3 sse2 sse mmx k6 k5 i586 184. elif ${CPUTYPE} == "btver1" 185MACHINE_CPU = ssse3 sse4a sse3 sse2 sse mmx k6 k5 i586 186. elif ${CPUTYPE} == "amdfam10" 187MACHINE_CPU = athlon-xp athlon k7 3dnow sse4a sse3 sse2 sse mmx k6 k5 i586 188. elif ${CPUTYPE} == "opteron-sse3" || ${CPUTYPE} == "athlon64-sse3" 189MACHINE_CPU = athlon-xp athlon k7 3dnow sse3 sse2 sse mmx k6 k5 i586 190. elif ${CPUTYPE} == "opteron" || ${CPUTYPE} == "athlon64" || \ 191 ${CPUTYPE} == "athlon-fx" 192MACHINE_CPU = athlon-xp athlon k7 3dnow sse2 sse mmx k6 k5 i586 193. elif ${CPUTYPE} == "athlon-mp" || ${CPUTYPE} == "athlon-xp" || \ 194 ${CPUTYPE} == "athlon-4" 195MACHINE_CPU = athlon-xp athlon k7 3dnow sse mmx k6 k5 i586 196. elif ${CPUTYPE} == "athlon" || ${CPUTYPE} == "athlon-tbird" 197MACHINE_CPU = athlon k7 3dnow mmx k6 k5 i586 198. elif ${CPUTYPE} == "k6-3" || ${CPUTYPE} == "k6-2" || ${CPUTYPE} == "geode" 199MACHINE_CPU = 3dnow mmx k6 k5 i586 200. elif ${CPUTYPE} == "k6" 201MACHINE_CPU = mmx k6 k5 i586 202. elif ${CPUTYPE} == "k5" 203MACHINE_CPU = k5 i586 204. elif ${CPUTYPE} == "skylake" || ${CPUTYPE} == "knl" 205MACHINE_CPU = avx512 avx2 avx sse42 sse41 ssse3 sse3 sse2 sse i686 mmx i586 206. elif ${CPUTYPE} == "broadwell" || ${CPUTYPE} == "haswell" 207MACHINE_CPU = avx2 avx sse42 sse41 ssse3 sse3 sse2 sse i686 mmx i586 208. elif ${CPUTYPE} == "ivybridge" || ${CPUTYPE} == "sandybridge" 209MACHINE_CPU = avx sse42 sse41 ssse3 sse3 sse2 sse i686 mmx i586 210. elif ${CPUTYPE} == "westmere" || ${CPUTYPE} == "nehalem" || \ 211 ${CPUTYPE} == "silvermont" 212MACHINE_CPU = sse42 sse41 ssse3 sse3 sse2 sse i686 mmx i586 213. elif ${CPUTYPE} == "penryn" 214MACHINE_CPU = sse41 ssse3 sse3 sse2 sse i686 mmx i586 215. elif ${CPUTYPE} == "core2" || ${CPUTYPE} == "bonnell" 216MACHINE_CPU = ssse3 sse3 sse2 sse i686 mmx i586 217. elif ${CPUTYPE} == "yonah" || ${CPUTYPE} == "prescott" 218MACHINE_CPU = sse3 sse2 sse i686 mmx i586 219. elif ${CPUTYPE} == "pentium4" || ${CPUTYPE} == "pentium4m" || \ 220 ${CPUTYPE} == "pentium-m" 221MACHINE_CPU = sse2 sse i686 mmx i586 222. elif ${CPUTYPE} == "pentium3" || ${CPUTYPE} == "pentium3m" 223MACHINE_CPU = sse i686 mmx i586 224. elif ${CPUTYPE} == "pentium2" 225MACHINE_CPU = i686 mmx i586 226. elif ${CPUTYPE} == "pentiumpro" 227MACHINE_CPU = i686 i586 228. elif ${CPUTYPE} == "pentium-mmx" 229MACHINE_CPU = mmx i586 230. elif ${CPUTYPE} == "pentium" 231MACHINE_CPU = i586 232. elif ${CPUTYPE} == "c7" 233MACHINE_CPU = sse3 sse2 sse i686 mmx i586 234. elif ${CPUTYPE} == "c3-2" 235MACHINE_CPU = sse i686 mmx i586 236. elif ${CPUTYPE} == "c3" 237MACHINE_CPU = 3dnow mmx i586 238. elif ${CPUTYPE} == "winchip2" 239MACHINE_CPU = 3dnow mmx 240. elif ${CPUTYPE} == "winchip-c6" 241MACHINE_CPU = mmx 242. endif 243MACHINE_CPU += i486 244########## amd64 245. elif ${MACHINE_CPUARCH} == "amd64" 246. if ${CPUTYPE} == "znver1" 247MACHINE_CPU = avx2 avx sse42 sse41 ssse3 sse4a sse3 248. elif ${CPUTYPE} == "bdver4" 249MACHINE_CPU = xop avx2 avx sse42 sse41 ssse3 sse4a sse3 250. elif ${CPUTYPE} == "bdver3" || ${CPUTYPE} == "bdver2" || \ 251 ${CPUTYPE} == "bdver1" 252MACHINE_CPU = xop avx sse42 sse41 ssse3 sse4a sse3 253. elif ${CPUTYPE} == "btver2" 254MACHINE_CPU = avx sse42 sse41 ssse3 sse4a sse3 255. elif ${CPUTYPE} == "btver1" 256MACHINE_CPU = ssse3 sse4a sse3 257. elif ${CPUTYPE} == "amdfam10" 258MACHINE_CPU = k8 3dnow sse4a sse3 259. elif ${CPUTYPE} == "opteron-sse3" || ${CPUTYPE} == "athlon64-sse3" || \ 260 ${CPUTYPE} == "k8-sse3" 261MACHINE_CPU = k8 3dnow sse3 262. elif ${CPUTYPE} == "opteron" || ${CPUTYPE} == "athlon64" || \ 263 ${CPUTYPE} == "athlon-fx" || ${CPUTYPE} == "k8" 264MACHINE_CPU = k8 3dnow 265. elif ${CPUTYPE} == "skylake" || ${CPUTYPE} == "knl" 266MACHINE_CPU = avx512 avx2 avx sse42 sse41 ssse3 sse3 267. elif ${CPUTYPE} == "broadwell" || ${CPUTYPE} == "haswell" 268MACHINE_CPU = avx2 avx sse42 sse41 ssse3 sse3 269. elif ${CPUTYPE} == "ivybridge" || ${CPUTYPE} == "sandybridge" 270MACHINE_CPU = avx sse42 sse41 ssse3 sse3 271. elif ${CPUTYPE} == "westmere" || ${CPUTYPE} == "nehalem" || \ 272 ${CPUTYPE} == "silvermont" 273MACHINE_CPU = sse42 sse41 ssse3 sse3 274. elif ${CPUTYPE} == "penryn" 275MACHINE_CPU = sse41 ssse3 sse3 276. elif ${CPUTYPE} == "core2" || ${CPUTYPE} == "bonnell" 277MACHINE_CPU = ssse3 sse3 278. elif ${CPUTYPE} == "nocona" 279MACHINE_CPU = sse3 280. endif 281MACHINE_CPU += amd64 sse2 sse mmx 282########## Mips 283. elif ${MACHINE_CPUARCH} == "mips" 284MACHINE_CPU = mips 285########## powerpc 286. elif ${MACHINE_ARCH} == "powerpc" 287. if ${CPUTYPE} == "e500" 288MACHINE_CPU = booke softfp 289. endif 290########## riscv 291. elif ${MACHINE_CPUARCH} == "riscv" 292MACHINE_CPU = riscv 293########## sparc64 294. elif ${MACHINE_ARCH} == "sparc64" 295. if ${CPUTYPE} == "v9" 296MACHINE_CPU = v9 297. elif ${CPUTYPE} == "ultrasparc" 298MACHINE_CPU = v9 ultrasparc 299. elif ${CPUTYPE} == "ultrasparc3" 300MACHINE_CPU = v9 ultrasparc ultrasparc3 301. endif 302. endif 303.endif 304 305.if ${MACHINE_CPUARCH} == "mips" 306CFLAGS += -G0 307. if ${MACHINE_ARCH:Mmips*el*} != "" 308AFLAGS += -EL 309CFLAGS += -EL 310LDFLAGS += -EL 311. else 312AFLAGS += -EB 313CFLAGS += -EB 314LDFLAGS += -EB 315. endif 316. if ${MACHINE_ARCH:Mmips64*} != "" 317AFLAGS+= -mabi=64 318CFLAGS+= -mabi=64 319LDFLAGS+= -mabi=64 320. elif ${MACHINE_ARCH:Mmipsn32*} != "" 321AFLAGS+= -mabi=n32 322CFLAGS+= -mabi=n32 323LDFLAGS+= -mabi=n32 324. else 325AFLAGS+= -mabi=32 326CFLAGS+= -mabi=32 327LDFLAGS+= -mabi=32 328. endif 329. if ${MACHINE_ARCH:Mmips*hf} 330CFLAGS += -mhard-float 331. else 332CFLAGS += -msoft-float 333. endif 334.endif 335 336########## arm 337.if ${MACHINE_CPUARCH} == "arm" 338MACHINE_CPU += arm 339. if ${MACHINE_ARCH:Marmv6*} != "" 340MACHINE_CPU += armv6 341. endif 342# armv6 is a hybrid. It can use the softfp ABI, but doesn't emulate 343# floating point in the general case, so don't define softfp for 344# it at this time. arm and armeb are pure softfp, so define it 345# for them. 346. if ${MACHINE_ARCH:Marmv6*} == "" 347MACHINE_CPU += softfp 348. endif 349# Normally armv6 is hard float ABI from FreeBSD 11 onwards. However 350# when CPUTYPE has 'soft' in it, we use the soft-float ABI to allow 351# building of soft-float ABI libraries. In this case, we have to 352# add the -mfloat-abi=softfp to force that. 353.if ${MACHINE_ARCH:Marmv6*} && defined(CPUTYPE) && ${CPUTYPE:M*soft*} != "" 354# Needs to be CFLAGS not _CPUCFLAGS because it's needed for the ABI 355# not a nice optimization. 356CFLAGS += -mfloat-abi=softfp 357.endif 358.endif 359 360.if ${MACHINE_ARCH} == "powerpcspe" 361CFLAGS += -mcpu=8540 -Wa,-me500 -mspe=yes -mabi=spe -mfloat-gprs=double 362.endif 363 364.if ${MACHINE_CPUARCH} == "riscv" 365.if ${TARGET_ARCH:Mriscv*sf} 366CFLAGS += -march=rv64imac -mabi=lp64 367ACFLAGS += -march=rv64imac -mabi=lp64 368.else 369CFLAGS += -march=rv64imafdc -mabi=lp64 370ACFLAGS += -march=rv64imafdc -mabi=lp64 371.endif 372.endif 373 374# NB: COPTFLAGS is handled in /usr/src/sys/conf/kern.pre.mk 375 376.if !defined(NO_CPU_CFLAGS) 377CFLAGS += ${_CPUCFLAGS} 378.endif 379 380# 381# Prohibit the compiler from emitting SIMD instructions. 382# These flags are added to CFLAGS in areas where the extra context-switch 383# cost outweighs the advantages of SIMD instructions. 384# 385# gcc: 386# Setting -mno-mmx implies -mno-3dnow 387# Setting -mno-sse implies -mno-sse2, -mno-sse3, -mno-ssse3 and -mfpmath=387 388# 389# clang: 390# Setting -mno-mmx implies -mno-3dnow and -mno-3dnowa 391# Setting -mno-sse implies -mno-sse2, -mno-sse3, -mno-ssse3, -mno-sse41 and 392# -mno-sse42 393# (-mfpmath= is not supported) 394# 395.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" 396CFLAGS_NO_SIMD.clang= -mno-avx 397CFLAGS_NO_SIMD= -mno-mmx -mno-sse 398.endif 399CFLAGS_NO_SIMD += ${CFLAGS_NO_SIMD.${COMPILER_TYPE}} 400 401# Add in any architecture-specific CFLAGS. 402# These come from make.conf or the command line or the environment. 403CFLAGS += ${CFLAGS.${MACHINE_ARCH}} 404CXXFLAGS += ${CXXFLAGS.${MACHINE_ARCH}} 405