Skip to content
  1. May 02, 2006
  2. Apr 25, 2006
  3. Apr 22, 2006
  4. Feb 09, 2006
  5. Jan 31, 2006
  6. Jan 23, 2006
  7. Jan 07, 2006
  8. Aug 01, 2005
  9. Jul 30, 2005
  10. Jul 28, 2005
    • Andrew Lenharth's avatar
      Like constants, globals on some platforms are GOT relative. This means they have to be allocated · 3444cf51
      Andrew Lenharth authored
      near the GOT, which new doesn't do.  So break out the allocate into a new function.
      
      Also move GOT index handling into JITResolver.  This lets it update the mapping when a Lazy
      function is JITed.  It doesn't managed the table, just the mapping.  Note that this is
      still non-ideal, as any function that takes a function address should also take a GOT
      index, but that is a lot of changes.  The relocation resolve process updates any GOT entry
      it sees is out of date.
      
      llvm-svn: 22537
      3444cf51
  11. Jul 27, 2005
  12. Jul 26, 2005
  13. Jul 22, 2005
  14. Jul 20, 2005
  15. Jul 12, 2005
    • Reid Spencer's avatar
      For PR540: · 79876f52
      Reid Spencer authored
      This patch completes the changes for making lli thread-safe. Here's the list
      of changes:
      * The Support/ThreadSupport* files were removed and replaced with the
        MutexGuard.h file since all ThreadSupport* declared was a Mutex Guard.
        The implementation of MutexGuard.h is now based on sys::Mutex which hides
        its implementation and makes it unnecessary to have the -NoSupport.h and
        -PThreads.h versions of ThreadSupport.
      
      * All places in ExecutionEngine that previously referred to "Mutex" now
        refer to sys::Mutex
      
      * All places in ExecutionEngine that previously referred to "MutexLocker"
        now refer to MutexGuard (this is frivolous but I believe the technically
        correct name for such a class is "Guard" not a "Locker").
      
      These changes passed all of llvm-test. All we need now are some test cases
      that actually use multiple threads.
      
      llvm-svn: 22404
      79876f52
  16. Apr 22, 2005
  17. Apr 18, 2005
  18. Mar 17, 2005
  19. Feb 20, 2005
  20. Jan 10, 2005
  21. Jan 08, 2005
  22. Dec 13, 2004
  23. Dec 05, 2004
  24. Dec 01, 2004
  25. Nov 30, 2004
  26. Nov 22, 2004
  27. Nov 21, 2004
  28. Nov 20, 2004
  29. Nov 19, 2004
  30. Nov 16, 2004
    • Chris Lattner's avatar
      Now that we have ghost linkage, we can force resolution of external symbols · 1edd79a1
      Chris Lattner authored
      immediately instead of lazily.
      
      In this program, for example:
      
      int main() {
        printf("hello world\n");
        printf("hello world\n");
        printf("hello world\n");
        printf("hello world\n");
      }
      
      We used to have to go through compilation callback 4 times (once for each
      call to printf), now we don't go to it at all.
      
      Thanks to Misha for noticing this, and for adding the initial ghost linkage
      patches.
      
      llvm-svn: 17864
      1edd79a1
  31. Oct 29, 2004
Loading