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