Skip to content
  1. Oct 15, 2008
  2. Oct 08, 2008
  3. Oct 07, 2008
  4. Oct 03, 2008
  5. Oct 02, 2008
    • Dan Gohman's avatar
      Work around an interaction between fast-isel and regalloc=local. The · b158fd75
      Dan Gohman authored
      local register allocator's physreg liveness doesn't recognize subregs,
      so it doesn't know that defs of %ecx that are immediately followed by
      uses of %cl aren't dead. This comes up due to the way fast-isel emits
      shift instructions.
      
      This is a temporary workaround. Arguably, local regalloc should
      handle subreg references correctly. On the other hand, perhaps
      fast-isel should use INSERT_SUBREG instead of just assigning to the
      most convenient super-register of %cl when lowering shifts.
      
      This fixes MultiSource/Benchmarks/MallocBench/espresso,
      MultiSource/Applications/hexxagon, and others, under -fast.
      
      llvm-svn: 56947
      b158fd75
  6. Oct 01, 2008
    • Dan Gohman's avatar
      Split x86's ADJCALLSTACK instructions into 32-bit and 64-bit forms. · 6388dde9
      Dan Gohman authored
      This allows the 64-bit forms to use+def RSP instead of ESP. This
      doesn't fix any real bugs today, but it is more precise and it
      makes the debug dumps on x86-64 look more consistent.
      
      Also, add some comments describing the CALL instructions' physreg
      operand uses and defs.
      
      llvm-svn: 56925
      6388dde9
  7. Sep 30, 2008
  8. Sep 29, 2008
  9. Sep 26, 2008
  10. Sep 25, 2008
    • Devang Patel's avatar
      Large mechanical patch. · 4c758ea3
      Devang Patel authored
      s/ParamAttr/Attribute/g
      s/PAList/AttrList/g
      s/FnAttributeWithIndex/AttributeWithIndex/g
      s/FnAttr/Attribute/g
      
      This sets the stage 
      - to implement function notes as function attributes and 
      - to distinguish between function attributes and return value attributes.
      
      This requires corresponding changes in llvm-gcc and clang.
      
      llvm-svn: 56622
      4c758ea3
    • Dan Gohman's avatar
      PIC support in X86FastISel. · 3691d507
      Dan Gohman authored
      llvm-svn: 56608
      3691d507
  11. Sep 23, 2008
  12. Sep 22, 2008
  13. Sep 21, 2008
  14. Sep 20, 2008
  15. Sep 19, 2008
  16. Sep 18, 2008
  17. Sep 17, 2008
    • Dan Gohman's avatar
      FastISel: For calls, prefer using the callee's address as a constant · af13bf1e
      Dan Gohman authored
      over having it in a register. And wait until after checking type
      legality before requesting that the callee address be placed in a
      register. Also, fix support for calls with void return type.
      
      This speeds up fast-isel isel time by about 15% and reduces
      instruction counts by about 3% overall on certain testcases. It also
      changes many indirect calls to direct calls.
      
      llvm-svn: 56292
      af13bf1e
  18. Sep 11, 2008
  19. Sep 10, 2008
  20. Sep 09, 2008
Loading