From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 79870 invoked by alias); 1 Sep 2015 08:42:12 -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 79854 invoked by uid 89); 1 Sep 2015 08:42:10 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pa0-f47.google.com Received: from mail-pa0-f47.google.com (HELO mail-pa0-f47.google.com) (209.85.220.47) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Tue, 01 Sep 2015 08:42:09 +0000 Received: by pabzx8 with SMTP id zx8so169605243pab.1 for ; Tue, 01 Sep 2015 01:42:08 -0700 (PDT) X-Received: by 10.66.142.166 with SMTP id rx6mr44239465pab.25.1441096927962; Tue, 01 Sep 2015 01:42:07 -0700 (PDT) Received: from E107787-LIN.cambridge.arm.com (gcc1-power7.osuosl.org. [140.211.15.137]) by smtp.gmail.com with ESMTPSA id hk4sm12344228pdb.22.2015.09.01.01.42.06 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 01 Sep 2015 01:42:07 -0700 (PDT) From: Yao Qi X-Google-Original-From: Yao Qi To: gdb-patches@sourceware.org Subject: [PATCH 0/2 V2] Support single step by arch or target Date: Tue, 01 Sep 2015 08:42:00 -0000 Message-Id: <1441096915-23615-1-git-send-email-yao.qi@linaro.org> X-IsSubscribed: yes X-SW-Source: 2015-09/txt/msg00003.txt.bz2 This is the V2 of my patch to address Pedro's comment on backward compatibility problem. Patch 1 is to rename target_ops hook supports_conditional_breakpoints to supports_hardware_single_step, nothing changes since I post it last time . Patch 2 is the major one in this series, details can be found in it. Regression tested on aarch64 with {native, gdbserver} x {32-bit, 64-bit}. *** BLURB HERE *** Yao Qi (2): [gdbserver] Rename supports_conditional_breakpoints to supports_hardware_single_step Support single step by arch or target gdb/aarch64-linux-nat.c | 9 ++++++++ gdb/arm-linux-tdep.c | 5 ++++ gdb/doc/gdb.texinfo | 8 +++++++ gdb/gdbserver/linux-low.c | 11 +++------ gdb/gdbserver/lynx-low.c | 5 +--- gdb/gdbserver/nto-low.c | 5 +--- gdb/gdbserver/server.c | 35 ++++++++++++++++++++++++---- gdb/gdbserver/spu-low.c | 2 +- gdb/gdbserver/target.c | 8 +++++++ gdb/gdbserver/target.h | 13 ++++++----- gdb/gdbserver/win32-low.c | 5 +--- gdb/remote.c | 58 +++++++++++++++++++++++++++++++++++++++-------- gdb/target-delegates.c | 31 +++++++++++++++++++++++++ gdb/target.h | 9 ++++++++ 14 files changed, 164 insertions(+), 40 deletions(-) -- 1.9.1