diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2007-12-20 17:13:57 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@linux-mips.org> | 2007-12-20 17:13:57 +0000 |
commit | 5863b5d5368ca1fb517ee065ab687d8ba2fde354 (patch) | |
tree | 4e573a01d8116be7d465ed99f8701d828f15561c /gdb/mips-tdep.c | |
parent | 1e9836570f11422834da6ad9ccc49ce2fd121222 (diff) | |
download | gdb-5863b5d5368ca1fb517ee065ab687d8ba2fde354.zip gdb-5863b5d5368ca1fb517ee065ab687d8ba2fde354.tar.gz gdb-5863b5d5368ca1fb517ee065ab687d8ba2fde354.tar.bz2 |
* mips-tdep.c (mips_n32n64_push_dummy_call): Sign-extend
integers and 32-bit pointers as required by the ABI.
Diffstat (limited to 'gdb/mips-tdep.c')
-rw-r--r-- | gdb/mips-tdep.c | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index 193a21b..d4c8a3c 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -3184,8 +3184,21 @@ mips_n32n64_push_dummy_call (struct gdbarch *gdbarch, struct value *function, purpose register. */ if (argreg <= MIPS_LAST_ARG_REGNUM) { - LONGEST regval = - extract_unsigned_integer (val, partial_len); + LONGEST regval; + + /* Sign extend pointers, 32-bit integers and signed + 16-bit and 8-bit integers; everything else is taken + as is. */ + + if ((partial_len == 4 + && (typecode == TYPE_CODE_PTR + || typecode == TYPE_CODE_INT)) + || (partial_len < 4 + && typecode == TYPE_CODE_INT + && !TYPE_UNSIGNED (arg_type))) + regval = extract_signed_integer (val, partial_len); + else + regval = extract_unsigned_integer (val, partial_len); /* A non-floating-point argument being passed in a general register. If a struct or union, and if |