gdb: CTF support
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / ctf-ptype.exp
CommitLineData
30d1f018
WP
1# Copyright 2019 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 3 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, see <http://www.gnu.org/licenses/>.
15
16# This file is a subset of ptype.exp written by Rob Savoye. (rob@cygnus.com)
17
18#
19# test running programs
20#
21# -gt generates full-fledged CTF.
22
23standard_testfile .c
24set opts "additional_flags=-gt"
25
26if { [prepare_for_testing "failed to prepare" ${testfile} \
27 [list $srcfile] [list $opts nowarnings]] } {
28 return 0
29}
30
31# Create and source the file that provides information about the compiler
32# used to compile the test case.
33if [get_compiler_info] {
34 return -1
35}
36
37# Test ptype of unnamed enumeration members before any action causes
38# the partial symbol table to be expanded to full symbols. This fails
39# with stabs compilers which fail to use a nameless stab (such as
40# pre-2.4.5 versions of gcc and most non-gcc compilers).
41
42gdb_test_multiple "ptype red1" "ptype unnamed enumeration member" {
43 -re "type = enum primary1_tag \{red1, green1, blue1\}.*$gdb_prompt $" {
44 # The workaround is in effect. As this is a compiler, not GDB,
45 # bug, we'll make it a PASS but perhaps it should be an XFAIL.
46 pass "ptype unnamed enumeration member (worked around)"
47 }
48 -re "type = enum \{red1, green1, blue1\}.*$gdb_prompt $" {
49 pass "ptype unnamed enumeration member"
50 }
51}
52
53#
54# test ptype command with structures
55#
56# Here and elsewhere, we accept
57# "long", "long int", or "int" for long variables (whatis.exp already
58# has an XFAIL for "int" (Sun cc bug), so no need to fail it here).
59gdb_test "ptype struct t_struct" "type = struct t_struct \{.*\[\r\n\] (unsigned |)char v_char_member;.*\[\r\n\] (short|short int) v_short_member;.*\[\r\n\] int v_int_member;.*\[\r\n\] (long|long int|int) v_long_member;.*\[\r\n\] float v_float_member;.*\[\r\n\] double v_double_member;.*\[\r\n\]\}.*" "ptype structure"
60
61
62# Test the equivalence between '.' and '->' for struct member references.
63
64if [gdb_test "ptype v_t_struct_p.v_float_member" "type = float"]<0 then {
65 return -1
66}
67if [gdb_test "ptype v_t_struct_p->v_float_member" "type = float"]<0 then {
68 return -1
69}
70if [gdb_test "ptype v_t_struct_p.v_float_member" "type = float"]<0 then {
71 return -1
72}
73if [gdb_test "ptype v_t_struct_p->v_float_member" "type = float"]<0 then {
74 return -1
75}
76
77#
78# test ptype command with unions
79#
80gdb_test "ptype union t_union" "type = union t_union \{.*\[\r\n\] (unsigned |)char v_char_member;.*\[\r\n\] (short|short int) v_short_member;.*\[\r\n\] int v_int_member;.*\[\r\n\] (long|long int|int) v_long_member;.*\[\r\n\] float v_float_member;.*\[\r\n\] double v_double_member;.*\[\r\n\]\}.*" "ptype union"
81
82#
83# test ptype command with enums
84#
85
86gdb_test "ptype primary" "type = enum .red, green, blue.*" "ptype unnamed enumeration"
87
88gdb_test "ptype enum colors" "type = enum colors \{yellow, purple, pink\}.*" "ptype named enumeration"
89
90
91#
92# test ptype command with enums as typedef
93#
94gdb_test "ptype boolean" "type = enum (boolean |)\{FALSE, TRUE\}.*" "ptype unnamed typedef'd enumeration"
95
96gdb_test "list main" ".*"
97
98# Same thing with struct and union.
99gdb_test "ptype t_struct3" "type = struct (t_struct3 |)\{.*
100 *double v_double_member;.*
101 *int v_int_member;.*\}" "printing typedef'd struct"
102
103gdb_test "ptype t_union3" "type = union (t_union3 |)\{.*
104 *double v_double_member;.*
105 *int v_int_member;.*\}" "printing typedef'd union"
106
107gdb_test "ptype enum bvals" "type = enum bvals \{my_false, my_true\}.*" "ptype named typedef'd enumf'd enum"
108
109#
110# test ptype command with out-of-order enum values
111#
112gdb_test "ptype enum misordered" "type = enum misordered \{two = 2, one = 1, zero = 0, three = 3\}.*" "ptype misordered enumeration"
113
114#
115# test ptype command with a named enum's value
116#
117gdb_test "ptype three" "type = enum misordered \{two = 2, one = 1, zero = 0, three = 3\}.*" "ptype named enumeration member"
118
119gdb_test "ptype red" "type = enum \{red, green, blue\}.*" "ptype unnamed enumeration member #2"
120
121#
122# test ptype command with arrays
123#
124gdb_test "ptype v_char_array" "type = char .2..*" "ptype char array"
125
126gdb_test "ptype v_signed_char_array" "type = (|signed )char .2..*" "ptype signed char array"
127
128gdb_test "ptype v_unsigned_char_array" "type = unsigned char .2..*" "ptype unsigned char array"
129
130gdb_test "ptype v_int_array" "type = int .2..*" "ptype int array"
131
132gdb_test "ptype v_signed_int_array" "type = int .2..*" "ptype signed int array"
133
134gdb_test "ptype v_unsigned_int_array" "type = unsigned int .2..*" "ptype unsigned int array"
135
136gdb_test "ptype v_long_array" "type = (long|int|long int) .2..*" "ptype long array"
137
138gdb_test "ptype v_signed_long_array" "type = (long|int|long int) .2..*" "ptype signed long array"
139
140gdb_test "ptype v_unsigned_long_array" "type = unsigned long .2..*" "ptype unsigned long array"
141
142gdb_test "ptype v_float_array" "type = float .2..*" "ptype float array"
143
144gdb_test "ptype v_double_array" "type = double .2..*" "ptype double array"
145
146gdb_test "ptype pv_char_array" "type = (|unsigned )char \\(\\*\\)\\\[0?\\\]"
147
148#
149# test ptype command with pointers
150#
151gdb_test "ptype v_char_pointer" "type = char \*.*" "ptype char pointer"
152
153gdb_test "ptype v_short_pointer" "type = short \*.*" "ptype short pointer"
154
155gdb_test "ptype v_long_pointer" "type = long \*.*" "ptype long pointer"
156
157gdb_test "ptype v_int_pointer" "type = int \*.*" "ptype int pointer"
158
159gdb_test "ptype v_signed_long_pointer" "type = long \*.*" "ptype signed long pointer"
160
161gdb_test "ptype v_unsigned_long_pointer" "type = unsigned long \*.*" "ptype unsigned long pointer"
162
163gdb_test "ptype v_float_pointer" "type = float \*.*" "ptype float pointer"
164
165gdb_test "ptype v_double_pointer" "type = double \*.*" "ptype double pointer"
166
167#
168# test ptype command with basic C types
169#
170gdb_test "ptype v_short" "type = short(| int).*" "ptype short"
171
172gdb_test "ptype v_int" "type = int.*" "ptype int"
173
174#
175# test ptype command with nested structure and union
176#
177gdb_test "ptype struct outer_struct" "type = struct outer_struct \{.*\[\r\n\]+\
178.*int outer_int;.*\[\r\n\]+\
179.*(struct|) inner_struct inner_struct_instance;.*\[\r\n\]+\
180.*(union|) inner_union inner_union_instance;.*\[\r\n\]+\
181.*(long|long int|int) outer_long;.*\[\r\n\]\}.*" "ptype outer structure"
182
183gdb_test "ptype struct inner_struct" "type = struct inner_struct \{.*\[\r\n\] int inner_int;.*\[\r\n\] (long|long int|int) inner_long;.*\[\r\n\]\}.*" "ptype inner structure"
184
185gdb_test "ptype union inner_union" "type = union inner_union \{.*\[\r\n\] int inner_union_int;.*\[\r\n\] (long|long int|int) inner_union_long;.*\[\r\n\]\}.*" "ptype inner union"
186
187gdb_test "ptype nested_su" "type = struct outer_struct \{.*\[\r\n\] int outer_int;.*\[\r\n\] (struct |)inner_struct inner_struct_instance;.*\[\r\n\] (union |)inner_union inner_union_instance;.*\[\r\n\] (long|long int|int) outer_long;.*\[\r\n\]\}.*" "ptype nested structure"
188
189gdb_test "ptype nested_su.outer_int" "type = int.*" "ptype outer int"
190
191gdb_test "ptype nested_su.inner_struct_instance" "type = struct inner_struct \{.*\[\r\n\] int inner_int;.*\[\r\n\] (long|long int|int) inner_long;.*\[\r\n\]\}.*" "ptype nested structure #2"
192
193gdb_test "ptype nested_su.inner_struct_instance.inner_int" "type = int.*" "ptype inner int"
194
195gdb_test "ptype nested_su.inner_union_instance" "type = union inner_union \{.*\[\r\n\] int inner_union_int;.*\[\r\n\] (long|long int|int) inner_union_long;.*\[\r\n\]\}.*" "ptype nested union"
196
197# Print the type description of variable the_highest, and verify that
198# the type description for the fields whose type is anonymous are
199# correctly printed (at nesting level 1 and 2).
200
201gdb_test "ptype the_highest" \
202 "type = struct highest \{.*\[\r\n\] *int a;.*\[\r\n\] *struct \{.*\[\r\n\] *int b;.*\[\r\n\] *struct \{\.\.\.\} anonymous_level_2;.*\[\r\n\] *\} anonymous_level_1;.*\[\r\n\]}.*" \
203 "ptype the_highest"
204
205# Print the type descrption for one of the fields of variable the_highest.
206# The purpose is to verify that the type of a field that was printed above
207# as "struct {...}" is now printed in a more descriptive way (because the
208# nesting level is now one level less).
209
210gdb_test "ptype the_highest.anonymous_level_1" \
211 "type = struct \{.*\[\r\n\] *int b;.*\[\r\n\] *struct \{.*\[\r\n\] *int c;.*\[\r\n\] *\} anonymous_level_2;.*\[\r\n\]}.*" \
212 "ptype the_highest"
213
214# Print the type of the identifier ID, and check the response:
215# - Expect to see PROTOTYPED as the type. PROTOTYPED is not a regular
216# expression; it's a literal string.
217# - If we instead see the unprototyped type PLAIN, and we're using STABS
218# generated by GCC, that's an xfail; as of 9 Feb 2002, GCC never emits
219# prototyped function types in STABS. Like PROTOTYPED, PLAIN is a
220# literal string, not a regular expression.
221# - If we see OVERPROTOTYPED, it's an xfail for RealView; RealView
222# does not distinguish prototyped and unprototyped functions, and
223# GDB defaults to prototyped.
224# - Otherwise, it's a failure.
225proc ptype_maybe_prototyped { id prototyped plain { overprototyped "NO-MATCH" } } {
226 global gdb_prompt
227 global gcc_compiled
228
229 # Turn the arguments, which are literal strings, into
230 # regular expressions by quoting any special characters they contain.
231 foreach var { prototyped plain overprototyped } {
232 eval "set val \$$var"
233 regsub -all "\[\]\[*()\]" $val "\\\\&" val
234 regsub -all "short int" $val "short( int)?" val
235 regsub -all "long int" $val "long( int)?" val
236 eval "set $var \$val"
237 }
238
239 gdb_test_multiple "ptype $id" "ptype $id" {
240 -re "type = $prototyped\[\r\n\]+$gdb_prompt $" {
241 pass "ptype $id"
242 }
243 -re "type = $plain\[\r\n\]+$gdb_prompt $" {
244 if {$gcc_compiled} { setup_xfail_format "stabs" }
245 fail "ptype $id (compiler doesn't emit prototyped types)"
246 }
247 -re "type = $overprototyped\[\r\n\]+$gdb_prompt $" {
248 if { [test_compiler_info "armcc-*"] } {
249 setup_xfail "*-*-*"
250 }
251 fail "ptype $id (compiler doesn't emit unprototyped types)"
252 }
253 }
254}
255
256ptype_maybe_prototyped "old_fptr" "double (*)()" "double (*)()" \
257 "double (*)(void)"
258
259# Test printing type of string constants and array constants, but
260# requires a running process. These call malloc, and can take a long
261# time to execute over a slow serial link, so increase the timeout.
262
263if [runto_main] then {
264
265 if [target_info exists gdb,cannot_call_functions] {
266 unsupported "this target can not call functions"
267 continue
268 }
269
270 # We need to up this because this can be really slow on some boards.
271 # (malloc() is called as part of the test).
272 set prev_timeout $timeout
273 set timeout 60
274
275 gdb_test "ptype \"abc\"" "type = char \\\[4\\\]"
276 gdb_test "ptype {'a','b','c'}" "type = char \\\[3\\\]"
277 gdb_test "ptype {0,1,2}" "type = int \\\[3\\\]"
278 gdb_test "ptype {(long)0,(long)1,(long)2}" "type = long \\\[3\\\]"
279 gdb_test "ptype {(float)0,(float)1,(float)2}" "type = float \\\[3\\\]"
280 gdb_test "ptype {{0,1,2},{3,4,5}}" "type = int \\\[2\\\]\\\[3\\\]"
281 gdb_test "ptype {4,5,6}\[2\]" "type = int"
282 gdb_test "ptype *&{4,5,6}\[1\]" "Attempt to take address of value not located in memory."
283
284 set timeout $prev_timeout
285
286 # Test ptype of user register
287 gdb_test "ptype \$pc" "void \\(\\*\\)\\(\\)" "ptype \$pc"
288}
This page took 0.035444 seconds and 4 git commands to generate.