| Commit message (Expand) | Author | Age | Files | Lines |
* | Revert "llvm-objdump: Add static symbol table dumping." | Michael J. Spencer | 2011-10-18 | 1 | -118/+1 |
* | llvm-objdump: Add static symbol table dumping. | Michael J. Spencer | 2011-10-17 | 1 | -1/+118 |
* | Rewrite most of MachODump to work through the generic libObject interfaces ra... | Owen Anderson | 2011-10-17 | 1 | -169/+183 |
* | llvm-objdump: Add -s, which prints the contents of each section. | Michael J. Spencer | 2011-10-17 | 1 | -5/+52 |
* | llvm-object: Add inline relocation information to disassembly. | Michael J. Spencer | 2011-10-13 | 1 | -6/+48 |
* | llvm-objdump: Fix whitespace. | Michael J. Spencer | 2011-10-13 | 1 | -1/+1 |
* | llvm-objdump: Fix dumping of multiple symbols with the same address. | Michael J. Spencer | 2011-10-13 | 1 | -1/+12 |
* | llvm-objdump.cpp: Use PRIx64 as format specifier for int64_t. | NAKAMURA Takumi | 2011-10-11 | 1 | -1/+1 |
* | Add support for dumping section headers to llvm-objdump. This uses the same | Nick Lewycky | 2011-10-10 | 1 | -1/+39 |
* | llvm-objdump: Take ownership of MCInstrInfos. | Benjamin Kramer | 2011-10-10 | 2 | -8/+2 |
* | llvm-objdump: Add relocation and archive support. | Michael J. Spencer | 2011-10-08 | 2 | -29/+103 |
* | Fix spelling in comment. | Michael J. Spencer | 2011-10-07 | 1 | -3/+3 |
* | Change relocation API to be per section. This time without breaking GCC. | Michael J. Spencer | 2011-10-07 | 1 | -2/+2 |
* | Revert 141376 and 141377 due to breaking the build. | Bill Wendling | 2011-10-07 | 2 | -5/+5 |
* | Fix spelling in comment. | Michael J. Spencer | 2011-10-07 | 1 | -3/+3 |
* | Change relocation API to be per section. | Michael J. Spencer | 2011-10-07 | 1 | -2/+2 |
* | llvm-objdump: Detach symbol listing from section enumeration for mach-o. | Benjamin Kramer | 2011-09-21 | 1 | -19/+16 |
* | llvm-objdump: Take the data from the right object when there's no dSYM around. | Benjamin Kramer | 2011-09-21 | 1 | -11/+13 |
* | llvm-objdump: Fix use after free. | Benjamin Kramer | 2011-09-21 | 1 | -1/+1 |
* | llvm-objdump: Output line info next to the disassembly if available. | Benjamin Kramer | 2011-09-21 | 3 | -53/+156 |
* | llvm-objdump: factor code better, add comments. | Benjamin Kramer | 2011-09-20 | 3 | -159/+183 |
* | Nope, there's another one! | Benjamin Kramer | 2011-09-19 | 1 | -1/+1 |
* | Missed one instance of implicit pointer conversion. | Benjamin Kramer | 2011-09-19 | 1 | -1/+1 |
* | Try to make MSVC 2010 happy. | Benjamin Kramer | 2011-09-19 | 1 | -2/+2 |
* | Add a MachO-specific "mode" to llvm-objdump, that, if enabled, gathers additi... | Benjamin Kramer | 2011-09-19 | 6 | -205/+671 |
* | Don't attach annotations to MCInst's. Instead, have the disassembler return,... | Owen Anderson | 2011-09-15 | 2 | -5/+6 |
* | Object: make the following changes into SymbolRef | Benjamin Kramer | 2011-09-14 | 1 | -1/+1 |
* | Refactor instprinter and mcdisassembler to take a SubtargetInfo. Add -mattr= ... | James Molloy | 2011-09-07 | 1 | -2/+10 |
* | Move TargetRegistry and TargetSelect from Target to Support where they belong. | Evan Cheng | 2011-08-24 | 1 | -2/+2 |
* | Some refactoring so TargetRegistry.h no longer has to include any files | Evan Cheng | 2011-08-23 | 1 | -0/+1 |
* | Add MCInstrAnalysis class. This allows the targets to specify own versions of... | Benjamin Kramer | 2011-08-08 | 3 | -31/+26 |
* | llvm-objdump: disassembly enhancements | Benjamin Kramer | 2011-08-08 | 1 | -1/+19 |
* | llvm-objdump: Use help of CFG to print assembly when --cfg is passed. | Benjamin Kramer | 2011-08-08 | 1 | -15/+44 |
* | I will save before I commit. | Benjamin Kramer | 2011-07-25 | 2 | -1/+3 |
* | llvm-objdump: Ignore unreachable blocks when printing the CFG. | Benjamin Kramer | 2011-07-25 | 2 | -2/+21 |
* | Separate MCInstPrinter registration from AsmPrinter registration. | Evan Cheng | 2011-07-25 | 1 | -5/+0 |
* | Fix last bits of MC layer issues. llvm-mc doesn't need to initialize TargetMa... | Evan Cheng | 2011-07-25 | 1 | -2/+0 |
* | Combine all MC initialization routines into one. e.g. InitializeX86MCAsmInfo, | Evan Cheng | 2011-07-22 | 1 | -3/+1 |
* | llvm-objdump: Don't ignore errors from raw_fd_ostream. | Benjamin Kramer | 2011-07-22 | 1 | -0/+4 |
* | llvm-objdump: Skip branches that leave the current function. | Benjamin Kramer | 2011-07-22 | 1 | -1/+4 |
* | Move the registered target printing in version strings completely out of | Chandler Carruth | 2011-07-22 | 1 | -0/+4 |
* | Unbreak the MSVC build. Since the "next" function already exists in the MSVC ... | Francois Pichet | 2011-07-20 | 1 | -3/+3 |
* | Fix cmake. | Benjamin Kramer | 2011-07-20 | 1 | -0/+1 |
* | Sketch out an CFG reconstruction mode for llvm-objdump. | Benjamin Kramer | 2011-07-20 | 3 | -3/+242 |
* | Fix off-by-one. | Benjamin Kramer | 2011-07-19 | 1 | -1/+1 |
* | Introduce MCCodeGenInfo, which keeps information that can affect codegen | Evan Cheng | 2011-07-19 | 1 | -0/+1 |
* | Teach llvm-objdump to disassemble sections symbol by symbol. | Benjamin Kramer | 2011-07-15 | 1 | -23/+56 |
* | Rename createAsmInfo to createMCAsmInfo and move registration code to MCTarge... | Evan Cheng | 2011-07-14 | 1 | -1/+2 |
* | Remove some unnecessary includes. | Eli Friedman | 2011-07-06 | 1 | -8/+0 |
* | createMCInstPrinter doesn't need TargetMachine anymore. | Evan Cheng | 2011-07-06 | 1 | -15/+1 |