* objfiles.h (struct obj_section): Remove addr and endaddr fields.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
f1f6aadf
PA
12008-08-20 Pedro Alves <pedro@codesourcery.com>
2
3 * objfiles.h (struct obj_section): Remove addr and endaddr fields.
4 (obj_section_offset, obj_section_addr, obj_section_endaddr): New
5 macros.
6 * objfiles.c (add_to_objfile_sections): Don't set addr, endaddr
7 and offset. Use size_t instead of unsigned long.
8 (build_objfile_section_table): Use size_t instead of unsigned
9 long.
10 (objfile_relocate): Don't relocate s->addr and s->endaddr, they're
11 gone.
12 (find_pc_sect_section): Use obj_section_addr and
13 obj_section_endaddr.
14 * symfile.c (symfile.c): Remove code that maps sections
15 offsets in "addr" to the object's sections.
16 * blockframe.c (find_pc_partial_function): Use obj_section_endaddr.
17 * gcore.c (gcore_create_callback): Use obj_section_addr and
18 obj_section_endaddr.
19 * maint.c (print_objfile_section_info): Likewise.
20 * printcmd.c (sym_info): Use obj_section_addr and
21 obj_section_endaddr.
22 * symtab.c (fixup_section): Likewise.
23
3923a2b2
MK
242008-08-20 Mark Kettenis <kettenis@gnu.org>
25
26 * sparc-tdep.c: Make some comments catch up with reality.
27
b3eb342c
VP
282008-08-20 Vladimir Prus <vladimir@codesourcery.com>
29
30 * NEWS: Mention 'set target-async'
31
7f7efbd9
VP
322008-08-19 Vladimir Prus <vladimir@codesourcery.com>
33
34 * infrun.c (resume): If the thread is placed to the deferred step
35 queue, mark it as running.
36
9908b566
VP
372008-08-19 Vladimir Prus <vladimir@codesourcery.com>
38
39 Make sure target supports non-stop.
40 * infcmd.c (run_command_1, attach_command): If non-stop mode
41 is requested, verify the target supports it.
42 * linux-nat.c (linux_nat_supports_non_stop): New.
43 (linux_nat_add_target): Register the above.
44 * target.c (find_default_supports_non_stop)
45 (target_supports_non_stop): New.
46 (init_dummy_target): Register find_default_supports_non_stop.
47 * target.h (struct target_ops): New field to_supports_non_stop.
48 (target_supports_non_stop): New.
49
c6ebd6cf
VP
502008-08-19 Pedro Alves <pedro@codesourcery.com>
51 Vladimir Prus <vladimir@codesourcery.com>
52
53 * target.c (target_async_permitted, target_async_permitted_1)
54 (set_maintenance_target_async_permitted)
55 (show_maintenance_target_async_permitted): New.
56 (initialize_targets): Register 'set target-async'.
57 * target.h (target_async_permitted): Declare.
58 * linux-nat.c (linux_nat_async_enabled)
59 (linux_nat_async_permitted, set_maintenance_linux_async_permitted)
60 (show_maintenance_linux_async_permitted): Remove.
61 (sigchld_handler, linux_nat_is_async_p, linux_nat_can_async_p)
62 (get_pending_events, linux_nat_async): Use target_async_permitted.
63 (linux_nat_set_async_mode): Remove, moving the only used bits
64 into...
65 (linux_nat_setup_async): This.
66 (_initialize_linux_nat): Do not register 'maint set linux-async'.
67 Use linux_nat_setup_async.
68 * remote.c (remote_async_permitted, remote_async_permitted_set)
69 (set_maintenance_remote_async_permitted)
70 (show_maintenance_remote_async_permitted): Remove.
71 (remote_open_1, remote_terminal_inferior, remote_can_async_p)
72 (remote_is_async_p): Use target_async_permitted.
73 (_initialize_remote): Don't register 'main set remote-async'.
74 * mi/mi-cmds.c (mi_cmds): Register -list-target-features.
75 * mi/mi-cmds.h (mi_cmd_list_target_features): New.
76 * mi/mi-main.c (mi_cmd_list_target_features): New.
77
073120b9
VP
782008-08-19 Vladimir Prus <vladimir@codesourcery.com>
79
80 * target.c (maybe_kill_then_attach)
81 (maybe_kill_then_create_inferior): Remove.
82 (update_current_target): Do not default to_attach,
83 to_create_inferiour, to_is_async_p.
84
690cc4eb 852008-08-19 Paul N. Hilfinger <hilfinger@adacore.com>
bfb8797a
PH
86
87 Changes for supporting boolean types in debugging data.
690cc4eb
PH
88 * ada-lang.c (discrete_type_high_bound,discrete_type_low_bound): Change
89 API to return LONGEST values rather than struct values.
90 (ada_evaluate_subexp): Change to use new API of discrete_type_low_bound
91 and discrete_type_high_bound.
92 (to_fixed_range_type): Create a range type in cases where
93 argument is base type and its limits are representable as ints.
94 (ada_is_modular_type): Correct so that base type must be integral.
95 * ada-lex.l (TRUEKEYWORD,FALSEKEYWORD): Make 'true' and 'false'
96 keywords when they appear alone, since we are phasing out
bfb8797a 97 direct representation of these identifiers in debugging data.
690cc4eb
PH
98 * ada-exp.y: Define 'true' and 'false' as primaries.
99 (type_boolean): New function.
100 (type_int,type_long,type_long_long,type_floattype_double)
101 (type_long_double): Remove uses of current_gdbarch for consistency
102 with type_boolean.
103 (write_int): Change comment to indicate that it might write boolean
104 constant as well.
105 * ada-typeprint.c (ada_print_type): Print '(false, true)' for boolean
106 type, since will no longer be represented as enumerated type in
107 debugging data.
108 * ada-valprint.c (print_optional_low_bound): Handle boolean case
109 as well.
bfb8797a
PH
110 * NEWS: Note support boolean types.
111
39540081
PA
1122008-08-18 Pedro Alves <pedro@codesourcery.com>
113
114 * bsd-uthread.c (bsd_uthread_close): New.
115 (bsd_uthread_deactivate): Don't cleanup here, just unpush the
116 target.
117 (bsd_uthread_solib_loaded): Fix typo.
118 (bsd_uthread_target): Register bsd_uthread_close.
119
87ab71f0
PA
1202008-08-18 Pedro Alves <pedro@codesourcery.com>
121
122 * corelow.c (core_open): Assume there was no upper layer left
123 behind from a previous inferior.
124 * target.c (pop_all_targets): Rename to ...
125 (pop_all_targets_above): ... this. Add a target stratum
126 parameter. Use it instead of hardcoding the dummy_stratum.
127 (pop_all_targets): New, defer to pop_all_targets_above.
128 (target_preopen): Use pop_all_targets_above.
129 * target.h (pop_all_targets_above): Declare.
130
5231c1fd
PA
1312008-08-18 Pedro Alves <pedro@codesourcery.com>
132
133 * gdbthread.h (thread_change_ptid): Declare.
134 * infrun.c (infrun_thread_ptid_changed): New.
135 (_initialize_infrun): Attach infrun_thread_ptid_changed to the
136 thread_ptid_changed observer.
137 * regcache.c (regcache_thread_ptid_changed): New.
138 (_initialize_regcache): Attach regcache_thread_ptid_changed to the
139 thread_ptid_changed observer.
140 * thread.c (thread_change_ptid): New.
141
f98dfd4b
TT
1422008-08-18 Tom Tromey <tromey@redhat.com>
143
144 * symfile.c (reread_symbols): Update.
145 * solib-sunos.c (allocate_rt_common_objfile): Update.
146 * objfiles.c (allocate_objfile): Update.
147 * objfiles.h (struct objfile) <md, mmfd, deprecated_obj_private>:
148 Remove.
149
d87ecdfb
TT
1502008-08-18 Tom Tromey <tromey@redhat.com>
151
152 * gdbtypes.c (copy_type_recursive): Allocate 'stored' on objfile's
153 obstack.
154
46a9b8ed
DJ
1552008-08-18 Daniel Jacobowitz <dan@codesourcery.com>
156
157 * rs6000-tdep.c (struct rs6000_framedata): Add gpr_mask, used_bl,
158 lr_register.
159 (rs6000_in_function_epilogue_p): Check for bctr.
160 (skip_prologue): Initialize lr_register. Set lr_reg to a register
161 number. Set gpr_mask and used_bl. Continue scanning while some
162 expected registers are not saved. Set lr_register if LR is not
163 stored.
164 (rs6000_frame_cache): Handle gpr_mask and lr_register.
165
44feb3ce
TT
1662008-08-17 Tom Tromey <tromey@redhat.com>
167
168 PR gdb/1535:
169 * breakpoint.c (CATCH_PERMANENT, CATCH_TEMPORARY): New macros.
170 (ep_find_event_name_end): Remove.
171 (catch_fork_temporary, catch_vfork_temporary,
172 catch_fork_permanent, catch_vfork_permanent): New constants.
173 (catch_vfork, catch_fork): Remove.
174 (catch_fork_command_1): Add 'command' argument. Remove
175 'fork_kind' and 'tempflag'. Handle NULL 'arg'. Update switch for
176 all cases.
177 (catch_exec_command_1): Add 'command' argument; remove
178 'tempflag'. Handle NULL 'arg'.
179 (catch_load_command_1): Likewise.
180 (catch_unload_command_1): Likewise.
181 (catch_ada_exception_command): Likewise.
182 (catch_assert_command): Likewise.
183 (catch_catch_command): New function.
184 (catch_throw_command): Likewise.
185 (catch_command_1): Remove.
186 (catch_command): Just call error.
187 (tcatch_command): Likewise.
188 (catch_cmdlist): New global.
189 (tcatch_cmdlist): Likewise.
190 (add_catch_command): New function.
191 (_initialize_breakpoint): Create "catch" and "tcatch" as prefix
192 commands. Create all catch sub-commands.
193
0d6431e2
PA
1942008-08-17 Pedro Alves <pedro@codesourcery.com>
195
196 * gdbthread.h: Add comments.
197 * stack.c (get_selected_block): Return 0 on an exited thread.
198 * top.c (execute_command): Check for is_stopped, not !is_running.
199 * event-top.c (command_handler): Likewise.
200
8931f526
PA
2012008-08-16 Pedro Alves <pedro@codesourcery.com>
202
203 * mi/mi-main.c (mi_cmd_exec_next, mi_cmd_exec_next_instruction)
204 (mi_cmd_exec_step, mi_cmd_exec_step_instruction)
205 (mi_cmd_exec_finish): Remove "return".
206
aa76d38d
PA
2072008-08-16 Pedro Alves <pedro@codesourcery.com>
208
209 * target.h (pop_all_targets): Declare.
210 * target.c (pop_all_targets): New.
211 * top.c (quit_target): Pop all targets instead of just closing the
212 current.
213
311a4e6b
TJB
2142008-08-16 Vladimir Prus <vladimir@codesourcery.com>
215 Thiago Jung Bauermann <bauerman@br.ibm.com>
216
217 * cli-script.c (read_next_line): Add parse_commands argument.
218 (recurse_read_control_structure): Adapt to new read_next_line
219 signature.
220 (read_command_lines): Add parse_commands argument.
221 (define_command): Adapt to new read_command_lines signature.
222 (document_command): Likewise.
223 * breakpoint.c (commands_command): Likewise.
224 * defs.h (read_command_lines): Adjust function prototype.
225
24209737
PH
2262008-08-16 Paul N. Hilfinger <hilfinger@adacore.com>
227
228 * ada-lang.c (pos_atr): Account for the possibility that the
229 argument may be a reference.
230
9f1d5432
PH
2312008-08-16 Paul N. Hilfinger <hilfingr@adacore.com>
232
233 * xcoffread.c (scan_xcoff_symtab): Do not include global symbols
234 ('F' format) for @FIX names generated by the loader, retaining only
235 the minimal symbols (and no partial symbol tables) for these names.
236 Fixes warning messages about symbols that are found in partial
237 symbol tables, but not full symbol tables.
238
83c265ab
PA
2392008-08-16 Pedro Alves <pedro@codesourcery.com>
240
241 * infrun.c (fetch_inferior_event): Only call normal_stop if not
242 stopping quietly.
243
604c2f83
LM
2442008-08-15 Luis Machado <luisgpm@br.ibm.com>
245
246 * rs6000-tdep: Include "features/rs6000/powerpc-vsx32.c".
247 Include "features/rs6000/powerpc-vsx64.c".
248 (ppc_supply_vsxregset): New function.
249 (ppc_collect_vsxregset): New function.
250 (IS_VSX_PSEUDOREG): New macro.
251 (IS_EFP_PSEUDOREG): New macro.
252 (vsx_register_p): New function.
253 (ppc_vsx_support_p): New function.
254 (rs6000_builtin_type_vec128): New function.
255 (rs6000_register_name): Hide upper halves of vs0~vs31. Return
256 correct names for VSX registers and EFPR registers.
257 (rs6000_pseudo_register_type): Return correct types for VSX
258 and EFPR registers.
259 (rs6000_pseudo_register_reggroup_p): Return correct group for
260 VSX and EFPR registers.
261 (ppc_pseudo_register_read): Rename to dfp_pseudo_register_read.
262 (ppc_pseudo_register_write): Rename to dfp_pseudo_register_write.
263 (vsx_pseudo_register_read): New function.
264 (vsx_pseudo_register_write): New function.
265 (efpr_pseudo_register_read): New function.
266 (efpr_pseudo_register_write): New function.
267 (rs6000_pseudo_register_read): Call new VSX and EFPR read functions.
268 (rs6000_pseudo_register_write): Call new VSX and EFPR write functions.
269 (rs6000_gdbarch_init): Declare have_vsx.
270 Initialize new upper half VSX registers.
271 Initialize VSX-related and EFPR-related pseudo-registers variables.
272 Adjust the number of pseudo registers accordingly.
273
274 * ppc-linux-nat.c: Define PTRACE_GETVSXREGS, PTRACE_SETVSXREGS
275 and SIZEOF_VSRREGS.
276 (gdb_vsxregset_t): New type.
277 (have_ptrace_getsetvsxregs): New variable.
278 (fetch_vsx_register): New function.
279 (fetch_register): Handle VSX registers.
280 (fetch_vsx_registers): New function.
281 (fetch_ppc_registers): Handle VSX registers.
282 (store_ppc_registers): Handle VSX registers.
283 (store_vsx_register): New function.
284 (store_register): Handle VSX registers.
285 (store_vsx_registers): New function.
286 (ppc_linux_read_description): Handle VSX-enabled inferiors.
287 (gdb_vsxregset_t): New type.
288 (supply_vsxregset): New function.
289 (fill_vsxregset): New function.
290
291 * ppc-tdep.h (vsx_register_p): New prototype.
292 (vsx_support_p): New prototype.
293 (ppc_vsr0_regnum): New variable.
294 (ppc_vsr0_upper_regnum): Likewise.
295 (ppc_efpr0_regnum): Likewise.
296 (ppc_builtin_type_vec128): New type.
297 (ppc_num_vsrs): New constant.
298 (ppc_num_vshrs): New constant.
299 (ppc_num_efprs): Likewise.
300 Define POWERPC_VEC_VSX PPC_VSR0_UPPER_REGNUM and PPC_VSR31_UPPER_REGNUM.
301 (ppc_supply_vsxregset): New prototype.
302 (ppc_collect_vsxregset): New prototype.
303
304 * ppc-linux-tdep.c: Include "features/rs6000/powerpc-vsx32l.c"
305 Include "features/rs6000/powerpc-vsx64l.c".
306 (_initialize_ppc_linux_tdep): Initialize VSX-enabled targets.
307 (ppc_linux_regset_sections): Add new ".reg-ppc-vsx" field.
308 (ppc32_linux_vsxregset): New 32-bit VSX-enabled regset.
309 (ppc_linux_regset_from_core_section): Handle VSX core section.
310 (ppc_linux_core_read_description): Support VSX-enabled core files.
311
312 * ppc-linux-tdep.h: Declare *tdesc_powerpc_vsx32l
313 Declare tdesc_powerpc_vsx64l
314
315 * corelow.c (get_core_register_section): Support VSX-enabled
316 core files.
317
318 * features/rs6000/power-vsx.xml: New VSX descriptions.
319 * features/rs6000/powerpc-vsx32.xml: New file.
320 * features/rs6000/powerpc-vsx32l.xml: New file.
321 * features/rs6000/powerpc-vsx64.xml: New file.
322 * features/rs6000/powerpc-vsx64l.xml: New file.
323 * features/rs6000/powerpc-vsx32.c: New file (generated).
324 * features/rs6000/powerpc-vsx32l.c: New file (generated).
325 * features/rs6000/powerpc-vsx64.c: New file (generated).
326 * features/rs6000/powerpc-vsx64l.c: New file (generated).
327 * features/Makefile: Updated with new descriptions.
328 * regformats/rs6000/powerpc-vsx32l.dat: New file (generated).
329 * regformats/rs6000/powerpc-vsx64l.dat: New file (generated).
330
dde7c0a9
VP
3312008-08-15 Vladimir Prus <vladimir@codesourcery.com>
332
333 * ia64-linux.nat (_initialize_ia64_linux_nat): Don't
334 call linux_target twice.
335
ebd67d87
AR
3362008-08-14 Aleksandar Ristovski <aristovski@qnx.com>
337
338 * nto-tdep.c (lm_info): Updated struct lm_info definition from
339 solib-svr4.c
340 (LM_ADDR): Use l_addr if available; if not, use link map and set
341 l_addr.
342
886a217c
TT
3432008-08-14 Tom Tromey <tromey@redhat.com>
344
345 * macrocmd.c (macro_define_command): Check for NULL argument.
346 (macro_undef_command): Likewise.
347
3d488bfc
PA
3482008-08-14 Pedro Alves <pedro@codesourcery.com>
349
350 * infcmd.c (continue_1): Add an ERROR_NO_INFERIOR call.
351
33e5cbd6
PA
3522008-08-13 Pedro Alves <pedro@codesourcery.com>
353
354 * breakpoint.c (always_inserted_auto, always_inserted_on)
355 (always_inserted_off, always_inserted_enums): New.
356 (always_inserted_mode): Change type to char* and point to
357 always_inserted_auto.
358 (show_always_inserted_mode): In auto mode, also show the current
359 effect of the option.
360 (breakpoints_always_inserted_mode): Adjust for the new auto mode.
361 (_initialize_breakpoint): Make the "set breakpoints
362 always-inserted" command an enum command. Extend help to describe
363 the auto mode.
364
8fbde58b
UW
3652008-08-13 Ulrich Weigand <uweigand@de.ibm.com>
366
367 * spu-tdep.c (info_spu_dma_command): Respect TSQV (tag status
368 query valid) bit. Ignore bits outside the condition field.
369 (info_spu_proxydma_command): Ignore bits outside the field.
370
11fa8e43
MS
3712008-08-12 Michael Snyder <msnyder@vmware.com>
372
373 * MAINTAINERS: Update my email address.
374
fcb09a75
UW
3752008-08-12 Ulrich Weigand <uweigand@de.ibm.com>
376
377 * ppc-linux-nat.c (ppc_linux_get_hwcap): Really get AT_HWCAP.
378
a6f3e723
SL
3792008-08-12 Pedro Alves <pedro@codesourcery.com>
380
381 Add no-ack mode to the remote protocol --- optionally stop ACKing
382 packets and responses when we have a reliable communication
383 medium.
384
385 Based on Apple's GDB, by Jason Molenda <jmolenda@apple.com>
386
387 * remote.c (struct remote_state): Add noack_mode field.
388 (PACKET_QStartNoAckMode): New.
389 (remote_start_remote): Don't any outstanding packet here.
390 (remote_open_1): Clear noack_mode. Ack any outstanding packet
391 here. Activate noack mode if requested.
392 (remote_protocol_features): Add QStartNoAckMode.
393 (remote_open_1):
394 (putpkt_binary): Don't send ack in noack mode.
395 (read_frame): Don't recompute the checksum in noack mode.
396 (getpkt_sane): Skip sending ack if in noack mode.
397 (_initialize_remote): Add set/show remote noack mode.
398 * NEWS: Note the new features.
399
8ab3d180
KB
4002008-08-11 Kevin Buettner <kevinb@redhat.com>
401
402 * rs6000-tdep.c (BL_MASK, BL_INSTRUCTION, BL_DISPLACEMENT_MASK):
403 New macros.
404 (rs6000_skip_main_prologue): New function.
405 (rs6000_gdb_arch_init): Register rs6000_skip_main_prologue.
406
63a61bf6
SL
4072008-08-11 Sandra Loosemore <sandra@codesourcery.com>
408
409 * MAINTAINERS (Write After Approval): Add self.
410
9d4fde75
SS
4112008-08-11 Stan Shebs <stan@codesourcery.com>
412
413 ARM BE8 support.
414 * disasm.c (gdb_disassemble_info): Set endian_code.
415 * gdbarch.sh (gdbarch_info): New field byte_order_for_code.
416 * gdbarch.h, gdbarch.c: Regenerate.
417 * arch-utils.c (initialize_current_architecture): Set the
418 default byte_order_for_code.
419 (gdbarch_info_init): Ditto.
420 (gdbarch_info_fill): Ditto.
421 * arm-tdep.c (SWAP_INT, SWAP_SHORT): New macros.
422 (thumb_analyze_prologue): Swap halfword if code endianness is
423 different from general endianness.
424 (arm_skip_prologue): Similarly.
425 (arm_scan_prologue): Ditto.
426 (thumb_get_next_pc): Ditto.
427 (arm_get_next_pc): Ditto.
428 (arm_gdbarch_init): Set byte_order_for_code from BE8 flag,
429 choose correct endianness for breakpoints.
430
6c613132
PA
4312008-08-10 Pedro Alves <pedro@codesourcery.com>
432
433 * bsd-kvm.c: Include "gdbthread.h".
434 (bsd_kvm_ptid): New.
435 (bsd_kvm_open): Add a main thread.
436 (bsd_kvm_close): Delete it.
437 (bsd_kvm_thread_alive): New.
438 (bsd_kvm_pid_to_str): New.
439 (bsd_kvm_add_target): Register bsd_kvm_thread_alive and
440 bsd_kvm_pid_to_str.
441 (bsd_kvm_add_target): Initialize bsd_kvm_ptid.
442
6eb7ee03
PA
4432008-08-09 Pedro Alves <pedro@codesourcery.com>
444
445 * buildsym.c (start_subfile): Properly cast sentinel in concat
446 call.
447 * cp-name-parser.y: Include "config.h".
448 * xml-tdesc.c (fetch_xml_from_file): Properly cast sentinel in
449 concat call.
450 * gdb_select.h: Include sys/time.h if sys/select.h is not
451 available.
452
444c3224
PA
4532008-08-09 Pedro Alves <pedro@codesourcery.com>
454
455 * go32-nat.c: Include "gdbthread.h".
456 (go32_stop, go32_kill_inferior): Delete the main thread.
457 (go32_create_inferior): Add it.
458 (go32_thread_alive, go32_pid_to_str): New.
459 (init_go32_ops): Register go32_thread_alive and go32_pid_to_str.
460
9d0b3624
PA
4612008-08-09 Pedro Alves <pedro@codesourcery.com>
462
463 * go32-nat.c (fetch_register, store_register): Pass the regcache
464 gdbarch to i386_fp_regnum_p and i386_fpc_regnum_p.
465 (go32_xfer_memory): Change type of myaddr parameter to gdb_byte.
466 (struct seg_descr, struct seg_descr): pack the whole struct
467 instead of each member individually.
468
509238d6
AS
4692008-08-09 Andreas Schwab <schwab@suse.de>
470
471 * python/python.c (_initialize_python): Use unabbreviated commands
472 in prefix name.
473
c068b4e8
DJ
4742008-08-09 Daniel Jacobowitz <dan@codesourcery.com>
475
476 * Makefile.in (stamp-h): Also create .deps.
477
21374e5f
TT
4782008-08-09 Tom Tromey <tromey@redhat.com>
479
480 * Makefile.in (generated_files): Add GNULIB_H.
481
7be67755
DA
4822008-08-09 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
483
484 * solib-pa64.c (pa64_solib_create_inferior_hook): Don't set
485 DT_HP_DEBUG_PRIVATE. Add warning if DT_HP_DEBUG_PRIVATE is not set.
486 Revise comment.
487 (pa64_current_sos): Remove map private warning warning.
488 * solib-som.c: Include string.h and sys/utsname.h.
489 (get_hpux_major_release): New function.
490 (som_solib_create_inferior_hook): Read dynamic linker header. Warn
491 about shared library private mapping on HP-UX 11 and later. Only force
492 private mapping of shared libraries on HP-UX 10 and earlier.
493 (link_map_start): Delete warning.
494
e0c62198
L
4952008-08-09 Xuepeng Guo <xuepeng.guo@intel.com>
496 H.J. Lu <hongjiu.lu@intel.com>
497 Mark Kettenis <kettenis@gnu.org>
498
499 * amd64-tdep.c (amd64_frame_cache): Add saved_sp_reg.
500 (amd64_init_frame_cache): Initialize saved_sp_reg.
501 (amd64_analyze_stack_align): New.
502 (amd64_analyze_prologue): Call it.
503 (amd64_frame_cache): Use saved_sp_reg if it is invalid. Don't set
504 %rip to 8 when halfway aligning the stack.
505
506 * amd64-tdep.h (amd64_regnum): Add AMD64_R9_REGNUM to
507 AMD64_R14_REGNUM.
508
509 * i386-tdep.c (i386_frame_cache): Remove stack_align. Add
510 saved_sp_reg.
511 (i386_alloc_frame_cache): Remove stack_align. Initialize
512 saved_sp_reg to -1.
513 (i386_analyze_stack_align): Rewrite.
514 (i386_frame_cache): Use saved_sp_reg if it is valid.
515
b9db4ced
UW
5162008-08-09 Ulrich Weigand <uweigand@de.ibm.com>
517
518 * target.c: Include "solib.h".
519 (target_pre_inferior): Call no_shared_libraries.
520 * infcmd.c (run_command_1): Do not call objfile_purge_solibs
521 or clear_solib.
522 (attach_command): Do not call clear_solib.
523
3979a37f
MK
5242008-08-09 Mark Kettenis <kettenis@gnu.org>
525
526 * i386obsd-nat.c (i386obsd_supply_pcb): Supply the right bytes for
527 the %eip register.
528
2b26d9fa
TT
5292008-08-08 Tom Tromey <tromey@redhat.com>
530
531 * Makefile.in (python.o): Remove dependencies. Use COMPILE and
532 POSTCOMPILE.
533 (python-utils.o): Likewise.
534
f1648876
AS
5352008-08-08 Andreas Schwab <schwab@suse.de>
536
537 * corefile.c (_initialize_core): Remove spurious paren from set
538 gnutarget doc string.
539
b7622095
LM
5402008-08-08 Luis Machado <luisgpm@br.ibm.com>
541
542 * ppc-linux-nat.c: Include "auxv.h" and "elf/common.h".
f1648876 543 Define PPC_FEATURE_BOOKE.
b7622095
LM
544 (ppc_linux_get_hwcap): New function.
545 (ppc_linux_region_ok_for_hw_watchpoint): Handle PowerPC 440
546 4-bytes alignment restrictions.
547 (ppc_linux_insert_watchpoint): Handle PowerPC 440-specific
548 positioning of the read/write flags.
549 (ppc_linux_watchpoint_addr_within_range): Handle PowerPC 440
550 4-bytes alignment.
551
2dc38344
PA
5522008-08-08 Pedro Alves <pedro@codesourcery.com>
553
554 Use ptid_t.tid to store thread ids instead of ptid_t.pid.
555
556 * win32-nat.c (win32_add_thread): Change thread argument type to
557 ptid_t. Adjust.
558 (win32_add_thread): Adjust.
559 (win32_delete_thread): Change thread argument type to ptid_t.
560 Adjust.
561 (win32_fetch_inferior_registers, win32_store_inferior_registers)
562 (win32_resume, get_win32_debug_event, get_win32_debug_event)
563 (win32_wait, win32_pid_to_exec_file, win32_pid_to_str): Adjust.
564 (init_win32_ops): Put to_magic last.
565 (win32_win32_thread_alive): Adjust.
566
4d6c6261
PA
5672008-08-08 Pedro Alves <pedro@codesourcery.com>
568
569 * remote-m32r-sdi.c (m32r_thread_alive, m32r_pid_to_str): New.
570 (init_m32r_ops): Register m32r_thread_alive and m32r_pid_to_str.
571
e5ef4d75
PA
5722008-08-08 Pedro Alves <pedro@codesourcery.com>
573
574 * remote-m32r-sdi.c: Include "gdbthread.h".
575 (remote_m32r_ptid): New.
576 (m32r_close): Delete the main thread.
577 (m32r_resume): Set inferior_ptid toA remote_m32r_ptid. Add the
578 main thread.
579 (m32r_kill, m32r_load, sdireset_command): Delete the main thread.
580 (_initialize_remote_m32r): Initialize remote_m32r_ptid.
581
a417dc56
RW
5822008-08-07 Tom Tromey <tromey@redhat.com>
583 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
584
585 * aclocal.m4, configure: Rebuild.
586 * configure.in: Call ZW_CREATE_DEPDIR,
587 ZW_PROG_COMPILER_DEPENDENCIES, AC_PROG_MAKE_SET.
588 (MAKE, GMAKE): New substs.
589 * acinclude.m4: Include depstand.m4.
590 * Makefile.in (DEPMODE, DEPDIR, COMPILE.post, COMPILE.pre,
591 COMPILE, POSTCOMPILE, depcomp): New variables.
592 Remove all _h variables.
593 Remove many .o targets.
594 ($(srcdir)/copying.c): avoid backslash-newline after comment
595 sign (@maintainer_mode_true@).
596 (HFILES_NO_SRCDIR): Regenerate.
597 (generated_files): New variable.
598 (all_gdbtk_cflags): Likewise.
599 (.c.o): Rewrote.
600 (init.o, version.o, copying.o): Remove.
601 (distclean): Remove DEPDIR.
602 (test-cp-name-parser.o, hpux-thread.o, main.o, monitor.o,
603 printcmd.o, procfs.o, v850ice.o): Rewrite.
604 (cli-cmds.o, cli-decode.o, cli-dump.o, cli-interp.o, cli-logging.o,
605 cli-script.o, cli-setshow.o, cli-utils.o): Likewise.
606 (gdbtk.o, gdbtk-bp.o, gdbtk-cmds.o, gdbtk-hooks.o, gdbtk-interp.o,
607 gdbtk-main.o, gdbtk-register.o, gdbtk-stack.o, gdbtk-varobj.o,
608 gdbtk-wrapper.o): Likewise.
609 (mi-cmd-break.o, mi-cmd-disas.o, mi-cmd-env.o, mi-cmd-file.o,
610 mi-cmds.o, mi-cmd-stack.o, mi-cmd-target.o, mi-cmd-var.o,
611 mi-console.o, mi-getopt.o, mi-interp.o, mi-main.o, mi-out.o,
612 mi-parse.o, mi-symbol-cmds.o, mi-common.o, signals.o, tui.o,
613 tui-command.o, tui-data.o, tui-disasm.o, tui-file.o, tui-hooks.o,
614 tui-interp.o, tui-io.o, tui-layout.o, tui-main.o, tui-out.o,
615 tui-regs.o, tui-source.o, tui-stack.o, tui-win.o, tui-windata.o,
616 tui-wingeneral.o, tui-winsource.o): Likewise.
617 (all_object_files): New variable.
618 ($(all_object_files)): New target.
619 Include dependency files, when using GNU Make.
620
12ab8a60
UW
6212008-08-07 Ulrich Weigand <uweigand@de.ibm.com>
622
623 * spu-tdep.c (info_spu_dma_cmdlist): Only show entries with
624 the valid bit set. Ensure display order respects partial
625 order defined by dependency bits.
626
6536cc32
DA
6272008-08-06 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
628
629 * solib-pa64.c (read_dld_descriptor): Return zero if load map is not
630 setup.
631
f73a15e4
MK
6322008-08-06 Mark Kettenis <kettenis@gnu.org>
633
634 * i386obsd-nat.c (i386obsd_supply_pcb): Adjust for changes in
635 OpenBSD 4.3.
636
d57a3c85
TJB
6372008-08-06 Vladimir Prus <vladimir@codesourcery.com>
638 Tom Tromey <tromey@redhat.com>
639 Thiago Jung Bauermann <bauerman@br.ibm.com>
640 Doug Evans <dje@google.com>
641
642 * Makefile.in (SUBDIR_PYTHON_OBS, SUBDIR_PYTHON_SRCS,
643 SUBDIR_PYTHON_DEPS, SUBDIR_PYTHON_LDFLAGS, SUBDIR_PYTHON_CFLAGS,
644 PYTHON_CFLAGS): New.
645 (python_h, python_internal_h): New.
646 (cli-script.o): Depend on python.h
647 (python.o, python-utils.o): New.
648 * cli/cli-script.c (print_command_lines): Handle python_control.
649 (execute_control_command): Handle python_control.
650 (execute_control_command_untraced): New function.
651 (while_command): Call execute_control_command_untraced.
652 (if_command): Likewise.
653 (get_command_line): Remove static attribute.
654 (read_next_line): Handle "python".
655 (recurse_read_control_structure): Handle python_control.
656 (read_command_lines): Handle python_control.
657 Include python.h.
658 * cli/cli-script.h (get_command_line): Add prototype.
659 (execute_control_command_untraced): Likewise.
660 * configure.ac: Add --with-python.
661 * defs.h (enum command_control_type) <python_control>: New
662 constant.
663 * python/python-internal.h: New file.
664 * python/python.c: New file.
665 * python/python.h: New file.
666 * python/python-utils.c: New file.
667 * NEWS: Mention Python scripting support and its new commands.
668
5141027d
UW
6692008-08-06 Ulrich Weigand <uweigand@de.ibm.com>
670
671 * spu-tdep.c (spu_gdbarch_init): Call set_gdbarch_frame_red_zone_size.
672
353cfe88
PM
6732008-08-06 Phil Muldoon <pmuldoon@redhat.com>
674
f1648876 675 * MAINTAINERS (Write After Approval): Add self.
353cfe88 676
d6b74ac4
PM
6772008-08-06 Phil Muldoon <pmuldoon@redhat.com>
678
679 * breakpoint.c (hw_breakpoint_used_count): Use breakpoint_enabled.
680 (insert_breakpoint_locations): Likewise.
681
ef0d312a
MS
6822008-08-05 Phil Muldoon <pmuldoon@redhat.com>
683
684 * breakpoint.c (create_longjmp_breakpoint): Remove unused struct
685 breakpoint.
686 (set_longjmp_breakpoint): Likewise.
687
fb6d93b2
UW
6882008-08-04 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
689
690 PR build/2490
691 * solib-pa64.c: Only compile if both HAVE_ELF_HP_H and __LP64__ are
692 defined.
693
e6ad058a
TT
6942008-08-05 Tom Tromey <tromey@redhat.com>
695
696 * bcache.c (deprecated_bcache_added): Initialize obstack.
697 (bcache_xmalloc): Don't initialize obstack.
698 (bcache_xfree): Conditionally free obstack.
699 (bcache_memory_used): Update.
700
11d31d94
TT
7012008-08-05 Tom Tromey <tromey@redhat.com>
702
703 * symfile.c (add_psymbol_to_bcache): Return a const pointer. Use
704 bcache_full.
705 (append_psymbol_to_list): Accept a const pointer.
706 (add_psymbol_to_list): Fix const correctness.
707 * bcache.h: (deprecated_bcache_added, deprecated_bcache): Remove.
708 (bcache_full): Declare.
709 * bcache.c (bcache_data, deprecated_bcache): Remove.
710 (bcache): Use bcache_full.
711 (bcache_full): Rename from deprecated_bcache_added. Change return
712 type.
713
5be973eb
SS
7142008-08-04 Stan Shebs <stan@codesourcery.com>
715
716 * solib-svr4.c (BKPT_AT_SYMBOL): Remove, always defined.
717 (bkpt_names): Remove SOLIB_BKPT_NAME, never defined.
718 (enable_break): Remove test of BKPT_AT_SYMBOL.
719
5062cc19
KS
7202008-08-02 Keith Seitz <keiths@redhat.com>
721
722 * acinclude.m4: Include ../config/tcl.m4 to pick up
723 standard Tcl configury bits.
724 Remove all Tcl, Tk, Itcl, Itk, etc definitions.
725 * configure.ac: Don't check if ../itcl exists when building
726 gdbtk. It could be installed.
727 Rewrite gdbtk configury to allow for using system-supplied
f1648876 728 Tcl and Tk. Gdbtk no longer requires build-time access to
5062cc19
KS
729 itcl and itk.
730 * Makefile.in: Remove everything related to itcl and itk.
731 Rewrite the Tcl bits for gdbtk to correspond to rewrite of
732 configure.ac.
733 Remove v850ice.o build rule.
734 (ALL_TCL_CFLAGS): New convenience defintion. Change all
735 gdbtk sources to use it.
736 * configure: Regenerate.
f1648876 737
6d76a53d
SS
7382008-07-31 Stan Shebs <stan@codesourcery.com>
739
740 * coffread.c (coff_symtab_read): Remove FUNCTION_EPILOGUE_SIZE.
741
ed7c5e43
SS
7422008-07-30 Stan Shebs <stan@codesourcery.com>
743
744 * objfiles.c (TARGET_KEEP_SECTION): Remove.
745 (add_to_objfile_sections): Remove use.
746
22ad7fee
TT
7472008-07-29 Tom Tromey <tromey@redhat.com>
748
749 * cli/cli-decode.c (lookup_cmd_1): Use memcpy.
750 (lookup_cmd_composition): Likewise.
751
d5529a84
TT
7522008-07-29 Tom Tromey <tromey@redhat.com>
753
754 * cli/cli-cmds.c (edit_command): Remove unused variables. Delete
755 dead code. Fix indentation.
756
938f4ca8
SS
7572008-07-29 Stan Shebs <stan@codesourcery.com>
758
759 * main.c (captured_main): Remove long-unused #if 0 blocks.
760
7f4b89d1
TT
7612008-07-28 Tom Tromey <tromey@redhat.com>
762
763 * annotate.h (deprecated_annotate_starting_hook): Remove.
764 (deprecated_annotate_stopped_hook): Remove.
765 (deprecated_annotate_exited_hook): Remove.
766 * Makefile.in (annotate.o): Depend on observer_h.
767 * top.c (deprecated_delete_breakpoint_hook): Remove.
768 (deprecated_create_breakpoint_hook): Likewise.
769 (deprecated_modify_breakpoint_hook): Likewise.
770 * interps.c (clear_interpreter_hooks): Update for removed hooks.
771 * breakpoint.c (mention): Don't call removed hook.
772 (delete_breakpoint): Likewise.
773 (disable_breakpoint): Likewise.
774 (do_enable_breakpoint): Likewise.
775 * annotate.c: Include observer.h.
776 (breakpoint_changed): Change type of argument.
777 (_initialize_annotate): Register observers.
778 (deprecated_annotate_starting_hook): Remove.
779 (deprecated_annotate_stopped_hook): Remove.
780 (deprecated_annotate_exited_hook): Remove.
781 (annotate_starting): Update for hook removal.
782 (annotate_stopped): Likewise.
783 (annotate_exited): Likewise.
784 * defs.h (deprecated_delete_breakpoint_hook): Remove.
785 (deprecated_create_breakpoint_hook): Likewise.
786 (deprecated_modify_breakpoint_hook): Likewise.
787
8641e682
TT
7882008-07-28 Tom Tromey <tromey@redhat.com>
789
790 * main.c (captured_main): Don't use BEFORE_MAIN_LOOP_HOOK.
791
064ef605
DJ
7922008-07-27 Daniel Jacobowitz <dan@codesourcery.com>
793
794 * configure.ac: Check for the GNU/Linux ptrace signature.
795 * configure: Regenerated.
796
57380f4e
DJ
7972008-07-27 Daniel Jacobowitz <dan@codesourcery.com>
798
799 * linux-nat.c (resume_callback): Add more debugging output.
800 (linux_nat_has_pending_sigint): New function, based on
801 linux_nat_has_pending.
802 (set_ignore_sigint, maybe_clear_ignore_sigint): New functions.
803 (stop_wait_callback): Remove flush_mask handling. Honor
804 ignore_sigint. Call maybe_clear_ignore_sigint. Pass NULL
805 to recursive calls.
806 (linux_nat_has_pending, flush_callback): Remove.
807 (linux_nat_filter_event): Check for ignore_sigint.
808 (linux_nat_wait): Remove flush_mask support and call to
809 flush_callback. Use set_ignore_sigint and maybe_clear_ignore_sigint.
810 * linux-nat.h (struct lwp_info): Add ignore_sigint field.
811
e09490f1
DJ
8122008-07-27 Daniel Jacobowitz <dan@codesourcery.com>
813
814 * linux-nat.c (count_events_callback, select_event_lwp_callback): Only
815 report events from resumed threads.
816
e38d4e1a
DJ
8172008-07-27 Daniel Jacobowitz <dan@codesourcery.com>
818
819 * mips-linux-tdep.c (mips_linux_syscall_next_pc): New function.
820 (mips_linux_init_abi): Set tdep->syscall_next_pc.
821 * mips-tdep.c (enum mips_fpu_type, struct gdbarch_tdep): Move to
822 mips-tdep.h.
823 (mips32_next_pc): Handle the syscall instruction.
824 * mips-tdep.h (enum mips_fpu_type, struct gdbarch_tdep): New,
825 from mips-tdep.c. Add syscall_next_pc to gdbarch_tdep.
826
fa8de41e
TT
8272008-07-26 Tom Tromey <tromey@redhat.com>
828
829 PR gdb/1158:
830 * valops.c (value_struct_elt): Treat function-valued field as a
831 static method.
832
ccb3ac8a
TT
8332008-07-26 Tom Tromey <tromey@redhat.com>
834
835 PR gdb/1136:
836 * macroexp.c (get_punctuator) <punctuators>: Rearrange to put
837 longer tokens first.
838
d72314c6
VP
8392008-07-26 Vladimir Prus <vladimir@codesourcery.com>
840
841 Kill cmd_async_ok.
f1648876
AS
842 * cli/cli-decode.h (CMD_ASYNC_OK, set_cmd_async_ok)
843 (get_cmd_async_ok): Remove.
844 * cli/cli-decode.c (set_cmd_async_ok, get_cmd_async_ok): Remove.
845 * cli/cli-cmds.c (init_cli_cmds): Don't use set_cmd_async_ok.
846 * infcmd.c (_initialize_infcmd): Likewise.
847 * thread.c (_initialize_thread): Likewise.
d72314c6 848
5b68030f
JM
8492008-07-25 Joseph Myers <joseph@codesourcery.com>
850
851 * mips-tdep.c (mips_n32n64_push_dummy_call): Handle passing
852 128-bit long doubles in even-odd pairs of FPRs. Do not
853 right-align float arguments for big-endian.
854 (mips_n32n64_return_value): Apply return value convention for
855 structs containing one or two floating-point values to soft-float
856 as well as hard-float. Handle 128-bit long doubles in such
857 structs.
858 (mips_o32_push_dummy_call): Only skip one integer register for a
859 float argument passed in an FPR.
860
383f836e
TT
8612008-07-25 Tom Tromey <tromey@redhat.com>
862
863 * tui/tui-hooks.c: Include observer.h.
864 (tui_event_default, tui_old_event_hooks, tui_event_hooks):
865 Remove.
866 (tui_bp_created_observer, tui_bp_deleted_observer,
867 tui_bp_modified_observer): New globals.
868 (tui_install_hooks): Use observers, not events.
869 (tui_remove_hooks): Likewise.
870 * mi/mi-cmd-break.c: Include observer.h, not gdb-events.h.
871 (mi_breakpoint_observers_installed, mi_can_breakpoint_notify): New
872 globals.
873 (breakpoint_notify): Check mi_can_breakpoint_notify.
874 (breakpoint_hooks): Remove.
875 (mi_cmd_break_insert): Attach observers. Don't use events.
876 * tracepoint.c: Include observer.h, not gdb-events.h.
877 (tracepoint_operation, trace_pass_command): Notify observer.
878 * interps.c: Don't include gdb-events.h.
879 (clear_interpreter_hooks): Don't call clear_gdb_event_hooks.
880 * gdbarch.c: Rebuild.
881 * gdbarch.sh: Emit include for observer.h, not gdb-events.h.
882 (deprecated_current_gdbarch_select_hack): Notify observer.
883 * breakpoint.h: Don't include gdb-events.h.
884 * breakpoint.c: Don't include gdb-events.h.
885 (condition_command): Notify observer.
886 (commands_command): Likewise.
887 (commands_from_control_command): Likewise.
888 (mention, delete_breakpoint, set_ignore_count): Likewise.
889 (disable_breakpoint, do_enable_breakpoint): Likewise.
890 * Makefile.in (gdb_events_h): Remove.
891 (breakpoint_h): Update.
892 (COMMON_OBS): Remove gdb-events.o.
893 (gdb-events.o): Remove.
894 (breakpoint.o, gdbarch.o, interps.o, tracepoint.o, gdbtk-bp.o,
895 gdbtk-hooks.o, mi-cmd-break.o, tui-hooks.o): Update.
896 * gdb-events.c: Remove.
897 * gdb-events.h: Remove.
898 * gdb-events.sh: Remove.
899
60e569b9
PA
9002008-07-24 Pedro Alves <pedro@codesourcery.com>
901
902 * remote.c (remote_threads_extra_info): Don't query the remote
903 server about info on the internally added main thread.
904
a6a7f2a5
AR
9052008-07-24 Aleksandar Ristovski <aristovski@qnx.com>
906
907 * nto-procfs.c (procfs_attach): Populate initial thread list.
908 (procfs_wait): Return new pid, built from the inferior status.
909
e63e4db2
TJB
9102008-07-23 Thiago Jung Bauermann <bauerman@br.ibm.com>
911
912 * configure.ac (CONFIG_INITS): Delete long obsoleted variable.
913 * configure: Regenerate.
914
14ef7606
AR
9152008-07-23 Aleksandar Ristovski <aristovski@qnx.com>
916
917 * nto-procfs.c (procfs_xfer_memory): Changed signature.
918 (procfs_resume): Workaround for dereferencing type-punned pointer
919 warning.
f1648876 920 * nto-tdep.c (nto_parse_redirection): Change signature to be const
14ef7606
AR
921 correct.
922 * nto-tdep.h (nto_parse_redirection): Likewise.
923
cfd8ab24
SS
9242008-07-21 Stan Shebs <stan@codesourcery.com>
925
926 Scrub remnants of IN_SOLIB_DYNSYM_RESOLVE_CODE.
927 * gdbarch.sh: Adjust comment to refer to
928 in_solib_dynsym_resolve_code().
929 * gdbarch.h, gdbarch.c: Update.
930 * solib-osf.c: Ditto.
931 * infrun.c: Ditto.
932 (handle_inferior_event): Use in_solib_dynsym_resolve_code
933 unconditionally.
934 * config/mips/nm-irix5.h: Remove undef of
935 IN_SOLIB_DYNSYM_RESOLVE_CODE.
936
781b42b0
TT
9372008-07-21 Tom Tromey <tromey@redhat.com>
938
939 * symfile.c (reread_symbols): Don't pass argument to observer.
940 * exec.c (exec_file_attach): Don't pass argument to observer.
941 * ada-lang.c (ada_executable_changed_observer): Remove argument.
942 * symtab.c (symtab_observer_executable_changed): Remove argument.
943 * observer.sh: Handle functions with no arguments.
944
a366c65a 9452008-07-20 Sergei Poselenov <sposelenov@emcraft.com>
f1648876 946 Chris Demetriou <cgd@google.com>
a366c65a
CD
947
948 * elfread.c (elf_symfile_segments): Fix the check that each loadable
949 section fits within an ELF segment to handle ELF segments that hit
950 the end of the address space.
951
073d253f
CD
9522008-07-20 Chris Demetriou <cgd@google.com>
953
954 * MAINTAINERS (Write After Approval): Add self.
955
d7d9f01e
TT
9562008-07-18 Tom Tromey <tromey@redhat.com>
957
958 PR gdb/855:
959 * NEWS: Add entry for macro commands.
960 * Makefile.in (macrocmd.o): Add gdb_string.h.
961 * macroscope.h (user_macro_scope): Declare.
962 (default_macro_scope): Update documentation.
963 (macro_user_macros): Declare.
964 * c-lang.c (c_preprocess_and_parse): Always attempt macro lookup.
965 Use user_macro_scope.
966 (null_macro_lookup): Remove.
967 * macrotab.h (macro_callback_fn): Declare.
968 (macro_for_each): Likewise.
969 (macro_allow_redefinitions): Likewise.
970 * macrotab.c (foreach_macro): New function
971 (macro_for_each): Likewise.
972 (struct macro_table) <redef_ok>: New field.
973 (macro_allow_redefinitions): New function.
974 (new_macro_table): Update.
975 (macro_define_function): Likewise.
976 (macro_define_object): Likewise.
977 * macroscope.c (user_macro_scope): New function.
978 (default_macro_scope): Use it.
979 (macro_user_macros): New global.
980 (standard_macro_lookup): Look in macro_user_macros.
981 (_initialize_macroscope): New function.
982 * macroexp.h (macro_is_whitespace, macro_is_digit,
983 macro_is_identifier_nondigit): Declare.
984 * macroexp.c (macro_is_whitespace): Rename. No longer static.
985 (macro_is_digit): Likewise.
986 (macro_is_identifier_nondigit): Likewise.
987 (get_identifier): Update.
988 (get_pp_number): Likewise.
989 (get_token): Likewise.
990 * macrocmd.c (skip_ws): New function.
991 (extract_identifier): Likewise.
992 (free_macro_definition_ptr): Likewise.
993 (user_macros): Remove.
994 (macro_define_command): Implement.
995 (_initialize_macrocmd): Update.
996 (macro_undef_command): Implement.
997 (print_one_macro): New function.
998 (macro_list_command): Implement.
999
0f72fb1c
JM
10002008-07-18 Joseph Myers <joseph@codesourcery.com>
1001
1002 * configure.ac: Put old value of $LIBS after -lbfd -liberty $intl
1003 in BFD ELF check.
1004 * configure: Regenerate.
1005
7c6467a4
PP
10062008-07-17 Paul Pluzhnikov <ppluzhnikov@google.com>
1007
1008 * auxv.c (fprint_target_auxv): Stop at AT_NULL.
1009
680b56ce
AS
10102008-07-15 Andreas Schwab <schwab@suse.de>
1011
1012 * valops.c (value_cast_pointers): Follow typedefs when checking
1013 result of coercion.
1014
7f0df278
DJ
10152008-07-15 Daniel Jacobowitz <dan@codesourcery.com>
1016
1017 * block.c (block_function): Renamed to ...
1018 (block_linkage_function): ... this. All callers changed.
1019 * block.h (block_function): Renamed to ...
1020 (block_linkage_function): ... this.
1021
ba2c6aec
DJ
10222008-07-15 Daniel Jacobowitz <dan@codesourcery.com>
1023
1024 * mn10300-tdep.c (set_reg_offsets): Use get_frame_register_unsigned.
1025
d56907c1
DJ
10262008-07-15 Daniel Jacobowitz <dan@codesourcery.com>
1027
1028 * frame.c (frame_sp_unwind): Delete.
1029 (get_frame_sp): Do not use it.
1030 * frame.h (frame_sp_unwind): Delete prototype.
1031
f92aeb88
DJ
10322008-07-15 Daniel Jacobowitz <dan@codesourcery.com>
1033
1034 * ia64-tdep.c (ia64_dummy_id): Use get_frame_pc.
1035
ad1193e7
DJ
10362008-07-15 Daniel Jacobowitz <dan@codesourcery.com>
1037
1038 * dwarf2-frame.c (dwarf2_frame_cache): Update comment.
1039 * frame.c (frame_unwind_address_in_block): Delete.
1040 (get_frame_address_in_block): Do not use it. Check the type
1041 of the next frame first.
1042 (frame_cleanup_after_sniffer): Update comment.
1043 * frame.h (frame_unwind_address_in_block): Delete prototype.
1044 * hppa-tdep.c (hppa_find_unwind_entry_in_block): Update comment.
1045
ef02daa9
DJ
10462008-07-15 Daniel Jacobowitz <dan@codesourcery.com>
1047
1048 * frame.c (frame_func_unwind): Delete.
1049 (get_frame_func): Do not use it.
1050 * frame.h (frame_func_unwind): Delete prototype.
1051 * hppa-tdep.c (hppa_frame_cache): Update comment.
1052 * rs6000-tdep.c (rs6000_frame_cache): Update comment.
1053
96e32df8
SS
10542008-07-14 Stan Shebs <stan@codesourcery.com>
1055
1056 * remote-sim.c (init_gdbsim_ops): Remove
1057 TARGET_REDEFINE_DEFAULT_OPS.
1058
ab8650a3
DJ
10592008-07-15 Daniel Jacobowitz <dan@codesourcery.com>
1060
1061 * findvar.c (read_var_value): Remove unused variable.
1062
8c90c137
LM
10632008-07-15 Luis Machado <luisgpm@br.ibm.com>
1064
1065 * infrun.c (handle_inferior_event): Tag threads as stopped
1066 before inserting breakpoints.
1067
4098af0f
HZ
10682008-07-15 Hui Zhu <teawater@gmail.com>
1069
1070 * MAINTAINERS: Added myself to section Write After Approval.
1071
7093c834
PP
10722008-07-14 Paul Pluzhnikov <ppluzhnikov@google.com>
1073
1074 PR gdb/2477
1075 * cp-abi.c (value_virtual_fn_field): Handle invalid pointers.
680b56ce 1076
56514771
PA
10772008-07-14 Pedro Alves <pedro@codesourcery.com>
1078
1079 * i386-dicos-tdep.c (i386_dicos_frame_align): Delete.
1080 (i386_dicos_push_dummy_code): New.
1081 (i386_dicos_init_abi): Don't register i386_dicos_frame_align.
1082 Register i386_dicos_push_dummy_code.
1083
74ed0bb4
MD
10842008-07-14 Markus Deuling <deuling@de.ibm.com>
1085
1086 * mips-tdep.c (fp_register_arg_p): Add gdbarch as paramter.
1087 (mips_n32n64_push_dummy_call, mips_o64_return_value)
1088 (mips_eabi_push_dummy_call): Update call to fp_register_arg_p.
1089
1090 (MIPS_FPU_TYPE): Add gdbarch as parameter and replace current_gdbarch.
1091 (fp_register_arg_p, mips_dump_tdep, show_mipsfpu_command)
1092 (mips_n32n64_fp_arg_chunk_p): Update caller.
1093
1094 (mips_n32n64_fp_arg_chunk_p): Add gdbarch as paramter.
1095 (mips_n32n64_push_dummy_call): Update caller.
1096
1097 (MIPS_LAST_ARG_REGNUM): Add gdbarch as parameter and replace
1098 current_gdbarch.
1099 (mips_eabi_push_dummy_call, mips_n32n64_push_dummy_call)
1100 (mips_o32_push_dummy_call, mips_o64_push_dummy_call): Update caller.
1101
1102
1103 (MIPS_LAST_FP_ARG_REGNUM): Add gdbarch as parameter and replace
1104 current_gdbarch.
1105 (mips_eabi_push_dummy_call, mips_o32_push_dummy_call)
1106 (mips_o64_push_dummy_call): Update caller.
1107
1108 (MIPS_EABI): Add gdbarch as parameter and replace current_gdbarch.
1109 (fp_register_arg_p, mips_dump_tdep): Update caller.
1110
1111 (set_reg_offset): Add gdbarch as parameter and replace current_gdbarch.
1112 (mips16_scan_prologue, mips32_scan_prologue): Update caller.
1113
1114 (reset_saved_regs): Make static. Add gdbarch as parameter. Replace
1115 current_gdbarch.
1116 (mips32_scan_prologue): Update caller.
1117
1118 (heuristic_proc_start): Add gdbarch as parameter. Replace
1119 current_gdbarch.
1120 (mips_insn16_frame_cache, mips_insn32_frame_cache): Update caller.
1121
1122 * mipsnbsd-nat.c (mipsnbsd_fetch_inferior_registers)
1123 (mipsnbsd_store_inferior_registers): Use get_regcache_arch to get at
1124 the current architecture. Update call to getregs_supplies.
1125 (getregs_supplies): Add gdbarch as parameter and replace
1126 current_gdbarch.
1127
1128 * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use get_frame_arch to
1129 get at the current architecture. Update call to NBSD_MIPS_JB_OFFSET and
1130 NBSD_MIPS_JB_ELEMENT_SIZE.
1131 (NBSD_MIPS_JB_ELEMENT_SIZE, NBSD_MIPS_JB_OFFSET): Add gdbarch and
1132 replace current_gdbarch.
1133
1134 * remote-mips.c (mips_map_regno): Add gdbarch as parameter and replace
1135 current_gdbarch.
1136 (mips_fetch_registers, mips_store_registers): Update call
1137 to mips_map_regno.
1138 (mips_load): Use get_regcache_arch to get at the current_architecture
1139 and replace current_gdbarch.
1140
0c501536
PA
11412008-07-13 Pedro Alves <pedro@codesourcery.com>
1142
1143 * thread.c (restore_selected_frame): On fail to restore, select
1144 the innermost frame, and don't crash when warning the user.
1145
db009c8a
JB
11462008-07-13 Hui Zhu <teawater@gmail.com>
1147
1148 * symtab.c (expand_line_sal): Fix a memory leak.
1149
0ffe5012
PA
11502008-07-13 Pedro Alves <pedro@codesourcery.com>
1151
1152 * utils.c (struct continuation): Define as inheriting struct
1153 cleanup.
1154 (add_continuation, do_all_continuations)
1155 (discard_all_continuations, add_intermediate_continuation)
1156 (do_all_intermediate_continuations)
1157 (discard_all_intermediate_continuations): Adjust.
1158
dbba8251
VP
11592008-07-13 Vladimir Prus <vladimir@codesourcery.com>
1160
1161 Skip varobj in running threads.
680b56ce
AS
1162 * mi/mi-cmd-var.c (mi_cmd_var_update): If varobj's
1163 thread is not stopped, skip the varobj.
1164 * Makefile.in: Update dependencies.
dbba8251 1165
e3d6cd5f
VP
11662008-07-13 Vladimir Prus <vladimir@codesourcery.com>
1167
1168 Enable all commands while inferiour is running
680b56ce
AS
1169 * mi/mi-main.c (mi_cmd_execute): Don't check if
1170 inferiour is executing.
e3d6cd5f 1171
b10a37b1
VP
11722008-07-13 Vladimir Prus <vladimir@codesourcery.com>
1173
1174 Allow all CLI command even if target is executing.
680b56ce
AS
1175 * gdb/top.c (execute_command_1): Don't check if the inferiour
1176 is running.
b10a37b1 1177
ea069267
VP
11782008-07-13 Vladimir Prus <vladimir@codesourcery.com>
1179
1180 * mi/mi-main.c (mi_cmd_execute): Remove unused variable.
1181 Fix printing of frame, when frame is wrong.
1182
cdc9523a
UW
11832008-07-12 Ulrich Weigand <uweigand@de.ibm.com>
1184
1185 * spu-tdep.c (spu_frame_unwind_cache): Do not error if
1186 backchain is unreadable.
1187
d5b25491
UW
11882008-07-12 Ulrich Weigand <uweigand@de.ibm.com>
1189
1190 * spu-linux-nat.c: Include "gdbthread.h".
1191 (spu_child_post_startup_inferior): Register main thread.
1192 (spu_child_post_attach): Likewise.
1193 * Makefile.in (spu-linux-nat.o): Update dependencies.
1194
604ead4a
PA
11952008-07-12 Pedro Alves <pedro@codesourcery.com>
1196
1197 Rewrite continuations internals on top of cleanups and plug
1198 continuation arguments leaks.
1199
1200 * defs.h (struct continuation): Make it opaque.
1201 (add_continuation, add_intermediate_continuation): Drop the int
1202 argument of the continuation hook argument. Add
1203 continuation_free_args argument.
1204 (do_all_continuations, do_all_intermediate_continuations): Drop
1205 the error_p argument.
1206
1207 * utils.c (add_continuation): Drop the int argument of the
1208 continuation hook argument. Add continuation_free_args argument.
1209 Reimplement on top of cleanups.
1210 (do_all_continuations): Drop error argument. Reimplement on top
1211 of cleanups.
1212 (discard_all_continuations): Reimplement on top of cleanups.
1213 (add_intermediate_continuation): Drop the int argument of the
1214 continuation hook argument. Add continuation_free_args argument.
1215 Reimplement on top of cleanups.
1216 (do_all_intermediate_continuations): Drop error argument.
1217 Reimplement on top of cleanups.
1218 (discard_all_intermediate_continuations): Reimplement on top of
1219 cleanups.
1220
1221 * breakpoint.c (until_break_command_continuation): Drop error
1222 argument. Add xfree as continuation argument deleter.
1223
1224 * inf-loop.c (inferior_event_handler): On error, discard all
1225 continuations. Adjust to new do_all_intermediate_continuations
1226 and do_all_continuations interfaces.
1227
1228 * infcmd.c (step_1_continuation): Drop error_p argument. Adjust.
1229 Pass xfree as continuation argument deleter.
1230 (finish_command_continuation): Drop error_p argument. Adjust.
1231 (finish_command_continuation_free_arg): New.
1232 (finish_command): Pass finish_command_continuation_free_arg as
1233 continuation argument deleter. Adjust to new do_all_continuations
1234 interfaces.
1235 (attach_command_continuation): Drop error_p argument.
1236 (attach_command_continuation_free_args): New.
1237 (attach_command): Pass attach_command_continuation_free_args as
1238 continuation argument deleter.
1239
1240 * interps.c (interp_set): Adjust to new do_all_continuations
1241 interfaces.
1242
1243 * event-top.c (stdin_event_handler): In error, also discard the
1244 intermediate continuations.
1245
bfec99b2
PA
12462008-07-12 Pedro Alves <pedro@codesourcery.com>
1247
1248 Replace struct continuation_args by void* and per command structs.
1249
1250 * top.c (execute_command): Remove unused arg1 and arg2 locals.
1251
1252 * breakpoint.c (struct until_break_command_continuation_args):
1253 New.
1254 (until_break_command_continuation): Take a void* instead of a
1255 continuations_arg. Adjust.
1256 (until_break_command): Adjust to use struct
1257 until_break_command_continuation_args instead of struct
1258 continuation_arg.
1259
1260 * infcmd.c (struct step_1_continuation_args): New.
1261 (step_1_continuation): Take a void* instead of a
1262 continuations_arg. Adjust to use struct step_1_continuation_args.
1263 (step_once): Adjust to use struct step_1_continuation_args.
1264
1265 (struct finish_command_continuation_args): New.
1266 (finish_command_continuation): Take a void* instead of a
1267 continuations_arg. Adjust to use struct
1268 finish_command_continuation_args.
1269 (finish_command): Adjust to use struct
1270 finish_command_continuation_args.
1271 (struct attach_command_continuation_args): New.
1272 (attach_command_continuation): Take a void* instead of a
1273 continuations_arg. Adjust to use struct
1274 attach_command_continuation_args.
1275 (attach_command): Adjust to use struct
1276 attach_command_continuation_args.
1277
1278 * defs.h (struct continuation_arg): Delete.
1279 (struct continuation): Replace the struct continuation_arg*
1280 parameter of continuation_hook by a void*. Replace "arg_list"
1281 member by a new "args" member with void* type.
1282 (add_continuation, add_intermediate_continuation): Replace struct
1283 continuation_arg type usages by void* usages.
1284
1285 * utils.c (add_continuation, do_all_continuations)
1286 (add_intermediate_continuation)
1287 (do_all_intermediate_continuations): Replace struct
1288 continuation_arg type usages by void* usages. Pass "args" instead
1289 of "arg_list".
1290
2afb61aa
PA
12912008-07-12 Pedro Alves <pedro@codesourcery.com>
1292
1293 * infrun.c (struct thread_stepping_state): Delete sal member.
1294 (init_thread_stepping_state): Add local sal. Use it instead of
1295 tss->sal.
1296 (handle_inferior_event): New local stop_pc_sal. Use it instead of
1297 tss->sal.
1298 (step_into_function): Add local stop_func_sal. Use it instead of
1299 tss->sal.
1300
77ebaa5a
VP
13012008-07-12 Vladimir Prus <vladimir@codesourcery.com>
1302
1303 Implement -exec-continue/-exec-interrupt --all.
680b56ce
AS
1304 * infcmd.c (continue_1): New, extracted from
1305 (continue_command): ...here.
1306 (interrupt_target_1): New, extracted from
1307 (interrupt_target_command): ...here.
1308 * inferior.h (continue_1, interrupt_target_1): New.
1309 * mi/mi-main.c (mi_cmd_exec_continue)
1310 (mi_cmd_exec_interrupt): Handle --all.
77ebaa5a 1311
1e92afda
VP
13122008-07-12 Vladimir Prus <vladimir@codesourcery.com>
1313
1314 Implement --thread and --frame.
1315 * gdbthread.h (find_thread_id): Declare.
680b56ce
AS
1316 * thread.c (find_thread_id): Make non-static.
1317 * mi/mi-main.c (mi_cmd_execute): Switch to the right
1318 thread and frame, if necessary.
1319 * mi/mi-parse.c (mi_parse): Handle --thread and --frame.
1320 * mi/mi-parse.h (strcut mi_parse): New fields thread and frame.
1e92afda 1321
d56b7306
VP
13222008-07-12 Vladimir Prus <vladimir@codesourcery.com>
1323
1324 * infrun.c (resume): Discard cleanups on early exit path.
1325
b1a268e5
VP
13262008-07-12 Vladimir Prus <vladimir@codesourcery.com>
1327
680b56ce 1328 * infrun.c (normal_stop): For MI, report which threads
b1a268e5
VP
1329 were stopped.
1330
90139f7d
VP
13312008-07-12 Vladimir Prus <vladimir@codesourcery.com>
1332
1333 Report thread state in -thread-info output.
680b56ce 1334 * thread.c (print_thread_info): Add new field "state".
90139f7d 1335
a0d21d28
PA
13362008-07-11 Pedro Alves <pedro@codesourcery.com>
1337
1338 * infrun.c (handle_inferior_event): Also ignore a
1339 TARGET_SIGNAL_TRAP on a STOP_QUIETLY_NO_SIGSTOP.
1340
14032a66
TT
13412008-07-11 Tom Tromey <tromey@redhat.com>
1342
1343 * completer.c (complete_line_internal): New function, from
1344 complete_line. Add 'for_help' parameter.
1345 (complete_line): Use it.
1346 (command_completer): Move later. Rewrite.
1347
65fc9b77
PA
13482008-07-11 Pedro Alves <pedro@codesourcery.com>
1349
1350 * thread.c (thread_apply_command): Move making the cleanup out of
1351 the loop.
1352
4f8d22e3
PA
13532008-07-11 Pedro Alves <pedro@codesourcery.com>
1354
1355 Exited threads.
1356
1357 * thread.c (enum thread_state): New.
1358 (thread_state main_thread_running): Delete, in favor of...
1359 (thread_state main_thread_state): ... this. Update throughout.
1360 (clear_thread_inferior_resources): New, split from free_thread.
1361 (free_thread): Call clear_thread_inferior_resources.
1362 (init_thread_list): Set main thread to stopped state.
1363 (add_thread_silent): Take care of PTID reuses.
1364 (delete_thread): If deleting inferior_ptid or a thread with
1365 refcount > 0, mark it as exited, but still keep it in the list.
1366 Only notify of thread exits, if we haven't done so yet.
1367 (iterate_over_threads): Make it safe to delete threads while
1368 iterating over them.
1369 (do_captured_list_thread_ids): Don't account for exited threads.
1370 (thread_alive): Check for the THREAD_EXITED state, and don't set
1371 ptid to -1 on exited threads.
1372 (set_running): Update to account for extra possible states.
1373 (is_thread_state): New.
1374 (is_stopped, is_exited): New.
1375 (is_running): Implement in terms of is_thread_state.
1376 (any_running): Update.
1377 (print_thread_info): Update. Account for exited threads. Don't
1378 warn about missed frame restoring here, its done in the cleanup.
1379 (switch_to_thread): Don't read from a thread that has gone.
1380 (restore_current_thread): In non-stop mode, do a full context
1381 switch.
1382 (restore_selected_frame): Add a frame_level argument. Rewrite.
1383 (struct current_thread_cleanup): Add selected_frame_level and
1384 was_stopped members.
1385 (do_restore_current_thread_cleanup): Check if thread was stopped
1386 and still is, and if the target has registers, stack and memory
1387 before restoring the selected frame. Don't delete the cleanup
1388 argument here.
1389 (restore_current_thread_cleanup_dtor): New.
1390 (make_cleanup_restore_current_thread): Remove all arguments.
1391 Rewrite.
1392 (thread_apply_all_command): Update. Prune threads.
1393 (thread_apply_command): Update.
1394 (thread_command): Account for currently selected exited thread.
1395 (do_captured_thread_select): Check for a running thread. Prune
1396 threads.
1397 (_initialize_thread): Make "info threads", "thread", "thread
1398 apply", and "thread apply all" appliable without a selected thread.
1399 * gdbthread.h (struct thread_info): Replace running_ by state_.
1400 Add refcount.
1401 (is_exited, is_stopped): Declare.
1402 (make_cleanup_restore_current_thread): Remove all arguments.
1403 * infrun.c: Include "event-top.h".
1404 (fetch_inferior_event): In non-stop mode, restore selected thread
1405 and frame after handling the event and running breakpoint
1406 commands. Display GDB prompt if needed.
1407 (normal_stop): In non-stop mode, don't print thread switching
1408 notice.
1409 * cli/cli-decode.c (set_cmd_no_selected_thread_ok)
1410 (get_cmd_no_selected_thread_ok): New.
1411 * cli/cli-decode.h (CMD_NO_SELECTED_THREAD_OK): New.
1412 (set_cmd_no_selected_thread_ok, get_cmd_no_selected_thread_ok):
1413 Declare.
1414 * cli/cli-cmds.c: Set "pwd", "help", "info", "show" as
1415 no-selected-thread ok.
1416 * top.c (execute_command): Check for non no-selected-thread-ok
1417 commands.
1418 * linux-nat.c (struct saved_ptids, threads_to_delete)
1419 (record_dead_thread, prune_lwps): Delete.
1420 (exit_lwp): Unconditionally delete thread.
1421 (linux_nat_resume): Remove prune_lwps call.
1422 * infcmd.c (proceed_thread_callback): Check if !is_stopped instead
1423 of is_running. Adjust to make_cleanup_restore_current_thread
1424 interface change.
1425 * mi/mi-main.c (mi_cmd_execute): Only allow a few commands if the
1426 selected thread has exited.
1427 * inf-loop.c (inferior_event_handler): Don't display the prompt
1428 here.
1429 * varobj.c (c_value_of_root): Update.
1430 * defs.h (make_cleanup_dtor): Declare.
1431 * utils.c (make_cleanup_dtor): New.
1432
1433 * Makefile.in (infrun.o): Depend on $(event_top_h).
1434
8cae4b3f
PA
14352008-07-11 Pedro Alves <pedro@codesourcery.com>
1436
1437 Add "continue -a" and "interrupt -a" options for non-stop mode.
1438
1439 * infcmd.c (proceed_thread_callback, do_context_switch_to): New.
1440 (continue_command): Add "-a" option.
1441 (interrupt_target_command): Add "-a" option.
1442 (_initialize_infcmd): Add extend help of continue and interrupt
1443 command to mention the new "-a" option. Mark "continue" async ok.
1444
bf250677
DE
14452008-07-10 Doug Evans <dje@google.com>
1446
1447 Add "set print symbol-loading on|off".
1448 * NEWS: Document new option.
1449 * symfile.h (print_symbol_loading): Declare.
1450 * symfile.c (print_symbol_loading): New global.
1451 (symbol_file_add_with_addrs_or_offsets): Only print "Reading symbols
1452 from ..." if print_symbol_loading.
1453 (_initialize_symfile): Add set/show print symbol-loading.
1454 * solib.c (solib_read_symbols): Only print "Loaded symbols for ..."
1455 if print_symbol_loading.
1456
4c28f408
PA
14572008-07-10 Pedro Alves <pedro@codesourcery.com>
1458
1459 Non-stop linux native.
1460
1461 * linux-nat.c (linux_test_for_tracefork): Block events while we're
1462 here.
1463 (get_pending_status): Implement non-stop mode.
1464 (linux_nat_detach): Stop threads before detaching.
1465 (linux_nat_resume): In non-stop mode, always resume only a single
1466 PTID.
1467 (linux_handle_extended_wait): On a clone event, in non-stop mode,
1468 add new lwp to GDB's thread table, and mark as running, executing
1469 and stopped appropriately.
1470 (linux_nat_filter_event): Don't assume there are other running
1471 threads when a thread exits.
1472 (linux_nat_wait): Mark the main thread as running and executing.
1473 In non-stop mode, don't stop all lwps.
1474 (linux_nat_kill): Stop lwps before killing them.
1475 (linux_nat_thread_alive): Use signal 0 to detect if a thread is
1476 alive.
1477 (send_sigint_callback): New.
1478 (linux_nat_stop): New.
1479 (linux_nat_add_target): Set to_stop to linux_nat_stop.
1480
1481 * linux-nat.h (thread_db_attach_lwp): Declare.
1482
1483 * linux-thread-db.c (thread_get_info_callback): Check for new
1484 threads if we have none.
1485 (thread_from_lwp, enable_thread_event): Set proc_handle.pid to the
1486 stopped lwp. Check for new threads if we have none.
1487 (thread_db_attach_lwp): New.
1488 (thread_db_init): Set proc_handle.pid to inferior_ptid.
1489 (check_event): Set proc_handle.pid to the stopped lwp.
1490 (thread_db_find_new_threads): Set proc_handle.pid to any stopped
1491 lwp available, bail out if there is none.
1492
1493 * linux-fork.c (linux_fork_killall): Use SIGKILL instead of
1494 PTRACE_KILL.
1495
0aef6ba2
KB
14962008-07-10 Kevin Buettner <kevinb@redhat.com>
1497
a4fafde3
KB
1498 * rs6000-tdep.c (ppc_displaced_step_fixup): Change type of
1499 `current_pc' from CORE_ADDR to ULONGEST.
1500
0aef6ba2
KB
1501 * remote-sim.c (gdbsim_cntrl_c): Pass remote_sim_ptid to
1502 gdbsim_stop().
1503
10568435
JK
15042008-07-10 Jan Kratochvil <jan.kratochvil@redhat.com>
1505
1506 * NEWS (New commands): Mention "set disable-randomization".
1507 * configure.ac: Add check for HAVE_PERSONALITY and
1508 HAVE_DECL_ADDR_NO_RANDOMIZE.
1509 * configure, config.in: Regenerate.
1510 * linux-nat.c [HAVE_PERSONALITY]: New include <sys/personality.h>.
1511 [HAVE_PERSONALITY] [!HAVE_DECL_ADDR_NO_RANDOMIZE]: Set
1512 ADDR_NO_RANDOMIZE.
1513 (disable_randomization, show_disable_randomization)
1514 (set_disable_randomization): New.
1515 (linux_nat_create_inferior) [HAVE_PERSONALITY]: New variables
1516 PERSONALITY_ORIG and PERSONALITY_SET. Disable randomization upon the
1517 variable DISABLE_RANDOMIZATION.
1518 (_initialize_linux_nat): Call ADD_SETSHOW_BOOLEAN_CMD for the variable
1519 DISABLE_RANDOMIZATION.
1520
f9c72d52
PA
15212008-07-09 Pedro Alves <pedro@codesourcery.com>
1522
1523 Adjust all targets to new target_stop interface.
1524
1525 * gnu-nat.c (gnu_stop): Add ptid argument.
1526 * go32-nat.c (go32_stop): Add ptid argument.
1527 (go32_create_inferior): Pass inferior_ptid to go32_stop.
1528 * hpux-thread.c (hpux_thread_stop): Add ptid argument.
1529 * monitor.c (monitor_stop): Add ptid argument.
1530 (monitor_open): Pass inferior_ptid to monitor_stop.
1531 (monitor_interrupt): Pass inferior_ptid to target_stop.
1532 (monitor_stop): Add ptid argument.
1533 * nto-procfs.c (nto_interrupt): Pass inferior_ptid to target_stop.
1534 (procfs_create_inferior): Add ptid argument.
1535 * procfs.c (procfs_stop): Add ptid argument.
1536 * remote-m32r-sdi.c (m32r_stop): Add ptid argument.
1537 * remote-sim.c (gdbsim_stop): Add ptid argument.
1538 * sol-thread.c (sol_thread_stop): Add ptid argument.
1539 * win32-nat.c (win32_stop): Add ptid argument.
1540
94cc34af
PA
15412008-07-09 Pedro Alves <pedro@codesourcery.com>
1542
1543 Non-stop inferior control.
1544
1545 * infrun.c (resume): In non-stop mode, always resume just one
1546 thread.
1547 (proceed): Don't call prepare_to_proceed in non-stop mode.
1548 (fetch_inferior_event): In non-stop mode, switch context before
1549 handling the event.
1550 (error_is_running, ensure_not_running): New.
1551 (handle_inferior_event): In non-stop mode: Mark only the event
1552 thread as stopped. Require that the target module manages adding
1553 threads to the thread list. Assert that there isn't a
1554 deferred_step_ptid set. Don't switch to infwait_thread_hop_state.
1555 (normal_stop): Only mark not-running if inferior hasn't exited.
1556 In non-stop mode, only mark the event thread.
1557
1558 * thread.c:Include "cli/cli-decode.h".
1559 (print_thread_info): Don't read from a running thread.
1560 Output "(running)" if thread is running.
1561 (switch_to_thread): Don't read stop_pc if thread is executing.
1562 (do_restore_current_thread_cleanup): Don't write to a running
1563 thread.
1564 (thread_apply_all_command): Don't read from a running thread. In
1565 non-stop mode, do a full context-switch instead of just switching
1566 threads.
1567 (thread_apply_command): In non-stop mode, do a full context-switch
1568 instead of just switching threads.
1569 (do_captured_thread_select): Likewise. Inform user if selected
1570 thread is running.
1571 (_initialize_thread): Mark "info threads" and "thread" and
1572 async_ok.
1573
1574 * inf-loop.c (inferior_event_handler): In non-stop mode, don't
1575 unregister the target from the event loop.
1576
1577 * infcmd.c (continue_command, step_1, jump_command)
1578 (signal_command): Ensure the selected thread isn't running.
1579 (interrupt_target_command): In non-stop mode, interrupt only the
1580 selected thread.
1581
1582 * inferior.h (error_is_running, ensure_not_running): Declare.
1583
1584 * target.h (struct target_ops): Add ptid argument to the to_stop
1585 member.
1586 (target_stop): Add ptid_t argument.
1587
1588 * target.c (update_current_target): Add ptid argument to to_stop's
1589 type.
1590 (debug_to_stop): Add ptid_t argument.
1591 (debug_to_rcmd): Set to_stop_ptid.
1592
1593 * remote.c (remote_stop): Add ptid_t argument.
1594 (async_remote_interrupt): Add inferior_ptid to target_stop.
1595 * inf-ptrace.c (inf_ptrace_stop): Add ptid argument.
1596
1597 * Makefile.in (thread.o): Depend on $(cli_decode_h).
1598
59f0d5d9
PA
15992008-07-09 Pedro Alves <pedro@codesourcery.com>
1600
1601 Don't rely on ecs->wait_for_more.
1602
1603 * infrun.c (proceed): Clear the stepping state, set
1604 previous_inferior_ptid and clear infwait state.
1605 (wait_for_inferior): Don't clear the stepping state, set
1606 previous_inferior_ptid, or clear the infwait state here.
1607 (fetch_inferior_event): Don't clear the stepping state, set
1608 previous_inferior_ptid, or clear the infwait state here. Don't
1609 condition on wait_for_more.
1610
0d1e5fa7
PA
16112008-07-09 Pedro Alves <pedro@codesourcery.com>
1612
1613 Refactor infrun a bit.
1614
1615 * infrun.c (currently_stepping): Take a struct
1616 thread_stepping_state instead of an execution_control_state.
1617 (struct thread_stepping_state): New, split from
1618 execution_control_state.
1619 (gtss, tss): New globals.
1620 (proceed): Clear the stepping state, set previous_inferior_ptid
1621 and clear infwait state.
1622 (init_wait_for_inferior): Clear the stepping state,
1623 previous_inferior_ptid and infwait state.
1624 (waiton_ptid, infwait_state): New, split from
1625 execution_control_state.
1626 (struct execution_control_state): Members that persist through
1627 events moved out to either struct thred_stepping_state or made
1628 global. Deleted unneeded wp, saved_inferior_ptid, tmpstatus.
1629 (wait_for_inferior, fetch_inferior_event): Use local
1630 execution_control_state. Update to execution_control_state split.
1631 (init_execution_control_state): Adjust.
1632 (init_thread_stepping_state): New, extracted from
1633 init_execution_control_state.
1634 (context_switch): Take a ptid instead of an
1635 execution_control_state.
1636 (context_switch_to): Adjust.
1637 (adjust_pc_after_break): Adjust.
1638 (init_infwait_state): New.
1639 (handle_inferior_event): Adjust.
1640
a474d7c2
PA
16412008-07-09 Pedro Alves <pedro@codesourcery.com>
1642 Vladimir Prus <vladimir@codesourcery.com>
1643
1644 Per-thread commands.
1645
1646 * gdbthread.h: Remove unneeded forward declarations.
1647 Include "inferior.h".
1648 (struct thread_info): Add continuations,
1649 intermediate_continuations, proceed_to_finish, step_over_calls,
1650 stop_step, step_multi and stop_signal members.
1651 (save_infrun_state): Add continuations,
1652 intermediate_continuations, proceed_to_finish, step_over_calls,
1653 stop_step, step_multi, stop_signal and stop_bpstat parameters.
1654 (load_infrun_state): Add continuations,
1655 intermediate_continuations, proceed_to_finish, step_over_calls,
1656 stop_step, step_multi, stop_signal and stop_bpstat parameters.
1657
1658 * thread.c (load_infrun_state): In non-stop mode, load
1659 continuations, intermediate_continuations, proceed_to_finish,
1660 step_over_calls, stop_step, step_multi and stop_signal.
1661 (save_infrun_state): Store continuations,
1662 intermediate_continuations, proceed_to_finish, step_over_calls,
1663 stop_step, step_multi, stop_signal and stop_bpstat.
1664 (save_infrun_state): Store continuations,
1665 intermediate_continuations, proceed_to_finish, step_over_calls,
1666 stop_step, step_multi, stop_signal and stop_bpstat.
1667 (free_thread): Clear The thread's stop_bpstat.
1668
1669 * inferior.h (context_switch_to): Declare.
1670
1671 * infrun.c (ecss): New global.
1672 (context_switch): Context switch continuations,
1673 intermediate_continuations, proceed_to_finish, step_over_calls,
1674 stop_step, step_multi, stop_signal and stop_bpstat.
1675 (wait_for_inferior): Use global ecss.
1676 (async_ecss, async_ecs): Delete.
1677 (fetch_inferior_event): Use global ecss.
1678 (context_switch_to): New.
1679
1680 * top.c (execute_command): In non-stop, only check if the current
1681 thread is running, in all-stop, check if there's any thread
1682 running.
1683
1684 * breakpoint.c (bpstat_remove_breakpoint): New.
1685 (bpstat_remove_breakpoint_callback): New.
1686 (delete_breakpoint): Clear the stop_bpstats of all threads.
1687
1688 * mi/mi-main.c (mi_cmd_execute): In non-stop, only check if the
1689 current thread is running, in all-stop, check if there's any
1690 thread running.
1691
1692 * Makefile.in (gdbthread_h): Depend on $(inferior_h).
1693
ad52ddc6
PA
16942008-07-09 Pedro Alves <pedro@codesourcery.com>
1695
1696 Add non_stop global.
1697
1698 * inferior.h (non_stop): Declare.
1699 * infrun.c (non_stop, non_stop_1): New.
1700 (set_non_stop, show_non_stop): New.
1701 (_initialize_infrun): Add "set/show non-stop" command.
1702
3a3e9ee3
PA
17032008-07-09 Pedro Alves <pedro@codesourcery.com>
1704
1705 Adjust fork/vfork/exec to pass ptids around.
1706
1707 * target.h (struct target_waitstatus): Store related_pid as a ptid.
1708 (inferior_has_forked, inferior_has_vforked, inferior_has_execd):
1709 Take a ptid_t.
1710 * breakpoint.h (struct breakpoint): Change forked_inferior_pid
1711 type to ptid.
1712 * breakpoint.c (print_it_typical, bpstat_check_location)
1713 (print_one_breakpoint_location, set_raw_breakpoint_without_location)
1714 (create_fork_vfork_event_catchpoint): Adjust.
1715 * infrun.c (fork_event): Change parent_pid and child_pid types to
1716 ptid.
1717 (follow_exec, inferior_has_forked, inferior_has_vforked)
1718 (inferior_has_execd): Take a ptid_t and don't trim it.
1719 * linux-thread-db.c (thread_db_wait): Don't trim the returned ptid.
1720 * linux-nat.c (linux_child_follow_fork): Adjust.
1721 * inf-ptrace.c (inf_ptrace_wait): Adjust.
1722 * inf-ttrace.c (inf_ttrace_wait): Adjust.
1723 * win32-nat.c (get_win32_debug_event): Don't set related_pid.
1724
8ea051c5
PA
17252008-07-09 Pedro Alves <pedro@codesourcery.com>
1726
1727 Add "executing" property to threads.
1728
1729 * inferior.h (target_executing): Delete.
1730 * gdbthread.h (struct thread_info): Add executing_ field.
1731 (set_executing, is_executing): New.
1732 * thread.c (main_thread_executing): New.
1733 (init_thread_list): Clear it and also main_thread_running.
1734 (is_running): Return false if target has no execution.
1735 (any_running, is_executing, set_executing): New.
1736
1737 * top.c: Include "gdbthread.h".
1738 (target_executing): Delete.
1739 (execute_command): Replace target_executing check by any_running.
1740 * event-top.c: Include "gdbthread.h".
1741 (display_gdb_prompt, command_handler): Replace target_executing by
1742 is_running.
1743 * inf-loop.c: Include "gdbthread.h". Don't mark as not executing
1744 here. Replace target_executing by is_running.
1745 * infrun.c (handle_inferior_event): Mark all threads as
1746 not-executing.
1747 * linux-nat.c (linux_nat_resume): Don't mark thread as executing
1748 here.
1749 * stack.c (get_selected_block): Return null if inferior is
1750 executing.
1751 * target.c (target_resume): Mark resumed ptid as executing.
1752 * breakpoint.c (until_break_command): Replace target_executing
1753 check by is_executing.
1754 * remote.c (remote_async_resume): Don't mark inferior as executing
1755 here.
1756 * mi/mi-interp.c (mi_cmd_interpreter_exec): Replace target_executing
1757 by any_running.
680b56ce 1758
8ea051c5
PA
1759 * mi/mi-main.c (mi_cmd_exec_interrupt, mi_cmd_execute)
1760 (mi_execute_async_cli_command): Replace target_executing by
1761 is_running.
1762
1763 * frame.c (get_current_frame): Error out if the current thread is
1764 executing.
1765 (has_stack_frames): New.
1766 (get_selected_frame, deprecated_safe_get_selected_frame): Check
1767 has_stack_frames.
680b56ce 1768
8ea051c5
PA
1769 * Makefile.in (event-top.o, frame.o, inf-loop.o, top.o): Depend on
1770 $(gdbthread_h).
1771
4487aabf
PA
17722008-07-09 Pedro Alves <pedro@codesourcery.com>
1773
1774 * symfile.c (load_command): Reopen the exec file and reread
1775 symbols before anything else.
1776
9de2bdd7
PA
17772008-07-09 Pedro Alves <pedro@codesourcery.com>
1778
1779 * remote-sim.c: Include gdbthread.h.
1780 (remote_sim_ptid): New global.
1781 (gdbsim_create_inferior): Silently add the main task to GDB's
1782 thread list.
1783 (gdbsim_close, gdbsim_mourn_inferior): Silently delete the main
1784 task from GDB's thread list.
1785 (gdbsim_resume): Adjust to use remote_sim_ptid.
1786 (gdbsim_thread_alive, gdbsim_pid_to_str): New.
1787 (init_gdbsim_ops): Register gdbsim_thread_alive and
1788 gdbsim_pid_to_str.
1789 (_initialize_remote_sim): Initialize remote_sim_ptid.
1790 * Makefile.in (remote-sim.o): Depend on $(gdbthread_h).
1791
5e0b29c1
PA
17922008-07-09 Pedro Alves <pedro@codesourcery.com>
1793
1794 * monitor (monitor_ptid): New global.
1795 (monitor_open): Silently add the main task to GDB's thread list.
1796 (monitor_close, monitor_mourn_inferior): Silently delete the main
1797 task from GDB's thread list.
1798 (monitor_thread_alive, monitor_pid_to_str): New.
1799 (init_base_monitor_ops): Register monitor_thread_alive and
1800 monitor_pid_to_str.
1801 (_initialize_remote_monitors): Initialize monitor_ptid.
1802
1803 * gdbthread.h (delete_thread_silent): Declare.
1804 * thread.c (delete_thread): Rename to ...
1805 (delete_thread_1): ... this. Add "silent" parameter. If silent,
1806 don't do exit notifications.
1807 (delete_thread, delete_thread_silent): New, as wrappers to
1808 delete_thread_1.
1809
b60e7edf
PA
18102008-07-08 Pedro Alves <pedro@codesourcery.com>
1811
1812 * breakpoint.c (update_global_location_list): Add boolean
1813 "should_insert" argument. Only insert locations if caller told it
1814 too.
1815 (update_global_location_list_nothrow): Add boolean "should_insert"
1816 argument. Pass it to update_global_location_list.
1817 (insert_breakpoints, create_longjmp_breakpoint)
1818 (create_overlay_event_breakpoint, enable_overlay_breakpoints)
1819 (create_thread_event_breakpoint, create_solib_event_breakpoint)
1820 (create_fork_vfork_event_catchpoint, create_exec_event_catchpoint)
1821 (enable_watchpoints_after_interactive_call_stop)
1822 (set_momentary_breakpoint, create_breakpoints)
1823 (break_command_really, watch_command_1)
1824 (create_ada_exception_breakpoint, update_breakpoint_locations)
1825 (do_enable_breakpoint, enable_command): Pass true to
1826 update_global_location_list.
1827 (bpstat_stop_status, disable_overlay_breakpoints)
1828 (disable_watchpoints_before_interactive_call_start)
1829 (delete_breakpoint, disable_breakpoint, disable_command): Pass
1830 false to update_global_location_list.
1831 (update_breakpoints_after_exec): Don't temporarily disable
1832 always-inserted mode.
1833
25b22b0a
PA
18342008-07-08 Pedro Alves <pedro@codesourcery.com>
1835
1836 * breakpoint.c (mark_breakpoints_out): Make public.
1837 (update_breakpoints_after_exec): Don't call mark_breakpoints_out
1838 here. Update comment.
1839 * breakpoint.h (mark_breakpoints_out): Declare.
1840
1841 * linux-nat.c (linux_handle_extended_wait): On
1842 TARGET_WAITKIND_EXECD, call mark_breakpoints_out.
1843 * inf-ttrace.c (inf_ttrace_wait): Likewise.
1844
cce9b6bf
PA
18452008-07-08 Pedro Alves <pedro@codesourcery.com>
1846
1847 * infrun.c (follow_exec): Reset shared libraries before adding the
1848 main exec file.
1849
3c3185ac
JK
18502008-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
1851
1852 * breakpoint.c (bpstat_copy): Call RELEASE_VALUE on the new OLD_VAL.
1853
42f0bc8e
PA
18542008-07-07 Pedro Alves <pedro@codesourcery.com>
1855
1856 * i386-dicos-tdep.c: Include "inferior.h".
1857 (i386_dicos_frame_align): New.
1858 (i386_dicos_init_abi): Register i386_dicos_frame_align. Set call
1859 dummy location ON_STACK.
1860 * Makefile.in (i386-dicos-tdep.o): Depend on $(inferior_h).
1861
b7292df3
JB
18622008-07-07 Joel Brobecker <brobecker@adacore.com>
1863
1864 * gstdint.h: New file.
1865
bb599c81
VP
18662008-07-05 Vladimir Prus <vladimir@codesourcery.com>
1867
1868 * mi/mi-interp.c (mi_on_resume): Don't try to report
1869 resumed thread it the thread list is empty.
1870
7f6a6314
PM
18712008-07-05 Pierre Muller <muller@ics.u-strasbg.fr>
1872
1873 * cli/cli-decode.c (add_setshow_optional_filename_cmd): Set
1874 completer for set to filename_completer.
680b56ce 1875
7f6a6314
PM
1876 NEWS: Mention it.
1877
711eabed
VP
18782008-07-04 Vladimir Prus <vladimir@codesourcery.com>
1879
1880 Implement -target-attach.
680b56ce 1881 * mi/mi-cmds.c (mi_cmds): Forward -target-attach to CLI attach.
711eabed 1882
db3b9a10
MS
18832008-06-21 Hui Zhu <teawater@gmail.com>
1884
1885 * target-descriptions.c (maint_print_c_tdesc_cmd): Fix a memory leak.
1886
dc177b7a
PA
18872008-07-03 Pedro Alves <pedro@codesourcery.com>
1888
1889 * config/i386/nm-cygwin.h (ATTACH_NO_WAIT): Delete.
1890 * config/i386/nm-i386gnu.h (ATTACH_NO_WAIT): Delete.
1891
1892 * target.h (struct target_ops): Add to_attach_no_wait member.
1893 (target_attach_no_wait): New.
1894 * target.c (update_current_target): Inherit to_attach_no_wait.
1895
1896 * infcmd.c: Replace ATTACH_NO_WAIT compile time check by
1897 target_attach_no_wait runtime check.
1898
1899 * gnu-nat.c (init_gnu_ops): Set to_attach_no_wait in gnu_ops.
1900 * win32-nat.c (init_win32_ops): Set to_attach_no_wait in
1901 win32_ops.
1902
caac8896
PA
19032008-07-03 Pedro Alves <pedro@codesourcery.com>
1904
1905 * i386-tdep.c (i386_displaced_step_fixup): Condition log printing
1906 on debug_displaced being set.
1907
0d254d6f
DJ
19082008-06-30 Daniel Jacobowitz <dan@codesourcery.com>
1909
1910 * frame.c (get_prev_frame_1): Call frame_unwind_find_by_frame
1911 directly instead of get_frame_id.
1912
f74c6cad
LM
19132008-06-30 Luis Machado <luisgpm@br.ibm.com>
1914
1915 * rs6000-tdep.c (ppc_displaced_step_fixup): New function.
1916 (deal_with_atomic_sequence): Update BC masks.
1917 (rs6000_gdbarch_init): Init displaced stepping infra-structure.
1918 Define BRANCH_MASK, B_INSN, BC_INSN, BXL_INSN, BP_MASK and BP_INSN.
1919
395f2fc2
DJ
19202008-06-30 Daniel Jacobowitz <dan@codesourcery.com>
1921
1922 * cris-tdep.c (crisv32_single_step_through_delay): Get this frame's
1923 register, not the previous frame's.
1924
8340a3fb
LM
19252008-06-30 Luis Machado <luisgpm@br.ibm.com>
1926
1927 * source.c (select_source_symtab): Make sure we skip namespace
1928 symtabs when showing cpp source code.
1929
cfefc99a
HPN
19302008-06-30 Hans-Peter Nilsson <hp@axis.com>
1931
1932 * MAINTAINERS (Authorized committers): Fix my email address.
1933
1b98914a
VP
19342008-06-28 Vladimir Prus <vladimir@codesourcery.com>
1935
1936 * mi/mi-cmds.c (mi_cmds): Route -exec-run, -exec-until,
1937 -target-download and -target-select via CLI, so that
1938 the quoting rules are the same as they were (unfortunately)
1939 in all prior gdb releases.
1940 * mi/mi-cmds.h (mi_cmd_exec_run, mi_cmd_exec_until)
1941 (mi_cmd_target_download, mi_cmd_target_select): Remove.
1942 * mi/mi-main.c (mi_cmd_exec_run, mi_cmd_exec_until)
1943 (mi_cmd_target_download, mi_cmd_target_select): Remove.
1944 (mi_cmd_execute): Set current_token even for commands
1945 routed via CLI.
1946
94afd7a6
UW
19472008-06-28 Ulrich Weigand <uweigand@de.ibm.com>
1948
1949 * alphafbsd-tdep.c: Update for unwinder changes.
1950 * alpha-linux-tdep.c: Likewise.
1951 * alphanbsd-tdep.c: Likewise.
1952 * alphaobsd-tdep.c: Likewise.
1953 * avr-tdep.c: Likewise.
1954 * cris-tdep.c: Likewise.
1955 * frv-linux-tdep.c: Likewise.
1956 * frv-tdep.c: Likewise.
1957 * h8300-tdep.c: Likewise.
1958 * hppa-linux-tdep.c: Likewise.
1959 * iq2000-tdep.c: Likewise.
1960 * m32c-tdep.c: Likewise.
1961 * m32r-linux-tdep.c: Likewise.
1962 * m32r-tdep.c: Likewise.
1963 * m68hc11-tdep.c: Likewise.
1964 * mep-tdep.c: Likewise.
1965 * mn10300-tdep.c: Likewise.
1966 * mt-tdep.c: Likewise.
1967 * score-tdep.c: Likewise.
1968 * sh64-tdep.c: Likewise.
1969 * sh-tdep.c: Likewise.
1970 * sparc64fbsd-tdep.c: Likewise.
1971 * sparc64nbsd-tdep.c: Likewise.
1972 * sparc64obsd-tdep.c: Likewise.
1973 * v850-tdep.c: Likewise.
1974 * vaxobsd-tdep.c: Likewise.
1975 * vax-tdep.c: Likewise.
1976 * xstormy16-tdep.c: Likewise.
1977
e111d6c9
VP
19782008-06-28 Vladimir Prus <vladimir@codesourcery.com>
1979
1980 * mi/mi-main.c (enum captured_mi_execute_command_actions)
1981 (captured_mi_execute_command_args): Remove.
1982 (captured_mi_execute_command): Cast the closure to mi_parse
1983 pointer, not to captured_mi_execute_command_args, and don't
1984 set the action field thereof.
1985 (mi_execute_command): Pass struct mi_parse, not
1986 captured_mi_execute_command_args to captured_mi_execute_command.
1987 (mi_execute_command): Remove (dead) code for suppressing
1988 printing prompt.
1989
84e46146
PA
19902008-06-28 Pedro Alves <pedro@codesourcery.com>
1991
1992 * linux-nat.c (enum sigchld_state): New.
1993 (linux_nat_async_events_state): Renamed from
1994 linux_nat_async_events_enabled.
1995 (linux_nat_event_pipe_push, my_waitpid): Adjust.
1996 (sigchld_default_action): New.
1997 (lin_lwp_attach_lwp): Adjust. Call linux_nat_async_events
1998 unconditionally.
1999 (linux_nat_create_inferior): Set events state to sigchld_default
2000 state.
2001 (linux_nat_resume): Adjust.
2002 (linux_nat_wait): Call linux_nat_async_events unconditionally.
2003 (sigchld_handler): Adjust.
2004 (linux_nat_async_mask): Don't set SIGCHLD actions here.
2005 (get_pending_events): Adjust.
2006 (linux_nat_async_events): Rewrite to handle enum sigchld_state
2007 instead of a boolean.
2008 (linux_nat_async): Adjust.
2009 (_initialize_linux_nat): Capture default SIGCHLD action into
2010 sigchld_default_action.
2011
20874c92
VP
20122008-06-28 Vladimir Prus <vladimir@codesourcery.com>
2013
680b56ce
AS
2014 * breakpoint.c (moribund_locations): New.
2015 (bpstat_stop_status): Process moribund locations.
2016 (update_global_location_list): Add removed
2017 locations to moribund_locations.
2018 (breakpoint_retire_moribund): New.
2019 * breakpoint.h (struct bp_location): New field
2020 events_till_retirement.
2021 (breakpoint_retire_moribund): Declare.
2022 * thread.c (thread_count): New.
2023 * infrun.c (handle_inferior_event): Call
2024 breakpoint_retire_moribund.
2025 * gdbthread.h (thread_count): Declare.
20874c92 2026
cd0b43b1
JM
20272008-06-27 Joseph Myers <joseph@codesourcery.com>
2028
2029 * dfp.c (decimal_convert): Call match_endianness before and after
2030 conversion.
2031
7c0f6dcc
JL
20322008-06-27 Jonathan Larmour <jifl@eCosCentric.com>
2033
2034 * remote.c (remote_insert_breakpoint): Ensure that if Z0
2035 unsupported and we fall back to memory_insert_breakpoint, we
2036 use the unmodified requested address.
2037
01c66ae6
JB
20382008-06-27 Joel Brobecker <brobecker@adacore.com>
2039
2040 * dwarf2read.c (read_attribute_value): Issue a complaint when
2041 adjusting size attribute values of 0xffffffff as zero.
2042
7ccc1c74
JM
20432008-06-27 Joseph Myers <joseph@codesourcery.com>
2044
2045 * i386-tdep.c (i386_16_byte_align_p): New.
2046 (i386_push_dummy_call): Determine stack space required for
2047 arguments going forwards allowing for 16-byte alignment, then push
2048 arguments going forwards.
2049
c0a2216e
PA
20502008-06-27 Pedro Alves <pedro@codesourcery.com>
2051
2052 * infrun.c (start_remote): Don't clear thread list here.
2053 * monitor.c (monitor_open): Include "gdbthread.h". Clear thread
2054 list here.
2055 * remote.c (record_currthread): Upgrade the main thread and its
2056 entry in the thread list if this is the first time we hear about
2057 threads.
2058 (remote_thread_alive): Consider magic_null_ptid or a ptid without
2059 a tid member always alive.
2060 (remote_find_new_threads): Don't update the main thread here.
2061 (remote_start_remote): Clear thread list here. Always add the
2062 main thread.
2063 (extended_remote_attach_1): Add the main thread here.
2064 (extended_remote_mourn_1): Re-add the main thread here.
2065 (extended_remote_create_inferior_1): Add a main thread.
2066
2067 * Makefile.in (monitor.o): Depend on $(gdbthread_h).
2068
87b0e16e 20692008-06-27 Pedro Alves <pedro@codesourcery.com>
79d7f229
PA
2070
2071 Use ptid_t.tid to store thread ids instead of ptid_t.pid.
2072
2073 * remote.c (magic_null_ptid, not_sent_ptid, any_thread_ptid): New
2074 globals.
2075 (general_thread, continue_thread): Change type to ptid_t.
2076 (record_currthread): Take a ptid_t parameter instead of an
2077 integer.
2078 (MAGIC_NULL_PID): Delete.
2079 (set_thread): Take a ptid_t parameter and adjust.
2080 (set_general_thread, set_continue_thread): New.
2081 (remote_thread_alive, remote_newthread_step)
2082 (remote_current_thread, remote_find_new_threads)
2083 (remote_threads_info, remote_start_remote, remote_vcont_resume)
2084 (remote_resume_1, remote_wait, extended_remote_create_inferior_1)
2085 (threadalive_test, remote_pid_to_str)
2086 (remote_get_thread_local_address): Adjust.
2087 (_initialize_remote): Initialize magic_null_ptid, not_sent_ptid
2088 and any_thread_ptid.
2089
3ca64bd3
JK
20902008-06-26 Jan Kratochvil <jan.kratochvil@redhat.com>
2091
2092 * configure.ac (--enable-tui): AC_MSG_ERROR for explicit --enable-tui.
2093 * configure: Regenerated.
2094
28e94949
JB
20952008-06-26 Joel Brobecker <brobecker@adacore.com>
2096
2097 * dwarf2read.c (read_attribute_value): Treat size attribute
2098 values of 0xffffffff as if the attribute value was zero.
2099
8a77dff3
VP
21002008-06-26 Vladimir Prus <vladimir@codesourcery.com>
2101
2102 * linux-nat.c: Add description of overall logic.
2103
d5af19ba
DJ
21042008-06-26 Daniel Jacobowitz <dan@codesourcery.com>
2105
2106 * Makefile.in (GNULIB_H): Use GNULIB_STDINT_H.
2107 (gdb_stdint_h, gdb_stdint.h, stamp-int): Delete. Remove
2108 all dependencies on $(gdb_stdint_h).
2109 (distclean): Do not delete gdb_stdint.h.
2110 * acinclude.m4: Do not use stdint.m4.
2111 * configure.ac: Set GNULIB_STDINT_H. Remove tests for stdint.h,
2112 uintptr_t, and gdb_stdint.h.
2113 * defs.h: Include <stdint.h>.
2114 * gdb_thread_db.h: Assume stdint.h is already included.
2115 * breakpoint.c, findcmd.c, hppa-tdep.c, inf-ptrace.c, proc-service.c,
2116 rs6000-nat.c, spu-linux-nat.c, target.c, win32-nat.c: Do not
2117 include gdb_stdint.h.
2118 * configure, config.in: Regenerate.
2119
00fbcec4
JM
21202008-06-26 Joseph Myers <joseph@codesourcery.com>
2121
2122 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Handle passing
2123 decimal floating-point values in GPRs for soft-float.
2124 (do_ppc_sysv_return_value): Handle returning decimal
2125 floating-point values in GPRs for soft-float.
2126
d5086790
VP
21272008-06-26 Vladimir Prus <vladimir@codesourcery.com>
2128
2129 * target.c (target_read_until_error): New.
680b56ce
AS
2130 * target.h (target_read_until_error): Declare.
2131 * mi/mi-main.c (mi_cmd_data_read_memory): Use
2132 target_read_until_error.
d5086790 2133
fe9441f6
JK
21342008-06-25 Jan Kratochvil <jan.kratochvil@redhat.com>
2135
2136 Fix a memory leak found by Hui Zhu <teawater@gmail.com>.
2137 * c-exp.y (parse_number): Move the S and SAVED_CHAR initialization
2138 after the DECFLOAT detection to fix a memory leak. Remove the
2139 redundant NUM initialization. Protect the DECFLOAT detection memory
2140 access before the P block. Restore the P memory content for the
2141 DECFLOAT detection.
2142
ce8f13f8
VP
21432008-06-25 Vladimir Prus <vladimir@codesourcery.com>
2144
2145 Kill the return value for all MI command functions.
2146 * mi/mi-cmds.h (enum mi_cmd_result): Remove.
2147 (mi_cmd_argv_ftype): Change return type to void.
2148
2149 * mi/mi-main.c: Adjust all function that implement
2150 MI commands to return nothing.
2151 (struct captured_mi_execute_command_actions):
2152 Remove the rc field.
2153 (mi_cmd_execute): Return nothing.
2154 (mi_execute_async_cli_command): Return nothing.
2155 (mi_cmd_exec_interrupt): Don't print ^done here.
2156 (mi_cmd_target_select): Don't print ^connected here.
2157 (captured_mi_execute_command): Don't check for MI_CMD_DONE.
2158 Special-case -target-select and output ^connected, not ^done.
2159
2160 * mi/mi-cmd-break.c: Adjust.
2161 * mi/mi-cmd-disas.c: Adjust.
2162 * mi/mi-cmd-env.c: Adjust.
2163 * mi/mi-cmd-file.c: Adjust.
2164 * mi/mi-cmd-stack.c: Adjust.
2165 * mi/mi-cmd-target.c: Adjust.
2166 * mi/mi-cmd-var.c: Adjust.
2167 * mi/mi-interp.c: Adjust.
2168 * mi/mi-symbol-cmds.c: Adjust.
2169
a2840c35
VP
21702008-06-25 Vladimir Prus <vladimir@codesourcery.com>
2171
2172 Emit ^running via observer.
2173 * mi/mi-interp.c (mi_cmd_interpreter_exec): Do no print
680b56ce
AS
2174 ^running here.
2175 (mi_on_resume): Print ^running if not previously output.
2176 * mi/mi-main.c (running_result_record_printed): New.
2177 (captured_mi_execute_command): Reset
2178 running_result_record_printed. Use running_result_record_printed
2179 to decide if we should skip ^done.
2180 (mi_execute_async_cli_command): Don't print ^running here.
2181 * mi/mi-main.h (current_token, running_result_record_printed):
2182 Declare.
a2840c35 2183
1f41b062
MS
21842008-06-24 Michael Snyder <msnyder@specifix.com>
2185
2186 * infrun.c (_initialize_infrun): White space and typo fix.
2187
eff8332b
CF
21882008-06-23 Christopher Faylor <me.gdb.changelog@cgf.cx>
2189
2190 * win32-nat.c (safe_symbol_file_add_stub): Remove unused variable.
2191 (do_initial_win32_stuff): Fix problem with inability to set breakpoints
2192 when first loading DLL with "dll" command.
2193
e50ce6de 21942008-06-19 Pierre Muller <muller@ics.u-strasbg.fr>
114374a0
PM
2195
2196 * gnu-nat.c (proc_string): Use capital T for "Thread".
680b56ce 2197
e50ce6de 21982008-06-19 Pierre Muller <muller@ics.u-strasbg.fr>
17526a8c
PM
2199
2200 * win32-nat.c (win32_pid_to_str): Use capital T for "Thread".
680b56ce 2201
59ddf1e7
JB
22022008-06-18 Joel Brobecker <brobecker@adacore.com>
2203
680b56ce
AS
2204 * solib-osf.c (osf_solib_create_inferior_hook): Do nothing if
2205 the target cannot run.
59ddf1e7
JB
2206
22072008-06-18 Joel Brobecker <brobecker@adacore.com>
ea8eedbe
JB
2208
2209 * solib-osf.c (osf_solib_create_inferior_hook): Do nothing if
2210 we're attaching to a running process.
2211
e50ce6de 22122008-06-18 Pierre Muller <muller@ics.u-strasbg.fr>
7488902c
PM
2213
2214 * win32-nat.c (handle_load_dll): Give dll name and load address
2215 if debug_events is on.
2216 (handle_unload_dll): Likewise.
2217
8f6a8e84
VP
22182008-06-14 Vladimir Prus <vladimir@codesourcery.com>
2219
2220 Don't suppress *running when doing finish.
680b56ce
AS
2221 * infcall.c (call_function_by_hand): Set both
2222 suppress_resume_observer and suppress_stop_observer.
2223 * infcmd.c (suppress_run_stop_observers): Split into...
2224 (suppress_resume_observer, suppress_stop_observer): ...those.
2225 (finish_command_continuation): Clear suppress_stop_observer.
2226 (finish_command): Set suppress_stop_observer.
2227 * inferior.h (suppress_run_stop_observers): Split into...
2228 (suppress_resume_observer, suppress_stop_observer): ...those.
2229 * infrun.c (normal_stop): Check for suppress_stop_observer.
2230 * thread.c (set_running): Check for suppress_resume_observer.
8f6a8e84 2231
4309257c
PM
22322008-06-12 Pedro Alves <pedro_alves@portugalmail.pt>
2233 Pierre Muller <muller@ics.u-strasbg.fr>
2234
2235 * gdbarch.sh (gdbarch_skip_main_prologue): New.
2236 * gdbarch.h, gdbarch.c: Regenerate.
2237 * i386-tdep.h (i386_skip_main_prologue): Declare.
2238 * i386-tdep.c (i386_skip_main_prologue): New.
680b56ce 2239 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Register
4309257c
PM
2240 i386_skip_main_prologue as gdbarch_skip_main_prologue gdbarch callback.
2241 * symtab.c (find_function_start_sal): When pc points at the "main"
2242 function, call gdbarch_skip_main_prologue.
2243
a4e2ee12
DJ
22442008-06-11 Daniel Jacobowitz <dan@codesourcery.com>
2245
2246 * value.c (value_primitive_field): Fetch lazy register values.
2247
060871df
PA
22482008-06-11 Pedro Alves <pedro@codesourcery.com>
2249
2250 * NEWS: Mention support removal of undocumented S AA p PID stop
2251 reply packet.
2252
2253 * remote.c (remote_wait): Remove undocumented S AA p PID support.
2254
336de56d
SS
22552008-06-10 Stan Shebs <stan@codesourcery.com>
2256
2257 * MAINTAINERS: Update my affiliation and address.
2258
7949220d
AS
22592008-06-10 Andreas Schwab <schwab@suse.de>
2260
2261 * top.c (print_gdb_version): Don't print final newline.
2262
e1ac3328
VP
22632008-06-10 Vladimir Prus <vladimir@codesourcery.com>
2264
2265 Implement *running.
680b56ce
AS
2266 * Makefile.in: Update dependencies.
2267 * gdbthread.h (struct thread_info): New field
2268 running_.
2269 (set_running, is_running): New.
2270 * thread.c (set_running, is_running): New.
2271 * inferior.h (suppress_normal_stop_observer): Rename to...
2272 (suppress_run_stop_observers): ..this.
2273 * infcmd.c (suppress_normal_stop_observer): Rename to...
2274 (suppress_run_stop_observers): ..this.
2275 (finish_command_continuation, finish_command): Adjust.
2276 * infcall.c (call_function_by_hand): Adjust.
2277 * infrun.c (normal_stop): Call set_running.
2278 * target.c (target_resume): New. Call set_running.
2279 * target.h (target_resume): Convert from macro to
2280 a function.
2281
2282 * mi/mi-interp.c (mi_on_resume): New.
2283 (mi_interpreter_init): Register mi_on_resume.
e1ac3328 2284
f7f9a841
VP
22852008-06-10 Vladimir Prus <vladimir@codesourcery.com>
2286
2287 Use observers to report stop events in MI.
680b56ce
AS
2288 * mi/mi-interp.c (mi_on_normal_stop): New.
2289 (mi_interpreter_init): Register mi_on_normal_stop.
2290 (mi_interpreter_exec_continuation): Remove.
2291 (mi_cmd_interpreter_exec): Don't register the above.
2292 * mi/mi-main.c (captured_mi_execute_command): Don't care
2293 about sync_execution.
2294 (mi_execute_async_cli_command): Don't install continuation. Don't
2295 print *stopped.
2296 (mi_exec_async_cli_cmd_continuation): Remove.
f7f9a841 2297
f5871ec0
VP
22982008-06-10 Vladimir Prus <vladimir@codesourcery.com>
2299
2300 Suppress normal stop observer when it's problematic.
680b56ce
AS
2301 * inferior.h (suppress_normal_stop_observer): New.
2302 * infcall.c (call_function_by_hand): Disable stop events when
2303 doing function calls.
2304 * infmcd.c (suppress_normal_stop_observer): New.
2305 (finish_command_continuation): Call normal_stop observer
2306 explicitly.
2307 (finish_command): Disable stop events inside proceed.
2308 * infrun.c (normal_stop): Don't call normal stop observer if
2309 suppressed of if multi-step is in progress.
f5871ec0 2310
3d3191a6
VP
23112008-06-10 Vladimir Prus <vladimir@codesourcery.com>
2312
2313 Remove stale code.
680b56ce
AS
2314 * infrun.c (finish_command): Don't pass cleanup
2315 to continuation.
2316 (finish_command_continuation): Don't grab cleanup from
2317 the passed data, as we don't use, and cannot, use it anyway.
3d3191a6 2318
0b080f59
VP
23192008-06-10 Vladimir Prus <vladimir@codesourcery.com>
2320
2321 Introduce common cleanup for restoring integers.
680b56ce
AS
2322 * defs.h (make_cleanup_restore_integer): New declaration.
2323 (struct cleanup): New field free_arg.
2324 (make_my_cleanup_2): New.
2325 * utils.c (restore_integer_closure, restore_integer)
2326 (make_cleanup_restore_integer): New.
2327 (make_my_cleanup): Initialize the free_arg field and
2328 renamed to make_my_cleanup_2.
2329 (do_my_cleanups): Call free_arg.
2330 (discard_cleanups): Call free_arg.
2331 * breakpoint.c (restore_always_inserted_mode): Remove.
2332 (update_breakpoints_after_exec): Use make_cleanup_restore_integer.
0b080f59 2333
b4f62b57
DE
23342008-06-09 Doug Evans <dje@google.com>
2335
2336 * remote.c (remote_wait): Include beginning of malformed packet
2337 in error output.
2338
37cd5d19
TT
23392008-06-09 Tom Tromey <tromey@redhat.com>
2340
2341 * completer.c (complete_line): Don't special-case
2342 expression_completer.
2343 (expression_completer): Only pass last word to
2344 location_completer.
2345 * c-exp.y (yylex): Check 'token', not 'operator'.
2346
3526781e
DJ
23472008-06-09 Daniel Jacobowitz <dan@codesourcery.com>
2348
2349 * configure.ac (build_warnings): Add -Wno-format for mingw.
2350 * configure: Regenerated.
2351
d001be7a
DJ
23522008-06-07 Daniel Jacobowitz <dan@codesourcery.com>
2353
2354 * NEWS: Make indentation consistent. Move exec tracing entry out
2355 of remote packet list.
2356
65d12d83
TT
23572008-06-06 Tom Tromey <tromey@redhat.com>
2358
2359 * value.h (evaluate_subexpression_type, extract_field_op):
2360 Declare.
2361 * printcmd.c (_initialize_printcmd): Use expression_completer for
2362 'p', 'inspect', 'call'.
2363 * parser-defs.h (parse_field_expression): Declare.
2364 * parse.c: Include exceptions.h.
2365 (in_parse_field, expout_last_struct): New globals.
2366 (mark_struct_expression): New function.
2367 (prefixify_expression): Return int.
2368 (prefixify_subexp): Return int. Use expout_last_struct.
2369 (parse_exp_1): Update.
2370 (parse_exp_in_context): Add 'out_subexp' argument. Handle
2371 in_parse_field.
2372 (parse_field_expression): New function.
2373 * expression.h (parse_field_expression): Declare.
2374 (in_parse_field): Likewise.
2375 * eval.c (evaluate_subexpression_type): New function.
2376 (extract_field_op): Likewise.
2377 * completer.h (expression_completer): Declare.
2378 * completer.c (expression_completer): New function.
2379 (count_struct_fields, add_struct_fields): New functions.
2380 * c-exp.y (yyparse): Redefine.
2381 (COMPLETE): New token.
2382 (exp): New productions.
2383 (saw_name_at_eof, last_was_structop): New globals.
2384 (yylex): Return COMPLETE when needed. Recognize in_parse_field.
2385 (c_parse): New function.
2386 * breakpoint.c (_initialize_breakpoint): Use expression_completer
2387 for watch, awatch, and rwatch.
2388 * Makefile.in (parse.o): Depend on exceptions_h.
2389
fed27633
PP
23902008-06-06 Paul Pluzhnikov <ppluzhnikov@google.com>
2391
2392 PR gdb/1147
2393 * gdb/valopts.c (find_overload_match): Handle references
2394 to pointers.
2395
aced2898
PH
23962008-06-06 Paul N. Hilfinger <hilfinger@adacore.com>
2397
2398 * ada-lang.c (ada_value_assign): Correct big-endian case to take into
2399 account the bitsize of the 'from' operand.
2400
a2b87ed1
PA
24012008-06-06 Pedro Alves <pedro@codesourcery.com>
2402
2403 * annotate.h (annotate_thread_changed): Declare.
2404
3d6d0b9d
NR
24052008-06-06 Nick Roberts <nickrob@snap.net.nz>
2406
2407 * annotate.c (annotate_thread_changed): New function.
2408 * thread.c (thread_command) : Use it.
2409 * infrun.c (normal_stop): Use it.
2410
c16158bc 24112008-06-05 Vladimir Prus <vladimir@codesourcery.com>
680b56ce
AS
2412 Nathan Sidwell <nathan@codesourcery.com>
2413 Joseph Myers <joseph@codesourcery.com>
c16158bc
JM
2414
2415 * acinclude.m4: Include ../config/acx.m4.
2416 * configure.ac: Use ACX_PKGVERSION and ACX_BUGURL.
2417 * configure, config.in: Regenerate.
2418 * main.c (print_gdb_help): Use REPORT_BUGS_TO for bug-reporting
2419 address.
2420 * top.c (print_gdb_version): Use PKGVERSION and REPORT_BUGS_TO.
2421
75c99385
PA
24222008-06-05 Pedro Alves <pedro@codesourcery.com>
2423
2424 Replace 'target async' by 'maintenance set remote-async' and
2425 'target remote' combination.
2426
2427 * remote.c (remote_async_wait): Merge into remote_wait, and
2428 remove.
2429 (remote_async_permitted, remote_async_permitted_set): New
2430 variables.
2431 (set_maintenance_remote_async_permitted)
2432 (show_maintenance_remote_async_permitted): New functions.
2433 (remote_async_ops, extended_async_remote_ops): Delete.
2434 (remote_async_open, extended_remote_async_open): Delete.
2435 (remote_open_1): Drop async_p parameter. Update callers. Replace
2436 async_p with remote_async_permitted checks.
2437 (extended_async_remote_attach): Delete.
2438 (remote_resume, remote_async_resume): Merge and leave remote_resume.
2439 (remote_async_terminal_inferior): Rename to...
2440 (remote_terminal_inferior): ... this, and add
2441 remote_async_termitted check.
2442 (remote_async_terminal_ours): Rename to...
2443 (remote_terminal_ours): ... this, and add remote_async_termitted
2444 check.
2445 (remote_wait, remote_async_wait): Merge and leave remote_wait
2446 only.
2447 (remote_kill, remote_async_kill): Merge and leave remote_kill
2448 only.
2449 (remote_async_mourn, extended_async_remote_mourn): Delete.
2450 (extended_remote_create_inferior_1): Drop async_p parameter.
2451 Update callers. Always use extended_remote_ops.
2452 (extended_remote_async_create_inferior): Delete.
2453 (remote_return_zero): Delete.
2454 (init_remote_ops): Register remote_can_async_p, remote_async,
2455 remote_async_mask, remote_terminal_inferior and
2456 remote_terminal_ours.
2457 (remote_can_async_p, remote_is_async_p): Check for
2458 remote_async_permitted.
2459 (init_remote_async_ops, init_extended_async_remote_ops): Remove.
2460 (set_remote_cmd): Don't add async and extended-async targets.
2461 (_initialize_remote): Add set/show remote-async maintenance
2462 commands.
2463
cf30943b
PA
24642008-06-05 Pedro Alves <pedro@codesourcery.com>
2465
2466 * remote.c (kill_kludge): Delete.
2467 (remote_wait, remote_async_wait): Don't set it.
2468 (remote_kill, remote_async_kill): Don't do anything with it.
2469
49fd4a42
PA
24702008-06-05 Pedro Alves <pedro@codesourcery.com>
2471
2472 * linux-thread-db.c (thread_db_wait): Don't trim event ptid.
2473
2e618c13
AR
24742008-06-05 Aleksandar Ristovski <aristovski@qnx.com>
2475
2476 * bcache.c (bcache_data): Call deprecated_bcache_added function.
680b56ce
AS
2477 (deprecated_bcache_added): New function name. Body of function
2478 bcache_data is used here with the addition of 'added' argument.
2e618c13
AR
2479 * bcache.h (deprecated_bcache_added): New function.
2480 * symfile.c (add_psymbol_to_bcache): New helper function, takes part of
2481 work from add_psymbol_to_list - initialises partial symbol and stashes
2482 it in objfile's cache.
680b56ce 2483 (append_psymbol_to_list): New helper function, takes other part of
2e618c13 2484 work from add_psymbol_to_list - adds partial symbol to the given list.
680b56ce 2485 (add_psymbol_to_list): Call helper functions instead of doing work
2e618c13
AR
2486 here. If adding to global list, do not duplicate partial symbols in the
2487 partial symtab.
2488
c0b37c48
AR
24892008-06-05 Aleksandar Ristovski <aristovski@qnx.com>
2490
2491 * breakpoint.c (print_exception_catchpoint): Put 'exception' back to
2492 'exception caught|thrown' message.
2493
1e3a102a
JK
24942008-06-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2495
2496 * Makefile.in: Update dependencies.
2497 * dwarf2expr.c: New include "gdb_assert.h".
2498 (new_dwarf_expr_context): Initialize MAX_RECURSION_DEPTH.
2499 (dwarf_expr_eval): Sanity check the RECURSION_DEPTH count.
2500 (execute_stack_op): Error out on too large RECURSION_DEPTH.
2501 Increase/decrease RECURSION_DEPTH around the function.
2502
8d385431
DJ
25032008-06-05 Daniel Jacobowitz <dan@codesourcery.com>
2504
2505 * remote.c (get_offsets): Handle a single segment.
2506 * symfile.c (symfile_map_offsets_to_segments): Allow more bases
2507 than segments.
2508
93a57060
DJ
25092008-06-03 Daniel Jacobowitz <dan@codesourcery.com>
2510
2511 * solib-svr4.c (struct lm_info): Add lm_addr.
2512 (main_lm_addr): New.
2513 (svr4_default_sos): Set lm_addr.
2514 (svr4_current_sos): Set lm_addr and main_lm_addr.
2515 (svr4_fetch_objfile_link_map): Rewrite.
2516 (svr4_clear_solib): Clear main_lm_addr.
2517
609ba780 25182008-06-03 Michael Snyder <msnyder@redhat.com>
680b56ce 2519 Joseph Myers <joseph@codesourcery.com>
609ba780
JM
2520
2521 * mips-tdep.c (mips_eabi_return_value): Replace stub that always
2522 returned RETURN_VALUE_STRUCT_CONVENTION with a real function.
2523
c95f5026
JB
25242008-06-02 Roman Zippel <zippel@linux-m68k.org>
2525
2526 * m68klinux-tdep.c (m68k_linux_pc_in_sigtramp): Fix incorrect test.
2527
e4d8bc08
JB
25282008-06-02 Roman Zippel <zippel@linux-m68k.org>
2529
2530 * m68k-tdep.c (m68k_analyze_prologue): Fix length of lea insn.
2531
40adab56
JB
25322008-06-01 Joel Brobecker <brobecker@adacore.com>
2533
2534 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Do not
2535 treat pointers in data space as function descriptors if the
2536 target address is also in the data space.
2537
bfd66dd9
JB
25382008-05-30 Joel Brobecker <brobecker@adacore.com>
2539
2540 * alpha-tdep.c (alpha_heuristic_frame_unwind_cache): Set
2541 the trad-frame register value for the SP register.
2542
7ea566be
MK
25432008-05-29 Mark Kettenis <kettenis@gnu.org>
2544
2545 * sparcnbsd-tdep.c, sparcobsd-tdep.c: Update for unwinder changes.
2546
fcac911a
JB
25472008-05-28 Joel Brobecker <brobecker@adacore.com>
2548
2549 * ia64-tdep.c (ia64_convert_from_func_ptr_addr): Improve the heuristic
2550 that identifies function descriptors outside of the .opd section.
2551
ade92717
AR
25522008-05-28 Aleksandar Ristovski <aristovski@qnx.com>
2553
2554 * breakpoint.c (print_exception_catchpoint): In CLI add 'Temporary' for
680b56ce 2555 temporary catchpoints. In MI add missing fields 'reason', 'disp',
ade92717
AR
2556 'bkptno'.
2557 (print_mention_exception_catchpoint): Add 'Temporary' for temporary
2558 catchpoints.
2559 (handle_gnu_v3_exceptions): Use tempflag.
2560
f7f9ae2c
VP
25612008-05-28 Vladimir Prus <vladimir@codesourcery.com>
2562
2563 Refactor varobj_update interface.
680b56ce
AS
2564 * varobj.c (varobj_update): Report changes as vector. Also
2565 return not just a list of varobj, but a list of special structures
2566 that tell what exactly has changed.
2567 * varobj.h (enum varobj_update_error): Rename to
2568 varobj_scope_status.
2569 (struct varobj_update_result_t): New.
2570 (varobj_update): Adjust prototype.
2571 * mi/mi-cmd-var.c: Adjust for changes.
f7f9ae2c 2572
ea56f9c2
VP
25732008-05-28 Vladimir Prus <vladimir@codesourcery.com>
2574
2575 * varobj.c (varobj_update): Fix comment typo.
2576 Fix indentation.
2577
c7efd0b9
JB
25782008-05-26 Joel Brobecker <brobecker@adacore.com>
2579
2580 Set the symtab field of symbols read from ECOFF debugging entries.
2581 * mdebugread.c (add_symbol): Add new parameter symtab.
2582 (parse_symbol): Update calls to add_symbol throughout.
2583
2a2d4dc3
AS
25842008-05-27 Andreas Schwab <schwab@suse.de>
2585
2586 * symtab.h (enum address_class): Remove LOC_REGPARM and
2587 LOC_COMPUTED_ARG.
2588 (struct symbol): Add is_argument.
2589 (SYMBOL_IS_ARGUMENT): Define.
2590
2591 * ada-lang.c (ada_add_block_symbols): Use SYMBOL_IS_ARGUMENT.
2592 * buildsym.c (finish_block): Likewise.
2593 * stack.c (print_frame_args, print_block_frame_locals)
2594 (print_frame_arg_vars): Likewise.
2595 * symtab.c (lookup_block_symbol): Likewise.
2596 * tracepoint.c (add_local_symbols): Likewise.
2597 * mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
2598
2599 * coffread.c (process_coff_symbol): Set SYMBOL_IS_ARGUMENT.
2600 * dwarf2read.c (new_symbol): Likewise.
2601 * mdebugread.c (parse_symbol): Likewise.
2602 * stabsread.c (define_symbol): Likewise.
2603
2604 * ada-exp.y (select_possible_type_sym): Don't handle LOC_REGPARM
2605 and LOC_COMPUTED_ARG.
2606 * ada-lang.c (resolve_subexp, symtab_for_sym): Likewise.
2607 * ax-gdb.c (gen_var_ref): Likewise.
2608 * eval.c (evaluate_subexp_for_address): Likewise.
2609 * findvar.c (symbol_read_needs_frame, read_var_value): Likewise.
2610 * m2-exp.y (yylex): Likewise.
2611 * printcmd.c (address_info): Likewise.
2612 * symmisc.c (print_symbol, print_partial_symbols): Likewise.
2613 * tracepoint.c (collect_symbol, scope_info): Likewise.
2614
17ea7499
CES
26152008-05-24 Carlos Eduardo Seo <cseo@linux.vnet.ibm.com>
2616
2617 * gdbarch.sh: Added new gdbarch struct
2618 core_regset_sections.
2619 * gdbarch.c: Refreshed.
2620 * gdbarch.h: Refreshed.
2621 * regset.h (core_regset_section): Declared.
2622 * linux-nat.c (linux_nat_do_thread_registers): Added
2623 support for the new gdbarch struct core_regset_sections.
2624 * utils.c (host_address_to_string): New function.
2625 * defs.h (host_address_to_string): New prototype.
2626 * i386-linux-tdep.c (i386_regset_rections): New register
2627 sections list for i386.
2628 (i386_linux_init_abi): Initialized new gdbarch struct
2629 core_regset_sections.
2630 * Makefile.in: Updated to reflect dependency changes.
2631 * ppc-linux-tdep.c (ppc_regset_sections): Register
2632 sections list for ppc.
2633 (ppc_linux_init_abi): Initialized new gdbarch struct
2634 core_regset_sections
2635
c4fc331b
AS
26362008-05-24 Andreas Schwab <schwab@suse.de>
2637
2638 * linespec.c (decode_objc): Save current language around call to
2639 get_selected_block.
2640
e936309c
JB
26412008-05-23 Joel Brobecker <brobecker@adacore.com>
2642
2643 * valprint.h (get_array_bounds): Renames get_array_low_bound.
2644 * valprint.c (get_array_bounds): Renames get_array_low_bound.
2645 Return the proper bound value if the array index type is an
2646 enumerated type. Compute the high bound if requested.
2647 (val_print_array_elements): Handle the case when the array
2648 element has a null size.
2649 * ada-valprint.c (print_optional_low_bound): Add handling
2650 for empty arrays or arrays of zero-size elements.
2651 (ada_val_print_array): New function, extracted out from
2652 ada_val_print_1 case TYPE_CODE_ARRAY, and enhanced to
2653 handle empty arrays and arrays of zero-size elements.
2654 (ada_val_print_1)[case TYPE_CODE_ARRAY]: Replace extracted-out
2655 code by call to ada_val_print_array.
2656 (ada_value_print): Remove handling of null array. The handling
2657 was incomplete and is now better handled by ada_val_print_array.
2658
50ee7535
MD
26592008-05-23 Markus Deuling <deuling@de.ibm.com>
2660
2661 * annotate.c (annotate_source, annotate_frame_begin): Replace
2662 deprecated_print_address_numeric with paddress.
2663 * cli/cli-cmds.c (list_command, edit_command): Likewise.
2664 * tui/tui-stack.c (tui_make_status_line): Likewise.
2665
2666 * defs.h (deprecated_print_address_numeric): Remove.
2667 * printcmd.c (deprecated_print_address_numeric): Remove.
2668 * maint.c (maint_print_section_info): Fix comment.
2669
d44e8473
MD
26702008-05-23 Markus Deuling <deuling@de.ibm.com>
2671
2672 * valprint.c (print_hex_chars, print_octal_chars, print_decimal_chars,
2673 print_binary_chars, print_char_chars): Add byte_order parameter and
2674 replace gdbarch_byte_order.
2675 (print_decimal_chars): Replace START_P, NOT_END_P and NEXT_P by their
2676 expressions and remove them. Remove unused TWO_TO_FOURTH.
2677 (val_print_type_code_int): Introduce gdbarch_byte_order to get at the
2678 endianness. Update call to print_hex_chars.
2679 * valprint.h (print_hex_chars, print_octal_chars, print_decimal_chars,
2680 print_binary_chars, print_char_chars): Add byte_order parameter.
2681 * printcmd.c (print_scalar_formatted): Introduce gdbarch_byte_order to
2682 get at the endianness. Update print_*_char calls to use byte_order.
2683
10f4ecb8
UW
26842008-05-22 Ulrich Weigand <uweigand@de.ibm.com>
2685
2686 * symtab.h (struct symbol): Make "aux_value" member a void pointer
2687 instead of a union.
2688 (SYMBOL_LOCATION_BATON): Update.
2689
c3b22bd0
UW
26902008-05-22 Ulrich Weigand <uweigand@de.ibm.com>
2691
2692 * symtab.h (enum address_class): Remove LOC_BASEREG and
2693 LOC_BASEREG_ARG.
2694 (struct symbol): Remove "basereg" member of "aux_value" union.
2695 (SYMBOL_BASEREG): Remove.
2696
2697 * ada-exp.y (select_possible_type_sym): Do not handle LOC_BASEREG
2698 or LOC_BASEREG_ARG.
2699 * ada-lang.c (resolve_subexp, symtab_for_sym): Likewise.
2700 (ada_add_block_symbols): Likewise.
2701 * ax-gdb.c (gen_var_ref): Likewise.
2702 * buildsym.c (finish_block): Likewise.
2703 * findvar.c (symbol_read_needs_frame, read_var_value): Likewise.
2704 * m2-exp.y (yylex): Likewise.
2705 * mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
2706 * printcmd.c (address_info): Likewise.
2707 * stack.c (print_frame_args, print_block_frame_locals): Likewise.
2708 (print_frame_arg_vars): Likewise.
2709 * symmisc.c (print_symbol): Likewise.
2710 * symtab.c (lookup_block_symbol): Likewise.
2711 * tracepoint.c (collect_symbol, add_local_symbols): Likewise.
2712 (scope_info): Likewise.
2713
aa59ba6b
UW
27142008-05-22 Ulrich Weigand <uweigand@de.ibm.com>
2715
2716 * symtab.h (enum address_class): Remove LOC_LOCAL_ARG.
2717
2718 * ada-exp.y (select_possible_type_sym): Do not handle LOC_LOCAL_ARG.
2719 * ada-lang.c (resolve_subexp, symtab_for_sym): Likewise.
2720 (ada_add_block_symbols): Likewise.
2721 * ax-gdb.c (gen_var_ref): Likewise.
2722 * buildsyms.c (finish_block): Likewise.
2723 * findvar.c (symbol_read_needs_frame, read_var_value): Likewise.
2724 * m2-exp.y (yylex): Likewise.
2725 * mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
2726 * printcmd.c (address_info): Likewise.
2727 * stack.c (print_frame_args, print_frame_arg_vars): Likewise.
2728 * symmisc.c (print_symbol, print_partial_symbols): Likewise.
2729 * symtab.c (lookup_block_symbol): Likewise.
2730 * tracepoint.c (collect_symbol, add_local_symbols): Likewise.
2731 (scope_info): Likewise.
2732
0bb4e8c4
UW
27332008-05-22 Ulrich Weigand <uweigand@de.ibm.com>
2734
2735 * symtab.h (enum address_class): Remove LOC_INDIRECT and
2736 LOC_HP_THREAD_LOCAL_STATIC.
2737
2738 * findvar.c (symbol_read_needs_frame, read_var_value): Do not
2739 handle LOC_INDIRECT or LOC_HP_THREAD_LOCAL_STATIC.
2740 (read_var_value): Likewise.
2741 * buildsym.c (finish_block): Likewise.
2742 * objfiles.c (objfile_relocate): Likewise.
2743 * printcmd.c (address_info): Likewise.
2744 * symmisc.c (print_symbol, print_partial_symbols): Likewise.
2745 * tracepoint.c (scope_info): Likewise.
2746
9f61f19b
MG
27472008-05-21 Markus Deuling <deuling@de.ibm.com>
2748 Maxim Grigoriev <maxim2405@gmail.com>
2749
2750 * xtensa-tdep.c (xtensa_read_register): Remove.
2751 (xtensa_frame_cache): Get rid of xtensa_read_register. Pass extra
2752 argument litbase to call0_frame_cache().
2753 (call0_track_op, call0_analyze_prologue)
2754 (call0_frame_cache): Use extra argument litbase.
2755
0e479716
JB
27562008-05-21 Joel Brobecker <brobecker@adacore.com>
2757
2758 * infcmd.c (_initialize_infcmd): Add new "fin" alias for "finish".
2759
214be669
UW
27602008-05-21 Ulrich Weigand <uweigand@de.ibm.com>
2761
2762 * frame.h (SIZEOF_FRAME_SAVED_REGS): Remove.
2763
0cd9ab92
UW
27642008-05-21 Ulrich Weigand <uweigand@de.ibm.com>
2765
2766 * alpha-mdebug-tdep.c: Include "trad-frame.h".
2767 (struct alpha_mdebug_unwind_cache): Change type of SAVED_REGS to
2768 struct trad_frame_saved_reg *.
2769 (alpha_mdebug_frame_unwind_cache): Allocate SAVED_REGS using
2770 trad_frame_alloc_saved_regs. Update accesses. Record previous
2771 value of SP as being vfp.
2772 (alpha_mdebug_frame_prev_register): Use trad_frame_get_prev_register.
2773 * Makefile.in (alpha-mdebug-tdep.o): Update dependencies.
2774
f52cb1b8
MD
27752008-05-21 Markus Deuling <deuling@de.ibm.com>
2776
2777 * score-tdep.c (score_print_insn): Get the current endianess from
2778 disassemble_info instead of gdbarch_byte_order.
2779
8fa75a5d
PA
27802008-05-21 Pedro Alves <pedro@codesourcery.com>
2781
2782 * frame.c (get_prev_frame_1): Build frame id before setting
2783 this_frame->prev_p, not after.
2784
e8e48118
NR
27852008-05-21 Nick Roberts <nickrob@snap.net.nz>
2786
2787 * annotate.c (annotate_new_thread): New function for new-thread
2788 annotation.
2789 * annotate.h: (annotate_new_thread): New extern.
2790 * thread.c (add_thread_with_info): Use it.
2791 * Makefile.in (thread.o): Add dependency on annotate.h.
2792
c57918b2
JB
27932008-05-20 Joel Brobecker <brobecker@adacore.com>
2794
2795 * win32-nat.c (win32_wait): Block the control-c event while
2796 waiting for a debug event.
2797
6c9353d3
PA
27982008-05-19 Pedro Alves <pedro@codesourcery.com>
2799
2800 * symtab.h (lookup_symbol_in_language): Update comment.
2801 * symtab.c (lookup_symbol_aux_block): Update comment.
2802 * ada-lang.c (ada_lookup_symbol_list): Update comment.
2803
2570f2b7
UW
28042008-05-19 Ulrich Weigand <uweigand@de.ibm.com>
2805
2806 * symtab.h (lookup_symbol_in_language): Remove SYMTAB parameter.
2807 (lookup_symbol): Likewise.
2808 * symtab.c (lookup_symbol_in_language): Remove SYMTAB parameter.
2809 (lookup_symbol): Likewise.
2810 (search_symbols): Update.
2811
2812 * linespec.c (find_methods, collect_methods): Update.
2813 (add_matching_methods, add_constructors): Update.
2814 (decode_compound, decode_dollar, decode_variable): Update.
2815 (lookup_prefix_sym): Update.
2816
2817 (symbol_found): Remove SYM_SYMTAB parameter.
2818 Use SYMBOL_SYMTAB (sym) instead.
2819
2820 * gdbtypes.c (lookup_typename): Update.
2821 (lookup_struct, lookup_union, lookup_enum): Update.
2822 (lookup_template_type): Update.
2823 (check_typedef): Update.
2824 * language.c (lang_bool_type): Update.
2825 * mdebugread.c (parse_procedure): Update.
2826 * mi/mi-cmd-stack.c (list_args_or_locals): Update.
2827 * parse.c (write_dollar_variable): Update.
2828 * printcmd.c (address_info): Update.
2829 * source.c (select_source_symtab): Update.
2830 * stack.c (print_frame_args, print_frame_arg_vars): Update.
2831 * valops.c (find_function_in_inferior): Update.
2832 (value_struct_elt_for_reference): Update.
2833 * value.c (value_static_field, value_fn_field): Update.
2834
2835 * alpha-mdebug-tdep.c (find_proc_desc): Update.
2836 * arm-tdep.c (arm_skip_prologue): Update.
2837 * mt-tdep.c (mt_skip_prologue): Update.
2838 * xstormy16-tdep.c (xstormy16_skip_prologue): Update.
2839
2840 * ada-lang.h (struct ada_symbol_info): Remove SYMTAB member.
2841 * ada-lang.c (ada_add_block_symbols): Remove SYMTAB parameter.
2842 (add_defn_to_vec): Likewise.
2843 (ada_add_block_symbols): Likewise.
2844 (lookup_cached_symbol, cache_symbol): Likewise.
2845 (standard_lookup): Update.
2846 (ada_lookup_symbol_list): Update.
2847
2848 * c-valprint.c (c_val_print): Update.
2849 * cp-support.c (cp_lookup_rtti_type): Update.
2850 * jv-lang.c (java_lookup_class, get_java_object_type): Update.
2851 * objc-lang.c (lookup_struct_typedef, find_imps): Update.
2852 * p-valprint.c (pascal_val_print): Update.
2853 * scm-lang.c (scm_lookup_name): Update.
2854
2855 * c-exp.y: Update.
2856 * f-exp.y: Update.
2857 * jv-exp.y: Update.
2858 * m2-exp.y: Update.
2859 * objc-exp.y: Update.
2860 * p-exp.y: Update.
2861
21b556f4
UW
28622008-05-19 Ulrich Weigand <uweigand@de.ibm.com>
2863
2864 * language.h (struct language_defn): Remove SYMTAB parameter from
2865 la_lookup_symbol_nonlocal callback function pointer.
2866
2867 * ada-lang.h (ada_lookup_encoded_symbol): Remove SYMTAB parameter.
2868 (ada_lookup_encoded_symbol): Likewise.
2869 * ada-lang.c (ada_lookup_encoded_symbol): Remove SYMTAB parameter.
2870 Always call fixup_symbol_section.
2871 (ada_lookup_symbol): Remove SYMTAB parameter.
2872 (ada_lookup_symbol_nonlocal): Likewise.
2873 * ada-exp.y (write_object_renaming): Update.
2874 (find_primitive_type): Likewise.
2875
2876 * cp-support.h (cp_lookup_symbol_nonlocal): Remove SYMTAB parameter.
2877 (cp_lookup_symbol_namespace): Likewise.
2878 * cp-namespace.c (lookup_namespace_scope): Remove SYMTAB parameter.
2879 (lookup_symbol_file): Likewise.
2880 (lookup_possible_namespace_symbol): Likewise.
2881 (cp_lookup_symbol_nonlocal): Likewise.
2882 (cp_lookup_symbol_namespace): Likewise.
2883 (cp_lookup_nested_type): Update.
2884
2885 * scm-valprint.c (scm_inferior_print): Update.
2886 * valops.c (value_maybe_namespace_elt): Update.
2887
2888 * solist.h (struct target_so_ops): Remove SYMTAB parameter from
2889 lookup_lib_global_symbol callback function pointer.
2890 (solib_global_lookup): Remove SYMTAB parameter.
2891 * solib.c (solib_global_lookup): Remove SYMTAB parameter.
2892 * solib-svr4.c (elf_lookup_lib_symbol): Likewise.
2893
2894 * symtab.h (basic_lookup_symbol_nonlocal): Remove SYMTAB parameter.
2895 (lookup_symbol_static): Likewise.
2896 (lookup_symbol_global): Likewise.
2897 (lookup_symbol_aux_block): Likewise.
2898 (lookup_global_symbol_from_objfile): Likewise.
2899 * symtab.c (lookup_symbol_aux): Remove SYMTAB parameter.
2900 (lookup_symbol_aux_local): Likewise.
2901 (lookup_symbol_aux_block): Likewise.
2902 (lookup_symbol_aux_symtabs): Likewise.
2903 (lookup_symbol_aux_psymtabs): Likewise.
2904 (lookup_global_symbol_from_objfile): Likewise.
2905 (basic_lookup_symbol_nonlocal): Likewise.
2906 (lookup_symbol_static): Likewise.
2907 (lookup_symbol_global): Likewise.
2908
2909 (lookup_symbol_in_language): Do not pass SYMTAB to lookup_symbol_aux.
2910
39237dd1
PA
29112008-05-17 Pedro Alves <pedro@codesourcery.com>
2912
2913 * remote.c (init_extended_remote_ops): Fix typo.
2914
7c0d47a5
PA
29152008-05-16 Pedro Alves <pedro@codesourcery.com>
2916
2917 * NEWS: Mention new DICOS x86 target configuration.
2918
907fc202
UW
29192008-05-16 Pedro Alves <pedro@codesourcery.com>
2920 Ulrich Weigand <uweigand@de.ibm.com>
2921
2922 * minsyms.c (lookup_minimal_symbol_by_pc_name): New function.
2923 * symtab.h (lookup_minimal_symbol_by_pc_name): Add prototype.
2924
2925 * symtab.c (fixup_section): Remove prototype. Add ADDR parameter;
2926 use it instead of ginfo->value.address. Look up minimal symbol by
2927 address and name. Assume OBJFILE is non-NULL.
2928 (fixup_symbol_section): Ensure we always have an objfile to look
2929 into. Extract and pass to fixup_section the symbol's address that
2930 will match the minimal symbol's address.
2931 (fixup_psymbol_section): Likewise.
2932
2933 (find_pc_sect_psymtab): Fall back to non-addrmap case when debugging
2934 overlays and the addrmap returned the wrong section.
2935
2936 * dwarf2read.c (var_decode_location): Set SYMBOL_CLASS before
2937 calling fixup_symbol_section.
2938
42848c96
UW
29392008-05-16 Ulrich Weigand <uweigand@de.ibm.com>
2940
2941 * minsyms.c: Include "target.h".
2942 (find_solib_trampoline_target): Handle minimal symbols pointing
2943 to function descriptors as well.
2944 * Makefile.in (minsyms.o): Update dependencies.
2945
2946 * ppc-linux-tdep.c (ppc64_standard_linkage): Rename to ...
2947 (ppc64_standard_linkage1): ... this. Fix optional instructions.
2948 (PPC64_STANDARD_LINKAGE_LEN): Rename to ...
2949 (PPC64_STANDARD_LINKAGE1_LEN): ... this.
2950 (ppc64_standard_linkage2, ppc64_standard_linkage3): New.
2951 (PPC64_STANDARD_LINKAGE2_LEN, PPC64_STANDARD_LINKAGE3_LEN): New.
2952 (ppc64_standard_linkage_target): Rename to ...
2953 (ppc64_standard_linkage1_target): ... this.
2954 (ppc64_standard_linkage2_target, ppc64_standard_linkage3_target): New.
2955 (ppc64_skip_trampoline_code): Support three variants of standard
2956 linkage stubs. Call find_solib_trampoline_target to handle
2957 glink stubs.
2958
74d1f063
UW
29592008-05-16 Ulrich Weigand <uweigand@de.ibm.com>
2960
2961 * ppc-linux-tdep.c (ppc_linux_init_abi): Do not install
2962 ppc64_sysv_abi_adjust_breakpoint_address.
2963 * ppc-sysv-tdep.c (ppc64_sysv_abi_adjust_breakpoint_address): Remove.
2964 * ppc-tdep.h (ppc64_sysv_abi_adjust_breakpoint_address): Remove.
2965
8526f328
UW
29662008-05-16 Ulrich Weigand <uweigand@de.ibm.com>
2967
2968 * ppc-linux-tdep.c (ppc_linux_skip_trampoline_code): Remove.
2969 (ppc_linux_init_abi): Install find_solib_trampoline_target instead
2970 of ppc_linux_skip_trampoline_code.
2971
ba2b1c56
DJ
29722008-05-15 Daniel Jacobowitz <dan@codesourcery.com>
2973
2974 * gdbarch.sh: Delete dwarf_reg_to_regnum.
2975 * gdbarch.c, gdbarch.h: Regenerated.
2976 * amd64-tdep.c, arm-tdep.c, h8300-tdep.c, hppa-linux-tdep.c,
2977 hppa-tdep.c, i386-tdep.c, m32c-tdep.c, m68k-tdep.c, mips-tdep.c,
2978 s390-tdep.c, xtensa-tdep.c: Do not set dwarf_reg_to_regnum.
2979
4fdebdd0
PA
29802008-05-15 Pedro Alves <pedro@codesourcery.com>
2981
2982 * linux-nat.c (trap_ptid): Delete.
2983 (linux_nat_detach, linux_nat_wait, linux_nat_mourn_inferior):
2984 Adjust.
2985 * linux-thread-db.c (thread_db_wait): Adjust.
2986
bc882aa9
JB
29872008-05-15 Joel Brobecker <brobecker@adacore.com>
2988
2989 * linespec.c (decode_line_1): Fix a couple of comments.
2990
83b94be5
AM
29912008-05-15 Alan Modra <amodra@bigpond.net.au>
2992
2993 * dbxread.c: Formatting.
2994 (INTERNALIZE_SYMBOL): Init n_other.
2995 (set_namestring): Take pointer to nlist arg rather than struct
2996 copy. Update all callers.
2997
87669130
AS
29982008-05-15 Andreas Schwab <schwab@suse.de>
2999
3000 * Makefile.in (dwarf2loc.o): Remove $(addrmap_h).
3001 (dwarf2read.o): Add $(addrmap_h).
3002
00d5f93a
UW
30032008-05-14 Ulrich Weigand <uweigand@de.ibm.com>
3004
3005 * ppc-linux-tdep.c (ppc_linux_convert_from_func_ptr_addr): Rename ...
3006 (ppc64_linux_convert_from_func_ptr_addr): ... to this. No longer try
3007 to handle ppc32 PLT entries.
3008 (ppc_linux_init_abi): Install ppc64_linux_convert_from_func_ptr_addr
3009 only on ppc64.
3010
2eaf8d2a
DJ
30112008-05-14 Daniel Jacobowitz <dan@codesourcery.com>
3012
3013 * elfread.c (elf_symtab_read): Create trampolines for @plt symbols.
3014 * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Renamed from
3015 lookup_minimal_symbol_by_pc_section. Prefer trampolines if requested.
3016 (lookup_minimal_symbol_by_pc_section): Use
3017 lookup_minimal_symbol_by_pc_section_1.
3018 (lookup_solib_trampoline_symbol_by_pc): Likewise.
3019
20c62566
JB
30202008-05-13 Joel Brobecker <brobecker@adacore.com>
3021
3022 * findcmd.c: Add #include "gdb_stdint.h".
3023 * Makefile.in (findcmd.o): Update dependencies.
3024
87a7da84
DM
30252008-05-11 David S. Miller <davem@davemloft.net>
3026
de0c3d9d
DM
3027 * sparc-linux-tdep.c (sparc32_linux_init_abi): Remove
3028 long double size override, Linux does use 128-bit now.
3029
e8467b5a
DM
3030 * sparc-linux-tdep.c (PSR_SYSCALL): Define.
3031 (sparc_linux_write_pc): New function.
3032 (sparc32_linux_init_abi): Register it.
3033 * sparc64-linux-tdep.c (TSTATE_SYSCALL): Define.
3034 (sparc64_linux_write_pc): New function.
3035 (sparc64_linux_init_abi): Register it.
3036
87a7da84
DM
3037 * sparc-linux-tdep.c, sparc64-linux-tdep.c: Use
3038 dwarf2_append_unwinders(), not dwarf2_frame_sniffer.
3039
8a4c2d24
UW
30402008-05-11 Ulrich Weigand <uweigand@de.ibm.com>
3041
3042 * rs6000-tdep.c (rs6000_gdbarch_init): Set up info.target_desc
3043 and info.tdep_info before calling gdbarch_init_osabi.
3044
003f3813
JB
30452008-05-09 Joel Brobecker <brobecker@adacore.com>
3046
3047 * ada-lang.c (ada_evaluate_subexp) [BINOP_ASSIGN]: Do not force
3048 the type of the right hand side of the assignment to the type
3049 of the left hand side if the left hand side is a convenience
3050 variable.
3051
7ae0e2a2
UW
30522008-05-09 Ulrich Weigand <uweigand@de.ibm.com>
3053
3054 * NEWS: Mention gdbserver bi-arch capability.
3055
08388c79
DE
30562008-05-09 Doug Evans <dje@google.com>
3057
3058 New "find" command.
3059 * NEWS: Document find command and qSearch:memory packet.
3060 * Makefile.in (SFILES): Add findcmd.c.
3061 (COMMON_OBJS): Add findcmd.o.
3062 (findcmd.o): New rule.
3063 * findcmd.c: New file.
3064 * target.h (target_ops): New member to_search_memory.
3065 (simple_search_memory): Declare.
3066 (target_search_memory): Declare.
3067 * target.c (simple_search_memory): New fn.
3068 (target_search_memory): New fn.
3069 * remote.c (PACKET_qSearch_memory): New packet kind.
3070 (remote_search_memory): New fn.
3071 (init_remote_ops): Init to_search_memory.
3072 (init_extended_remote_ops): Ditto.
3073 (_initialize_remote): Add qSearch:memory packet config command.
3074
11c68c47
EZ
30752008-05-09 Eli Zaretskii <eliz@gnu.org>
3076
3077 * thread.c (_initialize_thread): Don't use commas and periods in
3078 first line of doc string of "set/show print thread-events".
3079
6834c9bb
JB
30802008-05-08 Joel Brobecker <brobecker@adacore.com>
3081
3082 * alpha-mdebug-tdep.c, alpha-osf1-tdep.c, alpha-tdep.c:
3083 Update for unwinder changes.
3084
86c31399
JB
30852008-05-08 Joel Brobecker <brobecker@adacore.com>
3086
3087 * frame.c (get_frame_base_address, get_frame_locals_address)
3088 (get_frame_args_address): Pass the correct frame when calling
3089 frame_base_find_by_frame.
3090
96ef3384
UW
30912008-05-08 Ulrich Weigand <uweigand@de.ibm.com>
3092
3093 * remote.c (extended_remote_attach_1): Call target_find_description.
3094
45280a52
DJ
30952008-05-08 Daniel Jacobowitz <dan@codesourcery.com>
3096
3097 * remote.c (extended_remote_create_inferior_1): Clean up
3098 before marking the target running.
3099
227e86ad
JB
31002008-05-08 Joel Brobecker <brobecker@adacore.com>
3101
3102 * hppa-tdep.h, hppa-tdep.c, hppa-hpux-tdep.c: Update for unwinder
3103 changes.
3104
236369e7
JB
31052008-05-07 Joel Brobecker <brobecker@adacore.com>
3106
3107 * sparc-tdep.c, sparc-tdep.h, sparc-sol2-tdep.c, sparc64-tdep.c,
3108 sparc64-sol2-tdep.c: Update for unwinder changes.
3109
de237128
DJ
31102008-05-07 Daniel Jacobowitz <dan@codesourcery.com>
3111
3112 * cp-support.c (mangled_name_to_comp): Initialize storage.
3113 (unqualified_name_from_comp): Likewise.
3114
4fff2411
JZ
31152008-05-07 Jie Zhang <jie.zhang@analog.com>
3116
3117 * remote.c (remote_insert_breakpoint): Call get_remote_state
3118 after gdbarch_breakpoint_from_pc is called.
3119 (remote_insert_hw_breakpoint): Likewise.
3120
d8ca156b
JB
31212008-05-06 Joel Brobecker <brobecker@adacore.com>
3122
3123 * valprint.c (val_print): Add new language parameter and use it
3124 instead of using the current_language. Update calls to val_print
3125 throughout.
3126 (common_val_print): Add new langauge parameter and pass it to
3127 val_print.
3128 * value.h (struct language_defn): Add opaque declaration.
3129 (val_print, common_val_print): Update declarations.
3130 * stack.c (print_frame_args): Update call to common_val_print
3131 using the appropriate language.
3132 * mi/mi-cmd-stack.c (list_args_or_locals): Likewise.
3133 * c-valprint, f-valprint.c, m2-valprint.c, mt-tdep.c, infcmd.c,
3134 mi/mi-main.c, jv-valprint.c, ada-valprint.c, varobj.c, p-valprint.c,
3135 scm-valprint.c, cp-valprint.c, sh64-tdep.c, printcmd.c:
3136 #include "language.h" if necessary.
3137 Update calls to val_print and common_val_print.
3138 * Makefile.in (mt-tdep.o, sh64-tdep.o, mi-cmds.o, mi-main.o):
3139 Update dependencies.
3140
b1e6fd19
JB
31412008-05-06 Joel Brobecker <brobecker@adacore.com>
3142
3143 * ia64-tdep.c (ia64_convert_from_func_ptr_addr): Treat addresses
3144 pointing inside a non-executable section as function descriptors.
3145
02b19d84
PA
31462008-05-06 Pedro Alves <pedro@codesourcery.com>
3147
3148 * inf-loop.c (inferior_event_handler): Run all continuations and
3149 print any language change before running the breakpoint commands.
3150
15c1e57f
JB
31512008-05-06 Joel Brobecker <brobecker@adacore.com>
3152
3153 * frame-unwind.c (frame_unwind_got_bytes): New function.
3154 * frame-unwind.h (frame_unwind_got_bytes): Add declaration.
3155 * libunwind-frame.h, libunwind-frame.c, ia64-tdep.c: Update
3156 for unwinder changes.
3157
d14508fe
DE
31582008-05-05 Doug Evans <dje@google.com>
3159
3160 * NEWS: Mention new /m modifier for disassemble command.
3161 * cli/cli-cmds.c (print_disassembly): New function.
3162 (disassemble_current_function): New function
3163 (disassemble_command): Recognize /m modifier, print mixed
3164 source+assembly.
3165 (init_cli_cmds): Update disassemble help text.
3166
5142f611
MG
31672008-05-05 Maxim Grigoriev <maxim2405@gmail.com>
3168
3169 * xtensa-tdep.c: Update for unwinder changes.
3170
f36bf22c
AS
31712008-05-05 Andreas Schwab <schwab@suse.de>
3172
3173 Update m68k port for unwinder changes.
3174 * m68k-tdep.c (m68k_frame_cache): Expect this_frame.
3175 (m68k_frame_this_id, m68k_frame_prev_register): Update signature.
3176 (m68k_frame_unwind): Use default_frame_sniffer.
3177 (m68k_frame_sniffer): Remove.
3178 (m68k_frame_base_address): Expect this_frame.
3179 (m68k_dummy_id): Renamed from m68k_unwind_dummy_id. Expect
3180 this_frame.
3181 (m68k_gdbarch_init): Use set_gdbarch_dummy_id,
3182 dwarf2_append_unwinders, and frame_unwind_append_unwinder.
3183 * m68klinux-tdep.c (m68k_linux_pc_in_sigtramp): Expect frame_info
3184 parameter instead of pc value.
3185 (m68k_linux_get_sigtramp_info, m68k_linux_sigtramp_frame_cache):
3186 Expect this_frame.
3187 (m68k_linux_sigtramp_frame_this_id)
3188 (m68k_linux_sigtramp_frame_prev_register)
3189 (m68k_linux_sigtramp_frame_sniffer): Update signature.
3190 (m68k_linux_sigtramp_frame_unwind): Use
3191 m68k_linux_sigtramp_frame_sniffer.
3192 (m68k_linux_init_abi): Use frame_unwind_append_unwinder.
3193
3194 * m68klinux-nat.c (store_register): Fix typo.
3195
b3dc826b
PA
31962008-05-05 Pedro Alves <pedro@codesourcery.com>
3197
3198 * infcmd.c (step_1): Put thread id on the stack to avoid possible
3199 NULL dereferencing.
3200
6528a9ea
LM
32012008-05-05 Luis Machado <luisgpm@br.ibm.com>
3202
3203 * symfile.c (reread_symbols): Update objfile's entry point.
3204
5eeb2539
AR
32052008-05-05 Aleksandar Ristovski <aristovski@qnx.com>
3206 Joel Brobecker <brobecker@adacore.com>
1f906a60 3207
5eeb2539
AR
3208 * ada-lang.c: Update throughout to use symbol_matches_domain
3209 instead of matching the symbol domain explictly.
3210 * dwarf2read.c (add_partial_symbol): Do not add new psym for
f36bf22c 3211 STRUCT_DOMAIN. Make sure you recognize c++ struct and java and ada
5eeb2539 3212 class as typedefs. See lookup_partial_symbol function.
f36bf22c 3213 (new_symbol): Similar to add_partial_symbol, do not create
5eeb2539
AR
3214 symbol for the typedef. See lookup_block_symbol.
3215 * symtab.c (symbol_matches_domain): New function, takes care
3216 of dual meaning of STRUCT_DOMAIN symbol for c++, ada and java.
3217 (lookup_partial_symbol): Use symbol_matches_domain to see if the
3218 found psym domain matches the given domain.
3219 (lookup_block_symbol): Likewise.
3220
e2b7ddea
VP
32212008-05-05 Vladimir Prus <vladimir@codesourcery.com>
3222
680b56ce
AS
3223 * top.c (command_line_handler_continuation): Remove.
3224 (execute_command): Do not install the above.
e2b7ddea 3225
fcfb8b02
VP
32262008-05-05 Vladimir Prus <vladimir@codesourcery.com>
3227
3228 * inf-loop.c (inferior_event_handler): Call bpstat_do_action,
3229 and catch all exceptions from it.
3230 * top.c (command_line_handler_continuation): Don't
3231 call bpstat_do_action here.
3232
f792889a
DJ
32332008-05-04 Daniel Jacobowitz <dan@codesourcery.com>
3234
3235 * dwarf2read.c (struct dwarf2_cu): Add type_hash.
3236 (struct die_info): Remove type.
3237 (read_type_die, read_typedef, read_base_type, read_subrange_type)
3238 (read_structure_type, read_enumeration_type, read_array_type)
3239 (read_tag_pointer_type, read_tag_ptr_to_member_type)
3240 (read_tag_reference_type, read_tag_const_type, read_tag_volatile_type)
3241 (read_tag_string_type, read_subroutine_type, read_set_type)
3242 (read_unspecified_type): Delete prototypes. Remove check for
3243 already-loaded type. Return the new type.
3244 (set_die_type): Return the new type.
3245 (reset_die_and_siblings_types): Delete.
3246 (load_comp_unit, load_full_comp_unit): Set type_hash.
3247 (process_queue): Remove call to reset_die_and_siblings_types.
3248 (process_die): Do not read most types here. Use read_type_die
3249 for others.
3250 (read_func_scope, dwarf2_add_member_fn): Use read_type_die.
3251 (quirk_gcc_member_function_pointer): Return the new type.
3252 (process_structure_scope, process_enumeration_scope): Use
3253 get_die_type and read the DIE's type.
3254 (read_full_die): Do not initialize die->type.
3255 (tag_type_to_type): Use read_type_die.
3256 (read_type_die): Check for already defined types. Return the
3257 type.
3258 (determine_prefix): Use get_die_type.
3259 (set_die_type): Return the type.
3260 (get_die_type): Take a CU argument. Check for no type_hash.
3261
e7030f15
DJ
32622008-05-04 Daniel Jacobowitz <dan@codesourcery.com>
3263
3264 * dwarf2read.c (dwarf2_ranges_read, read_partial_die): Initialize
3265 locals.
3266
611c83ae
PA
32672008-05-04 Pedro Alves <pedro@codesourcery.com>
3268
3269 * breakpoint.c (update_breakpoints_after_exec): Delete bp_longjmp
3270 and bp_longjmp_resume breakpoints.
3271 (breakpoint_address_is_meaningful): Claim bp_longjmp_resume as
3272 meaningful.
3273 (create_longjmp_breakpoint): Don't create bp_longjmp_resume
3274 breakpoints. Create bp_longjmp breakpoints as momentary
3275 breakpoints.
3276 (enable_longjmp_breakpoint): Delete.
3277 (set_longjmp_breakpoint): New.
3278 (disable_longjmp_breakpoint): Delete.
3279 (delete_longjmp_breakpoint): New.
3280 (set_longjmp_resume_breakpoint): Delete.
3281 (set_momentary_breakpoint_at_pc): New.
3282 (breakpoint_re_set_one): Don't delete bp_longjmp and
3283 bp_longjmp_resume breakpoints.
3284 (breakpoint_re_set): Don't create longjmp and longjmp-resume
3285 breakpoints.
3286
3287 * infrun.c (step_resume_breakpoint): Add comment.
3288 (struct execution_control_state): Delete handling_longjmp member.
3289 (init_execution_control_state). Don't clear handling_longjmp.
3290 (context_switch): Don't context switch handling_longjmp.
3291 (handle_inferior_event): If handling a bp_longjmp breakpoint,
3292 create a bp_longjmp_resume breakpoint, and set it as current
3293 step_resume_breakpoint, then step over the longjmp breakpoint. If
3294 handling a bp_longjmp_resume breakpoint, don't delete the longjmp
3295 breakpoint, delete the longjmp-resume breakpoint, and stop
3296 stepping.
3297 (currently_stepping): Remove handling_longjmp from expression.
3298 (insert_step_resume_breakpoint_at_sal): Update comment.
3299 (insert_longjmp_resume_breakpoint): New.
3300
3301 * breakpoint.h (set_momentary_breakpoint_at_pc): Declare.
3302 (enable_longjmp_breakpoint, disable_longjmp_breakpoint): Delete
3303 declarations.
3304 (set_longjmp_breakpoint, delete_longjmp_breakpoint): Declare.
3305 (set_longjmp_resume_breakpoint): Delete declaration.
3306
3307 * gdbthread.h (save_infrun_state): Remove handling_longjmp
3308 parameter.
3309 (load_infrun_state): Delete *handling_longjmp parameter.
3310 * thread.c (save_infrun_state): Remove handling_longjmp parameter.
3311 Update body.
3312 (load_infrun_state): Delete *handling_longjmp parameter. Update
3313 body.
3314
3315 * infcmd.c (disable_longjmp_breakpoint_cleanup): Delete.
3316 (delete_longjmp_breakpoint_cleanup): New.
3317 (step_1): Call set_longjmp_breakpoint instead of
3318 enable_longjmp_breakpoint. Use delete_longjmp_breakpoint_cleanup
3319 instead of disable_longjmp_breakpoint_cleanup when making cleanup.
3320 (step_1_continuation): Pass thread id in the continuation args to
3321 step_once.
3322 (step_once): Add thread parameter. Pass thread id the the
3323 continuation.
3324
85cbf3d3
JK
33252008-05-04 Jan Kratochvil <jan.kratochvil@redhat.com>
3326
3327 Set CU BASE_ADDRESS already from partial DIEs.
3328 * dwarf2read.c (read_partial_die): New variables BASE_ADDRESS and
3329 BASE_ADDRESS_TYPE. Set these variables from DW_AT_LOW_PC and
3330 DW_AT_ENTRY_PC. Set CU->HEADER.BASE_KNOWN and CU->HEADER.BASE_ADDRESS
3331 from these variables if it was still unset.
3332
ff013f42
JK
3333 * Makefile.in: Update dependencies.
3334 * dwarf2read.c: Include "addrmap.h"
3335 (struct dwarf2_cu): New fields RANGES_OFFSET and HAS_RANGES_OFFSET.
3336 (dwarf2_ranges_read): New prototype.
3337 (dwarf2_build_psymtabs_hard): Initialize and prepare PSYMTABS_ADDRMAP.
3338 Add discontiguous range to PSYMTABS_ADDRMAP by DWARF2_RANGES_READ on
3339 HAS_RANGES_OFFSET, otherwise add there the contiguous range.
3340 (dwarf2_ranges_read): New parameter RANGES_PST, update the function
3341 comment for it. Add the found ranges to RANGES_PST. New variable
3342 BASEADDR, initialize it the common way.
3343 (dwarf2_get_pc_bounds): Update the caller for the new parameter.
3344 (read_partial_die): `DW_AT_ranges' now only sets RANGES_OFFSET and
3345 HAS_RANGES_OFFSET for the later processing.
3346 * objfiles.h (struct objfile): New field PSYMTABS_ADDRMAP.
3347 * symtab.c: Include "addrmap.h"
3348 (find_pc_sect_psymtab): Support reading the field PSYMTABS_ADDRMAP.
3349 Move the psymtab locator into ...
3350 (find_pc_sect_psymtab_closer): ... a new function.
3351
a7f1256d
UW
33522008-05-04 Ulrich Weigand <uweigand@de.ibm.com>
3353
3354 * arch-utils.c (gdbarch_update_p): Use default values for
3355 info.abfd and info.target_desc if they are NULL.
3356 (gdbarch_from_bfd): Remove assertion.
3357 (set_gdbarch_from_file): Call gdbarch_find_by_info directly,
3358 using the current target description.
3359 (gdbarch_info_fill): Do not use default values for info->abfd
3360 and info->target_desc.
3361
b2de52bb
JK
33622008-05-04 Jan Kratochvil <jan.kratochvil@redhat.com>
3363
3364 * symfile.c (reread_symbols): Reload EXEC_BFD on its change.
3365
515630c5
UW
33662008-05-04 Ulrich Weigand <uweigand@de.ibm.com>
3367
3368 * inferior.h (read_pc_pid, write_pc_pid): Remove.
3369 * regcache.h (regcache_read_pc, regcache_write_pc): Add prototypes.
3370
3371 * regcache.c (read_pc_pid): Remove, replace by ...
3372 (regcache_read_pc): ... this function.
3373 (write_pc_pid): Remove, replace by ...
3374 (regcache_write_pc): ... this function.
3375 (read_pc, write_pc): Update.
3376
3377 * infrun.c (displaced_step_prepare): Replace read_pc_pid and
3378 write_pc_pid by regcache_read_pc and regcache_write_pc.
3379 (displaced_step_fixup): Likewise.
3380 (resume): Likewise. Use regcache arch instead of current_gdbarch.
3381 (prepare_to_proceed): Likewise.
3382 (proceed): Likewise.
3383 (adjust_pc_after_break): Likewise.
3384 (handle_inferior_event): Likewise.
3385
3386 * linux-nat.c (cancel_breakpoint): Likewise.
3387 * linux-thread-db.c (check_event): Likewise.
3388 * aix-thread.c (aix_thread_wait): Likewise.
3389 * tracepoint.c (trace_dump_command): Likewise.
3390
ebd3bcc1
JK
33912008-05-04 Jan Kratochvil <jan.kratochvil@redhat.com>
3392
3393 * dwarf2loc.c (dwarf_expr_frame_base): Error out on missing
3394 SYMBOL_LOCATION_BATON.
3395
c47ffbe3
VP
33962008-05-04 Vladimir Prus <vladimir@codesourcery.com>
3397
f78bff48
VP
3398 * target.h (struct target_ops): New field to_auxv_parse.
3399 * auxv.c (default_auxv_parse): New, renamed from previous
3400 target_auxv_parse.
3401 (target_auxv_parse): Try to call target method. Fallback to
3402 default_auxv_parse if not found.
3403 * procfs.c (procfs_auxv_parse): New.
3404 (init_procfs_ops): On Solaris, in 64-bit mode, install
3405 procfs_auxv_parse.
c47ffbe3 3406
35076fa0
AN
34072008-05-03 Adam Nemet <anemet@caviumnetworks.com>
3408
3409 * symfile.c (add_symbol_file_command): Use paddress rather than
3410 hex_string to print the address.
3411
5b197912
UW
34122008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
3413
3414 * rs6000-tdep.c (rs6000_frame_this_id): If info->base is 0,
3415 return the null frame ID to terminate the backtrace.
3416
4a7622d1
UW
34172008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
3418
3419 * rs6000-tdep.c: Do not include "rs6000-tdep.h".
3420 (rs6000_find_toc_address_hook): Move to rs6000-aix-tdep.c.
3421 (SIG_FRAME_PC_OFFSET): Likewise.
3422 (SIG_FRAME_LR_OFFSET): Likewise.
3423 (SIG_FRAME_FP_OFFSET): Likewise.
3424 (rs6000_push_dummy_call): Likewise.
3425 (rs6000_return_value): Likewise.
3426 (rs6000_convert_from_func_ptr_addr): Likewise.
3427 (branch_dest, rs6000_software_single_step): Likewise.
3428 (deal_with_atomic_sequence): Rename to ...
3429 (ppc_deal_with_atomic_sequence): ... this. Adapt all callers.
3430 Do not call branch_dest; inline required parts of that function.
3431 (rs6000_skip_trampoline_code): Replace DEPRECATED_SYMBOL_NAME
3432 with SYMBOL_LINKAGE_NAME.
3433 (struct reg, regsize): Delete.
3434 (read_memory_addr): Delete; inline into callers.
3435 (rs6000_skip_prologue): Move after skip_prologue.
3436 (skip_prologue): Remove prototype.
3437 (rs6000_gdbarch_init): Remove sysv_abi variable; perform all
3438 initialization as if this variable were true. Do not install
3439 ppc64_sysv_abi_adjust_breakpoint_address.
3440
3441 * rs6000-aix-tdep.c: Include "gdb_assert.h", "gdbtypes.h",
3442 "gdbcore.h", "target.h", "value.h", "infcall.h", "objfiles.h",
3443 and "breakpoint.h".
3444 (rs6000_find_toc_address_hook): Move here from rs6000-tdep.c.
3445 (SIG_FRAME_PC_OFFSET): Likewise.
3446 (SIG_FRAME_LR_OFFSET): Likewise.
3447 (SIG_FRAME_FP_OFFSET): Likewise.
3448 (rs6000_push_dummy_call): Likewise.
3449 (rs6000_return_value): Likewise.
3450 (rs6000_convert_from_func_ptr_addr): Likewise.
3451 (branch_dest, rs6000_software_single_step): Likewise. Replace
3452 tdep->text_segment_base by AIX_TEXT_SEGMENT_BASE.
3453 (rs6000_aix_init_osabi): Install rs6000_push_dummy_call,
3454 rs6000_return_value, and rs6000_convert_from_func_ptr_addr.
3455 Call set_gdbarch_long_double_bit and set_gdbarch_frame_red_zone_size.
3456 Set tdep->lr_frame_offset. Do not set tdep->text_segment_base.
3457
3458 * rs6000-tdep.h (rs6000_software_single_step): Remove prototype.
3459 (AIX_TEXT_SEGMENT_BASE): New macro.
3460 * rs6000-nat.c (exec_one_dummy_insn): Replace tdep->text_segment_base
3461 by AIX_TEXT_SEGMENT_BASE.
3462
3463 * ppc-tdep.h (ppc_deal_with_atomic_sequence): Add prototype.
3464 (struct gdbarch_tdep): Remove text_segment_base member.
3465 * ppc-linux-tdep.c (ppc_linux_init_abi): On 64-bit, install
3466 ppc64_sysv_abi_adjust_breakpoint_address.
3467
3468 * Makefile.in (rs6000-tdep.o): Update dependencies.
3469 (rs6000-aix-tdep.o): Likewise.
3470
938f5214
TJB
34712008-05-03 Luis Machado <luisgpm@br.ibm.com>
3472 Thiago Jung Bauermann <bauerman@br.ibm.com>
3473
3474 * cli/cli-decode.c (lookup_cmd_1): Fix indentation.
3475 * doublest.c (convert_typed_floating): Fix typo in comment.
3476 * dwarf2-frame.c (dwarf2_frame_cache): Likewise.
3477 * frame-unwind.h (frame_sniffer_ftype): Likewise.
3478 * frame.c (frame_unwind_address_in_block): Likewise.
3479 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Likewise.
3480 * symtab.h (struct symbol): Likewise.
3481 * tramp-frame.h (struct trad_frame_cache): Likewise.
3482 * value.c (allocate_repeat_value): Likewise.
3483
0b02b92d
UW
34842008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
3485
3486 * infrun.c (handle_inferior_event): Do not insert breakpoints at
3487 TARGET_WAITKIND_LOADED events during startup (i.e. in the shell).
3488
d705c43c
PA
34892008-05-03 Pedro Alves <pedro@codesourcery.com>
3490
3491 * parse.c (parse_exp_in_context): Don't override
3492 expression_context_pc if get_selected_block returned a valid
3493 block.
3494
d6350901
DJ
34952008-05-03 Daniel Jacobowitz <dan@codesourcery.com>
3496
3497 * alpha-tdep.h (ALPHA_REGISTER_BYTES): Delete.
3498 * arm-tdep.h (STATUS_REGISTER_SIZE): Delete.
3499 * breakpoint.c (args_for_catchpoint_enable, current_exception_event):
3500 Delete.
3501 * c-typeprint.c (c_type_print_base): Delete handling of template
3502 instantiations.
3503 * cp-support.h (METHOD_PTR_IS_VIRTUAL, METHOD_PTR_FROM_VOFFSET)
3504 (METHOD_PTR_TO_VOFFSET): Delete.
3505 * defs.h (QUIT_FIXME): Delete.
3506 * f-lang.h (DEFAULT_DOTMAIN_NAME_IN_MF77, DEFAULT_MAIN_NAME_IN_MF77)
3507 (DEFAULT_DOTMAIN_NAME_IN_XLF_BUGGY, DEFAULT_DOTMAIN_NAME_IN_XLF): Delete.
3508 * gdbtypes.h (struct cplus_struct_type): Delete is_inlined,
3509 ninstantiations, and instantiations.
3510 (TYPE_INSTANTIATIONS, TYPE_NINSTANTIATIONS, TYPE_INSTANTIATION)
3511 (TYPE_FN_FIELD_INLINED): Delete.
3512 * srec.h (SREC_BINARY): Delete.
3513 * symtab.c (symbol_init_demangled_name): Delete.
3514 * symtab.h (SYMBOL_INIT_DEMANGLED_NAME, symbol_init_demangled_name)
3515 (SYMBOL_OBJFILE, struct exception_event_record, CURRENT_EXCEPTION_KIND)
3516 (CURRENT_EXCEPTION_CATCH_SAL, CURRENT_EXCEPTION_CATCH_LINE)
3517 (CURRENT_EXCEPTION_CATCH_FILE, CURRENT_EXCEPTION_CATCH_PC)
3518 (CURRENT_EXCEPTION_THROW_SAL, CURRENT_EXCEPTION_THROW_LINE)
3519 (CURRENT_EXCEPTION_THROW_FILE, CURRENT_EXCEPTION_THROW_PC): Delete.
3520 * target.h (enum thread_control_capabilities): Delete tc_switch.
3521 (target_can_switch_threads): Delete.
3522
30510692
DJ
35232008-05-03 Daniel Jacobowitz <dan@codesourcery.com>
3524
3525 * Makefile.in (objfiles.o): Update.
3526 * exec.c (exec_set_section_address): Support p->addr != 0.
3527 * objfiles.c (objfile_relocate): Update exec_ops section
3528 addresses.
3529 * symfile.c (place_section): Move exec_set_section_address call...
3530 (default_symfile_offsets): ...to here.
3531
7284e1be
UW
35322008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
3533
3534 * Makefile.in (ppc_linux_tdep_h): New macro.
3535 (powerpc_32l_c, powerpc_altivec32_c, powerpc_altivec32l_c): Likewise.
3536 (powerpc_64l_c, powerpc_altivec64_c, powerpc_altivec64l_c): Likewise.
3537 (powerpc_e500l_c): Likewise.
3538 (ppc-linux-nat.o): Update dependencies.
3539 (ppc-linux-tdep.o): Update dependencies.
3540 (rs6000-tdep.o): Update dependencies.
3541
3542 * ppc-tdep.h (ppc_linux_memory_remove_breakpoint): Remove.
3543 (ppc_linux_svr4_fetch_link_map_offsets): Remove.
3544 (ppc_linux_gregset, ppc_linux_fpregset): Move to ppc-linux-tdep.h
3545 (ppc_supply_reg, ppc_collect_reg): Add prototypes.
3546 (tdesc_powerpc_e500): Remove.
3547
3548 * rs6000.c: Include "features/rs6000/powerpc-altivec32.c"
3549 and "features/rs6000/powerpc-altivec64.c".
3550 (ppc_supply_reg, ppc_collect_reg): Make global.
3551 (variants): Use tdesc_powerpc_32 for "powerpc" and
3552 tdesc_powerpc_altivec64 for "powerpc64".
3553 (_initialize_rs6000_tdep): Initialize AltiVec descriptions.
3554
3555 * ppc-linux-tdep.h: New file.
3556
3557 * ppc-linux-tdep.c: Include "ppc-linux-tdep.c".
3558 Include "features/rs6000/powerpc-32l.c".
3559 Include "features/rs6000/powerpc-altivec32l.c".
3560 Include "features/rs6000/powerpc-64l.c".
3561 Include "features/rs6000/powerpc-altivec64l.c".
3562 Include "features/rs6000/powerpc-e500l.c".
3563 (ppc_linux_supply_gregset): New function.
3564 (ppc_linux_collect_gregset): Handle orig_r3 and trap registers.
3565 (ppc32_linux_gregset): Use ppc_linux_supply_gregset.
3566 (ppc64_linux_gregset): Likewise.
3567 (ppc_linux_sigtramp_cache): Handle orig_r3 and trap registers.
3568 (ppc_linux_trap_reg_p): New function.
3569 (ppc_linux_write_pc): New function.
3570 (ppc_linux_core_read_description): New function.
3571 (ppc_linux_init_abi): Install ppc_linux_write_pc and
3572 ppc_linux_core_read_description. Install orig_r3 and trap
3573 registers if present in the target description.
3574 (_initialize_ppc_linux_tdep): Initialize Linux target descriptions.
3575
3576 * ppc-linux-nat.c: Include "ppc-linux-tdep.h".
3577 (PT_ORIG_R3, PT_TRAP): Define if necessary.
3578 (ppc_register_u_addr): Handle orig_r3 and trap registers.
3579 (fetch_ppc_registers): Likewise.
3580 (store_ppc_registers): Likewise.
3581 (store_register): Likewise.
3582 (ppc_linux_read_description): Check whether AltiVec is supported.
3583 Check whether inferior is 32-bit or 64-bit. Return the appropriate
3584 Linux target description.
3585
3586 * features/Makefile (WHICH): Use rs6000/powerpc-32l and
3587 rs6000/powerpc-altivec32l instead of rs6000/powerpc-32.
3588 Use rs6000/powerpc-64l and rs6000/powerpc-altivec64l instead
3589 of rs6000/powerpc-64. Use rs6000/powerpc-e500l instead of
3590 rs6000/powerpc-e500. Update -expedite variables accordingly.
3591
3592 * features/rs6000/power-spe.xml: Use regnum 73 for "acc".
3593 * features/rs6000/powerpc-32.xml: Do not include power-altivec.xml.
3594 * features/rs6000/powerpc-64.xml: Do not include power-altivec.xml.
3595 * features/rs6000/powerpc-e500.c: Regenerate.
3596 * features/rs6000/powerpc-32.c: Regenerate.
3597 * features/rs6000/powerpc-64.c: Regenerate.
3598
3599 * features/rs6000/power-linux.xml: New file.
3600 * features/rs6000/power64-linux.xml: New file.
3601 * features/rs6000/powerpc-32l.xml: New file.
3602 * features/rs6000/powerpc-altivec32l.xml: New file.
3603 * features/rs6000/powerpc-64l.xml: New file.
3604 * features/rs6000/powerpc-altivec64l.xml: New file.
3605 * features/rs6000/powerpc-e500l.xml: New file.
3606 * features/rs6000/powerpc-32l.c: New (generated) file.
3607 * features/rs6000/powerpc-altivec32l.c: New (generated) file.
3608 * features/rs6000/powerpc-64l.c: New (generated) file.
3609 * features/rs6000/powerpc-altivec64l.c: New (generated) file.
3610 * features/rs6000/powerpc-e500l.xml: New (generated) file.
3611
3612 * regformats/reg-ppc.dat: Remove.
3613 * regformats/reg-ppc64.dat: Remove.
3614 * regformats/rs6000/powerpc-32.dat: Remove.
3615 * regformats/rs6000/powerpc-64.dat: Remove.
3616 * regformats/rs6000/powerpc-e500.dat: Remove.
3617 * regformats/rs6000/powerpc-32l.dat: New (generated) file.
3618 * regformats/rs6000/powerpc-altivec32l.dat: New (generated) file.
3619 * regformats/rs6000/powerpc-64l.dat: New (generated) file.
3620 * regformats/rs6000/powerpc-altivec64l.dat: New (generated) file.
3621 * regformats/rs6000/powerpc-e500l.dat: New (generated) file.
3622
063bfe2e
VP
36232008-05-03 Pedro Alves <pedro@codesourcery.com>
3624
3625 * thread.c (delete_thread): Call observer_notify_thread_exit.
680b56ce
AS
3626 * mi/mi-interp.c (mi_interpreter_init): Register mi_thread_exit as
3627 thread_exit observer.
3628 (mi_thread_exit): New.
063bfe2e 3629
f132ba9d
TJB
36302008-05-03 Thiago Jung Bauermann <bauerman@br.ibm.com>
3631
3632 * breakpoint.c (create_exception_catchpoint): Remove prototype
3633 for already deleted function.
3634 * breakpoint.h (ep_is_exception_catchpoint): Likewise.
3635 * frame.h (show_stack_frame): Remove prototype.
3636 * stack.c (show_stack_frame): Remove empty, unused function.
3637 * source.c (symtab_to_fullname, print_source_lines): Small fix
3638 in comment.
3639 * value.c (show_values): Update comments to mention "show values"
3640 command instead of "info history".
3641
bccdca4a
UW
36422008-05-02 Ulrich Weigand <uweigand@de.ibm.com>
3643
3644 * linespec.c: Include "target.h".
3645 (minsym_found): Handle minimal symbols pointing to function
3646 descriptors. Use find_function_start_pc.
3647 * minsyms.c (msymbol_objfile): New function.
3648 * parse.c (write_exp_msymbol): Handle minimal symbols pointing
3649 to function descriptors.
3650 * symtab.c (fixup_section): Only use minimal symbol at the same
3651 address to determine section of a symbol.
3652 (find_function_start_pc): New function.
3653 (find_function_start_sal): Use it.
3654 * symtab.h (msymbol_objfile): Add prototype.
3655 (find_function_start_pc): Likewise.
3656 * value.c: Include "objfiles.h".
3657 (value_fn_field): Handle minimal symbols pointing to function
680b56ce 3658 descriptors.
bccdca4a
UW
3659 * Makefile.in (linespec.o): Update dependencies.
3660 (value.o): Likewise.
3661
de4d072f
JB
36622008-05-02 Joel Brobecker <brobecker@adacore.com>
3663
3664 * ada-lang.c (unwrap_value): Handle the case where the "F" field
3665 inside a PAD type is a bitfield.
3666
93d4208d
UW
36672008-05-02 Ulrich Weigand <uweigand@de.ibm.com>
3668
3669 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Handle
3670 TYPE_CODE_BOOL and TYPE_CODE_CHAR the same as TYPE_CODE_INT.
3671 Handle TYPE_CODE_REF the same as TYPE_CODE_PTR.
3672 Handle TYPE_CODE_METHOD the same as TYPE_CODE_FUNC.
3673 Allow typedefs when checking for function pointer arguments.
3674 Right-align small structs passed on the stack.
3675 (ppc64_sysv_abi_return_value): Handle TYPE_CODE_BOOL and
3676 TYPE_CODE_CHAR the same as TYPE_CODE_INT.
3677 Handle TYPE_CODE_REF the same as TYPE_CODE_PTR.
3678
60c5725c
DJ
36792008-05-02 Daniel Jacobowitz <dan@codesourcery.com>
3680
3681 * Makefile.in (arm-tdep.o): Update.
3682 * arm-tdep.c (arm_objfile_data_key, struct arm_mapping_symbol)
3683 (struct arm_per_objfile, arm_compare_mapping_symbols): New.
3684 (arm_pc_is_thumb): Use mapping symbols.
3685 (arm_objfile_data_cleanup, arm_record_special_symbol): New.
3686 (arm_gdbarch_init): Call set_gdbarch_record_special_symbol.
3687 (_initialize_arm_tdep): Initialize arm_objfile_data_key.
3688 * elfread.c (elf_symtab_read): Use gdbarch_record_special_symbol.
3689 * gdbarch.sh: Add record_special_symbol.
3690 * gdbarch.c, gdbarch.h: Regenerated.
3691 * objfiles.c (struct objfile_data): Add cleanup member.
3692 (register_objfile_data_with_cleanup): New function, from
3693 register_objfile_data.
3694 (register_objfile_data): Use it.
3695 (objfile_free_data): Call clear_objfile_data.
3696 (clear_objfile_data): Call cleanup functions.
3697 * objfiles.h (register_objfile_data_with_cleanup): Declare.
3698
574dffa2
DJ
36992008-05-02 Daniel Jacobowitz <dan@codesourcery.com>
3700
3701 * objfiles.c (init_entry_point_info): Handle shared libraries.
3702
2c404490
DJ
37032008-05-02 Daniel Jacobowitz <dan@codesourcery.com>
3704
3705 * arm-tdep.c (arm_prologue_this_id): Compare pc, not func, to
3706 lowest_pc.
3707
237fc4c9
PA
37082008-05-02 Jim Blandy <jimb@codesourcery.com>
3709 Pedro Alves <pedro@codesourcery.com>
3710
3711 Implement displaced stepping.
3712
3713 * gdbarch.sh (max_insn_length): New 'variable'.
3714 (displaced_step_copy, displaced_step_fixup)
3715 (displaced_step_free_closure, displaced_step_location): New
3716 functions.
3717 (struct displaced_step_closure): Add forward declaration.
3718 * gdbarch.c, gdbarch.h: Regenerated.
3719
3720 * arch-utils.c: #include "objfiles.h".
3721 (simple_displaced_step_copy_insn)
3722 (simple_displaced_step_free_closure)
3723 (displaced_step_at_entry_point): New functions.
3724 * arch-utils.h (simple_displaced_step_copy_insn)
3725 (simple_displaced_step_free_closure)
3726 (displaced_step_at_entry_point): New prototypes.
3727
3728 * i386-tdep.c (I386_MAX_INSN_LEN): Rename to...
3729 (I386_MAX_MATCHED_INSN_LEN): ... this.
3730 (i386_absolute_jmp_p, i386_absolute_call_p)
3731 (i386_ret_p, i386_call_p, i386_breakpoint_p, i386_syscall_p)
3732 (i386_displaced_step_fixup): New functions.
3733 (struct i386_insn, i386_match_insn): Update.
3734 (i386_gdbarch_init): Set gdbarch_max_insn_length.
3735 * i386-tdep.h (I386_MAX_INSN_LEN): New.
3736 (i386_displaced_step_fixup): New prototype.
3737 * i386-linux-tdep.c (i386_linux_init_abi): Include "arch-utils.h".
3738 Register gdbarch_displaced_step_copy,
3739 gdbarch_displaced_step_fixup, gdbarch_displaced_step_free_closure,
3740 and gdbarch_displaced_step_location functions.
3741
3742 * infrun.c (debug_displaced): New variable.
3743 (show_debug_displaced): New function.
3744 (struct displaced_step_request): New struct.
3745 (displaced_step_request_queue, displaced_step_ptid)
3746 (displaced_step_gdbarch, displaced_step_closure)
3747 (displaced_step_original, displaced_step_copy)
3748 (displaced_step_saved_copy, can_use_displaced_stepping): New
3749 variables.
3750 (show_can_use_displaced_stepping, use_displaced_stepping)
3751 (displaced_step_clear, cleanup_displaced_step_closure)
3752 (displaced_step_dump_bytes, displaced_step_prepare)
3753 (displaced_step_clear_cleanup, write_memory_ptid)
3754 (displaced_step_fixup): New functions.
3755 (resume): Call displaced_step_prepare.
3756 (proceed): Call read_pc once, and remember the value. If using
3757 displaced stepping, don't remove breakpoints.
3758 (handle_inferior_event): Call displaced_step_fixup. Add some
3759 debugging output. When we try to step over a breakpoint, but get
3760 a signal to deliver to the thread instead, ensure the step-resume
3761 breakpoint is actually inserted. If a thread hop is needed, and
3762 displaced stepping is enabled, don't remove breakpoints.
3763 (init_wait_for_inferior): Call displaced_step_clear.
3764 (_initialize_infrun): Add "set debug displaced" command. Add
3765 "maint set can-use-displaced-stepping" command. Clear
3766 displaced_step_ptid.
3767 * inferior.h (debug_displaced): Declare variable.
3768 (displaced_step_dump_bytes): Declare function.
3769
3770 * Makefile.in (arch-utils.o, i386-linux-tdep.o): Update
3771 dependencies.
3772
0428b8f5
DJ
37732008-05-02 Daniel Jacobowitz <dan@codesourcery.com>
3774
3775 * arm-tdep.c (arm_mode_strings, arm_fallback_mode_string)
3776 (arm_force_mode_string, arm_show_fallback_mode)
3777 (arm_show_force_mode): New.
3778 (arm_pc_is_thumb): Honor fallback-mode and force-mode. Use
3779 arm_frame_is_thumb.
3780 (_initialize_arm_tdep): Add "set arm fallback-mode"
3781 and "set arm force-mode".
3782 * NEWS: Document new commands.
3783
d01a8610
AS
37842008-05-02 Andrew Stubbs <andrew.stubbs@st.com>
3785
3786 * main.h (batch_silent): Declare.
3787 * event-top.c: Include main.h.
3788 (gdb_setup_readline): Remove extern batch_silent declaration.
3789 * infrun.c (normal_stop): Don't print source location when running in
3790 --batch-silent mode.
3791 * Makefile.in (event-top.o): Add main.h dependency.
3792
5009afc5
AS
37932008-05-02 Andreas Schwab <schwab@suse.de>
3794
3795 * target.h (struct target_ops): Add
3796 to_watchpoint_addr_within_range.
3797 (target_watchpoint_addr_within_range): New function.
3798 * target.c (update_current_target): Inherit
3799 to_watchpoint_addr_within_range, defaulting to
3800 default_watchpoint_addr_within_range.
3801 (default_watchpoint_addr_within_range): New function.
3802 (debug_to_watchpoint_addr_within_range): New function.
3803 (setup_target_debug): Set to_watchpoint_addr_within_range.
3804 * ppc-linux-nat.c (ppc_linux_watchpoint_addr_within_range):
3805 New function.
3806 (_initialize_ppc_linux_nat): Set to_watchpoint_addr_within_range.
3807 * breakpoint.c (watchpoints_triggered): Use
3808 target_watchpoint_addr_within_range.
3809
a15c5c83
PA
38102008-05-01 Pedro Alves <pedro@codesourcery.com>
3811
3812 * configure.tgt: Add i[34567]86-*-dicos* and x86_64-*-dicos*.
3813 (i[34567]86-*-dicos*, x86_64-*-dicos*):
3814 Set gdb_osabi to GDB_OSABI_DICOS.
3815
3816 * defs.h (enum gdb_osabi): Add GDB_OSABI_DICOS.
3817 * osabi.c (gdb_osabi_name): Add "DICOS".
3818
3819 * i386-dicos-tdep.c: New file.
3820
3821 * Makefile.in (ALL_TARGET_OBS): Add i386-dicos-tdep.o.
3822 (ALLDEPFILES): Add i386-dicos-tdep.c.
3823 (i386-dicos-tdep.o): New rule.
3824
728c8f58
PA
38252008-05-01 Pedro Alves <pedro@codesourcery.com>
3826
3827 * linux-nat.c (linux_nat_switch_fork): Reinit GDB's thread list
3828 and register the fork's PTID as a thread.
3829
604133b5
AR
38302008-05-01 Aleksandar Ristovski <aristovski@qnx.com>
3831
3832 PR gdb/1665
3833 * breakpoint.c (create_breakpoint): Add breakpoint_ops argument and
3834 assign its value to the breakpoint created.
3835 (create_breakpoints): Add breakpoint_ops argument and pass it
3836 to create_breakpoint call.
3837 (break_command_really): Add breakpoint_ops argument and pass/assign
3838 appropriately.
3839 (break_command_1): Pass NULL as ops argument.
3840 (set_breakpoint): Pass NULL as ops argument.
3841 (print_one_exception_catchpoint): Print <PENDING> if no loc available.
3842 (handle_gnu_v3_exceptions): Call generic breakpoint code to insert
3843 catch and throw catchpoints.
5009afc5 3844
1f906a60 38452008-05-01 Aleksandar Ristovski <aristovski@qnx.com>
1cded358
AR
3846
3847 PR gdb/2343
3848 * corelow.c (core_open): Use gdbarch_target_signal_from_host to
3849 translate signal numeric value from the target to GDB's enum
3850 target_signal.
3851 * gdbarch.c, gdbarch.h: Regenerated.
3852 * gdbarch.sh: Added two new functions target_signal_from_host and
3853 target_signal_to_host.
680b56ce 3854 * target.h (default_target_signal_from_host,
1cded358
AR
3855 default_target_signal_to_host): New functions - declarations.
3856 * signals/signals.c (struct gdbarch): New declaration.
3857 (default_target_signal_to_host, default_target_signal_from_host): New
3858 functions.
3859
ed5e9466
DJ
38602008-05-01 Daniel Jacobowitz <dan@codesourcery.com>
3861 Pedro Alves <pedro@codesourcery.com>
3862
3863 Based on work by Jan Kratochvil <jan.kratochvil@redhat.com> and Jeff
3864 Johnston <jjohnstn@redhat.com>.
3865
3866 * NEWS: Mention attach to stopped process fix.
3867 * infcmd.c (detach_command, disconnect_command): Discard the thread
3868 list.
3869 * infrun.c (handle_inferior_event): Do not ignore non-SIGSTOP while
3870 attaching. Use signal_stop_state.
3871 (signal_stop_state): Check stop_soon.
3872 * linux-nat.c (kill_lwp): Declare earlier.
3873 (pid_is_stopped, linux_nat_post_attach_wait): New.
3874 (lin_lwp_attach_lwp): Use linux_nat_post_attach_wait. Update
3875 comments.
3876 (linux_nat_attach): Use linux_nat_post_attach_wait.
3877 (detach_callback, linux_nat_detach): Improve handling for signalled
3878 processes.
3879 (linux_nat_pid_to_str): Always print out the LWP ID if it differs
3880 from the process ID.
3881 * Makefile.in (infcmd.o): Update.
3882
b39cc962
DJ
38832008-05-01 Daniel Jacobowitz <dan@codesourcery.com>
3884
3885 * arm-linux-tdep.h (ARM_CPSR_REGNUM): Delete definition.
3886 * arm-tdep.c (arm_frame_is_thumb): New.
3887 (arm_pc_is_thumb): Clarify comment.
3888 (thumb_analyze_prologue): Remove PC special case.
3889 (thumb_scan_prologue): Take a block_addr argument. Use it for
3890 find_pc_partial_function. Remove unused variables.
3891 (arm_scan_prologue): Use arm_frame_is_thumb. Use the block address
3892 for find_pc_partial_function. Remove PC special case.
3893 (arm_prologue_prev_register): Add special handling for PC and CPSR.
3894 (arm_dwarf2_prev_register, arm_dwarf2_frame_init_reg): New.
3895 (arm_get_next_pc): Use arm_frame_is_thumb.
3896 (arm_write_pc): Use CPSR_T instead of 0x20.
3897 (arm_gdbarch_init): Call dwarf2_frame_set_init_reg.
3898 * arm-tdep.h (enum gdb_regnum): Add ARM_CPSR_REGNUM.
3899 (CPSR_T): Define.
3900 * dwarf2-frame.c (dwarf2_frame_prev_register): Handle
3901 DWARF2_FRAME_REG_FN.
3902 * dwarf2-frame.h (enum dwarf2_frame_reg_rule): Add
3903 DWARF2_FRAME_REG_FN.
3904 (struct dwarf2_frame_state_reg): Add FN to loc union.
3905
944f08ab
JB
39062008-05-01 Nick Roberts <nickrob@snap.net.nz>
3907
3908 * exec.c (print_section_info): Add missing '\n'.
3909
cfc01461
VP
39102008-05-01 Vladimir Prus <vladimir@codesourcery.com>
3911
3912 * thread.c (add_thread): Move observer call to ...
680b56ce 3913 (add_thread_silent): ... here.
cfc01461 3914
1af5d7ce
UW
39152008-04-30 Ulrich Weigand <uweigand@de.ibm.com>
3916
3917 * rs6000-tdep.c: Update for unwinder changes.
3918 * ppcobsd-tdep.c: Likewise.
3919
f089c433
UW
39202008-04-30 Ulrich Weigand <uweigand@de.ibm.com>
3921
3922 * s390-tdep.c: Update for unwinder changes.
3923
8d998b8f
UW
39242008-04-30 Ulrich Weigand <uweigand@de.ibm.com>
3925
3926 * spu-tdep.c: Update for unwinder changes.
3927
5366653e
DJ
39282008-04-30 Daniel Jacobowitz <dan@codesourcery.com>
3929
3930 * hppanbsd-tdep.c, m68kbsd-tdep.c, mn10300-linux-tdep.c,
3931 ppc-linux-tdep.c, ppcnbsd-tdep.c, sparc-linux-tdep.c,
3932 sparc64-linux-tdep.c: Update for unwinder changes.
3933
b8a22b94
DJ
39342008-04-30 Daniel Jacobowitz <dan@codesourcery.com>
3935
3936 * mipsnbsd-tdep.c, mips64obsd-tdep.c, mips-linux-tdep.c: Update
3937 for unwinder changes.
3938 * mips-tdep.c: Likewise.
3939 (mips_stub_frame_cache): Unwind the ABI stack pointer, not the
3940 raw one.
3941
a262aec2
DJ
39422008-04-30 Daniel Jacobowitz <dan@codesourcery.com>
3943
3944 * arm-linux-tdep.c, arm-tdep.c, armobsd-tdep.c: Update for
3945 unwinder changes.
3946
10458914
DJ
39472008-04-30 Daniel Jacobowitz <dan@codesourcery.com>
3948
3949 Update i386 and amd64 ports for unwinder changes.
3950
3951 * amd64-tdep.c (amd64_frame_cache): Expect this_frame.
3952 (amd64_frame_this_id, amd64_frame_prev_register): Update signature.
3953 (amd64_frame_unwind): Use default_frame_sniffer.
3954 (amd64_frame_sniffer): Delete.
3955 (amd64_sigtramp_frame_cache): Expect this_frame.
3956 (amd64_sigtramp_frame_this_id, amd64_sigtramp_frame_prev_register)
3957 (amd64_sigtramp_frame_sniffer): Update signature.
3958 (amd64_sigtramp_frame_unwind): Add amd64_sigtramp_frame_sniffer.
3959 (amd64_frame_base_address): Expect this_frame.
3960 (amd64_dummy_id): Renamed from amd64_unwind_dummy_id. Expect
3961 this_frame.
3962 (amd64_init_abi): Use set_gdbarch_dummy_id and
3963 frame_unwind_append_unwinder.
3964 * i386-tdep.c (i386_frame_cache): Expect this_frame.
3965 (i386_frame_this_id, i386_frame_prev_register): Update signature.
3966 (i386_frame_unwind): Use default_frame_sniffer.
3967 (i386_frame_sniffer): Delete.
3968 (i386_sigtramp_frame_cache): Expect this_frame.
3969 (i386_sigtramp_frame_this_id, i386_sigtramp_frame_prev_register)
3970 (i386_sigtramp_frame_sniffer): Update signature.
3971 (i386_sigtramp_frame_unwind): Use i386_sigtramp_frame_sniffer.
3972 (i386_frame_base_address): Update signature.
3973 (i386_dummy_id): Rename from i386_unwind_dummy_id. Expect this_frame.
3974 (i386_push_dummy_call): Update comment.
3975 (i386_sigtramp_p, i386_svr4_sigtramp_p, i386_svr4_sigcontext_addr):
3976 Expect this_frame.
3977 (i386_gdbarch_init): Use set_gdbarch_dummy_id, dwarf2_append_unwinders,
3978 and frame_unwind_append_unwinder.
3979 * amd64-linux-tdep.c, amd64-sol2-tdep.c, amd64fbsd-tdep.c,
3980 amd64nbsd-tdep.c, amd64obsd-tdep.c, i386-linux-tdep.c,
3981 i386-nto-tdep.c, i386bsd-tdep.c, i386-sol2-tdep.c, i386obsd-tdep.c,
3982 i386nbsd-tdep.c: Update for unwinder changes.
3983
25492ce3
DJ
39842008-04-30 Daniel Jacobowitz <dan@codesourcery.com>
3985
3986 * trad-frame.c (struct trad_frame_cache): Rename next_frame to this_frame.
3987 (trad_frame_cache_zalloc, trad_frame_alloc_saved_regs): Expect
3988 this_frame.
3989 (trad_frame_get_prev_register, trad_frame_get_register): Update signature.
3990 * trad-frame.h (trad_frame_cache_zalloc, trad_frame_get_register)
3991 (trad_frame_alloc_saved_regs, trad_frame_get_prev_register): Update
3992 signature.
3993 * tramp-frame.c (tramp_frame_cache, tramp_frame_start): Expect
3994 this_frame.
3995 (tramp_frame_this_id, tramp_frame_prev_register, tramp_frame_sniffer):
3996 Update signature.
3997 * tramp-frame.h (struct tramp_frame): Update signature of init.
3998 * Makefile.in (trad-frame.o): Update.
3999
4a4e5149
DJ
40002008-04-30 Daniel Jacobowitz <dan@codesourcery.com>
4001
4002 * dwarf2-frame.c (read_reg): Expect this_frame in the baton.
4003 (execute_stack_op): Put this_frame in the baton.
4004 (execute_cfa_program): Take this_frame.
4005 (struct dwarf2_frame_ops): Update comment for signal_frame_p.
4006 (dwarf2_frame_default_init_reg, dwarf2_frame_init_reg)
4007 (dwarf2_frame_signal_frame_p, dwarf2_frame_cache)
4008 (dwarf2_frame_this_id): Adjust to work on this_frame.
4009 (dwarf2_signal_frame_this_id): Delete.
4010 (dwarf2_frame_prev_register): Update signature. Use new frame
4011 unwind methods.
4012 (dwarf2_frame_sniffer): Update signature. Expect this_frame.
4013 (dwarf2_frame_unwind, dwarf2_signal_frame_unwind): Add
4014 dwarf2_frame_sniffer.
4015 (dwarf2_append_unwinders): New.
4016 (dwarf2_frame_base_address, dwarf2_frame_base_sniffer): Expect
4017 this_frame.
4018 * sparc-tdep.c (sparc32_dwarf2_struct_return_p)
4019 (sparc32_dwarf2_frame_init_reg): Expect this_frame.
4020 * cris-tdep.c (cris_dwarf2_frame_init_reg): Likewise.
4021 * rs6000-tdep.c (ppc_dwarf2_frame_init_reg): Likewise.
4022 * s390-tdep.c (s390_dwarf2_frame_init_reg): Likewise.
4023 * sh-tdep.c (sh_dwarf2_frame_init_reg): Likewise.
4024 * sparc64-tdep.c (sparc64_dwarf2_frame_init_reg): Likewise.
4025 * dwarf2-frame.h (dwarf2_frame_sniffer): Delete declaration.
4026 (dwarf2_append_unwinders): Declare.
4027 (dwarf2_frame_base_sniffer): Update declaration.
4028 * i386-linux-tdep.c (i386_linux_dwarf_signal_frame_p): Expect
4029 this_frame.
4030
669fac23
DJ
40312008-04-30 Daniel Jacobowitz <dan@codesourcery.com>
4032
4033 Convert frame unwinders to use the current frame and
4034 "struct value".
4035
4036 * frame.c (frame_debug): Make global.
4037 (get_frame_id): Pass this frame to unwinder routines.
4038 (frame_pc_unwind): Remove unused unwind->prev_pc support.
4039 (do_frame_register_read): Do not discard the return value of
4040 frame_register_read.
4041 (frame_register_unwind): Remove debug messages. Use
4042 frame_unwind_register_value.
4043 (frame_unwind_register_value, get_frame_register_value): New
4044 functions.
4045 (create_new_frame, get_frame_base_address, get_frame_locals_address)
4046 (get_frame_args_address, get_frame_type): Pass this frame to
4047 unwinder routines.
4048 (frame_cleanup_after_sniffer, frame_prepare_for_sniffer): New
4049 functions.
4050 * frame.h: Update comments.
4051 (frame_debug, frame_unwind_register_value, get_frame_register_value)
4052 (frame_prepare_for_sniffer): Declare.
4053 * frame-unwind.h: Update comments and parameter names.
4054 (default_frame_sniffer): Declare.
4055 (frame_prev_register_ftype): Return a struct value *.
4056 (struct frame_unwind): Remove prev_pc member.
4057 (frame_unwind_sniffer_ftype, frame_unwind_append_sniffer): Delete.
4058 (frame_unwind_append_unwinder, frame_unwind_got_optimized)
4059 (frame_unwind_got_register, frame_unwind_got_memory)
4060 (frame_unwind_got_constant, frame_unwind_got_address): Declare.
4061 * frame-base.h: Update comments and parameter names.
4062 * valops.c (value_fetch_lazy): Use get_frame_register_value. Iterate
4063 if necessary. Add debugging output.
4064 * sentinel-frame.c (sentinel_frame_prev_register)
4065 (sentinel_frame_this_id): Update for new signature.
4066 (sentinel_frame_prev_pc): Delete.
4067 (sentinel_frame_unwinder): Remove prev_pc.
4068 * ia64-tdep.c (ia64_libunwind_frame_unwind): Do not initialize
4069 prev_pc.
4070 * libunwind-frame.c (libunwind_frame_unwind): Likewise.
4071 * frame-unwind.c (struct frame_unwind_table_entry): Remove sniffer.
4072 (frame_unwind_append_sniffer): Delete.
4073 (frame_unwind_append_unwinder): New function.
4074 (frame_unwind_find_by_frame): Take this frame. Only use sniffers
4075 from unwinders. Use frame_prepare_for_sniffer.
4076 (default_frame_sniffer, frame_unwind_got_optimized)
4077 (frame_unwind_got_register, frame_unwind_got_memory)
4078 (frame_unwind_got_constant, frame_unwind_got_address): New functions.
4079 * dummy-frame.c (dummy_frame_sniffer): Use gdbarch_dummy_id.
4080 (dummy_frame_prev_register, dummy_frame_this_id): Update for new
4081 signature.
4082 * gdbarch.sh: Replace unwind_dummy_id with dummy_id.
4083 * gdbarch.c, gdbarch.c: Regenerated.
4084 * frame-base.c (default_frame_base_address)
4085 (default_frame_locals_address, default_frame_args_address): Update
4086 for new signature.
4087 (frame_base_find_by_frame): Pass this frame to unwinder routines.
4088 * infcall.c (call_function_by_hand): Update comments.
4089 * Makefile.in (frame-unwind.o): Update dependencies.
4090
9214ee5f
DJ
40912008-04-30 Daniel Jacobowitz <dan@codesourcery.com>
4092
4093 * ada-lang.c (ada_value_primitive_packed_val): Only check
4094 value_lazy for memory lvals.
4095 * findvar.c (value_of_register_lazy): New function.
4096 (locate_var_value): Only check value_lazy for memory lvals.
4097 * valarith.c (value_subscripted_rvalue): Likewise.
4098 * valops.c (value_fetch_lazy): Handle both memory and register
4099 lvals.
4100 (search_struct_field, value_slice): Only check value_lazy for memory
4101 lvals.
4102 * value.c (struct value): Update comment for lazy.
4103 (value_primitive_field): Only check value_lazy for memory lvals.
4104 * value.h (value_lazy): Update comment.
4105 (value_of_register_lazy): Declare.
4106
939643d7
DJ
41072008-04-30 Daniel Jacobowitz <dan@codesourcery.com>
4108
4109 * corefile.c (reopen_exec_file): Close any open files.
4110
1de34ab7
JB
41112008-04-29 Joel Brobecker <brobecker@adacore.com>
4112
4113 * ia64-tdep.c (ia64_memory_remove_breakpoint): Set
4114 show_memory_breakpoints to 1 while reading the instruction bundle.
4115
ea42b34a
JB
41162008-04-29 Joel Brobecker <brobecker@adacore.com>
4117
4118 * gdbarch.sh: Document the return_value method. Explain that
4119 the FUNCTYPE parameter might be NULL.
4120 * gdbarch.h: Regenerated.
4121 * sparc-tdep.c (sparc32_push_dummy_code): Do not pass the function
4122 type when calling using_struct_return, as this is unnecessary
4123 on this target.
4124
a0fe373c
JB
41252008-04-28 Joel Brobecker <brobecker@adacore.com>
4126
4127 * terminal.h (create_tty_session): Fix return type.
4128
c6446539
VP
41292008-04-26 Vladimir Prus <vladimir@codesourcery.com>
4130
4131 * mi/mi-interp.c (mi_new_thread): Quote the thread id.
4132
2f069f6f
JB
41332008-04-26 Joel Brobecker <brobecker@adacore.com>
4134
4135 * breakpoint.c (condition_command, commands_from_control_command)
4136 (break_command_really): Minor reformatting.
4137
93b5768b
PA
41382008-04-25 Pedro Alves <pedro@codesourcery.com>
4139
4140 * dwarf2read.c (dwarf2_const_value): Handle DW_FORM_strp.
4141
436675d3
PA
41422008-04-25 Pedro Alves <pedro@codesourcery.com>
4143
4144 * amd64-tdep.c (amd64_get_longjmp_target): New.
4145 (amd64_init_abi): Register amd64_get_longjmp_target as
4146 gdbarch_get_longjmp_target callback.
4147 * i386-tdep.c (i386_get_longjmp_target): Remove 64-bit handling.
4148
78b6a731
PA
41492008-04-25 Pedro Alves <pedro@codesourcery.com>
4150
4151 * breakpoint.h (enum bpstat_what_main_action): Delete
4152 BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE.
4153
4154 * breakpoint.c (clrs): Delete.
4155 (bpstat_what): Update table.
4156
4157 * infrun.c (handle_inferior_event): Remove
4158 BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE handling.
4159
9e22b03a
VP
41602008-04-24 Vladimir Prus <vladimir@codesourcery.com>
4161
4162 * mi/mi-cmds.h (mi_cmd_args_ftype): Remove.
4163 Adjust all prototypes using mi_cmd_args_ftype to use
4164 mi_cmd_argv_ftype.
4165 (struct mi_cmd): Remove the args_func field.
4166 * mi/mi-cmds.c: Don't provide value for the args_func field.
4167 * mi/mi-main.c (mi_execute_async_cli_command)
4168 (mi_cmd_exec_run, mi_cmd_exec_next, mi_cmd_exec_next_instruction)
4169 (mi_cmd_exec_step, mi_cmd_exec_step_instruction)
4170 (mi_cmd_exec_finish, mi_cmd_exec_until, mi_cmd_exec_return)
4171 (mi_cmd_exec_continue, mi_cmd_exec_interrupt)
4172 (mi_cmd_target_download): Adjust.
4173 (mi_cmd_target_select): Adjust. Pass 0 for from_tty parameter.
4174 (mi_cmd_execute): Do not check for args_func.
4175 (mi_execute_async_cli_command): Adjust.
4176 * mi/mi-parse.c: Don't check for args_func.
4177
721c02de 41782008-04-24 Vladimir Prus <vladimir@codesourcery.com>
18a18393 4179
680b56ce
AS
4180 * breakpoint.c (bpstat_check_location)
4181 (bpstat_check_watchpoint, bpstat_check_breakpoint_conditions):
4182 New, extracted from bpstat_stop_status.
4183 (bpstat_stop_status): Use the above.
18a18393
VP
4184
41852008-04-24 Vladimir Prus <vladimir@codesourcery.com>
4186
680b56ce
AS
4187 * mi/mi-main.c (last_async_command): Rename to current_token.
4188 (previous_async_command): Remove.
4189 (mi_cmd_gdb_exit): Adjust.
4190 (mi_cmd_exec_interrupt): Don't dance with previous_async_command.
4191 (mi_cmd_target_select): Adjust.
4192 (mi_cmd_execute): Don't set previous_async_command. Free token
4193 here even in async mode.
4194 (mi_execute_async_cli_command): Adjust.
4195 (mi_exec_async_cli_cmd_continuation): Adjust. Do not free the
4196 token.
4197 (mi_load_progress): Adjust.
721c02de 4198
f13468d9
VP
41992008-04-24 Vladimir Prus <vladimir@codesourcery.com>
4200
680b56ce
AS
4201 * infcmd.c (step_1_continuation): Always disable longjmp
4202 breakpoint if we're not going to do another step.
f13468d9 4203
f107f563
VP
42042008-04-24 Vladimir Prus <vladimir@codesourcery.com>
4205
4206 exec_cleanup murder.
4207 * breakpoint.c (until_break_command_continuation): Add
4208 the 'error' parameter. Directly delete the breakoint as
4209 opposed to running cleanups.
4210 (until_break_command): Install continuation only
4211 after starting the target. Don't use exec cleanups,
4212 use ordinary cleanups. Discard cleanups is successfully
4213 started the target in async mode.
4214 (make_cleanup_delete_breakpoint): Remove.
4215 * breakpoint.h (make_cleanup_delete_breakpoint): Remove
4216 declaration.
4217 * defs.h (do_exec_cleanups, make_exec_cleanup): Remove
4218 declarations.
4219 (struct continations): Add the 'error' parameter to the
4220 continuation_hook field.
4221 (add_continuation, do_all_continuations)
4222 (add_intermediate_continuation)
4223 (do_all_intermediate_continuations): Add the 'error' parameter.
4224 * exceptions.c (throw_exception): Don't call do_exec_cleanups.
4225 * inf-loop.c (inferior_event_handler): Instead of calling
4226 discard_all_continuations, use do_all_continuations with 1 as
4227 'error' parameter. Pass 0 as 'error' parameter in existing uses
4228 of discard_all_continuations.
4229 * infcmd.c (step_1): Do not use exec cleanup. For async case, discard
4230 cleanups.
4231 (step_once): Install continuation only after resuming the target.
4232 (step_1_continuation): Disable longjmp breakpoint on error.
4233 (finish_command_continuation): Add the error parameter. Delete
4234 the finish breakpoint directly, do not use cleanups.
4235 (finish_command): Do not use exec_cleanups. Always setup
4236 continuation. For sync case, immediately run them.
4237 (attach_command_continuation): Add the error parameter.
4238 * infrun.c (fetch_inferior_event): Do not use exec cleanups to
4239 remove step_resume_breakpoint -- adjust delete it directly.
4240 * interps.c (interp_set): Adjust call to do_all_continations.
4241 * mi/mi-interp.c (mi_interpreter_exec_continuation): Do not
4242 do exec cleanups.
4243 * mi/mi-main.c (mi_cmd_target_select): Do not do exec
4244 cleanups.
4245 (mi_cmd_execute): Do not use exec_cleanup.
4246 (mi_execute_async_cli_command): Simplify the string concatenation
4247 logic. Do no use exec cleanup.
4248 (mi_exec_async_cli_cmd_continuation): New parameter error.
4249 Free last_async_command.
4250 * top.c (command_line_handler_continuation): New parameter error.
4251 * utils.c (exec_cleanup_chain, make_exec_cleanup)
4252 (do_exec_cleanups): Remove.
4253 (add_continuation, do_all_continations)
4254 (add_intermediate_continuation)
4255 (do_all_intermediate_continuations): New parameter error.
4256
74960c60
VP
42572008-04-24 Vladimir Prus <vladimir@codesourcery.com>
4258
4259 * breakpoint.h (bp_location_p): New typedef.
4260 Register a vector of bp_location_p.
4261 * breakpoint.c (always_inserted_mode)
4262 (show_always_inserted_mode): New.
4263 (unlink_locations_from_global_list): Remove.
4264 (update_global_location_list)
4265 (update_global_location_list_nothrow): New.
4266 (update_watchpoint): Don't free locations.
4267 (should_insert_location): New.
4268 (insert_bp_location): Use should_insert_location.
4269 (insert_breakpoint_locations): Copied from
4270 insert_breakpoints.
4271 (insert_breakpoint): Use insert_breakpoint_locations.
4272 (bpstat_stop_status): Call update_global_location_list
4273 when disabling breakpoint.
4274 (allocate_bp_location): Don't add to bp_location_chain.
4275 (set_raw_breakpoint)
4276 (create_longjmp_breakpoint, enable_longjmp_breakpoint)
4277 (disable_longjmp_breakpoint, create_overlay_event_breakpoint)
4278 (enable_overlay_breakpoints, disable_overlay_breakpoints)
4279 (set_longjmp_resume_breakpoint)
4280 (enable_watchpoints_after_interactive_call_stop)
4281 (disable_watchpoints_before_interactive_call_start)
4282 (create_internal_breakpoint)
4283 (create_fork_vfork_event_catchpoint)
4284 (create_exec_event_catchpoint, set_momentary_breakpoint)
4285 (create_breakpoints, break_command_1, watch_command_1)
4286 (create_exception_catchpoint)
4287 (handle_gnu_v3_exceptions)
4288 (disable_breakpoint, breakpoint_re_set_one)
4289 (create_thread_event_breakpoint, create_solib_event_breakpoint)
4290 (create_ada_exception_breakpoint): : Don't call check_duplicates.
4291 Call update_global_location_list.
4292 (delete_breakpoint): Don't remove locations and don't
4293 try to reinsert them. Call update_global_location_list.
4294 (update_breakpoint_locations): Likewise.
4295 (restore_always_inserted_mode): New.
4296 (update_breakpoints_after_exec): Temporary disable
4297 always inserted mode.
4298 * Makefile.in: Update dependencies.
4299
4300 * infrun.c (proceed): Remove breakpoints while stepping
4301 over breakpoint.
4302 (handle_inferior_event): Don't remove or insert
4303 breakpoints.
4304 * linux-fork.c (checkpoint_command): Remove breakpoints
4305 before fork and insert after.
4306 (linux_fork_context): Remove breakpoints before switch
4307 and insert after.
4308 * target.c (target_disconnect, target_detach): Remove
4309 breakpoints from target.
4310
680b56ce 4311
d24317b4
VP
43122008-04-24 Vladimir Prus <vladimir@codesourcery.com>
4313
4314 * breakpoint.c (print_one_breakpoint_location): In MI
4315 mode, report the location string the breakpoint was
4316 originally created with.
4317
ee967b5f
MG
43182008-04-23 Maxim Grigoriev <maxim2405@gmail.com>
4319
4320 * Makefile.in (xtensa-tdep.o): Update dependencies.
4321 * configure.tgt (xtensa*): Update dependencies.
4322 * xtensa-tdep.c (arreg_number): Renamed from areg_number.
4323 Local variable areg renamed to arreg.
4324 (areg_number): New function.
4325 (xtensa_pseudo_register_read, xtensa_pseudo_register_write)
4326 (xtensa_extract_return_value, xtensa_store_return_value): areg_number
4327 replaced by arreg_number.
4328 (xtensa_windowed_frame_cache, struct xtensa_frame_cache): New comments.
4329 (xtensa_alloc_frame_cache): Initialize cache->wd.ws.
4330 (xtensa_scan_prologue): New function.
4331 (xtensa_frame_cache): New local fp_regnum. Handle separately the case,
4332 when ENTRY instraction hasn't been executed yet. Get the frame pointer
4333 value based on prologue analysis. Fix the bugs preventing WS and
4334 AR4-AR7/A11 registers from getting right values for intermediate frames,
4335 whose registers have been already spilled.
4336 (xtensa_frame_prev_register): Fix WS register value. Use are_number
4337 and arreg_number appropriately.
4338 (xtensa_gdbarch_init): Set solib_svr4_fetch_link_map_offsets to
4339 svr4_ilp32_fetch_link_map_offsets.
4340
09d71d23
AS
43412008-04-23 Andrew Stubbs <andrew.stubbs@st.com>
4342
4343 * printcmd.c: Define USE_PRINTF_I64 and PRINTF_HAS_LONG_LONG on MinGW.
4344 (printf_command): Convert %lld to %I64d when USE_PRINTF_I64 set.
4345
fdc59709
PB
43462008-04-23 Paolo Bonzini <bonzini@gnu.org>
4347
680b56ce
AS
4348 * acinclude.m4: Add override.m4.
4349 * configure: Regenerate.
fdc59709 4350
0bcd0149
JK
43512008-04-22 Jan Kratochvil <jan.kratochvil@redhat.com>
4352
4353 * ada-lang.c (get_selections): Variable PROMPT made non-const and
4354 initialized with a trailing space now. Use PROMPT_ARG of
4355 COMMAND_LINE_INPUT instead of printing it ourselves.
4356
88d8a8e0
JB
43572008-04-22 Joel Brobecker <brobecker@adacore.com>
4358
4359 * NEWS: Document support for 64-bit core file.
4360
c055b101
CV
43612008-04-22 Corinna Vinschen <vinschen@redhat.com>
4362
4363 * NEWS: Add information on calling convention and new SH CLI options.
4364
4365 * sh-tdep.c (sh_cc_gcc): New static string.
4366 (sh_cc_renesas): Ditto.
4367 (sh_cc_enum): New static string array.
4368 (sh_active_calling_convention): New static string pointer denoting
4369 active user chosen ABI.
4370 (sh_is_renesas_calling_convention): New function to return function
4371 specific ABI, or user choice if necessary.
4372 (sh_use_struct_convention): Rename first argument and turn around its
4373 meaning. Check for renesas ABI and return accordingly.
4374 (sh_use_struct_convention_nofpu): New function.
4375 (sh_next_flt_argreg): Get function type as third parameter. Check
4376 for renesas ABI and choose floating registers accordingly.
4377 (sh_push_dummy_call_fpu): Check for ABI and choose argument slot and
4378 struct return slot accordingly.
4379 (sh_push_dummy_call_nofpu): Ditto.
4380 (sh_return_value_nofpu): Call sh_use_struct_convention_nofpu from here.
4381 Evaluate ABI and give to sh_use_struct_convention_nofpu.
4382 (sh_return_value_fpu): Evaluate ABI and give to
4383 sh_use_struct_convention.
4384 (show_sh_command): New function.
4385 (set_sh_command): Ditto.
4386 (_initialize_sh_tdep): Initialize `set/show sh calling-convention
4387 CLI command.
4388
4389 * gdbarch.sh (return_value): Add func_type argument.
4390 * gdbarch.c: Regenerate.
4391 * gdbarch.h: Ditto.
4392 * eval.c (evaluate_subexp_standard): Rename local variable value_type to
4393 val_type so as not to collide with value_type function. Call
4394 using_struct_return with additional function type argument.
4395 * infcall.c (call_function_by_hand): Call using_struct_return and
4396 gdbarch_return_value with additional function type argument.
4397 * infcmd.c (print_return_value): Take addition func_type argument.
4398 Call gdbarch_return_value with additional function type argument.
4399 (finish_command_continuation): Call print_return_value with additional
4400 function type argument.
4401 (finish_command): Ditto.
4402 * sparc-tdep.c (sparc32_push_dummy_code): Call using_struct_return with
4403 additional function type argument.
4404 * stack.c (return_command): Call using_struct_return and
4405 gdbarch_return_value with additional function type argument.
4406 * value.c (using_struct_return): Take additional function type argument.
4407 * value.h (using_struct_return): Accommodate declaration.
4408 * alpha-tdep.c (alpha_return_value): Add func_type argument.
4409 * amd64-tdep.c (amd64_return_value): Ditto.
4410 * arm-tdep.c (arm_return_value): Ditto.
4411 * avr-tdep.c (avr_return_value): Ditto.
4412 * cris-tdep.c (cris_return_value): Ditto.
4413 * frv-tdep.c (frv_return_value): Ditto.
4414 * h8300-tdep.c (h8300_return_value): Ditto.
4415 (h8300h_return_value): Ditto.
4416 * hppa-tdep.c (hppa32_return_value): Ditto.
4417 (hppa64_return_value): Ditto.
4418 * i386-tdep.c (i386_return_value): Ditto.
4419 * ia64-tdep.c (ia64_return_value): Ditto.
4420 * iq2000-tdep.c (iq2000_return_value): Ditto.
4421 * m32c-tdep.c (m32c_return_value): Ditto.
4422 * m32r-tdep.c (m32r_return_value): Ditto.
4423 * m68hc11-tdep.c (m68hc11_return_value): Ditto.
4424 * m68k-tdep.c (m68k_return_value): Ditto.
4425 (m68k_svr4_return_value): Ditto.
4426 * m88k-tdep.c (m88k_return_value): Ditto.
4427 * mep-tdep.c (mep_return_value): Ditto.
4428 * mips-tdep.c (mips_eabi_return_value): Ditto.
4429 (mips_n32n64_return_value): Ditto.
4430 (mips_o32_return_value): Ditto.
4431 (mips_o64_return_value): Ditto.
4432 * mn10300-tdep.c (mn10300_return_value): Ditto.
4433 * mt-tdep.c (mt_return_value): Ditto.
4434 * ppc-linux-tdep.c (ppc_linux_return_value): Ditto.
4435 * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Ditto.
4436 (ppc_sysv_abi_broken_return_value): Ditto.
4437 (ppc64_sysv_abi_return_value): Ditto.
4438 * ppc-tdep.h (ppc_sysv_abi_return_value): Ditto.
4439 (ppc_sysv_abi_broken_return_value): Ditto.
4440 (ppc64_sysv_abi_return_value): Ditto.
4441 * ppcnbsd-tdep.c (ppcnbsd_return_value): Ditto.
4442 * rs6000-tdep.c (rs6000_return_value): Ditto.
4443 * s390-tdep.c (s390_return_value): Ditto.
4444 * score-tdep.c (score_return_value): Ditto.
4445 * sh-tdep.c (sh_return_value_nofpu): Ditto.
4446 (sh_return_value_fpu): Ditto.
4447 * sh64-tdep.c (sh64_return_value): Ditto.
4448 * sparc-tdep.c (sparc32_return_value): Ditto.
4449 * sparc64-tdep.c (sparc64_return_value): Ditto.
4450 * spu-tdep.c (spu_return_value): Ditto.
4451 * v850-tdep.c (v850_return_value): Ditto.
4452 * vax-tdep.c (vax_return_value): Ditto.
4453 * xstormy16-tdep.c (xstormy16_return_value): Ditto.
4454 * xtensa-tdep.c (xtensa_return_value): Ditto.
4455
4456 * gdbtypes.h (struct type): Add calling_convention member.
4457 * dwarf2read.c (read_subroutine_type): Add calling convention read
4458 from DW_AT_calling_convention attribute to function type.
4459
9eec4d1e
MD
44602008-04-22 Markus Deuling <deuling@de.ibm.com>
4461
4462 * eval.c (evaluate_subexp_standard): Use value_subscripted_rvalue for
4463 multi_f77_subscript to support values from registers.
4464 * valarith.c (value_subscripted_rvalue): Remove prototype and static.
4465 * value.h (value_subscripted_rvalue): Add prototype.
4466
4467 * f-typeprint.c (f_type_print_base): Add support for TYPE_CODE_UNION.
4468 Fix output.
4469 * f-valprint.c (f_val_print): Likewise.
4470
ef72380d
CS
44712008-04-21 Craig Silverstein <csilvers@google.com>
4472
4473 * dwarf2read.c (zlib_decompress_section): Define abfd in the
4474 !HAVE_ZLIB_H case.
4475
ff8e85c3
PA
44762008-04-21 Pedro Alves <pedro@codesourcery.com>
4477
4478 * symfile.c (syms_from_objfile): Don't warn if lowest loadable
4479 section is not a code section.
4480
31fffb02
CS
44812008-04-19 Craig Silverstein <csilvers@google.com>
4482
4483 * NEWS: Add information on compressed debug sections.
4484
8e91f023
VP
44852008-04-19 Vladimir Prus <vladimir@codesourcery.com>
4486
4487 * mi/mi-cmd-var.c (varobj_update_one): Print new
4488 value for variable objects that changed type.
4489
603ba1de
VP
44902008-04-19 Vladimir Prus <vladimir@codesourcery.com>
4491
4492 * varobj.c (varobj_invalidate): Don't touch floating
4493 varobjs.
4494
7fc830e2
MK
44952008-04-19 Mark Kettenis <kettenis@gnu.org>
4496
4497 * symtab.c: (multiple_symbols_modes, multiple_symbols_ask)
4498 (multiple_symbols_cancel): Remove extra const.
4499 * symtab.h: Likewise.
4500
bcbf8b68
NR
45012008-04-19 Nick Roberts <nickrob@snap.net.nz>
4502
4503 * interps.c (top_level_interpreter): Rename static variable...
4504 (top_level_interpreter_ptr): ...to this.
4505 (top_level_interpreter): New function.
4506
4507 * interps.h: New extern for top_level_interpreter.
4508
4509 * linespec.c: Include interps.h and mi/mi-cmds.h.
4510 (decode_line_2): When using MI, always set all breakpoints in menu.
4511
4512 * Makefile.in (linespec.o, mi-interp.o): Add dependencies.
4513
31fffb02 45142008-04-18 Craig Silverstein <csilvers@google.com>
233a11ab
CS
4515
4516 * configure.ac (AC_SEARCH_LIBS): Add check for zlib.
4517 * config.in, configure: Regenerate.
4518 * dwarf2read.c: Include zlib.h if present.
4519 Modified *_SECTION macros.
4520 (section_is_p): New.
4521 (dwarf2_locate_sections): Use section_is_p instead of strcmp
4522 (dwarf2_resize_section): New.
4523 to determine whether a given section has a given name.
4524 (zlib_decompress_section): New.
4525 (dwarf2_read_section): Read the compressed section if present
4526 in the binary.
4527 * MAINTAINERS: Added myself to section Write After Approval.
bcbf8b68 4528
a03b3a97
TJB
45292008-04-18 Thiago Jung Bauermann <bauerman@br.ibm.com>
4530
4531 * defs.h (exec_set_section_offsets): Remove prototype.
4532 * exec.c (exec_set_section_offsets): Remove function.
4533
9e386756
JB
45342008-04-18 Joel Brobecker <brobecker@adacore.com>
4535
4536 * stabsread.c (cleanup_undefined_types_1): Add instance flags check
4537 in the search for the matching symbol.
4538
2ec93238
MK
45392008-04-17 Marc Khouzam <marc.khouzam@ericsson.com>
4540
4541 * breakpoint.c (update_watchpoint): Always reparse
4542 condition.
4543
e9bbd7c5
JB
45442008-04-17 Joel Brobecker <brobecker@adacore.com>
4545
4546 * breakpoint.c (print_one_breakpoint_location): Make sure to print
4547 the breakpoint address only once.
4548
475bbd17
JB
45492008-04-17 Dennis Roberts <dennis.roberts@sunquestinfo.com>
4550
4551 * rs6000-tdep.c (rs6000_gdbarch_init): Use the BFD architecture,
4552 rather than a hard-coded architecture, for xcoff executables.
4553
86991504
DE
45542008-04-17 Doug Evans <dje@google.com>
4555
4584e32e
DE
4556 * buildsym.c (watch_main_source_file_lossage): New fn.
4557 (end_symtab): Call it.
4558
86991504
DE
4559 * source.c (find_and_open_source): Add some comments clarifying
4560 handling of FULLNAME argument. Make static. Remove pointless
4561 xstrdup/xfree.
4562
0a320680
PA
45632008-04-17 Pedro Alves <pedro@codesourcery.com>
4564
4565 * inf-loop.c (inferior_event_handler): Also run the intermediate
4566 continuations in the INF_EXEC_COMPLETE case.
4567
700b53b1
TT
45682008-04-16 Tom Tromey <tromey@redhat.com>
4569
4570 * cli/cli-decode.h (CMD_ASYNC_OK): New define.
4571 (set_cmd_async_ok, get_cmd_async_ok): Declare.
4572 * cli/cli-decode.c (set_cmd_async_ok): New function.
4573 (get_cmd_async_ok): New function.
4574 * cli/cli-cmds.c (init_cli_cmds): Mark "pwd", "help", "info", and
4575 "show" as async-ok.
4576 * top.c (execute_command): Use get_cmd_async_ok.
4577 * infcmd.c: Include cli/cli-decode.h.
4578 (_initialize_infcmd): Mark "interrupt" as async-ok.
4579 * Makefile.in (infcmd.o): Depend on cli_decode_h.
4580
dacec2a8
DJ
45812008-04-16 Daniel Jacobowitz <dan@codesourcery.com>
4582
4583 PR gdb/2445
4584 * exec.c: Correct "arch-utils.h" include.
4585
1f906a60 45862008-04-15 Aleksandar Ristovski <aristovski@qnx.com>
2cec12e5
AR
4587
4588 PR gdb/2424
4589 * infrun.c (normal_stop) Move breakpoint_auto_delete further down
4590 to allow printing to 'see' real reason of stop. This fixes PR 2424.
4591 * breakpoint.c (bpdisp_texst): New function. The function takes over
4592 the role of bpstats static array in print_one_breakpoint_location.
4593 (print_it_typical): Print "Temporary breakpoint" instead
4594 of just "Breakpoint" when breakpoint is, well, temporary. For mi-like
4595 protocols, print disp field.
4596 (print_one_breakpoint_location): Removed bpdisps static definition.
4597 Call new bpstat_text function to get value for 'disp' field.
4598 (mention): Print "Temporary breakpoint" instead of just "Breakpoint".
4599
4d7b71aa
DJ
46002008-04-15 Daniel Jacobowitz <dan@codesourcery.com>
4601
4602 * gnulib/Makefile.am, gnulib/m4/gnulib-cache.m4,
4603 gnulib/aux/link-warning.h, gnulib/extra/link-warning.h: Adjust
4604 by rerunning gnulib-tool with --aux-dir=gnulib/extra.
4605 * gnulib/Makefile.in: Regenerate.
4606
aa11fd3f
DJ
46072008-04-14 Daniel Jacobowitz <dan@codesourcery.com>
4608
4609 * Makefile.in (GNULIB_H): New. Trigger all-lib.
4610 (defs_h): Use $(GNULIB_H).
4611 (all-lib): Depend on gnulib/Makefile.
4612 (gnulib/Makefile): Regenerate gnulib/Makefile and gnulib/.deps.
4613 * config.in, gnulib/Makefile.in: Regenerated.
4614
e28b3332
DJ
46152008-04-14 Daniel Jacobowitz <dan@codesourcery.com>
4616
4617 * Makefile.in (LIBGNU, INCGNU): Define.
4618 (INTERNAL_CFLAGS_BASE): Add INCGNU.
4619 (INTERNAL_LIBS, CLIBS, CDEPS): Add LIBGNU.
4620 (CLEANDIRS): New.
4621 ($(LIBGNU), all-lib): New rules.
4622 (clean, distclean, do-maintainer-clean): Use CLEANDIRS.
4623 * configure.ac: Use gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE.
4624 Simplify AC_CONFIG_AUX_DIR. Generate gnulib/Makefile.
4625 * gnulib: New directory, from gnulib-tool.
4626 * configure, aclocal.m4: Regenerated.
4627
e3bc4218
DJ
46282008-04-14 Daniel Jacobowitz <dan@codesourcery.com>
4629
4630 * linux-thread-db.c (have_threads_callback): Check thread->private.
4631
fcacd99f
VP
46322008-04-13 Nick Roberts <nickrob@snap.net.nz>
4633 Vladimir Prus <vladimir@codesourcery.com>
4634
4635 Fix @-varobjs.
680b56ce
AS
4636 * varobj.c (value_of_root): Update the expression for
4637 floating varobjs.
4638 * mi/mi-cmd-var.c (varobj_update_one): If type has changed,
4639 report that.
fcacd99f 4640
de051565
MK
46412008-04-09 Marc Khouzam <marc.khouzam@ericsson.com>
4642
4643 * mi/mi-cmd-var.c: Include "mi-getopt.h".
4644 (mi_parse_format): New. Factored out from mi_cmd_var_set_format.
4645 (mi_cmd_var_set_format): Use new mi_parse_format.
4646 (mi_cmd_var_evaluate_expression): Support for -f option to specify
4647 format.
4648 * Makefile.in (mi-cmd-var.o): Update dependencies.
4649
4650 * varobj.h (varobj_get_formatted_value): Declare.
4651 * varobj.c (my_value_of_variable): Added format parameter.
4652 (cplus_value_of_variable): Likewise.
4653 (java_value_of_variable): Likewise.
4654 (c_value_of_variable): Likewise. Evaluate expression based
4655 on format parameter.
4656 (struct language_specific): Add format parameter to function member
4657 *value_of_variable.
4658 (varobj_get_formatted_value): New.
4659 (varobj_get_value): Added format parameter to method call.
680b56ce 4660
56953f80
JB
46612008-04-08 Joel Brobecker <brobecker@adacore.com>
4662
4663 * stabsread.c (cleanup_undefined_types_noname): Manually set the
4664 instance flags of the undefined type before calling replace_type.
4665
e4e33b9e
VP
46662008-04-08 Vladimir Prus <vladimir@codesourcery.com>
4667
4668 * target.h (enum strata): Remove the download_stratum.
680b56ce 4669
92b5c263
DE
46702008-04-07 Doug Evans <dje@google.com>
4671
4672 * buildsym.h (last_source_file): Add dwarf info to comment.
4673 (last_source_start_addr): Ditto.
4674
effa26a9
PA
46752008-04-07 Pedro Alves <pedro@codesourcery.com>
4676
4677 * alphanbsd-tdep.c: Include "target.h".
4678 * mn10300-tdep.c: Include "target.h".
4679 * Makefile.in (alphanbsd-tdep.o, mn10300-tdep.o): Update.
4680
2b2d9e11
VP
46812008-04-06 Vladimir Prus <vladimir@codesourcery.com>
4682
4683 Fix breakpoint condition that use member variables.
680b56ce
AS
4684 * valops.c (check_field): Remove.
4685 (check_field_in): Rename to check_field.
4686 (value_of_this): Use la_name_of_this.
4687 * value.h (check_field): Adjust prototype.
4688
4689 * language.h (la_value_of_this): Rename to la_name_of_this.
4690 * language.c (unknown_language_defn): Specify "this" for
4691 name_of_this.
4692 (auto_language_defn): Likewise.
4693 (local_language_defn): Likewise.
4694 * ada-lang.c (ada_language_defn): Adjust comment.
4695 * c-lang.c (c_language_defn): Adjust comment.
4696 (cplus_language_defn): Specify "this" for name_of_this.
4697 (asm_language_defn): Adjust comment.
4698 (minimal_language_defn): Adjust comment.
4699 * f-lang.c (f_language_defn): Specify NULL for name_of_this.
4700 * jv-lang.c (java_language_defn): Specify "this" for name_of_this.
4701 * m2-lang.c (m2_language_defn): Specify "this" for name_of_this.
4702 * objc-lang.c (objc_language_defn): Specify "self" for
4703 name_of_this.
4704 * p-lang.c (pascal_language_defn): Specify "this" for
4705 name_of_this.
4706 * scm-lang.c (scm_language_defn): Specify NULL for name_of_this.
4707
4708 * symtab.c (lookup_symbol_aux): Lookup "this" in the
4709 proper scope, and check for field in type of "this", without
4710 trying to create a value.
2b2d9e11 4711
a13e061a
PA
47122008-04-04 Pedro Alves <pedro@codesourcery.com>
4713
4714 * mi/mi-cmds.h (enum mi_cmd_result): Delete MI_CMD_ERROR.
4715 (mi_error_message): Delete declaration.
4716 * mi/mi-interp.c (mi_cmd_interpreter_exec): Call error instead of
4717 returning MI_CMD_ERROR.
4718 * mi/mi-main.c (mi_error_message): Delete.
4719 (mi_cmd_exec_interrupt):
4720 (mi_cmd_thread_select, mi_cmd_thread_list_ids)
4721 (mi_cmd_thread_info): Call error instead of returning
4722 MI_CMD_ERROR.
4723 (mi_cmd_data_list_register_values): Call error instead of
4724 returning MI_CMD_ERROR. Adapt to new get_register interface.
4725 (get_register): Change return typo to void. Call error instead of
4726 returning MI_CMD_ERROR.
4727 (mi_cmd_data_write_register_values): Call error instead of
4728 returning MI_CMD_ERROR.
4729 (mi_cmd_list_features): Return MI_CMD_DONE.
4730 (captured_mi_execute_command): Remove MI_CMD_ERROR handling.
4731 (mi_execute_command): Always print exceptions with -error.
4732
aad4b048
JB
47332008-04-04 Joel Brobecker <brobecker@adacore.com>
4734
4735 * NEWS: Mention new commands set/show multiple-symbols.
4736
717d2f5a
JB
47372008-04-03 Joel Brobecker <brobecker@adacore.com>
4738
4739 * symtab.c (multiple_symbols_ask, multiple_symbols_all)
4740 (multiple_symbols_cancel): New constants.
4741 (multiple_symbols_modes, multiple_symbols_mode): New static globals.
4742 (multiple_symbols_select_mode): New function.
4743 (_initialize_symtab): Add new set/show multiple-symbols commands.
4744 * symtab.h (multiple_symbols_ask, multiple_symbols_all)
4745 (multiple_symbols_cancel, multiple_symbols_select_mode): Declare.
4746 * ada-lang.c (user_select_syms): Add handling of new multiple-symbols
4747 setting.
4748 * linespec.c (decode_line_2): Likewise.
4749
f73634e5
DE
47502008-04-03 Doug Evans <dje@sebabeach.org>
4751
4752 * symtab.h (enum free_code): Delete free_contents, unused.
4753 * symmisc.c (free_symtab_block): Delete.
4754 (free_symtab, case free_code): Delete.
4755
1f906a60 47562008-04-01 Aleksandar Ristovski <aristovski@qnx.com>
6af87b03
AR
4757
4758 * valops.c (value_cast_structs): New function. Cast related
680b56ce 4759 STRUCT types up/down and return cast value. The body of this
6af87b03
AR
4760 function comes mostly from value_cast_pointers.
4761 (value_cast_pointers): Code for actual cast STRUCT-STRUCT moved
4762 to value_cast_structs. Now value_cast_pointers needs only create
4763 appropriate reference after using value_cast_structs for actual
4764 casting.
4765 (value_cast): Handle references.
4766
61ad90e1
MK
47672008-04-01 Marc Khouzam <marc.khouzam@ericsson.com>
4768
4769 * MAINTAINERS: Added myself to section Write After Approval.
4770
b7d038ae
DJ
47712008-03-30 Daniel Jacobowitz <dan@codesourcery.com>
4772
4773 * ia64-tdep.c (examine_prologue): Correct array access.
4774
1f906a60 47752008-03-28 Aleksandar Ristovski <aristovski@qnx.com>
c836824f
AR
4776
4777 * cp-support.c (first_component_command): Return if no arguments.
4778
df3ac606
CD
47792008-03-28 Carlos O'Donell <carlos@codesourcery.com>
4780
4781 * ser-mingw.c (ser_windows_open): Open requested name.
4782
ca933485
AR
47832008-03-28 Aleksandar Ristovski <aristovski@qnx.com>
4784
4785 * MAINTAINERS: Added myself.
4786
5f667f2d
PA
47872008-03-28 Pedro Alves <pedro@codesourcery.com>
4788
4789 * target.c (find_default_run_target): Allow a NULL `do_mesg'
4790 parameter. If it is NULL, don't call error.
4791 (find_default_can_async_p, find_default_is_async_p): Pass NULL as
4792 `do_mesg' parameter to find_default_run_target. If no target was
4793 found, return 0.
4794
e741f4d4
DJ
47952008-03-28 Daniel Jacobowitz <dan@codesourcery.com>
4796
4797 * mips-linux-tdep.c: Update N32/N64 signal frame comments.
4798 (N64_SIGCONTEXT_LO, N64_SIGCONTEXT_PC, N64_SIGCONTEXT_FPCSR): Update.
4799 (N64_SIGCONTEXT_FIR, N64_SIGCONTEXT_CAUSE, N64_SIGCONTEXT_BADVADDR):
4800 Delete.
4801 (mips_linux_n32n64_sigframe_init): Do not record cause or badvaddr.
4802
f66d8205 48032008-03-27 Joel Brobecker <brobecker@adacore.com>
4804
4805 GDB 6.8 released.
4806
221c031f
UW
48072008-03-27 Ulrich Weigand <uweigand@de.ibm.com>
4808
4809 * features/Makefile (%.dat): Set xmltarget to the base filename
4810 of the XML source, without subdirectory.
4811 * regformats/rs6000/powerpc-32.dat: Regenerate.
4812 * regformats/rs6000/powerpc-64.dat: Regenerate.
4813 * regformats/rs6000/powerpc-e500.dat: Regenerate.
4814
40c58d95
MD
48152008-03-27 Markus Deuling <deuling@de.ibm.com>
4816
4817 * xcoffread.c (scan_xcoff_symtab): Replace current_gdbarch by
4818 objfile arch.
4819
bb1ec7d2
NR
48202008-03-27 Nick Roberts <nickrob@snap.net.nz>
4821
4822 * mi/mi-main.c (enum captured_mi_execute_command_actions):
4823 Spell suppress in EXECUTE_COMMAND_SUPPRESS_PROMPT correctly.
4824
5e2b427d
UW
48252008-03-26 Ulrich Weigand <uweigand@de.ibm.com>
4826
4827 * objfiles.h (struct objfile): New GDBARCH member.
4828 (get_objfile_arch): Add prototype.
4829 * objfiles.c: Include "arch-utils.h".
4830 (allocate_objfile): Look up gdbarch associated with bfd.
4831 (get_objfile_arch): New function.
4832 * Makefile (objfiles.o): Update dependencies.
4833
4834 * dwarf2-frame.c (decode_frame_entry_1): Replace current_gdbarch
4835 by objfile arch.
4836 * dwarf2loc.c (dwarf_expr_read_reg): Replace current_gdbarch
4837 by frame arch.
4838 (locexpr_describe_location): Replace current_gdbarch by
4839 objfile arch.
4840 * dwarf2read.c (die_type): Replace current_gdbarch by objfile arch.
4841 (dwarf2_add_field): Likewise.
4842 (read_tag_pointer_type): Likewise.
4843 (read_base_type): Likewise.
4844 (new_symbol): Likewise.
4845
4846 * coffread.c (decode_type): Add OBJFILE argument. Update callers.
4847 (decode_base_type, decode_function_type): Likewise.
4848 (coff_read_struct_type, coff_read_enum_type): Likewise.
4849 (coff_symtab_read): Replace current_gdbarch by objfile arch.
4850 (decode_base_type): Likewise.
4851 (coff_read_enum_type): Likewise.
4852 (coff_read_struct_type): Replace current_objfile by OBJFILE argument.
4853 (coff_read_enum_type): Likewise.
4854
4855 * dbxread.c (read_dbx_symtab): Replace current_gdbarch by objfile arch.
4856 (end_psymtab): Likewise.
4857 (process_one_symbol): Likewise.
4858
4859 * mdebugread.c (parse_symbol): Replace current_gdbarch by objfile arch.
4860 (parse_procedure): Likewise.
4861 (parse_partial_symbols): Likewise.
4862
4863 * somread.c (som_symtab_read): Replace current_gdbarch by objfile arch.
4864
4865 * stabsread.c (define_symbol): Replace current_gdbarch by objfile arch.
4866 Replace static pcc_promotion_type and pcc_unsigned_promotion_type by
4867 built-in types.
4868 (read_range_type): Replace current_gdbarch by objfile arch. Replace
4869 static range_index_type by built-in type.
4870 (read_one_struct_field): Replace current_gdbarch by objfile arch.
4871 (read_enum_type): Likewise.
4872
4873 * xcoffread.c (read_xcoff_symtab): Replace current_gdbarch by
4874 objfile arch.
4875
5a413362
VP
48762008-03-26 Vladimir Prus <vladimir@codesourcery.com>
4877
4878 * varobj.h (varobj_floating_p): Declare.
4879 * varobj.c (varobj_floating_p): New.
4880 * mi/mi-cmd-var.c (mi_cmd_var_update): When passed
4881 '@' as the name, update all floating varobjs.
4882
a5defcdc
VP
48832008-03-26 Vladimir Prus <vladimir@codesourcery.com>
4884
4885 * varobj.c (struct varobj_root): Rename use_selected_frame to
4886 floating, and clarify the meaning.
4887 (varobj_create, varobj_update, new_root_variable): Adjust.
4888 (value_of_root): Don't use type_changed as in variable,
4889 adjust comment.
4890 (c_value_of_root): Adjust.
5a413362 4891
403fe197
PA
48922008-03-25 Pedro Alves <pedro@codesourcery.com>
4893
4894 * linux-nat.c (linux_nat_attach): Add the pid we attached to, to
4895 gdb's thread list.
4896 (linux_nat_wait): Add main lwp to gdb's thread list.
4897 * linux-thread-db.c (find_new_threads_callback): Also attach to
4898 already listed threads which thread_db didn't know about yet.
4899
710151dd
PA
49002008-03-25 Pedro Alves <pedro@codesourcery.com>
4901
4902 * linux-nat.c (drain_queued_events): Fix comment typo.
4903 (linux_nat_attach): In async mode, don't rely on storing a pending
4904 status. Instead place the wait status on the pipe.
4905 (linux_nat_resume): Remove unreacheable shortcut code in async
4906 mode.
4907 (stop_wait_callback): In async mode, don't store pending status.
4908 Instead, cancel breakpoints or resend the signal appropriatelly.
4909 (cancel_breakpoint): New, refactored from
4910 cancel_breakpoints_callback.
4911 (cancel_breakpoints_callback): Call cancel_breakpoint.
4912 (pipe_to_local_event_queue): Remove special token processing.
4913 (linux_nat_wait): Issue an internal error if a pending status is
4914 found in async mode.
4915
807bddf3
DJ
49162008-03-24 Daniel Jacobowitz <dan@codesourcery.com>
4917
4918 * inflow.c (gdb_has_a_terminal): Guard access to our_process_group.
4919
c5b48eac
VP
49202008-03-24 Nick Roberts <nickrob@snap.net.nz>
4921 Vladimir Prus <vladimir@codesourcery.com>
4922
680b56ce
AS
4923 * varobj.c (struct varobj_root): New component thread_id.
4924 (varobj_get_thread_id, check_scope): New functions.
4925 (c_value_of_root): Use check_scope. Switch to the
c5b48eac
VP
4926 proper thread if necessary.
4927
680b56ce 4928 * varobj.h (varobj_get_thread_id): New extern.
c5b48eac 4929
680b56ce 4930 * mi/mi-cmd-var.c (print_varobj): Add thread-id field.
c5b48eac 4931
12f4afab
DJ
49322008-03-23 Daniel Jacobowitz <dan@codesourcery.com>
4933
4934 PR gdb/544
4935 * top.c: Revert 2008-03-21 changes.
4936
6208b47d
VP
49372008-03-23 Vladimir Prus <vladimir@codesourcery.com>
4938
4939 * thread.c (make_cleanup_restore_current_thread): Make it
4940 globally visible.
4941 * gdbthread.h (make_cleanup_restore_current_thread): Declare.
4942 * varobj.c (varobj_update): Don't save/restore frame.
4943 (c_value_of_root): Save/restore thread and frame here,
4944 using make_cleanup_restore_current_thread.
4945 * Makefile.in: Update dependecies.
4946
44a67aa7
VP
49472008-03-23 Vladimir Prus <vladimir@codesourcery.com>
4948
680b56ce
AS
4949 * varobj.c (struct varobj_root): Clarify
4950 comment on the frame field.
4951 (varobj_create): Don't set frame if we have no
4952 block.
44a67aa7 4953
b562a0cb
DJ
49542008-03-21 Daniel Jacobowitz <dan@codesourcery.com>
4955
4956 PR gdb/544
4957 Suggested by Jan Kratochvil:
4958 * top.c (gdb_rl_operate_and_get_next_completion): Call
4959 rl_redisplay_function.
4960 (gdb_rl_redisplay): New.
4961 (init_main): Set rl_redisplay_function.
4962
ed1bd5f5
JB
49632008-03-21 Thomas Mittelstaedt <T.Mittelstaedt@cadenas.de> (tiny change)
4964
4965 * aix-thread.c (pdc_read_regs): Fix compiler warning.
4966 (pdc_write_regs, aix_thread_resume, fetch_regs_kernel_thread)
4967 (store_regs_kernel_thread): Likewise.
4968
b84876c2
PA
49692008-03-21 Pedro Alves <pedro@codesourcery.com>
4970
4971 Linux native async support.
4972
4973 * target.h (struct target_ops): Delete to_async_mask_value and add
4974 to_async_mask.
4975 (target_is_async_p, target_async): Formatting.
4976 (target_async_mask_value): Delete.
4977 (target_async_mask): Delete function declaration, and add new
4978 target macro with the same name.
4979
4980 * target.c (update_current_target): Replace to_async_mask_value by
4981 to_async_mask. Default to_async_mask to return_one.
4982 (target_async_mask): Delete.
4983 (find_default_can_async_p, find_default_is_async_p): New.
4984 (init_dummy_target): register find_default_can_async_p and
4985 find_default_is_async_p on the dummy target.
4986
4987 * linux-nat.c: Include inf-loop.h, event-loop.h and event-top.h.
4988 (debug_linux_nat_async): New global.
4989 (show_debug_linux_nat_async): New function.
4990 (linux_nat_async_enabled, linux_nat_async_mask_value)
4991 (linux_nat_event_pipe, linux_nat_num_queued_events)
4992 (linux_nat_async_events_enabled): New globals.
4993 (struct waitpid_result): New struct.
4994 (waitpid_queue): New global.
4995 (queued_waitpid, push_waitpid, drain_queued_events): New.
4996 (my_waitpid): Call queued_waitpid.
4997 (linux_child_follow_fork): Disable async events during the call.
4998 (blocked_mask): Delete.
4999 (sync_sigchld_action, async_sigchld_action): New globals.
5000 (lin_lwp_attach_lwp): In sync mode, don't reblock SIGCHLD. In
5001 async mode, block events during the call.
5002 (linux_nat_create_inferior): New.
5003 (linux_nat_attach): In sync mode, restore the mask states. In
5004 async mode, wake the event loop immediatelly.
5005 (detach_callback): Drain all queued events of the lwp we're
5006 detaching from.
5007 (linux_nat_detach): Block async mode, and drain events of the main
5008 process.
5009 (linux_nat_resume): If in async mode, mask async events during the
5010 call. If short circuiting, force event loop to wake up. If
5011 resuming, set target_executing, and register target events in the
5012 event loop.
5013 (pipe_to_local_event_queue, local_event_queue_to_pipe): New.
5014 (linux_nat_wait): In async mode, block events during the call.
5015 Only enable/disable passing SIGINT to the inferior in sync mode.
5016 Get events from local waitpid queue. If no interesting events was
5017 found, return to events loop. Reregister target events in the
5018 event loop on exit. In sync mode, no need to reblock SIGCHLD.
5019 (linux_nat_kill): Disable events on entry.
5020 (linux_nat_mourn_inferior): In sync mode, don't restore the masks
5021 here. Detach async mode from the event loop if there are no more
5022 forks available, otherwise leave it on.
5023 (sigchld_handler): Assure this is called only in sync mode.
5024 (linux_async_permitted, linux_async_permitted_1): New globals.
5025 (set_maintenance_linux_async_permitted)
5026 (show_maintenance_linux_async_permitted): New functions.
5027 (linux_nat_is_async_p, linux_nat_can_async_p)
5028 (linux_nat_async_mask): New.
5029 (linux_nat_event_pipe_pop, linux_nat_event_pipe_push): New.
5030 (get_pending_events, async_sigchld_handler): New.
5031 (linux_nat_async_events): New.
5032 (async_terminal_is_ours): New global.
5033 (linux_nat_terminal_inferior, linux_nat_terminal_ours): New.
5034 (async_client_callback, async_client_context): New.
5035 (linux_nat_async_file_handler, linux_nat_async)
5036 (linux_nat_disable_async, linux_nat_enable_async): New.
5037 (linux_nat_add_target): Register linux_nat_create_inferior,
5038 linux_nat_can_async_p, linux_nat_is_async_p, linux_nat_async,
5039 linux_nat_async_mask, linux_nat_terminal_inferior and
5040 linux_nat_terminal_ours.
5041 (_initialize_linux_nat): Remove local action variable, and update
5042 code that used it to use sync_sigchld_action. Add new
5043 "lin-lwp-async" debug set/show command. Put the "lin-lwp" debug
5044 set/show command in the maintenance class. Add new "linux-async"
5045 maintenance set/show command. Block SIGCHLD by default. Setup
5046 async_sichld_action, and sync_sigchld_action. Install the default
5047 async mode.
5048 (lin_thread_get_thread_signals): Use a local sigset_t for blocking
5049 the cancel signals.
5050
5051 * linux-thread-db.c (re_check_for_thread_db): New.
5052 (clear_lwpid_callback): Handle TARGET_WAITKIND_IGNORE.
5053 (thread_db_can_async_p, thread_db_is_async_p, thread_db_async)
5054 (thread_db_async_mask): New.
5055 (init_thread_db_ops): Register thread_db_can_async_p,
5056 thread_db_is_async_p, thread_db_async and thread_db_async_mask.
5057
5058 * remote.c (remote_async_mask_value): New.
5059 (remote_return_zero): New.
5060 (init_remote_ops): Register remote_return_zero as callbacks of
5061 to_can_async_p and to_is_async_p.
5062 (remote_can_async_p, remote_is_async_p, remote_async): Update to
5063 use remote_async_mask_value.
5064 (remote_async_mask): New.
5065 (init_remote_async_ops): Remove to_async_mask_value setting and
5066 register remote_async_mask as to_async_mask callback in
5067 remote_async_ops.
5068
5069 * Makefile.in (linux-nat.o): Update.
5070
17faa917
DJ
50712008-03-21 Daniel Jacobowitz <dan@codesourcery.com>
5072
5073 * gdbthread.h (add_thread_with_info): New.
5074 * linux-thread-db.c: Add some documentation.
5075 (GET_LWP, GET_PID, GET_THREAD, is_lwp, is_thread, BUILD_LWP): Delete.
5076 (struct private_thread_info): Remove th_valid and ti_valid.
5077 Replace ti with tid.
5078 (thread_get_info_callback): Do not add TID to the new ptid. Do
5079 not cache th or ti.
5080 (thread_db_map_id2thr, lwp_from_thread): Delete functions.
5081 (thread_from_lwp): Assert that the LWP is set. Do not add TID to the
5082 new PTID.
5083 (attach_thread): Handle an already-existing thread. Use
5084 add_thread_with_info. Cache the th and tid.
5085 (detach_thread): Verify that private was set. Remove verbose
5086 argument and printing. Update caller.
5087 (thread_db_detach): Do not adjust inferior_ptid.
5088 (clear_lwpid_callback, thread_db_resume, thread_db_kill): Delete.
5089 (check_event, find_new_threads_callback): Do not add TID to the new PTID.
5090 (thread_db_wait): Do not use lwp_from_thread.
5091 (thread_db_pid_to_str): Use the cached TID.
5092 (thread_db_extra_thread_info): Check that private is set.
5093 (same_ptid_callback): Delete.
5094 (thread_db_get_thread_local_address): Do not use it or check
5095 is_thread. Check that private is set. Assume that the thread
5096 handle is already cached.
5097 (init_thread_db_ops): Remove to_resume and to_kill.
5098 * thread.c (add_thread_with_info): New.
5099 (add_thread): Use it.
5100 * linux-nat.c (find_thread_from_lwp): Delete.
5101 (exit_lwp): Do not use it. Check print_thread_events. Print before
5102 deleting the thread.
5103 (GET_PID, GET_LWP, BUILD_LWP, is_lwp): Move to...
5104 * linux-nat.h (GET_PID, GET_LWP, BUILD_LWP, is_lwp): ...here.
5105 * inf-ttrace.c (inf_ttrace_wait): Use print_thread_events and
5106 printf_unfiltered for thread exits.
5107 * procfs.c (procfs_wait): Likewise.
5108
6214f497
DJ
51092008-03-21 Chris Demetriou <cgd@google.com>
5110
5111 * symtab.c (rbreak_command): Quote symbol name before passing
5112 it to break_command.
5113
63092375
DJ
51142008-03-21 Daniel Jacobowitz <dan@codesourcery.com>
5115
5116 * eval.c (evaluate_subexp_for_address): Clarify error message.
5117 Use value_must_coerce_to_target.
5118 * infcall.c (value_arg_coerce): Call value_coerce_to_target.
5119 * valops.c (value_assign): Call value_coerce_to_target when
5120 assigning to anything but internalvars. Leave GDB-side arrays
5121 as arrays when assigning to internalvars.
5122 (value_must_coerce_to_target, value_coerce_to_target): New.
5123 (value_coerce_array, value_addr): Call value_coerce_to_target.
5124 (value_array): Create the array in GDB's memory instead of
5125 the inferior's.
5126 * value.h (value_must_coerce_to_target, value_coerce_to_target):
5127 Declare.
5128
b21991b0
DJ
51292008-03-21 Daniel Jacobowitz <dan@codesourcery.com>
5130
5131 * top.c (quit_confirm): Warn that we will kill the program.
5132
49a834f9
PA
51332008-03-19 Pedro Alves <pedro@codesourcery.com>
5134
5135 * inflow.c (terminal_ours_1): Guard access to
5136 inferior_process_group with #ifdef PROCESS_GROUP_TYPE.
5137
ae0d2f24
UW
51382008-03-18 Ulrich Weigand <uweigand@de.ibm.com>
5139 Jim Blandy <jimb@codesourcery.com>
5140 Daniel Jacobowitz <drow@false.org>
5141
5142 * dwarf2expr.h (struct dwarf_expr_context): Add ADDR_SIZE member.
5143 (dwarf2_read_address): Update prototype.
5144
5145 * dwarf2expr.c (unsigned_address_type): Add ADDR_SIZE parameter.
5146 (signed_address_type): Likewise.
5147 (dwarf2_read_address): Replace BYTES_READ parameter with ADDR_SIZE.
5148 (execute_stack_op): Update calls to unsigned_address_type,
5149 signed_address_type and dwarf2_read_address. Fix implementation
5150 of DW_OP_deref_size.
5151
5152 * dwarf2loc.h (dwarf2_per_cu_objfile): Add prototype.
5153 (dwarf2_per_cu_addr_size): Likewise.
5154 (struct dwarf2_locexpr_baton): Replace OBJFILE with PER_CU.
5155 (struct dwarf2_loclist_baton): Likewise.
5156
5157 * dwarf2loc.c (find_location_expression): Update calls to
5158 dwarf2_read_address. Use dwarf2_per_cu_objfile and
5159 dwarf2_per_cu_addr_size to retrieve PER_CU parameters.
5160 (locexpr_describe_location): Likewise.
5161 (dwarf2_evaluate_loc_desc): Replace OBJFILE with PER_CU parameter.
5162 Set ctx->addr_size to dwarf2_per_cu_addr_size (per_cu).
5163 (dwarf2_loc_desc_needs_frame): Add PER_CU parameter. Set ctx->addr_size
5164 to dwarf2_per_cu_addr_size (per_cu).
5165 (locexpr_read_variable): Update dwarf2_evaluate_loc_desc call.
5166 (loclist_read_variable): Likewise.
5167 (locexpr_read_needs_frame): Update dwarf2_loc_desc_needs_frame call.
5168
5169 * dwarf2read.c (dwarf2_symbol_mark_computed): Set baton->per_cu
5170 instead of baton->objfile.
5171 (dwarf2_per_cu_obfile): New function.
5172 (dwarf2_per_cu_addr_size): Likewise.
5173
5174 * dwarf2-frame.c (struct comp_unit): Move higher.
5175 (struct dwarf2_cie): Add UNIT and ADDR_SIZE members.
5176 (execute_stack_op): Add ADDR_SIZE parameter; set ctx->addr_size.
5177 (execute_cfa_program): Add FDE parameter. Replace EH_FRAME_P
5178 parameter by using fde->eh_frame_p. Use read_encoded_value
5179 to implement DW_CFA_set_loc.
5180 (struct dwarf2_frame_cache): Add ADDR_SIZE member.
5181 (dwarf2_frame_cache): Set cache->addr_size. Update calls to
5182 execute_stack_op and execute_cfa_program.
5183 (dwarf2_frame_prev_register): Update calls to execute_stack_op.
5184 (size_of_encoded_value): Remove.
5185 (read_encoded_value): Add PTR_LEN and FUNC_BASE parameters.
5186 Remove call to size_of_encoded_value. Implement DW_EH_PE_funcrel.
5187 (add_cie): Set cie->unit backlink.
5188 (decode_frame_entry_1): Set cie->addr_size. Update calls to
5189 read_encoded_value.
5190 (dwarf2_build_frame_info): Allocate UNIT on objfile obstack.
5191
1c8201d1
MD
51922008-03-17 Markus Deuling <deuling@de.ibm.com>
5193
5194 * i386-tdep.c (i386_print_insn): Remove unnecessary call to
5195 gdbarch_bfd_arch_info.
5196
46bba1ef
JB
51972008-03-17 Joel Brobecker <brobecker@adacore.com>
5198
5199 * aix-thread.c (pdc_read_regs): Minor reformatting.
5200
0bcd3e20
VP
52012008-03-17 Vladimir Prus <vladimir@codesourcery.com>
5202
5203 * thread.c (print_thread_info): Don't insist
5204 on having current thread if there are no
5205 threads at all.
5206
9356cf8d
PA
52072008-03-17 Pedro Alves <pedro@codesourcery.com>
5208
5209 * infcmd.c (attach_command_post_wait)
5210 (attach_command_continuation): New.
5211 (attach_command): Support background async execution, and async
5212 execution in synchronous mode.
5213
5c3ce3f7
DJ
52142008-03-17 Daniel Jacobowitz <dan@codesourcery.com>
5215
5216 * stack.c (print_stack_frame, print_frame): Use RETURN_MASK_ERROR.
5217 * symmisc.c (dump_symtab_1): Likewise.
5218 * wrapper.c (gdb_value_struct_elt): Likewise.
5219
fa2c6a57
PA
52202008-03-17 Pedro Alves <pedro@codesourcery.com>
5221
5222 * linux-nat.c (linux_nat_filter_event): Fix comment typo.
5223
02f3fc28
PA
52242008-03-17 Pedro Alves <pedro@codesourcery.com>
5225
5226 * linux-nat.c (linux_nat_filter_event): New, refactored from
5227 linux_nat_wait.
5228 (linux_nat_wait): Call linux_nat_filter_event.
5229
2f77b315
UW
52302008-03-17 Ulrich Weigand <uweigand@de.ibm.com>
5231
5232 * top.c (execute_command): Fix uninitialized variable error.
5233
f01be29b
NH
52342008-03-16 Nick Hudson <nick.hudson@dsl.pipex.com>
5235
680b56ce
AS
5236 * Makefile.in (amd64nbsd-nat.o): New dependency.
5237 * amd64nbsd-nat.c: Include "nbsd-nat.h".
5238 (_initialize_amd64nbsd_nat): Update target vector to use
5239 nbsd_pid_to_exec_file.
5240 * config/i386/nbsd64.mh (NATDEPFILES): Add nbsd-nat.o.
f01be29b 5241
6cf32704
VP
52422008-03-15 Vladimir Prus <vladimir@codesourcery.com>
5243
5244 Remove ignoring leading exec events code.
680b56ce
AS
5245 * fork-child.c (startup_inferior): Do not set
5246 inferior_ignoring_leading_exec_events.
5247 * inf-child.c (inf_child_reported_exec_events_per_exec_call): Remove.
5248 (inf_child_target): Do not set to_reported_exec_events_per_exec_call.
5249 * infrun.c (inferior_ignoring_leading_exec_events): Remove.
5250 (handle_inferior_event): Remove code for ignoring leading exec
5251 events.
5252 * target.c (update_current_target): Do not inherit, or default,
5253 to_reported_exec_events_per_exec_call.
5254 (debug_to_reported_exec_events_per_exec_call): Remove.
5255 (setup_target_debug): Do not set to_reported_exec_events_per_exec_call.
5256 * target.h (target_reported_exec_events_per_exec_call): Remove.
5257 (struct target): Remove the to_reported_exec_events_per_exec_call
5258 field.
6cf32704 5259
8e8901c5
VP
52602008-03-15 Vladimir Prus <vladimir@codesourcery.com>
5261
5262 Implement -thread-info.
680b56ce 5263 * gdbthread.h (print_thread_info): Declare.
8e8901c5 5264
680b56ce
AS
5265 * thread.c (print_thread_info): New, extracted
5266 from info_threads_command and adjusted to
5267 work for CLI and MI.
5268 (info_threads_command): Use print_thread_info.
8e8901c5
VP
5269 * Makefile.in: Update dependencies.
5270
680b56ce
AS
5271 * mi/mi-cmds.c (mi_cmds): Specify a handler
5272 for -thread-info.
5273 * mi/mi-cmds.h (mi_cmd_thread_info): Declare.
5274 * mi/mi-main.c (mi_cmd_thread_info): New.
5275 (mi_cmd_list_features): Include 'thread-info'.
8e8901c5 5276
7d1e6fb8
KB
52772008-03-14 Kevin Buettner <kevinb@redhat.com>
5278
5279 * mips-tdep.c (mips32_scan_prologue): Use the ABI register size
5280 to decide whether to match instruction patterns using "sw" and "sd".
5281
89113898
PA
52822008-03-14 Pedro Alves <pedro@codesourcery.com>
5283
5284 * infcmd.c (jump_command): Postpone disabling stdin until after
5285 the possible query.
5286
64a0ac84
PA
52872008-03-14 Pedro Alves <pedro@codesourcery.com>
5288
5289 * inflow.c (gdb_getpgrp): New.
5290 (gdb_has_a_terminal): Use get_getpgrp.
5291 (terminal_ours_1): If attach_flag is set, don't refetch
5292 inferior_process_group.
5293
1fddbabb
PA
52942008-03-14 Pedro Alves <pedro@codesourcery.com>
5295
5296 * features/library-list.dtd: Allow "section" elements as children
5297 of "library". Add "section" element and describe its attributes.
5298
5299 * solib-target.c (struct lm_info): Add section_bases member.
5300 (library_list_start_segment): Error out if seen a section element.
5301 (library_list_start_section): New.
5302 (library_list_end_library): New.
5303 (solib_target_free_library_list): Free section_bases.
5304 (section_attributes): New.
5305 (library_children): Make "segment" optional. Add "section" child.
5306 (library_list_children): Register library_list_end_library.
5307 (solib_target_relocate_section_addresses): Handle section bases.
5308
5309 * NEWS: Mention new qXfer:libraries:read section offsets support.
5310
712af3be
VP
53112008-03-14 Vladimir Prus <vladimir@codesourcery.com>
5312
5313 * defs.h (do_exec_error_cleanups, discard_exec_error_cleanups)
5314 (make_exec_error_cleanup): Remove declarations.
5315 * utils.c (exec_error_cleanup_chain): Remove.
5316 (do_exec_error_cleanups, discard_exec_error_cleanups)
5317 (make_exec_error_cleanup): Remove.
5318 * event-loop.c (start_event_loop): Adjust call to
5319 async_enable_stdin.
5320 * event-top.c (async_enable_stdin): Remove the paramater dummy.
5321 (async_disable_stdin): Don't register async_enable_stdin via
5322 cleanup.
5323 * inf-loop.c (inferior_event_handler): Don't
5324 call do_exec_error_cleanups. Call async_enable_stdin instead.
5325 * event-loop.c (start_event_loop): Adjust call to
5326 async_enable_stdin.
5327 * tui/tui-interp.c (tui_command_loop): Adjust call to
5328 async_enable_stdin.
5329
32c1e744
VP
53302008-03-14 Vladimir Prus <vladimir@codesourcery.com>
5331
5332 Async mode fixes.
680b56ce
AS
5333 * Makefile.in (infcmd.o, inf-loop.o): Update dependencies.
5334 * breakpoint.c (bpstat_do_actions): In async mode,
5335 don't jump to top expecting stop_bpstat to be already
5336 updated.
5337 * event-loop.c (start_event_loop): Call async_enable_stdin
5338 on exception.
5339 * event-top.c (async_enable_stdin): Do nothing if sync_execution
5340 is not set.
5341 (command_handler): Do not setup continuation here.
5342 (command_line_handler_continuation): Move to...
5343 * top.c (command_line_handler_continuation): ... here.
5344 (execute_command): In async mode, register continuation.
5345 Don't check frame's language in running in async mode.
5346 * exceptions.c (throw_exception): Don't do exec_error_cleanups.
5347 * inf-loop.c (complete_execution): Inline into...
5348 (inferior_event_handler): ... here. Clear target_executing before
5349 doing any cleanups. Don't try to show prompt if the target was
5350 resumed.
5351 * infcmd.c (signal_command): Add support for async mode.
5352 (finish_command): Only add continuation if the target was
5353 successfully resumed.
5354 * remote.c (init_async_opts): Register to_get_thread_local_address
5355 handler.
5356 * mi/mi-interp.c (mi_cmd_interpreter_exec): Don't mess
5357 with sync_execution.
5358 * tui/tui-interp.c (tui_command_loop): Call async_enable_stdin
5359 on exception.
32c1e744 5360
c04ea773
DJ
53612008-03-14 Daniel Jacobowitz <dan@codesourcery.com>
5362
5363 * corefile.c (reopen_exec_file): Use exec_bfd_mtime.
5364 * exec.c (exec_bfd_mtime): Define.
5365 (exec_close): Clear it.
5366 (exec_file_attach): Set it.
5367 * gdbcore.h (exec_bfd_mtime): Declare.
5368 * source.c (find_source_lines): Do not use bfd_get_mtime.
5369
952dc227
VP
53702008-03-14 Vladimir Prus <vladimir@codesourcery.com>
5371
5372 * top.c (simplified_command_loop): Remove.
5373
4cf46804
VP
53742008-03-14 Vladimir Prus <vladimir@codesourcery.com>
5375
5376 Remove unused remote.c hooks.
680b56ce
AS
5377 * remote.c (deprecated_target_resume_hook)
5378 (deprecated_target_wait_loop_hook): Remove.
5379 (remote_resume): Do not call deprecated_target_resume_hook.
5380 (remote_wait): Do not call deprecated_target_wait_loop_hook.
5381 (remote_async_wait): Likewise.
4cf46804 5382
683f2885
VP
53832008-03-14 Vladimir Prus <vladimir@codesourcery.com>
5384
5385 Implement MI notification for new threads.
680b56ce
AS
5386 * doc/observer.texi (new_thread): Document.
5387 * observer.sh: Forward declare struct thread_info.
5388 * thread.c (add_thread): Notify observer.
5389
5390 * interps.h (interp_init_ftype): New parameter
5391 top_level.
5392 (interp_set): Likewise.
5393 (top_level_interpreter_data): Declare.
5394 * interps.c (interp_set): New parameter top_level.
5395 Pass it to interpreter's init function. Remember
5396 top level interpreter.
5397 (interpreter_exec_cmd): Adjust.
5398 (top_level_interpreter_data): New.
5399 * main.c (captured_main): Pass 1 for top_level
5400 parameter of interp_set.
683f2885 5401 * cli/cli-interp.c (cli_interpreter_init): New
680b56ce
AS
5402 parameter top_level.
5403 * tui/tui-interp.c (tui_init): New parameter top_level.
683f2885 5404
680b56ce
AS
5405 * mi/mi-interp.c (mi_new_thread): New.
5406 (mi_interpreter_init): If top level, register
5407 observer for new threads.
683f2885 5408
680b56ce 5409 * Makefile.in (mi-interp.o, thread.o): Update dependencies.
683f2885 5410
ff9b3928
PA
54112008-03-14 Pedro Alves <pedro@codesourcery.com>
5412
5413 * top.c (execute_command): Disable break and stop
5414 commands in async mode.
5415
b18392ef
PA
54162008-03-14 Pedro Alves <pedro@codesourcery.com>
5417
5418 revert:
5419 2008-03-14 Pedro Alves <pedro@codesourcery.com>
5420 * inf-loop.c (inferior_event_handler): Don't include remote.h.
5421 Call target_stop in the INF_QUIT_REQ case.
5422 * Makefile.in (inf-loop.o): Update.
5423
0aca9f07
PA
54242008-03-14 Pedro Alves <pedro@codesourcery.com>
5425
5426 * inf-loop.c (inferior_event_handler): Don't include remote.h.
5427 Call target_stop in the INF_QUIT_REQ case.
5428 * Makefile.in (inf-loop.o): Update.
5429
0b4e556c
PA
54302008-03-14 Pedro Alves <pedro@codesourcery.com>
5431
5432 * top.c (execute_command): Enable break, info and interrupt
5433 commands in async mode.
5434
8defab1a
DJ
54352008-03-13 Vladimir Prus <vladimir@codesourcery.com>
5436 Daniel Jacobowitz <dan@codesourcery.com>
5437
5438 * breakpoint.h (breakpoint_restore_shadows): New
5439 declaration.
5440 * breakpoint.c (breakpoint_restore_shadows): New.
5441 (read_memory_nobpt): Delete.
5442 * gdbcore.h (read_memory_nobpt): Delete declaration.
5443 * target.c (memory_xfer_partial): Call
5444 breakpoint_restore_shadows.
5445 (restore_show_memory_breakpoints)
5446 (make_show_memory_beakpoints_cleanup): New.
5447 (show_memory_breakpoints): New.
5448 * target.h (make_show_memory_beakpoints_cleanup): Declare.
5449 * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint):
5450 Make sure we see memory breakpoints when checking if
5451 breakpoint is still there.
5452 * alpha-tdep.c, alphanbsd-tdep.c, frame.c, frv-tdep.c,
5453 hppa-linux-tdep.c, hppa-tdep.c, i386-linux-nat.c, i386-tdep.c,
5454 m68klinux-tdep.c, mips-tdep.c, mn10300-tdep.c, s390-tdep.c,
5455 sparc-tdep.c: Use target_read_memory instead of read_memory_nobpt.
5456
fd532e2e
PA
54572008-03-12 Pedro Alves <pedro@codesourcery.com>
5458
5459 * thread.c (add_thread): Use printf_unfiltered to print.
5460
f749779f 54612008-03-12 Joel Brobecker <brobecker@gnat.com>
965b60ee
JB
5462
5463 * sol-thread.c: Replace use of TM_I386SOL2_H by an expression
5464 that is true only on x86-solaris and x86_64-solaris.
5465 * procfs.c: Likewise. Move procfs_find_LDT_entry up together
5466 with proc_get_LDT_entry.
5467
54682008-03-12 Thiago Jung Bauermann <bauerman@br.ibm.com>
83116857
TJB
5469
5470 * configure.ac (AC_CHECK_FUNCS): Add check for setsid.
5471 * config.in, configure: Regenerate.
5472 * fork-child.c (fork_inferior): Call create_tty_session.
5473 * inflow.c (new_tty): Set controlling terminal with TIOCSCTTY.
5474 (create_tty_session): New function.
5475 * terminal.h: Declare create_tty_session.
5476
4fbb74a6
AM
54772008-03-12 Alan Modra <amodra@bigpond.net.au>
5478
5479 PR 5900
5480 * elfread.c (elf_symtab_read): Make shndx an unsigned int.
5481 * mipsread.c: Include elf/internal.h.
5482 (read_alphacoff_dynamic_symtab): Map external reserved sym_shndx
5483 to internal range.
5484
20a6ec49
MD
54852008-03-11 Markus Deuling <deuling@de.ibm.com>
5486
5487 * win32-nat.c (do_win32_fetch_inferior_registers): Use get_regcache_arch
5488 to get at the current architecture and at the target specific vector.
5489 Add target specific vector to I387_FISEG_REGNUM and I387_FOP_REGNUM and
5490 remove define of I387_ST0_REGNUM.
5491
5492 * amd64-tdep.c (I387_ST0_REGNUM): Remove define.
5493
5494 (amd64_supply_fxsave, amd64_collect_fxsave): Use get_regcache_arch to
5495 get at the current architecture
5496 (I387_FISEG_REGNUM, I387_FOSEG_REGNUM): Add target specific vector as
5497 parameter.
5498
5499 * i386-tdep.c: Remove various define's and undef's of I387_ST0_REGNUM,
5500 I387_NUM_XMM_REGS and I387_MM0_REGNUM.
5501
5502 (I387_NUM_XMM_REGS, I387_XMM0_REGNUM, I387_MXCSR_REGNUM,
5503 I387_ST0_REGNUM, I387_FCTRL_REGNUM, I387_MM0_REGNUM,
5504 (I387_FSTAT_REGNUM): Add target specific vector as parameter.
5505
5506 (i386_register_name, i386_dbx_reg_to_regnum): Use gdbarch_tdep to get
5507 at the target specific vector.
5508
5509 (i386_get_longjmp_target): Use get_frame_arch to get at the current
5510 architecture. Use gdbarch_tdep to get at the target specific vector.
5511
5512 (i386_fp_regnum_p, i386_fpc_regnum_p): Add gdbarch as parameter and
5513 update caller. Use gdbarch_tdep to get at the target specific vector.
5514
5515 (i386_register_to_value: Use get_frame_arch to get at the current
5516 architecture.
5517
5518 * i386-tdep.h (i386_fp_regnum_p, i386_fpc_regnum_p): Add gdbarch as
5519 parameter.
5520
5521 * i387-tdep.c (I387_FCTRL_REGNUM, I387_FSTAT_REGNUM, I387_FTAG_REGNUM,
5522 I387_FISEG_REGNUM, I387_FIOFF_REGNUM, I387_FOSEG_REGNUM
5523 I387_FOOFF_REGNUM, I387_FOP_REGNUM, I387_ST0_REGNUM, FSAVE_ADDR,
5524 FXSAVE_ADDR, I387_XMM0_REGNUM): Add target specific vector as parameter.
5525
5526 (I387_ST0_REGNUM, I387_NUM_XMM_REGS): Remove various define's and
5527 undef's.
5528
5529 (i387_convert_register_p, i387_register_to_value,
5530 i387_value_to_register): Update call for i386_fp_regnum_p.
5531
5532 * i387-tdep.h: Remove comment.
5533 (I387_ST0_REGNUM, I387_NUM_XMM_REGS, I387_MM0_REGNUM): Add define.
5534 (I387_FCTRL_REGNUM, I387_FSTAT_REGNUM, I387_FTAG_REGNUM,
5535 I387_FISEG_REGNUM, I387_FIOFF_REGNUM, I387_FOSEG_REGNUM,
5536 I387_FOOFF_REGNUM, I387_FOP_REGNUM, I387_XMM0_REGNUM,
5537 I387_MXCSR_REGNUM): Add target specific vector as parameter.
5538
ccd213ac
DJ
55392008-03-10 Daniel Jacobowitz <dan@codesourcery.com>
5540
5541 * Makefile.in (fork-child.o): Update.
5542 * NEWS: Document "set exec-wrapper" and the gdbserver --wrapper
5543 argument. Gather all gdbserver features together.
5544 * fork-child.c (exec_wrapper): New variable.
5545 (fork_inferior): Use it.
5546 (startup_inferior): Skip an extra trap if using "set exec-wrapper".
5547 (unset_exec_wrapper_command, _initialize_fork_child): New.
5548
55492008-03-10 Hidetaka Takano <hidetaka.takano@glb.toshiba.co.jp>
80618b99
MS
5550
5551 * source.c (directory_command): Modify the determination of
5552 condition of terminal "from_tty".
5553
22566fbd
DJ
55542008-03-10 Matt Rice <ratmice@gmail.com>
5555
5556 * dwarf2read.c (set_cu_language): Add DW_LANG_ObjC.
5557
9971ac47
UW
55582008-03-10 Hidetaka Takano <hidetaka.takano@glb.toshiba.co.jp>
5559
5560 * spu-tdep.c (info_spu_event_command): Insert a '\0' to the end
5561 of the data passing to strtoulst function.
5562 (info_spu_signal_command): Likewise.
5563
835670cf
VP
55642008-03-08 Vladimir Prus <vladimir@codesourcery.com>
5565
5566 * mi/mi-interp.c (mi_command_loop): Remove
5567 commented-out code.
680b56ce 5568
be86555c
JB
55692008-03-07 Joel Brobecker <brobecker@adacore.com>
5570
5571 * remote.c (extended_remote_attach_1): Make local variable pid an int
5572 instead of a pid_t.
5573
4d7b2d5b
JB
55742008-03-07 Joel Brobecker <brobecker@adacore.com>
5575
5576 * solib-svr4.c (svr4_same_1): New function, originally extracted
5577 from svr4_same and expanded to handle the sparc64 case.
5578 (svr4_same): Move up and reimplement using svr4_same_1.
5579 (enable_break): Use svr4_same_1 to do shared library name comparisons.
5580
61fed90e
RR
55812008-03-07 Ramana Radhakrishnan <ramana.r@gmail.com>
5582
5583 * MAINTAINERS: Move self to Paper trail.
5584
b803fb0f
DJ
55852008-03-05 Daniel Jacobowitz <dan@codesourcery.com>
5586
5587 * Makefile.in (mingw-hdep.o, posix-hdep.o, remote-fileio.o): Update.
5588 * event-loop.c (call_async_signal_handler): New.
5589 * event-loop.h (call_async_signal_handler)
5590 (gdb_call_async_signal_handler): Declare.
5591 (mark_async_signal_handler): Add comments.
5592 * event-top.c (handle_sigint): Use gdb_call_async_signal_handler.
5593 * mingw-hdep.c (sigint_event, sigint_handler): New.
5594 (gdb_select): Use them. Wait for the readline signal handler
5595 to finish.
5596 (gdb_call_async_signal_handler, _initialize_mingw_hdep): New functions.
5597 * posix-hdep.c (gdb_call_async_signal_handler): New function.
5598 * remote-fileio.c (sigint_fileio_token, async_remote_fileio_interrupt):
5599 New.
5600 (remote_fileio_ctrl_c_signal_handler): Use
5601 gdb_call_async_signal_handler.
5602 (initialize_remote_fileio): Initialize sigint_fileio_token.
5603 * remote.c (initialize_sigint_signal_handler, handle_remote_sigint): Do
5604 not initialize tokens here.
5605 (handle_remote_sigint_twice): Likewise. Reinstall
5606 handle_remote_sigint.
5607 (async_remote_interrupt_twice): Just call interrupt_query.
5608 (cleanup_sigint_signal_handler): Do not delete tokens.
5609 (remote_interrupt, remote_interrupt_twice): Use
5610 gdb_call_async_signal_handler.
5611 (interrupt_query): Reinstall the default signal handler.
5612 (_initialize_remote): Initialize tokens here.
5613
8f4d54ed
JB
56142008-03-04 Joel Brobecker <brobecker@adacore.com>
5615
5616 * features/rs6000/power-core.xml, features/rs6000/power64-core.xml,
5617 features/rs6000/powerpc-601.xml, features/rs6000/rs6000.xml:
5618 Change the type of the lr register to code_ptr.
5619 * features/rs6000/powerpc-32.c, features/rs6000/powerpc-403.c,
5620 features/rs6000/powerpc-403gc.c, features/rs6000/powerpc-505.c,
5621 features/rs6000/powerpc-601.c, features/rs6000/powerpc-602.c,
5622 features/rs6000/powerpc-603.c, features/rs6000/powerpc-604.c,
5623 features/rs6000/powerpc-64.c, features/rs6000/powerpc-7400.c,
5624 features/rs6000/powerpc-750.c, features/rs6000/powerpc-860.c,
5625 features/rs6000/powerpc-e500.c, features/rs6000/rs6000.c: Regenerate.
5626
95ece428
JW
56272008-03-03 James E. Wilson <wilson@tuliptree.org>
5628
5629 * MAINTAINERS: Update my email address.
5630
686a5eed
KS
56312008-03-03 Keith Seitz <keiths@redhat.com>
5632
5633 From Dave Murphy <davem@devkitpro.org>:
5634 * configure.ac: Set tcl configdir to win under mingw.
5635 * configure: Regenerate.
5636
fa4727a6
DJ
56372008-03-03 Daniel Jacobowitz <dan@codesourcery.com>
5638
5639 * breakpoint.c (fetch_watchpoint_value): New function.
5640 (update_watchpoint): Set and clear val_valid. Use
5641 fetch_watchpoint_value. Handle unreadable values on the
5642 value chain. Correct check for user-requested array watchpoints.
5643 (breakpoint_init_inferior): Clear val_valid.
5644 (watchpoint_value_print): New function.
5645 (print_it_typical): Use it. Do not free or clear old_val. Print
5646 watchpoints even if old_val == NULL.
5647 (watchpoint_check): Use fetch_watchpoint_value. Check for values
5648 becoming readable or unreadable.
5649 (watch_command_1): Use fetch_watchpoint_value. Set val_valid.
5650 (do_enable_watchpoint): Likewise.
5651 * breakpoint.h (struct breakpoint): Update comment for val. Add
5652 val_valid.
5653 * NEWS: Mention watchpoints on inaccessible memory.
5654
c03374d5
DJ
56552007-02-29 Daniel Jacobowitz <dan@codesourcery.com>
5656
5657 * Makefile.in (i386-nat.o): Update.
5658 * amd64-linux-nat.c (_initialize_amd64_linux_nat): Call
5659 i386_use_watchpoints.
5660 * i386-linux-nat.c (_initialize_i386_linux_nat): Call
5661 i386_use_watchpoints.
5662 * i386-nat.c (i386_stopped_data_address): Take two arguments.
5663 (i386_stopped_by_watchpoint): Update call.
5664 (i386_can_use_hw_breakpoint, i386_use_watchpoints): New.
5665 * config/i386/nm-i386.h: Conditionalize definitions on
5666 ! I386_WATCHPOINTS_IN_TARGET_VECTOR.
5667 (i386_use_watchpoints): Declare.
5668 (i386_stopped_data_address): Update.
5669 * config/i386/nm-linux.h (I386_WATCHPOINTS_IN_TARGET_VECTOR): Define.
5670 * config/i386/nm-linux64.h (I386_WATCHPOINTS_IN_TARGET_VECTOR): Define.
5671
c24d7425 56722008-02-29 Joel Brobecker <brobecker@adacore.com>
5673
5674 GDB 6.8 branch created (branch timestamp: 2008-02-26 10:00 UTC)
5675 * version.in: Bump version to 6.8.50.20080229-cvs.
5676
a7dfd010
MD
56772008-02-28 Markus Deuling <deuling@de.ibm.com>
5678
5679 * f-typeprint.c (f_print_type): Handle NULL pointer in VARSTRING
5680 properly.
5681
258c00cc
TT
56822008-02-28 Tom Tromey <tromey@redhat.com>
5683
5684 * infcmd.c (notice_args_read): Print result of get_inferior_args.
5685
8edfe269
DJ
56862008-02-28 Daniel Jacobowitz <dan@codesourcery.com>
5687
5688 * infcmd.c (kill_if_already_running): Make static. Use
5689 target_require_runnable.
5690 * target.c (target_require_runnable): New.
5691 * target.h (target_require_runnable): Declare.
5692
0d6ba1b1
DJ
56932008-02-28 Daniel Jacobowitz <dan@codesourcery.com>
5694
5695 * frame.c (reinit_frame_cache): Only annotate if frames were
5696 previously valid.
5697
6fe305f7
UW
56982008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
5699
5700 * regformats/reg-ppc.dat: Rename "ps" to "msr".
5701 * regformats/reg-ppc64.dat: Likewise.
5702
9b4b61c8
UW
57032008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
5704
5705 * features/Makefile (%.dat): Emit xmltarget statement.
5706
5707 * regformats/regdat.sh: Support xmltarget and xmlarch statments.
5708 Generate code to set gdbserver_xmltarget in init_registers_${name}.
5709
5710 * regformats/arm-with-iwmmxt.dat: Regenerate.
5711 * regformats/mips64-linux.dat: Regenerate.
5712 * regformats/mips-linux.dat: Regenerate.
5713 * regformats/rs6000/powerpc-32.dat: Regenerate.
5714 * regformats/rs6000/powerpc-64.dat: Regenerate.
5715 * regformats/rs6000/powerpc-e500.dat: Regenerate.
5716
5717 * regformats/reg-arm.dat: Add xmlarch statement.
5718 * regformats/reg-i386.dat: Likewise.
5719 * regformats/reg-i386-linux.dat: Likewise.
5720 * regformats/reg-x86-64-linux.dat: Likewise.
5721 * regformats/reg-spu.dat: Likewise.
5722
20b4711e
DJ
57232008-02-27 Daniel Jacobowitz <dan@codesourcery.com>
5724
5725 * remote.c (remote_wait, remote_async_wait): Stop if we receive
5726 an error.
5727
1843f87b
DJ
57282008-02-27 Daniel Jacobowitz <dan@codesourcery.com>
5729
5730 * utils.c (debug_timestamp): New.
5731 (vfprintf_unfiltered): Print timestamps if requested.
5732 (show_debug_timestamp): New.
5733 (initialize_utils): Register "set debug timestamp".
5734 * NEWS: Mention "set debug timestamp". Add GDB 6.8 section.
5735
6a048695
JB
57362008-02-27 Joel Brobecker <brobecker@adacore.com>
5737
5738 * breakpoint.c (skip_prologue_sal): New function.
5739 (resolve_sal_pc): Adjust SAL past prologue if the SAL was
5740 computed from a line number.
5741
0b998f49
JB
57422008-02-27 Joel Brobecker <brobecker@adacore.com>
5743
5744 * features/rs6000/power-core.xml, features/rs6000/power64-core.xml
5745 features/rs6000/powerpc-601.xml, features/rs6000/rs6000.xml:
5746 Set PC register type to "code_ptr".
5747 * features/rs6000/powerpc-32.c, features/rs6000/powerpc-403.c,
5748 features/rs6000/powerpc-403gc.c, features/rs6000/powerpc-505.c,
5749 features/rs6000/powerpc-601.c, features/rs6000/powerpc-602.c,
5750 features/rs6000/powerpc-603.c, features/rs6000/powerpc-604.c,
5751 features/rs6000/powerpc-64.c, features/rs6000/powerpc-7400.c,
5752 features/rs6000/powerpc-750.c, features/rs6000/powerpc-860.c,
5753 features/rs6000/powerpc-e500.c, features/rs6000/rs6000.c:
5754 Regenerate.
5755
d05b4ac3
UW
57562008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
5757
5758 * regformats/regdat.sh: Rename init_registers function in
5759 generated file to init_registers_${name}.
5760
5761 * regformats/reg-crisv32.dat: Set "name" to crisv32.
5762 * regformats/reg-ppc64.dat: Set "name" to ppc64.
5763 * regformats/reg-s390x.dat: Set "name" to s390x.
5764
a5d9d57d
DJ
57652008-02-26 Greg Law <glaw@undo-software.com>
5766
5767 * regcache.c (registers_changed): Call reinit_frame_cache.
5768
e25c958c
DJ
57692008-02-26 Daniel Jacobowitz <dan@codesourcery.com>
5770
5771 * configure.tgt (sh-*-linux*): Match sh*. Add glibc-tdep.o.
5772 * sh-linux-tdep.c (sh_linux_init_abi): Use glibc_skip_solib_resolver
5773 and svr4_fetch_objfile_link_map.
5774 * Makefile.in (sh-linux-tdep.o): Update.
5775
5daa78cc
TJB
57762008-02-26 Thiago Jung Bauermann <bauerman@br.ibm.com>
5777
5778 * amd64-tdep.c (amd64_classify): Add support for decimal float
5779 types.
5780 * i386-tdep.c (i386_return_value): Make 128-bit decimal float
5781 use the struct return convention.
5782
54e52265
VP
57832008-02-26 Nick Roberts <nickrob@snap.net.nz>
5784
5785 * breakpoint.c (print_one_breakpoint_location): Revert Enb field
5786 to old format. Discard breakpoint address if shared library is
5787 unloaded.
5788 (breakpoint_1): Adjust formatting of table header accordingly.
5789
d8f2712d
VP
57902008-02-25 Vladimir Prus <vladimir@codesourcery.com>
5791
5792 * remote.c (remote_get_threadlist): If the response
5793 is empty, don't try to parse it.
5794
05ce04a4
VP
57952008-02-23 Vladimir Prus <vladimir@codesourcery.com>
5796
5797 Unbreak 'target async'.
680b56ce
AS
5798 * serial.c (serial_async): Set the
5799 handler function before enabling async
5800 mode.
05ce04a4 5801
b36ec657
DJ
58022008-02-22 Daniel Jacobowitz <dan@codesourcery.com>
5803
5804 * solib-svr4.c (enable_break): Convert r_brk to a code address.
5805
df7df359
PA
58062008-02-21 Pedro Alves <pedro@codesourcery.com>
5807
5808 * remote.c (extended_remote_attach_1): Set attach_flag.
5809 (extended_remote_create_inferior_1): Clear attach_flag.
5810
7cd25cfc
DJ
58112008-02-20 Daniel Jacobowitz <dan@codesourcery.com>
5812
5813 * mipsnbsd-tdep.c (mipsnbsd_ilp32_fetch_link_map_offsets): Set
5814 r_brk_offset.
5815 (mipsnbsd_lp64_fetch_link_map_offsets): Likewise.
5816 * solib-svr4.c (solib_svr4_r_brk): New.
5817 (open_symbol_file_object, svr4_current_sos): Always check the
5818 debug base.
5819 (svr4_fetch_objfile_link_map): Do not set debug_base.
5820 (enable_break): Use r_brk if it is set.
5821 (svr4_ilp32_fetch_link_map_offsets): Set r_brk_offset.
5822 (svr4_lp64_fetch_link_map_offsets): Likewise.
5823 * solib-svr4.h (struct link_map_offsets): Add r_brk_offset.
5824
07ea644b
MD
58252008-02-20 Markus Deuling <deuling@de.ibm.com>
5826 Mark Kettenis <kettenis@gnu.org>
5827
5828 * alpha-tdep.c (alpha_heuristic_unwind_cache): Replace saved_regs by
5829 trad_frame_saved_reg.
680b56ce 5830 (trad-frame.h): New include.
07ea644b
MD
5831
5832 (alpha_heuristic_frame_unwind_cache): Use trad_frame_alloc_saved_regs
680b56ce 5833 instead of frame_obstack_zalloc.
07ea644b
MD
5834 (alpha_heuristic_frame_prev_register): Use trad_frame_get_prev_register.
5835
680b56ce 5836 * Makefile.in (alpha-tdep.o): Add dependency to trad_frame_h.
07ea644b 5837
40887e1a
MD
58382008-02-20 Markus Deuling <deuling@de.ibm.com>
5839
5840 * rs6000-tdep.c (gdb_print_insn_powerpc): Get the current endianess
5841 from disassemble_info instead of gdbarch_byte_order.
5842
5843 * mips-tdep.c (gdb_print_insn_mips): Likewise.
5844 * arm-tdep.c (gdb_print_insn_arm): Likewise.
5845
ae4b2284
MD
58462008-02-20 Markus Deuling <deuling@de.ibm.com>
5847
5848 * gdbarch.sh (memory_insert_breakpoint, memory_remove_breakpoint): Add
5849 gdbarch as parameter.
5850
5851 * gdbarch.{c,h}: Regenerate.
5852
5853 * ppc-tdep.h (ppc_linux_memory_remove_breakpoint): Add gdbarch as
5854 parameter.
5855 * mem-break.c (default_memory_insert_breakpoint)
5856 (default_memory_remove_breakpoint): Likewise.
5857 * target.h (default_memory_remove_breakpoint)
5858 (default_memory_insert_breakpoint): Likewise.
5859
5860 * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Add gdbarch as
5861 parameter. Replace current_gdbarch by gdbarch.
5862 * m32r-tdep.c (m32r_memory_insert_breakpoint)
5863 (m32r_memory_remove_breakpoint): Likewise.
5864
d9bf65d5
DJ
58652008-02-19 Daniel Jacobowitz <dan@codesourcery.com>
5866
5867 * MAINTAINERS: Add Vladimir Prus as MI maintainer.
5868
b93b6ca7
JB
58692008-02-19 Joel Brobecker <brobecker@adacore.com>
5870
5871 * NEWS: Add entry describing Add support improvements.
5872
4ed226fe
MD
58732008-02-18 Markus Deuling <deuling@de.ibm.com>
5874
5875 * m68klinux-nat.c (getfpregs_supplies): Replace gdbarch_fp0_regnum by
5876 M68K_FP0_REGNUM.
5877
caaa79ad
MD
58782008-02-18 Markus Deuling <deuling@de.ibm.com>
5879
5880 * sentinel-frame.c (sentinel_frame_prev_register): Do not call
5881 register_offset_hack anymore.
5882
5883 * regcache.{c,h} (register_offset_hack): Remove.
5884
e38c262f
MD
58852008-02-18 Markus Deuling <deuling@de.ibm.com>
5886
5887 * hppa-tdep.h (find_global_pointer): Add gdbarch as parameter.
5888
5889 * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer): Likewise. Replace
5890 current_gdbarch by gdbarch.
5891 (hppa64_hpux_find_global_pointer): Likewise.
5892 * hppa-tdep.c (hppa_find_global_pointer): Likewise.
5893 (hppa32_push_dummy_call, hppa64_push_dummy_call): Update call for
5894 find_global_pointer.
5895
5896 * hppabsd-tdep.c (hppabsd_find_global_pointer): Add gdbarch as
5897 parameter.
5898 * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
5899
5900 * hppa-linux-nat.c (hppa_linux_register_addr): Use ARRAY_SIZE instead
5901 of gdbarch_num_regs.
5902
5903 * hppa-hpux-tdep.c (hppa_hpux_sr_for_addr): Add gdbarch as parameter and
680b56ce 5904 replace current_gdbarch by gdbarch.
e38c262f
MD
5905 (hppa_hpux_push_dummy_code): Update call for hppa_hpux_sr_for_addr.
5906
206988c4
MD
59072008-02-18 Markus Deuling <deuling@de.ibm.com>
5908
5909 * rs6000-nat.c (exec_one_dummy_insn, regmap): Add gdbarch as parameter
5910 and replace current_gdbarch by gdbarch.
5911
5912 (store_register): Update call for exec_one_dummy_insn.
5913 (fetch_register, store_register): Update call of regmap.
5914
5915 * ppcnbsd-nat.c (getregs_supplies, getfpregs_supplies): Add gdbarch as
5916 parameter and replace current_gdbarch by gdbarch.
680b56ce 5917
206988c4
MD
5918 (ppcnbsd_store_inferior_registers): Use get_regcache_arch to get at
5919 the current architecture. Update call for getregs_supplies and
5920 getfpregs_supplies.
5921 (ppcnbsd_fetch_inferior_registers): Likewise.
5922
680b56ce 5923 * ppcobsd-nat.c (getfpregs_supplies): Add gdbarch as parameter and
206988c4
MD
5924 replace current_gdbarch by gdbarch.
5925 (ppcobsd_fetch_registers, ppcobsd_store_registers): Use
5926 get_regcache_arch to get at the current architecture. Update call for
5927 getfpregs_supplies.
5928
f642be6b
MD
59292008-02-18 Markus Deuling <deuling@de.ibm.com>
5930
5931 * arch-utils.c (gdbarch_from_bfd): Remove unnecessary {old,new}_gdbarch
680b56ce 5932 variables.
f642be6b 5933
b1f2bf01
MD
59342008-02-15 Markus Deuling <deuling@de.ibm.com>
5935
5936 * mips-linux-tdep.c (mips_linux_init_abi): Remove internal error.
5937
ee163bf5
VP
59382008-02-14 Vladimir Prus <vladimir@codesourcery.com>
5939
5940 * NEWS: Mention pending breakpints in MI.
680b56ce 5941
f6fbcbf9
MD
59422008-02-14 Markus Deuling <deuling@de.ibm.com>
5943
5944 * Makefile.in (ALL_TARGET_OBS): Remove dependency to xtensa-linux-nat.o.
5945
36af4ef6
MD
59462008-02-13 Markus Deuling <deuling@de.ibm.com>
5947
5948 Add script to build and test GDB using enable-targets=all.
5949
5950 * gdb_buildall.sh: New file.
5951
94a0e877
MG
59522008-02-11 Maxim Grigoriev <maxim2405@gmail.com>
5953
5954 * NEWS (New native configurations): Xtensa GNU/Linux.
5955 (New targets): Xtensa GNU/Linux.
5956 * Makefile.in (ALL_TARGET_OBS): Add xtensa-linux-nat.o and
5957 xtensa-linux-tdep.o
5958 (ALLDEPFILES): Add xtensa-linux-tdep.c and xtensa-linux-nat.c
5959 (xtensa-linux-nat.o, xtensa-linux-tdep.o): New dependencies.
5960 * configure.tgt (xtensa*-*-linux*): New entry.
5961 * xtensa-config.c (xtensa_tdep): New variable.
5962 (xtensa_config_byte_order, xtensa_config_tdep): Removed.
5963 (rmap): Change format based on new macro XTREG.
5964 (XTENSA_CONFIG_INSTANTIATE): Use new macro defined in xtensa-tdep.h.
5965 * xtensa-linux-nat.c: New.
5966 * xtensa-linux-tdep.c: New.
5967 * xtensa-xtregs.c: New.
5968 * xtensa-tdep.h (xtensa_elf_gregset_t): Update.
5969 (XTENSA_ELF_NGREG, XTREG, XTREG_END, XTENSA_GDBARCH_TDEP_INSTANTIATE)
5970 (XCHAL_NUM_CONTEXTS, XCHAL_HAVE_EXCEPTIONS): New macros.
5971 (xtensa_register_t): New field coprocessor.
5972 (XTENSA_REGISTER_FLAGS_PRIVILEGED): Name spelling corrected.
5973 * xtensa-tdep.c (xtensa_config_tdep, xtensa_config_byte_order): Removed.
5974 (xtensa_pseudo_register_read, xtensa_pseudo_register_write):
5975 Update to handle privileged registers.
5976 (xtensa_supply_gregset) Remove exccause and excvaddr registers.
5977 (xtensa_push_dummy_call): Set windowstart register correctly.
5978 (call0_analyze_prologue): Initialize xtensa_default_isa.
5979 (xtensa_derive_tdep): New.
5980 (xtensa_gdbarch_init): Get rid of xtensa_config_byte_order and
5981 xtensa_config_tdep, use XCHAL_HAVE_BE and xtensa_tdep instead.
5982 Call xtensa_derive_tdep().
5983 * config/xtensa/linux.mh: New.
5984 * regformats/reg-xtensa.dat: New.
5985
b7ee1b0a 59862008-02-09 Aleksandar Ristovski <aristovski@qnx.com> (tiny change)
f90c07ac
EZ
5987
5988 * corelow.c (core_open): Use IS_ABSOLUTE_PATH.
5989 (filenames.h): New include.
5990 * Makefile.in (corelow.o): Add dependency for filenames.h.
5991
8da2a1df
DJ
59922008-02-08 Doug Evans <dje@google.com>
5993
5994 * source.c (find_and_open_source): Always rewrite absolute filenames.
5995
776592bf
DE
59962008-02-07 Doug Evans <dje@google.com>
5997
5998 * breakpoint.c: #include "hashtab.h".
5999 (ambiguous_names_p): New fn.
6000 (update_breakpoint_locations): When restoring bp enable status, don't
6001 compare function names if any functions have same name.
6002 * Makefile.in (breakpoint.o): Add hashtab.h dependency.
6003
d6565258
JB
60042008-02-07 Joel Brobecker <brobecker@adacore.com>
6005
6006 * ada-lang.c (symbol_completion_add): Make SV parameter a VEC**
6007 instead of just a VEC*. Update use of SV.
6008 (ada_make_symbol_completion_list): Update symbol_completion_add calls.
6009
6d53d0af
JB
60102007-02-07 Joel Brobecker <brobecker@adacore.com>
6011
6012 * NEWS: Put all new commands since gdb-6.7 together.
6013
2ba95b9b
JB
60142007-02-07 Joel Brobecker <brobecker@adacore.com>
6015
6016 * ada-lang.c: #include "vec.h".
6017 (struct string_vector, new_string_vector, string_vector_append):
6018 Delete.
6019 (char_ptr): New typedef.
6020 (DEF_VEC_P (char_ptr)): New VEC type.
6021 (symbol_completion_add): Update profile to take the new VEC type
6022 instead of the old string_vector structure. Update code accordingly.
6023 (ada_make_symbol_completion_list): Use the new VEC type instead of
6024 the old string_vector structure, and update the code accordingly.
6025 * Makefile.in (ada-lang.o): Add dependency on vec.h.
6026
4ae0885a
PM
60272008-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
6028
6029 * p-exp.y: Set current_type in missing places.
6030 (leftdiv_is_integer): New static variable.
6031 Typecast right operand of BINOP_DIV to long_double if both operands
6032 are integers.
6033
06b1d59c
MR
60342008-02-06 Maciej W. Rozycki <macro@mips.com>
6035
6036 * remote-mips.c (set_breakpoint): Rename to...
6037 (mips_set_breakpoint): ... this.
6038 (clear_breakpoint): Rename to...
6039 (mips_clear_breakpoint): ... this.
6040 (common_breakpoint): Rename to...
6041 (mips_common_breakpoint): ... this.
6042 (check_lsi_error): Rename to...
6043 (mips_check_lsi_error): ... this.
6044
41d27058
JB
60452007-02-05 Joel Brobecker <brobecker@adacore.com>
6046
6047 * language.h (struct language_defn): Add new field
6048 la_make_symbol_completion_list.
6049 * symtab.c (default_make_symbol_completion_list): Renames
6050 make_symbol_completion_list.
6051 (make_symbol_completion_list): New function.
6052 * symtab.h (default_make_symbol_completion_list): Add declaration.
6053 * langauge.c (unknown_language): Set la_make_symbol_completion_list.
6054 (auto_language, local_language): Likewise.
6055 * objc-lang.c (objc_language_defn): Likewise.
6056 * scm-lang.c (scm_language_defn): Likewise.
6057 * m2-lang.c (m2_language_defn): Likewise.
6058 * f-lang.c (f_language_defn): Likewise.
6059 * jv-lang.c (java_language_defn): Likewise.
6060 * p-lang.c (pascal_language_defn): Likewise.
6061 * c-lang.c (c_language_defn, cplus_language_defn, asm_language_defn)
6062 (minimal_language_defn): Likewise.
6063 * ada-lang.c (struct string_vector): New structure.
6064 (new_string_vector, string_vector_append, ada_unqualified_name)
6065 (add_angle_brackets, symbol_completion_match, symbol_completion_add)
6066 (ada_make_symbol_completion_list): New functions.
6067 (ada_language_defn): Set la_make_symbol_completion_list.
6068 * ada-lang.h (ada_make_symbol_completion_list): Remove declaration,
6069 this function is static.
6070
ee3a2f01
KB
60712008-02-05 Kevin Buettner <kevinb@redhat.com>
6072
6073 * mn10300-tdep.c (mn10300_push_dummy_call): Adjust stack pointer
6074 to account for call site optimizations.
6075
d844e34b
JB
60762008-02-05 Andrzej Zaborowski <balrogg@gmail.com>
6077
6078 * tracepoint.c (read_actions): Handle end-of-text indicator
6079 in action list properly. (Committed by Jim Blandy)
6080
02e4669d
JB
60812008-02-05 Jim Blandy <jimb@red-bean.com>
6082
6083 * ax-gdb.c (gen_expr): Yield ordinary error if asked to trace a
6084 pseudoregister, not an internal error.
85ecb32b 6085 Reported by: Andrzej Zaborowski
02e4669d 6086
c39c8256
VP
60872008-02-04 Vladimir Prus <vladimir@codesourcery.com>
6088
6089 * varobj.c (c_value_of_variable): Use xstrdup.
6090
ae7d22a6
VP
60912008-02-04 Vladimir Prus <vladimir@codesourcery.com>
6092
6093 Update stored rendition of varobj value when format changes.
6094 * varobj.c (varobj_set_display_format): Recomputed
680b56ce
AS
6095 print_value.
6096 (c_value_of_variable): Return print_value.
ae7d22a6 6097
81fe8080
DE
60982008-02-03 Doug Evans <dje@google.com>
6099
301f0ecf
DE
6100 * eval.c (evaluate_subexp_standard): Fix type of result of mixed
6101 integer/float division operations when EVAL_AVOID_SIDE_EFFECTS.
6102 * valops.c (value_one): New function.
6103 * value.h (value_one): Declare.
6104
6105 Fix argument promotion for binary arithmetic ops for C.
6106 * valarith.c (unop_result_type): New fn.
6107 (binop_result_type): New fn.
6108 (value_binop): Move result type computation to binop_result_type.
6109 (value_pos, value_neg, value_complement): Move result type
6110 computation to unop_result_type.
6111
81fe8080
DE
6112 PR 2384
6113 * gdbtypes.c (get_vptr_fieldno): Renamed from fill_in_vptr_fieldno.
6114 Return basetype, fieldno if found. All callers updated.
6115 Don't cache TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE if from different
6116 objfile.
6117 * gdbtypes.h (get_vptr_fieldno): Renamed from fill_in_vptr_fieldno.
6118 * symfile.h (fill_in_vptr_fieldno): Delete.
6119
41808ebe
DE
61202008-02-02 Doug Evans <dje@google.com>
6121
f8597ac3
DE
6122 * valarith.c (value_binop): Handle unsigned BINOP_REM division by zero.
6123
41808ebe
DE
6124 * typeprint.c (*): Whitespace cleanup.
6125
f964a756
MK
61262008-02-02 Mark Kettenis <kettenis@gnu.org>
6127 Luis Machado <luisgpm@br.ibm.com>
680b56ce 6128 Thiago Jung Bauermann <bauerman@br.ibm.com>
f964a756
MK
6129
6130 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Pass floats that
6131 don't fit into registerson the stack the way GCC does.
6132
b06ead72
JB
61332008-02-01 Joel Brobecker <brobecker@adacore.com>
6134
6135 * symtab.c (symbol_set_names): Do not add an entry in the demangling
6136 hash table for Ada symbols. Just store the linkage name as is,
6137 and leave the demangled_name as NULL.
6138
2cfa0c8d
JB
61392007-02-01 Joel Brobecker <brobecker@adacore.com>
6140
6141 * dwarf2read.c (add_partial_symbol): Always store all Ada subprograms
6142 in the global scope.
6143 (new_symbol): Likewise.
6144
98deb0da 61452008-02-01 Vladimir Prus <vladimir@codesourcery.com>
680b56ce
AS
6146
6147 * breakpoint.c (break_command_1): Return void.
6148 (break_command_really): Return void. Rethrow
6149 exceptions instead of returning.
6150 (gdb_breakpoint): Remove the error_message parameter.
6151 Return void. Rename to set_breakpoint.
6152 * gdb.h (gdb_breakpoint): Rename and move to...
98deb0da 6153 * breakpoint.h (set_breakpoint): ...here.
680b56ce
AS
6154 * mi/mi-cmb-break.c (mi_cmd_break_insert): Restore
6155 event hooks even if exception is thrown. Adjust to
6156 gdb_breakpoint interface changes.
6157
98deb0da 6158
ce0451ad
TJB
61592008-02-01 Thiago Jung Bauermann <bauerman@br.ibm.com>
6160
6161 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Write 32-bit
6162 float in both first and second word in the doubleword, to support
6163 old and new ABIs.
6164
723a2275
VP
61652008-02-01 Vladimir Prus <vladimir@codesourcery.com>
6166
6167 Properly rethrow exception. This fixes errors
6168 about non-existent functions for -break-insert.
680b56ce
AS
6169 * breakpoint.c (break_command_really): Use throw_exception
6170 for rethrowing. If rethrowing, don't print the exception.
723a2275 6171
d64a946d
TJB
61722008-01-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
6173
6174 * NEWS: Mention Decimal Floating Point support.
6175
02b156f5
JB
61762008-01-31 Joel Brobecker <brobecker@adacore.com>
6177
6178 * std-regs.c (value_of_builtin_frame_pc_reg): Change the returned
6179 value type to builtin_type_void_func_ptr.
6180
a16b8bcd
UW
61812008-01-31 Andreas Krebbel <krebbel1@de.ibm.com>
6182
6183 * s390-tdep.c (is_float_singleton, is_float_like,
6184 alignment_of, s390_return_value): Make checks for
6185 TYPE_CODE_FLT to match TYPE_CODE_DECFLOAT as well.
6186
f949c649
TJB
61872008-01-31 Luis Machado <luisgpm@br.ibm.com>
6188 Thiago Jung Bauermann <bauerman@br.ibm.com>
6189
6190 * infcmd.c (default_print_registers_info): Also print hex
6191 raw contents for TYPE_CODE_DECFLOAT registers.
6192 * ppc-tdep.h (gdbarch_tdep): Add ppc_dl0_regnum member.
6193 * rs6000-tdep.c (IS_DFP_PSEUDOREG): New macro.
6194 (rs6000_register_name): Add support for DFP pseudo-registers.
6195 (rs6000_pseudo_register_type): Likewise.
6196 rs6000_pseudo_register_reggroup_p): Likewise.
6197 (ppc_pseudo_register_read): New function.
6198 (ppc_pseudo_register_write): Likewise.
6199 (rs6000_pseudo_register_read): Likewise.
6200 (rs6000_pseudo_register_write): Likewise.
6201 (e500_pseudo_register_read): Move checks to
6202 rs6000_pseudo_register_read.
6203 (e500_pseudo_register_write): Move checks to
6204 rs6000_pseudo_register_write.
6205 (rs6000_gdbarch_init): Initialize tdep->ppc_dl0_regnum. Install
6206 rs6000_pseudo_register_read and rs6000_pseudo_register_write
6207 in gdbarch if SPE or DFP is available. Adjust gdbarch's
6208 num_pseudo_regs to account for DFP pseudo regs.
6209
5a9e69ba
TJB
62102008-01-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
6211
6212 * ppc-tdep.h (struct gdbarch_tdep): Remove ppc_ev31_regnum member.
6213 * rs6000-tdep.c (IS_SPE_PSEUDOREG): New macro.
6214 (spe_register_p, rs6000_register_name, rs6000_pseudo_register_type,
6215 rs6000_pseudo_register_reggroup_p, e500_move_ev_register,
6216 e500_pseudo_register_read, e500_pseudo_register_write): Use
6217 IS_SPE_PSEUDOREG macro.
6218 (rs6000_frame_cache): Remove use of tdep->ppc_ev31_regnum.
6219 (rs6000_gdbarch_init): Remove unnecessary num_sprs local variable.
6220 Remove initialization of tdep->ppc_ev31_regnum.
6221
4e885b20
JB
62222008-01-08 Paul Hilfinger <hilfinger@adacore.com>
6223
6224 * printcmd.c (print_formatted): Handle references as for unformatted
6225 prints.
6226
80f064a2
JB
62272008-01-30 Joel Brobecker <brobecker@adacore.com>
6228
6229 * eval.c (evaluate_subexp_standard): Add handling of user
6230 registers when in EVAL_AVOID_SIDE_EFFECTS mode.
6231
9b3442ee
PM
62322008-01-30 Pierre Muller <muller@ics.u-strasbg.fr>
6233
6234 * eval.c (evaluate_subexp_standard): Support
6235 BINOP_INTDIV opcode.
6236
d118ef87
PH
62372008-01-30 Paul N. Hilfinger <hilfinger@adacore.com>
6238
6239 * valarith.c (value_binop): Add floating-point BINOP_MIN and
6240 BINOP_MAX cases.
6241 For BINOP_EXP, use length and signedness of left operand only for
6242 result, as for shifts.
6243 For integral operands to BINOP_EXP, use new integer_pow and
6244 uinteger_pow functions so as to get full range of results.
6245 (integer_pow): New function.
6246 (uinteger_pow): New function.
6247
d56d46f5
VP
62482008-01-30 Vladimir Prus <vladimir@codesourcery.com>
6249
6250 Use vector for varobj_list_children interface.
680b56ce
AS
6251 * gdb/varobj.c (varobj_list_children): Return vector
6252 of varobjs.
6253 * gdb/varobj.h (varobj_list_children): Adjust
6254 prototype.
6255 (varobj_p): Declare. Declare vector thereof.
6256 * mi/mi-cmd-var.c (mi_cmd_var_list_children): Adjust
6257 for varobj_list_children change.
d56d46f5
VP
6258 * Makefile.in (varobj_h): Update dependencies.
6259
1300a2f4
TJB
62602008-01-30 Thiago Jung Bauermann <bauerman@br.ibm.com>
6261
6262 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Add support for
6263 TYPE_CODE_DECFLOAT arguments.
6264 (ppc64_sysv_abi_push_dummy_call) Likewise.
6265 (get_decimal_float_return_value): New function.
6266 (do_ppc_sysv_return_value): Add support for TYPE_CODE_DECFLOAT return
6267 values by calling get_decimal_float_return_value.
6268 (ppc64_sysv_abi_return_value): Likewise.
6269
95ef687d
NR
62702008-01-30 Nick Roberts <nickrob@snap.net.nz>
6271
6272 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Add field
6273 for preprocessor macro information. Formatting changes.
6274
2d717e4f
DJ
62752008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
6276
6277 * remote.c (struct remote_state): Add cached_wait_status.
6278 (remote_exec_file): New variable.
6279 (PACKET_vAttach, PACKET_vRun): New constants.
6280 (extended_remote_restart): Do not query for status.
6281 (struct start_remote_args): New.
6282 (remote_start_remote): Take it as a second argument. Check
6283 whether the target is running. Issue an error for non-running
6284 non-extended targets. Cache the wait status. Set inferior_ptid
6285 here.
6286 (remote_open_1): Prompt to disconnect non-running targets. Make
6287 sure the target is marked running. Do not set inferior_ptid here.
6288 Update call to remote_start_remote. Do not call remote_check_symbols
6289 if the target is not running.
6290 (remote_detach_1): Rename from remote_detach. Take an EXTENDED
6291 argument. Handle a non-running target.
6292 (remote_detach): Use it.
6293 (extended_remote_detach): New.
6294 (remote_disconnect): Fix typo. Use remoute_mourn_1.
6295 (extended_remote_attach_1, extended_remote_attach)
6296 (extended_async_remote_attach): New.
6297 (remote_vcont_resume): Remove unused variable.
6298 (remote_wait, remote_async_wait): Use any cached wait status.
6299 (putpkt_binary, getpkt): Clear any cached wait status.
6300 (extended_remoute_mourn_1): New.
6301 (extended_remote_mourn): Use it.
6302 (extended_async_remote_mourn, extended_remote_run): New.
6303 (extended_remote_create_inferior_1): New.
6304 (extended_remote_create_inferior): Use it.
6305 (extended_remote_async_create_inferior): Likewise.
6306 (remote_xfer_partial): Skip for non-executing targets.
6307 (init_extended_remote_ops): Set to_detach and to_attach.
6308 (init_extended_async_remote_ops): Likewise. Use
6309 extended_async_remote_mourn.
6310 (_initialize_remote): Register vAttach, vRun, and
6311 set remote exec-file.
6312 * NEWS: Mention vAttach, vRun, and gdbserver extended-remote support.
6313
e85a822c
DJ
63142008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
6315
6316 * Makefile.in (symfile.o): Update.
6317 * NEWS: Mention exec tracing support.
6318 * inf-ttrace.c (inf_ttrace_wait): Return TARGET_WAITKIND_EXECD for
6319 exec events.
6320 * infcmd.c (kill_if_already_running, detach_command)
6321 (disconnect_command): Replace SOLIB_RESTART with no_shared_libraries.
6322 * infrun.c (MAY_FOLLOW_EXEC, may_follow_exec): Delete.
6323 (follow_exec): Do not check may_follow_exec. Do not mourn and push
6324 targets. Apply the sysroot path to the loaded executable. Use
6325 no_shared_libraries.
6326 * linux-nat.c (linux_child_follow_fork): Print fork following
6327 messages if verbose.
6328 (kill_wait_callback): Kill again before waiting a second time.
6329 * symfile.c (symbol_file_clear): Replace SOLIB_RESTART with
6330 no_shared_libraries.
6331
9db13498
JB
63322008-01-29 Joel Brobecker <brobecker@adacore.com>
6333
6334 * amd64-tdep.c (amd64_classify): Add handling of TYPE_CODE_CHAR.
6335
b4d5ed91
JB
63362008-01-29 Joel Brobecker <brobecker@adacore.com>
6337
6338 * nto-tdep.h: Remove #include "defs.h".
6339 * nto-tdep.c: Add #include "defs.h".
6340 * Makefile.in (nto_tdep_h): Update dependencies.
6341 (nto-tdep.o): Likewise.
6342
107313f7 63432008-01-29 Joel Brobecker <brobecker@adacore.com>
ae123ec6
JB
6344
6345 * infrun.c (wait_for_inferior): Add treat_exec_as_sigtrap parameter
6346 and use it.
6347 (proceed, start_remote): Update call to wait_for_inferior.
6348 * inferior.h (wait_for_inferior): Update declaration.
6349 * fork-child.c, infcmd.c, solib-irix.c, solib-osf.c, solib-sunos.c,
6350 solib-svr4.c, win32-nat.c: Update calls to wait_for_inferior.
6351 * inf-ttrace.c (inf_ttrace_wait): Report TTEVT_EXEC events as
6352 TARGET_WAITKIND_EXECD instead of TARGET_WAITKIND_STOPPED.
6353
3f4178d6
DJ
63542008-01-29 Aleksandar Ristovski <aristovski@qnx.com>
6355
680b56ce 6356 * varobj (adjust_value_for_child_access): Added checking for
3f4178d6
DJ
6357 returned value from gdb_value_ind.
6358 (c_describe_child): Likewise.
6359 (cplus_describe_child): Fixed a typo.
6360
5eeba8d4
JB
63612008-01-29 Jim Blandy <jimb@red-bean.com>
6362
6363 * MAINTAINERS: Update my info.
6364
a5606eee
VP
63652008-01-29 Vladimir Prus <vladimir@codesourcery.com>
6366
6367 Use multiple locations for hardware watchpoints.
6368 This eliminates the need to traverse value chain, doing
6369 various checks, in three different places.
6370
680b56ce
AS
6371 * breakpoint.h (struct bp_location): New fields
6372 lengths and watchpoint_type.
6373 (struct breakpoint): Remove the val_chain field.
6374 * breakpoint.c (is_hardware_watchpoint): New.
6375 (free_valchain): Remove.
6376 (update_watchpoint): New.
6377 (insert_bp_location): For hardware watchpoint, just
6378 directly insert it.
6379 (insert_breakpoints): Call update_watchpoint_locations
6380 on all watchpoints. If we have failed to insert
6381 any location of a hardware watchpoint, remove all inserted
6382 locations.
6383 (remove_breakpoint): For hardware watchpoints, directly
6384 remove location.
6385 (watchpoints_triggered): Iterate over locations.
6386 (bpstat_stop_status): Use only first location of
6387 a resource watchpoint.
6388 (delete_breakpoint): Don't call free_valchain.
6389 (print_one_breakpoint): Don't print all
6390 locations for watchpoints.
6391 (breakpoint_re_set_one): Use update_watchpoint for
6392 watchpoints.
a5606eee 6393
0b3de036
VP
63942008-01-29 Vladimir Prus <vladimir@codesourcery.com>
6395
6396 Don't reset watchpoint block on solib load.
6397
680b56ce
AS
6398 * breakpoint.c (insert_bp_location): For watchpoints,
6399 recompute condition.
6400 (breakpoint_re_set_one): Instead of recomputing value
6401 and condition for watchpoints, just reset value and
6402 let insert_breakpoints/insert_bp_location recompute it.
6403 Don't do anything about disabled watchpoint.
0b3de036 6404
c3940723
PM
64052008-01-29 Pierre Muller <muller@ics.u-strasbg.fr>
6406
6407 * valarith.c (value_binop): Handle unsigned integer
6408 division by zero.
6409
83845630
KB
64102008-01-28 Kevin Buettner <kevinb@redhat.com>
6411
6412 * mn10300-tdep.c (mn10300_analyze_prologue): Check for an
6413 instruction pattern that appears frequently in position
6414 independent code. Fix bug in code which looks for "fmov" and
6415 backtracks if no "fmov" is found.
6416
9ce5d3bb
DE
64172008-01-28 Doug Evans <dje@google.com>
6418
6419 * dbxread.c (read_dbx_symtab): Fix indentation.
131fe1bb
DE
6420 Reformat comments to 80 columns.
6421 Move local var def closer to only use.
9ce5d3bb 6422
c78d192c
DJ
64232008-01-28 Daniel Jacobowitz <dan@codesourcery.com>
6424
6425 * fork-child.c (SHELL_FILE): Remove #ifndef.
6426 (fork_inferior): Remove SHELL_COMMAND_CONCAT.
6427
e11481da
PM
64282008-01-25 Pierre Muller <muller@ics.u-strasbg.fr>
6429
6430 * i386-tdep.c (i386_skip_noop): New function.
6431 (i386_analyze_prologue): Call i386_skip_noop function.
6432
244e85c8
MS
64332008-01-24 Michael Snyder <msnyder@specifix.com>
6434
6435 * procfs.c (procfs_xfer_partial): Comment, cut/paste error.
6436 * win32-nat.c (win32_xfer_partial): Ditto.
6437 * target.c (default_xfer_partial): Minor whitespace adjustment.
6438
dd6be234
PA
64392008-01-24 Pedro Alves <pedro@codesourcery.com>
6440
6441 * arm-tdep.c (arm_addr_bits_remove): In non 26-bit mode, don't
6442 strip bit 1 even if pc doesn't point to thumb code.
6443
9fa2223d
DJ
64442008-01-23 Daniel Jacobowitz <dan@codesourcery.com>
6445
6446 * remote.c (remote_wait): Handle SIGINT between packets.
6447 (remote_async_wait): Likewise.
6448
93815fbf
VP
64492008-01-23 Vladimir Prus <vladimir@codesourcery.com>
6450 Chris Demetriou <cgd@google.com>
6451
680b56ce
AS
6452 * thread.c (add_thread_silent): Renamed
6453 from add_thread.
6454 (print_thread_events): New variable definition.
6455 (show_print_thread_events): New function.
6456 (_initialize_thread): Add "set print thread-events" and
6457 "show print thread-events" commands.
6458 (add_thread): Announce new thread.
6459 * gdbthread.h (add_thread_silent): Declare.
6460 (print_thread_events): New variable declaration.
6461 * inf-ttrace.c (inf_ttrace_wait): Don't
6462 inform about new thread, as add_thread is always
6463 called too, and will take care of that.
6464 * infrun.c (handle_inferior_event): Likewise.
6465 * procfs.c (procfs_wait): Likewise.
6466 * remote.c (remote_currthread): Likewise.
6467 * sol-thread.c (sol_thread_wait): Likewise.
6468 * win32-nat.c (get_win32_debug_event): Likewise.
6469 * linux-thread-db.c (attach_thread): Likewise.
6470 Remove the verbose parameter.
6471 (check_event): Make detach_thread be verbose
6472 only if print_thread_events is set.
6473 * linux-nat.c (lin_lwp_attach_lwp): Don't inform
6474 about new thread. This is called only from
6475 linux-thread-db.c:attach_thread, which will take care.
6476 Remove the verbose parameter.
6477 * linux-nat.h (lin_lwp_attach_lwp): Adjust prototype.
93815fbf 6478
b4d7c9a6
NR
64792008-01-23 Nick Roberts <nickrob@snap.net.nz>
6480
6481 * mi/mi-cmd-var.c (mi_cmd_var_set_format): Add value field to output.
6482
60c46647
VP
64832008-01-22 Vladimir Prus <vladimir@codesourcery.com>
6484
6485 * breakpoint.c (break_command_really): New parameter
6486 ignore_count.
6487 (break_command_1): Pass 0 as
6488 ignore_count to break_command_really.
6489 (gdb_breakpoint): Pass ignore_count to
6490 break_command_really.
6491
e84605cd
KB
64922008-01-21 Kevin Buettner <kevinb@redhat.com>
6493
6494 * mn10300-linux-tdep.c (am33_linux_sigframe_cache_init): Find
6495 sigcontext struct via pointer.
6496 (struct sigframe comment): Update to show new field `psc'.
6497
9d9cd7ac
VP
64982008-01-21 Vladimir Prus <vladimir@codesourcery.com>
6499
6500 * infrun.c (handle_inferior_event): If
6501 we failed to remove breakpoints, error,
6502 don't try to increment PC by hand.
6503
af5ca30d
NH
65042008-01-18 Nick Hudson <nick.hudson@dsl.pipex.com>
6505
6506 Add NetBSD/hppa target and host support.
6507
6508 * hppabsd-tdep.c (hppabsd_supply_gregset): Move to ...
6509 (hppabsd_gregset): Move to ...
6510 (hppabsd_regset_from_core_section): Rename
6511 hppaobsd_regset_from_core_section and move to ...
6512 (hppabsd_find_global_pointer): Update comment.
6513 (hppabsd_init_abi): Make global. Do not register
6514 hppabsd_regset_from_core_section.
6515 (hppabsd_core_osabi_sniffer): Rename hppaobsd_core_osabi_sniffer and
6516 move to ...
6517 (_initialize_hppabsd_tdep): Move to ...
6518 * hppaobsd-tdep.c: ... here. New file.
6519 * hppnbsd-tdep.c: New file.
6520 * hppnbsd-nat.c: New file.
680b56ce 6521 * Makefile.in (ALL_TARGET_OBS): Add hppanbsd-tdep.o and hppaobsd-tdep.o.
af5ca30d 6522 (ALLDEPFILES): Add hppabsd-nat.c and hppabsd-tdep.c.
680b56ce
AS
6523 (hppabsd-nat.o, hppabsd-tdep.o): New dependencies.
6524 (hppabsd-tdep.o, hppaobsd-tdep.o): Update dependencies.
af5ca30d
NH
6525 * configure.host (hppa*-*-netbsd*): New entry.
6526 * configure.tgt (hppa*-*-netbsd*): New entry.
6527 (hppa*-*-openbsd*): Update.
6528 * NEWS (New native configuration): Mention NetBSD/hppa.
6529 (New targets): Mention NetBSD/hppa.
6530
32c9a795
MD
65312008-01-18 Markus Deuling <deuling@de.ibm.com>
6532
6533 * gdbarch.sh (function_list): Add new property bits_big_endian to
6534 gdbarch structure.
6535 * gdbarch.{c,h}: Regenerate.
6536
6537 * value.c (struct value): Replace BITS_BIG_ENDIAN by
6538 gdbarch_bits_big_endian (comment).
6539 (unpack_field_as_long, modify_field): Likewise.
6540 * value.h: Likewise (comment).
6541 * valops.c (value_slice): Likewise.
6542 * valarith.c (value_subscript, value_bit_index): Likewise.
6543 * gdbtypes.h (field): Likewise (comment).
6544 * eval.c (evaluate_subexp_standard): Likewise.
6545 * dwarf2read.c (dwarf2_add_field): Likewise.
6546 * ada-lang.c (decode_packed_array, ada_value_primitive_packed_val)
6547 (move_bits, ada_value_assign, value_assign_to_component): Likewise.
680b56ce 6548
32c9a795
MD
6549 * defs.h (BITS_BIG_ENDIAN): Remove.
6550
1e5e79d0
MD
65512008-01-18 Markus Deuling <deuling@de.ibm.com>
6552
6553 * jv-exp.y (yylex): Replace DEPRECATED_STREQN with the appropriate
6554 function calls.
6555 * m2-exp.y (yylex): Likewise.
6556 * objc-exp.y (yylex): Likewise.
6557
6558 * defs.h (DEPRECATED_STREQN): Remove.
6559
fabda5a7
L
65602008-01-17 H.J. Lu <hjl.tools@gmail.com>
6561
6562 * MAINTAINERS: Update my email address.
6563
92726479
JB
65642008-01-17 Jim Blandy <jimb@codesourcery.com>
6565
6566 * README: Mention gdbserver/README.
6567
ef80d18e
PM
65682008-01-17 Pierre Muller <muller@ics.u-strasbg.fr>
6569
6570 * valarith.c (value_binop): Handle BINOP_INTDIV
6571 for unsigned and signed integers.
6572
1de90795
UW
65732008-01-17 Ulrich Weigand <uweigand@de.ibm.com>
6574
6575 * s390-tdep.c (s390_gdbarch_init): Set default long double
6576 type to 128-bit IEEE quad.
6577
c70bd6f3
JB
65782008-01-17 Joel Brobecker <brobecker@adacore.com>
6579
6580 * hpux-thread.c (hpux_thread_resume): Delete commented-out code.
6581
ba759613
MK
65822008-01-16 Mark Kettenis <kettenis@gnu.org>
6583
77d49ac6
MK
6584 * auxv.c (fprint_target_auxv): Add support for AT_SUN_AUXFLAGS.
6585
ba759613
MK
6586 * dfp.c, dfp.h: Rename decimal_to_double to decimal_to_doublest.
6587 * value.c: All callers changed.
6588
7ecb6532
MD
65892008-01-16 Markus Deuling <deuling@de.ibm.com>
6590
6591 * rs6000-nat.c (add_vmap, vmap_ldinfo, vmap_exec): Replace
6592 DEPRECATED_STREQ by its expression.
6593 * coffread.c (coff_locate_sections, coff_symtab_read): Likewise.
6594 * xcoffread.c (read_xcoff_symtab, read_symbol_lineno, find_linenos)
6595 (scan_xcoff_symtab): Likewise.
6596 * hppa-hpux-tdep.c (hppa_hpux_skip_trampoline_code): Likewise.
6597 * f-lang.c (find_common_for_function): Likewise.
6598 * objc-exp.y (parse_number): Likewise.
6599
6600 * defs.h (DEPRECATED_STREQ): Remove.
6601
d15cf01c
MD
66022008-01-16 Markus Deuling <deuling@de.ibm.com>
6603
6604 * mn10300-tdep.h (AM33_MODE): Add gdbarch as parameter.
6605 * mn10300-tdep.c (set_reg_offsets, mn10300_analyze_prologue): Use
6606 get_frame_arch to get at the current_architecture. Update AM33_MODE
6607 call.
6608 (mn10300_analyze_prologue): Add gdbarch as parameter. Update caller.
6609 (mn10300_frame_unwind_cache): Use get_frame_arch to get at the current
6610 architecture.
6611 (set_reg_offsets, mn10300_analyze_prologue): Fix indentation.
6612
f8028488
MD
66132008-01-16 Markus Deuling <deuling@de.ibm.com>
6614
680b56ce 6615 * amd64-nat.h (amd64_native_gregset_supplies_p): Add gdbarch as
f8028488
MD
6616 parameter.
6617 * amd64-nat.c (amd64_native_gregset_supplies_p): Likewise.
6618
6619 (amd64_native_gregset_reg_offset): Add gdbarch as parameter. Replace
6620 current_gdbarch by gdbarch. Update caller.
6621
6622 * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers)
6623 (amd64_linux_store_inferior_registers): Use get_regcache_arch to get at
6624 the current architecture. Update calls of
6625 amd64_native_gregset_supplies_p.
6626 * amd64bsd-nat.c (amd64bsd_fetch_inferior_registers)
6627 (amd64bsd_store_inferior_registers): Likewise.
6628
e101270f
MD
66292008-01-16 Markus Deuling <deuling@de.ibm.com>
6630
6631 * ppc-linux-nat.c (ppc_register_u_addr): Add gdbarch as parameter.
6632 Replace current_gdbarch by gdbarch. Update caller.
6633
063e58ba
MD
66342008-01-16 Markus Deuling <deuling@de.ibm.com>
6635
6636 * dbxread.c (repeated_header_complaint, dbx_symfile_init)
6637 (read_dbx_dynamic_symtab, function_outside_compilation_unit_complaint)
6638 (read_dbx_symtab, end_psymtab, dbx_psymtab_to_symtab_1)
6639 (dbx_psymtab_to_symtab, read_ofile_symtab, process_one_symbol)
6640 (stabsect_build_psymtabs): Fix indentation.
6641
662fb31b
MS
66422008-01-15 Michael Snyder <msnyder@specifix.com>
6643
6644 * corelow.c (core_xfer_partial): Comment, cut/paste error.
6645
c1766e7d
PM
66462008-01-14 Pierre Muller <muller@ics.u-strasbg.fr>
6647
6648 * win32-nat.c (win32_create_inferior): Restore code calling
6649 CloseHandle on ProcessInformation structure.
6650
5ed10e6e
NH
66512008-01-13 Nick Hudson <nick.hudson@dsl.pipex.com>
6652
6653 * configure.ac: Check for void * as 3 argument of ptrace.
6654 * configure: regenerate.
6655
be8626e0
MD
66562008-01-11 Markus Deuling <deuling@de.ibm.com>
6657
6658 * alpha-tdep.c (alpha_heuristic_proc_start)
6659 (alpha_sigtramp_register_address): Add gdbarch as parameter. Replace
6660 current_gdbarch by gdbarch.
6661
6662 (alpha_heuristic_frame_unwind_cache): Use get_frame_arch to get at the
680b56ce 6663 current architecture by frame_info. Update alpha_heuristic_proc_start
be8626e0
MD
6664 call.
6665
6666 (alpha_sigtramp_frame_this_id, alpha_sigtramp_frame_prev_register): Use
6667 get_frame_arch to get at the current architecture by frame_info. Update
6668 alpha_sigtramp_register_address call.
6669
6670 * arm-tdep.c (thumb_scan_prologue): Add gdbarch as parameter and replace
6671 current_gdbarch by gdbarch. Update caller.
6672 (convert_to_extended, convert_from_extended): Add endianess parameter
6673 for comparison. Update caller.
6674 (arm_extract_return_value, arm_store_return_value): Use
6675 get_regcache_arch to get at the current architecture.
6676
6677 * cris-tdep.c (cris_register_size): Add gdbarch as parameter. Replace
6678 current_gdbarch by gdbarch. Update caller.
6679 (cris_gdb_func, move_to_preg_op, none_reg_mode_move_from_preg_op): Add
6680 gdbarch as parameter. Update caller. Replace current_gdbarch by gdbarch.
6681
6682 * h8300-tdep.c (E_PSEUDO_CCR_REGNUM, E_PSEUDO_EXR_REGNUM, BINWORD): Add
680b56ce 6683 gdbarch as parameter. Update caller.
be8626e0
MD
6684 (h8300_init_frame_cache): Add gdbarch as parameter. Replace
6685 current_gdbarch by gdbarch. Update caller.
6686
680b56ce 6687 * hppa-tdep.c (skip_prologue_hard_way): Add gdbarch as parameter and
be8626e0
MD
6688 update caller. Replace current_gdbarch by gdbarch.
6689
6690 * m32c-tdep.c (m32c_skip_trampoline_code): Use get_frame_arch to get at
6691 the current architecture. Replace current_gdbarch by gdbarch.
6692 * m68hc11-tdep.c (m68hc11_frame_unwind_cache): Likewise.
6693 (STACK_CORRECTION, USE_PAGE_REGISTER): Replace M6811_TDEP by its
6694 expression. Add gdbarch as parameter and replace current_gdbarch with
6695 it. Update caller.
6696 (M6811_TDEP): Remove.
6697 (m68hc11_frame_prev_register): Use get_frame_arch to get at the current
6698 architecture.
680b56ce 6699 (m68hc11_scan_prologue): Add gdbarch as parameter. Replace
be8626e0
MD
6700 current_gdbarch by gdbarch. Update caller.
6701
6702 * m68k-tdep.c (m68k_analyze_prologue): Add gdbarch as parameter and
6703 update caller.
6704 (m68k_analyze_register_saves): Likewise. Also replace current_gdbarch
6705 by gdbarch.
6706
6707 * rs6000-tdep.c (skip_prologue): Add gdbarch as parameter and update
6708 caller. Relace current_gdbarch by gdbarch.
6709 (altivec_register_p, spe_register_p): Likewise.
6710 * ppc-tdep.h (altivec_register_p, spe_register_p): Add gdbarch as
6711 parameter.
6712 * ppc-linux-nat.c (fetch_register, store_register): Update caller of
6713 altivec_register_p and spe_register_p.
6714
680b56ce 6715 * score-tdep.c (score_fetch_inst): Add gdbarch as parameter. Update
be8626e0
MD
6716 caller. Replace current_gdbarch by gdbarch.
6717 (score_analyze_prologue): use get_frame_arch to get at the current
680b56ce 6718 architecture.
be8626e0
MD
6719
6720 * sparc-tdep.h (sparc_analyze_prologue): Add gdbarch as parameter.
6721 * sparc-tdep.c (sparc_analyze_prologue): Likewise. Replace
6722 current_gdbarch by gdbarch. Update caller.
6723 (sparc_frame_cache): Use get_frame_arch to get at the current
6724 architecture.
6725 * sparce64-tdep.c (sparc64_skip_prologue): Update call of
6726 sparc_analyze_prologue.
6727
6728 * mn10300-tdep.c (mn10300_dwarf2_reg_to_regnum): Add gdbarch as
6729 parameter.
6730
ed49a04f
MD
67312008-01-11 Markus Deuling <deuling@de.ibm.com>
6732
6733 * exec.c: #include "arch-utils.h"
6734 (print_section_info): Use gdbarch_from_bfd to get at the
6735 current architecture. Replace current_gdbarch. Fix indention. Replace
6736 deprecated_print_address_numeric by paddress.
6737 * Makefile.in (exec.o) Add dependency to arch-utils.h.
6738
680b56ce 6739 * valprint.c (val_print_string): Replace
ed49a04f
MD
6740 deprecated_print_address_numeric.
6741 * tracepoint.c (trace_mention, scope_info): Likewise.
6742 * symmisc.c (dump_msymbols, dump_psymtab, dump_symtab_1, print_symbol)
6743 (print_symbol, print_partial_symbols, maintenance_info_psymtabs)
6744 (maintenance_check_symtabs): Likewise.
6745 * symfile.c (list_overlays_command): Likewise.
6746 * stack.c (frame_info, print_block_frame_labels): Likewise.
6747 * printcmd.c (print_address, print_address_demangle)
6748 (address_info): Likewise.
6749 * corefile.c (memory_error): Likewise.
6750 * infcmd.c (jump_command): Likewise.
6751 * breakpoint.c (insert_bp_location, describe_other_breakpoints)
6752 (mention, delete_breakpoint): Likewise.
6753 * c-valprint.c (print_function_pointer_address, c_val_print): Likewise.
6754 * dwarf2read.c (dump_die): Likewise.
6755 * ada-valprint.c (ada_val_print_1): Likewise.
6756 * f-valprint.c (f_val_print): Likewise.
680b56ce 6757 * linux-fork.c (info_forks_command): Likewise.
ed49a04f
MD
6758 * m32r-com.c (m32r_load_section, m32r_load)
6759 (m32r_upload_command): Likewise.
6760
6761 * ui-out.c (ui_out_field_core_addr): Remove unnecessary comment.
6762
6093d2eb
MD
67632008-01-11 Markus Deuling <deuling@de.ibm.com>
6764
6765 * gdbarch.sh (skip_prologue): Add gdbarch
6766 as parameter.
6767 * gdbarch.{c,h}: Regenerate.
6768
6769 * alpha-tdep.c (alpha_skip_prologue): Add gdbarch as parameter.
6770 * amd64-tdep.c (amd64_skip_prologue): Likewise.
6771 * avr-tdep.c (avr_skip_prologue): Likewise.
6772 * cris-tdep.c (cris_skip_prologue): Likewise.
6773 * frv-tdep.c (frv_skip_prologue): Likewise.
6774 * h8300-tdep.c (h8300_skip_prologue): Likewise.
6775 * hppa-tdep.c (hppa_skip_prologue): Likewise.
6776 * i386-tdep.c (i386_skip_prologue): Likewise.
6777 * ia64-tdep.c (ia64_skip_prologue): Likewise.
6778 * iq2000-tdep.c (iq2000_skip_prologue): Likewise.
6779 * m32r-tdep.c (m32r_skip_prologue): Likewise.
6780 * m68hc11-tdep.c (m68hc11_skip_prologue): Likewise.
6781 * m68k-tdep.c (m68k_skip_prologue): Likewise.
6782 * m88k-tdep.c (m88k_skip_prologue): Likewise.
6783 * mep-tdep.c (mep_skip_prologue): Likewise.
6784 * mips-tdep.c (mips_skip_prologue): Likewise.
6785 * mn10300-tdep.c (mn10300_skip_prologue): Likewise.
6786 * mt-tdep.c (mt_skip_prologue): Likewise.
6787 * rs6000-tdep.c (rs6000_skip_prologue): Likewise.
6788 * score-tdep.c (score_skip_prologue): Likewise.
6789 * sh64-tdep.c (sh64_skip_prologue): Likewise.
6790 * sh-tdep.c (sh_skip_prologue): Likewise.
6791 * sparc64-tdep.c (sparc64_skip_prologue): Likewise.
6792 * sparc-tdep.c (sparc32_skip_prologue): Likewise.
6793 * spu-tdep.c (spu_skip_prologue): Likewise.
6794 * v850-tdep.c (v850_skip_prologue): Likewise.
6795 * vax-tdep.c (vax_skip_prologue): Likewise.
6796 * xstormy16-tdep.c (xstormy16_skip_prologue): Likewise.
6797 * xtensa-tdep.c (xtensa_skip_prologue): Likewise.
6798
6799 * arm-tdep.c (arm_skip_prologue): Add gdbarch as parameter. Replace
6800 current_gdbarch by gdbarch.
6801 * m32c-tdep.c (m32c_skip_prologue): Likewise.
6802 * s390-tdep.c (s390_skip_prologue): Likewise.
6803
72f5cf0e
DE
68042008-01-10 Doug Evans <dje@google.com>
6805
6806 * defs.h (struct continuation_arg): Fix typo in comment.
6807 * target.c (target_translate_tls_address): Fix comment spelling error.
6808
689e4e2d
TJB
68092008-01-09 Thiago Jung Bauermann <bauerman@br.ibm.com>
6810
6811 * doublest.h (DOUBLEST_PRINT_FORMAT): Remove % from string.
6812 (DOUBLEST_SCAN_FORMAT): Likewise.
6813 * dfp.c (decimal_from_floating): Use DOUBLEST_PRINT_FORMAT.
6814 * ada-lex.l (processReal): Prepend "%" to use of DOUBLEST_SCAN_FORMAT.
6815 * c-exp.y (parse_number): Likewise.
6816 * jv-exp.y (parse_number): Likewise.
6817 * objc-exp.y (parse_number): Likewise.
6818 * p-exp.y (parse_number): Likewise.
6819
ab0d6e0d
JB
68202008-01-09 Joel Brobecker <brobecker@adacore.com>
6821
6822 * gdbtypes.c (create_array_type): Add handling of null Ada arrays.
6823 (check_typedef): Likewise.
6824
0aea4bf3
LM
68252008-01-09 Luis Machado <luisgpm@br.ibm.com>
6826
6827 * printcmd.c (printf_command): Add seen_big_h, seen_big_d and
6828 seen_double_big_d, treat the new H, D, and DD modifiers as length
6829 modifiers.
6830
137033e9
JB
68312008-01-08 Joel Brobecker <brobecker@adacore.com>
6832
6833 * dwarf2read.c (read_enumeration_type): Add comment.
6834
dda297ec
TJB
68352008-01-08 Thiago Jung Bauermann <bauerman@br.ibm.com>
6836
6837 * config.in: Regenerate.
6838
a93c0eb6
JB
68392008-01-08 Joel Brobecker <brobecker@adacore.com>
6840
6841 * ada-lang.c (ada_convert_actual): Renames convert_actual.
6842 Make non-static.
6843 (ada_convert_actuals): Delete.
6844 * ada-lang.h (ada_convert_actual): Add declaration.
6845 (ada_convert_actuals): Remove declaration.
6846 * infcall.c: #include "ada-lang.h".
6847 (value_arg_coerce): Add new parameter sp. Update function
6848 documetnation. Add handling of Ada function call parameters.
6849 * Makefile.in (infcall.o): Update dependencies.
6850
a84a8a0d
JB
68512008-01-08 Paul Hilfinger <hilfinger@adacore.com>
6852
6853 * ada-lang.c (ensure_lval): Fix value lval kind.
6854 (convert_actual): Add handling for arguments passed by reference.
6855
d7f98cce
DE
68562008-01-08 Doug Evans <dje@google.com>
6857
6858 * dbxread.c (read_dbx_symtab): Fix indentation.
6859
4ef30785
TJB
68602008-01-07 Thiago Jung Bauermann <bauerman@br.ibm.com>
6861
6862 * Makefile.in (dfp.o): Depend on expression.h, gdbtypes.h and value.h.
6863 (valarith.o): Depend on dfp.h.
6864 (valops.o): Likewise.
6865 * dfp.c: Include expression.h, gdbtypes.h, value.h and dfp.h.
6866 (set_decnumber_context): New function.
6867 (decimal_check_errors): Likewise.
6868 (decimal_from_number): Likewise.
6869 (decimal_to_number): Likewise.
6870 (decimal_from_string): Use set_decnumber_context and
6871 decimal_check_errors.
6872 (decimal_from_integral): New function.
6873 (decimal_from_floating): Likewise.
6874 (decimal_to_double): Likewise.
6875 (promote_decimal): Likewise.
6876 (decimal_binop): Likewise.
6877 (decimal_is_zero): Likewise.
6878 (decimal_compare): Likewise.
6879 (decimal_convert): Likewise.
6880 * dfp.h (decimal_from_integral): New prototype.
6881 (decimal_from_floating): Likewise.
6882 (decimal_to_double): Likewise.
6883 (decimal_binop): Likewise.
6884 (decimal_is_zero): Likewise.
6885 (decimal_compare): Likewise.
6886 (decimal_convert): Likewise.
6887 * eval.c (evaluate_subexp_standard): Remove expect_type argument from
6888 call to value_from_decfloat.
6889 * valarith.c: Include dfp.h.
6890 (value_args_as_decimal): New function.
6891 (value_binop): Add if block to handle TYPE_CODE_DECFLOAT values.
6892 (value_logical_not): Likewise.
6893 (value_equal): Likewise.
6894 (value_less): Likewise.
6895 (value_pos): Likewise.
6896 (value_neg): Formatting fix.
6897 * valops.c: Include dfp.h.
6898 (value_cast): Add if block to handle TYPE_CODE_DECFLOAT values.
6899 * value.c (unpack_long): Add case to handle TYPE_CODE_DECFLOAT.
6900 (unpack_double): Add if block to handle TYPE_CODE_DECFLOAT.
6901 (value_from_decfloat): Remove expect_type argument.
6902 * value.h (value_from_decfloat): Update prototype.
6903
a7c02bc8
VP
69042008-01-07 Vladimir Prus <vladimir@codesourcery.com>
6905
6906 Ignore change in name of dynamic linker during
6907 execution on Solaris. This also unbreaks pending breakpoints.
6908
6909 * solist.h (struct target_so_ops): New field same.
680b56ce
AS
6910 * solib-svr4.c (svr4_same): New.
6911 (_initialize_svr4_solib): Register svr4_same.
6912 * solib.c (update_solib_list): Use ops->same, if available.
a7c02bc8 6913
610dd7f9
CF
69142008-01-06 Christopher Faylor <me+cygwin@cgf.cx>
6915
6916 * win32-nat.c (win32_make_so): Use cygwin-style path to avoid warnings
6917 when using MS-DOS paths.
6918
7a404eba
PA
69192008-01-05 Pedro Alves <pedro@codesourcery.com>
6920
6921 * NEWS: Mention --pid and --core command line behaviour changes.
6922
a4d9b460
PA
69232008-01-05 Pedro Alves <pedro@codesourcery.com>
6924
6925 * main.c (captured_main): Remove 'count' varible and the
6926 ALIGN_STACK_ON_ENTRY block that used it. Error out if --core and
6927 --pid options were issued simultaneously. If an explicit pid
6928 option was passed, don't fallback to core file. Detect extra
6929 arguments better in the presence of explicit pid or core
6930 arguments.
6931
0c281816
JB
69322008-01-05 Joel Brobecker <brobecker@adacore.com>
6933
6934 * ada-lang.c (ada_which_variant_applies): Correctly compute
6935 the value of the discriminant when the variant record is packed.
6936
babe1480
JB
69372008-01-04 Joel Brobecker <brobecker@adacore.com>
6938
6939 * ada-lang.c (is_name_suffix): Handle middle-name numeric suffixes
6940 that are used to differentiate homonyms.
6941
727e3d2e
JB
69422008-01-04 Jerome Guitton <guitton@adacore.com>
6943
6944 * ada-lang.c (decode_packed_array_type): Avoid a seg fault
6945 when the type is an anonymous pointer type.
6946 (ada_check_typedef): Avoid a seg fault when the type is null.
6947 * ada-typeprint.c (print_array_type): Add support for pointer
6948 to packed arrays.
6949
bb28a9dc
JB
69502008-01-04 Paul N. Hilfinger <hilfinger@adacore.com>
6951
680b56ce 6952 * ada-exp.y: Allow '{type} ADDRESS' notation on left of assignment.
bb28a9dc 6953
6799def4
JB
69542008-01-04 Joel Brobecker <brobecker@adacore.com>
6955
6956 * ada-lang.c (ada_evaluate_subexp): Evaluate tagged types in
6957 EVAL_NORMAL mode when noside is EVAL_AVOID_SIDE_EFFECTS.
6958
d3353bbd
JB
69592008-01-04 Joel Brobecker <brobecker@adacore.com>
6960
6961 * ada-exp.y (chop_separator): New function.
6962 (write_selectors): Rewrite to re-use chop_separator.
6963 (ada_nget_field_index, get_symbol_field_type): New functions.
6964 (write_var_or_type): Add support for "ptype TYPENAME.FIELD"
6965 expressions.
6966
82cf6c60
TJB
69672008-01-03 Thiago Jung Bauermann <bauerman@br.ibm.com>
6968
6969 * symtab.c (find_pc_sect_line): Use SYMBOL_VALUE_ADDRESS instead
6970 of SYMBOL_VALUE when working with function symbols.
6971
b3dbf008
JB
69722008-01-03 Joel Brobecker <brobecker@adacore.com>
6973
6974 * ada-lang.c (resolve_subexp): Add handling of OP_REGISTER
6975 expressions. These expressions do not need to be rewriten.
6976
02eb380e
JB
69772008-01-03 Joel Brobecker <brobecker@adacore.com>
6978
6979 * dwarf2read.c (read_enumeration_type): Flag type as stub if
6980 the given die is a declaration.
6981
abb68b3e
JB
69822008-01-03 Joel Brobecker <brobecker@adacore.com>
6983
6984 * ada-lang.c (ada_array_bound_from_type): Make non-static.
6985 Handle properly the case when the index type is an enumerated type.
6986 Do not return the subtype of the bounds type, just return the
6987 bounds type directly - this is not needed and is more consistent
6988 with what we do for arrays when no XA parallel type exists.
6989
f192137b
JB
69902008-01-03 Joel Brobecker <brobecker@adacore.com>
6991
6992 * ada-lang.c (static_unwrap_type): Add forward declaration.
6993 (template_to_static_fixed_type): Fields of dynamic types sometimes
6994 also need to be unwrapped. Take this into account.
6995 (ada_to_fixed_type_1): Renamed from ada_to_fixed_type.
6996 (ada_to_fixed_type): New wrapper around ada_to_fixed_type_1.
6997 * ada-typeprint.c (ada_print_type): Get the typename from
680b56ce 6998 the original type, not the base type.
f192137b 6999
1ed6ede0
JB
70002008-01-03 Jerome Guitton <guitton@adacore.com>
7001
7002 * ada-lang.c (ada_value_struct_elt, to_fixed_array_type)
680b56ce 7003 (to_fixed_array_type, ada_to_fixed_value_create, unwrap_value):
1ed6ede0
JB
7004 Update calls to ada_to_fixed_type.
7005 (ada_template_to_fixed_record_type_1): Ditto, but without looking
7006 for the tag.
7007 (ada_to_fixed_type): Add check_tag parameter; do not look for
7008 tag if null. When looking for a tag, use a fixed record type.
7009 * ada-lang.h (ada_to_fixed_type): Add check_tag parameter.
7010 * ada-valprint.c (printable_val_type, ada_value_print): Update
7011 calls to ada_to_fixed_type.
7012
542a88d0
LM
70132008-01-03 Luis Machado <luisgpm@br.ibm.com>
7014
680b56ce 7015 * doublest.c (convert_floatformat_to_doublest): Call
542a88d0
LM
7016 floatformat_to_doublest instead of floatformat_to_double and use
7017 DOUBLEST variables.
7018 (convert_doublest_to_floatformat): Call floatformat_from_doublest
7019 instead of floatformat_from_double and use DOUBLEST variables.
7020
dc2bbab2
NH
70212008-01-03 Nick Hudson <nick.hudson@dsl.pipex.com>
7022
7023 * MAINTAINERS (Write After Approval): Add self.
7024
8b60591b
JB
70252008-01-03 Joel Brobecker <brobecker@adacore.com>
7026
7027 * symfile.c (set_initial_language): Make non-static.
7028 * symfile.h (set_initial_language): Add declaration.
7029 * language.c: #include "symfile.h".
7030 (set_language): Call set_initial_language if the frame language
7031 could not be determined.
7032
ceef53c1
JB
70332008-01-03 Paul N. Hilfinger <hilfinger@adacore.com>
7034
7035 * eval.c (evaluate_subexp_for_address): Provide frame address to
7036 locate_var_value only if it will be needed.
7037
ef29ce1a
JK
70382008-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7039
7040 * linux-nat.c (linux_child_follow_fork): Call also CHECK_FOR_THREAD_DB.
7041
0a07e705
JB
70422008-01-02 Joel Brobecker <brobecker@adacore.com>
7043
7044 * ada-lang.c (ada_evaluate_subexp): Modify the value returned
7045 when noside is EVAL_AVOID_SIDE_EFFECTS to be an lval_memory.
7046 This is needed to make sure that any other treatment applied
7047 to the resulting value does not fail for spurious reason,
7048 such as trying to take the address of this value.
7049
f58b38bf
JB
70502008-01-02 Joel Brobecker <brobecker@adacore.com>
7051
7052 * ada-lang.c (ada_value_equal): Dereference reference types when
7053 comparing arrays.
680b56ce 7054
9b254dd1
DJ
70552008-01-01 Daniel Jacobowitz <dan@codesourcery.com>
7056
7057 Updated copyright notices for most files.
7058
33605d39
CF
70592008-01-01 Christopher Faylor <me+gdb@cgf.cx>
7060
7061 * win32-nat.c (psapi_module_handle): Remove static.
7062 (get_module_name): Rename from psapi_get_dll_name. Revamp slightly to
7063 return first module found if base_address is zero. Don't initialize
7064 psapi function pointers here. Convert to cygwin paths when
7065 appropriate.
7066 (win32_pid_to_exec_file): Use Cygwin's /proc interface to determine
7067 executable name. Use get_module_name when that fails or when
7068 !__CYGWIN__.
7069 (_initialize_psapi): New function. Initialize psapi stuff before it is
7070 needed or issue a warning if it is not found. Move psapi_module_handle
7071 here.
7072
29480c32
JB
70732008-01-01 Joel Brobecker <brobecker@adacore.com>
7074
7075 * ada-lang.c (ada_remove_trailing_digits): New function.
7076 (ada_remove_po_subprogram_suffix): New function.
7077 (ada_decode): Improve. Move the description of the algorithm
7078 directly inside the code, instead of in the function global
7079 description.
7080
969a1360
JB
70812008-01-01 Joel Brobecker <brobecker@adacore.com>
7082
7083 * ada-valprint.c (ada_val_print_1) [TYPE_CODE_REF]: Ignore deref_ref
7084 and always print the dereferenced value.
7085
b7789565
JB
70862008-01-01 Joel Brobecker <brobecker@adacore.com>
7087
7088 * ada-lang.c (ada_evaluate_subexp, case BINOP_SUB): Add handling
7089 of the case where the first argument is a reference.
7090 (ada_evaluate_subexp, case BINOP_ADD): Likewise.
7091
73fb9985
JB
70922008-01-01 Joel Brobecker <brobecker@adacore.com>
7093
7094 Implement support for Ada interface types.
7095
7096 * ada-lang.c (ada_is_dispatch_table_ptr_type): New function.
7097 (ada_is_ignored_field): Ignore fields that are a dispatch table
7098 of a tagged type.
7099
636265b6
JB
71002008-01-01 Joel Brobecker <brobecker@adacore.com>
7101
7102 * top.c (print_gdb_version): Update copyright year.
7103
9d200a2e 71042008-01-01 Joel Brobecker <brobecker@adacore.com>
b7589f7d 7105
9d200a2e
JB
7106 * ChangeLog-2007: New ChangeLog rotation.
7107 * ChangeLog: Reset for 2008.
7108 * config/djgpp/fnchange.lst: Add entries for ChangeLog-2006 and
7109 ChangeLog-2007.
b7589f7d 7110
9d200a2e 7111For older changes see ChangeLog-2007.
c906108c
SS
7112\f
7113Local Variables:
7114mode: change-log
7115left-margin: 8
7116fill-column: 74
7117version-control: never
57da7796 7118coding: utf-8
c906108c 7119End:
This page took 1.233405 seconds and 4 git commands to generate.