Skip to content
  1. Dec 29, 2007
  2. Dec 13, 2007
  3. Dec 05, 2007
  4. Dec 02, 2007
  5. Dec 01, 2007
  6. Nov 13, 2007
  7. Nov 11, 2007
  8. Nov 05, 2007
    • Duncan Sands's avatar
      Eliminate the remaining uses of getTypeSize. This · 283207a7
      Duncan Sands authored
      should only effect x86 when using long double.  Now
      12/16 bytes are output for long double globals (the
      exact amount depends on the alignment).  This brings
      globals in line with the rest of LLVM: the space
      reserved for an object is now always the ABI size.
      One tricky point is that only 10 bytes should be
      output for long double if it is a field in a packed
      struct, which is the reason for the additional
      argument to EmitGlobalConstant.
      
      llvm-svn: 43688
      283207a7
  9. Oct 19, 2007
  10. Oct 18, 2007
  11. Oct 14, 2007
  12. Oct 12, 2007
  13. Oct 10, 2007
  14. Oct 05, 2007
  15. Sep 26, 2007
  16. Sep 25, 2007
  17. Sep 11, 2007
  18. Sep 07, 2007
  19. Aug 30, 2007
  20. Aug 03, 2007
  21. Jul 27, 2007
  22. Jul 25, 2007
  23. Jul 21, 2007
  24. Jul 19, 2007
    • Evan Cheng's avatar
      Change instruction description to split OperandList into OutOperandList and · 94b5a80b
      Evan Cheng authored
      InOperandList. This gives one piece of important information: # of results
      produced by an instruction.
      An example of the change:
      def ADD32rr  : I<0x01, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2),
                       "add{l} {$src2, $dst|$dst, $src2}",
                       [(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
      =>
      def ADD32rr  : I<0x01, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2),
                       "add{l} {$src2, $dst|$dst, $src2}",
                       [(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>;
      
      llvm-svn: 40033
      94b5a80b
  25. Jul 14, 2007
    • Anton Korobeynikov's avatar
      Long live the exception handling! · 383a3247
      Anton Korobeynikov authored
      This patch fills the last necessary bits to enable exceptions
      handling in LLVM. Currently only on x86-32/linux.
      
      In fact, this patch adds necessary intrinsics (and their lowering) which
      represent really weird target-specific gcc builtins used inside unwinder.
      
      After corresponding llvm-gcc patch will land (easy) exceptions should be
      more or less workable. However, exceptions handling support should not be 
      thought as 'finished': I expect many small and not so small glitches
      everywhere.
      
      llvm-svn: 39855
      383a3247
    • Evan Cheng's avatar
      Fix for PR1540: Specify F0, F1 are sub-registers of D0, etc. · 1fae1cd3
      Evan Cheng authored
      llvm-svn: 39843
      1fae1cd3
  26. Jul 13, 2007
  27. Jul 11, 2007
  28. Jul 09, 2007
  29. Jun 29, 2007
  30. Jun 22, 2007
  31. May 18, 2007
  32. May 03, 2007
  33. May 02, 2007
  34. May 01, 2007
Loading