From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 97175 invoked by alias); 27 Nov 2016 06:18:01 -0000 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 Received: (qmail 96564 invoked by uid 89); 27 Nov 2016 06:17:40 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=UD:configure.tgt, UD:tgt, configure.tgt, configuretgt X-HELO: mail-pg0-f68.google.com Received: from mail-pg0-f68.google.com (HELO mail-pg0-f68.google.com) (74.125.83.68) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 27 Nov 2016 06:17:15 +0000 Received: by mail-pg0-f68.google.com with SMTP id x23so9660315pgx.3 for ; Sat, 26 Nov 2016 22:17:15 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=QiCrrH25cpNSOGJ8a+v1XM4bgBXBQRDvUSdReOb6Dlk=; b=jswXqBW6CCFTk/R7MUgC3rztlt9rvigkuhNujDwACYhrMKmqSfhyyr0Y45TcZNKU1Q 7jJm9d6BWFEOUlV5LIqXNuOIOBdMpU80nOYugZT7MbalW0wTDkRE5D6OBmg+D+m7bZVX uIQeThAg3zDdnrKG3D3mTWW4rd4rY//+crJlpx4FKpmoz86IL41oBq0txqZNn1UgaG7W 1+B8UuetGQI07qjXz5S2VLRi9eRwK7mdz8xGK9tLWrsih+6fUereCeTpKi7jHML3DRSU j6MFAmM6x+Iz503tPfDGgTPfOwoUgGZaB90HUSRrLZtYoYFrB/pbU7XMWRxKu5l/g3aU KzEg== X-Gm-Message-State: AKaTC03gn/p9D4Ug0VvoE+O4S0XNy8ZOzWm6Y6Dm1clLe3qJ2EWe5C6Eob4M/VhKyPeN2Q== X-Received: by 10.84.176.131 with SMTP id v3mr35517785plb.51.1480227433506; Sat, 26 Nov 2016 22:17:13 -0800 (PST) Received: from lianli.shorne-pla.net (z107.124-45-178.ppp.wakwak.ne.jp. [124.45.178.107]) by smtp.gmail.com with ESMTPSA id y89sm78215720pfk.83.2016.11.26.22.17.11 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 26 Nov 2016 22:17:12 -0800 (PST) Received: from lianli.shorne-pla.net (localhost [127.0.0.1]) by lianli.shorne-pla.net (8.15.2/8.15.2) with ESMTPS id uAR6H8w8011136 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 27 Nov 2016 15:17:08 +0900 Received: (from shorne@localhost) by lianli.shorne-pla.net (8.15.2/8.15.2/Submit) id uAR6H2C2011135; Sun, 27 Nov 2016 15:17:02 +0900 From: Stafford Horne To: gdb-patches@sourceware.org Cc: openrisc@lists.librecores.org, Stafford Horne Subject: [PATCH v2 0/4] gdb: Port for OpenRISC Date: Sun, 27 Nov 2016 06:18:00 -0000 Message-Id: X-IsSubscribed: yes X-SW-Source: 2016-11/txt/msg00908.txt.bz2 Hello, This is the openrisc port of GDB that has been in openrisc repositories for a very long time. The main original author was Jeremy Bennett as can be seen in file copyrights. Other are willing to do what it takes for FSF copyright assignment. This along with the sim patches are the last of what has not made its way upstream. The patches are based on current gdb git master branch. I have run the testsuite and results are as follows: -- Changes from v1 * Merged or1k-tdep.[ch] changes into a single commit * Futher fixes to change log bringing in history back to 2008 * Fix doc issue on sw_breakpoint_from_kind Franck Jullien (2): gdb: Add tdesc_find_register functions gdb: Add OpenRISC or1k and or1knd target support Stafford Horne (1): gdb: testsuite: Add or1k l.nop inscruction Stefan Wallentowitz (1): Add gdb for or1k build configure | 7 - configure.ac | 7 - gdb/configure.tgt | 26 + gdb/doc/gdb.texinfo | 103 ++ gdb/or1k-tdep.c | 3285 +++++++++++++++++++++++++++++++++ gdb/or1k-tdep.h | 434 +++++ gdb/target-descriptions.c | 46 +- gdb/target-descriptions.h | 12 + gdb/testsuite/gdb.base/bp-permanent.c | 2 + 9 files changed, 3902 insertions(+), 20 deletions(-) create mode 100644 gdb/or1k-tdep.c create mode 100644 gdb/or1k-tdep.h -- 2.7.4