infrun.c:handle_inferior_event: Make process_event_stop_test label a function.
[external/binutils.git] / gdb / ChangeLog
1 2013-10-28  Pedro Alves  <palves@redhat.com>
2
3         * infrun.c (process_event_stop_test): New function, factored out
4         from handle_inferior_event.
5         (handle_inferior_event): 'process_event_stop_test' is now a
6         function instead of a goto label -- adjust.
7
8 2013-10-28  Pedro Alves  <palves@redhat.com>
9
10         * infrun.c (handle_inferior_event): Move process_event_stop_test
11         goto label to the else branch of the ecs->random_signal check,
12         along with FRAME and GDBARCH re-fetching.
13
14 2013-10-28  Pedro Alves  <palves@redhat.com>
15
16         * infrun.c (switch_back_to_stepped_thread): New function, factored
17         out from handle_inferior_event.
18         (handle_inferior_event): Adjust to call
19         switch_back_to_stepped_thread.  Call it also at the tail of the
20         random signal handling, and return, instead of also handling
21         random signals just before the stepping tests.
22
23 2013-10-28  Pedro Alves  <palves@redhat.com>
24
25         * infrun.c (clear_stop_func): Delete.
26         (handle_inferior_event): Don't call clear_stop_func and don't
27         clear 'ecs->random_signal'.
28
29 2013-10-27  Yao Qi  <yao@codesourcery.com>
30
31         * varobj.c (struct varobj_root) <lang>: Rename to 'lang_ops'.
32         (varobj_create, varobj_get_path_expr): Update.
33         (varobj_value_has_mutated, varobj_update): Likewise.
34         (create_child_with_value, new_root_variable): Likewise.
35         (number_of_children, name_of_variable): Likewise.
36         (value_of_child, my_value_of_variable): Likewise.
37         (varobj_value_is_changeable_p): Likewise.
38
39 2013-10-25  Yao Qi  <yao@codesourcery.com>
40
41         * language.h (struct lang_varobj_ops): Declare.
42         (struct language_defn) <la_varobj_ops>: New field.
43         * ada-lang.c: Include "varobj.h"
44         (defn ada_language_defn): Initialize field 'la_varobj_ops' with
45         ada_varobj_ops.
46         * c-lang.c: Include "varobj.h"
47         (c_language_defn): Initialize field 'la_varobj_ops' with
48         c_varobj_ops.
49         (cplus_language_defn): Initialize field 'la_varobj_ops' with
50         cplus_varobj_ops.
51         (asm_language_defn): Initialize field 'la_varobj_ops' with
52         default_varobj_ops.
53         (minimal_language_defn): Likewise.
54         * d-lang.c (d_language_defn): Likewise.
55         * f-lang.c (f_language_defn): Likewise.
56         * go-lang.c (go_language_defn): Likewise.
57         * m2-lang.c (m2_language_defn): Likewise.
58         * objc-lang.c (objc_language_defn): Likewise.
59         * opencl-lang.c (opencl_language_defn): Likewise.
60         * p-lang.c (pascal_language_defn): Likewise.
61         * language.c (unknown_language_defn): Likewise.
62         (auto_language_defn): Likewise.
63         (local_language_defn): Likewise.
64         * jv-lang.c (java_language_defn): Initialize field
65         'la_varobj_ops' with java_varobj_ops.
66         * varobj.c (varobj_create): Update.
67         * varobj.h (default_varobj_ops): Define macro.
68
69 2013-10-25  Pedro Alves  <palves@redhat.com>
70
71         * cp-valprint.c (cp_print_value_fields): No longer handle a NULL
72         static field value.
73         (cp_print_static_field): If the value is entirely optimized out,
74         print <optimized out> here.
75         * jv-valprint.c (java_print_value_fields): No longer handle a NULL
76         static field value.
77         * p-valprint.c (pascal_object_print_static_field): If the value is
78         entirely optimized out, print <optimized out> here.
79         * valops.c (do_search_struct_field)
80         (value_struct_elt_for_reference): No longer handle a NULL static
81         field value.
82         * value.c (value_static_field): Return an optimized out value
83         instead of NULL.
84
85 2013-10-25  Yao Qi  <yao@codesourcery.com>
86
87         * remote.c (remote_traceframe_info): Return early if
88         traceframe is not selected.
89
90 2013-10-25  Yao Qi  <yao@codesourcery.com>
91
92         * tracepoint.c (traceframe_fun): Remove.
93         (traceframe_sal): Remove.
94         (set_traceframe_context): Add local variables.
95
96 2013-10-25  Joel Brobecker  <brobecker@adacore.com>
97
98         * varobj.h (struct lang_varobj_ops): Remove spaces between '*'
99         and parameter name.
100
101 2013-10-24  Maciej W. Rozycki  <macro@codesourcery.com>
102
103         * linux-tdep.c (linux_corefile_thread_callback): Propagate any
104         failure from register information collection.
105
106 2013-10-24  Maciej W. Rozycki  <macro@codesourcery.com>
107
108         * linux-tdep.c (linux_corefile_thread_data): Remove `num_notes'
109         member.
110         (linux_corefile_thread_callback): Update accordingly.
111         (linux_make_corefile_notes): Likewise.
112
113 2013-10-24  Pedro Alves   <palves@redhat.com>
114
115         * NEWS (New options): Mention set/show startup-with-shell.
116         * config/alpha/nm-osf3.h (START_INFERIOR_TRAPS_EXPECTED): Set to 2
117         instead of 3.
118         * fork-child.c (fork_inferior, startup_inferior): Handle 'set
119         startup-with-shell'.
120         (show_startup_with_shell): New function.
121         (_initialize_fork_child): Register the set/show startup-with-shell
122         commands.
123         * inf-ptrace.c (inf_ptrace_create_inferior): Remove comment.
124         * inf-ttrace.c (inf_ttrace_him): Remove comment.
125         * procfs.c (procfs_init_inferior): Remove comment.
126         * infcmd.c (startup_with_shell): New global.
127         * inferior.h (startup_with_shell): Declare global.
128         (STARTUP_WITH_SHELL): Delete.
129         (START_INFERIOR_TRAPS_EXPECTED): Set to 1 by default instead of 2.
130
131 2013-10-23  Pedro Alves  <palves@redhat.com>
132
133         * common/gdb_signals.h (gdb_signal_to_symbol_string): Declare.
134         * common/signals.c: Include "gdb_assert.h".
135         (signals): New field 'symbol'.
136         (SET): Use the 'symbol' parameter.
137         (gdb_signal_to_symbol_string): New function.
138         * infrun.c (handle_inferior_event) <random signal>: In debug
139         output, print the random signal enum as string in addition to its
140         number.
141         * target/waitstatus.c (target_waitstatus_to_string): Print the
142         signal's enum value as string instead of the (POSIX) signal name.
143
144 2013-10-23  Gary Benson  <gbenson@redhat.com>
145
146         PR 16013
147         * common/linux-osdata.c (command_from_pid): Reduced size of cmd
148         from 32 to 18.  Adjusted fscanf format string accordingly.
149         (Avoids leaving cmd unterminated.)
150         (print_sockets): Do not parse tlen, inode, sl, timeout, txq, rxq,
151         trun, retn or extra.  (Avoids leaving extra unterminated.)  Check
152         that local_address and remote_address will not overflow.
153         (linux_xfer_osdata_modules): Parse lines using strtok to avoid
154         leaving dependencies unterminated.  Parse size as "%u" to match
155         definition.
156
157 2013-10-22  Pedro Alves  <palves@redhat.com>
158
159         * infrun.c (handle_inferior_event) <thread hop>: Don't clear or
160         set ecs->random signal.
161
162 2013-10-22  Pedro Alves  <palves@redhat.com>
163
164         * infrun.c (keep_going): Update comments.
165
166 2013-10-22  Pedro Alves  <palves@redhat.com>
167
168         * remote.c (remote_parse_stop_reply) <'T'/'S'/'X' replies>: Map
169         invalid signal numbers to GDB_SIGNAL_UNKNOWN.
170
171 2013-10-22  Pedro Alves  <palves@redhat.com>
172
173         * include/gdb/signals.def (TARGET_EXC_BAD_ACCESS): Rename to
174         GDB_EXC_BAD_ACCESS.
175         (TARGET_EXC_BAD_INSTRUCTION): Rename to GDB_EXC_BAD_INSTRUCTION.
176         (TARGET_EXC_ARITHMETIC): Rename to GDB_EXC_ARITHMETIC.
177         (TARGET_EXC_EMULATION): Rename to GDB_EXC_EMULATION.
178         (TARGET_EXC_SOFTWARE): Rename to GDB_EXC_SOFTWARE.
179         (TARGET_EXC_BREAKPOINT): Rename to GDB_EXC_BREAKPOINT.
180         (GDB_SIGNAL_LAST): Change description string.
181         * common/signals.c (gdb_signal_from_host, do_gdb_signal_to_host):
182         Adjust to signal renaming.
183         * darwin-nat.c (darwin_decode_message): Likewise.
184
185 2013-10-22  Jose E. Marchesi  <jose.marchesi@oracle.com>
186
187         * MAINTAINERS (Write After Approval): Add myself to the list.
188
189 2013-10-18  Andrew Burgess  <aburgess@broadcom.com>
190
191         * breakpoint.c (update_watchpoint): If hardware watchpoints are
192         forced off, downgrade them to software watchpoints if possible,
193         and error out if not possible.
194         (watch_command_1): Move watchpoint type selection closer to
195         watchpoint creation, and extend the comments.
196
197 2013-10-18  Pedro Alves  <palves@redhat.com>
198
199         PR gdb/16062
200         * infrun.c (handle_inferior_event): Keep going if we got a random
201         signal we should not stop for, instead of falling through to the
202         step tests.
203
204 2013-10-18  Yao Qi  <yao@codesourcery.com>
205
206         * c-varobj.c (cplus_number_of_children): Fix indentation.
207
208 2013-10-17  Tom Tromey  <tromey@redhat.com>
209
210         PR gdb/15995:
211         * printcmd.c (printcmd): Call gdb_flush.
212
213 2013-10-17  Tom Tromey  <tromey@redhat.com>
214
215         * elfread.c (struct elfinfo) <stabindexsect>: Remove.
216         (elf_locate_sections): Update.
217
218 2013-10-17  Yao Qi  <yao@codesourcery.com>
219
220         * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
221         * ada-varobj.c: Remove the include of ada-varobj.h.
222         (ada_varobj_get_number_of_children): Declare.
223         (ada_varobj_get_name_of_child): Make it static.
224         (ada_varobj_get_path_expr_of_child): Likewise.
225         (ada_varobj_get_value_of_child): Likewise.
226         (ada_varobj_get_type_of_child): Likewise.
227         (ada_varobj_get_value_of_array_variable): Likewise.
228         * ada-varobj.h: Remove.
229
230 2013-10-17  Yao Qi  <yao@codesourcery.com>
231
232         * Makefile.in (SFILES): Add c-varobj.c and jv-varobj.c.
233         (COMMON_OBS): Add c-varobj.o and jv-varobj.o.
234         * ada-varobj.c: Include "varobj.h".
235         (ada_number_of_children): New.  Moved from varobj.c.
236         (ada_name_of_variable, ada_name_of_child): Likewise.
237         (ada_path_expr_of_child, ada_value_of_child): Likewise.
238         (ada_type_of_child, ada_value_of_variable): Likewise.
239         (ada_value_is_changeable_p, ada_value_has_mutated): Likewise.
240         (ada_varobj_ops): New.
241         * c-varobj.c, jv-varobj.c: New file.  Moved from varobj.c.
242         * gdbtypes.c (get_target_type): New.  Moved from varobj.c.
243         * gdbtypes.h (get_target_type): Declare.
244         * varobj.c: Remove the inclusion of "ada-varobj.h" and
245         "ada-lang.h".
246         (ANONYMOUS_STRUCT_NAME): Move it to c-varobj.c.
247         (ANONYMOUS_UNION_NAME): Likewise.
248         (get_type, get_value_type, get_target_type): Remove declarations.
249         (value_get_print_value, varobj_value_get_print_value): Likewise.
250         (c_number_of_children, c_name_of_variable): Likewise.
251         (c_name_of_child, c_path_expr_of_child): Likewise.
252         (c_value_of_child, c_type_of_child): Likewise.
253         (c_value_of_variable, cplus_number_of_children): Likewise.
254         (cplus_class_num_children, cplus_name_of_variable): Likewise.
255         (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
256         (cplus_value_of_child, cplus_type_of_child): Likewise.
257         (cplus_value_of_variable, java_number_of_children): Likewise.
258         (java_name_of_variable, java_name_of_child): Likewise.
259         (java_path_expr_of_child, java_value_of_child): Likewise.
260         (java_type_of_child, java_value_of_variable): Likewise.
261         (ada_number_of_children, ada_name_of_variable): Likewise.
262         (ada_name_of_child, ada_path_expr_of_child): Likewise.
263         (ada_value_of_child, ada_type_of_child): Likewise.
264         (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
265         (ada_value_has_mutated): Likewise.
266         (struct language_specific): Move it to varobj.h.
267         (CPLUS_FAKE_CHILD): Move it to varobj.h.
268         (restrict_range): Rename it varobj_restrict_range.  Make it extern.
269         Callers update.
270         (get_path_expr_parent): Rename it to varobj_get_path_expr_parent.
271         Make it extern.
272         (is_anonymous_child): Move it to c-varobj.c and rename to
273         varobj_is_anonymous_child.  Caller update.
274         (get_type): Move it to c-varobj.c.
275         (get_value_type): Rename it varobj_get_value_type.  Make it
276         extern.
277         (get_target_type): Move it gdbtypes.c.
278         (varobj_formatted_print_options): New function.
279         (value_get_print_value): Rename it to
280         varobj_value_get_print_value and make it extern.
281         (varobj_value_is_changeable_p): Make it extern.
282         (adjust_value_for_child_access): Move it to c-varobj.c.
283         (default_value_is_changeable_p): Rename it to
284         varobj_default_value_is_changeable_p.  Make it extern.
285         (c_number_of_children, c_name_of_variable): Move it to c-varobj.c
286         (c_name_of_child, c_path_expr_of_child): Likewise.
287         (c_value_of_child, c_type_of_child): Likewise.
288         (c_value_of_variable, cplus_number_of_children): Likewise.
289         (cplus_class_num_children, cplus_name_of_variable): Likewise.
290         (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
291         (cplus_value_of_child, cplus_type_of_child): Likewise.
292         (cplus_value_of_variable): Likewise.
293         (java_number_of_children, java_name_of_variable): Move it to jv-varobj.c.
294         (java_name_of_child, java_path_expr_of_child): Likewise.
295         (java_value_of_child, java_type_of_child): Likewise.
296         (java_value_of_variable): Likewise.
297         (ada_number_of_children, ada_name_of_variable): Move it to ada-varobj.c.
298         (ada_name_of_child, ada_path_expr_of_child): Likewise.
299         (ada_value_of_child, ada_type_of_child): Likewise.
300         (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
301         (ada_value_has_mutated): Likewise.
302         * varobj.h (CPLUS_FAKE_CHILD): New macro, moved from varobj.c.
303         (struct lang_varobj_ops): New.  Renamed by 'struct language_specific'.
304         (c_varobj_ops, cplus_varobj_ops): Declare.
305         (java_varobj_ops, ada_varobj_ops): Declare.
306         (varobj_default_value_is_changeable_p): Declare.
307         (varobj_value_is_changeable_p): Declare.
308         (varobj_get_value_type, varobj_is_anonymous_child): Declare.
309         (varobj_get_path_expr_parent): Declare.
310         (varobj_value_get_print_value): Declare.
311         (varobj_formatted_print_options): Declare.
312         (varobj_restrict_range): Declare.
313
314 2013-10-17  Luis Machado  <lgustavo@codesourcery.com>
315
316         * target/waitstatus.h (target_waitkind): Remove spurious
317         character from the comments.
318
319 2013-10-17  Joel Brobecker  <brobecker@adacore.com>
320
321         * gdbarch.sh (get_longjmp_target): Add method documentation.
322         * gdbarch.h: Regenerate.
323
324 2013-10-16  Tom Tromey  <tromey@redhat.com>
325
326         * dbxread.c (read_dbx_symtab) <bss_ext_symbol>: Remove unused
327         label.
328
329 2013-10-16  Luis Machado  <lgustavo@codesourcery.com>
330
331         * gcore.in: Call GDB using the full path to the gcore script.
332         Error out if the GDB binary is not found.
333
334 2013-10-16  Sergio Durigan Junior  <sergiodj@redhat.com>
335
336         PR gdb/16014
337         * dwarf2read.c (dw2_get_real_path): Remove unnecessary call to
338         sizeof.
339
340 2013-10-16  Sergio Durigan Junior  <sergiodj@redhat.com>
341
342         PR gdb/16042
343         * target.c (target_disable_btrace): Fix invalid return value for
344         void function.
345         (target_teardown_btrace): Likewise.
346
347 2013-10-14  Yao Qi  <yao@codesourcery.com>
348
349         * varobj.c (struct varobj): Move most of the fields to
350         varobj.h.
351         (struct varobj_dynamic): New struct.
352         (varobj_get_display_hint) [HAVE_PYTHON]: Adjust.
353         (varobj_has_more): Likewise.
354         (dynamic_varobj_has_child_method): Likewise.
355         (update_dynamic_varobj_children): Likewise.
356         (varobj_get_num_children): Likewise.
357         (varobj_list_children, varobj_pretty_printed_p): Likewise.
358         (install_new_value_visualizer): Likewise.
359         (install_new_value_visualizer, install_new_value): Likewise.
360         (varobj_update, new_variable, free_variable): Likewise.
361         (my_value_of_variable, value_get_print_value): Likewise.
362         (install_visualizer): Change the type of parameter 'var' to
363         'struct varobjd_dynamic *'.  Callers update.
364         * varobj.h (struct varobj): Moved from varobj.c.
365         (struct varobj) <dynamic>: New field.
366
367 2013-10-13  Sandra Loosemore  <sandra@codesourcery.com>
368
369         * nios2-tdep.c (nios2_reg_names): Use "sstatus" rather than "ba"
370         as the preferred name of r30.
371         * nios2-linux-tdep.c (reg_offsets): Likewise.
372         * features/nios2-cpu.xml: Likewise.
373         * features/nios2-linux.c: Regenerated.
374         * features/nios2.c: Regenerated.
375         * regformats/nios2-linux.dat: Regenerated.
376
377 2013-10-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
378
379         Canonicalize directories for EXEC_FILENAME.
380         * exec.c (exec_file_attach): Use gdb_realpath_keepfile for
381         exec_filename.
382         * utils.c (gdb_realpath_keepfile): New function.
383         * utils.h (gdb_realpath_keepfile): New declaration.
384
385 2013-10-11  Doug Evans  <dje@google.com>
386
387         * Makefile.in (GDBFLAGS): New variable.
388         (run): New rule.
389
390 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
391
392         * NEWS: Add entry documenting the new "-catch-assert" and
393         "-catch-exception" GDB/MI commands.
394
395 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
396
397         * breakpoint.h (init_ada_exception_breakpoint): Add parameter
398         "enabled".
399         * breakpoint.c (init_ada_exception_breakpoint): Add parameter
400         "enabled".  Set B->ENABLE_STATE accordingly.
401         * ada-lang.h (ada_exception_catchpoint_kind): Move here from
402         ada-lang.c.
403         (create_ada_exception_catchpoint): Add declaration.
404         * ada-lang.c (ada_exception_catchpoint_kind): Move to ada-lang.h.
405         (create_ada_exception_catchpoint): Make non-static. Add new
406         parameter "disabled". Use it in call to
407         init_ada_exception_breakpoint.
408         (catch_ada_exception_command): Add parameter "enabled" in call
409         to create_ada_exception_catchpoint.
410         (catch_assert_command): Likewise.
411
412         * mi/mi-cmds.h (mi_cmd_catch_assert, mi_cmd_catch_exception):
413         Add declarations.
414         * mi/mi-cmds.c (mi_cmds): Add the "catch-assert" and
415         "catch-exception" commands.
416         * mi/mi-cmd-catch.c: Add #include "ada-lang.h".
417         (mi_cmd_catch_assert, mi_cmd_catch_exception): New functions.
418
419 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
420
421         * ada-lang.c (enum ada_exception_catchpoint_kind): Renames
422         "enum exception_catchpoint_kind".  Replace the "ex_" prefix
423         of all its enumerates with "ada_".  Update the rest of this
424         file throughout.
425
426 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
427
428         * ada-lang.c (ada_decode_exception_location): Delete.
429         (create_ada_exception_catchpoint): Remove arguments "sal",
430         "addr_string" and "ops".  Add argument "ex_kind" instead.
431         Adjust implementation accordingly, calling ada_exception_sal
432         to get the entities it no longer gets passed as arguments.
433         Document the function's arguments.
434         (catch_ada_exception_command): Use catch_ada_exception_command_split
435         instead of ada_decode_exception_location, and update call to
436         create_ada_exception_catchpoint.
437         (catch_ada_assert_command_split): Renames
438         ada_decode_assert_location.  Remove parameters "addr_string" and
439         "ops", and now returns void.  Adjust implementation accordingly.
440         Update the function documentation.
441         (catch_assert_command): Use catch_ada_assert_command_split
442         instead of ada_decode_assert_location.  Update call to
443         create_ada_exception_catchpoint.
444
445 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
446
447         * utils.h (perror_warning_with_name): Add declaration.
448         * utils.c (perror_warning_with_name): New function.
449         * cli/cli-cmds.c (source_script_with_search): Add call to
450         perror_warning_with_name if from_tty is nul.
451
452 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
453
454         * utils.c (perror_string): New function, extracted out of
455         throw_perror_with_name.
456         (throw_perror_with_name): Rework to use perror_string.
457
458 2013-10-11  Yao Qi  <yao@codesourcery.com>
459
460         * remote.c (discard_pending_stop_replies_in_queue): Update
461         declaration.
462         (struct stop_reply) <rs>: New field.
463         (remove_stop_reply_of_remote_state): New function.
464         (discard_pending_stop_replies_in_queue): Add parameter 'rs'.
465         Callers update.  Pass remove_stop_reply_of_remote_state to
466         QUEUE_iterate.
467         (remote_parse_stop_reply): Initialize field 'rs'.
468
469 2013-10-10  Will Newton  <will.newton@linaro.org>
470
471         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
472         linux_init_abi.
473
474 2013-10-10  Joel Brobecker  <brobecker@adacore.com>
475
476         * cli/cli-cmds.c (show_baud_rate): Moved to serial.c as
477         serial_baud_show_cmd.
478         (_initialize_cli_cmds): Delete the code creating the
479         "set/show remotebaud" commands.
480         * serial.c (baud_rate): Move here from top.c.
481         (serial_baud_show_cmd): Move here from cli/cli-cmds.c.
482         (_initialize_serial): Create "set/show serial baud" commands.
483         Add "set/show remotebaud" command aliases.
484         * top.c (baud_rate): Moved to serial.c.
485         * NEWS: Document the new "set/show serial baud" commands,
486         replacing "set/show remotebaud".
487
488 2013-10-09  Pedro Alves  <palves@redhat.com>
489
490         * breakpoint.c (insert_bp_location): Use memory_error_message to
491         build the memory error string.
492         * c-lang.c: Include "gdbcore.h".
493         (c_get_string): Use memory_error to throw error.
494         (target_xfer_memory_error): Delete.
495         (memory_error_message): New, factored out from
496         target_xfer_memory_error.
497         (memory_error): Change parameter type to target_xfer_error.
498         Rewrite.
499         (read_memory): Use memory_error instead of
500         target_xfer_memory_error.
501         * gdbcore.h: Include "target.h".
502         (memory_error): Change parameter type to target_xfer_error.
503         (memory_error_message): Declare function.
504         * target.c (target_read_memory, target_read_stack)
505         (target_write_memory, target_write_raw_memory): Return
506         TARGET_XFER_E_IO on error.  Adjust comments.
507         (get_target_memory): Pass TARGET_XFER_E_IO to memory_error,
508         instead of EIO.
509         * target.h (target_read, target_insert_breakpoint)
510         (target_remove_breakpoint): Adjust comments.
511         * valprint.c (partial_memory_read): Rename parameter, and adjust
512         comment.
513         (val_print_string): Use memory_error_message to build the memory
514         error string.
515
516 2013-10-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
517
518         * common/filestuff.c (gdb_fopen_cloexec): Remove initialization of
519         result variable.  Rename variable fopen_e_ever_failed to
520         fopen_e_ever_failed_einval.  Retry fopen only for errno EINVAL.
521
522 2013-10-09  Pedro Alves  <palves@redhat.com>
523
524         * monitor.c (monitor_write_memory, monitor_write_memory_bytes)
525         (monitor_write_memory_longlongs, monitor_write_memory_block):
526         Constify 'myaddr' parameter.
527         (monitor_xfer_memory): Adjust interface as monitor_xfer_partial
528         helper.
529         (monitor_xfer_partial): New function.
530         (init_base_monitor_ops): Don't install a deprecated_xfer_memory
531         hook.  Install a to_xfer_partial hook.
532
533 2013-10-09  Tom Tromey  <tromey@redhat.com>
534
535         * dwarf2read.c (dwarf2_get_dwz_file): Update for type change in
536         bfd_get_alt_debug_link_info.
537
538 2013-10-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
539
540         New flag OBJF_NOT_FILENAME.
541         * auto-load.c (auto_load_objfile_script): Check also OBJF_NOT_FILENAME.
542         * jit.c (jit_object_close_impl): Use OBJF_NOT_FILENAME for
543         allocate_objfile.
544         (jit_bfd_try_read_symtab): Use OBJF_NOT_FILENAME for
545         symbol_file_add_from_bfd.
546         * jv-lang.c (get_dynamics_objfile): Use OBJF_NOT_FILENAME for
547         allocate_objfile.
548         * objfiles.c (allocate_objfile): Assert OBJF_NOT_FILENAME if NAME is
549         NULL.
550         * objfiles.h (OBJF_NOT_FILENAME): New.
551
552 2013-10-08  Tom Tromey  <tromey@redhat.com>
553
554         * Makefile.in (SFILES): Add build-id.c.
555         (HFILES_NO_SRCDIR): Add build-id.h.
556         * build-id.c: New file, largely from elfread.c.  Modified
557         most functions.
558         * build-id.h: New file.
559         * dwarf2read.c (dwarf2_get_dwz_file): Update for change to
560         bfd_get_alt_debug_link_info.  Verify dwz file's build-id.
561         Search for dwz file using build-id.
562         * elfread.c (build_id_bfd_get, build_id_verify)
563         (build_id_to_debug_filename, find_separate_debug_file): Remove.
564
565 2013-10-08  Joel Brobecker  <brobecker@adacore.com>
566
567         * ada-lang.c (compare_names_with_case): Renamed from
568         compare_names, adding a new parameter "casing" and its handling.
569         New function documentation.
570         (compare_names): New function, implemented using
571         compare_names_with_case.
572
573 2013-10-08  Joel Brobecker  <brobecker@adacore.com>
574
575         * ada-lang.c (ada_exception_sal): Remove advance declaration.
576
577 2013-10-07  Tom Tromey  <tromey@redhat.com>
578
579         * objfiles.c (free_objfile_per_bfd_storage): Delete the
580         demangled_names_hash.
581         (free_objfile): Don't delete the demangled_names_hash.
582         * objfiles.h (struct objfile_per_bfd_storage)
583         <demangled_names_hash>: New field.
584         (struct objfile) <demangled_names_hash>: Move to
585         objfile_per_bfd_storage.
586         * symfile.c (reread_symbols): Don't delete the
587         demangled_names_hash.
588         * symtab.c (create_demangled_names_hash): Update.
589         (symbol_set_names): Update.
590
591 2013-10-07  Tom Tromey  <tromey@redhat.com>
592
593         * gdb_bfd.c (struct gdb_bfd_data) <relocation_computed,
594         needs_relocations>: New fields.
595         (gdb_bfd_requires_relocations): New function.
596         * gdb_bfd.h (gdb_bfd_requires_relocations): Declare.
597         * objfiles.c (get_objfile_bfd_data): Disallow sharing if
598         the BFD needs relocations applied.
599
600 2013-10-07  Pedro Alves  <palves@redhat.com>
601
602         PR breakpoints/11568
603         * breakpoint.c (remove_threaded_breakpoints): Say "no longer in
604         the thread list" instead of "gone".
605
606 2013-10-06  Sergio Durigan Junior  <sergiodj@redhat.com>
607
608         * NEWS: Mention new convenience variable $_exitsignal.
609         * corelow.c (core_open): Reset exit convenience variables.  Set
610         $_exitsignal to the uncaught signal which generated the corefile.
611         * infrun.c (handle_inferior_event): Reset exit convenience
612         variables.  Set $_exitsignal for TARGET_WAITKIND_SIGNALLED.
613         (clear_exit_convenience_vars): New function.
614         * inferior.h (clear_exit_convenience_vars): New prototype.
615
616 2013-10-06  Yao Qi  <yao@codesourcery.com>
617
618         * varobj.h: Add comments to enum varobj_languages.
619
620 2013-10-04  Doug Evans  <dje@google.com>
621
622         Add support for DWP file format version 2.
623         * NEWS: Mention support for DWP file format version 2.
624         * dwarf2read.c (dwarf2_section_info): Convert asection field to a
625         union of asection, containing_section.  New fields virtual_offset
626         and is_virtual.  Change type of readin filed from int to char.
627         (dwo_sections, dwo_file): Tweak comments.
628         (dwp_v2_section_ids): New enum.
629         (dwp_sections): New fields abbrev, info, line, loc, macinfo, macro,
630         str_offsets, types.
631         (virtual_v1_dwo_sections): Renamed from virtual_dwo_sections.
632         All uses updated.
633         (virtual_v2_dwo_sections): New struct.
634         (dwp_hash_table): New fields version, nr_columns.  Change type of
635         section_pool field to a union.
636         (dwp_file): New field version.
637         (dwarf2_has_info): Check for virtual sections.
638         (get_containing_section): New function.
639         (get_section_bfd_owner, get_section_bfd_section): Call it.
640         (dwarf2_locate_sections): Update.
641         (dwarf2_section_empty_p): Update.
642         (dwarf2_read_section): Handle virtual sections.
643         (locate_dwz_sections): Update.
644         (create_dwp_hash_table): Document and handle V2 format.
645         (locate_v1_virtual_dwo_sections): Renamed from
646         locate_virtual_dwo_sections and update.  All callers updated.
647         (create_dwo_unit_in_dwp_v1): Renamed from create_dwo_in_dwp.
648         Delete arg htab.  Rename arg section_index to unit_index.
649         All callers updated.
650         (MAX_NR_V1_DWO_SECTIONS): Renamed from MAX_NR_DWO_SECTIONS.
651         All uses updated.
652         (create_dwp_v2_section, create_dwo_unit_in_dwp_v2): New functions.
653         (lookup_dwo_unit_in_dwp): Add V2 support.
654         (dwarf2_locate_dwo_sections): Update.
655         (dwarf2_locate_common_dwp_sections): Renamed from
656         dwarf2_locate_dwp_sections and update.  All callers updated.
657         (dwarf2_locate_v2_dwp_sections): New function.
658         (open_and_init_dwp_file): Add V2 support.
659         (read_str_index): New locals str_section, str_offsets_section.
660
661 2013-10-04  Pedro Alves  <palves@redhat.com>
662
663         * common/ptid.c (null_ptid, minus_one_ptid, ptid_build)
664         (pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid)
665         (ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p): Replace
666         describing comments with references to ptid.h.
667         * common/ptid.h: Remove intro description of constructors,
668         accessors and predicates.
669         (struct ptid): Reformat.
670         (minus_one_ptid, ptid_build, pid_to_ptid, ptid_get_pid)
671         (ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid): Change
672         describing comments.
673
674 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
675
676         * aix-thread.c (sync_threadlists): Add missing ')' in call
677         to ptid_build.
678
679 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
680
681         * procfs.c (procfs_init_inferior): Fix typo causing the build
682         to fail.
683
684 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
685
686         * aix-thread.c (ptrace32): Remove cast to addr_ptr.
687
688 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
689
690         * mi/mi-main.c (run_one_inferior): Add function description.
691         Make ARG a pointer to an integer whose value determines whether
692         we should "run" or "start" the program.
693         (mi_cmd_exec_run): Add handling of the "--start" option.
694         Reject all other command-line options.
695         * NEWS: Add entry for "-exec-run"'s new "--start" option.
696
697 2013-10-04  Yao Qi  <yao@codesourcery.com>
698
699         * remote-notif.h (REMOTE_NOTIF_ID): New enum.
700         (struct notif_client) <pending_event>: Moved
701         to struct remote_notif_state.
702         <id>: New field.
703         (struct remote_notif_state) <pending_event>: New field.
704         (notif_event_xfree): Declare.
705         * remote-notif.c (handle_notification): Adjust.
706         (notif_event_xfree): New function.
707         (do_notif_event_xfree): Call notif_event_xfree.
708         (remote_notif_state_xfree): Call notif_event_xfree to free
709         each element in field pending_event.
710         * remote.c (discard_pending_stop_replies): Remove declaration.
711         (discard_pending_stop_replies_in_queue): Declare.
712         (remote_close): Call discard_pending_stop_replies_in_queue
713         instead of discard_pending_stop_replies.
714         (remote_start_remote): Adjust.
715         (stop_reply_xfree): Call notif_event_xfree.
716         (notif_client_stop): Adjust initialization.
717         (remote_notif_remove_all): Rename it to ...
718         (remove_stop_reply_for_inferior): ... this.  Update comments.
719         Don't check INF is NULL.
720         (discard_pending_stop_replies): Return early if notif_state is
721         NULL.  Adjust.  Don't check INF is NULL.
722         (remote_notif_get_pending_events): Adjust.
723         (discard_pending_stop_replies_in_queue): New function.
724         (remote_wait_ns): Likewise.
725
726 2013-10-04  Yao Qi  <yao@codesourcery.com>
727
728         * remote-notif.c (DECLARE_QUEUE_P): Remove.
729         (notif_queue): Remove.
730         (remote_notif_process): Add one parameter 'notif_queue'.
731         Update comments.  Callers update.
732         (remote_async_get_pending_events_token): Remove.
733         (remote_notif_register_async_event_handler): Remove.
734         (remote_notif_unregister_async_event_handler): Remove.
735         (handle_notification): Add parameter 'notif_queue'.  Update
736         comments.  Callers update.
737         (notif_xfree): Remove.
738         (remote_notif_state_allocate): New function.
739         (remote_notif_state_xfree): New function.
740         (_initialize_notif): Remove code to allocate queue.
741         * remote-notif.h (DECLARE_QUEUE_P): Moved from remote-notif.c.
742         (struct remote_notif_state): New.
743         (handle_notification): Update declaration.
744         (remote_notif_process): Likewise.
745         (remote_notif_register_async_event_handler): Remove.
746         (remote_notif_unregister_async_event_handler): Remove.
747         (remote_notif_state_allocate): Declare.
748         (remote_notif_state_xfree): Declare.
749         * remote.c (struct remote_state) <notif_state>: New field.
750         (remote_close): Don't call
751         remote_notif_unregister_async_event_handler.  Call
752         remote_notif_state_xfree.
753         (remote_open_1): Don't call
754         remote_notif_register_async_event_handler.  Call
755         remote_notif_state_allocate.
756
757 2013-10-04  Yao Qi  <yao@codesourcery.com>
758
759         * varobj.c (create_child_with_value): Remove 'const' from the
760         type of parameter 'name'.
761         (varobj_add_child): Likewise.
762         (install_dynamic_child): Remove 'const' from the type of
763         parameter 'name'.
764         (varobj_add_child): Likewise.
765         (create_child_with_value): Likewise.  Update comments.  Don't
766         duplicate 'name'.
767         (update_dynamic_varobj_children): Duplicate 'name'
768         and pass it to install_dynamic_child.
769
770 2013-10-03  Phil Muldoon  <pmuldoon@redhat.com>
771
772         * python/py-value.c (convert_value_from_python): Move PyInt_Check
773         conversion logic to occur after PyLong_Check.  Comment on order
774         change significance.
775         * python/py-arch.c (archpy_disassemble): Comment on order of
776         conversion for integers and longs.
777
778 2013-10-03  Pedro Alves  <palves@redhat.com>
779
780         * common/linux-ptrace.c (linux_check_ptrace_features): Factor out
781         the PTRACE_O_TRACESYSGOOD and PTRACE_O_TRACEFORK to separate
782         functions.  Always test for PTRACE_O_TRACESYSGOOD even if
783         PTRACE_O_TRACEFORK is not supported.
784         (linux_test_for_tracesysgood): New function.
785         (linux_test_for_tracefork): New function, factored out from
786         linux_check_ptrace_features, and also don't kill child_pid here.
787
788 2013-10-03  Tristan Gingold  <gingold@adacore.com>
789
790         * i386-darwin-nat.c (i386_darwin_dr_set): Fix argument type.
791         Remove verbose error reporting.  Use detected state to
792         thread_set_state call.
793         (i386_darwin_dr_get): Fix return type.  Remove verbose error
794         report.
795         Remove trailing spaces.
796
797 2013-10-02  Pedro Alves  <palves@redhat.com>
798
799         * cp-valprint.c (cp_print_value_fields): Adjust calls to
800         val_print_optimized_out.
801         * jv-valprint.c (java_print_value_fields): Likewise.
802         * p-valprint.c (pascal_object_print_value_fields): Likewise.
803         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full)
804         <DWARF_VALUE_REGISTER>: If the register was not saved, return a
805         new optimized out value.
806         * findvar.c (address_from_register): Likewise.
807         * frame.c (put_frame_register): Tweak error string to say the
808         register was not saved, rather than optimized out.
809         * infcmd.c (default_print_one_register_info): Adjust call to
810         val_print_optimized_out.  Use value_of_register instead of
811         get_frame_register_value.
812         * mi/mi-main.c (output_register): Use value_of_register instead of
813         get_frame_register_value.
814         * valprint.c (valprint_check_validity): Likewise.
815         (val_print_optimized_out): New value parameter.  If the value is
816         lval_register, print <not saved> instead.
817         (value_check_printable, val_print_scalar_formatted): Adjust calls
818         to val_print_optimized_out.
819         * valprint.h (val_print_optimized_out): New value parameter.
820         * value.c (struct value) <optimized_out>: Extend comment.
821         (error_value_optimized_out): New function.
822         (require_not_optimized_out): Use it.  Use a different string for
823         lval_register values.
824         * value.h (error_value_optimized_out): New declaration.
825         * NEWS: Mention <not saved>.
826
827 2013-10-02  Joel Brobecker  <brobecker@adacore.com>
828
829         * symtab.c (compare_search_syms): Use FILENAME_CMP instead of
830         strcmp to compare two symtab filenames.
831
832 2013-10-02  Joel Brobecker  <brobecker@adacore.com>
833
834         * symtab.c (search_symbols_equal): Delete.
835         (sort_search_symbols_remove_dups): Replace call to
836         search_symbols_equal by call to compare_search_syms,
837         adjusting as necessary.
838
839 2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
840
841         PR python/15579
842
843         * python/python.c: Document gdb.execute command in Python help.
844
845 2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
846
847         * python/py-frame.c (frame_info_to_frame_object): Use
848         gdbpy_convert_exception. Clean up Python object on failure.
849
850 2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
851
852         * python/lib/gdb/command/frame_filters.py
853         (InfoFrameFilter.list_frame_filters): Retrieve exception manually.
854         (ShowFrameFilterPriority.invoke): Ditto.
855
856 2013-10-01  Keith Seitz  <keiths@redhat.com>
857
858         * linespec.c (struct ls_parser): Make 'saved_arg' const.
859         (parse_linespec): Make 'argptr' const.
860         Remove temporary cast of 'argptr' to const char **.
861         (decode_line_full): Pass const pointer to parse_linespec.
862         (decode_line_1): Likewise.
863         (decode_objc): Make local variable 'new_argptr' const.
864         (find_function_symbols): Remove temporary cast to char *
865         to find_imps.
866         * objc-lang.c (find_imps): Make argument 'method' const.
867         Return const.
868         * objc-lang.h (find_imps): Likewise.
869
870 2013-10-01  Keith Seitz  <keiths@redhat.com>
871
872         * completer.c (skip_quoted_chars): Make all arguments const.
873         Return const.
874         (skip_quoted): Likewise.
875         * completer.h (skip_quoted_chars): Likewise.
876         (skip_quoted): Likewise.
877         * defs.h (skip_quoted): Remove duplicate declaration.
878         * jv-exp.y: Include completer.h.
879         (yylex): Remove unneccessary cast to char * fro skip_quoted.
880         * p-exp.y: Include completer.h.
881
882 2013-10-01  Keith Seitz  <keiths@redhat.com>
883
884         * c-exp.y (parse_number): Make first argument const.
885         Make a copy of the input to manipulate.
886         (c_parse_escape): Make first argument const.
887         Make local variable 'tokptr' const.
888         (parse_string_or_char): Make first two arguments const.
889         (macro_original_text): Make const.
890         (lex_one_token): Make local variable 'tokstart' const.
891         Likewise for local variables named 'p'.
892         Cast away const for struct stoken (temporary).
893         * c-lang.h (c_parse_escpae): Make first argument const.
894         * cli/cli-cmds.c (echo_command): Make local variable 'p'
895         const.
896         * cli/cli-setshow.c (do_set_command): Likewise for 'p' in
897         var_string case.
898         * f-exp.y (parse_number): Make first argument const.
899         (match_string_literal): Make local variable 'tokstart'
900         const.
901         (yylex): Make local variable 'p' const.
902         Cast away const for struct stoken (temporary).
903         * go-exp.y (parse_number): Make first argument const.
904         (parse_string_or_char): Likewise.
905         Make local variable 'tokstart' const.
906         (lex_one_token): Likewise for numerous locals called 'p'.
907         Cast away const for struct stoken (temporary).
908         * jv-exp.y (parse_number): Make first argument const.
909         Make local variables 'tokstart' and 'tokptr' const.
910         Cast away const for call to skip_quoted (temporary).
911         (yylex): Make local variable 'p' const.
912         Cast away const for struct stoken (temporary).
913         * m2-exp.y (parse_number): Make local variable 'p' const.
914         (yylex): Likewise for 'tokstart'.
915         Cast away const for struct stoken (temporary).
916         Make local variable 'p' const.
917         * macroexp.c (get_character_constant): Pass a const string
918         to c_parse_escape.
919         (get_string_literal): Likewise.
920         (macro_expand_next): Make first argument const.
921         Cast away const for init_shared_buffer.
922         * macroexp.h (macro_expand_next): Make first argument const.
923         * p-exp.y (yylex): Make a local copy of 'lexptr'.
924         Pass a const string to c_parse_escape.
925         Make local variables 'p' and 'namestart' const.
926         * parse.c (lexptr): Make const.
927         (prev_lexptr): Likewise.
928         (find_template_name_end): Return const.
929         Make argument const, too.
930         (parse_exp_in_context): Make first argument const.
931         Remove the entire const_hack.
932         (parse_exp_in_context_1): Make first argument const.
933         * parser-defs.h (find_template_name_end): Return const.
934         Make argument const, too.
935         (lexptr): Make const.
936         (prev_lexptr): Likewise.
937         * utils.c (parse_escape): Make second argument const.
938         * utils.h (parse_escape): Likewise.
939
940 2013-10-01  Keith Seitz  <keiths@redhat.com>
941
942         * ada-exp.y (write_object_renaming): Update: struct stoken.ptr
943         is now const.
944         (block_lookup): Make 'raw_name' and 'name' const.
945         * ada-lex.l (processString): Update for struct stoken.ptr.
946         * c-exp.y (qualified_name : TYPENAME COLONCOLON '~' name): Likewise.
947         (operator_stoken): Likewise.
948         (lex_one_token): Remove temporary cast to char * for
949         'yylval.sval.ptr'.
950         * f-exp.y (yylex): Likewise.
951         * gdb-types.c (lookup_struct_elt_type): Make argument 'name' const.
952         * gdbtypes.h (lookup_struct_elt_type): Likewisee.
953         * go-exp.y (lex_one_token): Remove temporary cast to char * for
954         'yylval.sval.ptr'.
955         * jv-exp.y (QualifiedName): Update for struct stoken.ptr.
956         (yylex): Remove temporary cast to char * for 'yylval.sval.ptr'.
957         * linespec.c (struct ls_parser): Make 'stream' const.
958         (find_parameter_list_end): Make argument 'input' and local
959         variable 'p' const.
960         (linespec_lexer_lex_string): Make local variables 'start' and
961         'p' const.
962         Use skip_spaces_const instead of skip_spaces.
963         (linespec_lexer_peek_token): Make local variable 'saved_stream'
964         const.
965         (parse_linespec): Temporarily cast 'argptr' to const for
966         'parser->lexer.stream'.
967         * m2-exp.y (yylex): Remove temporary cast to char * for
968         'yylval.sval.ptr'.
969         * objc-lang.c (add_msglist): Make local variable 'p' const.
970         * p-exp.y (exp : exp '['): Update for struct stoken.ptr.
971         (exp : STRING): Make 'sp' const.
972         (parse_number): Make argument 'p' const.
973         * parser-defs.h (struct stoken): Make 'ptr' const.
974
975 2013-10-01  Doug Evans  <dje@google.com>
976
977         * cli/cli-decode.c: Remove unnecessary inclusion of tui/tui.h.
978
979 2013-10-01  Yao Qi  <yao@codesourcery.com>
980
981         * varobj.c (c_value_of_root): Remove declaration.
982         (cplus_value_of_root, java_value_of_root): Likewise.
983         (ada_value_of_root): Likewise.
984         (struct language_specific) <value_of_root>: Remove.
985         (languages): Update initialization.
986         (check_scope): Move earlier.
987         (c_value_of_root): Move earlier and rename to ...
988         (value_of_root_1): ... this.
989         (value_of_root): Caller update.
990         (cplus_value_of_root, java_value_of_root): Remove.
991         (ada_value_of_root): Remove.
992
993 2013-10-01  Yao Qi  <yao@codesourcery.com>
994
995         * varobj.c (varobj_format_string): Remove "unknown".
996         (languages): Remove the first element.
997         * varobj.h (enum varobj_languages): Remove vlang_c.
998
999 2013-10-01  Yao Qi  <yao@codesourcery.com>
1000
1001         * varobj.c (struct language_specific) <language>: Remove.
1002         (languages): Update the initialization.
1003
1004 2013-10-01  Yao Qi  <yao@codesourcery.com>
1005
1006         * arm-wince-tdep.c: Remove inclusion of "solib.h" and
1007         "solib-target.h".  Include "windows-tdep.h".
1008         (arm_wince_init_abi): Call windows_init_abi.  Remove call to
1009         set_solib_ops and set_gdbarch_has_dos_based_file_system.
1010         * configure.tgt (arm*-wince-pe | arm*-*-mingw32ce*): Append
1011         windows-tdep.o to gdb_target_obs.
1012
1013 2013-10-01  Yao Qi  <yao@codesourcery.com>
1014
1015         * amd64-windows-tdep.c: Remove inclusion of "solib.h" and
1016         "solib-target.h".
1017         (amd64_windows_init_abi): Don't call set_solib_ops and
1018         set_gdbarch_iterate_over_objfiles_in_search_order.  Call
1019         windows_init_abi instead.
1020         * i386-cygwin-tdep.c: Remove inclusion of "solib.h" and
1021         "solib-target.h".
1022         (i386_cygwin_init_abi): Don't call set_solib_ops,
1023         set_gdbarch_has_dos_based_file_system and
1024         set_gdbarch_iterate_over_objfiles_in_search_order.  Call
1025         windows_init_abi instead.
1026         * windows-tdep.c: Include "solib.h" and "solib-target.h".
1027         (windows_init_abi): New function.
1028         (windows_iterate_over_objfiles_in_search_order): Make it
1029         static.
1030         * windows-tdep.h (windows_init_abi): Declare.
1031         (windows_iterate_over_objfiles_in_search_order): Remove
1032         declaration.
1033
1034 2013-10-01  Jerome Guitton  <guitton@adacore.com>
1035
1036         Checked in by Joel Brobecker  <brobecker@adacore.com>
1037         * system-gdbinit/elinos.py (get_elinos_environment): Return an
1038         incomplete dictionnary instead of None in case of missing
1039         environment variables.
1040         (elinos_init): in case of an incomplete environment, best
1041         effort to load system libraries instead of abort.
1042
1043 2013-10-01  Joel Brobecker  <brobecker@adacore.com>
1044
1045         * ada-lang.c (ada_has_this_exception_support): Ignore
1046         mst_solib_trampoline minimal symbols.
1047
1048 2013-09-30  Tristan Gingold  <gingold@adacore.com>
1049
1050         * i386-darwin-nat.c (darwin_complete_target): Install methods for
1051         hardware watchpoint.
1052         (i386_darwin_dr_set): Support 32 and 64 bit states.
1053         (i386_darwin_dr_get): Likewise.
1054         (i386_darwin_dr_set_control): Make static.
1055         (i386_darwin_dr_set_addr, i386_darwin_dr_get_addr)
1056         (i386_darwin_dr_get_status, i386_darwin_dr_get_control): Likewise.
1057
1058 2013-09-30  Luis Machado  <lgustavo@codesourcery.com>
1059
1060         * aarch64-linux-nat.c: Replace PIDGET with ptid_get_pid.
1061         Replace TIDGET with ptid_get_lwp.
1062         Replace GET_LWP with ptid_get_lwp.
1063         * aix-thread.c (BUILD_THREAD, BUILD_LWP): Remove.
1064         Replace BUILD_THREAD with ptid_build.
1065         Replace BUILD_LWP with ptid_build.
1066         Replace PIDGET with ptid_get_pid.
1067         Replace TIDGET with ptid_get_lwp.
1068         * alphabsd-nat.c: Replace PIDGET with ptid_get_pid.
1069         * amd64-linux-nat.c: Replace PIDGET with ptid_get_pid.
1070         Replace TIDGET with ptid_get_lwp.
1071         * amd64bsd-nat.c: Replace PIDGET with ptid_get_pid.
1072         * arm-linux-nat.c: Replace PIDGET with ptid_get_pid.
1073         Replace TIDGET with ptid_get_lwp.
1074         Replace GET_LWP with ptid_get_lwp.
1075         * armnbsd-nat.c: Replace PIDGET with ptid_get_pid.
1076         * auxv.c: Likewise.
1077         * breakpoint.c: Likewise.
1078         * common/ptid.c (ptid_is_pid): Condense check for
1079         null_ptid and minus_one_ptid.
1080         (ptid_lwp_p): New function.
1081         (ptid_tid_p): New function.
1082         * common/ptid.h: Update comments for accessors.
1083         (ptid_lwp_p): New prototype.
1084         (ptid_tid_p): New prototype.
1085         * defs.h (PIDGET, TIDGET, MERGEPID): Do not define.
1086         * gcore.c: Replace PIDGET with ptid_get_pid.
1087         * gdbthread.h: Likewise.
1088         * gnu-nat.c: Likewise.
1089         * hppa-linux-nat.c: Replace PIDGET with ptid_get_pid.
1090         Replace TIDGET with ptid_get_lwp.
1091         * hppabsd-nat.c: Replace PIDGET with ptid_get_pid.
1092         * hppanbsd-nat.c: Likewise.
1093         * i386-linux-nat.c: Replace PIDGET with ptid_get_pid.
1094         Replace TIDGET with ptid_get_lwp.
1095         * i386bsd-nat.c: Replace PIDGET with ptid_get_pid.
1096         * ia64-linux-nat.c: Replace PIDGET with ptid_get_pid.
1097         * infcmd.c: Likewise.
1098         * inferior.h: Likewise.
1099         * inflow.c: Likewise.
1100         * infrun.c: Likewise.
1101         * linux-fork.c: Likewise.
1102         * linux-nat.c: Replace PIDGET with ptid_get_pid.
1103         Replace GET_PID with ptid_get_pid.
1104         Replace is_lwp with ptid_lwp_p.
1105         Replace GET_LWP with ptid_get_lwp.
1106         Replace BUILD_LWP with ptid_build.
1107
1108 2013-09-28  Mike Frysinger  <vapier@gentoo.org>
1109
1110         * common/linux-btrace.c: Move sys/syscall.h out of the
1111         HAVE_LINUX_PERF_EVENT_H check and wrap it in HAVE_SYS_SYSCALL_H.
1112         Also check for SYS_perf_event_open before attempting to buid.
1113
1114 2013-09-27  Doug Evans  <dje@google.com>
1115
1116         * dwarf2read.c (dwarf2_section_info): Add comment.
1117         (dwp_file): Split loaded_cutus into loaded_cus, loaded_tus.
1118         All uses updated.
1119         (dwarf2_section_empty_p): Rename arg from "info" to "section".
1120         (dwarf2_read_section): Delete unused local "header".  Add section
1121         name to error message.
1122         (create_dwo_in_dwp): Tweak comment.
1123         (MAX_NR_DWO_SECTIONS): Combine count of .debug_macro + .debug_macinfo.
1124
1125         * dwarf2read.c (die_reader_specs): Tweak comment.
1126         (get_section_bfd_owner, get_section_bfd_section): New functions.
1127         (get_section_name, get_section_file_name): New functions.
1128         (get_section_id, get_section_flags): New functions.
1129         (*): Use new functions to access section fields.
1130
1131         * dwarf2read.c (struct dwo_file): Add/tweak comments.
1132         (lookup_dwo_unit_in_dwp): Renamed from lookup_dwo_in_dwp.  Remove
1133         arg "htab".  All callers updated.
1134         (create_debug_types_hash_table): Remove redundant copy of
1135         abbrev_section.
1136         (create_dwo_in_dwp): Tweak comments.
1137         (read_str_index): Tweak comment.  Record dwarf form name in static
1138         local.
1139
1140 2013-09-27  Pedro Alves  <palves@redhat.com>
1141
1142         * remote.h (REMOTE_SYSROOT_PREFIX): New define.
1143         (remote_filename_p): Add comment.
1144         * remote.c (remote_filename_p): Adjust to use
1145         REMOTE_SYSROOT_PREFIX.
1146         * solib.c (solib_find): When deciding whether we need to add a
1147         directory separator, check whether the sysroot is "remote:"
1148         instead of checking whether the patch has a drive spec.  Add
1149         comments.
1150
1151 2013-09-27  Pedro Alves  <palves@redhat.com>
1152
1153         * remote.c (struct stop_reply) <solibs_changed, replay_event>:
1154         Delete fields.
1155         (remote_parse_stop_reply): Adjust, setting event->ws.kind
1156         directly.
1157
1158 2013-09-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
1159
1160         Fix set debug frame output.
1161         * frame.c (fprint_frame_type): Add TAILCALL_FRAME entry.  Move
1162         SENTINEL_FRAME entry lower to match enum frame_type order.
1163
1164 2013-09-26  Pierre Muller  <muller@sourceware.org>
1165
1166         Replace constant values 8 to 15 by AMD64_R8_REGNUM to
1167         AMD64_R15_REGNUM when a register index is expected.
1168         * amd64-windows-tdep.c (amd64_windows_dummy_call_integer_regs):
1169         Substitute in array.
1170         * amd64-tdep.c (amd64_dwarf_regmap): Ditto.
1171         (amd64_push_arguments): Substitute in integer_regnum array.
1172
1173 2013-09-25  Doug Evans  <dje@google.com>
1174
1175         * objfiles.c (allocate_objfile): Move comment to better place.
1176
1177         New option "set debug symfile on".
1178         * NEWS: Mention "set debug symfile".
1179         * Makefile.in (SFILES): Add symfile-debug.c.
1180         (COMMON_OBS): Add symfile-debug.o.
1181         * elfread.c (elf_symfile_read): Use objfile_set_sym_fns to set the
1182         objfile's symbol functions.
1183         * objfiles.h (objfile_set_sym_fns): Declare.
1184         * symfile-debug.c: New file.
1185         * symfile.c (syms_from_objfile_1): Use objfile_set_sym_fns to set the
1186         objfile's symbol functions.
1187         (reread_symbols): Ditto.
1188
1189         * symfile.h (struct sym_fns): Delete member "sym_flavour".
1190         All uses updated.
1191         (add_symtab_fns): Update prototype.
1192         * symfile.c (sym_fns_ptr): Delete.  Replace with ...
1193         (registered_sym_fns): ... this.
1194         (symtab_fns): Update.
1195         (add_symtab_fns): New arg "flavour".  All callers updated.
1196         (find_sym_fns): Rewrite to use new sym_fns registry.
1197
1198         * symfile.h (struct sym_fns): Add "objfile" argument to
1199         sym_read_linetable.  All uses updated.
1200
1201         * symtab.c (domain_name, search_domain_name): New functions.
1202         * symtab.h (domain_name, search_domain_name): Declare.
1203
1204         * symfile.h (struct quick_symbol_functions): Reorg arg list of
1205         map_matching_symbols so objfile is first.  All uses updated.
1206         * dwarf2read.c (dw2_map_matching_symbols): Update signature.
1207         * psymtab.c (map_matching_symbols_psymtab): Update signature.
1208
1209 2013-09-25  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1210
1211         PR shlibs/8882
1212         * solib-svr4.c (svr4_read_so_list): Skip the vDSO when reading
1213         link map entries.
1214
1215 2013-09-24  Doug Evans  <dje@google.com>
1216
1217         * objfiles.c (free_objfile): Move comment.
1218
1219 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
1220
1221         * ada-exp.y (string_to_operator): Delete.
1222         (dummy_string_to_ada_operator): Delete.
1223
1224 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
1225
1226         Revert:
1227         * i386-tdep.h (enum amd64_reg_class): New, moved here from
1228         amd64-tdep.c.
1229         (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
1230         call_dummy_integer_regs, and classify.
1231         * amd64-tdep.h (amd64_classify): Add declaration.
1232         * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
1233         (amd64_reg_class): Delete, moved to i386-tdep.h.
1234         (amd64_classify): Make non-static.  Move declaration to amd64-tdep.h.
1235         Replace call to amd64_classify by call to tdep->classify.
1236         (amd64_push_arguments): Get the list of registers to use for
1237         passing integer parameters from the gdbarch tdep structure,
1238         rather than using a hardcoded one.  Replace calls to amd64_classify
1239         by calls to tdep->classify.
1240         (amd64_push_dummy_call): Get the register number used for
1241         the "hidden" argument from tdep->call_dummy_integer_regs.
1242         (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
1243         and tdep->call_dummy_integer_regs.  Set tdep->classify.
1244
1245 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
1246
1247         Revert:
1248         * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
1249         * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
1250         where tdep->memory_args_by_pointer is non-zero.
1251
1252 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
1253
1254         Revert:
1255         * i386-tdep.h (struct gdbarch_tdep): Add new field
1256         integer_param_regs_saved_in_caller_frame.
1257         * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
1258         stack if tdep->integer_param_regs_saved_in_caller_frame is set.
1259
1260 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
1261
1262         * amd64-windows-tdep.c: #include "value.h"
1263         (amd64_windows_classify): Delete.
1264         (amd64_windows_passed_by_integer_register)
1265         (amd64_windows_passed_by_xmm_register)
1266         (amd64_windows_passed_by_pointer)
1267         (amd64_windows_adjust_args_passed_by_pointer)
1268         (amd64_windows_store_arg_in_reg, amd64_windows_push_arguments)
1269         (amd64_windows_push_dummy_call): New functions.
1270         (amd64_windows_init_abi): Remove setting of
1271         tdep->call_dummy_num_integer_regs, tdep->call_dummy_integer_regs,
1272         tdep->classify, tdep->memory_args_by_pointer and
1273         tdep->integer_param_regs_saved_in_caller_frame.
1274         Add call to set_gdbarch_push_dummy_call.
1275
1276 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
1277
1278         * dwarf2read.c (open_and_init_dwp_file): Try open_dwp_file also with
1279         objfile->original_name.
1280
1281 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
1282
1283         Pass down original filename for objfile.
1284         * coffread.c (coff_symfile_read): Update symbol_file_add_separate call.
1285         * elfread.c (elf_symfile_read): Likewise.
1286         * jit.c (jit_object_close_impl): Update allocate_objfile call, no
1287         longer set ORIGINAL_NAME.
1288         (jit_bfd_try_read_symtab): Update symbol_file_add_from_bfd call.
1289         * jv-lang.c (get_dynamics_objfile): Update allocate_objfile call.
1290         * machoread.c (macho_add_oso_symfile): Add parameter name.  Update
1291         symbol_file_add_from_bfd call.
1292         (macho_symfile_read_all_oso): Update two macho_add_oso_symfile calls.
1293         (macho_check_dsym): Add parameter filenamep.  Change function comment.
1294         Set *filenamep.
1295         (macho_symfile_read): New variable dsym_filename.  Update
1296         macho_check_dsym call.  Use it for symbol_file_add_separate.
1297         * objfiles.c (allocate_objfile): Add parameter name.  New comment for
1298         it.  Use it for objfile->original_name.
1299         (objfile_name): Return OBFD's filename, if available.
1300         * objfiles.h (allocate_objfile): Add new parameter name.
1301         * solib.c (solib_read_symbols): Update symbol_file_add_from_bfd call.
1302         * symfile-mem.c (symbol_file_add_from_memory): Update
1303         symbol_file_add_from_bfd call.
1304         * symfile.c (read_symbols): Update symbol_file_add_separate call, new
1305         comment for it.
1306         (symbol_file_add_with_addrs): New parameter name, add function comment
1307         for it.  Remove variable name.  Update allocate_objfile call.
1308         (symbol_file_add_separate): New parameter name, add function comment
1309         for it.  Update symbol_file_add_with_addrs call.
1310         (symbol_file_add_from_bfd): New parameter name.  Update
1311         symbol_file_add_with_addrs call.
1312         (symbol_file_add): Update symbol_file_add_from_bfd call.
1313         (reread_symbols): New variable original_name.  Save
1314         objfile->original_name by it.
1315         * symfile.h (symbol_file_add_from_bfd, symbol_file_add_separate): Add
1316         second parameter.
1317
1318 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
1319
1320         Code cleanup: Add objfile_name accessor function.
1321         * ada-lang.c (is_known_support_routine): Use objfile_name.
1322         * auto-load.c (source_gdb_script_for_objfile)
1323         (auto_load_objfile_script): Likewise.
1324         * coffread.c (coff_symtab_read, read_one_sym): Likewise.
1325         * dbxread.c (dbx_symfile_read): Likewise.
1326         * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
1327         * dwarf2loc.c (locexpr_describe_location_piece): Likewise.
1328         * dwarf2read.c (dwarf2_get_dwz_file, dwarf2_read_index)
1329         (dw2_symtab_iter_next, dw2_expand_symtabs_matching)
1330         (lookup_dwp_signatured_type, lookup_dwo_unit)
1331         (dwarf2_build_psymtabs_hard, scan_partial_symbols, process_queue)
1332         (fixup_go_packaging, process_imported_unit_die, dwarf2_physname)
1333         (read_import_statement, create_dwo_cu, open_and_init_dwp_file)
1334         (lookup_dwo_cutu, read_call_site_scope, dwarf2_ranges_read)
1335         (dwarf2_record_block_ranges, read_common_block, read_typedef)
1336         (read_subrange_type, load_partial_dies, read_partial_die)
1337         (read_addr_index_1, read_str_index, dwarf_decode_lines_1)
1338         (die_containing_type, build_error_marker_type, lookup_die_type)
1339         (follow_die_ref_or_sig, follow_die_ref, dwarf2_fetch_die_loc_sect_off)
1340         (dwarf2_fetch_constant_bytes, follow_die_sig, get_signatured_type)
1341         (get_DW_AT_signature_type, write_psymtabs_to_index)
1342         (save_gdb_index_command): Likewise.
1343         * elfread.c (find_separate_debug_file_by_buildid, elf_symfile_read):
1344         Likewise.
1345         * expprint.c (dump_subexp_body_standard): Likewise.
1346         * gdbtypes.c (type_name_no_tag_or_error): Likewise.
1347         * jit.c (jit_object_close_impl): Use the objfile field name renamed to
1348         original_name.
1349         * linux-thread-db.c (try_thread_db_load_from_pdir_1): New variable
1350         obj_name, use objfile_name for it, use the variable.
1351         (try_thread_db_load_from_pdir, has_libpthread, thread_db_new_objfile):
1352         Use objfile_name.
1353         * machoread.c (macho_symtab_read, macho_check_dsym)
1354         (macho_symfile_relocate): Likewise.
1355         * maint.c (maintenance_translate_address): Likewise.
1356         * minidebug.c (find_separate_debug_file_in_section): Likewise.
1357         * minsyms.c (install_minimal_symbols): Likewise.
1358         * objfiles.c (allocate_objfile): Use the objfile field name renamed to
1359         original_name.
1360         (filter_overlapping_sections): Use objfile_name.
1361         (objfile_name): New function.
1362         * objfiles.h (struct objfile): Rename field name to original_name.
1363         (objfile_name): New prototype.
1364         * printcmd.c (sym_info, address_info): Use objfile_name.
1365         * probe.c (parse_probes, collect_probes, compare_probes)
1366         (info_probes_for_ops): Likewise.
1367         * progspace.c (clone_program_space): Likewise.
1368         * psymtab.c (require_partial_symbols, dump_psymtab, allocate_psymtab)
1369         (maintenance_info_psymtabs): Likewise.
1370         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
1371         (source_section_scripts): Likewise.
1372         * python/py-objfile.c (objfpy_get_filename): Likewise.
1373         * python/py-progspace.c (pspy_get_filename): Likewise.
1374         * solib-aix.c (solib_aix_get_toc_value): Likewise.
1375         * solib-som.c (match_main, som_solib_section_offsets): Likewise.
1376         * solib.c (solib_read_symbols): Likewise.
1377         * stabsread.c (scan_file_globals): Likewise.
1378         * stap-probe.c (handle_stap_probe): Likewise.
1379         * symfile.c (symbol_file_clear, separate_debug_file_exists)
1380         (find_separate_debug_file_by_debuglink): Likewise.
1381         (reread_symbols): Likewise.  Use the objfile field name renamed to
1382         original_name.
1383         (allocate_symtab): Use objfile_name.
1384         * symmisc.c (print_symbol_bcache_statistics, print_objfile_statistics)
1385         (dump_objfile, dump_msymbols, dump_symtab_1)
1386         (maintenance_print_msymbols, maintenance_print_objfiles)
1387         (maintenance_info_symtabs, maintenance_check_symtabs): Likewise.
1388         * target.c (target_translate_tls_address, target_info): Likewise.
1389         * xcoffread.c (xcoff_initial_scan): Make variable name const.  Use
1390         objfile_name.
1391
1392 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
1393
1394         Code cleanup.
1395         * probe.c (parse_probes): Rename variable objfile_name to
1396         objfile_namestr.
1397
1398 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
1399
1400         Remove solib-sunos.c.
1401         * Makefile.in (ALLDEPFILES): Remove solib-sunos.c.
1402         * config/m68k/obsd.mh (NATDEPFILES): Remove solib-sunos.o.
1403         * objfiles.c (rt_common_objfile): Remove.
1404         (free_objfile): Remove rt_common_objfile comparison.
1405         * objfiles.h (rt_common_objfile): Remove.
1406         * solib-sunos.c: Remove.
1407         * symfile.c (reread_symbols): Remove solib-sunos.c comment.
1408
1409 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
1410
1411         Remove a.out NetBSD and OpenBSD hosts.
1412         * NEWS (Removed native configurations): New.
1413         * config/arm/nbsdaout.mh: Remove.
1414         * config/i386/nbsdaout.mh: Remove.
1415         * config/i386/obsdaout.mh: Remove.
1416         * config/m68k/nbsdaout.mh: Remove.
1417         * config/sparc/nbsdaout.mh: Remove.
1418         * config/vax/nbsdaout.mh: Remove.
1419         * configure.host (arm*-*-netbsd*, i[34567]86-*-netbsd*)
1420         (i[34567]86-*-openbsd[0-2].*, i[34567]86-*-openbsd3.[0-3])
1421         (m68*-*-netbsd*, sparc-*-netbsd*, vax-*-netbsd*): Add them to obsolete
1422         error.
1423         (arm*-*-netbsd*, i[34567]86-*-netbsd*, i[34567]86-*-openbsd[0-2].*)
1424         (i[34567]86-*-openbsd3.[0-3], m68*-*-netbsd*, sparc-*-netbsdaout*)
1425         (sparc-*-netbsd*, vax-*-netbsd*): Remove.
1426
1427 2013-09-23  Tom Tromey  <tromey@redhat.com>
1428
1429         * linespec.c (struct minsym_and_objfile): Remove.
1430         (minsym_and_objfile_d): Remove.
1431         (struct linespec, struct collect_info, linespec_parse_basic)
1432         (convert_linespec_to_sals, linespec_parser_delete, decode_objc)
1433         (compare_msymbols, find_method, find_function_symbols)
1434         (find_linespec_symbols, struct collect_minsyms, compare_msyms)
1435         (add_minsym, search_minsyms_for_name): Update.
1436
1437 2013-09-23  Andrew Burgess  <aburgess@broadcom.com>
1438
1439         * regcache.c: Add include of valprint.h.
1440         (dump_endian_bytes): Delete.
1441         (regcache_dump): Use print_hex_chars not dump_endian_bytes.
1442
1443 2013-09-23  Andrew Burgess  <aburgess@broadcom.com>
1444
1445         * sh64-tdep.c (sh64_do_fp_register): Use print_hex_chars.
1446
1447 2013-09-19  Pedro Alves  <palves@redhat.com>
1448
1449         * breakpoint.c (remove_threaded_breakpoints): Skip non-user
1450         breakpoints.
1451
1452 2013-09-19  Pedro Alves  <palves@redhat.com>
1453             Thomas Schwinge  <thomas@codesourcery.com>
1454             Yue Lu  <hacklu.newborn@gmail.com>
1455
1456         * gnu-nat.c (gnu_read_inferior, gnu_write_inferior): Make static.
1457         Take a gdb_byte pointer instead of a char pointer.
1458
1459         * gnu-nat.c (gnu_xfer_memory): Adjust interface as
1460         gnu_xfer_partial helper.
1461         (gnu_xfer_partial): New function.
1462         (gnu_target): Don't install a deprecated_xfer_memory hook.
1463         Install a to_xfer_partial hook.
1464
1465 2013-09-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
1466
1467         Constification.
1468         * main.c (captured_main): Replace catch_command_errors by
1469         catch_command_errors_const.  Twice.
1470         * symfile.c (symbol_file_add_main_1): Make args parameter const.
1471         (symbol_file_add): Make name parameter const.
1472         (symbol_file_add_main, symbol_file_add_main_1): Make args parameter const.
1473         (symfile_bfd_open): Make name parameter const, rename it to cname.  Add
1474         variable name.  Change their usage accordingly.
1475         * symfile.h (symbol_file_add, symfile_bfd_open): Make first parameter
1476         const.
1477         (symbol_file_add_main): Make args parameter const.
1478
1479 2013-09-18  Raunaq Bathija  <raunaq12@in.ibm.com>
1480             Ulrich Weigand  <uweigand@de.ibm.com>
1481
1482         * xcoffread.c (struct coff_symbol): Use CORE_ADDR as type
1483         of c_value member.
1484         (read_xcoff_symtab): Use CORE_ADDR as type of fcn_start_addr.
1485
1486 2013-09-18  Pedro Alves  <palves@redhat.com>
1487             Yue Lu  <hacklu.newborn@gmail.com>
1488
1489         * gnu-nat.c (inf_validate_procs, gnu_wait, gnu_resume)
1490         (gnu_create_inferior)
1491         (gnu_attach, gnu_thread_alive, gnu_pid_to_str, cur_thread)
1492         (set_sig_thread_cmd): Use the lwpid field of ptids to
1493         store/extract thread ids instead of the tid field.
1494         * i386gnu-nat.c (gnu_fetch_registers): Adjust.
1495
1496 2013-09-18  Andrew Burgess  <aburgess@broadcom.com>
1497
1498         * infcmd.c (default_print_one_register_info): Add detection of
1499         optimized out values.
1500         (default_print_registers_info): Switch to using
1501         get_frame_register_value.
1502
1503 2013-09-18  Markus Metzger  <markus.t.metzger@intel.com>
1504
1505         * infrun.c (handle_inferior_event): Check if we know the
1506         function start address before setting a resume breakpoint.
1507
1508 2013-09-18  Pedro Alves  <palves@redhat.com>
1509
1510         * gnu-nat.c (set_sig_thread_cmd): Compare the thread's ptid to
1511         minus_one_ptid instead of looking at the ptid's tid field and
1512         comparing that to -1.
1513
1514 2013-09-18  Andrew Burgess  <aburgess@broadcom.com>
1515
1516         * main.h (get_gdb_program_name): Remove extra whitespace.
1517
1518 2013-09-18  Andrew Burgess  <aburgess@broadcom.com>
1519
1520         * main.h (get_gdb_program_name): Add declaration.
1521         * main.c (get_gdb_program_name): Add definition.
1522
1523 2013-09-17  Doug Evans  <dje@google.com>
1524
1525         * dwarf2read.c: Move definitions of complaint functions to after
1526         forward declarations of local functions.
1527
1528 2013-09-17  Muhammad Waqas <mwaqas@codesourcery.com>
1529             Pedro Alves  <palves@redhat.com>
1530
1531         PR gdb/11568
1532         * breakpoint.c (remove_threaded_breakpoints): New function.
1533         (_initialize_breakpoint): Attach remove_threaded_breakpoints
1534         as thread_exit observer.
1535
1536 2013-09-17  Pedro Alves  <palves@redhat.com>
1537
1538         PR gdb/15911
1539         * ada-tasks.c (task_command_1): Adjust call to print_stack_frame.
1540         * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
1541         * corelow.c (core_open):
1542         * frame.h (print_stack_frame, print_frame_info): New
1543         'set_current_sal' parameter.
1544         * infcmd.c (finish_command, kill_command): Adjust call to
1545         print_stack_frame.
1546         * inferior.c (inferior_command): Likewise.
1547         * infrun.c (normal_stop): Likewise.
1548         * linux-fork.c (linux_fork_context): Likewise.
1549         * record-full.c (record_full_goto_entry, record_full_restore):
1550         Likewise.
1551         * remote-mips.c (common_open): Likewise.
1552         * stack.c (print_stack_frame): New 'set_current_sal' parameter.
1553         Use it.
1554         (print_frame_info): New 'set_current_sal' parameter.  Set the last
1555         displayed sal depending on the new paremeter instead of looking at
1556         print_what.
1557         (backtrace_command_1, select_and_print_frame, frame_command)
1558         (current_frame_command, up_command, down_command): Adjust call to
1559         print_stack_frame.
1560         * thread.c (print_thread_info, restore_selected_frame)
1561         (do_captured_thread_select): Adjust call to print_stack_frame.
1562         * tracepoint.c (tfind_1): Likewise.
1563         * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
1564         (mi_cmd_stack_info_frame): Likewise.
1565         * mi/mi-interp.c (mi_on_normal_stop): Likewise.
1566         * mi/mi-main.c (mi_cmd_exec_return, mi_cmd_trace_find): Likewise.
1567
1568 2013-09-16  Sergio Durigan Junior  <sergiodj@redhat.com>
1569
1570         * value.c (isvoid_internal_fn): Replace "parameter" with
1571         "argument".
1572
1573 2013-09-16  Stan Shebs  <stan@codesourcery.com>
1574
1575         * README: Update references to writing code for GDB.
1576         * configure.ac (build_warnings): Remove obsolete comment.
1577         * configure: Regenerate.
1578         * gdbarch.sh: Remove references to gdbint.texinfo.
1579         * gdbarch.h: Regenerate.
1580         * gdbtypes.c (objfile_type): Remove comments referencing internals
1581         manual and D10V.
1582
1583 2013-09-16  Sergio Durigan Junior  <sergiodj@redhat.com>
1584
1585         * NEWS: Mention new convenience function $_isvoid.
1586         * value.c (isvoid_internal_fn): New function.
1587         (_initialize_values): Add new convenience function $_isvoid.
1588
1589 2013-09-16  Pierre Muller  <muller@sourceware.org>
1590
1591         * arm-linux-tdep.c: Add "elf/common.h" header.
1592         Remove AT_HWCAP macro definintion as it is provided in
1593         added include file.
1594         * s390-tdep.c: Remove system header <elf.h>
1595         Add "elf/common.h" header for AT_HWCAP definition.
1596         (s390_core_read_description): Use correct CORE_ADDR
1597         for hwcap local variable used as third parameter
1598         of function target_auxv_search.
1599
1600 2013-09-14  Pierre Muller  <muller@sourceware.org>
1601             Tom Tromey  <tromey@redhat.com>
1602             Pedro Alves  <palves@redhat.com>
1603
1604         * common/filestuff.c (gdb_fopen_cloexec): Do not try to use "e"
1605         mode if operating system doesn't know O_CLOEXEC.
1606
1607 2013-09-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
1608
1609         Code cleanup.
1610         * symfile.c (reread_symbols): Move variable obfd_filename to a more
1611         inner block.
1612
1613 2013-09-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1614
1615         * NEWS: Mention TDB support.
1616         * features/s390-tdb.xml: New file.
1617         * features/s390-te-linux64.xml: New file.
1618         * features/s390x-te-linux64.xml: New file.
1619         * features/Makefile (WHICH): Add new tdescs above.
1620         (s390-te-linux64-expedite): Set.
1621         (s390x-te-linux64-expedite): Set.
1622         * features/s390-te-linux64.c: New file (generated).
1623         * features/s390x-te-linux64.c: New file (generated).
1624         * regformats/s390-te-linux64.dat: New file (generated).
1625         * regformats/s390x-te-linux64.dat: New file (generated).
1626         * s390-tdep.h (HWCAP_S390_HIGH_GPRS): Define.
1627         (HWCAP_S390_TE): Likewise.
1628         (S390_TDB_DWORD0_REGNUM): Likewise.
1629         (S390_TDB_DWORD0_REGNUM): Likewise.
1630         (S390_TDB_ABORT_CODE_REGNUM): Likewise.
1631         (S390_TDB_CONFLICT_TOKEN_REGNUM): Likewise.
1632         (S390_TDB_ATIA_REGNUM): Likewise.
1633         (S390_TDB_R0_REGNUM): Likewise.
1634         (S390_TDB_R1_REGNUM): Likewise.
1635         (S390_TDB_R2_REGNUM): Likewise.
1636         (S390_TDB_R3_REGNUM): Likewise.
1637         (S390_TDB_R4_REGNUM): Likewise.
1638         (S390_TDB_R5_REGNUM): Likewise.
1639         (S390_TDB_R6_REGNUM): Likewise.
1640         (S390_TDB_R7_REGNUM): Likewise.
1641         (S390_TDB_R8_REGNUM): Likewise.
1642         (S390_TDB_R9_REGNUM): Likewise.
1643         (S390_TDB_R10_REGNUM): Likewise.
1644         (S390_TDB_R11_REGNUM): Likewise.
1645         (S390_TDB_R12_REGNUM): Likewise.
1646         (S390_TDB_R13_REGNUM): Likewise.
1647         (S390_TDB_R14_REGNUM): Likewise.
1648         (S390_TDB_R15_REGNUM): Likewise.
1649         (S390_NUM_REGS): Increase.
1650         (S390_IS_TDBREGSET_REGNUM): New macro.
1651         (s390_regmap_tdb): Declare.
1652         (s390_sizeof_tdbregset): Define.
1653         (tdesc_s390_te_linux64): Declare.
1654         (tdesc_s390x_te_linux64): Likewise.
1655         * s390-tdep.c: Add includes for "auxv.h", <elf.h>,
1656         "features/s390-te-linux64.c", and "features/s390x-te-linux64.c".
1657         (s390_regmap_tdb): New regmap.
1658         (s390_supply_tdb_regset): New function.
1659         (s390_tdb_regset): New regset.
1660         (s390_linux64v2_regset_sections): Add TDB regset to list.
1661         (s390x_linux64v2_regset_sections): Likewise.
1662         (s390_regset_from_core_section): Recognize TDB core note section.
1663         (s390_core_read_description): If HWCAP indicates TE support,
1664         select tdesc_s390_te_linux64 or tdesc_s390_s390x_te_linux64.
1665         (s390_gdbarch_init): Handle TDB regset.
1666         (_initialize_s390_tdep): Initialize new tdescs.
1667         * s390-nat.c (HWCAP_S390_HIGH_GPRS): Remove define.
1668         (have_regset_tdb): New variable.
1669         (s390_native_supply): Support register invalidation.
1670         (fetch_regset): Invalidate registers if ptrace yields ENODATA.
1671         (check_regset): Treat ENODATA as "regset exists".
1672         (s390_linux_fetch_inferior_registers): Add TDB.
1673         (s390_read_description): Check for TDB existence and select
1674         appropriate tdesc.
1675         * gdbserver/Makefile.in (clean): Add removal of new makefile
1676         targets.
1677         (s390-te-linux64.c): New makefile target.
1678         (s390x-te-linux64.c): Likewise.
1679         * gdbserver/configure.srv (srv_regobj): Append new objects
1680         s390-te-linux64.o and s390x-te-linux64.o.
1681         (srv_xmlfiles): Append new files s390-te-linux64.xml,
1682         s390x-te-linux64.xml, and s390-tdb.xml.
1683         * gdbserver/linux-s390-low.c (init_registers_s390_te_linux64): New
1684         declaration.
1685         (tdesc_s390_te_linux64): Likewise.
1686         (init_registers_s390x_te_linux64): Likewise.
1687         (tdesc_s390x_te_linux64): Likewise.
1688         (s390_check_regset): Treat ENODATA as "regset exists".
1689         (s390_arch_setup): Add TDB regset support.
1690         (initialize_low_arch): Initialize registers for new tdescs.
1691
1692 2013-09-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1693
1694         * s390-tdep.h (S390_IS_GREGSET_REGNUM): New macro.
1695         (S390_IS_FPREGSET_REGNUM): New macro.
1696         * s390-tdep.c (s390_dwarf_regmap): Make const.
1697         (regnum_is_gpr_full): New function for replacing repeated code.
1698         (s390_pseudo_register_name): Use it.
1699         (s390_pseudo_register_type): Likewise.
1700         (s390_pseudo_register_read): Likewise.
1701         (s390_pseudo_register_write): Likewise.
1702         (s390_unwind_pseudo_register): Likewise.
1703         (s390_regmap_gregset): New format for regmap.
1704         (s390x_regmap_gregset): Likewise.
1705         (s390_regmap_fpregset): Likewise.
1706         (s390_regmap_upper): Likewise.
1707         (s390_regmap_last_break): Likewise.
1708         (s390_regmap_system_call): Likewise.
1709         (s390_supply_regset): Adjust to new regmap format.
1710         (s390_collect_regset): Likewise.
1711         * s390-nat.c (s390_native_supply): Adjust to new regmap format.
1712         (s390_native_collect): Likewise.
1713         (supply_gregset): Likewise.
1714         (fill_gregset): Likewise.
1715         (supply_fpregset): Likewise.
1716         (fill_fpregset): Likewise.
1717         (fetch_regset): Likewise.
1718         (store_regset): Likewise.
1719         (s390_linux_fetch_inferior_registers): Likewise.
1720         (s390_linux_fetch_inferior_registers): Likewise.
1721
1722 2013-09-12  Andrew Pinski  <apinski@cavium.com>
1723
1724         * aarch64-linux-nat.c (aarch64_linux_set_debug_regs): Zero out regs.
1725
1726 2013-09-10  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1727
1728         * config/s390/s390.mh (NATDEPFILES): Add linux-waitpid.o.
1729
1730 2013-09-09  Andrew Burgess  <aburgess@broadcom.com>
1731
1732         * top.c (quit_confirm): Remove use of deprecated_init_ui_hook.
1733
1734 2013-09-06  Pedro Alves <palves@redhat.com>
1735
1736         * remote-sim.c (dump_mem, gdbsim_fetch_register)
1737         (gdbsim_store_register, gdbsim_kill, gdbsim_load)
1738         (gdbsim_create_inferior, gdbsim_open, gdbsim_close)
1739         (gdbsim_detach, gdbsim_resume_inferior, gdbsim_wait)
1740         (gdbsim_files_info, gdbsim_mourn_inferior): Send debug output to
1741         gdb_stdlog.
1742
1743 2013-09-06  Pedro Alves  <palves@redhat.com>
1744
1745         * remote-sim.c (dump_mem): Constify buf parameter.
1746         gdbsim_xfer_inferior_memory): Rename to ...
1747         (gdbsim_xfer_memory): ... this.  Adjust interface as
1748         target_xfer_partial helper.
1749         (gdbsim_xfer_partial): New function.
1750         (init_gdbsim_ops): Don't install a deprecated_xfer_memory hook.
1751         Install a to_xfer_partial hook.  Send output to gdb_stdlog.
1752
1753 2013-09-06  Pedro Alves  <palves@redhat.com>
1754
1755         * remote-sim.c (gdbsim_xfer_inferior_memory): Use
1756         host_address_to_string, and send debug output to gdb_stdlog.
1757
1758 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
1759
1760         * Makefile.in (ALL_TARGET_OBS): Add cris-linux-tdep.o.
1761         * configure.tgt: Add cris-linux-tdep.o and linux-tdep.o to
1762         gdb_target_obs for cris target.
1763         * cris-tdep.c (struct gdbarch_tdep): Move to cris-tdep.h.
1764         (cris_gdbarch_init): Move calls to
1765         set_gdbarch_fetch_tls_load_module_address and
1766         set_solib_svr4_fetch_link_map_offsets to cris-linux-tdep.c.
1767         Add call to gdbarch_init_osabi.
1768         * cris-linux-tdep.c: New file.
1769         * cris-tdep.h: New file.
1770
1771 2013-09-06  Andrew Burgess  <aburgess@broadcom.com>
1772
1773         * tui/tui-io.c (tui_initialize_io): Remove legacy comment referring
1774         to deprecated_init_ui_hook.
1775
1776 2013-09-06  Andrew Burgess  <aburgess@broadcom.com>
1777
1778         * cli/cli-interp.c (_initialize_cli_interp): Add a
1779         command_loop_proc to interp_procs.
1780         * event-top.c (cli_command_loop): Change signature to match
1781         interp_command_loop_ftype.
1782         * event-top.h (cli_command_loop): Same.
1783         * interps.c (interp_new): Require every interpreter to have a
1784         command_loop_proc.
1785         (current_interp_command_loop): Just call the command_loop_proc on
1786         the current interpreter.
1787         * tui/tui-interp.c (_initialize_tui_interp): Add a
1788         command_loop_proc to interp_procs.
1789
1790 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
1791
1792         * cris-tdep.c (cris_gdbarch_init): Add call to
1793         get_gdbarch_fetch_tls_load_module_address.
1794
1795 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
1796
1797         * cris-tdep.c (cris_elf_greg_t): Rename from elf_greg_t.
1798         (cris_elf_gregset_t): Rename from elf_gregset_t.
1799         (crisv32_elf_gregset_t): Adjust.
1800         (cris_supply_gregset, fetch_core_registers): Adjust.
1801
1802 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
1803
1804         * cris-tdep.c (elf_greg_t): Change typedef to unsigned char[4]
1805
1806 2013-09-05  Andrew Burgess  <aburgess@broadcom.com>
1807
1808         * defs.h (deprecated_command_loop_hook): Remove, including
1809         references in comments.
1810         * interps.c (current_interp_command_loop): No longer use
1811         deprecated_command_loop_hook.
1812         (clear_interpreter_hooks): Remove deprecated_command_loop_hook
1813         setup.
1814         * top.c (deprecated_command_loop_hook): Remove.
1815
1816 2013-09-05  Pedro Alves  <palves@redhat.com>
1817
1818         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): 'dwarf_regnum'
1819         local is now int instead of ULONGEST.  Print it with %d
1820         instead of paddress.
1821
1822 2013-09-05  Tristan Gingold  <gingold@adacore.com>
1823
1824         * MAINTAINERS: Remove avr maintainership.
1825
1826 2013-09-05  Pedro Alves  <palves@redhat.com>
1827
1828         * findvar.c (value_of_register): Rework in terms of
1829         value_of_register_lazy.
1830
1831 2013-09-05  Muhammad Bilal  <mbilal@codesourcery.com>
1832
1833         * symfile.c (add_symbol_file_command): Remove trailing
1834          whitespaces and blank line after comment.
1835
1836 2013-09-05  Pedro Alves  <palves@redhat.com>
1837
1838         * tui/tui-regs.c (tui_register_format): Don't look at the
1839         register's name here.  Return string representing register
1840         value instead of storing it in the data element.
1841         (tui_get_register): Compare register string representations
1842         instead of register value states and contents.
1843
1844 2013-09-05  Pedro Alves  <palves@redhat.com>
1845
1846         PR tui/15933
1847         * tui/tui-regs.c (tui_show_registers): Show registers of the
1848         selected frame, not the current frame.
1849
1850 2013-09-05  Ricard Wanderlof  <ricardw@axis.com>
1851
1852         * MAINTAINERS (Write After Approval): Add myself to the list.
1853
1854 2013-09-04  Doug Evans  <dje@google.com>
1855
1856         * dwarf2read.c (queue_and_load_all_dwo_tus): New function.
1857         (queue_and_load_dwo_tu): New function.
1858         (lookup_dwo_signatured_type): Set per_cu.tu_read.
1859         (maybe_queue_comp_unit): Rename this_cu argument to dependent_cu.
1860         Make dependent_cu optional.
1861         (dw2_do_instantiate_symtab): If we just loaded a CU from a DWO,
1862         and an older .gdb_index is in use, queue and load all its TUs too.
1863
1864 2013-09-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
1865
1866         Code cleanup: Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH.
1867         * cli/cli-cmds.c (find_and_open_script): Add OPF_RETURN_REALPATH to
1868         variable search_flags.
1869         * defs.h (OPF_DISABLE_REALPATH): Rename to ...
1870         (OPF_RETURN_REALPATH): ... here.
1871         * dwarf2read.c (try_open_dwop_file): Set OPF_RETURN_REALPATH for flags.
1872         * exec.c (exec_file_attach): Remove OPF_DISABLE_REALPATH from openp
1873         call.  Twice.
1874         * nto-tdep.c (nto_find_and_open_solib): Add OPF_RETURN_REALPATH for
1875         openp call.
1876         * solib.c (solib_find): Likewise.  Four times.
1877         * source.c (openp): Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH
1878         in the function comment and for the realpath_fptr variable.
1879         (source_full_path_of): Add OPF_RETURN_REALPATH for openp call.
1880         (find_and_open_source): Likewise.  Twice.
1881         * symfile.c (symfile_bfd_open): Likewise, also twice.
1882
1883 2013-09-04  Doug Evans  <dje@google.com>
1884
1885         * progspace.c (save_current_space_and_thread): Remove unnecessary
1886         call to save_current_inferior.
1887
1888 2013-09-04  Andrew Burgess  <aburgess@broadcom.com>
1889
1890         * sh64-tdep.c (sh64_do_register): Return after printing message
1891         about unavailable register contents.
1892
1893 2013-09-04  Muhammad Bilal  <mbilal@codesourcery.com>
1894             Pedro Alves  <palves@redhat.com>
1895
1896         * symfile.c (add_symbol_file_command): Error out on unknown
1897         option.  Handle EXPECTING_SEC_ADDR/EXPECTING_SEC_NAME before '-'
1898         options and collapse into single conditional branch.
1899
1900 2013-09-03  Luis Machado  <lgustavo@codesourcery.com>
1901
1902         * inf-child.c (inf_child_follow_fork): New parameter
1903         detach_fork.
1904         * inf-ptrace.c (inf_ptrace_follow_fork): Likewise.
1905         * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
1906         * inferior.h (detach_fork): Remove.
1907         * infrun.c (detach_fork): Adjust comment and make it
1908         static.
1909         (follow_fork): Pass detach_fork parameter to
1910         target_follow_fork.
1911         * linux-nat.c (linux_child_follow_fork): New parameter
1912         detach_fork.
1913         * target.c (target_follow_fork): New parameter detach_fork.
1914         Pass detach_fork as parameter and print its value.
1915         * target.h (struct target_ops) <to_follow_fork>: New int
1916         parameter.
1917         (target_follow_fork): New parameter detach_fork.
1918
1919 2013-09-03  Joel Brobecker  <brobecker@adacore.com>
1920
1921         * solib-ia64-hpux.c (ia64_hpux_relocate_section_addresses):
1922         Replace sec->bfd by sec->the_bfd_section->owner.
1923
1924 2013-09-03  Yao Qi  <yao@codesourcery.com>
1925
1926         * linux-tdep.c (linux_is_uclinux): New function.  Code moved
1927         from linux_has_shared_address_space.
1928         (linux_has_shared_address_space): Call linux_is_uclinux.
1929         * linux-tdep.h (linux_is_uclinux): Declare.
1930         * m68klinux-tdep.c (m68k_linux_get_sigtramp_info): Call
1931         linux_is_uclinux.
1932
1933 2013-09-03  Yao Qi  <yao@codesourcery.com>
1934
1935         * config/djgpp/fnchange.lst: Remove entry of
1936         i386-interix-nat.c and i386-interix-tdep.c.
1937         * configure.ac: Remove '*-*-interix*'.
1938         * configure: Re-generated.
1939         * defs.h (enum gdb_osabi): Remove GDB_OSABI_INTERIX.
1940         * i386-cygwin-tdep.c (i386_cygwin_osabi_sniffer): Remove
1941         obsolete comments.
1942         * osabi.c (gdb_osabi_names): Remove "Interix".
1943
1944 2013-09-03  Yao Qi  <yao@codesourcery.com>
1945
1946         * arch-utils.c: Fix typo in the comment to gdbarch_update_p.
1947
1948 2013-09-02  Markus Metzger  <markus.t.metzger@intel.com>
1949
1950         * record.h (record_print_flag) <record_print_src_line,
1951         record_print_insn_range>: Rename into ...
1952         (record_print_flag) <record_print_src_line,
1953         record_print_insn_range>: ... this.  Update all users.
1954
1955 2013-09-02  Pierre Muller  <muller@sourceware.org>
1956
1957         * windows-nat.c (windows_xfer_memory): Handle ERROR_PARTIAL_COPY
1958         error code.
1959
1960 2013-09-02  Pierre Muller  <muller@sourceware.org>
1961
1962         * windows-nat.c (windows_xfer_memory): Fix compilation failure
1963         by use of plongest function.
1964
1965 2013-09-02  Tristan Gingold  <gingold@adacore.com>
1966
1967         * NEWS: Add entry mentioning support for native Windows x64
1968         SEH data.
1969
1970         * amd64-windows-tdep.c: #include "objfiles.h", "frame-unwind.h",
1971         "coff/internal.h", "coff/i386.h", "coff/pe.h" and "libcoff.h".
1972         (struct amd64_windows_frame_cache): New struct.
1973         (amd64_windows_w2gdb_regnum): New global.
1974         (pc_in_range, amd64_windows_frame_decode_epilogue)
1975         (amd64_windows_frame_decode_insns, amd64_windows_find_unwind_info)
1976         (amd64_windows_frame_cache, amd64_windows_frame_prev_register)
1977         (amd64_windows_frame_this_id): New functions.
1978         (amd64_windows_frame_unwind): New static global.
1979         (amd64_windows_skip_prologue): New function.
1980         (amd64_windows_init_abi): Call frame_unwind_prepend_unwinder
1981         with amd64_windows_frame_unwind. Call set_gdbarch_skip_prologue
1982         with amd64_windows_skip_prologue.
1983
1984 2013-08-30  Joel Brobecker  <brobecker@adacore.com>
1985
1986         GDB 7.6.1 released.
1987
1988 2013-08-30  Pedro Alves  <palves@redhat.com>
1989
1990         * mi/mi-main.c (mi_cmd_trace_find): Use LOC_AND_ADDRESS instead of
1991         SRC_AND_LOC.
1992
1993 2013-08-30  Pedro Alves  <palves@redhat.com>
1994
1995         * thread.c (restore_selected_frame): Use SRC_AND_LOC, and change
1996         warning text.
1997
1998 2013-08-30  Pedro Alves  <palves@redhat.com>
1999
2000         * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
2001         Adjust arguments to print_stack_frame.
2002
2003 2013-08-30  Pedro Alves  <palves@redhat.com>
2004
2005         * ada-tasks.c (task_command_1): Write SRC_AND_LOC instead '1'.
2006
2007 2013-08-30  Pedro Alves  <palves@redhat.com>
2008
2009         * frame.h (show_and_print_stack_frame): Delete declaration.
2010
2011 2013-08-30  Phil Muldoon  <pmuldoon@redhat.com>
2012
2013         PR python/15461
2014
2015         * python/py-arch.c (ARCHPY_REQUIRE_VALID): New macro.
2016         (archpy_name): Check for valid architecture.
2017         (archpy_disassemble): Ditto.
2018
2019 2013-08-29  Joel Brobecker  <brobecker@adacore.com>
2020
2021         * rs6000-nat.c (rs6000_ptrace32): Cast "addr" to "uintptr_t"
2022         instead of "long long" in call to ptrace64.
2023
2024 2013-08-29  Andrew Burgess  <aburgess@broadcom.com>
2025
2026         * mi/mi-interp.c (mi_command_loop): Change signature to match
2027         interp_command_loop_ftype.
2028         (mi1_command_loop): Remove.
2029         (mi2_command_loop): Remove.
2030         (mi3_command_loop): Remove.
2031         (mi_interpreter_resume): Remove setting of
2032         deprecated_command_loop_hook.
2033         (_initialize_mi_interp): Set mi_command_loop as the command loop
2034         callback.
2035
2036 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
2037
2038         * valops.c (do_search_struct_field): Pass v2 instead of base_type to
2039         value_type.
2040
2041 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
2042
2043         * value.c (allocate_value_contents): Make static.
2044         * value.h (allocate_value_contents): Remove prototype.
2045
2046 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
2047
2048         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use value_at_lazy instead
2049         of assembling value via allocate_value_lazy and attribute setter.
2050         * findvar.c (default_read_var_value): Use value_at_lazy instead of
2051         assembling value via allocate_value_lazy and attribute setter.
2052         * valops.c (do_search_struct_field): Use value_at_lazy instead of
2053         assembling value via allocate_value_lazy and attribute setter.
2054
2055 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
2056
2057         * value.c (value_from_contents_and_address): Replace allocate_value and
2058         memcpy with value_from_contents.
2059
2060 2013-08-29  Phil Muldoon  <pmuldoon@redhat.com>
2061
2062         * python/py-framefilter.c (py_print_frame): Remove usage of
2063         PyString_AsString.  Use python_string_to_host_string instead.
2064         Refactor function to work with a string as a new allocation
2065         instead of a pointer.
2066         (py_print_frame): Ditto.
2067         * python/lib/gdb/frames.py (return_list): Cain iterators together
2068         instead of adding them as a list.
2069         (_sort_list): Call return_list, and remove duplicate code.
2070         (execute_frame_filters): Convert iterator to a list with list().
2071         * python/lib/gdb/command/frame_filters.py
2072         (SetFrameFilterPriority._set_filter_priority): Convert priority
2073         attribute to an integer.
2074         * python/lib/gdb/FrameIterator.py (FrameIterator.next): Define
2075         wrapper function __next__.
2076         * python/lib/gdb/FrameDecorator.py: If basestring not defined,
2077         define as "str".
2078
2079 2013-08-29  Phil Muldoon  <pmuldoon@redhat.com>
2080
2081         PR python/15752
2082         * python/py-framefilter.c (apply_frame_filter): Check
2083         gdb_python_initialized.  Exit if the Python frame-filter code
2084         cannot be initialized.
2085
2086 2013-08-29  Phil Muldoon  <pmuldoon@redhat.com>
2087
2088         PR cli/15842
2089         * top.c (print_gdb_version): Remove erroneous newline after help
2090         text.
2091
2092 2013-08-29  Yao Qi  <yao@codesourcery.com>
2093
2094         * varobj.c (install_dynamic_child): Remove trailing space.
2095         Add one blank line after variable declaration.
2096
2097 2013-08-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
2098
2099         PR gdb/15415
2100         * corefile.c (get_exec_file): Use exec_filename.
2101         * defs.h (OPF_DISABLE_REALPATH): New definition.  Add new comment.
2102         * exec.c (exec_close): Free EXEC_FILENAME.
2103         (exec_file_attach): New variable canonical_pathname.  Use
2104         OPF_DISABLE_REALPATH.  Call gdb_realpath explicitly.  Set
2105         EXEC_FILENAME.
2106         * exec.h (exec_filename): New.
2107         * inferior.c (print_inferior, inferior_command): Use
2108         PSPACE_EXEC_FILENAME.
2109         * mi/mi-main.c (print_one_inferior): Likewise.
2110         * progspace.c (clone_program_space, print_program_space): Likewise.
2111         * progspace.h (struct program_space): New field pspace_exec_filename.
2112         * source.c (openp): Describe OPF_DISABLE_REALPATH.  New variable
2113         realpath_fptr, initialize it from OPF_DISABLE_REALPATH, use it.
2114
2115 2013-08-28  Will Newton  <will.newton@linaro.org>
2116
2117         * common/linux-ptrace.c: Include stdint.h unconditionally.
2118
2119 2013-08-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
2120
2121         Code cleanup.
2122         * nto-tdep.c (nto_find_and_open_solib): Use OPF_TRY_CWD_FIRST.
2123
2124 2013-08-28  Yao Qi  <yao@codesourcery.com>
2125             Pedro Alves  <palves@redhat.com>
2126
2127         * event-top.c (gdb_setup_readline): Call stderr_fileopen
2128         instead of stdio_fileopen.
2129         * main.c (captured_main) [__MINGW32__]: Set stderr unbuffered.
2130         .Call stderr_fileopen instead of stdio_fileopen.
2131         * ui-file.c [__MINGW32__] (stderr_file_write): New function.
2132         [__MINGW32__] (stderr_file_fputs): New function.
2133         (stderr_fileopen): New function.
2134         * ui-file.h (stderr_fileopen): Declare.
2135
2136 2013-08-27  Doug Evans  <dje@google.com>
2137
2138         * dwarf2read.c (struct dwarf2_cu): Tweak comment.
2139         (struct dwarf2_per_cu_data): Ditto.
2140         (maybe_queue_comp_unit): Delete forward decl.  Add comment.
2141         (process_imported_unit_die): Ditto.
2142         (follow_die_sig_1): Simplify assert.
2143
2144 2013-08-27  Pedro Alves  <palves@redhat.com>
2145
2146         * windows-nat.c (windows_xfer_memory): Adjust prototype to follow
2147         xfer_partial's interface.  Return TARGET_XFER_E_IO on error.
2148         (windows_xfer_partial): Defer TARGET_OBJECT_MEMORY handling to
2149         windows_xfer_memory directly.
2150         (init_windows_ops): Don't install a deprecated_xfer_memory method.
2151
2152 2013-08-27  Pedro Alves  <palves@redhat.com>
2153
2154         * darwin-nat.c (darwin_xfer_memory): Delete.
2155         (_initialize_darwin_inferior): Don't install a
2156         deprecated_xfer_memory method.
2157
2158 2013-08-27  Pedro Alves  <pedro@codesourcery.com>
2159             Yao Qi  <yao@codesourcery.com>
2160
2161         * mi/mi-cmd-stack.c (list_args_or_locals): Adjust prototype.
2162         (parse_no_frames_option): Remove.
2163         (mi_cmd_stack_list_locals): Handle --skip-unavailable.
2164         (mi_cmd_stack_list_args): Adjust.
2165         (mi_cmd_stack_list_variables): Handle --skip-unavailable.
2166         (list_arg_or_local): Add new parameter 'skip_unavailable'.  Return
2167         early if SKIP_UNAVAILABLE is true and ARG->val is unavailable.
2168         Caller update.
2169         (list_args_or_locals): New parameter 'skip_unavailable'.
2170         Handle it.
2171         * valprint.c (scalar_type_p): Rename to ...
2172         (val_print_scalar_type_p): ... this.  Make extern.
2173         (val_print, value_check_printable): Adjust.
2174         * valprint.h (val_print_scalar_type_p): Declare.
2175         * value.c (value_entirely_unavailable): New function.
2176         * value.h (value_entirely_unavailable): Declare.
2177
2178         * NEWS: Mention the new option "--skip-unavailable" to MI
2179         commands '-stack-list-locals', '-stack-list-arguments' and
2180         '-stack-list-variables'.
2181
2182 2013-08-27  Yao Qi  <yao@codesourcery.com>
2183
2184         * mi/mi-cmd-stack.c (parse_no_frames_option): Remove.
2185         (mi_cmd_stack_list_args): Use mi_getopt_silent to handle
2186         options.
2187         * mi/mi-getopt.c (mi_getopt): Remove.
2188         (mi_getopt_1): Renamed from mi_getopt.  Add one parameter
2189         'error_on_unknown'.
2190         (mi_getopt): Call mi_getopt_1.
2191         (mi_getopt_silent): New.
2192         * mi/mi-getopt.h (mi_getopt_silent): Declare.
2193
2194 2013-08-26  Doug Evans  <dje@google.com>
2195
2196         PR symtab/15885
2197         * dwarf2read.c (dw2_dump): Print some minimal information indicating
2198         .gdb_index is in use.
2199         * symfile.c (reread_symbols): Reset objfile->sf.
2200
2201         * NEWS: Document "mt print objfiles" now takes optional regexp.
2202         * symmisc.c (maintenance_print_objfiles): Argument is now an optional
2203         regexp of objfiles to print.
2204         (_initialize_symmisc): Update doc string for "mt print objfiles".
2205
2206         * dwarf2read.c (write_psymtabs_to_index): Move error checks ahead of
2207         missing debug info checks.
2208
2209 2013-08-26  Raunaq Bathija  <raunaq12@in.ibm.com>
2210             Ulrich Weigand  <uweigand@de.ibm.com>
2211
2212         * xcoffread.c (arrange_linetable): Add fix to correctly handle
2213         line tables generated by XLC compiled binaries.
2214
2215 2013-08-23  Doug Evans  <dje@google.com>
2216
2217         * symmisc.c (dump_symtab): Delete prototype.
2218         (dump_msymbols, dump_objfile): Ditto.
2219         (maintenance_info_symtabs): Mark as dont_repeat.
2220         (_initialize_symmisc): Improve doc string for "mt info symtabs".
2221
2222         * elfread.c (elf_symfile_read): Move "Done reading minimal symbols"
2223         debugging printf to better location.
2224
2225 2013-08-23  Pedro Alves  <palves@redhat.com>
2226
2227         * target.c (target_read_live_memory): Change type of 'ret' local
2228         to LONGEST.
2229
2230 2013-08-23  Pedro Alves  <palves@redhat.com>
2231
2232         * remote.c (remote_write_bytes_aux, remote_write_bytes)
2233         (remote_read_bytes): Change return type to LONGEST, and adjust to
2234         return a target_xfer_error on error.
2235         (remote_xfer_memory): Delete.
2236         (remote_flash_write): Change type of 'ret' local to LONGEST.
2237         (remote_xfer_partial, remote_xfer_partial): Adjust.
2238         (init_remote_ops): Don't install a deprecated_xfer_memory hook.
2239
2240 2013-08-23  Pierre Muller  <muller@sourceware.org>
2241
2242         ARI fix: Push # directives to start of line.
2243         * rs6000-nat.c (rs6000_ptrace32, rs6000_ptrace64): Rule applied.
2244
2245 2013-08-12  Muhammad Waqas  <mwaqas@codesourcery.com>
2246
2247         PR gdb/15501
2248         * breakpoint.c (enable_command, disable_command): Iterate over
2249         all specified breakpoint locations.
2250
2251 2013-08-22  Luis Machado  <lgustavo@codesourcery.com>
2252
2253         * common/linux-ptrace.c (linux_fork_to_function): Push #
2254         directives to the start of the line.
2255         (linux_check_ptrace_features): Fix warning message to use
2256         the "_" markup.
2257
2258 2013-08-22  Luis Machado  <lgustavo@codesourcery.com>
2259
2260         * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-nat.h and
2261         nat/linux-waitpid.h.
2262         (linux-waitpid.o): New object file rule.
2263         * common/linux-ptrace.c: Include nat/linux-waitpid.h.
2264         (current_ptrace_options): Moved from linux-nat.c.
2265         (linux_ptrace_test_ret_to_nx): Use type casts for ptrace
2266         parameters.
2267         (linux_fork_to_function): New function.
2268         (linux_grandchild_function): Likewise.
2269         (linux_child_function): Likewise.
2270         (linux_check_ptrace_features): New function, heavily
2271         based on linux-nat.c:linux_test_for_tracefork.
2272         (linux_enable_event_reporting): New function.
2273         (ptrace_supports_feature): Likewise.
2274         (linux_supports_tracefork): Likewise.
2275         (linux_supports_traceclone): Likewise.
2276         (linux_supports_tracevforkdone): Likewise.
2277         (linux_supports_tracesysgood): Likewise.
2278         * common/linux-ptrace.h (HAS_NOMMU): Moved from
2279         gdbserver/linux-low.c.
2280         (linux_enable_event_reporting): New declaration.
2281         (linux_supports_tracefork): Likewise.
2282         (linux_supports_traceclone): Likewise.
2283         (linux_supports_tracevforkdone): Likewise.
2284         (linux_supports_tracesysgood): Likewise.
2285         * config.in (PTRACE_TYPE_ARG4): Regenerate.
2286         * config/aarch64/linux.mh (NATDEPFILES): Add linux-waitpid.o.
2287         * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
2288         * config/arm/linux.mh (NATDEPFILES): Likewise.
2289         * config/i386/linux.mh (NATDEPFILES): Likewise.
2290         * config/i386/linux64.mh (NATDEPFILES): Likewise.
2291         * config/ia64/linux.mh (NATDEPFILES): Likewise.
2292         * config/m32r/linux.mh (NATDEPFILES): Likewise.
2293         * config/m68k/linux.mh (NATDEPFILES): Likewise.
2294         * config/mips/linux.mh (NATDEPFILES): Likewise.
2295         * config/pa/linux.mh (NATDEPFILES): Likewise..
2296         * config/powerpc/linux.mh (NATDEPFILES): Likewise..
2297         * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
2298         * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
2299         * config/sparc/linux.mh (NATDEPFILES): Likewise.
2300         * config/sparc/linux64.mh (NATDEPFILES): Likewise.
2301         * config/tilegx/linux.mh (NATDEPFILES): Likewise.
2302         * config/xtensa/linux.mh (NATDEPFILES): Likewise.
2303         * configure.ac (AC_CACHE_CHECK): Add void * to the list of
2304         ptrace's 4th argument's types.
2305         Check the type of PTRACE_TYPE_ARG4.
2306         * configure: Regenerate.
2307         * linux-nat.c: Include nat/linux-nat.h and nat/linux-waitpid.h.
2308         (SYSCALL_SIGTRAP): Moved to nat/linux-nat.h.
2309         (linux_supports_tracefork_flag): Remove.
2310         (linux_supports_tracesysgood_flag): Likewise.
2311         (linux_supports_tracevforkdone_flag): Likewise.
2312         (current_ptrace_options): Moved to
2313         common/linux-ptrace.c.
2314         (linux_tracefork_child): Remove.
2315         (my_waitpid): Remove.
2316         (linux_test_for_tracefork): Renamed to
2317         linux_check_ptrace_features and moved to common/linux-ptrace.c.
2318         (linux_test_for_tracesysgood): Remove.
2319         (linux_supports_tracesysgood): Remove.
2320         (linux_supports_tracefork): Remove.
2321         (linux_supports_tracevforkdone): Remove.
2322         (linux_enable_tracesysgood): Remove.
2323         (linux_enable_event_reporting): Remove.
2324         (linux_init_ptrace): New function.
2325         (linux_child_post_attach): Call linux_init_ptrace.
2326         (linux_child_post_startup_inferior): Call linux_init_ptrace.
2327         (linux_child_follow_fork): Call linux_supports_tracefork
2328         and linux_supports_tracevforkdone.
2329         (linux_child_insert_fork_catchpoint): Call
2330         linux_supports_tracefork.
2331         (linux_child_insert_vfork_catchpoint): Likewise.
2332         (linux_child_set_syscall_catchpoint): Call
2333         linux_supports_tracesysgood.
2334         (lin_lwp_attach_lwp): Call linux_supports_tracefork.
2335         * nat/linux-nat.h: New file.
2336         * nat/linux-waitpid.c: New file.
2337         * nat/linux-waitpid.h: New file.
2338
2339 2013-08-22  Samuel Bronson  <naesten@gmail.com>
2340
2341         ARM Linux support for `catch syscall'.
2342         * syscalls/arm-linux.py: New file.
2343         * syscalls/arm-linux.xml: Likewise.
2344         * arm-linux-tdep.c (arm_linux_get_syscall_number): New function.
2345         (arm_linux_init_abi): Register the new function and syscall xml file.
2346         * data-directory/Makefile.in: Install the new syscall xml file.
2347         * NEWS: Brag about this.
2348
2349 2013-08-22  Pedro Alves  <palves@redhat.com>
2350
2351         PR gdb/15871
2352         * corefile.c (target_xfer_memory_error): New function.
2353         (memory_error): Defer EIO to target_memory_error.
2354         (read_memory): Use target_xfer_partial, and handle finer-grained
2355         target xfer errors.
2356         * target.c (target_xfer_error_to_string): New function.
2357         (memory_xfer_partial_1): If memory is known to be
2358         unavailable, return TARGET_XFER_E_UNAVAILABLE instead of -1.
2359         (target_xfer_partial): Make extern.
2360         * target.h (enum target_xfer_error): New enum.
2361         (target_xfer_error_to_string): Declare function.
2362         (target_xfer_partial): Declare function.
2363         (struct target_ops) <xfer_partial>: Adjust describing comment.
2364
2365 2013-08-22  Alan Modra  <amodra@gmail.com>
2366
2367         * configure.host: Support powerpc64le-linux and powerpcle-linux hosts.
2368         * configure.tgt: Likewise as targets.
2369
2370 2013-08-20  Doug Evans  <dje@google.com>
2371
2372         * buildsym.c (subfile_stack): Move here from buildsym.h.
2373         (pending_macros): Ditto.
2374         (get_macro_table): New function.
2375         (buildsym_init): Initialize subfile_stack.
2376         * coffread.c (type_vector,type_vector_length): Moved here from
2377         buildsym.h.
2378         (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
2379         (coff_symtab_read): Use it.
2380         * dbxread.c (read_ofile_symtab): Delete init of subfile_stack.
2381         * dwarf2read.c (macro_start_file): Replace uses of pending_macros
2382         with call to get_macro_table.
2383         * stabsread.c (type_vector,type_vector_length): Moved here from
2384         buildsym.h.
2385         (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
2386         * buildsym.h (get_macro_table): Declare.
2387
2388 2013-08-20  Tom Tromey  <tromey@redhat.com>
2389
2390         * dbxread.c (record_minimal_symbol): Make 'name' argument const.
2391         Update.
2392         (read_dbx_dynamic_symtab): Make 'name' const.  Remove casts.
2393
2394 2013-08-20  Doug Evans  <dje@google.com>
2395
2396         * blockframe.c: Remove #include "psymtab.h".
2397         * cp-support.c: Ditto.
2398         * source.c: Ditto.
2399         * stack.c: Ditto.
2400
2401 2013-08-20  Tom Tromey  <tromey@redhat.com>
2402
2403         PR python/15816:
2404         * exceptions.h (return_mask): Now an enum.
2405         (RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL): Now
2406         enum constants.
2407
2408 2013-08-20  Tom Tromey  <tromey@redhat.com>
2409
2410         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Use
2411         get_objfile_arch.
2412         * elfread.c (elf_rel_plt_read, elf_gnu_ifunc_record_cache)
2413         (elf_gnu_ifunc_resolve_by_got): Use get_objfile_arch.
2414         * jit.c (jit_object_close_impl): Update.
2415         * jv-lang.c (get_dynamics_objfile): Update.
2416         * linespec.c (add_minsym): Use get_dynamics_objfile.
2417         * objfiles.c (get_objfile_bfd_data): Initialize 'gdbarch' field.
2418         (allocate_objfile): Don't initialize 'gdbarch' field.
2419         (get_objfile_arch): Update.
2420         * objfiles.h (struct objfile_per_bfd_storage) <gdbarch>: New field,
2421         moved from...
2422         (struct objfile) <gdbarch>: ... here.  Remove.
2423         * stap-probe.c (stap_can_evaluate_probe_arguments): Use
2424         get_objfile_arch.
2425         * symfile.c (init_entry_point_info): Use get_objfile_arch.
2426
2427 2013-08-20  Alan Modra  <amodra@gmail.com>
2428
2429         * doublest.c (convert_floatformat_to_doublest): Use fmt->split_half
2430         for IBM long double nan and inf.
2431         (floatformat_is_negative, floatformat_classify,
2432         floatformat_mantissa): Similarly.
2433         (floatformat_ieee_single, floatformat_ieee_double,
2434         floatformat_ieee_quad, floatformat_arm_ext,
2435         floatformat_ia64_spill): Delete unused vars.
2436         (_initialize_doublest): Delete unused function.
2437         * gdbtypes.c (floatformats_ibm_long_double): Use new big- and
2438         little-endian variants of floatformat_ibm_long_double.
2439
2440 2013-08-19  Luis Machado  <lgustavo@codesourcery.com>
2441
2442         * Makefile.in (SFILES): Remove common/target-common.c and
2443         add target/waitstatus.c.
2444         (HFILES_NO_SRCDIR): Remove common/target-common.h and add
2445         target/resume.h, target/wait.h and target/waitstatus.h.
2446         (COMMON_OBS): Remove target-common.o and add
2447         waitstatus.o.
2448         (target-common.o): Remove.
2449         (waitstatus.o): New target object file.
2450         * common/target-common.c: Move contents to
2451         target/waitstatus.c and remove.
2452         * common/target-common.h: Move contents to other files and
2453         remove.
2454         (enum resume_kind: Move to target/resume.h.
2455         (TARGET_WNOHANG): Move to target/wait.h.
2456         (enum target_waitkind): Move to target/waitstatus.h.
2457         (struct target_waitstatus): Likewise.
2458         * target.h: Do not include target-common.h and
2459         include target/resume.h, target/wait.h and
2460         target/waitstatus.h.
2461         * target/resume.h: New file.
2462         * target/wait.h: New file.
2463         * target/waitstatus.h: New file.
2464         * target/waitstatus.c: New file.
2465
2466 2013-08-19  Pedro Alves  <palves@redhat.com>
2467
2468         * linux-nat.c (linux_test_for_tracefork)
2469         (linux_test_for_tracesysgood, linux_child_follow_fork)
2470         (lin_lwp_attach_lwp, linux_nat_resume): Don't block child signals.
2471         (linux_nat_wait_1): Extend comment.
2472         (linux_async_pipe): Add comment.
2473
2474 2013-08-15  Kevin Buettner  <kevinb@redhat.com>
2475
2476         * rl78-tdep.c (RL78_RAW_PC_REGNUM): New enum.
2477         (RL78_PC_REGNUM): Move to list of pseudo-register enums.
2478         (rl78_register_type, rl78_register_name, rl78_register_reggroup_p):
2479         Update to account for fact that PC is now a pseudo-register.
2480         (rl78_pseudo_register_write, rl78_pseudo_register_read):  Add
2481         cases for RL78_PC_REGNUM.
2482
2483 2013-08-15  Muhammad Bilal  <mbilal@codesourcery.com>
2484
2485         PR cli/15841
2486         * top.c (quit_force): Skip writing history file
2487         if input is not from terminal.
2488
2489 2013-08-14  Tom Tromey  <tromey@redhat.com>
2490
2491         * remote.c (struct remote_state) <echo_nextthread, nextthread,
2492         resultthreadlist>: New fields.
2493         (OPAQUETHREADBYTES, threadref, MAXTHREADLISTRESULTS): Move earlier.
2494         (remote_get_threadlist, remote_threadlist_iterator): Use
2495         new fields.  Remove static variables.
2496
2497 2013-08-14  Tom Tromey  <tromey@redhat.com>
2498
2499         * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p,
2500         remote_watch_data_address>: New fields.
2501         (remote_stopped_by_watchpoint_p, remote_watch_data_address): Remove.
2502         (process_stop_reply, remote_wait_as)
2503         (remote_check_watch_resources, remote_stopped_data_address): Update.
2504
2505 2013-08-14  Tom Tromey  <tromey@redhat.com>
2506
2507         * remote.c (struct remote_state) <async_client_callback,
2508         async_client_context>: New fields.
2509         (async_client_callback, async_client_context): Remove.
2510         (remote_async_serial_handler, remote_async): Update.
2511
2512 2013-08-14  Tom Tromey  <tromey@redhat.com>
2513
2514         * remote.c (sizeof_pkt): Remove.
2515         (remote_trace_find): Use rs->buf_size, not sizeof_pkt.
2516
2517 2013-08-14  Tom Tromey  <tromey@redhat.com>
2518
2519         * remote.c (struct remote_state) <use_threadinfo_query,
2520         use_threadextra_query>: New fields.
2521         (remote_threads_info, remote_threads_extra_info)
2522         (remote_open_1): Update.
2523
2524 2013-08-14  Tom Tromey  <tromey@redhat.com>
2525
2526         * remote.c (struct remote_state) <finished_object,
2527         finished_annex, finished_offset>: New fields.
2528         (remote_read_qxfer): Use remote_state fields; remove static
2529         variables.
2530
2531 2013-08-14  Tom Tromey  <tromey@redhat.com>
2532
2533         * remote.c (struct remote_state) <last_sent_step>:
2534         New field.
2535         (last_sent_step): Remove.
2536         (remote_resume, remote_wait_as): Update.
2537
2538 2013-08-14  Tom Tromey  <tromey@redhat.com>
2539
2540         * remote.c (struct remote_state) <last_sent_signal>:
2541         New field.
2542         (last_sent_signal): Remove.
2543         (new_remote_state, remote_resume, remote_wait_as): Update.
2544
2545 2013-08-14  Tom Tromey  <tromey@redhat.com>
2546
2547         * remote.c (struct remote_state) <last_program_signals_packet>:
2548         New field.
2549         (last_program_signals_packet): Remove.
2550         (remote_program_signals, remote_open_1): Update.
2551
2552 2013-08-14  Tom Tromey  <tromey@redhat.com>
2553
2554         * remote.c (struct remote_state) <last_pass_packet>:
2555         New field.
2556         (last_pass_packet): Remove.
2557         (remote_pass_signals, remote_open_1): Update.
2558
2559 2013-08-14  Tom Tromey  <tromey@redhat.com>
2560
2561         * remote.c (struct remote_state) <remote_traceframe_number>:
2562         New field.
2563         (remote_traceframe_number): Remove.
2564         (new_remote_state, remote_open_1, set_remote_traceframe)
2565         (remote_trace_find): Update.
2566
2567 2013-08-14  Tom Tromey  <tromey@redhat.com>
2568
2569         * remote.c (struct remote_state) <general_thread, continue_thread>:
2570         New fields.
2571         (general_thread, continue_thread): Remove.
2572         (record_currthread, set_thread, set_general_process)
2573         (remote_open_1, extended_remote_attach_1, remote_wait_as)
2574         (extended_remote_mourn_1): Update.
2575
2576 2013-08-14  Tom Tromey  <tromey@redhat.com>
2577
2578         * remote.c (struct remote_state) <remote_desc>: New field.
2579         (remote_desc): Remove.
2580         (remote_threads_info, remote_threads_extra_info, remote_close)
2581         (send_interrupt_sequence, remote_start_remote, remote_open_1)
2582         (readchar, remote_xfer_partial, remote_rcmd, packet_command)
2583         (remote_hostio_send_command, remote_file_put, remote_file_get)
2584         (remote_file_delete, remote_can_async_p, remote_is_async_p)
2585         (remote_async, remote_new_objfile, set_range_stepping): Update.
2586
2587 2013-08-14  Tom Tromey  <tromey@redhat.com>
2588
2589         * remote.c (remote_state): Now a pointer.
2590         (get_remote_state_raw): Update.
2591         (new_remote_state): New function.
2592         (_initialize_remote): Use new_remote_state.
2593
2594 2013-08-14  Tom Tromey  <tromey@redhat.com>
2595
2596         * remote.c (remote_protocol_features): Now const.
2597
2598 2013-08-14  Tom Tromey  <tromey@redhat.com>
2599
2600         * remote.c (crc32_table, crc32): Remove.
2601         (remote_verify_memory): Use xcrc32.
2602
2603 2013-08-13  Sergio Durigan Junior  <sergiodj@redhat.com>
2604
2605         * value.h (create_internalvar_type_lazy): Adjust prototype
2606         declaration.
2607
2608 2013-08-13  Andrew Burgess  <aburgess@broadcom.com>
2609
2610         * common/format.c (parse_format_string): Don't allow '#' flag for
2611         pointer arguments in format string.
2612
2613 2013-08-13  Pierre Muller  <muller@sourceware.org>
2614
2615         * utils.c (init_page_info): Only call tgetnum function
2616         if rl_get_screen_size did not return useful values.
2617
2618 2013-08-12  Ali Anwar  <ali_anwar@codesourcery.com>
2619
2620         PR breakpoints/15117
2621         * linespec.c (linespec_parse_basic): Check for convenience
2622         variable or history value while parsing.
2623
2624 2013-08-12  Sergio Durigan Junior  <sergiodj@redhat.com>
2625
2626         Revert implementation of gdbarch_gdb_signal_{to,from}_target for
2627         AVR.
2628         * avr-tdep.c: Remove include of "linux-tdep.h".  Remove enum with
2629         different signals between the generic Linux kernel implementation
2630         and AVR's.
2631         (avr_linux_gdb_signal_from_target): Delete.
2632         (avr_linux_gdb_signal_to_target): Delete.
2633         (avr_gdbarch_init): Don't set gdbarch_gdb_signal_{to,from}_target.
2634
2635 2013-08-09  Doug Evans  <dje@google.com>
2636
2637         * dwarf2read.c (create_addrmap_from_index): Ignore bad address table
2638         entries.
2639
2640 2013-08-09  Sergio Durigan Junior  <sergiodj@redhat.com>
2641
2642         * linux-tdep.c: Define enum with generic signal numbers.
2643         (linux_gdb_signal_from_target): New function.
2644         (linux_gdb_signal_to_target): Likewise.
2645         (linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2646         methods to the functions above.
2647         * linux-tdep.h (linux_gdb_signal_from_target): New prototype.
2648         (linux_gdb_signal_to_target): Likewise.
2649         * alpha-linux-tdep.c: Define new enum with signals different
2650         from generic Linux kernel.
2651         (alpha_linux_gdb_signal_from_target): New function.
2652         (alpha_linux_gdb_signal_to_target): Likewise.
2653         (alpha_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2654         with the functions mentioned above.
2655         * avr-tdep.c: Define enum with differences between Linux kernel
2656         and AVR signals.
2657         (avr_linux_gdb_signal_from_target): New function.
2658         (avr_linux_gdb_signal_to_target): Likewise.
2659         (avr_gdbarch_init): Set gdbarch_gdb_signal_{to,from}_target to
2660         the functions mentioned above.
2661         * sparc-linux-tdep.c: Define enum with differences between SPARC
2662         and generic Linux kernel signal numbers.
2663         (sparc32_linux_gdb_signal_from_target): New function.
2664         (sparc32_linux_gdb_signal_to_target): Likewise.
2665         (sparc32_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2666         to the functions defined above.
2667         * xtensa-linux-tdep.c: Define enum with differences between
2668         Xtensa and Linux kernel generic signals.
2669         (xtensa_linux_gdb_signal_from_target): New function.
2670         (xtensa_linux_gdb_signal_to_target): Likewise.
2671         (xtensa_linux_init_abi): Set gdbarch_gdb_signal_to_target
2672         to the functions defined above.
2673         * mips-linux-tdep.c: Define enum with differences between
2674         signals in MIPS and Linux kernel generic ones.
2675         (mips_gdb_signal_to_target): New function.
2676         (mips_gdb_signal_from_target): Redefine to use new enum, handle
2677         only different signals from the Linux kernel generic.
2678         (mips_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2679         the functions defined above.
2680         * mips-linux-tdep.h (enum mips_signals): Remove.
2681
2682 2013-08-09  Pedro Alves  <palves@redhat.com>
2683
2684         * avr-tdep.c (XMALLOC): Delete macro.
2685         * cli/cli-dump.c (XMALLOC): Delete macro.
2686
2687 2013-08-09  Pedro Alves  <palves@redhat.com>
2688
2689         * cli/cli-dump.c: Don't include cli/cli-dump.h.
2690         (scan_expression_with_cleanup, scan_filename_with_cleanup)
2691         (fopen_with_cleanup, add_dump_command): Make static.
2692         * cli/cli-dump.h: Delete file.
2693         * Makefile.in (HFILES_NO_SRCDIR): Remove reference to
2694         cli/cli-dump.h.
2695
2696 2013-08-09  Pedro Alves  <palves@redhat.com>
2697
2698         * tracepoint.c (tfile_start): Show tilde-expanded filename in
2699         error message.
2700
2701 2013-08-09  Pedro Alves  <palves@redhat.com>
2702
2703         * breakpoint.c (save_breakpoints): Show tilde-expanded filename in
2704         error message.
2705
2706 2013-08-09  Pedro Alves  <palves@redhat.com>
2707
2708         * gcore.c (create_gcore_bfd): Don't use tilde_expand here.
2709         (gcore_command): Use tilde_expand here, and when showing the
2710         filename to the user, show the expanded version.
2711
2712 2013-08-09  Yao Qi  <yao@codesourcery.com>
2713
2714         * stack.c (read_frame_arg): Set 'entryval_error' to NULL if
2715         'entryval' is set.
2716
2717 2013-08-08  Azat Khuzhin  <a3at.mail@gmail.com>  (tiny change)
2718
2719         * gcore.c (create_gcore_bfd): Use tilde_expand.
2720
2721 2013-08-08  Yao Qi  <yao@codesourcery.com>
2722
2723         * frame.h (read_frame_local): Declare.
2724         * mi/mi-cmd-stack.c (list_args_or_locals): Call
2725         read_frame_local.
2726         * stack.c (read_frame_local): New.
2727
2728 2013-08-08  Yao Qi  <yao@codesourcery.com>
2729
2730         * mi/mi-cmd-stack.c: Update comments to function
2731         list_args_or_locals.
2732
2733 2013-08-07  Tom Tromey  <tromey@redhat.com>
2734
2735         PR symtab/15028:
2736         * dwarf2read.c (struct process_psymtab_comp_unit_data): New.
2737         (process_psymtab_comp_unit_reader): Use it.
2738         (process_psymtab_comp_unit): Update.  Add "pretend_language"
2739         argument.
2740         (dwarf2_build_psymtabs_hard): Update.
2741         (scan_partial_symbols): Pass CU's language to
2742         process_psymtab_comp_unit.
2743
2744 2013-08-07  Tom Tromey  <tromey@redhat.com>
2745
2746         * dwarf2read.c (dw2_get_primary_filename_reader): Remove.
2747         (dwarf2_gdb_index_functions): Update.
2748         * psymtab.c (find_symbol_file_from_partial): Remove.
2749         (psym_functions): Update.
2750         * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
2751         Remove.
2752
2753 2013-08-07  Tom Tromey  <tromey@redhat.com>
2754
2755         * symfile.c (set_initial_language): Look up "main" symbol
2756         and use its language.
2757         * symtab.c (find_main_filename): Remove.
2758         * symtab.h (find_main_filename): Remove.
2759
2760 2013-08-07  Tom Tromey  <tromey@redhat.com>
2761
2762         * dwarf2read.c (recursively_compute_inclusions): Add
2763         "immediate_parent" argument.  Set symtab's "user" field
2764         if not set.
2765         (compute_symtab_includes): Update.
2766
2767 2013-08-07  Tom Tromey  <tromey@redhat.com>
2768
2769         * linespec.c (convert_linespec_to_sals): Use maybe_add_address
2770         when adding label symbols.
2771
2772 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
2773             Ulrich Weigand  <uweigand@de.ibm.com>
2774
2775         * configure.tgt (powerpc64-*-aix*): Match powerpc64 running aix.
2776         * configure.host (powerpc64-*-aix*): Likewise.
2777
2778 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
2779             Ulrich Weigand  <uweigand@de.ibm.com>
2780
2781         * gdb_ptrace.h: Use ptrace64 instead of ptrace if HAVE_PTRACE64
2782         is defined.
2783         * rs6000-nat.c: Check for __ld_info64_ if compiling 64 BIT gdb.
2784         (rs6000_ptrace32): Call ptrace64 instead of ptrace if present.
2785         (rs6000_ptrace64): Call ptace64 instead of ptracex if present.
2786         * configure.ac: Check for ptrace64.
2787         * configure, config.in: Regenerate.
2788
2789 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
2790             Ulrich Weigand  <uweigand@de.ibm.com>
2791
2792         * aixthread.c: Call ptrace64 instead of ptracex if defined.
2793         Call ptrace64 instead of ptrace if defined.
2794         Add macro addr_ptr to take care of ptrace address argument.
2795         (pdc_read_regs): Likewise.
2796         (pdc_write_regs): Likewise.
2797         (aix_thread_resume): Likewise.
2798         (fetch_regs_kernel_thread): Likewise.
2799         (store_regs_kernel_thread): Likewise.
2800
2801 2013-08-07  Anton Blanchard  <anton@samba.org>
2802
2803         * MAINTAINERS: Add myself to Write After Approval.
2804
2805 2013-08-05  Tom Tromey  <tromey@redhat.com>
2806
2807         * aix-thread.c (_initialize_aix_thread): Use
2808         complete_target_initialization.
2809         * bsd-uthread.c (_initialize_bsd_uthread): Use
2810         complete_target_initialization.
2811         * dec-thread.c (_initialize_dec_thread): Use
2812         complete_target_initialization.
2813         * ravenscar-thread.c (_initialize_ravenscar): Use
2814         complete_target_initialization.
2815         * sol-thread.c (_initialize_sol_thread): Use
2816         complete_target_initialization.
2817         * spu-multiarch.c (_initialize_spu_multiarch): Use
2818         complete_target_initialization.
2819
2820 2013-08-05  Tom Tromey  <tromey@redhat.com>
2821
2822         * ada-exp.y (write_var_or_type): Use bound_minimal_symbol.
2823         * ada-lang.c (ada_lookup_simple_minsym): Return
2824         bound_minimal_symbol.
2825         * ada-lang.h (ada_lookup_simple_minsym): Update.
2826         * c-exp.y (variable): Use lookup_bound_minimal_symbol.
2827         * f-exp.y (variable): Use lookup_bound_minimal_symbol.
2828         * go-exp.y (variable): Use lookup_bound_minimal_symbol.
2829         * jv-exp.y (push_expression_name): Use lookup_bound_minimal_symbol.
2830         * m2-exp.y (variable): Use lookup_bound_minimal_symbol.
2831         * minsyms.c (msymbol_objfile): Remove.
2832         (lookup_minimal_symbol_internal): New function, from
2833         lookup_minimal_symbol.
2834         (lookup_minimal_symbol): Rewrite using
2835         lookup_minimal_symbol_internal.
2836         (lookup_bound_minimal_symbol): New function.
2837         * minsyms.h (msymbol_objfile): Remove.
2838         (lookup_bound_minimal_symbol): Declare.
2839         * p-exp.y (variable): Use lookup_bound_minimal_symbol.
2840         * parse.c (write_exp_msymbol): Change parameter to a
2841         bound_minimal_symbol.
2842         (write_dollar_variable): Use lookup_bound_minimal_symbol.
2843         * parser-defs.h (write_exp_msymbol): Update.
2844         * printcmd.c (address_info): Use lookup_bound_minimal_symbol.
2845         * symfile.c (simple_read_overlay_table): Use
2846         lookup_bound_minimal_symbol.
2847         * symtab.c (skip_prologue_sal): Don't use msymbol_objfile.
2848         (search_symbols): Likewise.
2849         (print_msymbol_info): Take a bound_minimal_symbol argument.
2850         (symtab_symbol_info, rbreak_command): Update.
2851         * symtab.h (struct symbol_search) <msymbol>: Change type
2852         to bound_minimal_symbol.
2853         * valops.c (find_function_in_inferior): Use
2854         lookup_bound_minimal_symbol.
2855         * value.c (value_fn_field): Use lookup_bound_minimal_symbol.
2856
2857 2013-08-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
2858
2859         Code cleanup.
2860         * remote.c (cleanup_sigint_signal_handler): Rename the declaration
2861         to ...
2862         (async_cleanup_sigint_signal_handler): ... this.
2863         (initialize_sigint_signal_handler): Remove declaration.
2864         (handle_remote_sigint): Rename the declaration to ...
2865         (async_handle_remote_sigint): ... this.
2866         (handle_remote_sigint_twice): Rename the declaration to ...
2867         (async_handle_remote_sigint_twice): ... this.
2868         (async_remote_interrupt, async_remote_interrupt_twice)
2869         (remote_interrupt): Remove the declarations.
2870         (remote_interrupt_twice): Rename the declaration ...
2871         (sync_remote_interrupt_twice): ... this.
2872         (sigint_remote_twice_token): Rename the variable to ...
2873         (async_sigint_remote_twice_token): ... this.
2874         (sigint_remote_token): Rename the variable to ...
2875         (async_sigint_remote_token): ... this.
2876         (initialize_sigint_signal_handler): Rename the function to ...
2877         (async_initialize_sigint_signal_handler): ... this.  Update the name
2878         inside.
2879         (handle_remote_sigint): Rename the function to ...
2880         (async_handle_remote_sigint): ... this.  Update the names inside.
2881         (handle_remote_sigint_twice): Rename the function to ...
2882         (async_handle_remote_sigint_twice): ... this.  Update the names inside.
2883         (cleanup_sigint_signal_handler): Rename the function to ...
2884         (async_cleanup_sigint_signal_handler): ... this.
2885         (remote_interrupt): Rename the function to ...
2886         (sync_remote_interrupt): this.  Update the names inside.
2887         (remote_interrupt_twice): Rename the function to ...
2888         (sync_remote_interrupt_twice): this.  Update the names inside.
2889         (remote_terminal_inferior, remote_terminal_ours, remote_wait_as)
2890         (_initialize_remote): Update the names inside.
2891
2892 2013-08-02  Tom Tromey  <tromey@redhat.com>
2893
2894         PR symtab/15719:
2895         * breakpoint.c (update_watchpoint, watchpoint_check)
2896         (watch_command_1): Update.
2897         * eval.c (fetch_subexp_value): Add "preserve_errors"
2898         parameter.
2899         * ppc-linux-nat.c (check_condition): Update.
2900         * value.h (fetch_subexp_value): Update.
2901
2902 2013-08-02  Andrew Burgess  <aburgess@broadcom.com>
2903
2904         * mi/mi-interp.c (mi_interpreter_resume): Remove call to
2905         add_file_handler.
2906
2907 2013-08-01  Doug Evans  <dje@google.com>
2908
2909         PR symtab/15691
2910         * dwarf2read.c (struct dwarf2_per_cu_data): New member tu_read.
2911         (fill_in_sig_entry_from_dwo_entry): Reorganize asserts.
2912         Add assert of sig_entry->dwo_unit == NULL.
2913         (lookup_dwo_signatured_type): Don't assign TU to a DWO if the TU
2914         had already been read.
2915         (read_signatured_type): Set per_cu.tu_read.
2916
2917         PR symtab/15695
2918         * valops.c (value_struct_elt): Add missing call to check_typedef.
2919         (value_find_oload_method_list): Ditto.
2920
2921         * symtab.c (do_free_search_symbols_cleanup): Change arg to,
2922         effectively, struct symbol_search **.
2923         (make_cleanup_free_search_symbols): Change arg to struct
2924         symbol_search **.  All callers updated.
2925         (compare_search_syms): Compare symtab file name and block as well.
2926         (search_symbols_equal): New function.
2927         (sort_search_symbols_remove_dups): Renamed from sort_search_symbols.
2928         New args new_head, new_tail.  Result is now void.  Remove dups after
2929         sorting the symbols.
2930         (search_symbols): Sort all found symbols once, after all have been
2931         found, and remove duplicates.  Simplify cleanup tracking of result.
2932         * symtab.h (make_cleanup_free_search_symbols): Update prototype.
2933
2934         Further workarounds for binutils/15021.
2935         * dwarf2read.c (recursively_compute_inclusions): Change type of result
2936         parameter to VEC (symtab_ptr) **.  New parameter all_type_symtabs.
2937         Watch for duplicate symtabs coming from type units.
2938         (compute_symtab_includes): Update call to
2939         recursively_compute_inclusions. Build vector of included symtabs
2940         instead of per_cus.
2941         * symtab.h (symtab_ptr): New typedef.
2942         (DEF_VEC_P (symtab_ptr)): New VEC type.
2943         * linespec.c (symtab_p): Delete.  All uses updated to use symtab_ptr
2944         instead.
2945
2946 2013-08-01  Andrew Burgess  <aburgess@broadcom.com>
2947
2948         * cli/cli-script.c (script_from_file): Remove use of
2949         error_pre_print.
2950         * main.c (captured_main): Remove use of error_pre_print and
2951         quit_pre_print.
2952         * utils.c (error_pre_print, quit_pre_print): Remove.
2953         * utils.h (error_pre_print, quit_pre_print): Likewise.
2954
2955 2013-08-01  Yao Qi  <yao@codesourcery.com>
2956
2957         * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Parse argv
2958         with mi_getopt.
2959         (mi_cmd_stack_list_variables): Likewise.
2960
2961 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
2962
2963         * exceptions.c (deprecated_throw_reason): Remove.
2964         * exceptions.h (deprecated_throw_reason): Remove.
2965
2966 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
2967
2968         * remote-mips.c (mips_error): Replace use of
2969         deprecated_throw_reason with throw_verror.  Use the error message
2970         passed to mips_error as the error message for throw_verror.
2971
2972 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
2973
2974         * monitor.c (monitor_interrupt_query): Replace use of
2975         deprecated_throw_reason with quit.
2976         * nto-procfs.c (interrupt_query): Likewise.
2977         * remote-fileio.c (remote_fileio_sig_exit): Likewise.
2978         * remote-mips.c (mips_kill): Likewise.
2979         * remote.c (interrupt_query): Likewise.
2980
2981 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
2982
2983         * utils.c (internal_verror): Replace use of deprecated_throw_reason
2984         with call to fatal.
2985
2986 2013-07-31  Pedro Alves  <pedro@codesourcery.com>
2987             Yao Qi  <yao@codesourcery.com>
2988
2989         * tracepoint.c (trace_dump_command): Select the current frame.
2990
2991 2013-07-30  Doug Evans  <dje@google.com>
2992
2993         * dwarf2read.c (process_queue): Add type signature to debug output.
2994
2995 2013-07-30  Andrew Burgess  <aburgess@broadcom.com>
2996
2997         * value.c (value_fetch_lazy): Mark optimized out values as such
2998         rather than raising an error.
2999
3000 2013-07-30  Andrew Burgess  <aburgess@broadcom.com>
3001
3002         * value.c (value_fetch_lazy): Ensure parent value is not lazy
3003         before checking which bits of the parent, not the child, value are
3004         valid.
3005
3006 2013-07-30  Muhammad Bilal  <mbilal@codesorcery.com>
3007
3008         PR gdb/15715
3009         * top.c: Include "filenames.h".
3010         (set_history_filename): New function.
3011         (init_main): Install it as set hook of the "set history filename"
3012         command.
3013
3014 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
3015
3016         * dwarf2read.c (dwarf2_get_ref_die_offset): Constify struct
3017         attribute parameter.
3018         (dwarf2_const_value_data): Constify struct attribute parameter.
3019         (dwarf2_const_value): Constify struct attribute parameter.
3020         (dwarf2_const_value_attr): Constify struct attribute parameter.
3021         (lookup_die_type): Constify struct attribute parameter.
3022         (dwarf2_get_attr_constant_value): Constify struct attribute parameter.
3023         (follow_die_ref_or_sig): Constify struct attribute parameter.
3024         (follow_die_ref): Constify struct attribute parameter.
3025         (follow_die_sig): Constify struct attribute parameter.
3026         (get_DW_AT_signature_type): Constify struct attribute parameter.
3027         (get_type_unit_group): Constify struct attribute parameter.
3028         (fill_in_loclist_baton): Constify struct attribute parameter.
3029         (dwarf2_symbol_mark_computed): Constify struct attribute parameter.
3030         (type_unit_group): Constify struct attribute parameter.
3031
3032 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
3033
3034         * dwarf2read.c (attr_form_is_block): Make argument const.
3035         (attr_form_is_section_offset): Make argument const.
3036         (attr_form_is_constant): Make argument const.
3037         (attr_form_is_ref): Make argument const.
3038
3039 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
3040
3041         * dwarf2read.c (attr_is_ref): Rename to attr_form_is_ref.
3042         All uses updated.
3043         (attr_form_is_ref): Moved below attr_form_is_constant.
3044
3045 2013-07-29  Doug Evans  <dje@google.com>
3046
3047         * main.c (captured_command_loop): Tweak comment.
3048
3049         * target.c (target_async_permitted_1): Fix comment.
3050
3051         * symtab.c (iterate_over_some_symtabs): Add comment.
3052
3053         * symtab.c (iterate_over_some_symtabs): Fix indentation.
3054
3055 2013-07-27  Yao Qi  <yao@codesourcery.com>
3056
3057         * NEWS: Mention that GDBserver now supports hardware
3058         watchpoints on the MIPS GNU/Linux target.
3059
3060 2013-07-27  Yao Qi  <yao@codesourcery.com>
3061
3062         * Makefile.in (HFILES_NO_SRCDIR): Add
3063         common/mips-linux-watch.h.
3064         (mips-linux-watch.o): New rule.
3065         * common/mips-linux-watch.c: New.
3066         * common/mips-linux-watch.h: New.
3067         * config/mips/linux.mh (NATDEPFILES): Add mips-linux-watch.o
3068         * mips-linux-nat.c: Include mips-linux-watch.h.
3069         (W_BIT, R_BIT, I_BIT, W_MASK, R_MASK, I_MASK, IRW_MASK): Move
3070         to common/mips-linux-watch.h.
3071         (MAX_DEBUG_REGISTER): Likewise.
3072         (enum pt_watch_style): Likewise.
3073         (struct mips32_watch_regs): Likewise.
3074         (struct mips64_watch_regs): Likewise.
3075         (struct pt_watch_regs): Likewise.
3076         (struct mips_watchpoint): Likewise.
3077         (mips_linux_watch_get_irw_mask): Move to
3078         common/mips-linux-watch.c.
3079         (get_reg_mask, mips_linux_watch_get_num_valid): Likewise.
3080         (mips_linux_watch_get_watchlo): Likewise.
3081         (mips_linux_watch_set_watchlo): Likewise.
3082         (mips_linux_watch_get_watchhi): Likewise.
3083         (mips_linux_watch_set_watchhi): Likewise.
3084         (mips_linux_read_watch_registers): Likewise.
3085         (mips_linux_watch_type_to_irw): Likewise.
3086         (mips_linux_stopped_data_address, fill_mask): Likewise.
3087         (mips_linux_watch_try_one_watch): Likewise.
3088         (mips_linux_watch_populate_regs): Likewise.
3089
3090 2013-07-27  Yao Qi  <yao@codesourcery.com>
3091
3092         * mips-linux-nat.c (get_irw_mask): Rename to ...
3093         (mips_linux_watch_get_irw_mask): ... this.  Rename parameter
3094         'set' to 'n'.  Update function comment.  All callers changed.
3095         (get_reg_mask): Rename parameter 'set' to 'n'.  Update
3096         function comment.  All callers changed.
3097         (get_num_valid): Rename to ...
3098         (mips_linux_watch_get_num_valid): ... this.  Rename parameter
3099         'set' to 'n'.  Update function comment.  All callers changed.
3100         (get_watchlo): Rename to ...
3101         (mips_linux_watch_get_watchlo): ... this.  Rename parameter
3102         'set' to 'n'.  Update function comment.  All callers changed.
3103         (set_watchlo): Rename to ...
3104         (mips_linux_watch_set_watchlo): ... this.  Rename parameter
3105         'set' to 'n'.  Update function comment.  All callers changed.
3106         (get_watchhi): Rename to ...
3107         (mips_linux_watch_get_watchhi): ... this.  Update function
3108         comment.  All callers changed.
3109         (set_watchhi): Rename to ...
3110         (mips_linux_watch_set_watchhi): ... this.  Update function
3111         comment.  All callers changed.
3112         (mips_linux_read_watch_registers): Update function comment.
3113         Add new parameters 'lwpid', 'watch_readback', and
3114         'watch_readback_valid'.  Update.
3115         (type_to_irw): Rename to ...
3116         (mips_linux_watch_type_to_irw): ... this.  Update function
3117         comment.  All callers changed.
3118         (fill_mask): Update function comment.
3119         (try_one_watch): Rename to ...
3120         (mips_linux_watch_try_one_watch): ... this.  Change the type
3121         of parameter 'irw' from 'unsigned' to 'uint32_t'.
3122         (populate_regs_from_watches): Rename to ...
3123         (mips_linux_watch_populate_regs): ... this.  Add parameter
3124         'current_watches'.  All callers changed.
3125
3126 2013-07-27  Yao Qi  <yao@codesourcery.com>
3127
3128         * mips-linux-nat.c (MAX_DEBUG_REGISTER): Move it earlier in
3129         the code.
3130         (PTRACE_SET_WATCH_REGS, enum pt_watch_style): Remove.
3131         (struct mips32_watch_regs, struct mips64_watch_regs): Remove.
3132         (struct pt_watch_regs): Likewise.
3133         [!PTRACE_GET_WATCH_REGS] (PTRACE_SET_WATCH_REGS): New macro.
3134         [!PTRACE_GET_WATCH_REGS] (enum pt_watch_style): New.
3135         [!PTRACE_GET_WATCH_REGS] (struct mips32_watch_regs): New.
3136         [!PTRACE_GET_WATCH_REGS] (struct mips64_watch_regs): New.
3137         [!PTRACE_GET_WATCH_REGS] (struct pt_watch_regs): New.
3138
3139 2013-07-27  Yao Qi  <yao@codesourcery.com>
3140
3141         * breakpoint.h: Include break-common.h.
3142         (enum target_hw_bp_type): Move to ...
3143         * common/break-common.h: ... here.  New.
3144
3145 2013-07-26  Cyril Nikolaev  <cyril@nichtverstehen.de>
3146
3147         * inflow.c (terminal_init_inferior_with_pgrp): Save inferior
3148         process group regardless of having tty on stdin.
3149
3150 2013-07-25  Doug Evans  <dje@google.com>
3151
3152         * linux-fork.h (detach_fork): Delete.
3153
3154 2013-07-25  Tom Tromey  <tromey@redhat.com>
3155
3156         PR remote/15256, PR remote/15266:
3157         * bfd-target.c (target_bfd_reopen): Initialize to_magic.
3158         * monitor.c (monitor_detach): Use unpush_target.
3159         * remote-m32r-sdi.c (m32r_detach): Use unpush_target.
3160         * remote-mips.c (mips_detach): Use unpush_target.  Don't
3161         call mips_close.
3162         * remote-sim.c (gdbsim_detach): Use unpush_target.
3163         * target.c (pop_target): Remove.
3164         (pop_all_targets_above): Don't call target_close.
3165         (target_close): Assert that the target is unpushed.
3166         * target.h (pop_target): Don't declare.
3167         * tracepoint.c (tfile_open): Use unpush_target.
3168
3169 2013-07-25  Tom Tromey  <tromey@redhat.com>
3170
3171         * linux-thread-db.c (init_thread_db_ops): Call
3172         complete_target_initialization.
3173         (_initialize_thread_db): Don't call add_target.
3174         * target.c (complete_target_initialization): New function.
3175         (add_target_with_completer): Call it.
3176         * target.h (complete_target_initialization): Declare.
3177
3178 2013-07-25  Mark Kettenis  <kettenis@gnu.org>
3179
3180         * hppa-tdep.h (enum hppa_regnum): Add members for all space registers.
3181         * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Add comment.
3182         (HPPANBSD_SIZEOF_GREGS): New define.
3183         (hppaobsd_supply_gregset): Handle additional registers.
3184         * hppabsd-nat.c (hppabsd_gregset_supplies_p): Adjust to indicate
3185         we provide more registers now.
3186         (hppabsd_supply_gregset): Supply additional registers.
3187         (hppabsd_collect_gregset): Collect additional registers.
3188
3189 2013-07-25  Mark Kettenis  <kettenis@gnu.org>
3190
3191         * hppabsd-tdep.c: Include "dwarf2-frame.h".
3192         (hppabsd_dwarf2_frame_init_reg): New function.
3193         (hppabsd_init_abi): Hook in the DWARF CFI frame unwinder.
3194
3195 2013-07-25  Andrew Burgess  <aburgess@broadcom.com>
3196
3197         * mi/mi-main.c (output_register): Make MI 'r' format use standard
3198         'z' format code.  Remove error for optimized out values, standard
3199         code will handle these fine.
3200
3201 2013-07-25  Andrew Burgess  <aburgess@broadcom.com>
3202
3203         * NEWS: Mention new 'z' formatter.
3204         * printcmd.c (print_scalar_formatted): Add new 'z' formatter.
3205         (_initialize_printcmd): Mention 'z' formatter in help text of the
3206         'x' command.
3207
3208 2013-07-24  Maciej W. Rozycki  <macro@codesourcery.com>
3209
3210         * mips-tdep.c (micromips_deal_with_atomic_sequence): Correct
3211         formatting.
3212
3213 2013-07-24  Sergio Durigan Junior  <sergiodj@redhat.com>
3214
3215         * breakpoint.c (create_longjmp_master_breakpoint): Check if probe
3216         interface can evaluate arguments.  Fallback to the old mode if it
3217         cannot.
3218         (create_exception_master_breakpoint): Likewise.
3219         * elfread.c (elf_can_evaluate_probe_arguments): New function.
3220         (struct sym_probe_fns elf_probe_fns): Export function above to the
3221         probe interface.
3222         * probe.c (can_evaluate_probe_arguments): New function.
3223         * probe.h (struct probe_ops) <can_evaluate_probe_arguments>: New
3224         function pointer.
3225         (can_evaluate_probe_arguments): New function prototype.
3226         * solib-svr4.c (svr4_create_solib_event_breakpoints): Check if
3227         probe interface can evaluate arguments.  Fallback to the old mode
3228         if it cannot.
3229         * stap-probe.c (stap_get_probe_argument_count): Check if probe
3230         interface can evaluate arguments.  Warning the user if it cannot.
3231         (stap_can_evaluate_probe_arguments): New function.
3232         (struct probe_ops stap_probe_ops): Export function above to the
3233         probe interface.
3234         * symfile.h (struct sym_probe_fns) <can_evaluate_probe_arguments>:
3235         New function pointer.
3236
3237 2013-07-24  Luis Machado  <lgustavo@codesourcery.com>
3238
3239         * Makefile.in (SFILES): Add common/target-common.c.
3240         Add common/target-common.h to headers.
3241         (COMMON_OBS): Add target-common.o.
3242         (target-common.o): New target.
3243         * linux-nat.h (resume_kind): Move to common/target-common.h.
3244         * target.c (target_waitstatus_to_string): Move to
3245         common/target-common.c.
3246         * target.h: Include target-common.h.
3247         (target_waitkind): Move to common/target-common.h.
3248         (target_waitstatus): Likewise.
3249         (TARGET_WNOHANG): Likewise.
3250         * common/target-common.c: New file.
3251         * common/target-common.h: New file.
3252
3253 2013-07-24  Doug Evans  <dje@google.com>
3254
3255         * dwarf2read.c (lookup_dwo_cutu): Change missing DWO complaint to
3256         a warning.
3257
3258 2013-07-23  Yao Qi  <yao@codesourcery.com>
3259
3260         * i386-tdep.c (i386_in_stack_tramp_p): Remove unused
3261         parameter 'gdbarch'.
3262         (i386_stack_tramp_frame_sniffer): Caller update.
3263         * i386-linux-tdep.c (i386_linux_core_read_xcr0): Remove
3264         parameter 'gdbarch' and 'target'.
3265         (i386_linux_core_read_description): Caller update.
3266         * amd64-linux-tdep.c (amd64_linux_core_read_description):
3267         Likewise.
3268         * i386-linux-tdep.h (i386_linux_core_read_xcr0): Update
3269         declaration.
3270
3271 2013-07-23  Tom Tromey  <tromey@redhat.com>
3272
3273         * dwarf2read.c (init_cutu_and_read_dies): Revert patch from
3274         2013-07-22.
3275
3276 2013-07-22  Doug Evans  <dje@google.com>
3277
3278         * exec.h (remove_target_sections): Delete arg abfd.
3279         * exec.c (exec_close): Update call to remove_target_sections.
3280         (remove_target_sections): Delete arg abfd.
3281         * solib.c (update_solib_list): Ditto.
3282         (reload_shared_libraries_1): Ditto.
3283         (clear_solib): Ditto, and unconditionally call remove_target_sections.
3284         * target.h (struct target_section): Rename key to owner.
3285         All uses updated.
3286
3287 2013-07-22  Tom Tromey  <tromey@redhat.com>
3288
3289         * solib-som.c (som_open_symbol_file_object): Call do_cleanups.
3290
3291 2013-07-22  Tom Tromey  <tromey@redhat.com>
3292
3293         * dwarf2read.c (init_cutu_and_read_dies): Remove 'free_cu_cleanup'.
3294         Simplify cleanup handling.
3295
3296 2013-07-22  Tom Tromey  <tromey@redhat.com>
3297
3298         * dwarf2read.c (dwarf_decode_line_header): Call do_cleanups
3299         on all return paths.
3300
3301 2013-07-22  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
3302
3303         * ppc-linux-nat.c (PPC_DEBUG_FEATURE_DATA_BP_DAWR): New define.
3304         (ppc_linux_region_ok_for_hw_watchpoint): Add checking to use the new
3305         DAWR interface for longer ranges hardware watchpoint (up to 512 bytes).
3306
3307 2013-07-22  Phil Muldoon  <pmuldoon@redhat.com>
3308
3309         * top.c (print_gdb_version): Add help, apropos description and
3310         url to online documentation.
3311
3312 2013-07-19  Hui Zhu  <hui@codesourcery.com>
3313
3314         PR gdb/15692
3315         * mi/mi-cmd-break.c (mi_argv_to_format): Handle double quotes.
3316
3317 2013-07-19  Yao Qi  <yao@codesourcery.com>
3318
3319         * target.c (update_current_target): Change the default action
3320         of 'to_traceframe_info' from tcomplain to return_zero.
3321         * target.h (struct target_ops) <to_traceframe_info>: Add more
3322         comments.
3323         * valops.c (read_value_memory): Call
3324         traceframe_available_memory unconditionally.
3325
3326 2013-07-18  Yao Qi  <yao@codesourcery.com>
3327
3328         * coffread.c (coff_symfile_read): Iterate over minimal symbols,
3329         if the name is prefixed by "__imp_" or "_imp_", look for minimal
3330         symbol without prefix.  If found, set its type to
3331         'mst_solib_trampoline'.
3332
3333 2013-07-17  Doug Evans  <dje@google.com>
3334
3335         * NEWS: Mention "set print raw frame-arguments".
3336         * gdbcmd.h (setprintrawlist, showprintrawlist): Declare.
3337         * stack.c (print_raw_frame_arguments): New static global.
3338         (print_frame_arg): Set opts.raw from print_raw_frame_arguments.
3339         (_initialize_stack): New command "set/show print raw frame-arguments".
3340         * valprint.c (setprintrawlist, showprintrawlist): New globals.
3341         (set_print_raw, show_print_raw): New functions.
3342         (_initialize_valprint): New prefix command "set/show print raw".
3343         * valprint.h (value_print_options): Improve comments.
3344
3345         * cli/cli-cmds.c (init_cmd_lists): Delete unnecessary initialization
3346         of all *list variables.
3347
3348         * gdbcmd.h (togglelist): Delete.
3349         * cli/cli-cmds.c (togglelist): Delete.
3350         (init_cmd_lists): Update.
3351         * cli/cli-cmds.h (togglelist): Delete.
3352
3353 2013-07-17  Tom Tromey  <tromey@redhat.com>
3354
3355         * dwarf2read.c (dwarf2_per_objfile_free): Clear
3356         dwarf2_per_objfile.
3357
3358 2013-07-16  Doug Evans  <dje@google.com>
3359
3360         * nto-tdep.c (nto_relocate_section_addresses): Update,
3361         target_section.bfd deleted.
3362         * ppc64-tdep.c (ppc64_convert_from_func_ptr_addr): Ditto.
3363         * s390-tdep.c (s390_load): Ditto.
3364         * solib-aix.c (solib_aix_relocate_section_addresses): Ditto.
3365
3366 2013-07-16  Andrew Burgess  <aburgess@broadcom.com>
3367
3368         * common/format.c (parse_format_string): Add checks for NULL
3369         character before calling strchr.
3370
3371 2013-07-16  Doug Evans  <dje@google.com>
3372
3373         * solist.h (target_so_ops.find_and_open_solib): Clarify usage of
3374         temp_pathname argument.
3375         * nto-tdep.c (nto_find_and_open_solib): Fix setting of temp_pathname
3376         when opening the file fails.
3377
3378         * target.h (struct target_section): Delete member bfd.
3379         All users updated to use the_bfd_section->owner instead.
3380         * exec.c (add_to_section_table): Assert bfd is expected value.
3381         Remove initialization of target_section.bfd.
3382         (remove_target_sections): Update.
3383         (section_table_available_memory): Update.
3384         (section_table_xfer_memory_partial): Update.
3385         (print_section_info): Update.
3386         (exec_set_section_address): Update.
3387         * record-full.c (record_full_core_xfer_partial): Update.
3388         * solib-svr4.c (svr4_relocate_section_addresses): Update.
3389         * solib-target.c (solib_target_relocate_section_addresses): Update.
3390         * symfile.c (build_section_addr_info_from_section_table): Update.
3391         * target.c (memory_xfer_live_readonly_partial): Update.
3392         (memory_xfer_partial_1): Update.
3393
3394 2013-07-15  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
3395
3396         * ppc-linux-nat.c: Since the new PowerPC specific ptrace interface is
3397         now available for embedded (BookE) and server (BookS) processors,
3398         correct mentions of 'booke' and adjust comments accordingly in order to
3399         avoid confusion. Rename struct 'booke_debug_info' to 'hwdebug_info'.
3400         (have_ptrace_booke_interface): Rename function and variable
3401         'have_ptrace_booke_interface' to 'have_ptrace_hwdebug_interface'.
3402         Rename struct 'booke_debug_info' to 'hwdebug_info'. Update all uses.
3403         (booke_cmp_hw_point): Rename function 'booke_cmp_hw_point' to
3404         'hwdebug_point_cmp'. Update all uses.
3405         (booke_find_thread_points_by_tid): Rename function
3406         'booke_find_thread_points_by_tid' to
3407         'hwdebug_find_thread_points_by_tid'. Update all uses.
3408         (booke_insert_point): Rename function 'booke_insert_point' to
3409         'hwdebug_insert_point'. Update all uses.
3410         (booke_remove_point): Rename function 'booke_remove_point' to
3411         'hwdebug_remove_point'. Update all uses.
3412
3413 2013-07-15  Maciej W. Rozycki  <macro@codesourcery.com>
3414
3415         * mips-tdep.c (mips_gdbarch_init): Replace hardcoded magic
3416         numbers with enum values.
3417
3418 2013-07-15  Ali Anwar  <ali_anwar@codesourcery.com>
3419
3420         PR threads/13217
3421         * thread.c (thread_apply_all_command): Check for valid threads
3422         and thread count.
3423         (thread_array_cleanup): New struct.
3424         (set_thread_refcount): New function.
3425
3426 2013-07-11  Andrew Burgess  <aburgess@broadcom.com>
3427
3428         * infcmd.c (default_print_one_register_info): Reuse function
3429         print_hex_chars.
3430
3431 2013-07-10  Tom Tromey  <tromey@redhat.com>
3432
3433         * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS, ADA_EXP_C): New macros.
3434         (ada-exp.o): New target.
3435
3436 2013-07-10  Sergio Durigan Junior  <sergiodj@redhat.com>
3437
3438         * mt-tdep.c (mt_registers_info): Call
3439         get_no_prettyformat_print_options instead of
3440         get_raw_print_options (regression by last patch from Doug
3441         Evans).
3442
3443 2013-07-09  Pedro Alves  <palves@redhat.com>
3444
3445         Checked in by Joel Brobecker  <brobecker@adacore.com>.
3446         * ada-lang.c (coerce_unspec_val_to_type): Use
3447         value_optimized_out_const.
3448         * value.c (value_optimized_out_const): New function.
3449         * value.h (value_optimized_out_const): New declaration.
3450
3451 2013-07-09  Doug Evans  <dje@google.com>
3452
3453         * defs.h (enum val_prettyformat): Renamed from val_prettyprint.
3454         Enum values rename as well.  All uses updated.
3455         * valprint.h (value_print_options): Rename member pretty to
3456         pretty format.  Rename member prettyprint_arrays to
3457         prettyformat_arrays.  Rename member prettyprint_structs to
3458         prettyformat_structs.  All uses updated.
3459         (get_no_prettyformat_print_options): Renamed from
3460         get_raw_print_options.
3461         * valprint.c (get_no_prettyformat_print_options): Renamed from
3462         get_raw_print_options.  All callers updated.
3463         (show_prettyformat_structs): Renamed from show_prettyprint_structs.
3464         All callers updated.
3465         (show_prettyformat_arrays): Renamed from show_prettyprint_arrays.
3466         All callers updated.
3467         (_initialize_valprint): Improve help text for "set print pretty" and
3468         "set print arrays".
3469
3470 2013-07-09  Andrew Burgess  <aburgess@broadcom.com>
3471
3472         * value.c (value_bits_valid): Revert previous change, and change
3473         by Pedro on 2013-07-04, due to regressions in
3474         gdb.dwarf2/implptr.exp and gdb.dwarf2/pieces.exp.
3475
3476 2013-07-08  Andrew Burgess  <aburgess@broadcom.com>
3477             Pedro Alves  <palves@redhat.com>
3478
3479         * value.c (value_bits_valid): If the value is not lval_computed
3480         or has no check validity handler then the answer is the
3481         optimized_out flag, otherwise defer to the handler.
3482
3483 2013-07-06  Eli Zaretskii  <eliz@gnu.org>
3484
3485         * top.c (print_gdb_configuration): Explain in output of
3486         --configuration what does "relocatable" mean.
3487
3488         * main.c (print_gdb_help): Regroup options in the --help text.
3489         See http://sourceware.org/ml/gdb-patches/2013-04/msg00362.html for
3490         the relevant discussions.
3491
3492 2013-07-06  Yao Qi  <yao@codesourcery.com>
3493
3494         * breakpoint.h (struct breakpoint_ops) <create_breakpoints_sal>:
3495         Remove parameter 'lsal'.
3496         * breakpoint.c (create_breakpoint): Move local variable 'lsal'
3497         to inner block.  Caller update.
3498         (base_breakpoint_create_breakpoints_sal): Update.
3499         (bkpt_create_breakpoints_sal): Likewise.
3500         (tracepoint_create_breakpoints_sal): Likewise.
3501         (strace_marker_create_breakpoints_sal): Get 'lsal' from the
3502         element 0 of vector 'canonical->sals'.
3503
3504 2013-07-05  Luis Machado  <lgustavo@codesourcery.com>
3505
3506         * rs6000-tdep.c (rs6000_stab_reg_to_regnum): Return the real
3507         register number instead of the pseudo register one.
3508         (rs6000_dwarf2_reg_to_regnum): Likewise.
3509
3510 2013-07-04  Pedro Alves  <palves@redhat.com>
3511
3512         * findvar.c (value_of_register): Use allocate_optimized_out_value
3513         if the register has been optimized out, instead of
3514         set_value_optimized_out.
3515         * frame-unwind.c (frame_unwind_got_optimized): Use
3516         allocate_optimized_out_value.
3517
3518 2013-07-04  Pedro Alves  <palves@redhat.com>
3519
3520         * value.c (value_bits_valid): If the value is not lval_computed,
3521         or doesn't have a check_validity hook, assume the value is entirely
3522         valid.
3523
3524 2013-07-04  Andrew Burgess  <aburgess@broadcom.com>
3525
3526         * stack.c (read_frame_arg): No longer fetch lazy values.
3527         * value.c (value_optimized_out): If the value is not already
3528         marked optimized out, and is lazy then fetch it.
3529         (value_primitive_field): Move optimized out check to later in the
3530         function, after we have loaded any lazy values.
3531         (value_fetch_lazy): Use optimized out flag directly rather than
3532         calling optimized_out method.
3533
3534 2013-07-04  Andrew Burgess  <aburgess@broadcom.com>
3535
3536         * valops.c: Don't include "user-regs.h".
3537         (value_fetch_lazy): Moved to value.c.
3538         * value.c: Include "user-regs.h".
3539         (value_fetch_lazy): Moved from valops.c.
3540
3541 2013-07-04  Yao Qi  <yao@codesourcery.com>
3542
3543         Revert:
3544         2013-06-27  Yao Qi  <yao@codesourcery.com>
3545
3546         * common/create-version.sh: Update comments.  Handle the case
3547         that TARGET_ALIAS is empty.
3548
3549 2013-07-03  Pedro Alves  <palves@redhat.com>
3550
3551         * Makefile.in (config.status): Depend on development.sh.
3552         (aclocal_m4_deps): Add libmcheck.m4.
3553         * acinclude.m4: Include libmcheck.m4.
3554         * configure.ac: Source development.sh instead of setting
3555         'development' here.  --enable-libmcheck/--disable-libmcheck code
3556         factored out to GDB_AC_LIBMCHECK.  Run it.
3557         * development.sh: New file.
3558         * libmcheck.m4: New file.
3559         * configure: Regenerate.
3560
3561 2013-07-02  Tom Tromey  <tromey@redhat.com>
3562
3563         * contrib/ari/update-web-ari.sh: Update for version.in change.
3564
3565 2013-07-02  Tom Tromey  <tromey@redhat.com>
3566
3567         * common/ptid.h: Comment fixes.
3568
3569 2013-07-01  Tom Tromey  <tromey@redhat.com>
3570
3571         * dwarf2read.c (dwarf2_get_dwz_file): Return NULL if
3572         .gnu_debugaltlink not found.  Use bfd_get_alt_debug_link_info.
3573         (dwarf2_read_index, create_all_comp_units): Update.
3574
3575 2013-07-01  Tom Tromey  <tromey@redhat.com>
3576
3577         * configure.ac (build_warnings): Add -Wold-style-definition.
3578         * configure: Rebuild.
3579         * machoread.c (_initialize_machoread): Use "(void)".
3580         * macrocmd.c (macro_inform_no_debuginfo): Fix formatting;
3581         use "(void)".
3582
3583 2013-07-01  Tom Tromey  <tromey@redhat.com>
3584
3585         * configure.ac (build_warnings): Add -Wold-style-declaration.
3586         * configure: Rebuild.
3587         * dsrec.c (make_srec): Use "static const", not "const static".
3588         * h8300-tdep.c (h8300_breakpoint_from_pc): Use "static const",
3589         not "const static".
3590         * mi/mi-parse.c (mi_no_values, mi_simple_values, mi_all_values):
3591         Use "static const", not "const static".
3592         * mn10300-tdep.c (mn10300_breakpoint_from_pc): Use "static const",
3593         not "const static".
3594         * moxie-tdep.c (moxie_breakpoint_from_pc): Use "static const",
3595         not "const static".
3596         * rs6000-tdep.c (rs6000_breakpoint_from_pc): Use "static const",
3597         not "const static".
3598         * v850-tdep.c (v850_breakpoint_from_pc): Use "static const",
3599         not "const static".
3600         (v850_dbtrap_breakpoint_from_pc): Likewise.
3601         * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Use "static const",
3602         not "const static".
3603
3604 2013-07-01  Tom Tromey  <tromey@redhat.com>
3605
3606         * configure.ac (build_warnings): Add -Wmissing-parameter-type.
3607         * configure: Rebuild.
3608
3609 2013-07-01  Pedro Alves  <palves@redhat.com>
3610
3611         * defs.h: Include "pathmax.h".
3612         * utils.c: Don't include sys/param.h.
3613         (gdb_realpath): Remove code that checks for MAXPATHLEN.
3614         * solib-ia64-hpux.c (ia64_hpux_handle_load_event): Use PATH_MAX
3615         instead of MAXPATHLEN.
3616         * solib-sunos.c: Don't include sys/param.h.
3617         * xcoffread.c: Don't include sys/param.h.
3618         * bsd-kvm.c: Don't include sys/param.h.
3619         * darwin-nat.c: Don't include sys/param.h.
3620         (darwin_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
3621         * darwin-nat-info.c: Don't include sys/param.h.
3622         * fbsd-nat.c (fbsd_pid_to_exec_file): Use PATH_MAX instead of
3623         MAXPATHLEN.
3624         * i386obsd-nat.c: Don't include sys/param.h.
3625         * inf-child.c: Don't include sys/param.h.
3626         (inf_child_fileio_readlink): Use PATH_MAX instead of MAXPATHLEN.
3627         * linux-fork.c: Don't include sys/param.h.
3628         (fork_save_infrun_state): Use PATH_MAX instead of MAXPATHLEN.
3629         * linux-nat.c: Don't include sys/param.h.
3630         (linux_child_pid_to_exec_file, linux_proc_pending_signals)
3631         (linux_proc_pending_signals): Use PATH_MAX instead of MAXPATHLEN.
3632         * m68klinux-nat.c: Don't include sys/param.h.
3633         * nbsd-nat.c: Don't include sys/param.h.
3634         (nbsd_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
3635         * ppc-linux-nat.c: Don't include sys/param.h.
3636         * rs6000-nat.c: Don't include sys/param.h.
3637         * spu-linux-nat.c. Don't include sys/param.h.
3638         * windows-nat.c: Don't include sys/param.h.
3639         * xtensa-linux-nat.c: Don't include sys/param.h.
3640         * config/i386/nm-fbsd.h: Don't include sys/param.h.
3641
3642 2013-07-01  Pedro Alves  <palves@redhat.com>
3643
3644         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add pathmax.
3645         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/pathmax.m4.
3646         * gnulib/aclocal.m4: Regenerate.
3647         * gnulib/config.in: Regenerate.
3648         * gnulib/configure: Regenerate.
3649         * gnulib/import/pathmax.h: New file.
3650         * gnulib/import/Makefile.am: Regenerate.
3651         * gnulib/import/Makefile.in: Regenerate.
3652         * gnulib/import/m4/gnulib-cache.m4: Regenerate.
3653         * gnulib/import/m4/gnulib-comp.m4: Regenerate.
3654         * gnulib/import/m4/pathmax.m4: New file.
3655
3656 2013-07-01  Pedro Alves  <palves@redhat.com>
3657
3658         * configure.ac (GDBINIT): Define, depending on host.
3659         * go32-nat.c (init_go32_ops): Don't override gdbinit here.
3660         * top.c (PATH_MAX): Delete fallback definition.
3661         (GDBINIT_FILENAME): Delete.
3662         (gdbinit): Reimplement as const char array set to the GDBINIT
3663         string constant.
3664         * top.h (gdbinit): Make const.
3665         * configure, config.in: Regenerate.
3666
3667 2013-07-01  Pedro Alves  <palves@redhat.com>
3668
3669         * cli/cli-cmds.c (source_script): Make 'file' parameter const.
3670         * cli/cli-cmds.h (source_script): Likewise.
3671         * exceptions.c (catch_command_errors_const): New function.
3672         * exceptions.h (catch_command_errors_const): Declare.
3673         * main.c (get_init_files): Make parameters const, and adjust.
3674         (captured_main): Make 'system_gdbinit', 'home_gdbinit' and
3675         'local_gdbinit' locals const.  Adjust to use
3676         catch_command_errors_const.
3677         (print_gdb_help): Make 'system_gdbinit', 'home_gdbinit' and
3678         'local_gdbinit' locals const.
3679
3680 2013-07-01  Pedro Alves  <palves@redhat.com>
3681
3682         * defs.h: Don't check HAVE_UNISTD_H before including <unistd.h>.
3683         (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO): Delete.
3684         * tracepoint.c: Don't check HAVE_UNISTD_H before including
3685         <unistd.h>.
3686
3687 2013-07-01  Pedro Alves  <palves@redhat.com>
3688
3689         Import the "unistd" gnulib module.
3690         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add "unistd".
3691         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/off_t.m4,
3692         import/m4/ssize_t.m4, import/m4/sys_types_h.m4 and
3693         import/m4/unistd_h.m4.
3694         * gnulib/aclocal.m4: Renenerate.
3695         * gnulib/config.in: Renenerate.
3696         * gnulib/configure: Renenerate.
3697         * gnulib/import/Makefile.am: Renenerate.
3698         * gnulib/import/Makefile.in: Renenerate.
3699         * gnulib/import/m4/gnulib-cache.m4: Renenerate.
3700         * gnulib/import/m4/gnulib-comp.m4: Renenerate.
3701         * gnulib/import/m4/off_t.m4: New file.
3702         * gnulib/import/m4/ssize_t.m4: New file.
3703         * gnulib/import/m4/sys_types_h.m4: New file.
3704         * gnulib/import/m4/unistd_h.m4: New file.
3705         * gnulib/import/sys_types.in.h: New file.
3706         * gnulib/import/unistd.c: New file.
3707         * gnulib/import/unistd.in.h: New file.
3708
3709 2013-07-01  Pedro Alves  <palves@redhat.com>
3710
3711         * utils.c <pathconf/_PC_PATH_MAX use>: Check if _PC_PATH_MAX is
3712         defined instead of checking HAVE_UNISTD_H.
3713
3714 2013-07-01  Pedro Alves  <palves@redhat.com>
3715
3716         Reimport gnulib from scratch.
3717         * gnulib/Makefile.in (aclocal_m4_deps): Remove reference to
3718         import/m4/onceonly.m4.
3719         * gnulib/aclocal.m4: Renegerate.
3720         * gnulib/config.in: Renegerate.
3721         * gnulib/configure: Renegerate.
3722         * gnulib/import/Makefile.in: Renegerate.
3723         * gnulib/import/extra/update-copyright: Renegerate.
3724         * gnulib/import/m4/onceonly.m4: Delete.
3725
3726 2013-07-01  Pedro Alves  <palves@redhat.com>
3727
3728         * tui/tui-regs.c (pagination_enabled): Delete declaration.
3729
3730 2013-06-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
3731
3732         Code cleanup.
3733         * remote.c (async_remote_interrupt_twice): Make it static.
3734         * remote.h (async_remote_interrupt_twice): Remove the declaration.
3735
3736 2013-06-29  Sergio Durigan Junior  <sergiodj@redhat.com>
3737
3738         * ia64-linux-tdep.c: Include <ctype.h>.
3739         (ia64_linux_stap_is_single_operand): New function.
3740         (ia64_linux_init_abi): Initialize SystemTap related attributes.
3741
3742 2013-06-28  Tom Tromey  <tromey@redhat.com>
3743
3744         * Makefile.in (version.c): Use version.in, not
3745         common/version.in.
3746         * common/create-version.sh: Likewise.
3747         * common/version.in: Move...
3748         * version.in: ...here.
3749
3750 2013-06-28  Pedro Alves  <palves@redhat.com>
3751
3752         * infrun.c (set_observer_mode): Don't declare pagination_enabled
3753         here.
3754         * utils.h (pagination_enabled): Declare.
3755
3756 2013-06-28  Pedro Alves  <palves@redhat.com>
3757
3758         * infrun.c (non_stop, non_stop_1, set_non_stop, show_non_stop):
3759         Move higher up in file.
3760
3761 2013-06-28  Tom Tromey  <tromey@redhat.com>
3762
3763         * tracepoint.c (deprecated_readline_begin_hook)
3764         (deprecated_readline_hook, deprecated_readline_end_hook): Don't
3765         declare.
3766
3767 2013-06-28  Pedro Alves  <palves@redhat.com>
3768
3769         PR tui/14880
3770         * tui/tui-regs.c (tui_get_register): Fetch value contents before
3771         checking if they're available.
3772         * value.c (value_available_contents_eq): Change comment.
3773         * value.h (value_available_contents_eq): Expand comment.
3774
3775 2013-06-27  Tom Tromey  <tromey@redhat.com>
3776
3777         * target.c (find_run_target): Remove.
3778         * target.h (find_run_target): Remove.
3779
3780 2013-06-27  Tom Tromey  <tromey@redhat.com>
3781
3782         * corelow.c (core_gdbarch): Now static.
3783
3784 2013-06-27  Tom Tromey  <tromey@redhat.com>
3785
3786         * target.c (target_struct_index): Remove.
3787
3788 2013-06-27  Pedro Alves  <palves@redhat.com>
3789
3790         * infrun.c: Remove comment describing the 'stepping over runtime
3791         loader dynamic symbol resolution code' mechanism; moved to
3792         gdbint.texinfo.
3793
3794 2013-06-27  Pedro Alves  <palves@redhat.com>
3795
3796         * exceptions.c (catch_command_errors): Remove spurious space.
3797         * exceptions.h (catch_command_errors): Second parameter is "arg",
3798         not "command".
3799
3800 2013-06-27  Yao Qi  <yao@codesourcery.com>
3801
3802         * common/create-version.sh: Update comments.  Handle the case
3803         that TARGET_ALIAS is empty.
3804
3805 2013-06-26  Pedro Alves  <palves@redhat.com>
3806
3807         * infrun.c (SOLIB_IN_DYNAMIC_LINKER): Delete macro and describing
3808         comment.
3809
3810 2013-06-26  Pedro Alves  <palves@redhat.com>
3811
3812         * infrun.c: Update comments on stepping over runtime loader
3813         dynamic symbol resolution code.
3814
3815 2013-06-26  Sergio Durigan Junior  <sergiodj@redhat.com>
3816
3817         * ax-gdb.h (union exp_element): Forward declare.
3818         * parser-defs.h: Include expression.h.
3819
3820 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
3821
3822         * mips-tdep.c (fetch_mips_16): Use unmake_compact_addr.
3823
3824 2013-06-26  Dmitry Kozlov <ddk@codesourcery.com>
3825
3826         * tracepoint.c (trace_save): Extend tsave to save starttime, stoptime.
3827
3828 2013-06-26  Dmitry Kozlov <ddk@codesourcery.com>
3829
3830         Fix trace-status to output proper start-time and stop-time.
3831         * tracepoint.c (trace_status_command): Fix type of printf arg to
3832         prevent improper type conversion.
3833         (trace_status_mi): Likewise.
3834
3835 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
3836
3837         * mips-tdep.c (mips_next_pc): Fix a typo.
3838
3839 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
3840
3841         * mips-tdep.c (micromips_scan_prologue): Fix a typo.
3842
3843 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
3844             Yao Qi  <yao@codesourcery.com>
3845
3846         * mi/mi-cmds.c (mi_cmds): Register -trace-frame-collected.
3847         * mi/mi-cmds.h (mi_cmd_trace_frame_collected): Declare.
3848         * mi/mi-main.c (print_variable_or_computed): New function.
3849         (mi_cmd_trace_frame_collected): New function.
3850         * tracepoint.c (find_trace_state_variable_by_number): New.
3851         (struct traceframe_info): Move to tracepoint.h
3852         (struct collection_list): Likewise.
3853         (do_collect_symbol): Include locals and arguments in the
3854         collected variables list.
3855         (clear_collection_list): Clear wholly collected variables list
3856         and computed variables list.
3857         (append_exp): New function.
3858         (encode_actions_1): Include variables in the wholly
3859         collected variables list.  Include memory ranges and
3860         full-fledged expressions in the computed expressions list.
3861         (encode_actions): Move some code to ...
3862         Return the cleanup chain.
3863         (encode_actions_rsp): ... here.  New function.
3864         (get_traceframe_location, get_traceframe_info): Remove static.
3865         * tracepoint.h (struct memrange): Moved from tracepoint.c.
3866         (struct collection_list): Moved from tracepoint.c.  Add two
3867         new fields 'wholly_collected' and 'computed'.
3868         (find_trace_state_variable_by_number): Declare.
3869         (encode_actions): Adjust declaration.
3870         (encode_actions_rsp): Declare.
3871         (get_traceframe_info, get_traceframe_location): Declare.
3872
3873         * NEWS: Mention new MI command -trace-frame-collected.
3874
3875 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
3876             Yao Qi  <yao@codesourcery.com>
3877
3878         * ctf.c (ctf_traceframe_info): Push trace state variables
3879         present in the trace data into the traceframe info object.
3880         * breakpoint.c (DEF_VEC_I): Remove.
3881         * common/filestuff.c (DEF_VEC_I): Likewise.
3882         * dwarf2loc.c (DEF_VEC_I): Likewise.
3883         * mi/mi-main.c (DEF_VEC_I): Likewise.
3884         * common/gdb_vecs.h (DEF_VEC_I): Define vector for int.
3885         * features/traceframe-info.dtd: Add tvar element and its
3886         attributes.
3887         * tracepoint.c (free_traceframe_info): Free vector 'tvars'.
3888         (build_traceframe_info): Push trace state variables present in
3889         the trace data into the traceframe info object.
3890         (traceframe_info_start_tvar): New function.
3891         (tvar_attributes): New.
3892         (traceframe_info_children): Add "tvar" element.
3893         * tracepoint.h (struct traceframe_info) <tvars>: New field.
3894
3895         * NEWS: Mention the change in GDB and GDBserver.
3896
3897 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
3898             Yao Qi  <yao@codesourcery.com>
3899
3900         * tracepoint.c (trace_dump_command): Move code to ...
3901         (get_traceframe_location): ... here.  New.
3902
3903 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
3904             Yao Qi  <yao@codesourcery.com>
3905
3906         * tracepoint.c (trace_dump_command): GDB emits an error
3907          instead of a warning when a traceframe is not selected.
3908
3909 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
3910             Yao Qi  <yao@codesourcery.com>
3911
3912         * tracepoint.c (tracepoint_list, stepping_list): Remove.
3913         (clear_collection_list): Free fields 'aexpre_list' and 'list'
3914         in collection_list.
3915         (do_clear_collection_list, init_collection_list): New.
3916         (encode_actions): Add local variables 'tracepoint_list' and
3917         'stepping_list'.  Call init_collection_list and make cleanup
3918         which calls do_clear_collection_list.  Don't call
3919         clear_collection_list.
3920         (_initialize_tracepoint): Delete references to
3921         'tracepoint_list' and 'stepping_list'.
3922
3923 2013-06-25  Tom Tromey  <tromey@redhat.com>
3924
3925         * common/create-version.sh (date): Use "$", not "$$" in sed
3926         expression.
3927
3928 2013-06-25  Kevin Buettner  <kevinb@redhat.com>
3929
3930         * NEWS (New targets): Add entry for TI MSP430.
3931
3932 2013-06-25  Yao Qi  <yao@codesourcery.com>
3933
3934         * remote.c (remote_start_remote): Move code to upload tsv
3935         earlier.
3936
3937 2013-06-25  Yao Qi  <yao@codesourcery.com>
3938             Hui Zhu  <hui@codesourcery.com>
3939             Pedro Alves  <palves@redhat.com>
3940
3941         PR breakpoints/15075
3942         PR breakpoints/15434
3943         * breakpoint.c (bpstat_stop_status): Call
3944         b->ops->after_condition_true.
3945         (update_dprintf_command_list): Don't append "continue" command
3946         to the command list of dprintf breakpoint.
3947         (base_breakpoint_after_condition_true): New function.
3948         (base_breakpoint_ops): Add base_breakpoint_after_condition_true.
3949         (dprintf_after_condition_true): New function.
3950         (initialize_breakpoint_ops): Set dprintf_after_condition_true.
3951         * breakpoint.h (breakpoint_ops): Add after_condition_true.
3952
3953 2013-06-24  Kevin Buettner  <kevinb@redhat.com>
3954
3955         * Makefile.in (ALL_TARGET_OBS): Add msp430-tdep.o.
3956         (ALLDEPFILES): Add msp430-tdep.c.
3957         * configure.tgt (msp430*-*-elf): New target.
3958         * msp430-tdep.c: New file.
3959
3960 2013-06-24  Maciej W. Rozycki  <macro@codesourcery.com>
3961
3962         * mips-tdep.c (mips_elf_make_msymbol_special): Handle MIPS16 and
3963         microMIPS synthetic symbols.
3964
3965 2013-06-24  Maciej W. Rozycki  <macro@codesourcery.com>
3966
3967         * objfiles.h (pc_in_section): New prototype.
3968         (in_plt_section): Remove name argument, replace prototype with
3969         static inline function.
3970         * mips-tdep.h: Include "objfiles.h".
3971         (in_mips_stubs_section): New function.
3972         * hppa-tdep.h (gdbarch_tdep): Remove name argument of
3973         in_solib_call_trampoline member.
3974         (hppa_in_solib_call_trampoline): Remove name argument.
3975         * objfiles.c (pc_in_section): New function.
3976         (in_plt_section): Remove function.
3977         * mips-linux-tdep.c: Include "objfiles.h".
3978         (mips_linux_in_dynsym_stub): Call in_mips_stubs_section.  Remove
3979         name argument.  Return 1 rather than the low 16-bit halfword of
3980         any instruction examined.
3981         (mips_linux_in_dynsym_resolve_code): Update
3982         mips_linux_in_dynsym_stub call accordingly.
3983         * mips-tdep.c (mips_stub_frame_sniffer): Use in_mips_stubs_section
3984         rather than an equivalent hand-coded sequence.
3985         * hppa-hpux-tdep.c (in_opd_section): Remove function.
3986         (hppa32_hpux_in_solib_call_trampoline): Remove name argument.
3987         (hppa64_hpux_in_solib_call_trampoline): Likewise.
3988         (hppa64_hpux_find_global_pointer): Use pc_in_section rather than
3989         in_opd_section.
3990         * hppa-tdep.c (hppa_stub_unwind_sniffer): Remove name argument
3991         on call to tdep->in_solib_call_trampoline.
3992         (hppa_in_solib_call_trampoline): Remove name argument, update
3993         according to in_plt_section change.
3994         (hppa_skip_trampoline_code): Update according to in_plt_section
3995         change.
3996         * aarch64-tdep.c (aarch64_stub_unwind_sniffer): Likewise.
3997         * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code):
3998         Likewise.
3999         * arm-tdep.c (arm_stub_unwind_sniffer): Likewise.
4000         * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
4001         * hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
4002         * nios2-tdep.c (nios2_stub_frame_sniffer): Likewise.
4003         * nto-tdep.c (nto_relocate_section_addresses): Likewise.
4004         * s390-tdep.c (s390_stub_frame_sniffer): Likewise.
4005         * sh-tdep.c (sh_stub_unwind_sniffer): Likewise.
4006         * solib-dsbt.c (dsbt_in_dynsym_resolve_code): Likewise.
4007         * solib-frv.c (frv_in_dynsym_resolve_code): Likewise.
4008         * solib-svr4.c (svr4_in_dynsym_resolve_code): Likewise.
4009         * solib-target.c (solib_target_in_dynsym_resolve_code): Likewise.
4010         * sparc-tdep.c (sparc_analyze_prologue): Likewise.
4011         * tic6x-tdep.c (tic6x_stub_unwind_sniffer): Likewise.
4012
4013 2013-06-24  Joel Brobecker  <brobecker@adacore.com>
4014
4015         * common/create-version.sh: Fix expansion of $host_alias
4016         and $target_alias in generation of HOST_NAME and TARGET_NAME
4017         (resp.).
4018
4019 2013-06-24  Tom Tromey  <tromey@redhat.com>
4020
4021         * common/create-version.sh: New file.
4022         * Makefile.in (version.c): Use bfd/version.h, common/version.in,
4023         create-version.sh.
4024         (HFILES_NO_SRCDIR): Use common/version.h.
4025         * version.in: Move to ...
4026         * common/version.in: ... here.  Replace date with "DATE".
4027         * version.h: Move to ...
4028         * common/version.h: ... here.
4029
4030 2013-06-21  Joel Brobecker  <brobecker@adacore.com>
4031
4032         * gdb/gnulib/Makefile.in: Update date in copyright header.
4033         * gdb/gnulib/configure.ac: Ditto.
4034         * gdb/gnulib/update-gnulib.sh: Ditto.
4035
4036 2013-06-21  Joel Brobecker  <brobecker@adacore.com>
4037
4038         * copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by
4039         "gdb/gnulib/import".
4040
4041 2013-06-21  Will Newton  <will.newton@linaro.org>
4042
4043         * doublest.c (ldfrexp): Remove function.
4044         (convert_doublest_to_floatformat): Call frexpl instead of
4045         ldfrexp.
4046
4047 2013-06-21  Will Newton  <will.newton@linaro.org>
4048
4049         * gnulib/update-gnulib.sh(IMPORTED_GNULIB_MODULES): Add frexpl.
4050         * gnulib/aclocal.m4: Regenerate.
4051         * gnulib/config.in: Regenerate.
4052         * gnulib/configure: Regenerate.
4053         * gnulib/import/Makefile.am: Update.
4054         * gnulib/import/Makefile.in: Update.
4055         * gnulib/import/m4/gnulib-cache.m4: Update.
4056         * gnulib/import/m4/gnulib-comp.m4: Update.
4057         * gnulib/import/float+.h: Import.
4058         * gnulib/import/float.c: Import.
4059         * gnulib/import/float.in.h: Import.
4060         * gnulib/import/fpucw.h: Import.
4061         * gnulib/import/frexp.c: Import.
4062         * gnulib/import/frexpl.c: Import.
4063         * gnulib/import/isnan.c: Import.
4064         * gnulib/import/isnand-nolibm.h: Import.
4065         * gnulib/import/isnand.c: Import.
4066         * gnulib/import/isnanl-nolibm.h: Import.
4067         * gnulib/import/isnanl.c: Import.
4068         * gnulib/import/itold.c: Import.
4069         * gnulib/import/m4/exponentd.m4: Import.
4070         * gnulib/import/m4/exponentl.m4: Import.
4071         * gnulib/import/m4/float_h.m4: Import.
4072         * gnulib/import/m4/fpieee.m4: Import.
4073         * gnulib/import/m4/frexp.m4: Import.
4074         * gnulib/import/m4/frexpl.m4: Import.
4075         * gnulib/import/m4/isnand.m4: Import.
4076         * gnulib/import/m4/isnanl.m4: Import.
4077         * gnulib/import/m4/math_h.m4: Import.
4078         * gnulib/import/math.c: Import.
4079         * gnulib/import/math.in.h: Import.
4080
4081 2013-06-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
4082
4083         * common/linux-btrace.c (cpu_supports_btrace): Remove variable vendor,
4084         replace strcmp with signature_INTEL_ebx, signature_INTEL_ecx and
4085         signature_INTEL_edx comparisons.
4086
4087 2013-06-20  Doug Evans  <dje@google.com>
4088
4089         symtab/15652
4090         * dwarf2read.c (try_open_dwop_file): New arg search_cwd.
4091         All callers updated.
4092         (open_dwp_file): If we can't find the dwp file, search the basename
4093         in debug-file-directory.
4094
4095         * dwarf2read.c (struct dwp_file): Fix comment.
4096         (open_and_init_dwp_file): Set dwp_file->name to bfd's file name.
4097
4098         * source.c (openp): Document OPF_TRY_CWD_FIRST+OPF_SEARCH_IN_PATH
4099         better.
4100
4101 2013-06-20  Yao Qi  <yao@codesourcery.com>
4102
4103         * breakpoint.c (create_breakpoint): Fix code indentation.
4104
4105 2013-06-20  Yao Qi  <yao@codesourcery.com>
4106
4107         * breakpoint.c (create_breakpoints_sal_default): Remove
4108         parameter 'lsal'.  Update declaration.
4109         (bkpt_create_breakpoints_sal): Caller update.
4110         (tracepoint_create_breakpoints_sal): Likewise.
4111
4112 2013-06-20  Pedro Alves  <pedro@codesourcery.com>
4113             Yao Qi  <yao@codesourcery.com>
4114
4115         * NEWS: Mention the new option '--skip-unavailable' of command
4116         -data-list-register-values.
4117         * mi/mi-main.c (mi_cmd_data_list_register_values): Accept the
4118         --skip-unavailable option.  Adjust to use output_register.
4119         (output_register): Add new 'skip_unavailable' parameter.
4120         Handle it.
4121
4122 2013-06-19  Mike Frysinger  <vapier@gentoo.org>
4123
4124         * Makefile.in (HFILES_NO_SRCDIR): Add common/i386-cpuid.h and
4125         common/i386-gcc-cpuid.h.
4126         * common/i386-cpuid.h: New wrapper header around i386-gcc-cpuid.h.
4127         * common/i386-gcc-cpuid.h: Rename from testsuite/gdb.arch/i386-cpuid.h.
4128         Copy the latest version from upstream gcc.
4129         * common/linux-btrace.c: Include i386-cpuid.h.
4130         (intel_supports_btrace): Delete x86 ifdefs and replace inline asm with
4131         call to i386_cpuid.
4132         (cpu_supports_btrace): Likewise.
4133         * go32-nat.c: Include i386-cpuid.h.
4134         (go32_sysinfo): Add (disabled) calls to i386_cpuid with comments.
4135
4136 2013-06-19  Doug Evans  <dje@google.com>
4137
4138         * symfile.c (symfile_bfd_open): Delete unnecessary declaration.
4139         (get_section_index): Ditto.
4140
4141 2013-06-19  Tom Tromey  <tromey@redhat.com>
4142
4143         * breakpoint.c (_initialize_breakpoint): Remove trailing \n from
4144         "dprintf" help.
4145
4146 2013-06-18  Doug Evans  <dje@google.com>
4147
4148         * dwarf2read.c (dw2_symtab_iter_next): Check value of cu_index
4149         before using it.
4150         (dw2_expand_symtabs_matching): Fix symbol kind validity check.
4151         Move test of cu_index closer to use.  Print complaint if cu_index
4152         is bad.
4153
4154 2013-06-18  Joel Brobecker  <brobecker@adacore.com>
4155
4156         * machoread.c (oso_vector): Delete this global.
4157         (macho_register_oso): Add new parameter "oso_vector_ptr".
4158         Use it instead of the "oso_vector" global.
4159         (macho_symtab_read, macho_symfile_read_all_oso): Likewise.
4160         (macho_symfile_read): Use a local oso_vector, to be free'ed
4161         at the end of this function, in place of the old "oso_vector"
4162         global.  Update various function calls accordingly.  Use one
4163         single cleanup chain for the entire function.
4164
4165 2013-06-18  Joel Brobecker  <brobecker@adacore.com>
4166
4167         * dwarf2read.c (dwarf2_per_objfile_free): Replace uses of
4168         DWARF2_PER_OBJFILE by uses of DATA instead.
4169
4170 2013-06-18  Tom Tromey  <tromey@redhat.com>
4171
4172         * break-catch-sig.c (signal_catchpoint_explains_signal): Add 'sig'
4173         argument.
4174         * breakpoint.c (bpstat_explains_signal): Add 'sig' argument.
4175         Special case signals other than GDB_SIGNAL_TRAP.
4176         (explains_signal_watchpoint): New function.
4177         (base_breakpoint_explains_signal): Add 'sig' argument.
4178         (initialize_breakpoint_ops): Set 'explains_signal' method for
4179         watchpoints.
4180         * breakpoint.h (struct breakpoint_ops) <explains_signal>: Add
4181         signal argument.
4182         (bpstat_explains_signal): Likewise.
4183         * infrun.c (handle_syscall_event, handle_inferior_event): Update.
4184
4185 2013-06-18  Tom Tromey  <tromey@redhat.com>
4186
4187         * python/py-inferior.c (gdbpy_selected_inferior): Don't incref.
4188
4189 2013-06-18  Tom Tromey  <tromey@redhat.com>
4190
4191         * python/python.c (finish_python_initialization): Decref
4192         'pythondir' on failure path as well.
4193
4194 2013-06-18  Tom Tromey  <tromey@redhat.com>
4195
4196         PR symtab/15391:
4197         * dwarf2loc.c (read_pieced_value): Truncate this_size_bits
4198         after taking bits_to_skip into account.  Sign extend byte_offset.
4199         * utils.h (gdb_sign_extend): Declare.
4200         * utils.c (gdb_sign_extend): New function.
4201
4202 2013-06-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
4203
4204         * dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.
4205
4206 2013-06-17  Pierre Muller  <muller@sourceware.org>
4207
4208         * corelow.c (core_open): Print GDB signal name instead of target
4209         signal number.
4210
4211 2013-06-17  Mike Frysinger  <vapier@gentoo.org>
4212
4213         * .gitignore: Add /gcore.
4214
4215 2013-06-13  Doug Evans  <dje@google.com>
4216
4217         * dwarf2read.c (try_open_dwop_file): Work around behaviour of
4218         OPF_TRY_CWD_FIRST to not search path if the file contains a '/'.
4219
4220 2013-06-12  Phil Muldoon  <pmuldoon@redhat.com>
4221
4222         * stack.c (backtrace_command_1): Fix indentation.
4223
4224 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
4225
4226         * window-nat.c (thread_rec): Add missing empty line after
4227         local variable declaration.
4228
4229 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
4230
4231         * windows-nat.c (thread_rec): Revert format used to print
4232         error code returned by SuspendThread from %d back to %u.
4233
4234 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
4235
4236         * windows-nat.c (windows_continue): Add "0x" prefix for thread
4237         ID in debug trace.
4238         (get_windows_debug_event): Likewise, for all debug traces.
4239
4240 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
4241
4242         * window-nat.c (thread_rec): Add thread ID in SuspendThread
4243         warning message.
4244
4245 2013-06-08  Pedro Alves  <pedro@codesourcery.com>
4246             Yao Qi  <yao@codesourcery.com>
4247
4248         * mi/mi-main.c (get_register): Remove declaration.
4249         (output_register): Declare.
4250         (mi_cmd_data_list_register_values): Remove local variable
4251         'tuple_cleanup'.  Move some code into output_register.
4252         (get_register): Renamed to ...
4253         (output_register): ... this.  Output the register's
4254         "number" ui_out tuple here.
4255
4256 2013-06-07  Pedro Alves  <palves@redhat.com>
4257
4258         * darwin-nat.c: Fix formating in copyright header.
4259         * darwin-nat.h: Likewise.
4260         * gnu-nat.c: Likewise.
4261         * machoread.c: Likewise.
4262
4263 2013-06-07  Pedro Alves  <palves@redhat.com>
4264
4265         PR server/14823
4266         * regformats/regdat.sh: Output #include tdesc.h.  Make globals
4267         static.  Output a global target description pointer.
4268         (init_registers_${name}): Adjust to initialize a
4269         target description structure.
4270
4271 2013-06-07  Will Newton  <will.newton@linaro.org>
4272
4273         * printcmd.c (build_address_symbolic): Call
4274         gdbarch_addr_bits_remove for text minimal symbols.
4275
4276 2013-06-07  Will Newton  <will.newton@linaro.org>
4277
4278         * MAINTAINERS: Add myself to Write After Approval.
4279
4280 2013-06-07  Yao Qi  <yao@codesourcery.com>
4281
4282         * tracepoint.c (start_tracing): Move code to ...
4283         (trace_reset_local_state): ... here.  New.
4284         (disconnect_tracing): Don't call set_current_traceframe,
4285         set_tracepoint_num, and set_traceframe_context. Call
4286         trace_reset_local_state instead.
4287         (tfile_close): Call trace_reset_local_state.
4288         * ctf.c (ctf_close): Likewise.
4289         * remote.c (remote_close): Likewise.
4290         * tracepoint.h (trace_reset_local_state): Declare.
4291
4292 2013-06-06  Doug Evans  <dje@google.com>
4293
4294         * dwarf2read.c: Whitespace fixes for DWP file format documentation,
4295         and fix header docs.
4296
4297 2013-06-05  Doug Evans  <dje@google.com>
4298             Keith Seitz  <keiths@redhat.com>
4299
4300         PR 15519
4301         * cp-namespace.c (find_symbol_in_baseclass): Call
4302         cp_lookup_symbol_in_namespace instead of cp_lookup_symbol_namespace.
4303         Check result of call to lookup_symbol_static.
4304         Call lookup_static_symbol_aux unconditionally.
4305         Call check_typedef on base types before accessing them.
4306         (cp_lookup_nested_symbol): Fix comment.
4307
4308 2013-06-05  Luis Machado  <lgustavo@codesourcery.com>
4309
4310         * gnu-v3-abi.c (gnuv3_skip_trampoline): Handle thunk
4311         minimal symbols pointing to function descriptors.
4312
4313 2013-06-05  Tom Tromey  <tromey@redhat.com>
4314
4315         * python/py-utils.c (gdb_pymodule_addobject): Cast away const.
4316
4317 2013-06-04  Sergio Durigan Junior  <sergiodj@redhat.com>
4318             Pedro Alves  <palves@redhat.com>
4319
4320         * remote.c (remote_wait_as): Restore signal handler before returning
4321         when GDB gets a notification.
4322
4323 2013-06-04  Gary Benson  <gbenson@redhat.com>
4324
4325         PR 2328
4326         * breakpoint.h (handle_solib_event): Moved function declaration
4327         to solib.h.
4328         * breakpoint.c (handle_solib_event): Moved function to solib.c.
4329         (bpstat_stop_status): Pass new argument to handle_solib_event.
4330         * solib.h (update_solib_breakpoints): New function declaration.
4331         (handle_solib_event): Moved function declaration from
4332         breakpoint.h.
4333         * solib.c (update_solib_breakpoints): New function.
4334         (handle_solib_event): Moved function from breakpoint.c.
4335         Updated to call solib_ops->handle_event if not NULL.
4336         * solist.h (target_so_ops): New fields "update_breakpoints" and
4337         "handle_event".
4338         * infrun.c (set_stop_on_solib_events): New function.
4339         (_initialize_infrun): Use the above for "set
4340         stop-on-solib-events".
4341         (handle_inferior_event): Pass new argument to handle_solib_event.
4342         * solib-svr4.c (probe.h): New include.
4343         (svr4_free_library_list): New forward declaration.
4344         (probe_action): New enum.
4345         (probe_info): New struct.
4346         (probe_info): New static variable.
4347         (NUM_PROBES): New definition.
4348         (svr4_info): New fields "using_xfer", "probes_table" and
4349         "solib_list".
4350         (free_probes_table): New function.
4351         (free_solib_list): New function.
4352         (svr4_pspace_data_cleanup): Free probes table and solib list.
4353         (svr4_copy_library_list): New function.
4354         (svr4_current_sos_via_xfer_libraries): New parameter "annex".
4355         (svr4_read_so_list): New parameter "prev_lm".
4356         (svr4_current_sos_direct): Renamed from "svr4_current_sos".
4357         (svr4_current_sos): New function.
4358         (probe_and_action): New struct.
4359         (hash_probe_and_action): New function.
4360         (equal_probe_and_action): Likewise.
4361         (register_solib_event_probe): Likewise.
4362         (solib_event_probe_at): Likewise.
4363         (solib_event_probe_action): Likewise.
4364         (solist_update_full): Likewise.
4365         (solist_update_incremental): Likewise.
4366         (disable_probes_interface_cleanup): Likewise.
4367         (svr4_handle_solib_event): Likewise.
4368         (svr4_update_solib_event_breakpoint): Likewise.
4369         (svr4_update_solib_event_breakpoints): Likewise.
4370         (svr4_create_solib_event_breakpoints): Likewise.
4371         (enable_break): Free probes table before creating breakpoints.
4372         Use svr4_create_solib_event_breakpoints to create breakpoints.
4373         (svr4_solib_create_inferior_hook): Free the solib list.
4374         (_initialize_svr4_solib): Initialise
4375         svr4_so_ops.handle_solib_event and svr4_so_ops.update_breakpoints.
4376
4377 2013-06-04  Gary Benson  <gbenson@redhat.com>
4378
4379         * target.h (target_ops): New field
4380         "to_augmented_libraries_svr4_read".
4381         (target_augmented_libraries_svr4_read): New macro.
4382         * target.c (update_current_target): Handle
4383         to_augmented_libraries_svr4_read.
4384         * remote.c (remote_state): New field
4385         "augmented_libraries_svr4_read".
4386         (remote_augmented_libraries_svr4_read_feature): New function.
4387         (remote_protocol_features): Add entry for
4388         "augmented-libraries-svr4-read".
4389         (remote_augmented_libraries_svr4_read): New function.
4390         (init_remote_ops): Initialize
4391         remote_ops.to_augmented_libraries_svr4_read.
4392
4393 2013-06-04  Gary Benson  <gbenson@redhat.com>
4394
4395         * NEWS: Update.
4396
4397 2013-06-04  Gary Benson  <gbenson@redhat.com>
4398
4399         * objfiles.h (inhibit_section_map_updates): New function
4400         declaration.
4401         (resume_section_map_updates): Likewise.
4402         (resume_section_map_updates_cleanup): Likewise.
4403         * objfiles.c (objfile_pspace_info): Removed field
4404         "objfiles_changed_p".  New fields "new_objfiles_available",
4405         "section_map_dirty" and "inhibit_updates".
4406         (allocate_objfile): Set new_objfiles_available.
4407         (free_objfile): Set section_map_dirty.
4408         (objfile_relocate1): Likewise.
4409         (in_plt_section): Likewise.
4410         (find_pc_section): Update the conditions under which the
4411         section map will be updated.
4412         (inhibit_section_map_updates): New function.
4413         (resume_section_map_updates): Likewise.
4414         (resume_section_map_updates_cleanup): Likewise.
4415
4416 2013-06-04  Gary Benson  <gbenson@redhat.com>
4417
4418         * probe.h (get_probe_argument_count): New declaration.
4419         (evaluate_probe_argument): Likewise.
4420         * probe.c (get_probe_argument_count): New function.
4421         (evaluate_probe_argument): Likewise.
4422         (probe_safe_evaluate_at_pc): Use the above new functions.
4423
4424 2013-06-04  Alan Modra  <amodra@gmail.com>
4425
4426         * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
4427         * rs6000-tdep.c (read_insn): Add frame param, don't assume big-endian.
4428         (ppc_insns_match_pattern): Add frame param.  Avoid multiple
4429         target mem reads on optional insns.
4430         * ppc-linux-tdep.c (ppc_skip_trampoline_code): Update
4431         ppc_insns_match_pattern calls.
4432         * ppc64-tdep.c (ppc64_standard_linkage2, ppc64_standard_linkage3):
4433         Add match for power7 thread safety insns, and new order of
4434         std 2,40(1) insn.  Correct code shown for _dl_runtime_resolve
4435         invocation in comment, and update rest of comment.
4436         (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN,
4437         PPC64_STANDARD_LINKAGE3_LEN): Delete.
4438         (ppc64_standard_linkage2_target): Update insn offsets.
4439         (ppc64_skip_trampoline_code): Use a single insn buffer.  Match newer
4440         stubs first.  Update calls.
4441
4442 2013-06-04  Yao Qi  <yao@codesourcery.com>
4443
4444         * solib.c (solib_find): Don't need dir separator if path has
4445         drive spec.
4446
4447 2013-06-03  Joel Brobecker  <brobecker@adacore.com>
4448
4449         Revert (indirectly causes a SIGSEGV):
4450         * machoread.c (macho_symfile_read): Assign first cleanup to
4451         'back_to'.
4452
4453 2013-06-03  Yao Qi  <yao@codesourcery.com>
4454
4455         * mi/mi-cmd-var.c (mi_no_values, mi_simple_values): Move to
4456         mi-parse.c.  Make them static.
4457         (mi_all_values): Likewise.
4458         (mi_parse_values_option): Move to mi-parse.c.  Rename it to
4459         mi_parse_print_values.  Make it external.
4460         * mi/mi-cmds.h (mi_no_values, mi_simple_values, mi_all_values):
4461         Remove the declarations.
4462         * mi/mi-parse.c (mi_parse_print_values): Moved from mi-cmd-var.c.
4463         * mi/mi-parse.h (mi_parse_print_values): Declare.
4464         * mi/mi-cmd-stack.c: Include mi-parse.h.
4465         (parse_print_values): Remove
4466         (mi_cmd_stack_list_locals): Call mi_parse_print_values instead
4467         of parse_print_values.
4468         (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Likewise.
4469
4470 2013-05-31  Pedro Alves  <pedro@codesourcery.com>
4471             Yao Qi  <yao@codesourcery.com>
4472
4473         * tracepoint.c (all_tracepoint_actions_and_cleanup): Declare.
4474         (encode_actions): Move code to ...
4475         (all_tracepoint_actions_and_cleanup): ... here.  New.
4476         (trace_dump_command): Likewise.
4477
4478 2013-05-30  Tom Tromey  <tromey@redhat.com>
4479
4480         * symmisc.c (maintenance_expand_symtabs): Call do_cleanups.
4481
4482 2013-05-30  Tom Tromey  <tromey@redhat.com>
4483
4484         * xml-support.c (gdb_xml_create_parser_and_cleanup): Rename from
4485         gdb_xml_create_parser_and_cleanup_1.  Return a cleanup.  Remove
4486         'old_chain' argument.  Add 'parser_result' argument.
4487         (gdb_xml_create_parser_and_cleanup): Remove old version.
4488         (gdb_xml_parse_quick): Update.
4489         (xml_process_xincludes): Update.
4490         * xml-support.h (gdb_xml_create_parser_and_cleanup): Don't
4491         declare.
4492
4493 2013-05-30  Tom Tromey  <tromey@redhat.com>
4494
4495         * probe.c (collect_probes): Check arguments for NULL before
4496         calling compile_rx_or_error.
4497         * utils.c (compile_rx_or_error): Require 'rx' to be non-NULL.
4498         Remove NULL return.
4499
4500 2013-05-30  Tom Tromey  <tromey@redhat.com>
4501
4502         * infrun.c (adjust_pc_after_break): Introduce an outer null
4503         cleanup.
4504
4505 2013-05-30  Tom Tromey  <tromey@redhat.com>
4506
4507         * mi/mi-cmd-var.c (varobj_update_one): Add an outer null cleanup.
4508
4509 2013-05-30  Tom Tromey  <tromey@redhat.com>
4510
4511         * cli/cli-script.c (read_command_lines_1): Use a null cleanup
4512         for 'old_chain'.  Do not check 'head' before processing
4513         cleanups.
4514
4515 2013-05-30  Tom Tromey  <tromey@redhat.com>
4516
4517         * mi/mi-cmd-stack.c (list_arg_or_local): Remove
4518         "cleanup_tuple".
4519
4520 2013-05-30  Tom Tromey  <tromey@redhat.com>
4521
4522         * dbxread.c (dbx_read_symtab): Declare 'back_to' in a more
4523         inner scope.  Unconditionally call do_cleanups.
4524
4525 2013-05-30  Tom Tromey  <tromey@redhat.com>
4526
4527         * source.c (find_and_open_source): Call do_cleanups.
4528
4529 2013-05-30  Tom Tromey  <tromey@redhat.com>
4530
4531         * linux-thread-db.c (thread_db_load_search): Unconditionally
4532         call do_cleanups.
4533
4534 2013-05-30  Tom Tromey  <tromey@redhat.com>
4535
4536         * solib-aix.c (solib_aix_bfd_open): Don't use a null cleanup
4537         for 'cleanup'; instead use a later one.
4538
4539 2013-05-30  Tom Tromey  <tromey@redhat.com>
4540
4541         * python/py-breakpoint.c (bppy_get_commands): Use
4542         explicit, unconditional return.
4543         * python/py-frame.c (frapy_read_var): Likewise.
4544         * python/python.c (gdbpy_decode_line): Likewise.
4545
4546 2013-05-30  Tom Tromey  <tromey@redhat.com>
4547
4548         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
4549         do_cleanups on all return paths.
4550
4551 2013-05-30  Tom Tromey  <tromey@redhat.com>
4552
4553         * top.c (execute_command): Discard 'cleanup_if_error' cleanups.
4554
4555 2013-05-30  Tom Tromey  <tromey@redhat.com>
4556
4557         * stabsread.c (read_struct_type): Call do_cleanups along
4558         all return paths.
4559
4560 2013-05-30  Maciej W. Rozycki  <macro@codesourcery.com>
4561
4562         * mips-linux-tdep.c: Adjust formatting throughout.
4563
4564 2013-05-30  Tom Tromey  <tromey@redhat.com>
4565
4566         * mipsread.c (read_alphacoff_dynamic_symtab): Call do_cleanups
4567         along all return paths.
4568
4569 2013-05-30  Tom Tromey  <tromey@redhat.com>
4570
4571         * symfile.c (find_separate_debug_file): Call do_cleanups
4572         along all return paths.
4573
4574 2013-05-30  Tom Tromey  <tromey@redhat.com>
4575
4576         * symtab.c (search_symbols): Introduce a null cleanup for
4577         'retval_chain'.
4578
4579 2013-05-30  Tom Tromey  <tromey@redhat.com>
4580
4581         * python/py-value.c (valpy_binop): Call do_cleanups before
4582         exiting loop.
4583
4584 2013-05-30  Tom Tromey  <tromey@redhat.com>
4585
4586         * python/py-prettyprint.c (print_children): Remove extra
4587         do_cleanups call.
4588
4589 2013-05-30  Tom Tromey  <tromey@redhat.com>
4590
4591         * python/py-frame.c (frapy_read_var): Call do_cleanups along
4592         all return paths.
4593
4594 2013-05-30  Tom Tromey  <tromey@redhat.com>
4595
4596         * python/py-breakpoint.c (bppy_get_commands): Call do_cleanups
4597         along all return paths.
4598
4599 2013-05-30  Tom Tromey  <tromey@redhat.com>
4600
4601         * cli/cli-logging.c (set_logging_redirect): Unconditionally
4602         call do_cleanups.
4603
4604 2013-05-30  Tom Tromey  <tromey@redhat.com>
4605
4606         * varobj.c (c_value_of_root): Call do_cleanups along all
4607         return paths.
4608
4609 2013-05-30  Tom Tromey  <tromey@redhat.com>
4610
4611         * tracepoint.c (trace_dump_command): Unconditionally call
4612         do_cleanups.
4613
4614 2013-05-30  Tom Tromey  <tromey@redhat.com>
4615
4616         * breakpoint.c (output_thread_groups, parse_cmd_to_aexpr): Call
4617         do_cleanups earlier.
4618
4619 2013-05-30  Tom Tromey  <tromey@redhat.com>
4620
4621         * machoread.c (macho_symfile_read): Assign first cleanup to
4622         'back_to'.
4623
4624 2013-05-30  Tom Tromey  <tromey@redhat.com>
4625
4626         * m32r-rom.c (m32r_load): Call do_cleanups at all returns.
4627
4628 2013-05-30  Tom Tromey  <tromey@redhat.com>
4629
4630         * mi/mi-main.c (list_available_thread_groups): Call do_cleanups.
4631
4632 2013-05-30  Tom Tromey  <tromey@redhat.com>
4633
4634         * inf-ptrace.c (inf_ptrace_create_inferior): Unconditionally
4635         call discard_cleanups.
4636         (inf_ptrace_attach): Likewise.
4637
4638 2013-05-30  Tom Tromey  <tromey@redhat.com>
4639
4640         * remote-mips.c (mips_exit_debug): Call do_cleanups on all
4641         return paths.
4642         (mips_initialize): Likewise.
4643         (common_open): Call do_cleanups.
4644
4645 2013-05-30  Tom Tromey  <tromey@redhat.com>
4646
4647         * utils.c (internal_vproblem): Call do_cleanups.
4648
4649 2013-05-30  Tom Tromey  <tromey@redhat.com>
4650
4651         * linespec.c (find_linespec_symbols): Don't reassign to 'cleanup'.
4652
4653 2013-05-30  Tom Tromey  <tromey@redhat.com>
4654
4655         * cli/cli-script.c (setup_user_args): Don't return after error.
4656
4657 2013-05-30  Tom Tromey  <tromey@redhat.com>
4658
4659         * somread.c (som_symtab_read): Call do_cleanups.
4660
4661 2013-05-30  Tom Tromey  <tromey@redhat.com>
4662
4663         * printcmd.c (print_command_1): Unconditionally call do_cleanups.
4664
4665 2013-05-30  Tom Tromey  <tromey@redhat.com>
4666
4667         * cli/cli-cmds.c (cd_command, alias_command): Call do_cleanups.
4668         * cli/cli-dump.c (restore_binary_file): Call do_cleanups.
4669         * interps.c (interpreter_exec_cmd): Call do_cleanups.
4670         * source.c (show_substitute_path_command): Call do_cleanups.
4671         (unset_substitute_path_command, set_substitute_path_command):
4672         Likewise.
4673         * symfile.c (load_command): Call do_cleanups.
4674
4675 2013-05-30  Tom Tromey  <tromey@redhat.com>
4676
4677         * contrib/cleanup_check.py: New file.
4678         * contrib/gcc-with-excheck: Add option parsing.
4679
4680 2013-05-30  Joel Brobecker  <brobecker@adacore.com>
4681
4682         * windows-nat.c (windows_delete_thread): Add missing space
4683         in cast expression.
4684
4685 2013-05-30  Hafiz Abid Qadeer  <abidh@codesourcery.com>
4686
4687         * inferior.c (top level): Include tilde.h.
4688         (add_inferior_command): Call tilde_expand on the value of 'exec'
4689         argument.
4690
4691 2013-05-30  Pedro Alves  <pedro@codesourcery.com>
4692             Yao Qi  <yao@codesourcery.com>
4693
4694         * tracepoint.c (encode_actions_1): Remove parameter 't'.
4695         Caller update.
4696         (encode_actions): Likewise.
4697         * remote.c (remote_download_tracepoint): Caller update.
4698         * tracepoint.h (encode_actions): Update declaration.
4699
4700 2013-05-30  Pedro Alves  <palves@redhat.com>
4701
4702         * python/python-internal.h (gdb_Py_DECREF): Cast OP to PyObject
4703         pointer.
4704
4705 2013-05-30  Yao Qi  <yao@codesourcery.com>
4706
4707         * remote.c (remote_check_symbols): Remove unused parameter
4708         'objfile'.
4709         Declaration update.
4710         (remote_start_remote, remote_new_objfile): Caller update.
4711
4712 2013-05-30  Yao Qi  <yao@codesourcery.com>
4713
4714         * mi/mi-cmds.c (mi_cmds): Define MI command
4715         '-exec-arguments' by macro DEF_MI_CMD_CLI_1 instead of
4716         DEF_MI_CMD_CLI.
4717
4718 2013-05-29  Pedro Alves  <palves@redhat.com>
4719
4720         * remote.c (remote_insert_breakpoint, remote_remove_breakpoint)
4721         (remote_insert_watchpoint, remote_remove_watchpoint)
4722         (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
4723         (remote_verify_memory, compare_sections_command)
4724         (remote_search_memory): Set the general process/thread on the
4725         remote side.
4726
4727 2013-05-29  Pedro Alves  <palves@redhat.com>
4728
4729         * aarch64-tdep.c: Don't include "features/aarch64-without-fpu.c".
4730         (_initialize_aarch64_tdep): Don't call
4731         initialize_tdesc_aarch64_without_fpu.
4732         * features/Makefile (WHICH): Remove reference to
4733         aarch64-without-fpu.
4734         * features/aarch64-without-fpu.c: Delete file.
4735         * regformats/aarch64-without-fpu.dat: Delete file.
4736
4737 2013-05-28  Yao Qi  <yao@codesourcery.com>
4738
4739         * tracepoint.c (stringify_collection_list): Remove parameter
4740         'string'.
4741         (encode_actions): Caller update.  Remove local variables.
4742
4743 2013-05-24  Yao Qi  <yao@codesourcery.com>
4744
4745         * tracepoint.c (TFILE_PID): Remove.
4746         (tfile_open): Don't add thread and inferior.
4747         (tfile_close): Don't set 'inferior_ptid'.  Don't call
4748         exit_inferior_silent.
4749         (tfile_thread_alive): Remove.
4750         (init_tfile_ops): Don't set field 'to_thread_alive' of
4751         tfile_ops.
4752
4753 2013-05-23  Doug Evans  <dje@google.com>
4754
4755         * contrib/cc-with-tweaks.sh (-p): Handle no dwo files.
4756
4757 2013-05-23  Pedro Alves  <palves@redhat.com>
4758
4759         * common/filestuff.c [USE_WIN32API]: Define HAVE_SOCKETS.
4760         [HAVE_SYS_SOCKET_H]: Define HAVE_SOCKETS.
4761         (socket_mark_cloexec, gdb_socketpair_cloexec, gdb_socket_cloexec):
4762         Only define if HAVE_SOCKETS is defined.
4763         * configure.ac: Check for sys/socket.h.
4764         * config.in, configure: Regenerate.
4765
4766 2013-05-23  Pedro Alves  <palves@redhat.com>
4767
4768         * dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
4769         (open_and_init_dwp_file): Use %s/pulongest instead of %u for
4770         printing uint32_t variables.
4771
4772 2013-05-23  Pedro Alves  <palves@redhat.com>
4773
4774         * NEWS: Mention GDBserver range stepping support.
4775
4776 2013-05-23  Yao Qi  <yao@codesourcery.com>
4777             Pedro Alves  <palves@redhat.com>
4778
4779         * gdbthread.h (struct thread_control_state) <may_range_step>: New
4780         field.
4781         * infcmd.c (step_once, until_next_command): Enable range stepping.
4782         * infrun.c (displaced_step_prepare): Disable range stepping.
4783         (resume): Disable range stepping if stepping over a breakpoint or
4784         we have software watchpoints.  If range stepping is enabled,
4785         assert the thread is in the stepping range.
4786         (clear_proceed_status_thread): Clear may_range_step.
4787         (handle_inferior_event): Disable range stepping as soon as we know
4788         the thread that hit the event.  Re-enable it whenever we're going
4789         to step with a step range.
4790         * remote.c (struct vCont_action_support) <r>: New field.
4791         (use_range_stepping): New global.
4792         (remote_vcont_probe): Handle 'r' action.
4793         (append_resumption): Append an 'r' action if the thread may range
4794         step.
4795         (show_range_stepping): New function.
4796         (set_range_stepping): New function.
4797         (_initialize_remote): Call add_setshow_boolean_cmd to register the
4798         'set range-stepping' and 'show range-stepping' commands.
4799         * NEWS: Mention range stepping, the new vCont;r action, and the
4800         new "set/show range-stepping" commands.
4801
4802 2013-05-23  Yao Qi  <yao@codesourcery.com>
4803             Pedro Alves  <palves@redhat.com>
4804
4805         * remote.c (struct vCont_action_support): New struct.
4806         (struct remote_state) <support_vCont_t>: Remove field.
4807         <vCont_actions_support>: New field.
4808         (remote_vcont_probe, remote_stop_ns): Update.
4809
4810 2013-05-23  Yao Qi  <yao@codesourcery.com>
4811             Pedro Alves  <palves@redhat.com>
4812
4813         * gdbthread.h (pc_in_thread_step_range): New declaration.
4814         * thread.c (pc_in_thread_step_range): New function.
4815         * infrun.c (handle_inferior_event): Use it.
4816
4817 2013-05-23  Joel Brobecker  <brobecker@adacore.com>
4818
4819         * mi/mi-cmd-break.c (mi_argv_to_format): Use xsnprintf instead
4820         of sprintf.
4821
4822 2013-05-22  Keith Seitz  <keiths@redhat.com>
4823
4824         * ada-lang.c (is_known_support_routine): Add explicit free of
4825         'func_name' from find_frame_funname.
4826         (ada_unhandled_exception_name_addr_from_raise): Add cleanups
4827         for func_name from find_frame_funname.
4828         * python/py-frame.c (frapy_name): Add explicit free of
4829         'name' from find_frame_funname.
4830         * stack.c (find_frame_funname): Add comment explaining that
4831         funcp must be freed by the caller.
4832         Return copy of symbol names instead of pointers.
4833         (print_frame): Add a cleanup for 'funname' from
4834         find_frame_funname.
4835         * stack.h (find_frame_funname): Remove "const" from
4836         'funname' parameter.
4837
4838 2013-05-22  Tom Tromey  <tromey@redhat.com>
4839
4840         PR c++/15401:
4841         * c-valprint.c (c_value_print): Use value_addr for
4842         references.  Convert back to reference type with value_ref.
4843
4844 2013-05-22  Eli Zaretskii  <eliz@gnu.org>
4845
4846         * windows-nat.c (handle_unload_dll): Don't call solib_add for the
4847         unloaded DLL, it will be done by handle_solib_event.  See
4848         http://sourceware.org/ml/gdb-patches/2013-05/msg00713.html for the
4849         details.
4850
4851 2013-05-22  Phil Muldoon  <pmuldoon@redhat.com>
4852
4853         * ui-out.c: Create typedef ui_out_level_p and define vector
4854         operations for that type.
4855         (struct ui_out): Use a vector instead of an array.
4856         (current_level): Return level from a vector.
4857         (push_level): Create a level in a vector.
4858         (pop_level): Delete a level in a vector.
4859         (ui_out_new): Create initial level zero level, and store in a
4860         vector.
4861         (ui_out_destroy): Add vector cleanup.
4862
4863 2013-05-22  Pedro Alves  <palves@redhat.com>
4864
4865         * python/python-internal.h (gdb_Py_DECREF): Tag with
4866         "ARI: editCase function".
4867
4868 2013-05-21  Paul Pluzhnikov  <ppluzhnikov@google.com>
4869
4870         * solib-svr4.c (svr4_free_so): Protect against NULL dereference.
4871
4872 2013-05-21  Pedro Alves  <palves@redhat.com>
4873
4874         * python/py-prettyprint.c (apply_val_pretty_printer): Check
4875         whether PRINTER is NULL before installing a Py_DECREF cleanup.
4876         * python/py-utils.c (py_decref): Don't check for NULL before
4877         calling Py_DECREF.
4878
4879 2013-05-21  Pedro Alves  <palves@redhat.com>
4880
4881         * python/py-utils.c (py_decref): Remove extra braces.
4882         (gdb_pymodule_addobject): Remove extra braces.
4883         * python-internal.h (gdb_Py_DECREF): New static inline function.
4884         (Py_DECREF): Redefine as calling gdb_Py_DECREF.
4885
4886 2013-05-21  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
4887
4888         * breakpoints.c (detach_breakpoints): Do not
4889         detach breakpoints locations with loc_type bp_loc_other.
4890
4891 2013-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
4892
4893         Workaround Python 2.6.
4894         * python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
4895         a block.
4896
4897 2013-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
4898
4899         Code cleanup: constification.
4900         * solib.c (solib_ops): Make return type and ops variable type const.
4901         (set_solib_ops): Make the new_ops parameter and ops variable const.
4902         (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
4903         (solib_add, solib_keep_data_in_core, clear_solib)
4904         (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
4905         (reload_shared_libraries, solib_global_lookup): Make the ops variable
4906         const.
4907         * solib.h (set_solib_ops): Make the new_ops parameter const.
4908
4909 2013-05-21  Joel Brobecker  <brobecker@adacore.com>
4910
4911         * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
4912         variable.
4913         (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
4914         (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
4915         (SYSTEM_GDBINIT_FILES): New variables.
4916         (all): Add stamp-system-gdbinit.
4917         (stamp-system-gdbinit): New rule.
4918         (clean-system-gdbinit, install-system-gdbinit)
4919         (uninstall-system-gdbinit): New rules.  Make them .PHONY.
4920         (install-only): Add dependency on install-system-gdbinit.
4921         (uninstall): Add dependency on uninstall-system-gdbinit.
4922         (clean): Add dependency on clean-system-gdbinit.
4923         * system-gdbinit/elinos.py: New file.
4924         * system-gdbinit/wrs-linux.py: New file.
4925
4926 2013-05-21  Joel Brobecker  <brobecker@adacore.com>
4927
4928         * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
4929
4930 2013-05-21  Hui Zhu  <hui@codesourcery.com>
4931
4932         * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
4933         * breakpoint.h (dprintf_breakpoint_ops): Add extern.
4934         * mi/mi-cmd-break.c (ctype.h): New include.
4935         (gdb_obstack.h): New include.
4936         (mi_argv_to_format, mi_cmd_break_insert_1): New.
4937         (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
4938         (mi_cmd_dprintf_insert): New.
4939         * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
4940         * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
4941
4942 2013-05-20  Tom Tromey  <tromey@redhat.com>
4943
4944         * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
4945
4946 2013-05-20  Tom Tromey  <tromey@redhat.com>
4947
4948         * python/py-value.c (valpy_get_dynamic_type): Simplify
4949         dynamic_type assignment.  Use Py_XINCREF.
4950
4951 2013-05-20  Tom Tromey  <tromey@redhat.com>
4952
4953         * python/py-type.c (typy_fields): Unconditionally decref 'r'.
4954
4955 2013-05-20  Tom Tromey  <tromey@redhat.com>
4956
4957         * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
4958         (gdbpy_selected_frame): Move object-construction code
4959         out of TRY_CATCH.
4960
4961 2013-05-20  Tom Tromey  <tromey@redhat.com>
4962
4963         * python/py-arch.c (gdbpy_initialize_arch): Use
4964         gdb_pymodule_addobject.
4965         * python/py-block.c (gdbpy_initialize_blocks): Use
4966         gdb_pymodule_addobject.
4967         * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
4968         gdb_pymodule_addobject.
4969         * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
4970         gdb_pymodule_addobject.
4971         * python/py-event.c (gdbpy_initialize_event_generic): Use
4972         gdb_pymodule_addobject.
4973         * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
4974         gdb_pymodule_addobject.
4975         * python/py-evts.c (add_new_registry): Use
4976         gdb_pymodule_addobject.
4977         (gdbpy_initialize_py_events): Likewise.
4978         * python/py-finishbreakpoint.c
4979         (gdbpy_initialize_finishbreakpoints): Use
4980         gdb_pymodule_addobject.
4981         * python/py-frame.c (gdbpy_initialize_frames): Use
4982         gdb_pymodule_addobject.
4983         * python/py-function.c (gdbpy_initialize_functions): Use
4984         gdb_pymodule_addobject.
4985         * python/py-inferior.c (gdbpy_initialize_inferior): Use
4986         gdb_pymodule_addobject.
4987         * python/py-infthread.c (gdbpy_initialize_thread): Use
4988         gdb_pymodule_addobject.
4989         * python/py-objfile.c (gdbpy_initialize_objfile): Use
4990         gdb_pymodule_addobject.
4991         * python/py-param.c (gdbpy_initialize_parameters): Use
4992         gdb_pymodule_addobject.
4993         * python/py-progspace.c (gdbpy_initialize_pspace): Use
4994         gdb_pymodule_addobject.
4995         * python/py-symbol.c (gdbpy_initialize_symbols): Use
4996         gdb_pymodule_addobject.
4997         * python/py-symtab.c (gdbpy_initialize_symtabs): Use
4998         gdb_pymodule_addobject.
4999         * python/py-type.c (gdbpy_initialize_types): Use
5000         gdb_pymodule_addobject.
5001         * python/py-utils.c (gdb_pymodule_addobject): New function.
5002         * python/py-value.c (gdbpy_initialize_values): Use
5003         gdb_pymodule_addobject.
5004         * python/python-internal.h (gdb_pymodule_addobject): Declare.
5005         * python/python.c (_initialize_python): Use
5006         gdb_pymodule_addobject.
5007
5008 2013-05-20  Tom Tromey  <tromey@redhat.com>
5009
5010         * python/py-cmd.c (cmdpy_completer): Use explicit decref.
5011         * python/py-param.c (get_set_value, get_show_value): Use
5012         explicit decrefs.
5013         * python/python.c (start_type_printers, apply_type_printers):
5014         Use explicit decrefs.
5015
5016 2013-05-20  Tom Tromey  <tromey@redhat.com>
5017
5018         * python/py-evts.c (gdbpy_initialize_py_events): Don't
5019         incref the module.
5020
5021 2013-05-20  Tom Tromey  <tromey@redhat.com>
5022
5023         * python/python.c (gdbpy_run_events): Decref the result
5024         of PyObject_CallObject.
5025
5026 2013-05-20  Tom Tromey  <tromey@redhat.com>
5027
5028         * python/py-symtab.c (set_sal): Use
5029         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.  Return -1 on error.
5030         (symtab_and_line_to_sal_object): Update.
5031
5032 2013-05-20  Tom Tromey  <tromey@redhat.com>
5033
5034         * python/py-param.c (compute_enum_values): Decref 'item'.
5035
5036 2013-05-20  Tom Tromey  <tromey@redhat.com>
5037
5038         * mi/mi-main.c: Include python-internal.h.
5039         (mi_cmd_list_features): Check gdb_python_initialized.
5040         * python/py-inferior.c (python_on_normal_stop, python_on_resume)
5041         (python_inferior_exit, python_new_objfile, add_thread_object)
5042         (delete_thread_object, py_free_inferior): Check
5043         gdb_python_initialized.
5044         * python/py-prettyprint.c (apply_val_pretty_printer): Check
5045         gdb_python_initialized.
5046         * python/py-type.c (save_objfile_types): Check
5047         gdb_python_initialized.
5048         * python/python-internal.h (gdb_python_initialized): Declare.
5049         * python/python.c (ensure_python_env): Throw exception if
5050         Python not initialized.
5051         (before_prompt_hook, source_python_script_for_objfile)
5052         (start_type_printers, apply_type_printers,
5053         free_type_printers): Check gdb_python_initialized.
5054         * varobj.c (varobj_get_display_hint)
5055         (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
5056         (install_new_value_visualizer, varobj_set_visualizer)
5057         (value_get_print_value): Check gdb_python_initialized.
5058
5059 2013-05-20  Tom Tromey  <tromey@redhat.com>
5060
5061         * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
5062         Check errors.
5063         * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
5064         * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
5065         Check errors.
5066         * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
5067         Check errors.
5068         * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
5069         Check errors.
5070         * python/py-event.c (gdbpy_initialize_event): Return 'int'.
5071         Check errors.
5072         * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
5073         init function to return 'int'.
5074         * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
5075         Return 'int'.  Check errors.
5076         * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
5077         Check errors.
5078         * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
5079         Return 'int'.  Check errors.
5080         * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
5081         Check errors.
5082         * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
5083         Check errors.
5084         * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
5085         Check errors.
5086         * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
5087         Check errors.
5088         * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
5089         Check errors.
5090         * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
5091         Check errors.
5092         * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
5093         Check errors.
5094         * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
5095         Check errors.
5096         * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
5097         Check errors.
5098         * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
5099         Check errors.
5100         * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
5101         Check errors.
5102         * python/py-type.c (gdbpy_initialize_types): Return 'int'.
5103         Check errors.
5104         * python/py-value.c (gdbpy_initialize_values): Return 'int'.
5105         Check errors.
5106         * python/python-internal.h (gdbpy_initialize_auto_load,
5107         gdbpy_initialize_values, gdbpy_initialize_frames,
5108         gdbpy_initialize_symtabs, gdbpy_initialize_commands,
5109         gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
5110         gdbpy_initialize_blocks, gdbpy_initialize_types,
5111         gdbpy_initialize_functions, gdbpy_initialize_pspace,
5112         gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
5113         gdbpy_initialize_finishbreakpoints,
5114         gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
5115         gdbpy_initialize_thread, gdbpy_initialize_inferior,
5116         gdbpy_initialize_eventregistry, gdbpy_initialize_event,
5117         gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
5118         gdbpy_initialize_signal_event,
5119         gdbpy_initialize_breakpoint_event,
5120         gdbpy_initialize_continue_event,
5121         gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
5122         gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
5123         Update.  Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5124         * python/python.c (gdb_python_initialized): New global.
5125         (gdbpy_initialize_events): Return 'int'.  Check errors.
5126         (_initialize_python): Check errors.  Set
5127         gdb_python_initialized.
5128
5129 2013-05-20  Tom Tromey  <tromey@redhat.com>
5130
5131         * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
5132         Decref the reslut of PyObject_CallMethod.
5133
5134 2013-05-20  Tom Tromey  <tromey@redhat.com>
5135
5136         * python/py-event.c (gdbpy_initialize_event_generic): Return
5137         early if PyType_Ready fails.
5138
5139 2013-05-20  Tom Tromey  <tromey@redhat.com>
5140
5141         * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
5142         as 'default' in the switch.
5143
5144 2013-05-20  Tom Tromey  <tromey@redhat.com>
5145
5146         * python/py-inferior.c (gdbpy_inferiors): Update.  Hoist
5147         get_addr_from_python calls out of TRY_CATCH.
5148         (infpy_write_memory, infpy_search_memory): Likewise.
5149         * python/py-utils.c (get_addr_from_python): Return negative
5150         value on error.  Use TRY_CATCH.
5151         * python/python-internal.h (get_addr_from_python): Use
5152         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5153
5154 2013-05-20  Tom Tromey  <tromey@redhat.com>
5155
5156         * python/py-event.c (evpy_emit_event): Decref the
5157         result of PyObject_CallFunctionObjArgs.
5158
5159 2013-05-20  Tom Tromey  <tromey@redhat.com>
5160
5161         * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
5162         Correctly decref.
5163
5164 2013-05-20  Tom Tromey  <tromey@redhat.com>
5165
5166         * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
5167
5168 2013-05-20  Tom Tromey  <tromey@redhat.com>
5169
5170         * python/py-event.h (gdbpy_initialize_event_generic): Use
5171         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5172         * python/py-evts.c (add_new_registry): Use
5173         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5174         * python/python-internal.h
5175         (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
5176
5177 2013-05-20  Tom Tromey  <tromey@redhat.com>
5178
5179         * python/py-arch.c (archpy_disassemble): Update.
5180         * python/py-type.c (typy_get_composite, typy_lookup_typename)
5181         (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
5182         * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
5183         * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
5184         macro.
5185         (GDB_PY_HANDLE_EXCEPTION): Update.
5186         (gdbpy_convert_exception): Update.  Use CPYCHECKER_SETS_EXCEPTION.
5187
5188 2013-05-20  Tom Tromey  <tromey@redhat.com>
5189
5190         * python/python-internal.h (events_object_type): Remove.
5191
5192 2013-05-20  Tom Tromey  <tromey@redhat.com>
5193
5194         * python/py-event.h (evpy_emit_event): Use
5195         CPYCHECKER_STEALS_REFERENCE_TO_ARG.
5196         * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
5197         New macro.
5198
5199 2013-05-20  Tom Tromey  <tromey@redhat.com>
5200
5201         * py-evtregistry.c (create_event_object): Decref
5202         eventregistry_object if PyList_New fails.
5203
5204 2013-05-20  Tom Tromey  <tromey@redhat.com>
5205
5206         * py-cmd.c (gdbpy_string_to_argv): Check result of
5207         PyList_New.
5208
5209 2013-05-20  Tom Tromey  <tromey@redhat.com>
5210
5211         * python/python.c (before_prompt_hook): Add cleanup to
5212         decref 'hook'.
5213
5214 2013-05-20  Tom Tromey  <tromey@redhat.com>
5215
5216         * python/py-function.c (fnpy_init): Decref result of
5217         PyObject_GetAttrString.
5218
5219 2013-05-20  Tom Tromey  <tromey@redhat.com>
5220
5221         * python/py-threadevent.c (get_event_thread): Use
5222         CPYCHECKER_RETURNS_BORROWED_REF.
5223         * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
5224         New define.
5225         (pspace_to_pspace_object, objfile_to_objfile_object)
5226         (find_thread_object): Use it.
5227
5228 2013-05-20  Tom Tromey  <tromey@redhat.com>
5229
5230         * python/py-arch.c (arch_object_type): Use
5231         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5232         * python/py-block.c (block_syms_iterator_object_type):
5233         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5234         * python/py-bpevent.c (breakpoint_event_object_type):
5235         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5236         * python/py-cmd.c (cmdpy_object_type): Use
5237         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5238         * python/py-continueevent.c (continue_event_object_type):
5239         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5240         * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
5241         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5242         * python/py-events.h (thread_event_object_type):
5243         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5244         * python/py-evtregistry.c (eventregistry_object_type): Use
5245         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5246         * python/py-exitedevent.c (exited_event_object_type):
5247         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5248         * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
5249         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5250         * python/py-function.c (fnpy_object_type): Use
5251         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5252         * python/py-inferior.c (inferior_object_type, membuf_object_type):
5253         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5254         * python/py-infthread.c (thread_object_type): Use
5255         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5256         * python/py-lazy-string.c (lazy_string_object_type):
5257         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5258         * python/py-newobjfileevent.c (new_objfile_event_object_type):
5259         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5260         * python/py-objfile.c (objfile_object_type): Use
5261         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5262         * python/py-param.c (parmpy_object_type):
5263         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5264         * python/py-progspace.c (pspace_object_type):
5265         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5266         * python/py-signalevent.c (signal_event_object_type):
5267         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5268         * python/py-symtab.c (symtab_object_type, sal_object_type): Use
5269         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5270         * python/py-type.c (type_object_type, field_object_type)
5271         (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5272         * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
5273         define.
5274         (value_object_type, block_object_type, symbol_object_type)
5275         (event_object_type, stop_event_object_type, breakpoint_object_type)
5276         (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5277
5278 2013-05-20  Andreas Tobler  <andreas@fgznet.ch>
5279
5280         * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
5281         (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
5282
5283 2013-05-20  Doug Evans  <dje@google.com>
5284
5285         When reading CU, stay in DWO.  Be more tolerent of bad debug info.
5286         For Fission.
5287         * dwarf2read.c (struct dwarf2_per_cu_data): New member
5288         reading_dwo_directly.
5289         (struct signatured_type): New member dwo_unit.
5290         (struct die_reader_specs): New member comp_dir.
5291         (create_signatured_type_table_from_index): Use malloc for
5292         all_type_units instead of objfile's obstack.
5293         (create_all_type_units): Ditto.
5294         (fill_in_sig_entry_from_dwo_entry): New function.
5295         (add_type_unit): New function.
5296         (lookup_dwo_signatured_type): New function.
5297         (lookup_dwp_signatured_type): New function.
5298         (lookup_signatured_type): New arg cu.  All callers updated.
5299         (init_cu_die_reader): Initialize comp_dir.
5300         (read_cutu_die_from_dwo): New arg stub_comp_dir.  All callers updated.
5301         Change assert of matching type signatures to call error on mismatch.
5302         (lookup_dwo_unit): Add assert.
5303         (init_tu_and_read_dwo_dies): New function.
5304         (init_cutu_and_read_dies): Call it.
5305         (build_type_unit_groups): Handle case of no type unit groups created.
5306         (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
5307         (lookup_dwo_cutu): Tweak complaint.
5308         (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
5309         (dwarf2_per_objfile_free): Free all_type_units.
5310
5311 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
5312
5313         * windows-nat.c (handle_unload_dll): Add missing empty line.
5314
5315 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
5316
5317         * dwarf2read.c (prototyped_function_p): New function.
5318         (read_subroutine_type): Use it.
5319
5320 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
5321
5322         * rs6000-aix-tdep.c: De-indent some example code provided
5323         as a comment.
5324
5325 2013-05-17  Edjunior Machado  <emachado@linux.vnet.ibm.com>
5326
5327         * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
5328         region is ok for a hardware watchpoint using the new ptrace interface
5329         on Power servers.
5330
5331 2013-05-17  Doug Evans  <dje@google.com>
5332
5333         * NEWS: Mention new maintenance commands check-symtabs, and
5334         expand-symtabs, and renamed check-psymtabs.
5335         * psymtab.c (maintenance_check_psymtabs): Renamed from
5336         maintenance_check_symtabs.  Only process already-expanded symbol
5337         tables.
5338         (_initialize_psymtab): Update.
5339         * symmisc.c (maintenance_check_symtabs): New function.
5340         (maintenance_expand_name_matcher): New function
5341         (maintenance_expand_file_matcher): New function
5342         (maintenance_expand_symtabs): New function.
5343         (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
5344         commands.
5345
5346 2013-05-17  Tom Tromey  <tromey@redhat.com>
5347
5348         * python/py-inferior.c (infpy_read_memory): Don't call
5349         PyErr_SetString if PyObject_New fails.
5350         * python/py-frame.c (frame_info_to_frame_object): Don't call
5351         PyErr_SetString if PyObject_New fails.
5352
5353 2013-05-17  Pavel Chupin  <pavel.v.chupin@intel.com>
5354
5355         * acinclude.m4: Add check for dlopen in libdl.
5356         * configure.ac: Ditto.
5357         * configure: Regenerate.
5358
5359 2013-05-17  Phil Muldoon  <pmuldoon@redhat.com>
5360
5361         * frame.c (frame_stash): Convert to htab.
5362         (frame_addr_hash): New function.
5363         (frame_addr_hash_eq): New function.
5364         (frame_stash_create): Convert function to create
5365         a hash table.
5366         (frame_stash_add): Convert function to add an entry to a hash
5367         table.
5368         (frame_stash_find): Convert function to search the hash table.
5369         (frame_stash_invalidate): Convert function to empty the hash
5370         table.
5371         (get_frame_id): Only add to stash if a frame_id is created.
5372         (_initialize_frame): Call frame_stash_create.
5373
5374 2013-05-16  Yue Lu  <hacklu.newborn@gmail.com>  (tiny change)
5375
5376         * configure.ac: Ensure MIG is available when building for GNU Hurd
5377         hosts.
5378         * configure: Regenerate.
5379
5380 2013-05-16  Joel Brobecker  <brobecker@adacore.com>
5381
5382         * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
5383
5384 2013-05-16  Joel Brobecker  <brobecker@adacore.com>
5385
5386         * ada-lang.c (ada_make_symbol_completion_list): Make sure
5387         all cleanups are done before returning from this function.
5388
5389 2013-05-15  Joel Brobecker  <brobecker@adacore.com>
5390
5391         * utils.h: #include "exceptions.h".
5392         (enum errors): Remove partial declaration.
5393
5394 2013-05-15  Joel Brobecker  <brobecker@adacore.com>
5395
5396         * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
5397         * gdbarch.h, gdbarch.c: Regenerate.
5398         * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
5399         handling.
5400
5401         * rs6000-aix-tdep.h: New file.
5402         * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
5403         * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
5404         "xml-utils.h".
5405         (struct field_info, struct ld_info_desc): New types.
5406         (ld_info32_desc, ld_info64_desc): New static constants.
5407         (struct ld_info): New type.
5408         (rs6000_aix_extract_ld_info): New function.
5409         (rs6000_aix_shared_library_to_xml): Likewise.
5410         (rs6000_aix_ld_info_to_xml): Likewise.
5411         (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
5412         (rs6000_aix_init_osabi): Add call to
5413         set_gdbarch_core_xfer_shared_libraries_aix.
5414         * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
5415         Remove "xml-utils.h" include.
5416         (LdInfo): Delete typedef.
5417         (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
5418         Delete macros.
5419         (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
5420         Adjust code accordingly.
5421         (rs6000_core_ldinfo): Delete, folded into
5422         rs6000_aix_core_xfer_shared_libraries_aix.
5423         (rs6000_xfer_shared_library): Delete.
5424         (rs6000_xfer_shared_libraries): Reimplement.
5425
5426 2013-05-15  Markus Metzger  <markus.t.metzger@intel.com>
5427
5428         * record.c (record_goto_cmdlist): New.
5429         (cmd_record_goto): Split into this ...
5430         (cmd_record_goto_begin): ... this
5431         (cmd_record_goto_end): ... and this.
5432         (_initialize_record): Change "record goto" to prefix command.
5433         Add commands for "record goto begin" and "record goto end".
5434         Add an alias for "record goto start" to "record goto begin".
5435
5436 2013-05-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
5437
5438         * linespec.c (convert_linespec_to_sals): New comment for
5439         SOURCE_FILENAME assignment.
5440
5441 2013-05-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
5442
5443         * cleanups.c (restore_my_cleanups): Replace gdb_assert by
5444         internal_warning.
5445
5446 2013-05-14  Tom Tromey  <tromey@redhat.com>
5447
5448         * eval.c (parse_and_eval_long): Make 'exp' const.
5449         * value.h (parse_and_eval_long): Update.
5450
5451 2013-05-14  Tom Tromey  <tromey@redhat.com>
5452
5453         * ui-file.c (gdb_fopen): Make arguments const.
5454         * ui-file.h (gdb_fopen): Make arguments const.
5455
5456 2013-05-14  Tom Tromey  <tromey@redhat.com>
5457
5458         * remote.c (remote_set_trace_notes): Make arguments const.
5459         * target.c (update_current_target): Update cast.
5460         * target.h (to_set_trace_notes): Make arguments const.
5461
5462 2013-05-14  Tom Tromey  <tromey@redhat.com>
5463
5464         * go32-nat.c (go32_terminal_info): Make 'args' const.
5465         * inferior.h (child_terminal_info): Update.
5466         * inflow.c (child_terminal_info): Make 'args' const.
5467         * target.c (default_terminal_info): Make 'args' const.
5468         (debug_to_terminal_save_ours): Likewise.
5469         * target.h (struct target_ops) <to_terminal_info>: Make argument
5470         const.
5471
5472 2013-05-13  Tom Tromey  <tromey@redhat.com>
5473
5474         * gcore.c (create_gcore_bfd): Make 'filename' const.
5475         * gcore.h (create_gcore_bfd): Make 'filename' const.
5476         * record-full.c (record_full_save): Make 'recfilename' const.
5477         * target.c (target_save_record): Make 'filename' const.
5478         * target.h (struct target_ops) <to_save_record>: Make 'filename'
5479         const.
5480         (target_save_record): Likewise.
5481
5482 2013-05-13  Tom Tromey  <tromey@redhat.com>
5483
5484         PR gdb/15338:
5485         * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
5486         ranges section has been read.
5487
5488 2013-05-13  Tom Tromey  <tromey@redhat.com>
5489
5490         PR exp/15364:
5491         * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
5492         STRUCTOP_PTR>: Return a not_lval value for
5493         EVAL_AVOID_SIDE_EFFECTS.
5494         * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
5495         for EVAL_AVOID_SIDE_EFFECTS.
5496
5497 2013-05-13  Joel Brobecker  <brobecker@adacore.com>
5498
5499         * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
5500         floating point registers to register type before storing
5501         value.
5502         * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
5503         Likewise.
5504
5505 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
5506             Tom Tromey  <tromey@redhat.com>
5507
5508         * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
5509         New functions.
5510         * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
5511         Declare.
5512         * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
5513         (darwin_ptrace_him): Use unmark_fd_no_cloexec.
5514         * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
5515         (inf_ttrace_prepare): Use mark_fd_no_cloexec.
5516
5517 2013-05-10  Freddie Chopin  <freddie_chopin@op.pl>
5518             Tom Tromey  <tromey@redhat.com>
5519
5520         PR build/15414:
5521         * configure: Rebuild.
5522         * configure.ac (build_warnings): Do not use -Wformat-nonliteral
5523         with -Wno-format.
5524
5525 2013-05-10  Pedro Alves  <palves@redhat.com>
5526
5527         * remote.c (_initialize_remote): Fix spelling of
5528         qXfer:traceframe-info:read packet in packet config command.
5529
5530 2013-05-10  David Taylor  <dtaylor@emc.com>
5531
5532         PR remote/15455
5533
5534         * remote.c (remote_trace_set_readonly_regions): Do not overwrite
5535         "QTro" at start of packet.
5536
5537 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
5538
5539         * solib-aix.c (solib_aix_relocate_section_addresses):
5540         For the .bss section action, apply the same offset as
5541         the .data section.
5542
5543 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
5544
5545         * solib-aix.c (solib_aix_relocate_section_addresses):
5546         Remove FIXME comment.
5547
5548 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
5549
5550         PR tdep/15420:
5551         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
5552         New functions, directly copied from sparc-sol-thread.c.
5553         * sparc-sol-thread.c: Delete.
5554         * configure.ac: Remove code handling sparc-solaris-thread.c.
5555         * configure: Regenerate.
5556
5557 2013-05-10  Phil Muldoon  <pmuldoon@redhat.com>
5558
5559         * stack.c (backtrace_command_1): Add "no-filters", and Python frame
5560         filter logic.
5561         (backtrace_command): Add "no-filters" option parsing.
5562         (_initialize_stack): Alter help to reflect "no-filters" option.
5563         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
5564         (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
5565         (py-frame.o): Add target
5566         * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
5567         filter files.
5568         * python/python.h: Add new frame filter constants, and flag enum.
5569         (apply_frame_filter): Add definition.
5570         * python/python.c (apply_frame_filter): New non-Python
5571         enabled function.
5572         * python/py-utils.c (py_xdecref): New function.
5573         (make_cleanup_py_xdecref): Ditto.
5574         * python/py-objfile.c: Declare frame_filters dictionary.
5575         (objfpy_dealloc): Add frame_filters dealloc.
5576         (objfpy_new): Initialize frame_filters attribute.
5577         (objfile_to_objfile_object): Ditto.
5578         (objfpy_get_frame_filters): New function.
5579         (objfpy_set_frame_filters): New function.
5580         * python/py-progspace.c: Declare frame_filters dictionary.
5581         (pspy_dealloc): Add frame_filters dealloc.
5582         (pspy_new): Initialize frame_filters attribute.
5583         (pspacee_to_pspace_object): Ditto.
5584         (pspy_get_frame_filters): New function.
5585         (pspy_set_frame_filters): New function.
5586         * python/py-framefilter.c: New file.
5587         * python/lib/gdb/command/frame_filters.py: New file.
5588         * python/lib/gdb/frames.py: New file.
5589         * python/lib/gdb/__init__.py: Initialize global frame_filters
5590         dictionary
5591         * python/lib/gdb/FrameDecorator.py: New file.
5592         * python/lib/gdb/FrameIterator.py: New file.
5593         * mi/mi-cmds.c (mi_cmds): Add frame filters command.
5594         * mi/mi-cmds.h: Declare.
5595         * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
5596         --no-frame-filter logic, and Python frame filter logic.
5597         (stack_enable_frame_filters): New function.
5598         (parse_no_frame_option): Ditto.
5599         (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
5600         filter logic.
5601         (mi_cmd_stack_list_locals): Ditto.
5602         (mi_cmd_stack_list_args): Ditto.
5603         (mi_cmd_stack_list_variables): Ditto.
5604         * NEWS: Add frame filter note.
5605
5606 2013-05-09  Doug Evans  <dje@google.com>
5607
5608         * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
5609         All callers updated.
5610         (syms_from_objfile): Ditto.  Make static.
5611         (symbol_file_add_with_addrs): Renamed from
5612         symbol_file_add_with_addrs_or_offsets.  Delete args offsets,
5613         num_offsets.  All callers updated.
5614         * symfile.h (syms_from_objfile): Delete.
5615
5616         * symfile.c (decrement_reading_symtab): Add assert.
5617         (increment_reading_symtab): Ditto.
5618
5619 2013-05-09  Joel Brobecker  <brobecker@adacore.com>
5620
5621         * source.c (forward_search_command): Replace call to getc
5622         by call to fgetc.
5623         (reverse_search_command): Likewise.
5624
5625 2013-05-08  Doug Evans  <dje@google.com>
5626
5627         * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
5628         matching test.
5629
5630 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
5631
5632         * sol-thread.c (info_cb): Factorize the code a little.
5633
5634 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
5635
5636         * sol-thread.c (info_cb): Rework the output of the "maintenance
5637         info sol-threads" command a bit.
5638
5639 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
5640
5641         * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
5642         Replace ti.ti_startfunc by ti.ti_pc.
5643
5644 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
5645
5646         * solib-aix.c (solib_aix_free_library_list): New function
5647         for the case where HAVE_LIBEXPAT is not defined.
5648
5649 2013-05-07  Sergio Durigan Junior  <sergiodj@redhat.com>
5650
5651         PR breakpoints/15413:
5652         * breakpoint.c (condition_completer): Simplify the code to
5653         disconsider multiple locations of breakpoints when completing the
5654         "condition" command.
5655
5656 2013-05-07  Pierre Muller  <muller@sourceware.org>
5657
5658         * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
5659         instead of <sys/wait.h>.
5660
5661 2013-05-07  Pierre Muller  <muller@sourceware.org>
5662
5663         * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
5664         trailing new line from warning message.
5665
5666 2013-05-07  Pierre Muller  <muller@sourceware.org>
5667
5668         * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
5669         (PC_SOLIB): Change type from ari_deprecate to ari_regression.
5670
5671 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
5672
5673         * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
5674         error message (ARI fix).
5675
5676 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
5677
5678         * features/library-list-aix.dtd: Replace library-list by
5679         library-list-aix.
5680         * rs6000-nat.c: Replace library-list by library-list-aix
5681         throughout.
5682         * solib-aix.c: Likewise.
5683
5684 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
5685
5686         * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
5687         Renames TARGET_OBJECT_AIX_LIBRARIES.
5688         * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
5689         TARGET_OBJECT_LIBRARIES_AIX throughout.
5690         * solib-aix.c: Likwise.
5691
5692 2013-05-07  Yao Qi  <yao@codesourcery.com>
5693
5694         * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
5695         (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
5696
5697 2013-05-07  Yao Qi  <yao@codesourcery.com>
5698
5699         * solib-dsbt.c (enable_break): Declare.
5700         (dsbt_current_sos): Remove call to enable_break2.
5701         (enable_break2): Rename to enable_break.  Set solib breakpoint
5702         on '_dl_debug_state'.
5703         (enable_break): Remove.
5704
5705 2013-05-07  Luis Machado  <lgustavo@codesourcery.com>
5706
5707         * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
5708         debug state prior to replicating existing hardware watchpoints or
5709         breakpoints.
5710
5711 2013-05-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
5712
5713         * gcore.c (gcore_create_callback): Ignore sections with
5714         separate_debug_objfile_backlink != NULL.
5715
5716 2013-05-06  Sandra Loosemore  <sandra@codesourcery.com>
5717             Andrew Jenner  <andrew@codesourcery.com>
5718             Chung-Lin Tang  <cltang@codesourcery.com>
5719             Julian Brown  <julian@codesourcery.com>
5720
5721         Based on the nios2-elf port from Altera Corporation.
5722
5723         * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
5724         nios2-linux-tdep.o.
5725         (HFILES_NO_SRCDIR): Add nios2-tdep.h.
5726         (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
5727         * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
5728         * nios2-tdep.h: New.
5729         * nios2-tdep.c: New.
5730         * nios2-linux-tdep.c: New.
5731         * features/Makefile (WHICH): Add nios2-linux.
5732         (nios2-linux-expedite): Set.
5733         * features/nios2-cpu.xml: New.
5734         * features/nios2.xml: New.
5735         * features/nios2-linux.xml: New.
5736         * features/nios2.c: New (autogenerated).
5737         * features/nios2-linux.c: New (autogenerated).
5738         * regformats/nios2-linux.dat: New (autogenerated).
5739         * NEWS (Changes since GDB 7.6): Add new Nios II targets
5740         and commands.
5741
5742 2013-05-06  Doug Evans  <dje@google.com>
5743
5744         * symfile.c: Whitespace cleanup.
5745
5746         * solist.h (struct target_so_ops): New member clear_so.
5747         * solib-svr4.c (svr4_clear_so): New function.
5748         (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
5749         * solib.c (clear_so): Renamed from free_so_symbols.
5750         All callers updated.  Call target clear_so if it exists.
5751
5752 2013-05-06  Tom Tromey  <tromey@redhat.com>
5753
5754         * ada-lang.c (ada_value_primitive_packed_val): Don't
5755         call value_incref.
5756         * value.c (set_value_parent): Incref the new parent and decref
5757         the old parent.
5758         (value_copy, value_primitive_field): Use set_value_parent.
5759
5760 2013-05-06  Tom Tromey  <tromey@redhat.com>
5761
5762         * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
5763         (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
5764         if needed.
5765         * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
5766         * dwarf2read.c (write_constant_as_bytes)
5767         (dwarf2_fetch_constant_bytes): New functions.
5768
5769 2013-05-06  Tom Tromey  <tromey@redhat.com>
5770
5771         * dwarf2read.c (dwarf2_const_value_data): Remove unused
5772         parameters.
5773         (dwarf2_const_value_attr): Update.
5774
5775 2013-05-06  Tom Tromey  <tromey@redhat.com>
5776
5777         * somread.c (som_symfile_offsets): Add 'const' to addrs.
5778         * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
5779         * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
5780         Remove declaration.
5781
5782 2013-05-06  Tom Tromey  <tromey@redhat.com>
5783
5784         * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
5785         objfile's obstack.
5786
5787 2013-05-06  Doug Evans  <dje@google.com>
5788
5789         * dbxread.c (process_one_symbol): Constify section_offsets parameter.
5790         * stabsread.h (process_one_symbol): Update declaration.
5791         * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
5792         * elfread.c (elf_symfile_relocate_probe): Ditto.
5793         * psymtab.c (relocate_psymtabs): Ditto.
5794         * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
5795         (objfile_relocate): Ditto.
5796         * objfiles.h (objfile_relocate): Update declaration.
5797         * symfile.c (relative_addr_info_to_section_offsets): Constify
5798         addrs parameter.
5799         (default_symfile_offsets): Ditto.
5800         (syms_from_objfile_1): Constify offsets parameter.
5801         (syms_from_objfile): Ditto.
5802         (symbol_file_add_with_addrs_or_offsets): Ditto.
5803         (symfile_map_offsets_to_segments): Constify data parameter.
5804         * symfile.h (struct quick_symbol_functions): Constify new_offsets,
5805         delta parameters of member relocate.
5806         (struct sym_probe_fns): Constify new_offsets,
5807         delta parameters of member sym_relocate_probe.
5808         (struct sym_fns): Constify section_addr_info parameter of member
5809         sym_offsets.
5810         (relative_addr_info_to_section_offsets): Update declaration.
5811         (default_symfile_offsets): Ditto.
5812         (syms_from_objfile): Ditto.
5813         (symfile_map_offsets_to_segments): Ditto.
5814
5815         * symfile.c (syms_from_objfile_1): Use correct section count when
5816         objfile->sf == NULL.
5817
5818 2013-05-06  Mike Frysinger  <vapier@gentoo.org>
5819
5820         * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
5821
5822 2013-05-06  Doug Evans  <dje@google.com>
5823
5824         * psympriv.h (struct partial_symtab): Augment comment for member
5825         section_offsets.
5826
5827 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
5828
5829         Reimplement shared library support on ppc-aix...
5830         * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
5831         * features/library-list-aix.dtd: New file.
5832         * solib-aix.h, solib-aix.c: New file.
5833         * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
5834         (rs6000_find_toc_address_hook): Delete.
5835         (rs6000_push_dummy_call): Rewrite code setting the TOC value.
5836         (rs6000_aix_init_osabi): Register solib_aix_so_ops.
5837         * rs6000-nat.c: Remove "xcoffsolib.h" include.  Include
5838         "xml-utils.h".
5839         (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
5840         (vmap_symtab, fixup_breakpoints): Delete.
5841         (rs6000_xfer_shared_libraries): New function.
5842         (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
5843         (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
5844         (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
5845         (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
5846         (rs6000_xfer_shared_library): New function.
5847         (find_toc_address): Delete.
5848         (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
5849         * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
5850         * xcoffread.c (record_minimal_symbol): Reloate symbol address
5851         before creating minimal symbol.  Adjust function description
5852         accordingly.
5853         (scan_xcoff_symtab): Replace call to
5854         prim_record_minimal_symbol_and_info by call to
5855         record_minimal_symbol.
5856         (xcoff_symfile_offsets): Reimplement mostly as a wrapper
5857         around default_symfile_offsets.
5858         * configure.tgt: Add solib-aix.o to gdb_target_obs for
5859         powerpc-aix targets.
5860         * config/rs6000/nm-rs6000.h: Delete.
5861         * config/powerpc/aix.mh (NAT_FILE): Delete.
5862         (NATDEPFILES): Remove xcoffsolib.o.
5863         * Makefile.in (XMLFILES): Add library-list-aix.dtd.
5864         (ALL_TARGET_OBS): Add solib-aix.o.
5865         (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
5866         config/rs6000/nm-rs6000.h.  Add solib-aix.h.
5867         (ALLDEPFILES): Add solib-aix.c.  Remove xcoffsolib.c.
5868         * xcoffsolib.h, xcoffsolib.c: Delete.
5869
5870         * solib.c (reload_shared_libraries): Remove reference to
5871         SOLIB_CREATE_INFERIOR_HOOK.
5872         * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
5873         (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
5874         (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
5875         comment.
5876         * corelow.c (deprecated_core_resize_section_table): Delete.
5877         * exec.c: Remove include of xcoffsolib.h".
5878         (map_vmap, vmap): Delete.
5879         (exec_close_1): Remove references to vmap.
5880         (exec_file_attach): Remove vmap handling code, and reference
5881         to DEPRECATED_IBM6000_TARGET.
5882         (bfdsec_to_vmap): Delete.
5883         (exec_files_info): Remove block of code handling VMAP.
5884         * infcmd.c (post_create_inferior): Remove reference to
5885         SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
5886         * infrun.c (follow_exec): Remove reference to
5887         SOLIB_CREATE_INFERIOR_HOOK.
5888         * stack.c (print_frame): Remove reference to PC_SOLIB.
5889         * solib-dsbt.c (dsbt_current_sos): Adjust comment.
5890         (dsbt_relocate_main_executable): Likewise.
5891         * solib-frv.c (frv_current_sos): Likewise.
5892
5893 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
5894
5895         * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
5896         to target_write_memory and target_read_memory.
5897
5898 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
5899
5900         * darwin-nat.c (darwin_setup_fake_stop_event): New function.
5901         (darwin_attach): Adjust using darwin_setup_fake_stop_event.
5902
5903 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
5904
5905         * darwin-nat.c: Replace all "%x" instances in format strings
5906         into "0x%x" throughout.
5907
5908 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
5909
5910         * darwin-nat.c (darwin_mourn_inferior): Replace call to
5911         gdb_assert by call to MACH_CHECK_ERROR.
5912         (darwin_attach_pid): Raise an error rather than a failed
5913         assertion when various system calls failed.  Report a warning
5914         instead of raising a failed assertion when PREV_NOT is not NULL
5915         after call to mach_port_request_notification.
5916         (darwin_ptrace_me): Raise an error rather than a failed
5917         assertion when read returns nonzero.
5918
5919 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
5920
5921         * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
5922
5923 2013-05-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
5924
5925         * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
5926
5927 2013-05-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
5928
5929         * event-top.c (display_gdb_prompt): Call missing do_cleanups.
5930         * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
5931         * symfile.c (symfile_bfd_open): New variable back_to.  Do not leave
5932         a stale cleanup.  Fix double free of NAME.
5933
5934 2013-05-04  Eli Zaretskii  <eliz@gnu.org>
5935
5936         * windows-nat.c (windows_delete_thread): Accept an additional
5937         argument, the thread's exit code, and announce thread death when
5938         print_thread_events is non-zero and we are deleting a thread that
5939         is not the main thread.
5940         (get_windows_debug_event): Pass thread exit code to
5941         windows_delete_thread.
5942
5943 2013-05-03  Kevin Buettner  <kevinb@redhat.com>
5944
5945         * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
5946         (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
5947         (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
5948         (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
5949         (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
5950         (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
5951         (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
5952         (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
5953         (gdbarch_tdep): New struct.
5954         (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
5955         E_NUM_REGS.
5956         (v850e3v5_register_name): New function.
5957         (v850_register_type): v850e3v5 vector registers are 64-bits wide.
5958         (v850_use_struct_convention): Add `gdbarch' parameter.  Add new
5959         code handling the struct return conventions for the RH850 ABI.
5960         Update all callers.
5961         (v850_eight_byte_align_p): New function.
5962         (v850_push_call_dummy): Push structs by value, not by reference
5963         for the RH850 ABI.  Add support for eight byte alignment.
5964         (v850_dbtrap_breakpoint_from_pc): New function.
5965         (v850_gdbarch_init): Add ABI detection code.  Register
5966         v850e3v5_register_name for the v850e3v5 architecture.  Set the
5967         number of registers for v850e3v5.  Register
5968         v850_dbtrap_breakpoint_from_pc as appropriate.
5969         (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
5970
5971 2013-05-03  Doug Evans  <dje@google.com>
5972
5973         * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
5974         of bfd_count_sections.
5975         * solib-target.c (solib_target_relocate_section_addresses): Ditto.
5976         * symfile.c (default_symfile_offsets): Ditto.
5977         (syms_from_objfile_1): Ditto.  Make dummy addrs list an array of
5978         one entry, not bfd_count_sections entries.
5979
5980 2013-05-03  Kevin Buettner  <kevinb@redhat.com>
5981
5982         * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
5983         `save' and `restore' register groups.  Don't include SPL
5984         or SPH in these groups.
5985         (rl78_dwarf_reg_to_regnum):  Adjust mapping for
5986         RL78_PC_REGNUM.  Add mappings for RL78_PSW_REGNUM,
5987         RL78_ES_REGNUM, and RL78_CS_REGNUM.
5988         (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4.  Invoke
5989         dwarf2_append_unwinders().
5990
5991 2013-05-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
5992
5993         * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
5994         ignore SIGINT and SIGTRAP in case these internal signals are
5995         caught explicitely.
5996
5997 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
5998
5999         * darwin-nat.c (darwin_read_write_inferior): Change types
6000         of parameters rdaddr and wraddr to "gdb_byte *". Change type
6001         of copy_count to "mach_msg_type_number_t".
6002         (darwin_read_dyld_info): Change type of parameter
6003         rdaddr to "gdb_byte *".
6004
6005 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
6006
6007         * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
6008         of &info->load_map from "char *" to "gdb_byte *".
6009
6010 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
6011
6012         * ia64-tdep.c (ia64_access_fpreg): Change cast of val
6013         from "char *" to "gdb_byte *".
6014         (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
6015
6016 2013-04-30  Doug Evans  <dje@google.com>
6017
6018         * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
6019         (init_cutu_and_read_dies): Flag a complaint, not error, for bad
6020         DWO stub.  If DWO isn't found, just use stub.
6021         (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
6022
6023         * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
6024         calling init_cutu_and_read_dies.
6025
6026 2013-03-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
6027
6028         * target-descriptions.c (maint_print_c_tdesc_cmd):
6029         Add case to parse structures as register types and
6030         bitfields.
6031
6032 2013-04-30  Walfred Tedeschi  <walfred.tedeschi@intel.com>
6033
6034         * MAINTAINERS (Write After Approval): Add myself to the list.
6035
6036 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
6037
6038         * sol-thread.c (rw_common): Change type of parameter "buf"
6039         to "gdb_byte *".
6040         (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
6041         rw_common to "gdb_byte *" instead of "char *".
6042
6043 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
6044
6045         * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
6046         of local variable msym to const struct bound_minimal_symbol.
6047         Adjust use accordingly.
6048         [ti.ti_state == TD_THR_SLEEP]: Likewise.
6049
6050 2013-04-30  Samuel Thibault  <samuel.thibault@gnu.org>
6051
6052         * i386gnu-nat.c (CREG_OFFSET): New macro.
6053         (creg_offset): New array.
6054         (CREG_ADDR): Use creg_offset instead of reg_offset.
6055
6056 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
6057
6058         * mep-tdep.c (mep_write_pc): Delete.
6059         (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
6060         Add call to set_gdbarch_pc_regnum.
6061
6062 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
6063
6064         * common/filestuff.c: Replace #include <dirent.h> by
6065         #include "gdb_dirent.h".
6066
6067 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
6068
6069         * common/filestuff.c: Replace #include <sys/stat.h> by
6070         #include "gdb_stat.h".
6071
6072 2013-04-29  Pierre Muller  <muller@sourceware.org>
6073
6074         * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
6075         editCase function rule.
6076         (get_DW_AT_signature_type): Likewise.
6077
6078 2013-04-29  Joel Brobecker  <brobecker@adacore.com>
6079
6080         * m32r-tdep.c (m32r_write_pc): Delete.
6081         (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
6082         Add call to set_gdbarch_pc_regnum.
6083
6084 2013-04-29  Pierre Muller  <muller@sourceware.org>
6085
6086         * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
6087
6088 2013-04-29  Joel Brobecker  <brobecker@adacore.com>
6089
6090         * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
6091
6092 2013-04-28  Yao Qi  <yao@codesourcery.com>
6093
6094         * solib-dsbt.c (fetch_loadmap): Re-indent.
6095         (displacement_from_map, enable_break2): Likewise.
6096         (dsbt_relocate_section_addresses): Likewise.
6097
6098 2013-04-26  Joel Brobecker  <brobecker@adacore.com>
6099
6100         GDB 7.6 released.
6101
6102 2013-04-25  Andreas Kaufmann  <Andreas.Kaufmann@synopsys.com>
6103
6104         PR corefiles/14983:
6105         * dwarf2read.c (process_full_comp_unit): Always create a static
6106         block.
6107
6108 2013-04-25  Hui Zhu  <hui@codesourcery.com>
6109
6110         * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
6111         to loc->cmd_bytecode.
6112
6113 2013-04-24  Doug Evans  <dje@google.com>
6114
6115         * dwarf2read.c (setup_type_unit_groups): Fix comment.
6116
6117 2013-04-22  Keith Seitz  <keiths@redhat.com>
6118
6119         * tracepoint.c (trace_save):  Call the writer's start method.
6120
6121 2013-04-24  Muhammad Bilal  <mbilal@codesourcery.com>
6122
6123         PR gdb/10462
6124         * cli/cli-decode.c (lookup_command): Show an error if there is no space
6125         before argument.
6126
6127 2013-04-23  Tom Tromey  <tromey@redhat.com>
6128
6129         * common/filestuff.c: Check USE_WIN32API before including
6130         sys/socket.h.
6131         (HAVE_F_GETFD): New define.
6132         (mark_cloexec): Check HAVE_F_GETFD.
6133         (gdb_open_cloexec): Change 'mode' to unsigned long.
6134         (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
6135         (gdb_pipe_cloexec): Check HAVE_PIPE.
6136         * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
6137         long.
6138
6139 2013-04-23  Hui Zhu  <hui@codesourcery.com>
6140
6141         PR gdb/15293
6142         * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
6143
6144 2013-04-23  Hui Zhu  <hui@codesourcery.com>
6145
6146         PR gdb/15165
6147         * breakpoint.c (dprintf_print_recreate): New.
6148         (save_breakpoints): Let it not save dprintf commands.
6149         (initialize_breakpoint_ops): Set dprintf_print_recreate.
6150
6151 2013-04-22  Tom Tromey  <tromey@redhat.com>
6152
6153         PR gdb/7912:
6154         * Makefile.in (SFILES): Add filestuff.c
6155         (COMMON_OBS): Add filestuff.o.
6156         (filestuff.o): New target.
6157         * auto-load.c (auto_load_objfile_script_1): Use
6158         gdb_fopen_cloexec.
6159         * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
6160         * cli/cli-cmds.c (shell_escape): Call close_most_fds.
6161         * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
6162         * common/agent.c (gdb_connect_sync_socket): Use
6163         gdb_socket_cloexec.
6164         * common/filestuff.c: New file.
6165         * common/filestuff.h: New file.
6166         * common/linux-osdata.c (linux_common_core_of_thread)
6167         (command_from_pid, commandline_from_pid, print_source_lines)
6168         (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
6169         (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
6170         gdb_fopen_cloexec.
6171         * common/linux-procfs.c (linux_proc_get_int)
6172         (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
6173         * config.in, configure: Rebuild.
6174         * configure.ac: Don't check for sys/socket.h.  Check for
6175         fdwalk, pipe2.
6176         * corelow.c (core_open): Use gdb_open_cloexec.
6177         * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
6178         * fork-child.c (fork_inferior): Call close_most_fds.
6179         * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
6180         * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
6181         * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
6182         Use gdb_fopen_cloexec.
6183         (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
6184         gdb_open_cloexec.
6185         (linux_async_pipe): Use gdb_pipe_cloexec.
6186         * remote-fileio.c (remote_fileio_func_open): Use
6187         gdb_open_cloexec.
6188         * remote.c (remote_file_put, remote_file_get): Use
6189         gdb_fopen_cloexec.
6190         * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
6191         close_most_fds.
6192         * ser-tcp.c (net_open): Use gdb_socket_cloexec.
6193         * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
6194         * solib.c (solib_find): Use gdb_open_cloexec.
6195         * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
6196         * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
6197         (tfile_open): Use gdb_open_cloexec.
6198         * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
6199         * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
6200         * xml-support.c (xml_fetch_content_from_file): Use
6201         gdb_fopen_cloexec.
6202         * main.c (captured_main): Call notice_open_fds.
6203
6204 2013-04-22  Edjunior Machado  <emachado@linux.vnet.ibm.com>
6205
6206         * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
6207         'char *' to 'gdb_byte *'.
6208         (gdbsim_store_register): Change the type of 'tmp' from 'char' to
6209         'gdb_byte'.
6210
6211 2013-04-22  Yao Qi  <yao@codesourcery.com>
6212
6213         * infrun.c: Fix typo in comment.
6214
6215 2013-04-22  Andrew Haley  <aph@redhat.com>
6216
6217         * arm-tdep.c (BranchDest): Cast result as "unsigned long",
6218         instead of "long".
6219
6220 2013-04-20  Yao Qi  <yao@codesourcery.com>
6221
6222         * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
6223         'char *' to 'gdb_byte *'.  Cast the return value of
6224         'bt_ctf_get_char_array' to 'gdb_byte *'.
6225
6226 2013-04-19  Pedro Alves  <palves@redhat.com>
6227
6228         * configure.ac (build_warnings): Replace -Wno-pointer-sign with
6229         -Wpointer-sign.
6230         * configure: Regenerate.
6231
6232 2013-04-19  Pedro Alves  <palves@redhat.com>
6233
6234         * ser-tcp.c (net_read_prim): Cast second argument to recv to
6235         'void *'.
6236
6237 2013-04-19  Pedro Alves  <palves@redhat.com>
6238
6239         * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
6240         Change type of 'myaddr' parameter to gdb_byte pointer.
6241         (monitor_write_memory_longlongs): Likewise.  Cast 'myaddr' pointer
6242         to 'long long' pointer instead of to 'unsigned long long'.
6243         (monitor_write_memory_block, monitor_read_memory_single)
6244         (monitor_read_memory): Change type of 'myaddr' parameter to
6245         gdb_byte pointer.
6246
6247 2013-04-19  Pedro Alves  <palves@redhat.com>
6248
6249         * record.c (validate_history_size): Make parameter 'setting'
6250         unsigned.
6251
6252 2013-04-19  Pedro Alves  <palves@redhat.com>
6253
6254         * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
6255         to 'gdb_byte *'.
6256
6257 2013-04-19  Pedro Alves  <palves@redhat.com>
6258
6259         * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
6260         local to int.
6261
6262 2013-04-19  Pedro Alves  <palves@redhat.com>
6263
6264         * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
6265         * ada-tasks.c (read_fat_string_value): Likewise.
6266
6267 2013-04-19  Pedro Alves  <palves@redhat.com>
6268
6269         * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
6270         unsigned.  Pass 'tmp' to safe_read_uleb128 instead of the signed
6271         'offset', and adjust.
6272
6273 2013-04-19  Pedro Alves  <palves@redhat.com>
6274
6275         * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
6276         (read_index_from_section): Add cast to 'char *'.
6277
6278 2013-04-19  Pedro Alves  <palves@redhat.com>
6279
6280         * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
6281
6282 2013-04-19  Pedro Alves  <palves@redhat.com>
6283
6284         * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
6285
6286 2013-04-19  Pedro Alves  <palves@redhat.com>
6287
6288         * record-full.c (record_full_get_bookmark): Change local 'ret'
6289         type to char * and add cast to gdb_byte *.
6290         (record_full_goto_bookmark): Handle 'bookmark' argument as a
6291         string.
6292         * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
6293
6294 2013-04-19  Pedro Alves  <palves@redhat.com>
6295
6296         * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
6297         * python/py-prettyprint.c (print_string_repr): Change type of
6298         'output' local to char *.  Add cast to gdb_byte * in
6299         LA_PRINT_STRING call.
6300         (print_children): Change type of 'output' local to char *.
6301         * python/py-value.c (valpy_string): Add cast to const char * in
6302         PyUnicode_Decode call.
6303
6304 2013-04-19  Pedro Alves  <palves@redhat.com>
6305
6306         * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
6307         and change its type to 'const char *'.  Adjust.
6308         (mips_send_packet): Add cast to 'char *', and remove cast to
6309         'unsigned char *'.
6310         (mips_receive_packet): Remove cast to 'unsigned char *'.
6311         (mips_load_srec): Use bfd_byte.
6312         (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
6313         (pmon_checkset): Make 'value' parameter unsigned.
6314
6315 2013-04-19  Pedro Alves  <palves@redhat.com>
6316
6317         * common/agent.c (agent_run_command): Add cast to gdb_byte *.
6318
6319 2013-04-19  Pedro Alves  <palves@redhat.com>
6320
6321         * remote.c (remote_write_bytes_aux, compare_sections_command)
6322         (remote_read_qxfer)
6323         (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
6324         (remote_hostio_readlink, remote_bfd_iovec_pread)
6325         (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
6326         binary buffer, and char when buffer is used as string.
6327         * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
6328         (trace_save, tfile_open, traceframe_walk_blocks)
6329         (tfile_fetch_registers): Likewise.
6330
6331 2013-04-19  Pedro Alves  <palves@redhat.com>
6332
6333         * ser-base.c (ser_base_write): Change prototype -- take 'void *'
6334         buffer and size_t size.  Adjust.
6335         * ser-base.h (ser_base_write): Adjust.
6336         * ser-go32.c (cnts): Change type to size_t.
6337         (dos_write): Change prototype -- take 'void *'
6338         buffer and size_t size.  Adjust.
6339         (dos_info): Print elements of 'cnts' as unsigned long.
6340         * serial.c (serial_write): Likewise.
6341         * serial.h (serial_write): Adjust.
6342         (struct serial_ops) <write>: Change prototype -- take 'void *'
6343         buffer and size_t size.  Adjust.
6344
6345 2013-04-19  Pedro Alves  <palves@redhat.com>
6346
6347         * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
6348         gdb_byte *.
6349         * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
6350
6351 2013-04-19  Pedro Alves  <palves@redhat.com>
6352
6353         * alpha-tdep.c (alpha_extract_return_value): Use
6354         regcache_cooked_read_unsigned to read 'v0'.
6355
6356 2013-04-19  Pedro Alves  <palves@redhat.com>
6357
6358         * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
6359         parameters 'at', 'as' and 'offset' to uint32_t.
6360
6361 2013-04-19  Pedro Alves  <palves@redhat.com>
6362
6363         * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
6364         'is64' to signed 'int'.
6365
6366 2013-04-19  Pedro Alves  <palves@redhat.com>
6367
6368         * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
6369         parameter to int *.
6370
6371 2013-04-19  Pedro Alves  <palves@redhat.com>
6372
6373         * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
6374         'insnbuf' buffer type to unsigned int[].
6375
6376 2013-04-19  Pedro Alves  <palves@redhat.com>
6377
6378         * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
6379
6380 2013-04-19  Pedro Alves  <palves@redhat.com>
6381
6382         * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
6383         unsigned long *.
6384
6385 2013-04-19  Pedro Alves  <palves@redhat.com>
6386
6387         * alpha-tdep.c (heuristic_fence_post): Change type to int.
6388         (alpha_heuristic_proc_start): Adjust to check -1 instead of
6389         UINT_MAX.
6390         * mips-tdep.c (heuristic_fence_post): Change type to int.
6391         (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
6392
6393 2013-04-19  Pedro Alves  <palves@redhat.com>
6394
6395         * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
6396         (struct gdbarch_tdep) <cris_version>: Make unsigned.
6397         (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
6398
6399 2013-04-19  Pedro Alves  <palves@redhat.com>
6400
6401         * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'.  Use
6402         it to get a string view of the byte buffer.
6403         * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
6404         type to gdb_byte *.  Adjust.
6405         * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
6406         Change local to char *.
6407         * solib-darwin.c (find_program_interpreter): Change return type to
6408         char *.  Adjust.
6409         (darwin_solib_get_all_image_info_addr_at_init): Adjust.
6410         * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
6411         * solib-frv.c (enable_break2): Change local 'buf' to char *.
6412         * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
6413         * solib-svr4.c (find_program_interpreter): Change return type to
6414         char *.  Adjust.
6415         (enable_break): Change local 'interp_name' to char *.
6416         * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
6417         * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
6418         (spu_pseudo_register_write_spu): Use char for string buffer.
6419         Adjust.
6420         (info_spu_event_command, info_spu_signal_command): Add casts to
6421         'char *'.
6422
6423 2013-04-19  Pedro Alves  <palves@redhat.com>
6424
6425         * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
6426         gdb_byte[].
6427         (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
6428         * ada-lang.c (ada_value_assign): Use gdb_byte.
6429         * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
6430         (alphanbsd_sigtramp_offset): Use gdb_byte.
6431         * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
6432         (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
6433         (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
6434         (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
6435         (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
6436         * arm-tdep.c (arm_stub_unwind_sniffer)
6437         (arm_displaced_init_closure): Use gdb_byte.
6438         (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
6439         (arm_default_thumb_le_breakpoint)
6440         (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
6441         * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
6442         thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
6443         * arm-wince-tdep.c (arm_wince_le_breakpoint)
6444         (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
6445         * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
6446         (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
6447         (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
6448         * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
6449         (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
6450         * cris-tdep.c (push_stack_item, cris_push_dummy_call)
6451         (cris_store_return_value, cris_extract_return_value): Use
6452         gdb_byte.
6453         (constraint): Change type of parameter to char * from signed
6454         char*.  Use gdb_byte.
6455         * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
6456         of local buffer to gdb_byte *.
6457         * dwarf2read.c (read_index_from_section): Use gdb_byte.
6458         (create_dwp_hash_table): Change type of locals to gdb_byte *.
6459         (add_address_entry): Change type of local buffer to gdb_byte[].
6460         * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
6461         (frv_push_dummy_call): Use gdb_byte.
6462         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
6463         (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
6464         (hppa_hpux_supply_save_state): Use gdb_byte.
6465         * hppa-tdep.c (hppa32_push_dummy_call)
6466         (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
6467         * ia64-tdep.c (extract_bit_field, replace_bit_field)
6468         (slotN_contents, replace_slotN_contents): Change type of parameter
6469         to gdb_byte *.
6470         (fetch_instruction, ia64_pseudo_register_write)
6471         (ia64_register_to_value, ia64_value_to_register)
6472         (ia64_extract_return_value, ia64_store_return_value)
6473         (ia64_push_dummy_call): Use gdb_byte.
6474         * m32c-tdep.c (m32c_return_value): Remove cast.
6475         * m68hc11-tdep.c (m68hc11_pseudo_register_write)
6476         (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
6477         gdb_byte.
6478         * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
6479         * mn10300-tdep.c (mn10300_store_return_value)
6480         (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
6481         gdb_byte.
6482         * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
6483         (moxie_process_record): Remove casts.
6484         * ppc-ravenscar-thread.c (supply_register_at_address)
6485         (ppc_ravenscar_generic_store_registers): Use gdb_byte.
6486         * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
6487         * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
6488         * remote-mips.c (mips_xfer_memory): Use gdb_byte.
6489         * remote.c (compare_sections_command): Use gdb_byte.
6490         * score-tdep.c (score7_free_memblock): Change type of parameter to
6491         gdb_byte *.
6492         * sh-tdep.c (sh_justify_value_in_reg): Change return type to
6493         gdb_byte *.  Use gdb_byte.
6494         (sh_push_dummy_call_fpu): Use gdb_byte.
6495         (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
6496         (sh_store_return_value_nofpu, sh_store_return_value_fpu)
6497         (sh_register_convert_to_virtual, sh_register_convert_to_raw):
6498         Change parameter type to 'gdb_byte *'.  Use gdb_byte.
6499         (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
6500         * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
6501         (sh64_store_return_value, sh64_register_convert_to_virtual):
6502         Change parameter type to 'gdb_byte *'.  Use gdb_byte.
6503         (sh64_pseudo_register_write): Use gdb_byte.
6504         * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
6505         * solib-irix.c (fetch_lm_info): Likewise.  Use gdb_byte for byte
6506         buffer.
6507         (irix_current_sos): Use gdb_byte.
6508         * solib-som.c (som_current_sos): Use gdb_byte.
6509         * sparc-ravenscar-thread.c (supply_register_at_address)
6510         (sparc_ravenscar_generic_store_registers): Use gdb_byte.
6511         * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
6512         * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
6513         * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
6514         'gdb_byte *'.
6515         * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
6516         'gdb_byte *'.
6517         * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
6518         * xstormy16-tdep.c (xstormy16_extract_return_value)
6519         (xstormy16_store_return_value): Change parameter type to
6520         'gdb_byte *'.  Adjust.
6521         (xstormy16_push_dummy_call): Use gdb_byte.
6522         * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
6523         (call0_analyze_prologue, execute_code): Use gdb_byte.
6524
6525 2013-04-19  Vladimir Kargov <kargov@gmail.com>
6526             Pedro Alves  <palves@redhat.com>
6527
6528         * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
6529         value contents.
6530
6531 2013-04-17  Doug Evans  <dje@google.com>
6532
6533         * dwarf2read.c (struct signatured_type): New member type.
6534         (struct attribute): Replace member signatured_type with signature.
6535         (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
6536         (read_call_site_scope): Call follow_die_ref instead of
6537         follow_die_ref_or_sig.
6538         (read_structure_type): Rewrite handling of signatured types.
6539         (read_enumeration_type): Ditto.
6540         (read_attribute_value): Update.
6541         (build_error_marker_type): New function.
6542         (lookup_die_type): Add assert.  Rewrite handling of signatured types.
6543         Don't call error for bad types, just build an error marker type.
6544         (dump_die_shallow): Update.
6545         (follow_die_sig_1): Renamed from follow_die_sig.
6546         Don't call error for bad types, instead return NULL.
6547         (follow_die_sig): New function.
6548         (get_signatured_type, get_DW_AT_signature_type): New functions.
6549
6550 2013-04-17  Yufeng Zhang  <yufeng.zhang@arm.com>
6551
6552         * aarch64-tdep.c (aarch64_write_pc): Removed.
6553         (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
6554         function.
6555
6556 2013-04-17  Yao Qi  <yao@codesourcery.com>
6557
6558         * top.c (print_gdb_configuration): Print configure-time
6559         parameter on using libbabeltrace or not.
6560
6561 2013-04-16  Pedro Alves  <palves@redhat.com>
6562
6563         * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
6564
6565 2013-04-16  Pedro Alves  <palves@redhat.com>
6566
6567         * common/glibc_thread_db.h: Update from upstream glibc
6568         (git 568035b7874a099087b77f7bba3e36a1173787b0).
6569
6570 2013-04-16  Pedro Alves  <palves@redhat.com>
6571
6572         * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
6573         * common/glibc_thread_db.h: ... this new file ...
6574         * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
6575
6576 2013-04-16  Will Newton  <will.newton@gmail.com>
6577             Pedro Alves  <palves@redhat.com>
6578
6579         PR build/11881
6580
6581         * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
6582         (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
6583         HAVE_THREAD_DB_H.
6584
6585 2013-04-16  Pedro Alves  <palves@redhat.com>
6586             Eli Zaretskii  <eliz@gnu.org>
6587
6588         * NEWS: Mention "set foo unlimited".
6589
6590 2013-04-15  Doug Evans  <dje@google.com>
6591
6592         * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
6593         (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
6594         (create_dwo_cu_reader): Renamed from
6595         create_dwo_debug_info_hash_table_reader.
6596         (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
6597         Remove support for multiple CUs in a DWO file.
6598         (open_and_init_dwo_file, lookup_dwo_cutu): Update.
6599
6600         * dwarf2read.c (create_debug_types_hash_table): Use hex_string
6601         instead of phex.
6602         (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
6603         (create_dwo_in_dwp): Ditto.
6604
6605 2013-04-15  Tom Tromey  <tromey@redhat.com>
6606
6607         * NEWS: Move recent entries into "since 7.6" section.
6608
6609 2013-04-15  Tom Tromey  <tromey@redhat.com>
6610
6611         PR c++/13588:
6612         * NEWS: Update.
6613         * break-catch-throw.c (struct exception_catchpoint)
6614         <exception_rx, pattern>: New fields.
6615         (fetch_probe_arguments, dtor_exception_catchpoint)
6616         (check_status_exception_catchpoint)
6617         (print_one_detail_exception_catchpoint): New functions.
6618         (handle_gnu_v3_exceptions): Add "except_rx" argument.
6619         Compile regular expression if needed.
6620         (extract_exception_regexp): New function.
6621         (catch_exception_command_1): Use extract_exception_regexp.
6622         (compute_exception): Use fetch_probe_arguments.
6623         (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
6624         and check_status fields.
6625         * cp-abi.c (cplus_typename_from_type_info): New function.
6626         * cp-abi.h (cplus_typename_from_type_info): Declare.
6627         (struct cp_abi_ops) <get_typename_from_type_info>: New field.
6628         * gdb_regex.h (compile_rx_or_error): Declare.
6629         * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
6630         comment.
6631         (init_gnuv3_ops): Set get_type_from_type_info field.
6632         * probe.c (compile_rx_or_error): Move...
6633         * utils.c (compile_rx_or_error): ... here.
6634
6635 2013-04-15  Tom Tromey  <tromey@redhat.com>
6636
6637         PR c++/15176:
6638         * NEWS: Update.
6639         * break-catch-throw.c (compute_exception): New function.
6640         (exception_funcs): New global.
6641         (_initialize_break_catch_throw): Create $_exception.
6642         * cp-abi.c (cplus_type_from_type_info): New function.
6643         * cp-abi.h (cplus_type_from_type_info): Declare.
6644         (struct cp_abi_ops) <get_type_from_type_info>: New field.
6645         * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
6646         (gnuv3_get_type_from_type_info): New functions.
6647         (init_gnuv3_ops): Set get_type_from_type_info ABI field.
6648
6649 2013-04-15  Tom Tromey  <tromey@redhat.com>
6650
6651         * break-catch-throw.c (struct exception_names): New.
6652         (exception_functions): Change type.
6653         (re_set_exception_catchpoint): Look for SDT probes.
6654
6655 2013-04-15  Tom Tromey  <tromey@redhat.com>
6656
6657         PR c++/10119:
6658         * break-catch-throw.c (exception_functions): New global.
6659         (gnu_v3_exception_catchpoint_ops): Move earlier.
6660         (struct exception_catchpoint): New.
6661         (classify_exception_breakpoint): Rewrite.
6662         (re_set_exception_catchpoint): New function.
6663         (handle_gnu_v3_exceptions): Return void.  Use init_catchpoint.
6664         Allocate a struct exception_catchpoint.
6665         (catch_exception_command_1): Update.
6666         (initialize_throw_catchpoint_ops): Set 're_set' method.
6667
6668 2013-04-15  Tom Tromey  <tromey@redhat.com>
6669
6670         * Makefile.in (SFILES): Add break-catch-throw.c
6671         (COMMON_OBS): Add break-catch-throw.o.
6672         * break-catch-throw.c: New file.
6673         * breakpoint.c: Move exception-catching code to new file.
6674         (ep_parse_optional_if_clause): No longer static.
6675         * breakpoint.h (ep_parse_optional_if_clause): Declare.
6676
6677 2013-04-15  Tom Tromey  <tromey@redhat.com>
6678
6679         PR c++/9065:
6680         * NEWS: Update.
6681         * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
6682         * c-exp.y (TYPEID): New token.
6683         (exp): Add new TYPEID productions.
6684         (ident_tokens): Add "typeid".
6685         * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
6686         * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
6687         (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
6688         * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
6689         * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
6690         case.
6691         * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
6692         (build_std_type_info_type, gnuv3_get_typeid_type)
6693         (gnuv3_get_typeid): New functions.
6694         (init_gnuv3_ops): Initialize std_type_info_gdbarch_data.  Set
6695         new fields on ABI object.
6696         * parse.c (operator_length_standard) <OP_TYPEID>: New case.
6697         * std-operator.def (OP_TYPEID): New.
6698
6699 2013-04-15  Tom Tromey  <tromey@redhat.com>
6700
6701         * elfread.c (elf_symtab_read): Install versioned symbol under
6702         unversioned name as well.
6703
6704 2013-04-15  Tom Tromey  <tromey@redhat.com>
6705
6706         PR c++/11990:
6707         * c-lang.c (cplus_language_defn): Use gdb_demangle.
6708         * c-typeprint.c (c_type_print_base): Use gdb_demangle.
6709         * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
6710         (gdb_demangle): New function.
6711         * cp-support.h (gdb_demangle): Declare.
6712         * dwarf2read.c (dwarf2_physname, fixup_partial_die)
6713         (dwarf2_name): Use gdb_demangle.
6714         * gdbtypes.c (check_stub_method): Use gdb_demangle.
6715         * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
6716         suffixes from name.
6717         (gnuv3_print_method_ptr): Use gdb_demangle.
6718         * jv-lang.c (java_demangle): Use gdb_demangle.
6719         * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
6720         * language.c (unk_lang_demangle): Use gdb_demangle.
6721         * symtab.c (symbol_find_demangled_name)
6722         (demangle_for_lookup): Use gdb_demangle.
6723
6724 2013-04-15  Tom Tromey  <tromey@redhat.com>
6725
6726         PR c++/12824:
6727         * NEWS: Update.
6728         * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
6729         New constant.
6730         (classify_exception_breakpoint): New function.
6731         (print_it_exception_catchpoint, print_one_exception_catchpoint)
6732         (print_mention_exception_catchpoint)
6733         (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
6734         (catch_exception_command_1): Handle "rethrow" catchpoint.
6735         (catch_rethrow_command): New function.
6736         (_initialize_breakpoint): Add "catch rethrow" command.
6737
6738 2013-04-15  Pierre Muller  <muller@sourceware.org>
6739
6740         * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
6741         set_gdbarch_write_pc as deprecated anymore.
6742
6743 2013-04-15  Joel Brobecker  <brobecker@adacore.com>
6744
6745         * spu-tdep.c (spu_write_pc): Add empty line after local variable
6746         declarations.
6747
6748 2013-04-13  Yao Qi  <yao@codesourcery.com>
6749
6750         * ctf.c (_initialize_ctf): Include "completer.h".
6751         Call add_target_with_completer instead of add_target.
6752
6753 2013-04-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
6754
6755         Fix GDB regression related to PR binutils/14813.
6756         * jit.c (mem_bfd_iovec_close): Return 0 for success.
6757         * minidebug.c (lzma_close): Add return value comment.
6758         * remote.c (remote_bfd_iovec_close): Return 0 for success.
6759         * solib-spu.c (spu_bfd_iovec_close): Likewise.
6760         * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
6761
6762 2013-04-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
6763
6764         * config.in: Regenerate.
6765
6766 2013-04-12  Tom Tromey  <tromey@redhat.com>
6767
6768         * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
6769         const.
6770         * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
6771         (struct die_reader_specs) <buffer>: Likewise.
6772         (die_reader_func_ftype): Make 'info_ptr' const.
6773         (struct line_header) <include_dirs, statement_program_start,
6774         statement_program_end>: Now const.
6775         (struct file_entry) <name>: Likewise.
6776         (struct partial_die_info) <sibling>: Likewise.
6777         (struct dwarf_block) <data>: Likewise.
6778         (dwarf2_read_section): Remove cast.
6779         (dwarf2_get_section_info): Make 'bufp' const.
6780         (read_index_from_section): Constify.
6781         (dw2_get_file_names_reader): Make 'info_ptr' const.
6782         (dw2_get_primary_filename_reader): Likewise.
6783         (read_comp_unit_head): Make 'info_ptr' and return type const.
6784         (read_and_check_comp_unit_head, read_and_check_type_unit_head):
6785         Likewise.
6786         (read_abbrev_offset): Constify.
6787         (dwarf2_create_include_psymtab): Make 'name' const.
6788         (create_debug_types_hash_table): Update.
6789         (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
6790         (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
6791         Constify.
6792         (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
6793         (load_partial_comp_unit_reader): Make 'info_ptr' const.
6794         (read_comp_units_from_section): Constify.
6795         (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
6796         (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
6797         const.
6798         (dwarf2_compute_name, setup_type_unit_groups): Constify.
6799         (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
6800         (create_dwp_hash_table, dwarf2_ranges_read)
6801         (dwarf2_record_block_ranges): Constify.
6802         (read_die_and_children, read_die_and_siblings_1)
6803         (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
6804         const.
6805         (read_full_die_1, read_full_die): Make 'info_ptr' const.
6806         (abbrev_table_read_table): Constify.
6807         (load_partial_dies): Make 'info_ptr' const.
6808         (read_partial_die, read_attribute_value, read_attribute): Make
6809         'info_ptr' and return type const.
6810         (read_address, read_initial_length)
6811         (read_checked_initial_length_and_offset, read_offset)
6812         (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
6813         const.
6814         (read_direct_string): Make 'buf' and return type const.
6815         (read_indirect_string_at_offset, read_indirect_string_from_dwz)
6816         (read_indirect_string): Make return type const.
6817         (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
6818         (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
6819         'info_ptr' const.
6820         (read_str_index): Make return type const.
6821         (add_include_dir): Make 'include_dir' const.
6822         (add_file_name): Make 'name' const.
6823         (dwarf_decode_line_header): Constify.
6824         (psymtab_include_file_name): Make return type const.
6825         (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
6826         (dwarf2_start_subfile): Make 'filename' const.
6827         (dwarf2_const_value_attr): Make 'bytes' const.
6828         (read_signatured_type_reader): Make 'info_ptr' const.
6829         (decode_locdesc): Constify.
6830         (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
6831         const.
6832         (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
6833         'mac_end', and return type const.
6834         (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
6835         (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
6836         type const.
6837         (per_cu_header_read_in): Constify.
6838         * symfile.h (dwarf2_get_section_info): Update.
6839
6840 2013-04-12  Tom Tromey  <tromey@redhat.com>
6841
6842         * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
6843
6844 2013-04-12  Eli Zaretskii  <eliz@gnu.org>
6845
6846         * NEWS: Mention "show configuration", --configuration.
6847         * top.c (print_gdb_configuration): New function, displays the
6848         details about GDB configure-time parameters.
6849         (print_gdb_version): Mention "show configuration".
6850         * cli/cli-cmds.c (show_configuration): New function.
6851         (_initialize_cli_cmds): Add the "show configuration" command.
6852         * main.c (captured_main) <print_configuration>: New static var.
6853         <long_options>: Use it.
6854         If --configuration was given, call print_gdb_configuration.
6855
6856 2013-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
6857             Pedro Alves  <palves@redhat.com>
6858
6859         * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
6860         (generated_files): Add gcore.
6861         (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
6862         HAVE_NATIVE_GCORE_HOST.
6863         (gcore): New.
6864         * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
6865         * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
6866         config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
6867         config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
6868         config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
6869         Add HAVE_NATIVE_GCORE_HOST.
6870         * configure: Regenerate.
6871         * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
6872         New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME.  New
6873         AC_CONFIG_FILES for gcore.
6874         * configure.tgt: Add gdb_have_gcore to the initial comment.  Set
6875         gdb_have_gcore.
6876         * gdb_gcore.sh: Rename to ...
6877         * gcore.in: ... here.  Remove gcore.sh comment.  Use GDB_TRANSFORM_NAME
6878         and GCORE_TRANSFORM_NAME substitutions.
6879
6880         Fix parsing tabs in ${gdb_target_obs}.
6881         * configure.tgt (gdb_have_gcore): Replace case with for and if.
6882
6883 2013-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
6884
6885         * remote.c (unpush_and_perror): Add output message final dot.
6886
6887 2013-04-11  Yao Qi  <yao@codesourcery.com>
6888
6889         * tracepoint.c (tfile_interp_line): Fit parameters line and
6890         utpp in one line.
6891
6892 2013-04-10  Joel Brobecker  <brobecker@adacore.com>
6893
6894         * solib.c (solib_map_sections): Remove code overwriting
6895         SO->SO_NAME with the bfd's filename.
6896
6897 2013-04-10  Pedro Alves  <palves@redhat.com>
6898
6899         * cli/cli-decode.c (integer_unlimited_completer): New function.
6900         (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
6901         (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
6902         completer.
6903         * cli/cli-setshow.c: Include "cli/cli-utils.h".
6904         (is_unlimited_literal): New function.
6905         (do_set_command): Handle literal "unlimited" arguments.
6906         * frame.c (_initialize_frame) <set backtrace limit>: Document
6907         "unlimited".
6908         * printcmd.c (_initialize_printcmd) <set print
6909         max-symbolic-offset>: Add help text.
6910         * record-full.c (_initialize_record_full) <set record full
6911         insn-number-max>: Likewise.
6912         * record.c (_initialize_record) <set record
6913         instruction-history-size, set record function-call-history-size>:
6914         Add help text.
6915         * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
6916         help text.
6917         * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
6918         Likewise.
6919         * source.c (_initialize_source) <set listsize>: Add help text.
6920         * utils.c (initialize_utils) <set height, set width>: Likewise.
6921         <set pagination>: Mention "set height unlimited".
6922         * valprint.c (_initialize_valprint) <set print elements, set print
6923         repeats>: Document "unlimited".
6924
6925 2013-04-10  Pedro Alves  <palves@redhat.com>
6926
6927         * cli/cli-cmds.c (quit_command): Call query_if_trace_running
6928         instead of disconnect_tracing.
6929         * infcmd.c (detach_command, disconnect_command): Call
6930         query_if_trace_running.  Adjust.
6931         * top.c: Include "tracepoint.h".
6932         (quit_target): Delete.  Contents moved ...
6933         (quit_force): ... here.  Wrap each stage of teardown in
6934         TRY_CATCH.  Call disconnect_tracing before detaching.
6935
6936 2013-04-10  Hui Zhu  <hui@codesourcery.com>
6937             Yao Qi  <yao@codesourcery.com>
6938
6939         * configure.ac: Check libbabeltrace is installed.
6940         * config.in: Regenerate.
6941         * configure: Regenerate.
6942         * Makefile.in (LIBBABELTRACE): New.
6943         (CLIBS): Add LIBBABELTRACE.
6944         * ctf.c: Include "exec.h".
6945         (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
6946         (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
6947         (ctf_save_metadata_header): Define new type aliases in
6948         metadata.
6949         (ctf_write_header): Define event type "tsv_def" and "tp_def"
6950         in metadata.  Start a new faked packet for trace status.
6951         (ctf_write_status): Write trace status to CTF.
6952         (ctf_write_uploaded_tsv): Write TSV to CTF.
6953         (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
6954         (ctf_write_definition_end): End the faked packet.
6955
6956         (ctx, ctf_iter, trace_dirname): New.
6957         (start_pos): New variable.
6958         (ctf_destroy, ctf_open_dir, ctf_open): New.
6959         (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
6960         macros.
6961         (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
6962         (ctf_fetch_registers, ctf_xfer_partial): New.
6963         (ctf_get_trace_state_variable_value): New.
6964         (ctf_get_tpnum_from_frame_event): New.
6965         (ctf_get_traceframe_address): New.
6966         (ctf_trace_find, ctf_has_stack): New.
6967         (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
6968         (ctf_get_trace_status, ctf_read_status): New.
6969         (_initialize_ctf): New.
6970         * tracepoint.c (get_tracepoint_number): New
6971         (get_uploaded_tsv): Remove 'static'.
6972         (struct traceframe_info, trace_regblock_size): Move it to ...
6973         * tracepoint.h: ... here.
6974         (get_tracepoint_number): Declare it.
6975         (get_uploaded_tsv): Declare it.
6976
6977         * NEWS: Mention new configure option.
6978
6979 2013-04-10  Pedro Alves  <palves@redhat.com>
6980             Hui Zhu  <hui@codesourcery.com>
6981
6982         * breakpoint.c (dprintf_re_set): New.
6983         (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
6984         to dprintf_re_set.
6985
6986 2013-04-09  Joel Brobecker  <brobecker@adacore.com>
6987
6988         * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
6989         Remove solib-svr4.o from the list.
6990
6991 2013-04-09  Joel Brobecker  <brobecker@adacore.com>
6992
6993         * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
6994         Use gdb_assert_not_reached instead of invalid boolean expression.
6995
6996 2013-04-09  Pedro Alves  <palves@redhat.com>
6997
6998         * remote.c (unpush_and_perror): New function.
6999         (readchar, remote_serial_write): Use it.
7000
7001 2013-04-09  Markus Metzger  <markus.t.metzger@intel.com>
7002
7003         * NEWS: Mention new btrace RSP packets.
7004
7005 2013-04-08  Tom Tromey  <tromey@redhat.com>
7006
7007         * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
7008         long.
7009
7010 2013-04-08  Tom Tromey  <tromey@redhat.com>
7011
7012         * maint.c (print_bfd_section_info): Print the section index.
7013         * symmisc.c (dump_msymbols): Print the section index.
7014
7015 2013-04-08  Tom Tromey  <tromey@redhat.com>
7016
7017         PR symtab/8424:
7018         * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
7019         SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
7020         * breakpoint.c (resolve_sal_pc): Update.
7021         * elfread.c (elf_gnu_ifunc_record_cache): Update.
7022         * findvar.c (struct minsym_lookup_data) <objfile>: New field.
7023         (minsym_lookup_iterator_cb): Use it.
7024         (default_read_var_value): Update.
7025         * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
7026         Update.
7027         * infcmd.c (jump_command): Update.
7028         * linespec.c (minsym_found): Update.
7029         * maint.c (maintenance_translate_address): Update.
7030         * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
7031         (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
7032         * parse.c (write_exp_msymbol): Update.
7033         * printcmd.c (address_info): Update.
7034         * psymtab.c (find_pc_sect_psymbol): Update.
7035         (fixup_psymbol_section): Check SYMBOL_SECTION, not
7036         SYMBOL_OBJ_SECTION.
7037         (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
7038         Don't initialize SYMBOL_OBJ_SECTION.
7039         * spu-tdep.c (spu_catch_start): Update.
7040         * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
7041         * symmisc.c (dump_msymbols, print_symbol): Update.
7042         * symtab.c (fixup_section): Don't set 'obj_section'.  Change
7043         how fallback section is computed.
7044         (fixup_symbol_section): Update.
7045         (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
7046         Update.
7047         (allocate_symbol, initialize_symbol, allocate_template_symbol):
7048         Initialize SYMBOL_SECTION.
7049         * symtab.h (struct general_symbol_info) <section>: Update comment.
7050         <obj_section>: Remove.
7051         (SYMBOL_OBJ_SECTION): Add 'objfile' argument.  Rewrite.
7052         (SYMBOL_OBJFILE): New macro.
7053
7054 2013-04-08  Tom Tromey  <tromey@redhat.com>
7055
7056         * coffread.c (record_minimal_symbol): Update.
7057         * dbxread.c (record_minimal_symbol): Update.
7058         * elfread.c (record_minimal_symbol): Update.
7059         * machoread.c (macho_symtab_add_minsym): Update.
7060         * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
7061         Update.
7062         * minsyms.c (prim_record_minimal_symbol): Update.
7063         (prim_record_minimal_symbol_full): Remove 'bfd_section'
7064         argument.
7065         (prim_record_minimal_symbol_and_info): Likewise.
7066         * minsyms.h (prim_record_minimal_symbol_full)
7067         (prim_record_minimal_symbol_and_info): Update.
7068         * symtab.c (allocate_symbol, initialize_symbol)
7069         (allocate_template_symbol): Initialize SYMBOL_SECTION.
7070         * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
7071         Update.
7072
7073 2013-04-08  Tom Tromey  <tromey@redhat.com>
7074
7075         PR symtab/8423:
7076         * solib-som.c (som_solib_section_offsets): Use BFD section
7077         indices.  Set offsets for all sections.
7078         * somread.c (som_symtab_read): Compute BFD section for
7079         symbol.  Use prim_record_minimal_symbol_and_info.
7080         (som_symfile_read): Fix comment.
7081         (struct find_section_offset_arg): New.
7082         (find_section_offset, set_section_index): New functions.
7083         (som_symfile_offsets): Use set_section_index to compute
7084         section indices.
7085
7086 2013-04-08  Tom Tromey  <tromey@redhat.com>
7087
7088         * coffread.c (cs_to_section): Use gdb_bfd_section_index.
7089         * elfread.c (record_minimal_symbol, elf_symtab_read): Use
7090         gdb_bfd_section_index.
7091         * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
7092         New functions.
7093         * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
7094         Declare.
7095         * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
7096         Update.
7097         * objfiles.c (add_to_objfile_sections_full): New function.
7098         (add_to_objfile_sections): Use it.
7099         (build_section_table): Rewrite.
7100         (objfile_relocate1): Use gdb_bfd_section_index.  Update.
7101         * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
7102         (struct objfile) <sections>: Update comment.
7103         (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
7104         is NULL.
7105         (ALL_OBJSECTIONS): Use it.
7106         * solib-dsbt.c (dsbt_relocate_main_executable): Update.
7107         * solib-frv.c (frv_relocate_main_executable): Update.
7108         * solib-target.c (solib_target_relocate_section_addresses):
7109         Use gdb_bfd_section_index.
7110         * symfile.c (build_section_addr_info_from_section_table):
7111         Use gdb_bfd_section_index.
7112         (build_section_addr_info_from_bfd, place_section): Likewise.
7113         * symtab.c (fixup_section): Update.
7114         * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
7115
7116 2013-04-08  Tom Tromey  <tromey@redhat.com>
7117
7118         * minsyms.h (struct bound_minimal_symbol): New.
7119         (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
7120         Remove objfile argument.
7121         (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
7122         Return bound_minimal_symbol.
7123         * minsyms.c (lookup_minimal_symbol_by_pc_1)
7124         (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
7125         Return bound_minimal_symbol.
7126         (in_gnu_ifunc_stub): Update.
7127         (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
7128         Remove 'objfile_p' argument.
7129         (lookup_solib_trampoline_symbol_by_pc): Update.
7130         * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
7131         arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
7132         c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
7133         glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
7134         i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
7135         linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
7136         mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
7137         ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
7138         stack.c, symtab.c, tui/tui-disasm.c: Update.
7139
7140 2013-04-08  Tom Tromey  <tromey@redhat.com>
7141
7142         * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
7143         Use symbol's obstack, not an objfile.
7144         * coffread.c (process_coff_symbol): Update.
7145         * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
7146         * jv-lang.c (add_class_symbol): Update.
7147         * mdebugread.c (new_symbol): Update.
7148         * minsyms.c (prim_record_minimal_symbol_full)
7149         (terminate_minimal_symbol_table): Update.
7150         * psymtab.c (add_psymbol_to_bcache): Clear entire symbol.  Update.
7151         * stabsread.c (define_symbol, read_enum_type): Update.
7152         * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
7153         Handle Ada specially.
7154         (symbol_set_language): Add 'obstack' argument.
7155         (symbol_set_names): Update.
7156         (symbol_natural_name, symbol_demangled_name): Always use
7157         ada_decode_symbol.
7158         * symtab.h (struct general_symbol_info)
7159         <language_specific::obstack>: New field.
7160         <ada_mangled>: New field.
7161         (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
7162         (symbol_set_language): Update.
7163
7164 2013-04-08  Tom Tromey  <tromey@redhat.com>
7165
7166         * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
7167         Take an obstack, not an objfile.
7168         (symbol_set_names): Update.
7169         * symtab.h (symbol_set_demangled_name): Update.
7170
7171 2013-04-08  Tom Tromey  <tromey@redhat.com>
7172
7173         * coffread.c (process_coff_symbol, coff_read_enum_type): Call
7174         allocate_symbol.
7175         * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
7176         (read_func_scope): Call allocate_template_symbol.
7177         (new_symbol_full): Call allocate_symbol.
7178         * jit.c (finalize_symtab): Call allocate_symbol.
7179         * jv-lang.c (add_class_symbol): Call allocate_symbol.
7180         * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
7181         * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
7182         (common_block_end): Call allocate_symbol.
7183         * symtab.c (allocate_symbol, initialize_symbol)
7184         (allocate_template_symbol): New functions.
7185         * symtab.c (allocate_symbol, initialize_symbol)
7186         (allocate_template_symbol): Declare.
7187         * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
7188
7189 2013-04-08  Pedro Alves  <palves@redhat.com>
7190             Keith Seitz  <keiths@redhat.com>
7191
7192         * breakpoint.c (create_breakpoint): Rename
7193         "parse_condition_and_thread" parameter to "parse_arg".  Update
7194         describing comment.  If !PARSE_ARG, then error out if ARG is not
7195         the empty string after extracting the location.
7196         * breakpoint.h (create_breakpoint): Rename
7197         "parse_condition_and_thread" parameter to "parse_arg".
7198
7199 2013-04-08  Aleksandar Ristovski  <aristovski@qnx.com
7200
7201         * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
7202
7203 2013-04-07  Yao Qi  <yao@codesourcery.com>
7204
7205         * remote.c (remote_trace_find): Change type of parameters 'addr1'
7206         and 'addr2' to CORE_ADDR.
7207         * target.c (update_current_target): Update.
7208         * target.h (struct target_ops) <to_trace_find>: Change parameter
7209         type to CORE_ADDR.
7210         * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
7211         'addr2' to CORE_ADDR.
7212         (tfile_trace_find): Likewise.
7213         (tfile_get_traceframe_address): Change return type to CORE_ADDR.
7214         Change local variable 'addr' to type CORE_ADDR.
7215         * tracepoint.h (tfind_1): Update declaration.
7216
7217 2013-04-06  Eli Zaretskii  <eliz@gnu.org>
7218
7219         * windows-nat.c (windows_get_absolute_argv0): Move from here...
7220         * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
7221         Include main.h.
7222
7223         * windows-nat.h (windows_get_absolute_argv0): Move prototype from
7224         here...
7225         * main.h (windows_get_absolute_argv0): ...to here.
7226
7227 2013-04-05  Doug Evans  <dje@google.com>
7228
7229         * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
7230         (read_cutu_die_from_dwo): Add comments.
7231         (read_structure_type): Update comment.
7232         (read_enumeration_type, read_namespace_type): Update comment.
7233         (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
7234
7235 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
7236
7237         Convert man pages to texinfo, new gdbinit.5 texinfo page.
7238         * Makefile.in (gdb.z): Remove.
7239         (install-only): Remove $(man1dir) and gdb.1 installation.
7240         * gdb.1: Remove.
7241
7242 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
7243
7244         Fix compatibility with Linux kernel 3.8.3.
7245         * linux-tdep.c (linux_find_memory_regions_full): Move variable number
7246         to more inner block.  Remove parsing of NUMBER from outer block.
7247         Parse NUMBER only if KEYWORD has been identified.
7248
7249 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
7250
7251         Fix variable name shadowing.
7252         * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
7253         filename to mapsfilename and update its uses.
7254
7255 2013-04-05  Eli Zaretskii  <eliz@gnu.org>
7256
7257         * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
7258         empty.  See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
7259         and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
7260         details of the problem.
7261
7262 2013-04-04  Pedro Alves  <palves@redhat.com>
7263             Hui Zhu  <hui@codesourcery.com>
7264
7265         * breakpoint.c (validate_commands_for_breakpoint): If validating a
7266         tracepoint, reset its STEP_COUNT and call validate_actionline.
7267
7268 2013-04-03  Doug Evans  <dje@google.com>
7269
7270         * dwarf2read.c (read_die_and_siblings_1): Renamed from
7271         read_die_and_siblings.
7272         (read_die_and_siblings): New function.
7273         (read_cutu_die_from_dwo): Dump die if requested.
7274         (read_die_and_children): Call read_full_die_1 and
7275         read_die_and_siblings_1.
7276         (read_full_die): Dump die if requested.
7277
7278         * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
7279
7280         * dwarf2read.c (struct dwo_file): New member comp_dir.
7281         Rename member name to dwo_name.  All uses updated.
7282         (hash_dwo_file): Include comp_dir in computation.
7283         (eq_dwo_file): Ditto.
7284         (lookup_dwo_file_slot): New arg comp_dir.  All callers updated.
7285         (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
7286
7287         * psymtab.c (read_psymtabs_with_fullname): Don't call
7288         psymtab_to_fullname if the basenames are different.
7289
7290 2013-04-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
7291
7292         * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
7293         New entry about "fullname" presence.
7294
7295 2013-04-03  Pedro Alves  <palves@redhat.com>
7296
7297         * NEWS: Mention x86_64/Cygwin as new native configuration.
7298
7299 2013-04-02  Doug Evans  <dje@google.com>
7300
7301         * dwarf2read.c (read_structure_type): Fix typo in comment.
7302
7303 2013-04-02  Pedro Alves  <palves@redhat.com>
7304
7305         * NEWS: Mention "set/show debug aarch64", "set/show debug
7306         coff-pe-read" and "set/show debug mach-o".
7307
7308 2013-04-02  Pedro Alves  <palves@redhat.com>
7309
7310         * NEWS: Mention "set/show remote trace-buffer-size-packet".
7311
7312 2013-04-02  Eli Zaretskii  <eliz@gnu.org>
7313
7314         * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
7315         gdb_string.h is now in common/.
7316
7317 2013-04-02  Pedro Alves  <palves@redhat.com>
7318
7319         * NEWS: Move "set debug notification" and "set trace-buffer-size"
7320         under "New options".
7321
7322 2013-04-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
7323
7324         Revert this patch:
7325         PR gdb/15275
7326         * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
7327
7328 2013-04-02  Pedro Alves  <palves@redhat.com>
7329
7330         PR gdb/15275
7331
7332         * remote.c (send_interrupt_sequence): Use remote_serial_write.
7333         (remote_serial_write): New function.
7334         (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
7335
7336 2013-04-01  Jiong Wang  <jiwang@tilera.com>
7337
7338         * NEWS: Mention TILE-Gx in "New native configurations" and
7339         "New targets" sections.
7340
7341 2013-04-01  Doug Evans  <dje@google.com>
7342
7343         * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
7344         (process_enumeration_scope): Simplify.
7345
7346         * dwarf2read.c (struct dwarf2_per_cu_data): Move member
7347         type_unit_group ...
7348         (struct signatured_type): ... to here.
7349         (sig_type_ptr): New typedef.
7350         (type_unit_group): Delete member 't.first_cu'.  Move member 'tus'
7351         out of union 't'.  All uses updated.
7352         (dw2_get_file_names_reader): Assert not called for a type unit.
7353         (dw2_get_file_names): Assert not called for a type unit or type
7354         unit group.
7355         (build_type_psymtabs_reader): Assert called for a type unit.
7356         (build_type_psymtab_dependencies): Assert called for a type unit group.
7357
7358         * dwarf2read.c (free_dwo_file): Add comment.
7359         (dwarf2_per_objfile_free): Unref dwp bfd.
7360
7361 2013-04-01  Aleksandar Ristovski  <aristovski@qnx.com>
7362
7363         * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
7364         (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
7365         (read_pe_exported_syms): Remove unused 'exportix'.
7366         (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
7367         'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
7368         'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
7369
7370 2013-04-01  Aleksandar Ristovski  <aristovski@qnx.com>
7371
7372         * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
7373         (print_it_watchpoint): Remove unused 'bl'.
7374         (say_where): Remove unused 'uiout'.
7375         (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
7376         (bkpt_breakpoint_hit): Remove unused 'b'.
7377         (internal_bkpt_print_it): Remove unused 'uiout'.
7378         * buildsym.c (augment_type_symtab): Remove unused 'i'.
7379
7380 2013-03-31  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
7381
7382         * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
7383         (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
7384
7385 2013-03-29  Doug Evans  <dje@google.com>
7386
7387         * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
7388         Delete arg is_dwp.  All callers updated.
7389         (open_dwp_file): New function.
7390         (open_and_init_dwp_file): Call it.
7391         (get_dwp_file): New function.
7392         (lookup_dwo_cutu): Call it.
7393
7394         * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
7395         unnecessary, cleanup.
7396
7397         * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
7398
7399         * dwarf2read.c (read_cutu_die_from_dwo): New function.
7400         (lookup_dwo_unit): New function.
7401         (init_cutu_and_read_dies): Move DWO handling to new functions.
7402
7403         * dwarf2read.c (struct signatured_type): Tweak comment.
7404         (struct dwo_unit): Tweak comment.
7405         (create_debug_types_hash_table): Tweak comment.  Reformat long line.
7406         (create_dwo_debug_info_hash_table): Tweak comment.
7407         (dwarf2_per_cu_offset_and_type): Tweak comment.
7408
7409         * dwarf2read.c (lookup_signatured_type): Remove complaint about
7410         missing .debug_types section.
7411
7412 2013-03-29  Yao Qi  <yao@codesourcery.com>
7413
7414         * corelow.c: Include "completer.h".
7415         (_initialize_corelow): Call add_target_with_completer with
7416         argument 'filename_completer'.
7417         * tracepoint.c: Likewise.
7418         * exec.c (_initialize_exec): Likewise.
7419         * target.c (add_target): Rename to ...
7420         (add_target_with_completer): ... this.  Call set_cmd_completer
7421         if parameter completer is not NULL.
7422         (add_target): New.
7423         * target.h: Include "command.h".
7424         (add_target_with_completer): Declare it.
7425
7426 2013-03-28  Joel Brobecker  <brobecker@adacore.com>
7427
7428         * coffread.c (is_import_fixup_symbol): New function.
7429         (record_minimal_symbol): Use is_import_fixup_symbol to
7430         detect import fixup symbols, and discard them.
7431
7432 2013-03-28  Doug Evans  <dje@google.com>
7433
7434         * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
7435         types hash table until we know we need it.
7436
7437         * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
7438         index numbers.
7439
7440         * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
7441         All callers updated.
7442         (dw2_print_stats): Print #read CUs too.
7443         (dump_die_shallow): Print signatured types better.
7444
7445         * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
7446         info_or_types_section to section.  All uses updated.
7447         (struct dwo_unit): Ditto.
7448
7449 2013-03-28  Pedro Alves  <palves@redhat.com>
7450
7451         * NEWS (New options): New section.
7452         (New options): Mention set/show remote trace-status-packet.
7453         * remote.c (PACKET_qTStatus): New enumeration value.
7454         (remote_get_trace_status): Skip sending qTStatus if the packet is
7455         disabled.  Use packet_ok.
7456         (_initialize_remote): Register a configuration command for
7457         qTStatus packet.
7458
7459 2013-03-28  Doug Evans  <dje@google.com>
7460
7461         * symfile.c (find_separate_debug_file): Add comment.
7462         (terminate_after_last_dir_separator): Tweak comment.
7463
7464         * dwarf2read.c (create_partial_symtab): Add forward decl.
7465         (create_partial_symtab): Move to be closer to other psymtab functions.
7466         (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
7467
7468         * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
7469         (compute_symtab_includes): Remove unnecessary forward declaration.
7470         (die_needs_namespace): Add comment marking group of functions for
7471         dwarf2 name computation.
7472
7473         * typeprint.c (_initialize_typeprint): Improve type help text.
7474
7475         * python/python.c (finish_python_initialization): Provide suggestion
7476         for how to tell gdb to find its python files.
7477
7478 2013-03-28  Pedro Alves  <palves@redhat.com>
7479
7480         PR gdb/15294
7481
7482         * source.c (_initialize_source): Change back "set listsize" to an
7483         integer command.
7484
7485 2013-03-27  Gareth McMullin  <gareth@blacksphere.co.nz>
7486
7487         PR gdb/15275
7488         * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
7489
7490 2013-03-27  Pedro Alves  <palves@redhat.com>
7491
7492         * top.c (history_size): Rename to ...
7493         (history_size_setshow_var): ... this.  Add comment.
7494         (show_commands): Use readline's 'history_length' instead of
7495         computing the history length by calling history_get in a loop.
7496         (set_history_size_command): Error out for sizes over INT_MAX.
7497         Restore previous history size on invalid size.
7498         (init_history): If HISTSIZE is negative, leave the history size as
7499         zero.  Add comments.
7500         (init_main): Adjust.
7501
7502 2013-03-27  Pedro Alves  <palves@redhat.com>
7503
7504         * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
7505         coff_pe_read" command to "set debug coff-pe-read".
7506
7507 2013-03-27  Markus Metzger  <markus.t.metzger@intel.com>
7508
7509         * record.c (command_size_to_target_size): Fix size comparison.
7510         Change parameter type from pointer to integer to integer.
7511         Update all users.
7512
7513 2013-03-27  Pierre Muller  <muller@sourceware.org>
7514
7515         * windows-nat.c (handle_output_debug_string): Avoid typecast
7516         from integer of different size warning.
7517
7518 2013-03-26  Joel Brobecker  <brobecker@adacore.com>
7519
7520         * windows-nat.c (handle_output_debug_string): Add empty line
7521         after local block variable definition.
7522
7523 2013-03-26  Pedro Alves  <palves@redhat.com>
7524
7525         * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
7526         (net_open): Make 'polls' local unsigned.
7527
7528 2013-03-26  Pedro Alves  <palves@redhat.com>
7529
7530         * remote.c (_initialize_remote): Make "set remoteaddresssize"
7531         a zuinteger command instead of uinteger.
7532
7533 2013-03-26  Pedro Alves  <palves@redhat.com>
7534
7535         * record-full.c (record_full_insn_num): Make it unsigned.
7536         (record_full_check_insn_num, record_full_message)
7537         (record_full_registers_change, record_full_xfer_partial): Remove
7538         record_full_insn_max_num check (it's always != 0).
7539         (record_full_info, record_full_restore): Use %u as format string.
7540         (): Use %u as format string.
7541         (set_record_full_insn_max_num): Remove record_full_insn_max_num
7542         check (it's always != 0).
7543
7544 2013-03-26  Pedro Alves  <palves@redhat.com>
7545
7546         * dcache.c (_initialize_dcache): Make the "set dcache line-size"
7547         and "set dcache size" commands zuinteger instead of uinteger.
7548
7549 2013-03-26  Pedro Alves  <palves@redhat.com>
7550
7551         * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
7552         command zuinteger instead of uinteger.
7553
7554 2013-03-26  Pedro Alves  <palves@redhat.com>
7555
7556         * coff-pe-read.c (_initialize_coff_pe_read): Make the command
7557         zuinteger instead of uinteger.
7558
7559 2013-03-26  Pedro Alves  <palves@redhat.com>
7560
7561         * record.c (record_insn_history_size_setshow_var)
7562         (record_call_history_size_setshow_var): New globals.
7563         (command_size_to_target_size): New function.
7564         (cmd_record_insn_history, cmd_record_call_history): Use
7565         command_size_to_target_size instead of cast.
7566         (validate_history_size, set_record_insn_history_size)
7567         (set_record_call_history_size): New functions.
7568         (_initialize_record): Install set_record_insn_history_size and
7569         set_record_call_history_size as "set" hooks of "set record
7570         instruction-history-size" and "set record
7571         function-call-history-size".
7572
7573 2013-03-26  Pedro Alves  <palves@redhat.com>
7574
7575         * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
7576         use with history_max_entries use.  Remove FIXME note.
7577
7578 2013-03-26  Markus Metzger  <markus.t.metzger@intel.com>
7579
7580         * record-btrace.c (record_btrace_close): Call
7581         record_btrace_auto_disable.
7582
7583 2013-03-25  Joel Brobecker  <brobecker@adacore.com>
7584
7585         * rs6000-nat.c (fixup_breakpoints): Delete declaration.
7586
7587 2013-03-25  Doug Evans  <dje@google.com>
7588
7589         * contrib/cc-with-tweaks.sh: Check exit code of dwp.
7590
7591 2013-03-25  Tom Tromey  <tromey@redhat.com>
7592
7593         PR symtab/11462:
7594         * c-exp.y (exp): Add new productions for destructors after '.' and
7595         '->'.
7596         (write_destructor_name): New function.
7597
7598 2013-03-25  Tom Tromey  <tromey@redhat.com>
7599
7600         PR c++/9197:
7601         * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
7602         value_struct_elt, not lookup_struct_elt_type.
7603         * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
7604         STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
7605         * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
7606
7607 2013-03-25  Yao Qi  <yao@codesourcery.com>
7608
7609         * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
7610         instead of '_mkdir'.
7611
7612 2013-03-23  Eli Zaretskii  <eliz@gnu.org>
7613
7614         * windows-nat.c (windows_get_absolute_argv0): New function.
7615         * windows-nat.h: Add its prototype.
7616
7617         * main.c (get_init_files): Use filename_ncmp instead of strncmp.
7618         Use IS_DIR_SEPARATOR instead of looking for a character inside
7619         SLASH_STRING.  Include filenames.h.
7620         (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
7621         relocate_gdb_directory works when passed gdb_program_name.
7622         Include windows-nat.h.
7623
7624 2013-03-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
7625
7626         * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
7627         * remote.c (trace_error): Remove the special handling of '2'.
7628         (readchar) <SERIAL_EOF>
7629         (readchar) <SERIAL_ERROR>
7630         (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
7631         (remote_get_trace_status): Call throw_exception if EX is
7632         TARGET_CLOSE_ERROR.
7633         * utils.c (perror_with_name): Rename to ...
7634         (throw_perror_with_name): ... here.  New parameter errcode, describe it
7635         in the function comment.
7636         (perror_with_name): New function wrapper.
7637         * utils.h (enum errors): New stub declaration.
7638         (throw_perror_with_name): New declaration.
7639
7640 2013-03-22  Pedro Alves  <palves@redhat.com>
7641             Yao Qi  <yao@codesourcery.com>
7642             Mark Kettenis  <kettenis@gnu.org>
7643
7644         * cli/cli-setshow.c (do_set_command) <var_uinteger>:
7645         Don't let the user set the value to UINT_MAX directly.
7646         <var_integer>: Don't let the user set the value to INT_MAX
7647         directly.
7648
7649 2013-03-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
7650
7651         * remote.c (remote_unpush_target): New function.
7652         (remote_open_1): Remove two pop_target calls, update one comment, add
7653         comment to target_preopen call.  Replace pop_target call by
7654         remote_unpush_target call.
7655         (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
7656         pop_target calls by remote_unpush_target calls.
7657
7658 2013-03-22  Pedro Alves  <palves@redhat.com>
7659
7660         * linux-nat.c (linux_child_follow_fork): Don't call
7661         linux_enable_event_reporting.
7662         (linux_handle_extended_wait): Don't call
7663         linux_enable_event_reporting.
7664
7665 2013-03-22  Pedro Alves  <palves@redhat.com>
7666
7667         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
7668         use it to rewrite the trampoline buffers with type gdb_byte[], and
7669         undefine the macro.  Remove char* cast.
7670
7671 2013-03-21  Doug Evans  <dje@google.com>
7672
7673         New commands "mt set per-command {space,time,symtab} {on,off}".
7674         * NEWS: Add entry.
7675         * event-top.c: #include "maint.h".
7676         * main.c: #include "maint.h".
7677         * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
7678         timeval-utils.h, maint.h, cli/cli-setshow.h.
7679         (per_command_time, per_command_space): New static globals.
7680         (per_command_symtab): New static global.
7681         (per_command_setlist, per_command_showlist): New static globals.
7682         (struct cmd_stats): Move here from utils.c.
7683         (set_per_command_time): Renamed from set_display_time in utils.c
7684         and moved here.  All callers updated.
7685         (set_per_command_space): Renamed from set_display_space in utils.c
7686         and moved here.  All callers updated.
7687         (count_symtabs_and_blocks): New function.
7688         (report_command_stats): Moved here from utils.c.  Add support for
7689         printing symtab stats.  Only print data if enabled before command
7690         executed.
7691         (make_command_stats_cleanup): Ditto.
7692         (sert_per_command_cmd, show_per_command_cmd): New functions.
7693         (_initialize_maint_cmds): Add new commands
7694         mt set per-command {space,time,symtab} {on,off}.
7695         * maint.h: New file.
7696         * top.c: #include "maint.h".
7697         * utils.c (reset_prompt_for_continue_wait_time): New function.
7698         (get_prompt_for_continue_wait_time): New function.
7699         * utils.h (reset_prompt_for_continue_wait_time): Declare
7700         (get_prompt_for_continue_wait_time): Declare.
7701         (make_command_stats_cleanup): Moved to maint.h.
7702         (set_display_time, set_display_space): Moved to maint.h and renamed
7703         to set_per_command_time, set_per_command_space.
7704         * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
7705         parse_binary_operation and made non-static.  Don't call error,
7706         just return an error marker.  All callers updated.
7707         * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
7708
7709 2013-03-21  Tom Tromey  <tromey@redhat.com>
7710
7711         * symfile.c (alloc_section_addr_info): Update header.  Don't set
7712         'num_sections' field.
7713         (build_section_addr_info_from_section_table): Set 'num_sections'.
7714         (build_section_addr_info_from_bfd): Likewise.
7715         (build_section_addr_info_from_objfile): Remove dead loop
7716         condition.
7717         (free_section_addr_info): Unconditionally call xfree.
7718         (relative_addr_info_to_section_offsets, addrs_section_sort)
7719         (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
7720         condition.
7721         (syms_from_objfile_1): Remove dead 'if' condition.  Check
7722         'num_sections'.
7723         (add_symbol_file_command): Set 'num_sections'.
7724         * symfile-mem.c (symbol_file_add_from_memory): Set
7725         'num_sections'.
7726         * somread.c (som_symfile_offsets): Remove dead loop condition.
7727         * machoread.c (macho_symfile_offsets): Remove dead 'if'.
7728         * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
7729
7730 2013-03-21  Tom Tromey  <tromey@redhat.com>
7731
7732         * tracepoint.h (decode_agent_options): Add 'trace_string'
7733         argument.
7734         * tracepoint.c (decode_agent_options): Add 'trace_string'
7735         argument.
7736         (validate_actionline): Update.
7737         (collect_symbol): Add 'trace_string' argument.
7738         (struct add_local_symbols_data) <trace_string>: New field.
7739         (do_collect_symbol): Update.
7740         (add_local_symbols): Add 'trace_string' argument.
7741         (encode_actions_1): Update.
7742         (trace_dump_actions): Update.
7743         * dwarf2loc.c (access_memory): Update.
7744         * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
7745         * ax-general.c (new_agent_expr): Update.
7746         * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
7747         (gen_trace_for_return_address): Add argument.
7748         (trace_kludge, trace_string_kludge): Remove.
7749         * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
7750         (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
7751         (gen_trace_for_var): Add 'trace_string' argument.
7752         (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
7753         (gen_printf, agent_eval_command_one): Update.
7754
7755 2013-03-21  Tom Tromey  <tromey@redhat.com>
7756
7757         PR exp/15109:
7758         * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
7759         Handle FILENAME token.
7760
7761 2013-03-21  Tom Tromey  <tromey@redhat.com>
7762
7763         * c-exp.y (YYPRINT): Define.
7764         (c_print_token): New function.
7765
7766 2013-03-21  Tom Tromey  <tromey@redhat.com>
7767
7768         * c-exp.y (%union) <sym, ivar, ivec>: Remove.
7769
7770 2013-03-21  Yao Qi  <yao@codesourcery.com>
7771
7772         * ctf.c: Include "gdb_stat.h".
7773         [USE_WIN32API]: New macro 'mkdir'.
7774         (ctf_start): Use permission bits macros if they are defined.
7775
7776 2013-03-20  Keith Seitz  <keiths@redhat.com>
7777
7778         * breakpoint.h (struct breakpoint): Add comment to
7779         extra_string indicating that this member is mallod'd.
7780         * breakpoint.c (base_breakpoint_dtor): Free extra_string.
7781
7782 2013-03-20  Pedro Alves  <palves@redhat.com>
7783
7784         PR gdb/15289
7785
7786         * cli/cli-setshow.c (do_set_command)
7787         <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
7788         the result of parsing the command argument.  Throw error if the
7789         value is greater than UINT_MAX.  Print the invalid value with
7790         plongest.
7791         <var_integer, var_zinteger>: Use LONGEST for variable holding the
7792         result of parsing the command argument.  Throw error if the value
7793         is greater than INT_MAX, not greater or equal.  Also throw error
7794         if the value is less than INT_MIN.  Print the invalid value with
7795         plongest.
7796         <var_zuinteger_unlimited>: Throw error if the value is greater
7797         than INT_MAX, not greater or equal.
7798         (do_show_command) <var_integer, var_zinteger,
7799         var_zuinteger_unlimited>: Use %d for printing int, not %u.
7800
7801 2013-03-20  Tom Tromey  <tromey@redhat.com>
7802
7803         * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
7804         if possible.
7805         * dwarf2read.c (read_func_scope): Remove old FIXME.
7806         * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
7807         not LOC_COMPUTED.
7808         * findvar.c (symbol_read_needs_frame, default_read_var_value):
7809         Unconditionally call via computed ops, if possible.
7810         * printcmd.c (address_info): Unconditionally call via computed ops,
7811         if possible.
7812         * stack.c (read_frame_arg): Unconditionally call via computed ops,
7813         if possible.
7814         * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
7815         * tracepoint.c (scope_info): Unconditionally call via computed ops,
7816         if possible.
7817
7818 2013-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
7819             Tom Tromey  <tromey@redhat.com>
7820
7821         PR symtab/8421:
7822         * coffread.c (coff_register_index): New global.
7823         (process_coff_symbol, coff_read_enum_type): Set
7824         SYMBOL_ACLASS_INDEX.
7825         (_initialize_coffread): Initialize new global.
7826         * dwarf2loc.c (locexpr_find_frame_base_location)
7827         (dwarf2_block_frame_base_locexpr_funcs)
7828         (loclist_find_frame_base_location)
7829         (dwarf2_block_frame_base_loclist_funcs): New.
7830         (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
7831         (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
7832         * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
7833         (dwarf2_block_frame_base_loclist_funcs): New.
7834         * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
7835         (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
7836         globals.
7837         (read_func_scope): Update.
7838         (fixup_go_packaging, mark_common_block_symbol_computed)
7839         (var_decode_location, new_symbol_full, dwarf2_const_value):
7840         Set SYMBOL_ACLASS_INDEX.
7841         (dwarf2_symbol_mark_computed): Likewise.  Add 'is_block' argument.
7842         (_initialize_dwarf2_read): Initialize new globals.
7843         * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
7844         * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
7845         * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
7846         globals.
7847         (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
7848         (_initialize_mdebugread): Initialize new globals.
7849         * psympriv.h (struct partial_symbol) <aclass>: Update comment.
7850         * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
7851         (stab_register_index, stab_regparm_index): New globals.
7852         (define_symbol, read_enum_type, common_block_end): Set
7853         SYMBOL_ACLASS_INDEX.
7854         (_initialize_stabsread): Initialize new globals.
7855         * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
7856         globals.
7857         (MAX_SYMBOL_IMPLS): New define.
7858         (register_symbol_computed_impl, register_symbol_block_impl)
7859         (register_symbol_register_impl)
7860         (initialize_ordinary_address_classes): New functions.
7861         (_initialize_symtab): Call initialize_ordinary_address_classes.
7862         * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
7863         (struct symbol_impl): New.
7864         (SYMBOL_ACLASS_BITS): New define.
7865         (struct symbol) <aclass, ops>: Remove fields.
7866         <aclass_index>: New field.
7867         (symbol_impls): Declare.
7868         (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
7869         (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
7870         (register_symbol_computed_impl, register_symbol_block_impl)
7871         (register_symbol_register_impl): Declare.
7872         (struct symbol_computed_ops): Add location_has_loclist.
7873         (struct symbol_block_ops): New.
7874         (SYMBOL_BLOCK_OPS): New.
7875         * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
7876
7877 2013-03-20  Tom Tromey  <tromey@redhat.com>
7878
7879         * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
7880         (print_partial_symbols, recursively_search_psymtabs): Use
7881         PSYMBOL_CLASS.
7882
7883 2013-03-20  Pierre Muller  <muller@sourceware.org>
7884
7885         * contrib/ari/gdb_ari.sh (OP eol rule): Also check
7886         addtion, subtraction, multiplication and division binary operator.
7887
7888 2013-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
7889
7890         Code cleanup.
7891         * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
7892         * bsd-kvm.c (bsd_kvm_close): Likewise.
7893         * bsd-uthread.c (bsd_uthread_close): Likewise.
7894         * corelow.c (core_close): Likewise.
7895         (core_close_cleanup): Remove parameter quitting from a caller.
7896         * event-top.c (async_disconnect): Likewise.
7897         * exec.c (exec_close_1): Remove parameter quitting.
7898         * go32-nat.c (go32_close): Likewise.
7899         * linux-nat.c (linux_nat_close): Remove parameter quitting.  Remove
7900         parameter quitting from a caller.
7901         * mips-linux-nat.c (super_close): Remove parameter quitting from the
7902         variable.
7903         (mips_linux_close): Remove parameter quitting.  Remove parameter
7904         quitting from a caller.
7905         * monitor.c (monitor_close): Remove parameter quitting.
7906         * monitor.h (monitor_close): Likewise.
7907         * record-btrace.c (record_btrace_close): Likewise.
7908         * record-full.c (record_full_close): Likewise.
7909         * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
7910         it also from fprintf_unfiltered.
7911         * remote-mips.c (mips_close): Remove parameter quitting.
7912         (mips_detach): Remove parameter quitting from a caller.
7913         * remote-sim.c (gdbsim_close): Remove parameter quitting.
7914         (gdbsim_close): Remove duplicate function comment.  Remove parameter
7915         quitting and remove it also from printf_filtered.
7916         * remote.c (remote_close): Remove parameter quitting.
7917         * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
7918         * target.c (update_current_target): Remove parameter int from to_close
7919         de_fault.
7920         (push_target, unpush_target, pop_target): Remove parameter quitting from
7921         a caller.
7922         (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
7923         Remove parameter quitting from a caller.
7924         (target_preopen): Remove parameter quitting from a caller.
7925         (target_close): Remove parameter quitting.  Remove parameter quitting
7926         from a caller two times.  Remove parameter quitting also from
7927         fprintf_unfiltered.
7928         * target.h (struct target_ops): Remove parameter quitting and as int
7929         from fields to_xclose and to_close.
7930         (extern struct target_ops current_target):
7931         (target_close, pop_all_targets): Remove parameter quitting.  Update the
7932         comment.
7933         (pop_all_targets_above): Remove parameter quitting.
7934         * top.c (quit_target): Remove parameter quitting from a caller.
7935         * tracepoint.c (tfile_close): Remove parameter quitting.
7936         * windows-nat.c (windows_close): Remove parameter quitting.
7937
7938 2013-03-20  Corinna Vinschen  <vinschen@redhat.com>
7939
7940         * windows-nat.c (handle_output_debug_string): Replace call
7941         to string_to_core_addr with call to strtoull.
7942
7943 2013-03-20  Yao Qi  <yao@codesourcery.com>
7944
7945         * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
7946         and write it to CTF metadata.
7947
7948 2013-03-19  Corinna Vinschen  <vinschen@redhat.com>
7949
7950         * windows-nat.c (handle_output_debug_string): Change type of n to
7951         SIZE_T to avoid crash on 64 bit systems.
7952
7953 2013-03-17  Eli Zaretskii  <eliz@gnu.org>
7954
7955         * python/python-internal.h (HAVE_SNPRINTF)
7956         [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
7957         about redefinition of snprintf by pyerrors.h.
7958
7959 2013-03-15  Steve Ellcey  <sellcey@mips.com>
7960
7961         * remote-sim.c (sim_command_completer): Make char arguments const.
7962
7963 2013-03-15  Tom Tromey  <tromey@redhat.com>
7964
7965         PR c++/15116:
7966         * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
7967
7968 2013-03-14  Tom Tromey  <tromey@redhat.com>
7969
7970         * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
7971         New fields.
7972         (get_file_crc): Move from symfile.c.
7973         (gdb_bfd_crc): New function.
7974         * gdb_bfd.h (gdb_bfd_crc): Declare.
7975         * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
7976         * symfile.c (get_file_crc): Move to gdb_bfd.c.
7977         (separate_debug_file_exists): Use gdb_bfd_crc.
7978
7979 2013-03-14  Tom Tromey  <tromey@redhat.com>
7980
7981         * symfile.c (get_debug_link_info): Remove.
7982         (find_separate_debug_file_by_debuglink): Use
7983         bfd_get_debug_link_info.
7984
7985 2013-03-14  Tom Tromey  <tromey@redhat.com>
7986
7987         * symtab.c (error_in_psymtab_expansion): New function.
7988         (lookup_symbol_aux_quick)
7989         (basic_lookup_transparent_type_quick): Remove "last resort"
7990         code.  Use error_in_psymtab_expansion.
7991
7992 2013-03-14  Doug Evans  <dje@google.com>
7993             Jan Kratochvil  <jan.kratochvil@redhat.com>
7994
7995         * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
7996         any successful compare_filenames_for_search or FILENAME_CMP.
7997         * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
7998         * symtab.c (iterate_over_some_symtabs): Likewise.
7999
8000 2013-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
8001
8002         * source.c (print_source_lines_base): Make a local copy of
8003         symtab_to_fullname.
8004
8005 2013-03-14  Hui Zhu  <hui_zhu@mentor.com>
8006             Jan Kratochvil  <jan.kratochvil@redhat.com>
8007
8008         * source.c (print_source_lines_base): Suppress "file" for TUI.
8009
8010 2013-03-14  Keith Seitz  <keiths@redhat.com>
8011             Alan Matsuoka  <alanm@redhat.com>
8012
8013         PR c++/15203
8014         PR c++/15210
8015         * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
8016         TYPE_CODE_METHOD.
8017         * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
8018         symbols.
8019
8020 2013-03-14  Yao Qi  <yao@codesourcery.com>
8021
8022         * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
8023         status to tfile if trace is stopped by command 'tstop'.
8024
8025 2013-03-14  Yao Qi  <yao@codesourcery.com>
8026
8027         * tracepoint.c (tfile_write_status): Write trace notes and user
8028         name into tfile if they are not NULL.
8029
8030 2013-03-14  Hui Zhu  <hui@codesourcery.com>
8031             Yao Qi  <yao@codesourcery.com>
8032
8033         * Makefile.in (REMOTE_OBS): Add ctf.o.
8034         (SFILES): Add ctf.c.
8035         (HFILES_NO_SRCDIR): Add ctf.h.
8036         * ctf.c, ctf.h: New files.
8037         * tracepoint.c: Include 'ctf.h'.
8038         (collect_pseudocommand): Remove static.
8039         (trace_save_command): Parse option "-ctf".
8040         Produce different trace file writers per option.
8041         Adjust output message.
8042         (trace_save_tfile, trace_save_ctf): New.
8043         * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
8044         * mi/mi-main.c: Include 'ctf.h'.
8045         (mi_cmd_trace_save): Handle option '-ctf'.  Call either
8046         trace_save_tfile or trace_save_ctf.
8047         * NEWS: Mention these changes.
8048
8049 2013-03-14  Yao Qi  <yao@codesourcery.com>
8050
8051         * tracepoint.c (trace_file_writer_xfree): New.
8052         (struct tfile_writer_data): New.
8053         (tfile_dtor, tfile_can_target_save, tfile_start): New.
8054         (tfile_write_header, tfile_write_regblock_type): New.
8055         (tfile_write_status, tfile_write_uploaded_tsv): New.
8056         (tfile_write_uploaded_tp, tfile_write_definition_end): New.
8057         (tfile_write_raw_data, (tfile_end): New.
8058         (tfile_write_ops): New global variable.
8059         (TRACE_WRITE_R_BLOCK): New macro.
8060         (TRACE_WRITE_M_BLOCK_HEADER): New macro.
8061         (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
8062         (TRACE_WRITE_V_BLOCK): New macro.
8063         (trace_save): Add extra one parameter WRITER.  Make it static.
8064         Use WRITER to writer trace.
8065         (tfile_trace_file_writer_new): New.
8066         (trace_save_command): Caller update.
8067         (trace_save_tfile): Write trace data in TFILE format.
8068         * tracepoint.h (struct trace_frame_write_ops): New.
8069         (struct trace_file_write_ops): New.
8070         (struct trace_file_writer): New.
8071         (trace_save): Remove its declaration.
8072         (trace_save_tfile): Declare it.
8073         * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
8074         instead of trace_save.
8075
8076 2013-03-13  Pedro Alves  <palves@redhat.com>
8077
8078         * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
8079
8080 2013-03-13  Pedro Alves  <palves@redhat.com>
8081
8082         * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
8083         commented out code.
8084         * demangle.c (current_demangling_style_string): Make it const.
8085         (set_demangling_command): Assert the demangling style is known.
8086         Remove all handling of unknown styles.  Set
8087         'current_demangling_style_string' to an element of the
8088         demangling_style_names array.
8089         (set_demangling_style): Delete.
8090         (_initialize_demangler): Set current_demangling_style_string to the
8091         element of the demangling_style_names array that corresponds to
8092         the default demangling style.  Remove FIXME note.  Don't call
8093         set_demangling_style.
8094         * gdb-demangle.h (set_demangling_style): Remove declaration.
8095
8096 2013-03-13  Pedro Alves  <palves@redhat.com>
8097
8098         * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
8099         fields const.
8100         (ada_make_symbol_completion_list): Make "text0" parameter const.
8101         * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
8102         * breakpoint.c (condition_completer): Make "text" and "word"
8103         parameters const.  Adjust.
8104         (check_tracepoint_command): Adjust to validate_actionline
8105         prototype change.
8106         (catch_syscall_completer): Make "text" and "word" parameters
8107         const.
8108         * cli/cli-cmds.c (show_user): Make "comname" local const.
8109         (valid_command_p): Make "command" parameter const.
8110         (alias_command): Make "alias_prefix" and "command_prefix" locals
8111         const.
8112         * cli/cli-decode.c (add_cmd): Make "name" parameter const.
8113         (add_alias_cmd): Make "name" and "oldname" parameters const.
8114         Adjust.  No longer make copy of OLDNAME.
8115         (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
8116         (add_setshow_cmd_full, add_setshow_enum_cmd)
8117         (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
8118         (add_setshow_filename_cmd, add_setshow_string_cmd)
8119         (add_setshow_string_noescape_cmd)
8120         (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
8121         (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
8122         (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
8123         (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
8124         Make "name" parameter const.
8125         (help_cmd): Rename "command" parameter to "arg".  New const local
8126         "command".
8127         (find_cmd): Make "command" parameter const.
8128         (lookup_cmd_1): Make "text" parameter pointer to const.  Adjust to
8129         deprecated_cmd_warning prototype change.
8130         (undef_cmd_error): Make "cmdtype" parameter const.
8131         (lookup_cmd): Make "line" parameter const.
8132         (deprecated_cmd_warning): Change type of "text" parameter to
8133         pointer to const char, from pointer to pointer to char.  Adjust.
8134         (lookup_cmd_composition): Make "text" parameter const.
8135         (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
8136         parameters const.
8137         * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
8138         const.
8139         * cli/cli-script.c (validate_comname): Make "tem" local const.
8140         (define_command): New const local "tem_c".  Use it in calls to
8141         lookup_cmd.
8142         (document_command): Make "tem" and "comfull" locals const.
8143         (show_user_1): Make "prefix" and "name" parameters const.
8144         * cli-script.h (show_user_1): Make "prefix" and "name" parameters
8145         const.
8146         * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
8147         (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
8148         (deprecated_cmd_warning, lookup_cmd_composition, add_com)
8149         (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
8150         (complete_on_enum, add_setshow_enum_cmd)
8151         (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
8152         (add_setshow_filename_cmd, add_setshow_string_cmd)
8153         (add_setshow_string_noescape_cmd)
8154         (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
8155         (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
8156         (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
8157         Change prototypes, constifying strings.
8158         * completer.c (noop_completer, filename_completer): Make "text"
8159         and "prefix" parameters const.
8160         (location_completer, expression_completer)
8161         (complete_line_internal): Make "text" and "prefix" parameters
8162         const and adjust.
8163         (command_completer, signal_completer): Make "text" and "prefix"
8164         parameters const.
8165         * completer.h (noop_completer, filename_completer)
8166         (expression_completer, location_completer, command_completer)
8167         (signal_completer): Change prototypes.
8168         * corefile.c (complete_set_gnutarget): Make "text" and "word"
8169         parameters const.
8170         * cp-abi.c (cp_abi_completer): Likewise.
8171         * expression.h (parse_expression_for_completion): Change
8172         prototype.
8173         * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
8174         parameters const.
8175         * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
8176         * infrun.c (handle_completer): Make "text" and "word" parameters
8177         const.
8178         * interps.c (interpreter_completer): Make "text" and "word"
8179         parameters const.
8180         * language.h (struct language_defn)
8181         <la_make_symbol_completion_list>: Make "text" and "word"
8182         parameters const.
8183         * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
8184         (parse_exp_in_context): Rename to ...
8185         (parse_exp_in_context_1): ... this.
8186         (parse_exp_in_context): Reimplement, with const hack from
8187         parse_exp_1.
8188         (parse_expression_for_completion): Make "string" parameter const.
8189         * printcmd.c (decode_format): Make "string_ptr" parameter pointer
8190         to pointer to const char.  Adjust.
8191         (print_command_1): Make "exp" parameter const.
8192         (output_command): Rename to ...
8193         (output_command_const): ... this.  Make "exp" parameter const.
8194         (output_command): Reimplement.
8195         (x_command): Adjust.
8196         (display_command): Rename "exp" parameter to "arg".  New "exp"
8197         local, const version of "arg".
8198         * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
8199         "cmd_name" local const.
8200         * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
8201         call.
8202         (cmdpy_completer): Make "text" and "word" parameters const.
8203         (gdbpy_parse_command_name): Make "prefix_text2" local const.
8204         * python/py-param.c (add_setshow_generic): Make "tmp_name" local
8205         const.
8206         * remote.c (_initialize_remote): Make "cmd_name" local const.
8207         * symtab.c (language_search_unquoted_string): Make "text" and "p"
8208         parameters const.  Adjust.
8209         (completion_list_add_fields): Make "sym_text", "text" and "word"
8210         parameters const.
8211         (struct add_name_data) <sym_text, text, word>: Make fields const.
8212         (default_make_symbol_completion_list_break_on): Make "text" and
8213         "word" parameters const.  Adjust locals.
8214         (default_make_symbol_completion_list)
8215         (make_symbol_completion_list, make_symbol_completion_type)
8216         (make_symbol_completion_list_fn): Make "text" and "word"
8217         parameters const.
8218         (make_file_symbol_completion_list): Make "text", "word" and
8219         "srcfile" parameters const.  Adjust locals.
8220         (add_filename_to_list): Make "text" and "word" parameters const.
8221         (struct add_partial_filename_data) <text, word>: Make fields
8222         const.
8223         (make_source_files_completion_list): Make "text" and "word"
8224         parameters const.
8225         * symtab.h (default_make_symbol_completion_list_break_on)
8226         (default_make_symbol_completion_list, make_symbol_completion_list)
8227         (make_symbol_completion_type enum type_code)
8228         (make_symbol_completion_list_fn make_file_symbol_completion_list)
8229         (make_source_files_completion_list): Change prototype.
8230         * top.c (execute_command): Adjust to pass pointer to pointer to
8231         const char to lookup_cmd, and to deprecated_cmd_warning prototype
8232         change.
8233         (set_verbose): Make "cmdname" local const.
8234         * tracepoint.c (decode_agent_options): Make "exp" parameter const,
8235         and adjust.
8236         (validate_actionline): Make "line" parameter a pointer to const
8237         char, and adjust.
8238         (encode_actions_1): Make "action_exp" local const, and adjust.
8239         (encode_actions): Adjust.
8240         (replace_comma): Delete.
8241         (trace_dump_actions): Make "action_exp" and "next_comma" locals
8242         const, and adjust.  Don't frob the action string while splitting
8243         it at commas.  Instead, make a copy of each split substring in
8244         turn.
8245         (trace_dump_command): Adjust to validate_actionline prototype
8246         change.
8247         * tracepoint.h (decode_agent_options, decode_agent_options)
8248         (encode_actions, validate_actionline): Change prototypes.
8249         * valprint.h (output_command): Delete declaration.
8250         (output_command_const): Declare.
8251         * value.c (function_destroyer): Cast const away in xfree call.
8252
8253 2013-03-13  Pedro Alves  <palves@redhat.com>
8254
8255         * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
8256         rather than casting 'const char * const *' to 'const char **'.
8257         * ada-lex.l (processInt): Make "trailer" local const.  Remove
8258         'const char **' cast.
8259         * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
8260         locals, and use those as strtol output pointer, instead than doing
8261         invalid casts to from 'const char **' to 'char **'.
8262         (_initialize_demangle): Remove cast.
8263         * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
8264         locals, and use those as strtol output pointer, instead than doing
8265         invalid casts to from 'const char **' to 'char **'.
8266         * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
8267         casts.
8268         * stap-probe.c (stap_parse_register_operand)
8269         (stap_parse_single_operand): Likewise.
8270
8271 2013-03-13  Yao Qi  <yao@codesourcery.com>
8272
8273         * tracepoint.c (tfile_get_trace_state_variable_value): Look for
8274         the last matched 'V' blcok in trace frame.
8275
8276 2013-03-12  Joel Brobecker  <brobecker@adacore.com>
8277
8278         * NEWS: Create a new section for the next release branch.
8279         Rename the section of the current branch, now that it has
8280         been cut.
8281
8282 2013-03-12  Joel Brobecker  <brobecker@adacore.com>
8283
8284         GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
8285         * version.in: Bump version to 7.6.50.20130312-cvs.
8286
8287 2013-03-12  Keith Seitz  <keiths@redhat.com>
8288
8289         * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
8290         * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
8291         Remove temporary copy of input string.
8292         (mi_execute_command_wrapper): Make "cmd" const.
8293         * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
8294         * mi/mi-parse.c (mi_parse_argv): Make "args" const.
8295         Use const strings.
8296         (mi_parse): Make "cmd" const.
8297         Use const strings.
8298         * mi/mi-parse.h (mi_parse): Make "cmd" const.
8299
8300 2013-03-12  Keith Seitz  <keiths@redhat.com>
8301
8302         * ada-lang.c (ada_read_renaming_var_value): Pass const
8303         pointer to expression string to parse_exp_1.
8304         (create_excep_cond_exprs): Likewise.
8305         * ax-gdb.c (agent_eval_command_one): Likewise.
8306         (maint_agent_printf_command): Likewise.
8307         Constify much of the string handling/parsing.
8308         * breakpoint.c (set_breakpoint_condition): Pass const
8309         pointer to expression string to parse_exp_1.
8310         (update_watchpoint): Likewise.
8311         (parse_cmd_to_aexpr): Constify string handling.
8312         Pass const pointer to parse_exp_1.
8313         (init_breakpoint_sal): Pass const pointer to parse_exp_1.
8314         (find_condition_and_thread): Likewise.
8315         Make TOK const.
8316         (watch_command_1): Make "arg" const.
8317         Constify string handling.
8318         Copy the expression string instead of changing the input
8319         string.
8320         (update_breakpoint_location): Pass const pointer to
8321         parse_exp_1.
8322         * eval.c (parse_and_eval_address): Make "exp" const.
8323         (parse_to_comma_and_eval): Make "expp" const.
8324         (parse_and_eval): Make "exp" const.
8325         * expression.h (parse_expression): Make argument const.
8326         (parse_exp_1): Make first argument const.
8327         * findcmd.c (parse_find_args): Treat "args" as const.
8328         * linespec.c (parse_linespec): Pass const pointer to
8329         linespec_expression_to_pc.
8330         (linespec_expression_to_pc): Make "exp_ptr" const.
8331         * parse.c (parse_exp_1): Make "stringptr" const.
8332         Make a copy of the expression to pass to parse_exp_in_context until
8333         this whole interface can be constified.
8334         (parse_expression): Make "string" const.
8335         * printcmd.c (ui_printf): Treat "arg" as const.
8336         Handle const strings.
8337         * tracepoint.c (validate_actionline): Pass const pointer to
8338         all calls to parse_exp_1.
8339         (encode_actions_1): Likewise.
8340         * value.h (parse_to_comma_and_eval): Make argument const.
8341         (parse_and_eval_address): Likewise.
8342         (parse_and_eval): Likewise.
8343         * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
8344         (varobj_set_value): Likewise.
8345         * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
8346         constify string handling.
8347         Pass const pointers to parse_and_eval_address and
8348         parse_to_comman_and_eval.
8349         * cli/cli-utils.c (skip_to_space): Rename to ...
8350         (skip_to_space_const): ... this. Handle const strings.
8351         * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
8352         skip_to_space_const.
8353         (skip_to_space_const): Declare.
8354         * common/format.c (parse_format_string): Make "arg" const.
8355         Handle const strings.
8356         * common/format.h (parse_format_string): Make "arg" const.
8357         * gdbserver/ax.c (ax_printf): Make "format" const.
8358         * python/python.c (gdbpy_parse_and_eval): Do not make a copy
8359         of the expression string.
8360
8361 2013-03-12  Hui Zhu  <hui@codesourcery.com>
8362
8363         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
8364
8365 2013-03-12  Yao Qi  <yao@codesourcery.com>
8366             Hui Zhu  <hui@codesourcery.com>
8367
8368         * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
8369         (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
8370         DW_OP_deref_size.
8371
8372 2013-03-12  Paul Hilfinger  <hilfingr@adacore.com>
8373
8374         * ada-lex.l (rules): Only recognize 'thread' as a
8375         delimiter when followed by numerals, as for c-exp.y.
8376         Use new rewind_to_char function to rewind the input for
8377         expression-delimiting tokens.
8378         (rewind_to_char): New function.
8379
8380 2013-03-11  Pedro Alves  <palves@redhat.com>
8381             Jan Kratochvil  <jan.kratochvil@redhat.com>
8382
8383         * configure: Regenerate.
8384         * configure.ac (check dynamic export flag): Link python test with
8385         $PYTHON_LIBS.
8386
8387 2013-03-11  Doug Evans  <dje@google.com>
8388             Keith Seitz  <keiths@redhat.com>
8389
8390         * linespec.c (find_linespec_symbols): Call find_function_symbols
8391         first, and then call lookup_prefix_sym/find_method.
8392
8393 2013-03-11  Pedro Alves  <palves@redhat.com>
8394
8395         * charset.c (convert_between_encodings): Don't cast between
8396         different pointer to pointer types.  Instead, make the 'inp' local
8397         be of the type iconv expects.
8398         (wchar_iterate): Don't cast between different pointer to pointer
8399         types.  Instead, use new pointer local of the type iconv expects.
8400         * target.c (target_read_stralloc, target_fileio_read_stralloc):
8401         Add new local of type char pointer, and use it to get a
8402         char/string view of the byte buffer, instead of casting between
8403         pointer to pointer types.
8404
8405 2013-03-11  Hafiz Abid Qadeer  <abidh@codesourcery.com>
8406
8407         * remote.c (remote_set_trace_buffer_size): Move != operator
8408         to the start of next line to fix an ARI warning.
8409
8410 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8411
8412         * NEWS: Add record changes.
8413
8414 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8415
8416         * record-btrace.c (btrace_insn_history): Omit the pc prefix in
8417         the instruction history disassembly.
8418         * disasm.c (dump_insns): Omit the pc prefix, if requested.
8419         * disasm.h (DISASSEMBLY_OMIT_PC): New.
8420
8421 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8422
8423         * Makefile.in (SFILES): Add record-btrace.c
8424         (COMMON_OBS): Add record-btrace.o
8425         * record-btrace.c: New.
8426         * objfiles.c: Include btrace.h.
8427         (free_objfile): call btrace_free_objfile.
8428
8429 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8430
8431         * target.c (target_call_history, target_call_history_from,
8432         target_call_history_range): New.
8433         * target.h (target_ops) <to_call_history, to_call_history_from,
8434         to_call_history_range>: New fields.
8435         (target_call_history, target_call_history_from,
8436         target_call_history_range): New declaration.
8437         * record.c (get_call_history_modifiers, cmd_record_call_history,
8438         record_call_history_size): New.
8439         (_initialize_record): Add the "record function-call-history" command.
8440         Add "set/show record function-call-history-size" commands.
8441         * record.h (record_print_flag): New.
8442
8443 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8444
8445         * target.h (target_ops) <to_insn_history, to_insn_history_from,
8446         to_insn_history_range>: New fields.
8447         (target_insn_history): New.
8448         (target_insn_history_from): New.
8449         (target_insn_history_range): New.
8450         * target.c (target_insn_history): New.
8451         (target_insn_history_from): New.
8452         (target_insn_history_range): New.
8453         * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
8454         (record_insn_history_size): New.
8455         (get_insn_number): New.
8456         (get_context_size): New.
8457         (no_chunk): New.
8458         (get_insn_history_modifiers): New.
8459         (cmd_record_insn_history): New.
8460         (_initialize_record): Add "set/show record instruction-history-size"
8461         command. Add "record instruction-history" command.
8462
8463 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8464
8465         * record.h (record_disconnect): New.
8466         (record_detach): New.
8467         (record_mourn_inferior): New.
8468         (record_kill): New.
8469         * record-full.c (record_disconnect, record_detach,
8470         record_mourn_inferior, record_kill): Move to...
8471         * record.c: ...here.
8472         (DEBUG): New.
8473         (record_stop): New.
8474         (record_unpush): New.
8475         (cmd_record_stop): Call record_stop. Replace unpush_target
8476         call with record_unpush call.
8477         (record_disconnect, record_detach): Assert that the target
8478         is of record stratum. Call record_unpush, record_stop, and
8479         DEBUG.
8480         (record_mourn_inferior, record_kill): Assert that the target
8481         is of record stratum. Call record_unpush and DEBUG.
8482
8483 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8484
8485         * record-full.h, record-full.c (record_memory_query): Rename
8486         to ...
8487         (record_full_memory_query): ...this. Update all users.
8488         (record_arch_list_add_reg): Rename to ...
8489         (record_full_arch_list_add_reg): ...this. Update all users.
8490         (record_arch_list_add_mem): Rename to ...
8491         (record_full_arch_list_add_mem): ...this. Update all users.
8492         (record_arch_list_add_end): Rename to ...
8493         (record_full_arch_list_add_end): ...this. Update all users.
8494         (record_gdb_operation_disable_set): Rename to ...
8495         (record_full_gdb_operation_disable_set): ...this.
8496         Update all users.
8497
8498 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8499
8500         * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
8501         (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
8502         (RECORD_IS_REPLAY): Renamed to ...
8503         (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
8504         (RECORD_FILE_MAGIC): Renamed to ...
8505         (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
8506         (record_mem_entry): Renamed to ...
8507         (record_full_mem_entry): ... this. Updated all users.
8508         (record_reg_entry): Renamed to ...
8509         (record_full_reg_entry): ... this. Updated all users.
8510         (record_end_entry): Renamed to ...
8511         (record_full_end_entry): ... this. Updated all users.
8512         (record_type) <record_end, record_reg, record_mem>: Renamed
8513         to ...
8514         (record_full_type) <record_full_end, record_full_reg,
8515         record_full_mem>: ... this. Updated all users.
8516         (record_entry): Renamed to ...
8517         (record_full_entry): ... this. Updated all users.
8518         (record_core_buf_entry): Renamed to ...
8519         (record_full_core_buf_entry): ... this. Updated all users.
8520         (record_core_regbuf): Renamed to ...
8521         (record_full_core_regbuf): ... this. Updated all users.
8522         (record_core_start): Renamed to ...
8523         (record_full_core_start): ... this. Updated all users.
8524         (record_core_end): Renamed to ...
8525         (record_full_core_end): ... this. Updated all users.
8526         (record_core_buf_list): Renamed to ...
8527         (record_full_core_buf_list): ... this. Updated all users.
8528         (record_first): Renamed to ...
8529         (record_full_first): ... this. Updated all users.
8530         (record_list): Renamed to ...
8531         (record_full_list): ... this. Updated all users.
8532         (record_arch_list_head): Renamed to ...
8533         (record_full_arch_list_head): ... this. Updated all users.
8534         (record_arch_list_tail): Renamed to ...
8535         (record_full_arch_list_tail): ... this. Updated all users.
8536         (record_stop_at_limit): Renamed to ...
8537         (record_full_stop_at_limit): ... this. Updated all users.
8538         (record_insn_max_num): Renamed to ...
8539         (record_full_insn_max_num): ... this. Updated all users.
8540         (record_insn_num): Renamed to ...
8541         (record_full_insn_num): ... this. Updated all users.
8542         (record_insn_count): Renamed to ...
8543         (record_full_insn_count): ... this. Updated all users.
8544         (record_ops): Renamed to ...
8545         (record_full_ops): ... this. Updated all users.
8546         (record_core_ops): Renamed to ...
8547         (record_full_core_ops): ... this. Updated all users.
8548         (set_record_cmdlist): Renamed to ...
8549         (set_record_full_cmdlist): ... this. Updated all users.
8550         (show_record_cmdlist): Renamed to ...
8551         (show_record_full_cmdlist): ... this. Updated all users.
8552         (record_cmdlist): Renamed to ...
8553         (record_full_cmdlist): ... this. Updated all users.
8554         (record_beneath_to_resume_ops): Renamed to ...
8555         (record_full_beneath_to_resume_ops): ... this. Updated all users.
8556         (record_beneath_to_resume): Renamed to ...
8557         (record_full_beneath_to_resume): ... this. Updated all users.
8558         (record_beneath_to_wait_ops): Renamed to ...
8559         (record_full_beneath_to_wait_ops): ... this. Updated all users.
8560         (record_beneath_to_wait): Renamed to ...
8561         (record_full_beneath_to_wait): ... this. Updated all users.
8562         (record_beneath_to_store_registers_ops): Renamed to ...
8563         (record_full_beneath_to_store_registers_ops): ... this.
8564         Updated all users.
8565         (record_beneath_to_store_registers): Renamed to ...
8566         (record_full_beneath_to_store_registers): ... this.
8567         Updated all users.
8568         (record_beneath_to_xfer_partial_ops): Renamed to ...
8569         (record_full_beneath_to_xfer_partial_ops): ... this.
8570         Updated all users.
8571         (record_beneath_to_xfer_partial): Renamed to ...
8572         (record_full_beneath_to_xfer_partial): ... this.
8573         Updated all users.
8574         (record_beneath_to_insert_breakpoint): Renamed to ...
8575         (record_full_beneath_to_insert_breakpoint): ... this.
8576         Updated all users.
8577         (record_beneath_to_stopped_by_watchpoint): Renamed to ...
8578         (record_full_beneath_to_stopped_by_watchpoint): ... this.
8579         Updated all users.
8580         (record_beneath_to_stopped_data_address): Renamed to ...
8581         (record_full_beneath_to_stopped_data_address): ... this.
8582         Updated all users.
8583         (record_beneath_to_async): Renamed to ...
8584         (record_full_beneath_to_async): ... this. Updated all users.
8585         (record_goto_insn): Renamed to ...
8586         (record_full_goto_insn): ... this. Updated all users.
8587         (record_save): Renamed to ...
8588         (record_full_save): ... this. Updated all users.
8589         (record_reg_alloc): Renamed to ...
8590         (record_full_reg_alloc): ... this. Updated all users.
8591         (record_reg_release): Renamed to ...
8592         (record_full_reg_release): ... this. Updated all users.
8593         (record_mem_alloc): Renamed to ...
8594         (record_full_mem_alloc): ... this. Updated all users.
8595         (record_mem_release): Renamed to ...
8596         (record_full_mem_release): ... this. Updated all users.
8597         (record_end_alloc): Renamed to ...
8598         (record_full_end_alloc): ... this. Updated all users.
8599         (record_end_release): Renamed to ...
8600         (record_full_end_release): ... this. Updated all users.
8601         (record_entry_release): Renamed to ...
8602         (record_full_entry_release): ... this. Updated all users.
8603         (record_list_release): Renamed to ...
8604         (record_full_list_release): ... this. Updated all users.
8605         (record_list_release_following): Renamed to ...
8606         (record_full_list_release_following): ... this.
8607         Updated all users.
8608         (record_list_release_first): Renamed to ...
8609         (record_full_list_release_first): ... this. Updated all users.
8610         (record_arch_list_add): Renamed to ...
8611         (record_full_arch_list_add): ... this. Updated all users.
8612         (record_get_loc): Renamed to ...
8613         (record_full_get_loc): ... this. Updated all users.
8614         (record_check_insn_num): Renamed to ...
8615         (record_full_check_insn_num): ... this. Updated all users.
8616         (record_arch_list_cleanups): Renamed to ...
8617         (record_full_arch_list_cleanups): ... this. Updated all users.
8618         (record_message): Renamed to ...
8619         (record_full_message): ... this. Updated all users.
8620         (record_message_wrapper): Renamed to ...
8621         (record_full_message_wrapper): ... this. Updated all users.
8622         (record_message_wrapper_safe): Renamed to ...
8623         (record_full_message_wrapper_safe): ... this. Updated all users.
8624         (record_gdb_operation_disable): Renamed to ...
8625         (record_full_gdb_operation_disable): ... this. Updated all users.
8626         (record_hw_watchpoint): Renamed to ...
8627         (record_full_hw_watchpoint): ... this. Updated all users.
8628         (record_exec_insn): Renamed to ...
8629         (record_full_exec_insn): ... this. Updated all users.
8630         (record_restore): Renamed to ...
8631         (record_full_restore): ... this. Updated all users.
8632         (record_async_inferior_event_token): Renamed to ...
8633         (record_full_async_inferior_event_token): ... this.
8634         Updated all users.
8635         (record_async_inferior_event_handler): Renamed to ...
8636         (record_full_async_inferior_event_handler): ... this.
8637         Updated all users.
8638         (record_core_open_1): Renamed to ...
8639         (record_full_core_open_1): ... this. Updated all users.
8640         (record_open_1): Renamed to ...
8641         (record_full_open_1): ... this. Updated all users.
8642         (record_open): Renamed to ...
8643         (record_full_open): ... this. Updated all users.
8644         (record_close): Renamed to ...
8645         (record_full_close): ... this. Updated all users.
8646         (record_resume_step): Renamed to ...
8647         (record_full_resume_step): ... this. Updated all users.
8648         (record_resumed): Renamed to ...
8649         (record_full_resumed): ... this. Updated all users.
8650         (record_execution_dir): Renamed to ...
8651         (record_full_execution_dir): ... this. Updated all users.
8652         (record_resume): Renamed to ...
8653         (record_full_resume): ... this. Updated all users.
8654         (record_get_sig): Renamed to ...
8655         (record_full_get_sig): ... this. Updated all users.
8656         (record_sig_handler): Renamed to ...
8657         (record_full_sig_handler): ... this. Updated all users.
8658         (record_wait_cleanups): Renamed to ...
8659         (record_full_wait_cleanups): ... this. Updated all users.
8660         (record_wait_1): Renamed to ...
8661         (record_full_wait_1): ... this. Updated all users.
8662         (record_wait): Renamed to ...
8663         (record_full_wait): ... this. Updated all users.
8664         (record_stopped_by_watchpoint): Renamed to ...
8665         (record_full_stopped_by_watchpoint): ... this. Updated all users.
8666         (record_disconnect): Renamed to ...
8667         (record_full_disconnect): ... this. Updated all users.
8668         (record_detach): Renamed to ...
8669         (record_full_detach): ... this. Updated all users.
8670         (record_mourn_inferior): Renamed to ...
8671         (record_full_mourn_inferior): ... this. Updated all users.
8672         (record_kill): Renamed to ...
8673         (record_full_kill): ... this. Updated all users.
8674         (record_stopped_data_address): Renamed to ...
8675         (record_full_stopped_data_address): ... this. Updated all users.
8676         (record_registers_change): Renamed to ...
8677         (record_full_registers_change): ... this. Updated all users.
8678         (record_store_registers): Renamed to ...
8679         (record_full_store_registers): ... this. Updated all users.
8680         (record_xfer_partial): Renamed to ...
8681         (record_full_xfer_partial): ... this. Updated all users.
8682         (record_breakpoint): Renamed to ...
8683         (record_full_breakpoint): ... this. Updated all users.
8684         (record_breakpoint_p): Renamed to ...
8685         (record_full_breakpoint_p): ... this. Updated all users.
8686         (record_breakpoints): Renamed to ...
8687         (record_full_breakpoints): ... this. Updated all users.
8688         (record_sync_record_breakpoints): Renamed to ...
8689         (record_full_sync_record_breakpoints): ... this.
8690         Updated all users.
8691         (record_init_record_breakpoints): Renamed to ...
8692         (record_full_init_record_breakpoints): ... this.
8693         Updated all users.
8694         (record_insert_breakpoint): Renamed to ...
8695         (record_full_insert_breakpoint): ... this. Updated all users.
8696         (record_remove_breakpoint): Renamed to ...
8697         (record_full_remove_breakpoint): ... this. Updated all users.
8698         (record_can_execute_reverse): Renamed to ...
8699         (record_full_can_execute_reverse): ... this. Updated all users.
8700         (record_get_bookmark): Renamed to ...
8701         (record_full_get_bookmark): ... this. Updated all users.
8702         (record_goto_bookmark): Renamed to ...
8703         (record_full_goto_bookmark): ... this. Updated all users.
8704         (record_async): Renamed to ...
8705         (record_full_async): ... this. Updated all users.
8706         (record_can_async_p): Renamed to ...
8707         (record_full_can_async_p): ... this. Updated all users.
8708         (record_is_async_p): Renamed to ...
8709         (record_full_is_async_p): ... this. Updated all users.
8710         (record_execution_direction): Renamed to ...
8711         (record_full_execution_direction): ... this. Updated all users.
8712         (record_info): Renamed to ...
8713         (record_full_info): ... this. Updated all users.
8714         (record_delete): Renamed to ...
8715         (record_full_delete): ... this. Updated all users.
8716         (record_is_replaying): Renamed to ...
8717         (record_full_is_replaying): ... this. Updated all users.
8718         (record_goto_entry): Renamed to ...
8719         (record_full_goto_entry): ... this. Updated all users.
8720         (record_goto_begin): Renamed to ...
8721         (record_full_goto_begin): ... this. Updated all users.
8722         (record_goto_end): Renamed to ...
8723         (record_full_goto_end): ... this. Updated all users.
8724         (record_goto): Renamed to ...
8725         (record_full_goto): ... this. Updated all users.
8726         (init_record_ops): Renamed to ...
8727         (init_record_full_ops): ... this. Updated all users.
8728         (record_core_resume): Renamed to ...
8729         (record_full_core_resume): ... this. Updated all users.
8730         (record_core_kill): Renamed to ...
8731         (record_full_core_kill): ... this. Updated all users.
8732         (record_core_fetch_registers): Renamed to ...
8733         (record_full_core_fetch_registers): ... this. Updated all users.
8734         (record_core_prepare_to_store): Renamed to ...
8735         (record_full_core_prepare_to_store): ... this. Updated all users.
8736         (record_core_store_registers): Renamed to ...
8737         (record_full_core_store_registers): ... this. Updated all users.
8738         (record_core_xfer_partial): Renamed to ...
8739         (record_full_core_xfer_partial): ... this. Updated all users.
8740         (record_core_insert_breakpoint): Renamed to ...
8741         (record_full_core_insert_breakpoint): ... this. Updated all users.
8742         (record_core_remove_breakpoint): Renamed to ...
8743         (record_full_core_remove_breakpoint): ... this. Updated all users.
8744         (record_core_has_execution): Renamed to ...
8745         (record_full_core_has_execution): ... this. Updated all users.
8746         (init_record_core_ops): Renamed to ...
8747         (init_record_full_core_ops): ... this. Updated all users.
8748         (cmd_record_restore): Renamed to ...
8749         (cmd_record_full_restore): ... this. Updated all users.
8750         (record_save_cleanups): Renamed to ...
8751         (record_full_save_cleanups): ... this. Updated all users.
8752         (cmd_record_start): Renamed to ...
8753         (cmd_record_full_start): ... this. Updated all users.
8754         (set_record_insn_max_num): Renamed to ...
8755         (set_record_full_insn_max_num): ... this. Updated all users.
8756         (set_record_command): Renamed to ...
8757         (set_record_full_command): ... this. Updated all users.
8758         (show_record_command): Renamed to ...
8759         (show_record_full_command): ... this. Updated all users.
8760         (_initialize_record): Renamed to ...
8761         (_initialize_record_full): ... this. Updated all users.
8762
8763 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8764
8765         * record.h: Split into this and ...
8766         * record-full.h: ... this.
8767         * record.c: Split into this and ...
8768         * record-full.c: ... this.
8769         * target.h (target_ops): Add new fields to_info_record,
8770         to_save_record, to_delete_record, to_record_is_replaying,
8771         to_goto_record_begin, to_goto_record_end, to_goto_record.
8772         (target_info_record): New.
8773         (target_save_record): New.
8774         (target_supports_delete_record): New.
8775         (target_delete_record): New.
8776         (target_record_is_replaying): New.
8777         (target_goto_record_begin): New.
8778         (target_goto_record_end): New.
8779         (target_goto_record): New.
8780         * target.c (target_info_record): New.
8781         (target_save_record): New.
8782         (target_supports_delete_record): New.
8783         (target_delete_record): New.
8784         (target_record_is_replaying): New.
8785         (target_goto_record_begin): New.
8786         (target_goto_record_end): New.
8787         (target_goto_record): New.
8788         * record.h: Declare struct cmd_list_element.
8789         (record_cmdlist): New declaration.
8790         (set_record_cmdlist): New declaration.
8791         (show_record_cmdlist): New declaration.
8792         (info_record_cmdlist): New declaration.
8793         (cmd_record_goto): New declaration.
8794         * record.c: Remove unnecessary includes.
8795         Include inferior.h.
8796         (cmd_record_goto): Remove declaration.
8797         (record_cmdlist): Now extern. Initialize.
8798         (set_record_cmdlist): Now extern. Initialize.
8799         (show_record_cmdlist): Now extern. Initialize.
8800         (info_record_cmdlist): Now extern. Initialize.
8801         (find_record_target): New.
8802         (require_record_target): New.
8803         (cmd_record_start): Update.
8804         (cmd_record_delete): Remove target-specific code.
8805         Call target_delete_record.
8806         (cmd_record_stop): Unpush any record target.
8807         (set_record_insn_max_num): Move to record-full.c
8808         (set_record_command): Add comment.
8809         (show_record_command): Add comment.
8810         (info_record_command): Update comment.
8811         Remove target-specific code.
8812         Call the record target's to_info_record.
8813         (cmd_record_start): New.
8814         (cmd_record_goto): Now extern.
8815         Remove target-specific code.
8816         Call target_goto_begin,  target_goto_end, or target_goto.
8817         (_initialize_record): Move record target ops initialization to
8818         record-full.c.
8819         Change "record" command help text.
8820         Move "record restore", "record set", and "record show" commands to
8821         record-full.c.
8822         * Makefile.in (SFILES): Add record-full.c.
8823         (HFILES_NO_SRCDIR): Add record-full.h.
8824         (COMMON_OBS): Add record-full.o.
8825         * amd64-linux-tdep.c: Include record-full.h instead of record.h.
8826         * arm-tdep.c: Include record-full.h.
8827         * i386-linux-tdep.c: Include record-full.h instead of record.h.
8828         * i386-tdep.c: Include record-full.h.
8829         * infrun.c: Include record-full.h.
8830         * linux-record.c: Include record-full.h.
8831         * moxie-tdep.c: Include record-full.h.
8832         * record-full.c: Include record-full.h.
8833         Change module comment.
8834         (set_record_full_cmdlist): New.
8835         (show_record_full_cmdlist): New.
8836         (record_full_cmdlist): New.
8837         (record_goto_insn): New declaration.
8838         (record_save): New declaration.
8839         (record_check_insn_num): Change query string.
8840         (record_info): New.
8841         (record_delete): New.
8842         (record_is_replaying): New.
8843         (record_goto_entry): New.
8844         (record_goto_begin): New.
8845         (record_goto_end): New.
8846         (record_goto): New.
8847         (init_record_ops): Update.
8848         (init_record_core_ops): Update.
8849         (cmd_record_save): Rename to record_save. Remove target and arg checks.
8850         (cmd_record_start): New.
8851         (set_record_insn_max_num): Moved from record.c
8852         (set_record_full_command): New.
8853         (show_record_full_command): New.
8854         (_initialize_record_full): New.
8855
8856 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8857
8858         * target.h (add_deprecated_target_alias): New.
8859         * target.c (add_deprecated_target_alias): New.
8860
8861 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8862
8863         * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
8864         and signal.h.
8865         (linux_supports_btrace): Add kernel and
8866         cpuid check.
8867         (kernel_supports_btrace): New function.
8868         (cpu_supports_btrace): New function.
8869         (intel_supports_btrace): New function.
8870
8871 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8872
8873         * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
8874         * remote.c: Include btrace.h.
8875         (struct btrace_target_info): New struct.
8876         (remote_supports_btrace): New function.
8877         (send_Qbtrace): New function.
8878         (remote_enable_btrace): New function.
8879         (remote_disable_btrace): New function.
8880         (remote_teardown_btrace): New function.
8881         (remote_read_btrace): New function.
8882         (init_remote_ops): Add btrace ops.
8883         (enum <unnamed>): Add btrace packets.
8884         (struct protocol_feature remote_protocol_features[]): Add btrace packets.
8885         (_initialize_remote): Add packet configuration for branch tracing.
8886
8887 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8888
8889         * features/btrace.dtd: New file.
8890         * Makefile.in (XMLFILES): Add btrace.dtd.
8891         * btrace.h (parse_xml_btrace): New declaration.
8892         * btrace.c: Include xml-support.h.
8893         (parse_xml_btrace): New function.
8894         (parse_xml_btrace_block): New function.
8895         (block_attributes): New struct.
8896         (btrace_attributes): New struct.
8897         (btrace_children): New struct.
8898         (btrace_elements): New struct.
8899
8900 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8901
8902         * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
8903         (amd64_linux_enable_btrace): New.
8904         (amd64_linux_disable_btrace): New.
8905         (amd64_linux_teardown_btrace): New.
8906         (_initialize_amd64_linux_nat): Initialize btrace ops.
8907         * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
8908         (i386_linux_enable_btrace): New.
8909         (i386_linux_disable_btrace): New.
8910         (i386_linux_teardown_btrace): New.
8911         (_initialize_i386_linux_nat): Initialize btrace ops.
8912         * config/i386/linux.mh: Add linux-btrace.o.
8913         * config/i386/linux64.mh: Add linux-btrace.o.
8914
8915 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8916
8917         * common/linux_btrace.h: New file.
8918         * common/linux_btrace.c: New file.
8919         * Makefile.in (SFILES): Add btrace.c.
8920         (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
8921         (COMMON_OBS): Add btrace.o.
8922         (linux-btrace.o): New rule.
8923
8924 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
8925
8926         * target.h: Include btrace.h.
8927         (struct target_ops) <to_supports_btrace, to_enable_btrace,
8928         to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
8929         * target.c (target_supports_btrace): New function.
8930         (target_enable_btrace): New function.
8931         (target_disable_btrace): New function.
8932         (target_teardown_btrace): New function.
8933         (target_read_btrace): New function.
8934         * btrace.h: New file.
8935         * btrace.c: New file.
8936         * Makefile.in: Add btrace.c.
8937         * gdbthread.h: Include btrace.h.
8938         (struct thread_info): Add btrace field.
8939         * thread.c: Include btrace.h.
8940         (clear_thread_inferior_resources): Call target_teardown_btrace.
8941         * common/btrace-common.h: New file.
8942
8943 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
8944
8945         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
8946         for CHILD, ignore PTRACE_KILL errors, move the inner block variable
8947         kill_status to outer block.
8948
8949 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
8950
8951         Fix entry-values if the callee called a noreturn function.
8952         * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
8953         get_frame_address_in_block.  Add new comment.
8954
8955 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
8956
8957         Fix entry-values in C++ across CUs.
8958         * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
8959         lookup_minimal_symbol.  Add a comment.
8960         * dwarf2read.c
8961         (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
8962         DW_AT_linkage_name.
8963
8964 2013-03-08  Yao Qi  <yao@codesourcery.com>
8965
8966         * tracepoint.c (_initialize_tracepoint): Indent the code.
8967
8968 2013-03-08  Pedro Alves  <palves@redhat.com>
8969
8970         * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
8971         (parse_find_args, find_command): Change type of pattern buffer
8972         locals to 'gdb_byte *'.
8973
8974 2013-03-08  Stan Shebs  <stan@codesourcery.com>
8975             Hafiz Abid Qadeer  <abidh@codesourcery.com>
8976
8977         * NEWS: Mention set and show trace-buffer-size commands.
8978         Mention new packet.
8979         * target.h (struct target_ops): New method
8980         to_set_trace_buffer_size.
8981         (target_set_trace_buffer_size): New macro.
8982         * target.c (update_current_target): Set up new method.
8983         * tracepoint.c (trace_buffer_size): New global.
8984         (start_tracing): Send it to the target.
8985         (set_trace_buffer_size): New function.
8986         (_initialize_tracepoint): Add new setshow for trace-buffer-size.
8987         * remote.c (remote_set_trace_buffer_size): New function.
8988         (_initialize_remote): Use it.
8989         (QTBuffer:size) New remote command.
8990         (PACKET_QTBuffer_size): New enum.
8991         (remote_protocol_features): Add an entry for
8992         PACKET_QTBuffer_size.
8993
8994 2013-03-08  Tom Tromey  <tromey@redhat.com>
8995
8996         * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
8997         variable.
8998
8999 2013-03-07  Pedro Alves  <palves@redhat.com>
9000
9001         * target.c (target_read_stralloc, target_fileio_read_alloc):
9002         *Cast pointer to 'gdb_byte *' in target call.
9003
9004 2013-03-07  Pedro Alves  <palves@redhat.com>
9005
9006         * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
9007         call.
9008
9009 2013-03-07  Keith Seitz  <keiths@redhat.com>
9010
9011         * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
9012         (trace_pass_command): Likewise.
9013         * cli/cli-cmds.c: Include cli/cli-utils.h.
9014         (source_command): Use skip-spaces.
9015         (disassemble_command): Likewise.
9016         * findcmd.c: Include cli/cli-utils.h.
9017         (parse_find_args): Use skip_spaces.
9018         * go32-nat.c: Include cli/cli-utils.h.
9019         (go32_sldt): Use skip_spaces.
9020         (go32_sgdt): Likewise.
9021         (go32_sidt): Likewise.
9022         (go32_pde): Likewise.
9023         (go32_pte): Likewise.
9024         (go32_pte_for_address): Likewise.
9025         * infcmd.c: Include cli/cli-utils.h.
9026         (registers_info): Use skip_spaces.
9027         * linux-tdep.c (read_mapping): Use skip_spaces_const.
9028         (linux_info_proc): Likewise.
9029         * linux-thread-db.c: Include cli/cli-utils.h.
9030         (info_auto_load_libthread_db): Use skip_spaces_const.
9031         * m32r-rom.c: Include cli/cli-utils.h.
9032         (m32r_upload_command): Use skip_spaces.
9033         * maint.c: Include cli/cli-utils.h.
9034         (maintenance_translate_address): Use skip_spaces.
9035         * mi/mi-parse.c: Include cli/cli-utils.h.
9036         (mi_parse_argv): Use skip_spaces.
9037         (mi_parse): Likewise.
9038         * minsyms.c: Include cli/cli-utils.h.
9039         (msymbol_hash_iw): Use skip_spaces_const.
9040         * objc-lang.c: Include cli/cli-utils.h.
9041         (parse_selector): Use skip_spaces.
9042         (parse_method): Likewise.
9043         * python/python.c: Include cli/cli-utils.h.
9044         (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
9045         (python_command)[HAVE_PYTHON]: Likewise.
9046         (python_interactive_command)[!HAVE_PYTHON]: Likewise.
9047         * remote-m32r-sdi.c: Include cli/cli-utils.h.
9048         (m32r_load): Use skip_spaces.
9049         * serial.c: Include cli/cli-utils.h.
9050         (serial_open): Use skip_spaces_const.
9051         * stack.c: Include cli/cli-utils.h.
9052         (parse_frame_specification_1): Use skip_spaces_const.
9053         * symfile.c: Include cli/cli-utils.h.
9054         (set_ext_lang_command): Use skip_spaces.
9055         * symtab.c: Include cli/cli-utils.h.
9056         (rbreak_command): Use skip_spaces.
9057         * thread.c (thread_name_command): Use skip_spaces.
9058         * tracepoint.c (validate_actionline): Use skip_spaces.
9059         (encode_actions_1): Likewise.
9060         (trace_find_range_command): Likewise.
9061         (trace_find_outside_command): Likewise.
9062         (trace_dump_actions): Likewise.
9063
9064 2013-03-07  Pedro Alves  <palves@redhat.com>
9065
9066         * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
9067         * expprint.c (print_subexp_standard): Likewise.
9068         * utils.c (host_char_to_target): Likewise.
9069         * valprint.c (generic_emit_char, generic_printstr): Likewise.
9070         * varobj.c (value_get_print_value): Change type of local to char*.
9071         Cast it gdb_byte * in call to language printer.
9072
9073 2013-03-07  Pedro Alves  <palves@redhat.com>
9074
9075         * charset.c (struct wchar_iterator) <input>: Change type to 'const
9076         gdb_byte *'.
9077         (make_wchar_iterator): Remove cast to char*.
9078         (wchar_iterate): Change type of local.
9079
9080 2013-03-07  Pedro Alves  <palves@redhat.com>
9081
9082         * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
9083         for 'regcache->register_status'.
9084
9085 2013-03-07  Pedro Alves  <palves@redhat.com>
9086
9087         * breakpoint.c (breakpoint_xfer_memory): Change type of local to
9088         int.
9089
9090 2013-03-07  Pedro Alves  <palves@redhat.com>
9091
9092         * stap-probe.c (handle_stap_probe): Add cast to char*.
9093
9094 2013-03-07  Pedro Alves  <palves@redhat.com>
9095
9096         * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
9097         RECORD_MSGRCV>: Pass a signed variable to
9098         regcache_raw_read_signed, instead of an unsigned one.
9099
9100 2013-03-07  Pedro Alves  <palves@redhat.com>
9101
9102         * remote-notif.c (notif_debug): Change type to int.
9103         * remote-notif.h (notif_debug): Likewise.
9104
9105 2013-03-07  Pedro Alves  <palves@redhat.com>
9106
9107         * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
9108
9109 2013-03-07  Pedro Alves  <palves@redhat.com>
9110
9111         * remote.c (hex2bin, bin2hex): Move extern declarations to ...
9112         * remote.h (hex2bin, bin2hex): ... here.
9113         * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
9114
9115 2013-03-07  Eli Zaretskii  <eliz@gnu.org>
9116
9117         * utils.c (initialize_utils): Improve doc strings of "set/show
9118         width", "set/show height", and "set/show pagination".
9119
9120 2013-03-06  Keith Seitz  <keiths@redhat.com>
9121
9122         * ax-gdb.c (gen_printf): Make FORMAT const.
9123         * ax-gdb.h (gen_printf): Likewise.
9124         * ax-general.c (ax_string): Make STR const.
9125         * ax.h (ax_string): Likewise.
9126
9127 2013-03-06  Doug Evans  <dje@google.com>
9128
9129         * elfread.c (elf_symfile_read): Move debugging printf to more
9130         logical location.
9131
9132 2013-03-06  Pedro Alves  <palves@redhat.com>
9133
9134         * python/py-utils.c (target_string_to_unicode): Delete function.
9135         * python/python-internal.h (target_string_to_unicode): Delete
9136         declaration.
9137
9138 2013-03-06  Pierre Muller  <muller@sourceware.org>
9139
9140         * linespec.c (get_current_search_block): ARI fix, use (void)
9141         for empty parameter list.
9142
9143 2013-03-05  Doug Evans  <dje@google.com>
9144
9145         * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
9146         of old ada_lookup_symbol_list.  In !full_search case, don't
9147         search superblocks.
9148         (ada_lookup_symbol_list): Delete arg full_search, all callers
9149         updated.  Call ada_lookup_symbol_list_worker.
9150         (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
9151         * ada-lang.h (ada_lookup_symbol_list): Update.
9152         * language.h (language_defn): Update comment for
9153         la_iterate_over_symbols.
9154         * linespec.c (iterate_over_file_blocks): New function.
9155         (iterate_over_all_matching_symtabs): Call it.
9156         (lookup_prefix_sym): Ditto.
9157         (get_current_search_block): New function.
9158         (get_search_block): Delete.
9159         (find_label_symbols): Call get_current_search_block.
9160         (add_matching_symbols_to_info): Call iterate_over_file_blocks.
9161         * symtab.c (iterate_over_symbols): Don't search superblocks.
9162
9163 2013-03-05  Yao Qi  <yao@codesourcery.com>
9164
9165         * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
9166         parameter VAR's type from "unsigned int" to "int".
9167         * command.h (var_zuinteger_unlimited): Update its comments.
9168         (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
9169
9170 2013-03-05  Corinna Vinschen  <vinschen@redhat.de>
9171
9172         * NEWS: Mention new target x86_64-*-cygwin*.
9173
9174 2013-03-05  Corinna Vinschen  <vinschen@redhat.de>
9175
9176         * configure.host: Add x86_64-*-cygwin* as host.
9177         * configure.tgt: Add x86_64-*-cygwin* as target.
9178         * config/i386/cygwin64.mh: New file.
9179
9180 2013-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
9181
9182         * linespec.c (decode_line_2): Fix duplicate request off by two message.
9183
9184 2013-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
9185
9186         * linespec.c (struct linespec_canonical_name): New.
9187         (struct linespec_state): Change canonical_names type to it.
9188         (add_sal_to_sals): Change variable canonical_name to canonical.  Change
9189         xrealloc element size.  Initialize the different CANONICAL fields.
9190         (canonical_to_fullform): New.
9191         (filter_results): Use it.  Add variables canonical, fullform and
9192         cleanup.
9193         (struct decode_line_2_item, decode_line_2_compare_items): New.
9194         (decode_line_2): Remove variables iter and item_names, add variables
9195         items and items_count.  Modify the code for these new variables.
9196
9197 2013-03-04  Corinna Vinschen  <vinschen@redhat.com>
9198
9199         * coff-pe-read.c (read_pe_exported_syms): Don't return without
9200         calling do_cleanup.
9201
9202 2013-03-04  Luis Machado  <lgustavo@codesourcery.com>
9203
9204         * tracepoint.c (build_traceframe_info): Add code for byte order.
9205
9206 2013-03-02  Kevin Buettner  <kevinb@redhat.com>
9207
9208         * v850-tdep.c: (v850e2_register_name): Revise system register
9209         names to match current V850E2M architecture specifications.
9210         Update register number enum comments too.
9211
9212 2013-03-01  Jiong Wang  <jiwang@tilera.com>
9213             Pedro Alves  <palves@redhat.com>
9214
9215         * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
9216         to END_ADDR.
9217         (tilegx_skip_prologue): Limit prologue analysis to section end.
9218
9219 2013-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
9220
9221         * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
9222         use it.
9223
9224 2013-03-01  Pedro Alves  <palves@redhat.com>
9225
9226         Use gdb_byte for bytes from the program being debugged.
9227
9228         * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
9229         Change type of local 'buf' to gdb_byte.
9230         * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
9231         * bfin-tdep.c (bfin_push_dummy_call): Likewise.
9232         * cris-tdep.c (cris_sigcontext_addr)
9233         (cris_sigtramp_frame_unwind_cache): Likewise.
9234         * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
9235         (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
9236         Likewise.
9237         * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
9238         * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
9239         (hppa32_hpux_search_dummy_call_sequence)
9240         (hppa_hpux_supply_save_state): Likewise.
9241         * hppa-linux-tdep.c (insns_match_pattern)
9242         (hppa_linux_find_global_pointer): Likewise.
9243         * hppa-tdep.c (hppa_in_function_epilogue_p)
9244         (skip_prologue_hard_way, hppa_frame_cache): Likewise.
9245         * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
9246         * i386fbsd-tdep.c (i386fbsd_supply_uthread)
9247         (i386fbsd_collect_uthread): Likewise.
9248         * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
9249         * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
9250         * ia64-tdep.c (examine_prologue, ia64_frame_cache)
9251         (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
9252         (ia64_sigtramp_frame_prev_register, ia64_access_reg)
9253         (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
9254         (ia64_libunwind_frame_prev_register)
9255         (ia64_libunwind_sigtramp_frame_this_id)
9256         (ia64_find_global_pointer_from_dynamic_section)
9257         (find_extant_func_descr, find_func_descr, ia64_dummy_id)
9258         (ia64_unwind_pc): Likewise.
9259         * iq2000-tdep.c (iq2000_store_return_value): Likewise.
9260         * m68hc11-tdep.c (m68hc11_push_dummy_call)
9261         (m68hc11_extract_return_value): Likewise.
9262         * m68klinux-nat.c (fetch_register, store_register): Likewise.
9263         * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
9264         (mep_get_insn, mep_push_dummy_call): Likewise.
9265         * mips-linux-tdep.c (mips_linux_get_longjmp_target)
9266         (mips_linux_in_dynsym_stub): Likewise.
9267         * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
9268         * ppc-linux-nat.c (fetch_register, store_register): Likewise.
9269         * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
9270         to gdb_byte.
9271         * remote-mips.c (mips_set_register): Likewise.
9272         * remote-sim.c (gdbsim_fetch_register): Likewise.
9273         * score-tdep.c (score7_fetch_inst): Change type of parameter
9274         'memblock' and local 'buf' to gdb_byte.
9275         (score7_malloc_and_get_memblock): Change return type to gdb_byte.
9276         Change type of local 'buf' to gdb_byte.  Adjust.
9277         (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
9278         to gdb_byte**.
9279         (score7_analyze_prologue): Change type of 'memblock' and
9280         'memblock_ptr' locals to gdb_byte*.
9281         * sh64-tdep.c (sh64_extract_return_value)
9282         (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
9283         * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
9284         * solib-pa64.c (pa64_solib_create_inferior_hook)
9285         (pa64_open_symbol_file_object): Remove local 'buf'.
9286         * solib-som.c (som_solib_create_inferior_hook, link_map_start)
9287         (som_open_symbol_file_object): Likewise.
9288         * solib-spu.c (spu_current_sos): Likewise.
9289         * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
9290         * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
9291         (spu_store_registers): Likewise.
9292         * target.c (debug_print_register): Likewise.
9293         * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
9294         * xstormy16-tdep.c (xstormy16_store_return_value)
9295         (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
9296         (xstormy16_find_jmp_table_entry): Likewise.
9297
9298 2013-03-01  Jiong Wang  <jiwang@tilera.com>
9299
9300         * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
9301         (tilegx_gdbarch_init): Install it.
9302
9303 2013-02-28  Tom Tromey  <tromey@redhat.com>
9304
9305         * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
9306         PyLong_Check.
9307
9308 2013-02-28  Doug Evans  <dje@google.com>
9309
9310         * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
9311         * python/python.c (gdbpy_find_pc_line): Ditto.
9312
9313 2013-02-28  Tom Tromey  <tromey@redhat.com>
9314
9315         * contrib/excheck.py: New file.
9316         * contrib/exsummary.py: New file.
9317         * contrib/gcc-with-excheck: New file.
9318
9319 2013-02-28  Tom Tromey  <tromey@redhat.com>
9320
9321         * python/python.c (gdbpy_print_stack): Call begin_line and
9322         fprintf_filtered inside TRY_CATCH.
9323
9324 2013-02-28  Tom Tromey  <tromey@redhat.com>
9325
9326         * python/python.c (gdbpy_find_pc_line): Call find_pc_line
9327         inside TRY_CATCH.
9328
9329 2013-02-28  Tom Tromey  <tromey@redhat.com>
9330
9331         * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
9332         frame_object_to_frame_info inside TRY_CATCH.
9333
9334 2013-02-28  Tom Tromey  <tromey@redhat.com>
9335
9336         * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
9337         TRY_CATCH.
9338
9339 2013-02-28  Tom Tromey  <tromey@redhat.com>
9340
9341         * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
9342
9343 2013-02-27  Corinna Vinschen  <vinschen@redhat.com>
9344
9345         * windows-nat.c: Throughout, fix format strings and casts of
9346         printf-like functions to avoid type related warnings on all
9347         platforms.
9348         (handle_output_debug_string): Fetch context information address
9349         from debug string using string_to_core_addr.
9350
9351 2013-02-27  Jiong Wang  <jiwang@tilera.com>
9352
9353         * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
9354         * regformats/reg-tilegx32.dat: New.
9355
9356 2013-02-27  Jiong Wang  <jiwang@tilera.com>
9357
9358         * configure.tgt (tilegx-*-linux*): Enable gdbserver.
9359
9360 2013-02-27  Jiong Wang  <jiwang@tilera.com>
9361
9362         * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
9363
9364 2013-02-27  Yao Qi  <yao@codesourcery.com>
9365             Pedro Alves  <palves@redhat.com>
9366
9367         * tracepoint.c (tfile_trace_find): For tfind
9368         pc/tp/range/outside, look for the next trace frame instead of
9369         always starting from frame 0.
9370
9371 2013-02-26  Anthony Green  <green@moxielogic.com>
9372
9373         * configure.tgt: Add support for moxie-*-rtems* target.
9374
9375 2013-02-25  Pedro Alves  <palves@redhat.com>
9376
9377         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
9378         warning text.
9379
9380 2013-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
9381
9382         * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
9383         if $fp is used as the virtual frame pointer.
9384
9385 2013-02-23  Alan Modra  <amodra@gmail.com>
9386
9387         * elfread.c (elf_symtab_read): Do not use udata.p here to find
9388         symbol size.
9389         * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
9390         * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
9391         * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
9392         * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
9393
9394 2013-02-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
9395
9396         Code cleanup.
9397         * elfread.c (build_id_bfd_get): Make the return type const.
9398         (build_id_verify): Make the check parameter const.
9399         (build_id_to_debug_filename): Make the build_id parameter and variable
9400         data const.
9401         (find_separate_debug_file_by_buildid): Make the variable build_id const.
9402
9403 2013-02-21  Alan Modra  <amodra@gmail.com>
9404
9405         * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
9406
9407 2013-02-20  Siva Chandra Reddy  <sivachandra@google.com>
9408
9409         Add a new method 'disassemble' to gdb.Architecture class.
9410         * python/py-arch.c (archpy_disassmble): Implementation of the
9411         new method gdb.Architecture.disassemble.
9412         (arch_object_methods): Add entry for the new method.
9413
9414 2013-02-20  Jiong Wang  <jiwang@tilera.com>
9415
9416         * MAINTAINERS (Write After Approval): Add myself to the list.
9417
9418 2013-02-19  Pedro Alves  <palves@redhat.com>
9419
9420         Garbage collect 'struct monitor_ops'::load_routine.
9421
9422         * monitor.h (struct monitor_ops) <load_routine>: Remove field.
9423         * monitor.c (monitor_load): No longer call
9424         current_monitor->load_routine.
9425         * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
9426         * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
9427         * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
9428
9429 2013-02-19  Pedro Alves  <palves@redhat.com>
9430
9431         PR gdb/15161
9432
9433         Harmonize with generic_load.
9434
9435         * monitor.c: Include "readline/readline.h".
9436         (monitor_load): Rename parameter 'file' to 'args'.  Use build_argv
9437         instead of sscanf.  Use CORE_ADDR/strtoulst instead of unsigned
9438         long/strtol for the 'load_offset' local.  Error out if no argument
9439         is given or if too many arguments are given.  Tilde expand the
9440         passed in file name.
9441
9442 2013-02-19  Kai Tietz  <ktietz@redhat.com>
9443
9444         PR gdb/15161
9445         * symfile.c (load_section_data): Change type of load_offset
9446         to CORE_ADDR.
9447         (generic_load): User strtoulst instead of strtoul for conversion
9448         of load_offset.
9449
9450 2013-02-19  Jiong Wang  <jiwang@tilera.com>
9451
9452         * tilegx-tdep.c (tilegx_analyze_prologue): add check for
9453          for return address, "lr" register, saved on stack.
9454         * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
9455         after we invoke tilegx_analyze_prologue.
9456
9457 2013-02-19  Jiong Wang  <jiwang@tilera.com>
9458
9459         * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
9460
9461 2013-02-19  Jiong Wang  <jiwang@tilera.com>
9462
9463         * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
9464
9465 2013-02-19  Jiong Wang  <jiwang@tilera.com>
9466
9467         * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
9468         (tilegx_write_pc): New function.
9469         (tilegx_cannot_reference_register): Return zero if REGNO
9470         is TILEGX_FAULTNUM_REGNUM.
9471         (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
9472         (tilegx_register_name): Add handling of "faultnum" register.
9473         * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
9474         * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
9475         handling of TILEGX_FAULTNUM_REGNUM.
9476         * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
9477
9478 2013-02-19  Jiong Wang  <jiwang@tilera.com>
9479
9480         * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
9481         should be aligned to 64bit.
9482
9483 2013-02-19  Kai Tietz  <ktietz@redhat.com>
9484
9485         * windows-nat.c (windows_xfer_memory): Fix debug-output
9486         for LLP64.
9487
9488 2013-02-19  Lei Liu  <lei.liu2@windriver.com>
9489
9490         * mips-linux-nat.c (mips64_linux_regsets_store_registers):
9491         Don't check DSP register number if HAVE_DSP is not set.
9492
9493 2013-02-19  Alan Modra  <amodra@gmail.com>
9494
9495         * elfread.c (struct build_id): Delete.  Use struct elf_build_id
9496         throughout file instead.
9497         (build_id_bfd_get): Update to use new elf_tdata build_id field.
9498         Don't xmalloc return value.
9499         (build_id_verify): Similarly.  Don't xfree.
9500         (build_id_to_debug_filename): Update.
9501         (find_separate_debug_file_by_buildid): Update, don't xfree.
9502
9503 2013-02-18  Tom Tromey  <tromey@redhat.com>
9504
9505         PR gdb/15102:
9506         * dwarf2read.c (read_subrange_type): Use result of
9507         'check_typedef'.
9508
9509 2013-02-16  Yuanhui Zhang  <asmwarrior@gmail.com>
9510
9511         * frame.c: Remove one extra white space after #include
9512         directive.
9513
9514 2013-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
9515
9516         * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
9517
9518 2013-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
9519
9520         * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
9521         and dir commands into an if block.
9522
9523 2013-02-15  Sanimir Agovic  <sanimir.agovic@intel.com>
9524
9525         * python/py-breakpoint (struct pybp_code):  Use int instead of
9526         enum type_code.
9527
9528 2013-02-15  Pedro Alves  <pedro@codesourcery.com>
9529             Hafiz Abid Qadeer  <abidh@codesourcery.com>
9530
9531         * NEWS: Mention new field "trace-file".
9532         * tracepoint.c (trace_status_mi): Output "trace-file" field.
9533         (tfile_open): Record the trace file's filename in the trace
9534         status.
9535         (tfile_files_info): Mention the name of the trace file.
9536         Check the "filename" field explicitely.
9537         (trace_status_command): Explicitely check "filename" field.
9538         (trace_find_command): Ditto.
9539         (trace_find_pc_command): Ditto.
9540         (trace_find_tracepoint_command): Ditto.
9541         (trace_find_line_command): Ditto.
9542         (trace_find_range_command): Ditto.
9543         (trace_find_outside_command): Ditto.
9544         * tracepoint.h (struct trace_status) <from_file>: Rename it
9545         to "filename" and make it hold the trace file's filename
9546         instead of a boolean.
9547         * remote.c (remote_get_trace_status): Initialize "filename"
9548         field with NULL instead of 0.
9549
9550 2013-02-15  Yao Qi  <yao@codesourcery.com>
9551
9552         * remote.c: Fix a typo.
9553
9554 2013-02-14  Pierre Muller  <muller@sourceware.org>
9555
9556         * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
9557
9558 2013-02-14  Pedro Alves  <palves@redhat.com>
9559
9560         * utils.c (savestring): Don't #undef it.  Move function to
9561         common/common-utils.c.
9562         * common/common-utils.c: Include gdb_string.h.
9563         (savestring): Move here from utils.c.
9564         * common/common-utils.h (savestring): Declare.
9565
9566 2013-02-14  Pedro Alves  <palves@redhat.com>
9567
9568         * utils.c (savestring): Rename parameter 'size' to 'len'.
9569
9570 2013-02-14  Pedro Alves  <palves@redhat.com>
9571             Yufeng Zhang  <yufeng.zhang@arm.com>
9572
9573         * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
9574         (aarch64_inferior_data, struct aarch64_inferior_data):
9575         Delete.
9576         (struct aarch64_process_info): New.
9577         (aarch64_process_list): New global.
9578         (aarch64_find_process_pid, aarch64_add_process)
9579         (aarch64_process_info_get): New functions.
9580         (aarch64_inferior_data_get): Delete.
9581         (aarch64_process_info_get): New function.
9582         (aarch64_forget_process): New function.
9583         (aarch64_get_debug_reg_state): New parameter 'pid'.  Reimplement.
9584         (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
9585         aarch64_get_debug_reg_state.
9586         (aarch64_notify_debug_reg_change): Use iterate_over_lwps
9587         instead of linux_nat_iterate_watchpoint_lwps.
9588         (aarch64_linux_new_fork): New function.
9589         (aarch64_linux_child_post_startup_inferior): Use
9590         aarch64_forget_process instead of aarch64_init_debug_reg_state.
9591         (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
9592         (aarch64_linux_remove_hw_breakpoint)
9593         (aarch64_handle_aligned_watchpoint)
9594         (aarch64_handle_unaligned_watchpoint)
9595         (aarch64_linux_insert_watchpoint)
9596         (aarch64_linux_remove_watchpoint)
9597         (aarch64_linux_stopped_data_address): Adjust to pass the current
9598         process id to aarch64_debug_reg_state.
9599         (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
9600         linux_nat_new_fork hook, and aarch64_forget_process as
9601         linux_nat_forget_process hook; remove the call to
9602         register_inferior_data_with_cleanup.
9603
9604 2013-02-14  Pedro Alves  <palves@redhat.com>
9605
9606         * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
9607         EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
9608         lval_memory.
9609
9610 2013-02-14  Pedro Alves  <pedro@codesourcery.com>
9611             Hafiz Abid Qadeer  <abidh@codesourcery.com>
9612
9613         * tracepoint.h (validate_trace_state_variable_name): Declare.
9614         * tracepoint.c (validate_trace_state_variable_name): New.
9615         (trace_variable_command): Parse the trace state variable's name
9616         without using parse_expression.  Do several validations.
9617         * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
9618         trace state variable's name with parse_expression.  Validate it.
9619
9620 2013-02-14  Yao Qi  <yao@codesourcery.com>
9621
9622         * infcmd.c (breakpoint_proceeded): Remove it.
9623
9624 2013-02-14  Yao Qi  <yao@codesourcery.com>
9625
9626         * tracepoint.c (end_actions_pseudocommand): Make it static.
9627         (while_stepping_pseudocommand): Likewise.
9628         * tracepoint.h (end_actions_pseudocommand): Remove the
9629         declaration.
9630         (while_stepping_pseudocommand): Likewise.
9631
9632 2013-02-14  Yao Qi  <yao@codesourcery.com>
9633
9634         * cli/cli-decode.c (help_cmd): Remove the declaration of
9635         "cmdlist".
9636         (help_all): Likewise.
9637
9638 2013-02-13  Pedro Alves  <palves@redhat.com>
9639
9640         * amd64-linux-nat.c (update_debug_registers_callback):
9641         Update comment.
9642         (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
9643         iterate_over_lwps.
9644         (amd64_linux_prepare_to_resume): Pass the lwp's pid to
9645         i386_debug_reg_state.
9646         (amd64_linux_new_fork): New function.
9647         (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
9648         linux_nat_new_fork hook, and i386_forget_process as
9649         linux_nat_forget_process hook.
9650         * i386-linux-nat.c (update_debug_registers_callback):
9651         Update comment.
9652         (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
9653         iterate_over_lwps.
9654         (i386_linux_prepare_to_resume): Pass the lwp's pid to
9655         i386_debug_reg_state.
9656         (i386_linux_new_fork): New function.
9657         (_initialize_i386_linux_nat): Install i386_linux_new_fork as
9658         linux_nat_new_fork hook, and i386_forget_process as
9659         linux_nat_forget_process hook.
9660         * i386-nat.c (i386_init_dregs): Delete.
9661         (i386_inferior_data, struct i386_inferior_data):
9662         Delete.
9663         (struct i386_process_info): New.
9664         (i386_process_list): New global.
9665         (i386_find_process_pid, i386_add_process, i386_process_info_get):
9666         New functions.
9667         (i386_inferior_data_get): Delete.
9668         (i386_process_info_get): New function.
9669         (i386_debug_reg_state): New parameter 'pid'.  Reimplement.
9670         (i386_forget_process): New function.
9671         (i386_cleanup_dregs): Rewrite.
9672         (i386_update_inferior_debug_regs, i386_insert_watchpoint)
9673         (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
9674         (i386_stopped_data_address, i386_insert_hw_breakpoint)
9675         (i386_remove_hw_breakpoint): Adjust to pass the current process id
9676         to i386_debug_reg_state.
9677         (i386_use_watchpoints): Don't register inferior data.
9678         * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
9679         adjust comment.
9680         (i386_forget_process): Declare.
9681         * linux-fork.c (delete_fork): Call linux_nat_forget_process.
9682         * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
9683         New static globals.
9684         (linux_child_follow_fork): Don't call linux_nat_new_thread here.
9685         (add_initial_lwp): New, factored out from ...
9686         (add_lwp): ... this.  Don't check the number of lwps before
9687         calling linux_nat_new_thread.
9688         (linux_nat_iterate_watchpoint_lwps): Delete.
9689         (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
9690         (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
9691         forks and vforks.
9692         (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
9693         initial lwp.
9694         (linux_nat_kill, linux_nat_mourn_inferior): Call
9695         linux_nat_forget_process.
9696         (linux_nat_set_new_fork, linux_nat_set_forget_process)
9697         (linux_nat_forget_process): New functions.
9698         * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
9699         type.
9700         (linux_nat_iterate_watchpoint_lwps): Delete declaration.
9701         (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
9702         types.
9703         (linux_nat_set_new_fork, linux_nat_set_forget_process)
9704         (linux_nat_forget_process): New declarations.
9705
9706         * amd64fbsd-nat.c (super_mourn_inferior): New global.
9707         (amd64fbsd_mourn_inferior): New function.
9708         (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
9709         * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
9710
9711 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
9712
9713         * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
9714         Adding _().
9715
9716 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
9717
9718         * aarch64-linux-nat.c (debug_reg_change_callback)
9719         (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
9720         %s and phex().
9721
9722 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
9723
9724         * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
9725         with LONGEST.
9726
9727 2013-02-13  Pedro Alves  <palves@redhat.com>
9728             Hafiz Abid Qadeer  <abidh@codesourcery.com>
9729
9730         * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
9731
9732 2013-02-12  Tom Tromey  <tromey@redhat.com>
9733
9734         PR symtab/11464:
9735         * c-exp.y (lex_one_token): Initialize other fields of yylval on
9736         NAME return.
9737         (classify_inner_name): Remove 'first_name' argument, add
9738         'context'.  Remove unused variable.
9739         (yylex): Explicitly maintain the context type.  Exit loop earlier
9740         if NAME result is seen.
9741
9742 2013-02-12  Pedro Alves  <palves@redhat.com>
9743
9744         * amd64-darwin-tdep.c: Add (C) after Copyright.
9745         * cli/cli-cmds.h: Ditto.
9746         * cli/cli-decode.c: Ditto.
9747         * cli/cli-decode.h: Ditto.
9748         * cli/cli-dump.c: Ditto.
9749         * cli/cli-dump.h: Ditto.
9750         * cli/cli-interp.c: Ditto.
9751         * cli/cli-logging.c: Ditto.
9752         * cli/cli-script.c: Ditto.
9753         * cli/cli-script.h: Ditto.
9754         * cli/cli-setshow.c: Ditto.
9755         * cli/cli-setshow.h: Ditto.
9756         * cli/cli-utils.c: Ditto.
9757         * cli/cli-utils.h: Ditto.
9758         * config/alpha/nm-osf3.h: Ditto.
9759         * config/djgpp/djconfig.sh: Ditto.
9760         * config/i386/nm-fbsd.h: Ditto.
9761         * config/i386/nm-i386gnu.h: Ditto.
9762         * config/nm-linux.h: Ditto.
9763         * config/nm-nto.h: Ditto.
9764         * config/rs6000/nm-rs6000.h: Ditto.
9765         * config/sparc/nm-sol2.h: Ditto.
9766         * darwin-nat-info.c: Ditto.
9767         * dfp.c: Ditto.
9768         * dfp.h: Ditto.
9769         * gdb-demangle.h: Ditto.
9770         * i386-darwin-nat.c: Ditto.
9771         * i386-darwin-tdep.c: Ditto.
9772         * linux-fork.h: Ditto.
9773         * m32c-tdep.c: Ditto.
9774         * microblaze-linux-tdep.c: Ditto.
9775         * microblaze-rom.c: Ditto.
9776         * microblaze-tdep.c: Ditto.
9777         * microblaze-tdep.h: Ditto.
9778         * mips-linux-tdep.h: Ditto.
9779         * ppc-ravenscar-thread.c: Ditto.
9780         * ppc-ravenscar-thread.h: Ditto.
9781         * prologue-value.c: Ditto.
9782         * prologue-value.h: Ditto.
9783         * ravenscar-thread.c: Ditto.
9784         * ravenscar-thread.h: Ditto.
9785         * sparc-ravenscar-thread.c: Ditto.
9786         * sparc-ravenscar-thread.h: Ditto.
9787         * tilegx-linux-tdep.c: Ditto.
9788         * unwind_stop_reasons.def: Ditto.
9789         * windows-nat.h: Ditto.
9790         * xtensa-linux-tdep.c: Ditto.
9791         * xtensa-xtregs.c: Ditto.
9792         * regformats/regdat.sh: Ditto.
9793         * regformats/regdef.h: Ditto.
9794
9795 2013-02-12  Pedro Alves  <palves@redhat.com>
9796
9797         * break-catch-sig.c: Update copyright years.
9798
9799 2013-02-11  Siva Chandra Reddy  <sivachandra@google.com>
9800
9801         Add support for a destructor for ui_out data and use it to
9802         provide a ui_out destructor.
9803         * ui-out.h: Declare the new ui_out destructor.
9804         (ui_out_impl): Add a field for data destructor in ui_out_impl.
9805         * ui-out.c (default_data_destroy): Add a default data destructor
9806         which does nothing.
9807         (default_ui_out_impl): Set the new data_destroy field to
9808         default_data_destroy
9809         (uo_data_destroy): Local function which invokes the data
9810         destructor if present.
9811         (clear_table): Local function which clears the table data of a
9812         ui_out object.
9813         (ui_out_destroy): Public function which frees a ui_out object.
9814         (ui_out_table_end): Use the new clear_table function.
9815         * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
9816         NULL.
9817         * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
9818         to NULL.
9819
9820 2013-02-11  Doug Evans  <dje@google.com>
9821
9822         * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
9823         (printf_decfloat): New function.  Broken out from ui_printf.
9824         Remove unnecessary code to shift the entire format string down.
9825         (printf_pointer): New function.
9826         (ui_printf): Code to print C strings, wide C strings, decfloats,
9827         and pointers moved to separate functions.
9828
9829 2013-02-11  Sergio Durigan Junior  <sergiodj@redhat.com>
9830
9831         * valops.c (value_assign): Handling bitfield offset in
9832         `lval_internalvar_component' case.
9833
9834 2013-02-08  Doug Evans  <dje@google.com>
9835
9836         * common/format.c (parse_format_string): Fix whitespace.
9837
9838 2013-02-08  Matthew Gretton-Dann  <matthew.gretton-dann@linaro.org>
9839
9840         * stack.c (return_command): Work around uninitialized variable
9841         warning.
9842
9843 2013-02-08  Yufeng Zhang  <yufeng.zhang@arm.com>
9844
9845         * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
9846         number of the registers from 36 to 34.
9847
9848 2013-02-08  Marcus Shawcroft  <marcus.shawcroft@arm.com>
9849
9850         * NEWS: Mention new AArch64 native and target support.
9851
9852 2013-02-08  Marcus Shawcroft  <marcus.shawcroft@arm.com>
9853
9854         * MAINTAINERS (Write After Approval): Add myself.
9855
9856 2013-02-08  Jim MacArthur  <jim.macarthur@arm.com>
9857             Marcus Shawcroft  <marcus.shawcroft@arm.com>
9858             Nigel Stephens  <nigel.stephens@arm.com>
9859             Yufeng Zhang  <yufeng.zhang@arm.com>
9860
9861         * aarch64-linux-nat.c: New file.
9862         * config/aarch64/linux.mh: New file.
9863         * configure.host: Add AArch64.
9864         * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
9865
9866 2013-02-07  Doug Evans  <dje@google.com>
9867
9868         * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
9869         disassemble command.
9870
9871 2013-02-07  Marcus Shawcroft  <marcus.shawcroft@arm.com>
9872
9873         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
9874         set_gdbarch_fetch_tls_load_module_address.
9875
9876 2013-02-06  David S. Miller  <davem@davemloft.net>
9877
9878         * sparc-tdep.c (sparc32_return_value): Handle writing return value when
9879         using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
9880         * value.c (struct_return_convention): New function.
9881         (using_struct_return): Implement in terms of struct_return_convention.
9882         * value.h (struct_return_convention): Declare.
9883         * stack.c (return_command): Allow successful overriding of the return
9884         value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
9885
9886 2013-02-06  Tom Tromey  <tromey@redhat.com>
9887
9888         * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
9889         outside of TRY_CATCH.
9890
9891 2013-02-06  Yao Qi  <yao@codesourcery.com>
9892
9893         * mi/mi-interp.c: Include "tracepoint.h".
9894         (mi_tsv_modified): Declare.
9895         (mi_tsv_created, mi_tsv_deleted): Update declaration.
9896         (mi_interpreter_init): Call observer_attach_tsv_modified.
9897         (mi_tsv_modified): New.
9898         (mi_tsv_created, mi_tsv_deleted): Update.
9899         * tracepoint.c (trace_variable_command): Call
9900         observer_notify_tsv_modified if the initial value of tsv is
9901         changed.
9902         (delete_trace_state_variable): Call
9903         observer_notify_tsv_deleted earlier.
9904         (trace_variable_command): Caller update.
9905         (create_tsv_from_upload): Likewise.
9906         * observer.sh: Declare "struct trace_state_variable".
9907
9908         * NEWS: Mention the new MI notification "=tsv-modified".
9909
9910 2013-02-05  Doug Evans  <dje@google.com>
9911
9912         * completer.c (location_completer): Fix typo in comment.
9913
9914 2013-02-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
9915
9916         * breakpoint.c (add_location_to_breakpoint): Insert the location with
9917         ADDRESS sorted.
9918
9919 2013-02-05  Marcus Shawcroft  <marcus.shawcroft@arm.com>
9920
9921         * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
9922         Refactor if statement to avoid trailing || operator.
9923
9924 2013-02-05  Andreas Tobler  <andreast@fgznet.ch>
9925
9926         * NEWS: Add PowerPC FreeBSD as a new native configuration.
9927
9928 2013-02-04  Andreas Tobler  <andreast@fgznet.ch>
9929
9930         * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
9931         * configure.host: Add powerpc*-*-freebsd* target.
9932         * configure.tgt: Add target info for powerpc*-*-freebsd*.
9933         * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
9934         * config/powerpc/fbsd.mh: New file.
9935
9936 2013-02-04  Sergio Durigan Junior  <sergiodj@redhat.com>
9937             Denys Vlasenko  <dvlasenk@redhat.com>
9938             Pedro Alves  <palves@redhat.com>
9939
9940         * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
9941         (struct elf_internal_linux_prpsinfo): Forward declare.
9942         * gdbarch.h, gdbarch.c: Regenerate.
9943         * linux-tdep.c: Include `cli/cli-utils.h'.
9944         (linux_fill_prpsinfo): New function.
9945         (linux_make_corefile_notes): Use linux_fill_prpsinfo.  If there's
9946         an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
9947         elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
9948         depending on gdbarch pointer bitness.
9949         * ppc-linux-tdep.c: Include elf-bfd.h.
9950         (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
9951         on 32-bit.
9952
9953 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
9954             Marcus Shawcroft  <marcus.shawcroft@arm.com>
9955             Nigel Stephens  <nigel.stephens@arm.com>
9956             Yufeng Zhang  <yufeng.zhang@arm.com>
9957
9958         * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
9959
9960 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
9961             Marcus Shawcroft  <marcus.shawcroft@arm.com>
9962             Nigel Stephens  <nigel.stephens@arm.com>
9963             Yufeng Zhang  <yufeng.zhang@arm.com>
9964
9965         * aarch64-newlib-tdep.c: New file.
9966         * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
9967         aarch64*-*-elf.
9968         * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
9969         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
9970         (ALLDEPFILES): Add aarch64-newlib-tdep.c.
9971         * osabi.c (gdb_osabi_names): Add "Newlib".
9972
9973 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
9974             Marcus Shawcroft  <marcus.shawcroft@arm.com>
9975             Nigel Stephens  <nigel.stephens@arm.com>
9976             Yufeng Zhang  <yufeng.zhang@arm.com>
9977
9978         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
9979         (ALLDEPFILES): Add aarch64-linux-tdep.c.
9980         * aarch64-linux-tdep.c: New file.
9981         * aarch64-linux-tdep.h: New file.
9982         * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
9983         * configure.tgt: Add aarch64-none-linux-gnu.
9984
9985 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
9986             Marcus Shawcroft  <marcus.shawcroft@arm.com>
9987             Nigel Stephens  <nigel.stephens@arm.com>
9988             Yufeng Zhang  <yufeng.zhang@arm.com>
9989
9990         * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
9991         (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
9992         (ALLDEPFILES): Add aarch64-tdep.c.
9993         * aarch64-tdep.c: New file.
9994         * aarch64-tdep.h: New file.
9995         * configure.tgt: Add AArch64.
9996         * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
9997         (aarch64-expedite): New definition.
9998         * features/aarch64-core.xml: New file.
9999         * features/aarch64-fpu.xml: New file.
10000         * features/aarch64-without-fpu.c: New file (generated).
10001         * features/aarch64-without-fpu.xml: New file.
10002         * features/aarch64.c: New file (generated).
10003         * features/aarch64.xml: New file.
10004         * regformats/aarch64-without-fpu.dat: New file (generated).
10005         * regformats/aarch64.dat: New file (generated).
10006
10007 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
10008
10009         * contrib/expect-read1.c: New file.
10010         * contrib/expect-read1.sh: New file.
10011
10012 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
10013
10014         * dwarf2read.c (file_file_name): New function with code from
10015         file_full_name.
10016         (file_full_name): Move most of the code to file_file_name.
10017         (macro_start_file): Rename variable full_name to file_name and use
10018         file_file_name for it.  Add comp_dir parameter to new_macro_table.
10019         * macrocmd.c (show_pp_source_pos): New variable fullname.  Replace any
10020         macro_source_file->filename access by macro_source_fullname call.
10021         * macroscope.c (_initialize_macroscope): Update the new_macro_table
10022         caller.
10023         * macrotab.c (struct macro_table): New field comp_dir.
10024         (macro_include): New variables link_fullname and source_fullname.
10025         Replace any macro_source_file->filename access by macro_source_fullname
10026         call.
10027         (macro_lookup_inclusion): Remove the partial filenames checking code.
10028         (check_for_redefinition): New variables source_fullname and
10029         found_key_fullname.  Replace any macro_source_file->filename access by
10030         macro_source_fullname call.
10031         (macro_undef): New variables source_fullname and key_fullname.  Replace
10032         any macro_source_file->filename access by macro_source_fullname call.
10033         (macro_lookup_definition): New variables retval and source_fullname.
10034         Replace any macro_source_file->filename access by macro_source_fullname
10035         call.
10036         (foreach_macro): New variable key_fullname.  Replace any
10037         macro_source_file->filename access by macro_source_fullname call.
10038         (foreach_macro_in_scope): New variable datum_fullname.  Replace any
10039         macro_source_file->filename access by macro_source_fullname call.
10040         (new_macro_table): Add parameter comp_dir.  Initialize T with it.
10041         (macro_source_fullname): New function.
10042         * macrotab.h (struct macro_source_file): Extent the filename field
10043         comment.
10044         (new_macro_table): New parameter comp_dir, add a comment for it.
10045         (macro_source_fullname): new declaration.
10046
10047 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
10048
10049         * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
10050         this_real_name to outer block.  Use it also for
10051         compare_filenames_for_search.
10052         (dw2_expand_symtabs_matching): New variable this_real_name.  Use it
10053         with dw2_get_real_path for file_matcher, considering also
10054         BASENAMES_MAY_DIFFER.
10055         (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
10056
10057 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
10058
10059         * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
10060         to the file_matcher parameter.  Pass 0 to it.
10061         (dwarf2_create_include_psymtab): Copy also DIRNAME.
10062         * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
10063         NULL psymtab_to_fullname result.
10064         (psymtab_to_fullname): Remove variable r.  Never return NULL, assemble
10065         an expected filename instead.
10066         (expand_symtabs_matching_via_partial): Add basenames parameter to the
10067         file_matcher parameter.  Call also psymtab_to_fullname, after newly
10068         considering BASENAMES_MAY_DIFFER.
10069         * source.c (rewrite_source_path): Remove static.
10070         * source.h (rewrite_source_path): New declaration.
10071         * symfile.h (struct quick_symbol_functions): Add basenames parameter to
10072         the expand_symtabs_matching field.  Comment it.
10073         * symtab.c (file_matches): New function comment.  Add parameter
10074         basenames, implement it.
10075         (search_symbols_file_matches): Add basenames parameter.  Update the
10076         file_matches caller.
10077         (search_symbols): Match FILES also against symtab_to_fullname.
10078         Optimize it for BASENAMES_MAY_DIFFER.
10079
10080 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
10081
10082         * source.c (print_source_lines_base): Print for TUI also "fullname".
10083         * tui/tui-data.c (init_content_element): Change tui_locator_element
10084         field to full_name.
10085         * tui/tui-data.h (struct tui_locator_element): Likewise.
10086         * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
10087         tui_update_locator_filename calls to tui_update_locator_fullname.
10088         Replace symtab->filename refererence by symtab_to_fullname call.
10089         * tui/tui-out.c (tui_field_string): Check for "fullname" now.
10090         * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
10091         field to full_name.  Replace symtab->filename refererence by
10092         symtab_to_fullname call.
10093         (tui_show_symtab_source): Rename parameter to fullname.  Change
10094         tui_locator_element field to full_name.
10095         * tui/tui-stack.c: Include source.h.
10096         (tui_set_locator_filename): Rename the declaration to ...
10097         (tui_set_locator_fullname): ... here.  Rename its parameter to
10098         fullname, updates its comment.
10099         (tui_set_locator_info): Rename its parameter to fullname.
10100         (tui_set_locator_filename): Rename the definition to ...
10101         (tui_set_locator_fullname): ... here.  Rename its parameter to
10102         fullname, updates its comment.  Change tui_locator_element field to
10103         full_name.
10104         (tui_set_locator_info): Rename its parameter to fullname.
10105         (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
10106         (tui_update_locator_filename): Rename to ...
10107         (tui_update_locator_fullname): ... here. Rename callee to
10108         tui_set_locator_fullname.
10109         (tui_show_frame_info): Replace symtab->filename refererence by
10110         symtab_to_fullname call.
10111         * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
10112         (tui_update_locator_fullname): ... here.
10113         * tui/tui-winsource.c (tui_display_main): Rename the callee to
10114         tui_update_locator_fullname.  Replace symtab->filename refererence by
10115         symtab_to_fullname call.
10116         * tui/tui.c (tui_show_source): Rename its parameter to fullname.
10117         Rename the callee to tui_update_locator_fullname.
10118         * tui/tui.h (tui_show_source): Rename its parameter to fullname.
10119
10120 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
10121
10122         * ada-lang.c (user_select_syms): Replace symtab->filename refererences
10123         by symtab_to_filename_for_display calls.
10124         * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
10125         (clear_command): New variable sal_fullname, initialize it.  Replace
10126         compare_filenames_for_search by filename_cmp with sal_fullname.
10127         (say_where, update_static_tracepoint): Replace symtab->filename
10128         refererences by symtab_to_filename_for_display calls.
10129         * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
10130         Likewise.
10131         * dwarf2read.c: Include source.h.
10132         (fixup_go_packaging): Replace symtab->filename refererences by
10133         symtab_to_filename_for_display calls.
10134         * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
10135         Replace symtab->filename refererences by symtab_to_filename_for_display
10136         calls.
10137         (create_sals_line_offset, convert_linespec_to_sals): New variable
10138         fullname, initialize it, replace symtab->filename reference by the
10139         variable.
10140         * linux-fork.c: Include source.h.
10141         (info_checkpoints_command): Replace symtab->filename refererences by
10142         symtab_to_filename_for_display calls.
10143         * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
10144         by symtab_to_filename_for_display calls.
10145         * mdebugread.c: Include source.h.
10146         (psymtab_to_symtab_1): Replace symtab->filename refererences by
10147         symtab_to_filename_for_display calls.
10148         * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
10149         (mi_cmd_file_list_exec_source_files): Likewise.
10150         * printcmd.c: Include source.h.
10151         (build_address_symbolic): Replace symtab->filename refererences by
10152         symtab_to_filename_for_display calls.
10153         * psymtab.c (partial_map_symtabs_matching_filename)
10154         (read_psymtabs_with_fullname): Call compare_filenames_for_search also
10155         with psymtab_to_fullname.
10156         * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
10157         by symtab_to_filename_for_display calls.
10158         (stpy_get_filename): New variable filename, initialize it, use instead
10159         of symtab->filename refererences.
10160         (salpy_str): Make variable filename const char *.  Replace
10161         symtab->filename refererences by symtab_to_filename_for_display calls.
10162         * skip.c: Include source.h and filenames.h.
10163         (skip_file_command): Remove const from the symtab variable.  Replace
10164         symtab->filename refererences by symtab_to_fullname call.
10165         (function_name_is_marked_for_skip): New variables searched_for_fullname
10166         and fullname.  Use them to search also with symtab's fullname.
10167         * source.c (find_source_lines): Replace symtab->filename refererences
10168         by symtab_to_filename_for_display calls.
10169         (print_source_lines_base): New variable filename, use it instead of
10170         symtab->filename.  Replace symtab->filename refererences by
10171         symtab_to_filename_for_display calls.
10172         (line_info, forward_search_command): Replace symtab->filename
10173         refererences by symtab_to_filename_for_display calls.
10174         (reverse_search_command): Replace symtab->filename refererences by
10175         symtab_to_filename_for_display calls.  New variable filename for it.
10176         * stack.c (frame_info): Likewise.
10177         * symmisc.c: Include source.h.
10178         (dump_objfile, dump_symtab_1, maintenance_print_symbols)
10179         (maintenance_info_symtabs): Replace symtab->filename refererences by
10180         symtab_to_filename_for_display calls.
10181         * symtab.c (iterate_over_some_symtabs): Call
10182         compare_filenames_for_search also with symtab_to_fullname.
10183         (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
10184         symtab->filename refererences by symtab_to_filename_for_display calls.
10185         (find_line_symtab): Replace symtab->filename refererences by
10186         symtab_to_filename_for_display calls.
10187         (file_matches): Replace filename_cmp by compare_filenames_for_search.
10188         (print_symbol_info): Make the last parameter const char *.  New
10189         variable s_filename.  Use it in the function.
10190         (symtab_symbol_info): Make the last_filename variable const char *.
10191         Replace symtab->filename refererences by symtab_to_filename_for_display
10192         calls.
10193         (rbreak_command): New variable fullname.  Use it.  Replace
10194         symtab->filename refererence by symtab_to_filename_for_display call.
10195         * tracepoint.c (set_traceframe_context, trace_find_line_command)
10196         (print_one_static_tracepoint_marker): Replace symtab->filename
10197         refererences by symtab_to_filename_for_display calls.
10198         * tui/tui-source.c (tui_set_source_content): New variables filename and
10199         s_filename.  Replace symtab->filename refererences by this variable.
10200         Replace other symtab->filename refererences by
10201         symtab_to_filename_for_display calls.
10202
10203 2013-02-03  Eldar Gaynetdinov <hal9000ed2k@gmail.com>
10204             Jan Kratochvil  <jan.kratochvil@redhat.com>
10205
10206         Add a new variable that controls a way in which filenames are
10207         displayed.
10208         * NEWS (set filename-display): New entry.
10209         * source.c (filename_display_basename, filename_display_relative)
10210         (filename_display_absolute, filename_display_kind_names)
10211         (filename_display_string, show_filename_display_string)
10212         (symtab_to_filename_for_display): New.
10213         (_initialize_source): Added initialization of 'filename-display'
10214         variable.
10215         * source.h (symtab_to_filename_for_display): Added declaration.
10216         * stack.c (print_frame): Added new variable and calling of a new
10217         function and condition with this variable. Changed third argument of
10218         calling of a function.
10219
10220 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
10221
10222         * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
10223         Rename field reference filename to fullname.
10224         * tui/tui-data.h (struct tui_source_info): Rename field filename to
10225         fullname.  New comment for it.
10226         * tui/tui-source.c (tui_set_source_content): Rename field reference
10227         filename to fullname.  Initialize field by symtab_to_fullname now.
10228         * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
10229         reference filename to fullname.  Use symtab_to_fullname during
10230         comparison.
10231
10232 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
10233
10234         Code cleanup.
10235         * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
10236         (dw2_expand_symtabs_with_fullname): ... here.  Rename parameter
10237         filename to fullname.  Rename variable this_name to this_fullname.
10238         Lowercase FILENAME_CMP call.
10239         (dw2_find_symbol_file): New comment for the returned string.
10240         (dwarf2_gdb_index_functions): Rename the function to
10241         dw2_expand_symtabs_with_fullname.
10242         * psymtab.c (read_psymtabs_with_filename): Rename to ...
10243         (read_psymtabs_with_fullname): ... here.  Rename parameter filename to
10244         fullname.
10245         (psym_functions): Rename the function to read_psymtabs_with_fullname.
10246         * symfile.h (struct quick_symbol_functions): Rename field
10247         expand_symtabs_with_filename to expand_symtabs_with_fullname and its
10248         parameter filename to fullname.  Document returned string meaning for
10249         find_symbol_file.
10250         * symtab.c (find_line_symtab): Rename the called function to
10251         expand_symtabs_with_fullname.
10252
10253 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
10254
10255         Code cleanup.
10256         * breakpoint.c (clear_command): Remove variable is_abs, unify the
10257         call of filename_cmp with compare_filenames_for_search.
10258         * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
10259         is_abs, unify the call of FILENAME_CMP with
10260         compare_filenames_for_search.  New gdb_asserts for real_path and name.
10261         Unify the call of compare_filenames_for_search with FILENAME_CMP.
10262         * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
10263         * symfile.h (struct quick_symbol_functions): Extend the comment for
10264         map_symtabs_matching_filename.
10265         * symtab.c (compare_filenames_for_search): Remove the function comment
10266         relative path requirement.  Handle absolute filenames, with a comment.
10267         (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
10268         FILENAME_CMP with compare_filenames_for_search.  New gdb_asserts for
10269         real_path and name.  Unify the call of compare_filenames_for_search
10270         with FILENAME_CMP.
10271         (iterate_over_symtabs): New gdb_assert on REAL_PATH.
10272
10273 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
10274
10275         Code cleanup.
10276         * breakpoint.c (print_breakpoint_location): Replace bp_location field
10277         source_file references by symtab field references.  Remove variables
10278         sal and fullname.
10279         (momentary_breakpoint_from_master, add_location_to_breakpoint):
10280         (clear_command, say_where): Replace bp_location field source_file
10281         references by symtab field references.
10282         (bp_location_dtor): Remove the source_file reference.
10283         (update_static_tracepoint): Replace bp_location field source_file
10284         references by symtab field references.
10285         (breakpoint_free_objfile): New function.
10286         * breakpoint.h (struct bp_location): Extend the comment for line_number.
10287         Replace the field source_file by field symtab, extend its comment.
10288         (breakpoint_free_objfile): New declaration.
10289         * objfiles.c (free_objfile): Call breakpoint_free_objfile.
10290         * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
10291         field source_file references by symtab field references.
10292
10293 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
10294
10295         Replace xfullpath calls by gdb_realpath calls.
10296         * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
10297         function comment.
10298         * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
10299         Remove it from the iterate_over_some_symtabs call.
10300         (dw2_map_symtabs_matching_filename): Remove parameter full_path.
10301         Remove it from the dw2_map_expand_apply calls, remove a block handling
10302         it.
10303         * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
10304         Remove it from the iterate_over_some_symtabs call.
10305         (partial_map_symtabs_matching_filename): Remove parameter full_path.
10306         Remove it from the partial_map_expand_apply calls, remove a block
10307         handling it.  Drop gdb_realpath call and cleanups from the real_path
10308         handling.
10309         * source.c (openp): Drop the comment part about xfullpath.  Replace
10310         xfullpath calls by gdb_realpath calls.
10311         (find_and_open_source): Replace xfullpath call by gdb_realpath call.
10312         * symfile.h (struct quick_symbol_functions): Remove parameter full_path
10313         from method map_symtabs_matching_filename and its comment.
10314         * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
10315         gdb_realpath call.
10316         * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
10317         remove it also from the function comment, remove a block handling it.
10318         Drop gdb_realpath call and cleanups from the real_path handling.
10319         (iterate_over_symtabs): Drop variable full_path and its use.
10320         * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
10321         * utils.c (xfullpath): Remove.
10322         * utils.h (xfullpath): Remove.
10323
10324 2013-02-01  Andreas Tobler  <andreast@fgznet.ch>
10325
10326         * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
10327         (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
10328         (ALLDEPFILES): Add ppc64-tdep.c.
10329         * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
10330         ppc64-tdep.o to gdb_target_obs.
10331         * ppc64-tdep.h: New file.
10332         * ppc64-tdep.c: New file.
10333         (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
10334         ppc-linux-tdep.c to here.
10335         (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
10336         (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
10337         (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
10338         (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
10339         from ppc-linux-tdep.c to here.
10340         (ppc64_convert_from_func_ptr_addr): Rename from
10341         ppc64_linux_convert_from_func_ptr_addr to
10342         ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
10343         here.
10344         * rs6000-tdep.c:
10345         (read_insn): Move from ppc-linux-tdep.c to here.
10346         (insns_match_pattern, insn_d_field, insn_ds_field): Move
10347         from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
10348         * ppc-linux-tdep.c: Include ppc64-tdep.h.
10349         Removed above functions.
10350         (ppc_linux_init_abi): Adjust.
10351
10352 2013-02-01  Aleksandar Ristovski  <aristovski@qnx.com>
10353
10354         * ada-valprint.c (ada_print_floating): Remove unused 'len'.
10355
10356 2013-02-01  Aleksandar Ristovski  <aristovski@qnx.com>
10357
10358         * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
10359
10360 2013-02-01  Pedro Alves  <palves@redhat.com>
10361
10362         * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
10363         * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
10364
10365 2013-02-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
10366
10367         * elfread.c (elf_symfile_read): Limit separate debug info additions to
10368         files with no separate debug info.
10369         * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
10370         * symfile.c (read_symbols): Call find_separate_debug_file_in_section
10371         only for files with no separate debug info.
10372
10373 2013-01-31  Tom Tromey  <tromey@redhat.com>
10374
10375         * jit.c (jit_program_space_data): Rename from jit_inferior_data;
10376         change type.
10377         (struct jit_program_space_data): Rename from jit_inferior_data.
10378         Update comments.
10379         (get_jit_program_space_data): Rename from get_jit_inferior_data.
10380         Change return type.  Attach data to program space.
10381         (jit_program_space_data_cleanup): Rename from
10382         jit_inferior_data_cleanup; change argument type.
10383         (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
10384         change type.
10385         (jit_register_code): Update.
10386         (jit_update_inferior_cache): Remove.
10387         (jit_breakpoint_deleted): Get jit data from the location's program
10388         space.
10389         (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
10390         'ps_data', change type.
10391         (jit_inferior_init, jit_breakpoint_re_set_internal)
10392         (jit_event_handler): Update.
10393         (free_objfile_data): Get data from objfile's program space.
10394         (_initialize_jit): Update.
10395
10396 2013-01-31  Tom Tromey  <tromey@redhat.com>
10397
10398         PR gdb/13987:
10399         * jit.c (struct jit_inferior_data) <cached_code_address,
10400         jit_breakpoint>: New fields.
10401         (jit_breakpoint_re_set_internal): Fix logging.  Only create
10402         breakpoint if cached address has changed.
10403         (jit_update_inferior_cache, jit_breakpoint_deleted): New
10404         functions.
10405         (_initialize_jit): Register breakpoint deleted observer.
10406
10407 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
10408
10409         * infrun.c (handle_syscall_event): Remove unused gdbarch.
10410         (save_infcall_suspend_state): Ifdef out unused inf.
10411         (restore_infcall_suspend_state): Ifdef out unused inf.
10412         * jit.c (jit_register_code): Remove unused i, b, inf_data.
10413         (jit_frame_sniffer): Remove unused inf_data.
10414
10415 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
10416
10417         * c-exp.y (classify_inner_name): Remove unused type.
10418         * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
10419         in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
10420         need_escape.
10421         (c_get_string): Remove unused kind.
10422         * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
10423
10424 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
10425
10426         * charset.c (intermediate_encoding): Remove unused i.
10427         * completer.c (signal_completer): Remove unused i.
10428         * continuations.c (discard_my_continuations_1): Remove unused
10429         continuation_ptr.
10430         * corelow.c (core_close): Remove unuseD name.
10431         (get_core_siginfo): Remove unused pid.
10432         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
10433         i, cps.
10434         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
10435         (loclist_describe_location): Remove unused first.
10436         * event-top.c (command_line_handler): Remove unused got_eof.
10437         * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
10438         (resize_section_table): Remove unused old_value.
10439         * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
10440         * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
10441         * i386-tdep.c (i386_process_record): Remove unused rex.
10442         * infcmd.c (get_return_value): Remove unused uiout.
10443         * jv-lang.c (type_from_class): Remove unused is_array.
10444         * jv-valprint.c (java_val_print): Remove unused i.
10445         * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
10446         * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
10447         * m2-typeprint.c (m2_print_type): Remove unused code.
10448         * macroexp.c (get_character_constant): Remove unused body_start.
10449         (macro_stringify): Remove unused result.
10450         * objc-lang.c (find_methods): Remove unused gdbarch.
10451         * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
10452         * regcache.c (regcache_cooked_read): Remove unused gdbarch.
10453         * stack.c (print_frame_args): Remove unused summary.
10454         * thread.c (thread_apply_command): Remove unused p.
10455         * valarith.c (value_x_unop): Remove unused mangle_ptr.
10456         * valops.c (search_struct_method): Remove unused skip.
10457         * valprint.c (generic_val_print): Remove unused byte_order.
10458         * varobj.c (varobj_update): Remove unused changed.
10459         * cli/cli-cmds.c (complete_command): Remove unused next_item.
10460         (alias_command): Remove unused c.
10461         * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
10462         * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
10463         format.
10464         (mi_cmd_data_write_memory): Remove unused word_format.
10465         (mi_cmd_data_write_memory_bytes): Remove unused r.
10466         * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
10467         p_start, p_end.
10468         * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
10469         * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
10470         line_width.
10471
10472 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
10473
10474         * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
10475         * symtab.c (iterate_over_symtabs): Remove unused s.
10476         (find_pc_sect_symtab): Remove unused pspAce.
10477         (find_pc_sect_line): Remove unused alt_symtab.
10478         (find_pcs_for_symtab_line): Remove unused ix, previous_function.
10479         (completion_list_add_name): Remove unused newsize.
10480
10481 2013-01-31  Tom Tromey  <tromey@redhat.com>
10482
10483         PR c++/14998:
10484         * dwarf2read.c (read_tag_ptr_to_member_type): Handle
10485         TYPE_CODE_FUNC.
10486
10487 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
10488
10489         * target.c (target_read_string): Remove unused origlen.
10490
10491 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
10492
10493         * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
10494         * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
10495         * ax-general.c (ax_print): Remove unused is_float.
10496         * blockframe.c (block_innermost_frame): Remove unused start, end.
10497         * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
10498
10499 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
10500
10501         * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
10502         (svr4_read_so_list): Remove unused lmo.
10503         * solib-target.c (solib_target_relocate_section_addresses): Remove
10504         unused flags.
10505
10506 2013-01-30  Tom Tromey  <tromey@redhat.com>
10507
10508         * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
10509
10510 2013-01-30  Tom Tromey  <tromey@redhat.com>
10511
10512         * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
10513         * utils.c (gnu_debuglink_crc32): Remove.
10514         * utils.h (gnu_debuglink_crc32): Don't declare.
10515
10516 2013-01-30  Tom Tromey  <tromey@redhat.com>
10517
10518         * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
10519         (read_structure_type, read_enumeration_type): Remove cast.
10520
10521 2013-01-30  Tom Tromey  <tromey@redhat.com>
10522
10523         * dwarf2read.c (read_namespace_type): Remove cast.
10524         (read_typedef): Likewise.
10525
10526 2013-01-29  Tom Tromey  <tromey@redhat.com>
10527
10528         * dwarf2read.c (free_dwo_file): Remove assert.
10529
10530 2013-01-29  Tom Tromey  <tromey@redhat.com>
10531
10532         * value.c (deprecated_set_value_modifiable): Remove.
10533         * value.h (deprecated_set_value_modifiable): Remove.
10534
10535 2013-01-28  Doug Evans  <dje@google.com>
10536
10537         * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
10538         to addresses from dwo files.
10539
10540 2013-01-25  Siva Chandra Reddy  <sivachandra@google.com>
10541
10542         * valops.c (find_overload_match): Remove unused argument 'lax'.
10543         * value.h: Remove unused argument 'lax' from the declaration of
10544         find_overload_match.
10545         * eval.c (value_subexp_standard): Do not pass a 'lax' argument
10546         to find_overload_match.
10547         * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
10548         argument to find_overload_match.
10549
10550 2013-01-25  Tom Tromey  <tromey@redhat.com>
10551
10552         * dwarf2read.c (processing_has_namespace_info): Remove.
10553         (struct dwarf2_cu) <processing_has_namespace_info>: New field.
10554         (process_die, read_func_scope, dwarf2_start_symtab)
10555         (new_symbol_full): Update.
10556
10557 2013-01-25  Tom Tromey  <tromey@redhat.com>
10558
10559         * cp-namespace.c (cp_set_block_scope): Remove.
10560         * cp-support.h (cp_set_block_scope): Remove.
10561         * dbxread.c: Include block.h.
10562         (cp_set_block_scope): New function.
10563         (process_one_symbol): Update.
10564         * dwarf2read.c (read_func_scope): Use block_set_scope.
10565
10566 2013-01-25  Pedro Alves  <palves@redhat.com>
10567
10568         * remote.c (add_current_inferior_and_thread): Tweak comment.
10569
10570 2013-01-25  Tom Tromey  <tromey@redhat.com>
10571
10572         * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
10573         (cp_add_using_directive): Add 'copy_names' argument.
10574         * cp-support.h (cp_add_using_directive): Update.
10575         (struct using_direct) <import_src, import_dest, alias,
10576         declaration>: Now const.
10577         * dwarf2read.c (read_import_statement): Use obconcat.
10578         Don't copy names passed to cp_add_using_directive.
10579
10580 2013-01-25  Tom Tromey  <tromey@redhat.com>
10581
10582         * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
10583
10584 2013-01-25  Pedro Alves  <palves@redhat.com>
10585
10586         * remote.c (stop_reply_extract_thread): New.
10587         (add_current_inferior_and_thread): New parameter 'wait_status'.
10588         Handle it.
10589         (remote_start_remote): Pass wait status to
10590         add_current_inferior_and_thread.
10591         (extended_remote_run): Update comment.
10592         (extended_remote_create_inferior_1): Pass wait status to
10593         add_current_inferior_and_thread.
10594
10595 2013-01-25  Andrew Burgess  <aburgess@broadcom.com>
10596             Ulrich Weigand  <uweigand@de.ibm.com>
10597
10598         * valarith.c (value_vector_widen): New function for replicating a
10599         scalar into a vector.
10600         (value_binop): Use value_vector_widen to widen scalar to vector
10601         rather than casting, this better matches gcc C behaviour.
10602         * valops.c (value_casst): Update logic for casting between vector
10603         types, and for casting from scalar to vector, try to match gcc C
10604         behaviour.
10605         * value.h (value_vector_widen): Declare.
10606         * opencl-lang.c (opencl_value_cast): New opencl specific casting
10607         function, handle special case for casting scalar to vector.
10608         (opencl_relop): Use opencl_value_cast.
10609         (evaluate_subexp_opencl): Use opencl_value_cast instead of
10610         value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
10611         in order to use opencl_value_cast.
10612
10613 2013-01-25  Yao Qi  <yao@codesourcery.com>
10614
10615         * event-loop.c: Include "queue.h".
10616         (gdb_event_p): New typedef.
10617         (DECLARE_QUEUE_P): Use.
10618         (DEFINE_QUEUE_P): Use.
10619         (async_queue_event): Remove.
10620         (gdb_event_xfree): New.
10621         (initialize_event_loop): New.
10622         (process_event): Use QUEUE macros.
10623         (event_queue): Remove.
10624         (gdb_wait_for_event): Caller update.
10625         (check_async_event_handlers): Likewise.
10626         (poll_timers): Likewise.
10627         * event-loop.h (initialize_event_loop): Declare.
10628         * event-loop.c (gdb_event_xfree): New.
10629         * top.c (gdb_init): Call initialize_event_loop.
10630
10631 2013-01-25  Yao Qi  <yao@codesourcery.com>
10632
10633         * event-loop.c (async_queue_event): Remove one parameter
10634         'position'.  Remove code handling 'position' == TAIL.
10635         (gdb_wait_for_event): Caller update.
10636         (check_async_event_handlers): Caller update.
10637         (poll_timers): Caller update.
10638         * event-loop.h (enum queue_position): Remove.
10639
10640 2013-01-25  Maxim Kuvyrkov  <maxim@kugelworks.com>
10641
10642         * MAINTAINERS: Update my email.
10643
10644 2013-01-25  Yao Qi  <yao@codesourcery.com>
10645
10646         * main.c (print_gdb_help): Remove "--epoch" from the help
10647         message.
10648
10649 2013-01-24  Ulrich Weigand  <uweigand@de.ibm.com>
10650
10651         * symtab.c (skip_prologue_using_sal): Consider a file
10652         change the same as an increased line number
10653
10654 2013-01-24  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
10655
10656         * MAINTAINERS (Write After Approval): Add myself to the list.
10657
10658 2013-01-24  Tom Tromey  <tromey@redhat.com>
10659
10660         * ada-lang.h (ada_decode_symbol): Make return type const.
10661         * ada-lang.c (ada_decode_symbol): Likewise.
10662
10663 2013-01-23  Doug Evans  <dje@google.com>
10664
10665         * linespec.c (find_linespec_symbols): Make static.
10666
10667 2013-01-23  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
10668
10669         * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
10670         type on float conversion for complex type.
10671
10672 2013-01-23  Siva Chandra Reddy  <sivachandra@google.com>
10673
10674         Add a new class gdb.Architecture which exposes GDB's
10675         internal representation of architecture via GDB Python API.
10676         * Makefile.in: Add entries corresponding to the new file
10677         python/py-arch.c.
10678         * NEWS (Python Scripting): Add entries for the new class
10679         gdb.Architecture and the new method gdb.Frame.architecture.
10680         * python/py-arch.c: Implement gdb.Architecture class.
10681         * python/py-frame.c (frapy_arch): Implement the method
10682         gdb.Frame.architecture().
10683         (frame_object_methods): Add 'architecture' to the method table.
10684         * python/python-internal.h: Add declarations of new utility
10685         functions.
10686         * python/python.c (_initialize_python): Initialize
10687         gdb.Architecture class.
10688
10689 2013-01-23  Doug Evans  <dje@google.com>
10690
10691         Work around binutils/15021.
10692         * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
10693         type_unit_group out of union s.  All uses updated.
10694         (read_index_from_section): Watch for index version 8.
10695         (follow_die_sig): If using .gdb_index version <= 7, record the TU as
10696         an imported symtab.
10697         (write_psymtabs_to_index): Increment version number to 8.
10698
10699 2013-01-22  Pedro Alves  <palves@redhat.com>
10700
10701         * annotate.c (breakpoint_changed): Skip if breakpoint is not
10702         user-visible.
10703
10704 2013-01-22  Pedro Alves  <palves@redhat.com>
10705
10706         * annotate.c (annotate_breakpoints_changed): Rename to ...
10707         (annotate_breakpoints_invalid): ... this.  Make static.
10708         (breakpoint_changed): Adjust.
10709         (_initialize_annotate): Always install the observers.  Install a
10710         "breakpoint_created" observer.
10711         * annotate.h (annotate_breakpoints_changed): Delete declaration.
10712         * breakpoint.c (set_breakpoint_condition)
10713         (breakpoint_set_commands, do_map_commands_command)
10714         (init_raw_breakpoint, clear_command, set_ignore_count)
10715         (enable_breakpoint_disp): No longer call
10716         annotate_breakpoints_changed.
10717
10718 2013-01-22  Pedro Alves  <palves@redhat.com>
10719
10720         * annotate.c: Include "inferior.h".
10721         (frames_invalid_emitted)
10722         (breakpoints_invalid_emitted): New globals.
10723         (async_background_execution_p): New function.
10724         (annotate_breakpoints_changed, annotate_frames_invalid): Skip
10725         emitting the annotation if it has already been emitted.
10726         (annotate_display_prompt): New function.
10727         * annotate.h (annotate_display_prompt): New declaration.
10728         * event-top.c: Include annotate.h.
10729         (display_gdb_prompt): Call annotate_display_prompt.
10730
10731 2013-01-22  Pedro Alves  <palves@redhat.com>
10732
10733         * annotate.c (ignore_count_changed): Delete.
10734         (annotate_breakpoints_changed): Don't clear ignore_count_changed.
10735         (annotate_ignore_count_change): Delete.
10736         (annotate_stopped): Don't emit a delayed breakpoints-changed
10737         annotation.
10738         * annotate.h (annotate_ignore_count_change): Delete.
10739         * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
10740         annotate_ignore_count_change.
10741
10742 2013-01-22  Tom Tromey  <tromey@redhat.com>
10743
10744         * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
10745         require_rvalue for a register location.
10746
10747 2013-01-21  Marc Khouzam  <marc.khouzam@ericsson.com>
10748
10749         * breakpoint.c (print_one_breakpoint_location): Add MI
10750         field 'thread-groups' when printing a breakpoint.
10751         (output_thread_groups): New function.
10752
10753 2013-01-21  Siva Chandra Reddy  <sivachandra@google.com>
10754
10755         * python/lib/gdb/commands/explore.py
10756         (CompoundExplorer.explore_expr): Correct the name of a method
10757         being invoked.
10758         (ExploreTypeCommand.invoke): Add a missing 'return'.
10759
10760 2013-01-21  Tom Tromey  <tromey@redhat.com>
10761
10762         * gdb_obstack.h (obconcat): Move declaration here, from...
10763         * symfile.h (obconcat): ... here.
10764         * gdb_obstack.c: New file.
10765         (obconcat): Move from...
10766         * symfile.c (obconcat): ... here.
10767         * Makefile.in (SFILES): Add gdb_obstack.c.
10768         (COMMON_OBS): Add gdb_obstack.o.
10769
10770 2013-01-21  Tom Tromey  <tromey@redhat.com>
10771
10772         * symfile.h (obsavestring): Don't declare.
10773         * symfile.c (obsavestring): Remove.
10774         * ada-exp.y: Use obstack_copy0, not obsavestring.
10775         * ada-lang.c: Use obstack_copy0, not obsavestring.
10776         * coffread.c: Use obstack_copy0, not obsavestring.
10777         * cp-namespace.c: Use obstack_copy0, not obsavestring.
10778         * dbxread.c: Use obstack_copy0, not obsavestring.
10779         * dwarf2read.c: Use obstack_copy0, not obsavestring.
10780         * jit.c: Use obstack_copy0, not obsavestring.
10781         * mdebugread.c: Use obstack_copy0, not obsavestring.
10782         * psymtab.c: Use obstack_copy0, not obsavestring.
10783         * stabsread.c: Use obstack_copy0, not obsavestring.
10784         * xcoffread.c: Use obstack_copy0, not obsavestring.
10785
10786 2013-01-21  Tom Tromey  <tromey@redhat.com>
10787
10788         * dwarf2read.c (fixup_go_packaging): Save package name
10789         on objfile obstack.
10790         * gdbtypes.c (init_type): Don't copy name.
10791
10792 2013-01-21  Tom Tromey  <tromey@redhat.com>
10793
10794         * dwarf2read.c (struct partial_die_info) <name, scope>: Now
10795         const.
10796         (struct attribute) <u.str>: Now const.
10797         (struct fnfieldlist) <name>: Now const.
10798         (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
10799         (partial_die_parent_scope): Make return type const.
10800         (partial_die_full_name, add_partial_symbol): Update.
10801         (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
10802         'name' const.
10803         (find_file_and_directory): Make 'name' and 'comp_dir' const.
10804         (read_file_scope, read_func_scope, dwarf2_add_field)
10805         (dwarf2_add_member_fn, read_structure_type)
10806         (process_enumeration_scope, read_array_type, read_module_type)
10807         (read_base_type, read_subrange_type): Update.
10808         (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
10809         (new_symbol_full, guess_full_die_structure_name): Update.
10810         (dwarf2_canonicalize_name): Return const type.  Make 'name' const.
10811         (dwarf2_name): Return const type.
10812         (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
10813         const.
10814
10815 2013-01-21  Tom Tromey  <tromey@redhat.com>
10816
10817         * gdbtypes.c (init_type): Make 'name' const.
10818         * gdbtypes.h (init_type): Update.
10819
10820 2013-01-21  Tom Tromey  <tromey@redhat.com>
10821
10822         * buildsym.c (patch_subfile_names): Use set_last_source_file.
10823         (start_symtab): Make 'name' and 'dirname' const.  Use
10824         set_last_source_file.
10825         (restart_symtab, reset_symtab_globals): Use set_last_source_file.
10826         (last_source_file): Define.  Now static.
10827         (set_last_source_file, get_last_source_file): New functions.
10828         * buildsym.h (last_source_file): Don't declare.
10829         (start_symtab): Update.
10830         (set_last_source_file, get_last_source_file): Declare.
10831         * coffread.c (complete_symtab): Use set_last_source_file.
10832         (coff_end_symtab): Likewise.
10833         (coff_symtab_read): Use set_last_source_file, get_last_source_file.
10834         * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
10835         set_last_source_file.
10836         (process_one_symbol): Use get_last_source_file.
10837         * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
10838         (psymtab_to_symtab_1): Use get_last_source_file.
10839         * xcoffread.c (process_linenos): Use get_last_source_file.
10840         (complete_symtab): Use set_last_source_file.
10841         (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
10842         (scan_xcoff_symtab): Use set_last_source_file.
10843
10844 2013-01-21  Tom Tromey  <tromey@redhat.com>
10845
10846         * symtab.c (struct demangled_name_entry) <mangled>: Now const.
10847         (symbol_set_names): Remove casts.  Handle field const-ness.
10848
10849 2013-01-21  Tom Tromey  <tromey@redhat.com>
10850
10851         * dwarf2read.c (new_symbol_full): Remove cast.
10852         * symtab.c (symbol_set_demangled_name): Make 'name' const.
10853         * symtab.h (symbol_set_demangled_name): Update.
10854
10855 2013-01-21  Tom Tromey  <tromey@redhat.com>
10856
10857         * main.c (captured_main): Call bfd_init.
10858
10859 2013-01-21  Tom Tromey  <tromey@redhat.com>
10860
10861         * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
10862         * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
10863         * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
10864         * NEWS: Update.
10865
10866 2013-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
10867
10868         * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
10869
10870 2013-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
10871
10872         Fix gdb.fortran/common-block.exp crash in PIE mode.
10873         * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
10874         LOC_COMMON_BLOCK.
10875         * f-valprint.c (info_common_command_for_block): Expect
10876         LOC_COMMON_BLOCK in gdb_assert.
10877         * symtab.h (struct general_symbol_info): Update comment for the
10878         common_block member.
10879         (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
10880         (enum address_class): New member LOC_COMMON_BLOCK.
10881
10882 2013-01-18  David Blaikie  <dblaikie@gmail.com>
10883
10884         * MAINTAINERS (Write After Approval): Add "David Blaikie".
10885
10886 2013-01-18  Tom Tromey  <tromey@redhat.com>
10887
10888         PR c++/14999:
10889         * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
10890         Call require_rvalue.
10891
10892 2013-01-18  Yao Qi  <yao@codesourcery.com>
10893
10894         * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
10895         (dbx_read_symtab): New declaration.
10896         (dbx_psymtab_to_symtab): Delete.
10897         (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
10898         Rename parameter PST to SELF.  Exchanged two parameters.
10899         (start_psymtab): Caller update.
10900         * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
10901         (dwarf2_read_symtab): New declaration.
10902         (dwarf2_psymtab_to_symtab): Delete.
10903         (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
10904         Rename parameter PST to SELF.  Exchanged two parameters.
10905         (create_partial_symtab): Caller update.
10906         * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
10907         (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
10908         Rename parameter PST to SELF.  Exchanged two parameters.
10909         (parse_partial_symbols, new_psymtab): Caller update.
10910         * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
10911         two parameters.
10912         * psymtab.c (psymtab_to_symtab): Caller update.
10913         * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
10914         (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
10915         Rename parameter PST to SELF.  Exchanged two parameters.
10916         (xcoff_start_psymtab): Caller update.
10917
10918 2013-01-18  Yao Qi  <yao@codesourcery.com>
10919
10920         * infrun.c (proceed): Rename local variable 'oneproc' to
10921         'force_step'.
10922
10923 2013-01-17  Doug Evans  <dje@google.com>
10924
10925         * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
10926         (dw2_build_type_unit_groups): Delete.  All uses updated.
10927
10928         * symtab.h (struct symbol_search): Add comment.
10929
10930 2013-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
10931
10932         * symtab.c (compare_filenames_for_search): New comment for
10933         HAS_DRIVE_SPEC.
10934
10935 2013-01-17  Tom Tromey  <tromey@redhat.com>
10936
10937         * cp-abi.c (cp_abi_completer): Fix typo in assignment.
10938
10939 2013-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
10940
10941         * symtab.c (iterate_over_some_symtabs): New variable cleanups,
10942         initialize it by existing make_cleanup.  Call new do_cleanups.
10943
10944 2013-01-17  Tom Tromey  <tromey@redhat.com>
10945
10946         * cp-abi.c (cp_abi_completer): New function.
10947         (_initialize_cp_abi): Set completer for "set cp-abi".
10948
10949 2013-01-17  Tom Tromey  <tromey@redhat.com>
10950
10951         * mem-break.c: Remove obsolete comment.
10952         * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
10953
10954 2012-01-17  Sanjoy Das <sanjoy@playingwithpointers.com>
10955
10956         * jit.c (jit_reader_load_command): Interpret the jit reader name
10957         as an absolute path if it begins with a forward slash.
10958
10959 2012-01-17  Sanjoy Das <sanjoy@playingwithpointers.com>
10960
10961         PR gdb/14550
10962
10963         * jit.c (finalize_symtab): Ensure that only the global block has a
10964         NULL superblock.
10965
10966 2013-01-17  Pedro Alves  <palves@redhat.com>
10967
10968         * acinclude.m4: Include ../config/plugins.m4,
10969         ../config/largefile.m4 and ../config/lead-dot.m4.  Add comments.
10970         * Makefile.in (aclocal_m4_deps): Update.
10971         * aclocal.m4: Renegerate.
10972
10973 2013-01-16  Doug Evans  <dje@google.com>
10974
10975         * contrib/cc-with-tweaks.sh: Add references to Fission docs.
10976
10977 2013-01-16  Pedro Alves  <palves@redhat.com>
10978             Tom Tromey  <tromey@redhat.com>
10979
10980         PR cli/7221:
10981         * NEWS: Add "catch signal".
10982         * breakpoint.c (base_breakpoint_ops): No longer static.
10983         (bpstat_explains_signal): New function.
10984         (init_catchpoint): No longer static.
10985         (base_breakpoint_explains_signal): New function.
10986         (base_breakpoint_ops): Initialize new field.
10987         * breakpoint.h (enum bpstat_signal_value): New.
10988         (struct breakpoint_ops) <explains_signal>: New field.
10989         (bpstat_explains_signal): Remove macro, declare as function.
10990         (base_breakpoint_ops, init_catchpoint): Declare.
10991         * break-catch-sig.c: New file.
10992         * inferior.h (signal_catch_update): Declare.
10993         * infrun.c (signal_catch): New global.
10994         (handle_syscall_event): Update for change to
10995         bpstat_explains_signal.
10996         (handle_inferior_event): Likewise.  Always handle random signals
10997         via bpstats.
10998         (signal_cache_update): Check signal_catch.
10999         (signal_catch_update): New function.
11000         (_initialize_infrun): Initialize signal_catch.
11001         * Makefile.in (SFILES): Add break-catch-sig.c.
11002         (COMMON_OBS): Add break-catch-sig.o.
11003
11004 2013-01-16  Tom Tromey  <tromey@redhat.com>
11005
11006         * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
11007         (print_one_catch_solib, print_one_catch_syscall)
11008         (print_one_catch_exec, print_one_exception_catchpoint): Emit
11009         "catch-type".
11010
11011 2013-01-16  Yao Qi  <yao@codesourcery.com>
11012
11013         * printcmd.c (current_display_number): Make it static.
11014
11015 2013-01-16  Yao Qi  <yao@codesourcery.com>
11016
11017         * infcmd.c (step_once): Don't check '!single_inst' as it was
11018         checked before.
11019
11020 2013-01-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
11021
11022         * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
11023
11024 2013-01-14  Tom Tromey  <tromey@redhat.com>
11025
11026         * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
11027         set command.
11028         * command.h (add_setshow_string_noescape_cmd): Update.
11029         * corefile.c (set_gnutarget_command): Remove trailing whitespace.
11030         (complete_set_gnutarget): New function.
11031         (_initialize_core): Set the "set gnutarget" completer.
11032
11033 2013-01-14  Tom Tromey  <tromey@redhat.com>
11034
11035         PR symtab/14442:
11036         * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
11037         (c_type_print_modifier): Likewise.
11038         * dwarf2read.c (read_tag_restrict_type): New function.
11039         (read_type_die_1): Handle DW_TAG_restrict_type.
11040         * gdbtypes.c (make_restrict_type): New function.
11041         (recursive_dump_type): Handle TYPE_RESTRICT.
11042         * gdbtypes.h (enum type_flag_values): Renumber.
11043         (enum type_instance_flag_value): Add
11044         TYPE_INSTANCE_FLAG_RESTRICT.
11045         (TYPE_RESTRICT): New macro.
11046         (make_restrict_type): Declare.
11047
11048 2013-01-14  Tom Tromey  <tromey@redhat.com>
11049
11050         PR symtab/14931:
11051         * psymtab.c (struct psymtab_state): New.
11052         (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
11053         functions.
11054         * psympriv.h (make_cleanup_discard_psymtabs): Declare.
11055         * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
11056
11057 2013-01-14  Richard Sharman  <richard_sharman@mitel.com>
11058             Pedro Alves  <palves@redhat.com>
11059
11060         PR remote/14786
11061
11062         * remote.c (remote_threads_info): Make a copy of the reply from
11063         qfThreadInfo and use that instead of rs->buf.
11064
11065 2013-01-14  Yao Qi  <yao@codesourcery.com>
11066
11067         * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
11068         (dbx_psymtab_to_symtab): Likewise.
11069         * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
11070         * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
11071         * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
11072
11073 2013-01-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
11074
11075         * parse.c (parse_exp_in_context): New variable inner_chain.  Call
11076         make_cleanup_restore_current_language.  Call set_language.  Move
11077         OLD_CHAIN and INNER_CHAIN cleanups.
11078         * utils.c (do_restore_current_language)
11079         (make_cleanup_restore_current_language): New functions.
11080         * utils.h (make_cleanup_restore_current_language): New declaration.
11081
11082 2013-01-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
11083
11084         * source.c (symtab_to_fullname): Apply rewrite_source_path also for
11085         non-existing files.
11086
11087         * source.c (symtab_to_fullname): Do not prepend DIRNAME for
11088         non-existing files if FILENAME is already absolute.
11089
11090 2013-01-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
11091
11092         * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
11093         fputs_filtered.  Append trailing newline.
11094
11095 2013-01-11  Yao Qi  <yao@codesourcery.com>
11096             Stan Shebs  <stan@codesourcery.com>
11097
11098         * psymtab.c (init_psymbol_list): Clarify the comment.
11099
11100 2013-01-11  Yao Qi  <yao@codesourcery.com>
11101
11102         * breakpoint.c (print_one_breakpoint_location): Remove dead code.
11103         (update_dprintf_command_list): Assert that 'printf_line' is
11104         non-null.  Remove condition check.
11105
11106 2013-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
11107
11108         Code cleanup.
11109         * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
11110         type const char *.
11111         * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
11112         const char *.
11113         * tui/tui-source.h (tui_source_is_displayed): Likewise.
11114
11115 2013-01-09  Anthony Green  <green@moxielogic.com>
11116
11117         * cp-abi.c (cplus_print_vtable): Don't return value from void
11118         function.
11119         * ada-lang.c (re_set_catch_assert): Ditto.
11120
11121 2013-01-09  Doug Evans  <dje@google.com>
11122
11123         * symfile.h (quick_symbol_functions): Delete member
11124         pre_expand_symtabs_matching.  All uses removed.
11125         * dwarf2read.c (dw2_lookup_symbol): Implement.
11126         (dw2_do_expand_symtabs_matching): Delete.
11127         (dw2_pre_expand_symtabs_matching): Delete.
11128         (struct dw2_symtab_iterator): New type.
11129         (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
11130         (dw2_expand_symtabs_for_function): Rewrite.
11131         (dwarf2_gdb_index_functions): Update.
11132         * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
11133         (psym_functions): Update.
11134
11135 2013-01-09  Tom Tromey  <tromey@redhat.com>
11136
11137         * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
11138         * configure: Rebuild.
11139         * configure.ac: Add somread.o to the build if BFD has SOM
11140         support.
11141         * somread.c: Include som/aout.h, not syms.h.
11142         (som_symtab_read): Use som_external_symbol_dictionary_record.
11143         Unpack records manually.
11144         (_initialize_somread): Declare.
11145
11146 2012-01-08  Mike Frysinger  <vapier@gentoo.org>
11147
11148         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
11149         Cast return_address to 64bits.
11150
11151 2013-01-08  Hui Zhu  <hui_zhu@mentor.com>
11152
11153         * printcmd.c: Remove define of function output_command.
11154         * tracepoint.c: Remove extern of function output_command.
11155         * valprint.h: (output_command): New extern.
11156
11157 2013-01-07  Tom Tromey  <tromey@redhat.com>
11158
11159         * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
11160         Remove.
11161         (objc_language_defn): Use c_printchar, c_printstr,
11162         c_emit_char.
11163
11164 2013-01-07  Tom Tromey  <tromey@redhat.com>
11165
11166         PR cli/7719:
11167         * NEWS: Update.
11168         * ada-valprint.c (printstr, print_field_values): Remove
11169         "inspect_it" code.
11170         * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
11171         code.
11172         * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
11173         code.
11174         * m2-lang.c (m2_printstr): Remove "inspect_it" code.
11175         * main.c (captured_main): Remove "epoch" argument.
11176         * objc-lang.c (objc_printstr): Remove "inspect_it" code.
11177         * p-lang.c (pascal_printstr): Remove "inspect_it" code.
11178         * p-valprint.c (pascal_object_print_value_fields): Remove
11179         "inspect_it" code.
11180         * printcmd.c (print_command_1): Remove 'inspect' argument.
11181         (print_command, call_command): Update.
11182         (inspect_command): Remove.
11183         (_initialize_printcmd): Make "inspect" an alias for "print".
11184         * top.c (epoch_interface): Remove.
11185         * top.h (epoch_interface): Remove.
11186         * valprint.c (user_print_options): Update.
11187         (print_converted_chars_to_obstack): Remove "inspect_it" code.
11188         * valprint.h (struct value_print_options) <inspect_it>: Remove
11189         field.
11190
11191 2013-01-04  Tom Tromey  <tromey@redhat.com>
11192
11193         * valprint.h (read_string): Add 'extern'.
11194
11195 2013-01-07  Joel Brobecker  <brobecker@adacore.com>
11196
11197         * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
11198         used to decide whether to define darwin_read_dyld_info or not.
11199
11200 2013-01-03  Pierre Muller  <muller@sourceware.org>
11201
11202         * main.c (relocate_gdb_directory): Avoid calling stat function
11203         if DIR is empty.
11204
11205 2013-01-03  Yao Qi  <yao@codesourcery.com>
11206
11207         * psymtab.c (fixup_psymbol_section): Update declaration.
11208         (fixup_psymbol_section): Remove code returning value.
11209
11210 2013-01-03  Yao Qi  <yao@codesourcery.com>
11211
11212         * symtab.h: Remove some out of date comments.
11213          (enum exception_event_kind): Move it ...
11214         * breakpoint.c: ... here.
11215
11216 2013-01-02  Iain Sandoe  <developer@sandoe-acoustics.co.uk>
11217
11218         PR gdb/14405
11219         * darwin-nat.c (darwin_read_dyld_info): Only build if
11220         TASK_DYLD_INFO_COUNT is defined.
11221         (darwin_xfer_partial): Call darwin_read_dyld_info only if
11222         TASK_DYLD_INFO_COUNT is defined.
11223
11224 2013-01-02  Tom Tromey  <tromey@redhat.com>
11225
11226         * symfile.h (struct ecoff_debug_hack): Remove.
11227         * objfiles.c: Don't include mdebugread.h.
11228
11229 2013-01-02  Tom Tromey  <tromey@redhat.com>
11230
11231         * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
11232         * configure.ac: Check for Mach-O support in BFD.  Update
11233         CONFIG_OBS.
11234         * configure: Rebuild.
11235
11236 2013-01-02  Tom Tromey  <tromey@redhat.com>
11237
11238         * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
11239         * configure.ac: Use GDB_AC_CHECK_BFD.
11240         * configure: Rebuild.
11241
11242 2013-01-01  Maxim Kuvyrkov  <maxim.kuvyrkov@gmail.com>
11243
11244         * MAINTAINERS: Update my email.
11245
11246 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
11247
11248         * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
11249
11250 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
11251
11252         * rs6000-nat.c (bss_data_overlap): New function.
11253         (vmap_symtab): Use it to adjust the .bss section's offset.
11254
11255 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
11256
11257         Update year range in copyright notice of all files.
11258
11259 2013-01-01, 13  Joel Brobecker  <brobecker@adacore.com>
11260
11261         * top.c (print_gdb_version): Update copyright year.
11262
11263 For older changes see ChangeLog-2012.
11264 \f
11265 Local Variables:
11266 mode: change-log
11267 left-margin: 8
11268 fill-column: 74
11269 version-control: never
11270 coding: utf-8
11271 End: