* [RFA] Add v850.inc to gdb.asm testsuite
@ 2002-05-13 9:43 Corinna Vinschen
2002-05-13 18:37 ` Michael Snyder
0 siblings, 1 reply; 4+ messages in thread
From: Corinna Vinschen @ 2002-05-13 9:43 UTC (permalink / raw)
To: gdb-patches
Hi,
the following patch adds the v850 target as a supported target for
the gdb.asm part of the testsuite. It consists of adding the
v850 target to asm-sources.exp and the new file v850.inc with
matching assembler code.
Ok to check in?
Corinna
2002-05-13 Corinna Vinschen <vinschen@redhat.com>
* gdb.asm/asm-source.exp: Add v850 as supported target.
* gdb.asm/v850.inc: New file.
Index: asm-source.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.asm/asm-source.exp,v
retrieving revision 1.23
diff -u -p -r1.23 asm-source.exp
--- asm-source.exp 19 Apr 2002 17:21:48 -0000 1.23
+++ asm-source.exp 13 May 2002 16:39:32 -0000
@@ -67,6 +67,10 @@ if [istarget "xstormy16-*-*"] then {
set asm-arch xstormy16
set asm-flags "-gdwarf2 -I${srcdir}/${subdir} -I${objdir}/${subdir}"
}
+if [istarget "v850-*-*"] then {
+ set asm-arch v850
+ set gdb_wrapper_initialized 1
+}
if { "${asm-arch}" == "" } {
gdb_suppress_entire_file "Assembly source test -- not implemented for this target."
}
Index: v850.inc
===================================================================
RCS file: v850.inc
diff -N v850.inc
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ v850.inc 13 May 2002 16:39:32 -0000
@@ -0,0 +1,41 @@
+ comment "subroutine prologue"
+ .macro gdbasm_enter
+ add -8,sp
+ st.w r31,4[sp]
+ st.w r29,0[sp]
+ mov sp,r29
+ .endm
+
+ comment "subroutine epilogue"
+ .macro gdbasm_leave
+ mov r29,sp
+ ld.w 0[sp],r29
+ ld.w 4[sp],r31
+ add 8,sp
+ jmp [r31]
+ .endm
+
+ .macro gdbasm_call subr
+ jarl \subr,r31
+ .endm
+
+ .macro gdbasm_several_nops
+ nop
+ nop
+ nop
+ nop
+ .endm
+
+ comment "exit (0)"
+ .macro gdbasm_exit0
+ halt
+ .endm
+
+ comment "crt0 startup"
+ .macro gdbasm_startup
+ movea 255,r0,r20
+ mov r0, r21
+ ori 65535, r0, r21
+ movhi 32, r0, sp
+ .endm
+
--
Corinna Vinschen
Cygwin Developer
Red Hat, Inc.
mailto:vinschen@redhat.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [RFA] Add v850.inc to gdb.asm testsuite
2002-05-13 9:43 [RFA] Add v850.inc to gdb.asm testsuite Corinna Vinschen
@ 2002-05-13 18:37 ` Michael Snyder
2002-05-13 19:14 ` Andrew Cagney
2002-05-14 3:26 ` Corinna Vinschen
0 siblings, 2 replies; 4+ messages in thread
From: Michael Snyder @ 2002-05-13 18:37 UTC (permalink / raw)
To: gdb-patches
Corinna Vinschen wrote:
>
> Hi,
>
> the following patch adds the v850 target as a supported target for
> the gdb.asm part of the testsuite. It consists of adding the
> v850 target to asm-sources.exp and the new file v850.inc with
> matching assembler code.
>
> Ok to check in?
Cool! Yes, thank you.
>
> Corinna
>
> 2002-05-13 Corinna Vinschen <vinschen@redhat.com>
>
> * gdb.asm/asm-source.exp: Add v850 as supported target.
> * gdb.asm/v850.inc: New file.
>
> Index: asm-source.exp
> ===================================================================
> RCS file: /cvs/src/src/gdb/testsuite/gdb.asm/asm-source.exp,v
> retrieving revision 1.23
> diff -u -p -r1.23 asm-source.exp
> --- asm-source.exp 19 Apr 2002 17:21:48 -0000 1.23
> +++ asm-source.exp 13 May 2002 16:39:32 -0000
> @@ -67,6 +67,10 @@ if [istarget "xstormy16-*-*"] then {
> set asm-arch xstormy16
> set asm-flags "-gdwarf2 -I${srcdir}/${subdir} -I${objdir}/${subdir}"
> }
> +if [istarget "v850-*-*"] then {
> + set asm-arch v850
> + set gdb_wrapper_initialized 1
> +}
> if { "${asm-arch}" == "" } {
> gdb_suppress_entire_file "Assembly source test -- not implemented for this target."
> }
> Index: v850.inc
> ===================================================================
> RCS file: v850.inc
> diff -N v850.inc
> --- /dev/null 1 Jan 1970 00:00:00 -0000
> +++ v850.inc 13 May 2002 16:39:32 -0000
> @@ -0,0 +1,41 @@
> + comment "subroutine prologue"
> + .macro gdbasm_enter
> + add -8,sp
> + st.w r31,4[sp]
> + st.w r29,0[sp]
> + mov sp,r29
> + .endm
> +
> + comment "subroutine epilogue"
> + .macro gdbasm_leave
> + mov r29,sp
> + ld.w 0[sp],r29
> + ld.w 4[sp],r31
> + add 8,sp
> + jmp [r31]
> + .endm
> +
> + .macro gdbasm_call subr
> + jarl \subr,r31
> + .endm
> +
> + .macro gdbasm_several_nops
> + nop
> + nop
> + nop
> + nop
> + .endm
> +
> + comment "exit (0)"
> + .macro gdbasm_exit0
> + halt
> + .endm
> +
> + comment "crt0 startup"
> + .macro gdbasm_startup
> + movea 255,r0,r20
> + mov r0, r21
> + ori 65535, r0, r21
> + movhi 32, r0, sp
> + .endm
> +
>
> --
> Corinna Vinschen
> Cygwin Developer
> Red Hat, Inc.
> mailto:vinschen@redhat.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [RFA] Add v850.inc to gdb.asm testsuite
2002-05-13 18:37 ` Michael Snyder
@ 2002-05-13 19:14 ` Andrew Cagney
2002-05-14 3:26 ` Corinna Vinschen
1 sibling, 0 replies; 4+ messages in thread
From: Andrew Cagney @ 2002-05-13 19:14 UTC (permalink / raw)
To: Michael Snyder; +Cc: gdb-patches
>
> Cool! Yes, thank you.
>
>
>>
>> Corinna
>>
>> 2002-05-13 Corinna Vinschen <vinschen@redhat.com>
>>
>> * gdb.asm/asm-source.exp: Add v850 as supported target.
>> * gdb.asm/v850.inc: New file.
Hmm, perhaphs I could start threatening to delete targets that don't
have this test :-^ Stan's tradition was to threaten to delete
undocumented commands.
Andrew
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [RFA] Add v850.inc to gdb.asm testsuite
2002-05-13 18:37 ` Michael Snyder
2002-05-13 19:14 ` Andrew Cagney
@ 2002-05-14 3:26 ` Corinna Vinschen
1 sibling, 0 replies; 4+ messages in thread
From: Corinna Vinschen @ 2002-05-14 3:26 UTC (permalink / raw)
To: gdb-patches
On Mon, May 13, 2002 at 06:23:56PM -0700, Michael Snyder wrote:
> Corinna Vinschen wrote:
> >
> > Hi,
> >
> > the following patch adds the v850 target as a supported target for
> > the gdb.asm part of the testsuite. It consists of adding the
> > v850 target to asm-sources.exp and the new file v850.inc with
> > matching assembler code.
> >
> > Ok to check in?
>
> Cool! Yes, thank you.
Applied.
Thanks,
Corinna
--
Corinna Vinschen
Cygwin Developer
Red Hat, Inc.
mailto:vinschen@redhat.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2002-05-14 10:26 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-05-13 9:43 [RFA] Add v850.inc to gdb.asm testsuite Corinna Vinschen
2002-05-13 18:37 ` Michael Snyder
2002-05-13 19:14 ` Andrew Cagney
2002-05-14 3:26 ` Corinna Vinschen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox