From 35c41e00ee2cf9280fe0122c75877ba70b41bb46 Mon Sep 17 00:00:00 2001 From: "ted.mielczarek" Date: Fri, 25 Jun 2010 16:56:16 +0000 Subject: Breakpad Mac symbol dumper: Add new Mach-O reader class. This patch adds files defining new classes in the google_breakpad::Mach_O namespace for parsing fat binaries and Mach-O files. These are used in the new dumper to handle STABS debugging information, DWARF call frame information, and .eh_frame exception handling stack walking information. These new classes are independent of endianness and word size, and therefore can be used on binaries of all the relevant architectures: x86, x86_64, ppc, and ARM. The patch adds a complete set of unit tests for the new classes. A=jimb R=mark (http://breakpad.appspot.com/93001/show, http://breakpad.appspot.com/115001/show) git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@610 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/common/dwarf/bytereader_unittest.cc | 8 ++++---- src/common/dwarf/cfi_assembler.h | 6 +++--- src/common/dwarf/dwarf2reader_cfi_unittest.cc | 10 +++++----- 3 files changed, 12 insertions(+), 12 deletions(-) (limited to 'src/common/dwarf') diff --git a/src/common/dwarf/bytereader_unittest.cc b/src/common/dwarf/bytereader_unittest.cc index 729c54a8..d839dbe7 100644 --- a/src/common/dwarf/bytereader_unittest.cc +++ b/src/common/dwarf/bytereader_unittest.cc @@ -43,10 +43,10 @@ using dwarf2reader::DwarfPointerEncoding; using dwarf2reader::ENDIANNESS_BIG; using dwarf2reader::ENDIANNESS_LITTLE; using google_breakpad::CFISection; -using google_breakpad::TestAssembler::Label; -using google_breakpad::TestAssembler::kBigEndian; -using google_breakpad::TestAssembler::kLittleEndian; -using google_breakpad::TestAssembler::Section; +using google_breakpad::test_assembler::Label; +using google_breakpad::test_assembler::kBigEndian; +using google_breakpad::test_assembler::kLittleEndian; +using google_breakpad::test_assembler::Section; using std::string; using testing::Test; diff --git a/src/common/dwarf/cfi_assembler.h b/src/common/dwarf/cfi_assembler.h index 7ec1a109..4c9f57de 100644 --- a/src/common/dwarf/cfi_assembler.h +++ b/src/common/dwarf/cfi_assembler.h @@ -46,9 +46,9 @@ namespace google_breakpad { using dwarf2reader::DwarfPointerEncoding; -using google_breakpad::TestAssembler::Endianness; -using google_breakpad::TestAssembler::Label; -using google_breakpad::TestAssembler::Section; +using google_breakpad::test_assembler::Endianness; +using google_breakpad::test_assembler::Label; +using google_breakpad::test_assembler::Section; using std::string; class CFISection: public Section { diff --git a/src/common/dwarf/dwarf2reader_cfi_unittest.cc b/src/common/dwarf/dwarf2reader_cfi_unittest.cc index 7b346fe2..85889f88 100644 --- a/src/common/dwarf/dwarf2reader_cfi_unittest.cc +++ b/src/common/dwarf/dwarf2reader_cfi_unittest.cc @@ -63,10 +63,10 @@ extern "C" { #include "google_breakpad/common/breakpad_types.h" using google_breakpad::CFISection; -using google_breakpad::TestAssembler::Label; -using google_breakpad::TestAssembler::kBigEndian; -using google_breakpad::TestAssembler::kLittleEndian; -using google_breakpad::TestAssembler::Section; +using google_breakpad::test_assembler::Label; +using google_breakpad::test_assembler::kBigEndian; +using google_breakpad::test_assembler::kLittleEndian; +using google_breakpad::test_assembler::Section; using dwarf2reader::DwarfPointerEncoding; using dwarf2reader::ENDIANNESS_BIG; @@ -2315,7 +2315,7 @@ TEST_F(CFIReporter, ClearingCFARule) { #ifdef WRITE_ELF // See comments at the top of the file mentioning WRITE_ELF for details. -using google_breakpad::TestAssembler::Section; +using google_breakpad::test_assembler::Section; struct ELFSectionHeader { ELFSectionHeader(unsigned int set_type) -- cgit v1.2.1