Where the program counter goes after returning the interrupt handler?

别说谁变了你拦得住时间么 提交于 2019-12-06 07:59:44

问题


Hi I am wondering where the program counter goes when the program returns from interrupt service routine? I know when the interrupt event occurs the PC is pushed into the stack. But what address is pushed into the stack the next one or the same one(just executed one)?When we have

first instruction;
interrupt event here;
go inside the ISR;
exit ISR;
second instruction;

OR

first instruction;
interrupt event here;
go inside the ISR
exit ISR;
first instruction;

I mean, does the PC points to the instruction executed prior to the ISR entrance, or it goes to the next instruction(after return from the ISR)? I hope you get the idea.


回答1:


Since an interrupt can't be handled until the CPU is in a precise fixed state, if the interrupt is raised in the middle of an instruction then the jump to the interrupt vector procedure will occur after the execution of the instruction.

So when coming back from the interrupt procedure the PC will be pointing to the instruction after the first.

first instruction fetch (PC is updated meanwhile)
first instruction decode
interrupt is raised
first instruction execution
** now and only now the CPU checks for a possible interrupt **
interrupt is present, pushing PC on stack and other things
jump to interrupt address
execution of interrupt
return from interrupt (pop of PC and other things)
second instruction fetch 
...



回答2:


When an instruction is executing then the program counter keeps the address of the next instruction to be executed. When an interrupt occurs, then processor do the following:

  • Suspends the execution of the program being executed and save its context. This means it saves the address of the next instruction to be executed, i.e, the value of the program counter and other relevant data.

  • Update the program counter with the starting address of that interrupt handler routine.

When the interrupt handler routine is completed, CPU can resume execution of the program at the point of interruption.

Interrupt is occurred at instruction i and after completion user program resumes its execution from i+1 instruction.




回答3:


Exact behaviour of interrupts are hardware-specific, but the CPU will simply wait until first_instruction is finished. After that, it will push CPU state onto stack (or save it in other way) and start ISR. That means that your ISR will not be executed immediately - there is a tiny delay, which may become an issue in hard realtime applications.




回答4:


There are 2 types of interrupts : a) Software interrupt- caused due to some critical problems like division by zero during execution of an instruction (say i th instruction) in a program(say program is Divide 2 number).

How is this handled by CPU?

Very much like an exception in Java. In this case the interrupt request is immediately handled(current i th instruction is not finished). current PC value( pointing to address of i+1 th instruction) is saved in some location. Interrupt is processed and after serving interrupt,it returns for of execution division program to finish i+1 th instruction and rest of instructions.

b) Hardware interrupt - processor is running a program when some input arrived from a keyboard (for example) or some other hardware.

How is this handled by CPU?

In this case CPU doesn't immediately serve interrupt request .It first completes the execution of current i th instruction, saves PC current value (pointing to address of i+1 th instruction) in some location . Then it listens to that interrupt, finish it and later comes back to old program instruction i+1 .



来源:https://stackoverflow.com/questions/28881632/where-the-program-counter-goes-after-returning-the-interrupt-handler

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!