aboutsummaryrefslogtreecommitdiff
path: root/tools/llvm-objdump/llvm-objdump.cpp
AgeCommit message (Expand)Author
2013-04-25Clarify getRelocationAddress x getRelocationOffset a bit.Rafael Espindola
2013-04-18At Jim Grosbach's request detemplate Object/MachO.h.Rafael Espindola
2013-04-16llvm-objdump: Don't print contents of BSS sections: it makes no sense and cra...Alexey Samsonov
2013-04-13Finish templating MachObjectFile over endianness.Rafael Espindola
2013-04-09Convert MachOObjectFile to a template.Rafael Espindola
2013-04-05Don't fetch pointers from a InMemoryStruct.Rafael Espindola
2013-04-03Don't disassemble symbols with an unknown address or size.Eric Christopher
2013-02-12Add static cast to unsigned char whenever a character classification function...Guy Benyei
2013-02-05[objdump,readobj] Document the purpose and goals of each tool.Michael J. Spencer
2013-01-21Remove unneeded #include.Jakub Staszak
2013-01-10[llvm-objdump] Emit addresses with the correct number of leading 0's.Michael J. Spencer
2013-01-06[objdump] Add --private-headers, -p.Michael J. Spencer
2012-12-21Add a function to get the segment name of a section.Rafael Espindola
2012-12-19Revert 170545 while I debug the ppc failures.Rafael Espindola
2012-12-19Add r170095 back.Rafael Espindola
2012-12-13Revert "Add a funciton to get the segment name of a section."Eric Christopher
2012-12-13Add a funciton to get the segment name of a section.Rafael Espindola
2012-12-05Add dump of Win64 EH unwind data.Michael J. Spencer
2012-12-04Sort the #include lines for tools/...Chandler Carruth
2012-11-20Add the -no-show-raw-insn option to llvm-objdump, thus making it a bit moreEli Bendersky
2012-08-28Some of the instructions in the Mips instruction set are revisionJack Carter
2012-08-07Tidy up a bit.Jim Grosbach
2012-05-08Fix it so llvm-objdump -arch does accept x86 and x86-64 as valid arch names.Kevin Enderby
2012-05-03PR12729: Change 'llvm-objdump' to display the available targets.Pete Cooper
2012-04-02Make MCInstrInfo available to the MCInstPrinter. This will be used to remove ...Craig Topper
2012-03-23Include cctype for std::isprint.Benjamin Kramer
2012-03-10Fix uses of the C99 PRI format macros not to conflict with C++11 UDLs.Benjamin Kramer
2012-03-05Make MCRegisterInfo available to the the MCInstPrinter.Jim Grosbach
2012-02-29[Object] Add symbol attribute flags: ST_ThreadLocal, ST_Common, and ST_Undefi...David Meyer
2012-02-28In the ObjectFile interface, replace isInternal(), isAbsolute(), isGlobal(), ...David Meyer
2012-02-03Fix llvm-objdump disassembly for interesting Mach-O binaries, e.g. any MacOSCameron Zwarich
2011-12-20Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_...David Blaikie
2011-11-29Fixed ObjectFile functions:Danil Malyshev
2011-11-27Revert r145180 as it is causing test failures on all the bots.Chandler Carruth
2011-11-27Fixed ObjectFile functions:Danil Malyshev
2011-11-16llvm-objdump: Ignore non-objects in archives.Michael J. Spencer
2011-10-28uint64 formatted output: replaced %llx with PRIx64 macro.Stepan Dyatkovskiy
2011-10-27Revert r143149, stubbing out symbolic disassembly support. The symbolic disa...Owen Anderson
2011-10-27Stub out support for symbol disassembly in llvm-objdump.Owen Anderson
2011-10-27Fixed llvm-objdump uint64_t formatted output.Stepan Dyatkovskiy
2011-10-25Add support for the notion of "hidden" relocations. On MachO, these are relo...Owen Anderson
2011-10-25Fix off-by-one error when printing relocations inline with disassembly.Owen Anderson
2011-10-18llvm-objdump: Add static symbol table dumping.Michael J. Spencer
2011-10-18Revert "llvm-objdump: Add static symbol table dumping."Michael J. Spencer
2011-10-17llvm-objdump: Add static symbol table dumping.Michael J. Spencer
2011-10-17llvm-objdump: Add -s, which prints the contents of each section.Michael J. Spencer
2011-10-13llvm-object: Add inline relocation information to disassembly.Michael J. Spencer
2011-10-13llvm-objdump: Fix whitespace.Michael J. Spencer
2011-10-13llvm-objdump: Fix dumping of multiple symbols with the same address.Michael J. Spencer
2011-10-11llvm-objdump.cpp: Use PRIx64 as format specifier for int64_t.NAKAMURA Takumi