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