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