Skip to content
  1. Nov 01, 2012
  2. Oct 29, 2012
  3. Oct 12, 2012
  4. Oct 05, 2012
    • NAKAMURA Takumi's avatar
      lli: [MCJIT] Suppress "__main" for cygming in... · a549b51a
      NAKAMURA Takumi authored
      lli: [MCJIT] Suppress "__main" for cygming in LLIMCJITMemoryManager::getPointerToNamedFunction(), like legacy JITMemoryManager's.
      
      CRT's __main (aka premain) invokes global ctors on cygming. See also PR3897.
      
      llvm-svn: 165312
      a549b51a
  5. Sep 20, 2012
  6. Sep 05, 2012
    • Jim Grosbach's avatar
      MCJIT: Add faux remote target execution to lli for the MCJIT. · 0f435d08
      Jim Grosbach authored
      Simulate a remote target address space by allocating a seperate chunk of
      memory for the target and re-mapping section addresses to that prior to
      execution. Later we'll want to have a truly remote process, but for now
      this gets us closer to being able to test the remote target
      functionality outside LLDB.
      
      rdar://12157052
      
      llvm-svn: 163216
      0f435d08
  7. Aug 29, 2012
    • Jim Grosbach's avatar
      LLI: move instruction cache tweaks. · 748b9478
      Jim Grosbach authored
      Invalidate the instruction cache right before we start actually executing code, otherwise
      we can miss some that came later. This is still not quite right for a truly lazilly
      compiled environment, but it's closer.
      
      llvm-svn: 162803
      748b9478
  8. May 20, 2012
  9. May 19, 2012
  10. May 16, 2012
  11. Apr 29, 2012
  12. Apr 18, 2012
  13. Mar 13, 2012
  14. Jan 16, 2012
  15. Jan 11, 2012
  16. Oct 16, 2011
  17. Aug 24, 2011
  18. Jul 20, 2011
  19. Jul 19, 2011
  20. Mar 18, 2011
    • Jim Grosbach's avatar
      Beginnings of MC-JIT code generation. · 7b162490
      Jim Grosbach authored
      Proof-of-concept code that code-gens a module to an in-memory MachO object.
      This will be hooked up to a run-time dynamic linker library (see: llvm-rtdyld
      for similarly conceptual work for that part) which will take the compiled
      object and link it together with the rest of the system, providing back to the
      JIT a table of available symbols which will be used to respond to the
      getPointerTo*() queries.
      
      llvm-svn: 127916
      7b162490
  21. Nov 29, 2010
  22. Nov 17, 2010
  23. Nov 13, 2010
  24. Oct 22, 2010
  25. Aug 28, 2010
  26. Apr 15, 2010
  27. Feb 05, 2010
  28. 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
  29. Oct 27, 2009
  30. Oct 21, 2009
  31. Oct 16, 2009
  32. Aug 24, 2009
    • Chris Lattner's avatar
      Prune #includes from llvm/Linker.h and llvm/System/Path.h, · c521f541
      Chris Lattner authored
      forcing them down into various .cpp files.
      
      This change also:
      1. Renames TimeValue::toString() and Path::toString() to ::str()
         for similarity with the STL.
      2. Removes all stream insertion support for sys::Path, forcing
         clients to call .str().
      3. Removes a use of Config/alloca.h from bugpoint, using smallvector
         instead.
      4. Weans llvm-db off <iostream>
      
      sys::Path really needs to be gutted, but I don't have the desire to
      do it at this point.
      
      llvm-svn: 79869
      c521f541
  33. Aug 13, 2009
  34. Aug 05, 2009
Loading