home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-3.iso / Tools / hack / MachOViewer.README < prev    next >
Encoding:
Text File  |  1994-05-30  |  1.5 KB  |  39 lines

  1. Tired of wondering why your apps are so enormous?  Ever wonder what lives
  2. inside an object file, and where?
  3.  
  4. MachOViewer is a NeXTStep app that is supposed to aid in the visualization
  5. of Mach-O object files.
  6.  
  7. It draws a picture of what a Mach-O file could look like in memory.
  8. It allows for "zooming" on an address range of interest, displaying
  9. Mach-O "segment" names, addresses of the segments, and names of the
  10. sections of the segments.
  11.  
  12. For Mach-O object files that reference shared libraries, MachOViewer allows
  13. the display of those shared libraries as they fit in the object file's
  14. address space.
  15.  
  16. The file /usr/include/mach-o/loader.h is mostly what I used to concoct
  17. the in-memory representation of the file.
  18.  
  19. I wrote and tested this app under NeXTStep 3.2 on a 25MHz color
  20. NeXTStation (68040).  The MachOViewer app does not understand "fat" or
  21. multi-architecture binaries, and it may require some hacking to get to
  22. work on an i386 architecture machine.
  23.  
  24. The source files include some subsidiary classes that may be of interest
  25. for other projects.
  26.  
  27. MachOFile.m - a class used to manipulate Mach-O format object files
  28.     LoadCommand.m - used internally by MachOFile objects
  29.     SortedList.m  - Don MacGregor's subclass of List
  30.     MappedFile.m  - simplistic Mach-style memory mapped file class
  31.  
  32. Queue.m           - a simple FIFO queue or LIFO stack class.
  33.  
  34. Thesed files may illustrate how the MachOFile class can be used elsewhere.
  35. I wrote them to test the MachOFile class outside of an IB context.
  36.  
  37. MachO.m
  38. MachO2.m
  39.