From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 43917 invoked by alias); 12 Aug 2017 02:05:53 -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 38331 invoked by uid 89); 12 Aug 2017 02:05:45 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-6.2 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_3,SPF_HELO_PASS,SPF_SOFTFAIL autolearn=ham version=3.3.2 spammy= X-HELO: mail.baldwin.cx Received: from bigwig.baldwin.cx (HELO mail.baldwin.cx) (96.47.65.170) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 12 Aug 2017 02:05:42 +0000 Received: from ralph.baldwin.cx.com (c-73-231-226-104.hsd1.ca.comcast.net [73.231.226.104]) by mail.baldwin.cx (Postfix) with ESMTPSA id 19A3A10AF01 for ; Fri, 11 Aug 2017 22:05:39 -0400 (EDT) From: John Baldwin To: gdb-patches@sourceware.org Subject: [PATCH 0/2] Initial support for FreeBSD/aarch64 Date: Sat, 12 Aug 2017 02:05:00 -0000 Message-Id: <20170812020535.89850-1-jhb@FreeBSD.org> X-IsSubscribed: yes X-SW-Source: 2017-08/txt/msg00260.txt.bz2 This series adds initial support for FreeBSD/aarch64. It does not yet include support for hardware breakpoints/watchpoints as that is not currently supported by FreeBSD's kernel. John Baldwin (2): Add FreeBSD/aarch64 architecture. Add native target for FreeBSD/aarch64. gdb/ChangeLog | 17 ++++ gdb/Makefile.in | 3 + gdb/NEWS | 8 ++ gdb/aarch64-fbsd-tdep.c | 208 ++++++++++++++++++++++++++++++++++++++++++++++++ gdb/aarch64-fbsd-tdep.h | 33 ++++++++ gdb/configure.host | 1 + gdb/configure.nat | 5 ++ gdb/configure.tgt | 5 ++ 8 files changed, 280 insertions(+) create mode 100644 gdb/aarch64-fbsd-tdep.c create mode 100644 gdb/aarch64-fbsd-tdep.h -- 2.13.3