3 // Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License as
7 // published by the Free Software Foundation; either version 2, or (at
8 // your option) any later version.
10 // This library is distributed in the hope that it will be useful, but
11 // WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 // General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this library; see the file COPYING. If not, write to
17 // the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
18 // MA 02110-1301, USA.
20 // As a special exception, you may use this file as part of a free
21 // software library without restriction. Specifically, if other files
22 // instantiate templates or use macros or inline functions from this
23 // file, or you compile this file and link it with other files to
24 // produce an executable, this file does not by itself cause the
25 // resulting executable to be covered by the GNU General Public
26 // License. This exception does not however invalidate any other
27 // reasons why the executable file might be covered by the GNU General
30 // Benjamin Kosnik <bkoz@redhat.com>
32 #include "testsuite_abi.h"
40 symbol::init(string
& data
)
42 const char delim
= ':';
43 const char version_delim
= '@';
44 const string::size_type npos
= string::npos
;
45 string::size_type n
= 0;
48 if (data
.find("FUNC") == 0)
49 type
= symbol::function
;
50 else if (data
.find("OBJECT") == 0)
51 type
= symbol::object
;
53 n
= data
.find_first_of(delim
);
55 data
.erase(data
.begin(), data
.begin() + n
+ 1);
57 // Iff object, get size info.
58 if (type
== symbol::object
)
60 n
= data
.find_first_of(delim
);
63 string
size(data
.begin(), data
.begin() + n
);
64 istringstream
iss(size
);
69 data
.erase(data
.begin(), data
.begin() + n
+ 1);
73 // Set the name and raw_name.
74 raw_name
= string(data
.begin(), data
.end());
75 n
= data
.find_first_of(version_delim
);
78 // Found version string.
79 name
= string(data
.begin(), data
.begin() + n
);
80 n
= data
.find_last_of(version_delim
);
81 data
.erase(data
.begin(), data
.begin() + n
+ 1);
88 // No versioning info.
89 name
= string(data
.begin(), data
.end());
90 version_status
= symbol::none
;
93 // Set the demangled name.
94 demangled_name
= demangle(name
);
100 const char tab
= '\t';
101 cout
<< name
<< endl
;
103 if (demangled_name
!= name
)
104 cout
<< demangled_name
<< endl
;
107 switch (version_status
)
116 vers
= "incompatible";
119 vers
= "unversioned";
124 cout
<< "version status: " << vers
<< endl
;
126 if (version_name
.size()
127 && (version_status
== compatible
|| version_status
== incompatible
))
128 cout
<< version_name
<< endl
;
134 type_string
= "function";
137 type_string
= "object";
140 type_string
= "uncategorized";
143 type_string
= "<default>";
145 cout
<< "type: " << type_string
<< endl
;
148 cout
<< "type size: " << size
<< endl
;
150 string status_string
;
154 status_string
= "added";
157 status_string
= "subtracted";
160 status_string
= "undesignated";
163 status_string
= "<default>";
165 cout
<< "status: " << status_string
<< endl
;
172 check_version(symbol
& test
, bool added
)
174 // Construct list of compatible versions.
175 typedef std::vector
<std::string
> compat_list
;
176 static compat_list known_versions
;
177 if (known_versions
.empty())
179 // NB: First version here must be the default version for this
180 // version of DT_SONAME.
181 known_versions
.push_back("GLIBCXX_3.4");
182 known_versions
.push_back("GLIBCXX_3.4.1");
183 known_versions
.push_back("GLIBCXX_3.4.2");
184 known_versions
.push_back("GLIBCXX_3.4.3");
185 known_versions
.push_back("GLIBCXX_3.4.4");
186 known_versions
.push_back("GLIBCXX_3.4.5");
187 known_versions
.push_back("GLIBCXX_3.4.6");
188 known_versions
.push_back("GLIBCXX_3.4.7");
189 known_versions
.push_back("GLIBCXX_3.4.8");
190 known_versions
.push_back("CXXABI_1.3");
191 known_versions
.push_back("CXXABI_1.3.1");
193 compat_list::iterator begin
= known_versions
.begin();
194 compat_list::iterator end
= known_versions
.end();
196 // Check for compatible version.
197 if (test
.version_name
.size())
199 compat_list::iterator it1
= find(begin
, end
, test
.version_name
);
200 compat_list::iterator it2
= find(begin
, end
, test
.name
);
202 test
.version_status
= symbol::compatible
;
204 test
.version_status
= symbol::incompatible
;
206 // Check that added symbols aren't added in the base version.
207 if (added
&& test
.version_name
== known_versions
[0])
208 test
.version_status
= symbol::incompatible
;
210 // Check for weak label.
211 if (it1
== end
&& it2
== end
)
212 test
.version_status
= symbol::incompatible
;
217 // version as compatible
224 // New version labels are ok. The rest are not.
225 compat_list::iterator it2
= find(begin
, end
, test
.name
);
228 test
.version_status
= symbol::compatible
;
231 test
.version_status
= symbol::incompatible
;
234 return test
.version_status
== symbol::compatible
;
238 check_compatible(symbol
& lhs
, symbol
& rhs
, bool verbose
)
241 const char tab
= '\t';
243 // Check to see if symbol_objects are compatible.
244 if (lhs
.type
!= rhs
.type
)
248 cout
<< tab
<< "incompatible types" << endl
;
251 if (lhs
.name
!= rhs
.name
)
255 cout
<< tab
<< "incompatible names" << endl
;
258 if (lhs
.size
!= rhs
.size
)
263 cout
<< tab
<< "incompatible sizes" << endl
;
264 cout
<< tab
<< lhs
.size
<< endl
;
265 cout
<< tab
<< rhs
.size
<< endl
;
269 if (lhs
.version_name
!= rhs
.version_name
270 && !check_version(lhs
) && !check_version(rhs
))
275 cout
<< tab
<< "incompatible versions" << endl
;
276 cout
<< tab
<< lhs
.version_name
<< endl
;
277 cout
<< tab
<< rhs
.version_name
<< endl
;
289 has_symbol(const string
& mangled
, const symbols
& s
) throw()
291 const symbol_names
& names
= s
.first
;
292 symbol_names::const_iterator i
= find(names
.begin(), names
.end(), mangled
);
293 return i
!= names
.end();
297 get_symbol(const string
& mangled
, const symbols
& s
)
299 const symbol_names
& names
= s
.first
;
300 symbol_names::const_iterator i
= find(names
.begin(), names
.end(), mangled
);
301 if (i
!= names
.end())
303 symbol_objects objects
= s
.second
;
304 return objects
[mangled
];
309 os
<< "get_symbol failed for symbol " << mangled
;
310 __throw_logic_error(os
.str().c_str());
315 examine_symbol(const char* name
, const char* file
)
319 symbols s
= create_symbols(file
);
320 symbol
& sym
= get_symbol(name
, s
);
324 { __throw_exception_again
; }
328 compare_symbols(const char* baseline_file
, const char* test_file
,
331 // Input both lists of symbols into container.
332 symbols baseline
= create_symbols(baseline_file
);
333 symbols test
= create_symbols(test_file
);
334 symbol_names
& baseline_names
= baseline
.first
;
335 symbol_objects
& baseline_objects
= baseline
.second
;
336 symbol_names
& test_names
= test
.first
;
337 symbol_objects
& test_objects
= test
.second
;
339 // Sanity check results.
340 const symbol_names::size_type baseline_size
= baseline_names
.size();
341 const symbol_names::size_type test_size
= test_names
.size();
342 if (!baseline_size
|| !test_size
)
344 cerr
<< "Problems parsing the list of exported symbols." << endl
;
349 // Assuming baseline_names, test_names are both unique w/ no duplicates.
351 // The names added to missing_names are baseline_names not found in
353 // -> symbols that have been deleted.
355 // The names added to added_names are test_names not in
357 // -> symbols that have been added.
358 symbol_names shared_names
;
359 symbol_names missing_names
;
360 symbol_names added_names
= test_names
;
361 for (size_t i
= 0; i
< baseline_size
; ++i
)
363 string
what(baseline_names
[i
]);
364 symbol_names::iterator end
= added_names
.end();
365 symbol_names::iterator it
= find(added_names
.begin(), end
, what
);
369 shared_names
.push_back(what
);
370 added_names
.erase(it
);
373 missing_names
.push_back(what
);
376 // Check missing names for compatibility.
377 typedef pair
<symbol
, symbol
> symbol_pair
;
378 vector
<symbol_pair
> incompatible
;
379 for (size_t j
= 0; j
< missing_names
.size(); ++j
)
381 symbol
& base
= baseline_objects
[missing_names
[j
]];
382 base
.status
= symbol::subtracted
;
383 incompatible
.push_back(symbol_pair(base
, base
));
386 // Check shared names for compatibility.
387 for (size_t k
= 0; k
< shared_names
.size(); ++k
)
389 symbol
& base
= baseline_objects
[shared_names
[k
]];
390 symbol
& test
= test_objects
[shared_names
[k
]];
391 test
.status
= symbol::existing
;
392 if (!check_compatible(base
, test
))
393 incompatible
.push_back(symbol_pair(base
, test
));
396 // Check added names for compatibility.
397 for (size_t l
= 0; l
< added_names
.size(); ++l
)
399 symbol
& test
= test_objects
[added_names
[l
]];
400 test
.status
= symbol::added
;
401 if (!check_version(test
, true))
402 incompatible
.push_back(symbol_pair(test
, test
));
406 if (verbose
&& added_names
.size())
408 cout
<< endl
<< added_names
.size() << " added symbols " << endl
;
409 for (size_t j
= 0; j
< added_names
.size() ; ++j
)
412 test_objects
[added_names
[j
]].print();
416 if (verbose
&& missing_names
.size())
418 cout
<< endl
<< missing_names
.size() << " missing symbols " << endl
;
419 for (size_t j
= 0; j
< missing_names
.size() ; ++j
)
422 baseline_objects
[missing_names
[j
]].print();
426 if (verbose
&& incompatible
.size())
428 cout
<< endl
<< incompatible
.size() << " incompatible symbols " << endl
;
429 for (size_t j
= 0; j
< incompatible
.size() ; ++j
)
431 // First, print index.
434 // Second, report name.
435 symbol
& base
= incompatible
[j
].first
;
436 symbol
& test
= incompatible
[j
].second
;
439 // Second, report reason or reasons incompatible.
440 check_compatible(base
, test
, true);
444 cout
<< "\n\t\t=== libstdc++-v3 check-abi Summary ===" << endl
;
446 cout
<< "# of added symbols:\t\t " << added_names
.size() << endl
;
447 cout
<< "# of missing symbols:\t\t " << missing_names
.size() << endl
;
448 cout
<< "# of incompatible symbols:\t " << incompatible
.size() << endl
;
450 cout
<< "using: " << baseline_file
<< endl
;
452 return !(missing_names
.size() || incompatible
.size());
457 create_symbols(const char* file
)
463 // Organize file data into container of symbol objects.
464 symbol_names
& names
= s
.first
;
465 symbol_objects
& objects
= s
.second
;
468 while (getline(ifs
, line
).good())
472 objects
[tmp
.raw_name
] = tmp
;
473 names
.push_back(tmp
.raw_name
);
480 os
<< "create_symbols failed for file " << file
;
481 __throw_runtime_error(os
.str().c_str());
488 demangle(const std::string
& mangled
)
491 if (mangled
[0] != '_' || mangled
[1] != 'Z')
493 // This is not a mangled symbol, thus has "C" linkage.
494 name
= mangled
.c_str();
498 // Use __cxa_demangle to demangle.
500 name
= abi::__cxa_demangle(mangled
.c_str(), 0, 0, &status
);
506 name
= "error code = 0: success";
509 name
= "error code = -1: memory allocation failure";
512 name
= "error code = -2: invalid mangled name";
515 name
= "error code = -3: invalid arguments";
518 name
= "error code unknown - who knows what happened";