From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34539) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VBKna-0003Uc-Iv for qemu-devel@nongnu.org; Mon, 19 Aug 2013 04:26:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VBKnV-0005iJ-1e for qemu-devel@nongnu.org; Mon, 19 Aug 2013 04:26:50 -0400 Message-ID: <5211D6C3.2000609@adacore.com> Date: Mon, 19 Aug 2013 10:26:43 +0200 From: Fabien Chouteau MIME-Version: 1.0 References: <1375447708-14545-1-git-send-email-chouteau@adacore.com> <1375447708-14545-2-git-send-email-chouteau@adacore.com> In-Reply-To: <1375447708-14545-2-git-send-email-chouteau@adacore.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 2/2] Add ARM registers definitions in Monitor commands List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-trivial@nongnu.org Cc: qemu-devel@nongnu.org, lcapitulino@redhat.com Any comments? Regards, On 08/02/2013 02:48 PM, Fabien Chouteau wrote: > Signed-off-by: Fabien Chouteau > --- > monitor.c | 17 +++++++++++++++++ > 1 file changed, 17 insertions(+) > > diff --git a/monitor.c b/monitor.c > index 5dc0aa9..78e93af 100644 > --- a/monitor.c > +++ b/monitor.c > @@ -3167,6 +3167,23 @@ static const MonitorDef monitor_defs[] = { > { "cleanwin", offsetof(CPUSPARCState, cleanwin) }, > { "fprs", offsetof(CPUSPARCState, fprs) }, > #endif > +#elif defined(TARGET_ARM) > + { "r0", offsetof(CPUARMState, regs[0]) }, > + { "r1", offsetof(CPUARMState, regs[1]) }, > + { "r2", offsetof(CPUARMState, regs[2]) }, > + { "r3", offsetof(CPUARMState, regs[3]) }, > + { "r4", offsetof(CPUARMState, regs[4]) }, > + { "r5", offsetof(CPUARMState, regs[5]) }, > + { "r6", offsetof(CPUARMState, regs[6]) }, > + { "r7", offsetof(CPUARMState, regs[7]) }, > + { "r8", offsetof(CPUARMState, regs[8]) }, > + { "r9", offsetof(CPUARMState, regs[9]) }, > + { "r10", offsetof(CPUARMState, regs[10]) }, > + { "r11", offsetof(CPUARMState, regs[11]) }, > + { "r12", offsetof(CPUARMState, regs[12]) }, > + { "r13|sp", offsetof(CPUARMState, regs[13]) }, > + { "r14|lr", offsetof(CPUARMState, regs[14]) }, > + { "r15|pc", offsetof(CPUARMState, regs[15]) }, > #endif > { NULL }, > }; > -- Fabien Chouteau