Skip to content
  1. Feb 28, 2012
    • Evan Cheng's avatar
      Some ARM implementaions, e.g. A-series, does return stack prediction. That is, · 87c7b09d
      Evan Cheng authored
      the processor keeps a return addresses stack (RAS) which stores the address
      and the instruction execution state of the instruction after a function-call
      type branch instruction.
      
      Calling a "noreturn" function with normal call instructions (e.g. bl) can
      corrupt RAS and causes 100% return misprediction so LLVM should use a
      unconditional branch instead. i.e.
      mov lr, pc
      b _foo
      The "mov lr, pc" is issued in order to get proper backtrace.
      
      rdar://8979299
      
      llvm-svn: 151623
      87c7b09d
  2. Jul 18, 2011
  3. Apr 15, 2011
  4. Dec 21, 2010
  5. Nov 04, 2010
  6. Sep 21, 2010
  7. May 11, 2010
  8. Apr 17, 2010
  9. Apr 16, 2010
  10. Mar 12, 2010
  11. Feb 12, 2010
  12. Jan 18, 2010
  13. Jan 16, 2010
  14. Sep 20, 2009
Loading