Skip to content
  1. Sep 22, 2010
  2. Sep 21, 2010
  3. Sep 20, 2010
    • Jim Grosbach's avatar
      Simplify ARM callee-saved register handling by removing the distinction · 94dfd6fc
      Jim Grosbach authored
      between the high and low registers for prologue/epilogue code. This was
      a Darwin-only thing that wasn't providing a realistic benefit anymore.
      Combining the save areas simplifies the compiler code and results in better
      ARM/Thumb2 codegen.
      
      For example, previously we would generate code like:
              push    {r4, r5, r6, r7, lr}
              add     r7, sp, #12
              stmdb   sp!, {r8, r10, r11}
      With this change, we combine the register saves and generate:
              push    {r4, r5, r6, r7, r8, r10, r11, lr}
              add     r7, sp, #12
      
      rdar://8445635
      
      llvm-svn: 114340
      94dfd6fc
  4. Sep 19, 2010
  5. Sep 18, 2010
Loading