From: Ajit Kumar Agarwal <ajit.kumar.agarwal@xilinx.com>
To: Joel Brobecker <brobecker@adacore.com>
Cc: "gdb-patches@sourceware.org" <gdb-patches@sourceware.org>,
Michael Eager <eager@eagercon.com>,
Pedro Alves <palves@redhat.com>,
Vinod Kathail <vinodk@xilinx.com>,
Vidhumouli Hunsigida <vidhum@xilinx.com>,
"Nagaraju Mekala" <nmekala@xilinx.com>
Subject: RE: [Patch, microblaze]: Add support of microblaze software single stepping
Date: Fri, 11 Jul 2014 12:53:00 -0000 [thread overview]
Message-ID: <35bccb81-cae6-4581-b5fd-16dea7171d28@BN1AFFO11FD012.protection.gbl> (raw)
In-Reply-To: <20140707145634.GF6038@adacore.com>
[-- Attachment #1: Type: text/plain, Size: 6511 bytes --]
Based on the feedback review comments are incorporated.
[Patch, microblaze]: Add support of microblaze software single stepping.
This patch adds the support of microblaze software single stepping. It
handles the cases of branch and return with delay slot and imm instruction
in microblaze.
ChangeLog:
2014-07-11 Ajit Agarwal <ajitkum@xilinx.com>
* microblaze-tdep.c (microblaze_software_single_step): New.
(microblaze_gdbarch_init): Use of set_gdbarch_software_single_step.
Signed-off-by:Ajit Agarwal ajitkum@xilinx.com
Thanks & Regards
Ajit
-----Original Message-----
From: Joel Brobecker [mailto:brobecker@adacore.com]
Sent: Monday, July 07, 2014 8:27 PM
To: Ajit Kumar Agarwal
Cc: gdb-patches@sourceware.org; Michael Eager; Pedro Alves; Vinod Kathail; Vidhumouli Hunsigida; Nagaraju Mekala
Subject: Re: [Patch, microblaze]: Add support of microblaze software single stepping
> PING!
A quick look at the patch shows that the code does not conform to the GNU Coding style:
- '{' brace at start of function should be on next line,
- Sentences in comments should start with a capital letter and
end with a period
- etc.
Also, GDB Coding Style, which is a superset of the GCS, require that every single new function have proper documentation a the start of them.
You can refer to:
https://sourceware.org/gdb/wiki/Internals%20Coding-Standards
Last but not least, it looks like some lines got joined together, putting multiple statements on the same line.
>
> -----Original Message-----
> From: Ajit Kumar Agarwal
> Sent: Friday, June 20, 2014 11:40 AM
> To: 'gdb-patches@sourceware.org'
> Cc: 'Michael Eager'; 'Pedro Alves'; Vinod Kathail; Vidhumouli
> Hunsigida; Nagaraju Mekala
> Subject: RE: [Patch, microblaze]: Add support of microblaze software
> single stepping
>
> Please find the patch that supports the microblaze software single stepping. This patch handles the cases of branch and return with delay slot
> and the imm instruction in microblaze. Could you please review and let me know if its okay.
>
> [Patch, microblaze]: Add support of microblaze software single
> stepping
>
> This patch adds the support of microblaze software single stepping. It
> handles the cases of branch and return with delay slot and imm instruction
> in microblaze.
>
> ChangeLog:
> 2014-06-19 Ajit Agarwal <ajitkum@xilinx.com>
>
> * microblaze-tdep.c (microblaze_software_single_step): New.
> (microblaze_gdbarch_init): Use of set_gdbarch_software_single_step.
>
> Signed-off-by:Ajit Agarwal ajitkum@xilinx.com
>
> ---
> gdb/microblaze-tdep.c | 79 +++++++++++++++++++++++++++++++++++++++++++++++++
> 1 files changed, 79 insertions(+), 0 deletions(-)
>
> diff --git a/gdb/microblaze-tdep.c b/gdb/microblaze-tdep.c index
> 14c1b52..3de2f70 100644
> --- a/gdb/microblaze-tdep.c
> +++ b/gdb/microblaze-tdep.c
> @@ -628,6 +628,83 @@ microblaze_stabs_argument_has_addr (struct gdbarch *gdbarch, struct type *type)
> return (TYPE_LENGTH (type) == 16);
> }
>
> +static int
> +microblaze_software_single_step (struct frame_info *frame) {
> + struct gdbarch *arch = get_frame_arch (frame);
> + struct address_space *aspace = get_frame_address_space (frame);
> + struct gdbarch_tdep *tdep = gdbarch_tdep (arch);
> + enum bfd_endian byte_order = gdbarch_byte_order (arch);
> + int ret = 0;
> + int ii;
> + CORE_ADDR pc;
> + long insn;
> + enum microblaze_instr minstr;
> + bfd_boolean isunsignednum;
> + enum microblaze_instr_type insn_type;
> + short delay_slots;
> + int imm;
> + bfd_boolean immfound = FALSE;
> + CORE_ADDR breaks[2] = {-1,-1};
> + CORE_ADDR address;
> + int targetvalid;
> +
> + /* Set a breakpoint at the next instruction */
> + /* If the current instruction is an imm, set it at the inst after
> + */
> + /* If the instruction has a delay slot, skip the delay slot */ pc
> + = get_frame_pc (frame); insn = microblaze_fetch_instruction (pc);
> + minstr = get_insn_microblaze (insn, &isunsignednum, &insn_type,
> + &delay_slots); if (insn_type == immediate_inst)
> + {
> + int rd, ra, rb;
> + immfound = TRUE;
> + minstr = microblaze_decode_insn (insn, &rd, &ra, &rb, &imm);
> + pc = pc + INST_WORD_SIZE;
> + insn = microblaze_fetch_instruction (pc);
> + minstr = get_insn_microblaze (insn, &isunsignednum, &insn_type, &delay_slots);
> + }
> + if (insn_type != return_inst)
> + breaks[0] = pc + delay_slots * INST_WORD_SIZE + INST_WORD_SIZE;
> +
> + /* Now check for branch or return instructions */ if (insn_type
> + == branch_inst || insn_type == return_inst)
> + {
> + int limm;
> + int lrd, lra, lrb;
> + int ra, rb;
> + bfd_boolean targetvalid;
> + bfd_boolean unconditionalbranch;
> + microblaze_decode_insn (insn, &lrd, &lra, &lrb, &limm);
> + if (lra >= 0 && lra < MICROBLAZE_NUM_REGS)
> + ra = get_frame_register_unsigned (frame, lra);
> + else
> + ra = 0;
> + if (lrb >= 0 && lrb < MICROBLAZE_NUM_REGS)
> + rb = get_frame_register_unsigned (frame, lrb);
> + else
> + rb = 0;
> + address = microblaze_get_target_address (insn, immfound, imm,
> + pc, ra, rb, &targetvalid, &unconditionalbranch);
> +
> + if (!unconditionalbranch)
> + breaks[1] = address;
> + }
> +
> + /* Insert the breakpoints */
> + if (breaks[0] != -1)
> + {
> + insert_single_step_breakpoint (arch, aspace, breaks[0]);
> + ret = 1;
> + }
> + if (breaks[1] != -1)
> + {
> + insert_single_step_breakpoint (arch, aspace, breaks[1]);
> + ret = 1;
> + }
> +
> + return ret;
> +}
> +
> static void
> microblaze_write_pc (struct regcache *regcache, CORE_ADDR pc) { @@
> -708,6 +785,8 @@ microblaze_gdbarch_init (struct gdbarch_info info,
> struct gdbarch_list *arches)
>
> set_gdbarch_breakpoint_from_pc (gdbarch,
> microblaze_breakpoint_from_pc);
>
> + set_gdbarch_software_single_step (gdbarch,
> + microblaze_software_single_step);
> +
> set_gdbarch_frame_args_skip (gdbarch, 8);
>
> set_gdbarch_print_insn (gdbarch, print_insn_microblaze);
> --
> 1.7.1
>
> Thanks & Regards
> Ajit
--
Joel
[-- Attachment #2: 0001-Patch-microblaze-Add-support-of-microblaze-software-.patch --]
[-- Type: application/octet-stream, Size: 4857 bytes --]
From 8f349a0d9c02718214cad3c209ce5c0f1f872a34 Mon Sep 17 00:00:00 2001
From: Ajit Kumar Agarwal <ajitkum@xhdspdgnu.(none)>
Date: Fri, 11 Jul 2014 17:53:30 +0530
Subject: [PATCH] [Patch, microblaze]: Add support of microblaze software single stepping.
This patch adds the support of microblaze software single stepping. It
handles the cases of branch and return with delay slot and imm instruction
in microblaze.
ChangeLog:
2014-07-11 Ajit Agarwal <ajitkum@xilinx.com>
* microblaze-tdep.c (microblaze_software_single_step): New.
(microblaze_gdbarch_init): Use of set_gdbarch_software_single_step.
Signed-off-by:Ajit Agarwal ajitkum@xilinx.com
---
gdb/microblaze-tdep.c | 106 +++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 106 insertions(+), 0 deletions(-)
diff --git a/gdb/microblaze-tdep.c b/gdb/microblaze-tdep.c
index 14c1b52..dc73644 100644
--- a/gdb/microblaze-tdep.c
+++ b/gdb/microblaze-tdep.c
@@ -628,6 +628,110 @@ microblaze_stabs_argument_has_addr (struct gdbarch *gdbarch, struct type *type)
return (TYPE_LENGTH (type) == 16);
}
+/* This function handles software single step, branches with delay slot
+ imm instruction in microblaze. */
+static int
+microblaze_software_single_step (struct frame_info *frame)
+{
+ struct gdbarch *arch = get_frame_arch (frame);
+ struct address_space *aspace = get_frame_address_space (frame);
+ struct gdbarch_tdep *tdep = gdbarch_tdep (arch);
+ enum bfd_endian byte_order = gdbarch_byte_order (arch);
+ int ret = 0;
+ int ii;
+ CORE_ADDR pc;
+ long insn;
+ enum microblaze_instr minstr;
+ bfd_boolean isunsignednum;
+ enum microblaze_instr_type insn_type;
+ short delay_slots;
+ int imm;
+ bfd_boolean immfound = FALSE;
+ CORE_ADDR breaks[2] = {-1,-1};
+ CORE_ADDR address;
+ int targetvalid;
+
+ /* Set a breakpoint at the next instruction. If the current
+ instruction is an imm, set it at the inst after. If the
+ instruction has a delay slot, skip the delay slot. */
+ pc = get_frame_pc (frame);
+
+ insn = microblaze_fetch_instruction (pc);
+
+ minstr = get_insn_microblaze (insn,
+ &isunsignednum,
+ &insn_type,
+ &delay_slots);
+
+ if (insn_type == immediate_inst)
+ {
+ int rd, ra, rb;
+
+ immfound = TRUE;
+ minstr = microblaze_decode_insn (insn,
+ &rd,
+ &ra,
+ &rb,
+ &imm);
+ pc = pc + INST_WORD_SIZE;
+ insn = microblaze_fetch_instruction (pc);
+ minstr = get_insn_microblaze (insn,
+ &isunsignednum,
+ &insn_type,
+ &delay_slots);
+ }
+
+ if (insn_type != return_inst)
+ breaks[0] = pc + delay_slots * INST_WORD_SIZE + INST_WORD_SIZE;
+
+ /* Now check for branch or return instructions. */
+ if (insn_type == branch_inst || insn_type == return_inst)
+ {
+ int limm;
+ int lrd, lra, lrb;
+ int ra, rb;
+ bfd_boolean targetvalid;
+ bfd_boolean unconditionalbranch;
+
+ microblaze_decode_insn (insn, &lrd, &lra, &lrb, &limm);
+ if (lra >= 0 && lra < MICROBLAZE_NUM_REGS)
+ ra = get_frame_register_unsigned (frame, lra);
+ else
+ ra = 0;
+ if (lrb >= 0 && lrb < MICROBLAZE_NUM_REGS)
+ rb = get_frame_register_unsigned (frame, lrb);
+ else
+ rb = 0;
+
+ address = microblaze_get_target_address (insn,
+ immfound,
+ imm,
+ pc,
+ ra,
+ rb,
+ &targetvalid,
+ &unconditionalbranch);
+
+ if (!unconditionalbranch)
+ breaks[1] = address;
+ }
+
+ /* Insert the breakpoints. */
+ if (breaks[0] != -1)
+ {
+ insert_single_step_breakpoint (arch, aspace, breaks[0]);
+ ret = 1;
+ }
+
+ if (breaks[1] != -1)
+ {
+ insert_single_step_breakpoint (arch, aspace, breaks[1]);
+ ret = 1;
+ }
+
+ return ret;
+}
+
static void
microblaze_write_pc (struct regcache *regcache, CORE_ADDR pc)
{
@@ -708,6 +812,8 @@ microblaze_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
set_gdbarch_breakpoint_from_pc (gdbarch, microblaze_breakpoint_from_pc);
+ set_gdbarch_software_single_step (gdbarch, microblaze_software_single_step);
+
set_gdbarch_frame_args_skip (gdbarch, 8);
set_gdbarch_print_insn (gdbarch, print_insn_microblaze);
--
1.7.1
next prev parent reply other threads:[~2014-07-11 12:34 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-06 6:13 Ajit Kumar Agarwal
2014-07-07 14:56 ` Joel Brobecker
2014-07-11 12:53 ` Ajit Kumar Agarwal [this message]
2014-07-11 14:05 ` Joel Brobecker
2014-07-11 14:42 ` Ajit Kumar Agarwal
2014-07-11 19:44 ` Ajit Kumar Agarwal
2014-07-11 20:58 ` Michael Eager
2014-07-14 11:42 ` Ajit Kumar Agarwal
2014-09-15 16:06 ` Michael Eager
2014-07-20 14:03 ` Ajit Kumar Agarwal
-- strict thread matches above, loose matches on Subject: below --
2014-06-20 6:10 Ajit Kumar Agarwal
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=35bccb81-cae6-4581-b5fd-16dea7171d28@BN1AFFO11FD012.protection.gbl \
--to=ajit.kumar.agarwal@xilinx.com \
--cc=brobecker@adacore.com \
--cc=eager@eagercon.com \
--cc=gdb-patches@sourceware.org \
--cc=nmekala@xilinx.com \
--cc=palves@redhat.com \
--cc=vidhum@xilinx.com \
--cc=vinodk@xilinx.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