Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754209AbZKSSW0 (ORCPT ); Thu, 19 Nov 2009 13:22:26 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753332AbZKSSW0 (ORCPT ); Thu, 19 Nov 2009 13:22:26 -0500 Received: from mx1.redhat.com ([209.132.183.28]:23438 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752951AbZKSSWZ (ORCPT ); Thu, 19 Nov 2009 13:22:25 -0500 Message-ID: <4B058C76.9090609@redhat.com> Date: Thu, 19 Nov 2009 18:20:38 +0000 From: Andrew Haley User-Agent: Thunderbird 2.0.0.23 (X11/20090825) MIME-Version: 1.0 To: Thomas Gleixner CC: Ingo Molnar , "H. Peter Anvin" , LKML , Andrew Morton , Heiko Carstens , feng.tang@intel.com, Fr??d??ric Weisbecker , Steven Rostedt , Peter Zijlstra , jakub@redhat.com, gcc@gcc.gnu.org Subject: Re: BUG: GCC-4.4.x changes the function frame on some functions References: <20091119072040.GA23579@elte.hu> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1645 Lines: 66 Thomas Gleixner wrote: > On Thu, 19 Nov 2009, Thomas Gleixner wrote: > > Can the GCC folks please shed some light on this: > > standard function start: > > push %ebp > mov %esp, %ebp > .... > call mcount > > modified function start on a handful of functions only seen with gcc > 4.4.x on x86 32 bit: > > push %edi > lea 0x8(%esp),%edi > and $0xfffffff0,%esp > pushl -0x4(%edi) > push %ebp > mov %esp,%ebp > ... > call mcount > > This modification leads to a hard to solve problem in the kernel > function graph tracer which assumes that the stack looks like: > > return address > saved ebp > > With the modified function start sequence this is not longer true and > the manipulation of the return address on the stack fails silently. > > Neither gcc 4.3 nor gcc 3.4 are generating such function frames, so it > looks like a gcc 4.4.x feature. > > There is no real obvious reason why the edi magic needs to be done > _before_ > > push %ebp > mov %esp,%ebp OK, I found it. There is a struct defined as struct entry { ... } __attribute__((__aligned__((1 << (4))))); and then in timer_stats_update_stats you have a local variable of type struct entry: void timer_stats_update_stats() { spinlock_t *lock; struct entry *entry, input; So, gcc has to 16-align the stack pointer to satisfy the alignment for struct entry. Andrew. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/