1# Copyright (C) 1992, 1994 Free Software Foundation, Inc.
2
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 2 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program; if not, write to the Free Software
15# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
16
17# Please email any bugs, comments, and/or additions to this file to:
18# bug-gdb@prep.ai.mit.edu
19
20# This file was written by Fred Fish. (fnf@cygnus.com)
21
22if $tracelevel then {
23	strace $tracelevel
24}
25
26set prms_id 0
27set bug_id 0
28
29set testfile "opaque"
30set binfile ${objdir}/${subdir}/opaque
31if  { [compile "-g -c ${srcdir}/${subdir}/opaque0.c"] != "" } {
32    perror "Couldn't compile opaque0.c to object"
33    return -1
34}
35execute_anywhere "mv opaque0.o ${binfile}0.o"
36if  { [compile "-g -c ${srcdir}/${subdir}/opaque1.c"] != "" } {
37    perror "Couldn't compile opaque1.c to object"
38    return -1
39}
40execute_anywhere "mv opaque1.o ${binfile}1.o"
41if  { [compile "${binfile}1.o ${binfile}0.o -o ${binfile}"] != "" } {
42    perror "Couldn't link opaque."
43    return -1
44}
45
46# Create and source the file that provides information about the compiler
47# used to compile the test case.
48execute_anywhere "rm -f ${binfile}.ci"
49if  { [compile "-E ${srcdir}/${subdir}/compiler.c > ${binfile}.ci"] != "" } {
50    perror "Couldn't make ${binfile}.ci file"
51    return -1
52}
53source ${binfile}.ci
54
55# Start with a fresh gdb.
56
57gdb_exit
58gdb_start
59gdb_reinitialize_dir $srcdir/$subdir
60gdb_load ${binfile}
61
62#
63# Test basic opaque structure handling (statically).
64# The ordering of the tests is significant.  We first try the things that
65# might fail if gdb fails to connect the uses of opaque structures to
66# the actual opaque structure definition.
67
68# When we start up, gdb sets the file containing main() as the current
69# source file.  The actual structure foo is defined in a different file.
70# A pointer (foop) to an instance of the opaque struct is defined in the same
71# source file as main().  Ensure that gdb correctly "connected" the definition
72# in the other file with the pointer to the opaque struct in the file containing
73# "foop".
74
75# Define a procedure to set up an xfail for all targets that do not support
76# this sort of cross reference.
77# Any target gcc that has a DBX_NO_XREFS definition in its config file will
78# not support it (FIXME: Is this still true; I suspect maybe not).
79
80# Native alpha ecoff doesn't support it either.
81# I don't think this type of cross reference works for any COFF target
82# either.
83
84proc setup_xfail_on_opaque_pointer {} {
85	global gcc_compiled
86
87	setup_xfail "a29k-*-udi" "vax-*-*" "i*86-sequent-bsd*"
88	if {!$gcc_compiled} then {
89		setup_xfail "alpha-*-*" "mips-sgi-irix5*"
90	}
91}
92
93# This seems easier than trying to track different versions of xlc; I'm
94# not sure there is much rhyme or reason regarding which tests it fails
95# and which ones it passes.
96if {[istarget "rs6000-*-aix*"] && !$gcc_compiled} then {
97    warning "xfails in opaque.exp may not be set up correctly for xlc"
98}
99
100setup_xfail_on_opaque_pointer
101gdb_test "whatis foop" \
102    "type = struct foo \[*\]+" \
103    "whatis on opaque struct pointer (statically)"
104
105
106# Ensure that we know the form of the structure that foop points to.
107
108setup_xfail_on_opaque_pointer
109if {!$gcc_compiled} then { setup_xfail "rs6000-*-*" "hppa*-*-hpux*" }
110gdb_test "ptype foop" \
111    "type = struct foo \{\r\n    int a;\r\n    int b;\r\n\} \[*\]+" \
112    "ptype on opaque struct pointer (statically)"
113
114
115# An instance of the opaque structure (afoo) is defined in a different file.
116# Ensure that we can locate afoo and the structure definition.
117
118gdb_test "whatis afoo" \
119    "type = struct foo" \
120    "whatis on opaque struct instance (statically)"
121
122
123# Ensure that we know the form of "afoo".
124
125gdb_test "ptype afoo" \
126    "type = struct foo \{\r\n    int a;\r\n    int b;\r\n\}" \
127    "ptype on opaque struct instance (statically)"
128
129
130# Ensure that we know what a struct foo looks like.
131
132gdb_test "ptype struct foo" \
133    "type = struct foo \{\r\n    int a;\r\n    int b;\r\n\}" \
134    "ptype on opaque struct tagname (statically)"
135
136
137#
138# Done with static tests, now test dynamic opaque structure handling.
139# We reload the symbol table so we forget about anything we might
140# have learned during the static tests.
141#
142
143if [istarget "mips-idt-*"] then {
144    # Restart because IDT/SIM runs out of file descriptors.
145    gdb_exit
146    gdb_start
147}
148gdb_reinitialize_dir $srcdir/$subdir
149gdb_load ${binfile}
150
151# Run to main, where struct foo is incomplete.
152if ![runto_main] {
153    perror "cannot run to breakpoint at main"
154}
155
156
157# The current source file is now the one containing main().  The structure foo
158# is defined in a different file, but we have a pointer to an instance of
159# the opaque structure in the current file.  Ensure we know it's type.
160
161setup_xfail_on_opaque_pointer
162gdb_test "whatis foop" \
163    "type = struct foo \[*\]+" \
164    "whatis on opaque struct pointer (dynamically)"
165
166
167# Ensure that we know the form of the thing foop points to.
168
169setup_xfail_on_opaque_pointer
170if {!$gcc_compiled} then { setup_xfail "rs6000-*-*" "hppa*-*-hpux*" }
171gdb_test "ptype foop" \
172    "type = struct foo \{\r\n    int a;\r\n    int b;\r\n\} \[*\]+" \
173    "ptype on opaque struct pointer (dynamically) 1"
174
175gdb_test "whatis afoo" \
176    "type = struct foo" \
177    "whatis on opaque struct instance (dynamically) 1"
178
179
180# Ensure that we know the form of afoo, an instance of a struct foo.
181
182gdb_test "ptype afoo" \
183    "type = struct foo \{\r\n    int a;\r\n    int b;\r\n\}" \
184    "ptype on opaque struct instance (dynamically) 1"
185
186
187# Ensure that we know the form of an explicit struct foo.
188
189if {!$gcc_compiled} then { setup_xfail "rs6000-*-*" }
190gdb_test "ptype struct foo" \
191    "type = struct foo \{\r\n    int a;\r\n    int b;\r\n\}" \
192    "ptype on opaque struct tagname (dynamically) 1"
193
194
195# Now reload the symbols again so we forget about anything we might
196# have learned reading the symbols during the previous tests.
197
198if [istarget "mips-idt-*"] then {
199    # Restart because IDT/SIM runs out of file descriptors.
200    gdb_exit
201    gdb_start
202}
203gdb_reinitialize_dir $srcdir/$subdir
204gdb_load ${binfile}
205
206# Run to getfoo, where struct foo is complete.
207if ![runto getfoo] {
208    perror "cannot run to breakpoint at getfoo"
209}
210
211
212# Ensure that we know what foop is.
213
214setup_xfail_on_opaque_pointer
215gdb_test "whatis foop" \
216    "type = struct foo \[*\]+" \
217    "whatis on opaque struct pointer (dynamically)"
218
219
220# Ensure that we know the form of the thing foop points to.
221
222setup_xfail_on_opaque_pointer
223if {!$gcc_compiled} then { setup_xfail "rs6000-*-*" "hppa*-*-hpux*" }
224gdb_test "ptype foop" \
225    "type = struct foo \{\r\n    int a;\r\n    int b;\r\n\} \[*\]+" \
226    "ptype on opaque struct pointer (dynamically) 2"
227
228gdb_test "whatis afoo" \
229    "type = struct foo" \
230    "whatis on opaque struct instance (dynamically) 2"
231
232
233# Ensure that we know the form of afoo, an instance of a struct foo.
234
235gdb_test "ptype afoo" \
236    "type = struct foo \{\r\n    int a;\r\n    int b;\r\n\}" \
237    "ptype on opaque struct instance (dynamically) 2"
238
239
240# Ensure that we know the form of an explicit struct foo.
241
242gdb_test "ptype struct foo" \
243    "type = struct foo \{\r\n    int a;\r\n    int b;\r\n\}" \
244    "ptype on opaque struct tagname (dynamically) 2"
245