From patchwork Mon Sep 23 22:09:38 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew Burgess X-Patchwork-Id: 34639 Received: (qmail 115758 invoked by alias); 23 Sep 2019 22:09:49 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 115619 invoked by uid 89); 23 Sep 2019 22:09:48 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-24.0 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.1 spammy=3017, pushing X-HELO: mail-wm1-f68.google.com Received: from mail-wm1-f68.google.com (HELO mail-wm1-f68.google.com) (209.85.128.68) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 23 Sep 2019 22:09:46 +0000 Received: by mail-wm1-f68.google.com with SMTP id f22so3743894wmc.2 for ; Mon, 23 Sep 2019 15:09:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=embecosm.com; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references :in-reply-to:references; bh=mEfHcYAijSaXTt0BQmt8tTb2+7NKNMI2NxY1mAuQF94=; b=NLw3gMHT9DkcTnmOIXhnT3qchZhtx2Mlq4OOpb81nPngN/oB/RlYMSK5ngEOpC+fHu 9YA75uaJFZqyVCtyjNDzAeLiDTMu+U0F7s1OZd988TSvdSqXi4zmkruCFTFH79CRs8Wq 7uyVMslmWXnH3X2Gy+c+KpeJ/YEz2qDkvehl7Uj7i0oBTNnROVRa+zJSvMrOuRYcsRuS FJdOARJK/6L3e6tmkju9RgMgE2qPJjXlCv6pY+I6dVBMkIc++CSFi08jJo6AHMWRNd8x N0E0ShXWg69DTKQHoqZUlcySQiWFJhaRYpZyxgGIqv0mnHwIsiW91PRx0NM1ok2e10hg m4Dg== Return-Path: Received: from localhost (host86-128-12-122.range86-128.btcentralplus.com. [86.128.12.122]) by smtp.gmail.com with ESMTPSA id f66sm18733795wmg.2.2019.09.23.15.09.43 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 23 Sep 2019 15:09:44 -0700 (PDT) From: Andrew Burgess To: gdb-patches Cc: Andrew Burgess Subject: [PATCH 2/2] gdb: Change a VEC to std::vector in btrace.{c,h} Date: Mon, 23 Sep 2019 23:09:38 +0100 Message-Id: <2754d81c341f0cbb6240e309f93d3b9efb38c3e3.1569276387.git.andrew.burgess@embecosm.com> In-Reply-To: References: In-Reply-To: References: X-IsSubscribed: yes Replace a VEC with a std::vector in btrace.h, and update btrace.c to match. This code is currently untested, so I've been quite conservative with the changes - where previously we used VEC_safe_push which would allocate the vector if it isn't already allocated - I now check and allocate the std::vector using 'new' before pushing to the vector. As the new vector is inside a union I've currently used a pointer to vector, which makes the code slightly uglier than it might otherwise be, but again, due to lack of testing I'm reluctant to start refactoring the code in a big way. gdb/ChangeLog: * btrace.c (btrace_maint_clear): Update to handle change from VEC to std::vector. (btrace_maint_decode_pt): Likewise. (btrace_maint_update_packets): Likewise. (btrace_maint_print_packets): Likewise. (maint_info_btrace_cmd): Likewise. * btrace.h: Remove 'vec.h' header include and use of DEF_VEC_O. (struct btrace_maint_info) : Change fromm VEC to std::vector. --- gdb/ChangeLog | 12 ++++++++++++ gdb/btrace.c | 37 +++++++++++++++++++------------------ gdb/btrace.h | 4 +--- 3 files changed, 32 insertions(+), 21 deletions(-) diff --git a/gdb/btrace.c b/gdb/btrace.c index 5013b568a45..59e2a49bcd8 100644 --- a/gdb/btrace.c +++ b/gdb/btrace.c @@ -1828,7 +1828,7 @@ btrace_maint_clear (struct btrace_thread_info *btinfo) #if defined (HAVE_LIBIPT) case BTRACE_FORMAT_PT: - xfree (btinfo->maint.variant.pt.packets); + delete (btinfo->maint.variant.pt.packets); btinfo->maint.variant.pt.packets = NULL; btinfo->maint.variant.pt.packet_history.begin = 0; @@ -2987,8 +2987,10 @@ btrace_maint_decode_pt (struct btrace_maint_info *maint, if (maint_btrace_pt_skip_pad == 0 || packet.packet.type != ppt_pad) { packet.errcode = pt_errcode (errcode); - VEC_safe_push (btrace_pt_packet_s, maint->variant.pt.packets, - &packet); + if (maint->variant.pt.packets == NULL) + maint->variant.pt.packets + = new std::vector ; + maint->variant.pt.packets->push_back (packet); } } @@ -2996,8 +2998,10 @@ btrace_maint_decode_pt (struct btrace_maint_info *maint, break; packet.errcode = pt_errcode (errcode); - VEC_safe_push (btrace_pt_packet_s, maint->variant.pt.packets, - &packet); + if (maint->variant.pt.packets == NULL) + maint->variant.pt.packets + = new std::vector ; + maint->variant.pt.packets->push_back (packet); warning (_("Error at trace offset 0x%" PRIx64 ": %s."), packet.offset, pt_errstr (packet.errcode)); @@ -3098,11 +3102,11 @@ btrace_maint_update_packets (struct btrace_thread_info *btinfo, #if defined (HAVE_LIBIPT) case BTRACE_FORMAT_PT: - if (VEC_empty (btrace_pt_packet_s, btinfo->maint.variant.pt.packets)) + if (btinfo->maint.variant.pt.packets->empty ()) btrace_maint_update_pt_packets (btinfo); *begin = 0; - *end = VEC_length (btrace_pt_packet_s, btinfo->maint.variant.pt.packets); + *end = btinfo->maint.variant.pt.packets->size (); *from = btinfo->maint.variant.pt.packet_history.begin; *to = btinfo->maint.variant.pt.packet_history.end; break; @@ -3145,23 +3149,21 @@ btrace_maint_print_packets (struct btrace_thread_info *btinfo, #if defined (HAVE_LIBIPT) case BTRACE_FORMAT_PT: { - VEC (btrace_pt_packet_s) *packets; + std::vector *packets; unsigned int pkt; packets = btinfo->maint.variant.pt.packets; for (pkt = begin; pkt < end; ++pkt) { - const struct btrace_pt_packet *packet; - - packet = VEC_index (btrace_pt_packet_s, packets, pkt); + const struct btrace_pt_packet &packet = packets->at (pkt); printf_unfiltered ("%u\t", pkt); - printf_unfiltered ("0x%" PRIx64 "\t", packet->offset); + printf_unfiltered ("0x%" PRIx64 "\t", packet.offset); - if (packet->errcode == pte_ok) - pt_print_packet (&packet->packet); + if (packet.errcode == pte_ok) + pt_print_packet (&packet.packet); else - printf_unfiltered ("[error: %s]", pt_errstr (packet->errcode)); + printf_unfiltered ("[error: %s]", pt_errstr (packet.errcode)); printf_unfiltered ("\n"); } @@ -3452,9 +3454,8 @@ maint_info_btrace_cmd (const char *args, int from_tty) version.ext != NULL ? version.ext : ""); btrace_maint_update_pt_packets (btinfo); - printf_unfiltered (_("Number of packets: %u.\n"), - VEC_length (btrace_pt_packet_s, - btinfo->maint.variant.pt.packets)); + printf_unfiltered (_("Number of packets: %zu.\n"), + btinfo->maint.variant.pt.packets->size ()); } break; #endif /* defined (HAVE_LIBIPT) */ diff --git a/gdb/btrace.h b/gdb/btrace.h index d09c424804b..cea8cd9ad6a 100644 --- a/gdb/btrace.h +++ b/gdb/btrace.h @@ -29,7 +29,6 @@ #include "gdbsupport/btrace-common.h" #include "target/waitstatus.h" /* For enum target_stop_reason. */ #include "gdbsupport/enum-flags.h" -#include "gdbsupport/vec.h" #if defined (HAVE_LIBIPT) # include @@ -267,7 +266,6 @@ struct btrace_pt_packet /* Define functions operating on a vector of packets. */ typedef struct btrace_pt_packet btrace_pt_packet_s; -DEF_VEC_O (btrace_pt_packet_s); #endif /* defined (HAVE_LIBIPT) */ /* Branch trace iteration state for "maintenance btrace packet-history". */ @@ -301,7 +299,7 @@ struct btrace_maint_info struct { /* A vector of decoded packets. */ - VEC (btrace_pt_packet_s) *packets; + std::vector *packets; /* The packet history iterator. We are iterating over the above PACKETS vector. */