3 # ***** BEGIN LICENSE BLOCK *****
4 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
6 # The contents of this file are subject to the Mozilla Public License Version
7 # 1.1 (the "License"); you may not use this file except in compliance with
8 # the License. You may obtain a copy of the License at
9 # http://www.mozilla.org/MPL/
11 # Software distributed under the License is distributed on an "AS IS" basis,
12 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 # for the specific language governing rights and limitations under the
16 # The Original Code is autosummary.linx.bash code, released
19 # The Initial Developer of the Original Code is
20 # Netscape Communications Corporation.
21 # Portions created by the Initial Developer are Copyright (C) 2002
22 # the Initial Developer. All Rights Reserved.
25 # Garrett Arch Blythe, 10-October-2002
26 # Simon Fraser <sfraser@netscape.com>
28 # Alternatively, the contents of this file may be used under the terms of
29 # either the GNU General Public License Version 2 or later (the "GPL"), or
30 # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
31 # in which case the provisions of the GPL or the LGPL are applicable instead
32 # of those above. If you wish to allow use of your version of this file only
33 # under the terms of either the GPL or the LGPL, and not to allow others to
34 # use your version of this file under the terms of the MPL, indicate your
35 # decision by deleting the provisions above and replace them with the notice
36 # and other provisions required by the GPL or the LGPL. If you do not delete
37 # the provisions above, a recipient may use your version of this file under
38 # the terms of any one of the MPL, the GPL or the LGPL.
40 # ***** END LICENSE BLOCK *****
43 # Check for optional objdir
45 if [ "$1" = "-o" ]; then
53 if [ "$1" = "-s" ]; then
62 # A little help for my friends.
64 if [ "-h" == "$1" ];then
67 if [ "--help" == "$1" ];then
70 if [ "" == "$1" ]; then
73 if [ "" == "$2" ]; then
76 if [ "" == "$3" ]; then
82 # Show the help if required.
84 if [ $SHOWHELP ]; then
85 echo "usage: $0 <save_results> <old_results> <summary>"
86 echo " <save_results> is a file that will receive the results of this run."
87 echo " This file can be used in a future run as the old results."
88 echo " <old_results> is a results file from a previous run."
89 echo " It is used to diff with current results and come up with a summary"
91 echo " It is OK if the file does not exist, just supply the argument."
92 echo " <summary> is a file which will contain a human readable report."
93 echo " This file is most useful by providing more information than the"
94 echo " normally single digit output of this script."
96 echo "Run this command from the parent directory of the mozilla tree."
98 echo "This command will output two numbers to stdout that will represent"
99 echo " the total size of all code and data, and a delta from the prior."
100 echo " the old results."
101 echo "For much more detail on size drifts refer to the summary report."
103 echo "This tool reports on all executables in the directory tree."
108 # Stash our arguments away.
117 # On Mac OS X, use the --zerodrift option to maptsvdifftool
119 if [ $OSTYPE == "Darwin" ]; then
120 ZERODRIFT
="--zerodrift"
126 # Create our temporary directory.
127 # mktemp on Darwin doesn't support -d (suckage)
129 if [ $OSTYPE == "Darwin" ]; then
130 ZERODRIFT
="--zerodrift"
131 MYTMPDIR
=`mktemp ./codesighs.tmp.XXXXXXXX`
135 MYTMPDIR
=`mktemp -d ./codesighs.tmp.XXXXXXXX`
139 # Find all relevant files.
141 ALLFILES
="$MYTMPDIR/allfiles.list"
143 if [ $OSTYPE == "Darwin" ] ||
[ $OSTYPE == "SunOS" ]; then
144 find $OBJROOT/dist
/bin
! -type d
> $ALLFILES
146 find $OBJROOT/dist
/bin
-not -type d
> $ALLFILES
149 # Check whether we have 'eu-readelf' or 'readelf' available.
150 # If we do, it will give more accurate symbol sizes than nm.
152 if [ $OSTYPE == "Darwin" ]; then
155 READELF_PROG
=`which eu-readelf 2>/dev/null | grep /eu-readelf$`
156 if test "$READELF_PROG"; then
159 READELF_PROG
=`which readelf 2>/dev/null | grep /readelf$`
160 if test "$READELF_PROG"; then
161 # Check whether we need -W
162 if readelf
--help |
grep "\--wide" >&/dev
/null
; then
163 READELF_PROG
="readelf -W"
165 READELF_PROG
="readelf"
174 RAWTSVFILE
="$MYTMPDIR/raw.tsv"
175 if test "$USE_READELF"; then
177 xargs -n 1 $SRCROOT/tools
/codesighs
/readelf_wrap.pl
< $ALLFILES > $RAWTSVFILE 2> /dev
/null
181 # Produce the cumulative nm output.
182 # We are very particular on what switches to use.
183 # nm --format=bsd --size-sort --print-file-name --demangle
185 # Darwin (Mac OS X) has a lame nm that we have to wrap in a perl
186 # script to get decent output.
188 NMRESULTS
="$MYTMPDIR/nm.txt"
189 if [ $OSTYPE == "Darwin" ]; then
190 xargs -n 1 $SRCROOT/tools
/codesighs
/nm_wrap_osx.pl
< $ALLFILES > $NMRESULTS 2> /dev
/null
192 xargs -n 1 nm
--format=bsd
--size-sort --print-file-name --demangle < $ALLFILES > $NMRESULTS 2> /dev
/null
197 # Produce the TSV output.
200 $OBJROOT/dist
/bin
/nm2tsv
--input $NMRESULTS > $RAWTSVFILE
205 # Sort the TSV output for useful diffing and eyeballing in general.
207 sort -r $RAWTSVFILE > $COPYSORTTSV
211 # If a historical file was specified, diff it with our sorted tsv values.
212 # Run it through a tool to summaries the diffs to the module
214 # Otherwise, generate the module level report from our new data.
218 DIFFFILE
="$MYTMPDIR/diff.txt"
219 if [ -e $OLDTSVFILE ]; then
220 diff $OLDTSVFILE $COPYSORTTSV > $DIFFFILE
221 $OBJROOT/dist
/bin
/maptsvdifftool
$ZERODRIFT --input $DIFFFILE >> $SUMMARYFILE
223 $OBJROOT/dist
/bin
/codesighs
--modules --input $COPYSORTTSV >> $SUMMARYFILE
228 # Output our numbers, that will let tinderbox specify everything all
230 # First number is in fact the total size of all code and data in the map
232 # Second number, if present, is growth/shrinkage.
235 if [ $TINDERBOX_OUTPUT ]; then
236 echo -n "__codesize:"
238 $OBJROOT/dist
/bin
/codesighs
--totalonly --input $COPYSORTTSV
240 if [ -e $DIFFFILE ]; then
241 if [ $TINDERBOX_OUTPUT ]; then
242 echo -n "__codesizeDiff:"
244 $OBJROOT/dist
/bin
/maptsvdifftool
$ZERODRIFT --summary --input $DIFFFILE
248 # Remove our temporary directory.