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