Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Orjan Friberg <orjan.friberg@axis.com>
To: Andrew Cagney <cagney@gnu.org>
Cc: gdb-patches@sources.redhat.com
Subject: Re: STEP_SKIPS_DELAY question, sort of
Date: Wed, 09 Jun 2004 09:48:00 -0000	[thread overview]
Message-ID: <40C6DCF9.2060700@axis.com> (raw)
In-Reply-To: <40C484FE.5080702@gnu.org>

Andrew Cagney wrote:
> 
> Can this new mechanism somehow superseed STEP_SKIPS_DELAY - it seems to 
> be the exact oposite but there could be common ground here.

[proceed patch snipped]

> They both seem to be asking the question: "given PC and a list of 
> breakpoints, should the inferior be h/w single-stepped?".  That would 
> mean pushing the alternative:
>   breakpoint_here_p (read_pc () - 2)
>   breakpoint_here_p (read_pc () + 4)
> calls into that architecture method.

Agreed.  (STEP_SKIPS_IN_DELAY was just to have something to put in the patch.)

What about using the name STEP_SKIPS_DELAY for both, and introducing a 
DELAY_SIZE which  would return a positive value (meaning the diff from the 
current pc to the delay slot) or a negative (meaning the diff from the delay 
slot to the instruction preceding it)?  Or does the word "size" imply an 
absolute value?

[handle_inferior_event patch snipped]

> I'm just not sure how this bit of logic should fit in.  I'm guessing its 
> the second half of the state m/c sequence:
> 
> 1. step off breakpoint at `PC'
> 2. step through delay

Unless I missed something on the way, the procedure when doing a continue from a
breakpoint that sits on the branch instruction is this:

1. proceed decides it needs to step once before continuing (since read_pc () == 
stop_pc && breakpoint_here_p (read_pc ()))
2. resume is called, with step = 1
3. target is single-stepped
4. handle_inferior_event is called (at which point we're stopped in the delay slot)

It is at this point we need to single-step again (before inserting breakpoints 
again), so I set ecs->another_trap.  Then:

5. keep_going is called, and since ecs->anther_trap is set, it doesn't call 
insert_breakpoints.
6. resume is called again, with step = 1
7. target is single-stepped
8. handle_inferior_event is called again (but doesn't set ecs->another_trap this 
time)
9. keep_going is called, and inserts the breakpoints again

I can't say where would be a better place to put the decision of whether to 
single-step again.  Any suggestions?

-- 
Orjan Friberg
Axis Communications



  reply	other threads:[~2004-06-09  9:48 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-05-21 17:14 Orjan Friberg
2004-05-21 20:25 ` Andrew Cagney
2004-05-24  9:15   ` Orjan Friberg
2004-05-24 18:15     ` Andrew Cagney
2004-05-25 11:53       ` Orjan Friberg
2004-05-25 21:14         ` Andrew Cagney
2004-05-26  9:39           ` Orjan Friberg
2004-05-26 17:39             ` Andrew Cagney
2004-06-07 12:12             ` Orjan Friberg
2004-06-07 12:42               ` Orjan Friberg
2004-06-07 13:09                 ` Orjan Friberg
2004-06-07 15:08                   ` Andrew Cagney
2004-06-09  9:48                     ` Orjan Friberg [this message]
2004-06-09 16:00                       ` Andrew Cagney
2004-06-14 12:09                         ` Orjan Friberg
2004-06-16 14:53                           ` Orjan Friberg
2004-06-24 18:25                             ` Andrew Cagney
2004-10-01 11:26                         ` Orjan Friberg
2004-10-25 20:18                           ` Andrew Cagney

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=40C6DCF9.2060700@axis.com \
    --to=orjan.friberg@axis.com \
    --cc=cagney@gnu.org \
    --cc=gdb-patches@sources.redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox