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_ARCH} == "i386" 10MACHINE_CPU = i486 11. elif ${MACHINE_ARCH} == "amd64" 12MACHINE_CPU = amd64 sse2 sse 13. elif ${MACHINE_ARCH} == "ia64" 14MACHINE_CPU = itanium 15. elif ${MACHINE_ARCH} == "powerpc" 16MACHINE_CPU = aim 17. elif ${MACHINE_ARCH} == "sparc64" 18. elif ${MACHINE_ARCH} == "arm" 19MACHINE_CPU = arm 20. elif ${MACHINE_ARCH} == "mips" 21MACHINE_CPU = mips 22. endif 23.else 24 25# Handle aliases (not documented in make.conf to avoid user confusion 26# between e.g. i586 and pentium) 27 28. if ${MACHINE_ARCH} == "i386" 29. if ${CPUTYPE} == "nocona" 30CPUTYPE = prescott 31. elif ${CPUTYPE} == "core" || ${CPUTYPE} == "core2" 32CPUTYPE = prescott 33. elif ${CPUTYPE} == "p4" 34CPUTYPE = pentium4 35. elif ${CPUTYPE} == "p4m" 36CPUTYPE = pentium4m 37. elif ${CPUTYPE} == "p3" 38CPUTYPE = pentium3 39. elif ${CPUTYPE} == "p3m" 40CPUTYPE = pentium3m 41. elif ${CPUTYPE} == "p-m" 42CPUTYPE = pentium-m 43. elif ${CPUTYPE} == "p2" 44CPUTYPE = pentium2 45. elif ${CPUTYPE} == "i686" 46CPUTYPE = pentiumpro 47. elif ${CPUTYPE} == "i586/mmx" 48CPUTYPE = pentium-mmx 49. elif ${CPUTYPE} == "i586" 50CPUTYPE = pentium 51. elif ${CPUTYPE} == "opteron" || ${CPUTYPE} == "athlon64" || \ 52 ${CPUTYPE} == "k8" 53CPUTYPE = athlon-mp 54. elif ${CPUTYPE} == "k7" 55CPUTYPE = athlon 56. endif 57. elif ${MACHINE_ARCH} == "amd64" 58. if ${CPUTYPE} == "prescott" || ${CPUTYPE} == "core2" 59CPUTYPE = nocona 60. endif 61. endif 62 63############################################################################### 64# Logic to set up correct gcc optimization flag. This must be included 65# after /etc/make.conf so it can react to the local value of CPUTYPE 66# defined therein. Consult: 67# http://gcc.gnu.org/onlinedocs/gcc/ARM-Options.html 68# http://gcc.gnu.org/onlinedocs/gcc/IA-64-Options.html 69# http://gcc.gnu.org/onlinedocs/gcc/RS-6000-and-PowerPC-Options.html 70# http://gcc.gnu.org/onlinedocs/gcc/MIPS-Options.html 71# http://gcc.gnu.org/onlinedocs/gcc/SPARC-Options.html 72# http://gcc.gnu.org/onlinedocs/gcc/i386-and-x86-64-Options.html 73 74. if ${MACHINE_ARCH} == "i386" 75. if ${CPUTYPE} == "crusoe" 76_CPUCFLAGS = -march=i686 -falign-functions=0 -falign-jumps=0 -falign-loops=0 77. elif ${CPUTYPE} == "k5" 78_CPUCFLAGS = -march=pentium 79. else 80_CPUCFLAGS = -march=${CPUTYPE} 81. endif # GCC on 'i386' 82. if ${CPUTYPE} == "crusoe" 83_ICC_CPUCFLAGS = -tpp6 -xiM 84. elif ${CPUTYPE} == "athlon-mp" || ${CPUTYPE} == "athlon-xp" || \ 85 ${CPUTYPE} == "athlon-4" 86_ICC_CPUCFLAGS = -tpp6 -xiMK 87. elif ${CPUTYPE} == "athlon-tbird" || ${CPUTYPE} == "athlon" 88_ICC_CPUCFLAGS = -tpp6 -xiM 89. elif ${CPUTYPE} == "k6-3" || ${CPUTYPE} == "k6-2" || ${CPUTYPE} == "k6" 90_ICC_CPUCFLAGS = -tpp6 -xi 91. elif ${CPUTYPE} == "k5" 92_ICC_CPUCFLAGS = -tpp5 93. elif ${CPUTYPE} == "pentium4" || ${CPUTYPE} == "pentium4m" 94_ICC_CPUCFLAGS = -tpp7 -xiMKW 95. elif ${CPUTYPE} == "pentium3" || ${CPUTYPE} == "pentium3m" || \ 96 ${CPUTYPE} == "pentium-m" 97_ICC_CPUCFLAGS = -tpp6 -xiMK 98. elif ${CPUTYPE} == "pentium2" || ${CPUTYPE} == "pentiumpro" 99_ICC_CPUCFLAGS = -tpp6 -xiM 100. elif ${CPUTYPE} == "pentium-mmx" 101_ICC_CPUCFLAGS = -tpp5 -xM 102. elif ${CPUTYPE} == "pentium" 103_ICC_CPUCFLAGS = -tpp5 104. else 105_ICC_CPUCFLAGS = 106. endif # ICC on 'i386' 107. elif ${MACHINE_ARCH} == "amd64" 108_CPUCFLAGS = -march=${CPUTYPE} 109. elif ${MACHINE_ARCH} == "arm" 110. if ${CPUTYPE} == "xscale" 111#XXX: gcc doesn't seem to like -mcpu=xscale, and dies while rebuilding itself 112#_CPUCFLAGS = -mcpu=xscale 113_CPUCFLAGS = -march=armv5te -D__XSCALE__ 114. else 115_CPUCFLAGS = -mcpu=${CPUTYPE} 116. endif 117. elif ${MACHINE_ARCH} == "powerpc" 118. if ${CPUTYPE} == "e500" 119MACHINE_CPU = booke 120_CPUCFLAGS = -Wa,-me500 -msoft-float 121. endif 122. elif ${MACHINE_ARCH} == "mips" 123. if ${CPUTYPE} == "mips32" 124_CPUCFLAGS = -march=mips32 125. elif ${CPUTYPE} == "mips32r2" 126_CPUCFLAGS = -march=mips32r2 127. elif ${CPUTYPE} == "mips64" 128_CPUCFLAGS = -march=mips64 129. elif ${CPUTYPE} == "mips64r2" 130_CPUCFLAGS = -march=mips64r2 131. elif ${CPUTYPE} == "mips4kc" 132_CPUCFLAGS = -march=4kc 133. elif ${CPUTYPE} == "mips24kc" 134_CPUCFLAGS = -march=24kc 135. endif 136. endif 137 138# Set up the list of CPU features based on the CPU type. This is an 139# unordered list to make it easy for client makefiles to test for the 140# presence of a CPU feature. 141 142. if ${MACHINE_ARCH} == "i386" 143. if ${CPUTYPE} == "opteron" || ${CPUTYPE} == "athlon64" 144MACHINE_CPU = athlon-xp athlon k7 3dnow sse2 sse mmx k6 k5 i586 i486 i386 145. elif ${CPUTYPE} == "athlon-mp" || ${CPUTYPE} == "athlon-xp" || \ 146 ${CPUTYPE} == "athlon-4" 147MACHINE_CPU = athlon-xp athlon k7 3dnow sse mmx k6 k5 i586 i486 i386 148. elif ${CPUTYPE} == "athlon" || ${CPUTYPE} == "athlon-tbird" 149MACHINE_CPU = athlon k7 3dnow mmx k6 k5 i586 i486 i386 150. elif ${CPUTYPE} == "k6-3" || ${CPUTYPE} == "k6-2" 151MACHINE_CPU = 3dnow mmx k6 k5 i586 i486 i386 152. elif ${CPUTYPE} == "k6" 153MACHINE_CPU = mmx k6 k5 i586 i486 i386 154. elif ${CPUTYPE} == "k5" 155MACHINE_CPU = k5 i586 i486 i386 156. elif ${CPUTYPE} == "c3" 157MACHINE_CPU = 3dnow mmx i586 i486 i386 158. elif ${CPUTYPE} == "c3-2" 159MACHINE_CPU = sse mmx i586 i486 i386 160. elif ${CPUTYPE} == "c7" 161MACHINE_CPU = sse3 sse2 sse i686 mmx i586 i486 i386 162. elif ${CPUTYPE} == "prescott" 163MACHINE_CPU = sse3 sse2 sse i686 mmx i586 i486 i386 164. elif ${CPUTYPE} == "pentium4" || ${CPUTYPE} == "pentium4m" || ${CPUTYPE} == "pentium-m" 165MACHINE_CPU = sse2 sse i686 mmx i586 i486 i386 166. elif ${CPUTYPE} == "pentium3" || ${CPUTYPE} == "pentium3m" 167MACHINE_CPU = sse i686 mmx i586 i486 i386 168. elif ${CPUTYPE} == "pentium2" 169MACHINE_CPU = i686 mmx i586 i486 i386 170. elif ${CPUTYPE} == "pentiumpro" 171MACHINE_CPU = i686 i586 i486 i386 172. elif ${CPUTYPE} == "pentium-mmx" 173MACHINE_CPU = mmx i586 i486 i386 174. elif ${CPUTYPE} == "pentium" 175MACHINE_CPU = i586 i486 i386 176. elif ${CPUTYPE} == "i486" 177MACHINE_CPU = i486 i386 178. elif ${CPUTYPE} == "i386" 179MACHINE_CPU = i386 180. endif 181. elif ${MACHINE_ARCH} == "amd64" 182. if ${CPUTYPE} == "opteron" || ${CPUTYPE} == "athlon64" || ${CPUTYPE} == "k8" 183MACHINE_CPU = k8 3dnow 184. elif ${CPUTYPE} == "nocona" 185MACHINE_CPU = sse3 186. endif 187MACHINE_CPU += amd64 sse2 sse mmx 188. elif ${MACHINE_ARCH} == "ia64" 189. if ${CPUTYPE} == "itanium" 190MACHINE_CPU = itanium 191. endif 192. endif 193.endif 194 195.if ${MACHINE_ARCH} == "arm" && defined(TARGET_BIG_ENDIAN) 196CFLAGS += -mbig-endian 197LDFLAGS += -mbig-endian 198LD += -EB 199.endif 200 201.if ${MACHINE_ARCH} == "mips" 202. if defined(TARGET_BIG_ENDIAN) 203CFLAGS += -EB 204LDFLAGS += -Wl,-EB 205LD += -EB 206. else 207CFLAGS += -EL 208LDFLAGS += -Wl,-EL 209LD += -EL 210. endif 211CFLAGS += -msoft-float -G0 -mno-dsp -mabicalls 212.endif 213 214# NB: COPTFLAGS is handled in /usr/src/sys/conf/kern.pre.mk 215 216.if !defined(NO_CPU_CFLAGS) 217. if ${CC} == "icc" 218CFLAGS += ${_ICC_CPUCFLAGS} 219. else 220CFLAGS += ${_CPUCFLAGS} 221. endif 222.endif 223