gdb/
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2011-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
2
3 Fix initial language detection with -readnow.
4 * dwarf2read.c (dw2_find_symbol_file): Handle OBJF_READNOW case.
5 * symfile.h (struct quick_symbol_functions): State find_symbol_file
6 searches only for global symbols.
7
8 2011-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
9
10 Fix printed anonymous struct name.
11 * dwarf2read.c (fixup_partial_die): Handle for anonymous structs also
12 DW_TAG_interface_type. Strip for anonymous structs any prefixes.
13 (anonymous_struct_prefix): New function.
14 (determine_prefix): New variables retval. Call anonymous_struct_prefix.
15 (dwarf2_name): Strip for anonymous structs any prefixes.
16
17 2011-10-07 Doug Evans <dje@google.com>
18
19 * python/lib/gdb/printing.py (register_pretty_printer): New argument
20 `replace'.
21
22 * python/lib/gdb/printing.py: Whitespace cleanup.
23
24 * python/py-value.c (valpy_call): Initialize ftype to avoid compiler
25 warning.
26
27 2011-10-07 Pedro Alves <pedro@codesourcery.com>
28
29 * linux-nat.h (ALL_LWPS): Remove the ptid parameter.
30 * amd64-linux-nat.c (amd64_linux_dr_set_control)
31 (amd64_linux_dr_set_addr, amd64_linux_dr_unset_status): Adjust.
32 * arm-linux-nat.c (arm_linux_insert_hw_breakpoint)
33 (arm_linux_remove_hw_breakpoint, arm_linux_insert_watchpoint)
34 (arm_linux_remove_watchpoint): Adjust.
35 * i386-linux-nat.c (i386_linux_dr_set_control)
36 (i386_linux_dr_set_addr, i386_linux_dr_unset_status): Adjust.
37 * ia64-linux-nat.c (ia64_linux_insert_watchpoint)
38 (ia64_linux_remove_watchpoint): Adjust.
39 * mips-linux-nat.c (write_watchpoint_regs): Adjust.
40 * ppc-linux-nat.c (ppc_linux_insert_hw_breakpoint)
41 (ppc_linux_insert_hw_breakpoint, ppc_linux_remove_hw_breakpoint)
42 (ppc_linux_insert_mask_watchpoint)
43 (ppc_linux_remove_mask_watchpoint, ppc_linux_insert_watchpoint)
44 (ppc_linux_remove_watchpoint): Adjust.
45 * s390-nat.c (s390_insert_watchpoint, s390_remove_watchpoint):
46 Adjust.
47
48 2011-10-07 Corinna Vinschen <vinschen@redhat.com>
49
50 * windows-nat.c: Include wchar.h to avoid compiler warnings.
51 (clear_win32_environment): New function for Cygwin to clear out
52 Win32 environment.
53 (windows_create_inferior): Prepare new environment from in_env
54 for Cygwin, too.
55
56 2011-10-07 Phil Muldoon <pmuldoon@redhat.com>
57
58 PR python/13264
59 * python/py-value.c (valpy_call): Check that arguments are
60 a tuple.
61 (is_intlike): Remove call to CHECK_TYPEDEF.
62 (valpy_nonzero): Catch GDB exceptions.
63 (valpy_absolute): Ditto.
64 (valpy_lazy_string): Ditto.
65 (valpy_call): Ditto.
66 (valpy_get_is_optimized_out): Ditto.
67 (valpy_long): Ditto.
68 (valpy_float): Ditto.
69 (valpy_int): Call CHECK_TYPEDEF. Catch GDB exceptions.
70 (valpy_richcompare): Ditto.
71
72 2011-10-07 Ulrich Weigand <ulrich.weigand@linaro.org>
73
74 * inferior.h (disable_randomization): Declare.
75 * infrun.c (disable_randomization): New global variable.
76 (show_disable_randomization): New function.
77 (set_disable_randomization): Likewise.
78 (_initialize_infrun): Install set/show disable-randomization
79 commands.
80 * linux-nat.c (disable_randomization): Remove.
81 (show_disable_randomization): Likewise.
82 (set_disable_randomization): Likewise.
83 (_initialize_linux_nat): No longer install set/show
84 disable-randomization commands here.
85 (linux_nat_supports_disable_randomization): New function.
86 (linux_nat_add_target): Install it.
87 * remote.c (PACKET_QDisableRandomization): New enum value.
88 (remote_protocol_packets): Support QDisableRandomization.
89 (_initialize_remote): Likewise.
90 (remote_supports_disable_randomization): New function.
91 (init_remote_ops): Install it.
92 (extended_remote_supports_disable_randomization): New function.
93 (init_extended_remote_ops): Install it.
94 (extended_remote_disable_randomization): New function.
95 (extended_remote_create_inferior_1): Call it.
96 * target.h (struct target_ops): Add to_supports_disable_randomization.
97 (target_supports_disable_randomization): Add prototype.
98 * target.c (target_supports_disable_randomization): New function.
99 (find_default_supports_disable_randomization): Likewise.
100 (init_dummy_target): Install it.
101
102 2011-10-07 Kevin Pouget <kevin.pouget@st.com>
103
104 Allow Python notification of new object-file loadings.
105 * Makefile.in (SUBDIR_PYTHON_SRCS): Add py-newobjfilevent.c.
106 (SUBDIR_PYTHON_OBS): Add py-newobjfileevent.o.
107 Add build rule for this file.
108 * python/py-event.h (emit_new_objfile_event): New prototype.
109 (newobjfile): New Python event emitter.
110 * python/py-evts.c (gdbpy_initialize_py_events): Add new_objfile to
111 Python event registry.
112 * python/py-inferior.c: Include objfiles.h
113 (python_new_objfile): New function.
114 (gdbpy_initialize_inferior): Add python_new_objfile to the new objfile
115 observers.
116 * python/py-newobjfileevent.c: New file.
117 * python-internal.h (gdbpy_initialize_new_objfile_event): New
118 prototype.
119 * python/python.c (_initialize_python): Add
120 gdbpy_initialize_new_objfile_event call.
121 * NEWS: Add item for new Python event "gdb.newobjfile"
122
123 2011-10-05 Tristan Gingold <gingold@adacore.com>
124
125 * ada-tasks.c (read_atcb): Make ravenscar_task_name static.
126 Extract the ravenscar task name from the symbol for the atcb.
127
128 2011-10-04 Paul Koning <paul_koning@dell.com>
129
130 * python/py-type.c (typy_make_iter): Add forward declaration.
131 (typy_fields_items): Use the gdb.Type iterator.
132
133 2011-10-04 Paul Koning <paul_koning@dell.com>
134
135 * NEWS: Add entry for Python gdb.Type mapping methods.
136
137 2011-10-04 Kevin Pouget <kevin.pouget@st.com>
138
139 PR python/12691: Add the inferior to Python exited event
140 * python/py-exitedevent.c (create_exited_event_object): Add inferior
141 to exited_event.
142 * python/py-event.h (emit_exited_event): Likewise
143 * python/-inferior.c (python_inferior_exit): Likewise
144
145 2011-10-03 Joel Brobecker <brobecker@adacore.com>
146
147 * ada-tasks.c (print_ada_task_info): Add "thread-id" field
148 in output of -ada-task-info GDB/MI command.
149
150 2011-10-03 Joel Brobecker <brobecker@adacore.com>
151
152 * ada-lang.h (struct inferior): Declare.
153 (print_ada_task_info): Add declaration.
154 * ada-tasks.c (print_ada_task_info): Make non-static.
155 * mi/mi-cmds.c (mi_cmds): Add "ada-task-info".
156 * mi/mi-cmds.h (mi_cmd_ada_task_info): Add declaration.
157 * mi/mi-main.c: #include "ada-lang.h".
158 (mi_cmd_list_features): Add "ada-task-info" to the list
159 of supported features.
160 (mi_cmd_ada_task_info): New function.
161
162 2011-10-03 Joel Brobecker <brobecker@adacore.com>
163
164 * python/python.c (python_run_simple_file): New function.
165 (source_python_script, source_python_script_for_objfile):
166 Replace call to PyRun_SimpleFile by call to
167 python_run_simple_file.
168
169 2011-10-03 Paul Koning <paul_koning@dell.com>
170
171 * python/py-value.c (valpy_get_address): Use Py_XINCREF.
172 (value_to_value_object): Fetch value if it was lazy.
173
174 2011-10-02 Jan Kratochvil <jan.kratochvil@redhat.com>
175
176 Code cleanup.
177 * solib-svr4.c (svr4_default_sos): Remove variables head and link_ptr.
178 Rearrange the code for it.
179
180 2011-10-02 Joel Brobecker <brobecker@adacore.com>
181
182 * breakpoint.c (bkpt_print_recreate): Add call to
183 print_recreate_thread.
184
185 2011-09-29 Mike Frysinger <vapier@gentoo.org>
186
187 * common/linux-ptrace.h (PTRACE_GETFDPIC, PTRACE_GETFDPIC_EXEC,
188 PTRACE_GETFDPIC_INTERP): Define.
189
190 2011-09-28 Yao Qi <yao@codesourcery.com>
191
192 * symfile.c (add_symbol_file_command): Update message on usage.
193
194 2011-09-28 Paul Koning <paul_koning@dell.com>
195
196 * python/py-type.c (make_fielditem, typy_field_names, typy_items)
197 (typy_length, typy_get, typy_has_key, typy_make_iter)
198 (typy_iterkeys, typy_iteritems, typy_itervalues, typy_iter)
199 (typy_iterator_iter, typy_iterator_iternext)
200 (typy_iterator_dealloc): New functions to implement standard
201 Python mapping methods on gdb.Type object.
202 (gdb.TypeIterator): New Python type.
203 * python/python-internal.h (gdbpy_iter_kind): New enum.
204
205 2011-09-28 David S. Miller <davem@davemloft.net>
206
207 * sparc-tdep.h (SPARC_F2_REGNUM, SPARC_F3_REGNUM, SPARC_F4_REGNUM,
208 SPARC_F5_REGNUM, SPARC_F6_REGNUM, SPARC_F7_REGNUM): New enums.
209 * sparc-tdep.c (sparc_complex_floating_p): New function.
210 (sparc32_store_arguments): Handle complex floats.
211 (sparc32_extract_return_value): Likewise.
212 (sparc32_store_return_value): Likewise.
213 (sparc32_stabs_argument_has_addr): Likewise.
214 * sparc64-tdep.c (sparc64_complex_floating_p): New function.
215 (sparc64_store_floating_fields): Handle complex floats.
216 (sparc64_store_arguments): Likewise.
217 (sparc64_store_return_value): Likewise.
218
219 2011-09-28 Eli Zaretskii <eliz@gnu.org>
220
221 * windows-nat.c (env_sort) [!__CYGWIN__]: Function restored from
222 before the change on 2006-12-09.
223 (windows_create_inferior) [!__CYGWIN__]: Restore code that
224 generates the environment block for CreateProcessA, modulo the
225 Cygwin-specific parts that are not needed here.
226
227 2011-09-27 Tristan Gingold <gingold@adacore.com>
228
229 * target.h (enum target_object): Add TARGET_OBJECT_DARWIN_DYLD_INFO.
230 * solib-darwin.c (DYLD_VERSION_MAX): Update number.
231 (darwin_solib_get_all_image_info_addr_at_init): New function.
232 (darwin_solib_read_all_image_info_addr): Likewise.
233 (darwin_solib_create_inferior_hook): Use the above two functions.
234 * darwin-nat.c (darwin_execvp): Renames retval to res.
235 (darwin_read_write_inferior): Update comment.
236 (darwin_read_dyld_info): New function.
237 (darwin_xfer_partial): Handle DYLD_INFO.
238
239 2011-09-27 Stan Shebs <stan@codesourcery.com>
240
241 Add return address collection for tracepoints.
242 * tracepoint.c (encode_actions_1): Add case for $_ret.
243 (validate_actionline): Check for $_ret.
244 (trace_dump_actions): Ditto.
245 * ax-gdb.h (gen_trace_for_return_address): Declare.
246 * ax-gdb.c: Include arch-utils.h.
247 (gen_trace_for_return_address): New function.
248 (agent_command): Add return address special case.
249 * amd64-tdep.c: Include ax.h and ax-gdb.h.
250 (amd64_gen_return_address): New function.
251 (amd64_init_abi): Call it.
252 * i386-tdep.c: Include ax.h and ax-gdb.h.
253 (i386_gen_return_address): New function.
254 (i386_init_abi): Call it.
255 * arch-utils.h (default_gen_return_address): Declare.
256 * arch-utils.c (default_gen_return_address): New function.
257 * gdbarch.sh (gen_return_address): New method.
258 * gdbarch.h, gdbarch.c: Regenerate.
259
260 2011-09-23 Joseph Myers <joseph@codesourcery.com>
261
262 PR gdb/13079
263 * i386-tdep.c (i386_frame_align): New.
264 (i386_gdbarch_init): Use i386_frame_align.
265
266 2011-09-23 Yao Qi <yao@codesourcery.com>
267
268 * i386-linux-nat.c (i386_linux_resume): Use read_memory_unsigned_integer
269 to get address.
270
271 2011-09-22 Tristan Gingold <gingold@adacore.com>
272
273 * fork-child.c (fork_inferior): Add exec_fun parameter.
274 Call exec_fun or execvp.
275 * inferior.h: Adjust prototype.
276 * gnu-nat.c (gnu_create_inferior): Adjust fork_inferior call.
277 * inf-ttrace.c (inf_ttrace_create_inferior): Ditto.
278 * inf-ptrace.c (inf_ptrace_create_inferior): Ditto.
279 * procfs.c (procfs_create_inferior): Ditto.
280 * darwin-nat.c (darwin_execvp): New function.
281 (darwin_create_inferior): Use it.
282
283 2011-09-22 Yao Qi <yao@codesourcery.com>
284
285 * infrun.c (context_switch): Print debug message when switching to
286 a different thread.
287
288 2011-09-21 Ulrich Weigand <uweigand@de.ibm.com>
289
290 * s390-tdep.c (s390_function_arg_pass_by_reference): Handle
291 complex and vector types.
292 (s390_return_value_convention): Likewise.
293
294 (s390_value_from_register): Call check_typedef.
295 (extend_simple_arg): Likewise.
296 (alignment_of): Likewise.
297 (s390_push_dummy_call): Likewise.
298 (s390_return_value): Likewise.
299
300 2011-09-21 Joseph Myers <joseph@codesourcery.com>
301
302 * event-top.c (async_disconnect): If an exception is thrown from
303 quit_cover, call pop_all_targets. Use TRY_CATCH instead of
304 catch_errors.
305 * top.c (quit_cover): Return void and take no arguments.
306 * top.h (quit_cover): Update prototype.
307
308 2011-09-20 Joseph Myers <joseph@codesourcery.com>
309
310 * mi/mi-main.c (mi_load_progress): Restore saved_uiout value to
311 current_uiout, not uiout.
312
313 2011-09-19 Doug Evans <dje@google.com>
314
315 * python/py-auto-load.c (source_section_scripts): Fix file
316 descriptor leak.
317 * python/python.c (source_python_script_for_objfile): Tweak comments.
318
319 2011-09-18 Yao Qi <yao@codesourcery.com>
320 Ulrich Weigand <ulrich.weigand@linaro.org>
321
322 Support displaced stepping for Thumb 16-bit insns.
323 * arm-tdep.c (THUMB_NOP) Define.
324 (thumb_copy_unmodified_16bit): New.
325 (thumb_copy_b, thumb_copy_bx_blx_reg): New.
326 (thumb_copy_alu_reg): New.
327 (arm_copy_svc): Move some common code to ...
328 (install_svc): ... here. New.
329 (thumb_copy_svc): New.
330 (install_pc_relative): New.
331 (thumb_copy_pc_relative_16bit): New.
332 (thumb_decode_pc_relative_16bit): New.
333 (thumb_copy_16bit_ldr_literal): New.
334 (thumb_copy_cbnz_cbz): New.
335 (cleanup_pop_pc_16bit_all): New.
336 (thumb_copy_pop_pc_16bit): New.
337 (thumb_process_displaced_16bit_insn): New.
338 (thumb_process_displaced_32bit_insn): New.
339 (thumb_process_displaced_insn): process thumb instruction.
340
341 Support displaced stepping for Thumb 32-bit insns.
342 * arm-tdep.c (thumb_copy_unmodified_32bit): New.
343 (thumb2_copy_preload): New.
344 (thumb2_copy_copro_load_store): New.
345 (thumb2_copy_b_bl_blx): New.
346 (thumb2_copy_alu_imm): New.
347 (thumb2_copy_load_reg_imm): New.
348 (thumb2_copy_load_literal): New
349 (thumb2_copy_block_xfer): New.
350 (thumb_32bit_copy_undef): New.
351 (thumb_32bit_copy_unpred): New.
352 (thumb2_decode_ext_reg_ld_st): New.
353 (thumb2_decode_svc_copro): New.
354 (decode_thumb_32bit_store_single_data_item): New.
355 (thumb_copy_pc_relative_32bit): New.
356 (thumb_decode_pc_relative_32bit): New.
357 (decode_thumb_32bit_ld_mem_hints): New.
358 (thumb2_copy_table_branch): New
359 (thumb_process_displaced_32bit_insn): Process Thumb 32-bit
360 instructions.
361
362 2011-09-18 Yao Qi <yao@codesourcery.com>
363
364 * arm-tdep.c (install_copro_load_store): PC is set 4-byte aligned.
365 (install_b_bl_blx): Likewise.
366
367 2011-09-17 Yao Qi <yao@codesourcery.com>
368
369 * arm-tdep.c (install_ldr_str_ldrb_strb): Renamed to ...
370 (install_load_store): ... this. New.
371 Change parameter BYTE to SIZE.
372 (arm_copy_ldr_str_ldrb_strb): Update caller.
373 (arm_decode_ld_st_word_ubyte): Update caller.
374
375 2011-09-17 Yao Qi <yao@codesourcery.com>
376
377 * infrun.c (displaced_step_fixup): Move some code ...
378 (displaced_step_restore): ... here. New function.
379 (handle_inferior_event): Cleanup displaced stepping state for both
380 child and parent when get forked or vforked event.
381 * regcache.c (get_thread_arch_aspace_regcache): New function.
382 get_thread_arch_regcache (): Call it.
383
384 2011-09-16 Joel Brobecker <brobecker@adacore.com>
385
386 * ada-tasks.c (print_ada_task_info): New function, merging
387 short_task_info and info_tasks together. Reimplement using
388 ui-out instead of printing to stdout directly. Move the code
389 building and checking the task list here, instead of leaving it
390 in info_tasks_command.
391 (info_task): Move the code building and checking the task
392 list here, instead of leaving it in info_tasks_command.
393 (info_tasks_command): Delete code building and checking
394 the task list - moved elsewhere. Update calls to info_tasks
395 and info_task.
396
397 2011-09-16 Joel Brobecker <brobecker@adacore.com>
398
399 * ada-tasks.c (info_task): Delete parameter `from_tty'.
400
401 2011-09-16 Joel Brobecker <brobecker@adacore.com>
402
403 * ada-tasks.c (info_tasks): Delete parameter `from_tty'.
404
405 2011-09-16 Joel Brobecker <brobecker@adacore.com>
406
407 * ada-lang.h (ada_build_task_list): Remove parameter
408 `warn_if_null'.
409 * ada-tasks.c (ada_build_task_list): Remove parameter
410 `warn_if_null'. Adjust implementation and documentation.
411 (valid_task_id, ada_get_environment_task)
412 iterate_over_live_ada_tasks): Adjust call to ada_build_task_list.
413 (info_tasks_command): Adjust implementation.
414 (task_command): Likewise.
415 * ravenscar-thread.c (ravenscar_find_new_threads): Fix call
416 to ada_build_task_list.
417
418 2011-09-16 Joel Brobecker <brobecker@adacore.com>
419
420 * ada-tasks.c (ada_tasks_check_symbol_table, task_list): Delete.
421 (enum ada_known_tasks_kind, struct ada_tasks_inferior_data): New.
422 (ada_tasks_inferior_data_handle): New static global.
423 (get_ada_tasks_inferior_data): New function.
424 (ada_get_task_number, get_task_number_from_id, valid_task_id)
425 (ada_get_environment_task, iterate_over_live_ada_tasks)
426 (add_ada_task, read_known_tasks_array, read_known_tasks_list):
427 Adjust.
428 (ada_set_current_inferior_known_tasks_addr): New function.
429 (read_known_tasks, ada_build_task_list, short_task_info)
430 (info_tasks, info_task, info_tasks_command, task_command_1)
431 (task_command, ada_task_list_changed): Adjust.
432 (ada_tasks_invalidate_inferior_data): New function.
433 (ada_normal_stop_observer, ada_new_objfile_observer): Adjust.
434 (_initialize_tasks): Set ada_tasks_inferior_data_handle.
435 * ada-lang.h (struct inferior): Add declaration.
436 (ada_task_list_changed): Update profile.
437 * remote-wtx-pd.c: #include "inferior.h".
438 (switch_to_pd_internal): Update call to ada_task_list_changed.
439
440 2011-09-16 Joel Brobecker <brobecker@adacore.com>
441
442 * ada-tasks.c: #include "progspace.h" and "objfiles.h".
443 (atcb_type, atcb_common_type, atcb_ll_type, atcb_call_type)
444 (atcb_fieldno): Delete these static globals.
445 (struct ada_tasks_pspace_data): New struct.
446 (ada_tasks_pspace_data_handle): New static global.
447 (get_ada_tasks_pspace_data): New function.
448 (ada_tasks_invalidate_pspace_data): New function.
449 (get_tcb_types_info, ptid_from_atcb_common, read_atcb)
450 (read_known_tasks_list, ada_new_objfile_observer): Adjust.
451 (_initialize_tasks): Create this module's per-progspace
452 data handle.
453
454 2011-09-16 Joel Brobecker <brobecker@adacore.com>
455
456 * ada-tasks.c (struct atcb_fieldnos): Renames struct tcb_fieldnos.
457
458 2011-09-16 Tristan Gingold <gingold@adacore.com>
459
460 * fork-child.c (fork_inferior): Update comment. Use alloca
461 instead of xmalloc for argv. Move len and shell_command
462 declarations in the block where they are used.
463 Only call execvp. Factorize failure code.
464
465 2011-09-16 Abhijit Halder <abhijit.k.halder@gmail.com>
466
467 Code cleanup.
468 * parse.c (write_exp_elt): Change argument to pass a pointer of union
469 `exp_element' instead of an element of the same and make the function
470 static.
471 (write_exp_elt_opcode, write_exp_elt_sym, write_exp_elt_block)
472 (write_exp_elt_objfile, write_exp_elt_longcst, write_exp_elt_dblcst)
473 (write_exp_elt_decfloatcst, write_exp_elt_type, write_exp_elt_intern):
474 Change argument of `write_exp_elt' function call.
475 Remove extra spaces from comments.
476 * parser-defs.h (write_exp_elt): Remove prototype.
477
478 2011-09-15 Paul Koning <paul_koning@dell.com>
479
480 * python/py-cmd.c (gdbpy_string_to_argv): Decrement reference
481 count of item appended to list.
482 * python/py-type.c (typy_fields): Likewise.
483
484 2011-09-15 Paul Koning <paul_koning@dell.com>
485
486 * MAINTAINERS (Write After Approval): Add myself to the list.
487
488 2011-09-15 Kevin Pouget <kevin.pouget@st.com>
489
490 PR threads/12628
491 * linux-fork.c (checkpoint_command): Disallow checkpointing of
492 processes with multiple threads.
493 (inf_has_multiple_thread_cb): New function.
494 (inf_has_multiple_threads): New function.
495
496 2011-09-15 Kevin Pouget <kevin.pouget@st.com>
497
498 PR Python/12692 Add gdb.selected_inferior() to Python interface.
499 * python/py-inferior.c (GdbMethods): New Python method definition.
500
501 2011-09-15 Kevin Pouget <kevin.pouget@st.com>
502
503 Handle multiple breakpoint hits in Python interface:
504 * python/py-bpevent.c (create_breakpoint_event_object): Rename C/Python
505 variable to breakpoints.
506 * python/py-stopevent.c (emit_stop_event): Return a Python tuple of
507 bps instead of single breakpoint. Fix some space typos.
508 * python/py-stopevent.c (create_breakpoint_event_object): Rename
509 variable to breakpoints.
510
511 2011-09-15 Kevin Pouget <kevin.pouget@st.com>
512
513 * breakpoint.c (describe_other_breakpoints): Do not write 'duplicate'
514 note if the breakpoint is internal.
515
516 2011-09-15 Kevin Pouget <kevin.pouget@st.com>
517
518 * MAINTAINERS (Write After Approval): Add myself to the list
519
520 2011-09-14 Pedro Alves <pedro@codesourcery.com>
521
522 * infrun.c (prepare_for_detach, wait_for_inferior)
523 (fetch_inferior_event): Don't flush the register cache.
524 * remote.c (struct stop_reply) <regcache>: Add comment.
525
526 2011-09-13 Jan Kratochvil <jan.kratochvil@redhat.com>
527
528 Remove excessive DWARF expressions memory duplication.
529 * dwarf2loc.c (per_cu_dwarf_call): Remove variable back_to and its use
530 for block.data.
531 (indirect_pieced_value): Remove variable result. Remove variable
532 back_to and its use for baton.data.
533 (dwarf2_compile_expr_to_ax): Remove variable back_to and its use for
534 block.data.
535 * dwarf2read.c (dwarf2_fetch_die_location_block): Remove xmemdup.
536 Update the function comment.
537
538 2011-09-13 Pedro Alves <pedro@codesourcery.com>
539
540 * inferior.h (ALL_INFERIORS): New.
541 * linux-thread-db.c (thread_db_find_new_threads_2): Remove check
542 for a stopped thread.
543 (thread_db_find_new_threads): Look for threads in all inferiors.
544
545 2011-09-13 Pedro Alves <pedro@codesourcery.com>
546
547 * breakpoint.c (update_watchpoint): Handle the case of the
548 watchpoint to update not being in the breakpoint list yet.
549 (hw_watchpoint_use_count): New, factored out from
550 hw_watchpoint_used_count.
551 (hw_watchpoint_used_count): Rename to ...
552 (hw_watchpoint_used_count_others): ... this. Add `except'
553 parameter. Don't count resources of `except'. Use
554 hw_watchpoint_use_count.
555
556 2011-09-13 Pedro Alves <pedro@codesourcery.com>
557
558 * gdbthread.h (enum thread_state): Moved here.
559 (struct thread_info): Rename `executing_' field to `executing' and
560 `state_' to `state'.
561 * thread.c (enum thread_state): Moved to gdbthread.h.
562 (new_thread, add_thread_silent, delete_thread_1)
563 (any_live_thread_of_process, thread_alive, set_running)
564 (set_running, is_thread_state, any_running, is_executing)
565 (set_executing, finish_thread_state, print_thread_info)
566 (do_captured_thread_select): Adjust.
567
568 2011-09-13 Jan Kratochvil <jan.kratochvil@redhat.com>
569
570 Fix compatibility with gcc < 4.3 and non-gcc compilers.
571 * amd64-tdep.c (amd64_skip_xmm_prologue): Convert 0b constants.
572
573 2011-09-12 Pedro Alves <pedro@codesourcery.com>
574 Matt Rice <ratmice@gmail.com>
575
576 PR gdb/13175
577
578 * interps.c (struct interp) <interpreter_out>: Delete field.
579 (interp_new): Remove the data and uiout parameters and adjust.
580 (interp_set): Only set the current_uiout from the interpreter's
581 uiout after initializing the interpreter. Adjust call to
582 init_proc.
583 (interp_ui_out): Adjust to call procs->ui_out_proc.
584 (interp_data, interp_name): New.
585 * interps.h (interp_init_ftype): Add `self' parameter.
586 (interp_ui_out_ftype): New typedef.
587 (struct interp_procs) <ui_out_proc>: New method pointer.
588 (interp_new): Remove the data and uiout parameters.
589 (interp_data, interp_name): Declare.
590 * tui/tui-interp.c (tui_init): Adjust prototype.
591 (tui_ui_out): New.
592 (_initialize_tui_interp): Install tui_ui_out. Don't instanciate
593 tui_out here. Adjust call to interp_new.
594 * tui/tui-io.c (tui_initialize_io): Don't set current_uiout here.
595 * cli/cli-interp.c (cli_interpreter_init): Adjust prototype.
596 (cli_ui_out): New.
597 (_initialize_cli_interp): Install it. Adjust call to interp_new.
598 * mi/mi-common.h (struct mi_interp) <uiout>: New field.
599 * mi/mi-interp.c (mi_interpreter_init): Adjust prototype.
600 Initialize mi->uiout depending on the mi_version as extracted from
601 the interpreter's name.
602 (mi_ui_out): New.
603 (_initialize_mi_interp): Install mi_ui_out. Adjust calls to
604 interp_new. Don't allocate the ui_out's of the interpreters here.
605
606 2011-09-12 Aleksandar Ristovski <aristovski@qnx.com>
607
608 * solib.c (solib_used): New function.
609 (update_solib_list, reload_shared_libraries_1): Check if objfile is used
610 by another so_list object before freeing it.
611
612 2011-09-11 Jan Kratochvil <jan.kratochvil@redhat.com>
613
614 Code cleanup.
615 * mi/mi-cmd-stack.c (list_args_or_locals): Use enum for the parameter
616 values.
617
618 2011-09-09 Jan Kratochvil <jan.kratochvil@redhat.com>
619
620 Code cleanup.
621 * amd64-tdep.c (amd64_skip_prologue): Move the XMM code to ...
622 (amd64_skip_xmm_prologue): ... this new function. Describe its
623 parameters. No longer use amd64_prologue_line_bug.
624 * defs.h (producer_is_gcc_ge_4): New declaration.
625 * dwarf2read.c (producer_is_gcc_ge_4): Move to utils.c.
626 (process_full_comp_unit): Update its caller. Remove
627 amd64_prologue_line_bug initialization.
628 * symtab.h (struct symtab): Remove field amd64_prologue_line_bug.
629 * utils.c (producer_is_gcc_ge_4): Moved here from dwarf2read.c.
630
631 2011-09-09 Pedro Alves <pedro@codesourcery.com>
632
633 * linux-nat.h (enum resume_kind): New.
634 (struct lwp_info) <last_resume_kind>: New field.
635 * linux-nat.c (linux_child_follow_fork): Set last_resume_kind to
636 resume_stop on the new lwp.
637 (add_lwp): Set last_resume_kind as resume_continue by default.
638 (lin_lwp_attach_lwp): Set last_resume_kind as resume_stop.
639 (resume_lwp): New, factored out from resume_callback. Also check
640 for pending status in lp->waitstatus.
641 (resume_callback): Reimplement.
642 (resume_clear_callback): Set last_resume_kind as resume_stop.
643 (resume_set_callback): Set last_resume_kind as resume_continue.
644 (linux_nat_resume, linux_handle_extended_wait): Set
645 last_resume_kind.
646 (running_callback): Also check lp->waitstatus for pending events.
647 (select_singlestep_lwp_callback): Check that lp->last_resume_kind
648 is resume_step.
649 (stop_and_resume_callback): Don't re-resume if the core wanted the
650 lwp stopped. Use resume_lwp instead of resume_callback. Avoid
651 using an invalidated pointer.
652 (linux_nat_filter_event): Don't discard SIGSTOPs as delayed
653 SIGSTOPs if the core wanted the LWP to stop.
654 (linux_nat_wait_1) Don't consume a pending SIGSTOP if the core
655 wanted the lwp to stop. If the core wanted the lwp to stop, and
656 the lwp stopped with a SIGSTOP, report a TARGET_SIGNAL_0 instead
657 of TARGET_SIGNAL_STOP.
658 (linux_nat_stop_lwp): Don't synchronously wait for the lwp to stop
659 here. Instead, signal the lwp, and set the last_resume_kind to
660 resume_stop.
661
662 2011-09-09 Pedro Alves <pedro@codesourcery.com>
663
664 * linux-nat.c (lin_lwp_attach_lwp): Return 1 (ignore) instead of
665 -1 (error), if the lwp exits right after attaching.
666
667 2011-09-08 Doug Evans <dje@google.com>
668
669 * py-cmd.c: Some minor formatting fixes.
670 (gdbpy_parse_command_name): Rename text arg to name, make const.
671 All callers updated.
672 * python-internal.h (gdbpy_parse_command_name): Update.
673
674 * cli/cli-decode.c (add_cmd): Add comment.
675
676 2011-09-08 Jan Kratochvil <jan.kratochvil@redhat.com>
677
678 PR breakpoints/12435
679 * amd64-tdep.c (amd64_skip_prologue): New variables start_pc_sal,
680 next_sal, buf, offset and xmmreg. Advance PC if it sees the PR.
681 * dwarf2read.c (process_full_comp_unit): Initialize
682 amd64_prologue_line_bug.
683 * symtab.h (struct symtab): New field amd64_prologue_line_bug.
684
685 2011-09-08 Jan Kratochvil <jan.kratochvil@redhat.com>
686
687 Fix TUI screen corruption.
688 * utils.c (fputs_maybe_filtered): Replace !input_from_terminal_p by
689 batch_flag.
690
691 2011-09-08 Jan Kratochvil <jan.kratochvil@redhat.com>
692
693 * findvar.c (read_var_value): Never return NULL, throw an error
694 instead. Update the function comment. State symbol name in the error
695 messages.
696 * python/py-frame.c (frapy_read_var): Remove handling of NULL from
697 read_var_value.
698 * stack.c (print_frame_args): Likewise.
699 * valops.c (value_of_variable): Likewise.
700
701 2011-09-08 Jan Kratochvil <jan.kratochvil@redhat.com>
702
703 * stack.c (print_frame_args): New variable except. Wrap
704 read_var_value and common_val_print into TRY_CATCH.
705
706 2011-09-08 Jan Kratochvil <jan.kratochvil@redhat.com>
707
708 * eval.c (evaluate_subexp_standard) <OP_THIS>: Update the value_of_this
709 caller to value_of_this.
710 * p-exp.y: Update the value_of_this caller to value_of_this_silent.
711 Twice.
712 * valops.c (value_of_this): Remove parameter complain and variable ret.
713 Update function comment. Never return NULL by this code.
714 (value_of_this_silent): New function.
715 * value.h (value_of_this): Remove parameter complain.
716 (value_of_this_silent): New declaration.
717
718 2011-09-07 Yao Qi <yao@codesourcery.com>
719
720 * gdbthread.h (struct thread_info): Remove fields
721 `stepping_through_solib_after_catch' and
722 `stepping_through_solib_catchpoints'.
723 * infrun.c (init_thread_stepping_state): Update.
724 (process_event_stop_test, currently_stepping): Update.
725 (currently_stepping_or_nexting_callback): Update.
726
727 2011-09-07 Yao Qi <yao@codesourcery.com>
728
729 * gdbthread.h (struct thread_info): Comment on field
730 `step_after_step_resume_breakpoint'.
731
732 2011-09-07 Abhijit Halder <abhijit.k.halder@gmail.com>
733
734 * remote.c (remote_console_output): Reindent.
735
736 2011-09-06 Luis Machado <lgustavo@codesourcery.com>
737
738 * frame.c (has_stack_frames): Check for currently selected
739 traceframe.
740
741 2011-09-06 Pedro Alves <pedro@codesourcery.com>
742
743 * event-top.h (MAXPROMPTS, struct prompts): Delete.
744 (set_async_annotation_level, set_async_prompt, pop_prompt)
745 (push_prompt, new_async_prompt): Delete declarations.
746 * top.h (get_prompt, set_prompt): Change prototype.
747 (get_prefix, set_prefix, get_suffix, set_suffix): Delete
748 declarations.
749 * top.c (command_loop):
750 (top_prompt): New global.
751 (get_prefix, set_prefix, get_suffix, ): Delete.
752 (get_prompt, set_prompt): Rewrite.
753 (show_new_async_prompt): Rename to ...
754 (show_prompt): ... this.
755 (init_main): Adjust. Don't handle --annotate=2 here.
756 * event-top.c (new_async_prompt): Delete.
757 (the_prompts): Delete.
758 (more_to_come): Make static.
759 (display_gdb_prompt): Use top_level_prompt() to compute the top
760 level prompt, and don't notify the before_prompt observers
761 directly here. Always trick readline into not trying to display
762 the prompt if sync_execution and displaying the primary prompt.
763 If displaying a local/secondary prompt, always show it, even if
764 sync_execution is set.
765 (change_annotation_level): Delete.
766 (top_level_prompt): New, based on change_annotation_level.
767 (push_prompt, pop_prompt): Delete.
768 (async_disable_stdin): No longer pushes prompt.
769 (command_line_handler): No longer pushes or pops prompt. If more
770 input is expected, call display_gdb_prompt with an explicit empty
771 prompt.
772 (async_stop_sig): Adjust.
773 (set_async_annotation_level, set_async_prompt): Delete.
774 * python/python.c (before_prompt_hook): Adjust.
775
776 2011-09-05 Pedro Alves <pedro@codesourcery.com>
777
778 PR cli/13110
779
780 * infrun.c (fetch_inferior_event): Check if there's a selected
781 thread before checking if the selected thread is executing.
782
783 2011-09-05 Pedro Alves <pedro@codesourcery.com>
784
785 * inf-loop.c (execute_command): Don't check if the current thread
786 if running before synchronously waiting for command completion.
787 * infrun.c (fetch_inferior_event): Handle "set exec-done-display"
788 here.
789 (normal_stop): Call async_enable_stdin here.
790 * inf-loop.c (inferior_event_handler): Don't call
791 async_enable_stdin, nor handle "set exec-done-display" here.
792
793 2011-09-04 Joel Brobecker <brobecker@adacore.com>
794
795 GDB 7.3.1 released.
796
797 2011-09-04 Joel Brobecker <brobecker@adacore.com>
798
799 * NEWS: Change `7.3' into `7.3.1' in `Changes since GDB 7.3'.
800
801 2011-09-04 Joel Brobecker <brobecker@adacore.com>
802
803 * NEWS: Add entry for OpenBSD/NetBSD build failure.
804
805 2011-09-02 Jan Kratochvil <jan.kratochvil@redhat.com>
806
807 * config/s390/s390.mh (NATDEPFILES): Add linux-procfs.o dependency.
808
809 2011-09-02 Matt Rice <ratmice@gmail.com>
810
811 PR gdb/10720
812 * event-top.c (cli_command_loop): Replace readline setup with
813 direct call to display_gdb_prompt.
814 (display_gdb_prompt): Do not call observer mechanism during
815 synchronous execution.
816
817 2011-09-02 Pedro Alves <pedro@codesourcery.com>
818
819 * linux-nat.c (in_pid_list_p): New.
820 (linux_record_stopped_pid): Delete.
821 (lin_lwp_attach_lwp): Check if PTRACE_ATTACH failed because we're
822 already attached to the LWP. Return an indication if so.
823 (linux_nat_filter_event): Adjust.
824 * linux-thread-db.c (attach_thread): Handle lin_lwp_attach_lwp
825 returning an indication to ignore this thread.
826
827 2011-09-02 Pedro Alves <pedro@codesourcery.com>
828
829 * top.c: Include interps.h.
830 (execute_command): If the target can async, but the interpreter is
831 in sync mode, synchronously wait for the command to finish before
832 returning.
833 (execute_command_to_string): Force the interpreter to sync mode.
834 * infrun.c: Include interps.h.
835 (fetch_inferior_event): Don't restore the prompt yet if the
836 interpreter is in sync mode.
837 * interps.c (interpreter_async): New global.
838 * interps.h (interpreter_async): Declare.
839 * inf-loop.c: Include interps.h.
840 (inferior_event_handler): Don't print the language change or run
841 breakpoint commands yet if the interpreter in is sync mode.
842 * main.c (captured_command_loop): Flip the interpreter to async
843 mode.
844 * cli/cli-script.c: Include interps.h.
845 (execute_user_command, while_command, if_command): Force the
846 interpreter to sync mode.
847 * python/python.c: Include interps.h.
848 (python_command, execute_gdb_command): Force the interpreter to
849 sync mode.
850
851 2011-09-02 Pedro Alves <pedro@codesourcery.com>
852
853 * value.c (show_convenience): Catch errors thrown while printing
854 each internal variable.
855 * infrun.c (validate_siginfo_access): New function.
856 (siginfo_value_read, siginfo_value_write): Call it.
857
858 2011-09-01 Jan Kratochvil <jan.kratochvil@redhat.com>
859
860 Revert:
861 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
862 * dwarf2read.c (new_symbol): Handle DW_AT_variable_parameter
863 attribute.
864
865 2011-08-29 Yao Qi <yao@codesourcery.com>
866
867 * solib-dsbt.c (bfd_lookup_symbol): Removed.
868 (cmp_name): New.
869 (enable_break2): Update caller.
870 * solib-frv.c (bfd_lookup_symbol): Removed.
871 (cmp_name): New.
872 (enable_break2): Update caller.
873 * solib-pa64.c (bfd_lookup_symbol): Removed.
874 (cmp_name): New.
875 * solib-svr4.c (bfd_lookup_symbol): Removed.
876 (cmp_name_and_sec_flags): New.
877 (enable_break): Update caller.
878 * solib.c (gdb_bfd_lookup_symbol_from_symtab): New.
879 (gdb_bfd_lookup_symbol_from_dyn_symtab): New.
880 (gdb_bfd_lookup_symbol): New.
881 * solib.h: Functions declarations.
882
883 2011-08-29 Yao Qi <yao@codesourcery.com>
884
885 * Makefile.in (ALL_TARGET_OBS): Add tic6x-tdep.o tic6x-linux-tdep.o
886 and solib-dsbt.o.
887
888 2011-08-29 Jan Kratochvil <jan.kratochvil@redhat.com>
889
890 Fix TUI stepi on code without symbols.
891 * tui/tui-stack.c (tui_show_frame_info): Remove error, set LOW for
892 current PC instead.
893
894 2011-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
895
896 Code cleanup.
897 * mi/mi-cmd-stack.c (list_args_or_locals): Remove stb initialization
898 and the static keyword.
899 * mi/mi-cmd-target.c (mi_cmd_target_file_get, mi_cmd_target_file_put):
900 Make prefix an array.
901 * mi/mi-cmd-target.c (mi_cmd_target_file_delete): Likewise.
902 * mi/mi-main.c (get_register): Remove stb initialization and the static
903 keyword.
904
905 2011-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
906
907 Code cleanup - make mi_opt const.
908 * mi/mi-cmd-break.c (mi_cmd_break_insert, mi_cmd_break_watch): Make
909 opts const.
910 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Likewise.
911 * mi/mi-cmd-env.c (mi_cmd_env_path): Likewise.
912 (mi_cmd_env_dir): Likewise.
913 * mi/mi-cmd-target.c (mi_cmd_target_file_get): Likewise.
914 (mi_cmd_target_file_put): Likewise.
915 * mi/mi-cmd-target.c (mi_cmd_target_file_delete): Likewise.
916 * mi/mi-cmd-var.c (mi_cmd_var_evaluate_expression): Likewise.
917 * mi/mi-getopt.c (mi_getopt): Make opts and opt const.
918 (mi_valid_noargs): Make opts const.
919 * mi/mi-getopt.h (mi_getopt): Make opts and opt const.
920 * mi/mi-main.c (mi_cmd_list_thread_groups): Make opts const.
921 (mi_cmd_data_read_memory): Likewise.
922 (mi_cmd_data_read_memory_bytes): Likewise.
923 (mi_cmd_data_write_memory): Likewise.
924
925 2011-08-26 Matt Rice <ratmice@gmail.com>
926
927 * solib-sunos.c (allocate_rt_common_objfile): Add missing arguments to
928 bcache_xmalloc, replace bcache_xmalloc with call to
929 psymbol_bcache_init for psymbol_cache.
930 * symfile.c (reread_symbols): Remove extra calls to bcache_xmalloc.
931
932 2011-08-26 Jan Kratochvil <jan.kratochvil@redhat.com>
933
934 * inf-loop.c (inferior_event_handler): Add exception_print in
935 INF_EXEC_COMPLETE.
936
937 2011-08-26 Jan Kratochvil <jan.kratochvil@redhat.com>
938
939 * breakpoint.c (bpstat_do_actions): New variable cleanup_if_error, call
940 make_bpstat_clear_actions_cleanup and discard_cleanups for it.
941 * defs.h (make_bpstat_clear_actions_cleanup): New declaration.
942 * exceptions.c (throw_exception): Remove the bpstat_clear_actions call.
943 * inf-loop.c (inferior_event_handler): New variable cleanup_if_error,
944 call make_bpstat_clear_actions_cleanup and discard_cleanups for it.
945 Call bpstat_clear_actions for failed fetch_inferior_event_wrapper.
946 * infrun.c (fetch_inferior_event): Call
947 make_bpstat_clear_actions_cleanup.
948 * top.c (execute_command): New variable cleanup_if_error, call
949 make_bpstat_clear_actions_cleanup and discard_cleanups for it.
950 * utils.c (do_bpstat_clear_actions_cleanup)
951 (make_bpstat_clear_actions_cleanup): New functions.
952
953 2011-08-26 Pedro Alves <pedro@codesourcery.com>
954
955 * linux-nat.c (linux_child_follow_fork): Don't set lp->resumed on
956 either the parent or the child forks. Rename a couple locals.
957
958 2011-08-26 Pedro Alves <pedro@codesourcery.com>
959
960 * linux-nat.c (wait_lwp): Avoid assuming errno is preserved by a
961 library call. Avoid reading the `status' local if all waitpid
962 calls failed.
963
964 2011-08-26 Pedro Alves <pedro@codesourcery.com>
965
966 * common/linux-osdata.c (get_cores_used_by_process): Don't assume
967 opening /proc/PID/task always succeeds.
968
969 2011-08-26 Aleksandar Ristovski <aristovski@qnx.com>
970
971 * linespec.c (symtab_from_filename): Check for the end of string.
972
973 2011-08-26 Marc Khouzam <marc.khouzam@ericsson.com>
974
975 PR mi/11912
976 * varobj.c (cplus_describe_child): Add the keyword
977 'class' to the output of the method when dealing
978 with a cast to a base class.
979
980 2011-08-26 Jan Kratochvil <jan.kratochvil@redhat.com>
981
982 No functionality change.
983 * breakpoint.c (bpstat_clear_actions): Remove the BS parameter, make
984 function comment a reference, new variables tp and bs, move here code
985 from throw_exception.
986 * breakpoint.h (bpstat_clear_actions): Remove the BS parameter,
987 describe it in the comment.
988 * exceptions.c (throw_exception): Remove variable tp, move the code for
989 bpstat_clear_actions to bpstat_clear_actions.
990
991 2011-08-24 Luis Machado <lgustavo@codesourcery.com>
992
993 * linux-nat.h (linux_proc_get_tgid): Remove declaration.
994 * linux-nat.c: Include linux-procfs.h.
995 (linux_proc_get_tgid): Move to ...
996 * common/linux-procfs.c: ... here. New file.
997 * common/linux-procfs.h: New file.
998 * linux-thread-db.c: Include linux-procfs.h.
999 * Makefile.in: Update dependencies.
1000 * config/alpha/alpha-linux.mh: Add linux-procfs.o dependency.
1001 * config/arm/linux.mh: Likewise.
1002 * config/i386/linux.mh: Likewise.
1003 * config/i386/linux64.mh: Likewise.
1004 * config/ia64/linux.mh: Likewise.
1005 * config/m32r/linux.mh: Likewise.
1006 * config/m68k/linux.mh: Likewise.
1007 * config/mips/linux.mh: Likewise.
1008 * config/pa/linux.mh: Likewise.
1009 * config/pa/linux.mh: Likewise.
1010 * config/powerpc/linux.mh: Likewise.
1011 * config/powerpc/ppc64-linux.mh: Likewise.
1012 * config/powerpc/spu-linux.mh: Likewise.
1013 * config/sparc/linux.mh: Likewise.
1014 * config/sparc/linux64.mh: Likewise.
1015 * config/xtensa/linux.mh: Likewise.
1016
1017 2011-08-24 Hui Zhu <teawater@gmail.com>
1018
1019 * tracepoint.c (cond_string_is_same): New function.
1020 (find_matching_tracepoint): Add condition check
1021 by cond_string_is_same.
1022
1023 2011-08-23 Josh Matthews <josh@joshmatthews.net>
1024
1025 Fix build error in Darwin port.
1026 * darwin-nat-info.c (darwin_debug_regions_recurse): New variable uiout.
1027
1028 2011-08-21 Jan Kratochvil <jan.kratochvil@redhat.com>
1029
1030 Code cleanup.
1031 * breakpoint.c (bpstat_clear_actions): Remove clearing of commands_left.
1032 (command_line_is_silent): New function.
1033 (bpstat_do_actions_1): No longer use commands_left, use
1034 command_line_is_silent for commands.
1035 (bpstat_alloc): Remove clearing of commands_left.
1036 (bpstat_stop_status): Remove initialization of commands_left, use
1037 command_line_is_silent.
1038 * breakpoint.h (struct bpstats): Remove commands_left.
1039
1040 2011-08-18 Keith Seitz <keiths@redhat.com>
1041
1042 PR c++/12266
1043 * cp-name-parser.y (struct demangle_info): Remove unused
1044 member PREV.
1045 (d_grab): Likewise.
1046 (allocate_info): Change return type to struct demangle_info *.
1047 Always allocate a new demangle_info.
1048 Remove unused PREV pointer.
1049 (cp_new_demangle_parse_info): New function.
1050 (cp_demangled_name_parse_free): New function.
1051 (do_demangled_name_parse_free_cleanup): New function.
1052 (make_cleanup_cp_demangled_name_parse_free): New function.
1053 (cp_demangled_name_to_comp): Change return type to
1054 struct demangle_parse_info *.
1055 Allocate a new storage for each call.
1056 (main): Update usage for cp_demangled_name_to_comp
1057 API change.
1058 * cp-support.h (struct demangle_parse_info): New structure.
1059 (cp_demangled_name_to_comp): Update API change for
1060 return type.
1061 (cp_new_demangle_parse_info): Declare.
1062 (make_cleanup_cp_demangled_name_parse_free): New declaration.
1063 (cp_demangled_name_parse_free): Declare.
1064 * cp-support.c (cp_canonicalize_string): Update API
1065 change for cp_demangled_name_to_comp.
1066 (mangled_name_to_comp): Likewise.
1067 Return struct demangle_parse_info, too.
1068 (cp_class_name_from_physname): Update mangled_name_to_comp
1069 API change.
1070 (method_name_from_physname): Likewise.
1071 (cp_func_name): Update API change for cp_demangled_name_to_comp.
1072 (cp_remove_params): Likewise.
1073 * python/py-type.c (typy_legacy_template_argument): Likewise.
1074
1075 * cp-support.h (cp_canonicalize_string_no_typedefs): Declare.
1076 (cp_merge_demangle_parse_infos): Declare.
1077 * cp-support.c (ignore_typedefs): New file global.
1078 (copy_string_to_obstack): New function.
1079 (inspect_type): New function.
1080 (replace_typedefs): New function.
1081 (replace_typedefs_qualified_name): New function.
1082 (cp_canonicalize_string_no_typedefs): New function.
1083 * cp-name-parser.y (cp_merge_demangle_parse_infos): New function.
1084 (cp_new_demangle__parse_info): Allocate and initialize the obstack.
1085 * linespec.c (find_methods): Use cp_canonicalize_string_no_typedefs
1086 instead of cp_canonicalize_string.
1087 (find_method): Likewise.
1088 (decode_compound): Before looking up the name, call
1089 cp_canonicalize_string_no_typedefs.
1090 (decode_variable): Likewise.
1091
1092 2011-08-17 Phil Muldoon <pmuldoon@redhat.com>
1093 Tom Tromey <tromey@redhat.com>
1094 Matt Rice <ratmice@gmail.com>
1095
1096 * python/lib/gdb/prompt.py: New file.
1097 * python/lib/gdb/command/prompt.py: New file.
1098 * NEWS: Document set extended-prompt and gdb.prompt library
1099
1100 2011-08-16 Yao Qi <yao@codesourcery.com>
1101
1102 * tic6x-linux-tdep.c: Move const arrays definition from here...
1103 * tic6x-tdep.c: to here ...
1104
1105 2011-08-14 Yao Qi <yao@codesourcery.com>
1106
1107 * NEWS: New port to Texas Instruments TMS320C6x.
1108
1109 2011-08-14 Andrew Jenner <andrew@codesourcery.com>
1110 Bernd Schmidt <bernds@codesourcery.com>
1111 Yao Qi <yao@codesourcery.com>
1112
1113 * configure.tgt: Handle tic6x-*-*linux and tic6x-*-*.
1114 * solib-dsbt.c: New file. Support DSBT shared object.
1115 * tic6x-linux-tdep.c: New file.
1116 * tic6x-tdep.c: New file.
1117 * tic6x-tdep.h: New file.
1118
1119 2011-08-14 Andrew Stubbs <ams@codesourcery.com>
1120 Yao Qi <yao@codesourcery.com>
1121
1122 * remote.c (PACKET_qXfer_fdpic): New enum value.
1123 (remote_protocol_features): Add qXfer:fdpic:read packet.
1124 (remote_xfer_partial): Support TARGET_OBJECT_FDPIC.
1125 (_initialize_remote): Add set/show remote read-fdpic-loadmap command.
1126 * target.h (enum target_object): Add TARGET_OBJECT_FDPIC.
1127
1128 2011-08-14 Yao Qi <yao@codesourcery.com>
1129
1130 Target description for tic6x.
1131 * features/Makefile (WHICH): Add tic6x-c64xp tic6x-c64x tic6x-c62x
1132 tic6x-c64xp-linux tic6x-c64x-linux and tic6x-c62x-linux.
1133 * features/tic6x-c6xp.xml, features/tic6x-core.xml: New.
1134 * features/tic6x-gp.xml, features/tic6x-c62x.xml: New.
1135 * features/tic6x-c64x.xml, features/tic6x-c64xp.xml: New.
1136 * features/tic6x-c62x-linux.xml, features/tic6x-c64x-linux.xml: New.
1137 * features/tic6x-c64xp-linux.xml: New.
1138 * features/tic6x-c64xp.c, features/tic6x-c64x.c: Generated.
1139 * features/tic6x-c62x.c, features/tic6x-c64xp-linux.c: Generated.
1140 * features/tic6x-c64x-linux.c, features/tic6x-c62x-linux.c: Generated.
1141 * regformats/tic6x-c62x.dat, regformats/tic6x-c64x.dat: Generated.
1142 * regformats/tic6x-c64xp.dat,
1143 regformats/tic6x-c62x-linux.dat: Generated.
1144 * regformats/tic6x-c64x-linux.dat,
1145 regformats/tic6x-c64xp-linux.dat: Generated.
1146 * config/djgpp/fnchange.lst: Add features/tic6x-*.xml and
1147 features/tic6x-*.c files.
1148 Add regformats/tic6x-*.dat files.
1149
1150 2011-08-12 Doug Evans <dje@google.com>
1151
1152 * NEWS: Mention new "type" attribute of python gdb.Symbol objects.
1153 * python/py-symbol.c (sympy_get_type): New function.
1154 (symbol_object_getset): Add "type".
1155
1156 2011-08-12 Pedro Alves <pedro@codesourcery.com>
1157
1158 PR tui/13073
1159
1160 * tui/tui-regs.c (tui_show_register_group): Skip registers with an
1161 empty name.
1162 (tui_show_register_group): Don't store a byte buffer in the data
1163 element's value.
1164 (tui_register_format): Skip registers with an empty name.
1165 (tui_get_register): Store a struct value in the data element's
1166 value field instead of a byte buffer holding the raw register
1167 contents. Account for optimized-out and unavailable registers
1168 when comparing register contents.
1169
1170 2011-08-09 Pedro Alves <pedro@codesourcery.com>
1171
1172 * printcmd.c (current_display_number): Update comment.
1173 (disable_current_display_cleanup): Delete.
1174 (do_one_display): Use make_cleanup_restore_integer. Gracefully
1175 catch errors thrown while evaluating and printing the display.
1176
1177 2011-08-09 Tom Tromey <tromey@redhat.com>
1178
1179 * mi/mi-cmd-break.c (mi_cmd_break_passcount): Fix typo.
1180
1181 2011-08-09 Pedro Alves <pedro@codesourcery.com>
1182
1183 * elfread.c (elf_symtab_read): Rework comments.
1184 * maint.c (maintenance_command): Ditto.
1185 * somread.c (som_symtab_read): Ditto.
1186 * solib.c (solib_find, solib_map_sections, update_solib_list)
1187 (solib_add, info_sharedlibrary_command, solib_name_from_address)
1188 (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
1189 (sharedlibrary_command, no_shared_libraries): Ditto.
1190 * solib-irix.c (locate_base, disable_break, enable_break)
1191 (irix_solib_create_inferior_hook, irix_solib_create_inferior_hook)
1192 (irix_current_sos, irix_open_symbol_file_object)
1193 (irix_special_symbol_handling): Ditto.
1194 * solib-sunos.c (locate_base, first_link_map_member)
1195 (sunos_current_sos, disable_break, enable_break)
1196 (sunos_special_symbol_handling, sunos_solib_create_inferior_hook):
1197 Ditto.
1198 * solib-svr4.c (bfd_lookup_symbol, elf_locate_base, locate_base)
1199 (open_symbol_file_object, svr4_current_sos, enable_break)
1200 (svr4_special_symbol_handling, svr4_solib_create_inferior_hook):
1201 Ditto.
1202 * solib-frv.c (bfd_lookup_symbol, open_symbol_file_object)
1203 (frv_current_sos, enable_break, frv_special_symbol_handling)
1204 (frv_solib_create_inferior_hook): Ditto.
1205 * solist.h (struct target_so_ops): Extend the comments of the
1206 special_symbol_handling, current_sos and open_symbol_file_object
1207 methods.
1208
1209 2011-08-09 Phil Muldoon <pmuldoon@redhat.com>
1210
1211 * python/lib/gdb/__init__.py: Auto-load files in command and
1212 function directories.
1213 * python/python.c (finish_python_initialization): Use
1214 os.path.join.
1215 * python/lib/gdb/command/pretty_printers.py: Self register
1216 command.
1217 * NEWS: Document auto-loading.
1218
1219 2011-08-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1220
1221 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full) <DWARF_VALUE_STACK>
1222 (dwarf2_evaluate_loc_desc_full) <DWARF_VALUE_LITERAL>: New variable
1223 objfile_gdbarch. Fix BFD_ENDIAN_BIG case.
1224
1225 2011-08-08 Tom Tromey <tromey@redhat.com>
1226
1227 * breakpoint.c (clean_up_filters): Remove.
1228 (catch_syscall_split_args): Use VEC_cleanup.
1229
1230 2011-08-06 Jan Kratochvil <jan.kratochvil@redhat.com>
1231
1232 * cp-name-parser.y (xfree): Wrap the name free by CONCAT2.
1233 (main): Uncomment "Demangling error\n".
1234
1235 2011-08-05 Paul Pluzhnikov <ppluzhnikov@google.com>
1236
1237 * solib-target.c (segment_attributes): Make them static.
1238 (section_attributes, library_children, library_attributes): Likewise.
1239 (library_list_children, library_list_attributes): Likesise.
1240 (library_list_elements): Likewise.
1241
1242 2011-08-05 Pedro Alves <pedro@codesourcery.com>
1243
1244 * exceptions.c (throw_exception): Don't disable the current
1245 display.
1246 * printcmd.c (disable_current_display_cleanup): New function.
1247 (do_one_display): Install a cleanup to disable the current display
1248 if doing the display throws.
1249
1250 2011-08-05 Eli Zaretskii <eliz@gnu.org>
1251
1252 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Move the
1253 initialization of the tp_new member to the corresponding
1254 gdbpy_initialize_* function.
1255 * python/py-cmd.c (gdbpy_initialize_commands): Likewise.
1256 * python/py-frame.c (gdbpy_initialize_frames): Likewise.
1257 * python/py-function.c (gdbpy_initialize_functions): Likewise.
1258 * python/py-inferior.c (gdbpy_initialize_inferior): Likewise.
1259 * python/py-param.c (gdbpy_initialize_parameters): Likewise.
1260
1261 2011-08-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1262
1263 * spu-tdep.c (info_spu_event_command, info_spu_signal_command)
1264 (info_spu_mailbox_list, info_spu_mailbox_command, info_spu_dma_cmdlist)
1265 (info_spu_dma_command, info_spu_proxydma_command): Rename uiout
1266 references to current_uiout.
1267
1268 2011-08-04 Pedro Alves <pedro@codesourcery.com>
1269
1270 * event-loop.c (gdb_do_one_event): Remove `data' parameter.
1271 (start_event_loop): Use TRY_CATCH instead of catch_errors.
1272 * event-loop.h (gdb_do_one_event): Remove `data' parameter.
1273 * top.c (gdb_readline_wrapper): Adjust.
1274 * tui/tui-interp.c (tui_command_loop):
1275 (_initialize_tui_interp): Don't install it.
1276
1277 2011-08-04 Pedro Alves <pedro@codesourcery.com>
1278
1279 * ui-out.h (uiout): Rename to ...
1280 (current_uiout): ... this.
1281 * ui-out.c (uiout): Rename to ...
1282 (current_uiout): ... this.
1283 * ada-lang.c (print_it_exception, print_one_exception)
1284 (print_mention_exception): Adjust.
1285 * breakpoint.c (watchpoint_check): Adjust.
1286 (print_breakpoint_location, print_one_breakpoint, breakpoint_1)
1287 (default_collect_info, watchpoints_info, print_one_catch_fork)
1288 (print_one_catch_vfork, print_one_catch_syscall)
1289 (print_one_catch_exec, mention, print_it_ranged_breakpoint)
1290 (print_one_ranged_breakpoint, print_mention_ranged_breakpoint)
1291 (print_it_watchpoint, print_mention_watchpoint)
1292 (print_it_masked_watchpoint, print_mention_masked_watchpoint)
1293 (print_it_exception_catchpoint, print_one_exception_catchpoint)
1294 (print_mention_exception_catchpoint, say_where, bkpt_print_it)
1295 (bkpt_print_mention, momentary_bkpt_print_it)
1296 (tracepoint_print_mention, update_static_tracepoint)
1297 (tracepoints_info, save_breakpoints): Adjust.
1298 * cli-out.c (field_separator): Adjust.
1299 * cp-abi.c (list_cp_abis, show_cp_abi_cmd): Adjust.
1300 * exceptions.c (catch_exceptions_with_msg, catch_errors): Adjust.
1301 * frame.c (get_current_frame): Adjust.
1302 * infcmd.c (run_command_1, print_return_value): Adjust.
1303 * inferior.c (inferior_command, info_inferiors_command): Adjust.
1304 * infrun.c (print_end_stepping_range_reason): Adjust.
1305 (print_signal_exited_reason, print_exited_reason): Adjust.
1306 (print_signal_received_reason, print_no_history_reason): Adjust.
1307 * interps.c (interp_set): Adjust.
1308 * osdata.c (info_osdata_command): Adjust.
1309 * progspace.c (maintenance_info_program_spaces_command): Adjust.
1310 * remote-fileio.c (remote_fileio_request): Adjust.
1311 * remote.c (show_remote_cmd): Adjust.
1312 * solib.c (info_sharedlibrary_command): Adjust.
1313 * source.c (print_source_lines_base): Adjust.
1314 * stack.c (print_stack_frame): Adjust.
1315 (do_gdb_disassembly, print_frame_info, print_frame): Adjust.
1316 * symfile-mem.c (add_vsyscall_page): Adjust.
1317 * symfile.c (load_progress, generic_load)
1318 (print_transfer_performance): Adjust.
1319 * thread.c (info_threads_command, restore_selected_frame)
1320 (thread_command): Adjust.
1321 * top.c (make_cleanup_restore_ui_file): Adjust.
1322 * tracepoint.c (tvariables_info_1, trace_status_mi, tfind_1)
1323 (print_one_static_tracepoint_marker): Adjust.
1324 * cli/cli-cmds.c (print_disassembly): Adjust.
1325 * cli/cli-decode.c (print_doc_line): Adjust.
1326 * cli/cli-interp.c (safe_execute_command): Adjust.
1327 * cli/cli-logging.c (set_logging_redirect, pop_output_files)
1328 (handle_redirections): Adjust.
1329 * cli/cli-script.c (show_user_1): Adjust.
1330 * cli/cli-setshow.c (do_setshow_command, cmd_show_list): Adjust.
1331 * mi/mi-cmd-break.c (breakpoint_notify): Adjust.
1332 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Adjust.
1333 * mi/mi-cmd-env.c (mi_cmd_env_pwd, mi_cmd_env_path)
1334 (mi_cmd_env_dir): Adjust.
1335 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
1336 (print_partial_file_name, mi_cmd_file_list_exec_source_files): Adjust.
1337 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
1338 (mi_cmd_stack_info_depth, mi_cmd_stack_list_args)
1339 (list_args_or_locals): Adjust.
1340 * mi/mi-cmd-var.c (print_varobj, mi_cmd_var_create)
1341 (mi_cmd_var_delete, mi_cmd_var_set_format, mi_cmd_var_set_frozen)
1342 (mi_cmd_var_show_format, mi_cmd_var_info_num_children)
1343 (mi_cmd_var_list_children, mi_cmd_var_info_type)
1344 (mi_cmd_var_info_path_expression, mi_cmd_var_info_expression)
1345 (mi_cmd_var_show_attributes, mi_cmd_var_evaluate_expression)
1346 (mi_cmd_var_assign, mi_cmd_var_update, varobj_update_one): Adjust.
1347 * mi/mi-interp.c (mi_on_normal_stop): Adjust.
1348 * mi/mi-main.c (mi_cmd_gdb_exit, mi_cmd_thread_select)
1349 (mi_cmd_thread_list_ids, mi_cmd_thread_info, print_one_inferior)
1350 (list_available_thread_groups, mi_cmd_list_thread_groups)
1351 (mi_cmd_data_list_register_names)
1352 (mi_cmd_data_list_changed_registers)
1353 (mi_cmd_data_list_register_values, get_register)
1354 (mi_cmd_data_evaluate_expression, mi_cmd_data_read_memory)
1355 (mi_cmd_data_read_memory_bytes, mi_cmd_list_features)
1356 (mi_cmd_list_target_features, mi_cmd_add_inferior)
1357 (mi_execute_command, mi_load_progress): Adjust.
1358 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Adjust.
1359 * python/py-auto-load.c (print_script, info_auto_load_scripts):
1360 Adjust.
1361 * python/py-breakpoint.c (bppy_get_commands): Adjust.
1362 * tui/tui-interp.c (tui_command_loop): Adjust.
1363 * tui/tui-io.c (tui_setup_io, tui_initialize_io): Adjust.
1364
1365 2011-08-04 Pedro Alves <pedro@codesourcery.com>
1366
1367 * exceptions.c (struct catcher): Remove saved_uiout field.
1368 (exceptions_state_mc_init): Remove the `func_uiout' parameter, and
1369 no longer save/resvore the global ui_out builder.
1370 (catch_exceptions_with_msg): Save/override/restore the global
1371 ui_out builder manually instead of relying on TRY_CATCH to do it.
1372 (catch_errors): Save/restore the global ui_out builder manually
1373 instead of relying on TRY_CATCH to do it.
1374 * exceptions.h (exceptions_state_mc_init): Remove the `func_uiout'
1375 parameter.
1376 (TRY_CATCH): Adjust.
1377 * cli/cli-interp.c (safe_execute_command): Save/override/restore
1378 the global ui_out builder manually instead of relying on TRY_CATCH
1379 to do it.
1380
1381 2011-08-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1382
1383 * breakpoint.c (update_global_location_list): Ensure
1384 invariant 'first loc marked not duplicated and inserted,
1385 following locs marked duplicated/not inserted' is respected
1386 for multiple locations at the same address.
1387 (unduplicated_should_be_inserted) New function.
1388 (swap_insertion) New function.
1389
1390 2011-08-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1391
1392 * stack.c (print_frame_arguments_choices): Comment typo fix.
1393
1394 2011-08-01 Thiago Jung Bauermann <bauerman@br.ibm.com>
1395
1396 Revert:
1397 2011-07-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
1398 * breakpoint.c (insert_bp_location): Remove disabled_breaks
1399 argument. Update callers.
1400
1401 2011-08-01 Paul Pluzhnikov <ppluzhnikov@google.com>
1402
1403 PR gdb/13045
1404 * doublest.c (convert_doublest_to_floatformat): Pass correct
1405 mantissa length to put_field.
1406
1407 2011-08-01 Jan Kratochvil <jan.kratochvil@redhat.com>
1408
1409 * stack.c (do_gdb_disassembly): Use RETURN_MASK_ERROR, simplify the
1410 exception_print code path.
1411 (backtrace_command): Remove variable e. Protect arg by make_cleanup in
1412 advance. Simplify memset. Remove TRY_CATCH. Remove explicit xfree.
1413 (backtrace_full_command): Remove variable e. Remove TRY_CATCH.
1414
1415 2011-08-01 Jan Kratochvil <jan.kratochvil@redhat.com>
1416
1417 Code cleanup.
1418 * stack.c (struct print_stack_frame_args, print_stack_frame_stub):
1419 Remove, merge them into ...
1420 (print_stack_frame): ... here with a TRY_CATCH. New variable e, remove
1421 variable args and its initialization.
1422 (struct print_args_args, print_args_stub): Remove, merge them into
1423 print_frame.
1424 (struct gdb_disassembly_stub_args, gdb_disassembly_stub): Remove, merge
1425 them into ...
1426 (do_gdb_disassembly): ... here. Remove variable args and its
1427 initialization.
1428 (print_frame): Remove variable args and its initialization, new
1429 variable gdbarch and numargs (from print_args_stub), inline here
1430 print_args_stub with a TRY_CATCH.
1431 (struct backtrace_command_args, backtrace_command_stub): Remove, merge
1432 them into ...
1433 (backtrace_command, backtrace_full_command): ... here with a TRY_CATCH.
1434 New variable e, remove variable btargs and its initialization.
1435
1436 2011-08-01 Tristan Gingold <gingold@adacore.com>
1437
1438 * darwin-nat.c (darwin_decode_exception_message): Adjust assertion.
1439
1440 2011-07-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
1441
1442 * breakpoint.c (insert_bp_location): Document return value.
1443 (insert_breakpoint_locations): Fix documentation.
1444 (remove_breakpoints): Add documentation.
1445
1446 2011-07-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
1447
1448 * breakpoint.c (insert_bp_location): Remove disabled_breaks
1449 argument. Update callers.
1450
1451 2011-07-30 Jan Kratochvil <jan.kratochvil@redhat.com>
1452
1453 * stack.c (print_frame_info): Comment typo fix.
1454
1455 2011-07-29 Sterling Augustine <saugustine@google.com>
1456
1457 * MAINTAINERS (Write After Approval): Add myself to the list.
1458
1459 2011-07-29 Tom Tromey <tromey@redhat.com>
1460
1461 * solib-target.c: Use DEF_VEC_I, not DEF_VEC_O.
1462 (library_list_start_segment): Update.
1463 (library_list_start_section): Update.
1464
1465 2011-07-28 Phil Muldoon <pmuldoon@redhat.com>
1466
1467 * varobj.c (value_get_print_value): Move hint check later into the
1468 function. Comment function. Free thevalue before reusing it.
1469
1470 2011-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1471 Pedro Alves <pedro@codesourcery.com>
1472
1473 * eval.c (evaluate_subexp_standard): Remove not_lval from all calls of
1474 value_one.
1475 * valops.c (value_one): Remove parameter lv. Do not pass it to itself.
1476 Assert the result kind.
1477 * value.h (value_one): Remove parameter lv.
1478
1479 2011-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1480
1481 Fix crash on lval_computed values.
1482 * valops.c (value_zero): Use not_lval for lval_computed.
1483
1484 2011-07-27 Tom Tromey <tromey@redhat.com>
1485
1486 * Makefile.in (HFILES_NO_SRCDIR): Add 'common' prefix for
1487 gdb_assert.h, gdb_locale.h, gdb_dirent.h.
1488
1489 2011-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1490
1491 * typeprint.c (_initialize_typeprint): Extend the help of "whatis" and
1492 "ptype" by their typedefs difference.
1493
1494 2011-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1495
1496 * dwarf2expr.c (ctx_no_read_reg): New function.
1497 * dwarf2expr.h (ctx_no_read_reg): New declaration.
1498 * dwarf2read.c (read_2_signed_bytes, read_4_signed_bytes): Remove.
1499 (decode_locdesc_read_mem, decode_locdesc_ctx_funcs): New.
1500 (decode_locdesc): Replace by a caller of dwarf_expr_eval.
1501
1502 2011-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1503
1504 * dwarf2-frame.c (no_get_frame_base, no_get_frame_cfa, no_get_frame_pc)
1505 (no_get_tls_address, no_dwarf_call, no_base_type): Move to the other
1506 file.
1507 (dwarf2_frame_ctx_funcs): Reference the renamed functions.
1508 * dwarf2expr.c (ctx_no_get_frame_base, ctx_no_get_frame_cfa)
1509 (ctx_no_get_frame_pc, ctx_no_get_tls_address, ctx_no_dwarf_call)
1510 (ctx_no_get_base_type): Move the functions here.
1511 * dwarf2expr.h (ctx_no_get_frame_base, ctx_no_get_frame_cfa)
1512 (ctx_no_get_frame_pc, ctx_no_get_tls_address, ctx_no_dwarf_call)
1513 (ctx_no_get_base_type): New declarations.
1514
1515 2011-07-27 Tom Tromey <tromey@redhat.com>
1516
1517 * xcoffread.c (dwarf2_xcoff_names): Add 'macro' and 'sentinel'
1518 entries.
1519 * symfile.h (struct dwarf2_debug_sections) <sentinel>: New field.
1520 * dwarf2read.c (dwarf2_elf_names): Add sentinel entry.
1521
1522 2011-07-26 Sterling Augustine <saugustine@google.com>
1523
1524 * cli/cli-dump.c (dump_binary_file): Change parameter type to
1525 ULONGEST.
1526 (dump_bfd_file): Likewise.
1527
1528 2011-07-26 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1529
1530 * remote.c (remote_region_ok_for_hw_watchpoint): New function.
1531 (remote_hw_watchpoint_length_limit): New variable.
1532 (_initialize_remote) add set,show cmds for this new variable.
1533 * gdb.texinfo: document these new commands.
1534 * NEWS: Mention these new commands.
1535
1536 2011-07-26 Pedro Alves <pedro@codesourcery.com>
1537
1538 * breakpoint.c (works_in_software_mode_watchpoint): Also return
1539 true for software watchpoints.
1540
1541 2011-07-26 Joel Brobecker <brobecker@adacore.com>
1542
1543 GDB 7.3 released.
1544
1545 2011-07-26 Tom Tromey <tromey@redhat.com>
1546
1547 * symfile.h (struct dwarf2_debug_sections) <macro>: New field.
1548 * dwarf2read.c (read_indirect_string_at_offset): New function.
1549 (read_indirect_string): Use it.
1550 (dwarf_decode_macro_bytes): New function, taken from
1551 dwarf_decode_macros. Handle DW_MACRO_GNU_*.
1552 (dwarf_decode_macros): Use it. handle DW_MACRO_GNU_*.
1553 (dwarf_parse_macro_header, skip_form_bytes, skip_unknown_opcode):
1554 New functions.
1555 (struct dwarf2_per_objfile) <macro>: New field.
1556 (dwarf2_elf_names): Add .debug_macro.
1557 (dwarf2_macros_too_long_complaint): Add 'section' argument.
1558 (dwarf2_locate_sections): Handle new section.
1559 (read_file_scope): Handle DW_AT_GNU_macros.
1560 (dwarf2_per_objfile_free): Unmap the .debug_macro section.
1561
1562 2011-07-26 Paul Pluzhnikov <ppluzhnikov@google.com>
1563
1564 * NEWS: Mention dcache configuration.
1565 * dcache.c (dcache_set_list, dcache_show_list): New variables.
1566 (dcache_size, dcache_line_size): New variables.
1567 (LINE_SIZE_MASK, XFORM, MASK): Adjust.
1568 (struct dcache_block): Make it expandable.
1569 (struct dcache_struct): New field.
1570 (dcache_invalidate): Discard freelist upon dcache_line_size changes.
1571 (dcache_hit, dcache_alloc, dcache_peek_byte): Adjust.
1572 (dcache_poke_byte, dcache_print_line): Adjust.
1573 (set_dcache_size, set_dcache_line_size): New functions.
1574 (set_dcache_command, show_dcache_command): New functions.
1575 (_initialize_dcache): Add new commands.
1576
1577 2011-07-26 Paul Pluzhnikov <ppluzhnikov@google.com>
1578
1579 * progspace.h (struct program_space): Add solib_add_generation.
1580 * infcmd.c (post_create_inferior): Only call solib_add if not
1581 already done.
1582 * solib.c (solib_add): Increment solib_add_generation.
1583
1584 2011-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
1585
1586 Fix implicit pointer offsets.
1587 * dwarf2loc.c (indirect_pieced_value): Comment byte_offset. Use also
1588 ptr.OFFSET.
1589
1590 2011-07-25 Tom Tromey <tromey@redhat.com>
1591
1592 * ada-lang.c (ada_exception_breakpoint_ops): Make return type
1593 const.
1594 (ada_exception_sal): Make 'ops' const.
1595 (ada_decode_exception_location): Likewise.
1596 (ada_decode_assert_location): Likewise.
1597 (catch_assert_command): Update.
1598 (catch_ada_exception_command): Update.
1599 (create_ada_exception_catchpoint): Make 'ops' const.
1600 * breakpoint.c (set_raw_breakpoint_without_location)
1601 (set_raw_breakpoint, momentary_breakpoint_from_master): Make 'ops'
1602 const.
1603 (create_internal_breakpoint): Update.
1604 (init_raw_breakpoint_without_location): Make 'ops' const.
1605 (init_raw_breakpoint, init_catchpoint)
1606 (create_fork_vfork_event_catchpoint)
1607 (create_syscall_event_catchpoint, init_breakpoint_sal)
1608 (create_breakpoint_sal, create_breakpoints_sal)
1609 (create_breakpoint, init_ada_exception_breakpoint): Likewise.
1610 * breakpoint.h (struct breakpoint) <ops>: Now const.
1611 (init_ada_exception_breakpoint, create_breakpoint): Make 'ops'
1612 const.
1613
1614 2011-07-25 Paul Pluzhnikov <ppluzhnikov@google.com>
1615
1616 * linux-thread-db.c (thread_from_lwp): Initialize th.th_unique.
1617
1618 2011-07-25 Pedro Alves <pedro@codesourcery.com>
1619
1620 * breakpoint.h (print_recreate_thread): Declare.
1621 (struct breakpoint): Move step_count, pass_count,
1622 number_on_target, static_trace_marker_id,
1623 static_trace_marker_id_idx ...
1624 (struct tracepoint): ... to this new struct.
1625 (get_tracepoint, get_tracepoint_by_number_on_target)
1626 (get_tracepoint_by_number): Change return type to struct
1627 tracepoint pointer.
1628 * breakpoint.c (is_tracepoint_type): New, factored out from
1629 is_tracepoint.
1630 (is_tracepoint): Adjust.
1631 (print_one_breakpoint_location): Cast to struct tracepoint as
1632 necessary, and adjust.
1633 (print_recreate_catch_fork, print_recreate_catch_vfork)
1634 (print_recreate_catch_syscall, print_recreate_catch_exec): Call
1635 print_recreate_thread.
1636 (init_breakpoint_sal): New, factored out from
1637 create_breakpoint_sal.
1638 (create_breakpoint_sal): Reimplement.
1639 (create_breakpoint): Allocate a struct tracecepoint if the caller
1640 wanted a tracepoint. Use init_breakpoint_sal and
1641 install_breakpoint.
1642 (print_recreate_ranged_breakpoint, print_recreate_watchpoint)
1643 (print_recreate_masked_watchpoint)
1644 (print_recreate_exception_catchpoint): Call print_recreate_thread.
1645 (tracepoint_print_one_detail): Adjust.
1646 (tracepoint_print_recreate): Adjust. Call print_recreate_thread.
1647 Dump the pass count here.
1648 (update_static_tracepoint): Adjust.
1649 (addr_string_to_sals): Adjust.
1650 (create_tracepoint_from_upload): Adjust. Change return type to
1651 struct tracepoint pointer.
1652 (trace_pass_set_count): Change parameter type to struct tracepoint
1653 pointer, and adjust.
1654 (trace_pass_command): Adjust.
1655 (get_tracepoint, get_tracepoint_by_number_on_target)
1656 (get_tracepoint_by_number): Change return type to struct
1657 tracepoint pointer, and adjust.
1658 (print_recreate_thread): New, factored out from save_breakpoints.
1659 (save_breakpoints): Don't print thread and task and passcount
1660 recreation here.
1661 * remote.c (remote_download_tracepoint): Adjust.
1662 * tracepoint.c (trace_actions_command, validate_actionline)
1663 (start_tracing, tfind_1, trace_find_tracepoint_command)
1664 (trace_dump_command): Adjust.
1665 (find_matching_tracepoint): Change return type to struct
1666 tracepoint pointer, and adjust.
1667 (merge_uploaded_tracepoints, tfile_get_traceframe_address)
1668 (tfile_trace_find, tfile_fetch_registers): Adjust.
1669 * tracepoint.h (create_tracepoint_from_upload): Change return type
1670 to struct tracepoint pointer.
1671 * ada-lang.c (print_recreate_exception): Call
1672 print_recreate_thread.
1673 * mi/mi-cmd-break.c (mi_cmd_break_passcount): Adjust.
1674
1675 2011-07-25 Pedro Alves <pedro@codesourcery.com>
1676
1677 * breakpoint.h (struct breakpoint): Move ops as first field. Move
1678 exp_string, exp_string_reparse, exp, exp_valid_block, cond_exp,
1679 cond_exp_valid_block, val, val_valid, watchpoint_frame,
1680 watchpoint_thread, watchpoint_triggered ...
1681 (struct watchpoint): ... to this new struct.
1682 (is_watchpoint): Declare.
1683 (install_breakpoint): Add new `internal' parameter.
1684 * breakpoint.c (is_watchpoint): Delete declaration.
1685 (set_breakpoint_condition): Handle watchpoints.
1686 (is_watchpoint): Make public.
1687 (watchpoint_in_thread_scope): Change parameter type to struct
1688 watchpoint.
1689 (watchpoint_del_at_next_stop): Change parameter type to struct
1690 watchpoint. Remove assertion. Adjust.
1691 (update_watchpoint): Ditto.
1692 (insert_breakpoints, breakpoint_init_inferior)
1693 (watchpoints_triggered, watchpoint_check)
1694 (bpstat_check_watchpoint, bpstat_check_breakpoint_conditions)
1695 (bpstat_stop_status, print_one_breakpoint_location)
1696 (print_one_breakpoint_location, watchpoint_locations_match): Cast
1697 to struct watchpoint as necessary, and adjust.
1698 (install_breakpoint): Add `internal' argument. If true, don't
1699 mention the new breakpoint. Use set_breakpoint_number.
1700 (create_fork_vfork_event_catchpoint)
1701 (create_syscall_event_catchpoint): Adjust.
1702 (dtor_watchpoint): New.
1703 (re_set_watchpoint, insert_watchpoint, remove_watchpoint)
1704 (breakpoint_hit_watchpoint, resources_needed_watchpoint)
1705 (print_it_watchpoint, print_mention_watchpoint)
1706 (print_recreate_watchpoint, insert_masked_watchpoint)
1707 (remove_masked_watchpoint, resources_needed_masked_watchpoint)
1708 (print_one_detail_masked_watchpoint)
1709 (print_mention_masked_watchpoint)
1710 (print_recreate_masked_watchpoint): Cast to struct watchpoint as
1711 necessary, and adjust.
1712 (watch_command_1): Allocate and initialize a struct watchpoint
1713 instead of a struct breakpoint. Use install_breakpoint.
1714 (catch_exec_command_1): Adjust.
1715 (base_breakpoint_dtor): Delete accesses to watchpoint specific
1716 fields.
1717 (delete_breakpoint, enable_breakpoint_disp)
1718 (invalidate_bp_value_on_memory_change): Cast to struct watchpoint
1719 as necessary, and adjust.
1720 (initialize_breakpoint_ops): Install dtor_watchpoint as
1721 watchpoints' dtor method.
1722 * ada-lang.c (create_ada_exception_catchpoint): Adjust.
1723 * python/py-breakpoint.c (bppy_get_expression): Use is_watchpoint.
1724 to struct watchpoint as necessary, and adjust.
1725
1726 2011-07-25 Pedro Alves <pedro@codesourcery.com>
1727
1728 * ada-lang.c (dtor_exception, re_set_exception): Indirect through
1729 the the base class ops table.
1730 (catch_exception_breakpoint_ops)
1731 (catch_exception_unhandled_breakpoint_ops)
1732 (catch_assert_breakpoint_ops): Don't statically initialize.
1733 (initialize_ada_catchpoint_ops): New.
1734 (_initialize_ada_language): Call it.
1735 * breakpoint.c (base_breakpoint_ops, bkpt_base_breakpoint_ops)
1736 (bkpt_breakpoint_ops): Forward declare.
1737 (catch_fork_breakpoint_ops, catch_vfork_breakpoint_ops)
1738 (catch_syscall_breakpoint_ops, catch_exec_breakpoint_ops)
1739 (ranged_breakpoint_ops, watchpoint_breakpoint_ops)
1740 (masked_watchpoint_breakpoint_ops)
1741 (gnu_v3_exception_catchpoint_ops): Don't statically initialize.
1742 (dtor_catch_syscall, dtor_catch_exec): Indirect through the the
1743 base class ops table.
1744 (null_re_set, null_check_status, null_works_in_software_mode)
1745 (null_resources_needed, null_print_one_detail): Delete.
1746 (bkpt_dtor): Rename to ...
1747 (base_breakpoint_dtor): ... this. Make static.
1748 (bkpt_allocate_location): Rename to ...
1749 (base_breakpoint_allocate_location): ... this. Make static.
1750 (base_breakpoint_re_set): New.
1751 (internal_error_pure_virtual_called): New.
1752 (base_breakpoint_insert_location, base_breakpoint_remove_location)
1753 (base_breakpoint_breakpoint_hit, base_breakpoint_check_status)
1754 (base_breakpoint_works_in_software_mode)
1755 (base_breakpoint_resources_needed, base_breakpoint_print_it)
1756 (base_breakpoint_print_one_detail, base_breakpoint_print_mention)
1757 (base_breakpoint_print_recreate): New functions.
1758 (base_breakpoint_ops): New global.
1759 (bkpt_re_set, bkpt_insert_location, bkpt_remove_location)
1760 (bkpt_breakpoint_hit): Make static.
1761 (bkpt_check_status): Delete.
1762 (bkpt_resources_needed): Make static.
1763 (bkpt_works_in_software_mode): Delete.
1764 (bkpt_print_it, bkpt_print_mention, bkpt_print_recreate): Make
1765 static.
1766 (bkpt_breakpoint_ops, internal_breakpoint_ops)
1767 (momentary_breakpoint_ops): Don't statically initialize.
1768 (internal_bkpt_print_recreate, momentary_bkpt_print_recreate):
1769 Delete.
1770 (tracepoint_insert_location, tracepoint_remove_location)
1771 (tracepoint_check_status, tracepoint_works_in_software_mode)
1772 (tracepoint_print_it): Delete.
1773 (tracepoint_breakpoint_ops): Don't statically initialize.
1774 (initialize_breakpoint_ops): New.
1775 (_initialize_breakpoint): Call it.
1776 * breakpoint.h (null_re_set, null_works_in_software_mode)
1777 (null_resources_needed, null_check_status, null_print_one_detail):
1778 (bkpt_dtor, bkpt_allocate_location, bkpt_re_set)
1779 (bkpt_insert_location, bkpt_remove_location, bkpt_breakpoint_hit)
1780 (bkpt_check_status, bkpt_resources_needed)
1781 (bkpt_works_in_software_mode, bkpt_print_it)
1782 (null_print_one_detail, bkpt_print_mention, bkpt_print_recreate):
1783 Delete declarations.
1784 (initialize_breakpoint_ops): Declare.
1785
1786 2011-07-25 Pedro Alves <pedro@codesourcery.com>
1787
1788 * breakpoint.c (bkpt_print_it, internal_bkpt_print_it)
1789 (momentary_bkpt_print_it): Simplify.
1790
1791 2011-07-25 Pedro Alves <pedro@codesourcery.com>
1792
1793 Split internal, momentary and user breakpoints breakpoint_ops
1794 tables.
1795
1796 * breakpoint.c (internal_breakpoint_ops)
1797 (momentary_breakpoint_ops): Forward declare.
1798 (create_internal_breakpoint): Add new breakpoint_ops parameter.
1799 Pass it down, rather than hardcoding bkpt_breakpoint_ops.
1800 (create_overlay_event_breakpoint)
1801 (create_std_terminate_master_breakpoint)
1802 (create_exception_master_breakpoint): Create breakpoints with
1803 internal_breakpoint_ops vtable.
1804 (set_longjmp_breakpoint): Create momentary breakpoints with
1805 momentary_breakpoint_ops vtable, using
1806 momentary_breakpoint_from_master.
1807 (create_thread_event_breakpoint, create_jit_event_breakpoint)
1808 (create_solib_event_breakpoint): Create breakpoints with
1809 internal_breakpoint_ops vtable.
1810 (set_momentary_breakpoint): Create breakpoints with
1811 momentary_breakpoint_ops vtable.
1812 (momentary_breakpoint_from_master): New, factored out from
1813 clone_momentary_breakpoint.
1814 (clone_momentary_breakpoint): Adjust.
1815 (watch_command_1): Create scope breakpoints with
1816 momentary_breakpoint_ops vtable.
1817 (bkpt_re_set): Remove handling of internal and momentary
1818 breakpoints.
1819 (bkpt_print_mention, bkpt_print_recreate): New.
1820 (bkpt_breakpoint_ops): Adjust.
1821 (internal_bkpt_re_set, internal_bkpt_check_status)
1822 (internal_bkpt_print_it, internal_bkpt_print_mention)
1823 (internal_bkpt_print_recreate, internal_breakpoint_ops): New.
1824 (momentary_bkpt_re_set, momentary_bkpt_check_status)
1825 (momentary_bkpt_print_it, momentary_bkpt_print_mention)
1826 (momentary_bkpt_print_recreate): New.
1827 (momentary_breakpoint_ops): New.
1828
1829 2011-07-25 Pedro Alves <pedro@codesourcery.com>
1830
1831 Implement most breakpoint_ops methods for all breakpoint types,
1832 and move the default handlings to the proper callbacks.
1833
1834 * breakpoint.c (update_watchpoint): Always call the breakpoint's
1835 works_in_software_mode method.
1836 (insert_bp_location): Go through breakpoint_ops->insert_location
1837 for software and hardware watchpoints.
1838 (create_internal_breakpoint): Pass bkpt_breakpoint_ops as
1839 breakpoint_ops.
1840 (remove_breakpoint_1): Go through breakpoint_ops->remove_location
1841 for software and hardware watchpoints.
1842 (print_it_typical): Delete.
1843 (print_bp_stop_message): Always call the breakpoint_ops->print_it
1844 method.
1845 (watchpoint_check): Adjust comment.
1846 (bpstat_check_location): Simply always call the breakpoint's
1847 breakpoint_hit method.
1848 (bpstat_stop_status): Always call the breakpoint's check_status
1849 method. Remove special cases for watchpoints and internal event
1850 breakpoints from here (moved to the check_status implementations).
1851 (print_one_breakpoint_location): Assume b->ops is never NULL.
1852 Remove static tracepoint marker id printing from here (moved to
1853 the print_one_detail callback implementation of tracepoints).
1854 (init_bp_location): Assert OPS is never NULL.
1855 (allocate_bp_location): Always call the breakpoint's
1856 allocate_location method, and remove the default code from here.
1857 (free_bp_location): Always call the location's dtor method, and
1858 remove the default code from here.
1859 (init_raw_breakpoint_without_location): Assert OPS is never NULL.
1860 (set_raw_breakpoint_without_location): Add new breakpoint_ops
1861 parameter. Pass it down.
1862 (set_raw_breakpoint): Ditto.
1863 (print_it_catch_fork): Adjust to take a bpstat as argument.
1864 (catch_fork_breakpoint_ops): Install methods.
1865 (print_it_catch_vfork): Adjust to take a bpstat as argument.
1866 (catch_vfork_breakpoint_ops): Install methods.
1867 (dtor_catch_syscall): Call the base dtor.
1868 (print_it_catch_syscall): Adjust to take a bpstat as argument.
1869 (catch_syscall_breakpoint_ops): Install methods.
1870 (dtor_catch_exec): Call the base dtor.
1871 (print_it_catch_exec): Adjust to take a bpstat as argument.
1872 (catch_exec_breakpoint_ops): Install methods.
1873 (hw_breakpoint_used_count, hw_watchpoint_used_count): Always call
1874 the breakpoint's resources_needed method, and remove the default
1875 code from here.
1876 (set_momentary_breakpoint): Pass bkpt_breakpoint_ops as
1877 breakpoint_ops.
1878 (clone_momentary_breakpoint): Clone the original's ops.
1879 (mention): Always call the breakpoint's print_mention method, and
1880 remove the default code from here.
1881 (create_breakpoint_sal): Adjust to pass the ops to
1882 set_raw_breakpoint rather than setting it manually.
1883 (create_breakpoint): Assert ops is never NULL. Adjust to pass the
1884 ops to set_raw_breakpoint_without_location rather than setting it
1885 manually.
1886 (break_command_1): Pass bkpt_breakpoint_ops as breakpoint_ops.
1887 (print_it_ranged_breakpoint): Adjust to take a bpstat as argument.
1888 (ranged_breakpoint_ops): Install methods.
1889 (break_range_command): Adjust to pass the ops to
1890 set_raw_breakpoint rather than setting it manually.
1891 (re_set_watchpoint, breakpoint_hit_watchpoint)
1892 (check_status_watchpoint, resources_needed_watchpoint)
1893 (works_in_software_mode_watchpoint, print_it_watchpoint)
1894 (print_mention_watchpoint, print_recreate_watchpoint): New
1895 functions.
1896 (watchpoint_breakpoint_ops): Install new methods.
1897 (print_it_masked_watchpoint): New function.
1898 (masked_watchpoint_breakpoint_ops): Install new methods.
1899 (watch_command_1): Adjust to pass the right breakpoint_ops to
1900 set_raw_breakpoint_without_location rather than setting it
1901 manually later. Record the current pspace.
1902 (print_it_exception_catchpoint): Adjust to take a bpstat as
1903 argument.
1904 (gnu_v3_exception_catchpoint_ops): Install new methods.
1905 (say_where): New function.
1906 (null_re_set, null_check_status, null_works_in_software_mode)
1907 (null_resources_needed, null_print_one_detail, bp_location_dtor):
1908 New functions.
1909 (bp_location_ops): New global.
1910 (bkpt_dtor, bkpt_allocate_location, bkpt_re_set)
1911 (bkpt_insert_location, bkpt_remove_location, bkpt_breakpoint_hit)
1912 (bkpt_check_status, bkpt_resources_needed)
1913 (bkpt_works_in_software_mode, bkpt_print_it, bkpt_print_mention)
1914 (bkpt_print_recreate): New functions.
1915 (bkpt_breakpoint_ops): New global.
1916 (tracepoint_re_set, tracepoint_insert_location)
1917 (tracepoint_remove_location, tracepoint_breakpoint_hit)
1918 (tracepoint_check_status, tracepoint_works_in_software_mode)
1919 (tracepoint_print_it, tracepoint_print_one_detail)
1920 (tracepoint_print_mention, tracepoint_print_recreate): New
1921 functions.
1922 (tracepoint_breakpoint_ops): New global.
1923 (delete_breakpoint): Always call the breakpoint's dtor method, and
1924 remove the default handling from here.
1925 (breakpoint_re_set_default): Make static.
1926 (breakpoint_re_set_one): Always call the breakpoints re_set
1927 method, and remove the default handling from here.
1928 (trace_command, ftrace_command, strace_command)
1929 (create_tracepoint_from_upload): Pass appropriate breakpoints_ops
1930 to create_breakpoint.
1931 (save_breakpoints): Always call the breakpoint's print_recreate
1932 method, and remove the default handling from here.
1933
1934 * ada-lang.c (dtor_exception): Call the base dtor.
1935 (re_set_exception): Call the base method.
1936 (print_it_exception, print_it_catch_exception): Adjust to take a
1937 bpstat as argument.
1938 (catch_exception_breakpoint_ops): Install methods.
1939 (print_it_catch_exception_unhandled): Adjust to take a bpstat as
1940 argument.
1941 (catch_exception_unhandled_breakpoint_ops): Install methods.
1942 (print_it_catch_assert): Adjust to take a bpstat as argument.
1943 (catch_assert_breakpoint_ops): Install methods.
1944
1945 * breakpoint.h (struct breakpoint_ops): Adjust the print_it method
1946 to take a bpstat as argument.
1947 (enum print_stop_action): Add describing comments to each enum
1948 value.
1949 (breakpoint_re_set_default): Delete declaration.
1950 (null_re_set, null_works_in_software_mode, null_resources_needed)
1951 (null_check_status, null_print_one_detail): Declare.
1952 (bkpt_breakpoint_ops): Declare.
1953 (bkpt_dtor, bkpt_allocate_location, bkpt_re_set)
1954 (bkpt_insert_location, bkpt_remove_location, bkpt_breakpoint_hit)
1955 (bkpt_check_status, bkpt_resources_needed)
1956 (bkpt_works_in_software_mode, bkpt_print_it)
1957 (null_print_one_detail, bkpt_print_mention, bkpt_print_recreate):
1958 Declare.
1959
1960 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust to pass
1961 bkpt_breakpoint_ops.
1962 * python/py-breakpoint.c (bppy_init): Ditto.
1963
1964 2011-07-15 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1965
1966 * MAINTAINERS (Write After Approval): Add myself to the list.
1967
1968 2011-07-23 Paul Pluzhnikov <ppluzhnikov@google.com>
1969
1970 * elfread.c (elf_rel_plt_read): Fix off-by-one bug.
1971
1972 2011-07-22 Pedro Alves <pedro@codesourcery.com>
1973
1974 * i386-nat.c (I386_DR_VACANT, I386_DR_LOCAL_ENABLE)
1975 (I386_DR_GLOBAL_ENABLE, I386_DR_DISABLE, I386_DR_SET_RW_LEN)
1976 (I386_DR_GET_RW_LEN, I386_DR_WATCH_HIT): Add state parameter and
1977 adjust.
1978 (dr_mirror, dr_status_mirror, dr_control_mirror): Delete.
1979 (struct i386_debug_reg_state): New.
1980 (i386_init_dregs): New.
1981 (dr_mirror): New.
1982 (i386_cleanup_dregs): Use i386_init_dregs.
1983 (i386_show_dr): Add state parameter and adjust.
1984 (i386_insert_aligned_watchpoint): Ditto. Don't pass the info to
1985 the inferior here.
1986 (i386_remove_aligned_watchpoint): Likewise.
1987 (i386_handle_nonaligned_watchpoint): Add state parameter and adjust.
1988 (i386_update_inferior_debug_regs): New.
1989 (i386_insert_watchpoint): Work on a local mirror of the debug
1990 registers, and only update the inferior on success.
1991 (i386_remove_watchpoint): Ditto.
1992 (i386_region_ok_for_watchpoint): Adjust.
1993 (i386_stopped_data_address): Adjust.
1994 (i386_insert_hw_breakpoint): Adjust.
1995 (i386_remove_hw_breakpoint): Adjust.
1996
1997 2011-07-22 Tom Tromey <tromey@redhat.com>
1998
1999 * amd64-tdep.c (amd64_pseudo_register_read_value): Rename
2000 from amd64_pseudo_register_read. Change arguments. Call
2001 mark_value_bytes_unavailable when needed.
2002 (amd64_init_abi): Use set_gdbarch_pseudo_register_read_value, not
2003 set_gdbarch_pseudo_register_read.
2004 * sentinel-frame.c (sentinel_frame_prev_register): Use
2005 regcache_cooked_read_value.
2006 * regcache.h (regcache_cooked_read_value): Declare.
2007 * regcache.c (regcache_cooked_read_value): New function.
2008 (regcache_cooked_read): Call
2009 gdbarch_pseudo_register_read_value if available.
2010 * i386-tdep.h (i386_pseudo_register_read_value): Declare.
2011 (i386_pseudo_register_read): Remove.
2012 * i386-tdep.c (i386_pseudo_register_read_into_value): Rename from
2013 i386_pseudo_register_read. Change arguments. Call
2014 mark_value_bytes_unavailable when needed.
2015 (i386_pseudo_register_read_value): New function.
2016 (i386_gdbarch_init): Call set_gdbarch_pseudo_register_read_value,
2017 not set_gdbarch_pseudo_register_read.
2018 * gdbarch.sh (pseudo_register_read_value): New method.
2019 * gdbarch.c, gdbarch.h: Rebuild.
2020 * findvar.c (value_from_register): Call get_frame_register_value.
2021
2022 2011-07-22 Phil Muldoon <pmuldoon@redhat.com>
2023
2024 * event-top.c (cli_command_loop): Use get_prompt, get_suffix,
2025 get_prefix.
2026 (display_gdb_prompt): Likewise.
2027 (change_annotation_level): Likewise.
2028 (push_prompt): Likewise.
2029 (pop_prompt): Likewise.
2030 (handle_stop_sig): Use get_prompt with a level.
2031 * top.c (command_loop): Use get_prompt with a level.
2032 (set_async_annotation_level): Use set_prompt with a level.
2033 (get_prefix): New function.
2034 (set_prefix): Ditto.
2035 (set_suffix): Ditto.
2036 (get_suffix): Ditto.
2037 (get_prompt): Accept a level argument.
2038 (set_prompt): Accept a level argument. Free old prompts. Set
2039 new_async_prompt if level is 0.
2040 (init_main): Use set_prompt with a level. Do not set
2041 new_async_prompt.
2042 * event-top.h (PROMPT, SUFFIX, PREFIX): Move to top.c
2043 * top.h: Declare set_suffix, get_suffix, set_prefix, get_prefix.
2044 Modify set_prompt, get_prompt to account for levels.
2045 * tui/tui-interp.c (tui_command_loop): Use get_prompt with a
2046 level.
2047 * python/python.c (before_prompt_hook): Use set_prompt.
2048
2049 2011-07-22 Kwok Cheung Yeung <kcy@codesourcery.com>
2050
2051 * defs.h: Add guard against inclusion in gdbserver.
2052 (struct ptid, ptid_t): Move to common/ptid.h.
2053 (xfree, xzalloc, xasprintf, xvasprintf, xstrprintf, xstrvprintf,
2054 xsnprintf, internal_error): Move to common/common-utils.h.
2055 (nomem): Delete.
2056 * gdb_assert.h: Move into common/ sub-directory.
2057 * gdb_locale.h: Ditto.
2058 * gdb_dirent.h: Ditto.
2059 * inferior.h (minus_one_ptid, null_ptid, ptid_build, pid_to_ptid,
2060 ptid_get_pid, ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid):
2061 Move into common/ptid.h.
2062 * xml-support.c (xml_escape_text): Move into common/xml-utils.c.
2063 (gdb_xml_create_parser_and_cleanup_1, xml_fetch_context_from_file):
2064 Change nomem to malloc_failure.
2065 * xml-support.h (xml_escape_text): Move into common/xml-utils.h.
2066 * utils.c (nomem): Rename to malloc_failure.
2067 (xmalloc, xzalloc, xrealloc, xcalloc, xfree, xstrprintf, xasprintf,
2068 xvasprintf, xstrvprintf, xsnprintf): Move to common/common-utils.c.
2069 (gdb_buildargv): Change nomem to malloc_failure.
2070 * infrun.c (null_ptid, minus_one_ptid, ptid_build, pid_to_ptid,
2071 ptid_get_pid, ptid_get_lwp, ptid_get_tid, ptid_equal,
2072 ptid_is_pid): Move into common/ptid.c.
2073 (initialize_infrun): Delete initialization of null_ptid and
2074 minus_one_ptid.
2075 * linux-nat.c (linux_nat_xfer_osdata): Defer to
2076 linux_common_xfer_osdata.
2077 * Makefile.in (SFILES): Add common/common-utils.c, common/xml-utils.c,
2078 common/ptid.c and common/buffer.c.
2079 (HFILES_NO_SRCDIR): Add common/common-utils.h, common/xml-utils.h,
2080 common/ptid.h, common/buffer.h and common/linux-osdata.h.
2081 (COMMON_OBS): Add xml-utils.o, common-utils.o, buffer.o and ptid.o.
2082 (common-utils.o, xml-utils.o, ptid.o, buffer.o, linux-osdata.o): New
2083 rules.
2084 * common/gdb_assert.h: New.
2085 * common/gdb_dirent.h: New.
2086 * common/gdb_locale.h: New.
2087 * common/buffer.c: New.
2088 * common/buffer.h: New.
2089 * common/ptid.c: New.
2090 * common/ptid.h: New.
2091 * common/xml-utils.c: New.
2092 * common/xml-utils.h: New.
2093 * common/common-utils.c: New.
2094 * common/common-utils.h: New.
2095 * common/linux-osdata.c: New.
2096 * common/linux-osdata.h: New.
2097 * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-osdata.o.
2098 * config/arm/linux.mh (NATDEPFILES): Ditto.
2099 * config/i386/linux.mh (NATDEPFILES): Ditto.
2100 * config/i386/linux64.mh (NATDEPFILES): Ditto.
2101 * config/ia64/linux.mh (NATDEPFILES): Ditto.
2102 * config/m32r/linux.mh (NATDEPFILES): Ditto.
2103 * config/m68k/linux.mh (NATDEPFILES): Ditto.
2104 * config/mips/linux.mh (NATDEPFILES): Ditto.
2105 * config/pa/linux.mh (NATDEPFILES): Ditto.
2106 * config/powerpc/linux.mh (NATDEPFILES): Ditto.
2107 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Ditto.
2108 * config/s390/s390.mh (NATDEPFILES): Ditto.
2109 * config/sparc/linux.mh (NATDEPFILES): Ditto.
2110 * config/sparc/linux64.mh (NATDEPFILES): Ditto.
2111 * config/xtensa/linux.mh (NATDEPFILES): Ditto.
2112
2113 2011-07-21 Matt Rice <ratmice@gmail.com>
2114
2115 * NEWS: Add info macros and info definitions commands.
2116
2117 2011-07-21 Phil Muldoon <pmuldoon@redhat.com>
2118
2119 * NEWS: Document Python prompt substitution hook.
2120
2121 2011-07-18 Matt Rice <ratmice@gmail.com>
2122
2123 PR macros/12999
2124 * macrotab.h (macro_callback_fn): Add new arguments to callback.
2125 * macrotab.c (foreach_macro): Ditto.
2126 (foreach_macro_in_scope): Ditto.
2127 * macrocmd.c (print_macro_callback): New function.
2128 (info_macro_command): Move some code to print_macro_definition.
2129 (print_macro_definition): New function.
2130 (print_one_macro): Add new arguments to callback.
2131 (info_definitions_command): New function.
2132 (info_macros_command): Ditto.
2133 (_initialize_macrocmd): Add info macros and info definitions commands.
2134 * symtab.c (add_macro_name): Add new arguments to callback.
2135
2136 2011-07-21 Phil Muldoon <pmuldoon@redhat.com>
2137 Tom Tromey <tromey@redhat.com>
2138
2139 * top.c (set_prompt): Rewrite to free previous prompt, free
2140 asynch_new_prompt and set both on new prompts.
2141 * event-top.c (display_gdb_prompt): Add prompt substitution
2142 logic.
2143 * python/python.c (before_prompt_hook): New function.
2144
2145 2011-07-20 Matt Rice <ratmice@gmail.com>
2146
2147 * bfin-tdep.c (bfin_extract_return_value): Fix swapped
2148 arguments to store_unsigned_integer.
2149
2150 2011-07-20 Tom Tromey <tromey@redhat.com>
2151
2152 * dwarf2read.c (process_enumeration_scope): Do not call new_symbol
2153 in some declaration-only cases.
2154
2155 2011-07-18 Tom Tromey <tromey@redhat.com>
2156
2157 PR symtab/12984:
2158 * dwarf2read.c (dwarf2_section_info_def): New typedef.
2159 (struct dwarf2_per_objfile) <types>: Change to a VEC.
2160 (struct dwarf2_per_cu_data) <from_debug_types>: Remove.
2161 <debug_type_section>: New field.
2162 (dwarf2_locate_sections): Push .debug_types sections onto VEC.
2163 (load_cu): Use appropriate section.
2164 (create_signatured_type_table_from_index): Add 'section'
2165 argument.
2166 (dwarf2_read_index): Only allow a single .debug_types section.
2167 (dw2_get_file_names): Use appropriate section.
2168 (read_type_comp_unit_head): Add 'section' argument.
2169 (create_debug_types_hash_table): Loop over all .debug_types
2170 sections.
2171 (init_cu_die_reader): Use appropriate section.
2172 (process_psymtab_comp_unit, load_partial_comp_unit)
2173 (load_full_comp_unit, read_die_and_children, find_partial_die)
2174 (lookup_die_type, determine_prefix, follow_die_offset): Update.
2175 (lookup_signatured_type_at_offset): Add 'section' argument.
2176 (read_signatured_type_at_offset): Add 'sect' argument.
2177 (read_signatured_type): Use appropriate section.
2178 (set_die_type, get_die_type_at_offset): Update.
2179 (dwarf2_per_objfile_free): Free all .debug_types sections, and
2180 VEC.
2181 (write_psymtabs_to_index): Don't allow index with more than one
2182 .debug_types section.
2183
2184 2011-07-19 Jan Kratochvil <jan.kratochvil@redhat.com>
2185
2186 Fix crash if referenced CU is aged out.
2187 * dwarf2loc.c (per_cu_dwarf_call): New variable back_to, use to for
2188 xfree of block.data.
2189 (indirect_pieced_value): New variable back_to, use to for xfree of
2190 baton.data.
2191 (dwarf2_compile_expr_to_ax): New variable back_to, use to for xfree of
2192 block.data.
2193 * dwarf2read.c (dwarf2_find_base_address): New prototype.
2194 (load_cu): New function from ...
2195 (dw2_do_instantiate_symtab): ... the code here ...
2196 (process_full_comp_unit): ... and here.
2197 (dwarf2_fetch_die_location_block): Call load_cu first. Call xmemdup on
2198 retval.data.
2199
2200 2011-07-19 Jan Kratochvil <jan.kratochvil@redhat.com>
2201
2202 * dwarf2loc.c (indirect_pieced_value): Use check_typedef for VALUE's
2203 type.
2204
2205 2011-07-19 Gary Benson <gbenson@redhat.com>
2206
2207 * infrun.c (struct execution_control_state): New member
2208 stop_func_filled_in.
2209 (clear_stop_func, fill_in_stop_func): New functions.
2210 (handle_inferior_event): Call clear_stop_func rather than
2211 manipulating the execution control state directly.
2212 Call fill_in_stop_func lazily as required rather than
2213 directly calling find_pc_partial_function in all cases.
2214
2215 2011-07-18 Tom Tromey <tromey@redhat.com>
2216
2217 * dwarf2read.c (read_subrange_type): Use attr_form_is_block when
2218 checking for variable-sized array.
2219
2220 2011-07-18 Jean-Charles Delay <delay@adacore.com>
2221
2222 * varobj.h (varobj_languages): Add vlang_ada definition to the list
2223 of supported languages.
2224 * varobj.c: Add top definitions and basic implementation of the
2225 following callbacks: ada_number_of_children, ada_name_of_variable,
2226 ada_name_of_child, ada_path_expr_of_child, ada_value_of_root,
2227 ada_value_of_child, ada_type_of_child, ada_value_of_variable.
2228 (languages): Register Ada-specific callbacks.
2229 (variable_language): Add the Ada case in the language setter switch.
2230
2231 2011-07-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2232
2233 * remote-mips.c (pmon_download): Fix ignored return value GCC warning.
2234
2235 2011-07-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2236
2237 Code cleanup.
2238 * dwarf2-frame.c (dwarf2_frame_ctx_funcs): New.
2239 (execute_stack_op): Use dwarf2_frame_ctx_funcs
2240 * dwarf2expr.c (dwarf_get_base_type): Access get_base_type via funcs.
2241 (execute_stack_op): Access read_reg, get_frame_base, read_mem,
2242 get_frame_cfa, get_tls_address and dwarf_call via funcs.
2243 * dwarf2expr.h (struct dwarf_expr_context): New forward declaration.
2244 (struct dwarf_expr_context_funcs): New, move here methods from ...
2245 (struct dwarf_expr_context): ... here. New fields funcs.
2246 * dwarf2loc.c (dwarf_expr_dwarf_call): Access get_frame_pc via funcs.
2247 (dwarf_expr_ctx_funcs): New.
2248 (dwarf2_evaluate_loc_desc_full): Use dwarf_expr_ctx_funcs.
2249 (needs_frame_dwarf_call): Access get_frame_pc via funcs.
2250 (needs_frame_ctx_funcs): New.
2251 (dwarf2_loc_desc_needs_frame): Use needs_frame_ctx_funcs.
2252
2253 2011-07-15 Fawzi Mohamed <fawzi.mohamed@nokia.com>
2254
2255 * MAINTAINERS (Write After Approval): Add myself to the list.
2256
2257 2011-07-15 Fawzi Mohamed <fawzi.mohamed@nokia.com>
2258
2259 * dwarf2-frame.c (decode_frame_entry, decode_frame_entry_1): Ensure
2260 that CIE pointer of an FDE really points to a CIE .
2261
2262 2011-07-15 Hui Zhu <teawater@gmail.com>
2263
2264 * remote.c (remote_get_trace_status): Add comments.
2265
2266 2011-07-14 Jan Kratochvil <jan.kratochvil@redhat.com>
2267
2268 Code cleanup - constify struct lval_funcs.
2269 * dwarf2loc.c (pieced_value_funcs): Make it const.
2270 * infrun.c (siginfo_value_funcs): Likewise.
2271 * opencl-lang.c (opencl_value_funcs): Likewise.
2272 * valops.c (value_assign, value_ind): Make the funcs variable const.
2273 * value.c (struct value): Make location.computed.funcs target const.
2274 Rearrange the comments.
2275 (allocate_computed_value): Make the funcs parameter target const.
2276 (value_computed_funcs): Return the funcs target const.
2277 (value_free, value_copy, set_value_component_location): Make the funcs
2278 variable const.
2279 * value.h (allocate_computed_value): Make the funcs parameter target
2280 const.
2281 (value_computed_funcs): Return the funcs target const.
2282 * windows-tdep.c (tlb_value_funcs): Make it const.
2283
2284 2011-07-14 Hui Zhu <teawater@gmail.com>
2285
2286 * remote.c (remote_get_trace_status): Initialize p.
2287
2288 2011-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2289
2290 Work around kgdb.
2291 * remote.c (remote_get_trace_status): New variable ex. Put
2292 remote_get_noisy_reply into TRY_CATCH. Call exception_fprintf for it.
2293
2294 2011-07-13 Tom Tromey <tromey@redhat.com>
2295
2296 * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_regval_type>: Use
2297 value_from_contents for final conversion.
2298
2299 2011-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2300
2301 Code cleanup.
2302 * dwarf2loc.c (dwarf_expr_frame_base_1, dwarf2_evaluate_loc_desc_full):
2303 Indent prototypes so they do not get into tags.
2304
2305 2011-07-12 Jan Kratochvil <jan.kratochvil@redhat.com>
2306
2307 Code cleanup making also optimized out values lazy.
2308 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use
2309 allocate_optimized_out_value. Twice.
2310 (loclist_read_variable) Use allocate_optimized_out_value. Once.
2311 * findvar.c (read_var_value): Likewise.
2312 * value.c (allocate_optimized_out_value): New function.
2313 * value.h (allocate_optimized_out_value): New declaration.
2314
2315 2011-07-12 Jan Kratochvil <jan.kratochvil@redhat.com>
2316
2317 Fix occasional crash of CTRL-C during DWARF read in.
2318 * dwarf2read.c (dwarf2_mark_helper): Return on NULL CU.
2319
2320 2011-07-11 Tom Tromey <tromey@redhat.com>
2321
2322 * regcache.c (struct regcache_descr): Fix typo.
2323 * i387-tdep.c (i387_supply_xsave): Fix typo.
2324
2325 2011-07-11 Tom Tromey <tromey@redhat.com>
2326
2327 * dwarf2read.c (handle_DW_AT_stmt_list): New function.
2328 (read_file_scope, read_type_unit_scope): Use it.
2329
2330 2011-07-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2331
2332 * dwarf2expr.c (read_sleb128): Fix signed extension overflowing host
2333 `int'.
2334
2335 2011-07-11 Phil Muldoon <pmuldoon@redhat.com>
2336
2337 PR python/12438
2338 * python/python.c: Set gdbpy_should_print_stack default to off.
2339 (set_python): Deprecate maint set python print-stack to
2340 class_deprecate.
2341 (_initialize_python): Deprecate maint set/show python print-stack.
2342 Add new prefix command, python. Add new setting, print-backtrace.
2343 * NEWS: Document set python print-stack. Document default change.
2344
2345 2011-07-11 Phil Muldoon <pmuldoon@redhat.com>
2346
2347 * python/py-inferior.c (infpy_dealloc): New function.
2348 (inferior_to_inferior_object): Return a new object, or a
2349 new reference to the existing object.
2350 (find_thread_object): Cleanup references to inferior.
2351 (delete_thread_object): Ditto.
2352 * python/py-infthread.c (create_thread_object): Do not increment
2353 inferior reference count.
2354
2355 2011-07-08 Tom Tromey <tromey@redhat.com>
2356
2357 * dwarf2loc.c (locexpr_regname): New function.
2358 (locexpr_describe_location_piece): Use it.
2359 (disassemble_dwarf_expression): Add per_cu argument. Use
2360 locexpr_regname.
2361 <DW_OP_GNU_deref_type, DW_OP_GNU_const_type,
2362 DW_OP_GNU_regval_type, DW_OP_GNU_convert, DW_OP_GNU_reinterpret>:
2363 New cases.
2364 (locexpr_describe_location_1): Add per_cu argument.
2365 (locexpr_describe_location): Update.
2366 (loclist_describe_location): Update.
2367
2368 2011-07-08 Tom Tromey <tromey@redhat.com>
2369
2370 * dwarf2expr.c (execute_stack_op): Add QUIT.
2371
2372 2011-07-07 Hui Zhu <teawater@gmail.com>
2373
2374 Revert:
2375 2011-07-06 Hui Zhu <teawater@gmail.com>
2376 * remote.c (remote_start_remote): Add TRY_CATCH for
2377 remote_get_trace_status.
2378 * tracepoint.c (disconnect_tracing): Ditto.
2379
2380 2011-07-07 Andrew Burgess <aburgess@broadcom.com>
2381
2382 * cli/cli-setshow.c (do_setshow_command): Display var_zinteger
2383 variables as signed, not unsigned.
2384
2385 2011-07-06 Joel Brobecker <brobecker@adacore.com>
2386
2387 * jit.c (jit_inferior_init): Reformat forward declaration.
2388
2389 2011-07-06 Matt Rice <ratmice@gmail.com>
2390
2391 * MAINTAINERS (Write After Approval): Add myself to the list.
2392
2393 2011-07-06 Hui Zhu <teawater@gmail.com>
2394
2395 * remote.c (remote_start_remote): Add TRY_CATCH for
2396 remote_get_trace_status.
2397 * tracepoint.c (disconnect_tracing): Ditto.
2398
2399 2011-07-05 Tom Tromey <tromey@redhat.com>
2400
2401 * symtab.c (operator_chars): Now static.
2402 * linespec.c (operator_chars): Don't declare.
2403
2404 2011-07-05 Thiago Jung Bauermann <bauerman@br.ibm.com>
2405
2406 * ui-out.h (ui_out_field_core_addr): Fix typo in comment.
2407
2408 2011-07-05 Tom Tromey <tromey@redhat.com>
2409
2410 * gnu-v3-abi.c (gnuv3_rtti_type): Check TYPE_CPLUS_REALLY_JAVA.
2411 * gdbtypes.h (struct cplus_struct_type) <is_java>: New field.
2412 (TYPE_CPLUS_REALLY_JAVA): New macro.
2413 * dwarf2read.c (process_structure_scope): Set
2414 TYPE_CPLUS_REALLY_JAVA.
2415
2416 2011-07-05 Thiago Jung Bauermann <bauerman@br.ibm.com>
2417
2418 * ada-lang.c: Fix typos.
2419 * amd64-tdep.c: Likewise.
2420 * breakpoint.c: Likewise.
2421 * cli/cli-decode.c: Likewise.
2422 * findcmd.c: Likewise.
2423 * inline-frame.c: Likewise.
2424 * mi/mi-main.c: Likewise.
2425 * minsyms.c: Likewise.
2426 * monitor.c: Likewise.
2427 * monitor.h: Likewise.
2428 * prologue-value.c: Likewise.
2429 * reverse.c: Likewise.
2430 * s390-tdep.c: Likewise.
2431
2432 2011-07-06 Paul Pluzhnikov <ppluzhnikov@google.com>
2433
2434 * jit.c (jit_inferior_init): Forward declare.
2435 (jit_breakpoint_re_set_internal): Call jit_inferior_init.
2436
2437 2011-07-04 Joel Brobecker <brobecker@adacore.com>
2438
2439 * osabi.c (generic_elf_osabi_sniffer): Minor comment reformatting.
2440
2441 2011-07-04 Tristan Gingold <gingold@adacore.com>
2442
2443 * ada-tasks.c (KNOWN_TASKS_LIST): New macro.
2444 (tcb_fieldno): Add activation_link field.
2445 (get_known_tasks_addr): Moved and rewritten.
2446 (get_tcb_types_info): Set activation_link field.
2447 (read_known_tasks_array): Add parameter. Rewritten.
2448 (read_known_tasks_list): New function.
2449 (read_known_tasks): New function.
2450 (ada_build_task_list): Call read_known_tasks instead of
2451 read_known_tasks_array.
2452 * ravenscar-thread.c: Add first_task_name constant.
2453 (has_ravenscar_runtime): Check for task list too.
2454
2455 2011-07-04 Tristan Gingold <gingold@adacore.com>
2456
2457 * ada-tasks.c: Renames fieldno to actb_fieldno.
2458 (ada_get_task_number): Indentation.
2459 (get_tcb_types_info): Remove all parameters. Write directly
2460 the globals.
2461 (ptid_from_atcb_common): Adjust.
2462 (read_atcb): Adjust.
2463
2464 2011-07-04 Thiago Jung Bauermann <bauerman@br.ibm.com>
2465
2466 * symtab.c (in_prologue): Remove mention of ppc's refine_prologue_limit.
2467
2468 2011-07-04 Thiago Jung Bauermann <bauerman@br.ibm.com>
2469
2470 * ui-out.c (ui_out_field_core_addr): Mention that the function
2471 description is in the header file.
2472 * ui-out.h (ui_out_field_core_addr): Document function.
2473
2474 2011-07-04 Thiago Jung Bauermann <bauerman@br.ibm.com>
2475
2476 * ui-out.c (ui_out_get_field_separator): Remove unused function.
2477 * ui-out.h (ui_out_get_field_separator): Remove prototype.
2478
2479 2011-07-04 Thiago Jung Bauermann <bauerman@br.ibm.com>
2480
2481 * symtab.c (expand_line_sal): Remove empty line.
2482
2483 2011-07-04 Thomas Schwinge <thomas@schwinge.name>
2484
2485 * osabi.c (generic_elf_osabi_sniffer) <ELFOSABI_GNU>: Handle in the
2486 same way as ELFOSABI_NONE.
2487 <ELFOSABI_LINUX, ELFOSABI_HURD>: Remove cases.
2488
2489 2011-07-04 Thiago Jung Bauermann <bauerman@br.ibm.com>
2490
2491 * breakpoint.c: Fix typos in comments.
2492 * linespec.c: Likewise.
2493 * symtab.c: Likewise.
2494
2495 2011-07-04 Joel Brobecker <brobecker@adacore.com>
2496
2497 * dwarf2-frame.c (dwarf2_build_frame_info): Do not load .eh_frame
2498 section in separate object files.
2499
2500 2011-07-04 Jan Kratochvil <jan.kratochvil@redhat.com>
2501
2502 Fix false GCC warning.
2503 * linespec.c (decode_line_1): Initialize values.
2504
2505 2011-07-01 Jan Kratochvil <jan.kratochvil@redhat.com>
2506
2507 * linespec.c (find_method): Accept the function type automatically only
2508 if it was specified with parameter types.
2509
2510 2011-07-01 Jan Kratochvil <jan.kratochvil@redhat.com>
2511
2512 Stop on first linespec terminator instead of eating what we can.
2513 * linespec.c (is_linespec_boundary): New function.
2514 (name_end): Remove function.
2515 (keep_name_info): New parameter on_boundary, replace the body.
2516 (decode_line_1): Provide the parameter to keep_name_info.
2517 (decode_compound): Likewise. Drop the trailing java return type
2518 handling. Twice.
2519
2520 2011-07-01 Jan Kratochvil <jan.kratochvil@redhat.com>
2521
2522 Fall back linespec to minimal symbols.
2523 * linespec.c (decode_line_1): New variable ex, saved_argptr. Protect
2524 decode_compound by TRY_CATCH, fall back on minsyms if it failed.
2525 (find_method, symbol_found): Change error to cplusplus_error.
2526
2527 2011-07-01 Jan Kratochvil <jan.kratochvil@redhat.com>
2528
2529 * symtab.c (symbol_find_demangled_name): Remove DMGL_VERBOSE.
2530
2531 2011-07-01 Jan Kratochvil <jan.kratochvil@redhat.com>
2532 Tom Tromey <tromey@redhat.com>
2533
2534 * dwarf2read.c (check_physname): New variable.
2535 (dwarf2_physname): Prefer DW_AT_linkage_name over dwarf2_compute_name.
2536 (show_check_physname): New function.
2537 (_initialize_dwarf2_read): Add `check-physname' for check_physname.
2538
2539 2011-07-01 Joel Brobecker <brobecker@adacore.com>
2540
2541 * machoread.c (macho_symfile_read): Delete OBE comment.
2542
2543 2011-07-01 Joel Brobecker <brobecker@adacore.com>
2544
2545 * machoread.c (struct macho_oso_data): Delete.
2546 (current_oso): Delete.
2547 (macho_relocate_common_syms): New function, mostly extracted
2548 out of
2549 (macho_add_oso_symfile): Call macho_relocate_common_syms.
2550 Remove code that sets and unset current_oso.
2551 (macho_symfile_relocate): Delete handling of common symbols,
2552 now moved to macho_relocate_common_syms.
2553
2554 2011-07-01 Joel Brobecker <brobecker@adacore.com>
2555
2556 * darwin-nat.c (darwin_ptrace): Add documentation.
2557 Set errno to zero before calling ptrace. If ptrace returns
2558 -1 and errno is zero, then change then return zero.
2559 (darwin_kill_inferior): Issue a warning instead of triggering
2560 a failed assertion when the PT_KILL ptrace operations returned
2561 nonzero.
2562
2563 2011-07-01 Joel Brobecker <brobecker@adacore.com>
2564
2565 * darwin-nat.c (darwin_detach): Call darwin_resume_inferior
2566 only when inf->private->no_ptrace.
2567
2568 2011-07-01 Joel Brobecker <brobecker@adacore.com>
2569
2570 * ada-lang.c (print_it_exception): Print temporary catchpoints
2571 as "Temporary catchpoint".
2572 (print_mention_exception): Likewise.
2573
2574 2011-07-01 Tom Tromey <tromey@redhat.com>
2575
2576 * jv-lang.c (java_language_defn): Use java_printchar,
2577 java_printstr.
2578 (java_get_encoding): New function.
2579 (java_emit_char): Use generic_emit_char.
2580 (java_printchar): New function.
2581 (java_printstr): Likewise.
2582
2583 2011-07-01 Joel Brobecker <brobecker@adacore.com>
2584
2585 * ada-typeprint.c (print_record_type): If unable to decode
2586 the name of the parent type, use the encoded name.
2587
2588 2011-07-01 Jean-Charles Delay <delay@adacore.com>
2589
2590 * ada-typeprint.c (ada_print_type): Fix both PAD type and
2591 pointer to constrained packed array type output.
2592 * ada-valprint.c (ada_val_print_1): Fix pointer to constrained
2593 packed array output.
2594
2595 2011-07-01 Jean-Charles Delay <delay@adacore.com>
2596
2597 * ada-typeprint.c (print_array_type): removed if condition on show
2598 being negative for bounds printing.
2599
2600 2011-07-01 Joel Brobecker <brobecker@adacore.com>
2601
2602 * ada-lang.c (ada_identical_enum_types_p): New function.
2603 (symbols_are_identical_enums): New function.
2604 (remove_extra_symbols): Do nothing if NSYMS < 2.
2605 Use symbols_are_identical_enums.
2606
2607 2011-07-01 Joel Brobecker <brobecker@adacore.com>
2608
2609 * ada-valprint.c (ada_value_print): Handle typedefs.
2610
2611 2011-07-01 Joel Brobecker <brobecker@adacore.com>
2612
2613 * ada-lang.c (ada_evaluate_subexp): Add missing word in comment.
2614
2615 2011-07-01 Eric Botcazou <ebotcazou@adacore.com>
2616
2617 * ada-lang.c (thin_descriptor_type): Deal with typedefs.
2618 (decode_constrained_packed_array): Likewise.
2619 (ada_evaluate_subexp) <TERNOP_SLICE>: Likewise.
2620
2621 2011-07-01 Joel Brobecker <brobecker@adacore.com>
2622
2623 * ada-exp.y (convert_char_literal): Handle typedef types.
2624
2625 2011-07-01 Joel Brobecker <brobecker@adacore.com>
2626
2627 * ada-lang.c (ada_remove_trailing_digits): Expand documentation.
2628
2629 2011-06-30 Tom Tromey <tromey@redhat.com>
2630
2631 * varobj.c (varobj_create): Call do_cleanups on early exit path.
2632 * valops.c (find_overload_match): Call do_cleanups on early exit
2633 path.
2634 * solib.c (solib_find): Call do_cleanups on early exit path.
2635
2636 2011-06-30 Tom Tromey <tromey@redhat.com>
2637
2638 * symfile-mem.c (symbol_file_add_from_memory): Call do_cleanups.
2639 * solib-svr4.c (open_symbol_file_object): Call do_cleanups on all
2640 return paths. Defer final do_cleanups until last return.
2641 * arm-tdep.c (arm_exidx_new_objfile): Make null cleanup after
2642 early return.
2643
2644 2011-06-30 Tom Tromey <tromey@redhat.com>
2645
2646 * Makefile.in (SUBDIR_MI_CFLAGS): Don't add -DMI_OUT=1.
2647
2648 2011-06-30 Andrew Burgess <aburgess@broadcom.com>
2649
2650 * MAINTAINERS (Write After Approval): Add myself to the list.
2651
2652 2011-06-29 Jan Kratochvil <jan.kratochvil@redhat.com>
2653
2654 Disable epilogue unwinders on recent GCCs.
2655 * amd64-tdep.c (amd64_in_function_epilogue_p): New variable symtab,
2656 initialize it, return 0 on EPILOGUE_UNWIND_VALID.
2657 * dwarf2read.c (process_full_comp_unit): Initialize
2658 EPILOGUE_UNWIND_VALID.
2659 * i386-tdep.c (i386_in_function_epilogue_p): New variable symtab,
2660 initialize it, return 0 on EPILOGUE_UNWIND_VALID.
2661 * symtab.h (struct symtab): New field epilogue_unwind_valid.
2662
2663 2011-06-29 Jan Kratochvil <jan.kratochvil@redhat.com>
2664
2665 Code cleanup - reformatting.
2666 * dwarf2read.c (producer_is_gcc_ge_4_0): Rename to ...
2667 (producer_is_gcc_ge_4): ... here, change the return value.
2668 (process_full_comp_unit): New variable gcc_4_minor, adjust the value
2669 interpretation.
2670
2671 2011-06-29 Jan Kratochvil <jan.kratochvil@redhat.com>
2672
2673 Fix non-only rename list for Fortran modules import.
2674 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Adjust the
2675 cp_add_using_directive caller.
2676 (cp_add_using_directive): New parameter excludes, describe it. New
2677 variables ix and param. Compare if also excludes match. Allocate NEW
2678 with variable size, initialize EXCLUDES there.
2679 (cp_lookup_symbol_imports): New variable excludep, test
2680 current->EXCLUDES with it.
2681 * cp-support.h: Include vec.h.
2682 (struct using_direct): New field excludes, describe it.
2683 (DEF_VEC_P (const_char_ptr)): New.
2684 (cp_add_using_directive): New parameter excludes.
2685 * defs.h (const_char_ptr): New typedef.
2686 * dwarf2read.c (read_import_statement): New variables child_die,
2687 excludes and cleanups, read in excludes.
2688 (read_namespace): Adjust the cp_add_using_directive caller.
2689
2690 2011-06-29 Jan Kratochvil <jan.kratochvil@redhat.com>
2691
2692 Code cleanup.
2693 * cp-namespace.c (cp_add_using_directive): Turn positive comparison to
2694 negative comparisons.
2695
2696 2011-06-29 André Pönitz <andre.poenitz@nokia.com>
2697
2698 * mi/mi-main.c (mi_cmd_list_features): Emit
2699 breakpoint-notifications.
2700
2701 2011-06-29 Tom Tromey <tromey@redhat.com>
2702
2703 PR fortran/10036:
2704 * valprint.h (generic_emit_char, generic_printstr): Declare.
2705 * valprint.c (wchar_printable, append_string_as_wide)
2706 (print_wchar): Move from c-lang.c.
2707 (generic_emit_char): New function; mostly taken from c_emit_char.
2708 (generic_printstr): New function; mostly taken from c_printstr.
2709 * f-valprint.c (f_val_print) <TYPE_CODE_ARRAY>: Handle strings
2710 represented as arrays.
2711 <TYPE_CODE_CHAR>: Treat as TYPE_CODE_INT; recognize as character
2712 type.
2713 * f-typeprint.c (f_type_print_base) <TYPE_CODE_CHAR>: Treat
2714 identically to TYPE_CODE_INT.
2715 * f-lang.c (f_get_encoding): New function.
2716 (f_emit_char): Use generic_emit_char.
2717 (f_printchar): Replace comment.
2718 (f_printstr): Use generic_printstr.
2719 * dwarf2read.c (read_base_type) <DW_ATE_unsigned>: Handle Fortran
2720 "character" types specially.
2721 <DW_ATE_signed_char, DW_ATE_unsigned_char>: Make TYPE_CODE_CHAR
2722 for Fortran.
2723 * c-lang.c (wchar_printable, append_string_as_wide, print_wchar):
2724 Move to valprint.c
2725 (c_emit_char): Call generic_emit_char.
2726 (c_printstr): Call generic_printstr.
2727
2728 2011-06-29 Gary Benson <gbenson@redhat.com>
2729
2730 * breakpoint.c (bpstat_what): Removed duplicated case.
2731
2732 2011-06-28 Tom Tromey <tromey@redhat.com>
2733
2734 * python/python-internal.h (PY_SSIZE_T_CLEAN): Define.
2735
2736 2011-06-27 Tom Tromey <tromey@redhat.com>
2737
2738 * valops.c (find_overload_match): Call do_cleanups before early
2739 return.
2740 * top.c (execute_command): Call do_cleanups before early return.
2741 (command_loop): Likewise.
2742 * stack.c (backtrace_command): Make a null cleanup early. Don't
2743 conditionally call do_cleanups.
2744 * python/py-value.c (TRY_CATCH): Move cleanup handling into
2745 TRY_CATCH.
2746 * python/py-breakpoint.c (gdbpy_breakpoint_has_py_cond): Rearrange
2747 so cleanups are always run.
2748 * mi/mi-cmd-var.c (mi_cmd_var_delete): Reset old_cleanups.
2749 * findcmd.c (parse_find_args): Call do_cleanups on early return
2750 path.
2751 * dbxread.c (elfstab_build_psymtabs): Make a null cleanup early.
2752 Don't conditionally call do_cleanups.
2753 * cli/cli-script.c (execute_user_command): Initialize 'old_chain'
2754 later.
2755
2756 2011-06-27 Eric Botcazou <ebotcazou@adacore.com>
2757
2758 * MAINTAINERS (Write After Approval): Use default email address.
2759
2760 2011-06-27 Joel Brobecker <brobecker@adacore.com>
2761
2762 * MAINTAINERS (Write After Approval): Add Eric Botcazou.
2763
2764 2011-06-27 Eric Botcazou <ebotcazou@adacore.com>
2765
2766 * sparc-tdep.h (struct sparc_frame_cache): Add frame_offset,
2767 saved_regs_mask and copied_regs_mask fields.
2768 (sparc_record_save_insn): New prototype.
2769 * sparc-tdep.c (sparc_alloc_frame_cache): Initialize the new fields.
2770 (sparc_record_save_insn): New function.
2771 (sparc_analyze_prologue): Add head comment. Recognize store insns
2772 of call-saved registers. Use OFFSET consistently. Recognize flat
2773 frames and cache their settings.
2774 (sparc32_skip_prologue): Handle flat frames.
2775 (sparc_frame_cache): Add frame_offset to the base address.
2776 (sparc32_frame_cache): Adjust to new frame description.
2777 (sparc32_frame_prev_register): Likewise.
2778 * sparc64-tdep.c (sparc64_frame_prev_register): Likewise.
2779 * sparc-sol2-tdep.c (sparc32_sol2_sigtramp_frame_cache): Likewise.
2780 * sparc64-sol2-tdep.c (sparc64_sol2_sigtramp_frame_cache): Likewise.
2781 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_frame_cache): Force the
2782 frame by calling sparc_record_save_insn.
2783 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_frame_cache): Likewise.
2784 * sparcobsd-tdep.c (sparc32obsd_sigtramp_frame_cache): Likewise.
2785 * sparc64obsd-tdep.c (sparc64obsd_frame_cache): Likewise.
2786
2787 2011-06-27 Tristan Gingold <gingold@adacore.com>
2788
2789 * dwarf2read.c (struct dwarf2_section_info): Replace was_mmapped
2790 field by map_addr and map_len.
2791 (dwarf2_read_section): Adjust for the new bfd_mmap api.
2792 (munmap_section_buffer): Likewise.
2793
2794 2011-06-24 Tom Tromey <tromey@redhat.com>
2795
2796 * varobj.c (update_dynamic_varobj_children): Make 'name' const.
2797 * symtab.h (lookup_struct, lookup_union, lookup_enum): Update.
2798 * python/python.c (gdbpy_parameter): Make 'arg' const.
2799 (execute_gdb_command): Likewise.
2800 (gdbpy_decode_line): Likewise. Copy it.
2801 (gdbpy_parse_and_eval): Make 'expr_string' const. Copy it.
2802 (gdbpy_write): Make 'arg' const.
2803 * python/py-type.c (typy_lookup_typename): Make 'type_name'
2804 const.
2805 (gdbpy_lookup_type): Likewise.
2806 * python/py-prettyprint.c (print_children): Make 'name' const.
2807 * python/py-param.c (parmpy_init): Make 'name' const. Copy it.
2808 * python/py-inferior.c (infpy_write_memory): Make 'buf_len' a
2809 Py_ssize_t.
2810 * python/py-function.c (fnpy_init): Make 'name' const.
2811 * python/py-cmd.c (cmdpy_init): Make 'name' const. Copy it.
2812 (gdbpy_string_to_argv): Make 'input' const.
2813 * python/py-breakpoint.c (bppy_init): Make 'spec' const. Copy
2814 it.
2815 * gdbtypes.h (lookup_typename): Update.
2816 * gdbtypes.c (lookup_typename): Make 'name' const.
2817 (lookup_struct): Likewise.
2818 (lookup_union): Likewise.
2819 (lookup_enum): Likewise.
2820
2821 2011-06-24 Tom Tromey <tromey@redhat.com>
2822
2823 * Makefile.in (HFILES_NO_SRCDIR): Add "common/" to
2824 gdb_thread_db.h. Move all common/ entries to be together.
2825 (TAGS): Don't depend on DEPFILES.
2826
2827 2011-06-23 Yao Qi <yao@codesourcery.com>
2828
2829 * infrun.c (start_remote): Move call init_wait_for_inferior to ...
2830 * remote.c (remote_start_remote): ... here.
2831 * monitor.c (monitor_open): ... here.
2832
2833 2011-06-23 Andrew Burgess <aburgess@broadcom.com>
2834
2835 * gdbtypes.c (append_composite_type_field_aligned): Fix
2836 calculation of bit position based on alignment.
2837
2838 2011-06-22 Pedro Alves <pedro@codesourcery.com>
2839
2840 * breakpoint.c (bpstat_stop_status): Call the check_status
2841 breakpoint_ops method.
2842 (print_one_breakpoint_location): Also print the condition for Ada
2843 exception catchpoints.
2844 (allocate_bp_location): New, factored out from
2845 allocate_bp_location.
2846 (allocate_bp_location): Adjust. Call the owner breakpoint's
2847 allocate_location method, if there is one.
2848 (free_bp_location): Call the locations's dtor method, if there is
2849 one.
2850 (init_raw_breakpoint_without_location): New breakpoint_ops
2851 parameter. Use it.
2852 (set_raw_breakpoint_without_location): Adjust.
2853 (init_raw_breakpoint): New breakpoint_ops parameter. Pass it down.
2854 (set_raw_breakpoint): Adjust.
2855 (catch_fork_breakpoint_ops, catch_vfork_breakpoint_ops)
2856 (catch_syscall_breakpoint_ops): Install NULL allocate_location,
2857 re_set and check_status methods.
2858 (init_catchpoint): Don't memset, initialize thread, addr_string
2859 and enable_state. Pass the ops down to init_raw_breakpoint.
2860 (install_catchpoint): Rename to ...
2861 (install_breakpoint): ... this, and make extern.
2862 (create_fork_vfork_event_catchpoint): Adjust.
2863 (catch_exec_breakpoint_ops): Install NULL allocate_location,
2864 re_set and check_status methods.
2865 (create_syscall_event_catchpoint): Adjust.
2866 (ranged_breakpoint_ops, watchpoint_breakpoint_ops)
2867 (masked_watchpoint_breakpoint_ops): Install NULL
2868 allocate_location, re_set and check_status methods.
2869 (catch_exec_command_1): Adjust.
2870 (gnu_v3_exception_catchpoint_ops): Install NULL allocate_location,
2871 re_set and check_status methods.
2872 (create_ada_exception_breakpoint): Rename to ...
2873 (init_ada_exception_breakpoint): ... this. Add a struct
2874 breakpoint parameter, and delete the exp_string, cond_string and
2875 cond parameters. Use init_raw_breakpoint, and don't install or
2876 mention the breakpoint yet. Don't clear breakpoint fields that
2877 init_raw_breakpoint already clears.
2878 (re_set_breakpoint): Delete, split into ...
2879 (breakpoint_re_set_default, prepare_re_set_context): ... these new
2880 functions.
2881 (breakpoint_re_set_one): Call the breakpoint's
2882 breakpoint_ops->re_set implementation, if there's one. Adjust.
2883 * breakpoint.h: Forward declare struct bpstats and struct bp_location.
2884 (struct bp_location_ops): New type.
2885 (struct bp_location): New field `ops'.
2886 (struct breakpoint_ops): New `allocate_location', `re_set' and
2887 `check_status' fields. Make `breakpoint_hit''s description match
2888 reality.
2889 (init_bp_location): Declare.
2890 (breakpoint_re_set_default): Declare.
2891 (create_ada_exception_breakpoint): Rename to ...
2892 (init_ada_exception_breakpoint): ... this. Add a struct
2893 breakpoint parameter, and delete the exp_string, cond_string and
2894 cond parameters.
2895 (install_breakpoint): Declare.
2896 * ada-lang.c: Include exceptions.h.
2897 <Ada exceptions description>: Update.
2898 (struct ada_catchpoint_location): New type.
2899 (ada_catchpoint_location_dtor): New function.
2900 (ada_catchpoint_location_ops): New global.
2901 (ada_catchpoint): New type.
2902 (create_excep_cond_exprs): New function.
2903 (dtor_exception, allocate_location_exception, re_set_exception)
2904 (should_stop_exception, check_status_exception): New functions.
2905 (print_one_exception, print_mention_exception)
2906 (print_recreate_exception): Adjust.
2907 (dtor_catch_exception, allocate_location_catch_exception)
2908 (re_set_catch_exception, check_status_catch_exception): New
2909 functions.
2910 (catch_exception_breakpoint_ops): Install them.
2911 (dtor_catch_exception_unhandled)
2912 (allocate_location_catch_exception_unhandled)
2913 (re_set_catch_exception_unhandled)
2914 (check_status_catch_exception_unhandled): New functions.
2915 (catch_exception_unhandled_breakpoint_ops): Install them.
2916 (dtor_catch_assert, allocate_location_catch_assert)
2917 (re_set_catch_assert, check_status_catch_assert): New functions.
2918 (catch_assert_breakpoint_ops): Install them.
2919 (ada_exception_catchpoint_p): Delete.
2920 (catch_ada_exception_command_split)
2921 (ada_exception_catchpoint_cond_string): Rename exp_string
2922 parameter to excep_string. Adjust.
2923 (ada_parse_catchpoint_condition): Delete.
2924 (ada_exception_sal): Rename the exp_string parameter to
2925 excep_string. Delete the cond_string and cond parameters.
2926 Adjust.
2927 (ada_decode_exception_location): Rename the exp_string parameter
2928 to excep_string. Delete the cond_string and cond parameters.
2929 Adjust.
2930 (create_ada_exception_catchpoint): New function.
2931 (catch_ada_exception_command, ada_decode_assert_location)
2932 (catch_assert_command): Adjust.
2933 * ada-lang.h (ada_exception_catchpoint_p): Delete declaration.
2934
2935 2011-06-22 Pedro Alves <pedro@codesourcery.com>
2936
2937 * ada-lang.c: Include arch-utils.h.
2938 (ada_decode_exception_location): Make static.
2939 (catch_ada_exception_command): Moved here from breakpoint.c.
2940 (ada_decode_assert_location): Make static.
2941 (catch_assert_command): Moved here from breakpoint.c.
2942 (_initialize_ada_lang): Install the exception and assert
2943 catchpoint commands here.
2944 * ada-lang.h (ada_decode_exception_location)
2945 (ada_decode_assert_location): Delete declarations.
2946 * breakpoint.c (CATCH_PERMANENT, CATCH_TEMPORARY): Moved to
2947 breakpoint.h.
2948 (create_ada_exception_breakpoint): Make extern.
2949 (catch_ada_exception_command, catch_assert_command): Moved to
2950 ada-lang.c.
2951 (add_catch_command): Make extern.
2952 (_initilize_breakpoint): Don't install the exception and assert
2953 catchpoint commands here.
2954 * breakpoint.h (CATCH_PERMANENT, CATCH_TEMPORARY): Moved from
2955 breakpoint.c
2956 (add_catch_command, create_ada_exception_breakpoint): Declare.
2957
2958 2011-06-22 Pedro Alves <pedro@codesourcery.com>
2959
2960 * breakpoint.c (init_raw_breakpoint_without_location): Don't add
2961 the breakpoint to the breakpoint chain here.
2962 (set_raw_breakpoint_without_location): Add the breakpoint to the
2963 breakpoint chain here.
2964 (init_raw_breakpoint): Adjust comments.
2965 (set_raw_breakpoint): Add the breakpoint to the breakpoint chain
2966 here.
2967 (init_catchpoint): Don't set the catchpoint's breakpoint number
2968 here.
2969 (install_catchpoint): New function.
2970 (create_fork_vfork_event_catchpoint)
2971 (create_syscall_event_catchpoint, catch_exec_command_1): Adjust to
2972 use install_catchpoint.
2973
2974 2011-06-22 Pedro Alves <pedro@codesourcery.com>
2975
2976 * breakpoint.c (create_catchpoint_without_mention)
2977 (create_catchpoint): Delete.
2978
2979 2011-06-22 Pedro Alves <pedro@codesourcery.com>
2980
2981 * breakpoint.h (struct breakpoint): Delete field `exec_pathname'.
2982 * breakpoint.c (init_raw_breakpoint_without_location): Remove
2983 reference to exec_pathname.
2984 (struct exec_catchpoint): New type.
2985 (dtor_catch_exec): New function.
2986 (insert_catch_exec, print_it_catch_exec, print_one_catch_exec): Adjust.
2987 (catch_exec_breakpoint_ops): Install dtor_catch_syscall.
2988 (catch_exec_command_1): Adjust to use init_catchpoint.
2989 (delete_breakpoint): Remove reference to exec_pathname.
2990
2991 2011-06-22 Pedro Alves <pedro@codesourcery.com>
2992
2993 * breakpoint.h (struct breakpoint_ops): New field `dtor'.
2994 (struct breakpoint): Delete field `syscalls_to_be_caught'.
2995 * breakpoint.c (init_raw_breakpoint_without_location): Remove
2996 reference to syscalls_to_be_caught.
2997 (catch_fork_breakpoint_ops, catch_vfork_breakpoint_ops): Install a
2998 NULL `dtor'.
2999 (struct syscall_catchpoint): New type.
3000 (dtor_catch_syscall): New function.
3001 (insert_catch_syscall, remove_catch_syscall)
3002 (breakpoint_hit_catch_syscall, print_one_catch_syscall)
3003 (print_recreate_catch_syscall): Adjust.
3004 (catch_syscall_breakpoint_ops): Install dtor_catch_syscall.
3005 (catch_exec_breakpoint_ops): Install a NULL `dtor'.
3006 (create_syscall_event_catchpoint): Adjust to use init_catchpoint.
3007 (ranged_breakpoint_ops, watchpoint_breakpoint_ops)
3008 (masked_watchpoint_breakpoint_ops)
3009 (gnu_v3_exception_catchpoint_ops): Install a NULL `dtor'.
3010 (delete_breakpoint): Call the `dtor' breakpoint_ops method, if
3011 there is one. Remove references to syscalls_to_be_caught.
3012 (catching_syscall_number): Adjust.
3013 * ada-lang.c (catch_exception_breakpoint_ops)
3014 (catch_exception_unhandled_breakpoint_ops)
3015 (catch_assert_breakpoint_ops): Install a NULL `dtor'.
3016
3017 2011-06-22 Pedro Alves <pedro@codesourcery.com>
3018
3019 * breakpoint.h (struct breakpoint): Delete forked_inferior_pid
3020 field.
3021 * breakpoint.c (init_raw_breakpoint_without_location): Remove
3022 reference to forked_inferior_pid.
3023 (struct fork_catchpoint): New type.
3024 (breakpoint_hit_catch_fork, print_it_catch_fork)
3025 (print_one_catch_fork, breakpoint_hit_catch_vfork)
3026 (print_it_catch_vfork, print_one_catch_vfork): Adjust.
3027 (create_fork_vfork_event_catchpoint): Adjust to use
3028 init_catchpoint.
3029
3030 2011-06-22 Pedro Alves <pedro@codesourcery.com>
3031
3032 * breakpoint.c (add_to_breakpoint_chain)
3033 (init_raw_breakpoint_without_location): New functions, factored
3034 out from ...
3035 (set_raw_breakpoint_without_location): ... this one.
3036 (init_raw_breakpoint): New function, factored out from
3037 set_raw_breakpoint and adjusted to use
3038 init_raw_breakpoint_without_location.
3039 (set_raw_breakpoint): Adjust.
3040 (init_catchpoint): New function, factored out from
3041 create_catchpoint_without_mention and adjusted to use
3042 init_raw_breakpoint.
3043 (create_catchpoint_without_mention): Adjust.
3044
3045 2011-06-22 Tom Tromey <tromey@redhat.com>
3046
3047 * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_convert>: Treat type
3048 argument of 0 specially.
3049
3050 2011-06-22 Yao Qi <yao@codesourcery.com>
3051
3052 * infrun.c (handle_inferior_event): Remove write-only local variable
3053 `sw_single_step_trap_p'.
3054
3055 2011-06-20 Tom Tromey <tromey@redhat.com>
3056
3057 * symtab.c (lookup_language_this): End loop if block is NULL.
3058
3059 2011-06-17 Tom Tromey <tromey@redhat.com>
3060
3061 * valops.c (value_of_this): Use lookup_language_this.
3062 * symtab.h (lookup_language_this): Declare.
3063 * symtab.c (lookup_language_this): New function.
3064 (lookup_symbol_aux): Use lookup_language_this.
3065 * ax-gdb.c (gen_expr) <OP_THIS>: Use lookup_language_this.
3066
3067 2011-06-17 Tom Tromey <tromey@redhat.com>
3068
3069 * value.h (value_of_this): Update.
3070 (value_of_local): Remove.
3071 * valops.c (value_of_this): Rename from value_of_local. Change
3072 parameters.
3073 * p-exp.y (exp): Update.
3074 (variable): Likewise.
3075 * eval.c (evaluate_subexp_standard) <OP_THIS>: Use value_of_this.
3076
3077 2011-06-17 Tom Tromey <tromey@redhat.com>
3078
3079 * valops.c (value_of_local): Complain if NAME is NULL.
3080 * std-operator.def (OP_OBJC_SELF): Remove.
3081 * parse.c (operator_length_standard) <OP_OBJC_SELF>: Remove.
3082 * objc-exp.y (name_not_typename): Use OP_THIS.
3083 * expprint.c (print_subexp_standard) <OP_THIS>: Print language's
3084 name for "this".
3085 <OP_OBJC_SELF>: Remove.
3086 * eval.c (evaluate_subexp_standard) <OP_OBJC_SELF>: Remove.
3087
3088 2011-06-16 Tristan Gingold <gingold@adacore.com>
3089
3090 * python/py-events.h (gdb_py_events): Make it extern.
3091 * python/py-evtregistry.c (gdb_py_events): Declare.
3092
3093 2011-06-16 Hui Zhu <teawater@gmail.com>
3094
3095 * remote.c (remote_trace_set_readonly_regions): Add check for
3096 remote_protocol_packets[PACKET_qXfer_traceframe_info].support before
3097 output warning.
3098
3099 2011-06-15 Ulrich Weigand <ulrich.weigand@linaro.org>
3100
3101 * arm-linux-tdep.c: Include "auxv.h".
3102 (AT_HWCAP): Define.
3103 (ARM_LINUX_SIZEOF_VFP): Define.
3104 (arm_linux_supply_vfp): New function.
3105 (arm_linux_collect_vfp): Likewise.
3106 (arm_linux_regset_from_core_section): Handle .reg-arm-vfp sections.
3107 (arm_linux_fpa_regset_sections): New variable.
3108 (arm_linux_vfp_regset_sections): Likewise.
3109 (arm_linux_core_read_description): New function.
3110 (arm_linux_init_abi): Install arm_linux_core_read_description and
3111 arm_linux_fpa_regset_sections or arm_linux_vfp_regset_sections as
3112 appropriate for the architecture.
3113 * arm-tdep.h (struct gdbarch_tdep): Add member "vfpregset".
3114 (tdesc_arm_with_m): Declare.
3115 (tdesc_arm_with_iwmmxt): Likewise.
3116 (tdesc_arm_with_vfpv2): Likewise.
3117 (tdesc_arm_with_vfpv3): Likewise.
3118 (tdesc_arm_with_neon): Likewise.
3119 * arm-linux-nat.c: Move features/*.c includes ...
3120 * arm-tdep.c: ... here.
3121 * arm-linux-nat.c (arm_linux_read_description): Move initializing
3122 target description data structures ...
3123 * arm-tdep.c (_initialize_arm_tdep): ... here.
3124 * arm-linux-nat.c (HWCAP_VFP, HWCAP_IWMMXT, HWCAP_NEON, HWCAP_VFPv3,
3125 HWCAP_VFPv3D16): Move definitions ...
3126 * arm-linux-tdep.h: ... here.
3127
3128 2011-06-15 Hui Zhu <teawater@gmail.com>
3129
3130 * remote.c (remote_trace_set_readonly_regions): Add a check for
3131 target_buf_size.
3132
3133 2011-06-14 Tom Tromey <tromey@redhat.com>
3134
3135 * coffread.c (coffread_objfile): Rename from current_objfile.
3136 * dbxread.c (dbxread_objfile): Rename from current_objfile.
3137 * mdebugread.c (mdebugread_objfile): Rename from current_objfile.
3138
3139 2011-06-14 Tom Tromey <tromey@redhat.com>
3140
3141 * jv-lang.c (jv_type_objfile_data_key, dynamics_objfile)
3142 (class_symtab): Remove.
3143 (jv_dynamics_progspace_key): New global.
3144 (jv_per_objfile_free): Reset program space data. Update assert.
3145 Don't clear globals.
3146 (get_dynamics_objfile): Use and set program space data.
3147 (get_java_class_symtab): Use get_dynamics_objfile.
3148 (add_class_symbol): Likewise.
3149 (java_link_class_type): Likewise.
3150 (java_object_type, jv_clear_object_type, set_java_object_type):
3151 Remove.
3152 (get_java_object_type): Update. Don't cache result.
3153 (is_object_type): Don't call set_java_object_type.
3154 (_initialize_java_language): Don't set jv_type_objfile_data_key;
3155 initialize jv_dynamics_progspace_key.
3156
3157 2011-06-14 Tom Tromey <tromey@redhat.com>
3158
3159 * symtab.h (current_objfile): Don't declare.
3160 * objfiles.h (current_objfile): Don't declare.
3161 * objfiles.c (current_objfile): Remove.
3162 * mdebugread.c (current_objfile): New file-scope global.
3163 * dbxread.c (current_objfile): New file-scope global.
3164 * coffread.c (current_objfile): New file-scope global.
3165
3166 2011-06-13 Pedro Alves <pedro@codesourcery.com>
3167
3168 * top.h (line): Rename to ...
3169 (saved_command_line): ... this.
3170 (linesize): Rename to ...
3171 (saved_command_line_size): ... this.
3172 * top.c (line): Rename to ...
3173 (saved_command_line): ... this.
3174 (linesize): Rename to ...
3175 (saved_command_line_size): ... this.
3176 (dont_repeat, command_line_input, dont_repeat_command): Adjust.
3177 * event-top.c (command_line_handler): Adjust.
3178 * main.c (captured_main): Adjust.
3179
3180 2011-06-12 Mark Kettenis <kettenis@gnu.org>
3181
3182 * i386-tdep.c (i386_epilogue_frame_cache): Simplify code. Call
3183 get_frame_func instead of get_frame_pc to determine the code
3184 address used to construct the frame ID.
3185 (i386_epilogue_frame_unwind_stop_reason): Fix coding style.
3186 (i386_epilogue_frame_this_id): Likewise.
3187 (i386_epilogue_frame_prev_register): New function.
3188 (i386_epilogue_frame_unwind): Use i386_epilogue_frame_prev_register.
3189 (i386_stack_tramp_frame_sniffer): Fix coding style.
3190 (i386_stack_tramp_frame_unwind): Use i386_epilogue_frame_prev_register.
3191 (i386_gdbarch_init): Fix comments.
3192
3193 2011-06-12 Mark Kettenis <kettenis@gnu.org>
3194
3195 * i386-tdep.c (i386_match_insn_block): Use length of the proper
3196 instruction when walking back through the instruction stream.
3197
3198 2011-06-10 Jan Kratochvil <jan.kratochvil@redhat.com>
3199
3200 * symtab.c (output_partial_symbol_filename): Exchange the filename and
3201 fullname parameters order.
3202
3203 2011-06-10 Jan Kratochvil <jan.kratochvil@redhat.com>
3204
3205 Code cleanup.
3206 * dwarf2read.c (dw2_map_symbol_filenames): Use symbol_filename_ftype
3207 for fun.
3208 * psymtab.c (map_symbol_filenames_psymtab)
3209 (map_partial_symbol_filenames): Likewise.
3210 * psymtab.h: Include symfile.h.
3211 (map_partial_symbol_filenames): Use symbol_filename_ftype for fun.
3212 * symfile.h (symbol_filename_ftype): New.
3213 (struct quick_symbol_functions): Use symbol_filename_ftype for fun of
3214 map_symbol_filenames, clarify more the naming in comment.
3215
3216 2011-06-07 Doug Evans <dje@google.com>
3217
3218 * cc-with-index.sh: Fix typos in comment.
3219 Look for ../../gdb, for fullname.exp.
3220
3221 2011-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3222 Pedro Alves <pedro@codesourcery.com>
3223
3224 * cli/cli-cmds.c (shell_escape): Use waitpid.
3225 * rs6000-nat.c (exec_one_dummy_insn): Likewise.
3226
3227 2011-06-07 Tristan Gingold <gingold@adacore.com>
3228
3229 * xcoffread.c (dwarf2_xcoff_names): New variable.
3230 (aix_process_linenos): Add a guard.
3231 (xcoff_symfile_finish): Free dwarf2.
3232 (xcoff_initial_scan): Add dwarf2 support.
3233
3234 2011-06-06 Pedro Alves <pedro@codesourcery.com>
3235
3236 * infcall.c (run_inferior_call): Don't mask async. Instead force
3237 a synchronous wait, if the target can async.
3238
3239 * target.h (struct target_ops): Delete to_async_mask.
3240 (target_async_mask): Delete.
3241 * target.c (update_current_target): Delete references to to_async_mask.
3242 * linux-nat.c (linux_nat_async_mask_value): Delete.
3243 (linux_nat_is_async_p, linux_nat_can_async_p): Remove references
3244 to linux_nat_async_mask_value.
3245 (linux_nat_async_mask): Delete.
3246 (linux_nat_async, linux_nat_close): Remove references to
3247 linux_nat_async_mask_value.
3248 * record.c (record_async_mask_value): Delete.
3249 (record_async): Remove references to record_async_mask_value.
3250 (record_async_mask): Delete.
3251 (record_can_async_p, record_is_async_p): Remove references to
3252 record_async_mask_value.
3253 (init_record_ops, init_record_core_ops): Remove references to
3254 record_async_mask.
3255 * remote.c (remote_async_mask_value): Delete.
3256 (init_remote_ops): Remove reference to remote_async_mask.
3257 (remote_can_async_p, remote_is_async_p): Remove references to
3258 remote_async_mask_value.
3259 (remote_async): Remove references to remote_async_mask_value.
3260 (remote_async_mask): Delete.
3261
3262 * infrun.c (fetch_inferior_event): Don't claim registers changed
3263 if the current thread is already not executing.
3264
3265 2011-06-03 Joel Brobecker <brobecker@adacore.com> (obvious fix)
3266
3267 From Stephen Kitt <steve@sk2.org>
3268 * breakpoint.c, breakpoint.h, cli/cli-dump.c, dwarf2expr.c,
3269 gdbarch.c, gdbarch.sh, remote.c: Various spelling fixes.
3270
3271 2011-06-03 Joel Brobecker <brobecker@adacore.com>
3272
3273 * dwarf2expr.c (execute_stack_op) [DW_OP_deref]: Handle
3274 the case where ADDR_SIZE is different from TYPE_LENGTH (type).
3275
3276 2011-06-03 Tom Tromey <tromey@redhat.com>
3277
3278 * python/py-inferior.c (python_inferior_exit): Use inferior's exit
3279 code fields.
3280 * python/py-exitedevent.c (create_exited_event_object): Change
3281 type of 'exit_code'. Optionally add exit_code attribute.
3282 (emit_exited_event): Change type of 'exit_code'.
3283 * python/py-event.h (emit_exited_event): Update.
3284 * mi/mi-interp.c (mi_inferior_exit): Print exit code.
3285 * infrun.c (handle_inferior_event): Set exit code fields on
3286 inferior.
3287 * inferior.h (struct inferior) <has_exit_code, exit_code>: New
3288 fields.
3289 * inferior.c (exit_inferior_1): Initialize new fields.
3290
3291 2011-06-03 Tom Tromey <tromey@redhat.com>
3292
3293 * dwarf2expr.c (get_signed_type): New function.
3294 (execute_stack_op) <DW_OP_shra>: Always perform a signed shift.
3295
3296 2011-06-02 Keith Seitz <keiths@redhat.com>
3297
3298 * objc-lang.c (find_methods): Increment objfile_csym earlier.
3299
3300 2011-06-02 Pedro Alves <pedro@codesourcery.com>
3301
3302 * top.h (simplified_command_loop): Delete declaration.
3303
3304 2011-06-01 Mike Frysinger <vapier@gentoo.org>
3305
3306 * remote-sim.c (gdbsim_open): Add the strlen of " --sysroot=" and
3307 gdb_sysroot to the "len" variable. Append both to "arg_buf".
3308
3309 2011-06-01 Yao Qi <yao@codesourcery.com>
3310
3311 * objfiles.h (obj_section_addr): Update reference to objfile from
3312 `abfd' to `obfd'.
3313 (obj_section_endaddr): Likewise.
3314
3315 2011-06-01 Daniel Jacobowitz <drow@false.org>
3316
3317 * MAINTAINERS: Update my email address and affiliation. Also
3318 update Ian Lance Taylor's affiliation. Use UTF-8 for ludo@gnu.org.
3319
3320 2010-05-31 Keith Seitz <keiths@redhat.com>
3321
3322 PR c++/12750
3323 * linespec.c (get_search_block): New function.
3324 (find_methods): Add FILE_SYMTATB parameter and use it and
3325 get_search_block to pass an appropriate block to
3326 lookup_symbol_in_namespace.
3327 (decode_line_1): Record if *ARGPTR is single-quote enclosed.
3328 Check if *ARGPTR starts with a filename first.
3329 If it does, call locate_first_half again to locate the next
3330 "first half" of the linespec.
3331 Pass FILE_SYMTATB to decode_objc and decode_compound.
3332 Swallow the trailing single-quote if IS_SQUOTE_ENCLOSED.
3333 (locate_first_half): Stop on the first colon seen.
3334 (decode_compound): Add FILE_SYMTAB parameter.
3335 Pass FILE_SYMTAB to lookup_prefix_sym and find_method.
3336 (lookup_prefix_sym): Add FILE_SYMTAB parameter and use
3337 get_search_block with lookup_symbol.
3338 (find_method): Add FILE_SYMTAB parameter and pass it to
3339 find_methods.
3340 (decode_objc): Use get_search_block.
3341
3342 2010-05-31 Keith Seitz <keiths@redhat.com>
3343
3344 PR symtab/12704
3345 * cp-namespace.c (ANONYMOUS_NAMESPACE_LEN): Remove.
3346 (cp_scan_for_anonymous_namespaces): Use CP_ANONYMOUS_NAMESPACE_STR
3347 and CP_ANONYMOUS_NAMESPACE_LEN.
3348 (cp_is_anonymous): Likewise.
3349 * cp-support.h (CP_ANONYMOUS_NAMESPACE_STR): Define.
3350 (CP_ANONYMOUS_NAMESPACE_LEN): Define.
3351 * dwarf2read.c (namespace_name): Likewise.
3352 (fixup_partial_die): Likewise.
3353 * linespec.c (decode_compound): If CP_ANONYMOUS_NAMESPACE_STR is
3354 seen in the input, keep it.
3355
3356 2011-05-30 Pedro Alves <pedro@codesourcery.com>
3357
3358 * target.h (enum inferior_event_type): Delete INF_QUIT_REQ.
3359 * inf-loop.h (inferior_event_handler_wrapper): Delete.
3360 * inf-loop.c (inferior_event_handler_wrapper): Delete.
3361 (inferior_event_handler): Don't handle INF_QUIT_REQ.
3362 * remote.c (_initialize_remote): Register
3363 async_remote_interrupt_twice directly as
3364 sigint_remote_twice_token event.
3365
3366 2011-05-30 Pedro Alves <pedro@codesourcery.com>
3367
3368 * target.h (enum inferior_event_type): Delete INF_ERROR.
3369 * inf-loop.c (inferior_event_handler): Don't handle INF_ERROR.
3370
3371 2011-05-30 Pedro Alves <pedro@codesourcery.com>
3372
3373 * interps.c (interp_set): Don't cancel continuations.
3374
3375 2011-05-30 Jan Kratochvil <jan.kratochvil@redhat.com>
3376
3377 * linux-nat.c (linux_lwp_is_zombie): Use xsnprintf.
3378
3379 2011-05-30 Pedro Alves <pedro@codesourcery.com>
3380
3381 * continuations.h (continuation_ftype): Add `err' parameter.
3382 Document parameters.
3383 (do_all_continuations, do_all_continuations_thread)
3384 (do_all_intermediate_continuations)
3385 (do_all_intermediate_continuations_thread)
3386 (do_all_inferior_continuations): Add `err' parameter.
3387 * continuations.c (do_my_continuations_1, do_my_continuations)
3388 (do_all_inferior_continuations, do_all_continuations_ptid)
3389 (do_all_continuations_thread_callback)
3390 (do_all_continuations_thread, do_all_continuations)
3391 (do_all_intermediate_continuations_thread_callback)
3392 (do_all_intermediate_continuations_thread)
3393 (do_all_intermediate_continuations): Add `err' parameter, and pass
3394 it down all the way to the continuations proper.
3395 * inf-loop.c (inferior_event_handler): If fetching an inferior
3396 event throws an error, don't pop the target, and still call the
3397 continuations, but with `err' set. Adjust all other continuation
3398 calls.
3399 * breakpoint.c (until_break_command_continuation): Add `err'
3400 parameter.
3401 * infcmd.c (step_1_continuation): Add `err' parameter. Don't
3402 issue another step if `err' is set.
3403 (struct until_next_continuation_args): New.
3404 (until_next_continuation): Add `err' parameter. Adjust.
3405 (until_next_command): Adjust.
3406 (struct finish_command_continuation_args): Add `thread' field.
3407 (finish_command_continuation): Add `err' parameter. Handle it.
3408 (finish_forward): Adjust.
3409 (attach_command_continuation): Add `err' parameter. Handle it.
3410 * infrun.c (infrun_thread_stop_requested_callback): Adjust to
3411 cancel the continuations.
3412 * interps.c (interp_set): Adjust to cancel the continuations.
3413 * thread.c (clear_thread_inferior_resources): Adjust to cancel the
3414 continuations rather than discarding.
3415 (free_thread): Don't clear thread inferior resources here.
3416 (delete_thread_1): Do it here instead. And do it before removing
3417 the thread from the threads list. Tag the thread as exited before
3418 clearing thread inferior resources.
3419
3420 2011-05-30 Joel Brobecker <brobecker@adacore.com>
3421
3422 * infcall.c (call_function_by_hand): Rephrase error message.
3423
3424 2011-05-27 Pedro Alves <pedro@codesourcery.com>
3425
3426 * defs.h (struct thread_info, struct inferior): Delete forward
3427 declarations.
3428 * breakpoint.h (struct thread_info): New forward declaration.
3429 * observer.sh (struct inferior): New forward declaration.
3430 * python/python-internal.h (struct inferior): New forward
3431 declaration.
3432
3433 2011-05-27 Pedro Alves <pedro@codesourcery.com>
3434
3435 * defs.h (struct continuation, continuation_ftype)
3436 (continuation_free_arg_ftype, add_continuation)
3437 (do_all_continuations, do_all_continuations_thread)
3438 (discard_all_continuations, discard_all_continuations_thread)
3439 (add_intermediate_continuation, do_all_intermediate_continuations)
3440 (do_all_intermediate_continuations_thread)
3441 (discard_all_intermediate_continuations)
3442 (discard_all_intermediate_continuations_thread)
3443 (add_inferior_continuation, do_all_inferior_continuations)
3444 (discard_all_inferior_continuations): Move to ...
3445 * continuations.h: ... this new file.
3446 * breakpoint.c, continuations.c, event-top.c, inf-loop.c,
3447 infcmd.c, inferior.c, infrun.c, interps.c: Include
3448 continuations.h.
3449
3450 2011-05-27 Jan Kratochvil <jan.kratochvil@redhat.com>
3451 Doug Evans <dje@google.com>
3452
3453 Fix PR 10970, PR 12702.
3454 * linux-nat.c (linux_lwp_is_zombie): New function.
3455 (wait_lwp): Initialize status. New variable prev_mask. Block signals.
3456 Check for linux_lwp_is_zombie. Use WNOHANG and sigsuspend.
3457
3458 2011-05-27 Pedro Alves <pedro@codesourcery.com>
3459
3460 * defs.h (continuation_ftype, continuation_free_arg_ftype): New
3461 typedefs.
3462 (add_continuation, add_intermediate_continuation)
3463 (add_inferior_continuation): Use them.
3464 * continuations.c (struct continuation): Use them.
3465 (make_continuation_ftype): Delete.
3466 (make_continuation, add_inferior_continuation, add_continuation)
3467 (add_intermediate_continuation): Use continuation_ftype and
3468 continuation_free_arg_ftype. Rename parameters to shorter names.
3469
3470 2011-05-27 Pedro Alves <pedro@codesourcery.com>
3471
3472 * continuations.c (make_continuation): Make it return void.
3473 (do_my_continuations): Rename to ...
3474 (do_my_continuations_1): ... this. Remove old_chain parameter and
3475 adjust.
3476 (do_my_continuations): New.
3477 (discard_my_continuations): Rename to ...
3478 (discard_my_continuations_1): ... this. Remove old_chain
3479 parameter and adjust.
3480 (discard_my_continuations): New.
3481 (add_inferior_continuation): Simplify.
3482 (do_all_inferior_continuations): Reimplement on top
3483 do_my_continuations.
3484 (discard_all_inferior_continuations): Simplify.
3485 (add_continuation): Simplify.
3486 (do_all_continuations_ptid): Simplify.
3487 (discard_all_continuations_thread_callback): Simplify.
3488 (add_intermediate_continuation): Simplify.
3489 (discard_all_intermediate_continuations_thread_callback):
3490 Simplify.
3491
3492 2011-05-27 Pedro Alves <pedro@codesourcery.com>
3493
3494 * utils.c (struct continuation, add_continuation)
3495 (add_inferior_continuation)
3496 (do_all_inferior_continuations, discard_all_inferior_continuations)
3497 (restore_thread_cleanup, do_all_continuations_ptid)
3498 (do_all_continuations_thread_callback)
3499 (do_all_continuations_thread, do_all_continuations)
3500 (discard_all_continuations_thread_callback)
3501 (discard_all_continuations_thread, discard_all_continuations)
3502 (add_intermediate_continuation)
3503 (do_all_intermediate_continuations_thread_callback)
3504 (do_all_intermediate_continuations_thread)
3505 (do_all_intermediate_continuations)
3506 (discard_all_intermediate_continuations_thread_callback)
3507 (discard_all_intermediate_continuations_thread)
3508 (discard_all_intermediate_continuations): Move to ...
3509 * continuations.c: ... this new file, and adjust to no longer
3510 implement continuations on top of cleanups.
3511 * Makefile.in (SFILES): Add continuations.c.
3512 (COMMON_OBS): Add continuations.o.
3513
3514 2011-05-26 Pedro Alves <pedro@codesourcery.com>
3515
3516 * inferior.h (enum exec_direction_kind): Delete EXEC_ERROR.
3517 * infrun.c (show_exec_direction_func): Don't handle EXEC_ERROR.
3518 Internal error on invalid values.
3519 * reverse.c: Don't handle EXEC_ERROR.
3520 * mi/mi-main.c: Don't handle EXEC_ERROR.
3521
3522 2011-05-26 Pedro Alves <pedro@codesourcery.com>
3523
3524 * record.c: Include event-loop.h, inf-loop.h.
3525 (record_beneath_to_async): New global.
3526 (tmp_to_async): New global.
3527 (record_async_inferior_event_token): New global.
3528 (record_open_1): Don't error out if async is enabled.
3529 (record_open): Handle to_async. Create an async event source in
3530 the event loop.
3531 (record_close): Delete the async event source.
3532 (record_resumed): New global.
3533 (record_execution_dir): New global.
3534 (record_resume, record_core_resume): Set them. Register the
3535 target on the event loop.
3536 (record_wait): Rename to ...
3537 (record_wait_1): ... this. Add more debug output. Handle
3538 TARGET_WNOHANG, and the target beneath returning
3539 TARGET_WAITKIND_IGNORE.
3540 (record_wait): Reimplement on top of record_wait_1.
3541 (record_async_mask_value): New global.
3542 (record_async, record_async_mask, record_can_async_p)
3543 (record_is_async_p, record_execution_direction): New functions.
3544 (init_record_ops, init_record_core_ops): Install new methods.
3545 * infrun.c (fetch_inferior_event): Temporarily switch the global
3546 execution direction to the direction the target was going.
3547 (execution_direction): Change type to int.
3548 * target.c (default_execution_direction): New function.
3549 (update_current_target): Inherit and de_fault
3550 to_execution_direction.
3551 * target.h (struct target_ops) <to_execution_direction>: New
3552 field.
3553 (target_execution_direction): New macro.
3554 * inferior.h (execution_direction): Change type to int.
3555
3556 2011-05-26 Pedro Alves <pedro@codesourcery.com>
3557
3558 * infcall.c (call_function_by_hand): Don't allow calling functions
3559 in reverse execution mode.
3560
3561 2011-05-26 Pedro Alves <pedro@codesourcery.com>
3562
3563 * infcmd.c (finish_command): Allow async finish in reverse.
3564
3565 2011-05-26 Yao Qi <yao@codesourcery.com>
3566
3567 * gdb_thread_db.h: Delete. Move to ...
3568 * common/gdb_thread_db.h: ... here.
3569
3570 2011-05-26 Pedro Alves <pedro@codesourcery.com>
3571
3572 * infcmd.c (finish_backward): Set a step-resume breakpoint at the
3573 function's entry point instead of a manually managed momentary
3574 breakpoint, and only ever issue one proceed call.
3575 * infrun.c (handle_inferior_event) <BPSTAT_WHAT_STEP_RESUME>: If
3576 doing a reverse-finish, switch to stepi mode, to do another step.
3577 (insert_step_resume_breakpoint_at_sal): Make public.
3578 (normal_stop): No need to save function value return registers if
3579 going reverse.
3580 * inferior.h (insert_step_resume_breakpoint_at_sal): Declare.
3581
3582 2011-05-26 Pedro Alves <pedro@codesourcery.com>
3583
3584 * breakpoint.h (enum bptype) <bp_hp_step_resume>: New.
3585 (enum bpstat_what_main_action): Move BPSTAT_WHAT_STEP_RESUME
3586 before BPSTAT_WHAT_STOP_SILENT. Add BPSTAT_WHAT_HP_STEP_RESUME
3587 at the end.
3588 * breakpoint.c (update_breakpoints_after_exec): Also delete hp
3589 step-resume breakpoints.
3590 (print_it_typical): Handle bp_hp_step_resume.
3591 (bpstat_what): Ditto.
3592 (bptype_string): Ditto.
3593 (print_one_breakpoint_location): Ditto.
3594 (allocate_bp_location): Ditto.
3595 (mention): Ditto.
3596 (breakpoint_re_set_one): Ditto.
3597 * infrun.c (handle_inferior_event): Adjust. Split
3598 BPSTAT_WHAT_STEP_RESUME handling in BPSTAT_WHAT_STEP_RESUME and
3599 BPSTAT_WHAT_HP_STEP_RESUME.
3600 (insert_step_resume_breakpoint_at_sal): Rename to ...
3601 (insert_step_resume_breakpoint_at_sal_1): ... this. Add bptype
3602 parameter. Handle it.
3603 (insert_step_resume_breakpoint_at_sal): Reimplement on top of
3604 insert_step_resume_breakpoint_at_sal_1.
3605 (insert_step_resume_breakpoint_at_frame): Rename to ...
3606 (insert_hp_step_resume_breakpoint_at_frame): ... this. Adjust to
3607 set a high-priority step-resume breakpoint.
3608 (insert_step_resume_breakpoint_at_frame): Adjust comment.
3609 (insert_step_resume_breakpoint_at_caller): Ditto.
3610
3611 2011-05-26 Pedro Alves <pedro@codesourcery.com>
3612
3613 * breakpoint.c (iterate_over_related_breakpoints): New.
3614 (do_map_delete_breakpoint): New.
3615 (delete_command): Pass do_map_delete_breakpoint to
3616 map_breakpoint_numbers.
3617 (do_disable_breakpoint): New.
3618 (do_map_disable_breakpoint): Iterate over the breakpoint's related
3619 breakpoints.
3620 (do_enable_breakpoint): Rename to ...
3621 (enable_breakpoint_disp): ... this.
3622 (enable_breakpoint): Adjust.
3623 (do_enable_breakpoint): New.
3624 (enable_once_breakpoint): Delete.
3625 (do_map_enable_breakpoint): New.
3626 (do_map_enable_once_breakpoint): New.
3627 (enable_once_command, enable_delete_command)
3628 (delete_trace_command): Iterate over the breakpoint's related
3629 breakpoints.
3630
3631 2011-05-26 Pedro Alves <pedro@codesourcery.com>
3632
3633 * alpha-tdep.c (alpha_cannot_fetch_register): Don't return true
3634 for ALPHA_ZERO_REGNUM.
3635 (alpha_supply_int_regs): Explicitly supply zero as the value for
3636 ALPHA_ZERO_REGNUM in the register cache.
3637 * alpha-nat.c (fetch_osf_core_registers): Ditto.
3638
3639 2011-05-26 Yao Qi <yao@codesourcery.com>
3640
3641 * gdb/gdb_thread_db.h: Remove HAVE_UINTPTR_T.
3642
3643 2011-05-26 Tristan Gingold <gingold@adacore.com>
3644
3645 * symfile.h (struct dwarf2_section_names): New type.
3646 (struct dwarf2_debug_sections): New type.
3647 (dwarf2_has_info): Add parameter.
3648 * dwarf2read.c (dwarf2_elf_names): New variable.
3649 (INFO_SECTION, ABBREV_SECTION, LINE_SECTION, LOC_SECTION)
3650 (MACINFO_SECTION, STR_SECTION, RANGES_SECTION, TYPES_SECTION)
3651 (FRAME_SECTION, EH_FRAME_SECTION, GDB_INDEX_SECTION): Remove.
3652 (dwarf2_has_info): Add names parameter. Pass names
3653 to dwarf2_locate_sections.
3654 (section_is_p): Rewrite using the names parameter.
3655 (dwarf2_locate_sections): Use section names from the names parameter.
3656 * coffread.c (coff_symfile_read): Adjust call to dwarf2_has_info.
3657 * elfread.c (read_psyms): Ditto.
3658 * machoread.c (macho_symfile_read): Ditto.
3659
3660 2011-05-25 Andreas Schwab <schwab@redhat.com>
3661
3662 PR gdb/8677
3663 * event-loop.c (handle_file_event): Don't handle POLLHUP as error.
3664
3665 2011-05-24 Keith Seitz <keiths@redhat.com>
3666
3667 PR breakpoint/12803
3668 * linespec.c (keep_name_info): Add handling for "volatile" keyword.
3669 (decode_compound): Unconditionally call keep_name_info.
3670
3671 2011-05-24 Pedro Alves <pedro@codesourcery.com>
3672
3673 * breakpoint.c (watchpoint_check): If the watchpoint went out of
3674 scope, clear its command list.
3675 (map_breakpoint_numbers): Don't walk the related breakpoints list
3676 of each breakpoint.
3677
3678 2011-05-24 Tom Tromey <tromey@redhat.com>
3679
3680 * MAINTAINERS: Move Jim Blandy to past maintainers.
3681
3682 2011-05-24 Tristan Gingold <gingold@adacore.com>
3683
3684 * symfile.h (enum dwarf2_section_enum): New type.
3685 (dwarf2_get_section_info): New prototype.
3686 * dwarf2read.c (dwarf2_get_section_info): Replace parameter
3687 section_name by sect. Use a switch to select the info.
3688 * dwarf2-frame.c (warf2_get_section_info): Remove prototype.
3689 (dwarf2_build_frame_info): Adjust calls to dwarf2_get_section_info.
3690
3691 2011-05-24 Pedro Alves <pedro@codesourcery.com>
3692
3693 * solib-svr4.c (svr4_solib_create_inferior_hook): Skip setting
3694 shared library event breakpoint if there's no execution.
3695
3696 2011-05-24 Thiago Jung Bauermann <bauerman@br.ibm.com>
3697
3698 * breakpont.c (remove_hw_watchpoints): Remove unused function.
3699 * breakpoint.h remove_hw_watchpoints(): Remove prototype.
3700
3701 2011-05-23 Tom Tromey <tromey@redhat.com>
3702
3703 * c-lang.c (evaluate_subexp_c): Use expect_type if it is not
3704 NULL.
3705
3706 2011-05-23 Doug Evans <dje@google.com>
3707
3708 * python/lib/gdb/printing.py (register_pretty_printer): Add missing
3709 entry for RuntimeError to doc string.
3710
3711 2011-05-23 Jerome Guitton <guitton@adacore.com>
3712
3713 * sparc-tdep.c (sparc_skip_stack_check): Recognize a new instruction
3714 sequence for probing loops.
3715
3716 2011-05-23 Pedro Alves <pedro@codesourcery.com>
3717
3718 * infrun.c (user_visible_resume_ptid): Fix typos in describing
3719 comment.
3720
3721 2011-05-21 Mark Kettenis <kettenis@gnu.org>
3722
3723 * sparc-nat.c (sparc_fetch_inferior_registers): Explicitly supply
3724 zero as the value for %g0 in the register cache.
3725 * sparc-tdep.c (sparc32_supply_gregset): Likewise.
3726 * sparc64-tdep.c (sparc64_supply_gregset): Likewise.
3727
3728 2011-05-20 Pedro Alves <pedro@codesourcery.com>
3729
3730 * infrun.c (proceed): Set previous_inferior_ptid here.
3731 (init_wait_for_inferior): Initialize previous_inferior_ptid from
3732 inferior_ptid, not null_ptid.
3733 (wait_for_inferior): Don't initialize previous_inferior_ptid here.
3734 (fetch_inferior_event): Nor here.
3735
3736 2011-05-20 Pedro Alves <pedro@codesourcery.com>
3737
3738 * inf-loop.c (inferior_event_handler): Only output a message if
3739 verbose.
3740
3741 2011-05-20 Luis Machado <lgustavo@codesourcery.com>
3742
3743 * MAINTAINERS: Update my e-mail address.
3744
3745 2011-05-20 Pedro Alves <pedro@codesourcery.com>
3746
3747 * infrun.c (proceed): Switch the inferior event loop to
3748 INF_EXEC_COMPLETE if the target refused to resume from a
3749 vfork/fork.
3750
3751 2011-05-20 Pedro Alves <pedro@codesourcery.com>
3752
3753 * infcmd.c: Include "inf-loop.h".
3754 (step_once): When stepping into an inline subroutine, pretend the
3755 target has run. If the target can async, switch the inferior
3756 event loop to INF_EXEC_COMPLETE.
3757 * inferior.h (user_visible_resume_ptid): Declare.
3758 * infrun.c (user_visible_resume_ptid): New function, factored out
3759 from `resume'.
3760 (resume): Use it.
3761 * mi/mi-main.c (mi_execute_async_cli_command): Remove assertion
3762 that the current thread is running. Merge async and sync
3763 branches.
3764
3765 2011-05-20 Pedro Alves <pedro@codesourcery.com>
3766
3767 * infcmd.c (step_1): Simplify synchronous case.
3768
3769 2011-05-20 Pedro Alves <pedro@codesourcery.com>
3770
3771 * tracepoint.c: Include exceptions.h.
3772 (TFILE_PID): Move higher in file.
3773 (tfile_open): Delay pushing the tfile target until we're assured
3774 the tfile header is present in the file. Wrap reading the initial
3775 newline-terminated lines in TRY_CATCH. Pop the target if the
3776 initial setup failed. Add the tfile's thread immediately
3777 aftwards, before any non-essential setup. Don't skip
3778 post_create_inferior if there are no traceframes present in the
3779 file.
3780 (tfile_close): Remove redundant check for null before xfree call.
3781 (tfile_thread_alive): New function.
3782 (init_tfile_ops): Register it as to_thread_alive callback.
3783
3784 2011-05-20 Pedro Alves <pedro@codesourcery.com>
3785
3786 * tracepoint.c (tfile_open): Delete #if 0'd code.
3787
3788 2011-05-20 Jan Kratochvil <jan.kratochvil@redhat.com>
3789
3790 Fix -readnow for -gdwarf-4 unused type units.
3791 * dwarf2read.c (struct signatured_type): Remove the field offset.
3792 (create_signatured_type_table_from_index): Remove its initialization.
3793 (create_debug_types_hash_table): Likewise. Initialize per_cu.offset
3794 instead. Add a complaint call.
3795 (process_psymtab_comp_unit): Change assignment to gdb_assert.
3796 (process_type_comp_unit, lookup_die_type, dump_die_shallow)
3797 (lookup_signatured_type_at_offset, read_signatured_type)
3798 (write_one_signatured_type): Update the field for per_cu.
3799
3800 2011-05-19 Tom Tromey <tromey@redhat.com>
3801
3802 * python/py-inferior.c (python_inferior_exit): Use
3803 target_gdbarch.
3804 (python_on_resume): Likewise.
3805
3806 2011-05-19 Matt Rice <ratmice@gmail.com>
3807
3808 * breakpoint.c (bpstat_do_actions_1): Call prevent_dont_repeat.
3809
3810 2011-05-19 Hui Zhu <teawater@gmail.com>
3811
3812 * tracepoint.c (tfile_trace_find): Return directly when num is -1.
3813
3814 2011-05-19 Hui Zhu <teawater@gmail.com>
3815
3816 * xcoffread.c (read_xcoff_symtab): Initialize fcn_aux_saved.
3817
3818 2011-05-18 Tom Tromey <tromey@redhat.com>
3819
3820 * dwarf2read.c (dwarf2_add_field): Constify.
3821 * value.c (value_static_field): Constify.
3822 * gdbtypes.h (struct main_type) <field.field_location.physname>:
3823 Now const.
3824 * ax-gdb.c (gen_static_field): Constify
3825
3826 2011-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
3827
3828 * linux-nat.c (kill_callback): Use SIGKILL first.
3829
3830 2011-05-18 Joel Brobecker <brobecker@adacore.com>
3831
3832 * ada-lang.c (print_it_exception): Avoid use of sprintf.
3833
3834 2011-05-18 Tom Tromey <tromey@redhat.com>
3835
3836 * value.c (value_fn_field): Constify.
3837 * symtab.c (gdb_mangle_name): Constify.
3838 * stabsread.c (update_method_name_from_physname): Make 'physname'
3839 argument const.
3840 * p-typeprint.c (pascal_type_print_method_args): Make arguments
3841 const. Use explicit fputc_filtered loop.
3842 (pascal_type_print_base): Constify.
3843 * p-lang.h (pascal_type_print_method_args): Update.
3844 * linespec.c (add_matching_methods): Constify.
3845 (add_constructors): Likewise.
3846 * jv-typeprint.c (java_type_print_base): Constify.
3847 * gdbtypes.h (struct cplus_struct_type)
3848 <fn_fieldlist.fn_field.physname>: Now const.
3849 * dwarf2read.c (compute_delayed_physnames): Constify.
3850 (dwarf2_add_member_fn): Likewise.
3851 * c-typeprint.c (c_type_print_base): Constify. Use cleanups.
3852
3853 2011-05-18 Pedro Alves <pedro@codesourcery.com>
3854
3855 * infrun.c (resume): Mention which is the current thread, and its
3856 current PC in debug output.
3857 (prepare_to_proceed): Mention the thread switching in debug
3858 output.
3859
3860 2011-05-18 Tom Tromey <tromey@redhat.com>
3861
3862 * linux-thread-db.c (try_thread_db_load_from_pdir_1): Fix absolute
3863 path check. Use xmalloc and cleanups.
3864 (try_thread_db_load_from_dir): Use xmalloc and cleanups.
3865
3866 2011-05-17 Tom Tromey <tromey@redhat.com>
3867
3868 * cp-valprint.c (cp_print_value_fields): Catch errors from
3869 value_static_field.
3870
3871 2011-05-17 Tom Tromey <tromey@redhat.com>
3872
3873 * dwarf2read.c (dwarf2_get_die_type): Call
3874 get_die_type_at_offset.
3875 * dwarf2expr.c (dwarf_get_base_type): Handle NULL return from
3876 get_base_type function.
3877
3878 2011-05-17 Tomas Martinec <fyzmat@gmail.com>
3879
3880 * infrun.c (handle_inferior_event) <handling deferred step>: Clear
3881 trap_expected.
3882
3883 2011-05-16 Doug Evans <dje@google.com>
3884
3885 * python/py-auto-load.c (source_section_scripts): Mention objfile
3886 name in warning.
3887
3888 2011-05-15 Doug Evans <dje@google.com>
3889
3890 * linux-thread-db.c (try_thread_db_load_from_pdir_1): New function.
3891 (try_thread_db_load_from_pdir): Call it. If unable to find
3892 libthread_db in directory of libpthread, see if we're looking at
3893 the separate-debug-info copy.
3894
3895 * python/py-autoload.c (print_script): Print "Missing" instead of
3896 "No" for missing scripts.
3897 (info_auto_load_scripts): Tweak "Loaded" column to fit "Missing".
3898
3899 2011-05-13 Doug Evans <dje@google.com>
3900
3901 * ui-file.c (stdio_file_write_async_safe): Add comment.
3902
3903 2011-05-14 Hui Zhu <teawater@gmail.com>
3904
3905 * ui-file.c (stdio_file_write_async_safe): Add empty check for build.
3906
3907 2011-05-13 Doug Evans <dje@google.com>
3908
3909 Support $pdir and $sdir in libthread-db-search-path.
3910 * NEWS: Mention $sdir,$pdir.
3911 * gdb_thread_db.h (LIBTHREAD_DB_SEARCH_PATH): Add $sdir:$pdir.
3912 * linux-thread-db.c (try_thread_db_load_from_pdir): New function.
3913 (try_thread_db_load_from_sdir): New function.
3914 (try_thread_db_load_from_dir): New function.
3915 (thread_db_load_search): Handle $pdir, $sdir. Remove trying of
3916 system directories if search of libthread-db-search-path fails,
3917 that is now done via $sdir.
3918 (has_libpthread): New function.
3919 (thread_db_load): Remove search for libthread_db in directory of
3920 libpthread, that is now done via $pdir.
3921
3922 * NEWS: Mention "info auto-load-scripts".
3923 * python/py-auto-load.c (struct auto_load_pspace_info): New member
3924 script_not_found_warning_printed.
3925 (init_loaded_scripts_info): Renamed from create_loaded_scripts_hash,
3926 all callers updated. Initialize script_not_found_warning_printed.
3927 (get_auto_load_pspace_data_for_loading): New function.
3928 (maybe_add_script): New function.
3929 (source_section_scripts): Simplify. Only print one warning regardless
3930 of the number of auto-load scripts not found.
3931 (clear_section_scripts): Clear script_not_found_warning_printed.
3932 (auto_load_objfile_script): Record script in hash table.
3933 (count_matching_scripts): New function.
3934 (maybe_print_script): Renamed from maybe_print_section_script, all
3935 callers updated. Rewrite to use ui_out_*.
3936 (info_auto_load_scripts): Renamed from
3937 maintenance_print_section_scripts, all callers updated.
3938 (gdbpy_initialize_auto_load): "maintenance print section-scripts"
3939 renamed as "info auto-load-scripts".
3940
3941 2011-05-13 Tom Tromey <tromey@redhat.com>
3942
3943 * dwarf2expr.c (read_uleb128): Cast intermediate result.
3944 (read_sleb128): Likewise.
3945
3946 2011-05-13 Tom Tromey <tromey@redhat.com>
3947
3948 * dwarf2loc.c (disassemble_dwarf_expression): Fix instruction
3949 offset display.
3950
3951 2011-05-13 Doug Evans <dje@google.com>
3952
3953 * linux-nat.c (debug_linux_nat_async): Delete.
3954 Replace all references to use debug_linux_nat instead.
3955 (show_debug_linux_nat_async): Delete.
3956 (sigchld_handler): Call ui_file_write_async_safe instead of
3957 fprintf_unfiltered.
3958 (_initialize_linux_nat): Remove `set debug lin-lwp-async'.
3959 * ui-file.c (struct ui_file): New member to_write_async_safe.
3960 (null_file_write_async_safe): New function.
3961 (ui_file_write_async_safe): New function.
3962 (set_ui_file_write_async_safe): New function.
3963 (ui_file_new): Initialize to_write_async_safe.
3964 (stdio_file_write_async_safe): New function.
3965 (struct stdio_file): New member fd.
3966 (stdio_file_new): Initialize to_write_async_safe, fd.
3967 (stdio_file_read, stdio_file_isatty): New stdio->fd instead of calling
3968 fileno.
3969 * ui-file.h (ui_file_write_async_safe_ftype): New typedef.
3970 (set_ui_file_write_async_safe): Declare.
3971 (ui_file_write_async_safe): Declare.
3972
3973 2011-05-13 Tom Tromey <tromey@redhat.com>
3974
3975 * utils.c (do_value_free): New function.
3976 (make_cleanup_value_free): Likewise.
3977 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Handle value
3978 freeing correctly.
3979 (dwarf2_loc_desc_needs_frame): Call
3980 make_cleanup_value_free_to_mark.
3981 * dwarf2expr.h (struct dwarf_expr_context) <mark>: Remove field.
3982 * dwarf2expr.c (free_dwarf_expr_context): Don't call
3983 value_free_to_mark.
3984 (new_dwarf_expr_context): Don't call value_mark.
3985 * dwarf2-frame.c (execute_stack_op): Call
3986 make_cleanup_value_free_to_mark.
3987 * defs.h (make_cleanup_value_free): Declare.
3988
3989 2011-05-13 Thiago Jung Bauermann <bauerman@br.ibm.com>
3990
3991 * mi/mi-main.c (mi_cmd_execute): Use cleanup from
3992 prepare_execute_command.
3993 * top.c (prepare_execute_command): Return cleanup.
3994 (execute_command): Use cleanup from prepare_execute_command.
3995 * top.h (prepare_execute_command): Change prototype to return
3996 cleanup.
3997 * defs.h (struct value): Add opaque declaration.
3998 (make_cleanup_value_free_to_mark): Add prototype.
3999 * utils.c (do_value_free_to_mark): New function.
4000 (make_cleanup_value_free_to_mark): Likewise.
4001
4002 2011-05-12 Tom Tromey <tromey@redhat.com>
4003
4004 * dwarf2expr.c (execute_stack_op) <DW_OP_shr>: Unconditionally
4005 cast left-hand-side to unsigned.
4006
4007 2011-05-12 Tom Tromey <tromey@redhat.com>
4008
4009 PR gdb/12617:
4010 * value.h (value_from_contents): Declare.
4011 * value.c (value_from_contents): New function.
4012 * dwarf2read.c (dwarf_stack_op_name): Add new values.
4013 (dwarf2_get_die_type): New function.
4014 * dwarf2loc.c (dwarf_expr_get_base_type): New function.
4015 (allocate_piece_closure): Acquire reference to values.
4016 (read_pieced_value): Update for value-based expressions.
4017 (write_pieced_value): Likewise.
4018 (free_pieced_value_closure): Call value_free as needed.
4019 (dwarf2_evaluate_loc_desc_full): Set get_base_type field.
4020 Update for value-based expressions.
4021 * dwarf2loc.h (dwarf2_get_die_type): Declare.
4022 * dwarf2expr.h (struct dwarf_stack_value) <value>: Change type.
4023 <get_base_type>: New field.
4024 (struct dwarf_expr_piece) <v.value>: Change type.
4025 <v.regno>: New field.
4026 (struct dwarf_expr_context) <mark>: New field.
4027 (dwarf_expr_piece, dwarf_expr_fetch): Update.
4028 (dwarf_expr_pop, dwarf_expr_push): Remove.
4029 (dwarf_expr_push_address): Declare.
4030 * dwarf2expr.c (dwarf_arch_cookie): New global.
4031 (struct dwarf_gdbarch_types): New.
4032 (dwarf_gdbarch_types_init, dwarf_expr_address_type): New
4033 functions.
4034 (dwarf_expr_push): Change type of 'value' argument. Update. Now
4035 static.
4036 (dwarf_expr_push_address): New function.
4037 (dwarf_expr_pop): Now static.
4038 (dwarf_expr_fetch): Change return type.
4039 (dwarf_require_integral): New function.
4040 (dwarf_expr_fetch): Simplify.
4041 (add_piece): Update.
4042 (base_types_equal_p, dwarf_get_base_type, get_unsigned_type): New
4043 functions.
4044 (execute_stack_op) <sign_ext>: Remove.
4045 Use values for DWARF stack.
4046 <DW_OP_GNU_const_type, DW_OP_GNU_deref_type,
4047 DW_OP_GNU_regval_type, DW_OP_GNU_convert, DW_OP_GNU_reinterpret>:
4048 New cases.
4049 (_initialize_dwarf2expr): New function.
4050 (add_piece): Update.
4051 (new_dwarf_expr_context): Set new field.
4052 (free_dwarf_expr_context): Call value_free_to_mark.
4053 * dwarf2-frame.c (no_base_type): New function.
4054 (execute_stack_op): Set get_base_type field. Update.
4055
4056 2011-05-12 Tom Tromey <tromey@redhat.com>
4057
4058 * dwarf2read.c (read_common_block): Fix formatting.
4059
4060 2011-05-12 Kwok Cheung Yeung <kcy@codesourcery.com>
4061
4062 * breakpoint.c (disable_breakpoint): Disable all locations
4063 associated with a tracepoint on target if a trace experiment is
4064 running.
4065 (disable_command): Disable a specific tracepoint location on target if
4066 a trace experiment is running.
4067 (do_enable_breakpoint): Enable all locations associated with a
4068 tracepoint on target if a trace experiment is running.
4069 (enable_command) Enable a specific tracepoint location on target if a
4070 trace experiment is running.
4071 * target.c (update_current_target): Add INHERIT and de_fault clauses for
4072 to_supports_enable_disable_tracepoint, to_enable_tracepoint and
4073 to_disable_tracepoint.
4074 * target.h: Add declaration of struct bp_location.
4075 (struct target_ops): Add new functions
4076 to_supports_enable_disable_tracepoint, to_enable_tracepoint and
4077 to_disable_tracepoint to target operations.
4078 (target_supports_enable_disable_tracepoint): New macro.
4079 (target_enable_tracepoint): New macro.
4080 (target_disable_tracepoint): New macro.
4081 * remote.c (struct remote_state): Add new field.
4082 (remote_enable_disable_tracepoint_feature): New.
4083 (remote_protocol_features): Add new entry.
4084 (remote_supports_enable_disable_tracepoint): New.
4085 (remote_enable_tracepoint): New.
4086 (remote_disable_tracepoint): New.
4087 (init_remote_ops): Add remote_enable_tracepoint,
4088 remote_disable_tracepoint and remote_supports_enable_disable_tracepoint
4089 to remote operations.
4090 * tracepoint.c (start_tracing): Allow tracing to start without any
4091 tracepoints enabled with just a warning if they can be re-enabled
4092 later.
4093 * NEWS: Add news item for the new behaviour of the enable and disable
4094 GDB commands when applied to tracepoints.
4095 Add news items for the new remote packets QTEnable and QTDisable.
4096
4097 2011-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
4098
4099 * config.in: Regenerate.
4100 * configure: Regenerate.
4101 * configure.ac <--with-system-readline> (for readline_echoing_p):
4102 Remove the test.
4103 * tui/tui-io.c (tui_old_readline_echoing_p): Rename to ...
4104 (tui_old_rl_echoing_p): ... here.
4105 (tui_setup_io): Rename extern declaration readline_echoing_p to
4106 _rl_echoing_p. Adjust assignments for the both renames.
4107
4108 2011-05-11 Thiago Jung Bauermann <bauerman@br.ibm.com>
4109
4110 * symtab.c (lookup_symtab): Run cleanup before returning.
4111
4112 2011-05-11 Tom Tromey <tromey@redhat.com>
4113
4114 * dwarf2read.c (handle_data_member_location): New function.
4115 (dwarf2_add_field): Use it.
4116 (read_common_block): Likewise.
4117
4118 2011-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
4119
4120 Make addrs->SECTINDEX always defined.
4121 * symfile.c (relative_addr_info_to_section_offsets): Check for
4122 SECTINDEX -1, not for zero ADDR.
4123 (addrs_section_compar): Remove checking for invalid SECTINDEX.
4124 (addr_info_make_relative): Set SECTINDEX to -1 for unmatched entries.
4125 * symfile.h (struct section_addr_info) <sectindex>: Update the comment
4126 on its validity.
4127
4128 2011-05-10 Doug Evans <dje@google.com>
4129
4130 * linux-thread-db.c: Whitespace cleanup.
4131 (try_thread_db_load_1): Fix comment.
4132
4133 * linux-thread-db.c (set_libthread_db_search_path): New function.
4134 (_initialize_thread_db): Add setter for libthread-db-search-path.
4135
4136 2011-05-09 Doug Evans <dje@google.com>
4137
4138 * NEWS: Mention --with-iconv-bin.
4139 * configure.ac: New option --with-iconv-bin.
4140 * configure: Regenerate.
4141 * config.in: Regenerate.
4142 * defs.h (relocate_gdb_directory): Declare.
4143 * main.c (relocate_gdb_directory): Renamed from relocate_directory,
4144 removed progname parameter, and exported. All callers updated.
4145 * charset.c (find_charset_names): Use --with-iconv-bin if specified.
4146
4147 * linux-nat.c (lin_lwp_attach_lwp): For !WIPSTOPPED case,
4148 adding missing call to restore_child_signals_mask.
4149
4150 2011-05-09 Pedro Alves <pedro@codesourcery.com>
4151
4152 * inferior.h (wait_for_inferior): Remove `thread_exec_as_sigtrap'
4153 parameter.
4154 * infrun.c (proceed, start_remote): Adjust.
4155 (wait_for_inferior): Remove `thread_exec_as_sigtrap' parameter,
4156 and adjust to not handle it.
4157 * solib-irix.c (irix_solib_create_inferior_hook): Adjust.
4158 * solib-osf.c (osf_solib_create_inferior_hook): Adjust.
4159 * solib-sunos.c (sunos_solib_create_inferior_hook): Adjust.
4160 * solib-svr4.c (svr4_solib_create_inferior_hook): Adjust.
4161 * windows-nat.c (do_initial_windows_stuff): Adjust.
4162 * infcmd.c (attach_command): Adjust.
4163 (notice_new_inferior): Adjust.
4164
4165 2011-05-06 Ulrich Weigand <uweigand@de.ibm.com>
4166
4167 * ppc-linux-tdep.c (ppu2spu_prev_register): Handle pseudo registers.
4168 (ppu2spu_unwind_register): Mark pseudo registers unavailable.
4169 * spu-tdep.c (op_selb): Use correct value.
4170
4171 2011-05-06 Ulrich Weigand <uweigand@de.ibm.com>
4172
4173 * spu-linux-nat.c (spu_symbol_file_add_from_memory): Add NULL
4174 "parent" parameter to symbol_file_add_from_bfd call.
4175
4176 2011-05-06 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
4177 Thiago Jung Bauermann <bauerman@br.ibm.com>
4178
4179 Implement support for PowerPC BookE masked watchpoints.
4180 * NEWS: Mention masked watchpoint support. Create "Changed commands"
4181 section.
4182 * breakpoint.h (struct breakpoint_ops) <works_in_software_mode>: New
4183 method. Initialize to NULL in all existing breakpoint_ops instances.
4184 (struct breakpoint) <hw_wp_mask>: New field.
4185 * breakpoint.c (is_masked_watchpoint): Add prototype.
4186 (update_watchpoint): Don't set b->val for masked watchpoints. Call
4187 breakpoint's breakpoint_ops.works_in_software_mode if available.
4188 (watchpoints_triggered): Handle the case of a hardware masked
4189 watchpoint trigger.
4190 (watchpoint_check): Likewise.
4191 (works_in_software_mode_watchpoint): New function.
4192 (insert_masked_watchpoint, remove_masked_watchpoint)
4193 (resources_needed_masked_watchpoint)
4194 (works_in_software_mode_masked_watchpoint, print_it_masked_watchpoint)
4195 (print_one_detail_masked_watchpoint, print_mention_masked_watchpoint)
4196 (print_recreate_masked_watchpoint, is_masked_watchpoint): New
4197 functions.
4198 (masked_watchpoint_breakpoint_ops): New structure.
4199 (watch_command_1): Check for the existence of the `mask' parameter.
4200 Set b->ops according to the type of hardware watchpoint being created.
4201 * ppc-linux-nat.c (ppc_linux_insert_mask_watchpoint)
4202 (ppc_linux_remove_mask_watchpoint)
4203 (ppc_linux_masked_watch_num_registers): New functions.
4204 (_initialize_ppc_linux_nat): Initialize to_insert_mask_watchpoint,
4205 to_remove_mask_watchpoint and to_masked_watch_num_registers.
4206 * target.c (update_current_target): Mention to_insert_mask_watchpoint,
4207 to_remove_mask_watchpoint, and to_masked_watch_num_registers.
4208 (target_insert_mask_watchpoint, target_remove_mask_watchpoint)
4209 (target_masked_watch_num_registers): New functions.
4210 * target.h (struct target_ops) <to_insert_mask_watchpoint>,
4211 <to_remove_mask_watchpoint>, <to_masked_watch_num_registers>: New
4212 methods.
4213 (target_insert_mask_watchpoint, target_remove_mask_watchpoint)
4214 (target_masked_watch_num_registers): Add prototypes.
4215
4216 2011-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4217
4218 PR 12573
4219 * dwarf2read.c (struct dwarf2_cu): New field has_loclist.
4220 (producer_is_gcc_ge_4_0): New function.
4221 (process_full_comp_unit): Set also symtab->locations_valid. Move the
4222 symtab->language code.
4223 (var_decode_location): Set cu->has_loclist.
4224 * symtab.c (skip_prologue_sal): New variables saved_pc, force_skip and
4225 skip. Intialize force_skip from locations_valid. Move the prologue
4226 skipping code into two passes.
4227 * symtab.h (struct symtab): Make the primary field a bitfield. New
4228 field locations_valid.
4229
4230 2011-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4231
4232 * c-exp.y (qualified_name): Call destructor_name_p with $1.type.
4233 (classify_inner_name): Call cp_lookup_nested_type with
4234 yylval.tsym.type.
4235 * cp-namespace.c (cp_lookup_nested_type): New variable
4236 saved_parent_type. Call CHECK_TYPEDEF for parent_type. Call
4237 type_name_no_tag_or_error with saved_parent_type.
4238 * dwarf2read.c (load_partial_dies): Read in any children of
4239 DW_TAG_typedef with complaint in such case.
4240 * gdbtypes.c (type_name_no_tag_or_error): New function.
4241 * gdbtypes.h (type_name_no_tag_or_error): New prototype.
4242 * valops.c (destructor_name_p): New comment for parameter type. Remove
4243 type const. Make dname and cp const. Call type_name_no_tag_or_error.
4244 * value.h (destructor_name_p): Remove type const.
4245
4246 2011-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4247
4248 * symtab.c (compare_symbol_name): New function.
4249 (completion_list_add_name, expand_partial_symbol_name): Call it,
4250 remove the variable ncmp.
4251 (default_make_symbol_completion_list_break_on): Reduce SYM_TEXT_LEN,
4252 gdb_assert it.
4253
4254 2011-05-05 Thiago Jung Bauermann <bauerman@br.ibm.com>
4255
4256 Demote to sw watchpoint only in update_watchpoint.
4257 * breakpoint.c (update_watchpoint): Change between software and
4258 hardware watchpoint for all kinds of watchpoints, not just
4259 read/write ones. Determine b->exact value here instead of
4260 in watch_command_1. Error out if there are not enough resources
4261 for a read or access hardware watchpoint.
4262 (watch_command_1): Remove logic of checking whether there are
4263 enough resources available, since update_watchpoint will do that
4264 work now. Don't set b->exact here. Catch exceptions thrown by
4265 update_watchpoint and delete the watchpoint.
4266 (can_use_hardware_watchpoint): Remove exact_watchpoints argument.
4267 Use target_exact_watchpoints instead.
4268 (delete_breakpoint): Notify observers only if deleted watchpoint
4269 has a breakpoint number assigned to it.
4270
4271 2011-05-05 Janis Johnson <janisjo@codesourcery.com>
4272
4273 * MAINTAINERS: Add myself as a write-after-approval maintainer.
4274
4275 2011-05-05 Jerome Guitton <guitton@adacore.com>
4276
4277 * i386-tdep.c (i386_in_stack_tramp_p, i386_stack_tramp_frame_sniffer):
4278 New functions.
4279 (i386_stack_tramp_frame_unwind): New static global.
4280 (i386_match_pattern): New function, extracted from i386_match_insn.
4281 (i386_match_insn): Use i386_match_pattern.
4282 (i386_match_insn_block): New function.
4283 (i386_tramp_chain_in_reg_insns)
4284 (i386_tramp_chain_on_stack_insns): New static variables.
4285 (i386_gdbarch_init): Add i386_stack_tramp_frame_unwind to list
4286 of unwinders.
4287
4288 2011-05-04 Joseph Myers <joseph@codesourcery.com>
4289
4290 * configure.host (xscale*): Don't handle target.
4291 * configure.tgt (thumb*-*-* | strongarm*-*-* | xscale-*-*): Don't
4292 handle targets.
4293
4294 2011-05-04 Yao Qi <yao@codesourcery.com>
4295
4296 * gdb_wait.h: remove WAITTYPE and WCOREDUMP.
4297
4298 2011-05-03 Joel Brobecker <brobecker@adacore.com>
4299
4300 Revert:
4301 | 2011-03-07 Michael Snyder <msnyder@vmware.com>
4302 | * elfread.c (elf_symtab_read): Stop memory leak.
4303
4304 2011-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
4305
4306 * nto-tdep.c (nto_target): Replace deprecated call to
4307 cygwin_conv_to_posix_path functions by cygwin_conv_path calls.
4308
4309 2011-05-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4310
4311 Fix false GCC warning.
4312 * breakpoint.c (do_enable_breakpoint): Initialize orig_enable_state.
4313
4314 2011-05-03 Thiago Jung Bauermann <bauerman@br.ibm.com>
4315
4316 * breakpoint.c (update_watchpoint): Move code to change
4317 the enable state of breakpoint from here ...
4318 (do_enable_breakpoint): ... to here.
4319
4320 2011-04-26 Andrew Gontarek <andrewg@cray.com>
4321
4322 * valprint.c (val_print_array_elements): Fixed poor performance
4323 of printing very large arrays with repeat_count_threshold set
4324 to unlimited. New comment.
4325
4326 2011-04-29 Tom Tromey <tromey@redhat.com>
4327
4328 * mi/mi-parse.c (mi_parse): Remove incorrect sizeof.
4329 (mi_parse): Likewise.
4330 * breakpoint.c (break_range_command): Use sizeof char*, not
4331 char**.
4332 (create_breakpoint): Likewise.
4333 (parse_breakpoint_sals): Likewise.
4334
4335 2011-04-29 Pedro Alves <pedro@codesourcery.com>
4336
4337 * linux-nat.c (linux_child_remove_fork_catchpoint)
4338 (linux_child_remove_vfork_catchpoint)
4339 (linux_child_remove_exec_catchpoint): New functions.
4340 (linux_target_install_ops): Install them.
4341
4342 2011-04-29 Phil Muldoon <pmuldoon@redhat.com>
4343
4344 PR mi/12531
4345
4346 * varobj.c (install_default_visualizer): Do not install a
4347 visualizer if the varobj is CPLUS_FAKE_CHILD.
4348 (construct_visualizer): Likewise.
4349
4350 2011-04-28 Jan Kratochvil <jan.kratochvil@redhat.com>
4351
4352 * symtab.c (expand_partial_symbol_name): New variable NCMP. Support
4353 case insensitive comparison.
4354
4355 2011-04-28 Ulrich Weigand <ulrich.weigand@linaro.org>
4356
4357 * infrun.c (proceed): Revert previous change.
4358 (resume): Instead, handle the case of signal delivery while stepping
4359 off a breakpoint location here, and only if software single-stepping
4360 is used. Handle nested signals.
4361
4362 2011-04-28 Yao Qi <yao@codesourcery.com>
4363
4364 * arm-tdep.c (copy_unmodified): Rename to ...
4365 (arm_copy_unmodified): .. this. New.
4366 (copy_preload): Move common part to ...
4367 (install_preload): .. this. New.
4368 (arm_copy_preload): New.
4369 (copy_preload_reg): Move common part to ...
4370 (install_preload_reg): ... this. New.
4371 (arm_copy_preload_reg): New.
4372 (copy_b_bl_blx): Move common part to ...
4373 (install_b_bl_blx): .. this. New.
4374 (arm_copy_b_bl_blx): New.
4375 (copy_bx_blx_reg): Move common part to ...
4376 (install_bx_blx_reg): ... this. New.
4377 (arm_copy_bx_blx_reg): New.
4378 (copy_alu_reg): Move common part to ...
4379 (install_alu_reg): ... this. New.
4380 (arm_copy_alu_reg): New.
4381 (copy_alu_shifted_reg): Move common part to ...
4382 (install_alu_shifted_reg): ... this. New.
4383 (copy_ldr_str_ldrb_strb): Move common part to ...
4384 (install_ldr_str_ldrb_strb): ... this. New.
4385 (arm_copy_ldr_str_ldrb_strb): New.
4386 (copy_copro_load_store): Move some common part to ...
4387 (install_copy_copro_load_store): ... this. New.
4388 (arm_copy_copro_load_store): New.
4389 (copy_svc): Delete.
4390 (arm_copy_svc): Renamed from copy_svc.
4391 (copy_undef): Delete.
4392 (arm_copy_undef): Renamed from copy_undef.
4393 (decode_ext_reg_ld_st): Delete.
4394 (arm_decode_ext_reg_ld_st): Renamed from decode_ext_reg_ld_st.
4395 (decode_svc_copro): Delete.
4396 (arm_decode_svc_copro): Renamed from decode_svc_copro.
4397 (copy_copro_load_store, copy_alu_imm): update callers.
4398 (copy_extra_ld_st, copy_block_xfer): Likewise.
4399 (decode_misc_memhint_neon, decode_unconditional): Likewise.
4400 (decode_miscellaneous, decode_dp_misc): Likewise.
4401 (decode_ld_st_word_ubyte, decode_media): Likewise.
4402 (decode_b_bl_ldmstm, decode_ext_reg_ld_st): Likewise.
4403 (decode_svc_copro, decode_misc_memhint_neon): Likewise.
4404 (decode_unconditional, decode_miscellaneous): Likewise.
4405 (decode_media, decode_b_bl_ldmstm): Likewise.
4406 (arm_process_displaced_insn): Likewise..
4407 (decode_misc_memhint_neon): Delete.
4408 (arm_decode_misc_memhint_neon): Renamed from decode_misc_memhint_neon.
4409 (decode_miscellaneous): Delete.
4410 (arm_decode_miscellaneous): Renamed from decode_miscellaneous.
4411 (decode_dp_misc): Delete.
4412 (arm_decode_dp_misc): Renamed from decode_dp_misc.
4413 (decode_ld_st_word_ubyte): Delete.
4414 (arm_decode_ld_st_word_ubyte): Renamed from decode_ld_st_word_ubyte.
4415 (decode_media): Delete.
4416 (arm_decode_media): Renamed from decode_media.
4417 (decode_b_bl_ldmstm): Delete.
4418 (arm_decode_b_bl_ldmstm): Renamed from decode_b_bl_ldmstm.
4419 (decode_ext_reg_ld_st): Delete.
4420 (arm_decode_ext_reg_ld_st): Renamed from decode_ext_reg_ld_st.
4421 (decode_unconditional): Delete.
4422 (arm_decode_unconditional): Renamed from decode_unconditional.
4423
4424 2011-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
4425
4426 Case insensitive lookups implementation.
4427 * dwarf2read.c: Include ctype.h.
4428 (struct mapped_index): New field version.
4429 (mapped_index_string_hash): New parameter index_version. New comment
4430 for it. Call tolower appropriately.
4431 (find_slot_in_mapped_hash): New variable cmp, initialize it, use it.
4432 Choose the right index version for mapped_index_string_hash.
4433 (dwarf2_read_index): Support also the index version 5. Initialize the
4434 new struct mapped_index field version.
4435 (hash_strtab_entry): Pass INT_MAX for the new parameter, explain why.
4436 (find_slot): Explain the version needs. Pass INT_MAX for the new
4437 parameter.
4438 (write_psymtabs_to_index): Produce version 5.
4439 * minsyms.c (lookup_minimal_symbol): New variable cmp, initialize it,
4440 use it. New comment for SYMBOL_MATCHES_SEARCH_NAME.
4441 * psymtab.c (lookup_partial_symbol): Find the
4442 SYMBOL_MATCHES_SEARCH_NAME start of the found block of matching
4443 entries.
4444 * symtab.c (lookup_symbol_in_language): Remove the case_sensitive_off
4445 NAME lowercasing.
4446 (search_symbols): Pass REG_ICASE to regcomp for case_sensitive_off.
4447 (completion_list_add_name): New variable ncmp, initialize it, use it.
4448 * symtab.h (SYMBOL_HASH_NEXT): Always call tolower.
4449 * utils.c (strcmp_iw): Support case_sensitive_off.
4450 (strcmp_iw_ordered): Sort in a way compatible with case_sensitive_off.
4451 New function comment part. New variables saved_string1,
4452 saved_string2 and case_pass. Add a proper second pass.
4453
4454 2011-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
4455
4456 Replace re_comp/re_exec by regcomp/regexec.
4457 * symtab.c (struct search_symbols_data): New fields preg, preg_p.
4458 (search_symbols_name_matches): Use them, use regexec.
4459 (search_symbols): New variable retval_chain, adjust the use of
4460 old_chain against it. Replace re_comp by regcomp. Use the new struct
4461 search_symbols_data fields, use regexec instead of re_exec.
4462
4463 2011-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
4464
4465 Format the code for the next patch.
4466 * dwarf2read.c (struct mapped_index): Include delimiting newlines.
4467 * utils.c (strcmp_iw_ordered): Reformat the code for the next patch.
4468 New variables c1 and c2.
4469
4470 2011-04-27 Ulrich Weigand <ulrich.weigand@linaro.org>
4471
4472 * infrun.c (proceed): Do not single-step into signal delivery
4473 when stepping off a breakpoint location.
4474 (insert_step_resume_breakpoint_at_frame): Move prototype earlier.
4475 (insert_step_resume_breakpoint_at_caller): Likewise.
4476 (insert_step_resume_breakpoint_at_sal): Likewise.
4477 (insert_longjmp_resume_breakpoint): Likewise.
4478
4479 2011-04-27 Yao Qi <yao@codesourcery.com>
4480
4481 * common/linux-ptrace.h: Remove include <sys/wait.h>.
4482
4483 2011-04-27 Joel Brobecker <brobecker@adacore.com>
4484
4485 * procfs.c (procfs_pass_signals): Fix advance declaration.
4486
4487 2011-04-27 Ulrich Weigand <ulrich.weigand@linaro.org>
4488
4489 * target.h (struct target_ops): Remove to_notice_signals;
4490 add to_pass_signals.
4491 (target_notice_signals): Remove.
4492 (target_pass_signals): Add prototype.
4493 * target.c (update_current_target): Remove to_notice_signals;
4494 mention to_pass_signals.
4495 (target_pass_signals): New function.
4496 (debug_to_notice_signals): Remove.
4497 (setup_target_debug): Do not install debug_to_notice_signals.
4498
4499 * infrun.c (signal_pass): New global.
4500 (resume): Call target_pass_signals.
4501 (handle_inferior_event): Report all signals while stepping over
4502 non-steppable watchpoint. Reset trap_expected to ensure breakpoints
4503 are re-inserted when stepping over a signal handler.
4504 (signal_cache_update): New function.
4505 (signal_stop_update): Call it.
4506 (signal_print_update): Likewise.
4507 (signal_pass_update): Likewise.
4508 (handle_command): Call signal_cache_update and target_pass_signals
4509 instead of target_notice_signals.
4510 (_initialize_infrun): Initialize signal_pass.
4511
4512 * linux-nat.c (pass_mask): New global.
4513 (linux_nat_pass_signals): New function.
4514 (linux_nat_create_inferior): Report all signals initially.
4515 (linux_nat_attach): Likewise.
4516 (linux_nat_resume): Use pass_mask to decide whether to directly
4517 handle an inferior signal.
4518 (linux_nat_wait_1): Likewise.
4519 (linux_nat_add_target): Install to_pass_signals callback.
4520
4521 * nto-procfs.c (notice_signals): Remove.
4522 (procfs_resume): Do not call notice_signals.
4523 (procfs_notice_signals): Remove.
4524 (procfs_pass_signals): New function.
4525 (init_procfs_ops): Install to_pass_signals callback instead of
4526 to_notice_signals callback.
4527 (_initialize_procfs): Report all signals initially.
4528
4529 * procfs.c (procfs_notice_signals): Remove.
4530 (procfs_pass_signals): New function.
4531 (procfs_target): Install to_pass_signals callback instead of
4532 to_notice_signals callback.
4533 (register_gdb_signals): Remove.
4534 (procfs_debug_inferior): Report all signals initially.
4535 (procfs_init_inferior): Remove redundant register_gdb_signals call.
4536
4537 * remote.c (remote_pass_signals): Add numsigs and pass_signals
4538 parameters; use them instead of calling signal_..._state routines.
4539 (remote_notice_signals): Remove.
4540 (remote_start_remote): Report all signals initially.
4541 (remote_resume): Do not call remote_pass_signals.
4542 (_initialize_remote): Install to_pass_signals callback instead of
4543 to_notice_signals callback.
4544
4545 2011-04-27 Pedro Alves <pedro@codesourcery.com>
4546
4547 * breakpoint.c (user_settable_breakpoint): Delete.
4548 (user_breakpoint_p): Remove check on user_settable_breakpoint.
4549 (delete_command): Check user_breakpoint_p instead of looking at
4550 the breakpoint's type.
4551 (disable_command): Ditto.
4552 (enable_command): Ditto.
4553 (delete_trace_command): Use user_breakpoint_p instead of looking
4554 at the breakpoint number directly. When checking if there are
4555 user visible tracepoints, in order to know whether to ask the user
4556 for confirmation, check whether the breakpoint is actually a
4557 tracepoint.
4558
4559 2011-04-27 Vladimir Prus <vladimir@codesourcery.com>
4560
4561 * python/py-breakpoint.c (gdbpy_breakpoint_created): Fix
4562 compilation.
4563
4564 2011-04-27 Vladimir Prus <vladimir@codesourcery.com>
4565
4566 MI breakpoint notifications.
4567
4568 * annotate.c (breakpoint_changed): Adjust parameter type.
4569 * breakpoint.c (set_breakpoint_condition): Adjust to change
4570 in breakpoint_modified type.
4571 (breakpoint_set_commands): Likewise.
4572 (do_map_commands_command): Likewise.
4573 (bpstat_check_breakpoint_conditions): Notify that breakpoint has
4574 changed after bumping hit count.
4575 (bpstat_stop_status): Likewise.
4576 (print_one_breakpoint_location): Don't wrap in tuple here.
4577 (print_one_breakpoint): Always print individual locations.
4578 For locations, use unnamed tuple.
4579 (disable_breakpoints_in_unloaded_shlib): Notify that breakpoint
4580 has changed.
4581 (create_catchpoint, create_syscall_event_catchpoint): Call
4582 breakpoint_created obsever.
4583 (mention): Don't call breakpoint_created observer.
4584 (create_breakpoint_sal): Call breakpoint_created observer.
4585 (create_breakpoint, watch_command_1): Likewise.
4586 (create_ada_exception_breakpoint): Likewise.
4587 (delete_breakpoint): Call breakpoint_deleted breakpoint.
4588 (locations_are_equal): New.
4589 (update_breakpoint_locations): If locations were changed, notify.
4590 (set_ignore_count, disable_breakpoint, do_enable_breakpoint):
4591 Call breakpoint_modified observer.
4592
4593 * mi/mi-cmd-break.c (breakpoint_notify): Adjust.
4594 (mi_cmd_break_insert): Don't set observers for modify and delete.
4595 * mi/mi-interp.c (mi_suppress_breakpoint_notifications): New.
4596 (mi_breakpoint_created, mi_breakpoint_deleted)
4597 (mi_breakpoint_modified): New.
4598 (mi_interpreter_init): Hook the above.
4599 * mi/mi-main.c (mi_cmd_execute): Disable breakpoint notifications
4600 while -break-* commands are executing.
4601 * mi/mi-main.h (mi_suppress_breakpoint_notifications): New.
4602 * mi/mi-out.c (struct ui_out_data): New field original_buffer.
4603 (mi_redirect): New.
4604 (mi_ui_out_impl): Hook in mi_redirect.
4605 (mi_field_skip): True to the name, skip the field, don't output
4606 a field with an empty value.
4607
4608 * python/py-breakpoint.c (gdbpy_breakpoint_created)
4609 (gdbpy_breakpoint_deleted): Adjust.
4610 * tui/tui-hooks.c (tui_event_create_breakpoint)
4611 (tui_event_delete_breakpoint, tui_event_modify_breakpoint): Adjust.
4612
4613 2011-04-26 Aleksandar Ristovski <aristovski@qnx.com>
4614
4615 * nto-procfs.c (procfs_insert_hw_watchpoint): Fix prototype.
4616 (procfs_remove_hw_watchpoint): Likewise.
4617
4618 2011-04-26 Michael Walle <michael@walle.cc>
4619
4620 * remote.c (remote_start_remote): Ack packet after sending the
4621 interrupt sequence.
4622
4623 2011-04-26 Yao Qi <yao@codesourcery.com>
4624
4625 * linux-nat.c: Move common macros to ...
4626 Include linux-ptrace.h.
4627 * common/linux-ptrace.h: ... here. New.
4628
4629 2011-04-25 Jan Kratochvil <jan.kratochvil@redhat.com>
4630
4631 * elfread.c (elf_symfile_read): Protect dwarf2_initialize_objfile by
4632 !objfile_has_partial_symbols. New comment.
4633 * objfiles.c (objfile_has_partial_symbols): Call HAS_SYMBOLS if
4634 SYM_READ_PSYMBOLS is not present. Extend the comment.
4635 * symfile.h (struct sym_fns): Extend the sym_read_psymbols comment.
4636
4637 2011-04-25 Jan Kratochvil <jan.kratochvil@redhat.com>
4638
4639 * defs.h (ENUM_BITFIELD): Remove.
4640
4641 2011-04-24 Jan Kratochvil <jan.kratochvil@redhat.com>
4642 Eli Zaretskii <eliz@gnu.org>
4643
4644 * NEWS: Document the new gdbserver --once option.
4645
4646 2011-04-21 Jie Zhang <jzhang918@gmail.com>
4647
4648 * MAINTAINERS: Update my email address.
4649
4650 2011-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
4651
4652 * gdb_wchar.h (USE_INTERMEDIATE_ENCODING_FUNCTION): New macro.
4653 (INTERMEDIATE_ENCODING): Change value to intermediate_encoding
4654 function call if __STDC_ISO_10646__ macro is defined.
4655 (intermediate_encoding): New prototype.
4656 * charset.c (your_gdb_wchar_t_is_bogus): New extern test variable
4657 to generate compile time error for unsupported gdb_wchar_t size.
4658 (ENDIAN_SUFFIX): New macro.
4659 (intermediate_encoding): New function.
4660
4661 2011-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
4662
4663 * ada-lang.c (struct add_partial_datum): Update the comment for
4664 expand_partial_symbol_name.
4665 (ada_add_partial_symbol_completions): Rename to ...
4666 (ada_expand_partial_symbol_name): ... here, change return type, update
4667 function comment, call symbol_completion_match instead of
4668 symbol_completion_add.
4669 (ada_make_symbol_completion_list): Use now expand_partial_symbol_names
4670 and ada_expand_partial_symbol_name.
4671 * dwarf2read.c (dw2_expand_symtabs_matching): Support NULL
4672 FILE_MATCHER.
4673 (dw2_map_symbol_names): Remove.
4674 (dwarf2_gdb_index_functions): Unlist dw2_map_symbol_names.
4675 * psymtab.c (map_symbol_names_psymtab): Remove.
4676 (expand_symtabs_matching_via_partial): Support NULL FILE_MATCHER.
4677 Support KIND == ALL_DOMAIN. Exchange the NAME_MATCHER and KIND check
4678 order.
4679 (psym_functions): Unlist map_symbol_names_psymtab.
4680 (map_partial_symbol_names): Rename to ...
4681 (expand_partial_symbol_names): ... here, change the FUN type, call
4682 expand_symtabs_matching with ALL_DOMAIN and NULL FILE_MATCHER now.
4683 * psymtab.h (map_partial_symbol_names): Rename to ...
4684 (expand_partial_symbol_names): ... here, change the FUN type.
4685 * symfile.h (struct quick_symbol_functions): Update the description of
4686 expand_symtabs_matching. Remove map_symbol_names.
4687 * symtab.c (search_symbols): Add ALL_DOMAIN to the function comment.
4688 (struct add_name_data): Update the comment for
4689 expand_partial_symbol_name.
4690 (add_partial_symbol_name): Rename to ...
4691 (expand_partial_symbol_name): ... here. Replace
4692 completion_list_add_name call by strncmp.
4693 (default_make_symbol_completion_list_break_on): Use now
4694 expand_partial_symbol_names and expand_partial_symbol_name.
4695 * symtab.h (enum search_domain): New element ALL_DOMAIN.
4696
4697 2011-04-20 Tom Tromey <tromey@redhat.com>
4698
4699 * dwarf2read.c (save_gdb_index_command): Replace format
4700 documentation with a pointer to the manual.
4701
4702 2011-04-20 Pedro Alves <pedro@codesourcery.com>
4703
4704 * regcache.c: Include remote.h.
4705 (enum regcache_dump_what) <regcache_dump_remote>: New enum value.
4706 (regcache_dump): Handle regcache_dump_remote.
4707 (maintenance_print_remote_registers): New function.
4708 (_initialize_regcache): Install "maint print remote-registers"
4709 command.
4710 * remote.c (map_regcache_remote_table): New function, factored out
4711 from ...
4712 (init_remote_state): ... here.
4713 (remote_register_number_and_offset): New.
4714 * remote.h (remote_register_number_and_offset): Declare.
4715
4716 2011-04-20 Pedro Alves <pedro@codesourcery.com>
4717
4718 * regcache.c (get_thread_arch_regcache): If creating a regcache for
4719 null_ptid, assume and allow a NULL address space, instead of
4720 asking the target for the ptid's address space.
4721 * infrun.c (ptid_is_pid): Remove assertion.
4722
4723 2011-04-19 Tom Tromey <tromey@redhat.com>
4724
4725 * windows-tdep.c (windows_xfer_shared_library):
4726 * windows-nat.c (get_module_name, windows_make_so):
4727 * v850-tdep.c (v850_handle_pushm):
4728 * utils.c (null_cleanup, gdb_realpath):
4729 * ui-out.c (get_next_header):
4730 * tracepoint.c (clear_traceframe_info):
4731 * symtab.c (lookup_symtab):
4732 * serial.h (struct serial_ops):
4733 * mipsread.c (read_alphacoff_dynamic_symtab):
4734 * infcmd.c (print_return_value):
4735 * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address):
4736 * f-exp.y (parse_number):
4737 * exceptions.c (catch_exceptions):
4738 * dummy-frame.c (dummy_frame_this_id):
4739 * defs.h (struct cleanup):
4740 * breakpoint.c (disable_breakpoints_in_unloaded_shlib):
4741 * arm-tdep.c (arm_push_dummy_call):
4742 * amd64-tdep.h (amd64_collect_xsave):
4743 * amd64-tdep.c (amd64_collect_xsave):
4744 * alpha-tdep.c (alpha_heuristic_frame_unwind_cache):
4745 * README (typing): Remove duplicate words.
4746 * cli/cli-decode.c (lookup_cmd_composition): Add comma.
4747 * infrun.c (siginfo_value_read): Fix typo.
4748 * solib-frv.c (frv_fdpic_find_global_pointer): Likewise.
4749 * top.c (source_line_number): Add comma.
4750
4751 2011-04-19 Marc Khouzam <marc.khouzam@ericsson.com>
4752
4753 * thread.c (any_live_thread_of_process): Prioritize threads
4754 that are not executing.
4755 * gdbthread.h (any_live_thread_of_process): Update comment
4756 as per above change.
4757
4758 2011-04-19 Andreas Schwab <schwab@linux-m68k.org>
4759
4760 * xcoffread.c (process_xcoff_symbol): Remove useless cast.
4761 (scan_xcoff_symtab): Likewise.
4762
4763 2011-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
4764
4765 * xcoffread.c (process_xcoff_symbol): ARI fix: Avoid assignment
4766 inside if clause.
4767
4768 2011-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
4769 Pedro Alves <pedro@codesourcery.com>
4770
4771 * xstormy16-tdep.c (xstormy16_push_dummy_call): Add local
4772 variables to simplify code and avoid == operator at end of
4773 line as this is against GNU coding standards.
4774
4775 2011-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
4776
4777 * solib-svr4.c (svr4_keep_data_in_core): Rename local variable
4778 lm_name to name_lm to avoid conflict with lm_name function.
4779
4780 2011-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
4781
4782 ARI fixes: Use only lowercase function name for static functions.
4783 * nto-tdep.c (LM_ADDR): Rename to...
4784 (lm_addr): New function name.
4785 (nto_relocate_section_addresses): Adapt to change above.
4786 * solib-sunos.c (LM_ADDR): Rename to...
4787 (lm_addr): New function name.
4788 (LM_NEXT): Rename to...
4789 (lm_next): New function name.
4790 (sunos_current_sos, sunos_relocate_section_addresses): Adapt to
4791 function name changes above.
4792 * solib-svr4.c (LM_ADDR_FROM_LINK_MAP): Rename to...
4793 (lm_addr_from_link_map): New function name.
4794 (HAS_LM_DYNAMIC_FROM_LINK_MAP): Rename to...
4795 (has_lm_dynamic_from_link_map): New function name.
4796 (LM_DYNAMIC_FROM_LINK_MAP): Rename to...
4797 (lm_dynamic_from_link_map): New function name.
4798 (LM_ADDR_CHECK): Rename to...
4799 (lm_addr_check): New function name.
4800 (LM_NEXT): Rename to...
4801 (lm_next): New function name.
4802 (LM_PREV): Rename to...
4803 (lm_prev): New function name.
4804 (LM_NAME): Rename to...
4805 (lm_name): New function name.
4806 (IGNORE_FIRST_LINK_MAP_ENTRY): Rename to...
4807 (ignore_first_link_map_entry): New function name.
4808 (svr4_keep_data_in_core): Adapt to function name changes above.
4809 (svr4_current_sos): Likewise.
4810 (enable_break): Likewise.
4811 (svr4_relocate_section_addresses): Likewise.
4812
4813 2011-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
4814
4815 ARI cleanup.
4816 * xtensa-tdep.c (xtensa_register_type): Use xstrprintf instead of
4817 sprintf. Simplify code and avoid loosing memory.
4818 (xtensa_register_reggroup_p): Extract assignment out of IF clause.
4819 (call0_frame_cache): Remove && operator from end of line.
4820
4821 2011-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
4822
4823 Fix libraries displacement if they change whether they were prelinked.
4824 * solib-svr4.c (LM_ADDR_CHECK): Set L_ADDR even if the DYNAMIC pointer
4825 does not match. Comment why.
4826
4827 2011-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
4828
4829 * corelow.c: Include wrapper.h.
4830 (core_open): Call now gdb_target_find_new_threads.
4831 * wrapper.c: Include target.h.
4832 (gdb_target_find_new_threads): New.
4833 * wrapper.h (gdb_target_find_new_threads): New declaration.
4834
4835 2011-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
4836
4837 * linux-thread-db.c (find_new_threads_callback): Exit on zero TI_TID
4838 even if !TARGET_HAS_EXECUTION.
4839
4840 2011-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
4841
4842 Fix convert_code_addr_to_desc_addr for ppc64 files after eu-strip.
4843 * elfread.c (elf_symfile_read): New variable synth_abfd, pass it to
4844 bfd_get_synthetic_symtab.
4845 * jit.c (jit_register_code): Pass NULL to the new parameter parent.
4846 * machoread.c (macho_add_oso_symfile): Pass main_objfile to the new
4847 parameter parent, remove the call to add_separate_debug_objfile.
4848 * solib.c (solib_read_symbols): Pass NULL to the new parameter parent.
4849 * symfile-mem.c (symbol_file_add_from_memory): Likewise.
4850 * symfile.c (symbol_file_add_with_addrs_or_offsets): New parameter
4851 parent, new comment for it, call add_separate_debug_objfile for it.
4852 (symbol_file_add_separate): Pass objfile as the parameter parent,
4853 remove the call to add_separate_debug_objfile.
4854 (symbol_file_add_from_bfd): New parameter parent, pass it.
4855 (symbol_file_add): Pass NULL to the new parameter parent.
4856 * symfile.h (symbol_file_add_from_bfd): New parameter parent.
4857
4858 2011-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
4859
4860 * elfread.c (elf_symtab_read): Do not ignore .L symbols if they are
4861 BSF_SYNTHETIC.
4862
4863 2011-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
4864
4865 Fix Python access to inlined frames.
4866 * python/py-frame.c (frapy_read_var): Find BLOCK using get_frame_block.
4867 * python/py-symbol.c (gdbpy_lookup_symbol): Likewise.
4868
4869 2011-04-15 Tom Tromey <tromey@redhat.com>
4870
4871 * dwarf2read.c (add_index_entry): Use VEC_last, not VEC_length.
4872
4873 2011-04-15 Gary Benson <gbenson@redhat.com>
4874
4875 * MAINTAINERS: Add myself to write-after-approval section.
4876
4877 2011-04-14 Mike Frysinger <vapier@gentoo.org>
4878
4879 * remote-sim.c (sim_command_completer): New function.
4880 (_initialize_remote_sim): Set completer to sim_command_completer.
4881
4882 2011-04-13 Thiago Jung Bauermann <bauerman@br.ibm.com>
4883
4884 * breakpoint.c (print_exception_catchpoint): Rename to ...
4885 (print_it_exception_catchpoint): ... this.
4886 (gnu_v3_exception_catchpoint_ops): Update with new name
4887 for print_it_exception_catchpoint.
4888
4889 2011-04-13 Edjunior Machado <emachado@linux.vnet.ibm.com>
4890
4891 * MAINTAINERS: Add myself for write after approval privileges.
4892
4893 2011-04-13 Marek Polacek <mpolacek@redhat.com>
4894
4895 * MAINTAINERS: Add myself as a write-after-approval maintainer.
4896
4897 2011-04-13 Thiago Jung Bauermann <bauerman@br.ibm.com>
4898
4899 * breakpoint.c (watch_command_1): Remove colon from exp_string.
4900
4901 2011-04-13 Thiago Jung Bauermann <bauerman@br.ibm.com>
4902
4903 * breakpoint.c (save_breakpoints): Verify whether
4904 breakpoint_ops.print_recreate is defined before calling it.
4905
4906 2011-04-11 Gary Benson <gbenson@redhat.com>
4907
4908 Fix failure with --enable-maintainer-mode.
4909 * Makefile.in (aclocal_m4_deps): Updated gnulib dependencies.
4910
4911 2011-04-09 Jan Kratochvil <jan.kratochvil@redhat.com>
4912
4913 Code cleanup.
4914 * symtab.c (search_symbols): Reorder the KIND description in the
4915 function comment. Remove the unused 4th element of types, types2,
4916 types3 and types4. New gdb_assert on KIND.
4917 (symtab_symbol_info): Remove the unused 4th element of classnames.
4918 New gdb_assert on KIND.
4919 * symtab.h (enum search_domain): New warning in the enum comment.
4920 Assign numbers to the elements VARIABLES_DOMAIN, FUNCTIONS_DOMAIN and
4921 TYPES_DOMAIN.
4922
4923 2011-04-09 Jan Kratochvil <jan.kratochvil@redhat.com>
4924
4925 Fix crash of gdb save-index on a STABS file.
4926 * dwarf2read.c (write_psymtabs_to_index): Return also on no
4927 PSYMTABS_ADDRMAP.
4928
4929 2011-04-09 Jan Kratochvil <jan.kratochvil@redhat.com>
4930
4931 Fix DW_AT_accessibility compatibility with gcc-4.6+.
4932 * dwarf2read.c: Include ctype.h.
4933 (producer_is_gxx_lt_4_6, dwarf2_default_access_attribute): New
4934 functions.
4935 (dwarf2_add_field): Fix new_field->accessibility by calling
4936 dwarf2_default_access_attribute. Restructure setting accessibility
4937 vs. virtuality.
4938 (dwarf2_add_member_fn): New variable accessibility. Fix fnp
4939 is_private and is_protected by calling
4940 dwarf2_default_access_attribute.
4941
4942 2011-04-08 Kevin Buettner <kevinb@redhat.com>
4943
4944 * rx-tdep.c (rx_frame_unwind): Add default_frame_unwind_stop_reason
4945 to the initialization.
4946
4947 2011-04-08 Steve Ellcey <sje@cup.hp.com>
4948
4949 * Add default_frame_unwind_stop_reason value to libunwind_frame_unwind
4950 initalization.
4951
4952 2011-04-07 Pierre Muller <muller@ics.u-strasbg.fr>
4953
4954 Remove support for old Cygwin 1.5 versions.
4955 * remote-fileio.c: Remove macros used to emulate new cygwin_conv_path
4956 function on old Cygwin version.
4957 * windows-nat.c: Remove cygwin version check and always define
4958 __USEWIDE for Cygwin compilation.
4959
4960 2011-04-07 Yao Qi <yao@codesourcery.com>
4961
4962 * arm-linux-tdep.c (arm_linux_copy_svc): Remove parameters INSN
4963 and TO.
4964 * arm-tdep.c (cleanup_svc): Handle variable instruction size.
4965 (arm_copy_svc): Remove parameters INSN and TO.
4966 (decode_svc_copro): Update caller.
4967 * arm-tdep.h (struct displaced_step_closure): Remove parameters
4968 from function pointer `copy_svc_os'.
4969
4970 2011-04-07 Yao Qi <yao@codesourcery.com>
4971
4972 * arm-tdep.c (cleanup_branch): Set a correct return address in
4973 LR for ARM and Thumb.
4974
4975 2011-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4976
4977 Code cleanup.
4978 * dictionary.c (dict_hash): Use SYMBOL_HASH_NEXT.
4979 * dwarf2read.c (mapped_index_string_hash): Refer to SYMBOL_HASH_NEXT
4980 in the function comment, a new note on values compatibility.
4981 * minsyms.c (msymbol_hash_iw, msymbol_hash): Use SYMBOL_HASH_NEXT.
4982 * symtab.h (SYMBOL_HASH_NEXT): New.
4983
4984 2011-04-06 Thiago Jung Bauermann <bauerman@br.ibm.com>
4985
4986 * ppc-linux-nat.c (check_condition): Add len output parameter.
4987 Set it based on the memory region referenced in the condition
4988 expression. Update all callers.
4989
4990 2011-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4991
4992 Fix crash regression on systems featuring .gdb_index.
4993 * objfiles.c (free_objfile): Move the
4994 forget_cached_source_info_for_objfile call earlier. Comment it.
4995 Extend the comment for objfile_free_data.
4996
4997 2011-04-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4998
4999 Fix regression of displaying the debug format.
5000 * buildsym.c (end_symtab): Set symtab's debugformat and producer from
5001 subfile.
5002
5003 2011-04-04 Tom Tromey <tromey@redhat.com>
5004
5005 * cli/cli-interp.c (struct captured_execute_command_args):
5006 Remove.
5007 (do_captured_execute_command): Remove.
5008 (safe_execute_command): Use TRY_CATCH.
5009 * cli/cli-script.c (struct wrapped_read_command_file_args):
5010 Remove.
5011 (wrapped_read_command_file): Remove.
5012 (script_from_file): Use TRY_CATCH.
5013 * exceptions.c (catch_exception): Remove.
5014 * exceptions.h (catch_exception): Remove.
5015 (deprecated_throw_reason): Update comment.
5016 * mi/mi-main.c (captured_mi_execute_command): Change 'data'
5017 argument to 'context'.
5018 (mi_execute_command): Use TRY_CATCH.
5019 * remote.c (struct start_remote_args): Remove.
5020 (remote_start_remote): Update; change arguments.
5021 (remote_open_1): Use TRY_CATCH.
5022
5023 2011-04-04 Tom Tromey <tromey@redhat.com>
5024
5025 * tracepoint.c (scope_info): Update.
5026 * symtab.c (decode_line_spec): Update.
5027 * python/python.c (gdbpy_decode_line): Update.
5028 * linespec.h (decode_line_1): Update.
5029 * linespec.c (decode_line_1): Remove 'not_found_ptr' argument.
5030 (decode_compound, find_method, symtab_from_filename)
5031 (decode_variable): Likewise.
5032 * cli/cli-cmds.c (edit_command): Update.
5033 (list_command): Update.
5034 * breakpoint.c (parse_breakpoint_sals): Remove 'not_found_ptr'
5035 argument.
5036 (create_breakpoint): Update.
5037 (until_break_command): Update.
5038 (addr_string_to_sals): Update.
5039 (decode_line_spec_1): Update.
5040
5041 2011-04-04 Tom Tromey <tromey@redhat.com>
5042
5043 * breakpoint.c (struct captured_parse_breakpoint_args): Remove.
5044 (do_captured_parse_breakpoint): Remove.
5045 (create_breakpoint): `e' is now volatile. Remove `parse_args'.
5046 Use TRY_CATCH directly.
5047
5048 2011-04-04 Tom Tromey <tromey@redhat.com>
5049
5050 * symtab.h (free_symtab): Remove.
5051 (forget_cached_source_info_for_objfile): Declare.
5052 * symmisc.c (free_symtab): Remove.
5053 * source.c (forget_cached_source_info_for_objfile): New function.
5054 (forget_cached_source_info): Use it.
5055 * objfiles.c (free_objfile): Simplify check before calling
5056 clear_current_source_symtab_and_line. Call
5057 forget_cached_source_info_for_objfile.
5058
5059 2011-04-04 Tom Tromey <tromey@redhat.com>
5060
5061 * mdebugread.c (psymtab_to_symtab_1): Copy linetable to obstack.
5062 (new_symtab): Don't set `free_code' on symtab.
5063 (new_linetable): Properly handle size==0.
5064 * symtab.h (struct symtab) <free_code, free_func>: Remove.
5065 * symmisc.c (free_symtab): Don't free the linetable. Don't call
5066 free_func.
5067 * jv-lang.c (struct jv_per_objfile_data): New.
5068 (jv_per_objfile_free): Free the data.
5069 (get_dynamics_objfile): Allocate a jv_per_objfile_data.
5070 (get_java_class_symtab): Set the `dict' field on the
5071 jv_per_objfile_data.
5072 (free_class_block): Remove.
5073 * buildsym.c (end_symtab): Don't set `free_code' or `free_func' on
5074 the symtab.
5075
5076 2011-04-04 Tom Tromey <tromey@redhat.com>
5077
5078 * symfile.c (reread_symbols): Update.
5079 * objfiles.h (struct objfile) <cp_namespace_symtab>: Remove
5080 field.
5081 * objfiles.c (allocate_objfile): Update.
5082 * cp-support.h (cp_check_possible_namespace_symbols): Don't
5083 declare.
5084 * cp-namespace.c (lookup_symbol_file): Don't call
5085 lookup_possible_namespace_symbol.
5086 (initialize_namespace_symtab, get_possible_namespace_block)
5087 (free_namespace_block, cp_check_possible_namespace_symbols)
5088 (check_possible_namespace_symbols_loop)
5089 (check_one_possible_namespace_symbol)
5090 (lookup_possible_namespace_symbol): Remove.
5091 (maintenance_cplus_namespace): Replace with notice.
5092 (_initialize_cp_namespace): Deprecate `maint cplus namespace'.
5093
5094 2011-04-04 Tom Tromey <tromey@redhat.com>
5095
5096 * xcoffread.c (read_xcoff_symtab): Make `debugfmt' const.
5097 * symtab.h (struct symtab) <producer, debugformat>: Now const.
5098 * symmisc.c (free_symtab): Don't free debugformat.
5099 * buildsym.h (struct subfile) <producer, debugformat>: Now const.
5100 (record_debugformat, record_producer): Document.
5101 * buildsym.c (end_symtab): Don't save debugformat and producer
5102 names on obstack.
5103 (end_symtab): Don't free debugformat and producer fields.
5104 (record_debugformat): Don't call xstrdup.
5105 (record_producer): Likewise.
5106
5107 2011-04-04 Tom Tromey <tromey@redhat.com>
5108
5109 * source.c (find_source_lines): Remove LSEEK_NOT_LINEAR code.
5110 (source_line_charpos, source_charpos_line): Remove.
5111
5112 2011-04-04 Tom Tromey <tromey@redhat.com>
5113
5114 * symtab.h (domain_enum): Split in two...
5115 (enum search_domain): New.
5116 (search_symbols): Update.
5117 * symtab.c (print_symbol_info, symtab_symbol_info): Remove
5118 redundant declarations.
5119 (search_symbols): Change 'kind' argument to search_domain.
5120 Update.
5121 (print_symbol_info): Likewise.
5122 (symtab_symbol_info): Likewise.
5123 * symfile.h (struct quick_symbol_functions)
5124 <pre_expand_symtabs_matching>: Change type of 'kind' argument.
5125 <expand_symtabs_matching>: Likewise.
5126 * psymtab.c (pre_expand_symtabs_matching_psymtabs): Update.
5127 (expand_symtabs_matching_via_partial): Update.
5128 * dwarf2read.c (dw2_pre_expand_symtabs_matching): Update.
5129 (dw2_expand_symtabs_for_function): Update.
5130 * block.h: Moved anonymous enum...
5131 * defs.h (enum block_enum): ... here. Now named.
5132
5133 2011-04-03 Joel Brobecker <brobecker@adacore.com>
5134
5135 GDB 7.3 branch created (branch timestamp: 2011-04-01 01:00 UTC)
5136 * version.in: Bump version to 7.3.50.20110403-cvs.
5137
5138 2011-04-03 Joel Brobecker <brobecker@adacore.com>
5139
5140 * NEWS: Create a new section for the next release branch.
5141 Rename the section of the current branch, now that it has
5142 been cut.
5143
5144 2011-04-01 Ulrich Weigand <ulrich.weigand@linaro.org>
5145
5146 * arm-tdep.c (arm_gdbarch_init): Enfore correct register number
5147 for "fpscr" in target description.
5148
5149 2011-04-01 Jan Kratochvil <jan.kratochvil@redhat.com>
5150
5151 * dwarf2read.c (find_slot_in_mapped_hash): New variable back_to,
5152 initialize it. Delay HASH initialization. Strip the part after open
5153 parenthesis for languages with qualifiers. Call do_cleanups.
5154
5155 2011-04-01 Tom Tromey <tromey@redhat.com>
5156
5157 * utils.c (report_command_stats): Don't print `-' for negative
5158 number.
5159
5160 2011-04-01 Eric Botcazou <ebotcazou@adacore.com>
5161
5162 * ada-lang.c (ada_is_simple_array_type, ada_value_slice_from_ptr)
5163 (ada_value_slice, empty_array, to_fixed_array_type): Deal with
5164 typedefs.
5165
5166 2011-04-01 Joel Brobecker <brobecker@adacore.com>
5167
5168 * breakpoint.h (bpdisp_text): Add declaration.
5169 * breakpoint.c (bpdisp_text): Make non-static.
5170 * ada-lang.c: #include "mi/mi-common.h".
5171 (print_it_exception): Rewrite to improve GDB/MI output.
5172
5173 2011-04-01 Pedro Alves <pedro@codesourcery.com>
5174
5175 * arm-tdep.h (struct address_space): Add forward declaration.
5176
5177 2011-04-01 Ulrich Weigand <ulrich.weigand@linaro.org>
5178
5179 * arm-tdep.h (arm_insert_single_step_breakpoint): Add prototype.
5180 * arm-tdep.c (arm_override_mode): New global.
5181 (arm_pc_is_thumb): Respect arm_override_mode. Remove single-step
5182 execution mode heuristics.
5183 (thumb_get_next_pc_raw): Remove INSERT_BKTP argument; always insert
5184 second single-step breakpoint if needed, using
5185 arm_insert_single_step_breakpoint.
5186 (arm_get_next_pc_raw): Remove INSERT_BKTP argument. Only handle
5187 ARM execution mode, do not call thumb_get_next_pc_raw.
5188 (arm_get_next_pc): Encode execution mode in return value. Call
5189 either arm_get_next_pc_raw or thumb_get_next_pc_raw.
5190 (arm_insert_single_step_breakpoint): New function.
5191 (arm_software_single_step): Call it.
5192 * arm-linux-tdep.c (arm_linux_sigreturn_return_addr): Add IS_THUMB
5193 argument to return execution mode of sigreturn target.
5194 (arm_linux_syscall_next_pc): Use it.
5195 (arm_linux_copy_svc): Update call.
5196 (arm_linux_software_single_step): Call
5197 arm_insert_single_step_breakpoint.
5198
5199 2011-03-31 Jan Kratochvil <jan.kratochvil@redhat.com>
5200
5201 * dwarf2read.c (dwarf2_read_index): Fix .gdb_index version number in
5202 the comment.
5203
5204 2011-03-31 Tom Tromey <tromey@redhat.com>
5205
5206 * varobj.c (update_dynamic_varobj_children): Properly handle
5207 errors from iterator.
5208
5209 2011-03-31 Jan Kratochvil <jan.kratochvil@redhat.com>
5210
5211 * dwarf2read.c (dwarf2_name): Initialize DEMANGLED. Avoid demangling
5212 struct linkage name twice.
5213
5214 2011-03-31 Tom Tromey <tromey@redhat.com>
5215
5216 * python/py-prettyprint.c (print_stack_unless_memory_error): Add
5217 missing ">" to message.
5218
5219 2011-03-31 Tom Tromey <tromey@redhat.com>
5220
5221 * varobj.c (instantiate_pretty_printer): Remove duplicate
5222 'return'.
5223
5224 2011-03-31 Ulrich Weigand <ulrich.weigand@linaro.org>
5225
5226 * i386-tdep.c (i386_frame_prev_register): Unwind SP from memory
5227 if neither saved value nor register available (e.g. signal frame).
5228
5229 2011-03-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
5230
5231 * macroexp.c (expand): Avoid uninitialized variable
5232 compiler warning.
5233
5234 2011-03-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
5235
5236 * breakpoint.c (break_range_command): Fix typo in comment.
5237
5238 2011-03-31 Thiago Jung Bauermann <bauerman@br.ibm.com>
5239 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
5240
5241 Implement support for PowerPC BookE ranged breakpoints.
5242 * NEWS: Mention support for ranged breakpoints on embedded PowerPC.
5243 * breakpoint.h (struct bp_target_info) <length>: New member
5244 variable.
5245 (struct breakpoint_ops) <breakpoint_hit>: Take struct bp_location
5246 instead of struct breakpoint as argument, and also add ASPACE
5247 and BP_ADDR arguments. Update all callers.
5248 (struct breakpoint_ops) <print_one_detail>: New method.
5249 (struct breakpoint) <addr_string_range_end>: New member variable.
5250 * breakpoint.c (breakpoint_location_address_match): Add function
5251 prototype.
5252 (insert_bp_location): Set bl->target_info.length.
5253 (breakpoint_here_p): Call breakpoint_location_address_match.
5254 (moribund_breakpoint_here_p): Likewise.
5255 (regular_breakpoint_inserted_here_p): Likewise.
5256 (breakpoint_thread_match): Likewise.
5257 (bpstat_stop_status): Likewise.
5258 (bpstat_check_location): Move call to
5259 breakpoint_ops.breakpoint_hit to the top.
5260 (print_one_breakpoint_location): Call
5261 breakpoint_ops.print_one_detail if available.
5262 (breakpoint_address_match_range): New function.
5263 (breakpoint_location_address_match): Likewise.
5264 (breakpoint_locations_match): Compare the length field of the
5265 locations too.
5266 (hw_breakpoint_used_count): Count resources used by all locations
5267 in a breakpoint, and use breakpoint_ops.resources_needed if
5268 available.
5269 (breakpoint_hit_ranged_breakpoint): New function.
5270 (resources_needed_ranged_breakpoint): Likewise.
5271 (print_it_ranged_breakpoint): Likewise.
5272 (print_one_ranged_breakpoint): Likewise.
5273 (print_one_detail_ranged_breakpoint): Likewise.
5274 (print_mention_ranged_breakpoint): Likewise.
5275 (print_recreate_ranged_breakpoint): Likewise.
5276 (ranged_breakpoint_ops): New structure.
5277 (find_breakpoint_range_end): New function.
5278 (break_range_command): Likewise.
5279 (delete_breakpoint): Free addr_string_range_end.
5280 (update_breakpoint_locations): Add SALS_END argument. Update
5281 all callers. Calculate breakpoint length if a non-zero SALS_END
5282 is given. Call breakpoint_locations_match instead of
5283 breakpoint_address_match.
5284 (reset_breakpoint): Find SaL of the end of the range if B is a
5285 ranged breakpoint.
5286 (_initialize_breakpoint): Register break-range command.
5287 * defs.h (print_core_address): Add function prototype.
5288 * ppc-linux-nat.c (ppc_linux_ranged_break_num_registers): New
5289 function.
5290 (ppc_linux_insert_hw_breakpoint): Support ranged breakpoints.
5291 (ppc_linux_remove_hw_breakpoint): Likewise.
5292 (_initialize_ppc_linux_nat): Initialize
5293 to_ranged_break_num_registers.
5294 * target.c (update_current_target): Add comment about
5295 to_ranged_break_num_registers.
5296 (target_ranged_break_num_registers): New function.
5297 * target.h (struct target_ops) <to_ranged_break_num_registers>:
5298 New method.
5299 (target_ranged_break_num_registers): Add function prototype.
5300 * ui-out.c (ui_out_field_core_addr): Move address-printing logic to ...
5301 * utils.c (print_core_address): ... here.
5302
5303 2011-03-31 Ulrich Weigand <uweigand@de.ibm.com>
5304
5305 * breakpoint.c (addr_string_to_sals): Avoid uninitialized
5306 variable compiler warning.
5307
5308 2011-03-30 Thiago Jung Bauermann <bauerman@br.ibm.com>
5309
5310 * breakpoint.c (breakpoint_re_set_one): Factor out breakpoint-resetting
5311 code from here ...
5312 (re_set_breakpoint): ... to here ...
5313 (addr_string_to_sals): ... and here.
5314
5315 2011-03-29 Pierre Muller <muller@ics.u-strasbg.fr>
5316
5317 * Makefile.in (SFILES): Add missing C sources.
5318 (HFILES_NO_SRCDIR): Remove gdbserver subdirectory headers.
5319 Add missing headers.
5320
5321 2011-03-29 Mike Frysinger <vapier@gentoo.org>
5322
5323 * .gitignore: New file.
5324
5325 2011-03-29 Mike Frysinger <vapier@gentoo.org>
5326
5327 * NEWS: Mention new cfi device simulation.
5328
5329 2011-03-29 Tom Tromey <tromey@redhat.com>
5330
5331 * dwarf2read.c (fixup_partial_die): Handle linkage name on
5332 otherwise anonymous types.
5333 (dwarf2_name): Likewise.
5334 * valops.c (value_struct_elt_for_reference): Refine artificial
5335 type logic. Call error if j==-1.
5336
5337 2011-03-29 Andreas Tobler <andreast-list@fgznet.ch>
5338
5339 Fix false GCC warning.
5340 * infcall.c (find_function_addr): Initialize funaddr.
5341
5342 2011-03-29 Pierre Muller <muller@ics.u-strasbg.fr>
5343
5344 Fix mingw compilation with --enable-targets=all.
5345 * remote-mips.c (gdb_usleep.h): Include header.
5346 (mips_enter_debug): Use gdb_usleep instead of sleep.
5347
5348 2011-03-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5349
5350 Support resolution of STT_GNU_IFUNC via breakpoints.
5351 * breakpoint.c (print_it_typical): Support bp_gnu_ifunc_resolver and
5352 bp_gnu_ifunc_resolver_return.
5353 (bpstat_what): Rename parameter to bs_head, new variable bs, adjust
5354 the loop. Support bp_gnu_ifunc_resolver and
5355 bp_gnu_ifunc_resolver_return. New comment after the loop. New loop
5356 for bp_gnu_ifunc_resolver and bp_gnu_ifunc_resolver_return
5357 breakpoints.
5358 (bptype_string, print_one_breakpoint_location): Support
5359 bp_gnu_ifunc_resolver and bp_gnu_ifunc_resolver_return.
5360 (user_settable_breakpoint): Return true also for
5361 bp_gnu_ifunc_resolver.
5362 (allocate_bp_location): Support bp_gnu_ifunc_resolver and
5363 bp_gnu_ifunc_resolver_return.
5364 (set_breakpoint_location_function): New parameter explicit_loc,
5365 describe it. Call find_pc_partial_function_gnu_ifunc with new
5366 variable IS_GNU_IFUNC and adjust the address for STT_GNU_IFUNC if
5367 EXPLICIT_LOC is not set.
5368 (set_raw_breakpoint): Set EXPLICIT_LOC for
5369 set_breakpoint_location_function.
5370 (clone_momentary_breakpoint): Use true for EXPLICIT_LOC of
5371 set_breakpoint_location_function.
5372 (mention): Support bp_gnu_ifunc_resolver and
5373 bp_gnu_ifunc_resolver_return.
5374 (add_location_to_breakpoint): Set EXPLICIT_LOC for
5375 set_breakpoint_location_function.
5376 (update_breakpoint_locations): Remove static.
5377 (breakpoint_re_set_one): Support bp_gnu_ifunc_resolver and
5378 bp_gnu_ifunc_resolver_return.
5379 * breakpoint.h (enum bptype): New fields bp_gnu_ifunc_resolver and
5380 bp_gnu_ifunc_resolver_return.
5381 (update_breakpoint_locations): New declaration.
5382 * elfread.c: Include gdbthread.h and regcache.h.
5383 (elf_gnu_ifunc_resolver_stop, elf_gnu_ifunc_resolver_return_stop): New
5384 functions.
5385 (elf_gnu_ifunc_fns): Install them.
5386 * minsyms.c (stub_gnu_ifunc_resolver_stop)
5387 (stub_gnu_ifunc_resolver_return_stop): New functions.
5388 (stub_gnu_ifunc_fns): Install them.
5389 * symtab.h (struct gnu_ifunc_fns): New fields gnu_ifunc_resolver_stop
5390 and gnu_ifunc_resolver_return_stop.
5391 (gnu_ifunc_resolver_stop, gnu_ifunc_resolver_return_stop): New.
5392
5393 2011-03-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5394
5395 STT_GNU_IFUNC reader implementation.
5396 * elfread.c: Include gdbtypes.h, value.h and infcall.h.
5397 (SYMBOL_GOT_PLT_SUFFIX, elf_rel_plt_read)
5398 (elf_objfile_gnu_ifunc_cache_data, struct elf_gnu_ifunc_cache)
5399 (elf_gnu_ifunc_cache_hash, elf_gnu_ifunc_cache_eq)
5400 (elf_gnu_ifunc_record_cache, elf_gnu_ifunc_resolve_by_cache)
5401 (elf_gnu_ifunc_resolve_by_got, elf_gnu_ifunc_resolve_name)
5402 (elf_gnu_ifunc_resolve_addr): New.
5403 (elf_symfile_read): Call elf_rel_plt_read.
5404 (elf_gnu_ifunc_fns): New.
5405 (_initialize_elfread): Initialize elf_objfile_gnu_ifunc_cache_data.
5406 Install elf_gnu_ifunc_fns.
5407 * infcall.c (find_function_return_type): New function.
5408 (find_function_addr): Resolve TYPE_GNU_IFUNC functions, if possible.
5409 * minsyms.c (stub_gnu_ifunc_resolve_addr)
5410 (stub_gnu_ifunc_resolve_name): New functions.
5411 (stub_gnu_ifunc_fns, gnu_ifunc_fns_p): New variables.
5412 * symtab.h (struct gnu_ifunc_fns, gnu_ifunc_resolve_addr)
5413 (gnu_ifunc_resolve_name, gnu_ifunc_fns_p): New.
5414
5415 2011-03-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5416
5417 Code cleanup for later STT_GNU_IFUNC support.
5418 * infcall.c (find_function_addr): Remove variable code, use explicit
5419 dereferences for it. Move VALUE_TYPE initialization later.
5420
5421 2011-03-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5422
5423 GDB find_pc_partial_function support for STT_GNU_IFUNC.
5424 * blockframe.c (cache_pc_function_is_gnu_ifunc): New variable.
5425 (clear_pc_function_cache): Clear it.
5426 (find_pc_partial_function): Rename to ...
5427 (find_pc_partial_function_gnu_ifunc): ... this function. New
5428 parameter is_gnu_ifunc_p, describe it. Set *IS_GNU_IFUNC_P.
5429 (find_pc_partial_function): New wrapper for this function.
5430 * symtab.h (find_pc_partial_function_gnu_ifunc): New declaration.
5431
5432 2011-03-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5433
5434 GDB internal type support for STT_GNU_IFUNC.
5435 * elfread.c (record_minimal_symbol): Support mst_text_gnu_ifunc.
5436 (elf_symtab_read): Set mst_text_gnu_ifunc for
5437 BSF_GNU_INDIRECT_FUNCTION.
5438 * eval.c (evaluate_subexp_standard): Support TYPE_GNU_IFUNC.
5439 * gdbtypes.c (init_type): Support TYPE_FLAG_GNU_IFUNC,
5440 builtin_func_func, nodebug_text_gnu_ifunc_symbol and
5441 nodebug_got_plt_symbol.
5442 * gdbtypes.h (enum type_flag_value): New entry TYPE_FLAG_GNU_IFUNC.
5443 (TYPE_GNU_IFUNC): New.
5444 (struct main_type): New field flag_gnu_ifunc.
5445 (struct builtin_type): New field builtin_func_func.
5446 (struct objfile_type): New fields nodebug_text_gnu_ifunc_symbol and
5447 nodebug_got_plt_symbol.
5448 * minsyms.c (lookup_minimal_symbol_text): Support mst_text_gnu_ifunc.
5449 (in_gnu_ifunc_stub): New.
5450 (prim_record_minimal_symbol, find_solib_trampoline_target): Support
5451 mst_text_gnu_ifunc.
5452 * parse.c (write_exp_msymbol): New variable ifunc_msym. Detect and
5453 support mst_text_gnu_ifunc. Support mst_slot_got_plt.
5454 * solib-svr4.c (svr4_in_dynsym_resolve_code): Return true also for
5455 in_gnu_ifunc_stub.
5456 * symmisc.c (dump_msymbols): Support mst_text_gnu_ifunc.
5457 * symtab.c (search_symbols): Likewise.
5458 * symtab.h (enum minimal_symbol_type): New fields mst_text_gnu_ifunc
5459 and mst_slot_got_plt.
5460 (in_gnu_ifunc_stub): New declaration.
5461
5462 2011-03-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5463
5464 Support a ring of related breakpoints.
5465 * breakpoint.c (watchpoint_del_at_next_stop): New, move here code from
5466 other functions, add gdb_assert.
5467 (update_watchpoint, watchpoint_check): Add gdb_assert. Use
5468 watchpoint_del_at_next_stop.
5469 (bpstat_check_watchpoint): Use watchpoint_del_at_next_stop.
5470 (bpstat_stop_status): Handle ring in related_breakpoint.
5471 (set_raw_breakpoint_without_location): Initialize ring in
5472 related_breakpoint.
5473 (delete_breakpoint): Handle ring in related_breakpoint, use
5474 watchpoint_del_at_next_stop.
5475 (map_breakpoint_numbers): Handle ring in related_breakpoint.
5476
5477 2011-03-28 Tom Tromey <tromey@redhat.com>
5478
5479 PR symtab/12441:
5480 * dwarf2read.c (prepare_one_comp_unit): Don't call set_cu_language
5481 with `language_minimal'.
5482
5483 2011-03-25 Ulrich Weigand <ulrich.weigand@linaro.org>
5484
5485 * arm-tdep.c (arm_elf_make_msymbol_special): Use ARM_SYM_BRANCH_TYPE
5486 instead of checking for STT_ARM_TFUNC symbol type.
5487
5488 2011-03-25 Tom Tromey <tromey@redhat.com>
5489
5490 * linespec.c (symbol_found): Restore line-based result for
5491 non-LOC_LABEL symbols.
5492
5493 2011-03-25 Kai Tietz <ktietz@redhat.com>
5494
5495 * tui/tui-source.c (tui_set_source_content): Use filename_cmp
5496 instead of strcmp for comparison.
5497 (tui_source_is_displayed): Likewise.
5498 * tui/tui-winsource.c (tui_update_breakpoint_info): Likewise.
5499
5500 2011-03-24 Mark Wielaard <mjw@redhat.com>
5501
5502 * dwarf2read.c (lookup_signatured_type): Use DW_FORM_ref_sig8 in
5503 complaint.
5504 (skip_one_die): Use DW_FORM_ref_sig8, not DW_FORM_sig8.
5505 (find_partial_die_in_comp_unit): Likewise in comment.
5506 (read_attribute_value): Likewise.
5507 (lookup_die_type): Likewise.
5508 (dwarf_form_name): Likewise.
5509 (dump_die_shallow): Likewise.
5510 (follow_die_ref_or_sig): Likewise.
5511
5512 2011-03-24 Tom Tromey <tromey@redhat.com>
5513
5514 PR breakpoints/11816:
5515 * linespec.c (decode_line_1): Parse `function:label' linespecs.
5516 (decode_compound): Update.
5517 (find_function_symbol): New function.
5518 (decode_dollar): Update.
5519 (decode_label): Add 'function_symbol' parameter. Handle
5520 function-relative labels.
5521 (decode_variable): Update.
5522 (symbol_found): Add 'function_symbol' parameter. Use label's PC,
5523 not its line. Set `special_display' and canonical name for
5524 labels.
5525
5526 2011-03-24 Tom Tromey <tromey@redhat.com>
5527
5528 * linespec.h (struct linespec_result) <special_display>: New
5529 field.
5530 * breakpoint.h (struct breakpoint) <display_canonical>: New
5531 field.
5532 * breakpoint.c (print_breakpoint_location): Respect
5533 display_canonical.
5534 (create_breakpoint_sal): Add 'display_canonical' parameter.
5535 (create_breakpoints_sal): Update.
5536 (create_breakpoint): Update.
5537
5538 2011-03-24 Tom Tromey <tromey@redhat.com>
5539
5540 * symtab.c (decode_line_spec): Update.
5541 * linespec.c (build_canonical_line_spec): Change type of
5542 'canonical'.
5543 (decode_line_2, decode_line_1, decode_objc, decode_compound)
5544 (find_method, decode_all_digits, decode_dollar, decode_label)
5545 (symbol_found): Likewise.
5546 (init_linespec_result): New function.
5547 * breakpoint.c (struct captured_parse_breakpoint_args)
5548 <canonical_p>: New field, replaces addr_string_p.
5549 (create_breakpoints_sal): Add 'canonical' parameter, replacing
5550 'addr_string'.
5551 (parse_breakpoint_sals): Likewise.
5552 (do_captured_parse_breakpoint): Update.
5553 (create_breakpoint): Use struct linespec_result.
5554 (until_break_command): Update.
5555 (breakpoint_re_set_one): Update.
5556 (decode_line_spec_1): Update.
5557 * linespec.h (struct linespec_result): New.
5558 (init_linespec_result): Declare.
5559
5560 2011-03-23 Pedro Alves <pedro@codesourcery.com>
5561
5562 * regcache.c (regcache_raw_read): If the target didn't supply a
5563 given raw register, mark it as unavailable.
5564
5565 2011-03-23 Kai Tietz <ktietz@redhat.com>
5566
5567 * breakpoint.c (clear_command): Use filename_cmp
5568 instead of strcmp for comparison.
5569 * buildsym.c (watch_main_source_file_lossage): Likewise.
5570 (patch_subfile_names): Use IS_DIR_SEPARATOR instead of
5571 checking just for slash.
5572 * dbxread.c (read_dbx_symtab): Use lbasename instead of
5573 strrchr and filename_cmp instead of strcmp for filenames.
5574 (add_old_header_file): Use filename_cmp
5575 instead of strcmp for comparison.
5576 * exec.c (exec_set_section_address): Likewise.
5577 * macrotab.c (macro_lookup_inclusion): Likewise.
5578 (macro_lookup_inclusion): Likewise.
5579 * elfread.c (_initialize_elfread): Likewise.
5580 (elfstab_offset_sections): Likewise.
5581 (elfstab_offset_sections): Use lbasename instead of
5582 strrchr.
5583 * mdebugread.c (parse_partial_symbols): Likewise.
5584 (arse_partial_symbols): Use filename_(n)cmp instead of
5585 str(n)cmp for comparison.
5586 * minsyms.c (lookup_minimal_symbol): Likewise.
5587 * psymtab.c (read_psymtabs_with_filename): Likewise.
5588 * solib.c (solib_read_symbols): Likewise.
5589 (reload_shared_libraries_1): Likewise.
5590 * symmisc.c (maintenance_print_symbols): Likewise.
5591 * symfile.c (separate_debug_file_exists): Likewise.
5592 (reread_symbols): Likewise.
5593 (find_separate_debug_file_by_debuglink): Likewise.
5594 * remote-fileio.c (remote_fileio_func_rename): Likewise.
5595 * source.c (add_path): Likewise.
5596 * symtab.c (filename_seen): Likewise.
5597 (file_matches): Likewise.
5598 (print_symbol_info): Likewise.
5599 (maybe_add_partial_symtab_filename): Likewise.
5600 (make_source_files_completion_list): Likewise.
5601 * xml-syscall.c (init_sysinfo): Likewise.
5602 * windows-nat.c (_initialize_check_for_gdb_ini): Use
5603 IS_DIR_SEPARATOR for checking for trailing path separator.
5604
5605 2011-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
5606
5607 * dwarf2expr.c (execute_stack_op): Handle DW_OP_GNU_entry_value. New
5608 label abort_expression.
5609 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Handle
5610 DWARF_VALUE_OPTIMIZED_OUT.
5611
5612 2011-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
5613
5614 Code cleanup.
5615 * c-typeprint.c (c_type_print_args): Change parameter show_artificial
5616 to linkage_name. Invert its value. Update the function comment.
5617 (c_type_print_varspec_suffix): Invert it at the caller.
5618 * dwarf2read.c (dwarf2_compute_name): Invert it at the caller.
5619
5620 2011-03-22 Pedro Alves <pedro@codesourcery.com>
5621
5622 * infcmd.c (post_create_inferior): Ignore NOT_AVAILABLE_ERROR
5623 errors when reading the `stop_pc'.
5624 * printcmd.c (pc_prefix): Use get_frame_pc_if_available instead of
5625 get_frame_pc.
5626
5627 2011-03-22 Phil Muldoon <pmuldoon@redhat.com>
5628
5629 * NEWS: Document gdb.Write stream keyword.
5630
5631 2011-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
5632
5633 Revert:
5634 2011-03-21 Jan Kratochvil <jan.kratochvil@redhat.com>
5635 * dwarf2read.c (producer_is_gxx_lt_4_6): New function.
5636 (dwarf2_add_field): Fix new_field->accessibility for
5637 cu->header.version >= 3 while verifying also producer_is_gxx_lt_4_6.
5638
5639 2011-03-22 Phil Muldoon <pmuldoon@redhat.com>
5640
5641 PR python/12183
5642
5643 * python/py-function.c (fnpy_call): Treat GdbErrors differently to
5644 other error classes. Do not print stack trace.
5645
5646 2011-03-21 Jan Kratochvil <jan.kratochvil@redhat.com>
5647
5648 * dwarf2read.c (producer_is_gxx_lt_4_6): New function.
5649 (dwarf2_add_field): Fix new_field->accessibility for
5650 cu->header.version >= 3 while verifying also producer_is_gxx_lt_4_6.
5651
5652 2011-03-21 Ulrich Weigand <ulrich.weigand@linaro.org>
5653
5654 * arm-tdep.c (arm_analyze_prologue): Do not abort parsing when
5655 encountering a load via a non-SP register.
5656
5657 2011-03-21 Ulrich Weigand <uweigand@de.ibm.com>
5658
5659 * tramp-frame.c (tramp_frame_prepend_unwinder): Set stop_reason
5660 field in returned unwinder.
5661
5662 2012-03-21 Jan Kratochvil <jan.kratochvil@redhat.com>
5663
5664 * ada-lang.c (replace_operator_with_call): Copy also GDBARCH.
5665
5666 2012-03-21 Joel Brobecker <brobecker@adacore.com>
5667
5668 * ada-lang.c (replace_operator_with_call): Use xzalloc instead
5669 of xmalloc.
5670
5671 2012-03-18 Pedro Alves <pedro@codesourcery.com>
5672
5673 * frame.c (frame_unwind_register): Throw an error if unwinding the
5674 register failed.
5675 * get_prev_frame_1 (get_prev_frame_1): Ask the unwinder if there's
5676 an unwind stop reason.
5677 (frame_stop_reason_string): Handle UNWIND_UNAVAILABLE.
5678 * frame.h (enum unwind_stop_reason) <UNWIND_OUTERMOST,
5679 UNWIND_UNAVAILABLE>: New.
5680 * inline-frame.c (inline_frame_unwind): Install
5681 default_frame_unwind_stop_reason.
5682 * frame-unwind.c: Include "exceptions.h".
5683 (frame_unwind_find_by_frame): Swallow NOT_AVAILABLE_ERROR errors.
5684 (default_frame_unwind_stop_reason): New.
5685 * frame-unwind.h (frame_unwind_stop_reason_ftype): New typedef.
5686 (default_frame_unwind_stop_reason): Declare.
5687 (struct frame_unwind) <stop_reason>: New function pointer.
5688
5689 * dummy-frame.c: Install default_frame_unwind_stop_reason.
5690 * dwarf2-frame.c: Include exceptions.h.
5691 (struct dwarf2_frame_cache) <unavailable_retaddr>: New field.
5692 (dwarf2_frame_cache): Swallow NOT_AVAILABLE_ERROR errors when
5693 computing the CFA. If such an error was thrown, set
5694 unavailable_retaddr.
5695 (dwarf2_frame_unwind_stop_reason): New.
5696 (dwarf2_frame_this_id): Don't build a frame id if the CFA was
5697 unavailable.
5698 (dwarf2_frame_unwind): Install dwarf2_frame_unwind_stop_reason.
5699 (dwarf2_signal_frame_unwind): Ditto.
5700
5701 * amd64-tdep.c: Include "exceptions.h".
5702 (struct amd64_frame_cache): New field "base_p".
5703 (amd64_init_frame_cache): Clear it.
5704 (amd64_frame_cache_1): New, factored out from amd64_frame_cache.
5705 Avoid reading registers with functions that throw if the register
5706 is not necessary to compute the frame base.
5707 (amd64_frame_cache): Reimplement wrapping amd64_frame_cache_1, and
5708 swallowing NOT_AVAILABLE_ERROR.
5709 (amd64_frame_unwind_stop_reason): New.
5710 (amd64_frame_this_id): Don't build a frame id if the frame base
5711 was unavailable.
5712 (amd64_frame_unwind): Install amd64_frame_unwind_stop_reason.
5713 (amd64_sigtramp_frame_cache): Swallow NOT_AVAILABLE_ERROR, and set
5714 base_p if the frame base was computable.
5715 (amd64_sigtramp_frame_unwind_stop_reason): New.
5716 (amd64_sigtramp_frame_this_id): Don't build a frame id if the
5717 frame base was unavailable.
5718 (amd64_sigtramp_frame_unwind): Install
5719 amd64_sigtramp_frame_unwind_stop_reason.
5720 (amd64_epilogue_frame_cache): Swallow NOT_AVAILABLE_ERROR, and set
5721 base_p if the frame base was computable.
5722 (amd64_epilogue_frame_unwind_stop_reason): New.
5723 (amd64_epilogue_frame_this_id): Don't build a frame id if the
5724 frame base was unavailable.
5725 (amd64_epilogue_frame_unwind): Install
5726 amd64_epilogue_frame_unwind_stop_reason.
5727 * i386-tdep.c: Include "exceptions.h".
5728 (struct i386_frame_cache): New field "base_p".
5729 (i386_init_frame_cache): Clear it.
5730 (i386_frame_cache_1): New, factored out from amd64_frame_cache.
5731 Avoid reading registers with functions that throw if the register
5732 is not necessary to compute the frame base.
5733 (i386_frame_cache): Reimplement wrapping amd64_frame_cache_1, and
5734 swallowing NOT_AVAILABLE_ERROR.
5735 (i386_frame_unwind_stop_reason): New.
5736 (i386_frame_this_id): Don't build a frame id if the frame base was
5737 unavailable.
5738 (i386_frame_prev_register): Handle unavailable SP.
5739 (i386_frame_unwind): Install i386_frame_unwind_stop_reason.
5740 (i386_epilogue_frame_cache): Swallow NOT_AVAILABLE_ERROR, and set
5741 base_p if the frame base was computable.
5742 (i386_epilogue_frame_unwind_stop_reason): New.
5743 (i386_epilogue_frame_this_id): Don't build a frame id if the frame
5744 base was unavailable.
5745 (i386_epilogue_frame_unwind): Install
5746 i386_epilogue_frame_unwind_stop_reason.
5747 (i386_sigtramp_frame_cache): Swallow NOT_AVAILABLE_ERROR, and set
5748 base_p if the frame base was computable.
5749 (i386_sigtramp_frame_unwind_stop_reason): New.
5750 (i386_sigtramp_frame_this_id): Don't build a frame id if the frame
5751 base was unavailable.
5752 (i386_sigtramp_frame_unwind): Install
5753 i386_sigtramp_frame_unwind_stop_reason.
5754 * sentinel-frame.c (sentinel_frame_prev_register): Use the value
5755 type's size, not the register's.
5756 (sentinel_frame_unwind): Install default_frame_unwind_stop_reason.
5757
5758 * alpha-mdebug-tdep.c (alpha_mdebug_frame_unwind): Install
5759 default_frame_unwind_stop_reason.
5760 * alpha-tdep.c (alpha_sigtramp_frame_unwind)
5761 (alpha_heuristic_frame_unwind): Ditto.
5762 * amd64obsd-tdep.c (amd64obsd_trapframe_unwind): Ditto.
5763 * arm-tdep.c (arm_prologue_unwind, arm_stub_unwind): Ditto.
5764 * avr-tdep.c (avr_frame_unwind): Ditto.
5765 * cris-tdep.c (cris_sigtramp_frame_unwind, cris_frame_unwind):
5766 Ditto.
5767 * frv-linux-tdep.c (frv_linux_sigtramp_frame_unwind): Ditto.
5768 * frv-tdep.c (frv_frame_unwind): Ditto.
5769 * h8300-tdep.c (h8300_frame_unwind): Ditto.
5770 * hppa-hpux-tdep.c (hppa_hpux_sigtramp_frame_unwind): Ditto.
5771 * hppa-linux-tdep.c (hppa_linux_sigtramp_frame_unwind): Ditto.
5772 * hppa-tdep.c (hppa_frame_unwind, hppa_fallback_frame_unwind)
5773 (hppa_stub_frame_unwind): Ditto.
5774 * i386obsd-tdep.c (i386obsd_trapframe_unwind): Ditto.
5775 * ia64-tdep.c (ia64_frame_unwind, ia64_sigtramp_frame_unwind)
5776 (ia64_libunwind_frame_unwind)
5777 (ia64_libunwind_sigtramp_frame_unwind): Ditto.
5778 * iq2000-tdep.c (iq2000_frame_unwind): Ditto.
5779 * lm32-tdep.c (lm32_frame_unwind): Ditto.
5780 * m32c-tdep.c (m32c_unwind): Ditto.
5781 * m32r-linux-tdep.c (m32r_linux_sigtramp_frame_unwind): Ditto.
5782 * m32r-tdep.c (m32r_frame_unwind): Ditto.
5783 * m68hc11-tdep.c (m68hc11_frame_unwind): Ditto.
5784 * m68k-tdep.c (m68k_frame_unwind): Ditto.
5785 * m68klinux-tdep.c (m68k_linux_sigtramp_frame_unwind): Ditto.
5786 * m88k-tdep.c (m88k_frame_unwind): Ditto.
5787 * mep-tdep.c (mep_frame_unwind): Ditto.
5788 * microblaze-tdep.c (microblaze_frame_unwind): Ditto.
5789 * mips-tdep.c (mips_insn16_frame_unwind, mips_insn32_frame_unwind)
5790 (mips_stub_frame_unwind): Ditto.
5791 * mn10300-tdep.c (mn10300_frame_unwind): Ditto.
5792 * moxie-tdep.c (moxie_frame_unwind): Ditto.
5793 * mt-tdep.c (mt_frame_unwind): Ditto.
5794 * ppc-linux-tdep.c (ppu2spu_unwind): Ditto.
5795 * ppcobsd-tdep.c (ppcobsd_sigtramp_frame_unwind): Ditto.
5796 * rs6000-tdep.c (rs6000_frame_unwind): Ditto.
5797 * s390-tdep.c (s390_frame_unwind, s390_stub_frame_unwind)
5798 (s390_sigtramp_frame_unwind): Ditto.
5799 * score-tdep.c (score_prologue_unwind): Ditto.
5800 * sh-tdep.c (sh_frame_unwind): Ditto.
5801 * sh64-tdep.c (sh64_frame_unwind): Ditto.
5802 * sparc-sol2-tdep.c (sparc32_sol2_sigtramp_frame_unwind): Ditto.
5803 * sparc-tdep.c (sparc32_frame_unwind): Ditto.
5804 * sparc64-sol2-tdep.c (sparc64_sol2_sigtramp_frame_unwind): Ditto.
5805 * sparc64-tdep.c (sparc64_frame_unwind): Ditto.
5806 * sparc64fbsd-tdep.c (sparc64fbsd_sigtramp_frame_unwind): Ditto.
5807 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_frame_unwind): Ditto.
5808 * sparc64obsd-tdep.c (sparc64obsd_frame_unwind)
5809 (sparc64obsd_trapframe_unwind): Ditto.
5810 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_frame_unwind): Ditto.
5811 * sparcobsd-tdep.c (sparc32obsd_sigtramp_frame_unwind): Ditto.
5812 * spu-tdep.c (spu_frame_unwind, spu2ppu_unwind): Ditto.
5813 * v850-tdep.c (v850_frame_unwind): Ditto.
5814 * vax-tdep.c (vax_frame_unwind): Ditto.
5815 * vaxobsd-tdep.c (vaxobsd_sigtramp_frame_unwind): Ditto.
5816 * xstormy16-tdep.c (frame_unwind xstormy16_frame_unwind): Ditto.
5817 * xtensa-tdep.c (xtensa_unwind): Ditto.
5818
5819 2011-03-18 Pedro Alves <pedro@codesourcery.com>
5820
5821 * tui/tui-hooks.c (tui_selected_frame_level_changed_hook): Assume
5822 there's always a frame. Use get_frame_pc_if_available instead of
5823 get_frame_pc, and if there's no PC available, don't look up a
5824 symtab.
5825
5826 2011-03-18 Pedro Alves <pedro@codesourcery.com>
5827
5828 * stack.c (print_frame_local_vars, print_frame_arg_vars): Handle
5829 unavailable PC.
5830
5831 2011-03-18 Pedro Alves <pedro@codesourcery.com>
5832
5833 * tracepoint.c (set_traceframe_context): Handle unavailable PC
5834 gracefully.
5835
5836 2011-03-18 Pedro Alves <pedro@codesourcery.com>
5837
5838 * frame.h (frame_unwind_caller_pc_if_available): Declare.
5839 * frame.c (frame_unwind_caller_pc_if_available): New.
5840 * stack.c (frame_info): Handle unavailable PC.
5841
5842 2011-03-18 Pedro Alves <pedro@codesourcery.com>
5843
5844 * frame.c (frame_unwind_pc): Rename to ...
5845 (frame_unwind_pc_if_available): ... this. New `pc' output
5846 parameter. Change return type to int. Gracefully handle
5847 gdbarch_unwind_pc throwing NOT_AVAILABLE_ERROR. Return 0 if that
5848 happened, or 1 otherwise.
5849 (frame_unwind_pc): Reimplement on top of
5850 frame_unwind_pc_if_available.
5851 (get_frame_func): Rename to ...
5852 (get_frame_func_if_available): New `pc' output parameter. Change
5853 return type to int. Gracefully handle the PC not being available.
5854 (get_frame_func): Reimplement on top of
5855 get_frame_func_if_available.
5856 (select_frame): Handle the PC being unavailable.
5857 (get_prev_frame): Handle the PC being unavailable.
5858 (get_frame_pc_if_available): New.
5859 (get_frame_address_in_block_if_available): New.
5860 (find_frame_sal): Handle the frame PC not being available.
5861 * frame.h (get_frame_pc_if_available): Declare.
5862 (get_frame_address_in_block_if_available): Declare.
5863 (get_frame_func_if_available): Declare.
5864 * stack.c (print_frame_info): Handle the PC being unavailable.
5865 (find_frame_funname): Ditto.
5866 (print_frame): Handle the PC being unavailable.
5867 (get_frame_language): Ditto.
5868 * blockframe.c (get_frame_block): Ditto.
5869 * macroscope.c (default_macro_scope): Ditto.
5870 * tui/tui-stack.c (tui_show_frame_info): Ditto.
5871
5872 2011-03-18 Pedro Alves <pedro@codesourcery.com>
5873
5874 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Catch
5875 NOT_AVAILABLE_ERROR when evaluating the location expression.
5876
5877 2011-03-18 Pedro Alves <pedro@codesourcery.com>
5878
5879 * dwarf2loc.c (read_pieced_value): Handle get_frame_register_bytes
5880 returning that the register piece is unavailable/optimized out.
5881 (write_pieced_value): Handle get_frame_register_bytes returning
5882 that the register piece is unavailable/optimized out when doing a
5883 read-modify write of a bitfield.
5884 * findvar.c (value_from_register): Handle get_frame_register_bytes
5885 returning that the register piece is unavailable/optimized out.
5886 * frame.c (get_frame_register_bytes): New parameters `optimizedp'
5887 and `unavailablep'. Throw error on bad debug info. Use
5888 frame_register instead of frame_register_read, to fill in the new
5889 arguments.
5890 * frame.h (get_frame_register_bytes): New parameters `optimizedp'
5891 and `unavailablep'.
5892 * valops.c: (value_assign): Adjust, and handle
5893 get_frame_register_bytes failing.
5894 * spu-tdep.c: Include exceptions.h.
5895 (spu_software_single_step): Adjust, and handle
5896 get_frame_register_bytes failing.
5897 (spu_get_longjmp_target): Ditto.
5898 * gdbarch.sh (register_to_value): Change to return int. New
5899 parameters `optimizedp' and `unavailablep'.
5900 * gdbarch.h, gdbarch.c: Regenerate.
5901 * i386-tdep.c (i386_register_to_value): Adjust to new
5902 gdbarch_register_to_value interface.
5903 * i387-tdep.c (i387_register_to_value): Ditto.
5904 * i387-tdep.h (i387_register_to_value): Ditto.
5905 * alpha-tdep.c (alpha_register_to_value): Ditto.
5906 * ia64-tdep.c (ia64_register_to_value): Ditto.
5907 * m68k-tdep.c (m68k_register_to_value): Ditto.
5908 * mips-tdep.c (mips_register_to_value): Ditto.
5909 * rs6000-tdep.c (rs6000_register_to_value): Ditto.
5910
5911 2011-03-18 Pedro Alves <pedro@codesourcery.com>
5912
5913 * findvar.c (value_of_register): Mark the value as unavailable, if
5914 the register is unavailable.
5915 * frame.h (frame_register_unwind): New `unavailablep' parameter.
5916 (frame_register): New `unavailablep' parameter.
5917 (frame_register_read): Update comment.
5918 * frame.c (frame_register_unwind): New `unavailablep' parameter.
5919 Set it if the register is unavailable. If the register is
5920 unavailable, clear the output buffer.
5921 (frame_register): New `unavailablep' parameter. Pass it down.
5922 (frame_unwind_register): Adjust.
5923 (put_frame_register): Adjust.
5924 (frame_register_read): Adjust. Also return false if the register
5925 is not available.
5926 (frame_register_unwind_location): Adjust.
5927 * sentinel-frame.c (sentinel_frame_prev_register): If the register
5928 is unavailable, mark the value accordingly.
5929 * stack.c (frame_info): Handle unavailable registers.
5930
5931 2011-03-18 Pedro Alves <pedro@codesourcery.com>
5932
5933 * mi/mi-main.c (register_changed_p): Handle REG_UNAVAILABLE, and
5934 simplify, using regcache_cooked_read.
5935
5936 2011-03-18 Pedro Alves <pedro@codesourcery.com>
5937
5938 * regcache.h (regcache_raw_read, regcache_raw_read_signed)
5939 (regcache_raw_read_unsigned, regcache_raw_read_signed)
5940 (regcache_raw_read_unsigned, regcache_raw_read_part)
5941 (regcache_cooked_read, regcache_cooked_read_signed)
5942 (regcache_cooked_read_unsigned, regcache_cooked_read_part)
5943 (regcache_cooked_read_ftype): Change return to enum
5944 register_status.
5945 * regcache.c: Include exceptions.h
5946 (regcache_save): Adjust to handle REG_UNAVAILABLE registers.
5947 (do_cooked_read): Change return to enum register_status. Always
5948 forward to regcache_cooked_read.
5949 (regcache_raw_read): Change return to enum register_status. If
5950 the register is not REG_VALID, memset the buffer. Return the
5951 register's status.
5952 (regcache_raw_read_signed): Handle non-REG_VALID registers and
5953 return the register's status.
5954 (regcache_raw_read_unsigned): Ditto.
5955 (regcache_cooked_read): Change return to enum register_status.
5956 Assert that with read-only regcaches, the register's status must
5957 be known. If the regcache is read-only, and the register is not
5958 REG_VALID, memset the buffer. Return the register's status.
5959 (regcache_cooked_read_signed): Change return to enum
5960 register_status. Handle non-REG_VALID registers and return the
5961 register's status.
5962 (regcache_cooked_read_unsigned): Change return to enum
5963 register_status. Handle non-REG_VALID registers and return the
5964 register's status.
5965 (regcache_xfer_part, regcache_raw_read_part)
5966 (regcache_cooked_read_part): Change return to enum
5967 register_status. Return the register's status.
5968 (regcache_read_pc): Throw NOT_AVAILABLE_ERROR if the register is
5969 unavailable.
5970 (regcache_dump): Handle unavailable cooked registers.
5971 * frame.c (do_frame_register_read): Adjust interface to match
5972 regcache_cooked_read_ftype.
5973 * gdbarch.sh (pseudo_register_read): Change return to enum
5974 register_status.
5975 * gdbarch.h, gdbarch.c: Regenerate.
5976
5977 * i386-tdep.h (i386_pseudo_register_read): Change return to enum
5978 register_status.
5979 * i386-tdep.c (i386_pseudo_register_read): Change return to enum
5980 register_status. If reading a raw register indicates the raw
5981 register is not valid, return the raw register's status,
5982 otherwise, return REG_VALID.
5983 * amd64-tdep.c (amd64_pseudo_register_read): Change return to enum
5984 register_status. Handle non-REG_VALID raw registers and return
5985 the register's status.
5986 * arm-tdep.c (arm_neon_quad_read)
5987 (arm_pseudo_read): Change return to enum register_status. Handle
5988 non-REG_VALID raw registers and return the register's status.
5989 * avr-tdep.c (avr_pseudo_register_read): Ditto.
5990 * frv-tdep.c (frv_pseudo_register_read): Ditto.
5991 * h8300-tdep.c (h8300_pseudo_register_read): Ditto.
5992 * hppa-tdep.c (hppa_pseudo_register_read): Ditto.
5993 * m32c-tdep.c (m32c_move_reg_t): Change return to enum
5994 register_status.
5995 (m32c_raw_read, m32c_raw_write, m32c_banked_read)
5996 (m32c_banked_write, m32c_sb_read, m32c_sb_write, m32c_part_read)
5997 (m32c_part_write, m32c_cat_read, m32c_cat_write)
5998 (m32c_r3r2r1r0_read, m32c_r3r2r1r0_write)
5999 (m32c_pseudo_register_read): Change return to enum
6000 register_status. Adjust.
6001 * m68hc11-tdep.c (m68hc11_pseudo_register_read): Change return to
6002 enum register_status. Return the register's status.
6003 * mep-tdep.c (mep_pseudo_cr32_read): Change return to enum
6004 register_status. Return the register's status.
6005 (mep_pseudo_cr64_read, mep_pseudo_register_read): Ditto.
6006 * mips-tdep.c (mips_pseudo_register_read): Ditto.
6007 * mt-tdep.c (mt_pseudo_register_read): Ditto.
6008 * rs6000-tdep.c (move_ev_register_func): New typedef.
6009 (e500_move_ev_register): Use it. Change return to enum
6010 register_status. Return the register's status.
6011 (do_regcache_raw_read): New function.
6012 (do_regcache_raw_write): New function.
6013 (e500_pseudo_register_read): Change return to enum
6014 register_status. Return the register's status. Use
6015 do_regcache_raw_read.
6016 (e500_pseudo_register_write): Adjust. Use do_regcache_raw_write.
6017 (dfp_pseudo_register_read): Change return to enum register_status.
6018 Return the register's status.
6019 (vsx_pseudo_register_read): Ditto.
6020 (efpr_pseudo_register_read): Ditto.
6021 (rs6000_pseudo_register_read): Ditto.
6022 * s390-tdep.c (s390_pseudo_register_read): Change return to enum
6023 register_status. Return the register's status.
6024 * sh64-tdep.c (pseudo_register_read_portions): New function.
6025 (sh64_pseudo_register_read): Change return to enum
6026 register_status. Use pseudo_register_read_portions. Return the
6027 register's status.
6028 * ia64-tdep.c (ia64_pseudo_register_read): Change return to enum
6029 register_status. Return the register's status.
6030 * sh-tdep.c (pseudo_register_read_portions): New function.
6031 (sh_pseudo_register_read): Change return to enum register_status.
6032 Use pseudo_register_read_portions. Return the register's status.
6033 * sparc-tdep.c (sparc32_pseudo_register_read): Change return to
6034 enum register_status. Return the register's status.
6035 * sparc64-tdep.c (sparc64_pseudo_register_read): Ditto.
6036 * spu-tdep.c (spu_pseudo_register_read_spu)
6037 (spu_pseudo_register_read): Ditto.
6038 * xtensa-tdep.c (xtensa_register_read_masked)
6039 (xtensa_pseudo_register_read): Ditto.
6040 * bfin-tdep.c (bfin_pseudo_register_read): Ditto.
6041
6042 2011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
6043
6044 * python/py-value.c (valpy_getitem): Fix formatting of error function
6045 call.
6046
6047 2011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
6048
6049 ARI fixes: Add missing internationalization markups throughout
6050 C source files.
6051 * darwin-nat-info.c: Ditto.
6052 * record.c: Ditto.
6053 * remote.c: Ditto.
6054 * mi/mi-main.c: Ditto.
6055
6056 2011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
6057
6058 ARI fixes: Add missing internationalization markups throughout
6059 yacc files.
6060 * c-exp.y: Ditto.
6061 * cp-name-parser.y: Ditto.
6062 * f-exp.y: Ditto.
6063 * m2-exp.y: Ditto.
6064 * objc-exp.y: Ditto.
6065 * p-exp.y: Ditto.
6066
6067 2011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
6068
6069 ARI fixes: Messages should have no trailing new lines.
6070 * darwin-nat.c (mach_check_error): Remove trailing new line from
6071 warning function call message.
6072 * record.c (bfdcore_read): Idem for error call.
6073
6074 2011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
6075
6076 * common/signals.c (target_signal_from_host): Add _ markup to error
6077 function call message.
6078 (target_signal_to_host): Add _ markup and remove trailing new line
6079 from warning call message.
6080 (target_signal_from_command): Add _ markup to error function call
6081 message.
6082
6083 2011-03-18 Phil Muldoon <pmuldoon@redhat.com>
6084
6085 PR python/12149
6086
6087 * python/python.c (gdbpy_write): Accept a stream argument and
6088 operate to the appropriate stream.
6089 (gdbpy_flush): Likewise.
6090 (_initialize_python): Add stream constants.
6091 (finish_python_initialization): Add GdbOutputErrorFile class.
6092
6093 2011-03-18 Kwok Cheung Yeung <kcy@codesourcery.com>
6094
6095 * MAINTAINERS: Add myself as a write-after-approval maintainer.
6096
6097 2011-03-18 Kwok Cheung Yeung <kcy@codesourcery.com>
6098
6099 * amd64-tdep.c (amd64_relocate_instruction): Fix ordering of arguments
6100 to store_signed_integer. Add debug message when relocating CALL
6101 instructions. Fix formatting of debug message.
6102 * i386-tdep.c (i386_relocate_instruction): Ditto.
6103
6104 2011-03-17 Joel Brobecker <brobecker@gnat.com>
6105
6106 * target.h (struct target_ops): Remove to_lookup_symbol field.
6107 (target_lookup_symbol): Delete macro.
6108 * target.c (nosymbol, debug_to_lookup_symbol): Delete.
6109 (update_current_target, setup_target_debug): Remove handling
6110 of to_lookup_symbol target_ops field.
6111 * ada-tasks.c (get_known_tasks_addr): Remove use of
6112 target_lookup_symbol.
6113 * coffread.c (coff_symtab_read): Likewise.
6114 * dbxread.c (read_dbx_symtab): Ditto.
6115
6116 2011-03-17 Joel Brobecker <brobecker@gnat.com>
6117
6118 PR gdb/12116:
6119 * configure.ac: Add getthrds declaration check.
6120 * configure, config.in: Regenerate.
6121 * aix-thread.c (getthrds): Declare only if not already declared
6122 in procinfo.h. More declaration out of get_signaled_thread to
6123 global scope.
6124
6125 2011-03-17 Phil Muldoon <pmuldoon@redhat.com>
6126
6127 * python/py-symtab.c: Populate symtab_object_methods,
6128 sal_object_methods.
6129 (stpy_is_valid): New function.
6130 (salpy_is_valid): Ditto.
6131 * python/py-symbol.c: Declare symbol_object_methods. Populate.
6132 (sympy_is_valid): New function.
6133 * python/py-objfile.c: Declare objfile_object_methods. Populate.
6134 (objfpy_is_valid): New function.
6135 * python/py-inferior.c: Populate inferior_object_methods.
6136 (infpy_is_valid): New function.
6137 * python/py-infthread.c: Populate thread_object_methods.
6138 (thpy_is_valid): New function.
6139 * python/py-block.c: Declare block_object_methods. Populate. Declare
6140 block_iterator_object_methods. Populate.
6141 (blpy_is_valid): New function.
6142 (blpy_iter_is_valid): Ditto.
6143
6144 2011-03-16 Keith Seitz <keiths@redhat.com>
6145
6146 * linespec.c (find_methods): Canonicalize NAME before looking
6147 up the symbol.
6148 (name_end): New function.
6149 (keep_name_info): New function.
6150 (decode_line_1): Use keep_name_info.
6151 (decode_compound): Likewise.
6152 * cli/cli-utils.h (remove_trailing_whitespace): New function.
6153 * cli/cli-utils.c (remove_trailing_whitespace): Likewise.
6154
6155 PR c++/12273
6156 * linespec.c (locate_first_half): Keep overload information, too.
6157 (decode_compound): Use a string to represent break characters
6158 to escape the loop.
6159 If P points to a break character, do not increment it.
6160 For C++ and Java, keep overload information and relevant keywords.
6161 If we cannot find a symbol, search the minimal symbols.
6162
6163 PR c++/11734
6164 * linespec.c (decode_compound): Rename SAVED_ARG to
6165 THE_REAL_SAVED_ARG.
6166 Make a copy of THE_REAL_SAVED_ARG in SAVED_ARG and strip
6167 single-quotes.
6168 Pass a valid block to lookup_symbol.
6169 (lookup_prefix_sym): Likewise.
6170 (find_method): Construct search name based on SYM_CLASS instead
6171 of SAVED_ARG.
6172 * psymtab.c (lookup_partial_symbol): Add language parameter.
6173 (lookup_symbol_aux_psymtabs): Likewise.
6174 Don't assume that the psymtab we found was the right one. Search
6175 for the desired symbol in the symtab to be certain.
6176 (psymtab_search_name): New function.
6177 (lookup_partial_symbol): Use psymtab_search_name.
6178 Add language parameter.
6179 (read_symtabs_for_function): Add language parameter and pass to
6180 lookup_partial_symbol.
6181 (find_symbol_file_from_partial): Likewise.
6182
6183 2011-03-16 Paul Pluzhnikov <ppluzhnikov@google.com>
6184
6185 PR gdb/12528
6186 * dwarf2read.c (noop_record_line): New function.
6187 (dwarf_decode_lines): Ignore line tables for GCd functions.
6188
6189 2011-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
6190
6191 Fix ARI warnings about new lines at the end of messages, which
6192 are unneeded as there is a new line added at the end of the message
6193 automatically.
6194 * darwin-nat.c (darwin_stop_inferior): Ditto.
6195 * dec-thread.c (dec_thread_get_ada_task_ptid): Ditto.
6196 * dfp.c (decimal_to_number): Ditto.
6197 * exec.c (print_section_info): Ditto.
6198 * i386-darwin-nat.c (darwin_set_sstep): Ditto.
6199 * osdata.c (get_osdata): Ditto.
6200 * record.c (bfdcore_write): Ditto.
6201 * remote-mips.c (mips_readchar): Ditto.
6202 * remote.c (read_ptid): Ditto.
6203 * ser-mingw.c (ser_windows_raw): Ditto.
6204 * tracepoint.c (add_local_symbols): Ditto.
6205 * windows-nat.c (fake_create_process): Ditto.
6206
6207 2011-03-16 Tom Tromey <tromey@redhat.com>
6208
6209 * tracepoint.c (stop_tracing): Don't declare.
6210 * event-top.c (after_char_processing_hook): Add `(void)'.
6211
6212 2011-03-16 Phil Muldoon <pmuldoon@redhat.com>
6213
6214 * NEWS: Add Parameter sub-classing description.
6215
6216 2011-03-16 Kai Tietz <ktietz@redhat.com>
6217
6218 * MAINTAINERS: Update my e-mail address.
6219
6220 2011-03-15 Andreas Tobler <andreast@fgznet.ch>
6221
6222 * MAINTAINERS: Add myself for write after approval privileges.
6223
6224 2011-03-15 Michael Snyder <msnyder@vmware.com>
6225
6226 * frame.c (find_frame_sal): Assert sym is not null.
6227
6228 * dbxread.c (process_one_symbol): Assert 'name' is not null.
6229
6230 * objc-lang.c (selectors_info): Check strchr for null result.
6231
6232 * stabsread.c (define_symbol): Guard against bad stabstring input.
6233
6234 2011-03-15 Pierre Muller <muller@ics.u-strasbg.fr>
6235
6236 Remove trailing spaces and tabulations from pascal language
6237 support sources.
6238 p-exp.y: Ditto.
6239 p-lang.c: Ditto.
6240 p-lang.h: Ditto.
6241 p-valprint.c: Ditto.
6242
6243 2011-03-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6244
6245 * dwarf2read.c (dwarf2_get_pc_bounds): Require HIGH strictly higher
6246 than LOW. Comment it.
6247 (read_partial_die): Call complaint for inappropriate zero LOWPC or
6248 HIGHPC not strictly higher than LOWPC.
6249
6250 2011-03-15 Pierre Muller <muller@ics.u-strasbg.fr>
6251
6252 Fix formatting of function declarations returning a pointer in
6253 previous commit.
6254 * varobj.c (varobj_add_child): Ditto.
6255 * hppa-tdep.h (hppa_init_objfile_priv_data): Ditto.
6256 * inferior.h (get_displaced_step_closure_by_addr): Ditto.
6257
6258 2011-03-15 Ulrich Weigand <uweigand@de.ibm.com>
6259
6260 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Add support
6261 for the "generic" vector ABI used with GCC 4.3 and later.
6262 (ppc64_sysv_abi_return_value): Likewise.
6263
6264 2011-03-15 Ulrich Weigand <uweigand@de.ibm.com>
6265
6266 * infcall.c (call_function_by_hand): Function return value is
6267 always a non_lval, even when using struct_return.
6268
6269 2011-03-15 Pedro Alves <pedro@codesourcery.com>
6270
6271 * printcmd.c (ALL_DISPLAYS_SAFE): New.
6272 (map_display_numbers): New.
6273 (do_delete_display): New.
6274 (undisplay_command): Use map_display_numbers.
6275 (do_enable_disable_display): New.
6276 (enable_disable_display_command): New function.
6277 (enable_display): Delete.
6278 (enable_display_command): New.
6279 (disable_display_command): Reimplement.
6280 (_initialize_printcmd): Adjust "enable display" command to use
6281 `enable_display_command' as callback.
6282
6283 2011-03-14 Phil Muldoon <pmuldoon@redhat.com>
6284
6285 * NEWS: Add Python breakpoint 'stop' operation.
6286
6287 2011-03-14 Phil Muldoon <pmuldoon@redhat.com>
6288
6289 * NEWS: Delete duplicate entry. Fix typo.
6290
6291 2011-03-14 Pierre Muller <muller@ics.u-strasbg.fr>
6292
6293 Fix ARI warning about function names in first column.
6294 Put prototype declaration on same line as return type.
6295 * objc-exp.y: Ditto.
6296 * p-exp.y: Ditto.
6297 * python/py-stopevent.h: Ditto.
6298 For long function names, split parameters to
6299 allow function name on same line as return type.
6300 * solib-pa64.c: Ditto.
6301 * varobj.c: Ditto.
6302 * varobj.h: Ditto.
6303 For long function declaration, use single line.
6304 * hppa-tdep.h: Ditto.
6305 * inferior.h: Ditto.
6306
6307 2011-03-14 Phil Muldoon <pmuldoon@redhat.com>
6308
6309 * python/python.h: Declare gdbpy_should_stop and
6310 gdbpy_breakpoint_has_py_cond.
6311 * python/python.c: Add python.h to includes. Remove python.h from
6312 HAVE_PYTHON definition
6313 (gdbpy_should_stop): New dummy function.
6314 (gdbpy_breakpoint_has_py_cond): New dummy function.
6315 * python/py-breakpoint.c (bppy_init): Rewrite to allow
6316 sub-classing capabilities.
6317 (gdbpy_should_stop): New function.
6318 (gdbpy_breakpoint_has_py_cond): New function.
6319 (local_setattro): New function.
6320 * breakpoint.c (condition_command): Add check for Python 'stop'
6321 operation.
6322 (bpstat_check_breakpoint_conditions): Execute Python 'stop'
6323 operation function as part of stop/continue tests.
6324
6325 2011-03-14 Tom Tromey <tromey@redhat.com>
6326
6327 PR gdb/12576:
6328 * dwarf2loc.c (dwarf_expr_dwarf_call): Remove 'return'.
6329 (needs_frame_dwarf_call): Likewise.
6330
6331 2011-03-14 Pierre Muller <muller@ics.u-strasbg.fr>
6332
6333 Fix ARI warning about functions without parameters that do not
6334 use (void).
6335 * breakpoint.c (all_tracepoints): Replace () by (void).
6336 * f-exp.y (match_string_literal): Ditto.
6337 (yylex): Ditto.
6338 * m2-exp.y (yylex): Ditto.
6339 * mep-tdep.c (current_me_module): Ditto.
6340 (current_options): Ditto.
6341 (current_cop_data_bus_width): Ditto.
6342 (current_cr_names): Ditto.
6343 (current_cr_is_float): Ditto.
6344 (current_ccr_names): Ditto.
6345 * objc-exp.y (yylex): Ditto.
6346 * p-exp.y (yylex): Ditto.
6347 * remote.c (send_interrupt_sequence): Ditto.
6348 * tracepoint.c (current_trace_status): Ditto.
6349 * python/py-evts.c (gdbpy_initialize_py_events): Ditto.
6350 * python/py-prettyprint.c (push_dummy_python_frame): Ditto.
6351
6352 2011-03-11 Michael Snyder <msnyder@vmware.com>
6353
6354 * cli/cli-decode.h (CMD_LIST_AMBIGUOUS): Define.
6355 * cli/cli-decode.c (lookup_cmd_1): Use CMD_LIST_AMBIGUOUS.
6356 (lookup_cmd): Test for CMD_LIST_AMBIGUOUS.
6357 * completer.c (complete_line_internal): Use CMD_LIST_AMBIGUOUS.
6358 * top.c (set_verbose): Use CMD_LIST_AMBIGUOUS.
6359
6360 * event-loop-c (delete_async_signal_handler): Assert prev_ptr.
6361 (delete_async_event_handler): Ditto.
6362
6363 * python/py-breakpoint.c (bppy_set_condition): Stop memory leak.
6364
6365 * python/py-breakpoint.c (bppy_get_commands): Fix memory leak.
6366
6367 * top.c (set_verbose): Assert showcmd was found.
6368
6369 2011-03-11 Maxim Grigoriev <maxim2405@gmail.com>
6370
6371 * xtensa-tdep.c (warning_once): Correct style issues.
6372
6373 2011-03-11 Yao Qi <yao@codesourcery.com>
6374
6375 * arm-tdep.c (copy_ldr_str_ldrb_strb): Remove redundant statements.
6376
6377 2011-03-11 Andreas Schwab <schwab@redhat.com>
6378
6379 * common/aclocal.m4: Remove.
6380
6381 2011-03-10 Maxim Grigoriev <maxim2405@gmail.com>
6382
6383 * xtensa-tdep.c (windowing_enabled): Remove inline attribute.
6384 (xtensa_write_register, xtensa_read_register): Likewise.
6385 (xtensa_hextochar): Removed.
6386 (xtensa_init_reggroups): Replace xtensa_hextochar () by explicit code.
6387
6388 2011-03-10 Maxim Grigoriev <maxim2405@gmail.com>
6389
6390 * xtensa-tdep.c (xtensa_c0reg_t): Update comments.
6391 (xtensa_call0_frame_cache_t): Update comments. New fields added.
6392 (xtensa_alloc_frame_cache): Add initialization for new fields.
6393 (xtensa_frame_cache): Change the way how call0_frame_cache () is called.
6394 (warning_once): New function.
6395 (xtensa_insn_kind): New item c0opc_and.
6396 (call0_classify_opcode): Add the case for AND instruction.
6397 (call0_track_op): Change arguments. New local variable litbase.
6398 Add the case to handle c0opc_and. Update algorithms for c0opc_mov,
6399 c0opc_l32r, c0opc_s32i to take into account dynamic stack adjustments
6400 in the prologue.
6401 Add cases for c0opc_l32e, c0opc_s32e, c0opc_rfwo, c0opc_rfwu.
6402 (call0_analyze_prologue): Update the comments. Change arguments.
6403 Add the variety of updates to handle extended prologues, which now can
6404 conduct dynamic stack adjustments.
6405 (call0_frame_cache): Likewise.
6406 (xtensa_skip_prologue): Update call0_analyze_prologue () function call.
6407 (xtensa_gdbarch_init): Initialize xtensa_session_once_reported.
6408
6409 2011-03-10 Michael Snyder <msnyder@vmware.com>
6410
6411 * tracepoint.c (cmd_qtv): Discard unused value 'packet'.
6412 (cmd_qtframe): Ditto.
6413 (cmd_qtbuffer): Ditto.
6414 (cmd_bigqtbuffer): Ditto.
6415
6416 2011-03-10 Tom Tromey <tromey@redhat.com>
6417
6418 * tracepoint.c (trace_actions_command): Update.
6419 * thread.c (thread_apply_command): Update.
6420 * reverse.c (delete_bookmark_command): Update.
6421 (bookmarks_info): Update.
6422 * printcmd.c (undisplay_command): Update.
6423 * memattr.c (mem_enable_command): Update.
6424 (mem_disable_command): Update.
6425 (mem_delete_command): Update.
6426 * inferior.c (detach_inferior_command): Update.
6427 (kill_inferior_command): Update.
6428 (remove_inferior_command): Update.
6429 * cli/cli-utils.h (struct get_number_or_range_state): New.
6430 (init_number_or_range): Declare.
6431 (get_number_or_range): Update.
6432 * cli/cli-utils.c (init_number_or_range): New function.
6433 (get_number_or_range): Change 'pp' parameter to 'state'. Remove
6434 static variables.
6435 (number_is_in_list): Update.
6436 * breakpoint.h (get_tracepoint_by_number): Update.
6437 * breakpoint.c (map_breakpoint_numbers): Update for change to
6438 get_number_or_range.
6439 (find_location_by_number): Use get_number, not
6440 get_number_or_range.
6441 (trace_pass_set_count): New function.
6442 (trace_pass_command): Update for change to get_number_or_range.
6443 Rework loop logic.
6444 (get_tracepoint_by_number): Remove 'multi_p' parameter; add
6445 'state' parameter.
6446
6447 2011-03-10 Phil Muldoon <pmuldoon@redhat.com>
6448
6449 * python/py-param.c (add_setshow_generic): Add set/show callback
6450 parameters. Register Python object context.
6451 (get_show_value): New function.
6452 (get_set_value): New function.
6453 (call_doc_function): New function.
6454 (get_doc_string): Move behind get_show_value/get_set_value.
6455
6456 2011-03-10 Andreas Tobler <andreast-list@fgznet.ch>
6457
6458 * fbsd-nat.c (fbsd_make_corefile_notes): Constify local `fname'.
6459
6460 2011-03-09 Maxim Grigoriev <maxim2405@gmail.com>
6461
6462 * xtensa-tdep.c (xtensa_read_register): Add comment.
6463 (xtensa_write_register): Likewise.
6464 (xtensa_hextochar): Add comment and update to match coding conventions.
6465 (xtensa_frame_cache, xtensa_return_value): Follow coding conventions.
6466 (execute_l32e, execute_s32e, execute_code): Update comments.
6467 (xtensa_exception_handler_t): Update to match coding conventions.
6468 (xtensa_insn_kind): Likewise.
6469
6470 2011-03-09 Michael Snyder <msnyder@vmware.com>
6471
6472 * mi-cmd-disas.c (mi_cmd_disassemble): Fix memory leak.
6473
6474 2011-03-09 Pedro Alves <pedro@codesourcery.com>
6475
6476 * nto-tdep.c (nto_find_and_open_solib): Constify local `base'.
6477
6478 2011-03-09 Tom Tromey <tromey@redhat.com>
6479
6480 * thread.c (restore_selected_frame): Handle frame_level == -1.
6481 (make_cleanup_restore_current_thread): Use
6482 get_selected_frame_if_set.
6483 * frame.h (get_selected_frame_if_set): Declare.
6484 * frame.c (get_selected_frame_if_set): New function.
6485
6486 2011-03-09 Pedro Alves <pedro@codesourcery.com>
6487
6488 * cli/cli-cmds.c (shell_escape): Use lbasename.
6489 * coffread.c (coff_start_symtab): Constify parameter.
6490 (complete_symtab): Constify `name' parameter.
6491 (coff_symtab_read): Constify `filestring' local.
6492 (coff_getfilename): Constify return and `result' local.
6493 Use lbasename.
6494 * fbsd-nat.c (fbsd_make_corefile_notes): Use lbasename.
6495 * linux-fork.c (info_checkpoints_command): Use lbasename.
6496 * linux-nat.c (linux_nat_make_corefile_notes): Use lbasename.
6497 * minsyms.c (lookup_minimal_symbol): Use lbasename.
6498 * nto-tdep.c (nto_find_and_open_solib): Use lbasename.
6499 * procfs.c (procfs_make_note_section): Use lbasename.
6500 * tui/tui-io.c (printable_part): Constity return and parameter.
6501 Use lbasename.
6502 (print_filename): Constify parameters, and local `s'.
6503 (tui_rl_display_match_list): Constify local `temp'.
6504
6505 2011-03-09 Jan Kratochvil <jan.kratochvil@redhat.com>
6506
6507 Revert:
6508 2011-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
6509 Fix DWARF-3+ DW_AT_accessibility default assumption.
6510 * dwarf2read.c (dwarf2_add_field): Fix new_field->accessibility for
6511 cu->header.version >= 3.
6512
6513 2011-03-09 Yao Qi <yao@codesourcery.com>
6514
6515 * common/Makefile.in: Remove.
6516 * common/configure: Remove.
6517 * common/configure.ac: Remove.
6518
6519 2011-03-09 Yao Qi <yao@codesourcery.com>
6520
6521 Revert:
6522 2011-02-11 Yao Qi <yao@codesourcery.com>
6523
6524 * common/Makefile.in: Add copyright header.
6525
6526 2011-02-11 Yao Qi <yao@codesourcery.com>
6527
6528 * Makefile.in: Remove signals.o from COMMON_OBS. Link
6529 libcommon.a.
6530 * configure.ac: Add common to sub dir.
6531 * configure: Regenerate.
6532
6533 2011-03-08 Maxim Grigoriev <maxim2405@gmail.com>
6534
6535 * xtensa-tdep.c (call0_ret): New function.
6536 (xtensa_skip_prologue): Speed up analysis.
6537
6538 2011-03-08 Maxim Grigoriev <maxim2405@gmail.com>
6539
6540 * xtensa-tdep.c (xtensa_register_reggroup_p): Count in all registers
6541 while executing MI command -data-list-changed-registers.
6542
6543 2011-03-08 Maxim Grigoriev <maxim2405@gmail.com>
6544
6545 * xtensa-tdep.c (xtensa_read_register): New function.
6546 (xtensa_write_register): New function.
6547 (xtensa_find_register_by_name): New function.
6548 (xtensa_windowed_frame_cache): Update comments in type description.
6549 (xtensa_frame_cache): Likewise.
6550 (xtensa_window_interrupt_insn): New function.
6551 (xtensa_frame_cache): Add analysis for Xtensa Window Exception frames.
6552 (xtensa_insn_kind): Add new instructions.
6553 (rwx_special_register): New function.
6554 (call0_classify_opcode): Add new instructions to the analysis.
6555 (a0_saved, a7_saved, a11_saved): New variables.
6556 (a0_was_saved, a7_was_saved, a11_was_saved): New variables.
6557 (execute_l32e): New function.
6558 (execute_s32e): New function.
6559 (xtensa_exception_handler_t): New type.
6560 (execute_code): New function.
6561 (xtensa_window_interrupt_frame_cache): New function to conduct frame
6562 analysis for Xtensa Window Exception handlers.
6563
6564 2011-03-08 Maxim Grigoriev <maxim2405@gmail.com>
6565
6566 * xtensa-tdep.c (TX_PS): New.
6567 (windowing_enabled): Update to count for Call0 ABI.
6568 (xtensa_hextochar): New.
6569 (xtensa_init_reggroups): Make algorithm generic.
6570 (xtensa_frame_cache): Use TX_PS on Tiny Xtensa.
6571
6572 2011-03-08 Maxim Grigoriev <maxim2405@gmail.com>
6573
6574 * xtensa-tdep.h (XTENSA_MAX_COPROCESSOR): Update.
6575
6576 2011-03-08 Michael Snyder <msnyder@vmware.com>
6577
6578 * i386-tdep.c (i386_follow_jump): Check return value of
6579 target_read_memory.
6580 (i386_analyze_struct_return): Ditto.
6581 (i386_skip_probe): Ditto.
6582 (i386_match_insn): Ditto.
6583 (i386_skip_noop): Ditto.
6584 (i386_analyze_frame_setup): Ditto.
6585 (i386_analyze_register_saves): Ditto.
6586 (i386_skip_prologue): Ditto.
6587 (i386_skip_main_prologue): Ditto.
6588
6589 * target.c (read_whatever_is_readable): Fix memory leak.
6590
6591 * i386-tdep.c (i386_process_record): Document fall through.
6592
6593 2011-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
6594
6595 Fix DWARF-3+ DW_AT_accessibility default assumption.
6596 * dwarf2read.c (dwarf2_add_field): Fix new_field->accessibility for
6597 cu->header.version >= 3.
6598
6599 2011-03-08 Pedro Alves <pedro@codesourcery.com>
6600
6601 * remote.c (remote_check_symbols): Skip if the target has no
6602 execution.
6603
6604 2011-03-08 Joel Brobecker <brobecker@adacore.com>
6605
6606 * target.c (read_whatever_is_readable): Reformat comment,
6607 with a minor typo fix. Minor reformatting of the code.
6608
6609 2011-03-08 Yao Qi <yao@codesourcery.com>
6610
6611 * arm-tdep.c: Remove prototype declaration displaced_in_arm_mode.
6612 (displaced_read_reg): Add `dsc' parameter, remove `from' parameter.
6613 Use cached result instead of calling displaced_in_arm_mode again.
6614 (branch_write_pc, alu_write_pc, load_write_pc): Add `dsc' parameter.
6615 (displaced_write_reg, copy_preload, copy_preload_reg): Callers update.
6616 (cleanup_copro_load_store, copy_copro_load_store): Likewise.
6617 (cleanup_branch, copy_bx_blx_reg, copy_alu_imm): Likewise.
6618 (cleanup_alu_reg, copy_alu_reg, cleanup_alu_shifted_reg): Likewise.
6619 (copy_alu_shifted_reg, cleanup_load, cleanup_store): Likewise.
6620 (copy_extra_ld_st, copy_ldr_str_ldrb_strb): Likewise.
6621 (cleanup_block_load_all, cleanup_block_store_pc): Likewise.
6622 (cleanup_block_load_pc, copy_block_xfer): Likewise.
6623 * arm-linux-tdep.c (arm_linux_copy_svc): Callers update.
6624 (arm_catch_kernel_helper_return): Likewise.
6625 * gdb/arm-tdep.h : Update function declarations.
6626
6627 2011-03-07 Michael Snyder <msnyder@vmware.com>
6628
6629 * dwarf2loc.c (indirect_pieced_value): Assert 'piece' not null.
6630
6631 * ser-unix.c (hardwire_get_tty_state): Stop memory leak.
6632
6633 * mi/mi-cmd-env.c (_initialize_mi_cmd_env): Free environment.
6634
6635 * elfread.c (elf_symtab_read): Stop memory leak.
6636
6637 * main.c (captured_main): Fix memory leak.
6638
6639 2011-03-07 Andreas Schwab <schwab@linux-m68k.org>
6640
6641 * ada-lang.c (compare_names): Call is_name_suffix with string1
6642 instead of string2.
6643
6644 2011-03-07 Tom Tromey <tromey@redhat.com>
6645
6646 * xcoffread.c (xcoff_sym_fns): Update.
6647 * symfile.h (struct sym_fns) <sym_read_psymbols>: New field.
6648 (enum symfile_add_flags) <SYMFILE_NO_READ>: New constant.
6649 * symfile.c (syms_from_objfile): Handle SYMFILE_NO_READ.
6650 (symbol_file_add_with_addrs_or_offsets): Likewise.
6651 (reread_symbols): Handle OBJF_PSYMTABS_READ.
6652 * somread.c (som_sym_fns): Update.
6653 * psymtab.h (require_partial_symbols): Declare.
6654 * psymtab.c (require_partial_symbols): New function.
6655 (ALL_OBJFILE_PSYMTABS_REQUIRED): New macro.
6656 (ALL_OBJFILE_PSYMTABS): Undef.
6657 (ALL_PSYMTABS): Move from psympriv.h.
6658 (lookup_partial_symtab, find_pc_sect_psymtab)
6659 (lookup_symbol_aux_psymtabs, relocate_psymtabs)
6660 (find_last_source_symtab_from_partial)
6661 (forget_cached_source_info_partial)
6662 (print_psymtab_stats_for_objfile, read_symtabs_for_function)
6663 (expand_partial_symbol_tables, read_psymtabs_with_filename)
6664 (map_symbol_names_psymtab, map_symbol_filenames_psymtab)
6665 (find_symbol_file_from_partial, map_matching_symbols_psymtab)
6666 (expand_symtabs_matching_via_partial, maintenance_info_psymtabs):
6667 Use ALL_OBJFILE_PSYMTABS_REQUIRED.
6668 * psympriv.h (ALL_PSYMTABS): Move to psymtab.c.
6669 * objfiles.h (OBJF_PSYMTABS_READ): New macro.
6670 * objfiles.c (objfile_has_partial_symbols): Handle lazily-read
6671 psymtabs.
6672 * mipsread.c (ecoff_sym_fns): Update.
6673 * machoread.c (macho_sym_fns): Update.
6674 * elfread.c (elf_symfile_read): Set up for lazy psymtab reading.
6675 (read_psyms): New function.
6676 (elf_sym_fns, elf_sym_fns_gdb_index): Update.
6677 (elf_sym_fns_lazy_psyms): New global.
6678 * dwarf2read.c (dwarf2_initialize_objfile): Don't call
6679 dwarf2_build_psymtabs.
6680 * dbxread.c (aout_sym_fns): Update.
6681 * coffread.c (coff_sym_fns): Update.
6682
6683 2011-03-07 Tom Tromey <tromey@redhat.com>
6684
6685 * infrun.c (print_exited_reason): Include inferior id and pid in
6686 message.
6687
6688 2011-03-07 Tom Tromey <tromey@redhat.com>
6689
6690 * target.h (struct target_ops) <to_has_execution>: Add ptid_t
6691 parameter.
6692 (target_has_execution_1): Update.
6693 (target_has_execution_current): Declare.
6694 (target_has_execution): Call target_has_execution_current.
6695 (default_child_has_execution): Update.
6696 * target.c (default_child_has_execution): Add 'the_ptid'
6697 parameter.
6698 (target_has_execution_1): Likewise.
6699 (target_has_execution_current): New function.
6700 (add_target): Update.
6701 (init_dummy_target): Update.
6702 * remote-m32r-sdi.c (m32r_has_execution): New function.
6703 (init_m32r_ops): Use it.
6704 * record.c (record_core_has_execution): Now static. Add
6705 'the_ptid' parameter.
6706 * inferior.c (have_live_inferiors): Don't save current thread.
6707 Use target_has_execution_1.
6708
6709 2011-03-07 Yao Qi <yao@codesourcery.com>
6710
6711 * Makefile.in (aclocal_m4_deps): Remove gnulib/m4/memcmp.m4.
6712
6713 2011-03-07 Joel Brobecker <brobecker@adacore.com>
6714
6715 * elfread.c (elf_symtab_read): Minor reformatting.
6716
6717 2011-03-07 Joel Brobecker <brobecker@adacore.com>
6718
6719 * objc-lang.c (selectors_info): Minor reformatting.
6720
6721 2011-03-07 Joel Brobecker <brobecker@adacore.com>
6722
6723 * ada-lang.c (compare_names): Add FALLTHROUGH comment.
6724
6725 2011-03-07 Joel Brobecker <brobecker@adacore.com>
6726 Michael Snyder <msnyder@vmware.com>
6727
6728 * ada-valprint.c (ada_val_print_array): Move the declaration of
6729 "byte_order" and "elttype" inside the block where these variables
6730 are actually used. Remove some special handling for the case
6731 where "elttype" and "eltlen" are null. Replace by a comment
6732 and a couple of assertion checks.
6733
6734 2011-03-05 Michael Snyder <msnyder@vmware.com>
6735
6736 * source.c (add_path): Replace semicolon at end of block.
6737 * dwarf2expr.c (execute_stack_op): Ditto.
6738
6739 2011-03-05 Mike Frysinger <vapier@gentoo.org>
6740
6741 * bfin-tdep.c: Include sim-regno.h and gdb/sim-bfin.h.
6742 * configure.tgt (bfin-*-*linux*): Define gdb_sim.
6743 (bfin-*-*): Likewise.
6744
6745 2011-03-05 Michael Snyder <msnyder@vmware.com>
6746
6747 * dwarf2expr.c (execute_stack_op): Delete superfluous semicolon.
6748 * mdebugread.c (parse_symbol): Ditto.
6749 * parse.c (parse_exp_in_context): Ditto.
6750 * source.c (add_path): Ditto.
6751 * utils.c (gnu_debuglink_crc32): Ditto.
6752 * varobj.c (variable_language): Ditto.
6753
6754 * linux-tdep.c (linux_get_siginfo_type): Stop memory leak.
6755
6756 2011-03-04 Michael Snyder <msnyder@vmware.com>
6757
6758 * linux-fork.c (inferior_call_waitptid): Fix copy/paste error.
6759
6760 * symfile.c (simple_overlay_update): Check for null return value
6761 from lookup_minimal_symbol.
6762
6763 * xml-syscall.c (syscall_start_syscall): Assert name is non null.
6764
6765 2011-03-04 Thiago Jung Bauermann <bauerman@br.ibm.com>
6766
6767 * eval.c (parse_and_eval_address_1): Remove function.
6768 * linespec.c (decode_indirect): Call parse_to_comma_and_eval
6769 instead of parse_and_eval_address_1.
6770 * value.h (parse_and_eval_address_1): Remove prototype.
6771
6772 2011-03-04 Michael Snyder <msnyder@vmware.com>
6773
6774 * remote.c (putpkt_binary): Document that case stmt falls through.
6775
6776 2011-03-04 Thiago Jung Bauermann <bauerman@br.ibm.com>
6777
6778 * breakpointc (print_it_typical): Move NULL check from here...
6779 (print_bp_stop_message): ... to here.
6780
6781 2011-03-04 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
6782
6783 * breakpoint.c (enable_command): Use break instead of continue,
6784 and fill in a missing break.
6785 (disable_command): Ditto.
6786
6787 2011-03-04 Ulrich Weigand <ulrich.weigand@linaro.org>
6788
6789 * inflow.c (terminal_init_inferior_with_pgrp): Copy ttystate.
6790 (terminal_save_ours): Remove misleading comment.
6791 (inflow_inferior_data_cleanup): Free ttystate.
6792 (inflow_inferior_exit): Likewise.
6793 (copy_terminal_info): Copy ttystate.
6794
6795 * serial.c (serial_copy_tty_state): New function.
6796 * serial.h (serial_copy_tty_state): Add prototype.
6797 (struct serial_ops): Add copy_tty_state callback.
6798 * ser-base.c (ser_base_copy_tty_state): New function.
6799 * ser-base.h (ser_base_copy_tty_state): Add prototype.
6800 * ser-go32.c (dos_copy_tty_state): New function.
6801 (dos_ops): Install copy_tty_state callback.
6802 * ser-mingw.c (_initialize_ser_windows): Likewise.
6803 * ser-pipe.c (_initialize_ser_pipe): Likewise.
6804 * ser-unix.c (hardwire_copy_tty_state): New function.
6805 (_initialize_ser_hardwire): Install it.
6806
6807 2011-03-04 Michael Snyder <msnyder@vmware.com>
6808
6809 * breakpoint.c (create_breakpoint): Add missing break statement.
6810
6811 Reverting this patch:
6812 * infcall.c (call_function_by_hand): Add break statements for lint.
6813
6814 Reverting this patch:
6815 * cli/cli-script.c (script_from_file): Add break for lint.
6816
6817 2011-03-04 Michael Snyder <msnyder@vmware.com>
6818
6819 * solib.c (reload_shared_libraries_1): Close memory leak.
6820
6821 2011-03-03 Tom Tromey <tromey@redhat.com>
6822
6823 PR gdb/12538:
6824 * dwarf2read.c (process_psymtab_comp_unit): Handle case where
6825 DW_STRING is NULL.
6826
6827 2011-03-03 Michael Snyder <msnyder@vmware.com>
6828
6829 * remote-fileio.c (remote_fileio_func_fstat): Initialize all
6830 fields of struct 'st' to zero.
6831
6832 * tui/tui-winsource.c (tui_update_source_window_as_is): Initialize
6833 sal.pspace before calling set_current_source_symtab_and_line.
6834
6835 2011-03-03 Yao Qi <yao@codesourcery.com>
6836
6837 * Makefile.in (configure-common): Remove. Let Makefile
6838 in dir common to rebuild itself.
6839 (common/Makefile): Likewise.
6840
6841 2011-03-03 Joel Brobecker <brobecker@adacore.com>
6842
6843 * utils.c (parse_escape): Add i18n markup in error message.
6844
6845 2011-03-03 Yao Qi <yao@codesourcery.com>
6846
6847 * gdb/arm-tdep.c (shifted_reg_val): Replace magic number 15 with
6848 ARM_PC_REGNUM.
6849 (thumb_get_next_pc_raw, arm_get_next_pc_raw): Likewise.
6850 (displaced_write_reg, displaced_read_reg): Likewise.
6851 (copy_ldr_str_ldrb_strb, cleanup_block_load_all): Likewise.
6852 (cleanup_block_load_pc, copy_block_xfer): Likewise.
6853 (cleanup_branch): Replace magic number 14 and 15 with
6854 ARM_LR_REGNUM and ARM_PC_REGNUM respectively.
6855
6856 2011-03-02 Michael Snyder <msnyder@vmware.com>
6857
6858 * maint.c (maintenance_do_deprecate): No need to check for NULL.
6859
6860 * cli/cli-script.c (script_from_file): Add break for lint.
6861
6862 * mdebugread.c (parse_partial_symbols): Fix indent.
6863
6864 * target-descriptions.c (tdesc_gdb_type): No need to call
6865 xstrdup, callee saves a copy.
6866
6867 * printcmd.c (print_scalar_formatted): Use strncpy for safety.
6868
6869 * infcall.c (call_function_by_hand): Add break statements for lint.
6870
6871 * utils.c (parse_escape): Escape the escape char.
6872
6873 * python/py-inferior.c (build_inferior_list): Error out if
6874 PyList_Append fails.
6875 (gdbpy_inferiors): Error out if build_inferior_list fails.
6876
6877 * linux-nat.c (linux_nat_xfer_partial): Preserve errno around
6878 a function call.
6879
6880 * record.c (record_restore): Move printf to before error return.
6881
6882 2011-03-02 Yao Qi <yao@codesourcery.com>
6883
6884 * arm-tdep.h (struct displaced_step_closure): Add two new fields
6885 is_thumb and insn_size.
6886 * arm-tdep.c (displaced_read_reg): Adjust correct pipeline offset
6887 on both ARM and Thumb mode.
6888 (arm_process_displaced_insn): Set is_thumb and insn_size.
6889 (arm_displaced_init_closure): Handle both 16-bit and 32-bit.
6890 (arm_displaced_step_fixup): Likewise.
6891
6892 2011-03-01 Michael Snyder <msnyder@vmware.com>
6893
6894 * cli/cli-dump.c (dump_bfd_file): Check error return and warn.
6895
6896 * jv-lang.c (evaluate_subexp_java): Conditional can't be true.
6897
6898 * dwarf2read.c (dwarf2_compute_name): NAME cannot be null here.
6899
6900 * cli/cli-dump.c (restore_binary_file): Validate ftell return value.
6901
6902 * ada-lang.c (ada_make_symbol_completion_list): Replace malloc
6903 with xmalloc.
6904
6905 * ada-lang.c (aggregate_assign_others): Rename inner scope variable
6906 which shadows function parameter.
6907
6908 * tracepoint.c (create_tsv_from_upload): Superfluous call
6909 to xstrdup. Callee already calls xstrdup.
6910
6911 * linespec.c (decode_line_1): Remove unnecessary null check.
6912
6913 * tracepoint.c (scope_info): Fix mem leak, remove underused
6914 variable.
6915
6916 * python/py-prettyprint.c (apply_val_pretty_printer): Remove
6917 superfluous null check.
6918
6919 * std-regs.c (value_of_builtin_frame_pc_reg): Frame can't be null.
6920 (value_of_builtin_frame_fp_reg): Ditto.
6921
6922 * event-top.c (display_gdb_prompt): Remove superfluous null check.
6923
6924 * python/py-prettyprint.c (apply_val_pretty_printer): VAL may
6925 be null.
6926
6927 * linespec.c (decode_line_1): Check for null before dereference.
6928
6929 * reverse.c (record_restore): Move null-check to before pointer
6930 dereference.
6931
6932 * python/py-utils.c (gdbpy_obj_to_string): Delete unused variable.
6933
6934 * objc-lang.c (selectors_info): Add explanitory comment.
6935 (classes_info): Ditto.
6936
6937 2011-03-01 Ulrich Weigand <ulrich.weigand@linaro.org>
6938
6939 * arm-linux-tdep.c (ARM_LDR_PC_SP_4): Add define.
6940 (arm_linux_restart_syscall_init): Handle both on-stack and in-kernel
6941 versions of the trampoline. Handle Thumb vs. ARM addresses.
6942 (arm_kernel_linux_restart_syscall_tramp_frame): New global.
6943 (arm_linux_init_abi): Install it.
6944 * arm-tdep.c (arm_psr_thumb_bit): Make global.
6945 * arm-tdep.c (arm_psr_thumb_bit): Add prototype.
6946
6947 2011-02-28 Michael Snyder <msnyder@vmware.com>
6948
6949 * ui-out.c (ui_out_field_core_addr): Make local char buffer
6950 a little bigger, to avoid possibility of an overflow.
6951
6952 * breakpoint.c (breakpoint_adjustment_warning): Make local char
6953 buffers a little bigger, to avoid possibility of an overflow.
6954
6955 * coffread.c (coff_getfilename): Add check to avoid overflow.
6956
6957 * objc-lang.c (selectors_info): Add a small safety margin to
6958 avoid overflow.
6959 (classes_info): Error out on too long REGEXP.
6960
6961 * infrun.c (handle_inferior_event): Remove unused function call.
6962
6963 * fork-child.c (fork_inferior): Remove ifdef'd code and
6964 unused variable.
6965
6966 * linux-thread-db.c (attach_thread): Discard unused value.
6967
6968 * linux-nat.c (linux_handle_extended_wait): Delete unused variable.
6969
6970 * remote.c (remote_get_noisy_reply): Discard unused value.
6971 (remote_vcont_resume): Ditto.
6972 (remote_stop_ns): Ditto.
6973
6974 * linespec.c (decode_objc): Delete unused variable.
6975
6976 * tui/tui-regs.c (tui_register_format): Delete unused variable.
6977
6978 * dwarf2read.c (add_partial_symbol): Discard unused values.
6979 (read_base_type): Delete unused variable.
6980
6981 * dbxread.c (read_dbx_symtab): Discard unused value.
6982
6983 * eval.c (evaluate_subexp_standard): Delete unused variable,
6984 and discard unused values.
6985
6986 * infcmd.c (_initialize_infcmd): Discard unused values.
6987
6988 * stabsread.c (rs6000_builtin_type): Missing break statement.
6989
6990 * dbxread.c (process_one_symbol): Discard unused value.
6991
6992 * coffread.c (coff_end_symtab): Delete unused variable.
6993
6994 * dwarf2read.c (dw2_get_file_names): Discard unused value.
6995 (dwarf2_add_typedef): Delete unused variable.
6996 (read_namespace): Ditto.
6997 (dwarf_decode_macros): Ditto.
6998
6999 * m2-lang.c (evaluate_subexp_modula2): Discard unused variable.
7000
7001 * opencl-lang.c (evaluate_subexp_opencl): Discard unused value.
7002
7003 * p-valprint.c (pascal_val_print): Discard unused value.
7004
7005 * utils.c (nquery): Call va_end before return;
7006 (yquery): Ditto.
7007 (query): Ditto.
7008
7009 * proc-service.c (ps_plog): Call va_end before return.
7010
7011 2011-02-28 Tom Tromey <tromey@redhat.com>
7012
7013 * python/python.c (gdbpy_value_cst): New global.
7014 (_initialize_python): Initialize it.
7015 * python/python-internal.h (gdbpy_value_cst): Declare.
7016 * python/py-value.c (convert_value_from_python): Use
7017 gdbpy_value_cst.
7018
7019 2011-02-28 Michael Snyder <msnyder@vmware.com>
7020
7021 * python/py-cmd.c (cmdpy_init): Fix memory leak.
7022
7023 * breakpoint.c (catch_syscall_completer): Free malloced list.
7024
7025 * jv-lang.c (java_primitive_type_from_name): Add missing break.
7026
7027 * opencl-lang.c (lval_func_check_validity): Rename inner variables.
7028 (lval_func_check_synthetic_pointer): Ditto.
7029 (lval_func_free_closure): Fix use-after-free.
7030
7031 2011-02-28 Tom Tromey <tromey@redhat.com>
7032
7033 * psymtab.c (expand_partial_symbol_tables): Use
7034 ALL_OBJFILE_PSYMTABS.
7035
7036 2011-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
7037
7038 * objc-lang.c (selectors_info): Error on too long REGEXP.
7039
7040 2011-02-28 Michael Snyder <msnyder@vmware.com>
7041
7042 * python/py-param.c (set_parameter_value): Add missing
7043 break statement.
7044
7045 * linux-record.c (record_linux_system_call): Add missing
7046 break statement.
7047
7048 2011-02-28 Ulrich Weigand <uweigand@de.ibm.com>
7049
7050 * breakpoint.c (print_one_breakpoint_location): Remove unused
7051 argument PRINT_ADDRESS_BITS. Update callers.
7052 (print_one_breakpoint): Likewise.
7053
7054 2011-02-28 Ulrich Weigand <uweigand@de.ibm.com>
7055
7056 * breakpoint.c (wrap_indent_at_field): New function.
7057 (print_breakpoint_location): Use it instead of WRAP_INDENT argument.
7058 Allocate ui_stream locally instead of using STB argument.
7059 (print_one_breakpoint_location): Update call.
7060 * ui-out.c (ui_out_query_field): New function.
7061 * ui-out.h (ui_out_query_field): Add prototype.
7062
7063 2011-02-28 Joel Brobecker <brobecker@adacore.com>
7064
7065 From Michael Snyder <msnyder@vmware.com>
7066 * ada-exp.y (write_object_renaming): Add FALLTHROUGH comment.
7067
7068 2011-02-27 Michael Snyder <msnyder@vmware.com>
7069
7070 * objc-lang.c (selectors_info): Prevent string overrun.
7071
7072 * tui/tui-stack.c (tui_get_function_from_frame): Fix off by one
7073 error in strncpy.
7074
7075 * symtab.c (rbreak_command): Move variable 'file_name' to
7076 outer scope.
7077
7078 * d-valprint.c (dynamic_array_type): Avoid shadowing a function
7079 param with a local variable of the same name.
7080
7081 2011-02-27 Michael Snyder <msnyder@vmware.com>
7082
7083 * value.c (value_from_history_ref): New function.
7084 * value.h (value_from_history_ref): Export.
7085 * cli/cli-utils.c (get_number_trailer): Use value_from_history_ref
7086 to parse value history references.
7087 * cli/cli-utils.h (get_number_trailer): Update comment.
7088
7089 2011-02-27 Michael Snyder <msnyder@vmware.com>
7090
7091 * inferior.c (detach_inferior_command): Use get_number_or_range.
7092 (kill_inferior_command): Ditto.
7093 (remove_inferior_command): Ditto.
7094 (initialize_inferiors): Make command names plural.
7095 Update help strings.
7096
7097 2011-02-27 Michael Snyder <msnyder@vmware.com>
7098
7099 * darwin-nat-info.c: Fix comment typo.
7100 * dwarf2expr.h: Ditto.
7101 * fbsd-nat.c: Ditto.
7102 * fbsd-nat.h: Ditto.
7103 * frame-unwind.h: Ditto.
7104 * frame.h: Ditto.
7105 * hppa-hpux-tdep.c: Ditto.
7106 * i386-linux-nat.c: Ditto.
7107 * linux-nat.c: Ditto.
7108 * nbsd-nat.c: Ditto.
7109 * nbsd-nat.h: Ditto.
7110 * ppc-linux-tdep.c: Ditto.
7111 * serial.c: Ditto.
7112 * ui-file.h: Ditto.
7113 * tui/tui-winsource.c: Ditto.
7114
7115 2011-02-26 Michael Snyder <msnyder@vmware.com>
7116
7117 * breakpoint.c (reattach_breakpoints): Avoid resource leak (ui_file).
7118
7119 * maint.c (maintenance_do_deprecate): Plug a memory leak.
7120
7121 * dwarf2loc.c (insert_bits): Avoid shadowing a function param
7122 with a local variable of the same name.
7123
7124 * i387-tdep.c (i387_supply_fxsave): Avoid shadowing a function
7125 param with a local variable of the same name.
7126 (i387_supply_xsave): Ditto.
7127
7128 * linux-low.c (linux_nat_xfer_osdata): Rename local variable so
7129 that it does not shadow a function parameter.
7130
7131 * i386-nat.c (i386_length_and_rw_bits): Document that case
7132 statement is meant to fall through.
7133
7134 * expprint.c (dump_subexp_body_standard): Document that case
7135 statement is meant to fall through.
7136
7137 * amd64-linux-tdep.c (amd64_linux_syscall_record): Delete
7138 dead if statement. Condition can't be false.
7139
7140 2011-02-25 Michael Snyder <msnyder@vmware.com>
7141
7142 * arm-tdep.c: Fix typos in comments.
7143 * bsd-uthread.c: Ditto.
7144 * completer.c: Ditto.
7145 * corelow.c: Ditto.
7146 * cp-namespace.c: Ditto.
7147 * cp-support.c: Ditto.
7148 * cris-tdep.c: Ditto.
7149 * dbxread.c: Ditto.
7150 * dwarf2read.c: Ditto.
7151 * frame.h: Ditto.
7152 * gdbtypes.h: Ditto.
7153 * inferior.h: Ditto.
7154 * mdebugread.c: Ditto.
7155 * mips-tdep.c: Ditto.
7156 * ppc-linux-nat.c: Ditto.
7157 * ppc-linux-tdep.c: Ditto.
7158 * printcmd.c: Ditto.
7159 * sol-thread.c: Ditto.
7160 * solib-frv.c: Ditto.
7161 * solist.h: Ditto.
7162 * sparc64-tdep.c: Ditto.
7163 * spu-tdep.c: Ditto.
7164 * stabsread.c: Ditto.
7165 * symfile.c: Ditto.
7166 * valops.c: Ditto.
7167 * varobj.c: Ditto.
7168 * vax-nat.c: Ditto.
7169 * python/py-block.c: Ditto.
7170 * python/py-symbol.c: Ditto.
7171 * python/py-symtab.c: Ditto.
7172 * python/py-value.c: Ditto.
7173 * tui/tui-win.c: Ditto.
7174
7175 2011-02-25 Michael Snyder <msnyder@vmware.com>
7176
7177 * inferior.c (print_inferior): Accept a string instead of an int
7178 for requested_inferiors, and use get_number_or_range to parse it.
7179 (info_inferiors_command): Pass args string to print_inferior.
7180 (initialize_inferiors): Change help string for info inferiors.
7181 * inferior.h (print_inferior): Export prototype change.
7182
7183 2011-02-25 Tom Tromey <tromey@redhat.com>
7184
7185 * common/ax.def (invalid2): Set to 0x31.
7186
7187 2011-02-25 Jan Kratochvil <jan.kratochvil@redhat.com>
7188
7189 * dwarf2loc.c (disassemble_dwarf_expression) <DW_OP_breg[0-9]+>: Use
7190 L and plongest.
7191 (disassemble_dwarf_expression) <DW_OP_bregx>: Drop variable offset,
7192 use L and plongest.
7193 (disassemble_dwarf_expression) <DW_OP_fbreg>: Use L and plongest.
7194
7195 2011-02-24 Michael Snyder <msnyder@vmware.com>
7196
7197 * Makefile.in (clean): Make clean should remove generated files
7198 observer.h and observer.inc.
7199
7200 2011-02-24 Joel Brobecker <brobecker@adacore.com>
7201
7202 Revert the following patch (not approved yet):
7203 2011-02-21 Hui Zhu <teawater@gmail.com>
7204 * Makefile.in (HFILES_NO_SRCDIR): Add printcmd.h.
7205 * ax-gdb.c (gen_printf_expr_callback): New function.
7206 * ax-gdb.h (gen_printf_expr_callback): Forward declare.
7207 * ax-general.c (ax_memcpy): New function.
7208 (ax_print): Handle "printf".
7209 (ax_reqs): Ditto.
7210 * ax.h (ax_memcpy): Forward declare.
7211 * common/ax.def (invalid2): Removed.
7212 (printf): New entry.
7213 * printcmd.c (printcmd.h): New include.
7214 (string_printf): New function.
7215 (ui_printf): Removed.
7216 (printf_command): Remove static. Call string_printf.
7217 (eval_command): Call string_printf.
7218 * printcmd.h: New file.
7219 * tracepoint.c (validate_actionline,
7220 encode_actions_1): handle printf_command.
7221
7222 2011-02-23 Tom Tromey <tromey@redhat.com>
7223
7224 * ax-general.c (ax_pick): Add missing newline.
7225
7226 2011-02-23 Michael Snyder <msnyder@vmware.com>
7227
7228 * breakpoint.c (breakpoint_1): Change first argument from an int
7229 to a char pointer, so that the function now accepts a list of
7230 breakpoints rather than just one. Use new function
7231 'number_is_in_list' to implement.
7232 (breakpoints_info): Pass char * instead of int to breakpoint_1.
7233 (watchpoints_info): Ditto.
7234 (tracepoints_info): Ditto.
7235 (maintenance_info_breakpoints): Ditto.
7236 (_initialize_breakpoint): Update help strings to reflect the fact
7237 that these functions can now take more than one argument.
7238 * cli/cli-utils.c (number_is_in_list): New function.
7239 * cli/cli-utils.h (number_is_in_list): Export.
7240
7241 2011-02-23 Michael Snyder <msnyder@vmware.com>
7242
7243 * memattr.c (mem_enable_command): Use get_number_or_range.
7244 (mem_disable_command): Ditto.
7245 (mem_delete_command): Ditto.
7246 (_initialize_mem): Tweak usage message to reflect multiple
7247 arguments.
7248
7249 2011-02-22 Doug Evans <dje@google.com>
7250
7251 Add gdb.lookup_global_symbol python function.
7252 * NEWS: Add entry.
7253 * python/py-symbol.c (gdbpy_lookup_global_symbol): New function.
7254 * python/python-internal.h (gdbpy_lookup_global_symbol): Declare it.
7255 * python/python.c (GdbMethods): Add entry for lookup_global_symbol.
7256
7257 2011-02-22 Tom Tromey <tromey@redhat.com>
7258
7259 * language.c (language_class_name_from_physname): Rename
7260 'curr_language' argument to 'lang'; use in body.
7261
7262 2011-02-22 Michael Snyder <msnyder@vmware.com>
7263
7264 * cli/cli-utils.c (number_is_in_list): Check for zero return.
7265
7266 2011-02-22 Pedro Alves <pedro@codesourcery.com>
7267
7268 * frame-unwind.h: Fix comment to mention the this frame, not the
7269 next.
7270
7271 2011-02-22 Tom Tromey <tromey@redhat.com>
7272
7273 * symfile.c (auto_solib_limit): Remove.
7274 * symfile.h (auto_solib_limit): Remove.
7275
7276 2011-02-22 Joel Brobecker <brobecker@adacore.com>
7277
7278 * Makefile.in (INSTALLED_LIBS): Delete. Update comment.
7279
7280 2011-02-21 Michael Snyder <msnyder@vmware.com>
7281
7282 * gdbthread.h (print_thread_info): Change prototype.
7283 * thread.c (print_thread_info): Accept char* instead of int for
7284 requested_threads argument. Use new function number_is_in_list
7285 to determine which threads to list.
7286 (info_threads_command): Pass char* to print_thread_info.
7287 * cli/cli-utils.c (number_is_in_list): New function.
7288 * cli/cli-utils.h (number_is_in_list): Export.
7289 * mi/mi-main.c (mi_cmd_thread_info): Pass char* to
7290 print_thread_info.
7291 (print_one_inferior): Ditto.
7292 (mi_cmd_list_thread_groups): Ditto.
7293
7294 2011-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
7295
7296 * common/Makefile.in (CFLAGS): New.
7297 (COMPILE): Add $(CFLAGS).
7298
7299 2011-02-21 Tom Tromey <tromey@redhat.com>
7300
7301 * breakpoint.c (catch_syscall_command_1): Fix typo.
7302
7303 2011-02-21 Tom Tromey <tromey@redhat.com>
7304
7305 * reverse.c: Include cli-utils.h.
7306 * printcmd.c: Include cli-utils.h.
7307 (string_printf): Use skip_spaces.
7308 * cli/cli-utils.h: New file.
7309 * cli/cli-utils.c: New file.
7310 * cli/cli-dump.h (skip_spaces): Move to cli-utils.h.
7311 * cli/cli-dump.c (skip_spaces): Move to cli-utils.c.
7312 * breakpoint.h (get_number, get_number_or_range): Move to
7313 cli-utils.h.
7314 * breakpoint.c: Include cli-utils.h.
7315 (get_number_trailer, get_number, get_number_or_range)
7316 (ep_skip_leading_whitespace): Move to cli-utils.c.
7317 (create_breakpoint_sal, find_condition_and_thread)
7318 (decode_static_tracepoint_spec, watch_command_1)
7319 (watch_maybe_just_location, ep_parse_optional_if_clause)
7320 (catch_fork_command_1, catch_exec_command_1)
7321 (catch_syscall_command_1): Use skip_spaces, skip_to_space.
7322 * Makefile.in (SUBDIR_CLI_OBS): Add cli-utils.o.
7323 (SUBDIR_CLI_SRCS): Add cli-utils.c.
7324 (HFILES_NO_SRCDIR): Add cli-utils.h.
7325 (cli-utils.o): New target.
7326
7327 2011-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
7328
7329 * remote.c (remote_close): Reset INFERIOR_PTID to NULL_PTID
7330 before calling discard_all_inferiors.
7331
7332 2011-02-21 Ulrich Weigand <uweigand@de.ibm.com>
7333
7334 * opencl-lang.c (STRUCT_OCL_TYPE): Remove.
7335 (struct builtin_opencl_type): Remove.
7336 (builtin_opencl_type): Change return type to "struct type **".
7337 (lookup_opencl_vector_type): Update caller.
7338 (opencl_language_arch_info): Copy primitive type vector from gdbarch.
7339 (build_opencl_types): Install plain array of "struct type *"
7340 instead of "struct builtin_opencl_type".
7341
7342 2011-02-21 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
7343 Ulrich Weigand <uweigand@de.ibm.com>
7344
7345 * arm-linux-nat.c: Include "observer.h" and "gdbthread.h".
7346 (PTRACE_GETHBPREGS, PTRACE_SETHBPREGS): Define.
7347 (struct arm_linux_hwbp_cap): New type.
7348 (arm_linux_get_hwbp_cap): New function.
7349 (arm_linux_get_hw_breakpoint_count): Likewise.
7350 (arm_linux_get_hw_watchpoint_count): Likewise.
7351 (arm_linux_can_use_hw_breakpoint): Likewise.
7352 (arm_hwbp_type): New type.
7353 (arm_hwbp_control_t): Likewise.
7354 (struct arm_linux_hw_breakpoint): Likewise.
7355 (struct arm_linux_thread_points): Likewise.
7356 (arm_threads): New global variable.
7357 (arm_linux_find_breakpoints_by_tid): New function.
7358 (arm_hwbp_control_initialize): Likewise.
7359 (arm_hwbp_control_is_enabled): Likewise.
7360 (arm_hwbp_control_disable): Likewise.
7361 (arm_linux_hw_breakpoint_initialize): Likewise.
7362 (arm_linux_get_hwbp_type): Likewise.
7363 (arm_linux_hw_watchpoint_initialize): Likewise.
7364 (arm_linux_hw_breakpoint_equal): Likewise.
7365 (arm_linux_insert_hw_breakpoint1): Likewise.
7366 (arm_linux_remove_hw_breakpoint1): Likewise.
7367 (arm_linux_insert_hw_breakpoint): Likewise.
7368 (arm_linux_remove_hw_breakpoint): Likewise.
7369 (arm_linux_region_ok_for_hw_watchpoint): Likewise.
7370 (arm_linux_insert_watchpoint): Likewise.
7371 (arm_linux_remove_watchpoint): Likewise.
7372 (arm_linux_stopped_data_address): Likewise.
7373 (arm_linux_stopped_by_watchpoint): Likewise.
7374 (arm_linux_watchpoint_addr_within_range): Likewise.
7375 (arm_linux_new_thread): Likewise.
7376 (arm_linux_thread_exit): Likewise.
7377 (_initialize_arm_linux_nat): Install hardware breakpoint/watchpoint
7378 related target callbacks. Register arm_linux_new_thread and
7379 arm_linux_thread_exit.
7380 * arm-tdep.h (arm_pc_is_thumb): Add prototype.
7381 * arm-tdep.c (arm_pc_is_thumb): Make global.
7382 (arm_gdbarch_init): Call set_gdbarch_have_nonsteppable_watchpoint.
7383
7384 2011-02-21 Ulrich Weigand <uweigand@de.ibm.com>
7385
7386 * breakpoint.c (update_watchpoint): Do not attempt to recreate
7387 per-frame locations while within a function epilogue.
7388
7389 2011-02-21 Pierre Muller <muller@ics.u-strasbg.fr>
7390
7391 * ser-mingw.c (ser_windows_close): Reformat comment to better conform
7392 to GNU coding standards.
7393
7394 2011-02-21 Pierre Muller <muller@ics.u-strasbg.fr>
7395
7396 Allow use of mingw native on Windows 95 OS.
7397 * ser-mingw.c (CancelIo): New macro for dynamically loaded DLL entry.
7398 (ser_windows_close): Only call CancelIo if function exists.
7399 (_initialize_ser_windows): Use LoadLirary/GetProcAddress
7400 to check for existence of CancelIo function in kernel32 DLL.
7401
7402 2011-02-21 Hui Zhu <teawater@gmail.com>
7403
7404 * Makefile.in (HFILES_NO_SRCDIR): Add printcmd.h.
7405 * ax-gdb.c (gen_printf_expr_callback): New function.
7406 * ax-gdb.h (gen_printf_expr_callback): Forward declare.
7407 * ax-general.c (ax_memcpy): New function.
7408 (ax_print): Handle "printf".
7409 (ax_reqs): Ditto.
7410 * ax.h (ax_memcpy): Forward declare.
7411 * common/ax.def (invalid2): Removed.
7412 (printf): New entry.
7413 * printcmd.c (printcmd.h): New include.
7414 (string_printf): New function.
7415 (ui_printf): Removed.
7416 (printf_command): Remove static. Call string_printf.
7417 (eval_command): Call string_printf.
7418 * printcmd.h: New file.
7419 * tracepoint.c (validate_actionline,
7420 encode_actions_1): handle printf_command.
7421
7422 2011-02-19 Michael Snyder <msnyder@vmware.com>
7423
7424 * reverse.c (delete_one_bookmark): Argument is now bookmark
7425 id rather than pointer to bookmark struct.
7426 (delete_bookmark_command): Use get_number_or_range.
7427 (goto_bookmark_command): Parse with get_number instead of strtoul.
7428 (bookmark_1): New function. Print info for one bookmark.
7429 (bookmarks_info): Use get_number_or_range and bookmark_1.
7430
7431 2011-02-18 Michael Snyder <msnyder@vmware.com>
7432
7433 * thread.c (info_threads_command): Re-implement using
7434 get_number_or_range.
7435 (thread_apply_command): Ditto.
7436
7437 2011-02-18 Tom Tromey <tromey@redhat.com>
7438
7439 * common/ax.def: New file.
7440 * ax.h (enum agent_op): Use ax.def.
7441 * ax-general.c (aop_map): Use ax.def.
7442
7443 2011-02-18 Tom Tromey <tromey@redhat.com>
7444
7445 * ax-general.c (aop_map): Add pick and rot.
7446 * dwarf2loc.c (compile_dwarf_to_ax) <DW_OP_over>: Reimplement.
7447 <DW_OP_rot>: Implement.
7448 * ax.h (enum agent_op) <aop_pick, aop_rot>: New constants.
7449 (ax_pick): Declare.
7450 * ax-general.c (ax_pick): New function.
7451
7452 2011-02-18 Tom Tromey <tromey@redhat.com>
7453
7454 * Makefile.in (HFILES_NO_SRCDIR): Don't mention ada-operator.inc.
7455
7456 2011-02-18 Jan Kratochvil <jan.kratochvil@redhat.com>
7457 Tom Tromey <tromey@redhat.com>
7458
7459 * cp-support.c (make_symbol_overload_list_namespace): Do not call
7460 make_symbol_overload_list_block with NULL BLOCK.
7461 * valarith.c (unop_user_defined_p): Resolve also TYPE_CODE_TYPEDEF.
7462
7463 2011-02-18 Pedro Alves <pedro@codesourcery.com>
7464
7465 * breakpoint.c (get_number_trailer): No longer accept a NULL PP.
7466 * breakpoint.h (get_number_or_range): Declare.
7467 * printcmd.c (ALL_DISPLAYS): Declare.
7468 (delete_display): Reimplement taking a display pointer.
7469 (undisplay_command): Accept a range of displays to delete, using
7470 get_number_or_range.
7471
7472 2011-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
7473
7474 * c-valprint.c (c_val_print): Add embedded_offset to address
7475 for arrays of unspecified length.
7476 * p-valprint.c (pascal_val_print): Likewise.
7477
7478 2011-02-18 Yao Qi <yao@codesourcery.com>
7479
7480 * gdb/arm-tdep.c (arm_displaced_step_copy_insn): Move code to ...
7481 (arm_process_displaced_insn): .. here. Remove parameter INSN.
7482 (thumb_process_displaced_insn): New.
7483 * gdb/arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Update
7484 call to arm_process_displaced_insn.
7485 * gdb/arm-tdep.h : Update declaration of arm_process_displaced_insn.
7486
7487 2011-02-17 Tom Tromey <tromey@redhat.com>
7488
7489 * dwarf2loc.h (dwarf2_compile_expr_to_ax): Declare.
7490 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Rename from
7491 compile_dwarf_to_ax. No longer static. Call
7492 dwarf2_compile_cfa_to_ax.
7493 (locexpr_tracepoint_var_ref): Update.
7494 (loclist_tracepoint_var_ref): Update.
7495 * dwarf2-frame.h (dwarf2_compile_cfa_to_ax): Declare.
7496 * dwarf2-frame.c (execute_cfa_program): Remove 'this_frame'
7497 argument; add 'gdbarch' and 'pc'.
7498 (dwarf2_compile_cfa_to_ax): New function.
7499 (dwarf2_frame_cache): Update.
7500
7501 2011-02-17 Joel Brobecker <brobecker@adacore.com>
7502
7503 * ada-lang.c (ada_type_of_array): Fix the size of the array
7504 in the case of an unconstrained packed array.
7505
7506 2011-02-17 Yao Qi <yao@codesourcery.com>
7507
7508 * common/Makefile.in: Add more targets for make.
7509
7510 2011-02-16 Tom Tromey <tromey@redhat.com>
7511
7512 * dwarf2loc.c (unimplemented): Fix typo.
7513
7514 2011-02-16 Tom Tromey <tromey@redhat.com>
7515
7516 * dwarf2loc.c (unimplemented): Handle unnamed opcodes.
7517 (compile_dwarf_to_ax) <default>: Use unimplemented.
7518 <DW_OP_deref>: Update.
7519 (disassemble_dwarf_expression): Update.
7520 * dwarf2read.c (dwarf_stack_op_name): Remove 'def' argument.
7521 (decode_locdesc): Update.
7522 * dwarf2expr.h (dwarf_stack_op_name): Update.
7523
7524 2011-02-16 Tom Tromey <tromey@redhat.com>
7525
7526 * ax.h (struct aop_map) <name>: Now const.
7527
7528 2011-02-16 Tom Tromey <tromey@redhat.com>
7529
7530 * ax-gdb.c.c (gen_expr) <UNOP_MEMVAL>: Handle value kinds other
7531 than axs_rvalue.
7532
7533 2011-02-16 Yao Qi <yao@codesourcery.com>
7534
7535 * infrun.c (get_displaced_step_closure_by_addr): New.
7536 * inferior.h: Declare it.
7537 * arm-tdep.c: (arm_pc_is_thumb): Call
7538 get_displaced_step_closure_by_addr. Adjust MEMADDR if it
7539 returns non-NULL.
7540
7541 2011-02-16 Pedro Alves <pedro@codesourcery.com>
7542 Jan Kratochvil <jan.kratochvil@redhat.com>
7543
7544 gdb/
7545 * tracepoint.c (memrange_sortmerge): Fix list A's end calculation.
7546
7547 2011-02-16 Pedro Alves <pedro@codesourcery.com>
7548 Jan Kratochvil <jan.kratochvil@redhat.com>
7549
7550 * value.c (value_contents_copy_raw): Extend describing comment.
7551 Assert that the destination contents we're overwriting are wholly
7552 available.
7553 (value_contents_copy): Extend describing comment.
7554
7555 2011-02-16 Pedro Alves <pedro@codesourcery.com>
7556 Jan Kratochvil <jan.kratochvil@redhat.com>
7557
7558 * value.c (value_available_contents_eq): Remove redundant local
7559 variables. Fix available contents comparision.
7560 * value.h (value_available_contents_eq): Extend describing
7561 comment.
7562
7563 2011-02-16 Yao Qi <yao@codesourcery.com>
7564
7565 * thread.c (info_threads_command): Add missing i18n markup and remove
7566 trailing newline.
7567
7568 2011-02-15 Paul Pluzhnikov <ppluzhnikov@google.com>
7569
7570 * breakpoint.c (longjmp_names): New variable.
7571 (struct breakpoint_objfile_data): New type.
7572 (breakpoint_objfile_key): New variable.
7573 (msym_not_found): New variable.
7574 (msym_not_found_p): New predicate.
7575 (get_breakpoint_objfile_data): New function.
7576 (create_overlay_event_breakpoint): Check per-objfile cache for
7577 symbols first.
7578 (create_longjmp_master_breakpoint): Likewise.
7579 (create_std_terminate_master_breakpoint): Likewise.
7580 (create_exception_master_breakpoint): Likewise.
7581 (_initialize_breakpoint): Register per-objfile data key.
7582
7583 2011-02-15 Paul Pluzhnikov <ppluzhnikov@google.com>
7584
7585 * breakpoint.c ((create_overlay_event_breakpoint): Const-propagate
7586 parameter value.
7587 (create_longjmp_master_breakpoint): Loop over longjmp names.
7588 (create_std_terminate_master_breakpoint): Const-propagate parameter
7589 value.
7590 (update_breakpoints_after_exec): Adjust.
7591 (breakpoint_re_set): Adjust.
7592
7593 2011-02-15 Michael Snyder <msnyder@vmware.com>
7594
7595 * thread.c (info_threads_command): Process arg as thread id,
7596 or list of thread ids.
7597 (thread_find_command): New command.
7598 (_initialize_thread): Document argument for info threads.
7599 Document 'thread find' command.
7600 * NEWS: Document new command "thread find".
7601
7602 2011-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
7603
7604 * Makefile.in (ACLOCAL_AMFLAGS): Add `-I ../config'.
7605 * aclocal.m4: Regenerated with aclocal-1.11.1.
7606 * common/configure: Regenerate with autoconf-2.64.
7607
7608 2011-02-15 Ken Werner <ken.werner@de.ibm.com>
7609
7610 * opencl-lang.c (build_opencl_types): Set the size of the built-in
7611 bool data type to a size of one byte.
7612
7613 2011-02-15 Pedro Alves <pedro@codesourcery.com>
7614 Jan Kratochvil <jan.kratochvil@redhat.com>
7615
7616 * target.c (memory_xfer_live_readonly_partial): Document where to
7617 look for interface description.
7618
7619 2011-02-15 Yao Qi <yao@codesourcery.com>
7620
7621 PR tdep/12352
7622 * arm-tdep.c (copy_ldr_str_ldrb_strb): Replace PC with SP in
7623 order to store PC value on stack instead of text section.
7624
7625 2011-02-15 Thiago Jung Bauermann <bauerman@br.ibm.com>
7626
7627 * rs6000-tdep.c (IS_EFP_PSEUDOREG): Use correct constant for
7628 the EFP register set size.
7629 (efpr_pseudo_register_read): Use regcache_raw_read_part to read
7630 data from the VMX register.
7631 (efpr_pseudo_register_write): Use regcache_raw_write_part to read
7632 and write data from/to the VMX register.
7633
7634 2011-02-14 Michael Snyder <msnyder@vmware.com>
7635
7636 * command.h (enum command_class): New class 'no_set_class', for
7637 "show" commands without a corresponding "set" command.
7638 * value.c (_initialize_values): Use 'no_set_class' for "show values".
7639 * copying.c (_initialize_copying): Ditto for "show copying" and
7640 "show warranty".
7641 * cli/cli-cmds.c (init_cli_cmds): Ditto for "show commands" and
7642 "show version".
7643 * cli/cli-setshow.c (cmd_show_list): Skip "show" commands for
7644 which there is no corresponding "set" command (eg. "show copying").
7645
7646 2011-02-14 Pedro Alves <pedro@codesourcery.com>
7647 Jan Kratochvil <jan.kratochvil@redhat.com>
7648
7649 * exec.c (section_table_available_memory): Change `len' parameter
7650 type to ULONGEST.
7651 * exec.h (section_table_available_memory): Ditto.
7652 * value.h (read_value_memory): Rename the `offset' parameter to
7653 `embedded_offset'.
7654
7655 2011-02-14 Pedro Alves <pedro@codesourcery.com>
7656 Jan Kratochvil <jan.kratochvil@redhat.com>
7657
7658 * memrange.c (compare_mem_ranges): Mention sort order in
7659 describing comment.
7660 (normalize_mem_ranges): Add comment. Fix ra->length calculation.
7661 * tracepoint.c (traceframe_available_memory): Extend comment to
7662 mention what happens to RESULT when the target does not support
7663 the query.
7664
7665 2011-02-14 Pedro Alves <pedro@codesourcery.com>
7666 Jan Kratochvil <jan.kratochvil@redhat.com>
7667
7668 * value.c (mark_value_bytes_unavailable): Fix indexing the `bef'
7669 range.
7670
7671 2011-02-14 Pedro Alves <pedro@codesourcery.com>
7672
7673 * value.c (value_bits_valid, value_bits_synthetic_pointer):
7674 No longer handle NULL values.
7675
7676 2011-02-14 Pedro Alves <pedro@codesourcery.com>
7677
7678 * exceptions.h (NOT_AVAILABLE_ERROR): New error.
7679 * value.c: Include "exceptions.h".
7680 (require_available): Throw NOT_AVAILABLE_ERROR instead of a
7681 generic error.
7682 * cp-abi.c: Include gdb_assert.h.
7683 (baseclass_offset): Add `embedded_offset' and `val' parameters.
7684 Assert the method is implemented. Wrap NOT_AVAILABLE_ERROR
7685 errors.
7686 * cp-abi.h (baseclass_offset): Add `embedded_offset' and `val'
7687 parameters. No longer returns -1 on error.
7688 (struct cp_abi_ops) <baseclass_offset>: Add `embedded_offset' and
7689 `val' parameters.
7690 * cp-valprint.c: Include exceptions.h.
7691 (cp_print_value): Handle NOT_AVAILABLE_ERROR errors when fetching
7692 the baseclass_offset. Handle unavailable base classes. Use
7693 val_print_invalid_address.
7694 * p-valprint.c: Include exceptions.h.
7695 (pascal_object_print_value): Handle NOT_AVAILABLE_ERROR errors
7696 when fetching the baseclass_offset. No longer expect
7697 baseclass_offset returning -1. Handle unavailable base classes.
7698 Use val_print_invalid_address.
7699 * valops.c (dynamic_cast_check_1): Rename `contents' parameter to
7700 `valaddr' parameter, and change its type to gdb_byte pointer. Add
7701 `embedded_offset' and `val' parameters. Adjust.
7702 (dynamic_cast_check_2): Rename `contents' parameter to `valaddr'
7703 parameter, and change its type to gdb_byte pointer. Add
7704 `embedded_offset' and `val' parameters. Adjust. No longer expect
7705 baseclass_offset returning -1.
7706 (value_dynamic_cast): Use value_contents_for_printing rather than
7707 value_contents. Adjust.
7708 (search_struct_field): No longer expect baseclass_offset returning
7709 -1.
7710 (search_struct_method): If reading memory from the target is
7711 necessary, wrap it in a new value to pass to baseclass_offset. No
7712 longer expect baseclass_offset returning -1.
7713 (find_method_list): No longer expect baseclass_offset returning
7714 -1. Use value_contents_for_printing rather than value_contents.
7715 * valprint.c (val_print_invalid_address): New function.
7716 * valprint.h (val_print_invalid_address): Declare.
7717 * gdbtypes.c (is_unique_ancestor_worker): New `embedded_offset'
7718 and `val' parameters. No longer expect baseclass_offset returning
7719 -1. Adjust.
7720 * gnu-v2-abi.c: Include "exceptions.h".
7721 (gnuv2_baseclass_offset): Add `embedded_offset' and `val'
7722 parameters. Handle unavailable memory. Recurse through
7723 gnuv2_baseclass_offset directly, rather than through
7724 baseclass_offset. No longer returns -1 on not found, instead
7725 throw an error.
7726 * gnu-v3-abi.c (gnuv3_baseclass_offset): Add `embedded_offset' and
7727 `val' parameters. Adjust.
7728
7729 2011-02-14 Pedro Alves <pedro@codesourcery.com>
7730
7731 * tracepoint.c (memrange_sortmerge): Don't merge ranges that are
7732 almost but not quite adjacent.
7733
7734 2011-02-14 Pedro Alves <pedro@codesourcery.com>
7735
7736 * value.h (value_entirely_available): Declare.
7737 * value.c (value_entirely_available): New function.
7738 * c-valprint.c (c_value_print): Don't try fetching the pointer's
7739 real type if the pointer is unavailable.
7740
7741 2011-02-14 Pedro Alves <pedro@codesourcery.com>
7742
7743 * valops.c (value_repeat): Use read_value_memory instead of
7744 read_memory.
7745
7746 2011-02-14 Pedro Alves <pedro@codesourcery.com>
7747
7748 * value.h (value_contents_copy, value_contents_copy_raw): Declare.
7749 * value.c (value_contents_copy_raw, value_contents_copy): New
7750 functions.
7751 (value_primitive_field): Use value_contents_copy_raw instead of
7752 memcpy.
7753 * valops.c (value_fetch_lazy): Use value_contents_copy instead of
7754 memcpy.
7755 (value_array, value_slice): Ditto.
7756 * valarith.c (value_subscripted_rvalue): Use
7757 value_contents_copy_raw instead of memcpy.
7758
7759 2011-02-14 Pedro Alves <pedro@codesourcery.com>
7760
7761 <unavailable> references.
7762
7763 * valops.c (get_value_at): Use value_from_contents_and_address,
7764 avoiding read_memory.
7765
7766 2011-02-14 Pedro Alves <pedro@codesourcery.com>
7767
7768 * c-valprint.c (c_val_print): Print a string with unavailable
7769 contents as an array.
7770
7771 2011-02-14 Pedro Alves <pedro@codesourcery.com>
7772
7773 * value.h (unpack_bits_as_long): Delete declaration.
7774 (unpack_value_bits_as_long): Declare.
7775 (unpack_value_field_as_long): Declare.
7776 (value_field_bitfield): Declare.
7777 * value.c (unpack_bits_as_long): Rename to...
7778 (unpack_value_bits_as_long_1): ... this. Add embedded_offset and
7779 value parameters. Return the extracted result in a new output
7780 parameter. If the value contents are unavailable, return false,
7781 otherwise return true.
7782 (unpack_value_bits_as_long): New.
7783 (unpack_field_as_long): Rename to...
7784 (unpack_value_field_as_long_1): ... this. Add embedded_offset and
7785 Add embedded_offset and value parameters. Return the extracted
7786 result in a new output parameter. If the value contents are
7787 unavailable, return false, otherwise return true.
7788 (unpack_value_field_as_long): New.
7789 (unpack_field_as_long_1): New.
7790 (unpack_field_as_long): Reimplement as wrapper around
7791 unpack_value_field_as_long_1.
7792 (value_field_bitfield): New function.
7793 * valops.c (value_fetch_lazy): When fetching a bitfield, use
7794 unpack_value_bits_as_long. Mark the value as unavailable, if it
7795 is unavailable.
7796 * jv-valprint.c (java_print_value_fields): Use
7797 value_field_bitfield.
7798 * p-valprint.c (pascal_object_print_value_fields): Use
7799 value_field_bitfield.
7800 * cp-valprint.c (cp_print_value_fields): Use value_field_bitfield.
7801
7802 2011-02-14 Pedro Alves <pedro@codesourcery.com>
7803
7804 * value.c (get_internalvar_integer): Also return the int value of
7805 TYPE_CODE_INT INTERNALVAR_VALUE values.
7806 (set_internalvar): Don't special case TYPE_CODE_INT.
7807
7808 2011-02-14 Pedro Alves <pedro@codesourcery.com>
7809
7810 * value.c (struct internalvar) <enum internalvar_kind>: Remove
7811 INTERNALVAR_POINTER.
7812 <pointer>: Delete.
7813 (value_of_internalvar): Remove INTERNALVAR_POINTER handling.
7814 (set_internalvar): Remove special TYPE_CODE_PTR handling.
7815 (preserve_one_internalvar): Remove INTERNALVAR_POINTER handling.
7816
7817 2011-02-14 Pedro Alves <pedro@codesourcery.com>
7818
7819 * value.h (value_available_contents_eq): Declare.
7820 * value.c (find_first_range_overlap): New function.
7821 (value_available_contents_eq): New function.
7822 * valprint.c (val_print_array_elements): Use
7823 value_available_contents_eq.
7824 * ada-valprint.c (val_print_packed_array_elements): Use
7825 value_available_contents_eq.
7826 * jv-valprint.c (java_value_print): Use
7827 value_available_contents_eq.
7828
7829 2011-02-14 Pedro Alves <pedro@codesourcery.com>
7830
7831 * target.c (target_read_live_memory): New function.
7832 (memory_xfer_live_readonly_partial): New.
7833 (memory_xfer_partial): If reading from a traceframe, fallback to
7834 reading unavailable read-only memory from read-only regions of
7835 live target memory.
7836 * tracepoint.c (disconnect_tracing): Adjust.
7837 (set_current_traceframe): New, factored out from
7838 set_traceframe_number.
7839 (set_traceframe_number): Reimplement to only change the traceframe
7840 number on the GDB side.
7841 (do_restore_current_traceframe_cleanup): Adjust.
7842 (make_cleanup_restore_traceframe_number): New.
7843 (cur_traceframe_number): New global.
7844 (tfile_open): Set cur_traceframe_number to no traceframe.
7845 (set_tfile_traceframe): New function.
7846 (tfile_trace_find): If looking up a traceframe using any method
7847 other than by number, make sure the current tfile traceframe
7848 matches gdb's current traceframe. Update the current tfile
7849 traceframe if the lookup succeeded.
7850 (tfile_fetch_registers, tfile_xfer_partial)
7851 (tfile_get_trace_state_variable_value): Make sure the remote
7852 traceframe matches gdb's current traceframe.
7853 * remote.c (remote_traceframe_number): New global.
7854 (remote_open_1): Set it to -1.
7855 (set_remote_traceframe): New function.
7856 (remote_fetch_registers, remote_store_registers)
7857 (remote_xfer_memory, remote_xfer_partial)
7858 (remote_get_trace_state_variable_value): Make sure the remote
7859 traceframe matches gdb's current traceframe.
7860 (remote_trace_find): If looking up a traceframe using any method
7861 other than by number, make sure the current remote traceframe
7862 matches gdb's current traceframe. Update the current remote
7863 traceframe if the lookup succeeded.
7864 * infrun.c (fetch_inferior_event): Adjust.
7865 * tracepoint.h (set_current_traceframe): Declare.
7866 (get_traceframe_number, set_traceframe_number): Add describing
7867 comments.
7868
7869 2011-02-14 Pedro Alves <pedro@codesourcery.com>
7870
7871 Mark pieces of values as unavailable if the corresponding memory
7872 is unavailable.
7873
7874 * valops.c: Include tracepoint.h.
7875 (value_fetch_lazy): Use read_value_memory.
7876 (read_value_memory): New.
7877 * value.h (read_value_memory): Declare.
7878 * dwarf2loc.c (read_pieced_value): Use read_value_memory.
7879 * exec.c (section_table_available_memory): New function.
7880 * exec.h (section_table_available_memory): Declare.
7881
7882 2011-02-14 Pedro Alves <pedro@codesourcery.com>
7883
7884 * Makefile.in (SFILES): Add memrange.c.
7885 (HFILES_NO_SRCDIR): Add memrange.h.
7886 (COMMON_OBS): Add memrange.o.
7887 * memrange.c: New file.
7888 * memrange.h: New file.
7889 * tracepoint.c: Include memrange.h.
7890 (struct mem_range): Delete.
7891 (mem_range_s): Delete.
7892 (traceframe_available_memory): New function.
7893 * tracepoint.h (traceframe_available_memory): Declare.
7894
7895 2011-02-14 Pedro Alves <pedro@codesourcery.com>
7896
7897 * target.h (struct traceframe_info): Forward declare.
7898 (enum target_object): Add TARGET_OBJECT_TRACEFRAME_INFO.
7899 (struct target_ops) <to_traceframe_info>: New field.
7900 (target_traceframe_info): New.
7901 * target.c (update_current_target): Inherit and default
7902 to_traceframe_info.
7903 * remote.c (PACKET_qXfer_traceframe_info): New.
7904 (remote_protocol_features): Register qXfer:traceframe-info:read.
7905 (remote_xfer_partial): Handle TARGET_OBJECT_TRACEFRAME_INFO.
7906 (remote_traceframe_info): New.
7907 (init_remote_ops): Install it.
7908 (_initialize_remote): Install "set/show remote traceframe-info"
7909 commands.
7910 * tracepoint.h (parse_traceframe_info): Declare.
7911 * tracepoint.c (struct mem_range): New.
7912 (mem_range_s): New typedef.
7913 (struct traceframe_info): New.
7914 (traceframe_info): New global.
7915 (free_traceframe_info): New function.
7916 (clear_traceframe_info): New function.
7917 (start_tracing, tfind_1, set_traceframe_number): Clear traceframe
7918 info.
7919 (build_traceframe_info): New function.
7920 (tfile_traceframe_info): New function.
7921 (init_tfile_ops): Install tfile_traceframe_info.
7922 (traceframe_info_start_memory, free_result): New functions.
7923 (memory_attributes, traceframe_info_elements): New globals.
7924 (parse_traceframe_info, get_traceframe_info): New functions.
7925 * features/traceframe-info.dtd: New file.
7926 * Makefile.in (XMLFILES): Add traceframe-info.dtd.
7927
7928 2011-02-14 Pedro Alves <pedro@codesourcery.com>
7929
7930 Base support for <unavailable> value contents.
7931
7932 * value.h (value_bytes_available): Declare.
7933 (mark_value_bytes_unavailable): Declare.
7934 * value.c (struct range): New struct.
7935 (range_s): New typedef.
7936 (ranges_overlap): New function.
7937 (range_lessthan): New function.
7938 (ranges_contain_p): New function.
7939 (struct value) <unavailable>: New field.
7940 (value_bytes_available): New function.
7941 (mark_value_bytes_unavailable): New function.
7942 (require_not_optimized_out): Constify parameter.
7943 (require_available): New function.
7944 (value_contents_all, value_contents): Require all bytes be
7945 available.
7946 (value_free): Free `unavailable'.
7947 (value_copy): Copy `unavailable'.
7948 * valprint.h (val_print_unavailable): Declare.
7949 * valprint.c (valprint_check_validity): Rename `offset' parameter
7950 to `embedded_offset'. If printing a scalar, check whether the
7951 value chunk is available.
7952 (val_print_unavailable): New.
7953 (val_print_scalar_formatted): Check whether the value is
7954 available.
7955 * python/py-prettyprint.c (apply_val_pretty_printer): Refuse
7956 pretty-printing unavailable values.
7957
7958 2011-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
7959
7960 Fix const/volatile qualifiers of C++ types, PR c++/12328.
7961 * c-typeprint.c (c_type_print_args): Update the function comment. New
7962 variable param_type, initialize it. Remove const/volatile qualifiers
7963 for language_cplus and !show_artificial. Use param_type.
7964
7965 2011-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
7966
7967 * symtab.c (find_pc_sect_line): New variable objfile, initialize it
7968 from S. Iterate S using ALL_OBJFILE_SYMTABS. Verify BV for each S.
7969 * symtab.h (struct symtab) <next>: Comment extension.
7970
7971 2011-02-12 Yao Qi <yao@codesourcery.com>
7972
7973 * Makefile.in (CLEANDIRS): Remove duplicated common dir.
7974
7975 2011-02-11 Yao Qi <yao@codesourcery.com>
7976
7977 * common/Makefile.in: Add copyright header.
7978
7979 2011-02-11 Pedro Alves <pedro@codesourcery.com>
7980
7981 * infrun.c (proceed): Move switching out and in of tfind mode from
7982 here ...
7983 (fetch_inferior_event): ... to here.
7984
7985 2011-02-11 Yao Qi <yao@codesourcery.com>
7986
7987 * Makefile.in: Remove signals.o from COMMON_OBS. Link
7988 libcommon.a.
7989 * configure.ac: Add common to sub dir.
7990 * configure: Regenerate.
7991
7992 2011-02-11 Yao Qi <yao@codesourcery.com>
7993
7994 Build libcommon.a.
7995
7996 * common/Makefile.in: New.
7997 * common/configure.ac: New.
7998 * common/aclocal.m4: New.
7999 * common/configure: Generate.
8000
8001 2011-02-10 Pedro Alves <pedro@codesourcery.com>
8002
8003 * vec.h (VEC_block_remove): Place VEC_ASSERT_INFO on the right
8004 side of the parenthesis.
8005
8006 Merge from GCC:
8007 2010-07-13 Jakub Jelinek <jakub@redhat.com>
8008 * vec.h (VEC_block_remove): Fix comment.
8009
8010 2011-02-08 Michael Snyder <msnyder@vmware.com>
8011
8012 * linux-nat.c (linux_nat_filter_event): Fix typo in comment.
8013
8014 2011-02-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8015
8016 * i386-tdep.c (i386_process_record): Rename l suffixes to d suffixes
8017 in comments for pcmpgtd, pcmpeqd, psubd, paddd, pcmpgtd, pcmpeqd,
8018 psubd and paddd.
8019
8020 2011-02-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8021
8022 PR 12361.
8023 * i386-tdep.c (i386_process_record) <0x660f3807>: Fix the comment to
8024 phsubsw.
8025 (i386_process_record) <lddqu>: Fix the opcode to 0xf20ff0.
8026 (i386_process_record) <0x0f3807>: Fix the comment to phsubsw.
8027
8028 2011-02-08 Ulrich Weigand <uweigand@de.ibm.com>
8029
8030 * dwarf2read.c (read_subroutine_type): Set special calling
8031 convention flag for functions compiled by IBM XL C for OpenCL.
8032 * ppc-sysv-tdep.c: Include "dwarf2.h"
8033 (ppc_sysv_abi_push_dummy_call): Implement IBM OpenCL vector types
8034 calling convention.
8035 (do_ppc_sysv_return_value): Add FUNC_TYPE argument. Implement
8036 IBM OpenCL vector types calling convention.
8037 (ppc_sysv_abi_return_value): Pass through FUNC_TYPE.
8038 (ppc_sysv_abi_broken_return_value): Likewise.
8039 (ppc64_sysv_abi_push_dummy_call): Implement IBM OpenCL vector
8040 types calling convention.
8041 (ppc64_sysv_abi_return_value): Likewise.
8042 * spu-tdep.c: Include "dwarf2.h"
8043 (spu_return_value): Implement IBM OpenCL vector types calling
8044 convention.
8045
8046 2011-02-08 Ulrich Weigand <uweigand@de.ibm.com>
8047
8048 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Implement
8049 correct ABI for AltiVec vector arguments.
8050
8051 2011-02-07 Pedro Alves <pedro@codesourcery.com>
8052
8053 * valprint.c (val_print): Extend comment.
8054 * ada-valprint.c (ada_valprint): Rewrite comment deferring
8055 interface explanation to val_print.
8056 (ada_val_print_array): Adjust comment to current interface.
8057 (print_field_values): Adjust comment to current interface.
8058 * c-valprint.c (c_val_print): Rewrite comment deferring interface
8059 explanation to val_print.
8060 * f-valprint.c (f_val_print): Ditto.
8061 * jv-valprint.c (java_val_print): Ditto.
8062 * m2-valprint.c (m2_val_print): Ditto.
8063 * p-valprint.c (pascal_val_print): Ditto.
8064
8065 2011-02-07 Thiago Jung Bauermann <bauerman@br.ibm.com>
8066
8067 * breakpoint.c (parse_breakpoint_sals): Fix description.
8068
8069 2011-02-04 Sami Wagiaalla <swagiaal@redhat.com>
8070 Oguz Kayral <oguzkayral@gmail.com>
8071
8072 * python/py-inferior.c (python_on_normal_stop): New function.
8073 (python_on_resume): New function.
8074 (python_inferior_exit): New function.
8075 (gdbpy_initialize_inferior): Add normal_stop, target_resumed, and
8076 inferior_exit observers.
8077 * python/py-evtregistry.c: New file.
8078 * python/py-threadevent.c : New file.
8079 * python/py-event.c: New file.
8080 * python/py-evts.c: New file.
8081 * python/py-continueevent.c: New file.
8082 * python/py-bpevent.c: New file.
8083 * python/py-signalevent.c: New file.
8084 * python/py-exetiedevent.c: New file.
8085 * python/py-breakpoint.c (gdbpy_breakpoint_from_bpstats): New function.
8086 Move struct breakpoint_object from here...
8087 * python/python-internal.h: ... to here.
8088 * python/py-event.h: New file.
8089 * python/py-events.h: New file.
8090 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-breakpointstopevent.o,
8091 py-continueevent.o, py-event.o, py-eventregistry.o, py-events.o,
8092 py-exitedevent.o, py-signalstopevent.o, and py-stopevent.o.
8093 (SUBDIR_PYTHON_SRCS): Add py-breakpointstopevent.c,
8094 py-continueevent.c, py-event.c, py-eventregistry.c, py-events.c,
8095 py-exitedevent.c, py-signalstopevent.c, and py-stopevent.c.
8096 Add build rules for all the above.
8097
8098 2011-02-04 Tom Tromey <tromey@redhat.com>
8099
8100 * dwarf2read.c (dwarf2_section_empty_p): New function.
8101 (dwarf2_read_section): Use dwarf2_section_empty_p.
8102 (dwarf2_section_size): New function.
8103 (dwarf2_get_section_info): Unconditionally read section.
8104 (dwarf2_read_index): Use dwarf2_section_empty_p.
8105 (partial_read_comp_unit_head): Use dwarf2_section_size.
8106 (dwarf2_symbol_mark_computed): Likewise.
8107
8108 2011-02-04 David Daney <ddaney@caviumnetworks.com>
8109
8110 * NEWS: Add item for "catch syscall" on mips*-linux* targets.
8111
8112 2011-02-04 David Daney <ddaney@caviumnetworks.com>
8113
8114 * mips-linux-tdep.c: Include xml-syscall.h.
8115 (mips_linux_get_syscall_number): New function.
8116 (mips_linux_init_abi): Add calls to
8117 mips_linux_get_syscall_number() and set_xml_syscall_file_name().
8118 * data-directory/Makefile.in (SYSCALLS_FILES): Add
8119 mips-o32-linux.xml, mips-n32-linux.xml and mips-n64-linux.xml
8120 * syscalls/mips-n32-linux.xml: New file.
8121 * syscalls/mips-n64-linux.xml: New file.
8122 * syscalls/mips-o32-linux.xml: New file.
8123
8124 2011-02-04 Ulrich Weigand <ulrich.weigand@linaro.org>
8125
8126 * dwarf2read.c (dwarf2_ranges_read): Skip empty range entries.
8127 Complain about inverted range entries.
8128 (dwarf2_record_block_ranges): Likewise.
8129
8130 2011-02-04 Thiago Jung Bauermann <bauerman@br.ibm.com>
8131
8132 Fix some typos.
8133 * breakpoint.c (update_watchpoint): Fix name of the
8134 update_global_location_list function.
8135 (print_one_breakpoint): Fix typo.
8136 (_initialize_breakpoint): Remove extra space in hbreak help
8137 string.
8138 * breakpoint.h (struct bp_location) <length>: Fix field
8139 description.
8140
8141 2011-02-04 Pedro Alves <pedro@codesourcery.com>
8142
8143 * regcache.c (registers_changed_ptid): Don't explictly always
8144 clear `current_regcache'. Only clear current_thread_ptid and
8145 current_thread_arch when PTID matches. Only reinit the frame
8146 cache if PTID matches the current inferior_ptid. Move alloca(0)
8147 call to ...
8148 (registers_changed): ... here.
8149
8150 2011-02-03 Ulrich Weigand <ulrich.weigand@linaro.org>
8151
8152 * arm-tdep.c (arm_skip_stack_protector): Accept any symbol that
8153 starts with __stack_chk_guard as stack guard symbol.
8154
8155 2011-02-03 Andrew Burgess <aburgess@broadcom.com>
8156
8157 * disasm.c (compare_lines): Handle the end of sequence markers
8158 within the line table to better support disassembling over
8159 compilation unit boundaries.
8160
8161 2011-02-02 Ulrich Weigand <ulrich.weigand@linaro.org>
8162
8163 * arm-tdep.c (skip_prologue_function): Add GDBARCH and IS_THUMB
8164 arguments. Skip in-prologue calls to glibc __aeabi_read_tp
8165 implementation even if no symbols are available.
8166 (thumb_analyze_prologue): Update call to skip_prologue_function.
8167 (arm_analyze_prologue): Likewise.
8168
8169 2011-02-02 Ulrich Weigand <ulrich.weigand@linaro.org>
8170
8171 * arm-tdep.c: Include "observer.h".
8172 (arm_prologue_this_id): Use frame PC if get_frame_func returns 0.
8173 (arm_exidx_data_key): New static variable.
8174 (struct arm_exidx_entry, arm_exidx_entry_s): New data types.
8175 (struct arm_exidx_data): Likewise.
8176 (arm_exidx_data_free): New function.
8177 (arm_compare_exidx_entries): Likewise.
8178 (arm_obj_section_from_vma): Likewise.
8179 (arm_exidx_new_objfile): Likewise.
8180 (arm_find_exidx_entry): Likewise.
8181 (arm_exidx_fill_cache): Likewise.
8182 (arm_exidx_unwind_sniffer): Likewise.
8183 (arm_exidx_unwind): New global variable.
8184 (arm_gdbarch_init): Append unwinder arm_exidx_unwind.
8185 (_initialize_arm_tdep): Attach arm_exidx_new_objfile to new_objfile
8186 observer. Register arm_exidx_data_key as objfile data.
8187
8188 2011-02-02 Ulrich Weigand <ulrich.weigand@linaro.org>
8189
8190 * arm-tdep.c (arm_analyze_load_stack_chk_guard): Avoid build break
8191 due to accessing uninitialized variable. Fix indentation.
8192
8193 2011-02-02 Pedro Alves <pedro@codesourcery.com>
8194
8195 * c-valprint.c (c_value_print): When doing virtual base pointer
8196 adjustment, create a new value with adjusted contents rather than
8197 changing the contents of the value being printed (and getting it
8198 wrong).
8199
8200 2011-02-02 Pedro Alves <pedro@codesourcery.com>
8201
8202 * xml-support.c (xml_find_attribute): New.
8203 (xinclude_start_include): Use it.
8204 * xml-support.h (xml_find_attribute): Declare.
8205 * memory-map.c (memory_map_start_memory)
8206 (memory_map_start_property): Use xml_find_attribute.
8207 * osdata.c (osdata_start_osdata, osdata_start_column): Use
8208 xml_find_attribute.
8209 * remote.c (start_thread): Use xml_find_attribute.
8210 * solib-target.c (library_list_start_segment)
8211 (library_list_start_section, library_list_start_library)
8212 (library_list_start_list): Use xml_find_attribute.
8213 * xml-tdesc.c (tdesc_start_target, tdesc_start_feature)
8214 (tdesc_start_union, tdesc_start_struct, tdesc_start_flags)
8215 (tdesc_start_field): Use xml_find_attribute.
8216
8217 2011-02-02 Ulrich Weigand <uweigand@de.ibm.com>
8218
8219 * opencl-lang.c (STRINGIFY): Rename to OCL_STRING.
8220 (BUILD_OCL_VTYPES): Update.
8221
8222 2011-02-02 Joel Brobecker <brobecker@adacore.com>
8223
8224 * configure.ac: Work around non-GNU sed limitation when computing
8225 python version number.
8226 * configure: Regenerate.
8227
8228 2011-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
8229
8230 Fix debug printing of TYPE_INSTANCE.
8231 * expprint.c (print_subexp_standard) <TYPE_INSTANCE>: New.
8232 (dump_subexp_body_standard) <TYPE_INSTANCE>: New.
8233
8234 2011-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
8235
8236 Fix debug printing of BINOP_IN, OP_OBJC_MSGCALL,
8237 OP_F77_UNDETERMINED_ARGLIST, OP_COMPLEX, OP_OBJC_SELECTOR, OP_NAME,
8238 OP_OBJC_NSSTRING, OP_F90_RANGE and OP_DECFLOAT.
8239 * ada-operator.inc: Rename the file to ...
8240 * ada-operator.def: ... here, wrap all the entries by macro OP.
8241 * expprint.c (op_name_standard): Remove all the entries. Include
8242 "std-operator.def" instead.
8243 * expression.h (enum exp_opcode): Include "std-operator.def" and
8244 "ada-operator.def". Move all the entries ...
8245 * std-operator.def: ... here, wrap all the entries by macro OP.
8246
8247 2011-01-31 Paul Pluzhnikov <ppluzhnikov@google.com>
8248
8249 * breakpoint.h (remove_jit_event_breakpoints): New prototype.
8250 * breakpoint.c (remove_jit_event_breakpoints): New function.
8251 * jit.c (jit_descriptor_addr): Delete.
8252 (registering_code): Delete.
8253 (clear_int): Delete.
8254 (jit_inferior_data): New variable.
8255 (struct jit_inferior_data): New type.
8256 (get_jit_inferior_data): New function.
8257 (jit_inferior_data_cleanup): New function.
8258 (jit_read_descriptor): Adjust.
8259 (jit_register_code): Adjust.
8260 (jit_breakpoint_re_set_internal): New function; move code here ...
8261 (jit_inferior_init): ... from here.
8262 (jit_breakpoint_re_set): Adjust.
8263 (jit_reset_inferior_data_and_breakpoints): New function.
8264 (jit_inferior_created_observer): Adjust.
8265 (jit_inferior_exit_hook): Adjust.
8266 (jit_executable_changed_observer): New function.
8267 (jit_event_handler): Adjust.
8268 (_initialize_jit): Adjust.
8269
8270 2011-01-31 Michael Snyder <msnyder@vmware.com>
8271
8272 * m32r-tdep.c (m32r_gdbarch_init): Replace accidentally deleted
8273 line.
8274
8275 2011-01-31 Tom Tromey <tromey@redhat.com>
8276
8277 PR python/12216:
8278 * python/python.c (execute_gdb_command): Call
8279 prevent_dont_repeat.
8280 * top.c (suppress_dont_repeat): New global.
8281 (dont_repeat): Use it.
8282 (prevent_dont_repeat): New function.
8283 * command.h (prevent_dont_repeat): Declare.
8284
8285 2011-01-31 Tom Tromey <tromey@redhat.com>
8286
8287 * infcmd.c (finish_backward): Use breakpoint_set_silent.
8288 * python/py-breakpoint.c (bppy_set_silent): Use
8289 breakpoint_set_silent.
8290 (bppy_set_thread): Use breakpoint_set_thread.
8291 (bppy_set_task): Use breakpoint_set_task.
8292 * breakpoint.h (breakpoint_set_silent, breakpoint_set_thread)
8293 (breakpoint_set_task): Declare.
8294 (make_breakpoint_silent): Remove.
8295 * breakpoint.c (breakpoint_set_silent): New function.
8296 (breakpoint_set_thread): Likewise.
8297 (breakpoint_set_task): Likewise.
8298 (make_breakpoint_silent): Remove.
8299
8300 2011-01-31 Tom Tromey <tromey@redhat.com>
8301
8302 * breakpoint.h (user_breakpoint_p): Declare.
8303 * breakpoint.c (user_breakpoint_p): New function.
8304 (breakpoint_1): Use it.
8305 (save_breakpoints): Likewise.
8306
8307 2011-01-31 Joel Brobecker <brobecker@adacore.com>
8308
8309 * configure.ac: Add handling of Python distribution on Windows.
8310 * python-config.py: If the LIBS, SYSLIBS, LIBPL and/or LINKFORSHARED
8311 sysconfig variables are not defined, then do not use them.
8312 On Windows, if LIBPL is not defined, then use prefix + '/libs'
8313 instead. On Windows, return all paths using forward-slashes
8314 rather than backslashes.
8315
8316 2011-01-31 Joel Brobecker <brobecker@adacore.com>
8317
8318 * configure.ac: Remove fallback behavior for building
8319 against Python. Remove tweaking of Python include path.
8320 Add PYTHON_CPPFLAGS and PYTHON_LIBS substitution.
8321 (AC_TRY_LIBPYTHON): Adjust program used in linking test.
8322 If link is successful, set PYTHON_CPPFLAGS and PYTHON_LIBS.
8323 Always restore CPPFLAGS and LIBS after linking test.
8324 * configure: Regenerated.
8325 * Makefile.in (INTERNAL_CPPFLAGS): Add @PYTHON_CPPFLAGS@.
8326 (INSTALLED_LIBS, CLIBS): Add @PYTHON_LIBS@.
8327 * python/python-internal.h: Adjust includes of Python .h files.
8328
8329 2011-01-31 Joel Brobecker <brobecker@adacore.com>
8330
8331 * tracepoint.c (traceframe_walk_blocks): Add missing i18n markup
8332 in error message.
8333
8334 2011-01-31 Joel Brobecker <brobecker@adacore.com>
8335
8336 * inflow.c (gdb_has_a_terminal): Fix typo in interactive_mode
8337 value test.
8338
8339 2011-01-31 Yao Qi <yao@codesourcery.com>
8340
8341 * arm-linux-nat.c: Update calls to regcache_register_status
8342 instead of regcache_valid_p.
8343 * aix-thread.c: Likewise.
8344 * i386gnu-nat.c: Likewise.
8345
8346 2011-01-29 Jan Kratochvil <jan.kratochvil@redhat.com>
8347
8348 Fix crash.
8349 * valops.c (compare_parameters): Verify TYPE_NFIELDS before
8350 touching TYPE_FIELD_ARTIFICIAL.
8351
8352 2011-01-28 Richard Earnshaw <rearnsha@arm.com>
8353
8354 * MAINTAINERS: Move myself from Responsible Maintainers to Authorized
8355 Committers.
8356
8357 2011-01-28 Pedro Alves <pedro@codesourcery.com>
8358
8359 * tracepoint.c (tfile_xfer_partial): If there's no traceframe
8360 selected, don't try iterating over the traceframe's blocks.
8361 (tfile_has_stack): If there's no traceframe selected, then there's
8362 no stack.
8363 (tfile_has_registers): If there's no traceframe selected, then
8364 there's no registers.
8365
8366 2011-01-28 Pedro Alves <pedro@codesourcery.com>
8367
8368 * target.c (memory_xfer_partial): No need to restore shadows if we
8369 haven't read anything.
8370
8371 2011-01-28 Pedro Alves <pedro@codesourcery.com>
8372
8373 * mips-tdep.c (mips_print_register): Use get_frame_register_value
8374 and val_print_scalar_formatted.
8375
8376 2011-01-27 Pedro Alves <pedro@codesourcery.com>
8377
8378 * tracepoint.c (tfile_read): New.
8379 (tfile_open): Use it.
8380 (tfile_get_traceframe_address): Use it.
8381 (tfile_trace_find): Use it.
8382 (walk_blocks_callback_func): New typedef.
8383 (match_blocktype): New function.
8384 (traceframe_walk_blocks): New function.
8385 (traceframe_find_block_type): New function.
8386 (tfile_fetch_registers, tfile_xfer_partial)
8387 (tfile_get_trace_state_variable_value): Use
8388 traceframe_find_block_type and tfile_read.
8389
8390 2011-01-26 Kevin Buettner <kevinb@redhat.com>
8391
8392 * remote-mips.c: Add internationalization mark ups. Remove
8393 trailing \n from already marked up strings.
8394
8395 2011-01-26 Tom Tromey <tromey@redhat.com>
8396
8397 * python/py-prettyprint.c (print_string_repr): Clear
8398 'addressprint' option when calling val_print_string.
8399 (print_children): Handle Val_pretty_default. Clear 'addressprint'
8400 option when calling val_print_string.
8401
8402 2011-01-26 Tom Tromey <tromey@redhat.com>
8403
8404 * python/python.c (gdbpy_solib_name): Use gdb_py_longest and
8405 GDB_PY_LL_ARG.
8406 * python/python-internal.h (GDB_PY_LL_ARG, GDB_PY_LLU_ARG): New
8407 macros.
8408 (gdb_py_longest, gdb_py_ulongest): New typedefs.
8409 (gdb_py_long_from_longest, gdb_py_long_from_ulongest)
8410 (gdb_py_long_as_ulongest): New defines.
8411 (gdb_py_object_from_longest, gdb_py_object_from_ulongest)
8412 (gdb_py_int_as_long): Declare.
8413 * python/py-value.c (valpy_lazy_string): Use gdb_py_longest,
8414 GDB_PY_LL_ARG, gdb_py_object_from_longest.
8415 (valpy_long): Add comment.
8416 * python/py-utils.c (get_addr_from_python): Use
8417 gdb_py_long_as_ulongest. Handle overflow properly.
8418 (gdb_py_object_from_longest): New function.
8419 (gdb_py_object_from_ulongest): Likewise.
8420 (gdb_py_int_as_long): Likewise.
8421 * python/py-type.c (typy_array): Use gdb_py_int_as_long.
8422 * python/py-symtab.c (salpy_get_pc): Use
8423 gdb_py_long_from_ulongest.
8424 (salpy_get_line): Use PyInt_FromLong.
8425 * python/py-param.c (set_parameter_value): Use
8426 gdb_py_int_as_long.
8427 * python/py-lazy-string.c (stpy_get_address): Use
8428 gdb_py_long_from_ulongest.
8429 * python/py-frame.c (frapy_pc): Use gdb_py_long_from_ulongest.
8430 * python/py-cmd.c (cmdpy_completer): Use gdb_py_int_as_long.
8431 * python/py-breakpoint.c (bppy_set_thread): Use
8432 gdb_py_int_as_long.
8433 (bppy_set_task): Likewise.
8434 (bppy_set_ignore_count): Likewise.
8435 (bppy_set_hit_count): Likewise.
8436 * python/py-block.c (blpy_get_start): Use
8437 gdb_py_object_from_ulongest.
8438 (blpy_get_end): Likewise.
8439 (gdbpy_block_for_pc): Use gdb_py_ulongest and GDB_PY_LLU_ARG.
8440
8441 2011-01-25 Mathieu Lacage <mathieu.lacage@inria.fr>
8442
8443 PR/symtab 11766:
8444 * gdb/objfiles.h (struct objfile) <addr_low>: New field.
8445 * gdb/solib.c (solib_read_symbols): Check for addr_low in
8446 equality test for objfile, initialize addr_low if needed.
8447
8448 2011-01-25 Pedro Alves <pedro@codesourcery.com>
8449
8450 * tui/tui-regs.c (tui_register_format): Remove dead code.
8451
8452 2011-01-25 Pedro Alves <pedro@codesourcery.com>
8453
8454 * printcmd.c (print_formatted): Use val_print_scalar_formatted
8455 instead of print_scalar_formatted.
8456 (print_scalar_formatted): Don't handle 's' format strings here,
8457 and add an assertion that we never see such format here.
8458 * valprint.h (val_print_scalar_formatted): Declare.
8459 * valprint.c (val_print_scalar_formatted): New.
8460 * c-valprint.c (c_val_print): Use val_print_scalar_formatted
8461 instead of print_scalar_formatted.
8462 * jv-valprint.c (java_val_print): Ditto.
8463 * p-valprint.c (pascal_val_print): Ditto.
8464 * ada-valprint.c (ada_val_print_1): Ditto.
8465 * f-valprint.c (f_val_print): Ditto.
8466 * infcmd.c (registers_info): Ditto.
8467 * m2-valprint.c (m2_val_print): Ditto.
8468
8469 2011-01-25 Pedro Alves <pedro@codesourcery.com>
8470
8471 * m2-valprint.c (print_unbounded_array): Pass
8472 value_contents_for_printing rather than value_contents, to
8473 m2_print_array_contents. Also pass in the value.
8474
8475 2011-01-25 Jan Kratochvil <jan.kratochvil@redhat.com>
8476
8477 * dwarf2read.c (dwarf2_read_index, write_psymtabs_to_index)
8478 (save_gdb_index_command): Switch to .gdb_index version 4.
8479
8480 2011-01-25 Pedro Alves <pedro@codesourcery.com>
8481
8482 * mi/mi-main.c (get_register): Use get_frame_register_value rather
8483 than frame_register, and always pass a valid value to val_print.
8484
8485 2011-01-25 Pedro Alves <pedro@codesourcery.com>
8486
8487 Centralize printing "<optimized out>".
8488
8489 * valprint.h (val_print_optimized_out): Declare.
8490 * cp-valprint.c (cp_print_value_fields): Use
8491 val_print_optimized_out.
8492 * jv-valprint.c (java_print_value_fields): Ditto.
8493 * p-valprint.c (pascal_object_print_value_fields): Ditto.
8494 * printcmd.c (print_formatted): Ditto.
8495 * valprint.c (valprint_check_validity): Ditto.
8496 (value_check_printable): Ditto.
8497 (val_print_optimized_out): New.
8498
8499 2011-01-25 Pedro Alves <pedro@codesourcery.com>
8500
8501 * infcmd.c (default_print_registers_info): Allocate values so to
8502 never pass a NULL value to val_print.
8503
8504 2011-01-25 Pedro Alves <pedro@codesourcery.com>
8505
8506 * cp-valprint.c (cp_print_value): Treat the 'skip' local as
8507 boolean. Make sure to always pass a value that matches the
8508 contents buffer to callees. Preserve `address' for following
8509 iterations.
8510 * value.c (value_contents_for_printing_const): New.
8511 (value_address): Constify value argument.
8512 * value.h (value_contents_for_printing_const): Declare.
8513 (value_address): Constify value argument.
8514
8515 2011-01-25 Pedro Alves <pedro@codesourcery.com>
8516
8517 * regcache.c (struct regcache_descr): Rename
8518 sizeof_raw_register_valid_p field to sizeof_raw_register_status,
8519 and sizeof_cooked_register_valid_p to
8520 sizeof_cooked_register_status.
8521 (init_regcache_descr): Adjust.
8522 (struct regcache): Rename register_valid_p field to
8523 register_status.
8524 (regcache_xmalloc_1, regcache_xfree, regcache_save)
8525 (do_cooked_read): Adjust.
8526 (regcache_valid_p): Rename to ...
8527 (regcache_register_status): ... this. Adjust.
8528 (regcache_invalidate): Adjust.
8529 (regcache_raw_read, regcache_cooked_read, regcache_raw_write):
8530 Adjust.
8531 (regcache_raw_supply): Adjust. If buf i NULL, mark the register
8532 as unavailable, not valid.
8533 (regcache_dump): Adjust.
8534 * regcache.h (enum register_status): New.
8535 (regcache_register_status): Declare.
8536 (regcache_invalidate): Delete declaration.
8537 * corelow.c (get_core_registers): Adjust.
8538 * tracepoint.c (tfile_fetch_registers): Adjust.
8539 * trad-frame.c (REG_VALUE): Rename to ...
8540 (TF_REG_VALUE): ... this.
8541 (REG_UNKNOWN): Rename to ...
8542 (TF_REG_UNKNOWN): ... this.
8543 (trad_frame_set_value, trad_frame_set_unknown): Adjust.
8544 * mi/mi-main.c (register_changed_p): Adjust.
8545
8546 2011-01-25 Pedro Alves <pedro@codesourcery.com>
8547
8548 * regcache.c (struct regcache_descr): Remove outdated comment.
8549 (init_regcache_descr): Remove sizeof_raw_register_valid_p
8550 overallocate hack.
8551 (regcache_xmalloc): Rename to ...
8552 (regcache_xmalloc_1): ... this. Add `readonly_p' parameter.
8553 Allocate the regcache type accordingly.
8554 (regcache_xmalloc): New as wrapper around regcache_xmalloc_1.
8555 (regcache_xfree): Asser the source is also readonly. Copy sizeof
8556 cooked registers, not raw.
8557 (regcache_dup_no_passthrough): Delete.
8558 (get_thread_arch_regcache): Use regcache_xmalloc_1.
8559 * h8300-tdep.c (h8300_push_dummy_call): Tweak comment to not
8560 mention obsolete write_register_bytes.
8561 * regcache.h (regcache_dup_no_passthrough): Delete declaration.
8562
8563 2011-01-25 Pedro Alves <pedro@codesourcery.com>
8564
8565 Stop remote_read_bytes from handling partial reads itself.
8566
8567 * remote-fileio.c: Include target.h.
8568 (remote_fileio_write_bytes): Delete.
8569 (remote_fileio_func_open, remote_fileio_func_write)
8570 (remote_fileio_func_rename, remote_fileio_func_unlink): Use
8571 target_read_memory.
8572 (remote_fileio_func_stat): Use target_read_memory and
8573 target_write_memory.
8574 (remote_fileio_func_gettimeofday): Use target_write_memory.
8575 (remote_fileio_func_system): Use target_read_memory.
8576 * remote.c (remote_write_bytes): Make it static.
8577 (remote_read_bytes): Don't handle partial reads here.
8578 * remote.h (remote_read_bytes): Delete declaration.
8579
8580 2011-01-25 Pedro Alves <pedro@codesourcery.com>
8581
8582 Simplify XML parsing a bit.
8583
8584 * xml-support.h (gdb_xml_parse_quick): Declare.
8585 * xml-support.c (gdb_xml_create_parser_and_cleanup_1): Renamed
8586 from gdb_xml_create_parser_and_cleanup, and added `old_chain'
8587 parameter.
8588 (gdb_xml_create_parser_and_cleanup): Reimplement on top of
8589 gdb_xml_create_parser_and_cleanup_1.
8590 (gdb_xml_parse_quick): New.
8591 * memory-map.c (parse_memory_map): Use gdb_xml_parse_quick.
8592 * osdata.c (osdata_parse): Ditto.
8593 * remote.c (remote_threads_info): Ditto.
8594 * solib-target.c (solib_target_parse_libraries): Ditto.
8595 * xml-syscall.c (syscall_parse_xml): Ditto.
8596 * xml-tdesc.c (tdesc_parse_xml): Ditto.
8597
8598 2011-01-24 Kevin Buettner <kevinb@redhat.com>
8599
8600 * configure.tgt (mips*-*-elf): New; just like mips*-*-*, but
8601 with remote-mips.o added to gdb_target_obs.
8602 * Makefile.in (ALL_TARGET_OBS): Add remote-mips.o.
8603
8604 2011-01-24 Pedro Alves <pedro@codesourcery.com>
8605
8606 * ada-valprint.c (val_print_packed_array_elements): Pass the
8607 correct struct value to val_print.
8608 (ada_val_print_1): Ditto.
8609
8610 2011-01-24 Pedro Alves <pedro@codesourcery.com>
8611
8612 Don't lose embedded_offset in printing routines throughout.
8613
8614 * valprint.h (val_print_array_elements): Change prototype.
8615 * valprint.c (val_print_array_elements): Add `embedded_offset'
8616 parameter, and adjust to pass it down to val_print, while passing
8617 `valaddr' or `address' unmodified. Take embedded_offset into
8618 account when checking repetitions.
8619 * c-valprint.c (c_val_print): Pass embedded_offset to
8620 val_print_array_elements instead of adjusting `valaddr' and
8621 `address'.
8622 * m2-valprint.c (m2_print_array_contents, m2_val_print): Pass
8623 embedded_offset to val_print_array_elements instead of adjusting
8624 `valaddr'.
8625 * p-lang.h (pascal_object_print_value_fields): Adjust prototype.
8626 * p-valprint.c (pascal_val_print): Pass embedded_offset to
8627 val_print_array_elements and pascal_object_print_value_fields
8628 instead of adjusting `valaddr'.
8629 (pascal_object_print_value_fields): Add `offset' parameter, and
8630 adjust to use it.
8631 (pascal_object_print_value): Add `offset' parameter, and adjust to
8632 use it.
8633 (pascal_object_print_static_field): Use
8634 value_contents_for_printing/value_embedded_offset, rather than
8635 value_contents.
8636 * ada-valprint.c (val_print_packed_array_elements): Add `offset'
8637 parameter, and adjust to use it. Use
8638 value_contents_for_printing/value_embedded_offset, rather than
8639 value_contents.
8640 (ada_val_print): Rename `valaddr0' parameter to `valaddr'.
8641 (ada_val_print_array): Add `offset' parameter, and adjust to use
8642 it.
8643 (ada_val_print_1): Rename `valaddr0' parameter to `valaddr', and
8644 `embedded_offset' to `offset'. Don't re-adjust `valaddr'.
8645 Instead work with offsets. Use
8646 value_contents_for_printing/value_embedded_offset, rather than
8647 value_contents. Change `defer_val_int' local type to CORE_ADDR,
8648 and use value_from_pointer to extract a target pointer, rather
8649 than value_from_longest.
8650 (print_variant_part): Add `offset' parameter. Replace
8651 `outer_valaddr' parameter by a new `outer_offset' parameter.
8652 Don't re-adjust `valaddr'. Instead pass down adjusted offsets.
8653 (ada_value_print): Use
8654 value_contents_for_printing/value_embedded_offset, rather than
8655 value_contents.
8656 (print_record): Add `offset' parameter, and adjust to pass it
8657 down.
8658 (print_field_values): Add `offset' parameter. Replace
8659 `outer_valaddr' parameter by a new `outer_offset' parameter.
8660 Don't re-adjust `valaddr'. Instead pass down adjusted offsets.
8661 Use value_contents_for_printing/value_embedded_offset, rather than
8662 value_contents.
8663 * d-valprint.c (dynamic_array_type): Use
8664 value_contents_for_printing/value_embedded_offset, rather than
8665 value_contents.
8666 * jv-valprint.c (java_print_value_fields): Add `offset' parameter.
8667 Don't re-adjust `valaddr'. Instead pass down adjusted offsets.
8668 (java_print_value_fields): Take `offset' into account. Don't
8669 re-adjust `valaddr'. Instead pass down adjusted offsets.
8670 (java_val_print): Take `embedded_offset' into account. Pass it to
8671 java_print_value_fields.
8672 * f-valprint.c (f77_print_array_1): Add `embedded_offset'
8673 parameter. Don't re-adjust `valaddr' or `address'. Instead pass
8674 down adjusted offsets.
8675 (f77_print_array): Add `embedded_offset' parameter. Pass it down.
8676 (f_val_print): Take `embedded_offset' into account.
8677
8678 2011-01-21 Joel Brobecker <brobecker@adacore.com>
8679
8680 * inflow.c: Include "gdbcmd.h".
8681 (interactive_mode): New static global, moved here from top.c.
8682 (show_interactive_mode): New function, moved here from top.c.
8683 use gdb_has_a_terminal instead of input_from_terminal_p to
8684 determine the current mode.
8685 (gdb_has_a_terminal): Add handling of the "iteractive-mode"
8686 setting.
8687 (_initialize_inflow): Add the "set/show interactive-mode"
8688 commands. Moved here from top.c, after having adjusted slightly
8689 the help text.
8690 * top.c (interactive_mode, show_interactive_mode): Delete, moved
8691 to inflow.c.
8692 (input_from_terminal_p): Remove handling of "interactive-mode"
8693 setting, moved to infow.c.
8694 (init_main): Remove creation of the "set/show interactive-mode"
8695 commands, moved to inflow.c.
8696
8697 2011-01-19 Joel Brobecker <brobecker@adacore.com>
8698
8699 * NEWS: Add entry for native ia64-hpux support.
8700
8701 2011-01-19 Tom Tromey <tromey@redhat.com>
8702
8703 PR mi/8618:
8704 * thread.c (free_thread): Free 'name'.
8705 (print_thread_info): Emit thread name. Change CLI output.
8706 (thread_name_command): New function.
8707 (do_captured_thread_select): Emit newline.
8708 (_initialize_thread): Register 'thread name' command.
8709 * target.h (struct target_ops) <to_thread_name>: New field.
8710 (target_thread_name): New macro.
8711 * target.c (update_current_target): Handle to_thread_name.
8712 * python/py-infthread.c (thpy_get_name): New function.
8713 (thpy_set_name): Likewise.
8714 (thread_object_getset): Add "name".
8715 * linux-nat.c (linux_nat_thread_name): New function.
8716 (linux_nat_add_target): Set to_thread_name.
8717 * gdbthread.h (struct thread_info) <name>: New field.
8718
8719 2011-01-18 Joel Brobecker <brobecker@adacore.com>
8720
8721 * ada-valprint.c (ada_print_scalar): Remove unsigned char downcast.
8722 (ada_val_print_1): Likewise.
8723
8724 2011-01-18 Joel Brobecker <brobecker@adacore.com>
8725
8726 * rs6000-tdep.c (rs6000_skip_prologue): Make sure that the prologue
8727 upper limit address is not greater than the function end address
8728 when the upper limit could not be computed using the debugging
8729 info.
8730
8731 2011-01-17 Tom Tromey <tromey@redhat.com>
8732
8733 * cli/cli-cmds.c (apropos_command): Free the compiled regex. Use
8734 get_regcomp_error.
8735 * utils.c: Include gdb_regex.h.
8736 (do_regfree_cleanup): New function.
8737 (make_regfree_cleanup): Likewise.
8738 (get_regcomp_error): Likewise.
8739 * gdb_regex.h (make_regfree_cleanup, get_regcomp_error): Declare.
8740
8741 2011-01-17 Tom Tromey <tromey@redhat.com>
8742
8743 * cli/cli-cmds.c (apropos_command): Fix formatting. Don't call
8744 re_compile_fastmap.
8745
8746 2011-01-17 Pierre Muller <muller@ics.u-strasbg.fr>
8747
8748 * p-exp.y (intvar): New static variable, used to set CURRENT_TYPE
8749 for internal variables.
8750 (last_was_structop): New static variable.
8751 (COMPLETE): New token.
8752 (field_exp): New rule to group all '.' suffix handling.
8753 Add mark_struct_expression calls when approriate to be able
8754 to correctly find fields for completion.
8755 (yylex): Adapt to handle field completion and set INTVAR when
8756 required.
8757
8758 2011-01-14 Yao Qi <yao@codesourcery.com>
8759
8760 * arm-tdep.c (arm_register_reggroup_p): FPS register is in
8761 save_reggroup, restore_reggroup and all_reggroup.
8762
8763 2011-01-14 Joel Brobecker <brobecker@adacore.com>
8764
8765 * ada-valprint. (ada_printchar): Use the correct type length
8766 in call to ada_emit_char.
8767 * c-valprint.c (c_val_print): Remove cast in call to LA_PRINT_CHAR.
8768
8769 2011-01-14 Pierre Muller <muller@ics.u-strasbg.fr>
8770
8771 * solib-som.h (hpux_major_release): Declare variable here.
8772 * solib-som.c: Remove <sys/utsname.h> header.
8773 (DEFAULT_HPUX_MAJOR_RELEASE): New macro.
8774 (hpux_major_release): Make global, change default value to
8775 DEFAULT_HPUX_MAJOR_RELEASE.
8776 (get_hpux_major_release): Simply return HPUX_MAJOR_RELEASE.
8777 * hppa-hpux-nat.c: Add <sys/utsname.h> include.
8778 Add "solib-som.h" header.
8779 (set_hpux_major_release): New function.
8780 (_initialize_hppa_hpux_nat): Call set_hpux_major_release.
8781
8782 2011-01-14 Mike Frysinger <vapier@gentoo.org>
8783
8784 * configure.tgt (*-*-uclinux*): Match more Linux os targets
8785
8786 2011-01-14 Joel Brobecker <brobecker@adacore.com>
8787
8788 * ia64-hpux-nat.c (ia64_hpux_fetch_register): Remove trailing
8789 new-line at end of warning message.
8790 (ia64_hpux_store_register): Remove trailing new-line at end of
8791 error message.
8792 * ia64-hpux-tdep.c: Rephrase comment.
8793 * solib-ia64-hpux.c (struct dld_info): Change type of field
8794 dld_flags from "long long" to ULONGEST.
8795
8796 2011-01-14 Pedro Alves <pedro@codesourcery.com>
8797
8798 * target.h (deprecated_child_ops): Delete declaration.
8799 * target.c (deprecated_child_ops): Delete definition.
8800
8801 2011-01-14 Pedro Alves <pedro@codesourcery.com>
8802
8803 * Makefile.in (hpux-thread.o): Delete rule.
8804 * configure.ac: Don't check for HPUX DCE threads support.
8805 * configure, config.in: Regenerate.
8806 * hppa-hpux-nat.c (child_suppress_run): Delete.
8807 (hppa_hpux_child_can_run): Delete.
8808 (_initialize_hppa_hpux_nat): Don't override to_can_run.
8809 * hpux-thread.c: Delete.
8810
8811 2011-01-13 Joel Brobecker <brobecker@adacore.com>
8812
8813 * hpux-thread.c (hpux_pid_to_str): Delete.
8814
8815 2011-01-13 Joel Brobecker <brobecker@adacore.com>
8816
8817 * ada-valprint.c (ada_emit_char): Remove strange code.
8818 Check that c is <= UCHAR_MAX before passing it to isascii.
8819 (char_at): Do not assume that TYPE_LEN is either 1 or 2.
8820
8821 2011-01-13 Joel Brobecker <brobecker@adacore.com>
8822
8823 * top.c (input_from_terminal_p): Restrict the use of interactive_mode
8824 to the case where instream is stdin.
8825
8826 2011-01-13 Joel Brobecker <brobecker@adacore.com>
8827
8828 * ia64-tdep.h (struct regcache): Forward declare.
8829 (struct ia64_infcall_ops): New struct type.
8830 (struct gdbarch_tdep): New fields "find_global_pointer_from_solib"
8831 and "infcall_ops".
8832 * ia64-tdep.c (ia64_find_global_pointer_from_dynamic_section):
8833 Renames ia64_find_global_pointer.
8834 (ia64_find_global_pointer, ia64_allocate_new_rse_frame)
8835 (ia64_store_argument_in_slot, ia64_set_function_addr: New function.
8836 (ia64_push_dummy_call): Adjust to use the new tdep ia64_infocall_ops
8837 methods.
8838 (ia64_infcall_ops): New static global constant.
8839 (ia64_gdbarch_init): Set tdep->infcall_ops.
8840 * ia64-hpux-nat.c (ia64_hpux_xfer_solib_got): New function.
8841 (ia64_hpux_xfer_partial): Add TARGET_OBJECT_HPUX_SOLIB_GOT handing.
8842 * ia64-hpux-tdep.c: Include "regcache.h", "gdbcore.h" and "inferior.h".
8843 (ia64_hpux_dummy_code): New static global constant.
8844 (ia64_hpux_push_dummy_code, ia64_hpux_allocate_new_rse_frame)
8845 (ia64_hpux_store_argument_in_slot, ia64_hpux_set_function_addr)
8846 (ia64_hpux_dummy_id, ia64_hpux_find_global_pointer_from_solib):
8847 New function.
8848 (ia64_hpux_infcall_ops): New static global constant.
8849 (ia64_hpux_init_abi): Install gdbarch and tdep methods needed
8850 for inferior function calls to work properly on ia64-hpux.
8851
8852 2011-01-13 Joel Brobecker <brobecker@adacore.com>
8853
8854 * target.h (enum target_object): Add TARGET_OBJECT_HPUX_UREGS.
8855 * ia64-tdep.h (struct frame_info): forward declaration.
8856 (struct gdbarch_tdep): Add field size_of_register_frame.
8857 * ia64-tdep.c (ia64_access_reg): Use tdep->size_of_register_frame
8858 to determine the size of the register frame.
8859 (ia64_size_of_register_frame): New function.
8860 (ia64_gdbarch_init): Set tdep->size_of_register_frame.
8861 * ia64-hpux-tdep.c: Include "target.h" and "frame.h".
8862 (IA64_HPUX_UREG_REASON): New macro.
8863 (ia64_hpux_stopped_in_syscall, ia64_hpux_size_of_register_frame):
8864 New functions.
8865 (ia64_hpux_init_abi): Set tdep->size_of_register_frame.
8866 * ia64-hpux-nat.c (ia64_hpux_xfer_uregs): New function.
8867 (ia64_hpux_xfer_partial): Add handling of TARGET_OBJECT_HPUX_UREGS
8868 objects.
8869
8870 2011-01-13 Joel Brobecker <brobecker@adacore.com>
8871
8872 Add support for ia64-hpux.
8873 * config/ia64/hpux.mh, ia64-hpux-nat.c, ia64-hpux-tdep.c,
8874 ia64-hpux-tdep.h, solib-ia64-hpux.c, solib-ia64-hpux.h: New files.
8875
8876 * configure.host: Add handling for ia64-hpux hosts. Add associated
8877 floatformats.
8878 * configure.tgt: Add handling for ia64-hpux targets.
8879 * Makefile.in (ALL_64_TARGET_OBS): Add ia64-hpux-tdep.o.
8880 (HFILES_NO_SRCDIR): Add ia64-hpux-tdep.h.
8881 (ALLDEPFILES): Add ia64-hpux-nat.c ia64-hpux-tdep.c.
8882
8883 2011-01-13 Joel Brobecker <brobecker@adacore.com>
8884
8885 [ttrace] Compute thread list immediately after attach.
8886 * inf_ttrace_attach (inf_ttrace_create_threads_after_attach):
8887 New subprogram.
8888 (inf_ttrace_attach): Use it.
8889
8890 2011-01-13 Joel Brobecker <brobecker@adacore.com>
8891
8892 * libunwind-frame.c (libunwind_frame_cache): Do not return NULL
8893 if we could not determine the frame's function address. Instead,
8894 use the frame's PC, and then continue.
8895
8896 2011-01-13 Joel Brobecker <brobecker@adacore.com>
8897
8898 * libunwind-frame.c (__LITTLE_ENDIAN, __BIG_ENDIAN): Define if
8899 not already defined.
8900
8901 2011-01-13 Joel Brobecker <brobecker@adacore.com>
8902
8903 * ia64-tdep.c (ia64_struct_type_p): New function.
8904 (ia64_extract_return_value): Handle integral values that are
8905 less than 8 bytes long.
8906 (ia64_push_dummy_call): Likewise.
8907
8908 2011-01-13 Joel Brobecker <brobecker@adacore.com>
8909
8910 * ia64-tdep.c (floatformat_ia64_ext_little): Renames
8911 floatformat_ia64_ext.
8912 (floatformat_ia64_ext_big): New static const.
8913 (floatformats_ia64_ext): Set first entry to &floatformat_ia64_ext_big.
8914
8915 2011-01-12 Tom Tromey <tromey@redhat.com>
8916
8917 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Fix error
8918 messages.
8919 * mi/mi-main.c (mi_cmd_thread_select): Fix error messages.
8920 (mi_cmd_thread_list_ids): Likewise.
8921 (mi_cmd_data_list_changed_registers): Likewise.
8922 (mi_cmd_data_list_register_values): Likewise.
8923 (mi_cmd_data_write_register_values): Likewise.
8924 (mi_cmd_data_evaluate_expression): Likewise.
8925 (mi_cmd_data_read_memory): Likewise.
8926 (mi_cmd_data_read_memory_bytes): Likewise.
8927 (mi_cmd_data_write_memory): Likewise.
8928 (mi_cmd_enable_timings): Likewise.
8929 * mi/mi-interp.c (mi_cmd_interpreter_exec): Fix error messages.
8930 * mi/mi-cmd-var.c (mi_cmd_var_create): Fix error messages.
8931 (mi_cmd_var_delete): Likewise.
8932 (mi_cmd_var_set_format): Likewise.
8933 (mi_cmd_var_show_format): Likewise.
8934 (mi_cmd_var_info_num_children): Likewise.
8935 (mi_cmd_var_list_children): Likewise.
8936 (mi_cmd_var_info_type): Likewise.
8937 (mi_cmd_var_info_expression): Likewise.
8938 (mi_cmd_var_show_attributes): Likewise.
8939 (mi_cmd_var_assign): Likewise.
8940 (mi_cmd_var_update): Likewise.
8941 (mi_cmd_enable_pretty_printing): Likewise.
8942 (mi_cmd_var_set_update_range): Likewise.
8943 * mi/mi-cmd-target.c (mi_cmd_target_file_get): Fix error
8944 messages.
8945 (mi_cmd_target_file_put): Likewise.
8946 (mi_cmd_target_file_delete): Likewise.
8947 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Fix error
8948 messages.
8949 (mi_cmd_stack_info_depth): Likewise.
8950 (mi_cmd_stack_list_locals): Likewise.
8951 (mi_cmd_stack_list_args): Likewise.
8952 (mi_cmd_stack_select_frame): Likewise.
8953 (mi_cmd_stack_select_frame): Likewise.
8954 (mi_cmd_stack_info_frame): Likewise.
8955 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Fix error
8956 messages.
8957 (mi_cmd_file_list_exec_source_files): Likewise.
8958 * mi/mi-cmd-env.c (mi_cmd_env_pwd): Fix error messages.
8959 (mi_cmd_env_cd): Likewise.
8960 (mi_cmd_env_path): Likewise.
8961 (mi_cmd_env_dir): Likewise.
8962 (mi_cmd_inferior_tty_show): Likewise.
8963 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Fix error messages.
8964 * mi/mi-cmd-break.c (mi_cmd_break_insert): Fix error messages.
8965 (mi_cmd_break_watch): Likewise.
8966
8967 2011-01-12 Thiago Jung Bauermann <bauerman@br.ibm.com>
8968
8969 * ppc-linux-nat.c (booke_cmp_hw_point): Fix whitespace.
8970 (ppc_linux_insert_hw_breakpoint): Likewise.
8971 (ppc_linux_remove_hw_breakpoint): Likewise.
8972 (ppc_linux_insert_watchpoint): Likewise.
8973
8974 2011-01-12 Andrew Burgess <aburgess@broadcom.com>
8975 Jan Kratochvil <jan.kratochvil@redhat.com>
8976
8977 PR fortran/11104 and DWARF unbound arrays detection.
8978 * dwarf2read.c (read_subrange_type): Set zero length on unspecified
8979 upper bound. Set TYPE_HIGH_BOUND_UNDEFINED if not language_ada on
8980 unspecified upper bound.
8981 * eval.c (evaluate_subexp_standard) <multi_f77_subscript>: Remove
8982 variables array_size_array, tmp_type and offset_item. New variable
8983 array. Remove call to f77_get_upperbound. New variables array_type
8984 and index. Call value_subscripted_rvalue for each dimenasion. Remove
8985 the final call to deprecated_set_value_type.
8986
8987 2011-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
8988
8989 Make value allocations more lazy.
8990 * ada-lang.c (coerce_unspec_val_to_type): Use allocate_value_lazy
8991 instead of allocate_value and set_value_lazy when possible.
8992 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use allocate_value_lazy
8993 instead of allocate_value and set_value_lazy.
8994 * findvar.c (value_of_register_lazy): Likewise.
8995 (read_var_value): Remove V preallocation, call just check_typedef in
8996 advance. Move allocate_value to LOC_CONST, LOC_LABEL,
8997 LOC_CONST_BYTES. Use allocate_value_lazy in LOC_STATIC, LOC_ARG,
8998 LOC_REF_ARG, LOC_LOCAL, LOC_BLOCK. Set ADDR instead of
8999 set_value_address and break in LOC_BLOCK. Use allocate_value_lazy and
9000 remove lval_memory set in LOC_REGPARM_ADDR. Use allocate_value_lazy
9001 in LOC_UNRESOLVED and LOC_OPTIMIZED_OUT. Add setting lval_memory at
9002 the end, remove set_value_lazy there.
9003 * valarith.c (value_subscripted_rvalue): Use allocate_value_lazy
9004 instead of allocate_value and set_value_lazy when possible.
9005 * valops.c (value_fetch_lazy): Do nop for value_optimized_out VAL.
9006 * value.c (allocate_computed_value): Use allocate_value_lazy instead
9007 of allocate_value and set_value_lazy.
9008 (value_from_contents_and_address): Use allocate_value_lazy instead of
9009 allocate_value and set_value_lazy when possible.
9010
9011 2011-01-12 Andrew Burgess <aburgess@broadcom.com>
9012
9013 * disasm.c (dump_insns): Support dumping opcodes for MI.
9014 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Allow mode to control
9015 dumping of instruction opcodes.
9016
9017 2011-01-09 Robert Millan <rmh@gnu.org> (tiny patch)
9018
9019 * configure.tgt: Detect GNU/kFreeBSD and set `gdb_osabi'
9020 appropiately.
9021
9022 2011-01-11 Tom Tromey <tromey@redhat.com>
9023
9024 * thread.c (do_captured_thread_select): Emit newline before
9025 printing frame.
9026
9027 2011-01-11 Michael Snyder <msnyder@vmware.com>
9028
9029 * s390-tdep.c: Comment cleanup, mostly periods and spaces.
9030 * score-tdep.c: Ditto.
9031 * score-tdep.h: Ditto.
9032 * ser-base.c: Ditto.
9033 * ser-go32.c: Ditto.
9034 * serial.c: Ditto.
9035 * serial.h: Ditto.
9036 * ser-mingw.c: Ditto.
9037 * ser-pipe.c: Ditto.
9038 * ser-tcp.c: Ditto.
9039 * ser-unix.c: Ditto.
9040 * sh64-tdep.c: Ditto.
9041 * shnbsd-nat.c: Ditto.
9042 * sh-tdep.c: Ditto.
9043 * sh-tdep.h: Ditto.
9044 * solib.c: Ditto.
9045 * solib-darwin.c: Ditto.
9046 * solib-frv.c: Ditto.
9047 * solib.h: Ditto.
9048 * solib-irix.c: Ditto.
9049 * solib-osf.c: Ditto.
9050 * solib-pa64.c: Ditto.
9051 * solib-som.c: Ditto.
9052 * solib-spu.c: Ditto.
9053 * solib-sunos.c: Ditto.
9054 * solib-svr4.c: Ditto.
9055 * solist.h: Ditto.
9056 * sol-thread.c: Ditto.
9057 * somread.c: Ditto.
9058 * source.c: Ditto.
9059 * source.h: Ditto.
9060 * sparc64-linux-tdep.c: Ditto.
9061 * sparc64-tdep.c: Ditto.
9062 * sparc-linux-nat.c: Ditto.
9063 * sparc-linux-tdep.c: Ditto.
9064 * sparc-sol2-nat.c: Ditto.
9065 * sparc-sol2-tdep.c: Ditto.
9066 * sparc-tdep.c: Ditto.
9067 * sparc-tdep.h: Ditto.
9068 * spu-tdep.c: Ditto.
9069 * stabsread.c: Ditto.
9070 * stabsread.h: Ditto.
9071 * stack.c: Ditto.
9072 * symfile.c: Ditto.
9073 * symfile.h: Ditto.
9074 * symmisc.c: Ditto.
9075 * symtab.c: Ditto.
9076 * symtab.h: Ditto.
9077 * target.c: Ditto.
9078 * target-descriptions.c: Ditto.
9079 * target-descriptions.h: Ditto.
9080 * target.h: Ditto.
9081 * target-memory.c: Ditto.
9082 * terminal.h: Ditto.
9083 * thread.c: Ditto.
9084 * top.c: Ditto.
9085 * tracepoint.c: Ditto.
9086 * tracepoint.h: Ditto.
9087 * trad-frame.h: Ditto.
9088 * typeprint.c: Ditto.
9089
9090 2011-01-11 Michael Snyder <msnyder@vmware.com>
9091
9092 * ui-file.c: Comment cleanup, mostly periods and spaces.
9093 * ui-file.h: Ditto.
9094 * ui-out.c: Ditto.
9095 * ui-out.h: Ditto.
9096 * utils.c: Ditto.
9097 * v850-tdep.c: Ditto.
9098 * valarith.c: Ditto.
9099 * valops.c: Ditto.
9100 * valprint.c: Ditto.
9101 * valprint.h: Ditto.
9102 * value.c: Ditto.
9103 * value.h: Ditto.
9104 * varobj.c: Ditto.
9105 * varobj.h: Ditto.
9106 * vax-tdep.c: Ditto.
9107 * vec.c: Ditto.
9108 * vec.h: Ditto.
9109 * version.h: Ditto.
9110 * windows-nat.c: Ditto.
9111 * windows-tdep.c: Ditto.
9112 * xcoffread.c: Ditto.
9113 * xcoffsolib.c: Ditto.
9114 * xml-support.c: Ditto.
9115 * xstormy16-tdep.c: Ditto.
9116 * xtensa-tdep.c: Ditto.
9117 * xtensa-tdep.h: Ditto.
9118
9119 2011-01-11 Thiago Jung Bauermann <bauerman@br.ibm.com>
9120
9121 * breakpoint.c (resources_needed_watchpoint): Fix indentation.
9122 * gdbtypes.c (is_scalar_type_recursive): Fix formatting.
9123
9124 2011-01-11 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
9125 Thiago Jung Bauermann <bauerman@br.ibm.com>
9126
9127 Implement support for PowerPC BookE ranged watchpoints.
9128 * breakpoint.h
9129 (struct breakpoint_ops) <resources_needed>: New method.
9130 Initialize to NULL in all existing breakpoint_ops instances.
9131 (struct breakpoint) <exact>: New field.
9132 (target_exact_watchpoints): Declare external global.
9133 * breakpoint.c (target_exact_watchpoints): New global flag.
9134 (update_watchpoint): Set b->type to bp_hardware_watchpoint and
9135 b->enable_state to bp_enabled before calling
9136 hw_watchpoint_used_count.
9137 (hw_watchpoint_used_count): Iterate over all bp_locations in a
9138 watchpoint. Call breakpoint's breakpoint_ops.resources_needed
9139 if available.
9140 (insert_watchpoint, remove_watchpoint): Use fixed length of 1 byte
9141 if the watchpoint is exact.
9142 (resources_needed_watchpoint): New function.
9143 (watchpoint_breakpoint_ops): Add resources_needed_watchpoint.
9144 (watch_command_1): Set b->exact if the user asked for an exact
9145 watchpoint and one can be set.
9146 (can_use_hardware_watchpoint): Add exact_watchpoints argument.
9147 Pass fixed length of 1 to target_region_ok_for_hw_watchpoint if
9148 the user asks for an exact watchpoint and one can be set. Return
9149 number of needed debug registers to watch the expression.
9150 * gdbtypes.c (is_scalar_type): New function, based on
9151 valprint.c:scalar_type_p.
9152 (is_scalar_type_recursive): New function.
9153 * gdbtypes.h (is_scalar_type_recursive): Declare.
9154 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Always
9155 handle regions when ranged watchpoints are available.
9156 (create_watchpoint_request): New function.
9157 (ppc_linux_insert_watchpoint, ppc_linux_remove_watchpoint): Use
9158 create_watchpoint_request.
9159 * rs6000-tdep.c (show_powerpc_exact_watchpoints): New function.
9160 (_initialize_rs6000_tdep): Add `exact-watchpoints' boolean to the
9161 `set powerpc' and `show powerpc' commands.
9162 * target.h (struct target_ops) <to_region_ok_for_hw_watchpoint>:
9163 Mention documentation comment in the target macro.
9164 (target_region_ok_for_hw_watchpoint): Document return value.
9165
9166 2011-01-11 Thiago Jung Bauermann <bauerman@br.ibm.com>
9167
9168 * breakpoint.c (update_watchpoint): Decide on using a software or
9169 hardware watchpoint after the bp_locations are created.
9170
9171 2010-01-11 Thiago Jung Bauermann <bauerman@br.ibm.com>
9172
9173 Convert hardware watchpoints to use breakpoint_ops.
9174 * breakpoint.h (breakpoint_ops) <insert>: Rename to...
9175 <insert_location>: ... this. Return int instead of void.
9176 Accept pointer to struct bp_location instead of pointer to
9177 struct breakpoint. Adapt all implementations.
9178 (breakpoint_ops) <remove>: Rename to...
9179 <remove_location>: ... this. Accept pointer to struct bp_location
9180 instead of pointer to struct breakpoint. Adapt all implementations.
9181 * breakpoint.c (insert_catchpoint): Delete function.
9182 (insert_bp_location): Call the watchpoint or catchpoint's
9183 breakpoint_ops.insert method.
9184 (remove_breakpoint_1): Call the watchpoint or catchpoint's
9185 breakpoint_ops.remove method.
9186 (insert_watchpoint, remove_watchpoint): New functions.
9187 (watchpoint_breakpoint_ops): New structure.
9188 (watch_command_1): Initialize the OPS field.
9189 * inf-child.c (inf_child_insert_fork_catchpoint)
9190 (inf_child_remove_fork_catchpoint, inf_child_insert_vfork_catchpoint)
9191 (inf_child_remove_vfork_catchpoint, inf_child_insert_exec_catchpoint)
9192 (inf_child_remove_exec_catchpoint, inf_child_set_syscall_catchpoint):
9193 Delete functions.
9194 (inf_child_target): Remove initialization of to_insert_fork_catchpoint,
9195 to_remove_fork_catchpoint, to_insert_vfork_catchpoint,
9196 to_remove_vfork_catchpoint, to_insert_exec_catchpoint,
9197 to_remove_exec_catchpoint and to_set_syscall_catchpoint.
9198 * target.c (update_current_target): Change default implementation of
9199 to_insert_fork_catchpoint, to_remove_fork_catchpoint,
9200 to_insert_vfork_catchpoint, to_remove_vfork_catchpoint,
9201 to_insert_exec_catchpoint, to_remove_exec_catchpoint and
9202 to_set_syscall_catchpoint to return_one.
9203 (debug_to_insert_fork_catchpoint, debug_to_insert_vfork_catchpoint)
9204 (debug_to_insert_exec_catchpoint): Report return value.
9205 * target.h (to_insert_fork_catchpoint, to_insert_vfork_catchpoint)
9206 (to_insert_exec_catchpoint): Change declaration to return int instead
9207 of void.
9208
9209 2011-01-11 Michael Snyder <msnyder@vmware.com>
9210
9211 * arm-tdep.c: Internationalization.
9212 * c-lang.c: Ditto.
9213 * charset.c: Ditto.
9214 * fork-child.c: Ditto.
9215 * nto-procfs.c: Ditto.
9216 * ppc-sysv-tdep.c: Ditto.
9217 * procfs.c: Ditto.
9218 * remote-mips.c: Ditto.
9219 * remote.c: Ditto.
9220 * rs6000-nat.c: Ditto.
9221 * rs6000-tdep.c: Ditto.
9222 * target.c: Ditto.
9223 * valops.c: Ditto.
9224 * value.c: Ditto.
9225 * xml-support.c: Ditto.
9226 * mi/mi-cmd-break.c: Ditto.
9227 * mi/mi-cmd-var.c: Ditto.
9228 * mi/mi-interp.c: Ditto.
9229 * mi/mi-main.c: Ditto.
9230
9231 2011-01-11 Andrew Burgess <aburgess@broadcom.com>
9232
9233 * remote-sim.c (gdbsim_store_register): Update API to
9234 sim_store_register to check more error conditions.
9235
9236 2011-01-10 Michael Snyder <msnyder@vmware.com>
9237
9238 * nto-procfs.c: Comment cleanup, mostly periods and spaces.
9239 * nto-tdep.c: Ditto.
9240 * nto-tdep.h: Ditto.
9241 * objc-exp.y: Ditto.
9242 * objc-lang.c: Ditto.
9243 * objfiles.c: Ditto.
9244 * objfiles.h: Ditto.
9245 * observer.c: Ditto.
9246 * opencl-lang.c: Ditto.
9247 * osabi.c: Ditto.
9248 * parse.c: Ditto.
9249 * parser-defs.h: Ditto.
9250 * p-exp.y: Ditto.
9251 * p-lang.c: Ditto.
9252 * posix-hdep.c: Ditto.
9253 * ppcbug-rom.c: Ditto.
9254 * ppc-linux-nat.c: Ditto.
9255 * ppc-linux-tdep.c: Ditto.
9256 * ppc-linux-tdep.h: Ditto.
9257 * ppcnbsd-tdep.c: Ditto.
9258 * ppcobsd-tdep.c: Ditto.
9259 * ppcobsd-tdep.h: Ditto.
9260 * ppc-sysv-tdep.c: Ditto.
9261 * ppc-tdep.h: Ditto.
9262 * printcmd.c: Ditto.
9263 * proc-abi.c: Ditto.
9264 * proc-flags.c: Ditto.
9265 * procfs.c: Ditto.
9266 * proc-utils.h: Ditto.
9267 * progspace.h: Ditto.
9268 * prologue-value.c: Ditto.
9269 * prologue-value.h: Ditto.
9270 * psympriv.h: Ditto.
9271 * psymtab.c: Ditto.
9272 * p-typeprint.c: Ditto.
9273 * p-valprint.c: Ditto.
9274 * ravenscar-sparc-thread.c: Ditto.
9275 * ravenscar-thread.c: Ditto.
9276 * ravenscar-thread.h: Ditto.
9277 * record.c: Ditto.
9278 * regcache.c: Ditto.
9279 * regcache.h: Ditto.
9280 * remote.c: Ditto.
9281 * remote-fileio.c: Ditto.
9282 * remote-fileio.h: Ditto.
9283 * remote.h: Ditto.
9284 * remote-m32r-sdi.c: Ditto.
9285 * remote-mips.c: Ditto.
9286 * remote-sim.c: Ditto.
9287 * rs6000-aix-tdep.c: Ditto.
9288 * rs6000-nat.c: Ditto.
9289 * rs6000-tdep.c: Ditto.
9290
9291 2011-01-10 Michael Snyder <msnyder@vmware.com>
9292
9293 * charset.c (validate): Internationalization.
9294 * coffread.c (read_one_sym): Ditto.
9295 * dwarf2read.c (dwarf2_attach_fields_to_type): Ditto.
9296 * h8300-tdep.c (H8300_extract_return_value): Ditto.
9297 * inflow.c (new_tty): Ditto.
9298 * iq2000-tdep.c (iq2000_breakpoint_from_pc): Ditto.
9299 * m32c-tdep.c (m32c_return_value): Ditto.
9300 * mep-tdep.c (mep_store_return_value): Ditto.
9301 * score-tdep.c (score7_fetch_insn): Ditto.
9302 * ser-mingw.c (pipe_windows_open): Ditto.
9303 * sh64-tdep.c (sh64_extract_return_value): Ditto.
9304 * spu-tdep.c (spu_register_type): Ditto.
9305 * tracepoint.c (trace_find_command): Ditto.
9306 * valarith.c (value_pos): Ditto.
9307
9308 2011-01-10 Joel Brobecker <brobecker@adacore.com>
9309
9310 * ada-valprint.c (printstr): Minor comment reformatting.
9311
9312 2011-01-08 Michael Snyder <msnyder@vmware.com>
9313
9314 * m32r-rom.c (m32r_upload_command): Fix up ARI warnings for _
9315 markup.
9316
9317 2011-01-08 Michael Snyder <msnyder@vmware.com>
9318
9319 * h8300-tdep.c: Comment cleanup, mostly periods and spaces.
9320 * hppa-hpux-tdep.c: Ditto.
9321 * hppa-linux-nat.c: Ditto.
9322 * hppa-linux-tdep.c: Ditto.
9323 * hppanbsd-tdep.c: Ditto.
9324 * hppa-tdep.c: Ditto.
9325 * hppa-tdep.h: Ditto.
9326 * hpux-thread.c: Ditto.
9327 * i386-cygwin-tdep.c: Ditto.
9328 * i386-darwin-nat.c: Ditto.
9329 * i386gnu-nat.c: Ditto.
9330 * i386-linux-nat.c: Ditto.
9331 * i386-linux-tdep.c: Ditto.
9332 * i386-nat.c: Ditto.
9333 * i386-nat.h: Ditto.
9334 * i386nbsd-tdep.c: Ditto.
9335 * i386-sol2-nat.c: Ditto.
9336 * i386-stub.c: Ditto.
9337 * i386-tdep.c: Ditto.
9338 * i386-tdep.h: Ditto.
9339 * i387-tdep.c: Ditto.
9340 * ia64-linux-nat.c: Ditto.
9341 * ia64-linux-tdep.c: Ditto.
9342 * ia64-tdep.c: Ditto.
9343 * infcall.c: Ditto.
9344 * infcall.h: Ditto.
9345 * infcmd.c: Ditto.
9346 * inferior.c: Ditto.
9347 * inferior.h: Ditto.
9348 * infloop.c: Ditto.
9349 * inflow.c: Ditto.
9350 * infrun.c: Ditto.
9351 * interps.c: Ditto.
9352 * interps.h: Ditto.
9353 * iq2000-tdep.c: Ditto.
9354 * irix5-nat.c: Ditto.
9355 * jit.c: Ditto.
9356 * jit.h: Ditto.
9357 * jv-exp.y: Ditto.
9358 * jv-lang.c: Ditto.
9359 * jv-lang.h: Ditto.
9360 * jv-typeprint.c: Ditto.
9361 * jv-valprint.c: Ditto.
9362 * language.c: Ditto.
9363 * language.h: Ditto.
9364 * linespec.c: Ditto.
9365 * linux-fork.c: Ditto.
9366 * linux-nat.c: Ditto.
9367 * linux-thread-db.c: Ditto.
9368 * lm32-tdep.c: Ditto.
9369
9370 2011-01-08 Michael Snyder <msnyder@vmware.com>
9371
9372 * m2-exp.y: Comment cleanup, mostly periods and spaces.
9373 * m2-lang.c: Ditto.
9374 * m2-typeprint.c: Ditto.
9375 * m2-valprint.c: Ditto.
9376 * m32c-tdep.c: Ditto.
9377 * m32r-linux-nat.c: Ditto.
9378 * m32r-rom.c: Ditto.
9379 * m32r-tdep.c: Ditto.
9380 * m32r-tdep.h: Ditto.
9381 * m68hc11-tdep.c: Ditto.
9382 * m58klinux-nat.c: Ditto.
9383 * m68k-tdep.c: Ditto.
9384 * m88k-tdep.c: Ditto.
9385 * m88k-tdep.h: Ditto.
9386 * machoread.c: Ditto.
9387 * macrocmd.c: Ditto.
9388 * macroexp.c: Ditto.
9389 * macrotab.c: Ditto.
9390 * main.c: Ditto.
9391 * maint.c: Ditto.
9392 * mdebugread.c: Ditto.
9393 * mdebugread.h: Ditto.
9394 * memattr.c: Ditto.
9395 * memattr.h: Ditto.
9396 * memory-map.h: Ditto.
9397 * mep-tdep.c: Ditto.
9398 * microblaze-rom.c: Ditto.
9399 * microblaze-tdep.c: Ditto.
9400 * minsyms.c: Ditto.
9401 * mips-irix-tdep.c: Ditto.
9402 * mips-linux-nat.c: Ditto.
9403 * mips-linux-tdep.c: Ditto.
9404 * mips-linux-tdep.h: Ditto.
9405 * mipsnbsd-nat.c: Ditto.
9406 * mipsnbsd-tdep.c: Ditto.
9407 * mipsread.c: Ditto.
9408 * mips-tdep.c: Ditto.
9409 * mips-tdep.h: Ditto.
9410 * mn10300-linux-tdep.c: Ditto.
9411 * mn10300-tdep.c: Ditto.
9412 * mn10300-tdep.h: Ditto.
9413 * monitor.c: Ditto.
9414 * monitor.h: Ditto.
9415 * moxie-tdep.c: Ditto.
9416 * moxie-tdep.h: Ditto.
9417 * mt-tdep.c: Ditto.
9418
9419 2011-01-08 Mike Frysinger <vapier@gentoo.org>
9420
9421 * bfin-tdep.h (BFIN_A0_DOT_W_REGNUM): Fix typo in name.
9422
9423 2011-01-08 Robert Millan <rmh@gnu.org>
9424
9425 * fbsd-nat.c (fbsd_find_memory_regions): Fix typo.
9426
9427 2011-01-07 Michael Snyder <msnyder@vmware.com>
9428
9429 * charset.c (_initialize_charset): Fix typo in string.
9430
9431 2011-01-07 Michael Snyder <msnyder@vmware.com>
9432
9433 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Mark up error message
9434 for i18n.
9435 * tui/tui-layout.c (tui_set_layout_for_display_command):
9436 Split line so that operator goes to beginning of line.
9437 * tui/tui-winsource.c (tui_horizontal_source_scroll): Move
9438 assignment out of if statement.
9439
9440 2011-01-07 Michael Snyder <msnyder@vmware.com>
9441
9442 * ada-lang.c: Comment cleanup, mostly periods and spaces.
9443 * ada-lang.h: Ditto.
9444 * ada-tasks.c: Ditto.
9445 * ada-valprint.c: Ditto.
9446 * aix-threads.c: Ditto.
9447 * alpha-linux-nat.c: Ditto.
9448 * alpha-linux-tdep.c: Ditto.
9449 * alpha-mdebug-tdep.c: Ditto.
9450 * alpha-nat.c: Ditto.
9451 * alpha-osf1-tdep.c: Ditto.
9452 * alpha-tdep.c: Ditto.
9453 * alphabsd-nat.c: Ditto.
9454 * alphabsd-tdep.c: Ditto.
9455 * amd64-darwin-tdep.c: Ditto.
9456 * amd64-linux-nat.c: Ditto.
9457 * amd64-linux-tdep.c: Ditto.
9458 * amd64-sol2-tdep.c: Ditto.
9459 * amd64-tdep.c: Ditto.
9460 * amd64-fbsd-tdep.c: Ditto.
9461 * amd64-nbsd-tdep.c: Ditto.
9462 * amd64-obsd-tdep.c: Ditto.
9463 * amd64-linux-nat.c: Ditto.
9464 * amd64-linux-tdep.c: Ditto.
9465 * arm-tdep.c: Ditto.
9466 * arm-tdep.h: Ditto.
9467 * armnbsd-nat.c: Ditto.
9468 * avr-tdep.c: Ditto.
9469 * bfin-tdep.c: Ditto.
9470 * bsd-kvm.c: Ditto.
9471 * c-typeprintc: Ditto.
9472 * c-valprint.c: Ditto.
9473 * coff-pe-read.h: Ditto.
9474 * coffreead.c: Ditto.
9475 * cris-tdep.c: Ditto.
9476 * d-lang.c: Ditto.
9477 * darwin-nat-info.c: Ditto.
9478 * darwin-nat.c: Ditto.
9479 * dbug-rom.c: Ditto.
9480 * dbxread.c: Ditto.
9481 * dcache.c: Ditto.
9482 * dcache.h: Ditto.
9483 * dec-thread.c: Ditto.
9484 * defs.h: Ditto.
9485 * demangle.c: Ditto.
9486 * dicos-tdep.c: Ditto.
9487 * dictionary.c: Ditto.
9488 * dictionary.h: Ditto.
9489 * dink32-rom.c: Ditto.
9490 * disasm.c: Ditto.
9491 * doublest.c: Ditto.
9492 * dsrec.c: Ditto.
9493 * dummy-frame.c: Ditto.
9494 * dwarf2-frame.c: Ditto.
9495 * dwarf2expr.c: Ditto.
9496 * dwarf2loc.c: Ditto.
9497 * dwarf2read.c: Ditto.
9498 * elfread.c: Ditto.
9499 * environ.c: Ditto.
9500 * eval.c: Ditto.
9501 * event-top.h: Ditto.
9502 * exceptions.c: Ditto.
9503 * exceptions.h: Ditto.
9504 * exec.c: Ditto.
9505 * expprint.c: Ditto.
9506 * expression.h: Ditto.
9507 * f-exp.y: Ditto.
9508 * f-lang.c: Ditto.
9509 * f-lang.h: Ditto.
9510 * f-typeprint.c: Ditto.
9511 * f-valprint.c: Ditto.
9512 * fbsd-nat.c: Ditto.
9513 * findvar.c: Ditto.
9514 * fork-child.c: Ditto.
9515 * frame.c: Ditto.
9516 * frame.h: Ditto.
9517 * frv-linux-tdep.c: Ditto.
9518 * frv-tdep.c: Ditto.
9519 * gcore.c: Ditto.
9520 * gdb-stabs.h: Ditto.
9521 * gdb_assert.h: Ditto.
9522 * gdb_string.h: Ditto.
9523 * gdb_thread_db.h: Ditto.
9524 * gdb_wait.h: Ditto.
9525 * gdbarch.sh: Ditto.
9526 * gdbcore.h: Ditto.
9527 * gdbthread.h: Ditto.
9528 * gdbtypes.c: Ditto.
9529 * gdbtypes.h: Ditto.
9530 * gnu-nat.c: Ditto.
9531 * gnu-nat.h: Ditto.
9532 * gnu-v2-abi.c: Ditto.
9533 * gnu-v3-abi.c: Ditto.
9534 * go32-nat.c: Ditto.
9535 * gdbarch.c: Regenerate.
9536 * gdbarch.h: Regenerate.
9537
9538 2011-01-07 Michael Snyder <msnyder@vmware.com>
9539
9540 * ax-gdb.c: Adjust some long output strings.
9541 * breakpoint.c: Ditto.
9542 * charset.c: Ditto.
9543 * cp-abi.c: Ditto.
9544 * infcall.c: Ditto.
9545 * infrun.c: Ditto.
9546 * linux-nat.c: Ditto.
9547 * solib-pa64.c: Ditto.
9548 * solib-som.c: Ditto.
9549
9550 2011-01-06 Tom Tromey <tromey@redhat.com>
9551
9552 PR python/12367:
9553 * NEWS: Add item.
9554 * python/python.c (GdbMethods): Add "newest_frame" method.
9555 * python/python-internal.h (gdbpy_newest_frame): Declare.
9556 * python/py-frame.c (gdbpy_newest_frame): New function.
9557
9558 2010-01-06 Paul Pluzhnikov <ppluzhnikov@google.com>
9559
9560 * jit.h (struct jit_code_entry): use ULONGEST for symfile_size.
9561 * jit.c (jit_debug): New variable.
9562 (show_jit_debug): New function.
9563 (struct target_buffer): Use ULONGEST.
9564 (bfd_open_from_target_memory): Likewise.
9565 (jit_register_code, jit_inferior_init): Add debug output.
9566 (_initialize_jit): Register "debug jit" command.
9567
9568 2011-01-06 Tom Tromey <tromey@redhat.com>
9569
9570 * frame.h (enum frame_type) <INLINE_FRAME>: Fix comment.
9571 * python/py-frame.c (gdbpy_initialize_frames): Add INLINE_FRAME
9572 and ARCH_FRAME.
9573
9574 2011-01-06 Tom Tromey <tromey@redhat.com>
9575
9576 * python/py-frame.c (frapy_block): Use get_frame_block.
9577
9578 2011-01-06 Joel Brobecker <brobecker@adacore.com>
9579
9580 Do not stop on SIGPRIO signals by default
9581 * infrun.c (_initialize_infrun): Unset signal_stop and
9582 signal_print for TARGET_SIGNAL_PRIO.
9583
9584 2011-01-06 Joel Brobecker <brobecker@adacore.com>
9585
9586 * ada-tasks.c: Fix style violation in comment.
9587
9588 2011-01-06 Joel Brobecker <brobecker@adacore.com>
9589
9590 * linespec.c (decode_compound, find_method): Remove trailing \n
9591 at end of error string.
9592 * solib-irix.c (irix_current_sos): Likewise.
9593 * varobj.c (uninstall_variable): Likewise.
9594
9595 2011-01-06 Joel Brobecker <brobecker@adacore.com>
9596
9597 * copyright.py: New script.
9598 * copyright.sh (byhand): Add *.ads, *.adb, *.gpr and *.inc.
9599 Launch emacs without exec'ing. Call copyright.py afterwards.
9600
9601 2011-01-05 Michael Snyder <msnyder@vmware.com>
9602
9603 * addrmap.c: Shorten lines of >= 80 columns.
9604 * arch-utils.c: Ditto.
9605 * arch-utils.h: Ditto.
9606 * ax-gdb.c: Ditto.
9607 * ax-general.c: Ditto.
9608 * bcache.c: Ditto.
9609 * blockframe.c: Ditto.
9610 * breakpoint.c: Ditto.
9611 * buildsym.c: Ditto.
9612 * c-lang.c: Ditto.
9613 * c-typeprint.c: Ditto.
9614 * charset.c: Ditto.
9615 * coffread.c: Ditto.
9616 * command.h: Ditto.
9617 * corelow.c: Ditto.
9618 * cp-abi.c: Ditto.
9619 * cp-namespace.c: Ditto.
9620 * cp-support.c: Ditto.
9621 * dbug-rom.c: Ditto.
9622 * dbxread.c: Ditto.
9623 * defs.h: Ditto.
9624 * dfp.c: Ditto.
9625 * dfp.h: Ditto.
9626 * dictionary.c: Ditto.
9627 * disasm.c: Ditto.
9628 * doublest.c: Ditto.
9629 * dwarf2-frame.c: Ditto.
9630 * dwarf2expr.c: Ditto.
9631 * dwarf2loc.c: Ditto.
9632 * dwarf2read.c: Ditto.
9633 * elfread.c: Ditto.
9634 * eval.c: Ditto.
9635 * event-loop.c: Ditto.
9636 * event-loop.h: Ditto.
9637 * exceptions.h: Ditto.
9638 * exec.c: Ditto.
9639 * expprint.c: Ditto.
9640 * expression.h: Ditto.
9641 * f-lang.c: Ditto.
9642 * f-valprint.c: Ditto.
9643 * findcmd.c: Ditto.
9644 * frame-base.c: Ditto.
9645 * frame-unwind.c: Ditto.
9646 * frame-unwind.h: Ditto.
9647 * frame.c: Ditto.
9648 * frame.h: Ditto.
9649 * gcore.c: Ditto.
9650 * gdb-stabs.h: Ditto.
9651 * gdb_assert.h: Ditto.
9652 * gdb_dirent.h: Ditto.
9653 * gdb_obstack.h: Ditto.
9654 * gdbcore.h: Ditto.
9655 * gdbtypes.c: Ditto.
9656 * gdbtypes.h: Ditto.
9657 * inf-ttrace.c: Ditto.
9658 * infcall.c: Ditto.
9659 * infcmd.c: Ditto.
9660 * inflow.c: Ditto.
9661 * infrun.c: Ditto.
9662 * inline-frame.h: Ditto.
9663 * language.c: Ditto.
9664 * language.h: Ditto.
9665 * libunwind-frame.c: Ditto.
9666 * libunwind-frame.h: Ditto.
9667 * linespec.c: Ditto.
9668 * linux-nat.c: Ditto.
9669 * linux-nat.h: Ditto.
9670 * linux-thread-db.c: Ditto.
9671 * machoread.c: Ditto.
9672 * macroexp.c: Ditto.
9673 * macrotab.c: Ditto.
9674 * main.c: Ditto.
9675 * maint.c: Ditto.
9676 * mdebugread.c: Ditto.
9677 * memattr.c: Ditto.
9678 * minsyms.c: Ditto.
9679 * monitor.c: Ditto.
9680 * monitor.h: Ditto.
9681 * objfiles.c: Ditto.
9682 * objfiles.h: Ditto.
9683 * osabi.c: Ditto.
9684 * p-typeprint.c: Ditto.
9685 * p-valprint.c: Ditto.
9686 * parse.c: Ditto.
9687 * printcmd.c: Ditto.
9688 * proc-events.c: Ditto.
9689 * procfs.c: Ditto.
9690 * progspace.c: Ditto.
9691 * progspace.h: Ditto.
9692 * psympriv.h: Ditto.
9693 * psymtab.c: Ditto.
9694 * record.c: Ditto.
9695 * regcache.c: Ditto.
9696 * regcache.h: Ditto.
9697 * remote-fileio.c: Ditto.
9698 * remote.c: Ditto.
9699 * ser-mingw.c: Ditto.
9700 * ser-tcp.c: Ditto.
9701 * ser-unix.c: Ditto.
9702 * serial.c: Ditto.
9703 * serial.h: Ditto.
9704 * solib-frv.c: Ditto.
9705 * solib-irix.c: Ditto.
9706 * solib-osf.c: Ditto.
9707 * solib-pa64.c: Ditto.
9708 * solib-som.c: Ditto.
9709 * solib-sunos.c: Ditto.
9710 * solib-svr4.c: Ditto.
9711 * solib-target.c: Ditto.
9712 * solib.c: Ditto.
9713 * somread.c: Ditto.
9714 * source.c: Ditto.
9715 * stabsread.c: Ditto.
9716 * stabsread.c: Ditto.
9717 * stack.c: Ditto.
9718 * stack.h: Ditto.
9719 * symfile-mem.c: Ditto.
9720 * symfile.c: Ditto.
9721 * symfile.h: Ditto.
9722 * symmisc.c: Ditto.
9723 * symtab.c: Ditto.
9724 * symtab.h: Ditto.
9725 * target-descriptions.c: Ditto.
9726 * target-memory.c: Ditto.
9727 * target.c: Ditto.
9728 * target.h: Ditto.
9729 * terminal.h: Ditto.
9730 * thread.c: Ditto.
9731 * top.c: Ditto.
9732 * tracepoint.c: Ditto.
9733 * tracepoint.h: Ditto.
9734 * ui-file.c: Ditto.
9735 * ui-file.h: Ditto.
9736 * ui-out.h: Ditto.
9737 * user-regs.c: Ditto.
9738 * user-regs.h: Ditto.
9739 * utils.c: Ditto.
9740 * valarith.c: Ditto.
9741 * valops.c: Ditto.
9742 * valprint.c: Ditto.
9743 * valprint.h: Ditto.
9744 * value.c: Ditto.
9745 * varobj.c: Ditto.
9746 * varobj.h: Ditto.
9747 * vec.h: Ditto.
9748 * xcoffread.c: Ditto.
9749 * xcoffsolib.c: Ditto.
9750 * xcoffsolib.h: Ditto.
9751 * xml-syscall.c: Ditto.
9752 * xml-tdesc.c: Ditto.
9753
9754 2011-01-05 Michael Snyder <msnyder@vmware.com>
9755
9756 * cli/cli-cmds.c: Shorten lines of >= 80 columns.
9757 * cli/cli-decode.c: Ditto.
9758 * cli/cli-dump.c: Ditto.
9759 * cli/cli-logging.c: Ditto.
9760 * cli/cli-script.c: Ditto.
9761 * cli/cli-setshow.c: Ditto.
9762 * common/signals.c: Ditto.
9763 * mi/mi-cmd-break.c: Ditto.
9764 * mi/mi-cmd-disas.c: Ditto.
9765 * mi/mi-cmd-stack.c: Ditto.
9766 * mi/mi-cmd-var.c: Ditto.
9767 * mi/mi-cmds.c: Ditto.
9768 * mi/mi-common.h: Ditto.
9769 * mi/mi-console.c: Ditto.
9770 * mi/mi-interp.c: Ditto.
9771 * mi/mi-main.c: Ditto.
9772 * osf-share/cma_attr.c: Ditto.
9773 * osf-share/cma_deb_core.h: Ditto.
9774 * osf-share/cma_debug_client.h: Ditto.
9775 * osf-share/cma_handle.h: Ditto.
9776 * osf-share/cma_mutex.h: Ditto.
9777 * osf-share/cma_stack_int.h: Ditto.
9778 * osf-share/cma_tcb_defs.h: Ditto.
9779 * python/py-auto-load.c: Ditto.
9780 * python/py-breakpoint.c: Ditto.
9781 * python/py-cmd.c: Ditto.
9782 * python/py-frame.c: Ditto.
9783 * python/py-objfile.c: Ditto.
9784 * python/py-param.c: Ditto.
9785 * python/py-progspace.c: Ditto.
9786 * python/py-symbol.c: Ditto.
9787 * python/py-value.c: Ditto.
9788 * python/python-internal.h: Ditto.
9789 * python/python.c: Ditto.
9790 * tui/tui-data.c: Ditto.
9791 * tui/tui-disasm.c: Ditto.
9792 * tui/tui-hooks.c: Ditto.
9793 * tui/tui-io.c: Ditto.
9794 * tui/tui-layout.c: Ditto.
9795 * tui/tui-regs.c: Ditto.
9796 * tui/tui-source.c: Ditto.
9797 * tui/tui-stack.c: Ditto.
9798 * tui/tui-win.c: Ditto.
9799 * tui/tui-windata.c: Ditto.
9800 * tui/tui-winsource.c: Ditto.
9801
9802 2011-01-05 Joel Brobecker <brobecker@adacore.com>
9803
9804 * configure.ac, gdb.1: Copyright year update.
9805
9806 2011-01-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9807
9808 * frame.c (get_prev_frame_1) <UNWIND_INNER_ID>: New variables
9809 this_pc_in_block, morestack_msym and morestack_name. Check for
9810 "__morestack" minimal symbol there.
9811
9812 2011-01-03 Joel Brobecker <brobecker@adacore.com>
9813
9814 * symfile.c (find_sym_fns): Add call to dont_repeat.
9815
9816 2011-01-01 Joel Brobecker <brobecker@adacore.com>
9817
9818 Copyright year update in most files (performed by copyright.sh).
9819
9820 2011-01-01 Joel Brobecker <brobecker@adacore.com>
9821
9822 * top.c (print_gdb_version): Update copyright year in version output.
9823
9824 For older changes see ChangeLog-2010.
9825 \f
9826 Local Variables:
9827 mode: change-log
9828 left-margin: 8
9829 fill-column: 74
9830 version-control: never
9831 coding: utf-8
9832 End:
This page took 0.323979 seconds and 4 git commands to generate.