2010-02-12 Sriraman Tallam <tmsriram@google.com>
[deliverable/binutils-gdb.git] / gold / testsuite / icf_safe_so_test.sh
1 # icf_safe_so_test.sh -- test --icf=safe
2
3 # Copyright 2010 Free Software Foundation, Inc.
4 # Written by Sriraman Tallam <tmsriram@google.com>.
5
6 # This file is part of gold.
7
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 # MA 02110-1301, USA.
22
23 # The goal of this program is to verify if --icf=safe works as expected.
24 # File icf_safe_so_test.cc is in this test. The goal of this script is
25 # to verify if identical code folding in safe mode correctly folds
26 # functions in a shared object.
27
28 check_nofold()
29 {
30 func_addr_1=`grep $2 $1 | awk '{print $1}'`
31 func_addr_2=`grep $3 $1 | awk '{print $1}'`
32 if [ $func_addr_1 = $func_addr_2 ];
33 then
34 echo "Safe Identical Code Folding folded" $2 "and" $3
35 exit 1
36 fi
37 }
38
39 check_fold()
40 {
41 func_addr_1=`grep $2 $1 | awk '{print $1}'`
42 func_addr_2=`grep $3 $1 | awk '{print $1}'`
43 if [ $func_addr_1 != $func_addr_2 ];
44 then
45 echo "Safe Identical Code Folding did not fold " $2 "and" $3
46 exit 1
47 fi
48 }
49
50 arch_specific_safe_fold()
51 {
52 grep_x86_64=`grep -q "Advanced Micro Devices X86-64" $2`
53 if [ $? == 0 ];
54 then
55 check_fold $1 $3 $4
56 else
57 check_nofold $1 $3 $4
58 fi
59 }
60
61 check_nofold icf_safe_so_test_1.stdout "foo_prot" "foo_hidden"
62 check_nofold icf_safe_so_test_1.stdout "foo_prot" "foo_internal"
63 check_nofold icf_safe_so_test_1.stdout "foo_prot" "foo_static"
64 check_nofold icf_safe_so_test_1.stdout "foo_hidden" "foo_internal"
65 check_nofold icf_safe_so_test_1.stdout "foo_hidden" "foo_static"
66 check_nofold icf_safe_so_test_1.stdout "foo_internal" "foo_static"
67 arch_specific_safe_fold icf_safe_so_test_1.stdout icf_safe_so_test_2.stdout \
68 "foo_glob" "bar_glob"
69
This page took 0.03209 seconds and 5 git commands to generate.