Skip to content
  1. Jul 26, 2005
  2. Jul 22, 2005
  3. Jul 20, 2005
  4. 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
  5. Apr 22, 2005
  6. Apr 18, 2005
  7. Mar 17, 2005
  8. Feb 20, 2005
  9. Jan 10, 2005
  10. Jan 08, 2005
  11. Dec 13, 2004
  12. Dec 05, 2004
  13. Dec 01, 2004
  14. Nov 30, 2004
  15. Nov 22, 2004
  16. Nov 21, 2004
  17. Nov 20, 2004
  18. Nov 19, 2004
  19. 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
  20. Oct 29, 2004
  21. Sep 14, 2004
  22. Sep 11, 2004
  23. Sep 02, 2004
    • Reid Spencer's avatar
      Changes For Bug 352 · 7c16caa3
      Reid Spencer authored
      Move include/Config and include/Support into include/llvm/Config,
      include/llvm/ADT and include/llvm/Support. From here on out, all LLVM
      public header files must be under include/llvm/.
      
      llvm-svn: 16137
      7c16caa3
  24. May 28, 2004
  25. May 27, 2004
  26. Apr 23, 2004
  27. Feb 08, 2004
  28. Dec 20, 2003
  29. Dec 08, 2003
  30. Nov 30, 2003
  31. Nov 17, 2003
  32. Nov 11, 2003
Loading