From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23701 invoked by alias); 5 Jan 2015 21:39:12 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 23691 invoked by uid 89); 5 Jan 2015 21:39:11 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Mon, 05 Jan 2015 21:39:10 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t05Ld8K0028644 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Mon, 5 Jan 2015 16:39:08 -0500 Received: from tucnak.zalov.cz (ovpn-116-64.ams2.redhat.com [10.36.116.64]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t05Ld6vA009462 (version=TLSv1/SSLv3 cipher=AES128-GCM-SHA256 bits=128 verify=NO); Mon, 5 Jan 2015 16:39:08 -0500 Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.14.9/8.14.9) with ESMTP id t05Ld4pN031522; Mon, 5 Jan 2015 22:39:05 +0100 Received: (from jakub@localhost) by tucnak.zalov.cz (8.14.9/8.14.9/Submit) id t05Ld39v031521; Mon, 5 Jan 2015 22:39:03 +0100 Date: Mon, 05 Jan 2015 21:39:00 -0000 From: Jakub Jelinek To: Jeff Law Cc: Dodji Seketeli , Jason Merrill , gcc-patches@gcc.gnu.org Subject: Re: Patch ping Message-ID: <20150105213903.GA1667@tucnak.redhat.com> Reply-To: Jakub Jelinek References: <20150105135313.GS1667@tucnak.redhat.com> <54AB01CD.8030509@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <54AB01CD.8030509@redhat.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-IsSubscribed: yes X-SW-Source: 2015-01/txt/msg00168.txt.bz2 On Mon, Jan 05, 2015 at 02:27:41PM -0700, Jeff Law wrote: > On 01/05/15 06:53, Jakub Jelinek wrote: > >Hi! > > > >I'd like to ping 3 patches: > > > >http://gcc.gnu.org/ml/gcc-patches/2014-12/msg01519.html > > - PR64344 - -fsanitize=float-cast-overflow fix - the C FE part > > is approved, but not the sanitizer bits outside of the FE > OK. > > > > >http://gcc.gnu.org/ml/gcc-patches/2014-12/msg01271.html > > - PR64265 - tsan support for exceptions > OK. > > > > >http://gcc.gnu.org/ml/gcc-patches/2014-12/msg00297.html > > - -fsanitize=vptr support > How is this different from vtable pointer verification that we already > support? Is there some reason we can't just use that instead? I don't now the current vtable pointer verification too much, but my understanding of it is that it is hardly usable, because e.g. it requires libstdc++ to be rebuilt with the verification enabled, otherwise you can't verify stuff, and that means a performance penalty even for code you don't want to verify. Unlike that, -fsanitize=vptr is lightweight, and you only rebuild with it what you want and can have other code kept as is, not recompiled. Jakub