Skip to content
  1. Mar 01, 2010
  2. Feb 28, 2010
  3. Feb 27, 2010
  4. Feb 26, 2010
    • Chris Lattner's avatar
      switch from my nice hashtable based merging solution to a · 4f9a671a
      Chris Lattner authored
      gross little neighbor merging implementation.  This one has
      the benefit of not violating the ordering of patterns, so it
      generates code that passes tests again.
      
      llvm-svn: 97218
      4f9a671a
    • Chris Lattner's avatar
      finish off the factoring optimization along the lines of the · be5b634c
      Chris Lattner authored
      current design.  This generates a matcher that successfully
      runs, but it turns out that the factoring we're doing violates
      the ordering of patterns, so we end up matching (e.g.) movups
      where we want movaps.  This won't due, but I'll address this in
      a follow on patch.  It's nice to not be on by default yet! :)
      
      llvm-svn: 97215
      be5b634c
  5. Feb 25, 2010
  6. Feb 24, 2010
  7. 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
  8. Dec 29, 2007
  9. Aug 03, 2006
  10. Jul 27, 2005
  11. Apr 25, 2005
  12. Apr 22, 2005
  13. Feb 17, 2005
  14. Aug 12, 2004
  15. Mar 12, 2004
Loading