* varobj.c (struct varobj_root): Clarify
[binutils-gdb.git] / gdb / ChangeLog
1 2008-03-23 Vladimir Prus <vladimir@codesourcery.com>
2
3 * varobj.c (struct varobj_root): Clarify
4 comment on the frame field.
5 (varobj_create): Don't set frame if we have no
6 block.
7
8 2008-03-21 Daniel Jacobowitz <dan@codesourcery.com>
9
10 PR gdb/544
11 Suggested by Jan Kratochvil:
12 * top.c (gdb_rl_operate_and_get_next_completion): Call
13 rl_redisplay_function.
14 (gdb_rl_redisplay): New.
15 (init_main): Set rl_redisplay_function.
16
17 2008-03-21 Thomas Mittelstaedt <T.Mittelstaedt@cadenas.de> (tiny change)
18
19 * aix-thread.c (pdc_read_regs): Fix compiler warning.
20 (pdc_write_regs, aix_thread_resume, fetch_regs_kernel_thread)
21 (store_regs_kernel_thread): Likewise.
22
23 2008-03-21 Pedro Alves <pedro@codesourcery.com>
24
25 Linux native async support.
26
27 * target.h (struct target_ops): Delete to_async_mask_value and add
28 to_async_mask.
29 (target_is_async_p, target_async): Formatting.
30 (target_async_mask_value): Delete.
31 (target_async_mask): Delete function declaration, and add new
32 target macro with the same name.
33
34 * target.c (update_current_target): Replace to_async_mask_value by
35 to_async_mask. Default to_async_mask to return_one.
36 (target_async_mask): Delete.
37 (find_default_can_async_p, find_default_is_async_p): New.
38 (init_dummy_target): register find_default_can_async_p and
39 find_default_is_async_p on the dummy target.
40
41 * linux-nat.c: Include inf-loop.h, event-loop.h and event-top.h.
42 (debug_linux_nat_async): New global.
43 (show_debug_linux_nat_async): New function.
44 (linux_nat_async_enabled, linux_nat_async_mask_value)
45 (linux_nat_event_pipe, linux_nat_num_queued_events)
46 (linux_nat_async_events_enabled): New globals.
47 (struct waitpid_result): New struct.
48 (waitpid_queue): New global.
49 (queued_waitpid, push_waitpid, drain_queued_events): New.
50 (my_waitpid): Call queued_waitpid.
51 (linux_child_follow_fork): Disable async events during the call.
52 (blocked_mask): Delete.
53 (sync_sigchld_action, async_sigchld_action): New globals.
54 (lin_lwp_attach_lwp): In sync mode, don't reblock SIGCHLD. In
55 async mode, block events during the call.
56 (linux_nat_create_inferior): New.
57 (linux_nat_attach): In sync mode, restore the mask states. In
58 async mode, wake the event loop immediatelly.
59 (detach_callback): Drain all queued events of the lwp we're
60 detaching from.
61 (linux_nat_detach): Block async mode, and drain events of the main
62 process.
63 (linux_nat_resume): If in async mode, mask async events during the
64 call. If short circuiting, force event loop to wake up. If
65 resuming, set target_executing, and register target events in the
66 event loop.
67 (pipe_to_local_event_queue, local_event_queue_to_pipe): New.
68 (linux_nat_wait): In async mode, block events during the call.
69 Only enable/disable passing SIGINT to the inferior in sync mode.
70 Get events from local waitpid queue. If no interesting events was
71 found, return to events loop. Reregister target events in the
72 event loop on exit. In sync mode, no need to reblock SIGCHLD.
73 (linux_nat_kill): Disable events on entry.
74 (linux_nat_mourn_inferior): In sync mode, don't restore the masks
75 here. Detach async mode from the event loop if there are no more
76 forks available, otherwise leave it on.
77 (sigchld_handler): Assure this is called only in sync mode.
78 (linux_async_permitted, linux_async_permitted_1): New globals.
79 (set_maintenance_linux_async_permitted)
80 (show_maintenance_linux_async_permitted): New functions.
81 (linux_nat_is_async_p, linux_nat_can_async_p)
82 (linux_nat_async_mask): New.
83 (linux_nat_event_pipe_pop, linux_nat_event_pipe_push): New.
84 (get_pending_events, async_sigchld_handler): New.
85 (linux_nat_async_events): New.
86 (async_terminal_is_ours): New global.
87 (linux_nat_terminal_inferior, linux_nat_terminal_ours): New.
88 (async_client_callback, async_client_context): New.
89 (linux_nat_async_file_handler, linux_nat_async)
90 (linux_nat_disable_async, linux_nat_enable_async): New.
91 (linux_nat_add_target): Register linux_nat_create_inferior,
92 linux_nat_can_async_p, linux_nat_is_async_p, linux_nat_async,
93 linux_nat_async_mask, linux_nat_terminal_inferior and
94 linux_nat_terminal_ours.
95 (_initialize_linux_nat): Remove local action variable, and update
96 code that used it to use sync_sigchld_action. Add new
97 "lin-lwp-async" debug set/show command. Put the "lin-lwp" debug
98 set/show command in the maintenance class. Add new "linux-async"
99 maintenance set/show command. Block SIGCHLD by default. Setup
100 async_sichld_action, and sync_sigchld_action. Install the default
101 async mode.
102 (lin_thread_get_thread_signals): Use a local sigset_t for blocking
103 the cancel signals.
104
105 * linux-thread-db.c (re_check_for_thread_db): New.
106 (clear_lwpid_callback): Handle TARGET_WAITKIND_IGNORE.
107 (thread_db_can_async_p, thread_db_is_async_p, thread_db_async)
108 (thread_db_async_mask): New.
109 (init_thread_db_ops): Register thread_db_can_async_p,
110 thread_db_is_async_p, thread_db_async and thread_db_async_mask.
111
112 * remote.c (remote_async_mask_value): New.
113 (remote_return_zero): New.
114 (init_remote_ops): Register remote_return_zero as callbacks of
115 to_can_async_p and to_is_async_p.
116 (remote_can_async_p, remote_is_async_p, remote_async): Update to
117 use remote_async_mask_value.
118 (remote_async_mask): New.
119 (init_remote_async_ops): Remove to_async_mask_value setting and
120 register remote_async_mask as to_async_mask callback in
121 remote_async_ops.
122
123 * Makefile.in (linux-nat.o): Update.
124
125 2008-03-21 Daniel Jacobowitz <dan@codesourcery.com>
126
127 * gdbthread.h (add_thread_with_info): New.
128 * linux-thread-db.c: Add some documentation.
129 (GET_LWP, GET_PID, GET_THREAD, is_lwp, is_thread, BUILD_LWP): Delete.
130 (struct private_thread_info): Remove th_valid and ti_valid.
131 Replace ti with tid.
132 (thread_get_info_callback): Do not add TID to the new ptid. Do
133 not cache th or ti.
134 (thread_db_map_id2thr, lwp_from_thread): Delete functions.
135 (thread_from_lwp): Assert that the LWP is set. Do not add TID to the
136 new PTID.
137 (attach_thread): Handle an already-existing thread. Use
138 add_thread_with_info. Cache the th and tid.
139 (detach_thread): Verify that private was set. Remove verbose
140 argument and printing. Update caller.
141 (thread_db_detach): Do not adjust inferior_ptid.
142 (clear_lwpid_callback, thread_db_resume, thread_db_kill): Delete.
143 (check_event, find_new_threads_callback): Do not add TID to the new PTID.
144 (thread_db_wait): Do not use lwp_from_thread.
145 (thread_db_pid_to_str): Use the cached TID.
146 (thread_db_extra_thread_info): Check that private is set.
147 (same_ptid_callback): Delete.
148 (thread_db_get_thread_local_address): Do not use it or check
149 is_thread. Check that private is set. Assume that the thread
150 handle is already cached.
151 (init_thread_db_ops): Remove to_resume and to_kill.
152 * thread.c (add_thread_with_info): New.
153 (add_thread): Use it.
154 * linux-nat.c (find_thread_from_lwp): Delete.
155 (exit_lwp): Do not use it. Check print_thread_events. Print before
156 deleting the thread.
157 (GET_PID, GET_LWP, BUILD_LWP, is_lwp): Move to...
158 * linux-nat.h (GET_PID, GET_LWP, BUILD_LWP, is_lwp): ...here.
159 * inf-ttrace.c (inf_ttrace_wait): Use print_thread_events and
160 printf_unfiltered for thread exits.
161 * procfs.c (procfs_wait): Likewise.
162
163 2008-03-21 Chris Demetriou <cgd@google.com>
164
165 * symtab.c (rbreak_command): Quote symbol name before passing
166 it to break_command.
167
168 2008-03-21 Daniel Jacobowitz <dan@codesourcery.com>
169
170 * eval.c (evaluate_subexp_for_address): Clarify error message.
171 Use value_must_coerce_to_target.
172 * infcall.c (value_arg_coerce): Call value_coerce_to_target.
173 * valops.c (value_assign): Call value_coerce_to_target when
174 assigning to anything but internalvars. Leave GDB-side arrays
175 as arrays when assigning to internalvars.
176 (value_must_coerce_to_target, value_coerce_to_target): New.
177 (value_coerce_array, value_addr): Call value_coerce_to_target.
178 (value_array): Create the array in GDB's memory instead of
179 the inferior's.
180 * value.h (value_must_coerce_to_target, value_coerce_to_target):
181 Declare.
182
183 2008-03-21 Daniel Jacobowitz <dan@codesourcery.com>
184
185 * top.c (quit_confirm): Warn that we will kill the program.
186
187 2008-03-19 Pedro Alves <pedro@codesourcery.com>
188
189 * inflow.c (terminal_ours_1): Guard access to
190 inferior_process_group with #ifdef PROCESS_GROUP_TYPE.
191
192 2008-03-18 Ulrich Weigand <uweigand@de.ibm.com>
193 Jim Blandy <jimb@codesourcery.com>
194 Daniel Jacobowitz <drow@false.org>
195
196 * dwarf2expr.h (struct dwarf_expr_context): Add ADDR_SIZE member.
197 (dwarf2_read_address): Update prototype.
198
199 * dwarf2expr.c (unsigned_address_type): Add ADDR_SIZE parameter.
200 (signed_address_type): Likewise.
201 (dwarf2_read_address): Replace BYTES_READ parameter with ADDR_SIZE.
202 (execute_stack_op): Update calls to unsigned_address_type,
203 signed_address_type and dwarf2_read_address. Fix implementation
204 of DW_OP_deref_size.
205
206 * dwarf2loc.h (dwarf2_per_cu_objfile): Add prototype.
207 (dwarf2_per_cu_addr_size): Likewise.
208 (struct dwarf2_locexpr_baton): Replace OBJFILE with PER_CU.
209 (struct dwarf2_loclist_baton): Likewise.
210
211 * dwarf2loc.c (find_location_expression): Update calls to
212 dwarf2_read_address. Use dwarf2_per_cu_objfile and
213 dwarf2_per_cu_addr_size to retrieve PER_CU parameters.
214 (locexpr_describe_location): Likewise.
215 (dwarf2_evaluate_loc_desc): Replace OBJFILE with PER_CU parameter.
216 Set ctx->addr_size to dwarf2_per_cu_addr_size (per_cu).
217 (dwarf2_loc_desc_needs_frame): Add PER_CU parameter. Set ctx->addr_size
218 to dwarf2_per_cu_addr_size (per_cu).
219 (locexpr_read_variable): Update dwarf2_evaluate_loc_desc call.
220 (loclist_read_variable): Likewise.
221 (locexpr_read_needs_frame): Update dwarf2_loc_desc_needs_frame call.
222
223 * dwarf2read.c (dwarf2_symbol_mark_computed): Set baton->per_cu
224 instead of baton->objfile.
225 (dwarf2_per_cu_obfile): New function.
226 (dwarf2_per_cu_addr_size): Likewise.
227
228 * dwarf2-frame.c (struct comp_unit): Move higher.
229 (struct dwarf2_cie): Add UNIT and ADDR_SIZE members.
230 (execute_stack_op): Add ADDR_SIZE parameter; set ctx->addr_size.
231 (execute_cfa_program): Add FDE parameter. Replace EH_FRAME_P
232 parameter by using fde->eh_frame_p. Use read_encoded_value
233 to implement DW_CFA_set_loc.
234 (struct dwarf2_frame_cache): Add ADDR_SIZE member.
235 (dwarf2_frame_cache): Set cache->addr_size. Update calls to
236 execute_stack_op and execute_cfa_program.
237 (dwarf2_frame_prev_register): Update calls to execute_stack_op.
238 (size_of_encoded_value): Remove.
239 (read_encoded_value): Add PTR_LEN and FUNC_BASE parameters.
240 Remove call to size_of_encoded_value. Implement DW_EH_PE_funcrel.
241 (add_cie): Set cie->unit backlink.
242 (decode_frame_entry_1): Set cie->addr_size. Update calls to
243 read_encoded_value.
244 (dwarf2_build_frame_info): Allocate UNIT on objfile obstack.
245
246 2008-03-17 Markus Deuling <deuling@de.ibm.com>
247
248 * i386-tdep.c (i386_print_insn): Remove unnecessary call to
249 gdbarch_bfd_arch_info.
250
251 2008-03-17 Joel Brobecker <brobecker@adacore.com>
252
253 * aix-thread.c (pdc_read_regs): Minor reformatting.
254
255 2008-03-17 Vladimir Prus <vladimir@codesourcery.com>
256
257 * thread.c (print_thread_info): Don't insist
258 on having current thread if there are no
259 threads at all.
260
261 2008-03-17 Pedro Alves <pedro@codesourcery.com>
262
263 * infcmd.c (attach_command_post_wait)
264 (attach_command_continuation): New.
265 (attach_command): Support background async execution, and async
266 execution in synchronous mode.
267
268 2008-03-17 Daniel Jacobowitz <dan@codesourcery.com>
269
270 * stack.c (print_stack_frame, print_frame): Use RETURN_MASK_ERROR.
271 * symmisc.c (dump_symtab_1): Likewise.
272 * wrapper.c (gdb_value_struct_elt): Likewise.
273
274 2008-03-17 Pedro Alves <pedro@codesourcery.com>
275
276 * linux-nat.c (linux_nat_filter_event): Fix comment typo.
277
278 2008-03-17 Pedro Alves <pedro@codesourcery.com>
279
280 * linux-nat.c (linux_nat_filter_event): New, refactored from
281 linux_nat_wait.
282 (linux_nat_wait): Call linux_nat_filter_event.
283
284 2008-03-17 Ulrich Weigand <uweigand@de.ibm.com>
285
286 * top.c (execute_command): Fix uninitialized variable error.
287
288 2008-03-16 Nick Hudson <nick.hudson@dsl.pipex.com>
289
290 * Makefile.in (amd64nbsd-nat.o): New dependency.
291 * amd64nbsd-nat.c: Include "nbsd-nat.h".
292 (_initialize_amd64nbsd_nat): Update target vector to use
293 nbsd_pid_to_exec_file.
294 * config/i386/nbsd64.mh (NATDEPFILES): Add nbsd-nat.o.
295
296 2008-03-15 Vladimir Prus <vladimir@codesourcery.com>
297
298 Remove ignoring leading exec events code.
299 * fork-child.c (startup_inferior): Do not set
300 inferior_ignoring_leading_exec_events.
301 * inf-child.c (inf_child_reported_exec_events_per_exec_call): Remove.
302 (inf_child_target): Do not set to_reported_exec_events_per_exec_call.
303 * infrun.c (inferior_ignoring_leading_exec_events): Remove.
304 (handle_inferior_event): Remove code for ignoring leading exec
305 events.
306 * target.c (update_current_target): Do not inherit, or default,
307 to_reported_exec_events_per_exec_call.
308 (debug_to_reported_exec_events_per_exec_call): Remove.
309 (setup_target_debug): Do not set to_reported_exec_events_per_exec_call.
310 * target.h (target_reported_exec_events_per_exec_call): Remove.
311 (struct target): Remove the to_reported_exec_events_per_exec_call
312 field.
313
314 2008-03-15 Vladimir Prus <vladimir@codesourcery.com>
315
316 Implement -thread-info.
317 * gdbthread.h (print_thread_info): Declare.
318
319 * thread.c (print_thread_info): New, extracted
320 from info_threads_command and adjusted to
321 work for CLI and MI.
322 (info_threads_command): Use print_thread_info.
323 * Makefile.in: Update dependencies.
324
325 * mi/mi-cmds.c (mi_cmds): Specify a handler
326 for -thread-info.
327 * mi/mi-cmds.h (mi_cmd_thread_info): Declare.
328 * mi/mi-main.c (mi_cmd_thread_info): New.
329 (mi_cmd_list_features): Include 'thread-info'.
330
331 2008-03-14 Kevin Buettner <kevinb@redhat.com>
332
333 * mips-tdep.c (mips32_scan_prologue): Use the ABI register size
334 to decide whether to match instruction patterns using "sw" and "sd".
335
336 2008-03-14 Pedro Alves <pedro@codesourcery.com>
337
338 * infcmd.c (jump_command): Postpone disabling stdin until after
339 the possible query.
340
341 2008-03-14 Pedro Alves <pedro@codesourcery.com>
342
343 * inflow.c (gdb_getpgrp): New.
344 (gdb_has_a_terminal): Use get_getpgrp.
345 (terminal_ours_1): If attach_flag is set, don't refetch
346 inferior_process_group.
347
348 2008-03-14 Pedro Alves <pedro@codesourcery.com>
349
350 * features/library-list.dtd: Allow "section" elements as children
351 of "library". Add "section" element and describe its attributes.
352
353 * solib-target.c (struct lm_info): Add section_bases member.
354 (library_list_start_segment): Error out if seen a section element.
355 (library_list_start_section): New.
356 (library_list_end_library): New.
357 (solib_target_free_library_list): Free section_bases.
358 (section_attributes): New.
359 (library_children): Make "segment" optional. Add "section" child.
360 (library_list_children): Register library_list_end_library.
361 (solib_target_relocate_section_addresses): Handle section bases.
362
363 * NEWS: Mention new qXfer:libraries:read section offsets support.
364
365 2008-03-14 Vladimir Prus <vladimir@codesourcery.com>
366
367 * defs.h (do_exec_error_cleanups, discard_exec_error_cleanups)
368 (make_exec_error_cleanup): Remove declarations.
369 * utils.c (exec_error_cleanup_chain): Remove.
370 (do_exec_error_cleanups, discard_exec_error_cleanups)
371 (make_exec_error_cleanup): Remove.
372 * event-loop.c (start_event_loop): Adjust call to
373 async_enable_stdin.
374 * event-top.c (async_enable_stdin): Remove the paramater dummy.
375 (async_disable_stdin): Don't register async_enable_stdin via
376 cleanup.
377 * inf-loop.c (inferior_event_handler): Don't
378 call do_exec_error_cleanups. Call async_enable_stdin instead.
379 * event-loop.c (start_event_loop): Adjust call to
380 async_enable_stdin.
381 * tui/tui-interp.c (tui_command_loop): Adjust call to
382 async_enable_stdin.
383
384 2008-03-14 Vladimir Prus <vladimir@codesourcery.com>
385
386 Async mode fixes.
387 * Makefile.in (infcmd.o, inf-loop.o): Update dependencies.
388 * breakpoint.c (bpstat_do_actions): In async mode,
389 don't jump to top expecting stop_bpstat to be already
390 updated.
391 * event-loop.c (start_event_loop): Call async_enable_stdin
392 on exception.
393 * event-top.c (async_enable_stdin): Do nothing if sync_execution
394 is not set.
395 (command_handler): Do not setup continuation here.
396 (command_line_handler_continuation): Move to...
397 * top.c (command_line_handler_continuation): ... here.
398 (execute_command): In async mode, register continuation.
399 Don't check frame's language in running in async mode.
400 * exceptions.c (throw_exception): Don't do exec_error_cleanups.
401 * inf-loop.c (complete_execution): Inline into...
402 (inferior_event_handler): ... here. Clear target_executing before
403 doing any cleanups. Don't try to show prompt if the target was
404 resumed.
405 * infcmd.c (signal_command): Add support for async mode.
406 (finish_command): Only add continuation if the target was
407 successfully resumed.
408 * remote.c (init_async_opts): Register to_get_thread_local_address
409 handler.
410 * mi/mi-interp.c (mi_cmd_interpreter_exec): Don't mess
411 with sync_execution.
412 * tui/tui-interp.c (tui_command_loop): Call async_enable_stdin
413 on exception.
414
415 2008-03-14 Daniel Jacobowitz <dan@codesourcery.com>
416
417 * corefile.c (reopen_exec_file): Use exec_bfd_mtime.
418 * exec.c (exec_bfd_mtime): Define.
419 (exec_close): Clear it.
420 (exec_file_attach): Set it.
421 * gdbcore.h (exec_bfd_mtime): Declare.
422 * source.c (find_source_lines): Do not use bfd_get_mtime.
423
424 2008-03-14 Vladimir Prus <vladimir@codesourcery.com>
425
426 * top.c (simplified_command_loop): Remove.
427
428 2008-03-14 Vladimir Prus <vladimir@codesourcery.com>
429
430 Remove unused remote.c hooks.
431 * remote.c (deprecated_target_resume_hook)
432 (deprecated_target_wait_loop_hook): Remove.
433 (remote_resume): Do not call deprecated_target_resume_hook.
434 (remote_wait): Do not call deprecated_target_wait_loop_hook.
435 (remote_async_wait): Likewise.
436
437 2008-03-14 Vladimir Prus <vladimir@codesourcery.com>
438
439 Implement MI notification for new threads.
440 * doc/observer.texi (new_thread): Document.
441 * observer.sh: Forward declare struct thread_info.
442 * thread.c (add_thread): Notify observer.
443
444 * interps.h (interp_init_ftype): New parameter
445 top_level.
446 (interp_set): Likewise.
447 (top_level_interpreter_data): Declare.
448 * interps.c (interp_set): New parameter top_level.
449 Pass it to interpreter's init function. Remember
450 top level interpreter.
451 (interpreter_exec_cmd): Adjust.
452 (top_level_interpreter_data): New.
453 * main.c (captured_main): Pass 1 for top_level
454 parameter of interp_set.
455 * cli/cli-interp.c (cli_interpreter_init): New
456 parameter top_level.
457 * tui/tui-interp.c (tui_init): New parameter top_level.
458
459 * mi/mi-interp.c (mi_new_thread): New.
460 (mi_interpreter_init): If top level, register
461 observer for new threads.
462
463 * Makefile.in (mi-interp.o, thread.o): Update dependencies.
464
465 2008-03-14 Pedro Alves <pedro@codesourcery.com>
466
467 * top.c (execute_command): Disable break and stop
468 commands in async mode.
469
470 2008-03-14 Pedro Alves <pedro@codesourcery.com>
471
472 revert:
473 2008-03-14 Pedro Alves <pedro@codesourcery.com>
474 * inf-loop.c (inferior_event_handler): Don't include remote.h.
475 Call target_stop in the INF_QUIT_REQ case.
476 * Makefile.in (inf-loop.o): Update.
477
478 2008-03-14 Pedro Alves <pedro@codesourcery.com>
479
480 * inf-loop.c (inferior_event_handler): Don't include remote.h.
481 Call target_stop in the INF_QUIT_REQ case.
482 * Makefile.in (inf-loop.o): Update.
483
484 2008-03-14 Pedro Alves <pedro@codesourcery.com>
485
486 * top.c (execute_command): Enable break, info and interrupt
487 commands in async mode.
488
489 2008-03-13 Vladimir Prus <vladimir@codesourcery.com>
490 Daniel Jacobowitz <dan@codesourcery.com>
491
492 * breakpoint.h (breakpoint_restore_shadows): New
493 declaration.
494 * breakpoint.c (breakpoint_restore_shadows): New.
495 (read_memory_nobpt): Delete.
496 * gdbcore.h (read_memory_nobpt): Delete declaration.
497 * target.c (memory_xfer_partial): Call
498 breakpoint_restore_shadows.
499 (restore_show_memory_breakpoints)
500 (make_show_memory_beakpoints_cleanup): New.
501 (show_memory_breakpoints): New.
502 * target.h (make_show_memory_beakpoints_cleanup): Declare.
503 * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint):
504 Make sure we see memory breakpoints when checking if
505 breakpoint is still there.
506 * alpha-tdep.c, alphanbsd-tdep.c, frame.c, frv-tdep.c,
507 hppa-linux-tdep.c, hppa-tdep.c, i386-linux-nat.c, i386-tdep.c,
508 m68klinux-tdep.c, mips-tdep.c, mn10300-tdep.c, s390-tdep.c,
509 sparc-tdep.c: Use target_read_memory instead of read_memory_nobpt.
510
511 2008-03-12 Pedro Alves <pedro@codesourcery.com>
512
513 * thread.c (add_thread): Use printf_unfiltered to print.
514
515 2008-03-12 Joel Brobecker <brobecker@gnat.com>
516
517 * sol-thread.c: Replace use of TM_I386SOL2_H by an expression
518 that is true only on x86-solaris and x86_64-solaris.
519 * procfs.c: Likewise. Move procfs_find_LDT_entry up together
520 with proc_get_LDT_entry.
521
522 2008-03-12 Thiago Jung Bauermann <bauerman@br.ibm.com>
523
524 * configure.ac (AC_CHECK_FUNCS): Add check for setsid.
525 * config.in, configure: Regenerate.
526 * fork-child.c (fork_inferior): Call create_tty_session.
527 * inflow.c (new_tty): Set controlling terminal with TIOCSCTTY.
528 (create_tty_session): New function.
529 * terminal.h: Declare create_tty_session.
530
531 2008-03-12 Alan Modra <amodra@bigpond.net.au>
532
533 PR 5900
534 * elfread.c (elf_symtab_read): Make shndx an unsigned int.
535 * mipsread.c: Include elf/internal.h.
536 (read_alphacoff_dynamic_symtab): Map external reserved sym_shndx
537 to internal range.
538
539 2008-03-11 Markus Deuling <deuling@de.ibm.com>
540
541 * win32-nat.c (do_win32_fetch_inferior_registers): Use get_regcache_arch
542 to get at the current architecture and at the target specific vector.
543 Add target specific vector to I387_FISEG_REGNUM and I387_FOP_REGNUM and
544 remove define of I387_ST0_REGNUM.
545
546 * amd64-tdep.c (I387_ST0_REGNUM): Remove define.
547
548 (amd64_supply_fxsave, amd64_collect_fxsave): Use get_regcache_arch to
549 get at the current architecture
550 (I387_FISEG_REGNUM, I387_FOSEG_REGNUM): Add target specific vector as
551 parameter.
552
553 * i386-tdep.c: Remove various define's and undef's of I387_ST0_REGNUM,
554 I387_NUM_XMM_REGS and I387_MM0_REGNUM.
555
556 (I387_NUM_XMM_REGS, I387_XMM0_REGNUM, I387_MXCSR_REGNUM,
557 I387_ST0_REGNUM, I387_FCTRL_REGNUM, I387_MM0_REGNUM,
558 (I387_FSTAT_REGNUM): Add target specific vector as parameter.
559
560 (i386_register_name, i386_dbx_reg_to_regnum): Use gdbarch_tdep to get
561 at the target specific vector.
562
563 (i386_get_longjmp_target): Use get_frame_arch to get at the current
564 architecture. Use gdbarch_tdep to get at the target specific vector.
565
566 (i386_fp_regnum_p, i386_fpc_regnum_p): Add gdbarch as parameter and
567 update caller. Use gdbarch_tdep to get at the target specific vector.
568
569 (i386_register_to_value: Use get_frame_arch to get at the current
570 architecture.
571
572 * i386-tdep.h (i386_fp_regnum_p, i386_fpc_regnum_p): Add gdbarch as
573 parameter.
574
575 * i387-tdep.c (I387_FCTRL_REGNUM, I387_FSTAT_REGNUM, I387_FTAG_REGNUM,
576 I387_FISEG_REGNUM, I387_FIOFF_REGNUM, I387_FOSEG_REGNUM
577 I387_FOOFF_REGNUM, I387_FOP_REGNUM, I387_ST0_REGNUM, FSAVE_ADDR,
578 FXSAVE_ADDR, I387_XMM0_REGNUM): Add target specific vector as parameter.
579
580 (I387_ST0_REGNUM, I387_NUM_XMM_REGS): Remove various define's and
581 undef's.
582
583 (i387_convert_register_p, i387_register_to_value,
584 i387_value_to_register): Update call for i386_fp_regnum_p.
585
586 * i387-tdep.h: Remove comment.
587 (I387_ST0_REGNUM, I387_NUM_XMM_REGS, I387_MM0_REGNUM): Add define.
588 (I387_FCTRL_REGNUM, I387_FSTAT_REGNUM, I387_FTAG_REGNUM,
589 I387_FISEG_REGNUM, I387_FIOFF_REGNUM, I387_FOSEG_REGNUM,
590 I387_FOOFF_REGNUM, I387_FOP_REGNUM, I387_XMM0_REGNUM,
591 I387_MXCSR_REGNUM): Add target specific vector as parameter.
592
593 2008-03-10 Daniel Jacobowitz <dan@codesourcery.com>
594
595 * Makefile.in (fork-child.o): Update.
596 * NEWS: Document "set exec-wrapper" and the gdbserver --wrapper
597 argument. Gather all gdbserver features together.
598 * fork-child.c (exec_wrapper): New variable.
599 (fork_inferior): Use it.
600 (startup_inferior): Skip an extra trap if using "set exec-wrapper".
601 (unset_exec_wrapper_command, _initialize_fork_child): New.
602
603 2008-03-10 Hidetaka Takano <hidetaka.takano@glb.toshiba.co.jp>
604
605 * source.c (directory_command): Modify the determination of
606 condition of terminal "from_tty".
607
608 2008-03-10 Matt Rice <ratmice@gmail.com>
609
610 * dwarf2read.c (set_cu_language): Add DW_LANG_ObjC.
611
612 2008-03-10 Hidetaka Takano <hidetaka.takano@glb.toshiba.co.jp>
613
614 * spu-tdep.c (info_spu_event_command): Insert a '\0' to the end
615 of the data passing to strtoulst function.
616 (info_spu_signal_command): Likewise.
617
618 2008-03-08 Vladimir Prus <vladimir@codesourcery.com>
619
620 * mi/mi-interp.c (mi_command_loop): Remove
621 commented-out code.
622
623 2008-03-07 Joel Brobecker <brobecker@adacore.com>
624
625 * remote.c (extended_remote_attach_1): Make local variable pid an int
626 instead of a pid_t.
627
628 2008-03-07 Joel Brobecker <brobecker@adacore.com>
629
630 * solib-svr4.c (svr4_same_1): New function, originally extracted
631 from svr4_same and expanded to handle the sparc64 case.
632 (svr4_same): Move up and reimplement using svr4_same_1.
633 (enable_break): Use svr4_same_1 to do shared library name comparisons.
634
635 2008-03-07 Ramana Radhakrishnan <ramana.r@gmail.com>
636
637 * MAINTAINERS: Move self to Paper trail.
638
639 2008-03-05 Daniel Jacobowitz <dan@codesourcery.com>
640
641 * Makefile.in (mingw-hdep.o, posix-hdep.o, remote-fileio.o): Update.
642 * event-loop.c (call_async_signal_handler): New.
643 * event-loop.h (call_async_signal_handler)
644 (gdb_call_async_signal_handler): Declare.
645 (mark_async_signal_handler): Add comments.
646 * event-top.c (handle_sigint): Use gdb_call_async_signal_handler.
647 * mingw-hdep.c (sigint_event, sigint_handler): New.
648 (gdb_select): Use them. Wait for the readline signal handler
649 to finish.
650 (gdb_call_async_signal_handler, _initialize_mingw_hdep): New functions.
651 * posix-hdep.c (gdb_call_async_signal_handler): New function.
652 * remote-fileio.c (sigint_fileio_token, async_remote_fileio_interrupt):
653 New.
654 (remote_fileio_ctrl_c_signal_handler): Use
655 gdb_call_async_signal_handler.
656 (initialize_remote_fileio): Initialize sigint_fileio_token.
657 * remote.c (initialize_sigint_signal_handler, handle_remote_sigint): Do
658 not initialize tokens here.
659 (handle_remote_sigint_twice): Likewise. Reinstall
660 handle_remote_sigint.
661 (async_remote_interrupt_twice): Just call interrupt_query.
662 (cleanup_sigint_signal_handler): Do not delete tokens.
663 (remote_interrupt, remote_interrupt_twice): Use
664 gdb_call_async_signal_handler.
665 (interrupt_query): Reinstall the default signal handler.
666 (_initialize_remote): Initialize tokens here.
667
668 2008-03-04 Joel Brobecker <brobecker@adacore.com>
669
670 * features/rs6000/power-core.xml, features/rs6000/power64-core.xml,
671 features/rs6000/powerpc-601.xml, features/rs6000/rs6000.xml:
672 Change the type of the lr register to code_ptr.
673 * features/rs6000/powerpc-32.c, features/rs6000/powerpc-403.c,
674 features/rs6000/powerpc-403gc.c, features/rs6000/powerpc-505.c,
675 features/rs6000/powerpc-601.c, features/rs6000/powerpc-602.c,
676 features/rs6000/powerpc-603.c, features/rs6000/powerpc-604.c,
677 features/rs6000/powerpc-64.c, features/rs6000/powerpc-7400.c,
678 features/rs6000/powerpc-750.c, features/rs6000/powerpc-860.c,
679 features/rs6000/powerpc-e500.c, features/rs6000/rs6000.c: Regenerate.
680
681 2008-03-03 James E. Wilson <wilson@tuliptree.org>
682
683 * MAINTAINERS: Update my email address.
684
685 2008-03-03 Keith Seitz <keiths@redhat.com>
686
687 From Dave Murphy <davem@devkitpro.org>:
688 * configure.ac: Set tcl configdir to win under mingw.
689 * configure: Regenerate.
690
691 2008-03-03 Daniel Jacobowitz <dan@codesourcery.com>
692
693 * breakpoint.c (fetch_watchpoint_value): New function.
694 (update_watchpoint): Set and clear val_valid. Use
695 fetch_watchpoint_value. Handle unreadable values on the
696 value chain. Correct check for user-requested array watchpoints.
697 (breakpoint_init_inferior): Clear val_valid.
698 (watchpoint_value_print): New function.
699 (print_it_typical): Use it. Do not free or clear old_val. Print
700 watchpoints even if old_val == NULL.
701 (watchpoint_check): Use fetch_watchpoint_value. Check for values
702 becoming readable or unreadable.
703 (watch_command_1): Use fetch_watchpoint_value. Set val_valid.
704 (do_enable_watchpoint): Likewise.
705 * breakpoint.h (struct breakpoint): Update comment for val. Add
706 val_valid.
707 * NEWS: Mention watchpoints on inaccessible memory.
708
709 2007-02-29 Daniel Jacobowitz <dan@codesourcery.com>
710
711 * Makefile.in (i386-nat.o): Update.
712 * amd64-linux-nat.c (_initialize_amd64_linux_nat): Call
713 i386_use_watchpoints.
714 * i386-linux-nat.c (_initialize_i386_linux_nat): Call
715 i386_use_watchpoints.
716 * i386-nat.c (i386_stopped_data_address): Take two arguments.
717 (i386_stopped_by_watchpoint): Update call.
718 (i386_can_use_hw_breakpoint, i386_use_watchpoints): New.
719 * config/i386/nm-i386.h: Conditionalize definitions on
720 ! I386_WATCHPOINTS_IN_TARGET_VECTOR.
721 (i386_use_watchpoints): Declare.
722 (i386_stopped_data_address): Update.
723 * config/i386/nm-linux.h (I386_WATCHPOINTS_IN_TARGET_VECTOR): Define.
724 * config/i386/nm-linux64.h (I386_WATCHPOINTS_IN_TARGET_VECTOR): Define.
725
726 2008-02-29 Joel Brobecker <brobecker@adacore.com>
727
728 GDB 6.8 branch created (branch timestamp: 2008-02-26 10:00 UTC)
729 * version.in: Bump version to 6.8.50.20080229-cvs.
730
731 2008-02-28 Markus Deuling <deuling@de.ibm.com>
732
733 * f-typeprint.c (f_print_type): Handle NULL pointer in VARSTRING
734 properly.
735
736 2008-02-28 Tom Tromey <tromey@redhat.com>
737
738 * infcmd.c (notice_args_read): Print result of get_inferior_args.
739
740 2008-02-28 Daniel Jacobowitz <dan@codesourcery.com>
741
742 * infcmd.c (kill_if_already_running): Make static. Use
743 target_require_runnable.
744 * target.c (target_require_runnable): New.
745 * target.h (target_require_runnable): Declare.
746
747 2008-02-28 Daniel Jacobowitz <dan@codesourcery.com>
748
749 * frame.c (reinit_frame_cache): Only annotate if frames were
750 previously valid.
751
752 2008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
753
754 * regformats/reg-ppc.dat: Rename "ps" to "msr".
755 * regformats/reg-ppc64.dat: Likewise.
756
757 2008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
758
759 * features/Makefile (%.dat): Emit xmltarget statement.
760
761 * regformats/regdat.sh: Support xmltarget and xmlarch statments.
762 Generate code to set gdbserver_xmltarget in init_registers_${name}.
763
764 * regformats/arm-with-iwmmxt.dat: Regenerate.
765 * regformats/mips64-linux.dat: Regenerate.
766 * regformats/mips-linux.dat: Regenerate.
767 * regformats/rs6000/powerpc-32.dat: Regenerate.
768 * regformats/rs6000/powerpc-64.dat: Regenerate.
769 * regformats/rs6000/powerpc-e500.dat: Regenerate.
770
771 * regformats/reg-arm.dat: Add xmlarch statement.
772 * regformats/reg-i386.dat: Likewise.
773 * regformats/reg-i386-linux.dat: Likewise.
774 * regformats/reg-x86-64-linux.dat: Likewise.
775 * regformats/reg-spu.dat: Likewise.
776
777 2008-02-27 Daniel Jacobowitz <dan@codesourcery.com>
778
779 * remote.c (remote_wait, remote_async_wait): Stop if we receive
780 an error.
781
782 2008-02-27 Daniel Jacobowitz <dan@codesourcery.com>
783
784 * utils.c (debug_timestamp): New.
785 (vfprintf_unfiltered): Print timestamps if requested.
786 (show_debug_timestamp): New.
787 (initialize_utils): Register "set debug timestamp".
788 * NEWS: Mention "set debug timestamp". Add GDB 6.8 section.
789
790 2008-02-27 Joel Brobecker <brobecker@adacore.com>
791
792 * breakpoint.c (skip_prologue_sal): New function.
793 (resolve_sal_pc): Adjust SAL past prologue if the SAL was
794 computed from a line number.
795
796 2008-02-27 Joel Brobecker <brobecker@adacore.com>
797
798 * features/rs6000/power-core.xml, features/rs6000/power64-core.xml
799 features/rs6000/powerpc-601.xml, features/rs6000/rs6000.xml:
800 Set PC register type to "code_ptr".
801 * features/rs6000/powerpc-32.c, features/rs6000/powerpc-403.c,
802 features/rs6000/powerpc-403gc.c, features/rs6000/powerpc-505.c,
803 features/rs6000/powerpc-601.c, features/rs6000/powerpc-602.c,
804 features/rs6000/powerpc-603.c, features/rs6000/powerpc-604.c,
805 features/rs6000/powerpc-64.c, features/rs6000/powerpc-7400.c,
806 features/rs6000/powerpc-750.c, features/rs6000/powerpc-860.c,
807 features/rs6000/powerpc-e500.c, features/rs6000/rs6000.c:
808 Regenerate.
809
810 2008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
811
812 * regformats/regdat.sh: Rename init_registers function in
813 generated file to init_registers_${name}.
814
815 * regformats/reg-crisv32.dat: Set "name" to crisv32.
816 * regformats/reg-ppc64.dat: Set "name" to ppc64.
817 * regformats/reg-s390x.dat: Set "name" to s390x.
818
819 2008-02-26 Greg Law <glaw@undo-software.com>
820
821 * regcache.c (registers_changed): Call reinit_frame_cache.
822
823 2008-02-26 Daniel Jacobowitz <dan@codesourcery.com>
824
825 * configure.tgt (sh-*-linux*): Match sh*. Add glibc-tdep.o.
826 * sh-linux-tdep.c (sh_linux_init_abi): Use glibc_skip_solib_resolver
827 and svr4_fetch_objfile_link_map.
828 * Makefile.in (sh-linux-tdep.o): Update.
829
830 2008-02-26 Thiago Jung Bauermann <bauerman@br.ibm.com>
831
832 * amd64-tdep.c (amd64_classify): Add support for decimal float
833 types.
834 * i386-tdep.c (i386_return_value): Make 128-bit decimal float
835 use the struct return convention.
836
837 2008-02-26 Nick Roberts <nickrob@snap.net.nz>
838
839 * breakpoint.c (print_one_breakpoint_location): Revert Enb field
840 to old format. Discard breakpoint address if shared library is
841 unloaded.
842 (breakpoint_1): Adjust formatting of table header accordingly.
843
844 2008-02-25 Vladimir Prus <vladimir@codesourcery.com>
845
846 * remote.c (remote_get_threadlist): If the response
847 is empty, don't try to parse it.
848
849 2008-02-23 Vladimir Prus <vladimir@codesourcery.com>
850
851 Unbreak 'target async'.
852 * serial.c (serial_async): Set the
853 handler function before enabling async
854 mode.
855
856 2008-02-22 Daniel Jacobowitz <dan@codesourcery.com>
857
858 * solib-svr4.c (enable_break): Convert r_brk to a code address.
859
860 2008-02-21 Pedro Alves <pedro@codesourcery.com>
861
862 * remote.c (extended_remote_attach_1): Set attach_flag.
863 (extended_remote_create_inferior_1): Clear attach_flag.
864
865 2008-02-20 Daniel Jacobowitz <dan@codesourcery.com>
866
867 * mipsnbsd-tdep.c (mipsnbsd_ilp32_fetch_link_map_offsets): Set
868 r_brk_offset.
869 (mipsnbsd_lp64_fetch_link_map_offsets): Likewise.
870 * solib-svr4.c (solib_svr4_r_brk): New.
871 (open_symbol_file_object, svr4_current_sos): Always check the
872 debug base.
873 (svr4_fetch_objfile_link_map): Do not set debug_base.
874 (enable_break): Use r_brk if it is set.
875 (svr4_ilp32_fetch_link_map_offsets): Set r_brk_offset.
876 (svr4_lp64_fetch_link_map_offsets): Likewise.
877 * solib-svr4.h (struct link_map_offsets): Add r_brk_offset.
878
879 2008-02-20 Markus Deuling <deuling@de.ibm.com>
880 Mark Kettenis <kettenis@gnu.org>
881
882 * alpha-tdep.c (alpha_heuristic_unwind_cache): Replace saved_regs by
883 trad_frame_saved_reg.
884 (trad-frame.h): New include.
885
886 (alpha_heuristic_frame_unwind_cache): Use trad_frame_alloc_saved_regs
887 instead of frame_obstack_zalloc.
888 (alpha_heuristic_frame_prev_register): Use trad_frame_get_prev_register.
889
890 * Makefile.in (alpha-tdep.o): Add dependency to trad_frame_h.
891
892 2008-02-20 Markus Deuling <deuling@de.ibm.com>
893
894 * rs6000-tdep.c (gdb_print_insn_powerpc): Get the current endianess
895 from disassemble_info instead of gdbarch_byte_order.
896
897 * mips-tdep.c (gdb_print_insn_mips): Likewise.
898 * arm-tdep.c (gdb_print_insn_arm): Likewise.
899
900 2008-02-20 Markus Deuling <deuling@de.ibm.com>
901
902 * gdbarch.sh (memory_insert_breakpoint, memory_remove_breakpoint): Add
903 gdbarch as parameter.
904
905 * gdbarch.{c,h}: Regenerate.
906
907 * ppc-tdep.h (ppc_linux_memory_remove_breakpoint): Add gdbarch as
908 parameter.
909 * mem-break.c (default_memory_insert_breakpoint)
910 (default_memory_remove_breakpoint): Likewise.
911 * target.h (default_memory_remove_breakpoint)
912 (default_memory_insert_breakpoint): Likewise.
913
914 * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Add gdbarch as
915 parameter. Replace current_gdbarch by gdbarch.
916 * m32r-tdep.c (m32r_memory_insert_breakpoint)
917 (m32r_memory_remove_breakpoint): Likewise.
918
919 2008-02-19 Daniel Jacobowitz <dan@codesourcery.com>
920
921 * MAINTAINERS: Add Vladimir Prus as MI maintainer.
922
923 2008-02-19 Joel Brobecker <brobecker@adacore.com>
924
925 * NEWS: Add entry describing Add support improvements.
926
927 2008-02-18 Markus Deuling <deuling@de.ibm.com>
928
929 * m68klinux-nat.c (getfpregs_supplies): Replace gdbarch_fp0_regnum by
930 M68K_FP0_REGNUM.
931
932 2008-02-18 Markus Deuling <deuling@de.ibm.com>
933
934 * sentinel-frame.c (sentinel_frame_prev_register): Do not call
935 register_offset_hack anymore.
936
937 * regcache.{c,h} (register_offset_hack): Remove.
938
939 2008-02-18 Markus Deuling <deuling@de.ibm.com>
940
941 * hppa-tdep.h (find_global_pointer): Add gdbarch as parameter.
942
943 * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer): Likewise. Replace
944 current_gdbarch by gdbarch.
945 (hppa64_hpux_find_global_pointer): Likewise.
946 * hppa-tdep.c (hppa_find_global_pointer): Likewise.
947 (hppa32_push_dummy_call, hppa64_push_dummy_call): Update call for
948 find_global_pointer.
949
950 * hppabsd-tdep.c (hppabsd_find_global_pointer): Add gdbarch as
951 parameter.
952 * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
953
954 * hppa-linux-nat.c (hppa_linux_register_addr): Use ARRAY_SIZE instead
955 of gdbarch_num_regs.
956
957 * hppa-hpux-tdep.c (hppa_hpux_sr_for_addr): Add gdbarch as parameter and
958 replace current_gdbarch by gdbarch.
959 (hppa_hpux_push_dummy_code): Update call for hppa_hpux_sr_for_addr.
960
961 2008-02-18 Markus Deuling <deuling@de.ibm.com>
962
963 * rs6000-nat.c (exec_one_dummy_insn, regmap): Add gdbarch as parameter
964 and replace current_gdbarch by gdbarch.
965
966 (store_register): Update call for exec_one_dummy_insn.
967 (fetch_register, store_register): Update call of regmap.
968
969 * ppcnbsd-nat.c (getregs_supplies, getfpregs_supplies): Add gdbarch as
970 parameter and replace current_gdbarch by gdbarch.
971
972 (ppcnbsd_store_inferior_registers): Use get_regcache_arch to get at
973 the current architecture. Update call for getregs_supplies and
974 getfpregs_supplies.
975 (ppcnbsd_fetch_inferior_registers): Likewise.
976
977 * ppcobsd-nat.c (getfpregs_supplies): Add gdbarch as parameter and
978 replace current_gdbarch by gdbarch.
979 (ppcobsd_fetch_registers, ppcobsd_store_registers): Use
980 get_regcache_arch to get at the current architecture. Update call for
981 getfpregs_supplies.
982
983 2008-02-18 Markus Deuling <deuling@de.ibm.com>
984
985 * arch-utils.c (gdbarch_from_bfd): Remove unnecessary {old,new}_gdbarch
986 variables.
987
988 2008-02-15 Markus Deuling <deuling@de.ibm.com>
989
990 * mips-linux-tdep.c (mips_linux_init_abi): Remove internal error.
991
992 2008-02-14 Vladimir Prus <vladimir@codesourcery.com>
993
994 * NEWS: Mention pending breakpints in MI.
995
996 2008-02-14 Markus Deuling <deuling@de.ibm.com>
997
998 * Makefile.in (ALL_TARGET_OBS): Remove dependency to xtensa-linux-nat.o.
999
1000 2008-02-13 Markus Deuling <deuling@de.ibm.com>
1001
1002 Add script to build and test GDB using enable-targets=all.
1003
1004 * gdb_buildall.sh: New file.
1005
1006 2008-02-11 Maxim Grigoriev <maxim2405@gmail.com>
1007
1008 * NEWS (New native configurations): Xtensa GNU/Linux.
1009 (New targets): Xtensa GNU/Linux.
1010 * Makefile.in (ALL_TARGET_OBS): Add xtensa-linux-nat.o and
1011 xtensa-linux-tdep.o
1012 (ALLDEPFILES): Add xtensa-linux-tdep.c and xtensa-linux-nat.c
1013 (xtensa-linux-nat.o, xtensa-linux-tdep.o): New dependencies.
1014 * configure.tgt (xtensa*-*-linux*): New entry.
1015 * xtensa-config.c (xtensa_tdep): New variable.
1016 (xtensa_config_byte_order, xtensa_config_tdep): Removed.
1017 (rmap): Change format based on new macro XTREG.
1018 (XTENSA_CONFIG_INSTANTIATE): Use new macro defined in xtensa-tdep.h.
1019 * xtensa-linux-nat.c: New.
1020 * xtensa-linux-tdep.c: New.
1021 * xtensa-xtregs.c: New.
1022 * xtensa-tdep.h (xtensa_elf_gregset_t): Update.
1023 (XTENSA_ELF_NGREG, XTREG, XTREG_END, XTENSA_GDBARCH_TDEP_INSTANTIATE)
1024 (XCHAL_NUM_CONTEXTS, XCHAL_HAVE_EXCEPTIONS): New macros.
1025 (xtensa_register_t): New field coprocessor.
1026 (XTENSA_REGISTER_FLAGS_PRIVILEGED): Name spelling corrected.
1027 * xtensa-tdep.c (xtensa_config_tdep, xtensa_config_byte_order): Removed.
1028 (xtensa_pseudo_register_read, xtensa_pseudo_register_write):
1029 Update to handle privileged registers.
1030 (xtensa_supply_gregset) Remove exccause and excvaddr registers.
1031 (xtensa_push_dummy_call): Set windowstart register correctly.
1032 (call0_analyze_prologue): Initialize xtensa_default_isa.
1033 (xtensa_derive_tdep): New.
1034 (xtensa_gdbarch_init): Get rid of xtensa_config_byte_order and
1035 xtensa_config_tdep, use XCHAL_HAVE_BE and xtensa_tdep instead.
1036 Call xtensa_derive_tdep().
1037 * config/xtensa/linux.mh: New.
1038 * regformats/reg-xtensa.dat: New.
1039
1040 2008-02-09 Aleksandar Ristovski <aristovski@qnx.com> (tiny change)
1041
1042 * corelow.c (core_open): Use IS_ABSOLUTE_PATH.
1043 (filenames.h): New include.
1044 * Makefile.in (corelow.o): Add dependency for filenames.h.
1045
1046 2008-02-08 Doug Evans <dje@google.com>
1047
1048 * source.c (find_and_open_source): Always rewrite absolute filenames.
1049
1050 2008-02-07 Doug Evans <dje@google.com>
1051
1052 * breakpoint.c: #include "hashtab.h".
1053 (ambiguous_names_p): New fn.
1054 (update_breakpoint_locations): When restoring bp enable status, don't
1055 compare function names if any functions have same name.
1056 * Makefile.in (breakpoint.o): Add hashtab.h dependency.
1057
1058 2008-02-07 Joel Brobecker <brobecker@adacore.com>
1059
1060 * ada-lang.c (symbol_completion_add): Make SV parameter a VEC**
1061 instead of just a VEC*. Update use of SV.
1062 (ada_make_symbol_completion_list): Update symbol_completion_add calls.
1063
1064 2007-02-07 Joel Brobecker <brobecker@adacore.com>
1065
1066 * NEWS: Put all new commands since gdb-6.7 together.
1067
1068 2007-02-07 Joel Brobecker <brobecker@adacore.com>
1069
1070 * ada-lang.c: #include "vec.h".
1071 (struct string_vector, new_string_vector, string_vector_append):
1072 Delete.
1073 (char_ptr): New typedef.
1074 (DEF_VEC_P (char_ptr)): New VEC type.
1075 (symbol_completion_add): Update profile to take the new VEC type
1076 instead of the old string_vector structure. Update code accordingly.
1077 (ada_make_symbol_completion_list): Use the new VEC type instead of
1078 the old string_vector structure, and update the code accordingly.
1079 * Makefile.in (ada-lang.o): Add dependency on vec.h.
1080
1081 2008-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
1082
1083 * p-exp.y: Set current_type in missing places.
1084 (leftdiv_is_integer): New static variable.
1085 Typecast right operand of BINOP_DIV to long_double if both operands
1086 are integers.
1087
1088 2008-02-06 Maciej W. Rozycki <macro@mips.com>
1089
1090 * remote-mips.c (set_breakpoint): Rename to...
1091 (mips_set_breakpoint): ... this.
1092 (clear_breakpoint): Rename to...
1093 (mips_clear_breakpoint): ... this.
1094 (common_breakpoint): Rename to...
1095 (mips_common_breakpoint): ... this.
1096 (check_lsi_error): Rename to...
1097 (mips_check_lsi_error): ... this.
1098
1099 2007-02-05 Joel Brobecker <brobecker@adacore.com>
1100
1101 * language.h (struct language_defn): Add new field
1102 la_make_symbol_completion_list.
1103 * symtab.c (default_make_symbol_completion_list): Renames
1104 make_symbol_completion_list.
1105 (make_symbol_completion_list): New function.
1106 * symtab.h (default_make_symbol_completion_list): Add declaration.
1107 * langauge.c (unknown_language): Set la_make_symbol_completion_list.
1108 (auto_language, local_language): Likewise.
1109 * objc-lang.c (objc_language_defn): Likewise.
1110 * scm-lang.c (scm_language_defn): Likewise.
1111 * m2-lang.c (m2_language_defn): Likewise.
1112 * f-lang.c (f_language_defn): Likewise.
1113 * jv-lang.c (java_language_defn): Likewise.
1114 * p-lang.c (pascal_language_defn): Likewise.
1115 * c-lang.c (c_language_defn, cplus_language_defn, asm_language_defn)
1116 (minimal_language_defn): Likewise.
1117 * ada-lang.c (struct string_vector): New structure.
1118 (new_string_vector, string_vector_append, ada_unqualified_name)
1119 (add_angle_brackets, symbol_completion_match, symbol_completion_add)
1120 (ada_make_symbol_completion_list): New functions.
1121 (ada_language_defn): Set la_make_symbol_completion_list.
1122 * ada-lang.h (ada_make_symbol_completion_list): Remove declaration,
1123 this function is static.
1124
1125 2008-02-05 Kevin Buettner <kevinb@redhat.com>
1126
1127 * mn10300-tdep.c (mn10300_push_dummy_call): Adjust stack pointer
1128 to account for call site optimizations.
1129
1130 2008-02-05 Andrzej Zaborowski <balrogg@gmail.com>
1131
1132 * tracepoint.c (read_actions): Handle end-of-text indicator
1133 in action list properly. (Committed by Jim Blandy)
1134
1135 2008-02-05 Jim Blandy <jimb@red-bean.com>
1136
1137 * ax-gdb.c (gen_expr): Yield ordinary error if asked to trace a
1138 pseudoregister, not an internal error.
1139 Reported by: Andrzej Zaborowski
1140
1141 2008-02-04 Vladimir Prus <vladimir@codesourcery.com>
1142
1143 * varobj.c (c_value_of_variable): Use xstrdup.
1144
1145 2008-02-04 Vladimir Prus <vladimir@codesourcery.com>
1146
1147 Update stored rendition of varobj value when format changes.
1148 * varobj.c (varobj_set_display_format): Recomputed
1149 print_value.
1150 (c_value_of_variable): Return print_value.
1151
1152 2008-02-03 Doug Evans <dje@google.com>
1153
1154 * eval.c (evaluate_subexp_standard): Fix type of result of mixed
1155 integer/float division operations when EVAL_AVOID_SIDE_EFFECTS.
1156 * valops.c (value_one): New function.
1157 * value.h (value_one): Declare.
1158
1159 Fix argument promotion for binary arithmetic ops for C.
1160 * valarith.c (unop_result_type): New fn.
1161 (binop_result_type): New fn.
1162 (value_binop): Move result type computation to binop_result_type.
1163 (value_pos, value_neg, value_complement): Move result type
1164 computation to unop_result_type.
1165
1166 PR 2384
1167 * gdbtypes.c (get_vptr_fieldno): Renamed from fill_in_vptr_fieldno.
1168 Return basetype, fieldno if found. All callers updated.
1169 Don't cache TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE if from different
1170 objfile.
1171 * gdbtypes.h (get_vptr_fieldno): Renamed from fill_in_vptr_fieldno.
1172 * symfile.h (fill_in_vptr_fieldno): Delete.
1173
1174 2008-02-02 Doug Evans <dje@google.com>
1175
1176 * valarith.c (value_binop): Handle unsigned BINOP_REM division by zero.
1177
1178 * typeprint.c (*): Whitespace cleanup.
1179
1180 2008-02-02 Mark Kettenis <kettenis@gnu.org>
1181 Luis Machado <luisgpm@br.ibm.com>
1182 Thiago Jung Bauermann <bauerman@br.ibm.com>
1183
1184 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Pass floats that
1185 don't fit into registerson the stack the way GCC does.
1186
1187 2008-02-01 Joel Brobecker <brobecker@adacore.com>
1188
1189 * symtab.c (symbol_set_names): Do not add an entry in the demangling
1190 hash table for Ada symbols. Just store the linkage name as is,
1191 and leave the demangled_name as NULL.
1192
1193 2007-02-01 Joel Brobecker <brobecker@adacore.com>
1194
1195 * dwarf2read.c (add_partial_symbol): Always store all Ada subprograms
1196 in the global scope.
1197 (new_symbol): Likewise.
1198
1199 2008-02-01 Vladimir Prus <vladimir@codesourcery.com>
1200
1201 * breakpoint.c (break_command_1): Return void.
1202 (break_command_really): Return void. Rethrow
1203 exceptions instead of returning.
1204 (gdb_breakpoint): Remove the error_message parameter.
1205 Return void. Rename to set_breakpoint.
1206 * gdb.h (gdb_breakpoint): Rename and move to...
1207 * breakpoint.h (set_breakpoint): ...here.
1208 * mi/mi-cmb-break.c (mi_cmd_break_insert): Restore
1209 event hooks even if exception is thrown. Adjust to
1210 gdb_breakpoint interface changes.
1211
1212
1213 2008-02-01 Thiago Jung Bauermann <bauerman@br.ibm.com>
1214
1215 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Write 32-bit
1216 float in both first and second word in the doubleword, to support
1217 old and new ABIs.
1218
1219 2008-02-01 Vladimir Prus <vladimir@codesourcery.com>
1220
1221 Properly rethrow exception. This fixes errors
1222 about non-existent functions for -break-insert.
1223 * breakpoint.c (break_command_really): Use throw_exception
1224 for rethrowing. If rethrowing, don't print the exception.
1225
1226 2008-01-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
1227
1228 * NEWS: Mention Decimal Floating Point support.
1229
1230 2008-01-31 Joel Brobecker <brobecker@adacore.com>
1231
1232 * std-regs.c (value_of_builtin_frame_pc_reg): Change the returned
1233 value type to builtin_type_void_func_ptr.
1234
1235 2008-01-31 Andreas Krebbel <krebbel1@de.ibm.com>
1236
1237 * s390-tdep.c (is_float_singleton, is_float_like,
1238 alignment_of, s390_return_value): Make checks for
1239 TYPE_CODE_FLT to match TYPE_CODE_DECFLOAT as well.
1240
1241 2008-01-31 Luis Machado <luisgpm@br.ibm.com>
1242 Thiago Jung Bauermann <bauerman@br.ibm.com>
1243
1244 * infcmd.c (default_print_registers_info): Also print hex
1245 raw contents for TYPE_CODE_DECFLOAT registers.
1246 * ppc-tdep.h (gdbarch_tdep): Add ppc_dl0_regnum member.
1247 * rs6000-tdep.c (IS_DFP_PSEUDOREG): New macro.
1248 (rs6000_register_name): Add support for DFP pseudo-registers.
1249 (rs6000_pseudo_register_type): Likewise.
1250 rs6000_pseudo_register_reggroup_p): Likewise.
1251 (ppc_pseudo_register_read): New function.
1252 (ppc_pseudo_register_write): Likewise.
1253 (rs6000_pseudo_register_read): Likewise.
1254 (rs6000_pseudo_register_write): Likewise.
1255 (e500_pseudo_register_read): Move checks to
1256 rs6000_pseudo_register_read.
1257 (e500_pseudo_register_write): Move checks to
1258 rs6000_pseudo_register_write.
1259 (rs6000_gdbarch_init): Initialize tdep->ppc_dl0_regnum. Install
1260 rs6000_pseudo_register_read and rs6000_pseudo_register_write
1261 in gdbarch if SPE or DFP is available. Adjust gdbarch's
1262 num_pseudo_regs to account for DFP pseudo regs.
1263
1264 2008-01-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
1265
1266 * ppc-tdep.h (struct gdbarch_tdep): Remove ppc_ev31_regnum member.
1267 * rs6000-tdep.c (IS_SPE_PSEUDOREG): New macro.
1268 (spe_register_p, rs6000_register_name, rs6000_pseudo_register_type,
1269 rs6000_pseudo_register_reggroup_p, e500_move_ev_register,
1270 e500_pseudo_register_read, e500_pseudo_register_write): Use
1271 IS_SPE_PSEUDOREG macro.
1272 (rs6000_frame_cache): Remove use of tdep->ppc_ev31_regnum.
1273 (rs6000_gdbarch_init): Remove unnecessary num_sprs local variable.
1274 Remove initialization of tdep->ppc_ev31_regnum.
1275
1276 2008-01-08 Paul Hilfinger <hilfinger@adacore.com>
1277
1278 * printcmd.c (print_formatted): Handle references as for unformatted
1279 prints.
1280
1281 2008-01-30 Joel Brobecker <brobecker@adacore.com>
1282
1283 * eval.c (evaluate_subexp_standard): Add handling of user
1284 registers when in EVAL_AVOID_SIDE_EFFECTS mode.
1285
1286 2008-01-30 Pierre Muller <muller@ics.u-strasbg.fr>
1287
1288 * eval.c (evaluate_subexp_standard): Support
1289 BINOP_INTDIV opcode.
1290
1291 2008-01-30 Paul N. Hilfinger <hilfinger@adacore.com>
1292
1293 * valarith.c (value_binop): Add floating-point BINOP_MIN and
1294 BINOP_MAX cases.
1295 For BINOP_EXP, use length and signedness of left operand only for
1296 result, as for shifts.
1297 For integral operands to BINOP_EXP, use new integer_pow and
1298 uinteger_pow functions so as to get full range of results.
1299 (integer_pow): New function.
1300 (uinteger_pow): New function.
1301
1302 2008-01-30 Vladimir Prus <vladimir@codesourcery.com>
1303
1304 Use vector for varobj_list_children interface.
1305 * gdb/varobj.c (varobj_list_children): Return vector
1306 of varobjs.
1307 * gdb/varobj.h (varobj_list_children): Adjust
1308 prototype.
1309 (varobj_p): Declare. Declare vector thereof.
1310 * mi/mi-cmd-var.c (mi_cmd_var_list_children): Adjust
1311 for varobj_list_children change.
1312 * Makefile.in (varobj_h): Update dependencies.
1313
1314 2008-01-30 Thiago Jung Bauermann <bauerman@br.ibm.com>
1315
1316 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Add support for
1317 TYPE_CODE_DECFLOAT arguments.
1318 (ppc64_sysv_abi_push_dummy_call) Likewise.
1319 (get_decimal_float_return_value): New function.
1320 (do_ppc_sysv_return_value): Add support for TYPE_CODE_DECFLOAT return
1321 values by calling get_decimal_float_return_value.
1322 (ppc64_sysv_abi_return_value): Likewise.
1323
1324 2008-01-30 Nick Roberts <nickrob@snap.net.nz>
1325
1326 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Add field
1327 for preprocessor macro information. Formatting changes.
1328
1329 2008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
1330
1331 * remote.c (struct remote_state): Add cached_wait_status.
1332 (remote_exec_file): New variable.
1333 (PACKET_vAttach, PACKET_vRun): New constants.
1334 (extended_remote_restart): Do not query for status.
1335 (struct start_remote_args): New.
1336 (remote_start_remote): Take it as a second argument. Check
1337 whether the target is running. Issue an error for non-running
1338 non-extended targets. Cache the wait status. Set inferior_ptid
1339 here.
1340 (remote_open_1): Prompt to disconnect non-running targets. Make
1341 sure the target is marked running. Do not set inferior_ptid here.
1342 Update call to remote_start_remote. Do not call remote_check_symbols
1343 if the target is not running.
1344 (remote_detach_1): Rename from remote_detach. Take an EXTENDED
1345 argument. Handle a non-running target.
1346 (remote_detach): Use it.
1347 (extended_remote_detach): New.
1348 (remote_disconnect): Fix typo. Use remoute_mourn_1.
1349 (extended_remote_attach_1, extended_remote_attach)
1350 (extended_async_remote_attach): New.
1351 (remote_vcont_resume): Remove unused variable.
1352 (remote_wait, remote_async_wait): Use any cached wait status.
1353 (putpkt_binary, getpkt): Clear any cached wait status.
1354 (extended_remoute_mourn_1): New.
1355 (extended_remote_mourn): Use it.
1356 (extended_async_remote_mourn, extended_remote_run): New.
1357 (extended_remote_create_inferior_1): New.
1358 (extended_remote_create_inferior): Use it.
1359 (extended_remote_async_create_inferior): Likewise.
1360 (remote_xfer_partial): Skip for non-executing targets.
1361 (init_extended_remote_ops): Set to_detach and to_attach.
1362 (init_extended_async_remote_ops): Likewise. Use
1363 extended_async_remote_mourn.
1364 (_initialize_remote): Register vAttach, vRun, and
1365 set remote exec-file.
1366 * NEWS: Mention vAttach, vRun, and gdbserver extended-remote support.
1367
1368 2008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
1369
1370 * Makefile.in (symfile.o): Update.
1371 * NEWS: Mention exec tracing support.
1372 * inf-ttrace.c (inf_ttrace_wait): Return TARGET_WAITKIND_EXECD for
1373 exec events.
1374 * infcmd.c (kill_if_already_running, detach_command)
1375 (disconnect_command): Replace SOLIB_RESTART with no_shared_libraries.
1376 * infrun.c (MAY_FOLLOW_EXEC, may_follow_exec): Delete.
1377 (follow_exec): Do not check may_follow_exec. Do not mourn and push
1378 targets. Apply the sysroot path to the loaded executable. Use
1379 no_shared_libraries.
1380 * linux-nat.c (linux_child_follow_fork): Print fork following
1381 messages if verbose.
1382 (kill_wait_callback): Kill again before waiting a second time.
1383 * symfile.c (symbol_file_clear): Replace SOLIB_RESTART with
1384 no_shared_libraries.
1385
1386 2008-01-29 Joel Brobecker <brobecker@adacore.com>
1387
1388 * amd64-tdep.c (amd64_classify): Add handling of TYPE_CODE_CHAR.
1389
1390 2008-01-29 Joel Brobecker <brobecker@adacore.com>
1391
1392 * nto-tdep.h: Remove #include "defs.h".
1393 * nto-tdep.c: Add #include "defs.h".
1394 * Makefile.in (nto_tdep_h): Update dependencies.
1395 (nto-tdep.o): Likewise.
1396
1397 2008-01-29 Joel Brobecker <brobecker@adacore.com>
1398
1399 * infrun.c (wait_for_inferior): Add treat_exec_as_sigtrap parameter
1400 and use it.
1401 (proceed, start_remote): Update call to wait_for_inferior.
1402 * inferior.h (wait_for_inferior): Update declaration.
1403 * fork-child.c, infcmd.c, solib-irix.c, solib-osf.c, solib-sunos.c,
1404 solib-svr4.c, win32-nat.c: Update calls to wait_for_inferior.
1405 * inf-ttrace.c (inf_ttrace_wait): Report TTEVT_EXEC events as
1406 TARGET_WAITKIND_EXECD instead of TARGET_WAITKIND_STOPPED.
1407
1408 2008-01-29 Aleksandar Ristovski <aristovski@qnx.com>
1409
1410 * varobj (adjust_value_for_child_access): Added checking for
1411 returned value from gdb_value_ind.
1412 (c_describe_child): Likewise.
1413 (cplus_describe_child): Fixed a typo.
1414
1415 2008-01-29 Jim Blandy <jimb@red-bean.com>
1416
1417 * MAINTAINERS: Update my info.
1418
1419 2008-01-29 Vladimir Prus <vladimir@codesourcery.com>
1420
1421 Use multiple locations for hardware watchpoints.
1422 This eliminates the need to traverse value chain, doing
1423 various checks, in three different places.
1424
1425 * breakpoint.h (struct bp_location): New fields
1426 lengths and watchpoint_type.
1427 (struct breakpoint): Remove the val_chain field.
1428 * breakpoint.c (is_hardware_watchpoint): New.
1429 (free_valchain): Remove.
1430 (update_watchpoint): New.
1431 (insert_bp_location): For hardware watchpoint, just
1432 directly insert it.
1433 (insert_breakpoints): Call update_watchpoint_locations
1434 on all watchpoints. If we have failed to insert
1435 any location of a hardware watchpoint, remove all inserted
1436 locations.
1437 (remove_breakpoint): For hardware watchpoints, directly
1438 remove location.
1439 (watchpoints_triggered): Iterate over locations.
1440 (bpstat_stop_status): Use only first location of
1441 a resource watchpoint.
1442 (delete_breakpoint): Don't call free_valchain.
1443 (print_one_breakpoint): Don't print all
1444 locations for watchpoints.
1445 (breakpoint_re_set_one): Use update_watchpoint for
1446 watchpoints.
1447
1448 2008-01-29 Vladimir Prus <vladimir@codesourcery.com>
1449
1450 Don't reset watchpoint block on solib load.
1451
1452 * breakpoint.c (insert_bp_location): For watchpoints,
1453 recompute condition.
1454 (breakpoint_re_set_one): Instead of recomputing value
1455 and condition for watchpoints, just reset value and
1456 let insert_breakpoints/insert_bp_location recompute it.
1457 Don't do anything about disabled watchpoint.
1458
1459 2008-01-29 Pierre Muller <muller@ics.u-strasbg.fr>
1460
1461 * valarith.c (value_binop): Handle unsigned integer
1462 division by zero.
1463
1464 2008-01-28 Kevin Buettner <kevinb@redhat.com>
1465
1466 * mn10300-tdep.c (mn10300_analyze_prologue): Check for an
1467 instruction pattern that appears frequently in position
1468 independent code. Fix bug in code which looks for "fmov" and
1469 backtracks if no "fmov" is found.
1470
1471 2008-01-28 Doug Evans <dje@google.com>
1472
1473 * dbxread.c (read_dbx_symtab): Fix indentation.
1474 Reformat comments to 80 columns.
1475 Move local var def closer to only use.
1476
1477 2008-01-28 Daniel Jacobowitz <dan@codesourcery.com>
1478
1479 * fork-child.c (SHELL_FILE): Remove #ifndef.
1480 (fork_inferior): Remove SHELL_COMMAND_CONCAT.
1481
1482 2008-01-25 Pierre Muller <muller@ics.u-strasbg.fr>
1483
1484 * i386-tdep.c (i386_skip_noop): New function.
1485 (i386_analyze_prologue): Call i386_skip_noop function.
1486
1487 2008-01-24 Michael Snyder <msnyder@specifix.com>
1488
1489 * procfs.c (procfs_xfer_partial): Comment, cut/paste error.
1490 * win32-nat.c (win32_xfer_partial): Ditto.
1491 * target.c (default_xfer_partial): Minor whitespace adjustment.
1492
1493 2008-01-24 Pedro Alves <pedro@codesourcery.com>
1494
1495 * arm-tdep.c (arm_addr_bits_remove): In non 26-bit mode, don't
1496 strip bit 1 even if pc doesn't point to thumb code.
1497
1498 2008-01-23 Daniel Jacobowitz <dan@codesourcery.com>
1499
1500 * remote.c (remote_wait): Handle SIGINT between packets.
1501 (remote_async_wait): Likewise.
1502
1503 2008-01-23 Vladimir Prus <vladimir@codesourcery.com>
1504 Chris Demetriou <cgd@google.com>
1505
1506 * thread.c (add_thread_silent): Renamed
1507 from add_thread.
1508 (print_thread_events): New variable definition.
1509 (show_print_thread_events): New function.
1510 (_initialize_thread): Add "set print thread-events" and
1511 "show print thread-events" commands.
1512 (add_thread): Announce new thread.
1513 * gdbthread.h (add_thread_silent): Declare.
1514 (print_thread_events): New variable declaration.
1515 * inf-ttrace.c (inf_ttrace_wait): Don't
1516 inform about new thread, as add_thread is always
1517 called too, and will take care of that.
1518 * infrun.c (handle_inferior_event): Likewise.
1519 * procfs.c (procfs_wait): Likewise.
1520 * remote.c (remote_currthread): Likewise.
1521 * sol-thread.c (sol_thread_wait): Likewise.
1522 * win32-nat.c (get_win32_debug_event): Likewise.
1523 * linux-thread-db.c (attach_thread): Likewise.
1524 Remove the verbose parameter.
1525 (check_event): Make detach_thread be verbose
1526 only if print_thread_events is set.
1527 * linux-nat.c (lin_lwp_attach_lwp): Don't inform
1528 about new thread. This is called only from
1529 linux-thread-db.c:attach_thread, which will take care.
1530 Remove the verbose parameter.
1531 * linux-nat.h (lin_lwp_attach_lwp): Adjust prototype.
1532
1533 2008-01-23 Nick Roberts <nickrob@snap.net.nz>
1534
1535 * mi/mi-cmd-var.c (mi_cmd_var_set_format): Add value field to output.
1536
1537 2008-01-22 Vladimir Prus <vladimir@codesourcery.com>
1538
1539 * breakpoint.c (break_command_really): New parameter
1540 ignore_count.
1541 (break_command_1): Pass 0 as
1542 ignore_count to break_command_really.
1543 (gdb_breakpoint): Pass ignore_count to
1544 break_command_really.
1545
1546 2008-01-21 Kevin Buettner <kevinb@redhat.com>
1547
1548 * mn10300-linux-tdep.c (am33_linux_sigframe_cache_init): Find
1549 sigcontext struct via pointer.
1550 (struct sigframe comment): Update to show new field `psc'.
1551
1552 2008-01-21 Vladimir Prus <vladimir@codesourcery.com>
1553
1554 * infrun.c (handle_inferior_event): If
1555 we failed to remove breakpoints, error,
1556 don't try to increment PC by hand.
1557
1558 2008-01-18 Nick Hudson <nick.hudson@dsl.pipex.com>
1559
1560 Add NetBSD/hppa target and host support.
1561
1562 * hppabsd-tdep.c (hppabsd_supply_gregset): Move to ...
1563 (hppabsd_gregset): Move to ...
1564 (hppabsd_regset_from_core_section): Rename
1565 hppaobsd_regset_from_core_section and move to ...
1566 (hppabsd_find_global_pointer): Update comment.
1567 (hppabsd_init_abi): Make global. Do not register
1568 hppabsd_regset_from_core_section.
1569 (hppabsd_core_osabi_sniffer): Rename hppaobsd_core_osabi_sniffer and
1570 move to ...
1571 (_initialize_hppabsd_tdep): Move to ...
1572 * hppaobsd-tdep.c: ... here. New file.
1573 * hppnbsd-tdep.c: New file.
1574 * hppnbsd-nat.c: New file.
1575 * Makefile.in (ALL_TARGET_OBS): Add hppanbsd-tdep.o and hppaobsd-tdep.o.
1576 (ALLDEPFILES): Add hppabsd-nat.c and hppabsd-tdep.c.
1577 (hppabsd-nat.o, hppabsd-tdep.o): New dependencies.
1578 (hppabsd-tdep.o, hppaobsd-tdep.o): Update dependencies.
1579 * configure.host (hppa*-*-netbsd*): New entry.
1580 * configure.tgt (hppa*-*-netbsd*): New entry.
1581 (hppa*-*-openbsd*): Update.
1582 * NEWS (New native configuration): Mention NetBSD/hppa.
1583 (New targets): Mention NetBSD/hppa.
1584
1585 2008-01-18 Markus Deuling <deuling@de.ibm.com>
1586
1587 * gdbarch.sh (function_list): Add new property bits_big_endian to
1588 gdbarch structure.
1589 * gdbarch.{c,h}: Regenerate.
1590
1591 * value.c (struct value): Replace BITS_BIG_ENDIAN by
1592 gdbarch_bits_big_endian (comment).
1593 (unpack_field_as_long, modify_field): Likewise.
1594 * value.h: Likewise (comment).
1595 * valops.c (value_slice): Likewise.
1596 * valarith.c (value_subscript, value_bit_index): Likewise.
1597 * gdbtypes.h (field): Likewise (comment).
1598 * eval.c (evaluate_subexp_standard): Likewise.
1599 * dwarf2read.c (dwarf2_add_field): Likewise.
1600 * ada-lang.c (decode_packed_array, ada_value_primitive_packed_val)
1601 (move_bits, ada_value_assign, value_assign_to_component): Likewise.
1602
1603 * defs.h (BITS_BIG_ENDIAN): Remove.
1604
1605 2008-01-18 Markus Deuling <deuling@de.ibm.com>
1606
1607 * jv-exp.y (yylex): Replace DEPRECATED_STREQN with the appropriate
1608 function calls.
1609 * m2-exp.y (yylex): Likewise.
1610 * objc-exp.y (yylex): Likewise.
1611
1612 * defs.h (DEPRECATED_STREQN): Remove.
1613
1614 2008-01-17 H.J. Lu <hjl.tools@gmail.com>
1615
1616 * MAINTAINERS: Update my email address.
1617
1618 2008-01-17 Jim Blandy <jimb@codesourcery.com>
1619
1620 * README: Mention gdbserver/README.
1621
1622 2008-01-17 Pierre Muller <muller@ics.u-strasbg.fr>
1623
1624 * valarith.c (value_binop): Handle BINOP_INTDIV
1625 for unsigned and signed integers.
1626
1627 2008-01-17 Ulrich Weigand <uweigand@de.ibm.com>
1628
1629 * s390-tdep.c (s390_gdbarch_init): Set default long double
1630 type to 128-bit IEEE quad.
1631
1632 2008-01-17 Joel Brobecker <brobecker@adacore.com>
1633
1634 * hpux-thread.c (hpux_thread_resume): Delete commented-out code.
1635
1636 2008-01-16 Mark Kettenis <kettenis@gnu.org>
1637
1638 * auxv.c (fprint_target_auxv): Add support for AT_SUN_AUXFLAGS.
1639
1640 * dfp.c, dfp.h: Rename decimal_to_double to decimal_to_doublest.
1641 * value.c: All callers changed.
1642
1643 2008-01-16 Markus Deuling <deuling@de.ibm.com>
1644
1645 * rs6000-nat.c (add_vmap, vmap_ldinfo, vmap_exec): Replace
1646 DEPRECATED_STREQ by its expression.
1647 * coffread.c (coff_locate_sections, coff_symtab_read): Likewise.
1648 * xcoffread.c (read_xcoff_symtab, read_symbol_lineno, find_linenos)
1649 (scan_xcoff_symtab): Likewise.
1650 * hppa-hpux-tdep.c (hppa_hpux_skip_trampoline_code): Likewise.
1651 * f-lang.c (find_common_for_function): Likewise.
1652 * objc-exp.y (parse_number): Likewise.
1653
1654 * defs.h (DEPRECATED_STREQ): Remove.
1655
1656 2008-01-16 Markus Deuling <deuling@de.ibm.com>
1657
1658 * mn10300-tdep.h (AM33_MODE): Add gdbarch as parameter.
1659 * mn10300-tdep.c (set_reg_offsets, mn10300_analyze_prologue): Use
1660 get_frame_arch to get at the current_architecture. Update AM33_MODE
1661 call.
1662 (mn10300_analyze_prologue): Add gdbarch as parameter. Update caller.
1663 (mn10300_frame_unwind_cache): Use get_frame_arch to get at the current
1664 architecture.
1665 (set_reg_offsets, mn10300_analyze_prologue): Fix indentation.
1666
1667 2008-01-16 Markus Deuling <deuling@de.ibm.com>
1668
1669 * amd64-nat.h (amd64_native_gregset_supplies_p): Add gdbarch as
1670 parameter.
1671 * amd64-nat.c (amd64_native_gregset_supplies_p): Likewise.
1672
1673 (amd64_native_gregset_reg_offset): Add gdbarch as parameter. Replace
1674 current_gdbarch by gdbarch. Update caller.
1675
1676 * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers)
1677 (amd64_linux_store_inferior_registers): Use get_regcache_arch to get at
1678 the current architecture. Update calls of
1679 amd64_native_gregset_supplies_p.
1680 * amd64bsd-nat.c (amd64bsd_fetch_inferior_registers)
1681 (amd64bsd_store_inferior_registers): Likewise.
1682
1683 2008-01-16 Markus Deuling <deuling@de.ibm.com>
1684
1685 * ppc-linux-nat.c (ppc_register_u_addr): Add gdbarch as parameter.
1686 Replace current_gdbarch by gdbarch. Update caller.
1687
1688 2008-01-16 Markus Deuling <deuling@de.ibm.com>
1689
1690 * dbxread.c (repeated_header_complaint, dbx_symfile_init)
1691 (read_dbx_dynamic_symtab, function_outside_compilation_unit_complaint)
1692 (read_dbx_symtab, end_psymtab, dbx_psymtab_to_symtab_1)
1693 (dbx_psymtab_to_symtab, read_ofile_symtab, process_one_symbol)
1694 (stabsect_build_psymtabs): Fix indentation.
1695
1696 2008-01-15 Michael Snyder <msnyder@specifix.com>
1697
1698 * corelow.c (core_xfer_partial): Comment, cut/paste error.
1699
1700 2008-01-14 Pierre Muller <muller@ics.u-strasbg.fr>
1701
1702 * win32-nat.c (win32_create_inferior): Restore code calling
1703 CloseHandle on ProcessInformation structure.
1704
1705 2008-01-13 Nick Hudson <nick.hudson@dsl.pipex.com>
1706
1707 * configure.ac: Check for void * as 3 argument of ptrace.
1708 * configure: regenerate.
1709
1710 2008-01-11 Markus Deuling <deuling@de.ibm.com>
1711
1712 * alpha-tdep.c (alpha_heuristic_proc_start)
1713 (alpha_sigtramp_register_address): Add gdbarch as parameter. Replace
1714 current_gdbarch by gdbarch.
1715
1716 (alpha_heuristic_frame_unwind_cache): Use get_frame_arch to get at the
1717 current architecture by frame_info. Update alpha_heuristic_proc_start
1718 call.
1719
1720 (alpha_sigtramp_frame_this_id, alpha_sigtramp_frame_prev_register): Use
1721 get_frame_arch to get at the current architecture by frame_info. Update
1722 alpha_sigtramp_register_address call.
1723
1724 * arm-tdep.c (thumb_scan_prologue): Add gdbarch as parameter and replace
1725 current_gdbarch by gdbarch. Update caller.
1726 (convert_to_extended, convert_from_extended): Add endianess parameter
1727 for comparison. Update caller.
1728 (arm_extract_return_value, arm_store_return_value): Use
1729 get_regcache_arch to get at the current architecture.
1730
1731 * cris-tdep.c (cris_register_size): Add gdbarch as parameter. Replace
1732 current_gdbarch by gdbarch. Update caller.
1733 (cris_gdb_func, move_to_preg_op, none_reg_mode_move_from_preg_op): Add
1734 gdbarch as parameter. Update caller. Replace current_gdbarch by gdbarch.
1735
1736 * h8300-tdep.c (E_PSEUDO_CCR_REGNUM, E_PSEUDO_EXR_REGNUM, BINWORD): Add
1737 gdbarch as parameter. Update caller.
1738 (h8300_init_frame_cache): Add gdbarch as parameter. Replace
1739 current_gdbarch by gdbarch. Update caller.
1740
1741 * hppa-tdep.c (skip_prologue_hard_way): Add gdbarch as parameter and
1742 update caller. Replace current_gdbarch by gdbarch.
1743
1744 * m32c-tdep.c (m32c_skip_trampoline_code): Use get_frame_arch to get at
1745 the current architecture. Replace current_gdbarch by gdbarch.
1746 * m68hc11-tdep.c (m68hc11_frame_unwind_cache): Likewise.
1747 (STACK_CORRECTION, USE_PAGE_REGISTER): Replace M6811_TDEP by its
1748 expression. Add gdbarch as parameter and replace current_gdbarch with
1749 it. Update caller.
1750 (M6811_TDEP): Remove.
1751 (m68hc11_frame_prev_register): Use get_frame_arch to get at the current
1752 architecture.
1753 (m68hc11_scan_prologue): Add gdbarch as parameter. Replace
1754 current_gdbarch by gdbarch. Update caller.
1755
1756 * m68k-tdep.c (m68k_analyze_prologue): Add gdbarch as parameter and
1757 update caller.
1758 (m68k_analyze_register_saves): Likewise. Also replace current_gdbarch
1759 by gdbarch.
1760
1761 * rs6000-tdep.c (skip_prologue): Add gdbarch as parameter and update
1762 caller. Relace current_gdbarch by gdbarch.
1763 (altivec_register_p, spe_register_p): Likewise.
1764 * ppc-tdep.h (altivec_register_p, spe_register_p): Add gdbarch as
1765 parameter.
1766 * ppc-linux-nat.c (fetch_register, store_register): Update caller of
1767 altivec_register_p and spe_register_p.
1768
1769 * score-tdep.c (score_fetch_inst): Add gdbarch as parameter. Update
1770 caller. Replace current_gdbarch by gdbarch.
1771 (score_analyze_prologue): use get_frame_arch to get at the current
1772 architecture.
1773
1774 * sparc-tdep.h (sparc_analyze_prologue): Add gdbarch as parameter.
1775 * sparc-tdep.c (sparc_analyze_prologue): Likewise. Replace
1776 current_gdbarch by gdbarch. Update caller.
1777 (sparc_frame_cache): Use get_frame_arch to get at the current
1778 architecture.
1779 * sparce64-tdep.c (sparc64_skip_prologue): Update call of
1780 sparc_analyze_prologue.
1781
1782 * mn10300-tdep.c (mn10300_dwarf2_reg_to_regnum): Add gdbarch as
1783 parameter.
1784
1785 2008-01-11 Markus Deuling <deuling@de.ibm.com>
1786
1787 * exec.c: #include "arch-utils.h"
1788 (print_section_info): Use gdbarch_from_bfd to get at the
1789 current architecture. Replace current_gdbarch. Fix indention. Replace
1790 deprecated_print_address_numeric by paddress.
1791 * Makefile.in (exec.o) Add dependency to arch-utils.h.
1792
1793 * valprint.c (val_print_string): Replace
1794 deprecated_print_address_numeric.
1795 * tracepoint.c (trace_mention, scope_info): Likewise.
1796 * symmisc.c (dump_msymbols, dump_psymtab, dump_symtab_1, print_symbol)
1797 (print_symbol, print_partial_symbols, maintenance_info_psymtabs)
1798 (maintenance_check_symtabs): Likewise.
1799 * symfile.c (list_overlays_command): Likewise.
1800 * stack.c (frame_info, print_block_frame_labels): Likewise.
1801 * printcmd.c (print_address, print_address_demangle)
1802 (address_info): Likewise.
1803 * corefile.c (memory_error): Likewise.
1804 * infcmd.c (jump_command): Likewise.
1805 * breakpoint.c (insert_bp_location, describe_other_breakpoints)
1806 (mention, delete_breakpoint): Likewise.
1807 * c-valprint.c (print_function_pointer_address, c_val_print): Likewise.
1808 * dwarf2read.c (dump_die): Likewise.
1809 * ada-valprint.c (ada_val_print_1): Likewise.
1810 * f-valprint.c (f_val_print): Likewise.
1811 * linux-fork.c (info_forks_command): Likewise.
1812 * m32r-com.c (m32r_load_section, m32r_load)
1813 (m32r_upload_command): Likewise.
1814
1815 * ui-out.c (ui_out_field_core_addr): Remove unnecessary comment.
1816
1817 2008-01-11 Markus Deuling <deuling@de.ibm.com>
1818
1819 * gdbarch.sh (skip_prologue): Add gdbarch
1820 as parameter.
1821 * gdbarch.{c,h}: Regenerate.
1822
1823 * alpha-tdep.c (alpha_skip_prologue): Add gdbarch as parameter.
1824 * amd64-tdep.c (amd64_skip_prologue): Likewise.
1825 * avr-tdep.c (avr_skip_prologue): Likewise.
1826 * cris-tdep.c (cris_skip_prologue): Likewise.
1827 * frv-tdep.c (frv_skip_prologue): Likewise.
1828 * h8300-tdep.c (h8300_skip_prologue): Likewise.
1829 * hppa-tdep.c (hppa_skip_prologue): Likewise.
1830 * i386-tdep.c (i386_skip_prologue): Likewise.
1831 * ia64-tdep.c (ia64_skip_prologue): Likewise.
1832 * iq2000-tdep.c (iq2000_skip_prologue): Likewise.
1833 * m32r-tdep.c (m32r_skip_prologue): Likewise.
1834 * m68hc11-tdep.c (m68hc11_skip_prologue): Likewise.
1835 * m68k-tdep.c (m68k_skip_prologue): Likewise.
1836 * m88k-tdep.c (m88k_skip_prologue): Likewise.
1837 * mep-tdep.c (mep_skip_prologue): Likewise.
1838 * mips-tdep.c (mips_skip_prologue): Likewise.
1839 * mn10300-tdep.c (mn10300_skip_prologue): Likewise.
1840 * mt-tdep.c (mt_skip_prologue): Likewise.
1841 * rs6000-tdep.c (rs6000_skip_prologue): Likewise.
1842 * score-tdep.c (score_skip_prologue): Likewise.
1843 * sh64-tdep.c (sh64_skip_prologue): Likewise.
1844 * sh-tdep.c (sh_skip_prologue): Likewise.
1845 * sparc64-tdep.c (sparc64_skip_prologue): Likewise.
1846 * sparc-tdep.c (sparc32_skip_prologue): Likewise.
1847 * spu-tdep.c (spu_skip_prologue): Likewise.
1848 * v850-tdep.c (v850_skip_prologue): Likewise.
1849 * vax-tdep.c (vax_skip_prologue): Likewise.
1850 * xstormy16-tdep.c (xstormy16_skip_prologue): Likewise.
1851 * xtensa-tdep.c (xtensa_skip_prologue): Likewise.
1852
1853 * arm-tdep.c (arm_skip_prologue): Add gdbarch as parameter. Replace
1854 current_gdbarch by gdbarch.
1855 * m32c-tdep.c (m32c_skip_prologue): Likewise.
1856 * s390-tdep.c (s390_skip_prologue): Likewise.
1857
1858 2008-01-10 Doug Evans <dje@google.com>
1859
1860 * defs.h (struct continuation_arg): Fix typo in comment.
1861 * target.c (target_translate_tls_address): Fix comment spelling error.
1862
1863 2008-01-09 Thiago Jung Bauermann <bauerman@br.ibm.com>
1864
1865 * doublest.h (DOUBLEST_PRINT_FORMAT): Remove % from string.
1866 (DOUBLEST_SCAN_FORMAT): Likewise.
1867 * dfp.c (decimal_from_floating): Use DOUBLEST_PRINT_FORMAT.
1868 * ada-lex.l (processReal): Prepend "%" to use of DOUBLEST_SCAN_FORMAT.
1869 * c-exp.y (parse_number): Likewise.
1870 * jv-exp.y (parse_number): Likewise.
1871 * objc-exp.y (parse_number): Likewise.
1872 * p-exp.y (parse_number): Likewise.
1873
1874 2008-01-09 Joel Brobecker <brobecker@adacore.com>
1875
1876 * gdbtypes.c (create_array_type): Add handling of null Ada arrays.
1877 (check_typedef): Likewise.
1878
1879 2008-01-09 Luis Machado <luisgpm@br.ibm.com>
1880
1881 * printcmd.c (printf_command): Add seen_big_h, seen_big_d and
1882 seen_double_big_d, treat the new H, D, and DD modifiers as length
1883 modifiers.
1884
1885 2008-01-08 Joel Brobecker <brobecker@adacore.com>
1886
1887 * dwarf2read.c (read_enumeration_type): Add comment.
1888
1889 2008-01-08 Thiago Jung Bauermann <bauerman@br.ibm.com>
1890
1891 * config.in: Regenerate.
1892
1893 2008-01-08 Joel Brobecker <brobecker@adacore.com>
1894
1895 * ada-lang.c (ada_convert_actual): Renames convert_actual.
1896 Make non-static.
1897 (ada_convert_actuals): Delete.
1898 * ada-lang.h (ada_convert_actual): Add declaration.
1899 (ada_convert_actuals): Remove declaration.
1900 * infcall.c: #include "ada-lang.h".
1901 (value_arg_coerce): Add new parameter sp. Update function
1902 documetnation. Add handling of Ada function call parameters.
1903 * Makefile.in (infcall.o): Update dependencies.
1904
1905 2008-01-08 Paul Hilfinger <hilfinger@adacore.com>
1906
1907 * ada-lang.c (ensure_lval): Fix value lval kind.
1908 (convert_actual): Add handling for arguments passed by reference.
1909
1910 2008-01-08 Doug Evans <dje@google.com>
1911
1912 * dbxread.c (read_dbx_symtab): Fix indentation.
1913
1914 2008-01-07 Thiago Jung Bauermann <bauerman@br.ibm.com>
1915
1916 * Makefile.in (dfp.o): Depend on expression.h, gdbtypes.h and value.h.
1917 (valarith.o): Depend on dfp.h.
1918 (valops.o): Likewise.
1919 * dfp.c: Include expression.h, gdbtypes.h, value.h and dfp.h.
1920 (set_decnumber_context): New function.
1921 (decimal_check_errors): Likewise.
1922 (decimal_from_number): Likewise.
1923 (decimal_to_number): Likewise.
1924 (decimal_from_string): Use set_decnumber_context and
1925 decimal_check_errors.
1926 (decimal_from_integral): New function.
1927 (decimal_from_floating): Likewise.
1928 (decimal_to_double): Likewise.
1929 (promote_decimal): Likewise.
1930 (decimal_binop): Likewise.
1931 (decimal_is_zero): Likewise.
1932 (decimal_compare): Likewise.
1933 (decimal_convert): Likewise.
1934 * dfp.h (decimal_from_integral): New prototype.
1935 (decimal_from_floating): Likewise.
1936 (decimal_to_double): Likewise.
1937 (decimal_binop): Likewise.
1938 (decimal_is_zero): Likewise.
1939 (decimal_compare): Likewise.
1940 (decimal_convert): Likewise.
1941 * eval.c (evaluate_subexp_standard): Remove expect_type argument from
1942 call to value_from_decfloat.
1943 * valarith.c: Include dfp.h.
1944 (value_args_as_decimal): New function.
1945 (value_binop): Add if block to handle TYPE_CODE_DECFLOAT values.
1946 (value_logical_not): Likewise.
1947 (value_equal): Likewise.
1948 (value_less): Likewise.
1949 (value_pos): Likewise.
1950 (value_neg): Formatting fix.
1951 * valops.c: Include dfp.h.
1952 (value_cast): Add if block to handle TYPE_CODE_DECFLOAT values.
1953 * value.c (unpack_long): Add case to handle TYPE_CODE_DECFLOAT.
1954 (unpack_double): Add if block to handle TYPE_CODE_DECFLOAT.
1955 (value_from_decfloat): Remove expect_type argument.
1956 * value.h (value_from_decfloat): Update prototype.
1957
1958 2008-01-07 Vladimir Prus <vladimir@codesourcery.com>
1959
1960 Ignore change in name of dynamic linker during
1961 execution on Solaris. This also unbreaks pending breakpoints.
1962
1963 * solist.h (struct target_so_ops): New field same.
1964 * solib-svr4.c (svr4_same): New.
1965 (_initialize_svr4_solib): Register svr4_same.
1966 * solib.c (update_solib_list): Use ops->same, if available.
1967
1968 2008-01-06 Christopher Faylor <me+cygwin@cgf.cx>
1969
1970 * win32-nat.c (win32_make_so): Use cygwin-style path to avoid warnings
1971 when using MS-DOS paths.
1972
1973 2008-01-05 Pedro Alves <pedro@codesourcery.com>
1974
1975 * NEWS: Mention --pid and --core command line behaviour changes.
1976
1977 2008-01-05 Pedro Alves <pedro@codesourcery.com>
1978
1979 * main.c (captured_main): Remove 'count' varible and the
1980 ALIGN_STACK_ON_ENTRY block that used it. Error out if --core and
1981 --pid options were issued simultaneously. If an explicit pid
1982 option was passed, don't fallback to core file. Detect extra
1983 arguments better in the presence of explicit pid or core
1984 arguments.
1985
1986 2008-01-05 Joel Brobecker <brobecker@adacore.com>
1987
1988 * ada-lang.c (ada_which_variant_applies): Correctly compute
1989 the value of the discriminant when the variant record is packed.
1990
1991 2008-01-04 Joel Brobecker <brobecker@adacore.com>
1992
1993 * ada-lang.c (is_name_suffix): Handle middle-name numeric suffixes
1994 that are used to differentiate homonyms.
1995
1996 2008-01-04 Jerome Guitton <guitton@adacore.com>
1997
1998 * ada-lang.c (decode_packed_array_type): Avoid a seg fault
1999 when the type is an anonymous pointer type.
2000 (ada_check_typedef): Avoid a seg fault when the type is null.
2001 * ada-typeprint.c (print_array_type): Add support for pointer
2002 to packed arrays.
2003
2004 2008-01-04 Paul N. Hilfinger <hilfinger@adacore.com>
2005
2006 * ada-exp.y: Allow '{type} ADDRESS' notation on left of assignment.
2007
2008 2008-01-04 Joel Brobecker <brobecker@adacore.com>
2009
2010 * ada-lang.c (ada_evaluate_subexp): Evaluate tagged types in
2011 EVAL_NORMAL mode when noside is EVAL_AVOID_SIDE_EFFECTS.
2012
2013 2008-01-04 Joel Brobecker <brobecker@adacore.com>
2014
2015 * ada-exp.y (chop_separator): New function.
2016 (write_selectors): Rewrite to re-use chop_separator.
2017 (ada_nget_field_index, get_symbol_field_type): New functions.
2018 (write_var_or_type): Add support for "ptype TYPENAME.FIELD"
2019 expressions.
2020
2021 2008-01-03 Thiago Jung Bauermann <bauerman@br.ibm.com>
2022
2023 * symtab.c (find_pc_sect_line): Use SYMBOL_VALUE_ADDRESS instead
2024 of SYMBOL_VALUE when working with function symbols.
2025
2026 2008-01-03 Joel Brobecker <brobecker@adacore.com>
2027
2028 * ada-lang.c (resolve_subexp): Add handling of OP_REGISTER
2029 expressions. These expressions do not need to be rewriten.
2030
2031 2008-01-03 Joel Brobecker <brobecker@adacore.com>
2032
2033 * dwarf2read.c (read_enumeration_type): Flag type as stub if
2034 the given die is a declaration.
2035
2036 2008-01-03 Joel Brobecker <brobecker@adacore.com>
2037
2038 * ada-lang.c (ada_array_bound_from_type): Make non-static.
2039 Handle properly the case when the index type is an enumerated type.
2040 Do not return the subtype of the bounds type, just return the
2041 bounds type directly - this is not needed and is more consistent
2042 with what we do for arrays when no XA parallel type exists.
2043
2044 2008-01-03 Joel Brobecker <brobecker@adacore.com>
2045
2046 * ada-lang.c (static_unwrap_type): Add forward declaration.
2047 (template_to_static_fixed_type): Fields of dynamic types sometimes
2048 also need to be unwrapped. Take this into account.
2049 (ada_to_fixed_type_1): Renamed from ada_to_fixed_type.
2050 (ada_to_fixed_type): New wrapper around ada_to_fixed_type_1.
2051 * ada-typeprint.c (ada_print_type): Get the typename from
2052 the original type, not the base type.
2053
2054 2008-01-03 Jerome Guitton <guitton@adacore.com>
2055
2056 * ada-lang.c (ada_value_struct_elt, to_fixed_array_type)
2057 (to_fixed_array_type, ada_to_fixed_value_create, unwrap_value):
2058 Update calls to ada_to_fixed_type.
2059 (ada_template_to_fixed_record_type_1): Ditto, but without looking
2060 for the tag.
2061 (ada_to_fixed_type): Add check_tag parameter; do not look for
2062 tag if null. When looking for a tag, use a fixed record type.
2063 * ada-lang.h (ada_to_fixed_type): Add check_tag parameter.
2064 * ada-valprint.c (printable_val_type, ada_value_print): Update
2065 calls to ada_to_fixed_type.
2066
2067 2008-01-03 Luis Machado <luisgpm@br.ibm.com>
2068
2069 * doublest.c (convert_floatformat_to_doublest): Call
2070 floatformat_to_doublest instead of floatformat_to_double and use
2071 DOUBLEST variables.
2072 (convert_doublest_to_floatformat): Call floatformat_from_doublest
2073 instead of floatformat_from_double and use DOUBLEST variables.
2074
2075 2008-01-03 Nick Hudson <nick.hudson@dsl.pipex.com>
2076
2077 * MAINTAINERS (Write After Approval): Add self.
2078
2079 2008-01-03 Joel Brobecker <brobecker@adacore.com>
2080
2081 * symfile.c (set_initial_language): Make non-static.
2082 * symfile.h (set_initial_language): Add declaration.
2083 * language.c: #include "symfile.h".
2084 (set_language): Call set_initial_language if the frame language
2085 could not be determined.
2086
2087 2008-01-03 Paul N. Hilfinger <hilfinger@adacore.com>
2088
2089 * eval.c (evaluate_subexp_for_address): Provide frame address to
2090 locate_var_value only if it will be needed.
2091
2092 2008-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2093
2094 * linux-nat.c (linux_child_follow_fork): Call also CHECK_FOR_THREAD_DB.
2095
2096 2008-01-02 Joel Brobecker <brobecker@adacore.com>
2097
2098 * ada-lang.c (ada_evaluate_subexp): Modify the value returned
2099 when noside is EVAL_AVOID_SIDE_EFFECTS to be an lval_memory.
2100 This is needed to make sure that any other treatment applied
2101 to the resulting value does not fail for spurious reason,
2102 such as trying to take the address of this value.
2103
2104 2008-01-02 Joel Brobecker <brobecker@adacore.com>
2105
2106 * ada-lang.c (ada_value_equal): Dereference reference types when
2107 comparing arrays.
2108
2109 2008-01-01 Daniel Jacobowitz <dan@codesourcery.com>
2110
2111 Updated copyright notices for most files.
2112
2113 2008-01-01 Christopher Faylor <me+gdb@cgf.cx>
2114
2115 * win32-nat.c (psapi_module_handle): Remove static.
2116 (get_module_name): Rename from psapi_get_dll_name. Revamp slightly to
2117 return first module found if base_address is zero. Don't initialize
2118 psapi function pointers here. Convert to cygwin paths when
2119 appropriate.
2120 (win32_pid_to_exec_file): Use Cygwin's /proc interface to determine
2121 executable name. Use get_module_name when that fails or when
2122 !__CYGWIN__.
2123 (_initialize_psapi): New function. Initialize psapi stuff before it is
2124 needed or issue a warning if it is not found. Move psapi_module_handle
2125 here.
2126
2127 2008-01-01 Joel Brobecker <brobecker@adacore.com>
2128
2129 * ada-lang.c (ada_remove_trailing_digits): New function.
2130 (ada_remove_po_subprogram_suffix): New function.
2131 (ada_decode): Improve. Move the description of the algorithm
2132 directly inside the code, instead of in the function global
2133 description.
2134
2135 2008-01-01 Joel Brobecker <brobecker@adacore.com>
2136
2137 * ada-valprint.c (ada_val_print_1) [TYPE_CODE_REF]: Ignore deref_ref
2138 and always print the dereferenced value.
2139
2140 2008-01-01 Joel Brobecker <brobecker@adacore.com>
2141
2142 * ada-lang.c (ada_evaluate_subexp, case BINOP_SUB): Add handling
2143 of the case where the first argument is a reference.
2144 (ada_evaluate_subexp, case BINOP_ADD): Likewise.
2145
2146 2008-01-01 Joel Brobecker <brobecker@adacore.com>
2147
2148 Implement support for Ada interface types.
2149
2150 * ada-lang.c (ada_is_dispatch_table_ptr_type): New function.
2151 (ada_is_ignored_field): Ignore fields that are a dispatch table
2152 of a tagged type.
2153
2154 2008-01-01 Joel Brobecker <brobecker@adacore.com>
2155
2156 * top.c (print_gdb_version): Update copyright year.
2157
2158 2008-01-01 Joel Brobecker <brobecker@adacore.com>
2159
2160 * ChangeLog-2007: New ChangeLog rotation.
2161 * ChangeLog: Reset for 2008.
2162 * config/djgpp/fnchange.lst: Add entries for ChangeLog-2006 and
2163 ChangeLog-2007.
2164
2165 For older changes see ChangeLog-2007.
2166 \f
2167 Local Variables:
2168 mode: change-log
2169 left-margin: 8
2170 fill-column: 74
2171 version-control: never
2172 coding: utf-8
2173 End: