Signed-off-by: Steven Noonan <steven@uplinklabs.net>
NEYHIFJTVVZHEA53I6VKUB4COHYSNFVOXOQ32LGBLSH2DYN4POQQC MCQXXZJO2E27YERVU4OK2SFQ52AE3I45DLEXTX5XFH3736H4UWRQC ZTUNGH4WYATOL37KCN5LI2Z5HYBXV6WOGVKX5AK4NIRVMTN2M2NAC HEQAW4ICQJP6TQGYTYLWBXEWO2TJIVZREUIEVYA2LGTQYMY5IGCAC RPOZZWKG5GLPHVZZ7ZKMKS64ZMV2LDCQSARBJFJ6FZOTOKCQO7FAC AMYZN5E6SNZWQI4BVLZIG5DYB3S6ATHUSLJIABDXXYKDAHODA3SQC K2CS6TCX2NDVL2ASEHGP4J4K4IJ6FP3ANNKTSIWVG43HPYSBX6ZQC HCTDAXFRE6LXGHLKOMM7GX3YXGWJYM4DLZS7ITWYTXC5NWZBB2OQC WUNKKIERFMMK5KBHOXADNZJ2G6ANNLGMO6T73BLHEWYBNNVX4VQQC MUTC553CCYFFOJSLZY3GBKY3Y4T3632ETBXEZSIOJRXRHBEHYLVAC I4WOENMOTUJ5AZ6U3WXPITHIEJFKDZMAW3XDBC22GGYKB3RVUSJAC #!/bin/bash --noprofile########################################################################## Called by the makefile if AUTO_OPT_GCC is true, outputs the list of CPU# specific optimization flags that should be used.##########################################################################TODO: Detect extra compiler options for:## * Non-gcc compilers.# * CYGWIN.# * Mac OS X.# * Non-x86 Linux systems.########################################################################## This line makes GCC automatically detect the CPU architecture to use. Also# might cause the use of some of the "-m" options we use down below,# but GCC doesn't complain about an "-m" option being used repeatedly.OUT="-mtune=native -march=native"if [ -f /proc/cpuinfo ]; then# On Linux system, the "flags: " line of /proc/cpuinfo indicates which# extended instruction sets are available (among other things), so we# can use that to detect what to use.# Only get info for the first CPU; assumes that all CPUs in the system# are the sameINFO=`cat /proc/cpuinfo | grep '^flags.*:' | head -n 1`# These are currently all x86 specific.for flag in cx16 mmx sse sse2 sse3 sse4.1 sse4.2 sse4 sse4a 3dnow abm; do# Put a space on either side of the flag name, so that it won't# match in the middle of a flag.if [[ $INFO == *\ $flag\ * ]] ; thenOUT="$OUT -m$flag"fidoneif [[ $INFO == *\ lahf_lm\ * ]]; thenOUT="$OUT -msahf"fi# Any available SSE lets us use -mfpmath=sseif [[ $INFO == *\ sse* ]]; thenOUT="$OUT -mfpmath=sse"fifiecho "$OUT"
#!/usr/bin/perl## GCC optimization flag generator#use strict;use warnings;my $gcc = $ARGV[0];my $cpuinfo = $ARGV[1];if ( ! $gcc ) {die "Can't generate optimization flags (no compiler specified)\n";}if ( ! `which $gcc 2> /dev/null` ) {die "Can't generate optimization flags ($gcc is missing?)\n";}## We allow people to provide their own cpuinfo-compatible# descriptor. This may be useful later if we want to have# specific architecture-specific optimizations for release# builds or something.#if ( ! $cpuinfo ) {$cpuinfo = "/proc/cpuinfo";}my %features;my $family;my $uname_S = `uname -s`;## Collect CPU feature list## The Linux wayif ( -e $cpuinfo ) {open(FH, "< $cpuinfo");my @cpuinfo = <FH>;close FH;my @familyline = grep(/^cpu family/, @cpuinfo);$familyline[0] =~ s/^cpu[ ]family[ \t]*[:][ ]*//;$family = $familyline[0];my @flags = grep(/^flags/, @cpuinfo);$flags[0] =~ s/^flags[ \t]*[:][ \t]*//;@flags = split(' ',$flags[0]);foreach (@flags) {$features{$_} = 1;}}# The Mac OS X wayif ( $uname_S =~ /^Darwin/ ) {# All released Intel macs have CMOV, and# sysctl doesn't provide this one.$features{"cmov"} = 1;$features{"mmx"} = `sysctl -n hw.optional.mmx`;$features{"sse"} = `sysctl -n hw.optional.sse`;$features{"sse2"} = `sysctl -n hw.optional.sse2`;$features{"pni"} = `sysctl -n hw.optional.sse3`;$features{"ssse3"} = `sysctl -n hw.optional.supplementalsse3`;}## Check the minimum march/mtune value#my $march = "i386";my $fpmath;if ( $features{"cmov"} && $features{"mmx"} ) {$march = "pentium2";}if ( $features{"sse"} ) {$march = "pentium3";$fpmath = "sse"}if ( $features{"sse2"} ) {$march = "pentium-m";}if ( $features{"pni"} ) {$march = "prescott";}# It's important to specify 'march=pentium4' for the# Pentium 4, because it has vastly different optimization# rules than other x86 processors. What's optimal for the# Pentium 3 is extremely sub-optimal for the Pentium 4.if ( $family == 15 ) {$march = "pentium4";}print "-march=$march -mtune=$march";if ( $fpmath ) {print " -mfpmath=$fpmath";}print "\n";exit 0
# Define this to automatically generate code optimized for your machine# (GCC only as of now).## NOTE: Don't use this with a release build, since the generated code# won't work for all machines.ifdef AUTO_OPT_GCCifdef CROSSHOSTerror Can not do AUTO_OPT_GCC with CROSSHOSTendififdef HURRYerror Can not do AUTO_OPT_GCC with HURRYendif
GCC_GTE_4_0_0 := $(shell util/gcc-gte.pl $(GCC) 4.0.0)
# Define this to automatically generate code optimized for your machine# (GCC only as of now).## NOTE: Don't use this with a release build, since the generated code# won't work for all machines.ifdef HURRYNO_AUTO_OPT = YesPleaseendififdef AUTO_OPTifndef NO_AUTO_OPTCFOPTIMIZE += $(shell util/gcc-opt.pl $(GCC))endifendif