aboutsummaryrefslogtreecommitdiff
path: root/llvm/tools/llvm-objdump/llvm-objdump.h
AgeCommit message (Expand)AuthorFilesLines
2016-11-30[WebAssembly] Add llvm-objdump support for wasm file formatDerek Schuff1-0/+1
2016-11-16General clean up of error handling in llvm-objdump to remove its use of repor...Kevin Enderby1-0/+1
2016-08-18llvm-objdump: add coff import library symbol listing supportSaleem Abdulrasool1-0/+2
2016-06-28Finish cleaning up most of the error handling in libObject’s MachOUniversal...Kevin Enderby1-0/+1
2016-05-31Change llvm-objdump, llvm-nm and llvm-size when reporting an object file errorKevin Enderby1-3/+8
2016-05-17Change llvm-objdump, llvm-nm and llvm-size when reporting an object file errorKevin Enderby1-1/+9
2016-04-18[NFC] Header cleanupMehdi Amini1-1/+2
2016-04-06Thread Expected<...> up from createMachOObjectFile() to allow llvm-objdump to...Kevin Enderby1-0/+1
2016-01-26Re-submit r256008 "Improve DWARFDebugFrame::parse to also handle __eh_frame."Igor Laevsky1-0/+2
2016-01-13For llvm-objdump, add the option -private-header (without the trailing ’s’)Kevin Enderby1-0/+2
2015-12-29[llvm-objdump] Mark noreturn function as such.Davide Italiano1-1/+2
2015-12-20[llvm-objdump] Move COFF function to where it belongs.Davide Italiano1-0/+1
2015-12-18Revert "Improve DWARFDebugFrame::parse to also handle __eh_frame."Pete Cooper1-2/+0
2015-12-18Improve DWARFDebugFrame::parse to also handle __eh_frame.Pete Cooper1-0/+2
2015-12-08[llvm-objdump/MachO] Don't cut'n'paste the same code over and over.Davide Italiano1-0/+1
2015-08-05[llvm-objdump] Call exit(1) on error, i.e. fail early.Davide Italiano1-1/+1
2015-07-29[llvm-objdump] Merging MachO DumpSections in to FilterSections. Simplifying ...Colin LeMahieu1-2/+1
2015-07-29[llvm-objdump] Added -j flag to filter sections that are operated on.Colin LeMahieu1-1/+2
2015-07-23[llvm-objdump] Add -D and --disassemble-all flags that attempt disassembly on...Colin LeMahieu1-1/+2
2015-07-08llvm-objdump: Replace the -macho -raw option with a generic -raw-clang-astAdrian Prantl1-1/+2
2015-06-07[objdump] Moving PrintImmHex out of MachODump and in to llvm-objdump and sett...Colin LeMahieu1-0/+1
2015-05-28[llvm] Parameterizing the output stream for dumpbytes and outputting directly...Colin LeMahieu1-1/+0
2015-04-01Add the option -objc-meta-data to llvm-objdump used with -macho toKevin Enderby1-1/+1
2015-03-27Add a -raw option to the -section mode of llvm-objdump.Adrian Prantl1-0/+1
2015-03-18[Objdump] DumpBytes of uint8_t from ArrayRef<uint8_t> instead of char from St...Colin LeMahieu1-1/+1
2015-03-17Add the option, -dis-symname to llvm-objdump used with -macho andKevin Enderby1-0/+1
2015-03-16Add the options, -dylibs-used and -dylib-id to llvm-objdump used with -machoKevin Enderby1-0/+2
2015-03-13Add the option, -non-verbose to llvm-objdump used with -macho to print thingsKevin Enderby1-0/+1
2015-03-11Add the option, -info-plist to llvm-objdump used with -macho to print theKevin Enderby1-0/+1
2015-01-31Add the -section option to llvm-objdump used with -macho that takes the argumentKevin Enderby1-0/+1
2015-01-27dd the option, -link-opt-hints to llvm-objdump used with -macho to print theKevin Enderby1-0/+1
2015-01-23Add the option, -data-in-code, to llvm-objdump used with -macho to print the ...Kevin Enderby1-0/+1
2015-01-22Add the option, -indirect-symbols, used with -macho to print the Mach-O indir...Kevin Enderby1-0/+1
2015-01-20For llvm-objdump, hook up existing options to work when using -macho (the Mac...Kevin Enderby1-0/+9
2015-01-15Add the option, -archive-headers, used with -macho to print the Mach-O archiv...Kevin Enderby1-0/+1
2015-01-09Add the option, -universal-headers, used with -macho to print the Mach-O univ...Kevin Enderby1-0/+1
2015-01-07Slightly refactor things for llvm-objdump and the -macho option so it can be ...Kevin Enderby1-1/+13
2014-11-12Remove the now unused StringRefMemoryObject.h.Rafael Espindola1-1/+0
2014-09-24Flush out enough of llvm-objdump’s SymbolizerSymbolLookUp() for Mach-O file...Kevin Enderby1-0/+1
2014-09-16[llvm-objdump] for mach-o add -bind, -lazy-bind, and -weak-bind optionsNick Kledzik1-0/+3
2014-09-12[llvm-objdump] support -rebase option for mach-o to dump rebasing infoNick Kledzik1-0/+1
2014-08-30Object/llvm-objdump: allow dumping of mach-o exports trieNick Kledzik1-1/+1
2014-08-22Add the start of the support for llvm-objdump’s -private-headers for Mach-O...Kevin Enderby1-0/+1
2014-08-13Canonicalize header guards into a common format.Benjamin Kramer1-2/+2
2014-08-06Add the -mcpu= option to llvm-objdump for use with the disassemblers.Kevin Enderby1-0/+2
2014-08-01llvm-objdump: implement printing for MachO __compact_unwind info.Tim Northover1-0/+3
2014-06-13Remove all uses of 'using std::error_code' from headers.Rafael Espindola1-3/+1
2014-06-12Don't use 'using std::error_code' in include/llvm.Rafael Espindola1-0/+1
2014-06-11Use std::error_code instead of llvm::error_code.Rafael Espindola1-1/+0
2013-09-27Re-submit r191472 with a fix for big endian.Rui Ueyama1-1/+2