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