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