From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 86167 invoked by alias); 29 Oct 2015 17:09:55 -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 86158 invoked by uid 89); 29 Oct 2015 17:09:55 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL,BAYES_00,SPF_PASS autolearn=ham version=3.3.2 X-HELO: usevmg20.ericsson.net Received: from usevmg20.ericsson.net (HELO usevmg20.ericsson.net) (198.24.6.45) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Thu, 29 Oct 2015 17:09:53 +0000 Received: from EUSAAHC004.ericsson.se (Unknown_Domain [147.117.188.84]) by usevmg20.ericsson.net (Symantec Mail Security) with SMTP id 33.0C.32596.AD1F1365; Thu, 29 Oct 2015 11:15:54 +0100 (CET) Received: from elxa4wqvvz1.dyn.mo.ca.am.ericsson.se (147.117.188.8) by smtps-am.internal.ericsson.com (147.117.188.84) with Microsoft SMTP Server (TLS) id 14.3.248.2; Thu, 29 Oct 2015 13:09:50 -0400 From: Antoine Tremblay To: Subject: [PATCH 0/10] Support software single step and conditional breakpoints on ARM in GDBServer. Date: Thu, 29 Oct 2015 17:14:00 -0000 Message-ID: <1446138583-13268-1-git-send-email-antoine.tremblay@ericsson.com> MIME-Version: 1.0 Content-Type: text/plain X-IsSubscribed: yes X-SW-Source: 2015-10/txt/msg00703.txt.bz2 This patch series adds support for software single step and conditional breakpoints on ARM in GDBServer. Patches 1 and 2 fix general issues in the software single step control flow. Patches 3 to 5 Removes the too simple implementations of software single step that were in place and paves to way for full software single step to be implemented. Patches 6 and 7 Prepares the sharing of the software single step code for ARM in GDB with GDBServer. Patch 8 Implements the support for ARM software single step. Patch 9 Adds support for while-stepping actions. Patch 10 Adds supports for conditional breakpoints in GDBServer. This patchset has no observed regressions, tested on ubuntu 14.04 ARMv7 and x86. With gdbserver-{native,extended} / { -marm -mthumb } Note also that while I could not test directly thumbv1 instructions with gcc -marmv4t , manual testing of the software single step was done for thumv1 instructions.