branch.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Branch and jump emulation.
  7.  *
  8.  * Copyright (C) 1996, 1997, 1998, 1999 by Ralf Baechle
  9.  */
  10. #include <asm/ptrace.h>
  11. extern inline int delay_slot(struct pt_regs *regs)
  12. {
  13. return regs->cp0_cause & CAUSEF_BD;
  14. }
  15. extern int __compute_return_epc(struct pt_regs *regs);
  16. extern inline int compute_return_epc(struct pt_regs *regs)
  17. {
  18. if (!delay_slot(regs)) {
  19. regs->cp0_epc += 4;
  20. return 0;
  21. }
  22. return __compute_return_epc(regs);
  23. }