aboutsummaryrefslogtreecommitdiff
path: root/gold/testsuite/odr_violation2.cc
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>2011-03-10 01:31:33 +0000
committerIan Lance Taylor <ian@airs.com>2011-03-10 01:31:33 +0000
commit71ff89863ff23a581a1578755785e6b39dd209f2 (patch)
treeb5aab2587b661dc64d6117602ecb030274857c93 /gold/testsuite/odr_violation2.cc
parenta19fefdc57f5eafcb682175f2b2bcd8f6f366c90 (diff)
downloadgdb-71ff89863ff23a581a1578755785e6b39dd209f2.zip
gdb-71ff89863ff23a581a1578755785e6b39dd209f2.tar.gz
gdb-71ff89863ff23a581a1578755785e6b39dd209f2.tar.bz2
* dwarf_reader.cc (Sized_dwarf_line_info): Include all lines,
but mark earlier ones as non-canonical (offset_to_iterator): Update search target and example (do_addr2line): Return extra lines in a vector* (format_file_lineno): Extract from do_addr2line (one_addr2line): Add vector* out-param * dwarf_reader.h (Offset_to_lineno_entry): New field recording when a lineno entry appeared last for its instruction (Dwarf_line_info): Add vector* out-param * object.cc (Relocate_info): Pass NULL for the vector* out-param * symtab.cc (Odr_violation_compare): Include the lineno in the comparison again. (linenos_from_loc): New. Combine the canonical line for an address with its other lines. (True_if_intersect): New. Helper functor to make std::set_intersection a query. (detect_odr_violations): Compare sets of lines instead of just one line for each function. This became less deterministic, but has fewer false positives. * symtab.h: Declarations. * testsuite/Makefile.am (odr_violation2.o): Compile with -O2 to mix an optimized and non-optimized object in the same binary (odr_violation2.so): Same. * testsuite/Makefile.in: Regenerate from Makefile.am. * testsuite/debug_msg.cc (main): Make OdrDerived classes. * testsuite/debug_msg.sh: Update line numbers and add assertions. * testsuite/odr_violation1.cc: Use OdrDerived, in a non-optimized context. * testsuite/odr_violation2.cc: Make sure Ordering::operator() isn't inlined, and use OdrDerived in an optimized context. * testsuite/odr_header1.h: Defines OdrDerived, where optimization will change the first-instruction-in-the-destructor's file and line number. * testsuite/odr_header2.h: Defines OdrBase.
Diffstat (limited to 'gold/testsuite/odr_violation2.cc')
-rw-r--r--gold/testsuite/odr_violation2.cc16
1 files changed, 12 insertions, 4 deletions
diff --git a/gold/testsuite/odr_violation2.cc b/gold/testsuite/odr_violation2.cc
index 09940d4..6c57b6f 100644
--- a/gold/testsuite/odr_violation2.cc
+++ b/gold/testsuite/odr_violation2.cc
@@ -1,13 +1,16 @@
#include <algorithm>
+#include "odr_header1.h"
class Ordering {
public:
- bool operator()(int a, int b) {
- // We need the "+ 1" here to force this operator() to be a
- // different size than the one in odr_violation1.cc.
+ bool operator()(int a, int b) __attribute__((never_inline));
+};
+
+bool Ordering::operator()(int a, int b) {
+ // Optimization makes this operator() a different size than the one
+ // in odr_violation1.cc.
return a + 1 > b + 1;
}
-};
void SortDescending(int array[], int size) {
std::sort(array, array + size, Ordering());
@@ -21,3 +24,8 @@ extern "C" int OverriddenCFunction(int i) {
int SometimesInlineFunction(int i) {
return i * i;
}
+
+// Instantiate the Derived vtable, with optimization (see Makefile.am).
+OdrBase* CreateOdrDerived2() {
+ return new OdrDerived;
+}