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