Skip to content
  1. Dec 18, 2007
  2. Nov 14, 2007
  3. Nov 09, 2007
    • Evan Cheng's avatar
      Much improved pic jumptable codegen: · 797d56ff
      Evan Cheng authored
      Then:
              call    "L1$pb"
      "L1$pb":
              popl    %eax
      		...
      LBB1_1: # entry
              imull   $4, %ecx, %ecx
              leal    LJTI1_0-"L1$pb"(%eax), %edx
              addl    LJTI1_0-"L1$pb"(%ecx,%eax), %edx
              jmpl    *%edx
      
              .align  2
              .set L1_0_set_3,LBB1_3-LJTI1_0
              .set L1_0_set_2,LBB1_2-LJTI1_0
              .set L1_0_set_5,LBB1_5-LJTI1_0
              .set L1_0_set_4,LBB1_4-LJTI1_0
      LJTI1_0:
              .long    L1_0_set_3
              .long    L1_0_set_2
      
      Now:
              call    "L1$pb"
      "L1$pb":
              popl    %eax
      		...
      LBB1_1: # entry
              addl    LJTI1_0-"L1$pb"(%eax,%ecx,4), %eax
              jmpl    *%eax
      
      		.align  2
      		.set L1_0_set_3,LBB1_3-"L1$pb"
      		.set L1_0_set_2,LBB1_2-"L1$pb"
      		.set L1_0_set_5,LBB1_5-"L1$pb"
      		.set L1_0_set_4,LBB1_4-"L1$pb"
      LJTI1_0:
              .long    L1_0_set_3
              .long    L1_0_set_2
      
      llvm-svn: 43924
      797d56ff
  4. Nov 05, 2007
    • Dale Johannesen's avatar
      Make labels work in asm blocks; allow labels as · 4646aa3e
      Dale Johannesen authored
      parameters.  Rename ValueRefList to ParamList
      in AsmParser, since its only use is for parameters.
      
      llvm-svn: 43734
      4646aa3e
    • Duncan Sands's avatar
      Don't output ABI size padding twice. By using the store · f7ae8bd0
      Duncan Sands authored
      size for the field we get ABI padding automatically, so
      no need to put it in again when we emit the field.
      
      llvm-svn: 43720
      f7ae8bd0
    • 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
  5. Oct 14, 2007
  6. Oct 12, 2007
  7. Oct 08, 2007
  8. Oct 02, 2007
  9. Sep 28, 2007
  10. Sep 27, 2007
  11. Sep 24, 2007
  12. Sep 18, 2007
  13. Sep 14, 2007
  14. Sep 12, 2007
  15. Sep 11, 2007
  16. Sep 06, 2007
  17. Aug 22, 2007
  18. Jul 30, 2007
  19. Jul 26, 2007
  20. Jun 04, 2007
  21. May 31, 2007
  22. May 03, 2007
  23. May 02, 2007
  24. May 01, 2007
  25. Apr 30, 2007
  26. Apr 29, 2007
  27. Apr 28, 2007
  28. Apr 25, 2007
  29. Apr 24, 2007
  30. Apr 23, 2007
  31. Mar 06, 2007
  32. Feb 21, 2007
  33. Feb 16, 2007
Loading