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