1. 4ab406d LLVMBuild: Remove trailing newline, which irked me. by Daniel Dunbar · 13 years ago
  2. 0d3c223 LLVMBuild: Add description files for the LLVM tools. by Daniel Dunbar · 13 years ago
  3. 8c39c96 build: Tidy up a bunch of tool Makefiles, and simplify where possible using the by Daniel Dunbar · 13 years ago
  4. d8b7aa2 Enhance llvm::SourceMgr to support diagnostic ranges, the same way clang does. Enhance by Chris Lattner · 13 years ago
  5. 3e74d6f Move TargetRegistry and TargetSelect from Target to Support where they belong. by Evan Cheng · 13 years ago
  6. 34ad6db - Move CodeModel from a TargetMachine global option to MCCodeGenInfo. by Evan Cheng · 13 years ago
  7. 4396613 Introduce MCCodeGenInfo, which keeps information that can affect codegen by Evan Cheng · 13 years ago
  8. c943a9a Updated library dependencies. by Oscar Fuentes · 14 years ago
  9. cb3c5d8 Update link components. by Jim Grosbach · 14 years ago
  10. 31649e6 Beginnings of MC-JIT code generation. by Jim Grosbach · 14 years ago
  11. 1f6efa3 Merge System into Support. by Michael J. Spencer · 14 years ago
  12. b977f04 Make MCJIT work with CMake. by Wesley Peck · 14 years ago
  13. 6aec298 MCJIT: Stub out MCJIT implementation, still doesn't do anything useful. by Daniel Dunbar · 14 years ago
  14. 6d13597 lli: Add stub -use-mcjit option, which doesn't currently do anything. by Daniel Dunbar · 14 years ago
  15. 935338b Update CMake. by Daniel Dunbar · 14 years ago
  16. 46a2716 lli: Switch to using ParseIRFile, for consistency with other LLVM tools. by Daniel Dunbar · 14 years ago
  17. a13d14a lli: On Cygwin-1.5, lli crashes at invoking destructors in atexit handler. by NAKAMURA Takumi · 14 years ago
  18. 3a210e2 Revert "CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally." by Michael J. Spencer · 14 years ago
  19. 4e9c939 CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally. by Michael J. Spencer · 14 years ago
  20. 75ebbce Straighten out any triple strings passed on the command line before by Duncan Sands · 14 years ago
  21. 3bb37e9 Simplify ".bc" detection. by Benjamin Kramer · 14 years ago
  22. 6484dd4 fix a crash on "lli ex" or any other file whose name is exactly two by Chris Lattner · 14 years ago
  23. 4688261 Move --march, --mcpu, and --mattr from JIT/TargetSelect.cpp to lli.cpp. by Jeffrey Yasskin · 15 years ago
  24. f0356fe Kill ModuleProvider and ghost linkage by inverting the relationship between by Jeffrey Yasskin · 15 years ago
  25. 43b5f93 make -fno-rtti the default unless a directory builds with REQUIRES_RTTI. by Chris Lattner · 15 years ago
  26. e73a31f Stop building RTTI information for *most* llvm libraries. Notable by Chris Lattner · 15 years ago
  27. 18fec73 Revert the API changes from r85295 to make it easier for people to build by Jeffrey Yasskin · 15 years ago
  28. dc85724 Change the JIT to compile eagerly by default as agreed in by Jeffrey Yasskin · 15 years ago
  29. 4cdc5bb Delete the MacOSJITEventListener per echristo's request. It was disabled by by Jeffrey Yasskin · 15 years ago
  30. 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
  31. 74382b7 Prune #includes from llvm/Linker.h and llvm/System/Path.h, by Chris Lattner · 15 years ago
  32. 1d0be15 Push LLVMContexts through the IntegerType APIs. by Owen Anderson · 15 years ago
  33. d9283ed lli doesn't need <iostream> anymore. by Dan Gohman · 15 years ago
  34. 10b4fc5 Re-committing r76828 with the JIT memory manager changes now that the build by Reid Kleckner · 15 years ago
  35. 4bf3706 Reverting r76825 and r76828, since they caused clang runtime errors and some build failure involving memset. by Reid Kleckner · 15 years ago
  36. 81ce3ed Make the JIT code emitter properly retry and ask for more memory when it runs by Reid Kleckner · 15 years ago
  37. 4dc3136 Switch lli back to using allocate-gvs-with-code behavior. by Daniel Dunbar · 15 years ago
  38. 4b1511b Add EngineBuilder to ExecutionEngine in favor of the five optional argument EE::create(). by Reid Kleckner · 15 years ago
  39. 494d663 Make sure targets are initialized before we do anything, even command line by Daniel Dunbar · 15 years ago
  40. 0d7c695 To simplify the upcoming context-on-type change, switch all command line tools to using the default global context for now. by Owen Anderson · 15 years ago
  41. 65f57c2 Use errs() instead of std::cerr. by Dan Gohman · 15 years ago
  42. 8f6d9a7 Add a --with-oprofile flag to configure, which uses OProfile's agent by Jeffrey Yasskin · 15 years ago
  43. fd15bee Fix lli to print an error and exit when EE returns null but no string. Patch by Chris Lattner · 15 years ago
  44. db9c028 Fix typo: intepreter->interpreter. by Torok Edwin · 15 years ago
  45. 31895e7 Hold the LLVMContext by reference rather than by pointer. by Owen Anderson · 15 years ago
  46. 8b477ed Add a pointer to the owning LLVMContext to Module. This requires threading LLVMContext through a lot by Owen Anderson · 15 years ago
  47. df5a7da Add a JITEventListener interface that gets called back when a new function is by Jeffrey Yasskin · 15 years ago
  48. 2deb58f switch to using llvm/Target/TargetSelect.h by Chris Lattner · 15 years ago
  49. c447ff6 Use Doug's new LLVM_NATIVE_ARCH macro in config.h to link in the native by Chris Lattner · 15 years ago
  50. 712e80e Default llc / lli optimization to "Default", which corresponds to -O1 / -O2. by Evan Cheng · 15 years ago
  51. 98a366d Instead of passing in an unsigned value for the optimization level, use an enum, by Bill Wendling · 15 years ago
  52. cc14d25 Change various llvm utilities to use PrettyStackTraceProgram in by Chris Lattner · 16 years ago
  53. ec740e3 Add command line option -entry-funcion to override entry function (default is main). by Evan Cheng · 16 years ago
  54. 3d01fc7 Initial support for the CMake build system. by Oscar Fuentes · 16 years ago
  55. 3c3bc48 Move X86 assembler printers into separate directory. This allows JIT-only users not to link it in (use 'x86codegen' llvm-config arg for this) by Anton Korobeynikov · 16 years ago
  56. e1a4eda Add -fast command line option to lli. It enables fast codegen path. by Evan Cheng · 16 years ago
  57. 03dace8 Rename -no-lazy to -disable-lazy-compilation. by Evan Cheng · 16 years ago
  58. c290a5b Added command line option -no-lazy to disable JIT lazy compilation. by Evan Cheng · 16 years ago
  59. 21c62da remove attributions from tools. by Chris Lattner · 17 years ago
  60. 5116784 remove attributions from tools/utils makefiles. by Chris Lattner · 17 years ago
  61. 82a13c9 Move the space in overview output for commands out of each of the by Dan Gohman · 17 years ago
  62. a99be51 Here is the bulk of the sanitizing. by Gabor Greif · 17 years ago
  63. 065344d use the new MemoryBuffer interfaces to simplify error reporting in clients. by Chris Lattner · 17 years ago
  64. 744879e switch tools to bitcode from bytecode by Chris Lattner · 17 years ago
  65. c1e6d68 add bitcode reading support, remove eh stuff by Chris Lattner · 17 years ago
  66. 0204032 reset errno to zero on entry to the application's main function. This fixes by Chris Lattner · 17 years ago
  67. 124294b Obtain the exit function before execution just in case the module by Reid Spencer · 18 years ago
  68. f70d677 1. Handle errors around the ModuleProvider. This is necessary since it is by Reid Spencer · 18 years ago
  69. f2e292c push bytecode decompressor out through APIs. Now the bytecode reader by Chris Lattner · 18 years ago
  70. 688b049 For PR411: by Reid Spencer · 18 years ago
  71. c0974a1 fix atexit. This is an overcomplex way of calling exit, but it is required, by Chris Lattner · 18 years ago
  72. f74edf2 this is an overcomplex way to call exit :) by Chris Lattner · 18 years ago
  73. 71d2ec9 For PR950: Convert signed integer types to signless. by Reid Spencer · 18 years ago
  74. ca3aa26 make statistics and timing info print even if the JIT'd program calls exit by Chris Lattner · 18 years ago
  75. c30598b make all llvm tools call llvm_shutdown when they exit, static'ify some stuff. by Chris Lattner · 18 years ago
  76. 43f249a add a new (hidden) -disable-core-files option by Chris Lattner · 18 years ago
  77. 2790152 lli uses LinkAllCodegenComponents, so it needs this. Thanks to by Chris Lattner · 18 years ago
  78. a563208 Use llvm-config instead of magic JIT thing to link in libs by Chris Lattner · 18 years ago
  79. 0b5a504 For PR797: by Reid Spencer · 18 years ago
  80. d3a680a Fix the build on case-sensitive filesystems :( by Chris Lattner · 18 years ago
  81. 13ec702 Introducing plugable register allocators and instruction schedulers. by Jim Laskey · 18 years ago
  82. 0465fa9 Tools require EH for their top-level try blocks. by Chris Lattner · 18 years ago
  83. 2f51914 Get JIT/Interpreter working on Windows again. by Jeff Cohen · 19 years ago
  84. 42d0b45 Fit to 80 columns. by Chris Lattner · 19 years ago
  85. 60844d4 rename option by Chris Lattner · 19 years ago
  86. 3015e60 provide an option to override the target triple in a module from the commandline. by Chris Lattner · 19 years ago
  87. 5209889 Revert my previous patch which broke due to lazy streaming of functions by Chris Lattner · 19 years ago
  88. 48ba822 If a module has a main, but it is defined externally, refuse to run it. by Chris Lattner · 19 years ago
  89. 66c5fd6 When a function takes a variable number of pointer arguments, with a zero by Jeff Cohen · 19 years ago
  90. 3da94ae Remove trailing whitespace by Misha Brukman · 19 years ago
  91. 1ef8bda For PR351: by Reid Spencer · 20 years ago
  92. 8f63178 Use LLVMLIBS=JIT to get JIT libraries by Reid Spencer · 20 years ago
  93. 40a955a We're not doing automake any more by Reid Spencer · 20 years ago
  94. cac731e We won't use automake by Reid Spencer · 20 years ago
  95. 86d341b Initial automake generated Makefile template by Reid Spencer · 20 years ago
  96. 53c8f29 Use the shared Makefile.JIT for JIT-enablement by Misha Brukman · 20 years ago
  97. ce6662f Enable the PowerPC JIT by compiling powerpc.o library into lli by Misha Brukman · 20 years ago
  98. d96cb6e Update to reflect changes in Makefile rules. by Reid Spencer · 20 years ago
  99. 90a2adc Initial version of automake Makefile.am file. by Reid Spencer · 20 years ago
  100. 41605ab Use the SparcV9-marked instr scheduling library by Misha Brukman · 20 years ago