From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27713 invoked by alias); 3 Jan 2014 19:16:06 -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 27700 invoked by uid 89); 3 Jan 2014 19:16:05 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.2 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,RCVD_IN_SORBS_WEB,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-ee0-f44.google.com Received: from mail-ee0-f44.google.com (HELO mail-ee0-f44.google.com) (74.125.83.44) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Fri, 03 Jan 2014 19:16:04 +0000 Received: by mail-ee0-f44.google.com with SMTP id b57so6848216eek.17 for ; Fri, 03 Jan 2014 11:16:01 -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:in-reply-to :references; bh=jdPRuOIKFPSf/B8lTkbheS7XCs62ldX72Sj+guZ9V6w=; b=gF9fcbUTMjqTG8nnw7VAc4vDgwWsJNUSVHCkhZF+txQsl5f79k545FR732Dsm8nj/3 JPJXwglo+kaDdOdhqk/9nUrnVv+bYJxsGddMuUsKqQX3Bn7JtsTIcpNkoJ7oRL2qRQdS 8R+9NUFs3PvWHf2ERfK8rSN5j1WprRQFhF9HFnOqwluZQiL3DfjgAPrjammdN7Bdizmt 1cU2XMb9N9XDZsbIvDgewa+R4m/KEJ/c3BjJZbRuaqWuhWno0wAqheGjzZFwAqCH5ZHw cu1VM1NfO4rxceRVIV2MBJ7uJN+IXjsYUfqPMoF5dWO8/kLeTGCdx1fDufvNSewns4tJ 32fw== X-Gm-Message-State: ALoCoQkHP33Lho7WNe0xrQamQk9Vg1xt0gPAkP7drRf7fVSPjQ7n964XSgkja0xAIMhmU6X1sRyW X-Received: by 10.15.90.131 with SMTP id q3mr165893eez.114.1388776561553; Fri, 03 Jan 2014 11:16:01 -0800 (PST) Received: from localhost.localdomain ([182.185.255.37]) by mx.google.com with ESMTPSA id h48sm147395187eev.3.2014.01.03.11.15.59 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 03 Jan 2014 11:16:00 -0800 (PST) From: Omair Javaid To: gdb-patches@sourceware.org Cc: patches@linaro.org Subject: [PATCH v2 0/7] ARM record/replay and reverse debugging improvements Date: Fri, 03 Jan 2014 19:16:00 -0000 Message-Id: In-Reply-To: References: X-IsSubscribed: yes X-SW-Source: 2014-01/txt/msg00011.txt.bz2 This patch series improves gdb process record and reverse debugging capabilities for arm targets. Here is the list of 7 patches in this series and their description: [PATCH v2 1/7] Fix for memory record corruption due to 64bit addresses [PATCH v2 2/7] Fix for bugs in push and ldm instructions decoding [PATCH v2 3/7] Fix for bug in pop instruction decoding [PATCH v2 4/7] Adds support for recording system call instructions [PATCH v2 5/7] Adds support for thumb32 instructions recording [PATCH v2 6/7] Updates configure.tgt and enables gdb.reverse testsuite [PATCH v2 7/7] Adds a NEWS entry for arm record/replay improvements gdb/NEWS | 4 + gdb/arm-linux-tdep.c | 248 +++++++++++++++- gdb/arm-tdep.c | 718 ++++++++++++++++++++++++++++++++++++++++----- gdb/arm-tdep.h | 4 +- gdb/configure.tgt | 2 +- gdb/testsuite/lib/gdb.exp | 6 +- 6 files changed, 905 insertions(+), 77 deletions(-) -- 1.7.9.5