* ia64-tdep.c (ia64_memory_remove_breakpoint): Set
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2008-04-29 Joel Brobecker <brobecker@adacore.com>
2
3 * ia64-tdep.c (ia64_memory_remove_breakpoint): Set
4 show_memory_breakpoints to 1 while reading the instruction bundle.
5
6 2008-04-29 Joel Brobecker <brobecker@adacore.com>
7
8 * gdbarch.sh: Document the return_value method. Explain that
9 the FUNCTYPE parameter might be NULL.
10 * gdbarch.h: Regenerated.
11 * sparc-tdep.c (sparc32_push_dummy_code): Do not pass the function
12 type when calling using_struct_return, as this is unnecessary
13 on this target.
14
15 2008-04-28 Joel Brobecker <brobecker@adacore.com>
16
17 * terminal.h (create_tty_session): Fix return type.
18
19 2008-04-26 Vladimir Prus <vladimir@codesourcery.com>
20
21 * mi/mi-interp.c (mi_new_thread): Quote the thread id.
22
23 2008-04-26 Joel Brobecker <brobecker@adacore.com>
24
25 * breakpoint.c (condition_command, commands_from_control_command)
26 (break_command_really): Minor reformatting.
27
28 2008-04-25 Pedro Alves <pedro@codesourcery.com>
29
30 * dwarf2read.c (dwarf2_const_value): Handle DW_FORM_strp.
31
32 2008-04-25 Pedro Alves <pedro@codesourcery.com>
33
34 * amd64-tdep.c (amd64_get_longjmp_target): New.
35 (amd64_init_abi): Register amd64_get_longjmp_target as
36 gdbarch_get_longjmp_target callback.
37 * i386-tdep.c (i386_get_longjmp_target): Remove 64-bit handling.
38
39 2008-04-25 Pedro Alves <pedro@codesourcery.com>
40
41 * breakpoint.h (enum bpstat_what_main_action): Delete
42 BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE.
43
44 * breakpoint.c (clrs): Delete.
45 (bpstat_what): Update table.
46
47 * infrun.c (handle_inferior_event): Remove
48 BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE handling.
49
50 2008-04-24 Vladimir Prus <vladimir@codesourcery.com>
51
52 * mi/mi-cmds.h (mi_cmd_args_ftype): Remove.
53 Adjust all prototypes using mi_cmd_args_ftype to use
54 mi_cmd_argv_ftype.
55 (struct mi_cmd): Remove the args_func field.
56 * mi/mi-cmds.c: Don't provide value for the args_func field.
57 * mi/mi-main.c (mi_execute_async_cli_command)
58 (mi_cmd_exec_run, mi_cmd_exec_next, mi_cmd_exec_next_instruction)
59 (mi_cmd_exec_step, mi_cmd_exec_step_instruction)
60 (mi_cmd_exec_finish, mi_cmd_exec_until, mi_cmd_exec_return)
61 (mi_cmd_exec_continue, mi_cmd_exec_interrupt)
62 (mi_cmd_target_download): Adjust.
63 (mi_cmd_target_select): Adjust. Pass 0 for from_tty parameter.
64 (mi_cmd_execute): Do not check for args_func.
65 (mi_execute_async_cli_command): Adjust.
66 * mi/mi-parse.c: Don't check for args_func.
67
68 2008-04-24 Vladimir Prus <vladimir@codesourcery.com>
69
70 * breakpoint.c (bpstat_check_location)
71 (bpstat_check_watchpoint, bpstat_check_breakpoint_conditions):
72 New, extracted from bpstat_stop_status.
73 (bpstat_stop_status): Use the above.
74
75 2008-04-24 Vladimir Prus <vladimir@codesourcery.com>
76
77 * mi/mi-main.c (last_async_command): Rename to current_token.
78 (previous_async_command): Remove.
79 (mi_cmd_gdb_exit): Adjust.
80 (mi_cmd_exec_interrupt): Don't dance with previous_async_command.
81 (mi_cmd_target_select): Adjust.
82 (mi_cmd_execute): Don't set previous_async_command. Free token
83 here even in async mode.
84 (mi_execute_async_cli_command): Adjust.
85 (mi_exec_async_cli_cmd_continuation): Adjust. Do not free the
86 token.
87 (mi_load_progress): Adjust.
88
89 2008-04-24 Vladimir Prus <vladimir@codesourcery.com>
90
91 * infcmd.c (step_1_continuation): Always disable longjmp
92 breakpoint if we're not going to do another step.
93
94 2008-04-24 Vladimir Prus <vladimir@codesourcery.com>
95
96 exec_cleanup murder.
97 * breakpoint.c (until_break_command_continuation): Add
98 the 'error' parameter. Directly delete the breakoint as
99 opposed to running cleanups.
100 (until_break_command): Install continuation only
101 after starting the target. Don't use exec cleanups,
102 use ordinary cleanups. Discard cleanups is successfully
103 started the target in async mode.
104 (make_cleanup_delete_breakpoint): Remove.
105 * breakpoint.h (make_cleanup_delete_breakpoint): Remove
106 declaration.
107 * defs.h (do_exec_cleanups, make_exec_cleanup): Remove
108 declarations.
109 (struct continations): Add the 'error' parameter to the
110 continuation_hook field.
111 (add_continuation, do_all_continuations)
112 (add_intermediate_continuation)
113 (do_all_intermediate_continuations): Add the 'error' parameter.
114 * exceptions.c (throw_exception): Don't call do_exec_cleanups.
115 * inf-loop.c (inferior_event_handler): Instead of calling
116 discard_all_continuations, use do_all_continuations with 1 as
117 'error' parameter. Pass 0 as 'error' parameter in existing uses
118 of discard_all_continuations.
119 * infcmd.c (step_1): Do not use exec cleanup. For async case, discard
120 cleanups.
121 (step_once): Install continuation only after resuming the target.
122 (step_1_continuation): Disable longjmp breakpoint on error.
123 (finish_command_continuation): Add the error parameter. Delete
124 the finish breakpoint directly, do not use cleanups.
125 (finish_command): Do not use exec_cleanups. Always setup
126 continuation. For sync case, immediately run them.
127 (attach_command_continuation): Add the error parameter.
128 * infrun.c (fetch_inferior_event): Do not use exec cleanups to
129 remove step_resume_breakpoint -- adjust delete it directly.
130 * interps.c (interp_set): Adjust call to do_all_continations.
131 * mi/mi-interp.c (mi_interpreter_exec_continuation): Do not
132 do exec cleanups.
133 * mi/mi-main.c (mi_cmd_target_select): Do not do exec
134 cleanups.
135 (mi_cmd_execute): Do not use exec_cleanup.
136 (mi_execute_async_cli_command): Simplify the string concatenation
137 logic. Do no use exec cleanup.
138 (mi_exec_async_cli_cmd_continuation): New parameter error.
139 Free last_async_command.
140 * top.c (command_line_handler_continuation): New parameter error.
141 * utils.c (exec_cleanup_chain, make_exec_cleanup)
142 (do_exec_cleanups): Remove.
143 (add_continuation, do_all_continations)
144 (add_intermediate_continuation)
145 (do_all_intermediate_continuations): New parameter error.
146
147 2008-04-24 Vladimir Prus <vladimir@codesourcery.com>
148
149 * breakpoint.h (bp_location_p): New typedef.
150 Register a vector of bp_location_p.
151 * breakpoint.c (always_inserted_mode)
152 (show_always_inserted_mode): New.
153 (unlink_locations_from_global_list): Remove.
154 (update_global_location_list)
155 (update_global_location_list_nothrow): New.
156 (update_watchpoint): Don't free locations.
157 (should_insert_location): New.
158 (insert_bp_location): Use should_insert_location.
159 (insert_breakpoint_locations): Copied from
160 insert_breakpoints.
161 (insert_breakpoint): Use insert_breakpoint_locations.
162 (bpstat_stop_status): Call update_global_location_list
163 when disabling breakpoint.
164 (allocate_bp_location): Don't add to bp_location_chain.
165 (set_raw_breakpoint)
166 (create_longjmp_breakpoint, enable_longjmp_breakpoint)
167 (disable_longjmp_breakpoint, create_overlay_event_breakpoint)
168 (enable_overlay_breakpoints, disable_overlay_breakpoints)
169 (set_longjmp_resume_breakpoint)
170 (enable_watchpoints_after_interactive_call_stop)
171 (disable_watchpoints_before_interactive_call_start)
172 (create_internal_breakpoint)
173 (create_fork_vfork_event_catchpoint)
174 (create_exec_event_catchpoint, set_momentary_breakpoint)
175 (create_breakpoints, break_command_1, watch_command_1)
176 (create_exception_catchpoint)
177 (handle_gnu_v3_exceptions)
178 (disable_breakpoint, breakpoint_re_set_one)
179 (create_thread_event_breakpoint, create_solib_event_breakpoint)
180 (create_ada_exception_breakpoint): : Don't call check_duplicates.
181 Call update_global_location_list.
182 (delete_breakpoint): Don't remove locations and don't
183 try to reinsert them. Call update_global_location_list.
184 (update_breakpoint_locations): Likewise.
185 (restore_always_inserted_mode): New.
186 (update_breakpoints_after_exec): Temporary disable
187 always inserted mode.
188 * Makefile.in: Update dependencies.
189
190 * infrun.c (proceed): Remove breakpoints while stepping
191 over breakpoint.
192 (handle_inferior_event): Don't remove or insert
193 breakpoints.
194 * linux-fork.c (checkpoint_command): Remove breakpoints
195 before fork and insert after.
196 (linux_fork_context): Remove breakpoints before switch
197 and insert after.
198 * target.c (target_disconnect, target_detach): Remove
199 breakpoints from target.
200
201
202 2008-04-24 Vladimir Prus <vladimir@codesourcery.com>
203
204 * breakpoint.c (print_one_breakpoint_location): In MI
205 mode, report the location string the breakpoint was
206 originally created with.
207
208 2008-04-23 Maxim Grigoriev <maxim2405@gmail.com>
209
210 * Makefile.in (xtensa-tdep.o): Update dependencies.
211 * configure.tgt (xtensa*): Update dependencies.
212 * xtensa-tdep.c (arreg_number): Renamed from areg_number.
213 Local variable areg renamed to arreg.
214 (areg_number): New function.
215 (xtensa_pseudo_register_read, xtensa_pseudo_register_write)
216 (xtensa_extract_return_value, xtensa_store_return_value): areg_number
217 replaced by arreg_number.
218 (xtensa_windowed_frame_cache, struct xtensa_frame_cache): New comments.
219 (xtensa_alloc_frame_cache): Initialize cache->wd.ws.
220 (xtensa_scan_prologue): New function.
221 (xtensa_frame_cache): New local fp_regnum. Handle separately the case,
222 when ENTRY instraction hasn't been executed yet. Get the frame pointer
223 value based on prologue analysis. Fix the bugs preventing WS and
224 AR4-AR7/A11 registers from getting right values for intermediate frames,
225 whose registers have been already spilled.
226 (xtensa_frame_prev_register): Fix WS register value. Use are_number
227 and arreg_number appropriately.
228 (xtensa_gdbarch_init): Set solib_svr4_fetch_link_map_offsets to
229 svr4_ilp32_fetch_link_map_offsets.
230
231 2008-04-23 Andrew Stubbs <andrew.stubbs@st.com>
232
233 * printcmd.c: Define USE_PRINTF_I64 and PRINTF_HAS_LONG_LONG on MinGW.
234 (printf_command): Convert %lld to %I64d when USE_PRINTF_I64 set.
235
236 2008-04-23 Paolo Bonzini <bonzini@gnu.org>
237
238 * acinclude.m4: Add override.m4.
239 * configure: Regenerate.
240
241 2008-04-22 Jan Kratochvil <jan.kratochvil@redhat.com>
242
243 * ada-lang.c (get_selections): Variable PROMPT made non-const and
244 initialized with a trailing space now. Use PROMPT_ARG of
245 COMMAND_LINE_INPUT instead of printing it ourselves.
246
247 2008-04-22 Joel Brobecker <brobecker@adacore.com>
248
249 * NEWS: Document support for 64-bit core file.
250
251 2008-04-22 Corinna Vinschen <vinschen@redhat.com>
252
253 * NEWS: Add information on calling convention and new SH CLI options.
254
255 * sh-tdep.c (sh_cc_gcc): New static string.
256 (sh_cc_renesas): Ditto.
257 (sh_cc_enum): New static string array.
258 (sh_active_calling_convention): New static string pointer denoting
259 active user chosen ABI.
260 (sh_is_renesas_calling_convention): New function to return function
261 specific ABI, or user choice if necessary.
262 (sh_use_struct_convention): Rename first argument and turn around its
263 meaning. Check for renesas ABI and return accordingly.
264 (sh_use_struct_convention_nofpu): New function.
265 (sh_next_flt_argreg): Get function type as third parameter. Check
266 for renesas ABI and choose floating registers accordingly.
267 (sh_push_dummy_call_fpu): Check for ABI and choose argument slot and
268 struct return slot accordingly.
269 (sh_push_dummy_call_nofpu): Ditto.
270 (sh_return_value_nofpu): Call sh_use_struct_convention_nofpu from here.
271 Evaluate ABI and give to sh_use_struct_convention_nofpu.
272 (sh_return_value_fpu): Evaluate ABI and give to
273 sh_use_struct_convention.
274 (show_sh_command): New function.
275 (set_sh_command): Ditto.
276 (_initialize_sh_tdep): Initialize `set/show sh calling-convention
277 CLI command.
278
279 * gdbarch.sh (return_value): Add func_type argument.
280 * gdbarch.c: Regenerate.
281 * gdbarch.h: Ditto.
282 * eval.c (evaluate_subexp_standard): Rename local variable value_type to
283 val_type so as not to collide with value_type function. Call
284 using_struct_return with additional function type argument.
285 * infcall.c (call_function_by_hand): Call using_struct_return and
286 gdbarch_return_value with additional function type argument.
287 * infcmd.c (print_return_value): Take addition func_type argument.
288 Call gdbarch_return_value with additional function type argument.
289 (finish_command_continuation): Call print_return_value with additional
290 function type argument.
291 (finish_command): Ditto.
292 * sparc-tdep.c (sparc32_push_dummy_code): Call using_struct_return with
293 additional function type argument.
294 * stack.c (return_command): Call using_struct_return and
295 gdbarch_return_value with additional function type argument.
296 * value.c (using_struct_return): Take additional function type argument.
297 * value.h (using_struct_return): Accommodate declaration.
298 * alpha-tdep.c (alpha_return_value): Add func_type argument.
299 * amd64-tdep.c (amd64_return_value): Ditto.
300 * arm-tdep.c (arm_return_value): Ditto.
301 * avr-tdep.c (avr_return_value): Ditto.
302 * cris-tdep.c (cris_return_value): Ditto.
303 * frv-tdep.c (frv_return_value): Ditto.
304 * h8300-tdep.c (h8300_return_value): Ditto.
305 (h8300h_return_value): Ditto.
306 * hppa-tdep.c (hppa32_return_value): Ditto.
307 (hppa64_return_value): Ditto.
308 * i386-tdep.c (i386_return_value): Ditto.
309 * ia64-tdep.c (ia64_return_value): Ditto.
310 * iq2000-tdep.c (iq2000_return_value): Ditto.
311 * m32c-tdep.c (m32c_return_value): Ditto.
312 * m32r-tdep.c (m32r_return_value): Ditto.
313 * m68hc11-tdep.c (m68hc11_return_value): Ditto.
314 * m68k-tdep.c (m68k_return_value): Ditto.
315 (m68k_svr4_return_value): Ditto.
316 * m88k-tdep.c (m88k_return_value): Ditto.
317 * mep-tdep.c (mep_return_value): Ditto.
318 * mips-tdep.c (mips_eabi_return_value): Ditto.
319 (mips_n32n64_return_value): Ditto.
320 (mips_o32_return_value): Ditto.
321 (mips_o64_return_value): Ditto.
322 * mn10300-tdep.c (mn10300_return_value): Ditto.
323 * mt-tdep.c (mt_return_value): Ditto.
324 * ppc-linux-tdep.c (ppc_linux_return_value): Ditto.
325 * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Ditto.
326 (ppc_sysv_abi_broken_return_value): Ditto.
327 (ppc64_sysv_abi_return_value): Ditto.
328 * ppc-tdep.h (ppc_sysv_abi_return_value): Ditto.
329 (ppc_sysv_abi_broken_return_value): Ditto.
330 (ppc64_sysv_abi_return_value): Ditto.
331 * ppcnbsd-tdep.c (ppcnbsd_return_value): Ditto.
332 * rs6000-tdep.c (rs6000_return_value): Ditto.
333 * s390-tdep.c (s390_return_value): Ditto.
334 * score-tdep.c (score_return_value): Ditto.
335 * sh-tdep.c (sh_return_value_nofpu): Ditto.
336 (sh_return_value_fpu): Ditto.
337 * sh64-tdep.c (sh64_return_value): Ditto.
338 * sparc-tdep.c (sparc32_return_value): Ditto.
339 * sparc64-tdep.c (sparc64_return_value): Ditto.
340 * spu-tdep.c (spu_return_value): Ditto.
341 * v850-tdep.c (v850_return_value): Ditto.
342 * vax-tdep.c (vax_return_value): Ditto.
343 * xstormy16-tdep.c (xstormy16_return_value): Ditto.
344 * xtensa-tdep.c (xtensa_return_value): Ditto.
345
346 * gdbtypes.h (struct type): Add calling_convention member.
347 * dwarf2read.c (read_subroutine_type): Add calling convention read
348 from DW_AT_calling_convention attribute to function type.
349
350 2008-04-22 Markus Deuling <deuling@de.ibm.com>
351
352 * eval.c (evaluate_subexp_standard): Use value_subscripted_rvalue for
353 multi_f77_subscript to support values from registers.
354 * valarith.c (value_subscripted_rvalue): Remove prototype and static.
355 * value.h (value_subscripted_rvalue): Add prototype.
356
357 * f-typeprint.c (f_type_print_base): Add support for TYPE_CODE_UNION.
358 Fix output.
359 * f-valprint.c (f_val_print): Likewise.
360
361 2008-04-21 Craig Silverstein <csilvers@google.com>
362
363 * dwarf2read.c (zlib_decompress_section): Define abfd in the
364 !HAVE_ZLIB_H case.
365
366 2008-04-21 Pedro Alves <pedro@codesourcery.com>
367
368 * symfile.c (syms_from_objfile): Don't warn if lowest loadable
369 section is not a code section.
370
371 2008-04-19 Craig Silverstein <csilvers@google.com>
372
373 * NEWS: Add information on compressed debug sections.
374
375 2008-04-19 Vladimir Prus <vladimir@codesourcery.com>
376
377 * mi/mi-cmd-var.c (varobj_update_one): Print new
378 value for variable objects that changed type.
379
380 2008-04-19 Vladimir Prus <vladimir@codesourcery.com>
381
382 * varobj.c (varobj_invalidate): Don't touch floating
383 varobjs.
384
385 2008-04-19 Mark Kettenis <kettenis@gnu.org>
386
387 * symtab.c: (multiple_symbols_modes, multiple_symbols_ask)
388 (multiple_symbols_cancel): Remove extra const.
389 * symtab.h: Likewise.
390
391 2008-04-19 Nick Roberts <nickrob@snap.net.nz>
392
393 * interps.c (top_level_interpreter): Rename static variable...
394 (top_level_interpreter_ptr): ...to this.
395 (top_level_interpreter): New function.
396
397 * interps.h: New extern for top_level_interpreter.
398
399 * linespec.c: Include interps.h and mi/mi-cmds.h.
400 (decode_line_2): When using MI, always set all breakpoints in menu.
401
402 * Makefile.in (linespec.o, mi-interp.o): Add dependencies.
403
404 2008-04-18 Craig Silverstein <csilvers@google.com>
405
406 * configure.ac (AC_SEARCH_LIBS): Add check for zlib.
407 * config.in, configure: Regenerate.
408 * dwarf2read.c: Include zlib.h if present.
409 Modified *_SECTION macros.
410 (section_is_p): New.
411 (dwarf2_locate_sections): Use section_is_p instead of strcmp
412 (dwarf2_resize_section): New.
413 to determine whether a given section has a given name.
414 (zlib_decompress_section): New.
415 (dwarf2_read_section): Read the compressed section if present
416 in the binary.
417 * MAINTAINERS: Added myself to section Write After Approval.
418
419 2008-04-18 Thiago Jung Bauermann <bauerman@br.ibm.com>
420
421 * defs.h (exec_set_section_offsets): Remove prototype.
422 * exec.c (exec_set_section_offsets): Remove function.
423
424 2008-04-18 Joel Brobecker <brobecker@adacore.com>
425
426 * stabsread.c (cleanup_undefined_types_1): Add instance flags check
427 in the search for the matching symbol.
428
429 2008-04-17 Marc Khouzam <marc.khouzam@ericsson.com>
430
431 * breakpoint.c (update_watchpoint): Always reparse
432 condition.
433
434 2008-04-17 Joel Brobecker <brobecker@adacore.com>
435
436 * breakpoint.c (print_one_breakpoint_location): Make sure to print
437 the breakpoint address only once.
438
439 2008-04-17 Dennis Roberts <dennis.roberts@sunquestinfo.com>
440
441 * rs6000-tdep.c (rs6000_gdbarch_init): Use the BFD architecture,
442 rather than a hard-coded architecture, for xcoff executables.
443
444 2008-04-17 Doug Evans <dje@google.com>
445
446 * buildsym.c (watch_main_source_file_lossage): New fn.
447 (end_symtab): Call it.
448
449 * source.c (find_and_open_source): Add some comments clarifying
450 handling of FULLNAME argument. Make static. Remove pointless
451 xstrdup/xfree.
452
453 2008-04-17 Pedro Alves <pedro@codesourcery.com>
454
455 * inf-loop.c (inferior_event_handler): Also run the intermediate
456 continuations in the INF_EXEC_COMPLETE case.
457
458 2008-04-16 Tom Tromey <tromey@redhat.com>
459
460 * cli/cli-decode.h (CMD_ASYNC_OK): New define.
461 (set_cmd_async_ok, get_cmd_async_ok): Declare.
462 * cli/cli-decode.c (set_cmd_async_ok): New function.
463 (get_cmd_async_ok): New function.
464 * cli/cli-cmds.c (init_cli_cmds): Mark "pwd", "help", "info", and
465 "show" as async-ok.
466 * top.c (execute_command): Use get_cmd_async_ok.
467 * infcmd.c: Include cli/cli-decode.h.
468 (_initialize_infcmd): Mark "interrupt" as async-ok.
469 * Makefile.in (infcmd.o): Depend on cli_decode_h.
470
471 2008-04-16 Daniel Jacobowitz <dan@codesourcery.com>
472
473 PR gdb/2445
474 * exec.c: Correct "arch-utils.h" include.
475
476 2008-04-15 Aleksandar Ristovski <aristovski@qnx.com>
477
478 PR gdb/2424
479 * infrun.c (normal_stop) Move breakpoint_auto_delete further down
480 to allow printing to 'see' real reason of stop. This fixes PR 2424.
481 * breakpoint.c (bpdisp_texst): New function. The function takes over
482 the role of bpstats static array in print_one_breakpoint_location.
483 (print_it_typical): Print "Temporary breakpoint" instead
484 of just "Breakpoint" when breakpoint is, well, temporary. For mi-like
485 protocols, print disp field.
486 (print_one_breakpoint_location): Removed bpdisps static definition.
487 Call new bpstat_text function to get value for 'disp' field.
488 (mention): Print "Temporary breakpoint" instead of just "Breakpoint".
489
490 2008-04-15 Daniel Jacobowitz <dan@codesourcery.com>
491
492 * gnulib/Makefile.am, gnulib/m4/gnulib-cache.m4,
493 gnulib/aux/link-warning.h, gnulib/extra/link-warning.h: Adjust
494 by rerunning gnulib-tool with --aux-dir=gnulib/extra.
495 * gnulib/Makefile.in: Regenerate.
496
497 2008-04-14 Daniel Jacobowitz <dan@codesourcery.com>
498
499 * Makefile.in (GNULIB_H): New. Trigger all-lib.
500 (defs_h): Use $(GNULIB_H).
501 (all-lib): Depend on gnulib/Makefile.
502 (gnulib/Makefile): Regenerate gnulib/Makefile and gnulib/.deps.
503 * config.in, gnulib/Makefile.in: Regenerated.
504
505 2008-04-14 Daniel Jacobowitz <dan@codesourcery.com>
506
507 * Makefile.in (LIBGNU, INCGNU): Define.
508 (INTERNAL_CFLAGS_BASE): Add INCGNU.
509 (INTERNAL_LIBS, CLIBS, CDEPS): Add LIBGNU.
510 (CLEANDIRS): New.
511 ($(LIBGNU), all-lib): New rules.
512 (clean, distclean, do-maintainer-clean): Use CLEANDIRS.
513 * configure.ac: Use gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE.
514 Simplify AC_CONFIG_AUX_DIR. Generate gnulib/Makefile.
515 * gnulib: New directory, from gnulib-tool.
516 * configure, aclocal.m4: Regenerated.
517
518 2008-04-14 Daniel Jacobowitz <dan@codesourcery.com>
519
520 * linux-thread-db.c (have_threads_callback): Check thread->private.
521
522 2008-04-13 Nick Roberts <nickrob@snap.net.nz>
523 Vladimir Prus <vladimir@codesourcery.com>
524
525 Fix @-varobjs.
526 * varobj.c (value_of_root): Update the expression for
527 floating varobjs.
528 * mi/mi-cmd-var.c (varobj_update_one): If type has changed,
529 report that.
530
531 2008-04-09 Marc Khouzam <marc.khouzam@ericsson.com>
532
533 * mi/mi-cmd-var.c: Include "mi-getopt.h".
534 (mi_parse_format): New. Factored out from mi_cmd_var_set_format.
535 (mi_cmd_var_set_format): Use new mi_parse_format.
536 (mi_cmd_var_evaluate_expression): Support for -f option to specify
537 format.
538 * Makefile.in (mi-cmd-var.o): Update dependencies.
539
540 * varobj.h (varobj_get_formatted_value): Declare.
541 * varobj.c (my_value_of_variable): Added format parameter.
542 (cplus_value_of_variable): Likewise.
543 (java_value_of_variable): Likewise.
544 (c_value_of_variable): Likewise. Evaluate expression based
545 on format parameter.
546 (struct language_specific): Add format parameter to function member
547 *value_of_variable.
548 (varobj_get_formatted_value): New.
549 (varobj_get_value): Added format parameter to method call.
550
551 2008-04-08 Joel Brobecker <brobecker@adacore.com>
552
553 * stabsread.c (cleanup_undefined_types_noname): Manually set the
554 instance flags of the undefined type before calling replace_type.
555
556 2008-04-08 Vladimir Prus <vladimir@codesourcery.com>
557
558 * target.h (enum strata): Remove the download_stratum.
559
560 2008-04-07 Doug Evans <dje@google.com>
561
562 * buildsym.h (last_source_file): Add dwarf info to comment.
563 (last_source_start_addr): Ditto.
564
565 2008-04-07 Pedro Alves <pedro@codesourcery.com>
566
567 * alphanbsd-tdep.c: Include "target.h".
568 * mn10300-tdep.c: Include "target.h".
569 * Makefile.in (alphanbsd-tdep.o, mn10300-tdep.o): Update.
570
571 2008-04-06 Vladimir Prus <vladimir@codesourcery.com>
572
573 Fix breakpoint condition that use member variables.
574 * valops.c (check_field): Remove.
575 (check_field_in): Rename to check_field.
576 (value_of_this): Use la_name_of_this.
577 * value.h (check_field): Adjust prototype.
578
579 * language.h (la_value_of_this): Rename to la_name_of_this.
580 * language.c (unknown_language_defn): Specify "this" for
581 name_of_this.
582 (auto_language_defn): Likewise.
583 (local_language_defn): Likewise.
584 * ada-lang.c (ada_language_defn): Adjust comment.
585 * c-lang.c (c_language_defn): Adjust comment.
586 (cplus_language_defn): Specify "this" for name_of_this.
587 (asm_language_defn): Adjust comment.
588 (minimal_language_defn): Adjust comment.
589 * f-lang.c (f_language_defn): Specify NULL for name_of_this.
590 * jv-lang.c (java_language_defn): Specify "this" for name_of_this.
591 * m2-lang.c (m2_language_defn): Specify "this" for name_of_this.
592 * objc-lang.c (objc_language_defn): Specify "self" for
593 name_of_this.
594 * p-lang.c (pascal_language_defn): Specify "this" for
595 name_of_this.
596 * scm-lang.c (scm_language_defn): Specify NULL for name_of_this.
597
598 * symtab.c (lookup_symbol_aux): Lookup "this" in the
599 proper scope, and check for field in type of "this", without
600 trying to create a value.
601
602 2008-04-04 Pedro Alves <pedro@codesourcery.com>
603
604 * mi/mi-cmds.h (enum mi_cmd_result): Delete MI_CMD_ERROR.
605 (mi_error_message): Delete declaration.
606 * mi/mi-interp.c (mi_cmd_interpreter_exec): Call error instead of
607 returning MI_CMD_ERROR.
608 * mi/mi-main.c (mi_error_message): Delete.
609 (mi_cmd_exec_interrupt):
610 (mi_cmd_thread_select, mi_cmd_thread_list_ids)
611 (mi_cmd_thread_info): Call error instead of returning
612 MI_CMD_ERROR.
613 (mi_cmd_data_list_register_values): Call error instead of
614 returning MI_CMD_ERROR. Adapt to new get_register interface.
615 (get_register): Change return typo to void. Call error instead of
616 returning MI_CMD_ERROR.
617 (mi_cmd_data_write_register_values): Call error instead of
618 returning MI_CMD_ERROR.
619 (mi_cmd_list_features): Return MI_CMD_DONE.
620 (captured_mi_execute_command): Remove MI_CMD_ERROR handling.
621 (mi_execute_command): Always print exceptions with -error.
622
623 2008-04-04 Joel Brobecker <brobecker@adacore.com>
624
625 * NEWS: Mention new commands set/show multiple-symbols.
626
627 2008-04-03 Joel Brobecker <brobecker@adacore.com>
628
629 * symtab.c (multiple_symbols_ask, multiple_symbols_all)
630 (multiple_symbols_cancel): New constants.
631 (multiple_symbols_modes, multiple_symbols_mode): New static globals.
632 (multiple_symbols_select_mode): New function.
633 (_initialize_symtab): Add new set/show multiple-symbols commands.
634 * symtab.h (multiple_symbols_ask, multiple_symbols_all)
635 (multiple_symbols_cancel, multiple_symbols_select_mode): Declare.
636 * ada-lang.c (user_select_syms): Add handling of new multiple-symbols
637 setting.
638 * linespec.c (decode_line_2): Likewise.
639
640 2008-04-03 Doug Evans <dje@sebabeach.org>
641
642 * symtab.h (enum free_code): Delete free_contents, unused.
643 * symmisc.c (free_symtab_block): Delete.
644 (free_symtab, case free_code): Delete.
645
646 2008-04-01 Aleksandar Ristovski <aristovski@qnx.com>
647
648 * valops.c (value_cast_structs): New function. Cast related
649 STRUCT types up/down and return cast value. The body of this
650 function comes mostly from value_cast_pointers.
651 (value_cast_pointers): Code for actual cast STRUCT-STRUCT moved
652 to value_cast_structs. Now value_cast_pointers needs only create
653 appropriate reference after using value_cast_structs for actual
654 casting.
655 (value_cast): Handle references.
656
657 2008-04-01 Marc Khouzam <marc.khouzam@ericsson.com>
658
659 * MAINTAINERS: Added myself to section Write After Approval.
660
661 2008-03-30 Daniel Jacobowitz <dan@codesourcery.com>
662
663 * ia64-tdep.c (examine_prologue): Correct array access.
664
665 2008-03-28 Aleksandar Ristovski <aristovski@qnx.com>
666
667 * cp-support.c (first_component_command): Return if no arguments.
668
669 2008-03-28 Carlos O'Donell <carlos@codesourcery.com>
670
671 * ser-mingw.c (ser_windows_open): Open requested name.
672
673 2008-03-28 Aleksandar Ristovski <aristovski@qnx.com>
674
675 * MAINTAINERS: Added myself.
676
677 2008-03-28 Pedro Alves <pedro@codesourcery.com>
678
679 * target.c (find_default_run_target): Allow a NULL `do_mesg'
680 parameter. If it is NULL, don't call error.
681 (find_default_can_async_p, find_default_is_async_p): Pass NULL as
682 `do_mesg' parameter to find_default_run_target. If no target was
683 found, return 0.
684
685 2008-03-28 Daniel Jacobowitz <dan@codesourcery.com>
686
687 * mips-linux-tdep.c: Update N32/N64 signal frame comments.
688 (N64_SIGCONTEXT_LO, N64_SIGCONTEXT_PC, N64_SIGCONTEXT_FPCSR): Update.
689 (N64_SIGCONTEXT_FIR, N64_SIGCONTEXT_CAUSE, N64_SIGCONTEXT_BADVADDR):
690 Delete.
691 (mips_linux_n32n64_sigframe_init): Do not record cause or badvaddr.
692
693 2008-03-27 Joel Brobecker <brobecker@adacore.com>
694
695 GDB 6.8 released.
696
697 2008-03-27 Ulrich Weigand <uweigand@de.ibm.com>
698
699 * features/Makefile (%.dat): Set xmltarget to the base filename
700 of the XML source, without subdirectory.
701 * regformats/rs6000/powerpc-32.dat: Regenerate.
702 * regformats/rs6000/powerpc-64.dat: Regenerate.
703 * regformats/rs6000/powerpc-e500.dat: Regenerate.
704
705 2008-03-27 Markus Deuling <deuling@de.ibm.com>
706
707 * xcoffread.c (scan_xcoff_symtab): Replace current_gdbarch by
708 objfile arch.
709
710 2008-03-27 Nick Roberts <nickrob@snap.net.nz>
711
712 * mi/mi-main.c (enum captured_mi_execute_command_actions):
713 Spell suppress in EXECUTE_COMMAND_SUPPRESS_PROMPT correctly.
714
715 2008-03-26 Ulrich Weigand <uweigand@de.ibm.com>
716
717 * objfiles.h (struct objfile): New GDBARCH member.
718 (get_objfile_arch): Add prototype.
719 * objfiles.c: Include "arch-utils.h".
720 (allocate_objfile): Look up gdbarch associated with bfd.
721 (get_objfile_arch): New function.
722 * Makefile (objfiles.o): Update dependencies.
723
724 * dwarf2-frame.c (decode_frame_entry_1): Replace current_gdbarch
725 by objfile arch.
726 * dwarf2loc.c (dwarf_expr_read_reg): Replace current_gdbarch
727 by frame arch.
728 (locexpr_describe_location): Replace current_gdbarch by
729 objfile arch.
730 * dwarf2read.c (die_type): Replace current_gdbarch by objfile arch.
731 (dwarf2_add_field): Likewise.
732 (read_tag_pointer_type): Likewise.
733 (read_base_type): Likewise.
734 (new_symbol): Likewise.
735
736 * coffread.c (decode_type): Add OBJFILE argument. Update callers.
737 (decode_base_type, decode_function_type): Likewise.
738 (coff_read_struct_type, coff_read_enum_type): Likewise.
739 (coff_symtab_read): Replace current_gdbarch by objfile arch.
740 (decode_base_type): Likewise.
741 (coff_read_enum_type): Likewise.
742 (coff_read_struct_type): Replace current_objfile by OBJFILE argument.
743 (coff_read_enum_type): Likewise.
744
745 * dbxread.c (read_dbx_symtab): Replace current_gdbarch by objfile arch.
746 (end_psymtab): Likewise.
747 (process_one_symbol): Likewise.
748
749 * mdebugread.c (parse_symbol): Replace current_gdbarch by objfile arch.
750 (parse_procedure): Likewise.
751 (parse_partial_symbols): Likewise.
752
753 * somread.c (som_symtab_read): Replace current_gdbarch by objfile arch.
754
755 * stabsread.c (define_symbol): Replace current_gdbarch by objfile arch.
756 Replace static pcc_promotion_type and pcc_unsigned_promotion_type by
757 built-in types.
758 (read_range_type): Replace current_gdbarch by objfile arch. Replace
759 static range_index_type by built-in type.
760 (read_one_struct_field): Replace current_gdbarch by objfile arch.
761 (read_enum_type): Likewise.
762
763 * xcoffread.c (read_xcoff_symtab): Replace current_gdbarch by
764 objfile arch.
765
766 2008-03-26 Vladimir Prus <vladimir@codesourcery.com>
767
768 * varobj.h (varobj_floating_p): Declare.
769 * varobj.c (varobj_floating_p): New.
770 * mi/mi-cmd-var.c (mi_cmd_var_update): When passed
771 '@' as the name, update all floating varobjs.
772
773 2008-03-26 Vladimir Prus <vladimir@codesourcery.com>
774
775 * varobj.c (struct varobj_root): Rename use_selected_frame to
776 floating, and clarify the meaning.
777 (varobj_create, varobj_update, new_root_variable): Adjust.
778 (value_of_root): Don't use type_changed as in variable,
779 adjust comment.
780 (c_value_of_root): Adjust.
781
782 2008-03-25 Pedro Alves <pedro@codesourcery.com>
783
784 * linux-nat.c (linux_nat_attach): Add the pid we attached to, to
785 gdb's thread list.
786 (linux_nat_wait): Add main lwp to gdb's thread list.
787 * linux-thread-db.c (find_new_threads_callback): Also attach to
788 already listed threads which thread_db didn't know about yet.
789
790 2008-03-25 Pedro Alves <pedro@codesourcery.com>
791
792 * linux-nat.c (drain_queued_events): Fix comment typo.
793 (linux_nat_attach): In async mode, don't rely on storing a pending
794 status. Instead place the wait status on the pipe.
795 (linux_nat_resume): Remove unreacheable shortcut code in async
796 mode.
797 (stop_wait_callback): In async mode, don't store pending status.
798 Instead, cancel breakpoints or resend the signal appropriatelly.
799 (cancel_breakpoint): New, refactored from
800 cancel_breakpoints_callback.
801 (cancel_breakpoints_callback): Call cancel_breakpoint.
802 (pipe_to_local_event_queue): Remove special token processing.
803 (linux_nat_wait): Issue an internal error if a pending status is
804 found in async mode.
805
806 2008-03-24 Daniel Jacobowitz <dan@codesourcery.com>
807
808 * inflow.c (gdb_has_a_terminal): Guard access to our_process_group.
809
810 2008-03-24 Nick Roberts <nickrob@snap.net.nz>
811 Vladimir Prus <vladimir@codesourcery.com>
812
813 * varobj.c (struct varobj_root): New component thread_id.
814 (varobj_get_thread_id, check_scope): New functions.
815 (c_value_of_root): Use check_scope. Switch to the
816 proper thread if necessary.
817
818 * varobj.h (varobj_get_thread_id): New extern.
819
820 * mi/mi-cmd-var.c (print_varobj): Add thread-id field.
821
822 2008-03-23 Daniel Jacobowitz <dan@codesourcery.com>
823
824 PR gdb/544
825 * top.c: Revert 2008-03-21 changes.
826
827 2008-03-23 Vladimir Prus <vladimir@codesourcery.com>
828
829 * thread.c (make_cleanup_restore_current_thread): Make it
830 globally visible.
831 * gdbthread.h (make_cleanup_restore_current_thread): Declare.
832 * varobj.c (varobj_update): Don't save/restore frame.
833 (c_value_of_root): Save/restore thread and frame here,
834 using make_cleanup_restore_current_thread.
835 * Makefile.in: Update dependecies.
836
837 2008-03-23 Vladimir Prus <vladimir@codesourcery.com>
838
839 * varobj.c (struct varobj_root): Clarify
840 comment on the frame field.
841 (varobj_create): Don't set frame if we have no
842 block.
843
844 2008-03-21 Daniel Jacobowitz <dan@codesourcery.com>
845
846 PR gdb/544
847 Suggested by Jan Kratochvil:
848 * top.c (gdb_rl_operate_and_get_next_completion): Call
849 rl_redisplay_function.
850 (gdb_rl_redisplay): New.
851 (init_main): Set rl_redisplay_function.
852
853 2008-03-21 Thomas Mittelstaedt <T.Mittelstaedt@cadenas.de> (tiny change)
854
855 * aix-thread.c (pdc_read_regs): Fix compiler warning.
856 (pdc_write_regs, aix_thread_resume, fetch_regs_kernel_thread)
857 (store_regs_kernel_thread): Likewise.
858
859 2008-03-21 Pedro Alves <pedro@codesourcery.com>
860
861 Linux native async support.
862
863 * target.h (struct target_ops): Delete to_async_mask_value and add
864 to_async_mask.
865 (target_is_async_p, target_async): Formatting.
866 (target_async_mask_value): Delete.
867 (target_async_mask): Delete function declaration, and add new
868 target macro with the same name.
869
870 * target.c (update_current_target): Replace to_async_mask_value by
871 to_async_mask. Default to_async_mask to return_one.
872 (target_async_mask): Delete.
873 (find_default_can_async_p, find_default_is_async_p): New.
874 (init_dummy_target): register find_default_can_async_p and
875 find_default_is_async_p on the dummy target.
876
877 * linux-nat.c: Include inf-loop.h, event-loop.h and event-top.h.
878 (debug_linux_nat_async): New global.
879 (show_debug_linux_nat_async): New function.
880 (linux_nat_async_enabled, linux_nat_async_mask_value)
881 (linux_nat_event_pipe, linux_nat_num_queued_events)
882 (linux_nat_async_events_enabled): New globals.
883 (struct waitpid_result): New struct.
884 (waitpid_queue): New global.
885 (queued_waitpid, push_waitpid, drain_queued_events): New.
886 (my_waitpid): Call queued_waitpid.
887 (linux_child_follow_fork): Disable async events during the call.
888 (blocked_mask): Delete.
889 (sync_sigchld_action, async_sigchld_action): New globals.
890 (lin_lwp_attach_lwp): In sync mode, don't reblock SIGCHLD. In
891 async mode, block events during the call.
892 (linux_nat_create_inferior): New.
893 (linux_nat_attach): In sync mode, restore the mask states. In
894 async mode, wake the event loop immediatelly.
895 (detach_callback): Drain all queued events of the lwp we're
896 detaching from.
897 (linux_nat_detach): Block async mode, and drain events of the main
898 process.
899 (linux_nat_resume): If in async mode, mask async events during the
900 call. If short circuiting, force event loop to wake up. If
901 resuming, set target_executing, and register target events in the
902 event loop.
903 (pipe_to_local_event_queue, local_event_queue_to_pipe): New.
904 (linux_nat_wait): In async mode, block events during the call.
905 Only enable/disable passing SIGINT to the inferior in sync mode.
906 Get events from local waitpid queue. If no interesting events was
907 found, return to events loop. Reregister target events in the
908 event loop on exit. In sync mode, no need to reblock SIGCHLD.
909 (linux_nat_kill): Disable events on entry.
910 (linux_nat_mourn_inferior): In sync mode, don't restore the masks
911 here. Detach async mode from the event loop if there are no more
912 forks available, otherwise leave it on.
913 (sigchld_handler): Assure this is called only in sync mode.
914 (linux_async_permitted, linux_async_permitted_1): New globals.
915 (set_maintenance_linux_async_permitted)
916 (show_maintenance_linux_async_permitted): New functions.
917 (linux_nat_is_async_p, linux_nat_can_async_p)
918 (linux_nat_async_mask): New.
919 (linux_nat_event_pipe_pop, linux_nat_event_pipe_push): New.
920 (get_pending_events, async_sigchld_handler): New.
921 (linux_nat_async_events): New.
922 (async_terminal_is_ours): New global.
923 (linux_nat_terminal_inferior, linux_nat_terminal_ours): New.
924 (async_client_callback, async_client_context): New.
925 (linux_nat_async_file_handler, linux_nat_async)
926 (linux_nat_disable_async, linux_nat_enable_async): New.
927 (linux_nat_add_target): Register linux_nat_create_inferior,
928 linux_nat_can_async_p, linux_nat_is_async_p, linux_nat_async,
929 linux_nat_async_mask, linux_nat_terminal_inferior and
930 linux_nat_terminal_ours.
931 (_initialize_linux_nat): Remove local action variable, and update
932 code that used it to use sync_sigchld_action. Add new
933 "lin-lwp-async" debug set/show command. Put the "lin-lwp" debug
934 set/show command in the maintenance class. Add new "linux-async"
935 maintenance set/show command. Block SIGCHLD by default. Setup
936 async_sichld_action, and sync_sigchld_action. Install the default
937 async mode.
938 (lin_thread_get_thread_signals): Use a local sigset_t for blocking
939 the cancel signals.
940
941 * linux-thread-db.c (re_check_for_thread_db): New.
942 (clear_lwpid_callback): Handle TARGET_WAITKIND_IGNORE.
943 (thread_db_can_async_p, thread_db_is_async_p, thread_db_async)
944 (thread_db_async_mask): New.
945 (init_thread_db_ops): Register thread_db_can_async_p,
946 thread_db_is_async_p, thread_db_async and thread_db_async_mask.
947
948 * remote.c (remote_async_mask_value): New.
949 (remote_return_zero): New.
950 (init_remote_ops): Register remote_return_zero as callbacks of
951 to_can_async_p and to_is_async_p.
952 (remote_can_async_p, remote_is_async_p, remote_async): Update to
953 use remote_async_mask_value.
954 (remote_async_mask): New.
955 (init_remote_async_ops): Remove to_async_mask_value setting and
956 register remote_async_mask as to_async_mask callback in
957 remote_async_ops.
958
959 * Makefile.in (linux-nat.o): Update.
960
961 2008-03-21 Daniel Jacobowitz <dan@codesourcery.com>
962
963 * gdbthread.h (add_thread_with_info): New.
964 * linux-thread-db.c: Add some documentation.
965 (GET_LWP, GET_PID, GET_THREAD, is_lwp, is_thread, BUILD_LWP): Delete.
966 (struct private_thread_info): Remove th_valid and ti_valid.
967 Replace ti with tid.
968 (thread_get_info_callback): Do not add TID to the new ptid. Do
969 not cache th or ti.
970 (thread_db_map_id2thr, lwp_from_thread): Delete functions.
971 (thread_from_lwp): Assert that the LWP is set. Do not add TID to the
972 new PTID.
973 (attach_thread): Handle an already-existing thread. Use
974 add_thread_with_info. Cache the th and tid.
975 (detach_thread): Verify that private was set. Remove verbose
976 argument and printing. Update caller.
977 (thread_db_detach): Do not adjust inferior_ptid.
978 (clear_lwpid_callback, thread_db_resume, thread_db_kill): Delete.
979 (check_event, find_new_threads_callback): Do not add TID to the new PTID.
980 (thread_db_wait): Do not use lwp_from_thread.
981 (thread_db_pid_to_str): Use the cached TID.
982 (thread_db_extra_thread_info): Check that private is set.
983 (same_ptid_callback): Delete.
984 (thread_db_get_thread_local_address): Do not use it or check
985 is_thread. Check that private is set. Assume that the thread
986 handle is already cached.
987 (init_thread_db_ops): Remove to_resume and to_kill.
988 * thread.c (add_thread_with_info): New.
989 (add_thread): Use it.
990 * linux-nat.c (find_thread_from_lwp): Delete.
991 (exit_lwp): Do not use it. Check print_thread_events. Print before
992 deleting the thread.
993 (GET_PID, GET_LWP, BUILD_LWP, is_lwp): Move to...
994 * linux-nat.h (GET_PID, GET_LWP, BUILD_LWP, is_lwp): ...here.
995 * inf-ttrace.c (inf_ttrace_wait): Use print_thread_events and
996 printf_unfiltered for thread exits.
997 * procfs.c (procfs_wait): Likewise.
998
999 2008-03-21 Chris Demetriou <cgd@google.com>
1000
1001 * symtab.c (rbreak_command): Quote symbol name before passing
1002 it to break_command.
1003
1004 2008-03-21 Daniel Jacobowitz <dan@codesourcery.com>
1005
1006 * eval.c (evaluate_subexp_for_address): Clarify error message.
1007 Use value_must_coerce_to_target.
1008 * infcall.c (value_arg_coerce): Call value_coerce_to_target.
1009 * valops.c (value_assign): Call value_coerce_to_target when
1010 assigning to anything but internalvars. Leave GDB-side arrays
1011 as arrays when assigning to internalvars.
1012 (value_must_coerce_to_target, value_coerce_to_target): New.
1013 (value_coerce_array, value_addr): Call value_coerce_to_target.
1014 (value_array): Create the array in GDB's memory instead of
1015 the inferior's.
1016 * value.h (value_must_coerce_to_target, value_coerce_to_target):
1017 Declare.
1018
1019 2008-03-21 Daniel Jacobowitz <dan@codesourcery.com>
1020
1021 * top.c (quit_confirm): Warn that we will kill the program.
1022
1023 2008-03-19 Pedro Alves <pedro@codesourcery.com>
1024
1025 * inflow.c (terminal_ours_1): Guard access to
1026 inferior_process_group with #ifdef PROCESS_GROUP_TYPE.
1027
1028 2008-03-18 Ulrich Weigand <uweigand@de.ibm.com>
1029 Jim Blandy <jimb@codesourcery.com>
1030 Daniel Jacobowitz <drow@false.org>
1031
1032 * dwarf2expr.h (struct dwarf_expr_context): Add ADDR_SIZE member.
1033 (dwarf2_read_address): Update prototype.
1034
1035 * dwarf2expr.c (unsigned_address_type): Add ADDR_SIZE parameter.
1036 (signed_address_type): Likewise.
1037 (dwarf2_read_address): Replace BYTES_READ parameter with ADDR_SIZE.
1038 (execute_stack_op): Update calls to unsigned_address_type,
1039 signed_address_type and dwarf2_read_address. Fix implementation
1040 of DW_OP_deref_size.
1041
1042 * dwarf2loc.h (dwarf2_per_cu_objfile): Add prototype.
1043 (dwarf2_per_cu_addr_size): Likewise.
1044 (struct dwarf2_locexpr_baton): Replace OBJFILE with PER_CU.
1045 (struct dwarf2_loclist_baton): Likewise.
1046
1047 * dwarf2loc.c (find_location_expression): Update calls to
1048 dwarf2_read_address. Use dwarf2_per_cu_objfile and
1049 dwarf2_per_cu_addr_size to retrieve PER_CU parameters.
1050 (locexpr_describe_location): Likewise.
1051 (dwarf2_evaluate_loc_desc): Replace OBJFILE with PER_CU parameter.
1052 Set ctx->addr_size to dwarf2_per_cu_addr_size (per_cu).
1053 (dwarf2_loc_desc_needs_frame): Add PER_CU parameter. Set ctx->addr_size
1054 to dwarf2_per_cu_addr_size (per_cu).
1055 (locexpr_read_variable): Update dwarf2_evaluate_loc_desc call.
1056 (loclist_read_variable): Likewise.
1057 (locexpr_read_needs_frame): Update dwarf2_loc_desc_needs_frame call.
1058
1059 * dwarf2read.c (dwarf2_symbol_mark_computed): Set baton->per_cu
1060 instead of baton->objfile.
1061 (dwarf2_per_cu_obfile): New function.
1062 (dwarf2_per_cu_addr_size): Likewise.
1063
1064 * dwarf2-frame.c (struct comp_unit): Move higher.
1065 (struct dwarf2_cie): Add UNIT and ADDR_SIZE members.
1066 (execute_stack_op): Add ADDR_SIZE parameter; set ctx->addr_size.
1067 (execute_cfa_program): Add FDE parameter. Replace EH_FRAME_P
1068 parameter by using fde->eh_frame_p. Use read_encoded_value
1069 to implement DW_CFA_set_loc.
1070 (struct dwarf2_frame_cache): Add ADDR_SIZE member.
1071 (dwarf2_frame_cache): Set cache->addr_size. Update calls to
1072 execute_stack_op and execute_cfa_program.
1073 (dwarf2_frame_prev_register): Update calls to execute_stack_op.
1074 (size_of_encoded_value): Remove.
1075 (read_encoded_value): Add PTR_LEN and FUNC_BASE parameters.
1076 Remove call to size_of_encoded_value. Implement DW_EH_PE_funcrel.
1077 (add_cie): Set cie->unit backlink.
1078 (decode_frame_entry_1): Set cie->addr_size. Update calls to
1079 read_encoded_value.
1080 (dwarf2_build_frame_info): Allocate UNIT on objfile obstack.
1081
1082 2008-03-17 Markus Deuling <deuling@de.ibm.com>
1083
1084 * i386-tdep.c (i386_print_insn): Remove unnecessary call to
1085 gdbarch_bfd_arch_info.
1086
1087 2008-03-17 Joel Brobecker <brobecker@adacore.com>
1088
1089 * aix-thread.c (pdc_read_regs): Minor reformatting.
1090
1091 2008-03-17 Vladimir Prus <vladimir@codesourcery.com>
1092
1093 * thread.c (print_thread_info): Don't insist
1094 on having current thread if there are no
1095 threads at all.
1096
1097 2008-03-17 Pedro Alves <pedro@codesourcery.com>
1098
1099 * infcmd.c (attach_command_post_wait)
1100 (attach_command_continuation): New.
1101 (attach_command): Support background async execution, and async
1102 execution in synchronous mode.
1103
1104 2008-03-17 Daniel Jacobowitz <dan@codesourcery.com>
1105
1106 * stack.c (print_stack_frame, print_frame): Use RETURN_MASK_ERROR.
1107 * symmisc.c (dump_symtab_1): Likewise.
1108 * wrapper.c (gdb_value_struct_elt): Likewise.
1109
1110 2008-03-17 Pedro Alves <pedro@codesourcery.com>
1111
1112 * linux-nat.c (linux_nat_filter_event): Fix comment typo.
1113
1114 2008-03-17 Pedro Alves <pedro@codesourcery.com>
1115
1116 * linux-nat.c (linux_nat_filter_event): New, refactored from
1117 linux_nat_wait.
1118 (linux_nat_wait): Call linux_nat_filter_event.
1119
1120 2008-03-17 Ulrich Weigand <uweigand@de.ibm.com>
1121
1122 * top.c (execute_command): Fix uninitialized variable error.
1123
1124 2008-03-16 Nick Hudson <nick.hudson@dsl.pipex.com>
1125
1126 * Makefile.in (amd64nbsd-nat.o): New dependency.
1127 * amd64nbsd-nat.c: Include "nbsd-nat.h".
1128 (_initialize_amd64nbsd_nat): Update target vector to use
1129 nbsd_pid_to_exec_file.
1130 * config/i386/nbsd64.mh (NATDEPFILES): Add nbsd-nat.o.
1131
1132 2008-03-15 Vladimir Prus <vladimir@codesourcery.com>
1133
1134 Remove ignoring leading exec events code.
1135 * fork-child.c (startup_inferior): Do not set
1136 inferior_ignoring_leading_exec_events.
1137 * inf-child.c (inf_child_reported_exec_events_per_exec_call): Remove.
1138 (inf_child_target): Do not set to_reported_exec_events_per_exec_call.
1139 * infrun.c (inferior_ignoring_leading_exec_events): Remove.
1140 (handle_inferior_event): Remove code for ignoring leading exec
1141 events.
1142 * target.c (update_current_target): Do not inherit, or default,
1143 to_reported_exec_events_per_exec_call.
1144 (debug_to_reported_exec_events_per_exec_call): Remove.
1145 (setup_target_debug): Do not set to_reported_exec_events_per_exec_call.
1146 * target.h (target_reported_exec_events_per_exec_call): Remove.
1147 (struct target): Remove the to_reported_exec_events_per_exec_call
1148 field.
1149
1150 2008-03-15 Vladimir Prus <vladimir@codesourcery.com>
1151
1152 Implement -thread-info.
1153 * gdbthread.h (print_thread_info): Declare.
1154
1155 * thread.c (print_thread_info): New, extracted
1156 from info_threads_command and adjusted to
1157 work for CLI and MI.
1158 (info_threads_command): Use print_thread_info.
1159 * Makefile.in: Update dependencies.
1160
1161 * mi/mi-cmds.c (mi_cmds): Specify a handler
1162 for -thread-info.
1163 * mi/mi-cmds.h (mi_cmd_thread_info): Declare.
1164 * mi/mi-main.c (mi_cmd_thread_info): New.
1165 (mi_cmd_list_features): Include 'thread-info'.
1166
1167 2008-03-14 Kevin Buettner <kevinb@redhat.com>
1168
1169 * mips-tdep.c (mips32_scan_prologue): Use the ABI register size
1170 to decide whether to match instruction patterns using "sw" and "sd".
1171
1172 2008-03-14 Pedro Alves <pedro@codesourcery.com>
1173
1174 * infcmd.c (jump_command): Postpone disabling stdin until after
1175 the possible query.
1176
1177 2008-03-14 Pedro Alves <pedro@codesourcery.com>
1178
1179 * inflow.c (gdb_getpgrp): New.
1180 (gdb_has_a_terminal): Use get_getpgrp.
1181 (terminal_ours_1): If attach_flag is set, don't refetch
1182 inferior_process_group.
1183
1184 2008-03-14 Pedro Alves <pedro@codesourcery.com>
1185
1186 * features/library-list.dtd: Allow "section" elements as children
1187 of "library". Add "section" element and describe its attributes.
1188
1189 * solib-target.c (struct lm_info): Add section_bases member.
1190 (library_list_start_segment): Error out if seen a section element.
1191 (library_list_start_section): New.
1192 (library_list_end_library): New.
1193 (solib_target_free_library_list): Free section_bases.
1194 (section_attributes): New.
1195 (library_children): Make "segment" optional. Add "section" child.
1196 (library_list_children): Register library_list_end_library.
1197 (solib_target_relocate_section_addresses): Handle section bases.
1198
1199 * NEWS: Mention new qXfer:libraries:read section offsets support.
1200
1201 2008-03-14 Vladimir Prus <vladimir@codesourcery.com>
1202
1203 * defs.h (do_exec_error_cleanups, discard_exec_error_cleanups)
1204 (make_exec_error_cleanup): Remove declarations.
1205 * utils.c (exec_error_cleanup_chain): Remove.
1206 (do_exec_error_cleanups, discard_exec_error_cleanups)
1207 (make_exec_error_cleanup): Remove.
1208 * event-loop.c (start_event_loop): Adjust call to
1209 async_enable_stdin.
1210 * event-top.c (async_enable_stdin): Remove the paramater dummy.
1211 (async_disable_stdin): Don't register async_enable_stdin via
1212 cleanup.
1213 * inf-loop.c (inferior_event_handler): Don't
1214 call do_exec_error_cleanups. Call async_enable_stdin instead.
1215 * event-loop.c (start_event_loop): Adjust call to
1216 async_enable_stdin.
1217 * tui/tui-interp.c (tui_command_loop): Adjust call to
1218 async_enable_stdin.
1219
1220 2008-03-14 Vladimir Prus <vladimir@codesourcery.com>
1221
1222 Async mode fixes.
1223 * Makefile.in (infcmd.o, inf-loop.o): Update dependencies.
1224 * breakpoint.c (bpstat_do_actions): In async mode,
1225 don't jump to top expecting stop_bpstat to be already
1226 updated.
1227 * event-loop.c (start_event_loop): Call async_enable_stdin
1228 on exception.
1229 * event-top.c (async_enable_stdin): Do nothing if sync_execution
1230 is not set.
1231 (command_handler): Do not setup continuation here.
1232 (command_line_handler_continuation): Move to...
1233 * top.c (command_line_handler_continuation): ... here.
1234 (execute_command): In async mode, register continuation.
1235 Don't check frame's language in running in async mode.
1236 * exceptions.c (throw_exception): Don't do exec_error_cleanups.
1237 * inf-loop.c (complete_execution): Inline into...
1238 (inferior_event_handler): ... here. Clear target_executing before
1239 doing any cleanups. Don't try to show prompt if the target was
1240 resumed.
1241 * infcmd.c (signal_command): Add support for async mode.
1242 (finish_command): Only add continuation if the target was
1243 successfully resumed.
1244 * remote.c (init_async_opts): Register to_get_thread_local_address
1245 handler.
1246 * mi/mi-interp.c (mi_cmd_interpreter_exec): Don't mess
1247 with sync_execution.
1248 * tui/tui-interp.c (tui_command_loop): Call async_enable_stdin
1249 on exception.
1250
1251 2008-03-14 Daniel Jacobowitz <dan@codesourcery.com>
1252
1253 * corefile.c (reopen_exec_file): Use exec_bfd_mtime.
1254 * exec.c (exec_bfd_mtime): Define.
1255 (exec_close): Clear it.
1256 (exec_file_attach): Set it.
1257 * gdbcore.h (exec_bfd_mtime): Declare.
1258 * source.c (find_source_lines): Do not use bfd_get_mtime.
1259
1260 2008-03-14 Vladimir Prus <vladimir@codesourcery.com>
1261
1262 * top.c (simplified_command_loop): Remove.
1263
1264 2008-03-14 Vladimir Prus <vladimir@codesourcery.com>
1265
1266 Remove unused remote.c hooks.
1267 * remote.c (deprecated_target_resume_hook)
1268 (deprecated_target_wait_loop_hook): Remove.
1269 (remote_resume): Do not call deprecated_target_resume_hook.
1270 (remote_wait): Do not call deprecated_target_wait_loop_hook.
1271 (remote_async_wait): Likewise.
1272
1273 2008-03-14 Vladimir Prus <vladimir@codesourcery.com>
1274
1275 Implement MI notification for new threads.
1276 * doc/observer.texi (new_thread): Document.
1277 * observer.sh: Forward declare struct thread_info.
1278 * thread.c (add_thread): Notify observer.
1279
1280 * interps.h (interp_init_ftype): New parameter
1281 top_level.
1282 (interp_set): Likewise.
1283 (top_level_interpreter_data): Declare.
1284 * interps.c (interp_set): New parameter top_level.
1285 Pass it to interpreter's init function. Remember
1286 top level interpreter.
1287 (interpreter_exec_cmd): Adjust.
1288 (top_level_interpreter_data): New.
1289 * main.c (captured_main): Pass 1 for top_level
1290 parameter of interp_set.
1291 * cli/cli-interp.c (cli_interpreter_init): New
1292 parameter top_level.
1293 * tui/tui-interp.c (tui_init): New parameter top_level.
1294
1295 * mi/mi-interp.c (mi_new_thread): New.
1296 (mi_interpreter_init): If top level, register
1297 observer for new threads.
1298
1299 * Makefile.in (mi-interp.o, thread.o): Update dependencies.
1300
1301 2008-03-14 Pedro Alves <pedro@codesourcery.com>
1302
1303 * top.c (execute_command): Disable break and stop
1304 commands in async mode.
1305
1306 2008-03-14 Pedro Alves <pedro@codesourcery.com>
1307
1308 revert:
1309 2008-03-14 Pedro Alves <pedro@codesourcery.com>
1310 * inf-loop.c (inferior_event_handler): Don't include remote.h.
1311 Call target_stop in the INF_QUIT_REQ case.
1312 * Makefile.in (inf-loop.o): Update.
1313
1314 2008-03-14 Pedro Alves <pedro@codesourcery.com>
1315
1316 * inf-loop.c (inferior_event_handler): Don't include remote.h.
1317 Call target_stop in the INF_QUIT_REQ case.
1318 * Makefile.in (inf-loop.o): Update.
1319
1320 2008-03-14 Pedro Alves <pedro@codesourcery.com>
1321
1322 * top.c (execute_command): Enable break, info and interrupt
1323 commands in async mode.
1324
1325 2008-03-13 Vladimir Prus <vladimir@codesourcery.com>
1326 Daniel Jacobowitz <dan@codesourcery.com>
1327
1328 * breakpoint.h (breakpoint_restore_shadows): New
1329 declaration.
1330 * breakpoint.c (breakpoint_restore_shadows): New.
1331 (read_memory_nobpt): Delete.
1332 * gdbcore.h (read_memory_nobpt): Delete declaration.
1333 * target.c (memory_xfer_partial): Call
1334 breakpoint_restore_shadows.
1335 (restore_show_memory_breakpoints)
1336 (make_show_memory_beakpoints_cleanup): New.
1337 (show_memory_breakpoints): New.
1338 * target.h (make_show_memory_beakpoints_cleanup): Declare.
1339 * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint):
1340 Make sure we see memory breakpoints when checking if
1341 breakpoint is still there.
1342 * alpha-tdep.c, alphanbsd-tdep.c, frame.c, frv-tdep.c,
1343 hppa-linux-tdep.c, hppa-tdep.c, i386-linux-nat.c, i386-tdep.c,
1344 m68klinux-tdep.c, mips-tdep.c, mn10300-tdep.c, s390-tdep.c,
1345 sparc-tdep.c: Use target_read_memory instead of read_memory_nobpt.
1346
1347 2008-03-12 Pedro Alves <pedro@codesourcery.com>
1348
1349 * thread.c (add_thread): Use printf_unfiltered to print.
1350
1351 2008-03-12 Joel Brobecker <brobecker@gnat.com>
1352
1353 * sol-thread.c: Replace use of TM_I386SOL2_H by an expression
1354 that is true only on x86-solaris and x86_64-solaris.
1355 * procfs.c: Likewise. Move procfs_find_LDT_entry up together
1356 with proc_get_LDT_entry.
1357
1358 2008-03-12 Thiago Jung Bauermann <bauerman@br.ibm.com>
1359
1360 * configure.ac (AC_CHECK_FUNCS): Add check for setsid.
1361 * config.in, configure: Regenerate.
1362 * fork-child.c (fork_inferior): Call create_tty_session.
1363 * inflow.c (new_tty): Set controlling terminal with TIOCSCTTY.
1364 (create_tty_session): New function.
1365 * terminal.h: Declare create_tty_session.
1366
1367 2008-03-12 Alan Modra <amodra@bigpond.net.au>
1368
1369 PR 5900
1370 * elfread.c (elf_symtab_read): Make shndx an unsigned int.
1371 * mipsread.c: Include elf/internal.h.
1372 (read_alphacoff_dynamic_symtab): Map external reserved sym_shndx
1373 to internal range.
1374
1375 2008-03-11 Markus Deuling <deuling@de.ibm.com>
1376
1377 * win32-nat.c (do_win32_fetch_inferior_registers): Use get_regcache_arch
1378 to get at the current architecture and at the target specific vector.
1379 Add target specific vector to I387_FISEG_REGNUM and I387_FOP_REGNUM and
1380 remove define of I387_ST0_REGNUM.
1381
1382 * amd64-tdep.c (I387_ST0_REGNUM): Remove define.
1383
1384 (amd64_supply_fxsave, amd64_collect_fxsave): Use get_regcache_arch to
1385 get at the current architecture
1386 (I387_FISEG_REGNUM, I387_FOSEG_REGNUM): Add target specific vector as
1387 parameter.
1388
1389 * i386-tdep.c: Remove various define's and undef's of I387_ST0_REGNUM,
1390 I387_NUM_XMM_REGS and I387_MM0_REGNUM.
1391
1392 (I387_NUM_XMM_REGS, I387_XMM0_REGNUM, I387_MXCSR_REGNUM,
1393 I387_ST0_REGNUM, I387_FCTRL_REGNUM, I387_MM0_REGNUM,
1394 (I387_FSTAT_REGNUM): Add target specific vector as parameter.
1395
1396 (i386_register_name, i386_dbx_reg_to_regnum): Use gdbarch_tdep to get
1397 at the target specific vector.
1398
1399 (i386_get_longjmp_target): Use get_frame_arch to get at the current
1400 architecture. Use gdbarch_tdep to get at the target specific vector.
1401
1402 (i386_fp_regnum_p, i386_fpc_regnum_p): Add gdbarch as parameter and
1403 update caller. Use gdbarch_tdep to get at the target specific vector.
1404
1405 (i386_register_to_value: Use get_frame_arch to get at the current
1406 architecture.
1407
1408 * i386-tdep.h (i386_fp_regnum_p, i386_fpc_regnum_p): Add gdbarch as
1409 parameter.
1410
1411 * i387-tdep.c (I387_FCTRL_REGNUM, I387_FSTAT_REGNUM, I387_FTAG_REGNUM,
1412 I387_FISEG_REGNUM, I387_FIOFF_REGNUM, I387_FOSEG_REGNUM
1413 I387_FOOFF_REGNUM, I387_FOP_REGNUM, I387_ST0_REGNUM, FSAVE_ADDR,
1414 FXSAVE_ADDR, I387_XMM0_REGNUM): Add target specific vector as parameter.
1415
1416 (I387_ST0_REGNUM, I387_NUM_XMM_REGS): Remove various define's and
1417 undef's.
1418
1419 (i387_convert_register_p, i387_register_to_value,
1420 i387_value_to_register): Update call for i386_fp_regnum_p.
1421
1422 * i387-tdep.h: Remove comment.
1423 (I387_ST0_REGNUM, I387_NUM_XMM_REGS, I387_MM0_REGNUM): Add define.
1424 (I387_FCTRL_REGNUM, I387_FSTAT_REGNUM, I387_FTAG_REGNUM,
1425 I387_FISEG_REGNUM, I387_FIOFF_REGNUM, I387_FOSEG_REGNUM,
1426 I387_FOOFF_REGNUM, I387_FOP_REGNUM, I387_XMM0_REGNUM,
1427 I387_MXCSR_REGNUM): Add target specific vector as parameter.
1428
1429 2008-03-10 Daniel Jacobowitz <dan@codesourcery.com>
1430
1431 * Makefile.in (fork-child.o): Update.
1432 * NEWS: Document "set exec-wrapper" and the gdbserver --wrapper
1433 argument. Gather all gdbserver features together.
1434 * fork-child.c (exec_wrapper): New variable.
1435 (fork_inferior): Use it.
1436 (startup_inferior): Skip an extra trap if using "set exec-wrapper".
1437 (unset_exec_wrapper_command, _initialize_fork_child): New.
1438
1439 2008-03-10 Hidetaka Takano <hidetaka.takano@glb.toshiba.co.jp>
1440
1441 * source.c (directory_command): Modify the determination of
1442 condition of terminal "from_tty".
1443
1444 2008-03-10 Matt Rice <ratmice@gmail.com>
1445
1446 * dwarf2read.c (set_cu_language): Add DW_LANG_ObjC.
1447
1448 2008-03-10 Hidetaka Takano <hidetaka.takano@glb.toshiba.co.jp>
1449
1450 * spu-tdep.c (info_spu_event_command): Insert a '\0' to the end
1451 of the data passing to strtoulst function.
1452 (info_spu_signal_command): Likewise.
1453
1454 2008-03-08 Vladimir Prus <vladimir@codesourcery.com>
1455
1456 * mi/mi-interp.c (mi_command_loop): Remove
1457 commented-out code.
1458
1459 2008-03-07 Joel Brobecker <brobecker@adacore.com>
1460
1461 * remote.c (extended_remote_attach_1): Make local variable pid an int
1462 instead of a pid_t.
1463
1464 2008-03-07 Joel Brobecker <brobecker@adacore.com>
1465
1466 * solib-svr4.c (svr4_same_1): New function, originally extracted
1467 from svr4_same and expanded to handle the sparc64 case.
1468 (svr4_same): Move up and reimplement using svr4_same_1.
1469 (enable_break): Use svr4_same_1 to do shared library name comparisons.
1470
1471 2008-03-07 Ramana Radhakrishnan <ramana.r@gmail.com>
1472
1473 * MAINTAINERS: Move self to Paper trail.
1474
1475 2008-03-05 Daniel Jacobowitz <dan@codesourcery.com>
1476
1477 * Makefile.in (mingw-hdep.o, posix-hdep.o, remote-fileio.o): Update.
1478 * event-loop.c (call_async_signal_handler): New.
1479 * event-loop.h (call_async_signal_handler)
1480 (gdb_call_async_signal_handler): Declare.
1481 (mark_async_signal_handler): Add comments.
1482 * event-top.c (handle_sigint): Use gdb_call_async_signal_handler.
1483 * mingw-hdep.c (sigint_event, sigint_handler): New.
1484 (gdb_select): Use them. Wait for the readline signal handler
1485 to finish.
1486 (gdb_call_async_signal_handler, _initialize_mingw_hdep): New functions.
1487 * posix-hdep.c (gdb_call_async_signal_handler): New function.
1488 * remote-fileio.c (sigint_fileio_token, async_remote_fileio_interrupt):
1489 New.
1490 (remote_fileio_ctrl_c_signal_handler): Use
1491 gdb_call_async_signal_handler.
1492 (initialize_remote_fileio): Initialize sigint_fileio_token.
1493 * remote.c (initialize_sigint_signal_handler, handle_remote_sigint): Do
1494 not initialize tokens here.
1495 (handle_remote_sigint_twice): Likewise. Reinstall
1496 handle_remote_sigint.
1497 (async_remote_interrupt_twice): Just call interrupt_query.
1498 (cleanup_sigint_signal_handler): Do not delete tokens.
1499 (remote_interrupt, remote_interrupt_twice): Use
1500 gdb_call_async_signal_handler.
1501 (interrupt_query): Reinstall the default signal handler.
1502 (_initialize_remote): Initialize tokens here.
1503
1504 2008-03-04 Joel Brobecker <brobecker@adacore.com>
1505
1506 * features/rs6000/power-core.xml, features/rs6000/power64-core.xml,
1507 features/rs6000/powerpc-601.xml, features/rs6000/rs6000.xml:
1508 Change the type of the lr register to code_ptr.
1509 * features/rs6000/powerpc-32.c, features/rs6000/powerpc-403.c,
1510 features/rs6000/powerpc-403gc.c, features/rs6000/powerpc-505.c,
1511 features/rs6000/powerpc-601.c, features/rs6000/powerpc-602.c,
1512 features/rs6000/powerpc-603.c, features/rs6000/powerpc-604.c,
1513 features/rs6000/powerpc-64.c, features/rs6000/powerpc-7400.c,
1514 features/rs6000/powerpc-750.c, features/rs6000/powerpc-860.c,
1515 features/rs6000/powerpc-e500.c, features/rs6000/rs6000.c: Regenerate.
1516
1517 2008-03-03 James E. Wilson <wilson@tuliptree.org>
1518
1519 * MAINTAINERS: Update my email address.
1520
1521 2008-03-03 Keith Seitz <keiths@redhat.com>
1522
1523 From Dave Murphy <davem@devkitpro.org>:
1524 * configure.ac: Set tcl configdir to win under mingw.
1525 * configure: Regenerate.
1526
1527 2008-03-03 Daniel Jacobowitz <dan@codesourcery.com>
1528
1529 * breakpoint.c (fetch_watchpoint_value): New function.
1530 (update_watchpoint): Set and clear val_valid. Use
1531 fetch_watchpoint_value. Handle unreadable values on the
1532 value chain. Correct check for user-requested array watchpoints.
1533 (breakpoint_init_inferior): Clear val_valid.
1534 (watchpoint_value_print): New function.
1535 (print_it_typical): Use it. Do not free or clear old_val. Print
1536 watchpoints even if old_val == NULL.
1537 (watchpoint_check): Use fetch_watchpoint_value. Check for values
1538 becoming readable or unreadable.
1539 (watch_command_1): Use fetch_watchpoint_value. Set val_valid.
1540 (do_enable_watchpoint): Likewise.
1541 * breakpoint.h (struct breakpoint): Update comment for val. Add
1542 val_valid.
1543 * NEWS: Mention watchpoints on inaccessible memory.
1544
1545 2007-02-29 Daniel Jacobowitz <dan@codesourcery.com>
1546
1547 * Makefile.in (i386-nat.o): Update.
1548 * amd64-linux-nat.c (_initialize_amd64_linux_nat): Call
1549 i386_use_watchpoints.
1550 * i386-linux-nat.c (_initialize_i386_linux_nat): Call
1551 i386_use_watchpoints.
1552 * i386-nat.c (i386_stopped_data_address): Take two arguments.
1553 (i386_stopped_by_watchpoint): Update call.
1554 (i386_can_use_hw_breakpoint, i386_use_watchpoints): New.
1555 * config/i386/nm-i386.h: Conditionalize definitions on
1556 ! I386_WATCHPOINTS_IN_TARGET_VECTOR.
1557 (i386_use_watchpoints): Declare.
1558 (i386_stopped_data_address): Update.
1559 * config/i386/nm-linux.h (I386_WATCHPOINTS_IN_TARGET_VECTOR): Define.
1560 * config/i386/nm-linux64.h (I386_WATCHPOINTS_IN_TARGET_VECTOR): Define.
1561
1562 2008-02-29 Joel Brobecker <brobecker@adacore.com>
1563
1564 GDB 6.8 branch created (branch timestamp: 2008-02-26 10:00 UTC)
1565 * version.in: Bump version to 6.8.50.20080229-cvs.
1566
1567 2008-02-28 Markus Deuling <deuling@de.ibm.com>
1568
1569 * f-typeprint.c (f_print_type): Handle NULL pointer in VARSTRING
1570 properly.
1571
1572 2008-02-28 Tom Tromey <tromey@redhat.com>
1573
1574 * infcmd.c (notice_args_read): Print result of get_inferior_args.
1575
1576 2008-02-28 Daniel Jacobowitz <dan@codesourcery.com>
1577
1578 * infcmd.c (kill_if_already_running): Make static. Use
1579 target_require_runnable.
1580 * target.c (target_require_runnable): New.
1581 * target.h (target_require_runnable): Declare.
1582
1583 2008-02-28 Daniel Jacobowitz <dan@codesourcery.com>
1584
1585 * frame.c (reinit_frame_cache): Only annotate if frames were
1586 previously valid.
1587
1588 2008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
1589
1590 * regformats/reg-ppc.dat: Rename "ps" to "msr".
1591 * regformats/reg-ppc64.dat: Likewise.
1592
1593 2008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
1594
1595 * features/Makefile (%.dat): Emit xmltarget statement.
1596
1597 * regformats/regdat.sh: Support xmltarget and xmlarch statments.
1598 Generate code to set gdbserver_xmltarget in init_registers_${name}.
1599
1600 * regformats/arm-with-iwmmxt.dat: Regenerate.
1601 * regformats/mips64-linux.dat: Regenerate.
1602 * regformats/mips-linux.dat: Regenerate.
1603 * regformats/rs6000/powerpc-32.dat: Regenerate.
1604 * regformats/rs6000/powerpc-64.dat: Regenerate.
1605 * regformats/rs6000/powerpc-e500.dat: Regenerate.
1606
1607 * regformats/reg-arm.dat: Add xmlarch statement.
1608 * regformats/reg-i386.dat: Likewise.
1609 * regformats/reg-i386-linux.dat: Likewise.
1610 * regformats/reg-x86-64-linux.dat: Likewise.
1611 * regformats/reg-spu.dat: Likewise.
1612
1613 2008-02-27 Daniel Jacobowitz <dan@codesourcery.com>
1614
1615 * remote.c (remote_wait, remote_async_wait): Stop if we receive
1616 an error.
1617
1618 2008-02-27 Daniel Jacobowitz <dan@codesourcery.com>
1619
1620 * utils.c (debug_timestamp): New.
1621 (vfprintf_unfiltered): Print timestamps if requested.
1622 (show_debug_timestamp): New.
1623 (initialize_utils): Register "set debug timestamp".
1624 * NEWS: Mention "set debug timestamp". Add GDB 6.8 section.
1625
1626 2008-02-27 Joel Brobecker <brobecker@adacore.com>
1627
1628 * breakpoint.c (skip_prologue_sal): New function.
1629 (resolve_sal_pc): Adjust SAL past prologue if the SAL was
1630 computed from a line number.
1631
1632 2008-02-27 Joel Brobecker <brobecker@adacore.com>
1633
1634 * features/rs6000/power-core.xml, features/rs6000/power64-core.xml
1635 features/rs6000/powerpc-601.xml, features/rs6000/rs6000.xml:
1636 Set PC register type to "code_ptr".
1637 * features/rs6000/powerpc-32.c, features/rs6000/powerpc-403.c,
1638 features/rs6000/powerpc-403gc.c, features/rs6000/powerpc-505.c,
1639 features/rs6000/powerpc-601.c, features/rs6000/powerpc-602.c,
1640 features/rs6000/powerpc-603.c, features/rs6000/powerpc-604.c,
1641 features/rs6000/powerpc-64.c, features/rs6000/powerpc-7400.c,
1642 features/rs6000/powerpc-750.c, features/rs6000/powerpc-860.c,
1643 features/rs6000/powerpc-e500.c, features/rs6000/rs6000.c:
1644 Regenerate.
1645
1646 2008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
1647
1648 * regformats/regdat.sh: Rename init_registers function in
1649 generated file to init_registers_${name}.
1650
1651 * regformats/reg-crisv32.dat: Set "name" to crisv32.
1652 * regformats/reg-ppc64.dat: Set "name" to ppc64.
1653 * regformats/reg-s390x.dat: Set "name" to s390x.
1654
1655 2008-02-26 Greg Law <glaw@undo-software.com>
1656
1657 * regcache.c (registers_changed): Call reinit_frame_cache.
1658
1659 2008-02-26 Daniel Jacobowitz <dan@codesourcery.com>
1660
1661 * configure.tgt (sh-*-linux*): Match sh*. Add glibc-tdep.o.
1662 * sh-linux-tdep.c (sh_linux_init_abi): Use glibc_skip_solib_resolver
1663 and svr4_fetch_objfile_link_map.
1664 * Makefile.in (sh-linux-tdep.o): Update.
1665
1666 2008-02-26 Thiago Jung Bauermann <bauerman@br.ibm.com>
1667
1668 * amd64-tdep.c (amd64_classify): Add support for decimal float
1669 types.
1670 * i386-tdep.c (i386_return_value): Make 128-bit decimal float
1671 use the struct return convention.
1672
1673 2008-02-26 Nick Roberts <nickrob@snap.net.nz>
1674
1675 * breakpoint.c (print_one_breakpoint_location): Revert Enb field
1676 to old format. Discard breakpoint address if shared library is
1677 unloaded.
1678 (breakpoint_1): Adjust formatting of table header accordingly.
1679
1680 2008-02-25 Vladimir Prus <vladimir@codesourcery.com>
1681
1682 * remote.c (remote_get_threadlist): If the response
1683 is empty, don't try to parse it.
1684
1685 2008-02-23 Vladimir Prus <vladimir@codesourcery.com>
1686
1687 Unbreak 'target async'.
1688 * serial.c (serial_async): Set the
1689 handler function before enabling async
1690 mode.
1691
1692 2008-02-22 Daniel Jacobowitz <dan@codesourcery.com>
1693
1694 * solib-svr4.c (enable_break): Convert r_brk to a code address.
1695
1696 2008-02-21 Pedro Alves <pedro@codesourcery.com>
1697
1698 * remote.c (extended_remote_attach_1): Set attach_flag.
1699 (extended_remote_create_inferior_1): Clear attach_flag.
1700
1701 2008-02-20 Daniel Jacobowitz <dan@codesourcery.com>
1702
1703 * mipsnbsd-tdep.c (mipsnbsd_ilp32_fetch_link_map_offsets): Set
1704 r_brk_offset.
1705 (mipsnbsd_lp64_fetch_link_map_offsets): Likewise.
1706 * solib-svr4.c (solib_svr4_r_brk): New.
1707 (open_symbol_file_object, svr4_current_sos): Always check the
1708 debug base.
1709 (svr4_fetch_objfile_link_map): Do not set debug_base.
1710 (enable_break): Use r_brk if it is set.
1711 (svr4_ilp32_fetch_link_map_offsets): Set r_brk_offset.
1712 (svr4_lp64_fetch_link_map_offsets): Likewise.
1713 * solib-svr4.h (struct link_map_offsets): Add r_brk_offset.
1714
1715 2008-02-20 Markus Deuling <deuling@de.ibm.com>
1716 Mark Kettenis <kettenis@gnu.org>
1717
1718 * alpha-tdep.c (alpha_heuristic_unwind_cache): Replace saved_regs by
1719 trad_frame_saved_reg.
1720 (trad-frame.h): New include.
1721
1722 (alpha_heuristic_frame_unwind_cache): Use trad_frame_alloc_saved_regs
1723 instead of frame_obstack_zalloc.
1724 (alpha_heuristic_frame_prev_register): Use trad_frame_get_prev_register.
1725
1726 * Makefile.in (alpha-tdep.o): Add dependency to trad_frame_h.
1727
1728 2008-02-20 Markus Deuling <deuling@de.ibm.com>
1729
1730 * rs6000-tdep.c (gdb_print_insn_powerpc): Get the current endianess
1731 from disassemble_info instead of gdbarch_byte_order.
1732
1733 * mips-tdep.c (gdb_print_insn_mips): Likewise.
1734 * arm-tdep.c (gdb_print_insn_arm): Likewise.
1735
1736 2008-02-20 Markus Deuling <deuling@de.ibm.com>
1737
1738 * gdbarch.sh (memory_insert_breakpoint, memory_remove_breakpoint): Add
1739 gdbarch as parameter.
1740
1741 * gdbarch.{c,h}: Regenerate.
1742
1743 * ppc-tdep.h (ppc_linux_memory_remove_breakpoint): Add gdbarch as
1744 parameter.
1745 * mem-break.c (default_memory_insert_breakpoint)
1746 (default_memory_remove_breakpoint): Likewise.
1747 * target.h (default_memory_remove_breakpoint)
1748 (default_memory_insert_breakpoint): Likewise.
1749
1750 * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Add gdbarch as
1751 parameter. Replace current_gdbarch by gdbarch.
1752 * m32r-tdep.c (m32r_memory_insert_breakpoint)
1753 (m32r_memory_remove_breakpoint): Likewise.
1754
1755 2008-02-19 Daniel Jacobowitz <dan@codesourcery.com>
1756
1757 * MAINTAINERS: Add Vladimir Prus as MI maintainer.
1758
1759 2008-02-19 Joel Brobecker <brobecker@adacore.com>
1760
1761 * NEWS: Add entry describing Add support improvements.
1762
1763 2008-02-18 Markus Deuling <deuling@de.ibm.com>
1764
1765 * m68klinux-nat.c (getfpregs_supplies): Replace gdbarch_fp0_regnum by
1766 M68K_FP0_REGNUM.
1767
1768 2008-02-18 Markus Deuling <deuling@de.ibm.com>
1769
1770 * sentinel-frame.c (sentinel_frame_prev_register): Do not call
1771 register_offset_hack anymore.
1772
1773 * regcache.{c,h} (register_offset_hack): Remove.
1774
1775 2008-02-18 Markus Deuling <deuling@de.ibm.com>
1776
1777 * hppa-tdep.h (find_global_pointer): Add gdbarch as parameter.
1778
1779 * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer): Likewise. Replace
1780 current_gdbarch by gdbarch.
1781 (hppa64_hpux_find_global_pointer): Likewise.
1782 * hppa-tdep.c (hppa_find_global_pointer): Likewise.
1783 (hppa32_push_dummy_call, hppa64_push_dummy_call): Update call for
1784 find_global_pointer.
1785
1786 * hppabsd-tdep.c (hppabsd_find_global_pointer): Add gdbarch as
1787 parameter.
1788 * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
1789
1790 * hppa-linux-nat.c (hppa_linux_register_addr): Use ARRAY_SIZE instead
1791 of gdbarch_num_regs.
1792
1793 * hppa-hpux-tdep.c (hppa_hpux_sr_for_addr): Add gdbarch as parameter and
1794 replace current_gdbarch by gdbarch.
1795 (hppa_hpux_push_dummy_code): Update call for hppa_hpux_sr_for_addr.
1796
1797 2008-02-18 Markus Deuling <deuling@de.ibm.com>
1798
1799 * rs6000-nat.c (exec_one_dummy_insn, regmap): Add gdbarch as parameter
1800 and replace current_gdbarch by gdbarch.
1801
1802 (store_register): Update call for exec_one_dummy_insn.
1803 (fetch_register, store_register): Update call of regmap.
1804
1805 * ppcnbsd-nat.c (getregs_supplies, getfpregs_supplies): Add gdbarch as
1806 parameter and replace current_gdbarch by gdbarch.
1807
1808 (ppcnbsd_store_inferior_registers): Use get_regcache_arch to get at
1809 the current architecture. Update call for getregs_supplies and
1810 getfpregs_supplies.
1811 (ppcnbsd_fetch_inferior_registers): Likewise.
1812
1813 * ppcobsd-nat.c (getfpregs_supplies): Add gdbarch as parameter and
1814 replace current_gdbarch by gdbarch.
1815 (ppcobsd_fetch_registers, ppcobsd_store_registers): Use
1816 get_regcache_arch to get at the current architecture. Update call for
1817 getfpregs_supplies.
1818
1819 2008-02-18 Markus Deuling <deuling@de.ibm.com>
1820
1821 * arch-utils.c (gdbarch_from_bfd): Remove unnecessary {old,new}_gdbarch
1822 variables.
1823
1824 2008-02-15 Markus Deuling <deuling@de.ibm.com>
1825
1826 * mips-linux-tdep.c (mips_linux_init_abi): Remove internal error.
1827
1828 2008-02-14 Vladimir Prus <vladimir@codesourcery.com>
1829
1830 * NEWS: Mention pending breakpints in MI.
1831
1832 2008-02-14 Markus Deuling <deuling@de.ibm.com>
1833
1834 * Makefile.in (ALL_TARGET_OBS): Remove dependency to xtensa-linux-nat.o.
1835
1836 2008-02-13 Markus Deuling <deuling@de.ibm.com>
1837
1838 Add script to build and test GDB using enable-targets=all.
1839
1840 * gdb_buildall.sh: New file.
1841
1842 2008-02-11 Maxim Grigoriev <maxim2405@gmail.com>
1843
1844 * NEWS (New native configurations): Xtensa GNU/Linux.
1845 (New targets): Xtensa GNU/Linux.
1846 * Makefile.in (ALL_TARGET_OBS): Add xtensa-linux-nat.o and
1847 xtensa-linux-tdep.o
1848 (ALLDEPFILES): Add xtensa-linux-tdep.c and xtensa-linux-nat.c
1849 (xtensa-linux-nat.o, xtensa-linux-tdep.o): New dependencies.
1850 * configure.tgt (xtensa*-*-linux*): New entry.
1851 * xtensa-config.c (xtensa_tdep): New variable.
1852 (xtensa_config_byte_order, xtensa_config_tdep): Removed.
1853 (rmap): Change format based on new macro XTREG.
1854 (XTENSA_CONFIG_INSTANTIATE): Use new macro defined in xtensa-tdep.h.
1855 * xtensa-linux-nat.c: New.
1856 * xtensa-linux-tdep.c: New.
1857 * xtensa-xtregs.c: New.
1858 * xtensa-tdep.h (xtensa_elf_gregset_t): Update.
1859 (XTENSA_ELF_NGREG, XTREG, XTREG_END, XTENSA_GDBARCH_TDEP_INSTANTIATE)
1860 (XCHAL_NUM_CONTEXTS, XCHAL_HAVE_EXCEPTIONS): New macros.
1861 (xtensa_register_t): New field coprocessor.
1862 (XTENSA_REGISTER_FLAGS_PRIVILEGED): Name spelling corrected.
1863 * xtensa-tdep.c (xtensa_config_tdep, xtensa_config_byte_order): Removed.
1864 (xtensa_pseudo_register_read, xtensa_pseudo_register_write):
1865 Update to handle privileged registers.
1866 (xtensa_supply_gregset) Remove exccause and excvaddr registers.
1867 (xtensa_push_dummy_call): Set windowstart register correctly.
1868 (call0_analyze_prologue): Initialize xtensa_default_isa.
1869 (xtensa_derive_tdep): New.
1870 (xtensa_gdbarch_init): Get rid of xtensa_config_byte_order and
1871 xtensa_config_tdep, use XCHAL_HAVE_BE and xtensa_tdep instead.
1872 Call xtensa_derive_tdep().
1873 * config/xtensa/linux.mh: New.
1874 * regformats/reg-xtensa.dat: New.
1875
1876 2008-02-09 Aleksandar Ristovski <aristovski@qnx.com> (tiny change)
1877
1878 * corelow.c (core_open): Use IS_ABSOLUTE_PATH.
1879 (filenames.h): New include.
1880 * Makefile.in (corelow.o): Add dependency for filenames.h.
1881
1882 2008-02-08 Doug Evans <dje@google.com>
1883
1884 * source.c (find_and_open_source): Always rewrite absolute filenames.
1885
1886 2008-02-07 Doug Evans <dje@google.com>
1887
1888 * breakpoint.c: #include "hashtab.h".
1889 (ambiguous_names_p): New fn.
1890 (update_breakpoint_locations): When restoring bp enable status, don't
1891 compare function names if any functions have same name.
1892 * Makefile.in (breakpoint.o): Add hashtab.h dependency.
1893
1894 2008-02-07 Joel Brobecker <brobecker@adacore.com>
1895
1896 * ada-lang.c (symbol_completion_add): Make SV parameter a VEC**
1897 instead of just a VEC*. Update use of SV.
1898 (ada_make_symbol_completion_list): Update symbol_completion_add calls.
1899
1900 2007-02-07 Joel Brobecker <brobecker@adacore.com>
1901
1902 * NEWS: Put all new commands since gdb-6.7 together.
1903
1904 2007-02-07 Joel Brobecker <brobecker@adacore.com>
1905
1906 * ada-lang.c: #include "vec.h".
1907 (struct string_vector, new_string_vector, string_vector_append):
1908 Delete.
1909 (char_ptr): New typedef.
1910 (DEF_VEC_P (char_ptr)): New VEC type.
1911 (symbol_completion_add): Update profile to take the new VEC type
1912 instead of the old string_vector structure. Update code accordingly.
1913 (ada_make_symbol_completion_list): Use the new VEC type instead of
1914 the old string_vector structure, and update the code accordingly.
1915 * Makefile.in (ada-lang.o): Add dependency on vec.h.
1916
1917 2008-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
1918
1919 * p-exp.y: Set current_type in missing places.
1920 (leftdiv_is_integer): New static variable.
1921 Typecast right operand of BINOP_DIV to long_double if both operands
1922 are integers.
1923
1924 2008-02-06 Maciej W. Rozycki <macro@mips.com>
1925
1926 * remote-mips.c (set_breakpoint): Rename to...
1927 (mips_set_breakpoint): ... this.
1928 (clear_breakpoint): Rename to...
1929 (mips_clear_breakpoint): ... this.
1930 (common_breakpoint): Rename to...
1931 (mips_common_breakpoint): ... this.
1932 (check_lsi_error): Rename to...
1933 (mips_check_lsi_error): ... this.
1934
1935 2007-02-05 Joel Brobecker <brobecker@adacore.com>
1936
1937 * language.h (struct language_defn): Add new field
1938 la_make_symbol_completion_list.
1939 * symtab.c (default_make_symbol_completion_list): Renames
1940 make_symbol_completion_list.
1941 (make_symbol_completion_list): New function.
1942 * symtab.h (default_make_symbol_completion_list): Add declaration.
1943 * langauge.c (unknown_language): Set la_make_symbol_completion_list.
1944 (auto_language, local_language): Likewise.
1945 * objc-lang.c (objc_language_defn): Likewise.
1946 * scm-lang.c (scm_language_defn): Likewise.
1947 * m2-lang.c (m2_language_defn): Likewise.
1948 * f-lang.c (f_language_defn): Likewise.
1949 * jv-lang.c (java_language_defn): Likewise.
1950 * p-lang.c (pascal_language_defn): Likewise.
1951 * c-lang.c (c_language_defn, cplus_language_defn, asm_language_defn)
1952 (minimal_language_defn): Likewise.
1953 * ada-lang.c (struct string_vector): New structure.
1954 (new_string_vector, string_vector_append, ada_unqualified_name)
1955 (add_angle_brackets, symbol_completion_match, symbol_completion_add)
1956 (ada_make_symbol_completion_list): New functions.
1957 (ada_language_defn): Set la_make_symbol_completion_list.
1958 * ada-lang.h (ada_make_symbol_completion_list): Remove declaration,
1959 this function is static.
1960
1961 2008-02-05 Kevin Buettner <kevinb@redhat.com>
1962
1963 * mn10300-tdep.c (mn10300_push_dummy_call): Adjust stack pointer
1964 to account for call site optimizations.
1965
1966 2008-02-05 Andrzej Zaborowski <balrogg@gmail.com>
1967
1968 * tracepoint.c (read_actions): Handle end-of-text indicator
1969 in action list properly. (Committed by Jim Blandy)
1970
1971 2008-02-05 Jim Blandy <jimb@red-bean.com>
1972
1973 * ax-gdb.c (gen_expr): Yield ordinary error if asked to trace a
1974 pseudoregister, not an internal error.
1975 Reported by: Andrzej Zaborowski
1976
1977 2008-02-04 Vladimir Prus <vladimir@codesourcery.com>
1978
1979 * varobj.c (c_value_of_variable): Use xstrdup.
1980
1981 2008-02-04 Vladimir Prus <vladimir@codesourcery.com>
1982
1983 Update stored rendition of varobj value when format changes.
1984 * varobj.c (varobj_set_display_format): Recomputed
1985 print_value.
1986 (c_value_of_variable): Return print_value.
1987
1988 2008-02-03 Doug Evans <dje@google.com>
1989
1990 * eval.c (evaluate_subexp_standard): Fix type of result of mixed
1991 integer/float division operations when EVAL_AVOID_SIDE_EFFECTS.
1992 * valops.c (value_one): New function.
1993 * value.h (value_one): Declare.
1994
1995 Fix argument promotion for binary arithmetic ops for C.
1996 * valarith.c (unop_result_type): New fn.
1997 (binop_result_type): New fn.
1998 (value_binop): Move result type computation to binop_result_type.
1999 (value_pos, value_neg, value_complement): Move result type
2000 computation to unop_result_type.
2001
2002 PR 2384
2003 * gdbtypes.c (get_vptr_fieldno): Renamed from fill_in_vptr_fieldno.
2004 Return basetype, fieldno if found. All callers updated.
2005 Don't cache TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE if from different
2006 objfile.
2007 * gdbtypes.h (get_vptr_fieldno): Renamed from fill_in_vptr_fieldno.
2008 * symfile.h (fill_in_vptr_fieldno): Delete.
2009
2010 2008-02-02 Doug Evans <dje@google.com>
2011
2012 * valarith.c (value_binop): Handle unsigned BINOP_REM division by zero.
2013
2014 * typeprint.c (*): Whitespace cleanup.
2015
2016 2008-02-02 Mark Kettenis <kettenis@gnu.org>
2017 Luis Machado <luisgpm@br.ibm.com>
2018 Thiago Jung Bauermann <bauerman@br.ibm.com>
2019
2020 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Pass floats that
2021 don't fit into registerson the stack the way GCC does.
2022
2023 2008-02-01 Joel Brobecker <brobecker@adacore.com>
2024
2025 * symtab.c (symbol_set_names): Do not add an entry in the demangling
2026 hash table for Ada symbols. Just store the linkage name as is,
2027 and leave the demangled_name as NULL.
2028
2029 2007-02-01 Joel Brobecker <brobecker@adacore.com>
2030
2031 * dwarf2read.c (add_partial_symbol): Always store all Ada subprograms
2032 in the global scope.
2033 (new_symbol): Likewise.
2034
2035 2008-02-01 Vladimir Prus <vladimir@codesourcery.com>
2036
2037 * breakpoint.c (break_command_1): Return void.
2038 (break_command_really): Return void. Rethrow
2039 exceptions instead of returning.
2040 (gdb_breakpoint): Remove the error_message parameter.
2041 Return void. Rename to set_breakpoint.
2042 * gdb.h (gdb_breakpoint): Rename and move to...
2043 * breakpoint.h (set_breakpoint): ...here.
2044 * mi/mi-cmb-break.c (mi_cmd_break_insert): Restore
2045 event hooks even if exception is thrown. Adjust to
2046 gdb_breakpoint interface changes.
2047
2048
2049 2008-02-01 Thiago Jung Bauermann <bauerman@br.ibm.com>
2050
2051 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Write 32-bit
2052 float in both first and second word in the doubleword, to support
2053 old and new ABIs.
2054
2055 2008-02-01 Vladimir Prus <vladimir@codesourcery.com>
2056
2057 Properly rethrow exception. This fixes errors
2058 about non-existent functions for -break-insert.
2059 * breakpoint.c (break_command_really): Use throw_exception
2060 for rethrowing. If rethrowing, don't print the exception.
2061
2062 2008-01-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
2063
2064 * NEWS: Mention Decimal Floating Point support.
2065
2066 2008-01-31 Joel Brobecker <brobecker@adacore.com>
2067
2068 * std-regs.c (value_of_builtin_frame_pc_reg): Change the returned
2069 value type to builtin_type_void_func_ptr.
2070
2071 2008-01-31 Andreas Krebbel <krebbel1@de.ibm.com>
2072
2073 * s390-tdep.c (is_float_singleton, is_float_like,
2074 alignment_of, s390_return_value): Make checks for
2075 TYPE_CODE_FLT to match TYPE_CODE_DECFLOAT as well.
2076
2077 2008-01-31 Luis Machado <luisgpm@br.ibm.com>
2078 Thiago Jung Bauermann <bauerman@br.ibm.com>
2079
2080 * infcmd.c (default_print_registers_info): Also print hex
2081 raw contents for TYPE_CODE_DECFLOAT registers.
2082 * ppc-tdep.h (gdbarch_tdep): Add ppc_dl0_regnum member.
2083 * rs6000-tdep.c (IS_DFP_PSEUDOREG): New macro.
2084 (rs6000_register_name): Add support for DFP pseudo-registers.
2085 (rs6000_pseudo_register_type): Likewise.
2086 rs6000_pseudo_register_reggroup_p): Likewise.
2087 (ppc_pseudo_register_read): New function.
2088 (ppc_pseudo_register_write): Likewise.
2089 (rs6000_pseudo_register_read): Likewise.
2090 (rs6000_pseudo_register_write): Likewise.
2091 (e500_pseudo_register_read): Move checks to
2092 rs6000_pseudo_register_read.
2093 (e500_pseudo_register_write): Move checks to
2094 rs6000_pseudo_register_write.
2095 (rs6000_gdbarch_init): Initialize tdep->ppc_dl0_regnum. Install
2096 rs6000_pseudo_register_read and rs6000_pseudo_register_write
2097 in gdbarch if SPE or DFP is available. Adjust gdbarch's
2098 num_pseudo_regs to account for DFP pseudo regs.
2099
2100 2008-01-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
2101
2102 * ppc-tdep.h (struct gdbarch_tdep): Remove ppc_ev31_regnum member.
2103 * rs6000-tdep.c (IS_SPE_PSEUDOREG): New macro.
2104 (spe_register_p, rs6000_register_name, rs6000_pseudo_register_type,
2105 rs6000_pseudo_register_reggroup_p, e500_move_ev_register,
2106 e500_pseudo_register_read, e500_pseudo_register_write): Use
2107 IS_SPE_PSEUDOREG macro.
2108 (rs6000_frame_cache): Remove use of tdep->ppc_ev31_regnum.
2109 (rs6000_gdbarch_init): Remove unnecessary num_sprs local variable.
2110 Remove initialization of tdep->ppc_ev31_regnum.
2111
2112 2008-01-08 Paul Hilfinger <hilfinger@adacore.com>
2113
2114 * printcmd.c (print_formatted): Handle references as for unformatted
2115 prints.
2116
2117 2008-01-30 Joel Brobecker <brobecker@adacore.com>
2118
2119 * eval.c (evaluate_subexp_standard): Add handling of user
2120 registers when in EVAL_AVOID_SIDE_EFFECTS mode.
2121
2122 2008-01-30 Pierre Muller <muller@ics.u-strasbg.fr>
2123
2124 * eval.c (evaluate_subexp_standard): Support
2125 BINOP_INTDIV opcode.
2126
2127 2008-01-30 Paul N. Hilfinger <hilfinger@adacore.com>
2128
2129 * valarith.c (value_binop): Add floating-point BINOP_MIN and
2130 BINOP_MAX cases.
2131 For BINOP_EXP, use length and signedness of left operand only for
2132 result, as for shifts.
2133 For integral operands to BINOP_EXP, use new integer_pow and
2134 uinteger_pow functions so as to get full range of results.
2135 (integer_pow): New function.
2136 (uinteger_pow): New function.
2137
2138 2008-01-30 Vladimir Prus <vladimir@codesourcery.com>
2139
2140 Use vector for varobj_list_children interface.
2141 * gdb/varobj.c (varobj_list_children): Return vector
2142 of varobjs.
2143 * gdb/varobj.h (varobj_list_children): Adjust
2144 prototype.
2145 (varobj_p): Declare. Declare vector thereof.
2146 * mi/mi-cmd-var.c (mi_cmd_var_list_children): Adjust
2147 for varobj_list_children change.
2148 * Makefile.in (varobj_h): Update dependencies.
2149
2150 2008-01-30 Thiago Jung Bauermann <bauerman@br.ibm.com>
2151
2152 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Add support for
2153 TYPE_CODE_DECFLOAT arguments.
2154 (ppc64_sysv_abi_push_dummy_call) Likewise.
2155 (get_decimal_float_return_value): New function.
2156 (do_ppc_sysv_return_value): Add support for TYPE_CODE_DECFLOAT return
2157 values by calling get_decimal_float_return_value.
2158 (ppc64_sysv_abi_return_value): Likewise.
2159
2160 2008-01-30 Nick Roberts <nickrob@snap.net.nz>
2161
2162 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Add field
2163 for preprocessor macro information. Formatting changes.
2164
2165 2008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
2166
2167 * remote.c (struct remote_state): Add cached_wait_status.
2168 (remote_exec_file): New variable.
2169 (PACKET_vAttach, PACKET_vRun): New constants.
2170 (extended_remote_restart): Do not query for status.
2171 (struct start_remote_args): New.
2172 (remote_start_remote): Take it as a second argument. Check
2173 whether the target is running. Issue an error for non-running
2174 non-extended targets. Cache the wait status. Set inferior_ptid
2175 here.
2176 (remote_open_1): Prompt to disconnect non-running targets. Make
2177 sure the target is marked running. Do not set inferior_ptid here.
2178 Update call to remote_start_remote. Do not call remote_check_symbols
2179 if the target is not running.
2180 (remote_detach_1): Rename from remote_detach. Take an EXTENDED
2181 argument. Handle a non-running target.
2182 (remote_detach): Use it.
2183 (extended_remote_detach): New.
2184 (remote_disconnect): Fix typo. Use remoute_mourn_1.
2185 (extended_remote_attach_1, extended_remote_attach)
2186 (extended_async_remote_attach): New.
2187 (remote_vcont_resume): Remove unused variable.
2188 (remote_wait, remote_async_wait): Use any cached wait status.
2189 (putpkt_binary, getpkt): Clear any cached wait status.
2190 (extended_remoute_mourn_1): New.
2191 (extended_remote_mourn): Use it.
2192 (extended_async_remote_mourn, extended_remote_run): New.
2193 (extended_remote_create_inferior_1): New.
2194 (extended_remote_create_inferior): Use it.
2195 (extended_remote_async_create_inferior): Likewise.
2196 (remote_xfer_partial): Skip for non-executing targets.
2197 (init_extended_remote_ops): Set to_detach and to_attach.
2198 (init_extended_async_remote_ops): Likewise. Use
2199 extended_async_remote_mourn.
2200 (_initialize_remote): Register vAttach, vRun, and
2201 set remote exec-file.
2202 * NEWS: Mention vAttach, vRun, and gdbserver extended-remote support.
2203
2204 2008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
2205
2206 * Makefile.in (symfile.o): Update.
2207 * NEWS: Mention exec tracing support.
2208 * inf-ttrace.c (inf_ttrace_wait): Return TARGET_WAITKIND_EXECD for
2209 exec events.
2210 * infcmd.c (kill_if_already_running, detach_command)
2211 (disconnect_command): Replace SOLIB_RESTART with no_shared_libraries.
2212 * infrun.c (MAY_FOLLOW_EXEC, may_follow_exec): Delete.
2213 (follow_exec): Do not check may_follow_exec. Do not mourn and push
2214 targets. Apply the sysroot path to the loaded executable. Use
2215 no_shared_libraries.
2216 * linux-nat.c (linux_child_follow_fork): Print fork following
2217 messages if verbose.
2218 (kill_wait_callback): Kill again before waiting a second time.
2219 * symfile.c (symbol_file_clear): Replace SOLIB_RESTART with
2220 no_shared_libraries.
2221
2222 2008-01-29 Joel Brobecker <brobecker@adacore.com>
2223
2224 * amd64-tdep.c (amd64_classify): Add handling of TYPE_CODE_CHAR.
2225
2226 2008-01-29 Joel Brobecker <brobecker@adacore.com>
2227
2228 * nto-tdep.h: Remove #include "defs.h".
2229 * nto-tdep.c: Add #include "defs.h".
2230 * Makefile.in (nto_tdep_h): Update dependencies.
2231 (nto-tdep.o): Likewise.
2232
2233 2008-01-29 Joel Brobecker <brobecker@adacore.com>
2234
2235 * infrun.c (wait_for_inferior): Add treat_exec_as_sigtrap parameter
2236 and use it.
2237 (proceed, start_remote): Update call to wait_for_inferior.
2238 * inferior.h (wait_for_inferior): Update declaration.
2239 * fork-child.c, infcmd.c, solib-irix.c, solib-osf.c, solib-sunos.c,
2240 solib-svr4.c, win32-nat.c: Update calls to wait_for_inferior.
2241 * inf-ttrace.c (inf_ttrace_wait): Report TTEVT_EXEC events as
2242 TARGET_WAITKIND_EXECD instead of TARGET_WAITKIND_STOPPED.
2243
2244 2008-01-29 Aleksandar Ristovski <aristovski@qnx.com>
2245
2246 * varobj (adjust_value_for_child_access): Added checking for
2247 returned value from gdb_value_ind.
2248 (c_describe_child): Likewise.
2249 (cplus_describe_child): Fixed a typo.
2250
2251 2008-01-29 Jim Blandy <jimb@red-bean.com>
2252
2253 * MAINTAINERS: Update my info.
2254
2255 2008-01-29 Vladimir Prus <vladimir@codesourcery.com>
2256
2257 Use multiple locations for hardware watchpoints.
2258 This eliminates the need to traverse value chain, doing
2259 various checks, in three different places.
2260
2261 * breakpoint.h (struct bp_location): New fields
2262 lengths and watchpoint_type.
2263 (struct breakpoint): Remove the val_chain field.
2264 * breakpoint.c (is_hardware_watchpoint): New.
2265 (free_valchain): Remove.
2266 (update_watchpoint): New.
2267 (insert_bp_location): For hardware watchpoint, just
2268 directly insert it.
2269 (insert_breakpoints): Call update_watchpoint_locations
2270 on all watchpoints. If we have failed to insert
2271 any location of a hardware watchpoint, remove all inserted
2272 locations.
2273 (remove_breakpoint): For hardware watchpoints, directly
2274 remove location.
2275 (watchpoints_triggered): Iterate over locations.
2276 (bpstat_stop_status): Use only first location of
2277 a resource watchpoint.
2278 (delete_breakpoint): Don't call free_valchain.
2279 (print_one_breakpoint): Don't print all
2280 locations for watchpoints.
2281 (breakpoint_re_set_one): Use update_watchpoint for
2282 watchpoints.
2283
2284 2008-01-29 Vladimir Prus <vladimir@codesourcery.com>
2285
2286 Don't reset watchpoint block on solib load.
2287
2288 * breakpoint.c (insert_bp_location): For watchpoints,
2289 recompute condition.
2290 (breakpoint_re_set_one): Instead of recomputing value
2291 and condition for watchpoints, just reset value and
2292 let insert_breakpoints/insert_bp_location recompute it.
2293 Don't do anything about disabled watchpoint.
2294
2295 2008-01-29 Pierre Muller <muller@ics.u-strasbg.fr>
2296
2297 * valarith.c (value_binop): Handle unsigned integer
2298 division by zero.
2299
2300 2008-01-28 Kevin Buettner <kevinb@redhat.com>
2301
2302 * mn10300-tdep.c (mn10300_analyze_prologue): Check for an
2303 instruction pattern that appears frequently in position
2304 independent code. Fix bug in code which looks for "fmov" and
2305 backtracks if no "fmov" is found.
2306
2307 2008-01-28 Doug Evans <dje@google.com>
2308
2309 * dbxread.c (read_dbx_symtab): Fix indentation.
2310 Reformat comments to 80 columns.
2311 Move local var def closer to only use.
2312
2313 2008-01-28 Daniel Jacobowitz <dan@codesourcery.com>
2314
2315 * fork-child.c (SHELL_FILE): Remove #ifndef.
2316 (fork_inferior): Remove SHELL_COMMAND_CONCAT.
2317
2318 2008-01-25 Pierre Muller <muller@ics.u-strasbg.fr>
2319
2320 * i386-tdep.c (i386_skip_noop): New function.
2321 (i386_analyze_prologue): Call i386_skip_noop function.
2322
2323 2008-01-24 Michael Snyder <msnyder@specifix.com>
2324
2325 * procfs.c (procfs_xfer_partial): Comment, cut/paste error.
2326 * win32-nat.c (win32_xfer_partial): Ditto.
2327 * target.c (default_xfer_partial): Minor whitespace adjustment.
2328
2329 2008-01-24 Pedro Alves <pedro@codesourcery.com>
2330
2331 * arm-tdep.c (arm_addr_bits_remove): In non 26-bit mode, don't
2332 strip bit 1 even if pc doesn't point to thumb code.
2333
2334 2008-01-23 Daniel Jacobowitz <dan@codesourcery.com>
2335
2336 * remote.c (remote_wait): Handle SIGINT between packets.
2337 (remote_async_wait): Likewise.
2338
2339 2008-01-23 Vladimir Prus <vladimir@codesourcery.com>
2340 Chris Demetriou <cgd@google.com>
2341
2342 * thread.c (add_thread_silent): Renamed
2343 from add_thread.
2344 (print_thread_events): New variable definition.
2345 (show_print_thread_events): New function.
2346 (_initialize_thread): Add "set print thread-events" and
2347 "show print thread-events" commands.
2348 (add_thread): Announce new thread.
2349 * gdbthread.h (add_thread_silent): Declare.
2350 (print_thread_events): New variable declaration.
2351 * inf-ttrace.c (inf_ttrace_wait): Don't
2352 inform about new thread, as add_thread is always
2353 called too, and will take care of that.
2354 * infrun.c (handle_inferior_event): Likewise.
2355 * procfs.c (procfs_wait): Likewise.
2356 * remote.c (remote_currthread): Likewise.
2357 * sol-thread.c (sol_thread_wait): Likewise.
2358 * win32-nat.c (get_win32_debug_event): Likewise.
2359 * linux-thread-db.c (attach_thread): Likewise.
2360 Remove the verbose parameter.
2361 (check_event): Make detach_thread be verbose
2362 only if print_thread_events is set.
2363 * linux-nat.c (lin_lwp_attach_lwp): Don't inform
2364 about new thread. This is called only from
2365 linux-thread-db.c:attach_thread, which will take care.
2366 Remove the verbose parameter.
2367 * linux-nat.h (lin_lwp_attach_lwp): Adjust prototype.
2368
2369 2008-01-23 Nick Roberts <nickrob@snap.net.nz>
2370
2371 * mi/mi-cmd-var.c (mi_cmd_var_set_format): Add value field to output.
2372
2373 2008-01-22 Vladimir Prus <vladimir@codesourcery.com>
2374
2375 * breakpoint.c (break_command_really): New parameter
2376 ignore_count.
2377 (break_command_1): Pass 0 as
2378 ignore_count to break_command_really.
2379 (gdb_breakpoint): Pass ignore_count to
2380 break_command_really.
2381
2382 2008-01-21 Kevin Buettner <kevinb@redhat.com>
2383
2384 * mn10300-linux-tdep.c (am33_linux_sigframe_cache_init): Find
2385 sigcontext struct via pointer.
2386 (struct sigframe comment): Update to show new field `psc'.
2387
2388 2008-01-21 Vladimir Prus <vladimir@codesourcery.com>
2389
2390 * infrun.c (handle_inferior_event): If
2391 we failed to remove breakpoints, error,
2392 don't try to increment PC by hand.
2393
2394 2008-01-18 Nick Hudson <nick.hudson@dsl.pipex.com>
2395
2396 Add NetBSD/hppa target and host support.
2397
2398 * hppabsd-tdep.c (hppabsd_supply_gregset): Move to ...
2399 (hppabsd_gregset): Move to ...
2400 (hppabsd_regset_from_core_section): Rename
2401 hppaobsd_regset_from_core_section and move to ...
2402 (hppabsd_find_global_pointer): Update comment.
2403 (hppabsd_init_abi): Make global. Do not register
2404 hppabsd_regset_from_core_section.
2405 (hppabsd_core_osabi_sniffer): Rename hppaobsd_core_osabi_sniffer and
2406 move to ...
2407 (_initialize_hppabsd_tdep): Move to ...
2408 * hppaobsd-tdep.c: ... here. New file.
2409 * hppnbsd-tdep.c: New file.
2410 * hppnbsd-nat.c: New file.
2411 * Makefile.in (ALL_TARGET_OBS): Add hppanbsd-tdep.o and hppaobsd-tdep.o.
2412 (ALLDEPFILES): Add hppabsd-nat.c and hppabsd-tdep.c.
2413 (hppabsd-nat.o, hppabsd-tdep.o): New dependencies.
2414 (hppabsd-tdep.o, hppaobsd-tdep.o): Update dependencies.
2415 * configure.host (hppa*-*-netbsd*): New entry.
2416 * configure.tgt (hppa*-*-netbsd*): New entry.
2417 (hppa*-*-openbsd*): Update.
2418 * NEWS (New native configuration): Mention NetBSD/hppa.
2419 (New targets): Mention NetBSD/hppa.
2420
2421 2008-01-18 Markus Deuling <deuling@de.ibm.com>
2422
2423 * gdbarch.sh (function_list): Add new property bits_big_endian to
2424 gdbarch structure.
2425 * gdbarch.{c,h}: Regenerate.
2426
2427 * value.c (struct value): Replace BITS_BIG_ENDIAN by
2428 gdbarch_bits_big_endian (comment).
2429 (unpack_field_as_long, modify_field): Likewise.
2430 * value.h: Likewise (comment).
2431 * valops.c (value_slice): Likewise.
2432 * valarith.c (value_subscript, value_bit_index): Likewise.
2433 * gdbtypes.h (field): Likewise (comment).
2434 * eval.c (evaluate_subexp_standard): Likewise.
2435 * dwarf2read.c (dwarf2_add_field): Likewise.
2436 * ada-lang.c (decode_packed_array, ada_value_primitive_packed_val)
2437 (move_bits, ada_value_assign, value_assign_to_component): Likewise.
2438
2439 * defs.h (BITS_BIG_ENDIAN): Remove.
2440
2441 2008-01-18 Markus Deuling <deuling@de.ibm.com>
2442
2443 * jv-exp.y (yylex): Replace DEPRECATED_STREQN with the appropriate
2444 function calls.
2445 * m2-exp.y (yylex): Likewise.
2446 * objc-exp.y (yylex): Likewise.
2447
2448 * defs.h (DEPRECATED_STREQN): Remove.
2449
2450 2008-01-17 H.J. Lu <hjl.tools@gmail.com>
2451
2452 * MAINTAINERS: Update my email address.
2453
2454 2008-01-17 Jim Blandy <jimb@codesourcery.com>
2455
2456 * README: Mention gdbserver/README.
2457
2458 2008-01-17 Pierre Muller <muller@ics.u-strasbg.fr>
2459
2460 * valarith.c (value_binop): Handle BINOP_INTDIV
2461 for unsigned and signed integers.
2462
2463 2008-01-17 Ulrich Weigand <uweigand@de.ibm.com>
2464
2465 * s390-tdep.c (s390_gdbarch_init): Set default long double
2466 type to 128-bit IEEE quad.
2467
2468 2008-01-17 Joel Brobecker <brobecker@adacore.com>
2469
2470 * hpux-thread.c (hpux_thread_resume): Delete commented-out code.
2471
2472 2008-01-16 Mark Kettenis <kettenis@gnu.org>
2473
2474 * auxv.c (fprint_target_auxv): Add support for AT_SUN_AUXFLAGS.
2475
2476 * dfp.c, dfp.h: Rename decimal_to_double to decimal_to_doublest.
2477 * value.c: All callers changed.
2478
2479 2008-01-16 Markus Deuling <deuling@de.ibm.com>
2480
2481 * rs6000-nat.c (add_vmap, vmap_ldinfo, vmap_exec): Replace
2482 DEPRECATED_STREQ by its expression.
2483 * coffread.c (coff_locate_sections, coff_symtab_read): Likewise.
2484 * xcoffread.c (read_xcoff_symtab, read_symbol_lineno, find_linenos)
2485 (scan_xcoff_symtab): Likewise.
2486 * hppa-hpux-tdep.c (hppa_hpux_skip_trampoline_code): Likewise.
2487 * f-lang.c (find_common_for_function): Likewise.
2488 * objc-exp.y (parse_number): Likewise.
2489
2490 * defs.h (DEPRECATED_STREQ): Remove.
2491
2492 2008-01-16 Markus Deuling <deuling@de.ibm.com>
2493
2494 * mn10300-tdep.h (AM33_MODE): Add gdbarch as parameter.
2495 * mn10300-tdep.c (set_reg_offsets, mn10300_analyze_prologue): Use
2496 get_frame_arch to get at the current_architecture. Update AM33_MODE
2497 call.
2498 (mn10300_analyze_prologue): Add gdbarch as parameter. Update caller.
2499 (mn10300_frame_unwind_cache): Use get_frame_arch to get at the current
2500 architecture.
2501 (set_reg_offsets, mn10300_analyze_prologue): Fix indentation.
2502
2503 2008-01-16 Markus Deuling <deuling@de.ibm.com>
2504
2505 * amd64-nat.h (amd64_native_gregset_supplies_p): Add gdbarch as
2506 parameter.
2507 * amd64-nat.c (amd64_native_gregset_supplies_p): Likewise.
2508
2509 (amd64_native_gregset_reg_offset): Add gdbarch as parameter. Replace
2510 current_gdbarch by gdbarch. Update caller.
2511
2512 * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers)
2513 (amd64_linux_store_inferior_registers): Use get_regcache_arch to get at
2514 the current architecture. Update calls of
2515 amd64_native_gregset_supplies_p.
2516 * amd64bsd-nat.c (amd64bsd_fetch_inferior_registers)
2517 (amd64bsd_store_inferior_registers): Likewise.
2518
2519 2008-01-16 Markus Deuling <deuling@de.ibm.com>
2520
2521 * ppc-linux-nat.c (ppc_register_u_addr): Add gdbarch as parameter.
2522 Replace current_gdbarch by gdbarch. Update caller.
2523
2524 2008-01-16 Markus Deuling <deuling@de.ibm.com>
2525
2526 * dbxread.c (repeated_header_complaint, dbx_symfile_init)
2527 (read_dbx_dynamic_symtab, function_outside_compilation_unit_complaint)
2528 (read_dbx_symtab, end_psymtab, dbx_psymtab_to_symtab_1)
2529 (dbx_psymtab_to_symtab, read_ofile_symtab, process_one_symbol)
2530 (stabsect_build_psymtabs): Fix indentation.
2531
2532 2008-01-15 Michael Snyder <msnyder@specifix.com>
2533
2534 * corelow.c (core_xfer_partial): Comment, cut/paste error.
2535
2536 2008-01-14 Pierre Muller <muller@ics.u-strasbg.fr>
2537
2538 * win32-nat.c (win32_create_inferior): Restore code calling
2539 CloseHandle on ProcessInformation structure.
2540
2541 2008-01-13 Nick Hudson <nick.hudson@dsl.pipex.com>
2542
2543 * configure.ac: Check for void * as 3 argument of ptrace.
2544 * configure: regenerate.
2545
2546 2008-01-11 Markus Deuling <deuling@de.ibm.com>
2547
2548 * alpha-tdep.c (alpha_heuristic_proc_start)
2549 (alpha_sigtramp_register_address): Add gdbarch as parameter. Replace
2550 current_gdbarch by gdbarch.
2551
2552 (alpha_heuristic_frame_unwind_cache): Use get_frame_arch to get at the
2553 current architecture by frame_info. Update alpha_heuristic_proc_start
2554 call.
2555
2556 (alpha_sigtramp_frame_this_id, alpha_sigtramp_frame_prev_register): Use
2557 get_frame_arch to get at the current architecture by frame_info. Update
2558 alpha_sigtramp_register_address call.
2559
2560 * arm-tdep.c (thumb_scan_prologue): Add gdbarch as parameter and replace
2561 current_gdbarch by gdbarch. Update caller.
2562 (convert_to_extended, convert_from_extended): Add endianess parameter
2563 for comparison. Update caller.
2564 (arm_extract_return_value, arm_store_return_value): Use
2565 get_regcache_arch to get at the current architecture.
2566
2567 * cris-tdep.c (cris_register_size): Add gdbarch as parameter. Replace
2568 current_gdbarch by gdbarch. Update caller.
2569 (cris_gdb_func, move_to_preg_op, none_reg_mode_move_from_preg_op): Add
2570 gdbarch as parameter. Update caller. Replace current_gdbarch by gdbarch.
2571
2572 * h8300-tdep.c (E_PSEUDO_CCR_REGNUM, E_PSEUDO_EXR_REGNUM, BINWORD): Add
2573 gdbarch as parameter. Update caller.
2574 (h8300_init_frame_cache): Add gdbarch as parameter. Replace
2575 current_gdbarch by gdbarch. Update caller.
2576
2577 * hppa-tdep.c (skip_prologue_hard_way): Add gdbarch as parameter and
2578 update caller. Replace current_gdbarch by gdbarch.
2579
2580 * m32c-tdep.c (m32c_skip_trampoline_code): Use get_frame_arch to get at
2581 the current architecture. Replace current_gdbarch by gdbarch.
2582 * m68hc11-tdep.c (m68hc11_frame_unwind_cache): Likewise.
2583 (STACK_CORRECTION, USE_PAGE_REGISTER): Replace M6811_TDEP by its
2584 expression. Add gdbarch as parameter and replace current_gdbarch with
2585 it. Update caller.
2586 (M6811_TDEP): Remove.
2587 (m68hc11_frame_prev_register): Use get_frame_arch to get at the current
2588 architecture.
2589 (m68hc11_scan_prologue): Add gdbarch as parameter. Replace
2590 current_gdbarch by gdbarch. Update caller.
2591
2592 * m68k-tdep.c (m68k_analyze_prologue): Add gdbarch as parameter and
2593 update caller.
2594 (m68k_analyze_register_saves): Likewise. Also replace current_gdbarch
2595 by gdbarch.
2596
2597 * rs6000-tdep.c (skip_prologue): Add gdbarch as parameter and update
2598 caller. Relace current_gdbarch by gdbarch.
2599 (altivec_register_p, spe_register_p): Likewise.
2600 * ppc-tdep.h (altivec_register_p, spe_register_p): Add gdbarch as
2601 parameter.
2602 * ppc-linux-nat.c (fetch_register, store_register): Update caller of
2603 altivec_register_p and spe_register_p.
2604
2605 * score-tdep.c (score_fetch_inst): Add gdbarch as parameter. Update
2606 caller. Replace current_gdbarch by gdbarch.
2607 (score_analyze_prologue): use get_frame_arch to get at the current
2608 architecture.
2609
2610 * sparc-tdep.h (sparc_analyze_prologue): Add gdbarch as parameter.
2611 * sparc-tdep.c (sparc_analyze_prologue): Likewise. Replace
2612 current_gdbarch by gdbarch. Update caller.
2613 (sparc_frame_cache): Use get_frame_arch to get at the current
2614 architecture.
2615 * sparce64-tdep.c (sparc64_skip_prologue): Update call of
2616 sparc_analyze_prologue.
2617
2618 * mn10300-tdep.c (mn10300_dwarf2_reg_to_regnum): Add gdbarch as
2619 parameter.
2620
2621 2008-01-11 Markus Deuling <deuling@de.ibm.com>
2622
2623 * exec.c: #include "arch-utils.h"
2624 (print_section_info): Use gdbarch_from_bfd to get at the
2625 current architecture. Replace current_gdbarch. Fix indention. Replace
2626 deprecated_print_address_numeric by paddress.
2627 * Makefile.in (exec.o) Add dependency to arch-utils.h.
2628
2629 * valprint.c (val_print_string): Replace
2630 deprecated_print_address_numeric.
2631 * tracepoint.c (trace_mention, scope_info): Likewise.
2632 * symmisc.c (dump_msymbols, dump_psymtab, dump_symtab_1, print_symbol)
2633 (print_symbol, print_partial_symbols, maintenance_info_psymtabs)
2634 (maintenance_check_symtabs): Likewise.
2635 * symfile.c (list_overlays_command): Likewise.
2636 * stack.c (frame_info, print_block_frame_labels): Likewise.
2637 * printcmd.c (print_address, print_address_demangle)
2638 (address_info): Likewise.
2639 * corefile.c (memory_error): Likewise.
2640 * infcmd.c (jump_command): Likewise.
2641 * breakpoint.c (insert_bp_location, describe_other_breakpoints)
2642 (mention, delete_breakpoint): Likewise.
2643 * c-valprint.c (print_function_pointer_address, c_val_print): Likewise.
2644 * dwarf2read.c (dump_die): Likewise.
2645 * ada-valprint.c (ada_val_print_1): Likewise.
2646 * f-valprint.c (f_val_print): Likewise.
2647 * linux-fork.c (info_forks_command): Likewise.
2648 * m32r-com.c (m32r_load_section, m32r_load)
2649 (m32r_upload_command): Likewise.
2650
2651 * ui-out.c (ui_out_field_core_addr): Remove unnecessary comment.
2652
2653 2008-01-11 Markus Deuling <deuling@de.ibm.com>
2654
2655 * gdbarch.sh (skip_prologue): Add gdbarch
2656 as parameter.
2657 * gdbarch.{c,h}: Regenerate.
2658
2659 * alpha-tdep.c (alpha_skip_prologue): Add gdbarch as parameter.
2660 * amd64-tdep.c (amd64_skip_prologue): Likewise.
2661 * avr-tdep.c (avr_skip_prologue): Likewise.
2662 * cris-tdep.c (cris_skip_prologue): Likewise.
2663 * frv-tdep.c (frv_skip_prologue): Likewise.
2664 * h8300-tdep.c (h8300_skip_prologue): Likewise.
2665 * hppa-tdep.c (hppa_skip_prologue): Likewise.
2666 * i386-tdep.c (i386_skip_prologue): Likewise.
2667 * ia64-tdep.c (ia64_skip_prologue): Likewise.
2668 * iq2000-tdep.c (iq2000_skip_prologue): Likewise.
2669 * m32r-tdep.c (m32r_skip_prologue): Likewise.
2670 * m68hc11-tdep.c (m68hc11_skip_prologue): Likewise.
2671 * m68k-tdep.c (m68k_skip_prologue): Likewise.
2672 * m88k-tdep.c (m88k_skip_prologue): Likewise.
2673 * mep-tdep.c (mep_skip_prologue): Likewise.
2674 * mips-tdep.c (mips_skip_prologue): Likewise.
2675 * mn10300-tdep.c (mn10300_skip_prologue): Likewise.
2676 * mt-tdep.c (mt_skip_prologue): Likewise.
2677 * rs6000-tdep.c (rs6000_skip_prologue): Likewise.
2678 * score-tdep.c (score_skip_prologue): Likewise.
2679 * sh64-tdep.c (sh64_skip_prologue): Likewise.
2680 * sh-tdep.c (sh_skip_prologue): Likewise.
2681 * sparc64-tdep.c (sparc64_skip_prologue): Likewise.
2682 * sparc-tdep.c (sparc32_skip_prologue): Likewise.
2683 * spu-tdep.c (spu_skip_prologue): Likewise.
2684 * v850-tdep.c (v850_skip_prologue): Likewise.
2685 * vax-tdep.c (vax_skip_prologue): Likewise.
2686 * xstormy16-tdep.c (xstormy16_skip_prologue): Likewise.
2687 * xtensa-tdep.c (xtensa_skip_prologue): Likewise.
2688
2689 * arm-tdep.c (arm_skip_prologue): Add gdbarch as parameter. Replace
2690 current_gdbarch by gdbarch.
2691 * m32c-tdep.c (m32c_skip_prologue): Likewise.
2692 * s390-tdep.c (s390_skip_prologue): Likewise.
2693
2694 2008-01-10 Doug Evans <dje@google.com>
2695
2696 * defs.h (struct continuation_arg): Fix typo in comment.
2697 * target.c (target_translate_tls_address): Fix comment spelling error.
2698
2699 2008-01-09 Thiago Jung Bauermann <bauerman@br.ibm.com>
2700
2701 * doublest.h (DOUBLEST_PRINT_FORMAT): Remove % from string.
2702 (DOUBLEST_SCAN_FORMAT): Likewise.
2703 * dfp.c (decimal_from_floating): Use DOUBLEST_PRINT_FORMAT.
2704 * ada-lex.l (processReal): Prepend "%" to use of DOUBLEST_SCAN_FORMAT.
2705 * c-exp.y (parse_number): Likewise.
2706 * jv-exp.y (parse_number): Likewise.
2707 * objc-exp.y (parse_number): Likewise.
2708 * p-exp.y (parse_number): Likewise.
2709
2710 2008-01-09 Joel Brobecker <brobecker@adacore.com>
2711
2712 * gdbtypes.c (create_array_type): Add handling of null Ada arrays.
2713 (check_typedef): Likewise.
2714
2715 2008-01-09 Luis Machado <luisgpm@br.ibm.com>
2716
2717 * printcmd.c (printf_command): Add seen_big_h, seen_big_d and
2718 seen_double_big_d, treat the new H, D, and DD modifiers as length
2719 modifiers.
2720
2721 2008-01-08 Joel Brobecker <brobecker@adacore.com>
2722
2723 * dwarf2read.c (read_enumeration_type): Add comment.
2724
2725 2008-01-08 Thiago Jung Bauermann <bauerman@br.ibm.com>
2726
2727 * config.in: Regenerate.
2728
2729 2008-01-08 Joel Brobecker <brobecker@adacore.com>
2730
2731 * ada-lang.c (ada_convert_actual): Renames convert_actual.
2732 Make non-static.
2733 (ada_convert_actuals): Delete.
2734 * ada-lang.h (ada_convert_actual): Add declaration.
2735 (ada_convert_actuals): Remove declaration.
2736 * infcall.c: #include "ada-lang.h".
2737 (value_arg_coerce): Add new parameter sp. Update function
2738 documetnation. Add handling of Ada function call parameters.
2739 * Makefile.in (infcall.o): Update dependencies.
2740
2741 2008-01-08 Paul Hilfinger <hilfinger@adacore.com>
2742
2743 * ada-lang.c (ensure_lval): Fix value lval kind.
2744 (convert_actual): Add handling for arguments passed by reference.
2745
2746 2008-01-08 Doug Evans <dje@google.com>
2747
2748 * dbxread.c (read_dbx_symtab): Fix indentation.
2749
2750 2008-01-07 Thiago Jung Bauermann <bauerman@br.ibm.com>
2751
2752 * Makefile.in (dfp.o): Depend on expression.h, gdbtypes.h and value.h.
2753 (valarith.o): Depend on dfp.h.
2754 (valops.o): Likewise.
2755 * dfp.c: Include expression.h, gdbtypes.h, value.h and dfp.h.
2756 (set_decnumber_context): New function.
2757 (decimal_check_errors): Likewise.
2758 (decimal_from_number): Likewise.
2759 (decimal_to_number): Likewise.
2760 (decimal_from_string): Use set_decnumber_context and
2761 decimal_check_errors.
2762 (decimal_from_integral): New function.
2763 (decimal_from_floating): Likewise.
2764 (decimal_to_double): Likewise.
2765 (promote_decimal): Likewise.
2766 (decimal_binop): Likewise.
2767 (decimal_is_zero): Likewise.
2768 (decimal_compare): Likewise.
2769 (decimal_convert): Likewise.
2770 * dfp.h (decimal_from_integral): New prototype.
2771 (decimal_from_floating): Likewise.
2772 (decimal_to_double): Likewise.
2773 (decimal_binop): Likewise.
2774 (decimal_is_zero): Likewise.
2775 (decimal_compare): Likewise.
2776 (decimal_convert): Likewise.
2777 * eval.c (evaluate_subexp_standard): Remove expect_type argument from
2778 call to value_from_decfloat.
2779 * valarith.c: Include dfp.h.
2780 (value_args_as_decimal): New function.
2781 (value_binop): Add if block to handle TYPE_CODE_DECFLOAT values.
2782 (value_logical_not): Likewise.
2783 (value_equal): Likewise.
2784 (value_less): Likewise.
2785 (value_pos): Likewise.
2786 (value_neg): Formatting fix.
2787 * valops.c: Include dfp.h.
2788 (value_cast): Add if block to handle TYPE_CODE_DECFLOAT values.
2789 * value.c (unpack_long): Add case to handle TYPE_CODE_DECFLOAT.
2790 (unpack_double): Add if block to handle TYPE_CODE_DECFLOAT.
2791 (value_from_decfloat): Remove expect_type argument.
2792 * value.h (value_from_decfloat): Update prototype.
2793
2794 2008-01-07 Vladimir Prus <vladimir@codesourcery.com>
2795
2796 Ignore change in name of dynamic linker during
2797 execution on Solaris. This also unbreaks pending breakpoints.
2798
2799 * solist.h (struct target_so_ops): New field same.
2800 * solib-svr4.c (svr4_same): New.
2801 (_initialize_svr4_solib): Register svr4_same.
2802 * solib.c (update_solib_list): Use ops->same, if available.
2803
2804 2008-01-06 Christopher Faylor <me+cygwin@cgf.cx>
2805
2806 * win32-nat.c (win32_make_so): Use cygwin-style path to avoid warnings
2807 when using MS-DOS paths.
2808
2809 2008-01-05 Pedro Alves <pedro@codesourcery.com>
2810
2811 * NEWS: Mention --pid and --core command line behaviour changes.
2812
2813 2008-01-05 Pedro Alves <pedro@codesourcery.com>
2814
2815 * main.c (captured_main): Remove 'count' varible and the
2816 ALIGN_STACK_ON_ENTRY block that used it. Error out if --core and
2817 --pid options were issued simultaneously. If an explicit pid
2818 option was passed, don't fallback to core file. Detect extra
2819 arguments better in the presence of explicit pid or core
2820 arguments.
2821
2822 2008-01-05 Joel Brobecker <brobecker@adacore.com>
2823
2824 * ada-lang.c (ada_which_variant_applies): Correctly compute
2825 the value of the discriminant when the variant record is packed.
2826
2827 2008-01-04 Joel Brobecker <brobecker@adacore.com>
2828
2829 * ada-lang.c (is_name_suffix): Handle middle-name numeric suffixes
2830 that are used to differentiate homonyms.
2831
2832 2008-01-04 Jerome Guitton <guitton@adacore.com>
2833
2834 * ada-lang.c (decode_packed_array_type): Avoid a seg fault
2835 when the type is an anonymous pointer type.
2836 (ada_check_typedef): Avoid a seg fault when the type is null.
2837 * ada-typeprint.c (print_array_type): Add support for pointer
2838 to packed arrays.
2839
2840 2008-01-04 Paul N. Hilfinger <hilfinger@adacore.com>
2841
2842 * ada-exp.y: Allow '{type} ADDRESS' notation on left of assignment.
2843
2844 2008-01-04 Joel Brobecker <brobecker@adacore.com>
2845
2846 * ada-lang.c (ada_evaluate_subexp): Evaluate tagged types in
2847 EVAL_NORMAL mode when noside is EVAL_AVOID_SIDE_EFFECTS.
2848
2849 2008-01-04 Joel Brobecker <brobecker@adacore.com>
2850
2851 * ada-exp.y (chop_separator): New function.
2852 (write_selectors): Rewrite to re-use chop_separator.
2853 (ada_nget_field_index, get_symbol_field_type): New functions.
2854 (write_var_or_type): Add support for "ptype TYPENAME.FIELD"
2855 expressions.
2856
2857 2008-01-03 Thiago Jung Bauermann <bauerman@br.ibm.com>
2858
2859 * symtab.c (find_pc_sect_line): Use SYMBOL_VALUE_ADDRESS instead
2860 of SYMBOL_VALUE when working with function symbols.
2861
2862 2008-01-03 Joel Brobecker <brobecker@adacore.com>
2863
2864 * ada-lang.c (resolve_subexp): Add handling of OP_REGISTER
2865 expressions. These expressions do not need to be rewriten.
2866
2867 2008-01-03 Joel Brobecker <brobecker@adacore.com>
2868
2869 * dwarf2read.c (read_enumeration_type): Flag type as stub if
2870 the given die is a declaration.
2871
2872 2008-01-03 Joel Brobecker <brobecker@adacore.com>
2873
2874 * ada-lang.c (ada_array_bound_from_type): Make non-static.
2875 Handle properly the case when the index type is an enumerated type.
2876 Do not return the subtype of the bounds type, just return the
2877 bounds type directly - this is not needed and is more consistent
2878 with what we do for arrays when no XA parallel type exists.
2879
2880 2008-01-03 Joel Brobecker <brobecker@adacore.com>
2881
2882 * ada-lang.c (static_unwrap_type): Add forward declaration.
2883 (template_to_static_fixed_type): Fields of dynamic types sometimes
2884 also need to be unwrapped. Take this into account.
2885 (ada_to_fixed_type_1): Renamed from ada_to_fixed_type.
2886 (ada_to_fixed_type): New wrapper around ada_to_fixed_type_1.
2887 * ada-typeprint.c (ada_print_type): Get the typename from
2888 the original type, not the base type.
2889
2890 2008-01-03 Jerome Guitton <guitton@adacore.com>
2891
2892 * ada-lang.c (ada_value_struct_elt, to_fixed_array_type)
2893 (to_fixed_array_type, ada_to_fixed_value_create, unwrap_value):
2894 Update calls to ada_to_fixed_type.
2895 (ada_template_to_fixed_record_type_1): Ditto, but without looking
2896 for the tag.
2897 (ada_to_fixed_type): Add check_tag parameter; do not look for
2898 tag if null. When looking for a tag, use a fixed record type.
2899 * ada-lang.h (ada_to_fixed_type): Add check_tag parameter.
2900 * ada-valprint.c (printable_val_type, ada_value_print): Update
2901 calls to ada_to_fixed_type.
2902
2903 2008-01-03 Luis Machado <luisgpm@br.ibm.com>
2904
2905 * doublest.c (convert_floatformat_to_doublest): Call
2906 floatformat_to_doublest instead of floatformat_to_double and use
2907 DOUBLEST variables.
2908 (convert_doublest_to_floatformat): Call floatformat_from_doublest
2909 instead of floatformat_from_double and use DOUBLEST variables.
2910
2911 2008-01-03 Nick Hudson <nick.hudson@dsl.pipex.com>
2912
2913 * MAINTAINERS (Write After Approval): Add self.
2914
2915 2008-01-03 Joel Brobecker <brobecker@adacore.com>
2916
2917 * symfile.c (set_initial_language): Make non-static.
2918 * symfile.h (set_initial_language): Add declaration.
2919 * language.c: #include "symfile.h".
2920 (set_language): Call set_initial_language if the frame language
2921 could not be determined.
2922
2923 2008-01-03 Paul N. Hilfinger <hilfinger@adacore.com>
2924
2925 * eval.c (evaluate_subexp_for_address): Provide frame address to
2926 locate_var_value only if it will be needed.
2927
2928 2008-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2929
2930 * linux-nat.c (linux_child_follow_fork): Call also CHECK_FOR_THREAD_DB.
2931
2932 2008-01-02 Joel Brobecker <brobecker@adacore.com>
2933
2934 * ada-lang.c (ada_evaluate_subexp): Modify the value returned
2935 when noside is EVAL_AVOID_SIDE_EFFECTS to be an lval_memory.
2936 This is needed to make sure that any other treatment applied
2937 to the resulting value does not fail for spurious reason,
2938 such as trying to take the address of this value.
2939
2940 2008-01-02 Joel Brobecker <brobecker@adacore.com>
2941
2942 * ada-lang.c (ada_value_equal): Dereference reference types when
2943 comparing arrays.
2944
2945 2008-01-01 Daniel Jacobowitz <dan@codesourcery.com>
2946
2947 Updated copyright notices for most files.
2948
2949 2008-01-01 Christopher Faylor <me+gdb@cgf.cx>
2950
2951 * win32-nat.c (psapi_module_handle): Remove static.
2952 (get_module_name): Rename from psapi_get_dll_name. Revamp slightly to
2953 return first module found if base_address is zero. Don't initialize
2954 psapi function pointers here. Convert to cygwin paths when
2955 appropriate.
2956 (win32_pid_to_exec_file): Use Cygwin's /proc interface to determine
2957 executable name. Use get_module_name when that fails or when
2958 !__CYGWIN__.
2959 (_initialize_psapi): New function. Initialize psapi stuff before it is
2960 needed or issue a warning if it is not found. Move psapi_module_handle
2961 here.
2962
2963 2008-01-01 Joel Brobecker <brobecker@adacore.com>
2964
2965 * ada-lang.c (ada_remove_trailing_digits): New function.
2966 (ada_remove_po_subprogram_suffix): New function.
2967 (ada_decode): Improve. Move the description of the algorithm
2968 directly inside the code, instead of in the function global
2969 description.
2970
2971 2008-01-01 Joel Brobecker <brobecker@adacore.com>
2972
2973 * ada-valprint.c (ada_val_print_1) [TYPE_CODE_REF]: Ignore deref_ref
2974 and always print the dereferenced value.
2975
2976 2008-01-01 Joel Brobecker <brobecker@adacore.com>
2977
2978 * ada-lang.c (ada_evaluate_subexp, case BINOP_SUB): Add handling
2979 of the case where the first argument is a reference.
2980 (ada_evaluate_subexp, case BINOP_ADD): Likewise.
2981
2982 2008-01-01 Joel Brobecker <brobecker@adacore.com>
2983
2984 Implement support for Ada interface types.
2985
2986 * ada-lang.c (ada_is_dispatch_table_ptr_type): New function.
2987 (ada_is_ignored_field): Ignore fields that are a dispatch table
2988 of a tagged type.
2989
2990 2008-01-01 Joel Brobecker <brobecker@adacore.com>
2991
2992 * top.c (print_gdb_version): Update copyright year.
2993
2994 2008-01-01 Joel Brobecker <brobecker@adacore.com>
2995
2996 * ChangeLog-2007: New ChangeLog rotation.
2997 * ChangeLog: Reset for 2008.
2998 * config/djgpp/fnchange.lst: Add entries for ChangeLog-2006 and
2999 ChangeLog-2007.
3000
3001 For older changes see ChangeLog-2007.
3002 \f
3003 Local Variables:
3004 mode: change-log
3005 left-margin: 8
3006 fill-column: 74
3007 version-control: never
3008 coding: utf-8
3009 End:
This page took 0.089245 seconds and 5 git commands to generate.