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