OSDN Git Service

e91e05d576e5065b3ed2774c184458028b4ce935
[pf3gnuchains/gcc-fork.git] / contrib / compare-debug
1 #! /bin/sh
2
3 # Compare stripped copies of two given object files.
4
5 # Copyright (C) 2007, 2008, 2009 Free Software Foundation
6 # Originally by Alexandre Oliva <aoliva@redhat.com>
7
8 # This file is part of GCC.
9
10 # GCC is free software; you can redistribute it and/or modify it under
11 # the terms of the GNU General Public License as published by the Free
12 # Software Foundation; either version 3, or (at your option) any later
13 # version.
14
15 # GCC is distributed in the hope that it will be useful, but WITHOUT
16 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
17 # or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
18 # License for more details.
19
20 # You should have received a copy of the GNU General Public License
21 # along with GCC; see the file COPYING3.  If not see
22 # <http://www.gnu.org/licenses/>.
23
24 rm='rm -f'
25
26 case $1 in
27 -p | --preserve)
28   rm='echo preserving'
29   shift
30   ;;
31 esac
32
33 if test $# != 2; then
34   echo 'usage: compare-debug file1.o file2.o' >&2
35   exit 1
36 fi
37
38 if test ! -f "$1"; then
39   echo "$1" does not exist >&2
40   exit 1
41 fi
42
43 if test ! -f "$2"; then
44   echo "$2" does not exist >&2
45   exit 1
46 fi
47
48 suf1=stripped
49 while test -f "$1.$suf1"; do
50   suf1=$suf1.
51 done
52
53 suf2=stripped
54 while test -f "$2.$suf2"; do
55   suf2=$suf2.
56 done
57
58 trap 'rm -f "$1.$suf1" "$2.$suf2"' 0 1 2 15
59
60 cp "$1" "$1.$suf1"
61 strip "$1.$suf1"
62
63 cp "$2" "$2.$suf2"
64 strip "$2.$suf2"
65
66 if cmp "$1.$suf1" "$2.$suf2"; then
67   status=0
68 else
69   status=1
70
71   # Assembler-generated CFI will add an .eh_frame section for -g not
72   # present in -g0.  Try to cope with it by checking that an .eh_frame
73   # section is present in either object file, and then stripping it
74   # off before re-comparing.
75
76   cmd=
77   cmp1=
78   cmp2=
79
80   for t in objdump readelf eu-readelf; do
81     if ($t --help) 2>&1 | grep -e '--\[*section-\]*headers' > /dev/null; then
82       cmd=$t
83
84       $cmd --section-headers "$1.$suf1" | grep '\.eh_frame' > /dev/null
85       cmp1=$?
86
87       $cmd --section-headers "$2.$suf2" | grep '\.eh_frame' > /dev/null
88       cmp2=$?
89
90       break
91     fi
92   done
93
94   # If we found .eh_frame in one but not the other, or if we could not
95   # find a command to tell, try to strip off the .eh_frame section
96   # from both.
97   if test "x$cmp1" != "x$cmp2" || test "x$cmd" = "x"; then
98     suf3=$suf1.
99     while test -f "$1.$suf3"; do
100       suf3=$suf3.
101     done
102
103     suf4=$suf2.
104     while test -f "$2.$suf4"; do
105       suf4=$suf4.
106     done
107
108     trap 'rm -f "$1.$suf1" "$2.$suf2" "$1.$suf3" "$2.$suf4"' 0 1 2 15
109
110     if (objcopy -v) 2>&1 | grep -e "--remove-section" > /dev/null; then
111       objcopy --remove-section .eh_frame "$1.$suf1" "$1.$suf3"
112       cmp "$1.$suf1" "$1.$suf3" > /dev/null
113       cmp1=$?
114
115       objcopy --remove-section .eh_frame "$2.$suf2" "$2.$suf4"
116       cmp "$2.$suf2" "$2.$suf4" > /dev/null
117       cmp2=$?
118
119       mv "$1.$suf3" "$1.$suf1"
120       mv "$2.$suf4" "$2.$suf2"
121     elif (strip --help) 2>&1 | grep -e --remove-section > /dev/null; then
122       cp "$1.$suf1" "$1.$suf3"
123       strip --remove-section .eh_frame "$1.$suf3"
124
125       cp "$2.$suf2" "$2.$suf4"
126       strip --remove-section .eh_frame "$2.$suf4"
127
128       cmp "$1.$suf1" "$1.$suf3" > /dev/null
129       cmp1=$?
130
131       cmp "$2.$suf2" "$2.$suf4" > /dev/null
132       cmp2=$?
133
134       mv "$1.$suf3" "$1.$suf1"
135       mv "$2.$suf4" "$2.$suf2"
136     fi
137
138     trap 'rm -f "$1.$suf1" "$2.$suf2"' 0 1 2 15
139   fi
140
141   if test "x$cmp1" != "x$cmp2" && cmp "$1.$suf1" "$2.$suf2"; then
142     status=0
143   else
144     status=1
145   fi
146 fi
147
148 $rm "$1.$suf1" "$2.$suf2"
149
150 trap "exit $status; exit" 0 1 2 15
151
152 exit $status