From patchwork Fri Aug 23 19:33:23 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Marchi X-Patchwork-Id: 34257 Received: (qmail 108464 invoked by alias); 23 Aug 2019 19:33:36 -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 108455 invoked by uid 89); 23 Aug 2019 19:33:36 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-20.7 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.1 spammy= X-HELO: smtp.polymtl.ca Received: from smtp.polymtl.ca (HELO smtp.polymtl.ca) (132.207.4.11) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 23 Aug 2019 19:33:34 +0000 Received: from simark.ca (simark.ca [158.69.221.121]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id x7NJXOp9002155 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Fri, 23 Aug 2019 15:33:29 -0400 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp.polymtl.ca x7NJXOp9002155 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=polymtl.ca; s=default; t=1566588810; bh=8LtoPrKVxGvGvq9pso1HxpJRDoBNQ31fzNqTQbXDrB8=; h=Subject:To:References:From:Date:In-Reply-To:From; b=pUGmJwR/eLotfBsOn4c3xVCCO9LciKe1qDx9XJvYAyrkPL5oURsKtUYBt00hxRpxK WHuNI/QF1OzC32R1ywLR35TPP/pT5qUcdiyDmz/Hg5Gvzr4bKiW2ODTgDsVip1h2rn h7rwPk6E+WnjcwWB9nZtmDssQHlB0IWtTuhW68h8= Received: from [172.16.2.176] (wsip-184-188-36-2.sd.sd.cox.net [184.188.36.2]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id 334B61EBE5; Fri, 23 Aug 2019 15:33:24 -0400 (EDT) Subject: Re: [PATCH] Remove some variables in favor of using gdb::optional To: Pedro Alves , gdb-patches@sourceware.org References: <20190804201023.25628-1-simon.marchi@polymtl.ca> <9b1cdf6d-baae-3a5e-c2ea-fcdf124b7a1b@redhat.com> <65a23d93-bf2e-de1a-9052-f6d75832c2a1@polymtl.ca> <697c3e3d-4f75-4fb2-685b-a6fa59c7a2a3@polymtl.ca> <5d2e7548-1303-ba42-6d67-93ab37f6577d@redhat.com> From: Simon Marchi Message-ID: <829ab63c-55b0-07bc-1517-0efe9aeecc95@polymtl.ca> Date: Fri, 23 Aug 2019 15:33:23 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 MIME-Version: 1.0 In-Reply-To: <5d2e7548-1303-ba42-6d67-93ab37f6577d@redhat.com> X-IsSubscribed: yes On 2019-08-23 11:35 a.m., Pedro Alves wrote: >> Boost is very widely available, so I'd prefer if we could depend on the system-installed >> boost, or have the user provide it, but I would understand if others didn't want to add >> that burden to those who build GDB. > > Yeah, boost would be a too-big dependency, IMO. It's huge. True, libbost1.67-dev on Debian unpacks to 150 MB of header files. It would be nice to be able to select which features one actually need and check-in just the necessary files (a bit like gnulib). I bet that for tribool, it would be just a few files. > >> So an alternative would be to carry a version of boost >> (maybe just the files that we need) in our repo. This would have the advantage that everybody >> would build with the same version, hence less chances of build failures with particular >> combinations of compilers and boost versions, or using features from a too recent boost. >> >> What do you think? > > I would really not like to carry boost. It's very big and intertwined. I think the > costs outweighs the benefits here, because we'd be pulling in a huge codebase when we > only need minimal things. I'd also like to move more in the direction of sharing more > code across the toolchain (gdb, gcc, gold, etc.) and depending on boost would > certainly prevent that. LLVM doesn't depend on boost either, for example. Given > that it's a C++ project from the get go, I think that's telling. Most certainly for > the same reasons. > > On reusing parts, when I was working on the original gdb::unique_ptr emulation for > C++98, before we upgraded to C++11, I looked at reusing boost's version. What I > found was a huge horrible mess, with lots of incomprehensible #ifdefery to support > compilers that no one cares about anymore (old Borland C++, etc.), impossible to > decouple. Another issue is that a boost API may have been originally designed > with C++98 in mind, and it'd be done differently with C++11 and later in mind. > It might have been the case here, for example note how boost's tribool uses > the C++98 safe bool idiom, instead of C++11 operator bool(). Ok, all good points. >> diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c >> index de9755f6ce30..915e0b25cea1 100644 >> --- a/gdb/dwarf2read.c >> +++ b/gdb/dwarf2read.c >> @@ -90,6 +90,7 @@ >> #include >> #include "rust-lang.h" >> #include "gdbsupport/pathstuff.h" >> +#include >> >> /* When == 1, print basic high level tracing messages. >> When > 1, be more verbose. >> @@ -5843,7 +5844,7 @@ dw2_debug_names_iterator::next () >> return NULL; >> } >> const mapped_debug_names::index_val &indexval = indexval_it->second; >> - gdb::optional is_static; >> + boost::tribool is_static(boost::indeterminate); > > Here I imagine we'd more naturally want to treat a tribool like > a built-in, similar to an enum class that accepts {true, false, unknown}, > so we'd write: > > tribool is_static = true; > tribool is_static = false; > tribool is_static = tribool::unknown; Yes that sounds good. > > ("indeterminate" is really a mouthful, hence "unknown".) I also wasn't sure about this, what the third state should be, more on that below. > with tribool::unknown being e.g., a constexpr global. >> dwarf2_per_cu_data *per_cu = NULL; >> for (const mapped_debug_names::index_val::attr &attr : indexval.attr_vec) >> { >> @@ -5910,10 +5911,10 @@ dw2_debug_names_iterator::next () >> goto again; >> >> /* Check static vs global. */ >> - if (is_static.has_value () && m_block_index.has_value ()) >> + if (!boost::indeterminate(is_static) && m_block_index.has_value ()) > > and here: > > + if (is_static != tribool::unknown && m_block_index.has_value ()) > > Here's a quick-prototype starter implementation. It's missing sprinkling > with constexpr, inline, noexcept, relational operators (op|| and op&& ?), > unit tests, etc., but should show the idea. > > #include > > class tribool > { > private: > struct unknown_t {}; > public: > /* Keep it trivial. */ > tribool () = default; > > tribool (bool val) > : m_value (val) > {} > > operator bool () const > { > return m_value == 1; > } > > bool operator== (const tribool &other) > { > return m_value == other.m_value; > } > > tribool operator! () > { > if (m_value == 0) > return true; > else if (m_value == 1) > return false; > else > return unknown; > } > > static tribool unknown; > > private: > tribool (unknown_t dummy) > : m_value (-1) > {} > > int m_value; // -1 for unknown. > }; > > tribool tribool::unknown (unknown_t{}); > > int > main () > { > tribool b1 = true; > tribool b2 = false; > tribool b3 = tribool::unknown; > tribool b = b3; > > if (b) > printf ("then\n"); > else if (!b) > printf ("else\n"); > else > printf ("unknown\n"); > > return b1; > } > > Would you like to run with this? So I wasn't sure about what the third state should be. I think it depends on the particular context. In different contexts, it could mean "unknown", "unspecified", "auto", "don't care", etc. There's no one-size word that fits all case, so I don't really like the idea of having just one word and have it represent poorly what we actually mean. That lead me to think, if we want to represent three states and if the states are specific to each use case, why not just define an enum and be explicit about it? A bit like why I prefer defining an explicit type with two fields rather than using std::pair: the "first" and "second" members are not very descriptive. Here's a patch that does that. What do you think? From ba180d647f6ceb69b9a01c46807c102439b8cae1 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Fri, 23 Aug 2019 14:53:59 -0400 Subject: [PATCH] dwarf2read: replace gdb::optional with enum gdb::optional is dangerous, because it's easy to do: if (opt_bool) when you actually meant if (*opt_bool) or vice-versa. The first checks if the optional is set, the second checks if the wrapped bool is true. Replace it with an enum that explicitly defines the three possible states. gdb/ChangeLog: * dwarf2read.c (dw2_debug_names_iterator::next): Use enum to represent whether the symbol is static, dynamic, or we don't know. --- gdb/dwarf2read.c | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index de9755f6ce30..3dc34ab5a339 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -5843,7 +5843,11 @@ dw2_debug_names_iterator::next () return NULL; } const mapped_debug_names::index_val &indexval = indexval_it->second; - gdb::optional is_static; + enum { + symbol_nature_unknown, + symbol_nature_static, + symbol_nature_dynamic, + } symbol_nature = symbol_nature_unknown; dwarf2_per_cu_data *per_cu = NULL; for (const mapped_debug_names::index_val::attr &attr : indexval.attr_vec) { @@ -5895,12 +5899,12 @@ dw2_debug_names_iterator::next () case DW_IDX_GNU_internal: if (!m_map.augmentation_is_gdb) break; - is_static = true; + symbol_nature = symbol_nature_static; break; case DW_IDX_GNU_external: if (!m_map.augmentation_is_gdb) break; - is_static = false; + symbol_nature = symbol_nature_dynamic; break; } } @@ -5910,10 +5914,11 @@ dw2_debug_names_iterator::next () goto again; /* Check static vs global. */ - if (is_static.has_value () && m_block_index.has_value ()) + if (symbol_nature != symbol_nature_unknown && m_block_index.has_value ()) { const bool want_static = *m_block_index == STATIC_BLOCK; - if (want_static != *is_static) + const bool symbol_is_static = symbol_nature == symbol_nature_static; + if (want_static != symbol_is_static) goto again; }