1. a3a2dfd build: Add initial cut at LLVMBuild.txt files. by Daniel Dunbar · 13 years ago
  2. 62b2fea llvm-config-2: Implement component dependency traversal, implement support for 'all', and fix a few other minor bugs. by Daniel Dunbar · 13 years ago
  3. 7fdd291 llvm-config: Start stubbing out a C++ version of llvm-config (as llvm-config-2, by Daniel Dunbar · 13 years ago
  4. cde5464 Remove some cruft from the BitcodeWriter, while still maintaining backward by Chad Rosier · 13 years ago
  5. 05a484b Add back the top-level target for 'llvm-config' and the dependency edge by Chandler Carruth · 13 years ago
  6. 47c30da build/Make: Get rid of llvm-config-perobj, which isn't used anymore. by Daniel Dunbar · 13 years ago
  7. 89975e5 build/CMake: Remove llvm-config.target used to serialize tool builds on by Daniel Dunbar · 13 years ago
  8. 613b757 First part of support for generating dwarf for assembly source files with the by Kevin Enderby · 13 years ago
  9. 0173864 rename getHostTriple into getDefaultTargetTriple by Sebastian Pop · 13 years ago
  10. 597362a A couple misc fixes so that bugpoint doesn't explode reducing code containing landingpads. by Eli Friedman · 13 years ago
  11. 4e478fe Switch new .file directive emission off by default, change llc's flag for it to by Nick Lewycky · 13 years ago
  12. 9df3b91 uint64 formatted output: replaced %llx with PRIx64 macro. by Stepan Dyatkovskiy · 13 years ago
  13. ee826c8 Have llvm-config --cppflags print correct flags when in CMake build directory by Peter Collingbourne · 13 years ago
  14. 33ba8b0 Remove the Alpha backend. by Dan Gohman · 13 years ago
  15. 10c044e Revert r143149, stubbing out symbolic disassembly support. The symbolic disassembly support is too MC-engrained to be useful in llvm-objdump. by Owen Anderson · 13 years ago
  16. f1b7448 Stub out support for symbol disassembly in llvm-objdump. by Owen Anderson · 13 years ago
  17. 6eb1ed8 Fixed llvm-objdump uint64_t formatted output. by Stepan Dyatkovskiy · 13 years ago
  18. 9472b8d Expand relocation type field to 64 bits. MachO scattered relocations require 33 bits of type info. by Owen Anderson · 13 years ago
  19. 232b1f2 llvm-nm: Use correct format string. Patch by Stepan Dyatkovskiy! by Michael J. Spencer · 13 years ago
  20. 0685e94 Add support for the notion of "hidden" relocations. On MachO, these are relocation entries that are used as additional information for other, real relocations, rather than being relocations themselves. by Owen Anderson · 13 years ago
  21. 34749ce Fix off-by-one error when printing relocations inline with disassembly. by Owen Anderson · 13 years ago
  22. 22ff0f3 llvm-objdump: Add static symbol table dumping. by Michael J. Spencer · 13 years ago
  23. 8c39c96 build: Tidy up a bunch of tool Makefiles, and simplify where possible using the by Daniel Dunbar · 13 years ago
  24. bfe2a6b llvm-ar: Remove local test target, this is no longer useful. by Daniel Dunbar · 13 years ago
  25. a6b1929 llvm-config: Add an all-targets pseudo-component. by Daniel Dunbar · 13 years ago
  26. 4984d64 Revert "llvm-objdump: Add static symbol table dumping." by Michael J. Spencer · 13 years ago
  27. b12715d llvm-objdump: Add static symbol table dumping. by Michael J. Spencer · 13 years ago
  28. 44d798d Add support for a new extension to the .file directive: by Nick Lewycky · 13 years ago
  29. 481837a Rewrite most of MachODump to work through the generic libObject interfaces rather than accessing the MachO internals directly. by Owen Anderson · 13 years ago
  30. 1e8ba3f llvm-objdump: Add -s, which prints the contents of each section. by Michael J. Spencer · 13 years ago
  31. 3a35a38 tools/CMakeLists.txt: Fixup r142103. I don't remember why I had missed the line. by NAKAMURA Takumi · 13 years ago
  32. 3f2d5f6 Make SMDiagnostic a little more sane. Instead of passing around note/warning/error as a by Chris Lattner · 13 years ago
  33. d8b7aa2 Enhance llvm::SourceMgr to support diagnostic ranges, the same way clang does. Enhance by Chris Lattner · 13 years ago
  34. 4025061 CMake: Introduce LLVM_CLANG_SOURCE_DIR, "tools/clang" by default. Clang will not be built if LLVM_CLANG_SOURCE_DIR="" or ${LLVM_CLANG_SOURCE_DIR}/CMakeLists.txt is not found. by NAKAMURA Takumi · 13 years ago
  35. e5ab51d autoconf: Introduce --with-clang-srcdir, to build out-of-tree clang as tools/clang on tools/Makefile. by NAKAMURA Takumi · 13 years ago
  36. 942eb00 llvm-object: Add inline relocation information to disassembly. by Michael J. Spencer · 13 years ago
  37. 14a5f46 llvm-objdump: Fix whitespace. by Michael J. Spencer · 13 years ago
  38. 178dbd4 llvm-objdump: Fix dumping of multiple symbols with the same address. by Michael J. Spencer · 13 years ago
  39. f048c3f llvm-objdump.cpp: Use PRIx64 as format specifier for int64_t. by NAKAMURA Takumi · 13 years ago
  40. 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
  41. 023bb15 Add support for dumping section headers to llvm-objdump. This uses the same by Nick Lewycky · 13 years ago
  42. d226ed71 llvm-objdump: Take ownership of MCInstrInfos. by Benjamin Kramer · 13 years ago
  43. 1a9908d llvm-nm: Don't leak bitcode buffers. by Benjamin Kramer · 13 years ago
  44. 27781b7 llvm-objdump: Add relocation and archive support. by Michael J. Spencer · 13 years ago
  45. 2099039 Fix a few changes I missed. by Michael J. Spencer · 13 years ago
  46. 01a4db3 Fix GCC again. by Michael J. Spencer · 13 years ago
  47. 3773fb4 Fix spelling in comment. by Michael J. Spencer · 13 years ago
  48. 4344b1e Change relocation API to be per section. This time without breaking GCC. by Michael J. Spencer · 13 years ago
  49. a48ad13 Revert 141376 and 141377 due to breaking the build. by Bill Wendling · 13 years ago
  50. 67370ef Fix spelling in comment. by Michael J. Spencer · 13 years ago
  51. f1164a2 Change relocation API to be per section. by Michael J. Spencer · 13 years ago
  52. 1e97def Update cmake list. by Devang Patel · 13 years ago
  53. 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
  54. e97552e Exclude libLLVMTableGen.a from the shared library by Peter Collingbourne · 13 years ago
  55. 0066f92 Simplify. by Devang Patel · 13 years ago
  56. a5ef699 Clarify comments. by Devang Patel · 13 years ago
  57. 8d6c0fb Remove unnecessary and unused data member. by Devang Patel · 13 years ago
  58. 7a50202 Cosmetic changes, as per Nick's review. by Devang Patel · 13 years ago
  59. f47e870 Fix build failures better. by Andrew Trick · 13 years ago
  60. 7f3654d Fix build failure. by Daniel Dunbar · 13 years ago
  61. 75c4aba llvm-size: Apply Chris's code review fixes. by Michael J. Spencer · 13 years ago
  62. 7da52dd Fix cast. by Michael J. Spencer · 13 years ago
  63. 32a12ba Add llvm-size. by Michael J. Spencer · 13 years ago
  64. d02c42b Introduce llvm-cov. by Devang Patel · 13 years ago
  65. 9142ae2 Add binary archive support to llvm-nm. by Michael J. Spencer · 13 years ago
  66. afbaf48 llvm-objdump: Detach symbol listing from section enumeration for mach-o. by Benjamin Kramer · 13 years ago
  67. 91c603b llvm-objdump: Take the data from the right object when there's no dSYM around. by Benjamin Kramer · 13 years ago
  68. b5b8d20 llvm-objdump: Fix use after free. by Benjamin Kramer · 13 years ago
  69. 8c93097 llvm-objdump: Output line info next to the disassembly if available. by Benjamin Kramer · 13 years ago
  70. a894c8e llvm-objdump: factor code better, add comments. by Benjamin Kramer · 13 years ago
  71. 6ddbcdf Remove llvmc from CMake as well. by Eric Christopher · 13 years ago
  72. f117506 Remove llvmc and assorted build machinery for it. by Eric Christopher · 13 years ago
  73. bcc1a73 Nope, there's another one! by Benjamin Kramer · 13 years ago
  74. 49ca96d Missed one instance of implicit pointer conversion. by Benjamin Kramer · 13 years ago
  75. 4d90638 Try to make MSVC 2010 happy. by Benjamin Kramer · 13 years ago
  76. 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
  77. 4e0a55d Add -rfunc and -rglob options to llvm-extract to support regular by Chad Rosier · 13 years ago
  78. 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
  79. 71280b5 use 64-bit types instead of off_t/size_t to avoid the issue when by Ivan Krasin · 13 years ago
  80. 6b3ae46 llvm-dwarfdump: Add an option to print out line info for a specific address by Benjamin Kramer · 13 years ago
  81. 34f864f DWARF: wire up .debug_str dumping. by Benjamin Kramer · 13 years ago
  82. b848e97 DWARF: Add basic support for line tables. by Benjamin Kramer · 13 years ago
  83. 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
  84. ac241fe Object: make the following changes into SymbolRef by Benjamin Kramer · 13 years ago
  85. 358f4fd DWARF: Port support for parsing .debug_aranges section from LLDB and wire it up to llvm-dwarfdump. by Benjamin Kramer · 13 years ago
  86. 72c0d7f Sketch out a DWARF parser. by Benjamin Kramer · 13 years ago
  87. ccb7c90 gold plugin: don't report error on non-bitcode (e.g. ELF) files. by Ivan Krasin · 13 years ago
  88. c170f5f gold plugin: report errors occured in lto_module_create_from_* by Ivan Krasin · 13 years ago
  89. 6d483c2 lto/addAsmGlobalSymbols: fast path when no module level asm is present. by Ivan Krasin · 13 years ago
  90. 603e103 lto/addAsmGlobalSymbols: fail fracefully when the target does not define AsmParser. by Ivan Krasin · 13 years ago
  91. 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
  92. fec0c6f As a (rather delayed) followup to r136738 which stopped building the by Chandler Carruth · 13 years ago
  93. 36a1601 Don't drop alignment info on local common symbols. by Benjamin Kramer · 13 years ago
  94. d452246 Teach macho-dump to dump the uleb128s referred to by linkedit_data segments. by Benjamin Kramer · 13 years ago
  95. 9942aca Teach macho-dump how to dump linkedit_data load commands. by Benjamin Kramer · 13 years ago
  96. 3e74d6f Move TargetRegistry and TargetSelect from Target to Support where they belong. by Evan Cheng · 13 years ago
  97. 7801136 Some refactoring so TargetRegistry.h no longer has to include any files from MC. by Evan Cheng · 13 years ago
  98. 3f0e237 Fixed compilation warning on Linux by fixing the type of a return value. by John Criswell · 13 years ago
  99. 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
  100. 1b84cce Remove unused Target argument from AsmParser construction methods. by Jim Grosbach · 13 years ago