On 9 November 2015 at 19:37, Sergey Fedorov <serge.f...@gmail.com> wrote: > Though I don't clearly understand how singlestepping is done here, I just do > what Peter suggested in his commnets for v1 and send this patch for review. > I'm > going to get into this while the patch is in review process...
So the way the 32-bit code works for singlestep is complicated because of the need to handle the conditional instructions, which means you get a lot more cases like "this is a conditional SWI" that need to be handled. A quick summary of some of the possible cases: * unconditional normal instruction: -- need to write the PC and condexec bits back to the CPU state -- then take a singlestep insn (either the architectural one or the EXCP_DEBUG one depending on which sort of step we are doing) * unconditional exception-generating instruction -- for architectural step of SWI/HVC/SMC we need to advance the singlestep state machine so that they behave correctly -- generate the relevant exception and then no point writing the code to take EXCP_DEBUG &c because we won't get to it * conditional instruction (including cond. branches): -- earlier code has already written back the PC for the "condition passed" case -- write out the code which takes the singlestep exception for the "condition passed" case -- then do gen_set_label(dc->condlabel) -- then the code to take the single step exception after executing for the "condition failed" case In particular in this bit: if (dc->condjmp || !dc->is_jmp) { gen_set_pc_im(dc, dc->pc); dc->condjmp = 0; } the cases when we need to update the PC are (a) for the condition-failed codepath of a conditional insn (the condition-passed codepath will already have written PC) (b) for a non-conditional insn that hasn't already written PC The A64 equivalent is much simpler because the only cases we need to handle are: * exception already generated (no point writing anything) * jumps (PC already written, just write code to take the step exception) * everything else (write PC then take step exception) I'll review the patch after lunch. thanks -- PMM