From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27776 invoked by alias); 10 Jan 2013 07:09:23 -0000 Received: (qmail 27764 invoked by uid 22791); 10 Jan 2013 07:09:23 -0000 X-SWARE-Spam-Status: No, hits=-4.5 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,KHOP_RCVD_TRUST,KHOP_THREADED,RCVD_IN_DNSWL_LOW,RCVD_IN_HOSTKARMA_YE,RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mail-ie0-f174.google.com (HELO mail-ie0-f174.google.com) (209.85.223.174) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 10 Jan 2013 07:09:17 +0000 Received: by mail-ie0-f174.google.com with SMTP id c11so287892ieb.19 for ; Wed, 09 Jan 2013 23:09:16 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type:x-gm-message-state; bh=Wz4Yr94UeTU5KFrSa1J+GdjIWitKm3l/+vvsybjiCus=; b=SyqpqpnicGRmwSxjK3rh6UWO3lWaNbkQdCvdm3+k3U35flfHkQ64SDMC6yYqG+UrUz sgVw/0Ss5ULb6V4gCUhh1xETEElyfPqgrL6y4B+SUvke+LM10DyXyrIBH4mjZDKPRK8G PmhJ7NTmfIXkSQBKtRFg4dRWIuOQgx9qWFTkUJqHhLMq9Xu44CszJczIpRmYWrBHiczj 1NwE5rAIp94GK7SntDkZhr6ulw1Apbzu7AgJHdF2WabynWzpwP5tSO+9NyAjNlINunea +tBRIa8kAioWFuvMSqMdyCaCpLaTUGcVTkFYS+0kmCaVRdhn6/JnHz0vYimtOCGYcYaw 2+LQ== MIME-Version: 1.0 X-Received: by 10.50.187.165 with SMTP id ft5mr4575958igc.12.1357801756823; Wed, 09 Jan 2013 23:09:16 -0800 (PST) Received: by 10.50.191.226 with HTTP; Wed, 9 Jan 2013 23:09:16 -0800 (PST) In-Reply-To: References: Date: Thu, 10 Jan 2013 07:09:00 -0000 Message-ID: Subject: Re: libsanitizer mege from upstream r171973 From: Dmitry Vyukov To: Konstantin Serebryany Cc: GCC Patches , Jakub Jelinek , Dodji Seketeli , Wei Mi Content-Type: text/plain; charset=ISO-8859-1 X-Gm-Message-State: ALoCoQmsET+qIgDbj9LyCiCvqlALOuKXkvmYDeZcal5SdsMAl7RnyUiUegdj39Ro8iIBZf5GSvIabsnWo2BMIFEDmPgIlFFlNyTspS1P7XOc5AFEVguvpMTcUc9Zg9B7ZQFvdziRAnaK0rtxItom6Lqi+/F5uN41i+383mspoVkAgvAGLwGhqGXA+uxpaTyU1y4sqn9y/IxJ 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 X-SW-Source: 2013-01/txt/msg00517.txt.bz2 On Thu, Jan 10, 2013 at 11:01 AM, Konstantin Serebryany wrote: > Hi, > > The attached patch is the libsanitizer merge from upstream r171973. > > Lots of changes. Among other things: > - slow CFI-based unwinder (off by default for now) > - more interceptors in asan (read, pread, etc) > - precise handling of memset/memcpy/etc (detects first overrun byte) > - new experimental asan allocator (off by default) > - asan now detects new/free, malloc/delete and new/delete[] mismatches > - tsan now detects more races IO operations > > Patch for libsanitizer is automatically generated by libsanitizer/merge.sh > Tested with > rm -rf */{*/,}libsanitizer \ > && make -j 50 \ > && make -C gcc check-g{cc,++} > RUNTESTFLAGS='--target_board=unix\{-m32,-m64\} asan.exp' > > Our internal LLVM bots (Linux, Mac and Android) are also green, but > since the changes are large something may potentially break on other > platforms. > > Ok to commit? Rubberstamp LGTM (already reviewed upstream)