X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=utils%2Ffindmisopt;h=b7ffbd9947d5a8accf87626a4914a05c3366f2dc;hb=d13db2c59cc94162d6cf0a04187d408bfef6d4a7;hp=15d72097fbe9139e44e211ad9e61028d4c38e719;hpb=28b7c7feab6219f4c9c7efc3b71a0a3f4880a14d;p=oota-llvm.git diff --git a/utils/findmisopt b/utils/findmisopt index 15d72097fbe..b7ffbd9947d 100755 --- a/utils/findmisopt +++ b/utils/findmisopt @@ -12,7 +12,9 @@ # uses (in the same order) and will narrow down which optimizations # cause the program either generate different output or return a # different result code. When the passes have been narrowed down, -# bugpoint is invoked to further refine the problem to its origin. +# bugpoint is invoked to further refine the problem to its origin. If a +# release version of bugpoint is available it will be used, otherwise +# debug. # # Usage: # findmisopt bcfile outdir progargs [match] @@ -24,16 +26,37 @@ # is a directory into which intermediate results are placed # progargs # is a single argument containing all the arguments the program needs -# match +# proginput +# is a file name from which stdin should be directed +# match # if specified to any value causes the result code of the program to # be used to determine success/fail. If not specified success/fail is # determined by diffing the program's output with the non-optimized # output. # +if [ "$#" -lt 3 ] ; then + echo "usage: findmisopt bcfile outdir progargs [match]" + exit 1 +fi + +dir="${0%%/utils/findmisopt}" +if [ -x "$dir/Release/bin/bugpoint" ] ; then + bugpoint="$dir/Release/bin/bugpoint" +elif [ -x "$dir/Debug/bin/bugpoint" ] ; then + bugpoint="$dir/Debug/bin/bugpoint" +else + echo "findmisopt: bugpoint not found" + exit 1 +fi + bcfile="$1" outdir="$2" args="$3" -match="$4" +input="$4" +if [ ! -f "$input" ] ; then + input="/dev/null" +fi +match="$5" name=`basename $bcfile .bc` ll="$outdir/${name}.ll" s="$outdir/${name}.s" @@ -44,21 +67,37 @@ optll="$outdir/${name}.opt.ll" opts="$outdir/${name}.opt.s" optprog="$outdir/${name}.opt" optout="$outdir/${name}.opt.out" +ldflags="-lstdc++ -lm -ldl -lc" echo "Test Name: $name" echo "Unoptimized program: $prog" echo " Optimized program: $optprog" +# Define the list of optimizations to run. This comprises the same set of +# optimizations that opt -std-compile-opts and gccld run, in the same order. +opt_switches=`llvm-as < /dev/null -o - | opt -std-compile-opts -disable-output -debug-pass=Arguments 2>&1 | sed 's/Pass Arguments: //'` +ld_switches=`llvm-as < /dev/null -o - | llvm-ld - -debug-pass=Arguments 2>&1 | sed 's/Pass Arguments: //'` +all_switches="$opt_switches $ld_switches" +echo "Passes : $all_switches" + +# Create output directory if it doesn't exist +if [ -f "$outdir" ] ; then + echo "$outdir is not a directory" + exit 1 +fi + +if [ ! -d "$outdir" ] ; then + mkdir "$outdir" || exit 1 +fi # Generate the disassembly llvm-dis "$bcfile" -o "$ll" -f || exit 1 -# Generate the non-optimized program +# Generate the non-optimized program and its output llc "$bcfile" -o "$s" -f || exit 1 -gcc "$s" -o "$prog" || exit 1 - -# Define the list of optimizations to run -all_switches="-verify -lowersetjmp -funcresolve -raiseallocs -simplifycfg -mem2reg -globalopt -globaldce -ipconstprop -deadargelim -instcombine -simplifycfg -prune-eh -inline -simplify-libcalls -argpromotion -raise -tailduplicate -simplifycfg -scalarrepl -instcombine -predsimplify -condprop -tailcallelim -simplifycfg -reassociate -licm -loop-unswitch -instcombine -indvars -loop-unroll -instcombine -load-vn -gcse -sccp -instcombine -condprop -dse -dce -simplifycfg -deadtypeelim -constmerge" +gcc "$s" -o "$prog" $ldflags || exit 1 +"$prog" $args > "$out" 2>&1 <$input +ex1=$? # Current set of switches is empty function tryit { @@ -66,10 +105,8 @@ function tryit { opt $switches_to_use "$bcfile" -o "$optbc" -f || exit llvm-dis "$optbc" -o "$optll" -f || exit llc "$optbc" -o "$opts" -f || exit - gcc "$opts" -o "$optprog" || exit - "$prog" $args > "$out" - ex1=$? - "$optprog" $args > "$optout" + gcc "$opts" -o "$optprog" $ldflags || exit + "$optprog" $args > "$optout" 2>&1 <"$input" ex2=$? if [ -n "$match" ] ; then @@ -86,20 +123,31 @@ function tryit { echo "Diff fails with these switches:" echo $switches echo "Differences:" - diff "$out" "$optout" + diff "$out" "$optout" | head return 0; fi fi return 1 } +echo "Trying to find optimization that breaks program:" for sw in $all_switches ; do + echo -n " $sw" switches="$switches $sw" if tryit "$switches" ; then break; fi done +# Terminate the previous output with a newline +echo "" + +# Determine if we're done because none of the optimizations broke the program +if [ "$switches" == " $all_switches" ] ; then + echo "The program did not miscompile" + exit 0 +fi + final="" while [ ! -z "$switches" ] ; do trimmed=`echo "$switches" | sed -e 's/^ *\(-[^ ]*\).*/\1/'` @@ -117,9 +165,14 @@ while [ ! -z "$switches" ] ; do echo "Next Loop" done -echo "Smallest Optimization list= $final" -bpcmd="bugpoint -run-llc --output "$out" --input /dev/null $bcfile $final --args $args" +if [ "$final" == " $all_switches" ] ; then + echo "findmisopt: All optimizations pass. Perhaps this isn't a misopt?" + exit 0 +fi +echo "Smallest Optimization list=$final" + +bpcmd="$bugpoint -run-llc -disable-loop-extraction --output "$out" --input /dev/null $bcfile $final --args $args" echo "Running: $bpcmd" $bpcmd -echo "Finished." +echo "findmisopt finished."