diff options
author | Eric Christopher <echristo@apple.com> | 2011-04-03 23:51:47 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-04-03 23:51:47 +0000 |
commit | 592cf78f842999d3b6c958822927790bc3f45c62 (patch) | |
tree | 6640d22b8e90ad74a37fdc048de08473da3933b1 /include | |
parent | 33feb706901bc674d30e9d82b6baff7e9c634366 (diff) | |
download | external_llvm-592cf78f842999d3b6c958822927790bc3f45c62.zip external_llvm-592cf78f842999d3b6c958822927790bc3f45c62.tar.gz external_llvm-592cf78f842999d3b6c958822927790bc3f45c62.tar.bz2 |
Start migrating mach-o dumping facilities to the object file out of a
separate executable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128801 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Object/MachOObject.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/llvm/Object/MachOObject.h b/include/llvm/Object/MachOObject.h index 03d9c14..19a399e 100644 --- a/include/llvm/Object/MachOObject.h +++ b/include/llvm/Object/MachOObject.h @@ -19,6 +19,7 @@ namespace llvm { class MemoryBuffer; +class raw_ostream; namespace object { @@ -172,7 +173,26 @@ public: InMemoryStruct<macho::Symbol64TableEntry> &Res) const; /// @} + + /// @name Object Dump Facilities + /// @{ + /// dump - Support for debugging, callable in GDB: V->dump() + // + void dump() const; + void dumpHeader() const; + + /// print - Implement operator<< on Value. + /// + void print(raw_ostream &O) const; + void printHeader(raw_ostream &O) const; + + /// @} }; + +inline raw_ostream &operator<<(raw_ostream &OS, const MachOObject &V) { + V.print(OS); + return OS; +} } // end namespace object } // end namespace llvm |