Andrew Cagney
d62d1979c4
2003-01-29 Andrew Cagney <ac131313@redhat.com>
...
* frame.c (frame_saved_regs_id_unwind): Assert FRAME_CHAIN_P.
(legacy_get_prev_frame): Assert FRAME_CHAIN_P.
(get_prev_frame): When FRAME_CHAIN_P, call legacy_get_prev_frame.
(frame_saved_regs_pc_unwind): Assert FRAME_SAVED_PC_P.
* gdbarch.sh (FRAME_CHAIN): Change to a function with predicate.
(FRAME_SAVED_PC): Change to a function with predicate.
* gdbarch.h, gdbarch.c: Re-generate.
2003-01-29 18:07:07 +00:00
Andrew Cagney
617073a91f
2003-01-29 Andrew Cagney <ac131313@redhat.com>
...
* gdb.texinfo (Maintenance Commands): Document `maint print
reggroups' and `maint print register-groups'.
* gdbint.texinfo (Target Architecture Definition): Document
register_reggroup_p.
2003-01-29 16:10:53 +00:00
Andrew Cagney
522873408d
2003-01-28 Andrew Cagney <ac131313@redhat.com>
...
* hppah-nat.c (child_pid_to_exec_file): Don't use boolean.
2003-01-29 15:56:11 +00:00
gdbadmin
1dc0220c4f
*** empty log message ***
2003-01-29 00:00:02 +00:00
Andrew Cagney
1ae18a04ce
2003-01-28 Andrew Cagney <ac131313@redhat.com>
...
* complaints.c (complain): Delete function.
* complaints.h (struct deprecated_complaint): Delete definition.
(complain): Delete declaration.
2003-01-28 19:53:25 +00:00
Kevin Buettner
f2c16bd605
* mips-tdep.c (mips_init_extra_frame_info): Return early for
...
dummy frames.
2003-01-28 16:31:11 +00:00
gdbadmin
3ebd9f331f
*** empty log message ***
2003-01-28 00:00:31 +00:00
Andrew Cagney
a94dd1fda2
2003-01-27 Andrew Cagney <ac131313@redhat.com>
...
* sentinel-frame.h, sentinel-frame.c: New files.
* Makefile.in (frame.o): Update dependencies.
(SFILES): Add sentinel-frame.c.
(sentinel_frame_h): Define.
(COMMON_OBS): Add sentinel-frame.o.
(sentinel-frame.o): Specify dependencies.
* frame.c: Include "sentinel-frame.h".
(frame_register_unwind): Rewrite assuming that there is always a a
->next frame.
(frame_register, generic_unwind_get_saved_register): Ditto.
(frame_read_unsigned_register, frame_read_signed_register): Ditto.
(create_sentinel_frame, unwind_to_current_frame): New functions.
(get_current_frame): Rewrite using create_sentinel_frame and
unwind_to_current_frame. When possible, always create a frame.
(create_new_frame): Set next to the sentinel frame.
(get_next_frame): Rewrite. Don't go below the level 0 frame.
(deprecated_update_frame_pc_hack): Update the next frame's PC and
ID cache when necessary.
(frame_saved_regs_id_unwind): Use frame_relative_level.
(deprecated_generic_get_saved_register): Use frame_relative_level,
get_frame_saved_regs, get_frame_pc, get_frame_base and
get_next_frame.
(frame_saved_regs_register_unwind): Use get_frame_saved_regs and
frame_register.
2003-01-27 21:41:41 +00:00
Daniel Jacobowitz
5378adc435
* gdb_indent.sh: Add -T bfd and -T asection to the indent arguments.
2003-01-27 21:16:06 +00:00
Daniel Jacobowitz
51ee2ddc9e
* maint.c [! (HAVE_MONSTARTUP && HAVE__MCLEANUP)]
...
(maintenance_set_profile_cmd): Use error () instead of warning ().
2003-01-27 20:25:35 +00:00
Daniel Jacobowitz
d9feb4e7bf
* configure.in: Check that -pg works if using --enable-profiling.
...
Check for monstartup and _mcleanup regardless of --enable-profiling.
* maint.c: Check for monstartup and _mcleanup before using them.
* config.in: Regenerated.
* configure: Regenerated.
2003-01-27 14:36:56 +00:00
gdbadmin
523d7c12c7
*** empty log message ***
2003-01-27 00:00:01 +00:00
gdbadmin
cad81edc07
*** empty log message ***
2003-01-26 00:00:01 +00:00
gdbadmin
ba25ff99d4
*** empty log message ***
2003-01-25 00:00:03 +00:00
gdbadmin
ab1fc019e0
*** empty log message ***
2003-01-24 00:00:02 +00:00
Jim Blandy
cb3c37b24c
* symfile.c (syms_from_objfile): Don't print the "(no debugging
...
symbols found)" message here; we haven't checked for a separate
debug info file yet, so we don't know yet.
(symbol_file_add_with_addrs_or_offsets): Print it here, after
we've looked everywhere. Also, there's no need to print a special
message when we're loading the separate debug info file: the one
symbol_file_add prints is fine.
2003-01-23 23:17:28 +00:00
Jim Blandy
5b5d99cf4d
gdb/ChangeLog:
...
2003-01-23 Alexander Larsson <alexl@redhat.com>
Jim Blandy <jimb@redhat.com>
Add support for executables whose debug info has been separated
out into a separate file, leaving only a link behind.
* objfiles.h (struct objfile): New fields: separate_debug_objfile
and separate_debug_objfile_backlink.
(put_objfile_before): New declaration.
* symfile.c: #include "filenames.h".
(symbol_file_add_with_addrs_or_offsets): If this objfile has its
debug info in a separate file, read that, too. Save the addrs
argument, so we can use it again to read the separated debug info;
syms_from_objfile modifies the table we pass it.
(reread_symbols): After re-reading an objfile, call
reread_separate_symbols to refresh its separate debug info
objfile, if it has one.
(reread_separate_symbols, find_separate_debug_file,
get_debug_link_info, separate_debug_file_exists): New functions.
(debug_file_directory): New global var.
(_initialize_symfile): Initialize debug_file_directory, and
provide the new `set debug-file-directory' command to let the user
change it.
* objfiles.c (free_objfile): If this objfile has its debug info in
a separate objfile, free that one too. If this is itself a
separate debug info objfile, clear our parent's backlink.
(put_objfile_before): New function.
* utils.c (gnu_debuglink_crc32): New function.
* defs.h (gnu_debuglink_crc32): New declaration.
* Makefile.in (symfile.o): Note dependency on "filenames.h".
* configure.in: Handle --with-separate-debug-dir config option.
* acinclude.m4 (AC_DEFINE_DIR): New macro.
* acconfig.h (DEBUGDIR): New macro.
* configure, aclocal.m4, config.in: Regenerated.
gdb/doc/ChangeLog:
2003-01-23 Jim Blandy <jimb@redhat.com>
* gdb.texinfo (Separate Debug Files): New section.
2003-01-23 23:03:32 +00:00
Jim Blandy
7904e09f8f
* symfile.c (symbol_file_add_with_addrs_or_offsets): New function,
...
like the old symbol_file_add, but taking new arguments: you can
now pass in either a `struct section_addr_info' list to say where
each section is loaded, or a `struct section_offsets' table. Pass
these new arguments through to syms_from_objfile as appropriate.
(symbol_file_add): Just call symbol_file_add_with_addrs_or_offsets,
with the appropriate quiescent values for the new arguments.
2003-01-23 08:06:36 +00:00
Jim Blandy
7e8580c13a
* symfile.c: #include "gdb_assert.h".
...
(syms_from_objfile): Add the ability to pass in a section offset
table directly, as an alternative to the section_addr_info table.
Document arguments better.
(symbol_file_add): Pass extra arguments to syms_from_objfile.
* symfile.h (syms_from_objfile): Update declaration.
* rs6000-nat.c (objfile_symbol_add): Pass new arguments to
syms_from_objfile.
* Makefile.in (symfile.o): List dependency on $(gdb_assert_h).
2003-01-23 07:30:18 +00:00
Daniel Jacobowitz
2307bd6a50
* gdb.exp (gdb_test_multiple): New function, cloned from
...
gdb_test. Accept a list of expect arguments as the third
parameter.
(gdb_test): Use it.
2003-01-23 01:35:21 +00:00
gdbadmin
509ec96a3e
*** empty log message ***
2003-01-23 00:00:32 +00:00
Daniel Jacobowitz
d28f9cdffd
Original patch by Tom Tromey <tromey@cygnus.com> and
...
Jason Molenda <jmolenda@apple.com>.
* Makefile.in (PROFILE_CFLAGS): Substitute from configure.
(INTERNAL_LDFLAGS): Don't include PROFILE_CFLAGS.
* NEWS: Mention profiling.
* configure.in (--enable-gdbtk): Fix typo.
(--enable-profiling): New. Set PROFILE_CFLAGS.
* maint.c (maintenance_set_profile_cmd): Remove NOTYET.
Fill in function.
(profiling_state): New variable.
(mcleanup_wrapper): New function.
(_initialize_maint): Remove NOTYET, fix call to
add_setshow_boolean_cmd for "maint set profile".
* configure: Regenerated.
2003-01-22 23:50:35 +00:00
Daniel Jacobowitz
e7ba9c6584
* gdb.texinfo (Maintenance Commands): Add "maint set profile"
...
and "maint show profile".
2003-01-22 23:50:13 +00:00
gdbadmin
811daac402
*** empty log message ***
2003-01-22 00:00:01 +00:00
Martin Hunt
df21e46583
2003-01-21 Martin M. Hunt <hunt@redhat.com>
...
* Makefile.in (install-gdbtk): Install PNG images too.
2003-01-21 21:39:31 +00:00
Andrew Cagney
73c1f219a3
2003-01-21 Andrew Cagney <ac131313@redhat.com>
...
* exec.c (text_start): Delete global variable.
(exec_file_attach): Make text_start local to the function.
* inferior.h (BEFORE_TEXT_END, AFTER_TEXT_END): Delete macros.
* valops.c (hand_function_call): Delete code that handles
BEFORE_TEXT_END and AFTER_TEXT_END.
* gdbarch.sh (CALL_DUMMY_LENGTH): Test call_dummy_length instead
of CALL_DUMMY_LOCATION.
* gdbarch.c: Regenerate.
* inferior.h (deprecated_pc_in_call_dummy_before_text_end)
(deprecated_pc_in_call_dummy_after_text_end): Delete declaration.
* blockframe.c (deprecated_pc_in_call_dummy_before_text_end)
(deprecated_pc_in_call_dummy_after_text_end): Delete functions.
(text_end): Delete extern declaration.
2003-01-21 19:43:48 +00:00
Andrew Cagney
eb4f72c5f9
2003-01-21 Andrew Cagney <ac131313@redhat.com>
...
* frame.h (FRAME_OBSTACK_ZALLOC): Define.
* blockframe.c (backtrace_below_main): Move to "frame.c".
(frame_chain_valid): Delete check for backtrace_below_main.
(_initialize_blockframe): Delete initialization, move ``set
backtrace-below-main'' command to "frame.c".
(do_flush_frames_sfunc): Delete function.
* frame.c: Include "command.h" and "gdbcmd.h".
(frame_type_from_pc): New function.
(create_new_frame): Use frame_type_from_pc.
(legacy_get_prev_frame): New function.
(get_prev_frame): Rewrite. When an old style frame, call
legacy_get_prev_frame. Otherwize, unwind the PC first.
(_initialize_frame): Add ``set backtrace-below-main'' command.
* Makefile.in (frame.o): Update dependencies.
2003-01-21 19:32:42 +00:00
gdbadmin
6637feefbe
*** empty log message ***
2003-01-21 00:00:32 +00:00
Elena Zannoni
f2dd3617b5
2003-01-20 Elena Zannoni <ezannoni@redhat.com>
...
* gdb.arch/altivec-abi.exp: Set variable 'srcfile' differently, to
allow for different test tree configurations. Update some
tescases accordingly.
* gdb.arch/altivec-regs.exp: Ditto.
* gdb.asm/asm-source.exp: Ditto.
* gdb.base/advance.exp: Ditto.
* gdb.base/display.exp: Ditto.
* gdb.base/long_long.exp: Ditto.
* gdb.base/mips_pro.exp: Ditto.
* gdb.base/overlays.exp: Ditto.
* gdb.base/relocate.exp: Ditto.
* gdb.base/setshow.exp: Ditto.
* gdb.base/step-line.exp: Ditto.
* gdb.base/step-test.exp: Ditto.
* gdb.base/until.exp: Ditto.
* gdb.c++/virtfunc.exp: Get rid of variable 'src'.
2003-01-20 15:40:07 +00:00
Andrew Cagney
778ce8cc71
2003-01-19 Andrew Cagney <ac131313@redhat.com>
...
* config/pa/tm-hppa.h (DEPRECATED_DO_REGISTERS_INFO): Rename
DEPRECATED_REGISTERS_INFO.
2003-01-20 01:01:47 +00:00
Andrew Cagney
01c193c851
2003-01-19 Andrew Cagney <ac131313@redhat.com>
...
* MAINTAINERS: Replace `Blanket Write Privs' with `Global
Maintainers'. Update `Various Maintainers'.
2003-01-20 00:46:42 +00:00
gdbadmin
9c3d9c71b7
*** empty log message ***
2003-01-20 00:00:31 +00:00
Andrew Cagney
dedc2a2b65
2003-01-19 Andrew Cagney <ac131313@redhat.com>
...
* frame.c (frame_saved_regs_pop): Assert POP_FRAME_P.
* gdbarch.sh (POP_FRAME): Change to function with predicate.
Suppress actual parameters when `-'.
* gdbarch.h, gdbarch.c: Regenerate.
2003-01-19 23:27:28 +00:00
Andrew Cagney
b7261c70f1
2003-01-19 Andrew Cagney <ac131313@redhat.com>
...
* d10v-tdep.c (d10v_frame_saved_pc, d10v_frame_chain): Restore
code handling dummy frames.
2003-01-19 22:24:50 +00:00
Andrew Cagney
dbe9fe588f
2003-01-19 Andrew Cagney <ac131313@redhat.com>
...
* frame-unwind.h (frame_unwind_pop_ftype): Declare.
(struct frame_unwind): Add field pop.
* frame.h (frame_pop): Declare.
* frame.c (frame_saved_regs_pop): New function.
(trad_frame_unwinder): Add frame_saved_regs_pop.
(frame_pop): New function.
* dummy-frame.c (dummy_frame_pop): New function.
(discard_innermost_dummy): New function.
(generic_pop_dummy_frame): Use discard_innermost_dummy.
(dummy_frame_unwind): Add dummy_frame_pop.
* infrun.c (normal_stop): Call frame_pop instead of POP_FRAME.
* valops.c (hand_function_call): Ditto.
* stack.c (return_command): Ditto.
2003-01-19 17:39:16 +00:00
gdbadmin
b4fc4eff63
*** empty log message ***
2003-01-19 17:00:32 +00:00
Andrew Cagney
570b8f7c95
2003-01-18 Andrew Cagney <ac131313@redhat.com>
...
* cris-tdep.c: Fix function declaration indentation.
* dwarfread.c, gdbcore.h, gdbtypes.h, i386v-nat.c: Ditto.
* mips-tdep.c, monitor.h, parse.c, proc-utils.h: Ditto.
* rs6000-nat.c, ser-go32.c, somread.c, stabsread.c: Ditto.
* symfile.h, symtab.h, target.c, target.h, value.h: Ditto.
* xcoffread.c, config/pa/tm-hppa.h: Ditto.
* config/sparc/tm-sp64.h, config/sparc/tm-sparc.h: Ditto.
2003-01-19 04:06:47 +00:00
Michael Chastain
eaec4d85f1
2003-01-16 Michael Chastain <mec@shout.net>
...
* README (Unpacking and Installation -- quick overview):
Warn against ".../gdb-5.3/gdb/configure".
2003-01-18 17:43:14 +00:00
Michael Chastain
94e91d6d1c
2003-01-16 Michael Chastain <mec@shout.net>
...
* gdb.texinfo (Installing GDB): Warn against
".../gdb-VERSION/gdb/configure".
(Separate Objdir): Likewise.
2003-01-18 17:41:34 +00:00
Andrew Cagney
494cca16bd
2003-01-18 Andrew Cagney <ac131313@redhat.com>
...
* dummy-frame.h (dummy_frame_id_unwind): Delete declaration.
(dummy_frame_pc_unwind, dummy_frame_register_unwind): Ditto.
(struct frame_unwind): Declare opaque.
(dummy_frame_p): Declare function.
* dummy-frame.c (dummy_frame_id_unwind): Make static.
(dummy_frame_pc_unwind, dummy_frame_register_unwind): Ditto.
* dummy-frame.c: Include "frame-unwind.h".
(dummy_frame_p): New function.
(dummy_frame_unwind): New variable.
* frame.c: Include "frame-unwind.h".
(frame_pc_unwind, frame_id_unwind, frame_register_unwind): Update
to use the new unwind field.
(set_unwind_by_pc): Delete function.
(create_new_frame, get_prev_frame): Set unwind field using
frame_unwind_find_by_pc.
(trad_frame_unwind, trad_frame_unwinder): New variables.
* frame.h (trad_frame_unwind): Declare variable.
(frame_id_unwind_ftype): Delete declaration.
(frame_pc_unwind_ftype, frame_register_unwind_ftype): Ditto.
(struct frame_unwind): Declare opaque.
(struct frame_info): Replace the fields id_unwind, pc_unwind and
register_unwind with a single unwind pointer.
* frame-unwind.h, frame-unwind.c: New files.
* Makefile.in (SFILES): Add frame-unwind.c.
(frame_unwind_h): Define.
(COMMON_OBS): Add frame-unwind.o.
(frame-unwind.o): Specify dependencies.
(frame.o, dummy-frame.o): Update dependencies.
2003-01-18 17:25:23 +00:00
Andrew Cagney
4efb68b1ad
2003-01-18 Andrew Cagney <ac131313@redhat.com>
...
* ada-valprint.c: Eliminate PTR.
* breakpoint.c, corelow.c, cris-tdep.c, dbxread.c: Ditto.
* defs.h, dve3900-rom.c, dwarf2read.c, dwarfread.c: Ditto.
* exec.c, hppa-tdep.c, hpread.c, infcmd.c, mdebugread.c: Ditto.
* objfiles.c, objfiles.h, ocd.c, remote-es.c: Ditto.
* remote-mips.c, remote-sds.c, remote-vx.c: Ditto.
* solib-svr4.c, solib.c, stack.c, symfile.c, symfile.h: Ditto.
* symmisc.c, v850ice.c, xcoffread.c, cli/cli-script.c: Ditto.
2003-01-18 15:55:53 +00:00
gdbadmin
88e90c405f
*** empty log message ***
2003-01-18 00:00:02 +00:00
David Carlton
c71cdefd6f
2003-01-17 David Carlton <carlton@math.stanford.edu>
...
* gdb.c++/demangle.exp (test_lucid_style_demangling): KFAIL test
corresponding to PR c++/945.
Update copyright.
2003-01-17 20:24:51 +00:00
David Carlton
fdba05d75f
2003-01-17 David Carlton <carlton@math.stanford.edu>
...
* gdb.c++/inherit.exp (test_print_mi_members): KFAIL tests
corresponding to PR c++/68.
(and fix date of previous ChangeLog entry; oops.)
2003-01-17 19:24:16 +00:00
David Carlton
d2b29e01d7
2003-01-16 David Carlton <carlton@math.stanford.edu>
...
* gdb.c++/cplusfuncs.exp (print_addr_2_kfail): New procedure.
(test_paddr_hairy_functions): Call print_addr_2_kfail for
hairyfunc5 through hairyfunc7. KFAIL for PR c++/19.
2003-01-17 19:22:27 +00:00
Andrew Cagney
762f08a397
2003-01-17 Andrew Cagney <ac131313@redhat.com>
...
* main.c (captured_main): Don't use PTR.
* cp-valprint.c (cp_print_class_method): Replace STREQ with strcmp.
* gdbtypes.c (lookup_primitive_typename): Ditto.
(lookup_struct_elt_type): Ditto.
* f-valprint.c (info_common_command): Ditto.
(list_all_visible_commons): Ditto.
* jv-typeprint.c (java_type_print_base): Ditto.
2003-01-17 19:12:19 +00:00
Andrew Cagney
a84d24ee80
2003-01-17 Andrew Cagney <ac131313@redhat.com>
...
* config/djgpp/fnchange.lst: Rename mi1-var-block.exp,
mi1-var-child.exp, mi1-var-cmd.exp and mi1-var-display.exp.
Rename opcodes/iq2000-desc.c and opcodes/iq2000-dis.c. Rename
i386-interix-nat.c and i386-interix-tdep.c. Rename
m68klinux-nat.c and m68klinux-tdep.c. Rename
config/mips/tm-linux.h and config/mips/tm-linux64.h. Rename
bfd/po/.cvsignore and opcodes/po/.cvsignore. Rename
gdb/objc-exp.tab.c and gdb/ada-exp.tab.c
* main.c (captured_main): Use xfree, not free.
2003-01-17 16:56:52 +00:00
gdbadmin
bb867e69e8
*** empty log message ***
2003-01-17 00:00:32 +00:00
Andrew Cagney
c170fb600a
2003-01-16 Andrew Cagney <ac131313@redhat.com>
...
* frame.h (frame_id_unwind_ftype): Change type so that the frame's
ID back using a parameter.
* frame.c (frame_id_unwind): Update call.
(frame_saved_regs_id_unwind): Update.
* dummy-frame.c (dummy_frame_id_unwind): Update function.
* dummy-frame.h (struct frame_id): Add opaque declaration.
(dummy_frame_id_unwind): Update declaration.
2003-01-16 16:54:57 +00:00
Elena Zannoni
0fbc361cc7
2003-01-15 Elena Zannoni <ezannoni@redhat.com>
...
* gdb.base/break.exp: Fix change of default location, because of
removal of until tests.
* gdb.base/help.exp: Update test for new 'until' help message.
Add test for help on 'advance'.
2003-01-16 01:56:16 +00:00
Elena Zannoni
c362c33a0d
2003-01-15 Elena Zannoni <ezannoni@redhat.com>
...
* gdb.base/args.exp: Fix foobar with GDBFLAGS global.
2003-01-16 01:13:18 +00:00
gdbadmin
388ef33ffd
*** empty log message ***
2003-01-16 00:00:04 +00:00
Stephen P. Smith
40622be892
Added a period under at the end of the comment and fixed the date.
2003-01-15 21:06:33 +00:00
Andrew Cagney
867f3898e3
2003-01-15 Andrew Cagney <ac131313@redhat.com>
...
* sparc-tdep.c: Delete reference to PRINT_REGISTER_HOOK.
Index: doc/ChangeLog
2003-01-15 Andrew Cagney <ac131313@redhat.com>
* gdbint.texinfo (Target Architecture Definition): Delete
definition of PRINT_REGISTER_HOOK.
2003-01-15 19:35:28 +00:00
Elena Zannoni
f153cc9257
2003-01-15 Elena Zannoni <ezannoni@redhat.com>
...
(OpenRISC 1000): Fix formatting of command names.
2003-01-15 17:57:38 +00:00
Mark Kettenis
dabf8a3592
* gdb.base/default.exp: Adapt "info float" test for recent changes
...
to that command. Add test for "info vector".
* gdb.base/float.exp: New file. Add test for "info float" that
resembles the old test in gdb.base/default.exp.
2003-01-15 17:46:20 +00:00
David Carlton
a1769aca31
2003-01-15 David Carlton <carlton@math.stanford.edu>
...
* gdb.base/selftest.exp (do_steps_and_nexts): Allow gdb_sysroot.
2003-01-15 17:32:41 +00:00
Stephen P. Smith
de3a8c23f0
Updated the email address for Stephen P. Smith
2003-01-15 15:54:04 +00:00
Elena Zannoni
c60eb6f167
2003-01-15 Elena Zannoni <ezannoni@redhat.com>
...
* gdb.texinfo (Continuing and Stepping): Add new command
'advance'. Clarify behavior of 'until'.
2003-01-15 14:31:59 +00:00
Elena Zannoni
82025e1307
2003-01-15 Elena Zannoni <ezannoni@redhat.com>
...
* gdb.base/break.exp: Move the tests of until command from here...
* gdb.base/until.exp: ... to here. New file. Add other tests.
* gdb.base/advance.c: New file.
* gdb.base/advance.exp: New file.
2003-01-15 14:25:11 +00:00
Elena Zannoni
ae66c1fc9b
2003-01-14 Elena Zannoni <ezannoni@redhat.com>
...
* breakpoint.c (until_break_command): Add new argument. Use it to
decide whether to stop only at the current frame or not.
* breakpoint.h (until_break_command): Update prototype.
* infcmd.c (until_command): Add new argument to until_break_command
call.
(advance_command): New function.
(_initialize_infcmd): Update help string for 'until' command.
Add new 'advance' command.
2003-01-15 00:48:38 +00:00
gdbadmin
4abbaa29de
*** empty log message ***
2003-01-15 00:00:02 +00:00
Elena Zannoni
8f9ab80108
2003-01-14 Elena Zannoni <ezannoni@redhat.com>
...
* gdb.base/args.c: New file.
* gdb.base/args.exp: New file.
2003-01-14 21:03:44 +00:00
David Carlton
a04257e6ab
2003-01-14 David Carlton <carlton@math.stanford.edu>
...
* linespec.c (decode_line_1): Normalize comments.
(set_flags): Ditto.
(locate_first_half): Ditto.
(decode_compound): Ditto.
(symtab_from_filename): Ditto.
(decode_all_digits): Ditto.
(decode_dollar): Ditto.
(find_methods): Ditto.
(find_toplevel_char): Ditto.
2003-01-14 20:48:50 +00:00
Daniel Jacobowitz
a0d9b83140
Update copyright date.
2003-01-14 18:42:38 +00:00
Daniel Jacobowitz
9ae66589a7
* gdb.c++/virtfunc.exp: Remove fixed XFAIL.
2003-01-14 18:32:14 +00:00
Daniel Jacobowitz
8d77e5c3a8
* gdb.threads/killed.exp: Use KFAIL for gdb/568.
2003-01-14 18:13:11 +00:00
Daniel Jacobowitz
12d2f0a1dd
* gdb.base/constvars.exp: Remove two extra XFAILs. Update copyright
...
dates.
2003-01-14 17:36:49 +00:00
Daniel Jacobowitz
6ca37014df
* gdb.c++/printmethod.exp (print virtual method): Accept "(void)".
2003-01-14 04:40:48 +00:00
Daniel Jacobowitz
b00234725e
* gdb.base/printcmds.exp: Enable setup_kfail for gdb/538
...
(ptype &*"foo").
* gdb.c++/local.exp: Enable setup_kfail for gdb/482.
2003-01-14 04:34:46 +00:00
Andrew Cagney
1bac305b72
2003-01-13 Andrew Cagney <ac131313@redhat.com>
...
* ax-gdb.c, c-valprint.c, charset.c, corefile.c: Update copyright.
* demangle.c, disasm.c, dwarf2cfi.c, dwarfread.c: Update copyright.
* elfread.c, eval.c, expprint.c, expression.h: Update copyright.
* f-typeprint.c, findvar.c, gcore.c, gdb_mbuild.sh: Update copyright.
* gdbtypes.h, gnu-v2-abi.c, inferior.h, inftarg.c: Update copyright.
* language.c, language.h, m32r-tdep.c: Update copyright.
* mn10200-tdep.c, scm-lang.c, scm-lang.h: Update copyright.
* somsolib.c, somsolib.h, symfile.c, symtab.h: Update copyright.
* thread-db.c, typeprint.c, utils.c, valarith.c: Update copyright.
* values.c, win32-nat.c, x86-64-linux-nat.c: Update copyright.
* x86-64-linux-tdep.c, z8k-tdep.c: Update copyright.
* cli/cli-decode.h, config/h8500/tm-h8500.h: Update copyright.
Index: mi/ChangeLog
2003-01-13 Andrew Cagney <ac131313@redhat.com>
* mi-cmd-env.c: Update copyright.
2003-01-14 00:49:06 +00:00
Elena Zannoni
25caa7a88b
2003-01-13 Elena Zannoni <ezannoni@redhat.com>
...
* stabsread.h (process_later, resolve_cfront_continuation):
Obsolete.
Update copyright years.
* buildsym.c (start_subfile): Obsolete comment pertinent to Cfront.
Update copyright year.
* dbxread.c(struct cont_elem): Obsolete.
(process_later, process_now): Obsolete functions.
(read_dbx_symtab, read_ofile_symtab): Obsolete cfront support.
Update copyright year.
* gdbtypes.c (INIT_EXTRA, ADD_EXTRA): Obsolete macros.
(add_name, add_mangled_type, cfront_mangle_name): Obsolete functions.
* mdebugread.c (parse_type): Obsolete comment pertinent to Cfront.
(parse_partial_symbols): Obsolete cfront support.
* stabsread.c
(CFRONT_VISIBILITY_PRIVATE,CFRONT_VISIBILITY_PUBLIC): Obsolete
macros.
(get_substring, get_cfront_method_physname, msg_unknown_complaint,
read_cfront_baseclasses, read_cfront_member_functions,
resolve_cfront_continuation,read_cfront_static_fields,
copy_cfront_struct_fields): Obsolete functions.
(define_symbol, read_one_struct_field): Obsolete cfront support.
* xcoffread.c (scan_xcoff_symtab): Obsolete CFront support.
Update Copyright year.
2003-01-14 00:15:05 +00:00
Elena Zannoni
7789c6f56a
2003-01-13 Elena Zannoni <ezannoni@redhat.com>
...
* stack.c (print_frame_info, print_stack_frame_base_stub,
print_stack_frame_base, show_and_print_stack_frame_stub,
show_and_print_stack_frame, print_only_stack_frame_stub,
print_only_stack_frame): Delete functions.
(print_stack_frame_stub): Call print_frame_info instead of
print_frame_info_base.
(print_frame_info_base): Rename to print_frame_info.
(backtrace_command_1): Call print_frame_info, instead of
print_frame_info_base.
(current_frame_command): Call print_stack_frame, instead of
print_only_stack_frame.
(frame_command): Call print_stack_frame, instead of
show_and_print_stack_frame.
(up_command): Ditto.
(down_command): Ditto.
* frame.h (print_only_stack_frame): Delete prototype.
* infrun.c (normal_stop): Call print_stack_frame, instead of
show_and_print_stack_frame.
* thread.c (info_threads_command): Call print_stack_frame, instead
of print_only_stack_frame.
2003-01-13 Elena Zannoni <ezannoni@redhat.com>
* mi-main.c (mi_cmd_exec_return): Use print_stack_frame instead of
show_and_print_stack_frame.
2003-01-14 00:07:43 +00:00
gdbadmin
2a20538510
*** empty log message ***
2003-01-14 00:00:32 +00:00
Andrew Cagney
e98d149fd1
Revert previous change.
2003-01-13 23:27:17 +00:00
Andrew Cagney
d99ba3143f
2003-01-13 Andrew Cagney <ac131313@redhat.com>
...
* README (Graphical interface to GDB): Update URL. Point at
gdb/links/.
2003-01-13 23:25:55 +00:00
Daniel Jacobowitz
d6abaea528
* gdb.mi/mi-console.exp: Remove extra "(known bug)".
...
* gdb.mi/mi1-console.exp: Likewise.
2003-01-13 23:24:43 +00:00
Andrew Cagney
3f5a30162c
2003-01-13 Andrew Cagney <ac131313@redhat.com>
...
* gdb_indent.sh: Update to version 2.2.9. Warn when not exact
version match.
2003-01-13 23:07:07 +00:00
Daniel Jacobowitz
dfd536a75e
* gdb.mi/mi-console.exp: Add KFAIL for "Hello message (known bug)".
...
* gdb.mi/mi1-console.exp: Likewise.
2003-01-13 22:07:15 +00:00
Daniel Jacobowitz
083ae9356e
* symtab.c (find_pc_sect_line): Don't consider end-of-function
...
lines.
2003-01-13 21:59:53 +00:00
Daniel Jacobowitz
5365276c13
* thread-db.c (attach_thread): Prototype.
...
(struct private_thread_info): Remove lwpid. Add thread handle (th),
thread information (ti), and valid flags (th_valid, ti_valid).
(attach_thread): Move target_pid_to_str call to after the thread
is added to GDB's list. Initialize the cache.
(thread_get_info_callback, thread_db_map_id2thr)
(thread_db_get_info): New functions.
(thread_from_lwp, lwp_from_thread, thread_db_fetch_registers)
(thread_db_store_registers, thread_db_thread_alive)
(thread_db_get_thread_local_address): Use them.
(thread_db_pid_to_str): Likewise. Return "Missing" instead
of calling error() for threads in unknown state.
(clear_lwpid_callback): New function.
(thread_db_resume): Use it to clear the cache.
2003-01-13 21:48:32 +00:00
Daniel Jacobowitz
9fc30b6b12
* lin-lwp.c (struct private_thread_info, find_lwp_callback): Remove.
...
(resume_callback): Remove dead code.
2003-01-13 21:47:35 +00:00
Andrew Cagney
8f87102502
2003-01-13 Andrew Cagney <ac131313@redhat.com>
...
* gdbarch.sh (FRAME_INIT_SAVED_REGS): Change to function with
predicate.
* gdbarch.h, gdbarch.c: Regenerate.
* stack.c (frame_info): Only initialize the saved registers when
FRAME_INIT_SAVED_REGS_P.
* frame.c (frame_saved_regs_register_unwind): Assert
FRAME_INIT_SAVED_REGS_P.
(deprecated_generic_get_saved_register): Ditto.
2003-01-13 21:10:30 +00:00
Daniel Jacobowitz
3f565f1eb5
* source.c (openp): Squelch warning about "filename".
2003-01-13 20:26:15 +00:00
Daniel Jacobowitz
32d34c7c4d
Update copyright year.
2003-01-13 20:12:57 +00:00
Daniel Jacobowitz
072b102252
* source.c (openp): If the file does not exist don't necessarily
...
search the path.
2003-01-13 20:11:47 +00:00
Daniel Jacobowitz
b5e5c35c01
Update copyright years.
2003-01-13 20:09:33 +00:00
Daniel Jacobowitz
973ccf8b55
Fix PR gdb/872.
...
* gdbtypes.c (init_type): Mark "char" as TYPE_FLAG_NOSIGN.
(integer_types_same_name_p): New function.
(rank_one_type): Use it.
* stabsread.c (read_range_type): Mark "char" as TYPE_FLAG_NOSIGN.
2003-01-13 20:08:58 +00:00
Daniel Jacobowitz
a1fb14a2c2
* gdb.c++/overload.exp: Remove some fixed XFAILs.
2003-01-13 20:08:16 +00:00
Daniel Jacobowitz
030292b70e
* Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): New
...
variables.
(main.o): Custom rule which uses $(TARGET_SYSTEM_ROOT_DEFINE).
* configure.in: Add --with-sysroot.
* configure: Regenerated.
* main.c (gdb_sysroot): New variable.
(captured_main): Initialize gdb_sysroot.
* defs.h (gdb_sysroot): New extern declaration.
* solib.c (_initialize_solib): Initialize solib_absolute_prefix.
2003-01-13 18:00:16 +00:00
Daniel Jacobowitz
f5ebfba0ca
* gdb.texinfo (Files): Document solib-absolute-prefix and
...
solib-search-path.
2003-01-13 17:59:49 +00:00
gdbadmin
eccce3b646
*** empty log message ***
2003-01-13 00:00:32 +00:00
Michael Chastain
afb5d334c7
2003-01-12 Michael Chastain <mec@shout.net>
...
* config/djgpp/fnchange.lst: add gdb/ChangeLog-2002.
2003-01-12 22:55:51 +00:00
Michael Chastain
751ceeb4f3
2003-01-12 Michael Chastain <mec@shout.net>
...
* top.c (print_gdb_version): Bump copyright year to 2003.
2003-01-12 21:38:16 +00:00
David Carlton
94cd26f8b6
2003-01-12 David Carlton <carlton@bactrian.org>
...
* linespec.c (symtab_from_filename): Rename variable 's' to
'file_symtab'.
2003-01-12 20:55:32 +00:00
Andrew Cagney
1ce79225f2
2003-01-12 Andrew Cagney <ac131313@redhat.com>
...
* d10v-tdep.c (d10v_init_extra_frame_info): Remove checks for a
dummy frame.
(d10v_frame_saved_pc, d10v_frame_chain): Ditto.
2003-01-12 19:25:39 +00:00
Andrew Cagney
fa1fd571ea
2003-01-12 Andrew Cagney <ac131313@redhat.com>
...
* d10v-tdep.c: Include "gdb_assert.h".
(d10v_store_return_value): Rewrite to match current interface.
(d10v_extract_struct_value_address): Ditto.
(d10v_extract_return_value): Ditto.
(d10v_gdbarch_init): Set store_restore_value,
extract_struct_value_address and extract_return_value.
2003-01-12 18:59:53 +00:00
Joel Brobecker
68b8d23eb2
* hpread.c (set_namestring): New procedure replacing the
...
SET_NAMESTRING macro.
(hpread_build_psymtabs): Replace calls to SET_NAMESTRING
by calls to set_namestring.
2003-01-12 11:49:14 +00:00
gdbadmin
a5ce0a93bb
*** empty log message ***
2003-01-12 00:00:02 +00:00
Joel Brobecker
1fb309eaa6
* hpread.c (SET_NAMESTRING): Remove an incorrect cast to fix
...
a compilation warning.
(hpread_process_one_debug_symbol): Likewise.
2003-01-11 02:13:23 +00:00
David Carlton
88d262ca1c
2003-01-10 David Carlton <carlton@math.stanford.edu>
...
* linespec.c (decode_line_1): Rename variable 's' to
'file_symtab'.
(decode_all_digits): Rename argument 's' to 'file_symtab'.
(decode_dollar): Ditto.
(decode_variable): Ditto.
(symbol_found): Ditto.
2003-01-11 01:01:04 +00:00
gdbadmin
df648bda9c
*** empty log message ***
2003-01-11 00:00:01 +00:00
Michael Chastain
4ce8657e28
2003-01-09 Michael Chastain <mec@shout.net>
...
* gdbint.texinfo (Configuring @value{GDBN} for Release): Delete.
(Create a Release): Add new instructions for new @file{src-release}.
Document existing instructions for @file{Makefile.in} as
being for @value{GDBN} 5.3.1 or earlier.
2003-01-10 22:51:57 +00:00
Michael Chastain
86669319d0
2003-01-09 Michael Chastain <mec@shout.net>
...
* config/djgpp/fnchange.lst: update file list for testsuite/gdb.c++.
2003-01-10 20:55:04 +00:00
Corinna Vinschen
616a9dc4c0
* win32-nat.c (set_process_privilege): New function.
...
(child_attach): Call set_process_privilege() to enable the
SE_DEBUG_NAME user privilege if available in process token.
2003-01-10 20:14:02 +00:00
Joel Brobecker
3269bcfa1c
* hpread.c (hpread_process_one_debug_symbol): Fix a small
...
compilation error in the previous revision.
2003-01-10 15:39:10 +00:00
gdbadmin
d0bf1cf1de
*** empty log message ***
2003-01-10 00:00:33 +00:00
David Carlton
2b0ee4544f
2003-01-09 David Carlton <carlton@math.stanford.edu>
...
* linespec.c: Update copyright.
2003-01-09 21:34:15 +00:00
Andrew Cagney
a80e2bcbae
Roll ChangeLog / ChangeLog-2002.
2003-01-09 21:08:45 +00:00
Daniel Jacobowitz
c4cf40b7ca
* gdb.base/detach.exp: New test.
2003-01-09 19:18:04 +00:00
Daniel Jacobowitz
b3ba1b4442
* lin-lwp.c (child_wait): Ignore exit statuses for processes other
...
than inferior_ptid.
(lin_lwp_wait): Ignore exit statuses for unknown LWPs.
2003-01-09 19:14:46 +00:00
Andrew Cagney
479ab5a00d
2003-01-09 Andrew Cagney <ac131313@redhat.com>
...
* frame.h (frame_obstack_zalloc): Replace frame_obstack_alloc.
Update comments.
* frame.c (frame_obstack_zalloc): Replace frame_obstack_alloc.
(frame_saved_regs_zalloc): Update.
(frame_saved_regs_register_unwind): Update.
(create_new_frame): Update.
(get_prev_frame): Update.
(frame_extra_info_zalloc): Update.
(deprecated_get_frame_saved_regs): Update.
* dwarf2cfi.c (cfi_init_extra_frame_info): Update.
* cris-tdep.c: Update comment.
2003-01-09 18:53:21 +00:00
Daniel Jacobowitz
696d5a5b84
* Makefile.in (ALL_SUBDIRS): New variable.
...
(subdirs, clean, distclean): Use it.
* gdb.arch/Makefile.in: Clean up Makefile. Remove rules for
regenerating Makefile, since it is generated from the top level.
* gdb.asm/Makefile.in: Likewise.
* gdb.base/Makefile.in: Likewise.
* gdb.c++/Makefile.in: Likewise.
* gdb.disasm/Makefile.in: Likewise.
* gdb.java/Makefile.in: Likewise.
* gdb.mi/Makefile.in: Likewise.
* gdb.threads/Makefile.in: Likewise.
* gdb.trace/Makefile.in: Likewise.
2003-01-09 18:50:28 +00:00
Andrew Cagney
372613e32f
2003-01-09 Andrew Cagney <ac131313@redhat.com>
...
* gdbint.texinfo (Target Architecture Definition): Mention
frame_saved_regs_zalloc and frame_extra_info_zalloc as the way to
allocate memory.
2003-01-09 18:46:02 +00:00
Andrew Cagney
bde581776e
2003-01-09 Andrew Cagney <ac131313@redhat.com>
...
* somsolib.h: Fix function indentation.
* disasm.c, buildsym.c, buildsym.h: Eliminate PTR.
* gnu-v2-abi.c, f-typeprint.c, x86-64-linux-tdep.c: Eliminate STREQ.
* demangle.c, ax-gdb.c, c-valprint.c: Eliminate STREQ.
* alpha-osf1-tdep.c, corefile.c: Eliminate STREQ.
* somsolib.c, inftarg.c: Remove assignment in if conditional.
2003-01-09 18:30:32 +00:00
Andrew Cagney
4ef3f3be7a
2003-01-09 Andrew Cagney <ac131313@redhat.com>
...
* infrun.c (follow_fork): Use ISO C definition.
* expprint.c (print_subexp): Use xfree instead of free.
* charset.c: Include "gdb_string.h" instead of <string.h>.
(register_iconv_charsets): Use ISO C definition.
(host_charset, target_charset): Ditto.
* Makefile.in (charset.o): Update dependencies.
(mi-cmd-env.o): Update dependencies.
Index: mi/ChangeLog
2003-01-09 Andrew Cagney <ac131313@redhat.com>
* mi-cmd-env.c: Include "gdb_string.h" instead of <string.h>.
Move all includes to after "defs.h".
2003-01-09 18:03:38 +00:00
David Carlton
754533e434
2003-01-09 David Carlton <carlton@math.stanford.edu>
...
* gdb.c++/annota2.exp: KFAIL "watch triggered on a.x".
Add copyright year 2003.
2003-01-09 17:10:39 +00:00
Andrew Cagney
c9a1dc08aa
2003-01-08 Andrew Cagney <ac131313@redhat.com>
...
* gdb_mbuild.sh: Add --keep option. When specified, keep the
build directories. Save edited gdb output in Mbuild.log. If a
build fails, remove any final GDB executable.
2003-01-09 00:45:08 +00:00
Andrew Cagney
1c615f7a40
2003-01-08 Andrew Cagney <cagney@redhat.com>
...
* alpha-linux-tdep.c (alpha_linux_sigcontext_addr): Use
get_frame_base.
2003-01-09 00:24:50 +00:00
gdbadmin
67f047db78
*** empty log message ***
2003-01-09 00:00:35 +00:00
Andrew Cagney
dbad9d940f
2003-01-08 Andrew Cagney <ac131313@redhat.com>
...
* gdb_mbuild.sh: Edit the output of `maint print architecture'
replacing hex constants with function names and stripping leading
file name directory prefixes.
2003-01-08 23:49:15 +00:00
Andrew Cagney
8d357ccaa7
2003-01-08 Andrew Cagney <cagney@redhat.com>
...
* gcore.c, i386-linux-tdep.c: Use get_frame_pc, get_next_frame and
get_frame_base.
2003-01-08 22:47:46 +00:00
David Carlton
bca02a8a3a
2003-01-08 David Carlton <carlton@math.stanford.edu>
...
* linespec.c (decode_line_1): Move code into decode_variable.
(decode_variable): New function.
2003-01-08 22:40:18 +00:00
Andrew Cagney
7f8ab3a0b7
2003-01-08 Andrew Cagney <ac131313@redhat.com>
...
* mn10300-tdep.c (analyze_dummy_frame): Fix typo.
2003-01-08 21:44:55 +00:00
Andrew Cagney
7b5849cc3e
2003-01-08 Andrew Cagney <cagney@redhat.com>
...
* cris-tdep.c (cris_frame_init_saved_regs): Use
get_frame_saved_regs and SIZEOF_FRAME_SAVED_REGS when copying a
saved_regs buffer.
* sh-tdep.c (sh_nofp_frame_init_saved_regs): Ditto.
(sh64_nofp_frame_init_saved_regs): Ditto.
(sh_fp_frame_init_saved_regs): Ditto.
* arm-tdep.c: Use deprecated_set_frame_saved_regs_hack.
* mips-tdep.c (mips_init_extra_frame_info): Ditto.
* mcore-tdep.c (analyze_dummy_frame): Ditto.
* mn10300-tdep.c (analyze_dummy_frame): Ditto.
2003-01-08 19:45:23 +00:00
Daniel Jacobowitz
72a5efb365
* minsyms.c (lookup_minimal_symbol): Update comment.
...
(lookup_minimal_symbol_text): Update comment. Use the hash table.
(lookup_minimal_symbol_solib_trampoline): Likewise.
2003-01-08 18:38:47 +00:00
Andrew Cagney
aab3ea25c5
2003-01-08 Andrew Cagney <cagney@redhat.com>
...
* d10v-tdep.c (d10v_init_extra_frame_info): Use
frame_relative_level.
2003-01-08 18:04:06 +00:00
Andrew Cagney
da50a4b7b3
2003-01-08 Andrew Cagney <cagney@redhat.com>
...
* alpha-tdep.c: Use get_frame_extra_info.
* arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
* h8300-tdep.c, ia64-tdep.c, m68hc11-tdep.c, mcore-tdep.c: Ditto.
* mips-tdep.c, mn10300-tdep.c, s390-tdep.c, sh-tdep.c: Ditto.
* sparc-tdep.c, xstormy16-tdep.c: Ditto.
2003-01-08 17:21:30 +00:00
Andrew Cagney
11c02a10e2
2003-01-08 Andrew Cagney <cagney@redhat.com>
...
* alpha-tdep.c: Use get_next_frame.
* arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
* dwarf2cfi.c, h8300-tdep.c, i386-tdep.c, ia64-tdep.c: Ditto.
* m68hc11-tdep.c, m68k-tdep.c, mcore-tdep.c: Ditto.
* mips-tdep.c, mn10200-tdep.c, mn10300-tdep.c: Ditto.
* ns32k-tdep.c, s390-tdep.c, sh-tdep.c, sparc-tdep.c: Ditto.
* v850-tdep.c, vax-tdep.c, x86-64-linux-tdep.c: Ditto.
* xstormy16-tdep.c: Ditto.
2003-01-08 15:56:38 +00:00
Andrew Cagney
1e2330ba1f
2003-01-07 Andrew Cagney <cagney@redhat.com>
...
* alpha-tdep.c: Use get_frame_base.
* arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
* h8300-tdep.c, i386-tdep.c, ia64-tdep.c, m68hc11-tdep.c: Ditto.
* m68k-tdep.c, mcore-tdep.c, mips-tdep.c, mn10200-tdep.c: Ditto.
* mn10300-tdep.c, ns32k-tdep.c, s390-tdep.c, sh-tdep.c: Ditto.
* sparc-tdep.c, v850-tdep.c, vax-tdep.c: Ditto.
* x86-64-linux-tdep.c, xstormy16-tdep.c: Ditto.
* config/h8500/tm-h8500.h, config/mn10200/tm-mn10200.h: Ditto.
* config/sparc/tm-sparc.h: Ditto.
2003-01-08 01:53:38 +00:00
gdbadmin
2fcf08fe58
*** empty log message ***
2003-01-08 00:00:32 +00:00
Andrew Cagney
2d75187b9e
2003-01-07 Andrew Cagney <cagney@redhat.com>
...
* frame.c (deprecated_get_frame_context): New function.
(deprecated_set_frame_context): New function.
* frame.h (deprecated_get_frame_context): Declare.
(deprecated_set_frame_context): Declare.
* dwarf2cfi.c (UNWIND_CONTEXT): Use deprecated_get_frame_context.
(cfi_init_extra_frame_info): Use deprecated_set_frame_context.
2003-01-07 22:53:09 +00:00
Andrew Cagney
483d36b217
2003-01-07 Andrew Cagney <cagney@redhat.com>
...
* frame.c (deprecated_set_frame_next_hack): New function.
(deprecated_set_frame_prev_hack): New function.
* frame.h (deprecated_set_frame_next_hack): Declare.
(deprecated_set_frame_prev_hack): Declare.
* mcore-tdep.c (analyze_dummy_frame): Use
deprecated_set_frame_next_hack and deprecated_set_frame_prev_hack.
* mn10300-tdep.c (analyze_dummy_frame): Ditto.
2003-01-07 19:19:00 +00:00
David Carlton
14e91ac52e
2003-01-07 David Carlton <carlton@math.stanford.edu>
...
* linespec.c (decode_line_1): Move code into decode_dollar.
(decode_dollar): New function.
2003-01-07 17:05:49 +00:00
Andrew Cagney
9d3c96e6ec
zap #define FRAME_C.
2003-01-07 16:29:22 +00:00
Andrew Cagney
b0c6b05c0f
2003-01-07 Andrew Cagney <cagney@redhat.com>
...
* arm-tdep.c (arm_init_extra_frame_info): Use
deprecated_update_frame_base_hack.
* xstormy16-tdep.c (xstormy16_scan_prologue): Ditto.
* mn10300-tdep.c (analyze_dummy_frame): Ditto.
(fix_frame_pointer): Ditto.
(mn10300_analyze_prologue): Ditto.
2003-01-07 16:22:29 +00:00
Andrew Cagney
a00a19e94c
2003-01-07 Andrew Cagney <cagney@redhat.com>
...
* xstormy16-tdep.c (xstormy16_init_extra_frame_info): Allocate
extra_info using frame_extra_info_zalloc.
* sparc-tdep.c (sparc_init_extra_frame_info): Ditto.
* sh-tdep.c (sh_init_extra_frame_info): Ditto.
(sh64_init_extra_frame_info): Ditto.
* mn10300-tdep.c (mn10300_init_extra_frame_info): Ditto.
* s390-tdep.c (s390_init_extra_frame_info): Ditto.
* mips-tdep.c (mips_init_extra_frame_info): Ditto.
* mcore-tdep.c (mcore_init_extra_frame_info): Ditto.
* frv-tdep.c (frv_init_extra_frame_info): Ditto.
* m68hc11-tdep.c (m68hc11_init_extra_frame_info): Ditto.
* ia64-tdep.c (ia64_init_extra_frame_info): Ditto.
* h8300-tdep.c (h8300_init_extra_frame_info): Ditto.
* d10v-tdep.c (d10v_init_extra_frame_info): Ditto.
* cris-tdep.c (cris_init_extra_frame_info): Ditto.
* arm-tdep.c (arm_init_extra_frame_info): Ditto.
* alpha-tdep.c (alpha_init_extra_frame_info): Ditto.
* mn10300-tdep.c (analyze_dummy_frame): Use
deprecated_set_frame_extra_info_hack.
* mcore-tdep.c (analyze_dummy_frame): Ditto.
2003-01-07 14:51:11 +00:00
Joel Brobecker
1fb4c65b23
* mdebugread.c (parse_symbol): Skip stProc entries which storage
...
class is not scText. These do not define "real" procedures.
(parse_partial_symbols): Likewise.
2003-01-07 07:09:25 +00:00
Michael Chastain
d8b3e9ee2a
2003-01-06 Michael Chastain <mec@shout.net>
...
* gdb.mi/mi-pthreads.exp (check_mi_thread_command_set):
When selecting a thread, 'line' and 'file' are optional.
* gdb.mi/mi1-pthreads.exp: Likewise.
2003-01-07 03:31:27 +00:00
gdbadmin
e8fa73225f
*** empty log message ***
2003-01-07 00:01:02 +00:00
Michael Snyder
9fe7d6bf73
chael Snyder <msnyder@redhat.com>
...
* lin-lwp.c: Added or elaborated on "debug lin-lwp" info.
qCVS: Committing in .
2003-01-06 23:12:29 +00:00
Andrew Cagney
f6c609c4c2
2003-01-06 Andrew Cagney <ac131313@redhat.com>
...
* frame.h (deprecated_frame_xmalloc_with_cleanup): Declare.
* frame.c (deprecated_frame_xmalloc_with_cleanup): New function.
* arm-tdep.c (arm_frame_chain): Allocate caller_fi using
deprecated_frame_xmalloc_with_cleanup.
* m32r-tdep.c (m32r_virtual_frame_pointer): Allocate `fi' using
deprecated_frame_xmalloc.
* mcore-tdep.c (analyze_dummy_frame): Ditto for dummy.
* mn10200-tdep.c (mn10200_frame_chain): Ditto for dummy_frame.
2003-01-06 21:50:25 +00:00
Andrew Cagney
84dc46cbdb
2003-01-06 Andrew Cagney <cagney@redhat.com>
...
* x86-64-linux-tdep.c: Include "osabi.h".
* Makefile.in (x86-64-linux-tdep.o): Update dependencies.
2003-01-06 20:45:30 +00:00
Andrew Cagney
d995ff4bc0
2003-01-06 Andrew Cagney <cagney@redhat.com>
...
* sparc-tdep.c (sparc_dump_tdep): Fix typo, match -> mach.
2003-01-06 20:04:11 +00:00
Andrew Cagney
66140c2616
2003-01-06 Andrew Cagney <cagney@redhat.com>
...
* MAINTAINERS (Target Instruction Set Architectures): Update
arm-elf. Can be built with -Werror, has been multiarched.
* value.h (unpack_long): Make buffer parameter constant.
(unpack_double, unpack_pointer, unpack_field_as_long): Ditto.
* scm-lang.h (scm_parse): Ditto.
* defs.h (extract_typed_address, extract_address): Ditto.
(extract_long_unsigned_integer): Ditto.
* inferior.h (unsigned_pointer_to_address): Ditto.
(signed_pointer_to_address): Ditto.
* gdbarch.sh (POINTER_TO_ADDRESS): Ditto.
* gdbarch.h, gdbarch.c: Regenerate.
* findvar.c (extract_long_unsigned_integer): Update.
(extract_address): Update.
(extract_typed_address): Update.
(unsigned_pointer_to_address): Update.
* values.c (unpack_long): Update.
(unpack_double): Update.
(unpack_pointer): Update.
(unpack_field_as_long): Update.
* d10v-tdep.c (d10v_pointer_to_address): Update.
* avr-tdep.c (avr_pointer_to_address): Update.
* scm-lang.c (scm_unpack): Update.
* findvar.c (signed_pointer_to_address): Update.
2003-01-06 18:49:09 +00:00
Andreas Schwab
8e9e0fe6da
* lib/gdb.exp: Set LC_ALL to "C" to avoid spurious testsuite
...
failures.
2003-01-06 18:10:32 +00:00
Michal Ludvig
b089b3da75
2003-01-06 Michal Ludvig <mludvig@suse.cz>
...
* x86-64-linux-nat.c (i386_sse_regnum_p): Deleted. Not needed anymore
since it is in i386-tdep.c.
2003-01-06 14:47:37 +00:00
Joel Brobecker
aff87235b0
* alpha-tdep.c (alpha_gdbarch_init): Fix a small compilation
...
failure introduced in the previous change.
2003-01-06 10:28:05 +00:00
gdbadmin
203708e3b1
*** empty log message ***
2003-01-06 00:00:32 +00:00
Michael Chastain
34f5e84556
2003-01-05 Michael Chastain <mec@shout.net>
...
* README: Remove references to deleted remote-*.c files:
remote-adapt.c, remote-eb.c, remote-mm.c, remote-nindy.c,
remote-nrom.c, remote-os9k.c, remote-udi.c.
2003-01-05 17:10:33 +00:00