From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16029 invoked by alias); 5 Jul 2011 21:46:42 -0000 Received: (qmail 16020 invoked by uid 22791); 5 Jul 2011 21:46:42 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from smtp.gentoo.org (HELO smtp.gentoo.org) (140.211.166.183) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 05 Jul 2011 21:46:12 +0000 Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id 1076B67175; Tue, 5 Jul 2011 21:46:10 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Cc: toolchain-devel@blackfin.uclinux.org, Jie Zhang Subject: [PATCH] gdb: testsuite: add Blackfin support Date: Tue, 05 Jul 2011 22:03:00 -0000 Message-Id: <1309902376-14969-1-git-send-email-vapier@gentoo.org> X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2011-07/txt/msg00177.txt.bz2 From: Jie Zhang This fills out a few of the test places where needed for Blackfin targets. Signed-off-by: Jie Zhang Signed-off-by: Mike Frysinger 2011-07-05 Jie Zhang * config/bfin.exp: New file. * gdb.asm/asm-source.exp (bfin-*-*): Handle Blackfin targets. * gdb.asm/bfin.inc: New file. --- gdb/testsuite/config/bfin.exp | 1 + gdb/testsuite/gdb.asm/asm-source.exp | 3 ++ gdb/testsuite/gdb.asm/bfin.inc | 45 ++++++++++++++++++++++++++++++++++ 3 files changed, 49 insertions(+), 0 deletions(-) create mode 100644 gdb/testsuite/config/bfin.exp create mode 100644 gdb/testsuite/gdb.asm/bfin.inc diff --git a/gdb/testsuite/config/bfin.exp b/gdb/testsuite/config/bfin.exp new file mode 100644 index 0000000..d984274 --- /dev/null +++ b/gdb/testsuite/config/bfin.exp @@ -0,0 +1 @@ +load_lib "../config/monitor.exp"; diff --git a/gdb/testsuite/gdb.asm/asm-source.exp b/gdb/testsuite/gdb.asm/asm-source.exp index bd7c1f0..7ae556c 100644 --- a/gdb/testsuite/gdb.asm/asm-source.exp +++ b/gdb/testsuite/gdb.asm/asm-source.exp @@ -43,6 +43,9 @@ switch -glob -- [istarget] { "arm*-*-*" { set asm-arch arm } + "bfin-*-*" { + set asm-arch bfin + } "frv-*-*" { set asm-arch frv } diff --git a/gdb/testsuite/gdb.asm/bfin.inc b/gdb/testsuite/gdb.asm/bfin.inc new file mode 100644 index 0000000..7428e3b --- /dev/null +++ b/gdb/testsuite/gdb.asm/bfin.inc @@ -0,0 +1,45 @@ + comment "subroutine prologue" + .macro gdbasm_enter + LINK 12; + .endm + + comment "subroutine epilogue" + .macro gdbasm_leave + UNLINK; + RTS; + .endm + + .macro gdbasm_call subr + call \subr; + .endm + + .macro gdbasm_several_nops + mnop; + mnop; + mnop; + mnop; + .endm + + comment "exit (0)" + .macro gdbasm_exit0 + R0 = 0; + EXCPT 0; + NOP; + .endm + + comment "crt0 startup" + .macro gdbasm_startup + FP = 0; + LINK 0xc; + .endm + + comment "Declare a data variable" + .purgem gdbasm_datavar + .macro gdbasm_datavar name value + .data + .align 4 + .type \name, @object + .size \name, 4 +\name: + .long \value + .endm -- 1.7.6