From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1795 invoked by alias); 20 Nov 2002 16:26:58 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 1699 invoked from network); 20 Nov 2002 16:26:48 -0000 Received: from unknown (HELO hub.ott.qnx.com) (209.226.137.76) by sources.redhat.com with SMTP; 20 Nov 2002 16:26:48 -0000 Received: from smtp.ott.qnx.com (smtp.ott.qnx.com [10.0.2.158]) by hub.ott.qnx.com (8.9.3/8.9.3) with ESMTP id LAA22810; Wed, 20 Nov 2002 11:22:50 -0500 Received: from catdog ([10.4.2.2]) by smtp.ott.qnx.com (8.8.8/8.6.12) with SMTP id LAA32072; Wed, 20 Nov 2002 11:17:17 -0500 Message-ID: <191601c290b1$942159e0$0202040a@catdog> From: "Kris Warkentin" To: Cc: References: <200211201618.gAKGITW18622@pc960.cambridge.arm.com> Subject: Re: ARM stack alignment on hand called functions Date: Wed, 20 Nov 2002 08:26:00 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-SW-Source: 2002-11/txt/msg00260.txt.bz2 The problem arises only with functions which return structures whose size is not evenly divisible by 4. Below is what I did to solve it. Index: arm-tdep.c =================================================================== RCS file: /product/tools/gdb/gdb/arm-tdep.c,v retrieving revision 1.9 retrieving revision 1.10 diff -c -r1.9 -r1.10 *** arm-tdep.c 20 Sep 2002 17:11:31 -0000 1.9 --- arm-tdep.c 19 Nov 2002 18:33:37 -0000 1.10 *************** *** 1480,1485 **** --- 1480,1486 ---- } } + sp = (sp + 3) & ~3; /* Return adjusted stack pointer. */ return sp; } The code in valops.c : hand_function_call() that was causing the problem was this: /* Reserve space for the return structure to be written on the stack, if necessary */ if (struct_return) { int len = TYPE_LENGTH (value_type); if (STACK_ALIGN_P ()) /* MVS 11/22/96: I think at least some of this stack_align code is really broken. Better to let PUSH_ARGUMENTS adjust the stack in a target-defined manner. */ len = STACK_ALIGN (len); if (INNER_THAN (1, 2)) { /* stack grows downward */ sp -= len; struct_addr = sp; } So what I did was to make sure that arm_push_arguments would always return an aligned stack pointer. I think we can safely agree that arm_push_arguments should NEVER return an unaligned stack pointer right? cheers, Kris