1. e329810 Mark some static arrays as const. by Craig Topper · 13 years ago
  2. 41827f9 Fix the implementation of MachOObjectFile::isSectionZeroInit so it follows the MachO spec. by Eli Friedman · 13 years ago
  3. 8fc7d5c Remove unused variable. by Benjamin Kramer · 13 years ago
  4. c68dda8 This patch improves the MCJIT runtime dynamic loader by adding new handling by Preston Gurd · 13 years ago
  5. 3fd9b84 Add a constructor for DataRefImpl and remove excess initialization. by Danil Malyshev · 13 years ago
  6. 6f9489a [Object] by David Meyer · 13 years ago
  7. 97f7787 [Object] by David Meyer · 13 years ago
  8. 5c2b4ea [Object] by David Meyer · 13 years ago
  9. 2c67727 [Object] Add symbol attribute flags: ST_ThreadLocal, ST_Common, and ST_Undefined. Implement these completely for ELF. by David Meyer · 13 years ago
  10. c46255a In the ObjectFile interface, replace isInternal(), isAbsolute(), isGlobal(), and isWeak(), with a bitset of flags. by David Meyer · 13 years ago
  11. dfa1896 [Object] Add {begin,end}_dynamic_symbols stubs and implementation for ELF. by Michael J. Spencer · 13 years ago
  12. b0436a7 Fixed ObjectFile functions: by Danil Malyshev · 14 years ago
  13. 790552c Revert r145180 as it is causing test failures on all the bots. by Chandler Carruth · 14 years ago
  14. 9b24738 Fixed ObjectFile functions: by Danil Malyshev · 14 years ago
  15. b28bdbf If we're searching for a symbol reference to pretty-print a scattered relocation address, and we don't find a symbol table entry, try section begin addresses as well. by Owen Anderson · 14 years ago
  16. eb6bd33 Fix pretty printing of i386 local sect diff relocations, TLV relocations, and x86_64 TLV relocations in MachO. by Owen Anderson · 14 years ago
  17. 1832f4d Add support for scattered relocations to the MachO relocatation pretty printer. by Owen Anderson · 14 years ago
  18. ef22f78 The order of the two symbol listings in a Macho x86_64 subtractor relocation is reversed from what seems intuitive to me. by Owen Anderson · 14 years ago
  19. f8261e7 Include the full 64 bits of relocation data in the type info for MachO relocations, so that we can recognize scattered relocations. by Owen Anderson · 14 years ago
  20. 9472b8d Expand relocation type field to 64 bits. MachO scattered relocations require 33 bits of type info. by Owen Anderson · 14 years ago
  21. 929e27c Improve pretty printing of GOT relocations in MachO on x86_64. by Owen Anderson · 14 years ago
  22. b64541f Remove unused variable. by Eric Christopher · 14 years ago
  23. c8aa726 Remove extraneous printing of "-PC". by Owen Anderson · 14 years ago
  24. 0685e94 Add support for the notion of "hidden" relocations. On MachO, these are relocation entries that are used as additional information for other, real relocations, rather than being relocations themselves. by Owen Anderson · 14 years ago
  25. 013d756 Teach the MachO relocation pretty-printer to interpret ARM half-relocations. by Owen Anderson · 14 years ago
  26. d8fa76d More fixes and improvements to MachO relocation pretty-printing, particular for x86 and x86_64 relocations with addends. by Owen Anderson · 14 years ago
  27. 0135fe1 Get relocation parsing/dumping to a mostly-working state for MachO files. by Owen Anderson · 14 years ago
  28. 5f4e02c Stub out some of the MachO relocation decoding hooks. by Owen Anderson · 14 years ago
  29. a48aab9 STABS symbols are debug symbols. by Owen Anderson · 14 years ago
  30. 9b2b812 Object: Add isSymbolAbsolute and getSymbolSection. by Michael J. Spencer · 14 years ago
  31. c38c36a Object: Add isSymbolWeak. by Michael J. Spencer · 14 years ago
  32. 1130a79 Object: Fix redundant name. by Michael J. Spencer · 14 years ago
  33. 95f8db4 The VMAs stored in the symbol table of a MachO file are absolute addresses, not offsets from the section. by Owen Anderson · 14 years ago
  34. 10a8c62 Don't label a STAB debugging symbol as a function symbol. by Owen Anderson · 14 years ago
  35. cd74988 sectionContainsSymbol needs to be based on VMA's rather than section indices to properly account for files with segment load commands that contain no sections. by Owen Anderson · 14 years ago
  36. 4124294 Section indices in MachO symbol tables begin at 1, not 0. by Owen Anderson · 14 years ago
  37. f7c93a3 Expose MachOObjectFile externally, like we do for COFF. First step in reducing the amount of special-purpose code needed for llvm-objdump. by Owen Anderson · 14 years ago
  38. 15565ad Fix warning. by Michael J. Spencer · 14 years ago
  39. e2f2f07 Object: add getSectionAlignment. by Michael J. Spencer · 14 years ago
  40. 4344b1e Change relocation API to be per section. This time without breaking GCC. by Michael J. Spencer · 14 years ago
  41. a48ad13 Revert 141376 and 141377 due to breaking the build. by Bill Wendling · 14 years ago
  42. f1164a2 Change relocation API to be per section. by Michael J. Spencer · 14 years ago
  43. 13afc5e Object: Add isSection{Data,BSS}. by Michael J. Spencer · 14 years ago
  44. ac241fe Object: make the following changes into SymbolRef by Benjamin Kramer · 14 years ago
  45. d40b0b0 Remove dead code. by Benjamin Kramer · 14 years ago
  46. 58856ea Fix release build: by Nick Lewycky · 14 years ago
  47. 0fcab07 Add support for relocations to ObjectFile. by Benjamin Kramer · 14 years ago
  48. 07ea23a ObjectFile: Add a method to check whether a section contains a symbol. by Benjamin Kramer · 14 years ago
  49. 32fb2af MachOObjectFile: Get symbol functions ready for 64 bit. by Benjamin Kramer · 14 years ago
  50. 291e767 Output MachO section names in the form SEGMENT,section. by Benjamin Kramer · 14 years ago
  51. 7d14578 Add support for 64 bit objects to MachOObjectFile. by Benjamin Kramer · 14 years ago
  52. 82ba5b7 MachOObjectFile: Change isSectionText to return true for sections named text, not for load commands name __TEXT (which isn't the case in actual object files) by Benjamin Kramer · 14 years ago
  53. 25b1577 Object: Add proper error handling. by Michael J. Spencer · 14 years ago
  54. 001c920 Make Binary the parent of ObjectFile and update children to new interface. by Michael J. Spencer · 14 years ago
  55. 5e45dc4 Revert the last two commits in the series. r132911, r132912. by Michael J. Spencer · 14 years ago
  56. 69aec36 Make Binary the parent of ObjectFile and update children to new interface. by Michael J. Spencer · 14 years ago
  57. f4b2f93 Use enums for constant values. by Eric Christopher · 14 years ago
  58. 9ab1d7f Make the file format strings a little prettier for mach-o. by Eric Christopher · 14 years ago
  59. 6256b03 Add an ObjectFile implementation for mach-o. by Eric Christopher · 14 years ago