1 |
306 |
jeremybenn |
# Copyright (C) 2000, 2002, 2003, 2007, 2008 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 GCC; see the file COPYING3. If not see
|
15 |
|
|
# .
|
16 |
|
|
|
17 |
|
|
# Various utilities for scanning assembler output, used by gcc-dg.exp and
|
18 |
|
|
# g++-dg.exp.
|
19 |
|
|
|
20 |
|
|
# Utility for scanning compiler result, invoked via dg-final.
|
21 |
|
|
|
22 |
|
|
# Transform newline and similar characters into their escaped form.
|
23 |
|
|
proc make_pattern_printable { pattern } {
|
24 |
|
|
return [string map {\t \\t \n \\n \r \\r \\ \\\\} $pattern]
|
25 |
|
|
}
|
26 |
|
|
|
27 |
|
|
# Scan the OUTPUT_FILE for a pattern. If it is present and POSITIVE
|
28 |
|
|
# is non-zero, or it is not present and POSITIVE is zero, the test
|
29 |
|
|
# passes. The ORIG_ARGS is the list of arguments provided by dg-final
|
30 |
|
|
# to scan-assembler. The first element in ORIG_ARGS is the regular
|
31 |
|
|
# expression to look for in the file. The second element, if present,
|
32 |
|
|
# is a DejaGNU target selector.
|
33 |
|
|
|
34 |
|
|
proc dg-scan { name positive testcase output_file orig_args } {
|
35 |
|
|
if { [llength $orig_args] < 1 } {
|
36 |
|
|
error "$name: too few arguments"
|
37 |
|
|
return
|
38 |
|
|
}
|
39 |
|
|
if { [llength $orig_args] > 2 } {
|
40 |
|
|
error "$name: too many arguments"
|
41 |
|
|
return
|
42 |
|
|
}
|
43 |
|
|
if { [llength $orig_args] >= 2 } {
|
44 |
|
|
switch [dg-process-target [lindex $orig_args 1]] {
|
45 |
|
|
"S" { }
|
46 |
|
|
"N" { return }
|
47 |
|
|
"F" { setup_xfail "*-*-*" }
|
48 |
|
|
"P" { }
|
49 |
|
|
}
|
50 |
|
|
}
|
51 |
|
|
|
52 |
|
|
if { [is_remote host] } {
|
53 |
|
|
remote_upload host "$output_file"
|
54 |
|
|
}
|
55 |
|
|
set fd [open $output_file r]
|
56 |
|
|
set text [read $fd]
|
57 |
|
|
close $fd
|
58 |
|
|
|
59 |
|
|
set pattern [lindex $orig_args 0]
|
60 |
|
|
set printable_pattern [make_pattern_printable $pattern]
|
61 |
|
|
|
62 |
|
|
set match [regexp -- $pattern $text]
|
63 |
|
|
if { $match == $positive } {
|
64 |
|
|
pass "$testcase $name $printable_pattern"
|
65 |
|
|
} else {
|
66 |
|
|
fail "$testcase $name $printable_pattern"
|
67 |
|
|
}
|
68 |
|
|
}
|
69 |
|
|
|
70 |
|
|
# Look for a pattern in the .s file produced by the compiler. See
|
71 |
|
|
# dg-scan for details.
|
72 |
|
|
|
73 |
|
|
proc scan-assembler { args } {
|
74 |
|
|
upvar 2 name testcase
|
75 |
|
|
set testcase [lindex $testcase 0]
|
76 |
|
|
set output_file "[file rootname [file tail $testcase]].s"
|
77 |
|
|
|
78 |
|
|
dg-scan "scan-assembler" 1 $testcase $output_file $args
|
79 |
|
|
}
|
80 |
|
|
|
81 |
|
|
# Check that a pattern is not present in the .s file produced by the
|
82 |
|
|
# compiler. See dg-scan for details.
|
83 |
|
|
|
84 |
|
|
proc scan-assembler-not { args } {
|
85 |
|
|
upvar 2 name testcase
|
86 |
|
|
set testcase [lindex $testcase 0]
|
87 |
|
|
set output_file "[file rootname [file tail $testcase]].s"
|
88 |
|
|
|
89 |
|
|
dg-scan "scan-assembler-not" 0 $testcase $output_file $args
|
90 |
|
|
}
|
91 |
|
|
|
92 |
|
|
# Return the scan for the assembly for hidden visibility.
|
93 |
|
|
|
94 |
|
|
proc hidden-scan-for { symbol } {
|
95 |
|
|
|
96 |
|
|
set objformat [gcc_target_object_format]
|
97 |
|
|
|
98 |
|
|
switch $objformat {
|
99 |
|
|
elf { return "hidden\[ \t_\]*$symbol" }
|
100 |
|
|
mach-o { return "private_extern\[ \t_\]*_?$symbol" }
|
101 |
|
|
default { return "" }
|
102 |
|
|
}
|
103 |
|
|
|
104 |
|
|
}
|
105 |
|
|
|
106 |
|
|
|
107 |
|
|
# Check that a symbol is defined as a hidden symbol in the .s file
|
108 |
|
|
# produced by the compiler.
|
109 |
|
|
|
110 |
|
|
proc scan-hidden { args } {
|
111 |
|
|
upvar 2 name testcase
|
112 |
|
|
set testcase [lindex $testcase 0]
|
113 |
|
|
set output_file "[file rootname [file tail $testcase]].s"
|
114 |
|
|
|
115 |
|
|
set symbol [lindex $args 0]
|
116 |
|
|
|
117 |
|
|
set hidden_scan [hidden-scan-for $symbol]
|
118 |
|
|
|
119 |
|
|
set args [lreplace $args 0 0 "$hidden_scan"]
|
120 |
|
|
|
121 |
|
|
dg-scan "scan-hidden" 1 $testcase $output_file $args
|
122 |
|
|
}
|
123 |
|
|
|
124 |
|
|
# Check that a symbol is not defined as a hidden symbol in the .s file
|
125 |
|
|
# produced by the compiler.
|
126 |
|
|
|
127 |
|
|
proc scan-not-hidden { args } {
|
128 |
|
|
upvar 2 name testcase
|
129 |
|
|
set testcase [lindex $testcase 0]
|
130 |
|
|
set output_file "[file rootname [file tail $testcase]].s"
|
131 |
|
|
|
132 |
|
|
set symbol [lindex $args 0]
|
133 |
|
|
set hidden_scan [hidden-scan-for $symbol]
|
134 |
|
|
|
135 |
|
|
set args [lreplace $args 0 0 "$hidden_scan"]
|
136 |
|
|
|
137 |
|
|
dg-scan "scan-not-hidden" 0 $testcase $output_file $args
|
138 |
|
|
}
|
139 |
|
|
|
140 |
|
|
# Look for a pattern in OUTPUT_FILE. See dg-scan for details.
|
141 |
|
|
|
142 |
|
|
proc scan-file { output_file args } {
|
143 |
|
|
upvar 2 name testcase
|
144 |
|
|
set testcase [lindex $testcase 0]
|
145 |
|
|
dg-scan "scan-file" 1 $testcase $output_file $args
|
146 |
|
|
}
|
147 |
|
|
|
148 |
|
|
# Check that a pattern is not present in the OUTPUT_FILE. See dg-scan
|
149 |
|
|
# for details.
|
150 |
|
|
|
151 |
|
|
proc scan-file-not { output_file args } {
|
152 |
|
|
upvar 2 name testcase
|
153 |
|
|
set testcase [lindex $testcase 0]
|
154 |
|
|
dg-scan "scan-file-not" 0 $testcase $output_file $args
|
155 |
|
|
}
|
156 |
|
|
|
157 |
|
|
# Call pass if pattern is present given number of times, otherwise fail.
|
158 |
|
|
proc scan-assembler-times { args } {
|
159 |
|
|
if { [llength $args] < 2 } {
|
160 |
|
|
error "scan-assembler: too few arguments"
|
161 |
|
|
return
|
162 |
|
|
}
|
163 |
|
|
if { [llength $args] > 3 } {
|
164 |
|
|
error "scan-assembler: too many arguments"
|
165 |
|
|
return
|
166 |
|
|
}
|
167 |
|
|
if { [llength $args] >= 3 } {
|
168 |
|
|
switch [dg-process-target [lindex $args 2]] {
|
169 |
|
|
"S" { }
|
170 |
|
|
"N" { return }
|
171 |
|
|
"F" { setup_xfail "*-*-*" }
|
172 |
|
|
"P" { }
|
173 |
|
|
}
|
174 |
|
|
}
|
175 |
|
|
|
176 |
|
|
# This assumes that we are two frames down from dg-test, and that
|
177 |
|
|
# it still stores the filename of the testcase in a local variable "name".
|
178 |
|
|
# A cleaner solution would require a new dejagnu release.
|
179 |
|
|
upvar 2 name testcase
|
180 |
|
|
set testcase [lindex $testcase 0]
|
181 |
|
|
|
182 |
|
|
# This must match the rule in gcc-dg.exp.
|
183 |
|
|
set output_file "[file rootname [file tail $testcase]].s"
|
184 |
|
|
|
185 |
|
|
set fd [open $output_file r]
|
186 |
|
|
set text [read $fd]
|
187 |
|
|
close $fd
|
188 |
|
|
|
189 |
|
|
set pattern [lindex $args 0]
|
190 |
|
|
set pp_pattern [make_pattern_printable $pattern]
|
191 |
|
|
if { [llength [regexp -inline -all -- $pattern $text]] == [lindex $args 1]} {
|
192 |
|
|
pass "$testcase scan-assembler-times $pp_pattern [lindex $args 1]"
|
193 |
|
|
} else {
|
194 |
|
|
fail "$testcase scan-assembler-times $pp_pattern [lindex $args 1]"
|
195 |
|
|
}
|
196 |
|
|
}
|
197 |
|
|
|
198 |
|
|
# Utility for scanning demangled compiler result, invoked via dg-final.
|
199 |
|
|
# Call pass if pattern is present, otherwise fail.
|
200 |
|
|
proc scan-assembler-dem { args } {
|
201 |
|
|
global cxxfilt
|
202 |
|
|
global base_dir
|
203 |
|
|
|
204 |
|
|
if { [llength $args] < 1 } {
|
205 |
|
|
error "scan-assembler-dem: too few arguments"
|
206 |
|
|
return
|
207 |
|
|
}
|
208 |
|
|
if { [llength $args] > 2 } {
|
209 |
|
|
error "scan-assembler-dem: too many arguments"
|
210 |
|
|
return
|
211 |
|
|
}
|
212 |
|
|
if { [llength $args] >= 2 } {
|
213 |
|
|
switch [dg-process-target [lindex $args 1]] {
|
214 |
|
|
"S" { }
|
215 |
|
|
"N" { return }
|
216 |
|
|
"F" { setup_xfail "*-*-*" }
|
217 |
|
|
"P" { }
|
218 |
|
|
}
|
219 |
|
|
}
|
220 |
|
|
|
221 |
|
|
# Find c++filt like we find g++ in g++.exp.
|
222 |
|
|
if ![info exists cxxfilt] {
|
223 |
|
|
set cxxfilt [findfile $base_dir/../../../binutils/cxxfilt \
|
224 |
|
|
$base_dir/../../../binutils/cxxfilt \
|
225 |
|
|
[findfile $base_dir/../../c++filt $base_dir/../../c++filt \
|
226 |
|
|
[findfile $base_dir/c++filt $base_dir/c++filt \
|
227 |
|
|
[transform c++filt]]]]
|
228 |
|
|
verbose -log "c++filt is $cxxfilt"
|
229 |
|
|
}
|
230 |
|
|
|
231 |
|
|
upvar 2 name testcase
|
232 |
|
|
set testcase [lindex $testcase 0]
|
233 |
|
|
set output_file "[file rootname [file tail $testcase]].s"
|
234 |
|
|
|
235 |
|
|
set output [remote_exec host "$cxxfilt" "" "$output_file"]
|
236 |
|
|
set text [lindex $output 1]
|
237 |
|
|
|
238 |
|
|
set pattern [lindex $args 0]
|
239 |
|
|
set pp_pattern [make_pattern_printable $pattern]
|
240 |
|
|
if [regexp -- $pattern $text] {
|
241 |
|
|
pass "$testcase scan-assembler-dem $pp_pattern"
|
242 |
|
|
} else {
|
243 |
|
|
fail "$testcase scan-assembler-dem $pp_pattern"
|
244 |
|
|
}
|
245 |
|
|
}
|
246 |
|
|
|
247 |
|
|
# Call pass if demangled pattern is not present, otherwise fail.
|
248 |
|
|
proc scan-assembler-dem-not { args } {
|
249 |
|
|
global cxxfilt
|
250 |
|
|
global base_dir
|
251 |
|
|
|
252 |
|
|
if { [llength $args] < 1 } {
|
253 |
|
|
error "scan-assembler-dem-not: too few arguments"
|
254 |
|
|
return
|
255 |
|
|
}
|
256 |
|
|
if { [llength $args] > 2 } {
|
257 |
|
|
error "scan-assembler-dem-not: too many arguments"
|
258 |
|
|
return
|
259 |
|
|
}
|
260 |
|
|
if { [llength $args] >= 2 } {
|
261 |
|
|
switch [dg-process-target [lindex $args 1]] {
|
262 |
|
|
"S" { }
|
263 |
|
|
"N" { return }
|
264 |
|
|
"F" { setup_xfail "*-*-*" }
|
265 |
|
|
"P" { }
|
266 |
|
|
}
|
267 |
|
|
}
|
268 |
|
|
|
269 |
|
|
# Find c++filt like we find g++ in g++.exp.
|
270 |
|
|
if ![info exists cxxfilt] {
|
271 |
|
|
set cxxfilt [findfile $base_dir/../../../binutils/cxxfilt \
|
272 |
|
|
$base_dir/../../../binutils/cxxfilt \
|
273 |
|
|
[findfile $base_dir/../../c++filt $base_dir/../../c++filt \
|
274 |
|
|
[findfile $base_dir/c++filt $base_dir/c++filt \
|
275 |
|
|
[transform c++filt]]]]
|
276 |
|
|
verbose -log "c++filt is $cxxfilt"
|
277 |
|
|
}
|
278 |
|
|
|
279 |
|
|
upvar 2 name testcase
|
280 |
|
|
set testcase [lindex $testcase 0]
|
281 |
|
|
set output_file "[file rootname [file tail $testcase]].s"
|
282 |
|
|
|
283 |
|
|
set output [remote_exec host "$cxxfilt" "" "$output_file"]
|
284 |
|
|
set text [lindex $output 1]
|
285 |
|
|
|
286 |
|
|
set pattern [lindex $args 0]
|
287 |
|
|
set pp_pattern [make_pattern_printable $pattern]
|
288 |
|
|
if ![regexp -- $pattern $text] {
|
289 |
|
|
pass "$testcase scan-assembler-dem-not $pp_pattern"
|
290 |
|
|
} else {
|
291 |
|
|
fail "$testcase scan-assembler-dem-not $pp_pattern"
|
292 |
|
|
}
|
293 |
|
|
}
|