From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6449 invoked by alias); 16 Feb 2015 19:15:45 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 6389 invoked by uid 48); 16 Feb 2015 19:15:38 -0000 From: "trippels at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug ipa/65076] [5 Regression] 16% tramp3d-v4.cpp compile time regression Date: Mon, 16 Feb 2015 19:15:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: ipa X-Bugzilla-Version: 5.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: trippels at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2015-02/txt/msg01823.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65076 --- Comment #5 from Markus Trippelsdorf --- Perf shows: Overhead Command Shared Object Symbol 2.45% cc1plus libc-2.21.90.so [.] _int_malloc 1.88% cc1plus cc1plus [.] bitmap_find_bit 1.72% cc1plus cc1plus [.] gt_ggc_mx_lang_tree_node 1.36% cc1plus libc-2.21.90.so [.] _int_free 1.05% cc1plus cc1plus [.] ggc_set_mark 0.97% cc1plus cc1plus [.] record_reg_classes 0.96% cc1plus cc1plus [.] df_worklist_dataflow 0.91% cc1plus cc1plus [.] build_qualified_type 0.88% cc1plus cc1plus [.] df_note_compute 0.84% cc1plus libc-2.21.90.so [.] malloc_consolidate (Using a faster malloc implementation speeds up compile time by ~5%: markus@x4 ~ % time g++ -w -Ofast tramp3d-v4.cpp g++ -w -Ofast tramp3d-v4.cpp 26.00s user 0.32s system 99% cpu 26.341 total markus@x4 ~ % time LD_PRELOAD=/usr/lib/libllalloc.so.1.3 g++ -w -Ofast tramp3d-v4.cpp LD_PRELOAD=/usr/lib/libllalloc.so.1.3 g++ -w -Ofast tramp3d-v4.cpp 24.60s user 0.37s system 99% cpu 24.997 total)