From patchwork Fri Aug 24 09:58:46 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steven Bosscher X-Patchwork-Id: 179808 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 955CE2C0100 for ; Fri, 24 Aug 2012 19:59:33 +1000 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1346407173; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: MIME-Version:Received:From:Date:Message-ID:Subject:To: Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:Sender:Delivered-To; bh=B+cupgy KdUNLHCXcwpDw90ssVaQ=; b=vw4xPAGXgoji+VmeIEjukZJOPmkXV9qIGAZxlQy D0zrNrj5ew4Y+SSlKIGgoc2YzTRlOGsf9eChKq8arcJEO7xmEj0+lHz/16h2f5fh w4aMJiweLOF8IbKSv1VzsddA1XB4PK1d2ogRe5TpyLPkC8tJU1DZxFIcZzCGcqlV uyiU= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Received:MIME-Version:Received:From:Date:Message-ID:Subject:To:Content-Type:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=OLp5AH8AHc6fNed9b1tZDC411IjpkW9M5epnaM26nGSOorIeqNJ3KBztu3R7HD 5Is+QaygGv8Hn3qtE4bkadYnva/IF+VVY2QAgAFQj9LxOaEO42KD4E8P7/5rogLV 9ejC0KlG/x1tg2fq3iDbuv6htFD4DZYZH+c+AtFPWcMSs=; Received: (qmail 9179 invoked by alias); 24 Aug 2012 09:59:28 -0000 Received: (qmail 9170 invoked by uid 22791); 24 Aug 2012 09:59:27 -0000 X-SWARE-Spam-Status: No, hits=-4.3 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, KHOP_RCVD_TRUST, RCVD_IN_DNSWL_LOW, RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org Received: from mail-lpp01m010-f47.google.com (HELO mail-lpp01m010-f47.google.com) (209.85.215.47) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 24 Aug 2012 09:59:08 +0000 Received: by lagv3 with SMTP id v3so1038358lag.20 for ; Fri, 24 Aug 2012 02:59:06 -0700 (PDT) Received: by 10.112.51.201 with SMTP id m9mr2460390lbo.2.1345802346811; Fri, 24 Aug 2012 02:59:06 -0700 (PDT) MIME-Version: 1.0 Received: by 10.112.6.67 with HTTP; Fri, 24 Aug 2012 02:58:46 -0700 (PDT) From: Steven Bosscher Date: Fri, 24 Aug 2012 11:58:46 +0200 Message-ID: Subject: [patch] obvious: don't dump out-of-ssa partitions for virtual operands To: GCC Patches X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org ... because they're not partitioned anyway, so they just confuse the dumps: Will bootstrap&test, and commit if nothing strange shows up. Ciao! Steven * tree-ssa-live.c (dump_var_map): Do not dump the partition map of virtual operands. Index: tree-ssa-live.c =================================================================== --- tree-ssa-live.c (revision 190601) +++ tree-ssa-live.c (working copy) @@ -1140,7 +1140,8 @@ dump_var_map (FILE *f, var_map map) else p = x; - if (ssa_name (p) == NULL_TREE) + if (ssa_name (p) == NULL_TREE + || virtual_operand_p (ssa_name (p))) continue; t = 0;