1. b805f73 Remove else after return by David Blaikie · 10 years ago
  2. d1af8fc [Support] Switch to RAII helper for error-as-out-parameter idiom. by Lang Hames · 10 years ago
  3. ff044b1 [Object] Make createMachOObjectFile return Expected<...> rather than by Lang Hames · 10 years ago
  4. 8262764 [Object] Make MachOObjectFile's constructor private, provide a static create by Lang Hames · 10 years ago
  5. 9e964f3 [Object] Start threading Error through MachOObjectFile construction. by Lang Hames · 10 years ago
  6. 5afbc1c Fix a crash in running llvm-objdump -t with an invalid Mach-O file already by Kevin Enderby · 10 years ago
  7. f2fe014 Rename embedded bitcode section in MachO by Steven Wu · 10 years ago
  8. 1829c68 Fix the code that leads to the incorrect trigger of the report_fatal_error() by Kevin Enderby · 10 years ago
  9. f681ec5 Fix MachOObjectFile::getSymbolName() to not call report_fatal_error() by Kevin Enderby · 10 years ago
  10. 1f472ea Fix MachOObjectFile::getSymbolSection() to not call report_fatal_error() by Kevin Enderby · 10 years ago
  11. 15576e1 Use make_range to reduce mentions of iterator type. NFC by Craig Topper · 10 years ago
  12. de83322 [Object, MachO] Mark symbols from DATA and BSS sections as ST_Data by Kuba Brecka · 10 years ago
  13. 46e642f Fix a bug in llvm-objdump’s printing of Objective-C meta data by Kevin Enderby · 10 years ago
  14. 10c80e7 Prune trailing whitespaces. by NAKAMURA Takumi · 10 years ago
  15. 0a7d0ad Untabify. by NAKAMURA Takumi · 10 years ago
  16. a9cb538 Reformat blank lines. by NAKAMURA Takumi · 10 years ago
  17. 8496503 Reformat comment lines. by NAKAMURA Takumi · 10 years ago
  18. 70ad98a Reformat. by NAKAMURA Takumi · 10 years ago
  19. 0013be1 Use makeArrayRef or None to avoid unnecessarily mentioning the ArrayRef type extra times. NFC by Craig Topper · 10 years ago
  20. 68961bb [MachO] Move trivial accessors to header. by Davide Italiano · 10 years ago
  21. 933e230 [MachO] Introduce MinVersion API. by Davide Italiano · 10 years ago
  22. 8bab889 Convert getSymbolSection to return an ErrorOr. by Rafael Espindola · 10 years ago
  23. be8b0ea Delete UnknownAddress. It is a perfectly valid symbol value. by Rafael Espindola · 10 years ago
  24. 7e7be92 Common symbols don't have a value. by Rafael Espindola · 10 years ago
  25. d824772 Common symbols are not undefined, at least for ObjectFile. by Rafael Espindola · 10 years ago
  26. 05cbccc Simplify, NFC. by Rafael Espindola · 10 years ago
  27. 76ad232 Remove getRelocationAddress. by Rafael Espindola · 10 years ago
  28. ed067c4 Return ErrorOr from getSymbolAddress. by Rafael Espindola · 10 years ago
  29. dea0016 Use getValue instead of getAddress in a few MachO only cases. by Rafael Espindola · 10 years ago
  30. 5d0c2ff Return ErrorOr from SymbolRef::getName. by Rafael Espindola · 10 years ago
  31. 10fcac7 Use ErrorOr in getRelocationAdress. by Rafael Espindola · 10 years ago
  32. e9c58c7 Implement containsSymbol with other lower level methods. by Rafael Espindola · 10 years ago
  33. 41bb432 Don't return error_code from a function that doesn't fail. by Rafael Espindola · 10 years ago
  34. 0ad71d9 Move function to the only file that uses it. by Rafael Espindola · 10 years ago
  35. f69ac42 Don't return error_code from a function that doesn't fail. by Rafael Espindola · 10 years ago
  36. 99c041b Don't return error_code from a function that doesn't fail. by Rafael Espindola · 10 years ago
  37. 96d071c Don't return error_code from function that never fails. by Rafael Espindola · 10 years ago
  38. 2fa80cc Simplify getSymbolType. by Rafael Espindola · 10 years ago
  39. 6bf3221 Make computeSymbolSizes never fail. by Rafael Espindola · 10 years ago
  40. 991af66 Add a SymbolRef::getValue. by Rafael Espindola · 10 years ago
  41. 5912892 Refactor duplicated code. NFC. by Rafael Espindola · 10 years ago
  42. d7a32ea Change how symbol sizes are handled in lib/Object. by Rafael Espindola · 10 years ago
  43. 9ac06a0 Improve the --expand-relocs handling of MachO. by Rafael Espindola · 10 years ago
  44. 40baa0a Have MachOObjectFile::isValidArch() accept armv7 by Frederic Riss · 10 years ago
  45. 7d09919 Remove object_error::success and use std::error_code() instead by Rui Ueyama · 10 years ago
  46. fa5edc5 [Object, MachO] Fixup for r239075: use union to store mach_header and mach_header_64. by Alexey Samsonov · 10 years ago
  47. f8a7bf8 [Object, MachO] Don't crash on incomplete MachO segment load commands. by Alexey Samsonov · 10 years ago
  48. e1a76ab [Object, MachO] Simplify load segment parsing code. NFC. by Alexey Samsonov · 10 years ago
  49. 074da9b [Object, MachO] Don't crash on invalid MachO segment load commands. by Alexey Samsonov · 10 years ago
  50. de5a94a [Object, MachO] Don't crash on invalid MachO load commands. by Alexey Samsonov · 10 years ago
  51. 9f33663 [Object, MachO] Don't crash on parsing invalid MachO header. by Alexey Samsonov · 10 years ago
  52. 4fdbed3 [Object, MachO] Remove some code duplication. NFC. by Alexey Samsonov · 10 years ago
  53. 13415ed [Object, MachO] Cache parsed MachO header in MachOObjectFile. NFC. by Alexey Samsonov · 10 years ago
  54. d319c4f [Object, MachO] Introduce MachOObjectFile::load_commands() range iterator. by Alexey Samsonov · 10 years ago
  55. 37070a5 Move to llvm-objdump a large amount of code to that is only used there. by Rafael Espindola · 10 years ago
  56. 5eb02e4 Simplify another function that doesn't fail. by Rafael Espindola · 10 years ago
  57. a4d22472 Simplify interface of function that doesn't fail. by Rafael Espindola · 10 years ago
  58. 281b694 Add RelocVisitor support for MachO by Keno Fischer · 10 years ago
  59. 62a07cb Stop inventing symbol sizes. by Rafael Espindola · 10 years ago
  60. 0d85d10 Detect invalid section indexes when we first read them. by Rafael Espindola · 10 years ago
  61. c780e8e Make it easier to use DwarfContext with MCJIT by Keno Fischer · 10 years ago
  62. 075759a Remove more superfluous .str() and replace std::string concatenation with Twine. by Yaron Keren · 11 years ago
  63. 9a50944 dd the option, -link-opt-hints to llvm-objdump used with -macho to print the by Kevin Enderby · 11 years ago
  64. c552c9a Fix edge case when Start overflowed in 32 bit mode by Filipe Cabecinhas · 11 years ago
  65. 4013950 Report fatal errors instead of segfaulting/asserting on a few invalid accesses while reading MachO files. by Filipe Cabecinhas · 11 years ago
  66. 7e0692b [Object] Add SF_Exported flag. This flag will be set on all symbols that would by Lang Hames · 11 years ago
  67. e71bd0c Don't loop endlessly for MachO files with 0 ncmds by Filipe Cabecinhas · 11 years ago
  68. 48ef534 Add printing the LC_THREAD load commands with llvm-objdump’s -private-headers. by Kevin Enderby · 11 years ago
  69. 52e4ce4 Add printing the LC_ROUTINES load commands with llvm-objdump’s -private-headers. by Kevin Enderby · 11 years ago
  70. 186eac3 Add printing the LC_SUB_CLIENT load command with llvm-objdump’s -private-headers. by Kevin Enderby · 11 years ago
  71. 36c8d3a Add printing the LC_SUB_LIBRARY load command with llvm-objdump’s -private-headers. by Kevin Enderby · 11 years ago
  72. 4d7f70d [Object] Don't crash on empty export lists. by Juergen Ributzka · 11 years ago
  73. a2bd8d9 Add printing the LC_SUB_UMBRELLA load command with llvm-objdump’s -private-headers. by Kevin Enderby · 11 years ago
  74. b4b7931 Add printing the LC_SUB_FRAMEWORK load command with llvm-objdump’s -private-headers. by Kevin Enderby · 11 years ago
  75. d0b6b7f Add printing the LC_LINKER_OPTION load command with llvm-objdump’s -private-headers. by Kevin Enderby · 11 years ago
  76. 5753829 Add printing the LC_ENCRYPTION_INFO_64 load command with llvm-objdump’s -private-headers by Kevin Enderby · 11 years ago
  77. 0804f467 Add printing the LC_ENCRYPTION_INFO load command with llvm-objdump’s -private-headers. by Kevin Enderby · 11 years ago
  78. 0e77a94 Move three methods only used by MCJIT to MCJIT. by Rafael Espindola · 11 years ago
  79. 00cc1f5 Add mach-o LC_RPATH support to llvm-objdump by Jean-Daniel Dupas · 11 years ago
  80. 73cc6ff Object, Mach-O: Refactor and clean code up by David Majnemer · 11 years ago
  81. 72cdbf4 Remove the static version of getScatteredRelocationType() now that r221211 added by Kevin Enderby · 11 years ago
  82. 9907d0a Add the code and test cases for 32-bit Intel to llvm-objdump’s Mach-O symbolizer. by Kevin Enderby · 11 years ago
  83. 59c74b22 Fix unicode chars into ascii in comment lines. by NAKAMURA Takumi · 11 years ago
  84. 014601d [Object] Fix MachO's getUuid to return a pointer into the object instead of a dangling ArrayRef. by Benjamin Kramer · 11 years ago
  85. 6f326ce Update llvm-objdump’s Mach-O symbolizer code for Objective-C references. by Kevin Enderby · 11 years ago
  86. 2d0d096 [MCJIT] Temporarily revert r220245 - it broke several bots. by Lang Hames · 11 years ago
  87. 84801c2 [MCJIT] Make MCJIT honor symbol visibility settings when populating the global by Lang Hames · 11 years ago
  88. 3b2aa05 [llvm-objdump] Fix mach-o binding decompression error by Nick Kledzik · 11 years ago
  89. 6909b5b Add MachOObjectFile::getUuid() by Alexander Potapenko · 11 years ago
  90. 8029127 Remove bogus std::error_code returns form SectionRef. by Rafael Espindola · 11 years ago
  91. a637536 [Object] keep trailing '\0' out of StringRef when parsing mach-o bindings by Nick Kledzik · 11 years ago
  92. 3006130 [llvm-objdump] properly use c_str() with format("%s"). Improve getLibraryShortNameByIndex() error handling. by Nick Kledzik · 11 years ago
  93. 56ebef4 [llvm-objdump] for mach-o add -bind, -lazy-bind, and -weak-bind options by Nick Kledzik · 11 years ago
  94. ac43144 [llvm-objdump] support -rebase option for mach-o to dump rebasing info by Nick Kledzik · 11 years ago
  95. 8ae63c1 Adds the next bit of support for llvm-objdump’s -private-headers for executable Mach-O files. by Kevin Enderby · 11 years ago
  96. ac7cbdc Code review tweaks by Nick Kledzik · 11 years ago
  97. 1b591bd Fix typo and formatting by Nick Kledzik · 11 years ago
  98. d04bc35 Object/llvm-objdump: allow dumping of mach-o exports trie by Nick Kledzik · 11 years ago
  99. e1d1294 Simplify creation of a bunch of ArrayRefs by using None, makeArrayRef or just letting them be implicitly created. by Craig Topper · 11 years ago
  100. 48af1c2 Don't own the buffer in object::Binary. by Rafael Espindola · 11 years ago