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