diff options
author | Paul Brook <paul@codesourcery.com> | 2006-03-08 14:22:47 +0000 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2006-03-08 14:22:47 +0000 |
commit | f53f0d0bde592682b363c703b68166408c6552d1 (patch) | |
tree | d3e267b86ed7b15a46b3365dad8afe040d11be6d /gdb/arm-tdep.c | |
parent | b5678df9a4ab084a28c5757ddfd6a8fe02f58251 (diff) | |
download | gdb-f53f0d0bde592682b363c703b68166408c6552d1.zip gdb-f53f0d0bde592682b363c703b68166408c6552d1.tar.gz gdb-f53f0d0bde592682b363c703b68166408c6552d1.tar.bz2 |
2006-03-08 Paul Brook <paul@codesourcery.com>
* arm-tdep.c (arm_push_dummy_call): Remove stack alignment.
(arm_frame_align): New function.
(arm_gdbarch_init): Use it.
Diffstat (limited to 'gdb/arm-tdep.c')
-rw-r--r-- | gdb/arm-tdep.c | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c index 652be4b..cb3c261 100644 --- a/gdb/arm-tdep.c +++ b/gdb/arm-tdep.c @@ -1173,11 +1173,6 @@ arm_push_dummy_call (struct gdbarch *gdbarch, struct value *function, argreg = ARM_A1_REGNUM; nstack = 0; - /* Some platforms require a double-word aligned stack. Make sure sp - is correctly aligned before we start. We always do this even if - it isn't really needed -- it can never hurt things. */ - sp &= ~(CORE_ADDR)(2 * DEPRECATED_REGISTER_SIZE - 1); - /* The struct_return pointer occupies the first parameter passing register. */ if (struct_return) @@ -1299,6 +1294,17 @@ arm_push_dummy_call (struct gdbarch *gdbarch, struct value *function, return sp; } + +/* Always align the frame to an 8-byte boundary. This is required on + some platforms and harmless on the rest. */ + +static CORE_ADDR +arm_frame_align (struct gdbarch *gdbarch, CORE_ADDR sp) +{ + /* Align the stack to eight bytes. */ + return sp & ~ (CORE_ADDR) 7; +} + static void print_fpu_flags (int flags) { @@ -2738,6 +2744,7 @@ arm_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches) tdep->jb_pc = -1; /* Longjump support not enabled by default. */ set_gdbarch_push_dummy_call (gdbarch, arm_push_dummy_call); + set_gdbarch_frame_align (gdbarch, arm_frame_align); set_gdbarch_write_pc (gdbarch, arm_write_pc); |