Skip to content
  1. Sep 12, 2007
  2. Aug 23, 2007
  3. Jul 05, 2007
  4. Jul 03, 2007
  5. May 06, 2007
  6. Mar 06, 2007
  7. Feb 13, 2007
  8. Jan 19, 2007
  9. Jan 07, 2007
  10. Dec 31, 2006
    • Reid Spencer's avatar
      For PR950: · bc013ba3
      Reid Spencer authored
      Convert signed integer types to signless.
      
      llvm-svn: 32786
      bc013ba3
  11. Dec 23, 2006
    • Reid Spencer's avatar
      For PR950: · 266e42b3
      Reid Spencer authored
      This patch removes the SetCC instructions and replaces them with the ICmp
      and FCmp instructions. The SetCondInst instruction has been removed and
      been replaced with ICmpInst and FCmpInst.
      
      llvm-svn: 32751
      266e42b3
  12. Dec 07, 2006
  13. Dec 01, 2006
    • Reid Spencer's avatar
      For PR1019: · d4399925
      Reid Spencer authored
      Add HAVE_PTHREAD to makefiles with support from configure and use it to
      determine whether to build examples/ParallelJIT.
      Patch by Anton Korobeynikov.
      
      llvm-svn: 32054
      d4399925
  14. Nov 29, 2006
  15. Oct 20, 2006
    • Reid Spencer's avatar
      For PR950: · e0fc4dfc
      Reid Spencer authored
      This patch implements the first increment for the Signless Types feature.
      All changes pertain to removing the ConstantSInt and ConstantUInt classes
      in favor of just using ConstantInt.
      
      llvm-svn: 31063
      e0fc4dfc
  16. Sep 04, 2006
  17. Jul 29, 2006
  18. Jul 28, 2006
  19. Jun 01, 2006
  20. May 29, 2006
  21. May 14, 2006
  22. Mar 24, 2006
  23. Mar 03, 2006
  24. Oct 23, 2005
    • Jeff Cohen's avatar
      When a function takes a variable number of pointer arguments, with a zero · 11e26b52
      Jeff Cohen authored
      pointer marking the end of the list, the zero *must* be cast to the pointer
      type.  An un-cast zero is a 32-bit int, and at least on x86_64, gcc will
      not extend the zero to 64 bits, thus allowing the upper 32 bits to be
      random junk.
      
      The new END_WITH_NULL macro may be used to annotate a such a function
      so that GCC (version 4 or newer) will detect the use of un-casted zero
      at compile time.
      
      llvm-svn: 23888
      11e26b52
  25. Aug 24, 2005
    • Reid Spencer's avatar
      For PR616: · f85fabeb
      Reid Spencer authored
      These patches make threading optional in LLVM. The configuration scripts are now
      modified to accept a --disable-threads switch. If this is used, the Mutex class
      will be implemented with all functions as no-op. Furthermore, linking against
      libpthread will not be done. Finally, the ParallelJIT example needs libpthread
      so its makefile was changed to always add -lpthread to the link line.
      
      llvm-svn: 23003
      f85fabeb
  26. Jul 27, 2005
  27. Jul 14, 2005
  28. Jul 13, 2005
  29. Jul 12, 2005
    • Reid Spencer's avatar
      For PR418: · 6855097c
      Reid Spencer authored
      Add an example program that utilizes multiple threads in the JIT to process
      work. This was used by Evan Jones as the original test case for ensuring
      that the ExecutionEngine was thread safe.
      
      Original source by Evan Jones (adapted from other LLVM JIT examples) and
      made LLVM style compliant by Reid Spencer.
      
      llvm-svn: 22411
      6855097c
  30. May 06, 2005
  31. Apr 22, 2005
  32. Apr 20, 2005
  33. Mar 15, 2005
Loading