1、Linux Kernel中对异常向量表的填充
linux/arch/arm64/kernel/entry.S
kernel_ventry 是一个定义异常向量的宏;
在该宏中,程序跳转到了b el\el\ht()\regsize()\label;
以为异常向量的第6行为例,其实就是跳转到了bl el1h_64_irq
;
然后你去搜索代码 ,你根本找不到el1h_64_irq
函数的定义。
因为el1h_64_irq
该函数是有宏展开实现的。 宏展开的实现在这里–点击此句
以第6行为例,我们再来看下entry_handler 1, h, 64, irq
展开后的样子,还是先看entry_handler 宏的展开。
entry_handler 1, h, 64, irq
其实就是定义了 el1h_64_irq
的函数。在该函数中,程序将会跳转到bl el\el\ht\()_\regsize\()_\label\()_handler
, 对应的也就是bl el1h_64_irq_handler
然后我们继续追调用流程:
bl el1h_64_irq_handler ----> el1_interrupt(regs, handle_arch_irq) ----> __el1_irq(regs, handler) ----> do_interrupt_handler(regs, handler) ----> handler(regs),其实就是调用handle_arch_irq ----> handle_arch_irq = handle_irq
是在这里赋值的 ----> 是在gicv3中设置的 ---->所以上面的handler()
其实就是在调用gic_handle_irq ----> ----> ----> ----> ---->