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