Skip to content
  1. Sep 01, 2010
  2. Aug 20, 2010
  3. Aug 18, 2010
  4. Aug 06, 2010
  5. Jul 29, 2010
  6. Jul 12, 2010
  7. Jun 09, 2010
  8. May 27, 2010
  9. May 14, 2010
  10. Apr 17, 2010
  11. Apr 15, 2010
  12. Mar 24, 2010
  13. Mar 22, 2010
  14. Feb 18, 2010
  15. Jan 27, 2010
    • Jeffrey Yasskin's avatar
      Kill ModuleProvider and ghost linkage by inverting the relationship between · 091217be
      Jeffrey Yasskin authored
      Modules and ModuleProviders. Because the "ModuleProvider" simply materializes
      GlobalValues now, and doesn't provide modules, it's renamed to
      "GVMaterializer". Code that used to need a ModuleProvider to materialize
      Functions can now materialize the Functions directly. Functions no longer use a
      magic linkage to record that they're materializable; they simply ask the
      GVMaterializer.
      
      Because the C ABI must never change, we can't remove LLVMModuleProviderRef or
      the functions that refer to it. Instead, because Module now exposes the same
      functionality ModuleProvider used to, we store a Module* in any
      LLVMModuleProviderRef and translate in the wrapper methods.  The bindings to
      other languages still use the ModuleProvider concept.  It would probably be
      worth some time to update them to follow the C++ more closely, but I don't
      intend to do it.
      
      Fixes http://llvm.org/PR5737 and http://llvm.org/PR5735.
      
      llvm-svn: 94686
      091217be
  16. Jan 24, 2010
  17. Jan 22, 2010
  18. Jan 18, 2010
  19. Jan 17, 2010
  20. Jan 05, 2010
  21. Dec 09, 2009
  22. Nov 30, 2009
  23. Nov 03, 2009
  24. Oct 22, 2009
  25. Oct 14, 2009
  26. Sep 11, 2009
    • Dan Gohman's avatar
      Fix llvm-extract's "writing bitcode to a terminal" warning, which wasn't · e5929236
      Dan Gohman authored
      working. To support this, add an is_displayed() function to raw_ostream,
      and generalize Process::StandardOutIsDisplayed and friends in order to
      support it.
      
      Also, call RemoveFileOnSignal before creating a file instead of after, so
      that the file isn't left behind if the program is interrupted between when
      the file is created and RemoveFileOnSignal is called.
      
      While here, add a -S to llvm-extract and port it to IRReader so that it
      supports assembly input.
      
      llvm-svn: 81568
      e5929236
Loading