]> git.pld-linux.org Git - packages/gdb.git/blob - gdb-6.7-ppc-clobbered-registers-O2-test.patch
- updated (performance fixes).
[packages/gdb.git] / gdb-6.7-ppc-clobbered-registers-O2-test.patch
1 2007-11-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
2
3         * gdb.arch/ppc-clobbered-registers-O2.exp: `powerpc64' changed to
4         `powerpc*'.
5
6 Testcase for:
7
8 http://sourceware.org/ml/gdb-patches/2007-09/msg00228.html
9
10 2007-10-21  Luis Machado  <luisgpm@br.ibm.com>
11
12         * rs6000-tdep.c (ppc_dwarf2_frame_init_reg): New function.
13         * (rs6000_gdbarch_init): Install ppc_dwarf2_frame_init_reg as
14         default dwarf2_frame_set_init_reg function.
15
16 --- /dev/null   1 Jan 1970 00:00:00 -0000
17 +++ ./gdb/testsuite/gdb.arch/ppc-clobbered-registers-O2.c       3 Nov 2007 22:22:28 -0000
18 @@ -0,0 +1,21 @@
19 +
20 +unsigned * __attribute__((noinline))
21 +start_sequence (unsigned * x, unsigned * y)
22 +{
23 +       return (unsigned *)0xdeadbeef;
24 +};
25 +
26 +unsigned __attribute__((noinline))
27 +gen_movsd (unsigned * operand0, unsigned * operand1)
28 +{
29 +       return *start_sequence(operand0, operand1);
30 +}
31 +
32 +int main(void)
33 +{
34 +  unsigned x, y;
35 +
36 +  x = 13;
37 +  y = 14;
38 +  return (int)gen_movsd (&x, &y);
39 +}
40 --- /dev/null   1 Jan 1970 00:00:00 -0000
41 +++ ./gdb/testsuite/gdb.arch/ppc-clobbered-registers-O2.exp     3 Nov 2007 22:22:28 -0000
42 @@ -0,0 +1,54 @@
43 +# Copyright 2006 Free Software Foundation, Inc.
44 +#
45 +# This program is free software; you can redistribute it and/or modify
46 +# it under the terms of the GNU General Public License as published by
47 +# the Free Software Foundation; either version 2 of the License, or
48 +# (at your option) any later version.
49 +#
50 +# This program is distributed in the hope that it will be useful,
51 +# but WITHOUT ANY WARRANTY; without even the implied warranty of
52 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
53 +# GNU General Public License for more details.
54 +#
55 +# You should have received a copy of the GNU General Public License
56 +# along with this program; if not, write to the Free Software
57 +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
58 +#
59 +# This file is part of the gdb testsuite.
60 +
61 +# Test displaying call clobbered registers in optimized binaries for ppc.
62 +# GDB should not show incorrect values.
63 +
64 +if ![istarget "powerpc*-*"] then {
65 +    verbose "Skipping powerpc* call clobbered registers testing."
66 +    return
67 +}
68 +
69 +set testfile "ppc-clobbered-registers-O2"
70 +set srcfile ${testfile}.c
71 +set binfile ${objdir}/${subdir}/${testfile}
72 +set compile_flags "debug additional_flags=-O2"
73 +
74 +if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable ${compile_flags}] != "" } {
75 +    unsupported "Testcase compile failed."
76 +    return -1
77 +}
78 +
79 +gdb_exit
80 +gdb_start
81 +gdb_reinitialize_dir $srcdir/$subdir
82 +gdb_load ${binfile}
83 +
84 +if ![runto_main] then {
85 +    perror "Couldn't run to breakpoint"
86 +    continue
87 +}
88 +
89 +gdb_test "b start_sequence" ".*Breakpoint 2 at.*line 6.*" \
90 +  "Insert breakpoint at problematic function"
91 +
92 +gdb_test continue ".*Breakpoint 2.*in start_sequence.*" \
93 +  "Run until problematic function"
94 +
95 +gdb_test backtrace ".*operand0=<value optimized out>.*operand1=<value optimized out>.*" \
96 +  "Check value of call clobbered registers"
This page took 0.043599 seconds and 3 git commands to generate.