diff options
author | Nicholas Duffek <nsd@redhat.com> | 2001-01-22 23:32:49 +0000 |
---|---|---|
committer | Nicholas Duffek <nsd@redhat.com> | 2001-01-22 23:32:49 +0000 |
commit | 58d5518ebe96fa15dd4e8b22106ffc9950e4a93d (patch) | |
tree | 52c9d72ecc7f6f5d36d824c818fc647471428477 /gdb/gdbarch.c | |
parent | 664984174e148c3a25439021a1918abc7feec276 (diff) | |
download | binutils-gdb-58d5518ebe96fa15dd4e8b22106ffc9950e4a93d.tar.gz |
* gdbarch.sh (PARM_BOUNDARY): Define.
* gdbarch.c: Regenerate.
* gdbarch.h: Regenerate.
Diffstat (limited to 'gdb/gdbarch.c')
-rw-r--r-- | gdb/gdbarch.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gdb/gdbarch.c b/gdb/gdbarch.c index d9c038d73a7..4c5c44da9ae 100644 --- a/gdb/gdbarch.c +++ b/gdb/gdbarch.c @@ -235,6 +235,7 @@ struct gdbarch int extra_stack_alignment_needed; gdbarch_reg_struct_has_addr_ftype *reg_struct_has_addr; gdbarch_save_dummy_frame_tos_ftype *save_dummy_frame_tos; + int parm_boundary; const struct floatformat * float_format; const struct floatformat * double_format; const struct floatformat * long_double_format; @@ -368,6 +369,7 @@ struct gdbarch startup_gdbarch = 0, 0, 0, + 0, /* startup_gdbarch() */ }; @@ -1341,6 +1343,11 @@ gdbarch_dump (struct gdbarch *gdbarch, struct ui_file *file) "SAVE_DUMMY_FRAME_TOS(sp)", XSTRING (SAVE_DUMMY_FRAME_TOS (sp))); #endif +#ifdef PARM_BOUNDARY + fprintf_unfiltered (file, + "gdbarch_dump: PARM_BOUNDARY # %s\n", + XSTRING (PARM_BOUNDARY)); +#endif #ifdef TARGET_FLOAT_FORMAT fprintf_unfiltered (file, "gdbarch_dump: TARGET_FLOAT_FORMAT # %s\n", @@ -2045,6 +2052,11 @@ gdbarch_dump (struct gdbarch *gdbarch, struct ui_file *file) (long) current_gdbarch->save_dummy_frame_tos /*SAVE_DUMMY_FRAME_TOS ()*/); #endif +#ifdef PARM_BOUNDARY + fprintf_unfiltered (file, + "gdbarch_dump: PARM_BOUNDARY = %ld\n", + (long) PARM_BOUNDARY); +#endif #ifdef TARGET_FLOAT_FORMAT fprintf_unfiltered (file, "gdbarch_dump: TARGET_FLOAT_FORMAT = %ld\n", @@ -3918,6 +3930,21 @@ set_gdbarch_save_dummy_frame_tos (struct gdbarch *gdbarch, gdbarch->save_dummy_frame_tos = save_dummy_frame_tos; } +int +gdbarch_parm_boundary (struct gdbarch *gdbarch) +{ + if (gdbarch_debug >= 2) + fprintf_unfiltered (gdb_stdlog, "gdbarch_parm_boundary called\n"); + return gdbarch->parm_boundary; +} + +void +set_gdbarch_parm_boundary (struct gdbarch *gdbarch, + int parm_boundary) +{ + gdbarch->parm_boundary = parm_boundary; +} + const struct floatformat * gdbarch_float_format (struct gdbarch *gdbarch) { |