1. 942eb00 llvm-object: Add inline relocation information to disassembly. by Michael J. Spencer · 13 years ago
  2. 14a5f46 llvm-objdump: Fix whitespace. by Michael J. Spencer · 13 years ago
  3. 178dbd4 llvm-objdump: Fix dumping of multiple symbols with the same address. by Michael J. Spencer · 13 years ago
  4. f048c3f llvm-objdump.cpp: Use PRIx64 as format specifier for int64_t. by NAKAMURA Takumi · 13 years ago
  5. f1f1a4f Make it possible to use the linker without destroying the source module. This is so the source module can be linked to multiple other destination modules. For all that used LinkModules() before, they will continue to destroy the source module as before. by Tanya Lattner · 13 years ago
  6. 023bb15 Add support for dumping section headers to llvm-objdump. This uses the same by Nick Lewycky · 13 years ago
  7. d226ed71 llvm-objdump: Take ownership of MCInstrInfos. by Benjamin Kramer · 13 years ago
  8. 1a9908d llvm-nm: Don't leak bitcode buffers. by Benjamin Kramer · 13 years ago
  9. 27781b7 llvm-objdump: Add relocation and archive support. by Michael J. Spencer · 13 years ago
  10. 2099039 Fix a few changes I missed. by Michael J. Spencer · 13 years ago
  11. 01a4db3 Fix GCC again. by Michael J. Spencer · 13 years ago
  12. 3773fb4 Fix spelling in comment. by Michael J. Spencer · 13 years ago
  13. 4344b1e Change relocation API to be per section. This time without breaking GCC. by Michael J. Spencer · 13 years ago
  14. a48ad13 Revert 141376 and 141377 due to breaking the build. by Bill Wendling · 13 years ago
  15. 67370ef Fix spelling in comment. by Michael J. Spencer · 13 years ago
  16. f1164a2 Change relocation API to be per section. by Michael J. Spencer · 13 years ago
  17. 1e97def Update cmake list. by Devang Patel · 13 years ago
  18. 58c6200 Put GCOVFile and other related interface in a common header so that llvm-cov tool can share it with GCOV writer. by Devang Patel · 13 years ago
  19. e97552e Exclude libLLVMTableGen.a from the shared library by Peter Collingbourne · 13 years ago
  20. 0066f92 Simplify. by Devang Patel · 13 years ago
  21. a5ef699 Clarify comments. by Devang Patel · 13 years ago
  22. 8d6c0fb Remove unnecessary and unused data member. by Devang Patel · 13 years ago
  23. 7a50202 Cosmetic changes, as per Nick's review. by Devang Patel · 13 years ago
  24. f47e870 Fix build failures better. by Andrew Trick · 13 years ago
  25. 7f3654d Fix build failure. by Daniel Dunbar · 13 years ago
  26. 75c4aba llvm-size: Apply Chris's code review fixes. by Michael J. Spencer · 13 years ago
  27. 7da52dd Fix cast. by Michael J. Spencer · 13 years ago
  28. 32a12ba Add llvm-size. by Michael J. Spencer · 13 years ago
  29. d02c42b Introduce llvm-cov. by Devang Patel · 13 years ago
  30. 9142ae2 Add binary archive support to llvm-nm. by Michael J. Spencer · 13 years ago
  31. afbaf48 llvm-objdump: Detach symbol listing from section enumeration for mach-o. by Benjamin Kramer · 13 years ago
  32. 91c603b llvm-objdump: Take the data from the right object when there's no dSYM around. by Benjamin Kramer · 13 years ago
  33. b5b8d20 llvm-objdump: Fix use after free. by Benjamin Kramer · 13 years ago
  34. 8c93097 llvm-objdump: Output line info next to the disassembly if available. by Benjamin Kramer · 13 years ago
  35. a894c8e llvm-objdump: factor code better, add comments. by Benjamin Kramer · 13 years ago
  36. 6ddbcdf Remove llvmc from CMake as well. by Eric Christopher · 13 years ago
  37. f117506 Remove llvmc and assorted build machinery for it. by Eric Christopher · 13 years ago
  38. bcc1a73 Nope, there's another one! by Benjamin Kramer · 13 years ago
  39. 49ca96d Missed one instance of implicit pointer conversion. by Benjamin Kramer · 13 years ago
  40. 4d90638 Try to make MSVC 2010 happy. by Benjamin Kramer · 13 years ago
  41. 0b8b771 Add a MachO-specific "mode" to llvm-objdump, that, if enabled, gathers additional information that are only available on MachO. by Benjamin Kramer · 13 years ago
  42. 4e0a55d Add -rfunc and -rglob options to llvm-extract to support regular by Chad Rosier · 13 years ago
  43. 98c5dda Don't attach annotations to MCInst's. Instead, have the disassembler return, and the printer accept, an annotation string which can be passed through if the client cares about annotations. by Owen Anderson · 13 years ago
  44. 71280b5 use 64-bit types instead of off_t/size_t to avoid the issue when by Ivan Krasin · 13 years ago
  45. 6b3ae46 llvm-dwarfdump: Add an option to print out line info for a specific address by Benjamin Kramer · 13 years ago
  46. 34f864f DWARF: wire up .debug_str dumping. by Benjamin Kramer · 13 years ago
  47. b848e97 DWARF: Add basic support for line tables. by Benjamin Kramer · 13 years ago
  48. 1c0b24f llvm-dwarfdump: Make the "is debug info section" heuristic stricter so it doesn't accidentaly picks up the wrong section. by Benjamin Kramer · 13 years ago
  49. ac241fe Object: make the following changes into SymbolRef by Benjamin Kramer · 13 years ago
  50. 358f4fd DWARF: Port support for parsing .debug_aranges section from LLDB and wire it up to llvm-dwarfdump. by Benjamin Kramer · 13 years ago
  51. 72c0d7f Sketch out a DWARF parser. by Benjamin Kramer · 13 years ago
  52. ccb7c90 gold plugin: don't report error on non-bitcode (e.g. ELF) files. by Ivan Krasin · 13 years ago
  53. c170f5f gold plugin: report errors occured in lto_module_create_from_* by Ivan Krasin · 13 years ago
  54. 6d483c2 lto/addAsmGlobalSymbols: fast path when no module level asm is present. by Ivan Krasin · 13 years ago
  55. 603e103 lto/addAsmGlobalSymbols: fail fracefully when the target does not define AsmParser. by Ivan Krasin · 13 years ago
  56. b950585 Refactor instprinter and mcdisassembler to take a SubtargetInfo. Add -mattr= handling to llvm-mc. Reviewed by Owen Anderson. by James Molloy · 13 years ago
  57. fec0c6f As a (rather delayed) followup to r136738 which stopped building the by Chandler Carruth · 13 years ago
  58. 36a1601 Don't drop alignment info on local common symbols. by Benjamin Kramer · 13 years ago
  59. d452246 Teach macho-dump to dump the uleb128s referred to by linkedit_data segments. by Benjamin Kramer · 13 years ago
  60. 9942aca Teach macho-dump how to dump linkedit_data load commands. by Benjamin Kramer · 13 years ago
  61. 3e74d6f Move TargetRegistry and TargetSelect from Target to Support where they belong. by Evan Cheng · 13 years ago
  62. 7801136 Some refactoring so TargetRegistry.h no longer has to include any files from MC. by Evan Cheng · 13 years ago
  63. 3f0e237 Fixed compilation warning on Linux by fixing the type of a return value. by John Criswell · 13 years ago
  64. 83e3f67 Allow the MCDisassembler to return a "soft fail" status code, indicating an instruction that is disassemblable, but invalid. Only used for ARM UNPREDICTABLE instructions at the moment. by Owen Anderson · 13 years ago
  65. 1b84cce Remove unused Target argument from AsmParser construction methods. by Jim Grosbach · 13 years ago
  66. b2c4eea Fix bugpoint fallout from the new type system. by Nick Lewycky · 13 years ago
  67. 1f6a329 Silence a bunch (but not all) "variable written but not read" warnings by Duncan Sands · 13 years ago
  68. 41ab14b Add MCInstrAnalysis class. This allows the targets to specify own versions of MCInstrDescs functions. by Benjamin Kramer · 13 years ago
  69. c13464f llvm-objdump: disassembly enhancements by Benjamin Kramer · 13 years ago
  70. a21d813 llvm-objdump: Use help of CFG to print assembly when --cfg is passed. by Benjamin Kramer · 13 years ago
  71. 2626dba Remove the LowerSetJmp pass. It wasn't used effectively by any of the targets. by Bill Wendling · 13 years ago
  72. a9362ca Kill the export list as well. by Evan Cheng · 13 years ago
  73. 779fa1b lldb doesn't need the edis dylib any more. by Evan Cheng · 13 years ago
  74. c684e83 Move methods in PassManagerBuilder offline. by Rafael Espindola · 13 years ago
  75. 3d453ac move PassManagerBuilder.h to IPO. This is a non intuitive place to put it, by Rafael Espindola · 13 years ago
  76. 3401a90 Switch the CMake edis build over to add_llvm_library_dependencies by Douglas Gregor · 13 years ago
  77. ac03e73 Rewrite the CMake build to use explicit dependencies between libraries, by Chandler Carruth · 13 years ago
  78. d6dcf39 Fix llvm-mc target detection code to match llc. by Evan Cheng · 13 years ago
  79. 5e0ac58 Don't try to dereference syms[0] on an empty vector. Reported by Todd Jackson by Nick Lewycky · 13 years ago
  80. 28c85a8 Rename createCodeEmitter to createMCCodeEmitter; createObjectStreamer to createMCObjectStreamer. by Evan Cheng · 13 years ago
  81. 94b9550 Rename TargetAsmParser to MCTargetAsmParser and TargetAsmLexer to MCTargetAsmLexer; rename createAsmLexer to createMCAsmLexer and createAsmParser to createMCAsmParser. by Evan Cheng · 13 years ago
  82. 78c10ee Rename TargetAsmBackend to MCAsmBackend; rename createAsmBackend to createMCAsmBackend. by Evan Cheng · 13 years ago
  83. dbc46d7 I will save before I commit. by Benjamin Kramer · 13 years ago
  84. 853b0fd llvm-objdump: Ignore unreachable blocks when printing the CFG. by Benjamin Kramer · 13 years ago
  85. 4b64e8a Separate MCInstPrinter registration from AsmPrinter registration. by Evan Cheng · 13 years ago
  86. fce6b50 Fix typo. by Nick Lewycky · 13 years ago
  87. 1b0fc9b Fix last bits of MC layer issues. llvm-mc doesn't need to initialize TargetMachine's anymore. by Evan Cheng · 13 years ago
  88. 5fe5203 Builds llvmc and its examples with CMake. by Oscar Fuentes · 13 years ago
  89. 796f925 Fixes VS support for llvmc mcc16 llvmc example. by Oscar Fuentes · 13 years ago
  90. a7cfc08 Move TargetAsmParser.h TargetAsmBackend.h and TargetAsmLexer.h to MC where they belong. by Evan Cheng · 13 years ago
  91. e78085a Combine all MC initialization routines into one. e.g. InitializeX86MCAsmInfo, by Evan Cheng · 13 years ago
  92. a503ede llvm-objdump: Don't ignore errors from raw_fd_ostream. by Benjamin Kramer · 13 years ago
  93. 83a162e llvm-objdump: Skip branches that leave the current function. by Benjamin Kramer · 13 years ago
  94. 4039313 Move the registered target printing in version strings completely out of by Chandler Carruth · 13 years ago
  95. dab3d29 Convert ConstantExpr::getGetElementPtr and by Jay Foad · 13 years ago
  96. c3d48ce Unbreak the MSVC build. Since the "next" function already exists in the MSVC headers, we need the explicit llvm:: qualifier to prevent a conflict. by Francois Pichet · 13 years ago
  97. 203576a Goodbye TargetAsmInfo. This eliminate last bit of CodeGen and Target in llvm-mc. by Evan Cheng · 13 years ago
  98. 8eda131 Fix cmake. by Benjamin Kramer · 13 years ago
  99. 685a250 Sketch out an CFG reconstruction mode for llvm-objdump. by Benjamin Kramer · 13 years ago
  100. 34ad6db - Move CodeModel from a TargetMachine global option to MCCodeGenInfo. by Evan Cheng · 13 years ago