Skip to content
  1. 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
  2. Nov 08, 2007
  3. Nov 06, 2007
  4. Nov 05, 2007
    • Lauro Ramos Venancio's avatar
      [ARM] Fix code generation for: · 1a30c18e
      Lauro Ramos Venancio authored
      static __thread struct {
          int a;
          int b;
      } teste = {0, 0};
      
      llvm-svn: 43722
      1a30c18e
    • 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 31, 2007
  6. Oct 25, 2007
  7. Oct 23, 2007
  8. Oct 19, 2007
  9. Oct 18, 2007
  10. Oct 14, 2007
  11. Oct 12, 2007
  12. Oct 08, 2007
  13. Oct 05, 2007
  14. Oct 03, 2007
  15. Sep 30, 2007
  16. Sep 26, 2007
  17. Sep 25, 2007
  18. Sep 21, 2007
  19. Sep 20, 2007
  20. Sep 19, 2007
  21. Sep 14, 2007
  22. Sep 12, 2007
  23. Sep 11, 2007
  24. Sep 10, 2007
  25. Sep 07, 2007
  26. Aug 31, 2007
Loading