1 2008-02-08 Doug Evans <dje@google.com>
3 * source.c (find_and_open_source): Always rewrite absolute filenames.
5 2008-02-07 Doug Evans <dje@google.com>
7 * breakpoint.c: #include "hashtab.h".
8 (ambiguous_names_p): New fn.
9 (update_breakpoint_locations): When restoring bp enable status, don't
10 compare function names if any functions have same name.
11 * Makefile.in (breakpoint.o): Add hashtab.h dependency.
13 2008-02-07 Joel Brobecker <brobecker@adacore.com>
15 * ada-lang.c (symbol_completion_add): Make SV parameter a VEC**
16 instead of just a VEC*. Update use of SV.
17 (ada_make_symbol_completion_list): Update symbol_completion_add calls.
19 2007-02-07 Joel Brobecker <brobecker@adacore.com>
21 * NEWS: Put all new commands since gdb-6.7 together.
23 2007-02-07 Joel Brobecker <brobecker@adacore.com>
25 * ada-lang.c: #include "vec.h".
26 (struct string_vector, new_string_vector, string_vector_append):
28 (char_ptr): New typedef.
29 (DEF_VEC_P (char_ptr)): New VEC type.
30 (symbol_completion_add): Update profile to take the new VEC type
31 instead of the old string_vector structure. Update code accordingly.
32 (ada_make_symbol_completion_list): Use the new VEC type instead of
33 the old string_vector structure, and update the code accordingly.
34 * Makefile.in (ada-lang.o): Add dependency on vec.h.
36 2008-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
38 * p-exp.y: Set current_type in missing places.
39 (leftdiv_is_integer): New static variable.
40 Typecast right operand of BINOP_DIV to long_double if both operands
43 2008-02-06 Maciej W. Rozycki <macro@mips.com>
45 * remote-mips.c (set_breakpoint): Rename to...
46 (mips_set_breakpoint): ... this.
47 (clear_breakpoint): Rename to...
48 (mips_clear_breakpoint): ... this.
49 (common_breakpoint): Rename to...
50 (mips_common_breakpoint): ... this.
51 (check_lsi_error): Rename to...
52 (mips_check_lsi_error): ... this.
54 2007-02-05 Joel Brobecker <brobecker@adacore.com>
56 * language.h (struct language_defn): Add new field
57 la_make_symbol_completion_list.
58 * symtab.c (default_make_symbol_completion_list): Renames
59 make_symbol_completion_list.
60 (make_symbol_completion_list): New function.
61 * symtab.h (default_make_symbol_completion_list): Add declaration.
62 * langauge.c (unknown_language): Set la_make_symbol_completion_list.
63 (auto_language, local_language): Likewise.
64 * objc-lang.c (objc_language_defn): Likewise.
65 * scm-lang.c (scm_language_defn): Likewise.
66 * m2-lang.c (m2_language_defn): Likewise.
67 * f-lang.c (f_language_defn): Likewise.
68 * jv-lang.c (java_language_defn): Likewise.
69 * p-lang.c (pascal_language_defn): Likewise.
70 * c-lang.c (c_language_defn, cplus_language_defn, asm_language_defn)
71 (minimal_language_defn): Likewise.
72 * ada-lang.c (struct string_vector): New structure.
73 (new_string_vector, string_vector_append, ada_unqualified_name)
74 (add_angle_brackets, symbol_completion_match, symbol_completion_add)
75 (ada_make_symbol_completion_list): New functions.
76 (ada_language_defn): Set la_make_symbol_completion_list.
77 * ada-lang.h (ada_make_symbol_completion_list): Remove declaration,
78 this function is static.
80 2008-02-05 Kevin Buettner <kevinb@redhat.com>
82 * mn10300-tdep.c (mn10300_push_dummy_call): Adjust stack pointer
83 to account for call site optimizations.
85 2008-02-05 Andrzej Zaborowski <balrogg@gmail.com>
87 * tracepoint.c (read_actions): Handle end-of-text indicator
88 in action list properly. (Committed by Jim Blandy)
90 2008-02-05 Jim Blandy <jimb@red-bean.com>
92 * ax-gdb.c (gen_expr): Yield ordinary error if asked to trace a
93 pseudoregister, not an internal error.
94 Reported by: Andrzej Zaborowski
96 2008-02-04 Vladimir Prus <vladimir@codesourcery.com>
98 * varobj.c (c_value_of_variable): Use xstrdup.
100 2008-02-04 Vladimir Prus <vladimir@codesourcery.com>
102 Update stored rendition of varobj value when format changes.
103 * varobj.c (varobj_set_display_format): Recomputed
105 (c_value_of_variable): Return print_value.
107 2008-02-03 Doug Evans <dje@google.com>
109 * eval.c (evaluate_subexp_standard): Fix type of result of mixed
110 integer/float division operations when EVAL_AVOID_SIDE_EFFECTS.
111 * valops.c (value_one): New function.
112 * value.h (value_one): Declare.
114 Fix argument promotion for binary arithmetic ops for C.
115 * valarith.c (unop_result_type): New fn.
116 (binop_result_type): New fn.
117 (value_binop): Move result type computation to binop_result_type.
118 (value_pos, value_neg, value_complement): Move result type
119 computation to unop_result_type.
122 * gdbtypes.c (get_vptr_fieldno): Renamed from fill_in_vptr_fieldno.
123 Return basetype, fieldno if found. All callers updated.
124 Don't cache TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE if from different
126 * gdbtypes.h (get_vptr_fieldno): Renamed from fill_in_vptr_fieldno.
127 * symfile.h (fill_in_vptr_fieldno): Delete.
129 2008-02-02 Doug Evans <dje@google.com>
131 * valarith.c (value_binop): Handle unsigned BINOP_REM division by zero.
133 * typeprint.c (*): Whitespace cleanup.
135 2008-02-02 Mark Kettenis <kettenis@gnu.org>
136 Luis Machado <luisgpm@br.ibm.com>
137 Thiago Jung Bauermann <bauerman@br.ibm.com>
139 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Pass floats that
140 don't fit into registerson the stack the way GCC does.
142 2008-02-01 Joel Brobecker <brobecker@adacore.com>
144 * symtab.c (symbol_set_names): Do not add an entry in the demangling
145 hash table for Ada symbols. Just store the linkage name as is,
146 and leave the demangled_name as NULL.
148 2007-02-01 Joel Brobecker <brobecker@adacore.com>
150 * dwarf2read.c (add_partial_symbol): Always store all Ada subprograms
152 (new_symbol): Likewise.
154 2008-02-01 Vladimir Prus <vladimir@codesourcery.com>
156 * breakpoint.c (break_command_1): Return void.
157 (break_command_really): Return void. Rethrow
158 exceptions instead of returning.
159 (gdb_breakpoint): Remove the error_message parameter.
160 Return void. Rename to set_breakpoint.
161 * gdb.h (gdb_breakpoint): Rename and move to...
162 * breakpoint.h (set_breakpoint): ...here.
163 * mi/mi-cmb-break.c (mi_cmd_break_insert): Restore
164 event hooks even if exception is thrown. Adjust to
165 gdb_breakpoint interface changes.
168 2008-02-01 Thiago Jung Bauermann <bauerman@br.ibm.com>
170 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Write 32-bit
171 float in both first and second word in the doubleword, to support
174 2008-02-01 Vladimir Prus <vladimir@codesourcery.com>
176 Properly rethrow exception. This fixes errors
177 about non-existent functions for -break-insert.
178 * breakpoint.c (break_command_really): Use throw_exception
179 for rethrowing. If rethrowing, don't print the exception.
181 2008-01-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
183 * NEWS: Mention Decimal Floating Point support.
185 2008-01-31 Joel Brobecker <brobecker@adacore.com>
187 * std-regs.c (value_of_builtin_frame_pc_reg): Change the returned
188 value type to builtin_type_void_func_ptr.
190 2008-01-31 Andreas Krebbel <krebbel1@de.ibm.com>
192 * s390-tdep.c (is_float_singleton, is_float_like,
193 alignment_of, s390_return_value): Make checks for
194 TYPE_CODE_FLT to match TYPE_CODE_DECFLOAT as well.
196 2008-01-31 Luis Machado <luisgpm@br.ibm.com>
197 Thiago Jung Bauermann <bauerman@br.ibm.com>
199 * infcmd.c (default_print_registers_info): Also print hex
200 raw contents for TYPE_CODE_DECFLOAT registers.
201 * ppc-tdep.h (gdbarch_tdep): Add ppc_dl0_regnum member.
202 * rs6000-tdep.c (IS_DFP_PSEUDOREG): New macro.
203 (rs6000_register_name): Add support for DFP pseudo-registers.
204 (rs6000_pseudo_register_type): Likewise.
205 rs6000_pseudo_register_reggroup_p): Likewise.
206 (ppc_pseudo_register_read): New function.
207 (ppc_pseudo_register_write): Likewise.
208 (rs6000_pseudo_register_read): Likewise.
209 (rs6000_pseudo_register_write): Likewise.
210 (e500_pseudo_register_read): Move checks to
211 rs6000_pseudo_register_read.
212 (e500_pseudo_register_write): Move checks to
213 rs6000_pseudo_register_write.
214 (rs6000_gdbarch_init): Initialize tdep->ppc_dl0_regnum. Install
215 rs6000_pseudo_register_read and rs6000_pseudo_register_write
216 in gdbarch if SPE or DFP is available. Adjust gdbarch's
217 num_pseudo_regs to account for DFP pseudo regs.
219 2008-01-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
221 * ppc-tdep.h (struct gdbarch_tdep): Remove ppc_ev31_regnum member.
222 * rs6000-tdep.c (IS_SPE_PSEUDOREG): New macro.
223 (spe_register_p, rs6000_register_name, rs6000_pseudo_register_type,
224 rs6000_pseudo_register_reggroup_p, e500_move_ev_register,
225 e500_pseudo_register_read, e500_pseudo_register_write): Use
226 IS_SPE_PSEUDOREG macro.
227 (rs6000_frame_cache): Remove use of tdep->ppc_ev31_regnum.
228 (rs6000_gdbarch_init): Remove unnecessary num_sprs local variable.
229 Remove initialization of tdep->ppc_ev31_regnum.
231 2008-01-08 Paul Hilfinger <hilfinger@adacore.com>
233 * printcmd.c (print_formatted): Handle references as for unformatted
236 2008-01-30 Joel Brobecker <brobecker@adacore.com>
238 * eval.c (evaluate_subexp_standard): Add handling of user
239 registers when in EVAL_AVOID_SIDE_EFFECTS mode.
241 2008-01-30 Pierre Muller <muller@ics.u-strasbg.fr>
243 * eval.c (evaluate_subexp_standard): Support
246 2008-01-30 Paul N. Hilfinger <hilfinger@adacore.com>
248 * valarith.c (value_binop): Add floating-point BINOP_MIN and
250 For BINOP_EXP, use length and signedness of left operand only for
251 result, as for shifts.
252 For integral operands to BINOP_EXP, use new integer_pow and
253 uinteger_pow functions so as to get full range of results.
254 (integer_pow): New function.
255 (uinteger_pow): New function.
257 2008-01-30 Vladimir Prus <vladimir@codesourcery.com>
259 Use vector for varobj_list_children interface.
260 * gdb/varobj.c (varobj_list_children): Return vector
262 * gdb/varobj.h (varobj_list_children): Adjust
264 (varobj_p): Declare. Declare vector thereof.
265 * mi/mi-cmd-var.c (mi_cmd_var_list_children): Adjust
266 for varobj_list_children change.
267 * Makefile.in (varobj_h): Update dependencies.
269 2008-01-30 Thiago Jung Bauermann <bauerman@br.ibm.com>
271 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Add support for
272 TYPE_CODE_DECFLOAT arguments.
273 (ppc64_sysv_abi_push_dummy_call) Likewise.
274 (get_decimal_float_return_value): New function.
275 (do_ppc_sysv_return_value): Add support for TYPE_CODE_DECFLOAT return
276 values by calling get_decimal_float_return_value.
277 (ppc64_sysv_abi_return_value): Likewise.
279 2008-01-30 Nick Roberts <nickrob@snap.net.nz>
281 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Add field
282 for preprocessor macro information. Formatting changes.
284 2008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
286 * remote.c (struct remote_state): Add cached_wait_status.
287 (remote_exec_file): New variable.
288 (PACKET_vAttach, PACKET_vRun): New constants.
289 (extended_remote_restart): Do not query for status.
290 (struct start_remote_args): New.
291 (remote_start_remote): Take it as a second argument. Check
292 whether the target is running. Issue an error for non-running
293 non-extended targets. Cache the wait status. Set inferior_ptid
295 (remote_open_1): Prompt to disconnect non-running targets. Make
296 sure the target is marked running. Do not set inferior_ptid here.
297 Update call to remote_start_remote. Do not call remote_check_symbols
298 if the target is not running.
299 (remote_detach_1): Rename from remote_detach. Take an EXTENDED
300 argument. Handle a non-running target.
301 (remote_detach): Use it.
302 (extended_remote_detach): New.
303 (remote_disconnect): Fix typo. Use remoute_mourn_1.
304 (extended_remote_attach_1, extended_remote_attach)
305 (extended_async_remote_attach): New.
306 (remote_vcont_resume): Remove unused variable.
307 (remote_wait, remote_async_wait): Use any cached wait status.
308 (putpkt_binary, getpkt): Clear any cached wait status.
309 (extended_remoute_mourn_1): New.
310 (extended_remote_mourn): Use it.
311 (extended_async_remote_mourn, extended_remote_run): New.
312 (extended_remote_create_inferior_1): New.
313 (extended_remote_create_inferior): Use it.
314 (extended_remote_async_create_inferior): Likewise.
315 (remote_xfer_partial): Skip for non-executing targets.
316 (init_extended_remote_ops): Set to_detach and to_attach.
317 (init_extended_async_remote_ops): Likewise. Use
318 extended_async_remote_mourn.
319 (_initialize_remote): Register vAttach, vRun, and
320 set remote exec-file.
321 * NEWS: Mention vAttach, vRun, and gdbserver extended-remote support.
323 2008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
325 * Makefile.in (symfile.o): Update.
326 * NEWS: Mention exec tracing support.
327 * inf-ttrace.c (inf_ttrace_wait): Return TARGET_WAITKIND_EXECD for
329 * infcmd.c (kill_if_already_running, detach_command)
330 (disconnect_command): Replace SOLIB_RESTART with no_shared_libraries.
331 * infrun.c (MAY_FOLLOW_EXEC, may_follow_exec): Delete.
332 (follow_exec): Do not check may_follow_exec. Do not mourn and push
333 targets. Apply the sysroot path to the loaded executable. Use
335 * linux-nat.c (linux_child_follow_fork): Print fork following
337 (kill_wait_callback): Kill again before waiting a second time.
338 * symfile.c (symbol_file_clear): Replace SOLIB_RESTART with
341 2008-01-29 Joel Brobecker <brobecker@adacore.com>
343 * amd64-tdep.c (amd64_classify): Add handling of TYPE_CODE_CHAR.
345 2008-01-29 Joel Brobecker <brobecker@adacore.com>
347 * nto-tdep.h: Remove #include "defs.h".
348 * nto-tdep.c: Add #include "defs.h".
349 * Makefile.in (nto_tdep_h): Update dependencies.
350 (nto-tdep.o): Likewise.
352 2008-01-29 Joel Brobecker <brobecker@adacore.com>
354 * infrun.c (wait_for_inferior): Add treat_exec_as_sigtrap parameter
356 (proceed, start_remote): Update call to wait_for_inferior.
357 * inferior.h (wait_for_inferior): Update declaration.
358 * fork-child.c, infcmd.c, solib-irix.c, solib-osf.c, solib-sunos.c,
359 solib-svr4.c, win32-nat.c: Update calls to wait_for_inferior.
360 * inf-ttrace.c (inf_ttrace_wait): Report TTEVT_EXEC events as
361 TARGET_WAITKIND_EXECD instead of TARGET_WAITKIND_STOPPED.
363 2008-01-29 Aleksandar Ristovski <aristovski@qnx.com>
365 * varobj (adjust_value_for_child_access): Added checking for
366 returned value from gdb_value_ind.
367 (c_describe_child): Likewise.
368 (cplus_describe_child): Fixed a typo.
370 2008-01-29 Jim Blandy <jimb@red-bean.com>
372 * MAINTAINERS: Update my info.
374 2008-01-29 Vladimir Prus <vladimir@codesourcery.com>
376 Use multiple locations for hardware watchpoints.
377 This eliminates the need to traverse value chain, doing
378 various checks, in three different places.
380 * breakpoint.h (struct bp_location): New fields
381 lengths and watchpoint_type.
382 (struct breakpoint): Remove the val_chain field.
383 * breakpoint.c (is_hardware_watchpoint): New.
384 (free_valchain): Remove.
385 (update_watchpoint): New.
386 (insert_bp_location): For hardware watchpoint, just
388 (insert_breakpoints): Call update_watchpoint_locations
389 on all watchpoints. If we have failed to insert
390 any location of a hardware watchpoint, remove all inserted
392 (remove_breakpoint): For hardware watchpoints, directly
394 (watchpoints_triggered): Iterate over locations.
395 (bpstat_stop_status): Use only first location of
396 a resource watchpoint.
397 (delete_breakpoint): Don't call free_valchain.
398 (print_one_breakpoint): Don't print all
399 locations for watchpoints.
400 (breakpoint_re_set_one): Use update_watchpoint for
403 2008-01-29 Vladimir Prus <vladimir@codesourcery.com>
405 Don't reset watchpoint block on solib load.
407 * breakpoint.c (insert_bp_location): For watchpoints,
409 (breakpoint_re_set_one): Instead of recomputing value
410 and condition for watchpoints, just reset value and
411 let insert_breakpoints/insert_bp_location recompute it.
412 Don't do anything about disabled watchpoint.
414 2008-01-29 Pierre Muller <muller@ics.u-strasbg.fr>
416 * valarith.c (value_binop): Handle unsigned integer
419 2008-01-28 Kevin Buettner <kevinb@redhat.com>
421 * mn10300-tdep.c (mn10300_analyze_prologue): Check for an
422 instruction pattern that appears frequently in position
423 independent code. Fix bug in code which looks for "fmov" and
424 backtracks if no "fmov" is found.
426 2008-01-28 Doug Evans <dje@google.com>
428 * dbxread.c (read_dbx_symtab): Fix indentation.
429 Reformat comments to 80 columns.
430 Move local var def closer to only use.
432 2008-01-28 Daniel Jacobowitz <dan@codesourcery.com>
434 * fork-child.c (SHELL_FILE): Remove #ifndef.
435 (fork_inferior): Remove SHELL_COMMAND_CONCAT.
437 2008-01-25 Pierre Muller <muller@ics.u-strasbg.fr>
439 * i386-tdep.c (i386_skip_noop): New function.
440 (i386_analyze_prologue): Call i386_skip_noop function.
442 2008-01-24 Michael Snyder <msnyder@specifix.com>
444 * procfs.c (procfs_xfer_partial): Comment, cut/paste error.
445 * win32-nat.c (win32_xfer_partial): Ditto.
446 * target.c (default_xfer_partial): Minor whitespace adjustment.
448 2008-01-24 Pedro Alves <pedro@codesourcery.com>
450 * arm-tdep.c (arm_addr_bits_remove): In non 26-bit mode, don't
451 strip bit 1 even if pc doesn't point to thumb code.
453 2008-01-23 Daniel Jacobowitz <dan@codesourcery.com>
455 * remote.c (remote_wait): Handle SIGINT between packets.
456 (remote_async_wait): Likewise.
458 2008-01-23 Vladimir Prus <vladimir@codesourcery.com>
459 Chris Demetriou <cgd@google.com>
461 * thread.c (add_thread_silent): Renamed
463 (print_thread_events): New variable definition.
464 (show_print_thread_events): New function.
465 (_initialize_thread): Add "set print thread-events" and
466 "show print thread-events" commands.
467 (add_thread): Announce new thread.
468 * gdbthread.h (add_thread_silent): Declare.
469 (print_thread_events): New variable declaration.
470 * inf-ttrace.c (inf_ttrace_wait): Don't
471 inform about new thread, as add_thread is always
472 called too, and will take care of that.
473 * infrun.c (handle_inferior_event): Likewise.
474 * procfs.c (procfs_wait): Likewise.
475 * remote.c (remote_currthread): Likewise.
476 * sol-thread.c (sol_thread_wait): Likewise.
477 * win32-nat.c (get_win32_debug_event): Likewise.
478 * linux-thread-db.c (attach_thread): Likewise.
479 Remove the verbose parameter.
480 (check_event): Make detach_thread be verbose
481 only if print_thread_events is set.
482 * linux-nat.c (lin_lwp_attach_lwp): Don't inform
483 about new thread. This is called only from
484 linux-thread-db.c:attach_thread, which will take care.
485 Remove the verbose parameter.
486 * linux-nat.h (lin_lwp_attach_lwp): Adjust prototype.
488 2008-01-23 Nick Roberts <nickrob@snap.net.nz>
490 * mi/mi-cmd-var.c (mi_cmd_var_set_format): Add value field to output.
492 2008-01-22 Vladimir Prus <vladimir@codesourcery.com>
494 * breakpoint.c (break_command_really): New parameter
496 (break_command_1): Pass 0 as
497 ignore_count to break_command_really.
498 (gdb_breakpoint): Pass ignore_count to
499 break_command_really.
501 2008-01-21 Kevin Buettner <kevinb@redhat.com>
503 * mn10300-linux-tdep.c (am33_linux_sigframe_cache_init): Find
504 sigcontext struct via pointer.
505 (struct sigframe comment): Update to show new field `psc'.
507 2008-01-21 Vladimir Prus <vladimir@codesourcery.com>
509 * infrun.c (handle_inferior_event): If
510 we failed to remove breakpoints, error,
511 don't try to increment PC by hand.
513 2008-01-18 Nick Hudson <nick.hudson@dsl.pipex.com>
515 Add NetBSD/hppa target and host support.
517 * hppabsd-tdep.c (hppabsd_supply_gregset): Move to ...
518 (hppabsd_gregset): Move to ...
519 (hppabsd_regset_from_core_section): Rename
520 hppaobsd_regset_from_core_section and move to ...
521 (hppabsd_find_global_pointer): Update comment.
522 (hppabsd_init_abi): Make global. Do not register
523 hppabsd_regset_from_core_section.
524 (hppabsd_core_osabi_sniffer): Rename hppaobsd_core_osabi_sniffer and
526 (_initialize_hppabsd_tdep): Move to ...
527 * hppaobsd-tdep.c: ... here. New file.
528 * hppnbsd-tdep.c: New file.
529 * hppnbsd-nat.c: New file.
530 * Makefile.in (ALL_TARGET_OBS): Add hppanbsd-tdep.o and hppaobsd-tdep.o.
531 (ALLDEPFILES): Add hppabsd-nat.c and hppabsd-tdep.c.
532 (hppabsd-nat.o, hppabsd-tdep.o): New dependencies.
533 (hppabsd-tdep.o, hppaobsd-tdep.o): Update dependencies.
534 * configure.host (hppa*-*-netbsd*): New entry.
535 * configure.tgt (hppa*-*-netbsd*): New entry.
536 (hppa*-*-openbsd*): Update.
537 * NEWS (New native configuration): Mention NetBSD/hppa.
538 (New targets): Mention NetBSD/hppa.
540 2008-01-18 Markus Deuling <deuling@de.ibm.com>
542 * gdbarch.sh (function_list): Add new property bits_big_endian to
544 * gdbarch.{c,h}: Regenerate.
546 * value.c (struct value): Replace BITS_BIG_ENDIAN by
547 gdbarch_bits_big_endian (comment).
548 (unpack_field_as_long, modify_field): Likewise.
549 * value.h: Likewise (comment).
550 * valops.c (value_slice): Likewise.
551 * valarith.c (value_subscript, value_bit_index): Likewise.
552 * gdbtypes.h (field): Likewise (comment).
553 * eval.c (evaluate_subexp_standard): Likewise.
554 * dwarf2read.c (dwarf2_add_field): Likewise.
555 * ada-lang.c (decode_packed_array, ada_value_primitive_packed_val)
556 (move_bits, ada_value_assign, value_assign_to_component): Likewise.
558 * defs.h (BITS_BIG_ENDIAN): Remove.
560 2008-01-18 Markus Deuling <deuling@de.ibm.com>
562 * jv-exp.y (yylex): Replace DEPRECATED_STREQN with the appropriate
564 * m2-exp.y (yylex): Likewise.
565 * objc-exp.y (yylex): Likewise.
567 * defs.h (DEPRECATED_STREQN): Remove.
569 2008-01-17 H.J. Lu <hjl.tools@gmail.com>
571 * MAINTAINERS: Update my email address.
573 2008-01-17 Jim Blandy <jimb@codesourcery.com>
575 * README: Mention gdbserver/README.
577 2008-01-17 Pierre Muller <muller@ics.u-strasbg.fr>
579 * valarith.c (value_binop): Handle BINOP_INTDIV
580 for unsigned and signed integers.
582 2008-01-17 Ulrich Weigand <uweigand@de.ibm.com>
584 * s390-tdep.c (s390_gdbarch_init): Set default long double
585 type to 128-bit IEEE quad.
587 2008-01-17 Joel Brobecker <brobecker@adacore.com>
589 * hpux-thread.c (hpux_thread_resume): Delete commented-out code.
591 2008-01-16 Mark Kettenis <kettenis@gnu.org>
593 * auxv.c (fprint_target_auxv): Add support for AT_SUN_AUXFLAGS.
595 * dfp.c, dfp.h: Rename decimal_to_double to decimal_to_doublest.
596 * value.c: All callers changed.
598 2008-01-16 Markus Deuling <deuling@de.ibm.com>
600 * rs6000-nat.c (add_vmap, vmap_ldinfo, vmap_exec): Replace
601 DEPRECATED_STREQ by its expression.
602 * coffread.c (coff_locate_sections, coff_symtab_read): Likewise.
603 * xcoffread.c (read_xcoff_symtab, read_symbol_lineno, find_linenos)
604 (scan_xcoff_symtab): Likewise.
605 * hppa-hpux-tdep.c (hppa_hpux_skip_trampoline_code): Likewise.
606 * f-lang.c (find_common_for_function): Likewise.
607 * objc-exp.y (parse_number): Likewise.
609 * defs.h (DEPRECATED_STREQ): Remove.
611 2008-01-16 Markus Deuling <deuling@de.ibm.com>
613 * mn10300-tdep.h (AM33_MODE): Add gdbarch as parameter.
614 * mn10300-tdep.c (set_reg_offsets, mn10300_analyze_prologue): Use
615 get_frame_arch to get at the current_architecture. Update AM33_MODE
617 (mn10300_analyze_prologue): Add gdbarch as parameter. Update caller.
618 (mn10300_frame_unwind_cache): Use get_frame_arch to get at the current
620 (set_reg_offsets, mn10300_analyze_prologue): Fix indentation.
622 2008-01-16 Markus Deuling <deuling@de.ibm.com>
624 * amd64-nat.h (amd64_native_gregset_supplies_p): Add gdbarch as
626 * amd64-nat.c (amd64_native_gregset_supplies_p): Likewise.
628 (amd64_native_gregset_reg_offset): Add gdbarch as parameter. Replace
629 current_gdbarch by gdbarch. Update caller.
631 * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers)
632 (amd64_linux_store_inferior_registers): Use get_regcache_arch to get at
633 the current architecture. Update calls of
634 amd64_native_gregset_supplies_p.
635 * amd64bsd-nat.c (amd64bsd_fetch_inferior_registers)
636 (amd64bsd_store_inferior_registers): Likewise.
638 2008-01-16 Markus Deuling <deuling@de.ibm.com>
640 * ppc-linux-nat.c (ppc_register_u_addr): Add gdbarch as parameter.
641 Replace current_gdbarch by gdbarch. Update caller.
643 2008-01-16 Markus Deuling <deuling@de.ibm.com>
645 * dbxread.c (repeated_header_complaint, dbx_symfile_init)
646 (read_dbx_dynamic_symtab, function_outside_compilation_unit_complaint)
647 (read_dbx_symtab, end_psymtab, dbx_psymtab_to_symtab_1)
648 (dbx_psymtab_to_symtab, read_ofile_symtab, process_one_symbol)
649 (stabsect_build_psymtabs): Fix indentation.
651 2008-01-15 Michael Snyder <msnyder@specifix.com>
653 * corelow.c (core_xfer_partial): Comment, cut/paste error.
655 2008-01-14 Pierre Muller <muller@ics.u-strasbg.fr>
657 * win32-nat.c (win32_create_inferior): Restore code calling
658 CloseHandle on ProcessInformation structure.
660 2008-01-13 Nick Hudson <nick.hudson@dsl.pipex.com>
662 * configure.ac: Check for void * as 3 argument of ptrace.
663 * configure: regenerate.
665 2008-01-11 Markus Deuling <deuling@de.ibm.com>
667 * alpha-tdep.c (alpha_heuristic_proc_start)
668 (alpha_sigtramp_register_address): Add gdbarch as parameter. Replace
669 current_gdbarch by gdbarch.
671 (alpha_heuristic_frame_unwind_cache): Use get_frame_arch to get at the
672 current architecture by frame_info. Update alpha_heuristic_proc_start
675 (alpha_sigtramp_frame_this_id, alpha_sigtramp_frame_prev_register): Use
676 get_frame_arch to get at the current architecture by frame_info. Update
677 alpha_sigtramp_register_address call.
679 * arm-tdep.c (thumb_scan_prologue): Add gdbarch as parameter and replace
680 current_gdbarch by gdbarch. Update caller.
681 (convert_to_extended, convert_from_extended): Add endianess parameter
682 for comparison. Update caller.
683 (arm_extract_return_value, arm_store_return_value): Use
684 get_regcache_arch to get at the current architecture.
686 * cris-tdep.c (cris_register_size): Add gdbarch as parameter. Replace
687 current_gdbarch by gdbarch. Update caller.
688 (cris_gdb_func, move_to_preg_op, none_reg_mode_move_from_preg_op): Add
689 gdbarch as parameter. Update caller. Replace current_gdbarch by gdbarch.
691 * h8300-tdep.c (E_PSEUDO_CCR_REGNUM, E_PSEUDO_EXR_REGNUM, BINWORD): Add
692 gdbarch as parameter. Update caller.
693 (h8300_init_frame_cache): Add gdbarch as parameter. Replace
694 current_gdbarch by gdbarch. Update caller.
696 * hppa-tdep.c (skip_prologue_hard_way): Add gdbarch as parameter and
697 update caller. Replace current_gdbarch by gdbarch.
699 * m32c-tdep.c (m32c_skip_trampoline_code): Use get_frame_arch to get at
700 the current architecture. Replace current_gdbarch by gdbarch.
701 * m68hc11-tdep.c (m68hc11_frame_unwind_cache): Likewise.
702 (STACK_CORRECTION, USE_PAGE_REGISTER): Replace M6811_TDEP by its
703 expression. Add gdbarch as parameter and replace current_gdbarch with
705 (M6811_TDEP): Remove.
706 (m68hc11_frame_prev_register): Use get_frame_arch to get at the current
708 (m68hc11_scan_prologue): Add gdbarch as parameter. Replace
709 current_gdbarch by gdbarch. Update caller.
711 * m68k-tdep.c (m68k_analyze_prologue): Add gdbarch as parameter and
713 (m68k_analyze_register_saves): Likewise. Also replace current_gdbarch
716 * rs6000-tdep.c (skip_prologue): Add gdbarch as parameter and update
717 caller. Relace current_gdbarch by gdbarch.
718 (altivec_register_p, spe_register_p): Likewise.
719 * ppc-tdep.h (altivec_register_p, spe_register_p): Add gdbarch as
721 * ppc-linux-nat.c (fetch_register, store_register): Update caller of
722 altivec_register_p and spe_register_p.
724 * score-tdep.c (score_fetch_inst): Add gdbarch as parameter. Update
725 caller. Replace current_gdbarch by gdbarch.
726 (score_analyze_prologue): use get_frame_arch to get at the current
729 * sparc-tdep.h (sparc_analyze_prologue): Add gdbarch as parameter.
730 * sparc-tdep.c (sparc_analyze_prologue): Likewise. Replace
731 current_gdbarch by gdbarch. Update caller.
732 (sparc_frame_cache): Use get_frame_arch to get at the current
734 * sparce64-tdep.c (sparc64_skip_prologue): Update call of
735 sparc_analyze_prologue.
737 * mn10300-tdep.c (mn10300_dwarf2_reg_to_regnum): Add gdbarch as
740 2008-01-11 Markus Deuling <deuling@de.ibm.com>
742 * exec.c: #include "arch-utils.h"
743 (print_section_info): Use gdbarch_from_bfd to get at the
744 current architecture. Replace current_gdbarch. Fix indention. Replace
745 deprecated_print_address_numeric by paddress.
746 * Makefile.in (exec.o) Add dependency to arch-utils.h.
748 * valprint.c (val_print_string): Replace
749 deprecated_print_address_numeric.
750 * tracepoint.c (trace_mention, scope_info): Likewise.
751 * symmisc.c (dump_msymbols, dump_psymtab, dump_symtab_1, print_symbol)
752 (print_symbol, print_partial_symbols, maintenance_info_psymtabs)
753 (maintenance_check_symtabs): Likewise.
754 * symfile.c (list_overlays_command): Likewise.
755 * stack.c (frame_info, print_block_frame_labels): Likewise.
756 * printcmd.c (print_address, print_address_demangle)
757 (address_info): Likewise.
758 * corefile.c (memory_error): Likewise.
759 * infcmd.c (jump_command): Likewise.
760 * breakpoint.c (insert_bp_location, describe_other_breakpoints)
761 (mention, delete_breakpoint): Likewise.
762 * c-valprint.c (print_function_pointer_address, c_val_print): Likewise.
763 * dwarf2read.c (dump_die): Likewise.
764 * ada-valprint.c (ada_val_print_1): Likewise.
765 * f-valprint.c (f_val_print): Likewise.
766 * linux-fork.c (info_forks_command): Likewise.
767 * m32r-com.c (m32r_load_section, m32r_load)
768 (m32r_upload_command): Likewise.
770 * ui-out.c (ui_out_field_core_addr): Remove unnecessary comment.
772 2008-01-11 Markus Deuling <deuling@de.ibm.com>
774 * gdbarch.sh (skip_prologue): Add gdbarch
776 * gdbarch.{c,h}: Regenerate.
778 * alpha-tdep.c (alpha_skip_prologue): Add gdbarch as parameter.
779 * amd64-tdep.c (amd64_skip_prologue): Likewise.
780 * avr-tdep.c (avr_skip_prologue): Likewise.
781 * cris-tdep.c (cris_skip_prologue): Likewise.
782 * frv-tdep.c (frv_skip_prologue): Likewise.
783 * h8300-tdep.c (h8300_skip_prologue): Likewise.
784 * hppa-tdep.c (hppa_skip_prologue): Likewise.
785 * i386-tdep.c (i386_skip_prologue): Likewise.
786 * ia64-tdep.c (ia64_skip_prologue): Likewise.
787 * iq2000-tdep.c (iq2000_skip_prologue): Likewise.
788 * m32r-tdep.c (m32r_skip_prologue): Likewise.
789 * m68hc11-tdep.c (m68hc11_skip_prologue): Likewise.
790 * m68k-tdep.c (m68k_skip_prologue): Likewise.
791 * m88k-tdep.c (m88k_skip_prologue): Likewise.
792 * mep-tdep.c (mep_skip_prologue): Likewise.
793 * mips-tdep.c (mips_skip_prologue): Likewise.
794 * mn10300-tdep.c (mn10300_skip_prologue): Likewise.
795 * mt-tdep.c (mt_skip_prologue): Likewise.
796 * rs6000-tdep.c (rs6000_skip_prologue): Likewise.
797 * score-tdep.c (score_skip_prologue): Likewise.
798 * sh64-tdep.c (sh64_skip_prologue): Likewise.
799 * sh-tdep.c (sh_skip_prologue): Likewise.
800 * sparc64-tdep.c (sparc64_skip_prologue): Likewise.
801 * sparc-tdep.c (sparc32_skip_prologue): Likewise.
802 * spu-tdep.c (spu_skip_prologue): Likewise.
803 * v850-tdep.c (v850_skip_prologue): Likewise.
804 * vax-tdep.c (vax_skip_prologue): Likewise.
805 * xstormy16-tdep.c (xstormy16_skip_prologue): Likewise.
806 * xtensa-tdep.c (xtensa_skip_prologue): Likewise.
808 * arm-tdep.c (arm_skip_prologue): Add gdbarch as parameter. Replace
809 current_gdbarch by gdbarch.
810 * m32c-tdep.c (m32c_skip_prologue): Likewise.
811 * s390-tdep.c (s390_skip_prologue): Likewise.
813 2008-01-10 Doug Evans <dje@google.com>
815 * defs.h (struct continuation_arg): Fix typo in comment.
816 * target.c (target_translate_tls_address): Fix comment spelling error.
818 2008-01-09 Thiago Jung Bauermann <bauerman@br.ibm.com>
820 * doublest.h (DOUBLEST_PRINT_FORMAT): Remove % from string.
821 (DOUBLEST_SCAN_FORMAT): Likewise.
822 * dfp.c (decimal_from_floating): Use DOUBLEST_PRINT_FORMAT.
823 * ada-lex.l (processReal): Prepend "%" to use of DOUBLEST_SCAN_FORMAT.
824 * c-exp.y (parse_number): Likewise.
825 * jv-exp.y (parse_number): Likewise.
826 * objc-exp.y (parse_number): Likewise.
827 * p-exp.y (parse_number): Likewise.
829 2008-01-09 Joel Brobecker <brobecker@adacore.com>
831 * gdbtypes.c (create_array_type): Add handling of null Ada arrays.
832 (check_typedef): Likewise.
834 2008-01-09 Luis Machado <luisgpm@br.ibm.com>
836 * printcmd.c (printf_command): Add seen_big_h, seen_big_d and
837 seen_double_big_d, treat the new H, D, and DD modifiers as length
840 2008-01-08 Joel Brobecker <brobecker@adacore.com>
842 * dwarf2read.c (read_enumeration_type): Add comment.
844 2008-01-08 Thiago Jung Bauermann <bauerman@br.ibm.com>
846 * config.in: Regenerate.
848 2008-01-08 Joel Brobecker <brobecker@adacore.com>
850 * ada-lang.c (ada_convert_actual): Renames convert_actual.
852 (ada_convert_actuals): Delete.
853 * ada-lang.h (ada_convert_actual): Add declaration.
854 (ada_convert_actuals): Remove declaration.
855 * infcall.c: #include "ada-lang.h".
856 (value_arg_coerce): Add new parameter sp. Update function
857 documetnation. Add handling of Ada function call parameters.
858 * Makefile.in (infcall.o): Update dependencies.
860 2008-01-08 Paul Hilfinger <hilfinger@adacore.com>
862 * ada-lang.c (ensure_lval): Fix value lval kind.
863 (convert_actual): Add handling for arguments passed by reference.
865 2008-01-08 Doug Evans <dje@google.com>
867 * dbxread.c (read_dbx_symtab): Fix indentation.
869 2008-01-07 Thiago Jung Bauermann <bauerman@br.ibm.com>
871 * Makefile.in (dfp.o): Depend on expression.h, gdbtypes.h and value.h.
872 (valarith.o): Depend on dfp.h.
873 (valops.o): Likewise.
874 * dfp.c: Include expression.h, gdbtypes.h, value.h and dfp.h.
875 (set_decnumber_context): New function.
876 (decimal_check_errors): Likewise.
877 (decimal_from_number): Likewise.
878 (decimal_to_number): Likewise.
879 (decimal_from_string): Use set_decnumber_context and
880 decimal_check_errors.
881 (decimal_from_integral): New function.
882 (decimal_from_floating): Likewise.
883 (decimal_to_double): Likewise.
884 (promote_decimal): Likewise.
885 (decimal_binop): Likewise.
886 (decimal_is_zero): Likewise.
887 (decimal_compare): Likewise.
888 (decimal_convert): Likewise.
889 * dfp.h (decimal_from_integral): New prototype.
890 (decimal_from_floating): Likewise.
891 (decimal_to_double): Likewise.
892 (decimal_binop): Likewise.
893 (decimal_is_zero): Likewise.
894 (decimal_compare): Likewise.
895 (decimal_convert): Likewise.
896 * eval.c (evaluate_subexp_standard): Remove expect_type argument from
897 call to value_from_decfloat.
898 * valarith.c: Include dfp.h.
899 (value_args_as_decimal): New function.
900 (value_binop): Add if block to handle TYPE_CODE_DECFLOAT values.
901 (value_logical_not): Likewise.
902 (value_equal): Likewise.
903 (value_less): Likewise.
904 (value_pos): Likewise.
905 (value_neg): Formatting fix.
906 * valops.c: Include dfp.h.
907 (value_cast): Add if block to handle TYPE_CODE_DECFLOAT values.
908 * value.c (unpack_long): Add case to handle TYPE_CODE_DECFLOAT.
909 (unpack_double): Add if block to handle TYPE_CODE_DECFLOAT.
910 (value_from_decfloat): Remove expect_type argument.
911 * value.h (value_from_decfloat): Update prototype.
913 2008-01-07 Vladimir Prus <vladimir@codesourcery.com>
915 Ignore change in name of dynamic linker during
916 execution on Solaris. This also unbreaks pending breakpoints.
918 * solist.h (struct target_so_ops): New field same.
919 * solib-svr4.c (svr4_same): New.
920 (_initialize_svr4_solib): Register svr4_same.
921 * solib.c (update_solib_list): Use ops->same, if available.
923 2008-01-06 Christopher Faylor <me+cygwin@cgf.cx>
925 * win32-nat.c (win32_make_so): Use cygwin-style path to avoid warnings
926 when using MS-DOS paths.
928 2008-01-05 Pedro Alves <pedro@codesourcery.com>
930 * NEWS: Mention --pid and --core command line behaviour changes.
932 2008-01-05 Pedro Alves <pedro@codesourcery.com>
934 * main.c (captured_main): Remove 'count' varible and the
935 ALIGN_STACK_ON_ENTRY block that used it. Error out if --core and
936 --pid options were issued simultaneously. If an explicit pid
937 option was passed, don't fallback to core file. Detect extra
938 arguments better in the presence of explicit pid or core
941 2008-01-05 Joel Brobecker <brobecker@adacore.com>
943 * ada-lang.c (ada_which_variant_applies): Correctly compute
944 the value of the discriminant when the variant record is packed.
946 2008-01-04 Joel Brobecker <brobecker@adacore.com>
948 * ada-lang.c (is_name_suffix): Handle middle-name numeric suffixes
949 that are used to differentiate homonyms.
951 2008-01-04 Jerome Guitton <guitton@adacore.com>
953 * ada-lang.c (decode_packed_array_type): Avoid a seg fault
954 when the type is an anonymous pointer type.
955 (ada_check_typedef): Avoid a seg fault when the type is null.
956 * ada-typeprint.c (print_array_type): Add support for pointer
959 2008-01-04 Paul N. Hilfinger <hilfinger@adacore.com>
961 * ada-exp.y: Allow '{type} ADDRESS' notation on left of assignment.
963 2008-01-04 Joel Brobecker <brobecker@adacore.com>
965 * ada-lang.c (ada_evaluate_subexp): Evaluate tagged types in
966 EVAL_NORMAL mode when noside is EVAL_AVOID_SIDE_EFFECTS.
968 2008-01-04 Joel Brobecker <brobecker@adacore.com>
970 * ada-exp.y (chop_separator): New function.
971 (write_selectors): Rewrite to re-use chop_separator.
972 (ada_nget_field_index, get_symbol_field_type): New functions.
973 (write_var_or_type): Add support for "ptype TYPENAME.FIELD"
976 2008-01-03 Thiago Jung Bauermann <bauerman@br.ibm.com>
978 * symtab.c (find_pc_sect_line): Use SYMBOL_VALUE_ADDRESS instead
979 of SYMBOL_VALUE when working with function symbols.
981 2008-01-03 Joel Brobecker <brobecker@adacore.com>
983 * ada-lang.c (resolve_subexp): Add handling of OP_REGISTER
984 expressions. These expressions do not need to be rewriten.
986 2008-01-03 Joel Brobecker <brobecker@adacore.com>
988 * dwarf2read.c (read_enumeration_type): Flag type as stub if
989 the given die is a declaration.
991 2008-01-03 Joel Brobecker <brobecker@adacore.com>
993 * ada-lang.c (ada_array_bound_from_type): Make non-static.
994 Handle properly the case when the index type is an enumerated type.
995 Do not return the subtype of the bounds type, just return the
996 bounds type directly - this is not needed and is more consistent
997 with what we do for arrays when no XA parallel type exists.
999 2008-01-03 Joel Brobecker <brobecker@adacore.com>
1001 * ada-lang.c (static_unwrap_type): Add forward declaration.
1002 (template_to_static_fixed_type): Fields of dynamic types sometimes
1003 also need to be unwrapped. Take this into account.
1004 (ada_to_fixed_type_1): Renamed from ada_to_fixed_type.
1005 (ada_to_fixed_type): New wrapper around ada_to_fixed_type_1.
1006 * ada-typeprint.c (ada_print_type): Get the typename from
1007 the original type, not the base type.
1009 2008-01-03 Jerome Guitton <guitton@adacore.com>
1011 * ada-lang.c (ada_value_struct_elt, to_fixed_array_type)
1012 (to_fixed_array_type, ada_to_fixed_value_create, unwrap_value):
1013 Update calls to ada_to_fixed_type.
1014 (ada_template_to_fixed_record_type_1): Ditto, but without looking
1016 (ada_to_fixed_type): Add check_tag parameter; do not look for
1017 tag if null. When looking for a tag, use a fixed record type.
1018 * ada-lang.h (ada_to_fixed_type): Add check_tag parameter.
1019 * ada-valprint.c (printable_val_type, ada_value_print): Update
1020 calls to ada_to_fixed_type.
1022 2008-01-03 Luis Machado <luisgpm@br.ibm.com>
1024 * doublest.c (convert_floatformat_to_doublest): Call
1025 floatformat_to_doublest instead of floatformat_to_double and use
1027 (convert_doublest_to_floatformat): Call floatformat_from_doublest
1028 instead of floatformat_from_double and use DOUBLEST variables.
1030 2008-01-03 Nick Hudson <nick.hudson@dsl.pipex.com>
1032 * MAINTAINERS (Write After Approval): Add self.
1034 2008-01-03 Joel Brobecker <brobecker@adacore.com>
1036 * symfile.c (set_initial_language): Make non-static.
1037 * symfile.h (set_initial_language): Add declaration.
1038 * language.c: #include "symfile.h".
1039 (set_language): Call set_initial_language if the frame language
1040 could not be determined.
1042 2008-01-03 Paul N. Hilfinger <hilfinger@adacore.com>
1044 * eval.c (evaluate_subexp_for_address): Provide frame address to
1045 locate_var_value only if it will be needed.
1047 2008-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1049 * linux-nat.c (linux_child_follow_fork): Call also CHECK_FOR_THREAD_DB.
1051 2008-01-02 Joel Brobecker <brobecker@adacore.com>
1053 * ada-lang.c (ada_evaluate_subexp): Modify the value returned
1054 when noside is EVAL_AVOID_SIDE_EFFECTS to be an lval_memory.
1055 This is needed to make sure that any other treatment applied
1056 to the resulting value does not fail for spurious reason,
1057 such as trying to take the address of this value.
1059 2008-01-02 Joel Brobecker <brobecker@adacore.com>
1061 * ada-lang.c (ada_value_equal): Dereference reference types when
1064 2008-01-01 Daniel Jacobowitz <dan@codesourcery.com>
1066 Updated copyright notices for most files.
1068 2008-01-01 Christopher Faylor <me+gdb@cgf.cx>
1070 * win32-nat.c (psapi_module_handle): Remove static.
1071 (get_module_name): Rename from psapi_get_dll_name. Revamp slightly to
1072 return first module found if base_address is zero. Don't initialize
1073 psapi function pointers here. Convert to cygwin paths when
1075 (win32_pid_to_exec_file): Use Cygwin's /proc interface to determine
1076 executable name. Use get_module_name when that fails or when
1078 (_initialize_psapi): New function. Initialize psapi stuff before it is
1079 needed or issue a warning if it is not found. Move psapi_module_handle
1082 2008-01-01 Joel Brobecker <brobecker@adacore.com>
1084 * ada-lang.c (ada_remove_trailing_digits): New function.
1085 (ada_remove_po_subprogram_suffix): New function.
1086 (ada_decode): Improve. Move the description of the algorithm
1087 directly inside the code, instead of in the function global
1090 2008-01-01 Joel Brobecker <brobecker@adacore.com>
1092 * ada-valprint.c (ada_val_print_1) [TYPE_CODE_REF]: Ignore deref_ref
1093 and always print the dereferenced value.
1095 2008-01-01 Joel Brobecker <brobecker@adacore.com>
1097 * ada-lang.c (ada_evaluate_subexp, case BINOP_SUB): Add handling
1098 of the case where the first argument is a reference.
1099 (ada_evaluate_subexp, case BINOP_ADD): Likewise.
1101 2008-01-01 Joel Brobecker <brobecker@adacore.com>
1103 Implement support for Ada interface types.
1105 * ada-lang.c (ada_is_dispatch_table_ptr_type): New function.
1106 (ada_is_ignored_field): Ignore fields that are a dispatch table
1109 2008-01-01 Joel Brobecker <brobecker@adacore.com>
1111 * top.c (print_gdb_version): Update copyright year.
1113 2008-01-01 Joel Brobecker <brobecker@adacore.com>
1115 * ChangeLog-2007: New ChangeLog rotation.
1116 * ChangeLog: Reset for 2008.
1117 * config/djgpp/fnchange.lst: Add entries for ChangeLog-2006 and
1120 For older changes see ChangeLog-2007.
1126 version-control: never