Skip to content
  1. Nov 16, 2009
  2. Nov 15, 2009
  3. Nov 14, 2009
  4. Nov 13, 2009
  5. Nov 12, 2009
  6. Nov 11, 2009
  7. Nov 10, 2009
    • Bill Wendling's avatar
      Modify how the prologue encoded the "move" information for the FDE. GCC · fc9469f3
      Bill Wendling authored
      generates a sequence similar to this:
      
      __Z4funci:
      LFB2:
              mflr r0
      LCFI0:
              stmw r30,-8(r1)
      LCFI1:
              stw r0,8(r1)
      LCFI2:
              stwu r1,-80(r1)
      LCFI3:
              mr r30,r1
      LCFI4:
      
      where LCFI3 and LCFI4 are used by the FDE to indicate what the FP, LR, and other
      things are. We generated something more like this:
      
      Leh_func_begin1:
              mflr r0
              stw r31, 20(r1)
              stw r0, 8(r1)
      Llabel1:
              stwu r1, -80(r1)
      Llabel2:
              mr r31, r1
      
      Note that we are missing the "mr" instruction. This patch makes it more like the
      GCC output.
      
      llvm-svn: 86729
      fc9469f3
    • Mike Stump's avatar
      Add testcase for recent checkin. · f8a74fc4
      Mike Stump authored
      llvm-svn: 86620
      f8a74fc4
  8. Nov 09, 2009
  9. Nov 08, 2009
Loading