Skip to content
  1. Dec 31, 2007
    • Chris Lattner's avatar
      Rename SSARegMap -> MachineRegisterInfo in keeping with the idea · a10fff51
      Chris Lattner authored
      that "machine" classes are used to represent the current state of
      the code being compiled.  Given this expanded name, we can start 
      moving other stuff into it.  For now, move the UsedPhysRegs and
      LiveIn/LoveOuts vectors from MachineFunction into it.
      
      Update all the clients to match.
      
      This also reduces some needless #includes, such as MachineModuleInfo
      from MachineFunction.
      
      llvm-svn: 45467
      a10fff51
    • Chris Lattner's avatar
      Add new shorter predicates for testing machine operands for various types: · a5bb370a
      Chris Lattner authored
      e.g. MO.isMBB() instead of MO.isMachineBasicBlock().  I don't plan on 
      switching everything over, so new clients should just start using the 
      shorter names.
      
      Remove old long accessors, switching everything over to use the short
      accessor: getMachineBasicBlock() -> getMBB(), 
      getConstantPoolIndex() -> getIndex(), setMachineBasicBlock -> setMBB(), etc.
      
      llvm-svn: 45464
      a5bb370a
  2. Dec 30, 2007
  3. Dec 29, 2007
  4. Dec 18, 2007
  5. Nov 14, 2007
  6. 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
  7. 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
  8. Oct 14, 2007
  9. Oct 12, 2007
  10. Oct 08, 2007
  11. Oct 02, 2007
  12. Sep 28, 2007
  13. Sep 27, 2007
  14. Sep 24, 2007
  15. Sep 18, 2007
  16. Sep 14, 2007
  17. Sep 12, 2007
  18. Sep 11, 2007
  19. Sep 06, 2007
  20. Aug 22, 2007
  21. Jul 30, 2007
  22. Jul 26, 2007
  23. Jun 04, 2007
  24. May 31, 2007
  25. May 03, 2007
  26. May 02, 2007
  27. May 01, 2007
  28. Apr 30, 2007
  29. Apr 29, 2007
  30. Apr 28, 2007
  31. Apr 25, 2007
  32. Apr 24, 2007
  33. Apr 23, 2007
Loading