1. 308f663 Rollback changes r89516: Added two SubtargetFeatures::AddFeatures methods, which accept a comma-separated string or already parsed command line parameters as input, and some code re-factoring to use these new methods. by Viktor Kutuzov · 15 years ago
  2. f87ea4d Add the rest of the build system logic for optional target disassemblers by Daniel Dunbar · 15 years ago
  3. 054b52c Added two SubtargetFeatures::AddFeatures methods, which accept a comma-separated string or already parsed command line parameters as input, and some code re-factoring to use these new methods. by Viktor Kutuzov · 15 years ago
  4. e0ace0c Make example/Hello compile again. by Mikhail Glushenkov · 15 years ago
  5. e823db8 Added getDefaultSubtargetFeatures method to SubtargetFeatures class which returns a correct feature string for given triple. by Viktor Kutuzov · 15 years ago
  6. 51cdac0 Added getArchNameForAssembler method to the Triple class for which returns OS and Vendor independent target assembler arch. by Viktor Kutuzov · 15 years ago
  7. 3ea11cf Make bugpoint pass -load arguments to LLI. This lets one use bugpoint with by Duncan Sands · 15 years ago
  8. 05872ea Add compare_lower and equals_lower methods to StringRef. Switch all users of by Benjamin Kramer · 15 years ago
  9. e9b88e4 Stop running get_target_triple more than we need to. by Daniel Dunbar · 15 years ago
  10. b908f8a Make opt default to not adding a target data string and update tests that depend on target data to supply it within the test by Kenneth Uildriks · 15 years ago
  11. f4e748b Line this up as well. by Nick Lewycky · 15 years ago
  12. ed1f168 Fix whitespace. by Nick Lewycky · 15 years ago
  13. 076124e Reverting 85714, 85715, 85716, which are breaking the build by Douglas Gregor · 15 years ago
  14. b2fae75 Remove the #include of Pass.h from PassManager.h. This breaks a significant by Dan Gohman · 15 years ago
  15. 5c00b4a Fix to pass options from Gold plugin to LTO codegen by Viktor Kutuzov · 15 years ago
  16. 18fec73 Revert the API changes from r85295 to make it easier for people to build by Jeffrey Yasskin · 15 years ago
  17. dc85724 Change the JIT to compile eagerly by default as agreed in by Jeffrey Yasskin · 15 years ago
  18. 8b67f77 Move DataTypes.h to include/llvm/System, update all users. This breaks the last by Chandler Carruth · 15 years ago
  19. 3e4102e Document OptionPreprocessor. by Mikhail Glushenkov · 15 years ago
  20. 09b5d90 Include config.h in order to have HAVE_STDINT_H be defined. by Duncan Sands · 15 years ago
  21. 316e326 llvm-ld doesn't throw. by Chris Lattner · 15 years ago
  22. 42a8832 this doesn't use EH either. by Chris Lattner · 15 years ago
  23. 61db1a1 nothing opt uses can throw, remove the try block and -fexceptions when by Chris Lattner · 15 years ago
  24. d331cb3 Add some command line options for twiddling the default data layout by Chris Lattner · 15 years ago
  25. db1d9db Added more options to mcc16 driver. by Sanjiv Gupta · 15 years ago
  26. 4e61387 Clarify documentation on multi_val options. by Mikhail Glushenkov · 15 years ago
  27. 4cdc5bb Delete the MacOSJITEventListener per echristo's request. It was disabled by by Jeffrey Yasskin · 15 years ago
  28. 0a22fb6 First draft of the OptionPreprocessor. by Mikhail Glushenkov · 15 years ago
  29. 6b4967e -O[0-3] options should be also forwarded to opt and llc. by Mikhail Glushenkov · 15 years ago
  30. 79ec717 llvm-as: Simplify, and don't create empty output files with -disable-output. by Daniel Dunbar · 15 years ago
  31. bf57b52 Add a CodeGenOpt::Less level to match -O1. It'll be used by clients which do not want post-regalloc scheduling. by Evan Cheng · 15 years ago
  32. e00b011 MC: Remove unneeded context argument to MCExpr::Evaluate*. by Daniel Dunbar · 15 years ago
  33. 75773ff MC: Tweak variable assignment diagnostics, and make reassignment of non-absolute by Daniel Dunbar · 15 years ago
  34. fffff91 MC: When parsing a variable reference, substitute absolute variables immediately by Daniel Dunbar · 15 years ago
  35. 81b0b64 There seems to be no reason for opt's -S option to be hidden. Make it visible. by Duncan Sands · 15 years ago
  36. c469e9f Fix Makefile to build correctly on Darwin. Patch by Sandeep Patel! by Nick Lewycky · 15 years ago
  37. aba210b Slight rewording. by Mikhail Glushenkov · 15 years ago
  38. 3ab6889 Use llvm-as only for compiling .ll -> .bc. by Mikhail Glushenkov · 15 years ago
  39. 976248d Unbreak the build. by Mikhail Glushenkov · 15 years ago
  40. 6d80d2b Make the Base plugin understand -MF and -MT. by Mikhail Glushenkov · 15 years ago
  41. ac53a0b Introduce and use convenience methods for getting pointer types by Duncan Sands · 15 years ago
  42. dbf75e8 remove llvm-db: it is completely broken and if anyone wants to do a debugger, by Chris Lattner · 15 years ago
  43. 144034e CMake: remove .so file extension from library names when building by Oscar Fuentes · 15 years ago
  44. ad981bf Add a way to query the number of input files. by Mikhail Glushenkov · 15 years ago
  45. d66e8de Document the 'not' combinator. by Mikhail Glushenkov · 15 years ago
  46. ebb89b4 add a new DirectiveMap stringmap, which allows more efficient dispatching by Chris Lattner · 15 years ago
  47. cec5450 avoid copying MCAsmInfo by value, add an (extremely low prio) fixme. by Chris Lattner · 15 years ago
  48. 42985bb Make llvm-bcanalyzer percentages more readable. by Daniel Dunbar · 15 years ago
  49. 80ba3d2 Strip trailing whitespace. by Daniel Dunbar · 15 years ago
  50. 0cad4e3 Print INST_INBOUNDS_GEP rather than UnknownCode30. by Duncan Sands · 15 years ago
  51. 4136e7b pretty mechanical changes to match coding guidelines (blessed by sabre on IRC) by Gabor Greif · 15 years ago
  52. bf6f085 Fix llvm-config --src-root and --obj-root for CMake builds. by Daniel Dunbar · 15 years ago
  53. eba6b26 llvm-config: Remove unused variables. by Daniel Dunbar · 15 years ago
  54. e895c61 Add an intel syntax MCInstPrinter implementation. You can now by Chris Lattner · 15 years ago
  55. c332fba Remove the default value for ConstantStruct::get's isPacked parameter and by Nick Lewycky · 15 years ago
  56. e8e0213 Write and read metadata attachments. by Devang Patel · 15 years ago
  57. d81c450 Now that llc can read .ll files directly, teach it to recognize .ll as by Dan Gohman · 15 years ago
  58. b5db830 Fixed some problems with the logic of parsing line comments by adding by Kevin Enderby · 15 years ago
  59. 3a9f68b Make cmake generated llvm-config output correct JIT backend for non X86 targets. by Xerxes Ranby · 15 years ago
  60. 3b13d36 use an accessor to simplify code. by Chris Lattner · 15 years ago
  61. a93f30e Give llvm-link a -S option. by Dan Gohman · 15 years ago
  62. 04fc8c8 Don't bother using a PassManager just to print a Module. by Dan Gohman · 15 years ago
  63. 90edac0 Change MCAsmStreamer to take an MCInstPrinter instead of a by Chris Lattner · 15 years ago
  64. d624154 Convert llvm-link to IRReader. by Dan Gohman · 15 years ago
  65. dc91e54 De-bork CMake build. llvm-extract depends on asmparser by Douglas Gregor · 15 years ago
  66. ec08046 Fix llvm-extract's "writing bitcode to a terminal" warning, which wasn't by Dan Gohman · 15 years ago
  67. 9c65645 Added the ParseInstruction() hook for target specific assembler directives so by Kevin Enderby · 15 years ago
  68. 57a7e94 Allow llvmc to take .bc files as input. by Mikhail Glushenkov · 15 years ago
  69. 8018f5d fix leakage of Module by Nuno Lopes · 15 years ago
  70. b8b7052 MC: Give target specific parsers access to the MCStreamer. by Daniel Dunbar · 15 years ago
  71. 68ccdaa Add -output-prefix option to bugpoint (to change the default output name). by Daniel Dunbar · 15 years ago
  72. 12fd767 Fix an integer truncation noticed by MSVC. by Benjamin Kramer · 15 years ago
  73. 8c042c2 opt: Add -S option to print output as LLVM assembly. by Daniel Dunbar · 15 years ago
  74. fb0f0de Added AsmToken enum constants to MCAsmLexer.h for '[', ']', '{', and '}' in by Kevin Enderby · 15 years ago
  75. 9823ca9 Added the AsmToken::Hash enum constant to MCAsmLexer.h in preparation of by Kevin Enderby · 15 years ago
  76. 7b4608d Removed the non-target independent AsmToken::Register enum constant by Kevin Enderby · 15 years ago
  77. dad45ea Make bugpoint use ParseIRFile instead of doing the same thing manually. by Dan Gohman · 15 years ago
  78. 99ed416 Use IRReader.h in opt, to support reading of LLVM Assembly files directly. by Dan Gohman · 15 years ago
  79. a9eb359 TAI -> MAI by Chris Lattner · 15 years ago
  80. 2b991bb Tweak comment. by Daniel Dunbar · 15 years ago
  81. 05bb526 Unbreak my CMake build. Say you'll link again. by Douglas Gregor · 15 years ago
  82. 778b06b Switch llc from ParseBitcodeFile to ParseIRFile. This lets llc by Dan Gohman · 15 years ago
  83. 821e333 llvm-mc: Pass values to MCStreamer as MCExprs, not MCValues. by Daniel Dunbar · 15 years ago
  84. e2ace50 llvm-mc: Simplify EmitAssignment ('.set' is identical to '='). by Daniel Dunbar · 15 years ago
  85. 883f920 llvm-mc: Remove MCAsmParser::Parse[Paren]RelocatableExpression. by Daniel Dunbar · 15 years ago
  86. c18274b llvm-mc: Add MCAsmParser::Parse[Paren]Expression forms which return an MCExpr. by Daniel Dunbar · 15 years ago
  87. 6ce004d llvm-mc: Add MCAsmParser::getContext. by Daniel Dunbar · 15 years ago
  88. 9643ac5 llvm-mc: Switch MCExpr construction to using static member functions, and taking the MCContext (which now owns all MCExprs). by Daniel Dunbar · 15 years ago
  89. 28c251b llvm-mc: Move AsmExpr into MC lib (as MCExpr). by Daniel Dunbar · 15 years ago
  90. 3061108 only print the override triple if it exists! by Chris Lattner · 15 years ago
  91. 5095e3d Fix some nasty callgraph dangling pointer problems in by Chris Lattner · 15 years ago
  92. 7092c7e llvm-mc: MCStreamer cleanups. - Remove EmitLocalSymbol, this is unsupported for now. by Daniel Dunbar · 15 years ago
  93. 79331b2 Since all std::cout is gone, also remove iostream include. by Andreas Neustifter · 15 years ago
  94. e6cdbf2 llvm-mc: Emit .lcomm as .zerofill. by Daniel Dunbar · 15 years ago
  95. 2e15292 llvm-mc: Unique zero fill sections. by Daniel Dunbar · 15 years ago
  96. bdee6df Revert r80305, I forgot a dependent change. by Daniel Dunbar · 15 years ago
  97. 58b5068 llvm-mc: Unique sections in .zerofill. by Daniel Dunbar · 15 years ago
  98. 6205048 Inverse logic to increase portability. by Benjamin Kramer · 15 years ago
  99. 1eb6baa To make mcc16 run correctly on mac. by Sanjiv Gupta · 15 years ago
  100. 4fac749 llvm-mc/Mach-O: Add MCCodeEmitter support, for encoding instructions. by Daniel Dunbar · 15 years ago