免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3989 | 回复: 1
打印 上一主题 下一主题

请教ARM中断控制中的vector_stub中的参数问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-11-21 10:36 |只看该作者 |倒序浏览
在分析ARMv6中断控制时有如下疑问:

  1. arch/arm/kernel/entry-armv.S
  2.         .macro  vector_stub, name, mode, correction=0
  3.         .align  5

  4. vector_\name:
  5.         .if \correction
  6.         sub     lr, lr, #\correction
  7.         .endif
  8.        ......
复制代码
通过这个宏扩展了IRQ等的处理
  1. vector_stub     irq, IRQ_MODE, 4
复制代码
但是最后一个参数correction是什么用意呢? 既然在进入中断时,CPU已经将pc下一条指令放入了lr,那么为何这里还要?
  1. sub lr,lr,#4
复制代码
这和指令流水线有关吗?

论坛徽章:
0
2 [报告]
发表于 2011-11-21 16:02 |只看该作者
查了下ARM Manual,确实如此!

CPU已经将pc下一条指令放入了lr,是不对的,这要根据中断的类型来决定放入的是哪条指令

  1. R14_und = address of the next instruction after the undefined instruction
  2. R14_svc = address of the next instruction after the SVC instruction
  3. R14_abt = address of the aborted instruction + 4 //取指令不可用时,中断处理完成后依然需要重新执行该指令
  4. R14_mon = address of the aborted instruction + 8
  5. R14_irq = address of the next instruction to be executed + 4
  6. R14_fiq = address of the next instruction to be executed + 4
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP