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