From 0de9f43b879cc4e31766d4607e895641bdda1c21 Mon Sep 17 00:00:00 2001 From: jimblandy Date: Tue, 16 Mar 2010 16:34:52 +0000 Subject: Breakpad DWARF parser: Add support for parsing .eh_frame encoded pointers. The Linux C++ exception handling data format (.eh_frame) can specify a number of different encodings for the addresses it contains. This patch extends dwarf2reader::ByteReader to read pointers encoded in these ways. a=jimblandy, r=nealsid git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@551 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/tools/linux/dump_syms/Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'src/tools') diff --git a/src/tools/linux/dump_syms/Makefile b/src/tools/linux/dump_syms/Makefile index f00c34af..3629cb46 100644 --- a/src/tools/linux/dump_syms/Makefile +++ b/src/tools/linux/dump_syms/Makefile @@ -115,6 +115,7 @@ COVERAGE_SOURCES += stabs_reader.cc VPATH += $(SRC)/common/dwarf bytereader.o: bytereader.cc +COVERAGE_SOURCES += bytereader.cc cfi_assembler.o: cfi_assembler.cc dwarf2diehandler.o: dwarf2diehandler.cc COVERAGE_SOURCES += dwarf2diehandler.cc @@ -311,6 +312,26 @@ clean:: +### Unit tests for google_breakpad::ByteReader +check: check-bytereader_unittest +check-bytereader_unittest: bytereader_unittest +bytereader_unittest: \ + bytereader.o \ + cfi_assembler.o \ + gtest-all.o \ + gtest_main.o \ + module.o \ + test_assembler.o \ + $(empty) +CPP_EXECUTABLES += bytereader_unittest +bytereader_unittest.o: bytereader_unittest.cc +bytereader_unittest.o: override CPPFLAGS += $(GTEST_CPPFLAGS) \ + $(GMOCK_CPPFLAGS) +clean:: + rm -f bytereader_unittest + + + ### Generic compilation rules. # Link C++ executables using the C++ compiler; see CPP_EXECUTABLES above. -- cgit v1.2.1