8d79661ba38a90ef98fbabf657c72a1587b6ef15
[external/binutils.git] / gdb / ChangeLog
1 2013-12-10  Yao Qi  <yao@codesourcery.com>
2
3         * infrun.c: Include "target-dcache.h".
4         (prepare_for_detach): Call target_dcache_invalidate.
5         (wait_for_inferior): Likewise.
6         (fetch_inferior_event): Likewise.
7         (infrun_thread_stop_requested_callback): Likewise.  Set
8         overlay_cache_invalid to 1.
9
10 2013-12-10  Joel Brobecker  <brobecker@adacore.com>
11
12         * symtab.c (symbol_find_demangled_name): Add handling of
13         Ada symbols.
14
15 2013-12-10  Joel Brobecker  <brobecker@adacore.com>
16
17         * mi/mi-main.c (mi_cmd_list_features): add "exec-run-start-option".
18         * NEWS: Expand the entry documenting the new -exec-run --start
19         option to mention the corresponding new entry in the output of
20         "-list-features".
21
22 2013-12-10  Joel Brobecker  <brobecker@adacore.com>
23
24         * windows-nat.c (handle_load_dll): Add comments.
25         (windows_ensure_ntdll_loaded): New function.
26         (do_initial_windows_stuff): Use windows_ensure_ntdll_loaded.
27         Add FIXME comment.
28
29 2013-12-08  Joel Brobecker  <brobecker@adacore.com>
30
31         GDB 7.6.2 released.
32
33 2013-12-08  Yao Qi  <yao@codesourcery.com>
34
35         * stack.c (frame_info): Initialize variable caller_pc.
36
37 2013-12-06  Pedro Alves  <palves@redhat.com>
38
39         * frame.c (enum cached_copy_status): New enum.
40         (struct frame_info) <prev_pc.p>: Change type to enum
41         cached_copy_status.
42         (fprint_frame): Handle not saved and unavailable prev_pc values.
43         (frame_unwind_pc_if_available): Delete and merge contents into ...
44         (frame_unwind_pc): ... here.  Handle OPTIMIZED_OUT_ERROR.  Adjust
45         to use enum cached_copy_status.
46         (frame_unwind_caller_pc_if_available): Delete.
47         (create_new_frame): Adjust.
48         * frame.h (frame_unwind_caller_pc_if_available): Delete
49         declaration.
50         * stack.c (frame_info): Use frame_unwind_caller_pc instead of
51         frame_unwind_caller_pc_if_available, and handle
52         NOT_AVAILABLE_ERROR and OPTIMIZED_OUT_ERROR errors.
53         * valprint.c (val_print_optimized_out): Use val_print_not_saved.
54         (val_print_not_saved): New function.
55         * valprint.h (val_print_not_saved): Declare.
56
57 2013-12-06  Andrew Burgess  <aburgess@broadcom.com>
58             Pedro Alves  <palves@redhat.com>
59
60         * exceptions.h (errors): Add OPTIMIZED_OUT_ERROR.
61         * dwarf2loc.c (write_pieced_value): Throw OPTIMIZED_OUT_ERROR.
62         * frame.c (frame_unwind_register): Throw OPTIMIZED_OUT_ERROR.
63         * spu-tdep.c (spu_software_single_step): Throw
64         OPTIMIZED_OUT_ERROR.
65         * valops.c (value_assign): Throw OPTIMIZED_OUT_ERROR.
66
67 2013-12-06  Tom Tromey  <tromey@redhat.com>
68
69         * objfiles.c (free_objfile): Update comment.
70
71 2013-12-06  Tom Tromey  <tromey@redhat.com>
72
73         * objfiles.h (objfile_to_front): Remove.
74         * objfiles.c (objfile_to_front): Remove.
75
76 2013-12-06  Tom Tromey  <tromey@redhat.com>
77
78         * minsyms.c (get_symbol_leading_char): Remove unnecessary
79         declaration.
80
81 2013-12-06  Tom Tromey  <tromey@redhat.com>
82
83         * psympriv.h (struct partial_symtab) <user>: Move earlier.
84
85 2013-12-06  Tom Tromey  <tromey@redhat.com>
86
87         * cli/cli-cmds.c (edit_command): Use paddress, not hex_string.
88         (list_command): Likewise.
89
90 2013-12-06  Tom Tromey  <tromey@redhat.com>
91
92         * psymtab.c (allocate_psymtab): Put the filename in the filename
93         bcache.
94
95 2013-12-06  Tom Tromey  <tromey@redhat.com>
96
97         * buildsym.c (end_symtab_from_static_block): Use obstack_copy0.
98         * symtab.h (struct symtab) <dirname>: Now const.
99
100 2013-12-06  Tom Tromey  <tromey@redhat.com>
101
102         * symfile.c (allocate_symtab): Remove cast.
103         * symtab.h (struct symtab) <filename>: Now const.
104
105 2013-12-06  Tom Tromey  <tromey@redhat.com>
106
107         * break-catch-throw.c (fetch_probe_arguments): Use
108         get_probe_argument_count and evaluate_probe_argument.
109         * elfread.c (elf_get_probe_argument_count)
110         (elf_can_evaluate_probe_arguments, elf_evaluate_probe_argument)
111         (elf_compile_to_ax): Remove.
112         (elf_probe_fns): Update.
113         * probe.c (get_probe_argument_count, can_evaluate_probe_arguments)
114         (evaluate_probe_argument): Call method on probe, not via sym
115         functions.
116         * stap-probe.c (compute_probe_arg): Use get_probe_argument_count,
117         evaluate_probe_argument.
118         (compile_probe_arg): Use get_probe_argument_count.  Call method on
119         probe, not via sym functions.
120         * symfile-debug.c (debug_sym_get_probe_argument_count)
121         (debug_can_evaluate_probe_arguments)
122         (debug_sym_evaluate_probe_argument, debug_sym_compile_to_ax):
123         Remove.
124         (debug_sym_probe_fns): Remove.
125         * symfile.h (struct sym_probe_fns) <sym_get_probe_argument_count,
126         can_evaluate_probe_arguments, sym_evaluate_probe_argument,
127         sym_compile_to_ax>: Remove fields.
128
129 2013-12-06  Pierre Muller  <muller@sourceware.org>
130
131         Fix completion for pascal language.
132         * p-exp.y (exp : field_exp name): Do not call mark_struct_expression.
133         (exp : field_exp name COMPLETE): New rule.
134         (exp : SIZEOF): Set correct current_type.
135         (last_was_structop): Remove static variable.
136         (yylex): Remove saw_structop local variable.
137         Adapt code to removal of variables above.
138
139 2013-12-06  Joel Brobecker  <brobecker@adacore.com>
140
141         * frame.c (get_prev_frame_1): Delete variable "this_id".
142         Replace its use by a call to get_frame_id.
143
144 2013-12-05  Anthony Green  <green@moxielogic.com>
145
146         * moxie-tdep.c (moxie_software_single_step): New function.
147         (INST2OFFSET): New helper macro.
148         (moxie_gdbarch_init): Call set_gdbarch_software_single_step.
149         (moxie_process_readu): Move this up in the file.
150
151 2013-12-05  Doug Evans  <xdje42@gmail.com>
152
153         * auto-load.c (load_auto_scripts_for_objfile): Add some comments.
154
155 2013-12-05  Joel Brobecker  <brobecker@adacore.com>
156             Tristan Gingold  <gingold@adacore.com>
157
158         * amd64-windows-tdep.c (amd64_windows_frame_decode_insns):
159         Accept version 2.  Ignore operations using opcode 6.
160
161 2013-12-05  Joel Brobecker  <brobecker@adacore.com>
162
163         * ada-lex.l (find_dot_all): Fix coding style violations.
164
165 2013-12-03  Walfred Tedeschi  <walfred.tedeschi@intel.com>
166
167         * NEWS:  Add section for Intel(R) Architecture Instructions
168         Extesions mentioning MPX.
169
170 2013-12-03  Joel Brobecker  <brobecker@adacore.com>
171
172         * ada-lex.l (find_dot_all): Use strncasecmp instead of strncmp.
173
174 2013-12-03  Joel Brobecker  <brobecker@adacore.com>
175
176         * ada-lang.c (create_excep_cond_exprs): Force EXP to NULL
177         when parse_exp_1 threw an error.  Add comment.
178
179 2013-12-03  Joel Brobecker  <brobecker@adacore.com>
180
181         * NEWS: Mention "-list-features" in the entry documenting
182         the support for the "--language" option.
183
184 2013-12-03  Tom Tromey  <tromey@redhat.com>
185             Jan Kratochvil  <jan.kratochvil@redhat.com>
186             Doug Evans  <dje@google.com>
187             Samuel Bronson  <naesten@gmail.com>
188
189         Bring back gdb-add-index as a contrib script.
190         * contrib/gdb-add-index.sh: New file.
191         * NEWS: Note the addition.
192
193 2013-12-03  Samuel Bronson  <naesten@gmail.com>
194
195         * MAINTAINERS (Write After Approval): Add myself to the list.
196
197 2013-12-03  Joel Brobecker  <brobecker@adacore.com>
198
199         * mi/mi-main.c (mi_cmd_list_features): Remove "ada-exceptions".
200
201 2013-12-03  Joel Brobecker  <brobecker@adacore.com>
202
203         * mi/mi-main.c: Remove trailing spaces throughout.
204
205 2013-12-03  Pedro Alves  <palves@redhat.com>
206             Joel Brobecker  <brobecker@adacore.com>
207
208         * exceptions.h (enum_errors) <UNDEFINED_COMMAND_ERROR>: New enum.
209         * mi/mi-parse.c (mi_parse): Throw UNDEFINED_COMMAND_ERROR instead
210         of a regular error when the GDB/MI command does not exist.
211         * mi/mi-main.c (mi_cmd_list_features): Add
212         "undefined-command-error-code".
213         (mi_print_exception): Print an "undefined-command"
214         error code if EXCEPTION.ERROR is UNDEFINED_COMMAND_ERROR.
215         * NEWS: Add entry documenting the new "code" variable in
216         "^error" result records.
217
218 2013-12-03  Joel Brobecker  <brobecker@adacore.com>
219
220         * mi/mi-cmds.h (mi_cmd_info_gdb_mi_command): Declare.
221         * mi/mi-cmd-info.c (mi_cmd_info_gdb_mi_command): New function.
222         * mi/mi-cmds.c (mi_cmds): Add -info-gdb-mi-command command.
223         * mi/mi-main.c (mi_cmd_list_features): Add "info-gdb-mi-command"
224         field to output of "-list-features".
225
226         * NEWS: Add entry for new -info-gdb-mi-command.
227
228 2013-12-02  Doug Evans  <dje@google.com>
229             Jan Kratochvil  <jan.kratochvil@redhat.com>
230
231         * objfiles.c (allocate_objfile): Save original_name as an absolute
232         path.
233         * objfiles.h (struct objfile): Expand comment on original_name.
234         * source.c (openp): Call gdb_abspath.
235         * utils.c (gdb_abspath): New function.
236         * utils.h (gdb_abspath): Declare.
237
238 2013-12-02  Pedro Alves  <palves@redhat.com>
239
240         * dcache.c (dcache_read_line): Use target_read_raw_memory.
241         * target.c (target_read_raw_memory): New function.
242         (target_read_stack, target_write_memory, target_write_raw_memory):
243         Update comment.
244         (target_read_code): Add comment.
245         * target.h (target_read_raw_memory): Declare.
246
247 2013-12-02  Pedro Alves  <palves@redhat.com>
248
249         * ctf.c (ctf_start): Use S_IRGRP, S_IXGRP, S_IXOTH
250         unconditionally.
251
252 2013-12-02  Pedro Alves  <pedro@codesourcery.com>
253             Maciej W. Rozycki  <macro@codesourcery.com>
254
255         * remote.c (putpkt_for_catch_errors): Remove function.
256         (remote_kill): Handle TARGET_CLOSE_ERROR from the kill packet
257         gracefully.
258
259 2013-12-02  Pedro Alves  <palves@redhat.com>
260
261         PR remote/15974
262         * remote-notif.c (handle_notification): Return early if no
263         notification is found.
264
265 2013-12-02  Joel Brobecker  <brobecker@adacore.com>
266
267         * common/filestuff.c (fdwalk): Add "defined(RLIMIT_NOFILE)"
268         preprocessor check.
269
270 2013-12-02  Joel Brobecker  <brobecker@adacore.com>
271
272         * Makefile.in (HFILES_NO_SRCDIR): Remove "common/gdb_dirent.h".
273
274 2013-12-02  Joel Brobecker  <brobecker@adacore.com>
275
276         * Makefile.in (HFILES_NO_SRCDIR): Remove "common/gdb_stat.h".
277         * ctf.c (ctf_start): Remove obsolete comment.
278
279 2013-12-02  Joel Brobecker  <brobecker@adacore.com>
280
281         * Makefile.in (HFILES_NO_SRCDIR): Remove "common/gdb_string.h".
282
283 2013-11-30  Doug Evans  <xdje42@gmail.com>
284
285         * auto-load.h (script_language): New members name, auto_load_enabled.
286         Add missing comments on struct members.
287         (auto_load_objfile_script): Delete.
288         * auto-load.c: #include "cli/cli-cmds.h".
289         (auto_load_gdb_scripts_enabled): New function.
290         (script_language_gdb): Update, add new members.
291         (source_gdb_script_for_objfile): Simplify, auto-load safe-checking
292         and call to maybe_add_script moved to caller.
293         (auto_load_objfile_script_1): Auto-load safe-checking and
294         call to maybe_add_script moved here.
295         (auto_load_objfile_script): Make static.  Early exit if support for
296         scripting language hasn't been compiled in, or auto-loading has been
297         disabled.
298         (source_section_scripts): Argument "source_name" renamed to
299         "section_name".  All uses updated.  Replace uses of AUTO_SECTION_NAME
300         with section_name.  Skip loading script if support for scripting
301         language hasn't been compiled in, or auto-loading has been disabled.
302         Call language->source_script_for_objfile instead of calling
303         source_python_script_for_objfile directly.
304         (load_auto_scripts_for_objfile): Update.
305         * python/py-auto-load.c: Delete #include "cli/cli-cmds.h".
306         (gdbpy_load_auto_script_for_objfile): Delete.
307         (auto_load_python_scripts_enabled): New function.
308         (script_language_python): Update, add new members.
309         (gdbpy_script_language_defn): New function.
310         * python/python.h (gdbpy_load_auto_scripts_for_objfile): Delete.
311         (gdbpy_script_language_defn): Declare.
312
313         * auto-load.c (AUTO_SECTION_NAME): Moved here and renamed from
314         py-auto-load.c, GDBPY_AUTO_SECTION_NAME.
315         (source_section_scripts): Moved here from py-auto-load.c.
316         (auto_load_section_scripts): Ditto.
317         * python/py-auto-load.c (GDBPY_AUTO_SECTION_NAME): Moved to
318         auto-load.c, renamed AUTO_SECTION_NAME.
319         (source_section_scripts, auto_load_section_scripts): Moved to
320         auto-load.c.
321
322 2013-11-30  Yao Qi  <yao@codesourcery.com>
323
324         * remote.c (getpkt_or_notif_sane_1): Fix typo "checksm".
325
326 2013-11-29  Sergio Durigan Junior  <sergiodj@redhat.com>
327
328         * gdbarch.sh: Remove include of "gdb_string.h", replace by
329         <string.h>.
330
331 2013-11-29  Doug Evans  <xdje42@gmail.com>
332
333         * python/py-auto-load.c (source_section_scripts): Move comment to
334         more relevant location.
335
336         Whitespace cleanup.
337         * python/py-breakpoint.c: Remove trailing whitespace.
338         * python/py-cmd.c: Ditto.
339         * python/py-evts.c: Ditto.
340         * python/py-finishbreakpoint.c: Ditto.
341         * python/py-frame.c: Ditto.
342         * python/py-function.c: Ditto.
343         * python/py-inferior.c: Ditto.
344         * python/py-infthread.c: Ditto.
345         * python/py-param.c: Ditto.
346         * python/py-prettyprint.c: Ditto.
347         * python/py-symbol.c: Ditto.
348         * python/py-type.c: Ditto.
349         * python/py-utils.c: Ditto.
350         * python/py-value.c: Ditto.
351         * python/python-internal.h: Ditto.
352         * python/python.c: Ditto.
353
354 2013-11-29  Pedro Alves  <palves@redhat.com>
355
356         * unwind_stop_reasons.def (UNWIND_NULL_ID): Update comment.
357
358 2013-11-29  Pedro Alves  <palves@redhat.com>
359
360         * breakpoint.c (build_target_condition_list): Release previous
361         conditions.
362         (build_target_command_list): Release previous commands.
363         (bp_location_dtor): Release target conditions and commands.
364         * remote.c (remote_add_target_side_condition): Don't release
365         conditions.
366         (remote_add_target_side_commands): Don't release commands.
367
368 2013-11-29  Yao Qi  <yao@codesourcery.com>
369             Pedro Alves  <palves@redhat.com>
370
371         * dcache.c (dcache_read_line): Use current_target.beneath
372         instead of &current_target.
373         * target.c (memory_xfer_partial_1): Factor code out to ...
374         (raw_memory_xfer_partial): ... it.  New function.
375         (target_xfer_partial): Call raw_memory_xfer_partial if OBJECT
376         is TARGET_OBJECT_RAW_MEMORY.
377
378 2013-11-28  Doug Evans  <xdje42@gmail.com>
379
380         * breakpoint.h (gdbpy_breakpoint_object): Renamed from
381         breakpoint_object.  All uses updated.
382         * python/python-internal.h (gdbpy_breakpoint_object): Renamed from
383         breakpoint_object.  All uses updated.
384         * python.c (*): All uses of breakpoint_object updated.
385         * python.h (*): All uses of breakpoint_object updated.
386         * python/py-breakpoint.c (*): All uses of breakpoint_object updated.
387         * python/py-finishbreakpoint.c (*): Ditto.
388
389 2013-11-28  Doug Evans  <xdje42@gmail.com>
390
391         * configure.ac: Add comments delineating libpython and libmcheck.
392         * configure: Regenerate.
393
394 2013-11-28  Andrew Burgess  <aburgess@broadcom.com>
395             Pedro Alves  <palves@redhat.com>
396
397         * valprint.c (value_check_printable): If the value is entirely
398         unavailable, print a single "<unavailable>" instead of printing
399         all subfields.
400
401 2013-11-28  Pedro Alves  <palves@redhat.com>
402
403         * frame.c (get_prev_frame_1) <stop_reason != UNWIND_NO_REASON>:
404         Add "set debug frame" output.
405         (frame_stop_reason_symbol_string): New function.
406
407 2013-11-28  Pedro Alves  <palves@redhat.com>
408
409         * frame-unwind.c (default_frame_unwind_stop_reason): Return
410         UNWIND_OUTERMOST if the frame's ID is outer_frame_id.
411         * frame.c (get_prev_frame_1): Remove outer_frame_id check.
412
413 2013-11-28  Pedro Alves  <palves@redhat.com>
414
415         * frame.c (get_prev_frame_1): If the frame id is outer_frame_id,
416         set the unwind stop reason to UNWIND_OUTERMOST, not
417         UNWIND_NULL_ID.  Remove explicit check for sentinel frame.
418
419 2013-11-28  Pedro Alves  <palves@redhat.com>
420
421         * frame.c (frame_unwind_register): Say the register was "not
422         saved" instead of "optimized out".
423
424 2013-11-27  Steffen Sledz  <sledz@dresearch-fe.de>
425
426         PR 16152
427         * configure: Rebuild.
428         * configure.ac: Tighten cygwin detection check.
429
430 2013-11-27  Pedro Alves  <palves@redhat.com>
431
432         * frame-unwind.c (frame_unwind_got_optimized): Use the type of the
433         register in the previous frame's arch.
434
435 2013-11-27  Pedro Alves  <palves@redhat.com>
436
437         * frame-unwind.c (frame_unwind_got_optimized): Return
438         an lval_register value instead of a not_lval value.
439
440 2013-11-27  Andrew Burgess  <aburgess@broadcom.com>
441
442         * frame.c: Include "valprint.h".
443         (frame_unwind_register_value): Use value_optimized_out.
444         * value.c (value_fetch_lazy): Likewise.
445
446 2013-11-26  Andrew Burgess  <aburgess@broadcom.com>
447
448         * value.c (allocate_optimized_out_value): Mark value as non-lazy.
449
450 2013-11-26  Tom Tromey  <tromey@redhat.com>
451
452         * dwarf2-frame.c (dwarf2_frame_cache): Revert patch from
453         2013-11-22.
454
455 2013-11-26  Walfred Tedeschi  <walfred.tedeschi@intel.com>
456
457         * i386-xstate.h (I386_XSTATE_MPX): New Macro.
458         (I386_XSTATE_MPX_MASK): Makes use of I386_XSTATE_MPX.
459         (HAS_MPX): New macro.
460         (HAS_AVX): New macro.
461         (I386_XSTATE_SIZE): Uses HAS_MPX and HAS_AVX.
462
463 2013-11-25  Keith Seitz  <keiths@redhat.com>
464
465         PR c++/14819
466         * c-exp.y (classify_inner_name): If no matching symbol was
467         found, try looking up the token as a base class.
468         Likewise if a constructor was found.
469         * cp-namespace.c (find_type_baseclass_by_name): New function.
470         * cp-support.h (find_type_baseclass_by_name): Declare.
471         * valops.c (value_struct_elt_for_reference): If we get
472         a non-static field, try to get a value based on the
473         current instance, if any.
474
475 2013-11-24  Yao Qi  <yao@codesourcery.com>
476
477         * disasm.c (dis_asm_read_memory): Call target_read_code
478         instead of target_read_memory.
479
480 2013-11-24  Yao Qi  <yao@codesourcery.com>
481
482         * NEWS: Add note on new "set code-cache" option.
483         * target-dcache.c (code_cache_enabled_1): New variable.
484         (code_cache_enabled): New variable.
485         (show_code_cache, set_code_cache): New function.
486         (code_cache_enabled_p): New function.
487         (_initialize_target_dcache): Register command.
488         * target-dcache.h (code_cache_enabled_p): Declare.
489         * target.c (memory_xfer_partial_1):Handle
490         TARGET_OBJECT_CODE_MEMORY and code_cache_enabled.
491         (target_read_code): New function.
492         * target.h (enum target_object) <TARGET_OBJECT_CODE_MEMORY>:
493         New.
494         (target_read_code): Declare.
495
496 2013-11-24  Yao Qi  <yao@codesourcery.com>
497
498         * target-dcache.c (stack_cache_enabled_p_1): Rename to ...
499         (stack_cache_enabled_1): ... this.  New variable.
500         (stack_cache_enabled_p): Rename to ...
501         (stack_cache_enabled): ... this.  New variable.
502         (set_stack_cache_enabled_p): Rename to ...
503         (set_stack_cache): ... this.  Update caller.
504         (show_stack_cache_enabled_p): Rename to ...
505         (show_stack_cache): ... this.  Update caller.
506         (stack_cache_enabled): Rename to ...
507         (stack_cache_enabled_p): ... this.  Update caller.
508         (_initialize_target_dcache): Replace "data cache" with
509         "target memory cache".
510         * target-dcache.h (stack_cache_enabled): Remove declaration.
511         (stack_cache_enabled_p): Add declaration.
512
513 2013-11-23  Doug Evans  <xdje42@gmail.com>
514
515         * python/py-frame.c (gdbpy_initialize_frames): Remove FIRST_ERROR,
516         superfluous.
517
518 2013-11-23  Doug Evans  <xdje42@gmail.com>
519
520         * python/py-frame.c (frapy_block): Fix error message text.
521
522 2013-11-23  Doug Evans  <xdje42@gmail.com>
523
524         * cli/cli-script.c (multi_line_command_p): New function.
525         (recurse_read_control_structure, read_command_lines_1): Call it.
526         (execute_control_command): Consistently have a blank line between
527         each case.
528
529 2013-11-22  Sterling Augustine  <saugustine@google.com>
530
531         PR gdb/16196:
532         * valprint.c (read_string): Set new variable fetchlen based on
533         fetchlimit and size.  Use it in call to partial_memory_read.
534         Update comment.
535
536 2013-11-22  Tom Tromey  <tromey@redhat.com>
537
538         PR backtrace/16155:
539         * dwarf2-frame.c (dwarf2_frame_cache): Set undefined_retaddr if
540         the return address column is unspecified.
541
542 2013-11-22  Tom Tromey  <tromey@redhat.com>
543             Pedro Alves  <palves@redhat.com>
544
545         PR backtrace/16155
546         * value.c (value_fetch_lazy): Internal error if
547         get_frame_register_value returns the same register.
548
549 2013-11-22  Pedro Alves  <palves@redhat.com>
550             Tom Tromey  <tromey@redhat.com>
551
552         * frame.c (frame_stash_add): Now returns whether a frame with the
553         same ID was already known.
554         (compute_frame_id): New function, factored out from get_frame_id.
555         (get_frame_id): No longer lazilly compute the frame id here.
556         (get_prev_frame_if_no_cycle): New function.  Detects wider stack
557         cycles.
558         (get_prev_frame_1): Use it instead of get_prev_frame_raw directly,
559         and checking for stack cycles here.
560
561 2013-11-22  Pedro Alves  <palves@redhat.com>
562
563         PR 16155
564         * frame.c (get_prev_frame_1): Do the UNWIND_SAME_ID check between
565         this frame and the new previous frame, not between this frame and
566         the next frame.
567
568 2013-11-22  Pedro Alves  <palves@redhat.com>
569
570         PR 16155
571         * dwarf2-frame.c (struct dwarf2_frame_cache)
572         <checked_tailcall_bottom, entry_cfa_sp_offset,
573         entry_cfa_sp_offset_p>: New fields.
574         (dwarf2_frame_cache): Adjust to use the new cache fields instead
575         of locals.  Don't call dwarf2_tailcall_sniffer_first here.
576         (dwarf2_frame_prev_register): Call it here, but only once.
577
578 2013-11-21  Doug Evans  <xdje42@gmail.com>
579
580         * gdbtypes.c: #include bcache.h, dwarf2loc.h.
581         (type_equality_entry): Move here from python/py-type.c.
582         (type_equality_entry_d): Ditto.
583         (compare_maybe_null_strings, check_types_equal): Ditto.
584         (check_types_worklist, types_deeply_equal): Ditto.
585         * gdbtypes.h (types_deeply_equal): Declare.
586         * python/py-type.c: Remove inclusion of bcache.h, dwarf2loc.h.
587         (typy_richcompare): Update.
588
589 2013-11-20  Joel Brobecker  <brobecker@adacore.com>
590
591         * python/py-value.c (is_intlike): Delete.
592         (valpy_int): Replace use of CHECK_TYPEDEF and is_intlike
593         by use of is_integral_type.
594         (valpy_long): Replace use of CHECK_TYPEDEF and is_intlike
595         by use of is_integral_type and check for TYPE_CODE_PTR.
596
597 2013-11-20  Tom Tromey  <tromey@redhat.com>
598
599         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Remove
600         strerror module.
601         * gnulib/aclocal.m4: Update.
602         * gnulib/config.in: Update.
603         * gnulib/configure: Update.
604         * gnulib/import/Makefile.am: Update.
605         * gnulib/import/Makefile.in: Update.
606         * gnulib/import/errno.in.h: Remove.
607         * gnulib/import/intprops.h: Remove.
608         * gnulib/import/m4/errno_h.m4: Remove.
609         * gnulib/import/m4/gnulib-cache.m4: Update.
610         * gnulib/import/m4/gnulib-comp.m4: Update.
611         * gnulib/import/m4/strerror.m4: Remove.
612         * gnulib/import/m4/sys_socket_h.m4: Remove.
613         * gnulib/import/strerror-override.c: Remove.
614         * gnulib/import/strerror-override.h: Remove.
615         * gnulib/import/strerror.c: Remove.
616         * gnulib/update-gnulib.sh: Update.
617
618 2013-11-20  Yao Qi  <yao@codesourcery.com>
619
620         * target-dcache.c (target_dcache_get_or_init): Call
621         set_address_space_data if 'dcache' is NULL.
622
623 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
624
625         * common/i386-gcc-cpuid.h (bit_MPX): Synchronize with gcc file.
626
627 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
628
629         * python/lib/gdb/command/bound_register.py: New file.
630         * data-directory/Makefile.in: Copy bond_register.py to the right path
631         to be initialized at gdb startup.
632
633 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
634
635         * amd64-linux-nat.c (amd64_linux_gregset32_reg_offset):
636         Add MPX registers.
637         (amd64_linux_read_description): Add initialization for MPX and
638         AVX independently.
639         * amd64-linux-tdep.c: Includes features/i386/amd64-mpx-linux.c.
640         (amd64_linux_gregset_reg_offset): Add MPX registers.
641         (amd64_linux_core_read_description): Add initialization for MPX
642         registers.
643         (_initialize_amd64_linux_tdep): Initialize MPX targets.
644         * amd64-linux-tdep.h (AMD64_LINUX_RAX_REGNUM): Set it to the last
645         register on the list.
646         (tdesc_amd64_mpx_linux) Add new target  for MPX.
647         * amd64-tdep.c: Includes features/i386/amd64-mpx.c.
648         (amd64_mpx_names): MPX register names.
649         (amd64_init_abi): Add MPX register while initializing the ABI.
650         (_initialize_amd64_tdep): Initialize MPX targets.
651         * amd64-tdep.h (amd64_regnum): Add MPX registers.
652         (AMD64_NUM_REGS): Set number of registers taking MPX into account.
653
654 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
655
656         * i386-linux-nat.c (GETXSTATEREGS_SUPPLIES): Add MPX
657         registers on the range of registers to be read from
658         xsave buffer.
659         (i386_linux_read_description): Add case for MPX.
660         * i386-linux-tdep.c: Include features/i386/i386-mpx-linux.c.
661         (i386_linux_gregset_reg_offset): Add MPX registers.
662         (i386_linux_core_read_description): Initialize also MPX.
663         (_initialize_i386_linux_tdep): Add mpx initialization.
664         * i386-tdep.h (gdbarch_tdep): Add fields bnd0r_regnum, bnd0_regnum,
665         mpx_register_names.
666         (i386_regnum): Add MPX registers.
667         (I386_MPX_NUM_REGS): New macro.
668         (i386_bnd_regnum_p): New function.
669         * i386-linux-tdep.h (I386_LINUX_NUM_REGS): Set
670         number of registers to be the number of BNDSTATUS.
671         (tdesc_i386_mpx_linux): Add description for MPX Linux registers.
672         * i386-tdep.c: Include features/i386/i386-mpx.c.
673         (i386_mpx_names): Add MPX register names array.
674         (i386_bnd_names): Add bnd pseudo register names array.
675         (i386_bndr_regnum_p): Lookup register numbers for bnd raw
676         registers.
677         (i386_bndr_regnum_p): Lookup register numbers for bnd raw registers.
678         (386_mpx_ctrl_regnum_p): Lookup register numbers for MPX control
679         registers.
680         (i386_bnd_type): New function.
681         (i386_pseudo_register_type): Use i386_bnd_type for bnd pseudo
682         register types.
683         (i386_pseudo_register_read_into_value): Add bnd case.
684         (i386_pseudo_register_write): Add bnd pseudo registers.
685         (i386_register_reggroup_p): Add MPX register to the group all.
686         (i386_validate_tdesc_p): Add MPX to the target  description
687         validation.
688         (i386_pseudo_register_name): Add bnd pseudo registers.
689         (i386_gdbarch_init): Add MPX for architecture initialization.
690         (_initia_initialize_i386_tdep): Add mpx initialization.
691         * i387-tdep.c (xsave_mpx_offset): New vector for MPX offsets on
692         XSAVE buffer.
693         (XSAVE_MPX_ADDR): New macro.
694         (i387_supply_xsave): Add MPX case.
695         (i387_collect_xsave): Add MPX case.
696         * i387-tdep.h (I387_BND0R_REGNUM): New macro.
697         (I387_BNDCFGU_REGNUM): New macro.
698         (I387_NUM_MPX_REGS): New macro.
699         (I387_NUM_BND_REGS): New macro.
700         (I387_NUM_MPX_CTRL_REGS): New macro.
701         (I387_MPXEND_REGNUM): New macro.
702         * common/i386-xstate.h (I386_XSTATE_BNDREGS): New macro.
703         (I386_XSTATE_BNDCFG): Likewise.
704         (I386_XSTATE_MPX_MASK): Likewise.
705         (I386_XSTATE_ALL_MASK): New macro represents flags for all states.
706         (I386_XSTATE_BNDREGS_SIZE): New macro.
707         (I386_XSTATE_BNDCFG_SIZE): Likewise.
708         (I386_XSTATE_SIZE): Adapt for MPX.
709         (I386_XSTATE_MAX_SIZE): Likewise.
710
711 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
712
713         * features/i386/Makefile: Adapts for using MPX registers.
714         * features/i386/32bit-mpx.xml: New file.
715         * features/i386/64bit-mpx.xml: Likewise.
716         * features/i386/amd64-mpx-linux.c: Likewise.
717         * features/i386/amd64-mpx-linux.xml: Likewise.
718         * features/i386/amd64-mpx.c: Likewise.
719         * features/i386/amd64-mpx.xml: Likewise.
720         * features/i386/i386-mpx-linux.c: Likewise.
721         * features/i386/i386-mpx-linux.xml: Likewise.
722         * features/i386/i386-mpx.c: Likewise.
723         * features/i386/i386-mpx.xml: Likewise.
724         * regformats/i386/amd64-mpx-linux.dat: New file.
725         * regformats/i386/amd64-mpx.dat: Likewise.
726         * regformats/i386/i386-mpx-linux.dat: Likewise.
727         * regformats/i386/i386-mpx.dat: Likewise.
728
729 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
730
731         * target-descriptions.c (maint_print_maint_print_c_tdesc_cmd):
732         Modified logic of creating a bitfield to be in sync with
733         tdesc_gdb_type.
734
735 2013-11-20  Will Newton  <will.newton@linaro.org>
736
737         * arm-tdep.c (arm_get_next_pc): Remove "Infinite loop detected"
738         error message.
739
740 2013-11-20  Yao Qi  <yao@codesourcery.com>
741
742         * progspace.h (struct address_space_data): Declare.
743         * target-dcache.c: Include "progspace.h".
744         (target_dache): Remove.
745         (target_dcache_aspace_key): New.
746         (target_dcache_cleanup): New function.
747         (target_dcache_init_p): Get data through
748         target_dcache_aspace_key.
749         (target_dcache_invalidate): Likewise.
750         (target_dcache_get): Likewise.
751         (target_dcache_get_or_init): Likewise.
752         (_initialize_target_dcache): Initialize
753         target_dcache_aspace_key.
754
755 2013-11-20  Yao Qi  <yao@codesourcery.com>
756
757         * progspace.c (struct address_space): Update comments.
758         <REGISTRY_FIELDS>: New fields.
759         DEFINE_REGISTRY for address_space.
760         (new_address_space): Call address_space_alloc_data.
761         (free_address_space): Call address_space_free_data.
762         * progspace.h: Use DECLARE_REGISTRY.
763
764 2013-11-20  Yao Qi  <yao@codesourcery.com>
765
766         * Makefile.in (SFILES):Add target-dcache.c.
767         (HFILES_NO_SRCDIR): Add target-dcache.h.
768         (COMMON_OBS): Add target-dcache.o.
769         * dcache.c: Remove inclusion to "target.h".  Include
770         "target-dcache.h".
771         * memattr.c: Include "target-dcache.h".
772         * top.c: Likewise.
773         * tracepoint.c: Likewise.
774         * target.c: (stack_cache_enabled_p_1): Move to
775         target-dcache.c.
776         (stack_cache_enabled_p): Likewise.
777         (set_stack_cache_enabled_p): Likewise.
778         (show_stack_cache_enabled_p): Likewise.
779         (target_dcache, target_dcache_init_p): Likewise.
780         (target_dcache_invalidate): Likewise.
781         (target_dcache_get, target_dcache_get_or_init): Likewise.
782         (memory_xfer_partial_1): Call function stack_cache_enabled.
783         (initialize_target): Move code to target-dcache.c.
784         * target.h (target_dcache_invalidate): Move to
785         target-dcache.h.
786         (target_dcache_get): Likewise.
787         * target-dcache.c: New.
788         * target-dcache.h: New.
789
790 2013-11-20  Yao Qi  <yao@codesourcery.com>
791
792         * target.c (memory_xfer_partial_1): Update 'target_dcache' if
793         it is initialized.
794
795 2013-11-20  Yao Qi  <yao@codesourcery.com>
796
797         * dcache.c (last_cache): Remove.
798         (dcache_free, dcache_init): Update.
799         (dcache_update):
800         (dcache_print_line): Add parameter 'dcache'.  Replace
801         'target_dcache' with 'dcache'.
802         (dcache_info): Move code to dcache_info_1. Call
803         'dcache_info_1'.
804         (dcache_info_1): New function.
805         (set_dcache_size): Call target_dcache_invalidate.
806         (set_dcache_line_size): Call target_dcache_invalidate.
807         * target.c (target_dcache_init_p): New function.
808         (target_dcache_invalidate): Check target_dcache_init_p first.
809         (target_dcache_get, target_dcache_get_or_init): New function.
810         (memory_xfer_partial_1): Adjust.
811         (initialize_target): Don't initialize 'target_dcache'.
812         * target.h (struct dcache_struct): Declare.
813         (target_dcache_get): Declare.
814
815 2013-11-19  Yao Qi  <yao@codesourcery.com>
816
817         * varobj.c (varobj_get_type): Fix typo.
818
819 2013-11-19  Joel Brobecker  <brobecker@adacore.com>
820
821         * python/py-value.c (is_intlike): Add TYPE_CODE_RANGE handling.
822
823 2013-11-19  Joel Brobecker  <brobecker@adacore.com>
824
825         * contrib/ari/gdb_ari.sh: Remove checks for "dirent.h" and
826         "stat.h".
827
828 2013-11-18  Tom Tromey  <tromey@redhat.com>
829
830         * common/gdb_stat.h: Remove.
831         * ada-lang.c: Use sys/stat.h, not gdb_stat.h.
832         * common/filestuff.c: Use sys/stat.h, not gdb_stat.h.
833         * common/linux-osdata.c: Use sys/stat.h, not gdb_stat.h.
834         * corefile.c: Use sys/stat.h, not gdb_stat.h.
835         * ctf.c: Use sys/stat.h, not gdb_stat.h.
836         * darwin-nat.c: Use sys/stat.h, not gdb_stat.h.
837         * dbxread.c: Use sys/stat.h, not gdb_stat.h.
838         * dwarf2read.c: Use sys/stat.h, not gdb_stat.h.
839         * exec.c: Use sys/stat.h, not gdb_stat.h.
840         * gdbserver/linux-low.c: Use sys/stat.h, not gdb_stat.h.
841         * gdbserver/remote-utils.c: Use sys/stat.h, not gdb_stat.h.
842         * inf-child.c: Use sys/stat.h, not gdb_stat.h.
843         * jit.c: Use sys/stat.h, not gdb_stat.h.
844         * linux-nat.c: Use sys/stat.h, not gdb_stat.h.
845         * m68klinux-nat.c: Use sys/stat.h, not gdb_stat.h.
846         * main.c: Use sys/stat.h, not gdb_stat.h.
847         * mdebugread.c: Use sys/stat.h, not gdb_stat.h.
848         * mi/mi-cmd-env.c: Use sys/stat.h, not gdb_stat.h.
849         * nto-tdep.c: Use sys/stat.h, not gdb_stat.h.
850         * objfiles.c: Use sys/stat.h, not gdb_stat.h.
851         * procfs.c: Use sys/stat.h, not gdb_stat.h.
852         * remote-fileio.c: Use sys/stat.h, not gdb_stat.h.
853         * remote-mips.c: Use sys/stat.h, not gdb_stat.h.
854         * remote.c: Use sys/stat.h, not gdb_stat.h.
855         * rs6000-nat.c: Use sys/stat.h, not gdb_stat.h.
856         * sol-thread.c: Use sys/stat.h, not gdb_stat.h.
857         * solib-spu.c: Use sys/stat.h, not gdb_stat.h.
858         * source.c: Use sys/stat.h, not gdb_stat.h.
859         * symfile.c: Use sys/stat.h, not gdb_stat.h.
860         * symmisc.c: Use sys/stat.h, not gdb_stat.h.
861         * symtab.c: Use sys/stat.h, not gdb_stat.h.
862         * top.c: Use sys/stat.h, not gdb_stat.h.
863         * xcoffread.c: Use sys/stat.h, not gdb_stat.h.
864
865 2013-11-18  Tom Tromey  <tromey@redhat.com>
866
867         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
868         sys_stat.
869         * gnulib/aclocal.m4: Update.
870         * gnulib/config.in: Update.
871         * gnulib/configure: Update.
872         * gnulib/import/Makefile.am: Update.
873         * gnulib/import/Makefile.in: Update.
874         * gnulib/import/m4/gnulib-cache.m4: Update.
875         * gnulib/import/m4/gnulib-comp.m4: Update.
876         * gnulib/import/m4/sys_stat_h.m4: New.
877         * gnulib/import/m4/time_h.m4: New.
878         * gnulib/import/sys_stat.in.h: New.
879         * gnulib/import/time.in.h: New.
880
881 2013-11-18  Tom Tromey  <tromey@redhat.com>
882
883         * configure: Rebuild.
884         * configure.ac: Remove check of HAVE_SYS_TYPES_H.
885
886 2013-11-18  Tom Tromey  <tromey@redhat.com>
887
888         * configure: Rebuild.
889         * configure.ac: Don't check for unistd.h.
890
891 2013-11-18  Tom Tromey  <tromey@redhat.com>
892
893         * configure: Rebuild.
894         * configure.ac: Don't check for stdlib.h
895         * defs.h: Include stdlib.h unconditionally.
896
897 2013-11-18  Tom Tromey  <tromey@redhat.com>
898
899         * config.in: Rebuild.
900         * configure: Rebuild.
901         * configure.ac: Don't check for stddef.h.
902         * defs.h: Unconditionally include stddef.h.  Remove duplicate
903         inclusion.
904
905 2013-11-18  Tom Tromey  <tromey@redhat.com>
906
907         * common/common.m4 (GDB_AC_COMMON): Don't use AC_HEADER_DIRENT.
908         * common/gdb_dirent.h: Remove.
909         * common/filestuff.c: Use dirent.h.
910         * common/linux-osdata.c: Use dirent.h.
911         (NAMELEN): Define.
912         * config.in: Rebuild.
913         * configure: Rebuild.
914         * configure.ac: Don't use AC_HEADER_DIRENT.
915         * linux-fork.c: Use dirent.h
916         * linux-nat.c: Use dirent.h.
917         * nto-procfs.c: Use dirent.h.
918         * procfs.c: Use dirent.h.
919
920 2013-11-18  Tom Tromey  <tromey@redhat.com>
921
922         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add dirent.
923         * gnulib/aclocal.m4: Update.
924         * gnulib/config.in: Update.
925         * gnulib/configure: Update.
926         * gnulib/import/Makefile.am: Update.
927         * gnulib/import/Makefile.in: Update.
928         * gnulib/import/dirent.in.h: New.
929         * gnulib/import/m4/dirent_h.m4: New.
930         * gnulib/import/m4/gnulib-cache.m4: Update.
931         * gnulib/import/m4/gnulib-comp.m4: Update.
932
933 2013-11-18  Tom Tromey  <tromey@redhat.com>
934
935         * configure: Rebuild.
936         * common/common.m4 (GDB_AC_COMMON): Don't check for string.h or
937         strings.h.
938
939 2013-11-18  Tom Tromey  <tromey@redhat.com>
940
941         * common/gdb_string.h: Remove.
942         * aarch64-tdep.c: Use string.h, not gdb_string.h.
943         * ada-exp.y: Use string.h, not gdb_string.h.
944         * ada-lang.c: Use string.h, not gdb_string.h.
945         * ada-lex.l: Use string.h, not gdb_string.h.
946         * ada-typeprint.c: Use string.h, not gdb_string.h.
947         * ada-valprint.c: Use string.h, not gdb_string.h.
948         * aix-thread.c: Use string.h, not gdb_string.h.
949         * alpha-linux-tdep.c: Use string.h, not gdb_string.h.
950         * alpha-mdebug-tdep.c: Use string.h, not gdb_string.h.
951         * alpha-nat.c: Use string.h, not gdb_string.h.
952         * alpha-osf1-tdep.c: Use string.h, not gdb_string.h.
953         * alpha-tdep.c: Use string.h, not gdb_string.h.
954         * alphanbsd-tdep.c: Use string.h, not gdb_string.h.
955         * amd64-dicos-tdep.c: Use string.h, not gdb_string.h.
956         * amd64-linux-nat.c: Use string.h, not gdb_string.h.
957         * amd64-linux-tdep.c: Use string.h, not gdb_string.h.
958         * amd64-nat.c: Use string.h, not gdb_string.h.
959         * amd64-sol2-tdep.c: Use string.h, not gdb_string.h.
960         * amd64fbsd-tdep.c: Use string.h, not gdb_string.h.
961         * amd64obsd-tdep.c: Use string.h, not gdb_string.h.
962         * arch-utils.c: Use string.h, not gdb_string.h.
963         * arm-linux-nat.c: Use string.h, not gdb_string.h.
964         * arm-linux-tdep.c: Use string.h, not gdb_string.h.
965         * arm-tdep.c: Use string.h, not gdb_string.h.
966         * arm-wince-tdep.c: Use string.h, not gdb_string.h.
967         * armbsd-tdep.c: Use string.h, not gdb_string.h.
968         * armnbsd-nat.c: Use string.h, not gdb_string.h.
969         * armnbsd-tdep.c: Use string.h, not gdb_string.h.
970         * armobsd-tdep.c: Use string.h, not gdb_string.h.
971         * avr-tdep.c: Use string.h, not gdb_string.h.
972         * ax-gdb.c: Use string.h, not gdb_string.h.
973         * ax-general.c: Use string.h, not gdb_string.h.
974         * bcache.c: Use string.h, not gdb_string.h.
975         * bfin-tdep.c: Use string.h, not gdb_string.h.
976         * breakpoint.c: Use string.h, not gdb_string.h.
977         * build-id.c: Use string.h, not gdb_string.h.
978         * buildsym.c: Use string.h, not gdb_string.h.
979         * c-exp.y: Use string.h, not gdb_string.h.
980         * c-lang.c: Use string.h, not gdb_string.h.
981         * c-typeprint.c: Use string.h, not gdb_string.h.
982         * c-valprint.c: Use string.h, not gdb_string.h.
983         * charset.c: Use string.h, not gdb_string.h.
984         * cli-out.c: Use string.h, not gdb_string.h.
985         * cli/cli-cmds.c: Use string.h, not gdb_string.h.
986         * cli/cli-decode.c: Use string.h, not gdb_string.h.
987         * cli/cli-dump.c: Use string.h, not gdb_string.h.
988         * cli/cli-interp.c: Use string.h, not gdb_string.h.
989         * cli/cli-logging.c: Use string.h, not gdb_string.h.
990         * cli/cli-script.c: Use string.h, not gdb_string.h.
991         * cli/cli-setshow.c: Use string.h, not gdb_string.h.
992         * cli/cli-utils.c: Use string.h, not gdb_string.h.
993         * coffread.c: Use string.h, not gdb_string.h.
994         * common/common-utils.c: Use string.h, not gdb_string.h.
995         * common/filestuff.c: Use string.h, not gdb_string.h.
996         * common/linux-procfs.c: Use string.h, not gdb_string.h.
997         * common/linux-ptrace.c: Use string.h, not gdb_string.h.
998         * common/signals.c: Use string.h, not gdb_string.h.
999         * common/vec.h: Use string.h, not gdb_string.h.
1000         * core-regset.c: Use string.h, not gdb_string.h.
1001         * corefile.c: Use string.h, not gdb_string.h.
1002         * corelow.c: Use string.h, not gdb_string.h.
1003         * cp-abi.c: Use string.h, not gdb_string.h.
1004         * cp-support.c: Use string.h, not gdb_string.h.
1005         * cp-valprint.c: Use string.h, not gdb_string.h.
1006         * cris-tdep.c: Use string.h, not gdb_string.h.
1007         * d-lang.c: Use string.h, not gdb_string.h.
1008         * dbxread.c: Use string.h, not gdb_string.h.
1009         * dcache.c: Use string.h, not gdb_string.h.
1010         * demangle.c: Use string.h, not gdb_string.h.
1011         * dicos-tdep.c: Use string.h, not gdb_string.h.
1012         * disasm.c: Use string.h, not gdb_string.h.
1013         * doublest.c: Use string.h, not gdb_string.h.
1014         * dsrec.c: Use string.h, not gdb_string.h.
1015         * dummy-frame.c: Use string.h, not gdb_string.h.
1016         * dwarf2-frame.c: Use string.h, not gdb_string.h.
1017         * dwarf2loc.c: Use string.h, not gdb_string.h.
1018         * dwarf2read.c: Use string.h, not gdb_string.h.
1019         * elfread.c: Use string.h, not gdb_string.h.
1020         * environ.c: Use string.h, not gdb_string.h.
1021         * eval.c: Use string.h, not gdb_string.h.
1022         * event-loop.c: Use string.h, not gdb_string.h.
1023         * exceptions.c: Use string.h, not gdb_string.h.
1024         * exec.c: Use string.h, not gdb_string.h.
1025         * expprint.c: Use string.h, not gdb_string.h.
1026         * f-exp.y: Use string.h, not gdb_string.h.
1027         * f-lang.c: Use string.h, not gdb_string.h.
1028         * f-typeprint.c: Use string.h, not gdb_string.h.
1029         * f-valprint.c: Use string.h, not gdb_string.h.
1030         * fbsd-nat.c: Use string.h, not gdb_string.h.
1031         * findcmd.c: Use string.h, not gdb_string.h.
1032         * findvar.c: Use string.h, not gdb_string.h.
1033         * fork-child.c: Use string.h, not gdb_string.h.
1034         * frame.c: Use string.h, not gdb_string.h.
1035         * frv-linux-tdep.c: Use string.h, not gdb_string.h.
1036         * frv-tdep.c: Use string.h, not gdb_string.h.
1037         * gdb.c: Use string.h, not gdb_string.h.
1038         * gdb_bfd.c: Use string.h, not gdb_string.h.
1039         * gdbarch.c: Use string.h, not gdb_string.h.
1040         * gdbtypes.c: Use string.h, not gdb_string.h.
1041         * gnu-nat.c: Use string.h, not gdb_string.h.
1042         * gnu-v2-abi.c: Use string.h, not gdb_string.h.
1043         * gnu-v3-abi.c: Use string.h, not gdb_string.h.
1044         * go-exp.y: Use string.h, not gdb_string.h.
1045         * go-lang.c: Use string.h, not gdb_string.h.
1046         * go32-nat.c: Use string.h, not gdb_string.h.
1047         * hppa-hpux-tdep.c: Use string.h, not gdb_string.h.
1048         * hppa-linux-nat.c: Use string.h, not gdb_string.h.
1049         * hppanbsd-tdep.c: Use string.h, not gdb_string.h.
1050         * hppaobsd-tdep.c: Use string.h, not gdb_string.h.
1051         * i386-cygwin-tdep.c: Use string.h, not gdb_string.h.
1052         * i386-dicos-tdep.c: Use string.h, not gdb_string.h.
1053         * i386-linux-nat.c: Use string.h, not gdb_string.h.
1054         * i386-linux-tdep.c: Use string.h, not gdb_string.h.
1055         * i386-nto-tdep.c: Use string.h, not gdb_string.h.
1056         * i386-sol2-tdep.c: Use string.h, not gdb_string.h.
1057         * i386-tdep.c: Use string.h, not gdb_string.h.
1058         * i386bsd-tdep.c: Use string.h, not gdb_string.h.
1059         * i386gnu-nat.c: Use string.h, not gdb_string.h.
1060         * i386nbsd-tdep.c: Use string.h, not gdb_string.h.
1061         * i386obsd-tdep.c: Use string.h, not gdb_string.h.
1062         * i387-tdep.c: Use string.h, not gdb_string.h.
1063         * ia64-libunwind-tdep.c: Use string.h, not gdb_string.h.
1064         * ia64-linux-nat.c: Use string.h, not gdb_string.h.
1065         * inf-child.c: Use string.h, not gdb_string.h.
1066         * inf-ptrace.c: Use string.h, not gdb_string.h.
1067         * inf-ttrace.c: Use string.h, not gdb_string.h.
1068         * infcall.c: Use string.h, not gdb_string.h.
1069         * infcmd.c: Use string.h, not gdb_string.h.
1070         * inflow.c: Use string.h, not gdb_string.h.
1071         * infrun.c: Use string.h, not gdb_string.h.
1072         * interps.c: Use string.h, not gdb_string.h.
1073         * iq2000-tdep.c: Use string.h, not gdb_string.h.
1074         * irix5-nat.c: Use string.h, not gdb_string.h.
1075         * jv-exp.y: Use string.h, not gdb_string.h.
1076         * jv-lang.c: Use string.h, not gdb_string.h.
1077         * jv-typeprint.c: Use string.h, not gdb_string.h.
1078         * jv-valprint.c: Use string.h, not gdb_string.h.
1079         * language.c: Use string.h, not gdb_string.h.
1080         * linux-fork.c: Use string.h, not gdb_string.h.
1081         * linux-nat.c: Use string.h, not gdb_string.h.
1082         * lm32-tdep.c: Use string.h, not gdb_string.h.
1083         * m2-exp.y: Use string.h, not gdb_string.h.
1084         * m2-typeprint.c: Use string.h, not gdb_string.h.
1085         * m32c-tdep.c: Use string.h, not gdb_string.h.
1086         * m32r-linux-nat.c: Use string.h, not gdb_string.h.
1087         * m32r-linux-tdep.c: Use string.h, not gdb_string.h.
1088         * m32r-rom.c: Use string.h, not gdb_string.h.
1089         * m32r-tdep.c: Use string.h, not gdb_string.h.
1090         * m68hc11-tdep.c: Use string.h, not gdb_string.h.
1091         * m68k-tdep.c: Use string.h, not gdb_string.h.
1092         * m68kbsd-tdep.c: Use string.h, not gdb_string.h.
1093         * m68klinux-nat.c: Use string.h, not gdb_string.h.
1094         * m68klinux-tdep.c: Use string.h, not gdb_string.h.
1095         * m88k-tdep.c: Use string.h, not gdb_string.h.
1096         * macrocmd.c: Use string.h, not gdb_string.h.
1097         * main.c: Use string.h, not gdb_string.h.
1098         * mdebugread.c: Use string.h, not gdb_string.h.
1099         * mem-break.c: Use string.h, not gdb_string.h.
1100         * memattr.c: Use string.h, not gdb_string.h.
1101         * memory-map.c: Use string.h, not gdb_string.h.
1102         * mep-tdep.c: Use string.h, not gdb_string.h.
1103         * mi/mi-cmd-break.c: Use string.h, not gdb_string.h.
1104         * mi/mi-cmd-disas.c: Use string.h, not gdb_string.h.
1105         * mi/mi-cmd-env.c: Use string.h, not gdb_string.h.
1106         * mi/mi-cmd-stack.c: Use string.h, not gdb_string.h.
1107         * mi/mi-cmd-var.c: Use string.h, not gdb_string.h.
1108         * mi/mi-cmds.c: Use string.h, not gdb_string.h.
1109         * mi/mi-console.c: Use string.h, not gdb_string.h.
1110         * mi/mi-getopt.c: Use string.h, not gdb_string.h.
1111         * mi/mi-interp.c: Use string.h, not gdb_string.h.
1112         * mi/mi-main.c: Use string.h, not gdb_string.h.
1113         * mi/mi-parse.c: Use string.h, not gdb_string.h.
1114         * microblaze-rom.c: Use string.h, not gdb_string.h.
1115         * microblaze-tdep.c: Use string.h, not gdb_string.h.
1116         * mingw-hdep.c: Use string.h, not gdb_string.h.
1117         * minidebug.c: Use string.h, not gdb_string.h.
1118         * minsyms.c: Use string.h, not gdb_string.h.
1119         * mips-irix-tdep.c: Use string.h, not gdb_string.h.
1120         * mips-linux-tdep.c: Use string.h, not gdb_string.h.
1121         * mips-tdep.c: Use string.h, not gdb_string.h.
1122         * mips64obsd-tdep.c: Use string.h, not gdb_string.h.
1123         * mipsnbsd-tdep.c: Use string.h, not gdb_string.h.
1124         * mipsread.c: Use string.h, not gdb_string.h.
1125         * mn10300-linux-tdep.c: Use string.h, not gdb_string.h.
1126         * mn10300-tdep.c: Use string.h, not gdb_string.h.
1127         * monitor.c: Use string.h, not gdb_string.h.
1128         * moxie-tdep.c: Use string.h, not gdb_string.h.
1129         * mt-tdep.c: Use string.h, not gdb_string.h.
1130         * nbsd-tdep.c: Use string.h, not gdb_string.h.
1131         * nios2-linux-tdep.c: Use string.h, not gdb_string.h.
1132         * nto-procfs.c: Use string.h, not gdb_string.h.
1133         * nto-tdep.c: Use string.h, not gdb_string.h.
1134         * objc-lang.c: Use string.h, not gdb_string.h.
1135         * objfiles.c: Use string.h, not gdb_string.h.
1136         * opencl-lang.c: Use string.h, not gdb_string.h.
1137         * osabi.c: Use string.h, not gdb_string.h.
1138         * osdata.c: Use string.h, not gdb_string.h.
1139         * p-exp.y: Use string.h, not gdb_string.h.
1140         * p-lang.c: Use string.h, not gdb_string.h.
1141         * p-typeprint.c: Use string.h, not gdb_string.h.
1142         * parse.c: Use string.h, not gdb_string.h.
1143         * posix-hdep.c: Use string.h, not gdb_string.h.
1144         * ppc-linux-nat.c: Use string.h, not gdb_string.h.
1145         * ppc-sysv-tdep.c: Use string.h, not gdb_string.h.
1146         * ppcfbsd-tdep.c: Use string.h, not gdb_string.h.
1147         * ppcnbsd-tdep.c: Use string.h, not gdb_string.h.
1148         * ppcobsd-tdep.c: Use string.h, not gdb_string.h.
1149         * printcmd.c: Use string.h, not gdb_string.h.
1150         * procfs.c: Use string.h, not gdb_string.h.
1151         * prologue-value.c: Use string.h, not gdb_string.h.
1152         * python/py-auto-load.c: Use string.h, not gdb_string.h.
1153         * python/py-gdb-readline.c: Use string.h, not gdb_string.h.
1154         * ravenscar-thread.c: Use string.h, not gdb_string.h.
1155         * regcache.c: Use string.h, not gdb_string.h.
1156         * registry.c: Use string.h, not gdb_string.h.
1157         * remote-fileio.c: Use string.h, not gdb_string.h.
1158         * remote-m32r-sdi.c: Use string.h, not gdb_string.h.
1159         * remote-mips.c: Use string.h, not gdb_string.h.
1160         * remote-sim.c: Use string.h, not gdb_string.h.
1161         * remote.c: Use string.h, not gdb_string.h.
1162         * reverse.c: Use string.h, not gdb_string.h.
1163         * rs6000-aix-tdep.c: Use string.h, not gdb_string.h.
1164         * ser-base.c: Use string.h, not gdb_string.h.
1165         * ser-go32.c: Use string.h, not gdb_string.h.
1166         * ser-mingw.c: Use string.h, not gdb_string.h.
1167         * ser-pipe.c: Use string.h, not gdb_string.h.
1168         * ser-tcp.c: Use string.h, not gdb_string.h.
1169         * ser-unix.c: Use string.h, not gdb_string.h.
1170         * serial.c: Use string.h, not gdb_string.h.
1171         * sh-tdep.c: Use string.h, not gdb_string.h.
1172         * sh64-tdep.c: Use string.h, not gdb_string.h.
1173         * shnbsd-tdep.c: Use string.h, not gdb_string.h.
1174         * skip.c: Use string.h, not gdb_string.h.
1175         * sol-thread.c: Use string.h, not gdb_string.h.
1176         * solib-dsbt.c: Use string.h, not gdb_string.h.
1177         * solib-frv.c: Use string.h, not gdb_string.h.
1178         * solib-osf.c: Use string.h, not gdb_string.h.
1179         * solib-spu.c: Use string.h, not gdb_string.h.
1180         * solib-target.c: Use string.h, not gdb_string.h.
1181         * solib.c: Use string.h, not gdb_string.h.
1182         * somread.c: Use string.h, not gdb_string.h.
1183         * source.c: Use string.h, not gdb_string.h.
1184         * sparc-nat.c: Use string.h, not gdb_string.h.
1185         * sparc-sol2-tdep.c: Use string.h, not gdb_string.h.
1186         * sparc-tdep.c: Use string.h, not gdb_string.h.
1187         * sparc64-tdep.c: Use string.h, not gdb_string.h.
1188         * sparc64fbsd-tdep.c: Use string.h, not gdb_string.h.
1189         * sparc64nbsd-tdep.c: Use string.h, not gdb_string.h.
1190         * sparcnbsd-tdep.c: Use string.h, not gdb_string.h.
1191         * spu-linux-nat.c: Use string.h, not gdb_string.h.
1192         * spu-multiarch.c: Use string.h, not gdb_string.h.
1193         * spu-tdep.c: Use string.h, not gdb_string.h.
1194         * stabsread.c: Use string.h, not gdb_string.h.
1195         * stack.c: Use string.h, not gdb_string.h.
1196         * std-regs.c: Use string.h, not gdb_string.h.
1197         * symfile.c: Use string.h, not gdb_string.h.
1198         * symmisc.c: Use string.h, not gdb_string.h.
1199         * symtab.c: Use string.h, not gdb_string.h.
1200         * target.c: Use string.h, not gdb_string.h.
1201         * thread.c: Use string.h, not gdb_string.h.
1202         * tilegx-linux-nat.c: Use string.h, not gdb_string.h.
1203         * tilegx-tdep.c: Use string.h, not gdb_string.h.
1204         * top.c: Use string.h, not gdb_string.h.
1205         * tracepoint.c: Use string.h, not gdb_string.h.
1206         * tui/tui-command.c: Use string.h, not gdb_string.h.
1207         * tui/tui-data.c: Use string.h, not gdb_string.h.
1208         * tui/tui-disasm.c: Use string.h, not gdb_string.h.
1209         * tui/tui-file.c: Use string.h, not gdb_string.h.
1210         * tui/tui-layout.c: Use string.h, not gdb_string.h.
1211         * tui/tui-out.c: Use string.h, not gdb_string.h.
1212         * tui/tui-regs.c: Use string.h, not gdb_string.h.
1213         * tui/tui-source.c: Use string.h, not gdb_string.h.
1214         * tui/tui-stack.c: Use string.h, not gdb_string.h.
1215         * tui/tui-win.c: Use string.h, not gdb_string.h.
1216         * tui/tui-windata.c: Use string.h, not gdb_string.h.
1217         * tui/tui-winsource.c: Use string.h, not gdb_string.h.
1218         * typeprint.c: Use string.h, not gdb_string.h.
1219         * ui-file.c: Use string.h, not gdb_string.h.
1220         * ui-out.c: Use string.h, not gdb_string.h.
1221         * user-regs.c: Use string.h, not gdb_string.h.
1222         * utils.c: Use string.h, not gdb_string.h.
1223         * v850-tdep.c: Use string.h, not gdb_string.h.
1224         * valarith.c: Use string.h, not gdb_string.h.
1225         * valops.c: Use string.h, not gdb_string.h.
1226         * valprint.c: Use string.h, not gdb_string.h.
1227         * value.c: Use string.h, not gdb_string.h.
1228         * varobj.c: Use string.h, not gdb_string.h.
1229         * vax-tdep.c: Use string.h, not gdb_string.h.
1230         * vaxnbsd-tdep.c: Use string.h, not gdb_string.h.
1231         * vaxobsd-tdep.c: Use string.h, not gdb_string.h.
1232         * windows-nat.c: Use string.h, not gdb_string.h.
1233         * xcoffread.c: Use string.h, not gdb_string.h.
1234         * xml-support.c: Use string.h, not gdb_string.h.
1235         * xstormy16-tdep.c: Use string.h, not gdb_string.h.
1236         * xtensa-linux-nat.c: Use string.h, not gdb_string.h.
1237
1238 2013-11-18  Tom Tromey  <tromey@redhat.com>
1239
1240         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add strerror
1241         and strstr.
1242         * gnulib/aclocal.m4: Update.
1243         * gnulib/config.in: Update.
1244         * gnulib/configure: Update.
1245         * gnulib/import/Makefile.am: Update.
1246         * gnulib/import/Makefile.in: Update.
1247         * gnulib/import/errno.in.h: New.
1248         * gnulib/import/intprops.h: New.
1249         * gnulib/import/m4/errno_h.m4: New.
1250         * gnulib/import/m4/gnulib-cache.m4: Update.
1251         * gnulib/import/m4/gnulib-comp.m4: Update.
1252         * gnulib/import/m4/strerror.m4: New.
1253         * gnulib/import/m4/strstr.m4: New.
1254         * gnulib/import/m4/sys_socket_h.m4: New.
1255         * gnulib/import/strerror-override.c: New.
1256         * gnulib/import/strerror-override.h: New.
1257         * gnulib/import/strerror.c: New.
1258         * gnulib/import/strstr.c: New.
1259
1260 2013-11-18  Tom Tromey  <tromey@redhat.com>
1261
1262         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Split into
1263         multiple lines.
1264
1265 2013-11-18  Jose E. Marchesi  <jose.marchesi@oracle.com>
1266
1267         * sparc-tdep.c (sparc_is_annulled_branch_insn): New function.
1268         * sparc-tdep.h: And its prototype.
1269
1270         * sparc64-linux-tdep.c (sparc64_linux_get_longjmp_target): New
1271         function.
1272         (sparc64_linux_init_abi): Register the get_longjmp_target hook.
1273
1274 2013-11-18  Pedro Alves  <palves@redhat.com>
1275
1276         * dwarf2-frame.c (read_addr_from_reg): Remove stale comment and
1277         use unpack_pointer.
1278
1279 2013-11-18  Joel Brobecker  <brobecker@adacore.com>
1280
1281         * mi/mi-main.c (mi_cmd_list_features): Add "language-options"
1282         to -list-features output.
1283
1284 2013-11-17  Joel Brobecker  <brobecker@adacore.com>
1285
1286         * dwarf2expr.h (struct dwarf_expr_context_funcs)
1287         <read_addr_from_reg>: Renames "read_reg".
1288         * dwarf2-frame.c (read_addr_from_reg): Renames "read_reg".
1289         Adjust comment.
1290         (dwarf2_frame_ctx_funcs, execute_stack_op, dwarf2_frame_cache):
1291         Use read_addr_from_reg in place of read_reg.
1292         * dwarf2expr.c (execute_stack_op): Use read_addr_from_reg
1293         in place of read_reg.
1294         * dwarf2loc.c (dwarf_expr_read_addr_from_reg): Renames
1295         dwarf_expr_read_reg.
1296         (dwarf_expr_ctx_funcs): Replace dwarf_expr_read_reg
1297         with dwarf_expr_read_addr_from_reg.
1298         (needs_frame_read_addr_from_reg): Renames needs_frame_read_reg.
1299         (needs_frame_ctx_funcs): Replace needs_frame_read_reg with
1300         needs_frame_read_addr_from_reg.
1301
1302 2013-11-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
1303
1304         * NEWS (Changes in GDB 7.5) (New commands) (explore): Fix typo.
1305
1306 2013-11-15  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1307
1308         * dwarf2loc.c (chain_candidate): Prevent invoking memcpy with
1309         NULL.
1310
1311 2013-11-15  Tom Tromey  <tromey@redhat.com>
1312
1313         PR c++/16117:
1314         * c-exp.y (lex_one_token): Add "is_quoted_name" argument.
1315         (classify_name): Likewise.  Prefer a field of "this" over a
1316         filename.
1317         (classify_inner_name, yylex): Update.
1318
1319 2013-11-15  Joel Brobecker  <brobecker@adacore.com>
1320
1321         * dwarf2expr.h (struct dwarf_expr_context_funcs) <read_reg>:
1322         Extend the documentation a bit.
1323         <get_reg_value>: New field.
1324         * dwarf2loc.c (dwarf_expr_get_reg_value)
1325         (needs_frame_get_reg_value): New functions.
1326         (dwarf_expr_ctx_funcs, needs_frame_ctx_funcs): Add "get_reg_value"
1327         callback.
1328         * dwarf2-frame.c (get_reg_value): New function.
1329         (dwarf2_frame_ctx_funcs): Add "get_reg_value" callback.
1330         * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_regval_type>:
1331         Use new callback to compute result_val.
1332
1333 2013-11-15  Alan Modra  <amodra@gmail.com>
1334
1335         * ppc64-tdep.c (ppc64_plt_entry_point): Renamed from..
1336         (ppc64_desc_entry_point): ..this.  Update comments here and at
1337         call points.
1338         (ppc64_standard_linkage1, ppc64_standard_linkage2,
1339         ppc64_standard_linkage3): Update comments.
1340         (ppc64_standard_linkage4, ppc64_standard_linkage5,
1341         (ppc64_standard_linkage6, ppc64_standard_linkage7): New insn
1342         patterns.
1343         (ppc64_standard_linkage4_target): New function.
1344         (ppc64_skip_trampoline_code): Skip ELFv2 patterns too.
1345         * rs6000-tdep.c (skip_prologue): Skip ELFv2 r2 setup.  Correct
1346         nop match.  Fix comment wrap.
1347
1348 2013-11-14  Pedro Alves  <palves@redhat.com>
1349
1350         * infrun.c (handle_signal_stop): Move STOP_QUIETLY,
1351         STOP_QUIETLY_REMOTE and 'stop_after_trap' handling earlier.
1352
1353 2013-11-14  Pedro Alves  <palves@redhat.com>
1354
1355         * infrun.c (struct execution_control_state)
1356         <stepped_after_stopped_by_watchpoint>: New field.
1357         (get_inferior_stop_soon): New function.
1358         (handle_inferior_event): 'stepped_after_stopped_by_watchpoint' was
1359         moved to struct execution_control_state -- adjust.  Use
1360         get_inferior_stop_soon.  Split TARGET_WAITKIND_STOPPED handling to
1361         new function.
1362         (handle_signal_stop): New function, factored out from
1363         handle_inferior_event.
1364
1365 2013-11-14  Pedro Alves  <palves@redhat.com>
1366
1367         * break-catch-sig.c (signal_catchpoint_explains_signal): Adjust to
1368         return a boolean.
1369         * breakpoint.c (bpstat_explains_signal): Adjust to return a
1370         boolean.
1371         (explains_signal_watchpoint, base_breakpoint_explains_signal):
1372         Adjust to return a boolean.
1373         * breakpoint.h (enum bpstat_signal_value): Delete.
1374         (struct breakpoint_ops) <explains_signal>: New returns a boolean.
1375         (bpstat_explains_signal): Likewise.
1376         * infrun.c (handle_inferior_event) <random signal checks>:
1377         bpstat_explains_signal now returns a boolean - adjust.  No longer
1378         consider hiding signals.
1379
1380 2013-11-14  Pedro Alves  <palves@redhat.com>
1381
1382         * breakpoint.c (bpstat_explains_signal) <Moribund locations>:
1383         Return BPSTAT_SIGNAL_PASS instead of BPSTAT_SIGNAL_HIDE.
1384         (explains_signal_watchpoint): Return BPSTAT_SIGNAL_PASS instead of
1385         BPSTAT_SIGNAL_HIDE.
1386         (base_breakpoint_explains_signal): Return BPSTAT_SIGNAL_PASS
1387         instead of BPSTAT_SIGNAL_HIDE.
1388         * infrun.c (handle_inferior_event): Rework random signal checks.
1389
1390 2013-11-14  Pedro Alves  <palves@redhat.com>
1391
1392         * infrun.c (struct execution_control_state): Remove
1393         'random_signal' field.
1394         (handle_syscall_event): Use bpstat_causes_stop instead of
1395         bpstat_explains_signal.  Don't set ecs->random_signal.
1396         (handle_inferior_event): New 'random_signal' local.
1397         <TARGET_WAITKIND_FORKED, TARGET_WAITKIND_VFORKED,
1398         TARGET_WAITKIND_EXECD>: Use bpstat_causes_stop instead of
1399         bpstat_explains_signal.  Don't set ecs->random_signal.
1400         <TARGET_WAITKIND_STOPPED>: Adjust to use local instead of
1401         ecs->random_signal.
1402
1403 2013-11-14  Pedro Alves  <palves@redhat.com>
1404
1405         * infrun.c (handle_inferior_event): Move comment from the
1406         function's body to the function's description, adjusted.
1407
1408 2013-11-14  Pedro Alves  <palves@redhat.com>
1409
1410         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>:
1411         Handle STOP_QUIETLY_NO_SIGSTOP and STOP_QUIETLY_REMOTE here.
1412         Assert we never fall through out of the TARGET_WAITKIND_LOADED
1413         case.
1414
1415 2013-11-14  Tom Tromey  <tromey@redhat.com>
1416
1417         * python/py-linetable.c (ltpy_has_line)
1418         (ltpy_get_all_source_lines): Fix loop termination condition.
1419
1420 2013-11-14  Joel Brobecker  <brobecker@adacore.com>
1421
1422         * mi/mi-parse.h (struct mi_parse) <language>: New field.
1423         * mi/mi-main.c (mi_cmd_execute): Temporarily set language to
1424         PARSE->LANGUAGE during command execution, if set.
1425         * mi/mi-parse.c: Add "language.h" #include.
1426         (mi_parse): Add parsing of "--language" command option.
1427
1428         * NEWS: Add entry mentioning the new "--language" command option.
1429
1430 2013-11-14  Pedro Alves  <palves@redhat.com>
1431             Joel Brobecker  <brobecker@adacore.com>
1432
1433         * cli/cli-utils.h (extract_arg_const): Add declaration.
1434         * cli/cli-utils.c (extract_arg_const): New function.
1435         (extract_arg): Reimplement using extract_arg_const.
1436
1437 2013-11-14  Joel Brobecker  <brobecker@adacore.com>
1438
1439         * language.h: Add "symtab.h" #include.
1440
1441 2013-11-13  Doug Evans  <xdje42@gmail.com>
1442
1443         * breakpoint.c (bpstat_check_breakpoint_conditions): For thread
1444         specific breakpoints, don't evaluate breakpoint condition if
1445         different thread.
1446
1447 2013-11-13  Keith Seitz  <keiths@redhat.com>
1448
1449         PR c++/7935
1450         PR c++/10541
1451         * cp-support.c (insepct_type): Add support for substituting
1452         namespace aliases, too.
1453         * dwarf2read.c (scan_partial_symbols): Add a partial symbol
1454         for DW_TAG_imported_declaration.
1455         (add_partial_symbol): Likewise.
1456         (process_die): Handle namespace aliases with
1457         read_namespace_alias.
1458         (die_needs_namespace): Add DW_TAG_imported_declaration.
1459         (read_namespace_alias): New function.
1460         (load_partial_dies): Load DW_TAG_imported_declaration, too.
1461         (new_symbol_full): Handle DW_TAG_imported_declaration.
1462
1463 2013-11-13  Keith Seitz  <keiths@redhat.com>
1464
1465         * p-exp.y (uptok): Make first parameter const.
1466         (yylex): Make `tokstart' and `tokptr' const.
1467         Don't copy the lexer input to a temporary buffer.
1468         Make `p' const.
1469         Remove const workaround for parse_escape.
1470         Create a temporary buffer for a convenience variable instead
1471         of doing in-place modification of the input.
1472         If a match is found with a different case from the input,
1473         do not change the input at all.
1474         Use `tmp' to construct the resultant stoken instead of
1475         `tokstart'.
1476
1477 2013-11-13  Doug Evans  <xdje42@gmail.com>
1478
1479         * breakpoint.c (breakpoint_cond_eval): Fix and enhance comment.
1480
1481 2013-11-13  Joel Brobecker  <brobecker@adacore.com>
1482
1483         * mi/mi-main.c (mi_cmd_list_features): Replace "info-ada-exceptions"
1484         entry with "ada-exceptions".
1485
1486 2013-11-13  Joel Brobecker  <brobecker@adacore.com>
1487
1488         * symfile.c (reread_symbols): Move call to set_objfile_per_bfd
1489         after re-initialization of OBJFILE's obstack.
1490
1491 2013-11-12  Doug Evans  <xdje42@gmail.com>
1492
1493         * breakpoint.c (bpstat_check_breakpoint_conditions): Assert
1494         bs->stop != 0 on entry.  Update function comment.  Simplify early
1495         exit for frame mismatch.  Reindent rest of function.
1496
1497 2013-11-12  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1498
1499         * objc-lang.c (uniquify_strings): Prevent invoking qsort with
1500         NULL.
1501
1502 2013-11-12  Doug Evans  <dje@google.com>
1503
1504         Work around gold/15646.
1505         * dwarf2read.c (read_index_from_section): Update comment.
1506         (struct dw2_symtab_iterator): New member global_seen.
1507         (dw2_symtab_iter_init): Initialize it.
1508         (dw2_symtab_iter_next): Skip duplicate global symbols.
1509         (dw2_expand_symtabs_matching): Ditto.
1510
1511 2013-11-12  Joel Brobecker  <brobecker@adacore.com>
1512
1513         * mi/mi-cmds.h (mi_cmd_info_ada_exceptions): Add declaration.
1514         * mi/mi-cmds.c (mi_cmds): Add entry for -info-ada-exceptions
1515         command.
1516         * mi/mi-cmd-info.c: #include "ada-lang.c" and "arch-utils.c".
1517         (mi_cmd_info_ada_exceptions): New function.
1518         * mi/mi-main.c (mi_cmd_list_features): Add "info-ada-exceptions".
1519
1520 2013-11-12  Joel Brobecker  <brobecker@adacore.com>
1521
1522         * ada-lang.h: #include "vec.h".
1523         (struct ada_exc_info): New.
1524         (ada_exc_info): New typedef.
1525         (DEF_VEC_O(ada_exc_info)): New vector.
1526         (ada_exceptions_list): Add declaration.
1527         * ada-lang.c (ada_is_exception_sym)
1528         (ada_is_non_standard_exception_sym, compare_ada_exception_info)
1529         (sort_remove_dups_ada_exceptions_list)
1530         (ada_exc_search_name_matches, ada_add_standard_exceptions)
1531         (ada_add_exceptions_from_frame, ada_add_global_exceptions)
1532         (ada_exceptions_list_1, ada_exceptions_list)
1533         (info_exceptions_command): New function.
1534         (_initialize_ada_language): Add "info exception" command.
1535
1536 2013-11-11  Phil Muldoon  <pmuldoon@redhat.com>
1537
1538         PR python/15629
1539         * NEWS: Add linetable feature.
1540         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-linetable entries.
1541         * python/py-linetable.c: New file.
1542         * python/py-symtab.c (stpy_get_linetable): New function.
1543         * python/python-internal.h (symtab_to_linetable_object): Declare.
1544         (gdbpy_initialize_linetable): Ditto.
1545         * python/python.c (_initialize_python): Call
1546         gdbpy_initialize_linetable.
1547
1548 2013-11-11  Joel Brobecker  <brobecker@adacore.com>
1549
1550         * ada-lang.c (create_ada_exception_catchpoint): Enhance
1551         the documentation of fields "except_string" and "condition".
1552         * mi/mi-cmd-catch.c (mi_cmd_catch_assert): Reallocate
1553         CONDITION on the heap before passing it to
1554         create_ada_exception_catchpoint.
1555         (mi_cmd_catch_exception): Likewise for EXCEPTION_NAME and
1556         CONDITION.
1557
1558 2013-11-11  Tom Tromey  <tromey@redhat.com>
1559
1560         * config.in, configure: Rebuild.
1561         * configure.ac (HAVE_TKILL_SYSCALL): Check for "syscall".
1562
1563 2013-11-11  Joel Brobecker  <brobecker@adacore.com>
1564
1565         * remote-sim.c (gdbsim_detach): Break declaration into
1566         shorter lines.  No code change.
1567
1568 2013-11-11  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
1569
1570         * remote-sim.c (gdbsim_detach): Fix prototype.
1571
1572 2013-11-08  Doug Evans  <dje@google.com>
1573
1574         * dwarf2read.c (dwarf2_read_debug): Change to unsigned int.
1575         (create_debug_types_hash_table): Only print debugging messages for
1576         each TU if dwarf2-read >= 2.
1577         (process_queue): Ditto.
1578         (_initialize_dwarf2_read): Make "set debug dwarf2-read" a zuinteger.
1579         Update doc string.
1580
1581 2013-11-08  Tom Tromey  <tromey@redhat.com>
1582
1583         * configure: Rebuild.
1584         * configure.ac: Remove mentions of HAVE_MULTIPLE_PROC_FDS.
1585
1586 2013-11-08  Tom Tromey  <tromey@redhat.com>
1587
1588         * configure, config.in: Rebuild.
1589         * configure.ac: Remove unused configury.
1590
1591 2013-11-08  Tom Tromey  <tromey@redhat.com>
1592
1593         * m32c-tdep.c: Use gdb_string.h.
1594
1595 2013-11-08  Tom Tromey  <tromey@redhat.com>
1596
1597         * configure, config.in: Rebuild.
1598         * configure.ac: Remove all link.h-related checks.
1599
1600 2013-11-08  Tom Tromey  <tromey@redhat.com>
1601
1602         * acinclude.m4: Include common.m4.
1603         * common/common.m4: New file.
1604         * configure, config.in: Rebuild.
1605         * configure.ac: Use GDB_AC_COMMON.
1606
1607 2013-11-08  Doug Evans  <dje@google.com>
1608
1609         * NEWS: Mention that "set debug symtab-create" now accepts a
1610         verbosity level.
1611         * buildsym.c (end_symtab_from_static_block): Call set_symtab_primary
1612         to set the symtab's primary flag.
1613         * jit.c (finalize_symtab): Ditto.
1614         * mdebugread.c (psymtab_to_symtab_1): Ditto.
1615         * symfile.c (allocate_symtab): Only print debugging messages for
1616         symtab_create_debug levels 2 and higher.
1617         * symtab.c (symtab_create_debug): Change type to unsigned int.
1618         (set_symtab_primary): New function.
1619         (_initialize_symtab): Change "set debug symtab-create" to a
1620         zuinteger option.
1621         * symtab.h (set_symtab_primary): Declare.
1622         (symtab_create_debug): Update decl.
1623
1624 2013-11-08  Tom Tromey  <tromey@redhat.com>
1625
1626         * aix-thread.c (aix_thread_detach): Update.
1627         * corelow.c (core_detach): Update.
1628         * darwin-nat.c (darwin_detach): Update.
1629         * dec-thread.c (dec_thread_detach): Update.
1630         * gnu-nat.c (gnu_detach): Update.
1631         * go32-nat.c (go32_detach): Update.
1632         * inf-ptrace.c (inf_ptrace_detach): Update.
1633         * inf-ttrace.c (inf_ttrace_detach): Update.
1634         * linux-fork.c (linux_fork_detach): Update.
1635         * linux-fork.h (linux_fork_detach): Update.
1636         * linux-nat.c (linux_nat_detach): Update.  Introduce "tem"
1637         local for const-correctness.
1638         * linux-thread-db.c (thread_db_detach): Update.
1639         * monitor.c (monitor_detach): Update.
1640         * nto-procfs.c (procfs_detach): Update.
1641         * procfs.c (procfs_detach): Update.
1642         * record.c (record_detach): Update.
1643         * record.h (record_detach): Update.
1644         * remote-m32r-sdi.c (m32r_detach): Update.
1645         * remote-mips.c (mips_detach): Update.
1646         * remote-sim.c (gdbsim_detach): Update.
1647         * remote.c (remote_detach_1, remote_detach)
1648         (extended_remote_detach): Update.
1649         * sol-thread.c (sol_thread_detach): Update.
1650         * target.c (target_detach): Make "args" const.
1651         (init_dummy_target): Update.
1652         * target.h (struct target_ops) <to_detach>: Make argument const.
1653         (target_detach): Likewise.
1654         * windows-nat.c (windows_detach): Update.
1655
1656 2013-11-07  Doug Evans  <dje@google.com>
1657
1658         PR 11786
1659         *  solib-svr4.c (svr4_exec_displacement): Ignore filesz, memsz, flags
1660         and align fields for PT_GNU_RELRO segments.
1661
1662 2013-11-07  Phil Muldoon  <pmuldoon@redhat.com>
1663
1664         PR python/15747
1665         * python/py-cmd.c: Add COMPLETE_EXPRESSION constant.
1666
1667 2013-11-07  Phil Muldoon  <pmuldoon@redhat.com>
1668
1669         * NEWS: Document Python temporary breakpoint support.
1670         * python/py-breakpoint.c (bppy_get_temporary): New function.
1671         (bppy_init): New keyword: temporary. Parse it and set breakpoint
1672         to temporary if True.
1673
1674 2013-11-07  Jose E. Marchesi  <jose.marchesi@oracle.com>
1675
1676         * sparc-tdep.c (sparc_analyze_control_transfer): Assertion
1677         removed to allow analyzing unconditional branch instructions
1678         with PC-relative offsets of zero.
1679
1680 2013-11-07  Yao Qi  <yao@codesourcery.com>
1681
1682         * mi/mi-cmd-var.c: Include "language.h".
1683         (mi_cmd_var_info_expression): Get language name from
1684         language_defn.
1685         * varobj.c (varobj_language_string): Remove.
1686         (variable_language): Remove declaration.
1687         (languages): Remove.
1688         (varobj_get_language): Change the type of return value.
1689         (variable_language): Remove.
1690         * varobj.h (enum varobj_languages): Remove.
1691         (varobj_language_string): Remove declaration.
1692         (varobj_get_language): Update declaration.
1693
1694 2013-11-07  Yao Qi  <yao@codesourcery.com>
1695
1696         * language.h (struct language_defn) <la_natural_name>: New
1697         field.
1698         * ada-lang.c (ada_language_defn): Initialize field
1699         'la_natural_name'.
1700         * c-lang.c (c_language_defn): Likewise.
1701         (cplus_language_defn, asm_language_defn): Likewise.
1702         * d-lang.c (d_language_defn): Likewise.
1703         * f-lang.c (f_language_defn): Likewise.
1704         * go-lang.c (go_language_defn): Likewise.
1705         * jv-lang.c (java_language_defn): Likewise.
1706         * language.c (unknown_language_defn ): Likewise.
1707         (auto_language_defn): Likewise.
1708         * m2-lang.c (m2_language_defn): Likewise.
1709         * objc-lang.c (objc_language_defn): Likewise.
1710         * opencl-lang.c (opencl_language_defn): Likewise.
1711         * p-lang.c (pascal_language_defn): Likewise.
1712
1713 2013-11-07  Yao Qi  <yao@codesourcery.com>
1714
1715         * language.c (language_str): Return const char *.
1716         (add_language): Add const to 'language_names'
1717         * language.h (struct language_defn) <la_name>: Add const.
1718         (language_str: Update declaration.
1719
1720 2013-11-06  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1721
1722         * s390-linux-nat.c (s390_read_description): Consider the TE field
1723         in the HWCAP for determining 'have_regset_tdb'.
1724
1725 2013-11-06  Will Newton  <will.newton@linaro.org>
1726
1727         PR gdb/12866
1728         * dwarf2read.c (skip_one_die): Sanity check DW_AT_sibling
1729         values.  (read_partial_die): Likewise.
1730
1731 2013-11-06  Muhammad Bilal  <mbilal@codesourcery.com>
1732
1733         PR cli/16122
1734         * top.c (command_line_input): Unify interactivity tests to use
1735         input_from_terminal_p.
1736         * event-top.c (command_line_handler): Likewise.
1737
1738 2013-11-06  Yao Qi  <yao@codesourcery.com>
1739
1740         * Makefile.in (check-perf): New target.
1741
1742 2013-11-05  Will Newton  <will.newton@linaro.org>
1743
1744         PR gdb/7670
1745         * arm-tdep.c (print_fpu_flags): Use filtered output routines.
1746         (arm_print_float_info): Likewise.
1747
1748 2013-11-04  Anton Blanchard  <anton@samba.org>
1749
1750         * target.c (memory_xfer_partial): Cap write to 4KB.
1751
1752 2013-11-01  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
1753
1754         * breakpoint.c (create_longjmp_master_breakpoint): Allow libc
1755         probe scan even when the arch provides no get_longjmp_target.
1756
1757 2013-10-31  Pedro Alves  <palves@redhat.com>
1758
1759         * infrun.c (handle_syscall_event): Don't set or clear stop_signal.
1760         (handle_inferior_event) <TARGET_WAITKIND_FORKED,
1761         TARGET_WAITKIND_VFORKED>: Don't set stop_signal to
1762         GDB_SIGNAL_TRAP, or clear it.  Pass GDB_SIGNAL_0 to
1763         bpstat_explains signal, instead of GDB_SIGNAL_TRAP.
1764         <bpstat handling>: If the bpstat chain wants the signal to be
1765         hidden, then set stop_signal to GDB_SIGNAL_0 instead of
1766         GDB_SIGNAL_TRAP.
1767
1768 2013-10-31  Andrew Burgess  <aburgess@broadcom.com>
1769
1770         * breakpoint.c (update_watchpoint): Update error message and add
1771         an additional error message.
1772
1773 2013-10-30  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1774
1775         * s390-tdep.h: Rename to...
1776         * s390-linux-tdep.h: ...here.
1777         * s390-tdep.c: Rename to...
1778         * s390-linux-tdep.c: ...here.  Adjust #include.
1779         * s390-nat.c: Rename to...
1780         * s390-linux-nat.c: ...here.  Adjust #include.
1781         * config/s390/s390.mh: Rename to...
1782         * config/s390/linux.mh: ...here.  Reflect rename s390-nat.o ->
1783         s390-linux-nat.o.
1784         * configure.host: Reflect host rename "s390" -> "linux".
1785         * configure.tgt: Reflect rename s390-tdep.o -> s390-linux-tdep.o.
1786         * Makefile.in (ALL_TARGET_OBS): Likewise.
1787         (HFILES_NO_SRCDIR): Reflect rename s390-tdep.h ->
1788         s390-linux-tdep.h.
1789         (ALLDEPFILES): Reflect rename of .c files.
1790
1791 2013-10-30  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1792
1793         * s390-nat.c: Whitespace cleanup.
1794         * s390-tdep.c: Likewise.
1795         * s390-tdep.h: Remove empty line at end of file.
1796
1797 2013-10-30  Maciej W. Rozycki  <macro@codesourcery.com>
1798
1799         * linux-tdep.c (linux_corefile_thread_callback): Preinitialize
1800         siginfo_size.
1801
1802 2013-10-29  Tom Tromey  <tromey@redhat.com>
1803
1804         * utils.c (reg): Move undefinition...
1805         * gdb_curses.h: ... here.  Update comment to mention AIX.
1806
1807 2013-10-29  Nicolas Blanc  <nicolas.blanc@intel.com>
1808
1809         * exec.h (add_target_sections_of_objfile): New declaration.
1810         * exec.c (add_target_sections_of_objfile): New function.
1811         * symfile.c (add_symbol_file_command): Update current target sections.
1812         (remove_symbol_file_command): New command.
1813         (symfile_free_objfile): New function.
1814         (_initialize_symfile): Register observer for free_objfile events.
1815         * NEWS: Add description of the remove-symbol-file command.
1816         * breakpoint.c (disable_breakpoints_in_freed_objfile): New function.
1817         * objfiles.c (free_objfile): Notify free_objfile.
1818         (is_addr_in_objfile): New function.
1819         * objfiles.h (is_addr_in_objfile): New declaration.
1820         * printcmd.c (clear_dangling_display_expressions): Act upon free_objfile
1821         events instead of solib_unloaded events.
1822         (_initialize_printcmd): Register observer for free_objfile instead
1823         of solib_unloaded notifications.
1824         * solib.c (remove_user_added_objfile): New function.
1825         (_initialize_symfile): Add remove-symbol-file.
1826
1827 2013-10-29  Andrew Burgess  <aburgess@broadcom.com>
1828
1829         * infcmd.c (default_print_one_register_info): Use val_print to
1830         print all values even optimized out or unavailable ones.  Don't
1831         try to print a raw form of optimized out or unavailable values.
1832
1833 2013-10-29  Yao Qi  <yao@codesourcery.com>
1834
1835         * auto-load.c (auto_load_pspace_data_cleanup): Get data from
1836         parameter 'arg' instead of from program_space_data.
1837         * objfiles.c (objfiles_pspace_data_cleanup): Likewise.
1838         * solib-darwin.c (darwin_pspace_data_cleanup): Likewise.
1839         * solib-dsbt.c (dsbt_pspace_data_cleanup): Likewise.
1840         * solib-svr4.c (svr4_pspace_data_cleanup): Likewise.
1841         * inflow.c (inflow_inferior_data_cleanup): Get data from
1842         parameter 'arg' instead of inferior_data.
1843         * registry.h: Add comments.
1844
1845 2013-10-28  Pedro Alves  <palves@redhat.com>
1846
1847         * breakpoint.c (watchpoints_triggered)
1848         <!target_stopped_data_address>: Hardcode return 1.
1849
1850 2013-10-28  Pedro Alves  <palves@redhat.com>
1851
1852         * infrun.c (process_event_stop_test): Remove unnecessary scoping
1853         level and reindent.
1854
1855 2013-10-28  Pedro Alves  <palves@redhat.com>
1856
1857         * infrun.c (process_event_stop_test): New function, factored out
1858         from handle_inferior_event.
1859         (handle_inferior_event): 'process_event_stop_test' is now a
1860         function instead of a goto label -- adjust.
1861
1862 2013-10-28  Pedro Alves  <palves@redhat.com>
1863
1864         * infrun.c (handle_inferior_event): Move process_event_stop_test
1865         goto label to the else branch of the ecs->random_signal check,
1866         along with FRAME and GDBARCH re-fetching.
1867
1868 2013-10-28  Pedro Alves  <palves@redhat.com>
1869
1870         * infrun.c (switch_back_to_stepped_thread): New function, factored
1871         out from handle_inferior_event.
1872         (handle_inferior_event): Adjust to call
1873         switch_back_to_stepped_thread.  Call it also at the tail of the
1874         random signal handling, and return, instead of also handling
1875         random signals just before the stepping tests.
1876
1877 2013-10-28  Pedro Alves  <palves@redhat.com>
1878
1879         * infrun.c (clear_stop_func): Delete.
1880         (handle_inferior_event): Don't call clear_stop_func and don't
1881         clear 'ecs->random_signal'.
1882
1883 2013-10-27  Yao Qi  <yao@codesourcery.com>
1884
1885         * varobj.c (struct varobj_root) <lang>: Rename to 'lang_ops'.
1886         (varobj_create, varobj_get_path_expr): Update.
1887         (varobj_value_has_mutated, varobj_update): Likewise.
1888         (create_child_with_value, new_root_variable): Likewise.
1889         (number_of_children, name_of_variable): Likewise.
1890         (value_of_child, my_value_of_variable): Likewise.
1891         (varobj_value_is_changeable_p): Likewise.
1892
1893 2013-10-25  Yao Qi  <yao@codesourcery.com>
1894
1895         * language.h (struct lang_varobj_ops): Declare.
1896         (struct language_defn) <la_varobj_ops>: New field.
1897         * ada-lang.c: Include "varobj.h"
1898         (defn ada_language_defn): Initialize field 'la_varobj_ops' with
1899         ada_varobj_ops.
1900         * c-lang.c: Include "varobj.h"
1901         (c_language_defn): Initialize field 'la_varobj_ops' with
1902         c_varobj_ops.
1903         (cplus_language_defn): Initialize field 'la_varobj_ops' with
1904         cplus_varobj_ops.
1905         (asm_language_defn): Initialize field 'la_varobj_ops' with
1906         default_varobj_ops.
1907         (minimal_language_defn): Likewise.
1908         * d-lang.c (d_language_defn): Likewise.
1909         * f-lang.c (f_language_defn): Likewise.
1910         * go-lang.c (go_language_defn): Likewise.
1911         * m2-lang.c (m2_language_defn): Likewise.
1912         * objc-lang.c (objc_language_defn): Likewise.
1913         * opencl-lang.c (opencl_language_defn): Likewise.
1914         * p-lang.c (pascal_language_defn): Likewise.
1915         * language.c (unknown_language_defn): Likewise.
1916         (auto_language_defn): Likewise.
1917         (local_language_defn): Likewise.
1918         * jv-lang.c (java_language_defn): Initialize field
1919         'la_varobj_ops' with java_varobj_ops.
1920         * varobj.c (varobj_create): Update.
1921         * varobj.h (default_varobj_ops): Define macro.
1922
1923 2013-10-25  Pedro Alves  <palves@redhat.com>
1924
1925         * cp-valprint.c (cp_print_value_fields): No longer handle a NULL
1926         static field value.
1927         (cp_print_static_field): If the value is entirely optimized out,
1928         print <optimized out> here.
1929         * jv-valprint.c (java_print_value_fields): No longer handle a NULL
1930         static field value.
1931         * p-valprint.c (pascal_object_print_static_field): If the value is
1932         entirely optimized out, print <optimized out> here.
1933         * valops.c (do_search_struct_field)
1934         (value_struct_elt_for_reference): No longer handle a NULL static
1935         field value.
1936         * value.c (value_static_field): Return an optimized out value
1937         instead of NULL.
1938
1939 2013-10-25  Yao Qi  <yao@codesourcery.com>
1940
1941         * remote.c (remote_traceframe_info): Return early if
1942         traceframe is not selected.
1943
1944 2013-10-25  Yao Qi  <yao@codesourcery.com>
1945
1946         * tracepoint.c (traceframe_fun): Remove.
1947         (traceframe_sal): Remove.
1948         (set_traceframe_context): Add local variables.
1949
1950 2013-10-25  Joel Brobecker  <brobecker@adacore.com>
1951
1952         * varobj.h (struct lang_varobj_ops): Remove spaces between '*'
1953         and parameter name.
1954
1955 2013-10-24  Maciej W. Rozycki  <macro@codesourcery.com>
1956
1957         * linux-tdep.c (linux_corefile_thread_callback): Propagate any
1958         failure from register information collection.
1959
1960 2013-10-24  Maciej W. Rozycki  <macro@codesourcery.com>
1961
1962         * linux-tdep.c (linux_corefile_thread_data): Remove `num_notes'
1963         member.
1964         (linux_corefile_thread_callback): Update accordingly.
1965         (linux_make_corefile_notes): Likewise.
1966
1967 2013-10-24  Pedro Alves   <palves@redhat.com>
1968
1969         * NEWS (New options): Mention set/show startup-with-shell.
1970         * config/alpha/nm-osf3.h (START_INFERIOR_TRAPS_EXPECTED): Set to 2
1971         instead of 3.
1972         * fork-child.c (fork_inferior, startup_inferior): Handle 'set
1973         startup-with-shell'.
1974         (show_startup_with_shell): New function.
1975         (_initialize_fork_child): Register the set/show startup-with-shell
1976         commands.
1977         * inf-ptrace.c (inf_ptrace_create_inferior): Remove comment.
1978         * inf-ttrace.c (inf_ttrace_him): Remove comment.
1979         * procfs.c (procfs_init_inferior): Remove comment.
1980         * infcmd.c (startup_with_shell): New global.
1981         * inferior.h (startup_with_shell): Declare global.
1982         (STARTUP_WITH_SHELL): Delete.
1983         (START_INFERIOR_TRAPS_EXPECTED): Set to 1 by default instead of 2.
1984
1985 2013-10-23  Pedro Alves  <palves@redhat.com>
1986
1987         * common/gdb_signals.h (gdb_signal_to_symbol_string): Declare.
1988         * common/signals.c: Include "gdb_assert.h".
1989         (signals): New field 'symbol'.
1990         (SET): Use the 'symbol' parameter.
1991         (gdb_signal_to_symbol_string): New function.
1992         * infrun.c (handle_inferior_event) <random signal>: In debug
1993         output, print the random signal enum as string in addition to its
1994         number.
1995         * target/waitstatus.c (target_waitstatus_to_string): Print the
1996         signal's enum value as string instead of the (POSIX) signal name.
1997
1998 2013-10-23  Gary Benson  <gbenson@redhat.com>
1999
2000         PR 16013
2001         * common/linux-osdata.c (command_from_pid): Reduced size of cmd
2002         from 32 to 18.  Adjusted fscanf format string accordingly.
2003         (Avoids leaving cmd unterminated.)
2004         (print_sockets): Do not parse tlen, inode, sl, timeout, txq, rxq,
2005         trun, retn or extra.  (Avoids leaving extra unterminated.)  Check
2006         that local_address and remote_address will not overflow.
2007         (linux_xfer_osdata_modules): Parse lines using strtok to avoid
2008         leaving dependencies unterminated.  Parse size as "%u" to match
2009         definition.
2010
2011 2013-10-22  Pedro Alves  <palves@redhat.com>
2012
2013         * infrun.c (handle_inferior_event) <thread hop>: Don't clear or
2014         set ecs->random signal.
2015
2016 2013-10-22  Pedro Alves  <palves@redhat.com>
2017
2018         * infrun.c (keep_going): Update comments.
2019
2020 2013-10-22  Pedro Alves  <palves@redhat.com>
2021
2022         * remote.c (remote_parse_stop_reply) <'T'/'S'/'X' replies>: Map
2023         invalid signal numbers to GDB_SIGNAL_UNKNOWN.
2024
2025 2013-10-22  Pedro Alves  <palves@redhat.com>
2026
2027         * include/gdb/signals.def (TARGET_EXC_BAD_ACCESS): Rename to
2028         GDB_EXC_BAD_ACCESS.
2029         (TARGET_EXC_BAD_INSTRUCTION): Rename to GDB_EXC_BAD_INSTRUCTION.
2030         (TARGET_EXC_ARITHMETIC): Rename to GDB_EXC_ARITHMETIC.
2031         (TARGET_EXC_EMULATION): Rename to GDB_EXC_EMULATION.
2032         (TARGET_EXC_SOFTWARE): Rename to GDB_EXC_SOFTWARE.
2033         (TARGET_EXC_BREAKPOINT): Rename to GDB_EXC_BREAKPOINT.
2034         (GDB_SIGNAL_LAST): Change description string.
2035         * common/signals.c (gdb_signal_from_host, do_gdb_signal_to_host):
2036         Adjust to signal renaming.
2037         * darwin-nat.c (darwin_decode_message): Likewise.
2038
2039 2013-10-22  Jose E. Marchesi  <jose.marchesi@oracle.com>
2040
2041         * MAINTAINERS (Write After Approval): Add myself to the list.
2042
2043 2013-10-18  Andrew Burgess  <aburgess@broadcom.com>
2044
2045         * breakpoint.c (update_watchpoint): If hardware watchpoints are
2046         forced off, downgrade them to software watchpoints if possible,
2047         and error out if not possible.
2048         (watch_command_1): Move watchpoint type selection closer to
2049         watchpoint creation, and extend the comments.
2050
2051 2013-10-18  Pedro Alves  <palves@redhat.com>
2052
2053         PR gdb/16062
2054         * infrun.c (handle_inferior_event): Keep going if we got a random
2055         signal we should not stop for, instead of falling through to the
2056         step tests.
2057
2058 2013-10-18  Yao Qi  <yao@codesourcery.com>
2059
2060         * c-varobj.c (cplus_number_of_children): Fix indentation.
2061
2062 2013-10-17  Tom Tromey  <tromey@redhat.com>
2063
2064         PR gdb/15995:
2065         * printcmd.c (printcmd): Call gdb_flush.
2066
2067 2013-10-17  Tom Tromey  <tromey@redhat.com>
2068
2069         * elfread.c (struct elfinfo) <stabindexsect>: Remove.
2070         (elf_locate_sections): Update.
2071
2072 2013-10-17  Yao Qi  <yao@codesourcery.com>
2073
2074         * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
2075         * ada-varobj.c: Remove the include of ada-varobj.h.
2076         (ada_varobj_get_number_of_children): Declare.
2077         (ada_varobj_get_name_of_child): Make it static.
2078         (ada_varobj_get_path_expr_of_child): Likewise.
2079         (ada_varobj_get_value_of_child): Likewise.
2080         (ada_varobj_get_type_of_child): Likewise.
2081         (ada_varobj_get_value_of_array_variable): Likewise.
2082         * ada-varobj.h: Remove.
2083
2084 2013-10-17  Yao Qi  <yao@codesourcery.com>
2085
2086         * Makefile.in (SFILES): Add c-varobj.c and jv-varobj.c.
2087         (COMMON_OBS): Add c-varobj.o and jv-varobj.o.
2088         * ada-varobj.c: Include "varobj.h".
2089         (ada_number_of_children): New.  Moved from varobj.c.
2090         (ada_name_of_variable, ada_name_of_child): Likewise.
2091         (ada_path_expr_of_child, ada_value_of_child): Likewise.
2092         (ada_type_of_child, ada_value_of_variable): Likewise.
2093         (ada_value_is_changeable_p, ada_value_has_mutated): Likewise.
2094         (ada_varobj_ops): New.
2095         * c-varobj.c, jv-varobj.c: New file.  Moved from varobj.c.
2096         * gdbtypes.c (get_target_type): New.  Moved from varobj.c.
2097         * gdbtypes.h (get_target_type): Declare.
2098         * varobj.c: Remove the inclusion of "ada-varobj.h" and
2099         "ada-lang.h".
2100         (ANONYMOUS_STRUCT_NAME): Move it to c-varobj.c.
2101         (ANONYMOUS_UNION_NAME): Likewise.
2102         (get_type, get_value_type, get_target_type): Remove declarations.
2103         (value_get_print_value, varobj_value_get_print_value): Likewise.
2104         (c_number_of_children, c_name_of_variable): Likewise.
2105         (c_name_of_child, c_path_expr_of_child): Likewise.
2106         (c_value_of_child, c_type_of_child): Likewise.
2107         (c_value_of_variable, cplus_number_of_children): Likewise.
2108         (cplus_class_num_children, cplus_name_of_variable): Likewise.
2109         (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
2110         (cplus_value_of_child, cplus_type_of_child): Likewise.
2111         (cplus_value_of_variable, java_number_of_children): Likewise.
2112         (java_name_of_variable, java_name_of_child): Likewise.
2113         (java_path_expr_of_child, java_value_of_child): Likewise.
2114         (java_type_of_child, java_value_of_variable): Likewise.
2115         (ada_number_of_children, ada_name_of_variable): Likewise.
2116         (ada_name_of_child, ada_path_expr_of_child): Likewise.
2117         (ada_value_of_child, ada_type_of_child): Likewise.
2118         (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
2119         (ada_value_has_mutated): Likewise.
2120         (struct language_specific): Move it to varobj.h.
2121         (CPLUS_FAKE_CHILD): Move it to varobj.h.
2122         (restrict_range): Rename it varobj_restrict_range.  Make it extern.
2123         Callers update.
2124         (get_path_expr_parent): Rename it to varobj_get_path_expr_parent.
2125         Make it extern.
2126         (is_anonymous_child): Move it to c-varobj.c and rename to
2127         varobj_is_anonymous_child.  Caller update.
2128         (get_type): Move it to c-varobj.c.
2129         (get_value_type): Rename it varobj_get_value_type.  Make it
2130         extern.
2131         (get_target_type): Move it gdbtypes.c.
2132         (varobj_formatted_print_options): New function.
2133         (value_get_print_value): Rename it to
2134         varobj_value_get_print_value and make it extern.
2135         (varobj_value_is_changeable_p): Make it extern.
2136         (adjust_value_for_child_access): Move it to c-varobj.c.
2137         (default_value_is_changeable_p): Rename it to
2138         varobj_default_value_is_changeable_p.  Make it extern.
2139         (c_number_of_children, c_name_of_variable): Move it to c-varobj.c
2140         (c_name_of_child, c_path_expr_of_child): Likewise.
2141         (c_value_of_child, c_type_of_child): Likewise.
2142         (c_value_of_variable, cplus_number_of_children): Likewise.
2143         (cplus_class_num_children, cplus_name_of_variable): Likewise.
2144         (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
2145         (cplus_value_of_child, cplus_type_of_child): Likewise.
2146         (cplus_value_of_variable): Likewise.
2147         (java_number_of_children, java_name_of_variable): Move it to jv-varobj.c.
2148         (java_name_of_child, java_path_expr_of_child): Likewise.
2149         (java_value_of_child, java_type_of_child): Likewise.
2150         (java_value_of_variable): Likewise.
2151         (ada_number_of_children, ada_name_of_variable): Move it to ada-varobj.c.
2152         (ada_name_of_child, ada_path_expr_of_child): Likewise.
2153         (ada_value_of_child, ada_type_of_child): Likewise.
2154         (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
2155         (ada_value_has_mutated): Likewise.
2156         * varobj.h (CPLUS_FAKE_CHILD): New macro, moved from varobj.c.
2157         (struct lang_varobj_ops): New.  Renamed by 'struct language_specific'.
2158         (c_varobj_ops, cplus_varobj_ops): Declare.
2159         (java_varobj_ops, ada_varobj_ops): Declare.
2160         (varobj_default_value_is_changeable_p): Declare.
2161         (varobj_value_is_changeable_p): Declare.
2162         (varobj_get_value_type, varobj_is_anonymous_child): Declare.
2163         (varobj_get_path_expr_parent): Declare.
2164         (varobj_value_get_print_value): Declare.
2165         (varobj_formatted_print_options): Declare.
2166         (varobj_restrict_range): Declare.
2167
2168 2013-10-17  Luis Machado  <lgustavo@codesourcery.com>
2169
2170         * target/waitstatus.h (target_waitkind): Remove spurious
2171         character from the comments.
2172
2173 2013-10-17  Joel Brobecker  <brobecker@adacore.com>
2174
2175         * gdbarch.sh (get_longjmp_target): Add method documentation.
2176         * gdbarch.h: Regenerate.
2177
2178 2013-10-16  Tom Tromey  <tromey@redhat.com>
2179
2180         * dbxread.c (read_dbx_symtab) <bss_ext_symbol>: Remove unused
2181         label.
2182
2183 2013-10-16  Luis Machado  <lgustavo@codesourcery.com>
2184
2185         * gcore.in: Call GDB using the full path to the gcore script.
2186         Error out if the GDB binary is not found.
2187
2188 2013-10-16  Sergio Durigan Junior  <sergiodj@redhat.com>
2189
2190         PR gdb/16014
2191         * dwarf2read.c (dw2_get_real_path): Remove unnecessary call to
2192         sizeof.
2193
2194 2013-10-16  Sergio Durigan Junior  <sergiodj@redhat.com>
2195
2196         PR gdb/16042
2197         * target.c (target_disable_btrace): Fix invalid return value for
2198         void function.
2199         (target_teardown_btrace): Likewise.
2200
2201 2013-10-14  Yao Qi  <yao@codesourcery.com>
2202
2203         * varobj.c (struct varobj): Move most of the fields to
2204         varobj.h.
2205         (struct varobj_dynamic): New struct.
2206         (varobj_get_display_hint) [HAVE_PYTHON]: Adjust.
2207         (varobj_has_more): Likewise.
2208         (dynamic_varobj_has_child_method): Likewise.
2209         (update_dynamic_varobj_children): Likewise.
2210         (varobj_get_num_children): Likewise.
2211         (varobj_list_children, varobj_pretty_printed_p): Likewise.
2212         (install_new_value_visualizer): Likewise.
2213         (install_new_value_visualizer, install_new_value): Likewise.
2214         (varobj_update, new_variable, free_variable): Likewise.
2215         (my_value_of_variable, value_get_print_value): Likewise.
2216         (install_visualizer): Change the type of parameter 'var' to
2217         'struct varobjd_dynamic *'.  Callers update.
2218         * varobj.h (struct varobj): Moved from varobj.c.
2219         (struct varobj) <dynamic>: New field.
2220
2221 2013-10-13  Sandra Loosemore  <sandra@codesourcery.com>
2222
2223         * nios2-tdep.c (nios2_reg_names): Use "sstatus" rather than "ba"
2224         as the preferred name of r30.
2225         * nios2-linux-tdep.c (reg_offsets): Likewise.
2226         * features/nios2-cpu.xml: Likewise.
2227         * features/nios2-linux.c: Regenerated.
2228         * features/nios2.c: Regenerated.
2229         * regformats/nios2-linux.dat: Regenerated.
2230
2231 2013-10-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
2232
2233         Canonicalize directories for EXEC_FILENAME.
2234         * exec.c (exec_file_attach): Use gdb_realpath_keepfile for
2235         exec_filename.
2236         * utils.c (gdb_realpath_keepfile): New function.
2237         * utils.h (gdb_realpath_keepfile): New declaration.
2238
2239 2013-10-11  Doug Evans  <dje@google.com>
2240
2241         * Makefile.in (GDBFLAGS): New variable.
2242         (run): New rule.
2243
2244 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
2245
2246         * NEWS: Add entry documenting the new "-catch-assert" and
2247         "-catch-exception" GDB/MI commands.
2248
2249 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
2250
2251         * breakpoint.h (init_ada_exception_breakpoint): Add parameter
2252         "enabled".
2253         * breakpoint.c (init_ada_exception_breakpoint): Add parameter
2254         "enabled".  Set B->ENABLE_STATE accordingly.
2255         * ada-lang.h (ada_exception_catchpoint_kind): Move here from
2256         ada-lang.c.
2257         (create_ada_exception_catchpoint): Add declaration.
2258         * ada-lang.c (ada_exception_catchpoint_kind): Move to ada-lang.h.
2259         (create_ada_exception_catchpoint): Make non-static. Add new
2260         parameter "disabled". Use it in call to
2261         init_ada_exception_breakpoint.
2262         (catch_ada_exception_command): Add parameter "enabled" in call
2263         to create_ada_exception_catchpoint.
2264         (catch_assert_command): Likewise.
2265
2266         * mi/mi-cmds.h (mi_cmd_catch_assert, mi_cmd_catch_exception):
2267         Add declarations.
2268         * mi/mi-cmds.c (mi_cmds): Add the "catch-assert" and
2269         "catch-exception" commands.
2270         * mi/mi-cmd-catch.c: Add #include "ada-lang.h".
2271         (mi_cmd_catch_assert, mi_cmd_catch_exception): New functions.
2272
2273 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
2274
2275         * ada-lang.c (enum ada_exception_catchpoint_kind): Renames
2276         "enum exception_catchpoint_kind".  Replace the "ex_" prefix
2277         of all its enumerates with "ada_".  Update the rest of this
2278         file throughout.
2279
2280 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
2281
2282         * ada-lang.c (ada_decode_exception_location): Delete.
2283         (create_ada_exception_catchpoint): Remove arguments "sal",
2284         "addr_string" and "ops".  Add argument "ex_kind" instead.
2285         Adjust implementation accordingly, calling ada_exception_sal
2286         to get the entities it no longer gets passed as arguments.
2287         Document the function's arguments.
2288         (catch_ada_exception_command): Use catch_ada_exception_command_split
2289         instead of ada_decode_exception_location, and update call to
2290         create_ada_exception_catchpoint.
2291         (catch_ada_assert_command_split): Renames
2292         ada_decode_assert_location.  Remove parameters "addr_string" and
2293         "ops", and now returns void.  Adjust implementation accordingly.
2294         Update the function documentation.
2295         (catch_assert_command): Use catch_ada_assert_command_split
2296         instead of ada_decode_assert_location.  Update call to
2297         create_ada_exception_catchpoint.
2298
2299 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
2300
2301         * utils.h (perror_warning_with_name): Add declaration.
2302         * utils.c (perror_warning_with_name): New function.
2303         * cli/cli-cmds.c (source_script_with_search): Add call to
2304         perror_warning_with_name if from_tty is nul.
2305
2306 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
2307
2308         * utils.c (perror_string): New function, extracted out of
2309         throw_perror_with_name.
2310         (throw_perror_with_name): Rework to use perror_string.
2311
2312 2013-10-11  Yao Qi  <yao@codesourcery.com>
2313
2314         * remote.c (discard_pending_stop_replies_in_queue): Update
2315         declaration.
2316         (struct stop_reply) <rs>: New field.
2317         (remove_stop_reply_of_remote_state): New function.
2318         (discard_pending_stop_replies_in_queue): Add parameter 'rs'.
2319         Callers update.  Pass remove_stop_reply_of_remote_state to
2320         QUEUE_iterate.
2321         (remote_parse_stop_reply): Initialize field 'rs'.
2322
2323 2013-10-10  Will Newton  <will.newton@linaro.org>
2324
2325         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
2326         linux_init_abi.
2327
2328 2013-10-10  Joel Brobecker  <brobecker@adacore.com>
2329
2330         * cli/cli-cmds.c (show_baud_rate): Moved to serial.c as
2331         serial_baud_show_cmd.
2332         (_initialize_cli_cmds): Delete the code creating the
2333         "set/show remotebaud" commands.
2334         * serial.c (baud_rate): Move here from top.c.
2335         (serial_baud_show_cmd): Move here from cli/cli-cmds.c.
2336         (_initialize_serial): Create "set/show serial baud" commands.
2337         Add "set/show remotebaud" command aliases.
2338         * top.c (baud_rate): Moved to serial.c.
2339         * NEWS: Document the new "set/show serial baud" commands,
2340         replacing "set/show remotebaud".
2341
2342 2013-10-09  Pedro Alves  <palves@redhat.com>
2343
2344         * breakpoint.c (insert_bp_location): Use memory_error_message to
2345         build the memory error string.
2346         * c-lang.c: Include "gdbcore.h".
2347         (c_get_string): Use memory_error to throw error.
2348         (target_xfer_memory_error): Delete.
2349         (memory_error_message): New, factored out from
2350         target_xfer_memory_error.
2351         (memory_error): Change parameter type to target_xfer_error.
2352         Rewrite.
2353         (read_memory): Use memory_error instead of
2354         target_xfer_memory_error.
2355         * gdbcore.h: Include "target.h".
2356         (memory_error): Change parameter type to target_xfer_error.
2357         (memory_error_message): Declare function.
2358         * target.c (target_read_memory, target_read_stack)
2359         (target_write_memory, target_write_raw_memory): Return
2360         TARGET_XFER_E_IO on error.  Adjust comments.
2361         (get_target_memory): Pass TARGET_XFER_E_IO to memory_error,
2362         instead of EIO.
2363         * target.h (target_read, target_insert_breakpoint)
2364         (target_remove_breakpoint): Adjust comments.
2365         * valprint.c (partial_memory_read): Rename parameter, and adjust
2366         comment.
2367         (val_print_string): Use memory_error_message to build the memory
2368         error string.
2369
2370 2013-10-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
2371
2372         * common/filestuff.c (gdb_fopen_cloexec): Remove initialization of
2373         result variable.  Rename variable fopen_e_ever_failed to
2374         fopen_e_ever_failed_einval.  Retry fopen only for errno EINVAL.
2375
2376 2013-10-09  Pedro Alves  <palves@redhat.com>
2377
2378         * monitor.c (monitor_write_memory, monitor_write_memory_bytes)
2379         (monitor_write_memory_longlongs, monitor_write_memory_block):
2380         Constify 'myaddr' parameter.
2381         (monitor_xfer_memory): Adjust interface as monitor_xfer_partial
2382         helper.
2383         (monitor_xfer_partial): New function.
2384         (init_base_monitor_ops): Don't install a deprecated_xfer_memory
2385         hook.  Install a to_xfer_partial hook.
2386
2387 2013-10-09  Tom Tromey  <tromey@redhat.com>
2388
2389         * dwarf2read.c (dwarf2_get_dwz_file): Update for type change in
2390         bfd_get_alt_debug_link_info.
2391
2392 2013-10-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
2393
2394         New flag OBJF_NOT_FILENAME.
2395         * auto-load.c (auto_load_objfile_script): Check also OBJF_NOT_FILENAME.
2396         * jit.c (jit_object_close_impl): Use OBJF_NOT_FILENAME for
2397         allocate_objfile.
2398         (jit_bfd_try_read_symtab): Use OBJF_NOT_FILENAME for
2399         symbol_file_add_from_bfd.
2400         * jv-lang.c (get_dynamics_objfile): Use OBJF_NOT_FILENAME for
2401         allocate_objfile.
2402         * objfiles.c (allocate_objfile): Assert OBJF_NOT_FILENAME if NAME is
2403         NULL.
2404         * objfiles.h (OBJF_NOT_FILENAME): New.
2405
2406 2013-10-08  Tom Tromey  <tromey@redhat.com>
2407
2408         * Makefile.in (SFILES): Add build-id.c.
2409         (HFILES_NO_SRCDIR): Add build-id.h.
2410         * build-id.c: New file, largely from elfread.c.  Modified
2411         most functions.
2412         * build-id.h: New file.
2413         * dwarf2read.c (dwarf2_get_dwz_file): Update for change to
2414         bfd_get_alt_debug_link_info.  Verify dwz file's build-id.
2415         Search for dwz file using build-id.
2416         * elfread.c (build_id_bfd_get, build_id_verify)
2417         (build_id_to_debug_filename, find_separate_debug_file): Remove.
2418
2419 2013-10-08  Joel Brobecker  <brobecker@adacore.com>
2420
2421         * ada-lang.c (compare_names_with_case): Renamed from
2422         compare_names, adding a new parameter "casing" and its handling.
2423         New function documentation.
2424         (compare_names): New function, implemented using
2425         compare_names_with_case.
2426
2427 2013-10-08  Joel Brobecker  <brobecker@adacore.com>
2428
2429         * ada-lang.c (ada_exception_sal): Remove advance declaration.
2430
2431 2013-10-07  Tom Tromey  <tromey@redhat.com>
2432
2433         * objfiles.c (free_objfile_per_bfd_storage): Delete the
2434         demangled_names_hash.
2435         (free_objfile): Don't delete the demangled_names_hash.
2436         * objfiles.h (struct objfile_per_bfd_storage)
2437         <demangled_names_hash>: New field.
2438         (struct objfile) <demangled_names_hash>: Move to
2439         objfile_per_bfd_storage.
2440         * symfile.c (reread_symbols): Don't delete the
2441         demangled_names_hash.
2442         * symtab.c (create_demangled_names_hash): Update.
2443         (symbol_set_names): Update.
2444
2445 2013-10-07  Tom Tromey  <tromey@redhat.com>
2446
2447         * gdb_bfd.c (struct gdb_bfd_data) <relocation_computed,
2448         needs_relocations>: New fields.
2449         (gdb_bfd_requires_relocations): New function.
2450         * gdb_bfd.h (gdb_bfd_requires_relocations): Declare.
2451         * objfiles.c (get_objfile_bfd_data): Disallow sharing if
2452         the BFD needs relocations applied.
2453
2454 2013-10-07  Pedro Alves  <palves@redhat.com>
2455
2456         PR breakpoints/11568
2457         * breakpoint.c (remove_threaded_breakpoints): Say "no longer in
2458         the thread list" instead of "gone".
2459
2460 2013-10-06  Sergio Durigan Junior  <sergiodj@redhat.com>
2461
2462         * NEWS: Mention new convenience variable $_exitsignal.
2463         * corelow.c (core_open): Reset exit convenience variables.  Set
2464         $_exitsignal to the uncaught signal which generated the corefile.
2465         * infrun.c (handle_inferior_event): Reset exit convenience
2466         variables.  Set $_exitsignal for TARGET_WAITKIND_SIGNALLED.
2467         (clear_exit_convenience_vars): New function.
2468         * inferior.h (clear_exit_convenience_vars): New prototype.
2469
2470 2013-10-06  Yao Qi  <yao@codesourcery.com>
2471
2472         * varobj.h: Add comments to enum varobj_languages.
2473
2474 2013-10-04  Doug Evans  <dje@google.com>
2475
2476         Add support for DWP file format version 2.
2477         * NEWS: Mention support for DWP file format version 2.
2478         * dwarf2read.c (dwarf2_section_info): Convert asection field to a
2479         union of asection, containing_section.  New fields virtual_offset
2480         and is_virtual.  Change type of readin filed from int to char.
2481         (dwo_sections, dwo_file): Tweak comments.
2482         (dwp_v2_section_ids): New enum.
2483         (dwp_sections): New fields abbrev, info, line, loc, macinfo, macro,
2484         str_offsets, types.
2485         (virtual_v1_dwo_sections): Renamed from virtual_dwo_sections.
2486         All uses updated.
2487         (virtual_v2_dwo_sections): New struct.
2488         (dwp_hash_table): New fields version, nr_columns.  Change type of
2489         section_pool field to a union.
2490         (dwp_file): New field version.
2491         (dwarf2_has_info): Check for virtual sections.
2492         (get_containing_section): New function.
2493         (get_section_bfd_owner, get_section_bfd_section): Call it.
2494         (dwarf2_locate_sections): Update.
2495         (dwarf2_section_empty_p): Update.
2496         (dwarf2_read_section): Handle virtual sections.
2497         (locate_dwz_sections): Update.
2498         (create_dwp_hash_table): Document and handle V2 format.
2499         (locate_v1_virtual_dwo_sections): Renamed from
2500         locate_virtual_dwo_sections and update.  All callers updated.
2501         (create_dwo_unit_in_dwp_v1): Renamed from create_dwo_in_dwp.
2502         Delete arg htab.  Rename arg section_index to unit_index.
2503         All callers updated.
2504         (MAX_NR_V1_DWO_SECTIONS): Renamed from MAX_NR_DWO_SECTIONS.
2505         All uses updated.
2506         (create_dwp_v2_section, create_dwo_unit_in_dwp_v2): New functions.
2507         (lookup_dwo_unit_in_dwp): Add V2 support.
2508         (dwarf2_locate_dwo_sections): Update.
2509         (dwarf2_locate_common_dwp_sections): Renamed from
2510         dwarf2_locate_dwp_sections and update.  All callers updated.
2511         (dwarf2_locate_v2_dwp_sections): New function.
2512         (open_and_init_dwp_file): Add V2 support.
2513         (read_str_index): New locals str_section, str_offsets_section.
2514
2515 2013-10-04  Pedro Alves  <palves@redhat.com>
2516
2517         * common/ptid.c (null_ptid, minus_one_ptid, ptid_build)
2518         (pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid)
2519         (ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p): Replace
2520         describing comments with references to ptid.h.
2521         * common/ptid.h: Remove intro description of constructors,
2522         accessors and predicates.
2523         (struct ptid): Reformat.
2524         (minus_one_ptid, ptid_build, pid_to_ptid, ptid_get_pid)
2525         (ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid): Change
2526         describing comments.
2527
2528 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
2529
2530         * aix-thread.c (sync_threadlists): Add missing ')' in call
2531         to ptid_build.
2532
2533 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
2534
2535         * procfs.c (procfs_init_inferior): Fix typo causing the build
2536         to fail.
2537
2538 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
2539
2540         * aix-thread.c (ptrace32): Remove cast to addr_ptr.
2541
2542 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
2543
2544         * mi/mi-main.c (run_one_inferior): Add function description.
2545         Make ARG a pointer to an integer whose value determines whether
2546         we should "run" or "start" the program.
2547         (mi_cmd_exec_run): Add handling of the "--start" option.
2548         Reject all other command-line options.
2549         * NEWS: Add entry for "-exec-run"'s new "--start" option.
2550
2551 2013-10-04  Yao Qi  <yao@codesourcery.com>
2552
2553         * remote-notif.h (REMOTE_NOTIF_ID): New enum.
2554         (struct notif_client) <pending_event>: Moved
2555         to struct remote_notif_state.
2556         <id>: New field.
2557         (struct remote_notif_state) <pending_event>: New field.
2558         (notif_event_xfree): Declare.
2559         * remote-notif.c (handle_notification): Adjust.
2560         (notif_event_xfree): New function.
2561         (do_notif_event_xfree): Call notif_event_xfree.
2562         (remote_notif_state_xfree): Call notif_event_xfree to free
2563         each element in field pending_event.
2564         * remote.c (discard_pending_stop_replies): Remove declaration.
2565         (discard_pending_stop_replies_in_queue): Declare.
2566         (remote_close): Call discard_pending_stop_replies_in_queue
2567         instead of discard_pending_stop_replies.
2568         (remote_start_remote): Adjust.
2569         (stop_reply_xfree): Call notif_event_xfree.
2570         (notif_client_stop): Adjust initialization.
2571         (remote_notif_remove_all): Rename it to ...
2572         (remove_stop_reply_for_inferior): ... this.  Update comments.
2573         Don't check INF is NULL.
2574         (discard_pending_stop_replies): Return early if notif_state is
2575         NULL.  Adjust.  Don't check INF is NULL.
2576         (remote_notif_get_pending_events): Adjust.
2577         (discard_pending_stop_replies_in_queue): New function.
2578         (remote_wait_ns): Likewise.
2579
2580 2013-10-04  Yao Qi  <yao@codesourcery.com>
2581
2582         * remote-notif.c (DECLARE_QUEUE_P): Remove.
2583         (notif_queue): Remove.
2584         (remote_notif_process): Add one parameter 'notif_queue'.
2585         Update comments.  Callers update.
2586         (remote_async_get_pending_events_token): Remove.
2587         (remote_notif_register_async_event_handler): Remove.
2588         (remote_notif_unregister_async_event_handler): Remove.
2589         (handle_notification): Add parameter 'notif_queue'.  Update
2590         comments.  Callers update.
2591         (notif_xfree): Remove.
2592         (remote_notif_state_allocate): New function.
2593         (remote_notif_state_xfree): New function.
2594         (_initialize_notif): Remove code to allocate queue.
2595         * remote-notif.h (DECLARE_QUEUE_P): Moved from remote-notif.c.
2596         (struct remote_notif_state): New.
2597         (handle_notification): Update declaration.
2598         (remote_notif_process): Likewise.
2599         (remote_notif_register_async_event_handler): Remove.
2600         (remote_notif_unregister_async_event_handler): Remove.
2601         (remote_notif_state_allocate): Declare.
2602         (remote_notif_state_xfree): Declare.
2603         * remote.c (struct remote_state) <notif_state>: New field.
2604         (remote_close): Don't call
2605         remote_notif_unregister_async_event_handler.  Call
2606         remote_notif_state_xfree.
2607         (remote_open_1): Don't call
2608         remote_notif_register_async_event_handler.  Call
2609         remote_notif_state_allocate.
2610
2611 2013-10-04  Yao Qi  <yao@codesourcery.com>
2612
2613         * varobj.c (create_child_with_value): Remove 'const' from the
2614         type of parameter 'name'.
2615         (varobj_add_child): Likewise.
2616         (install_dynamic_child): Remove 'const' from the type of
2617         parameter 'name'.
2618         (varobj_add_child): Likewise.
2619         (create_child_with_value): Likewise.  Update comments.  Don't
2620         duplicate 'name'.
2621         (update_dynamic_varobj_children): Duplicate 'name'
2622         and pass it to install_dynamic_child.
2623
2624 2013-10-03  Phil Muldoon  <pmuldoon@redhat.com>
2625
2626         * python/py-value.c (convert_value_from_python): Move PyInt_Check
2627         conversion logic to occur after PyLong_Check.  Comment on order
2628         change significance.
2629         * python/py-arch.c (archpy_disassemble): Comment on order of
2630         conversion for integers and longs.
2631
2632 2013-10-03  Pedro Alves  <palves@redhat.com>
2633
2634         * common/linux-ptrace.c (linux_check_ptrace_features): Factor out
2635         the PTRACE_O_TRACESYSGOOD and PTRACE_O_TRACEFORK to separate
2636         functions.  Always test for PTRACE_O_TRACESYSGOOD even if
2637         PTRACE_O_TRACEFORK is not supported.
2638         (linux_test_for_tracesysgood): New function.
2639         (linux_test_for_tracefork): New function, factored out from
2640         linux_check_ptrace_features, and also don't kill child_pid here.
2641
2642 2013-10-03  Tristan Gingold  <gingold@adacore.com>
2643
2644         * i386-darwin-nat.c (i386_darwin_dr_set): Fix argument type.
2645         Remove verbose error reporting.  Use detected state to
2646         thread_set_state call.
2647         (i386_darwin_dr_get): Fix return type.  Remove verbose error
2648         report.
2649         Remove trailing spaces.
2650
2651 2013-10-02  Pedro Alves  <palves@redhat.com>
2652
2653         * cp-valprint.c (cp_print_value_fields): Adjust calls to
2654         val_print_optimized_out.
2655         * jv-valprint.c (java_print_value_fields): Likewise.
2656         * p-valprint.c (pascal_object_print_value_fields): Likewise.
2657         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full)
2658         <DWARF_VALUE_REGISTER>: If the register was not saved, return a
2659         new optimized out value.
2660         * findvar.c (address_from_register): Likewise.
2661         * frame.c (put_frame_register): Tweak error string to say the
2662         register was not saved, rather than optimized out.
2663         * infcmd.c (default_print_one_register_info): Adjust call to
2664         val_print_optimized_out.  Use value_of_register instead of
2665         get_frame_register_value.
2666         * mi/mi-main.c (output_register): Use value_of_register instead of
2667         get_frame_register_value.
2668         * valprint.c (valprint_check_validity): Likewise.
2669         (val_print_optimized_out): New value parameter.  If the value is
2670         lval_register, print <not saved> instead.
2671         (value_check_printable, val_print_scalar_formatted): Adjust calls
2672         to val_print_optimized_out.
2673         * valprint.h (val_print_optimized_out): New value parameter.
2674         * value.c (struct value) <optimized_out>: Extend comment.
2675         (error_value_optimized_out): New function.
2676         (require_not_optimized_out): Use it.  Use a different string for
2677         lval_register values.
2678         * value.h (error_value_optimized_out): New declaration.
2679         * NEWS: Mention <not saved>.
2680
2681 2013-10-02  Joel Brobecker  <brobecker@adacore.com>
2682
2683         * symtab.c (compare_search_syms): Use FILENAME_CMP instead of
2684         strcmp to compare two symtab filenames.
2685
2686 2013-10-02  Joel Brobecker  <brobecker@adacore.com>
2687
2688         * symtab.c (search_symbols_equal): Delete.
2689         (sort_search_symbols_remove_dups): Replace call to
2690         search_symbols_equal by call to compare_search_syms,
2691         adjusting as necessary.
2692
2693 2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
2694
2695         PR python/15579
2696         * python/python.c: Document gdb.execute command in Python help.
2697
2698 2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
2699
2700         * python/py-frame.c (frame_info_to_frame_object): Use
2701         gdbpy_convert_exception. Clean up Python object on failure.
2702
2703 2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
2704
2705         * python/lib/gdb/command/frame_filters.py
2706         (InfoFrameFilter.list_frame_filters): Retrieve exception manually.
2707         (ShowFrameFilterPriority.invoke): Ditto.
2708
2709 2013-10-01  Keith Seitz  <keiths@redhat.com>
2710
2711         * linespec.c (struct ls_parser): Make 'saved_arg' const.
2712         (parse_linespec): Make 'argptr' const.
2713         Remove temporary cast of 'argptr' to const char **.
2714         (decode_line_full): Pass const pointer to parse_linespec.
2715         (decode_line_1): Likewise.
2716         (decode_objc): Make local variable 'new_argptr' const.
2717         (find_function_symbols): Remove temporary cast to char *
2718         to find_imps.
2719         * objc-lang.c (find_imps): Make argument 'method' const.
2720         Return const.
2721         * objc-lang.h (find_imps): Likewise.
2722
2723 2013-10-01  Keith Seitz  <keiths@redhat.com>
2724
2725         * completer.c (skip_quoted_chars): Make all arguments const.
2726         Return const.
2727         (skip_quoted): Likewise.
2728         * completer.h (skip_quoted_chars): Likewise.
2729         (skip_quoted): Likewise.
2730         * defs.h (skip_quoted): Remove duplicate declaration.
2731         * jv-exp.y: Include completer.h.
2732         (yylex): Remove unneccessary cast to char * fro skip_quoted.
2733         * p-exp.y: Include completer.h.
2734
2735 2013-10-01  Keith Seitz  <keiths@redhat.com>
2736
2737         * c-exp.y (parse_number): Make first argument const.
2738         Make a copy of the input to manipulate.
2739         (c_parse_escape): Make first argument const.
2740         Make local variable 'tokptr' const.
2741         (parse_string_or_char): Make first two arguments const.
2742         (macro_original_text): Make const.
2743         (lex_one_token): Make local variable 'tokstart' const.
2744         Likewise for local variables named 'p'.
2745         Cast away const for struct stoken (temporary).
2746         * c-lang.h (c_parse_escpae): Make first argument const.
2747         * cli/cli-cmds.c (echo_command): Make local variable 'p'
2748         const.
2749         * cli/cli-setshow.c (do_set_command): Likewise for 'p' in
2750         var_string case.
2751         * f-exp.y (parse_number): Make first argument const.
2752         (match_string_literal): Make local variable 'tokstart'
2753         const.
2754         (yylex): Make local variable 'p' const.
2755         Cast away const for struct stoken (temporary).
2756         * go-exp.y (parse_number): Make first argument const.
2757         (parse_string_or_char): Likewise.
2758         Make local variable 'tokstart' const.
2759         (lex_one_token): Likewise for numerous locals called 'p'.
2760         Cast away const for struct stoken (temporary).
2761         * jv-exp.y (parse_number): Make first argument const.
2762         Make local variables 'tokstart' and 'tokptr' const.
2763         Cast away const for call to skip_quoted (temporary).
2764         (yylex): Make local variable 'p' const.
2765         Cast away const for struct stoken (temporary).
2766         * m2-exp.y (parse_number): Make local variable 'p' const.
2767         (yylex): Likewise for 'tokstart'.
2768         Cast away const for struct stoken (temporary).
2769         Make local variable 'p' const.
2770         * macroexp.c (get_character_constant): Pass a const string
2771         to c_parse_escape.
2772         (get_string_literal): Likewise.
2773         (macro_expand_next): Make first argument const.
2774         Cast away const for init_shared_buffer.
2775         * macroexp.h (macro_expand_next): Make first argument const.
2776         * p-exp.y (yylex): Make a local copy of 'lexptr'.
2777         Pass a const string to c_parse_escape.
2778         Make local variables 'p' and 'namestart' const.
2779         * parse.c (lexptr): Make const.
2780         (prev_lexptr): Likewise.
2781         (find_template_name_end): Return const.
2782         Make argument const, too.
2783         (parse_exp_in_context): Make first argument const.
2784         Remove the entire const_hack.
2785         (parse_exp_in_context_1): Make first argument const.
2786         * parser-defs.h (find_template_name_end): Return const.
2787         Make argument const, too.
2788         (lexptr): Make const.
2789         (prev_lexptr): Likewise.
2790         * utils.c (parse_escape): Make second argument const.
2791         * utils.h (parse_escape): Likewise.
2792
2793 2013-10-01  Keith Seitz  <keiths@redhat.com>
2794
2795         * ada-exp.y (write_object_renaming): Update: struct stoken.ptr
2796         is now const.
2797         (block_lookup): Make 'raw_name' and 'name' const.
2798         * ada-lex.l (processString): Update for struct stoken.ptr.
2799         * c-exp.y (qualified_name : TYPENAME COLONCOLON '~' name): Likewise.
2800         (operator_stoken): Likewise.
2801         (lex_one_token): Remove temporary cast to char * for
2802         'yylval.sval.ptr'.
2803         * f-exp.y (yylex): Likewise.
2804         * gdb-types.c (lookup_struct_elt_type): Make argument 'name' const.
2805         * gdbtypes.h (lookup_struct_elt_type): Likewisee.
2806         * go-exp.y (lex_one_token): Remove temporary cast to char * for
2807         'yylval.sval.ptr'.
2808         * jv-exp.y (QualifiedName): Update for struct stoken.ptr.
2809         (yylex): Remove temporary cast to char * for 'yylval.sval.ptr'.
2810         * linespec.c (struct ls_parser): Make 'stream' const.
2811         (find_parameter_list_end): Make argument 'input' and local
2812         variable 'p' const.
2813         (linespec_lexer_lex_string): Make local variables 'start' and
2814         'p' const.
2815         Use skip_spaces_const instead of skip_spaces.
2816         (linespec_lexer_peek_token): Make local variable 'saved_stream'
2817         const.
2818         (parse_linespec): Temporarily cast 'argptr' to const for
2819         'parser->lexer.stream'.
2820         * m2-exp.y (yylex): Remove temporary cast to char * for
2821         'yylval.sval.ptr'.
2822         * objc-lang.c (add_msglist): Make local variable 'p' const.
2823         * p-exp.y (exp : exp '['): Update for struct stoken.ptr.
2824         (exp : STRING): Make 'sp' const.
2825         (parse_number): Make argument 'p' const.
2826         * parser-defs.h (struct stoken): Make 'ptr' const.
2827
2828 2013-10-01  Doug Evans  <dje@google.com>
2829
2830         * cli/cli-decode.c: Remove unnecessary inclusion of tui/tui.h.
2831
2832 2013-10-01  Yao Qi  <yao@codesourcery.com>
2833
2834         * varobj.c (c_value_of_root): Remove declaration.
2835         (cplus_value_of_root, java_value_of_root): Likewise.
2836         (ada_value_of_root): Likewise.
2837         (struct language_specific) <value_of_root>: Remove.
2838         (languages): Update initialization.
2839         (check_scope): Move earlier.
2840         (c_value_of_root): Move earlier and rename to ...
2841         (value_of_root_1): ... this.
2842         (value_of_root): Caller update.
2843         (cplus_value_of_root, java_value_of_root): Remove.
2844         (ada_value_of_root): Remove.
2845
2846 2013-10-01  Yao Qi  <yao@codesourcery.com>
2847
2848         * varobj.c (varobj_format_string): Remove "unknown".
2849         (languages): Remove the first element.
2850         * varobj.h (enum varobj_languages): Remove vlang_c.
2851
2852 2013-10-01  Yao Qi  <yao@codesourcery.com>
2853
2854         * varobj.c (struct language_specific) <language>: Remove.
2855         (languages): Update the initialization.
2856
2857 2013-10-01  Yao Qi  <yao@codesourcery.com>
2858
2859         * arm-wince-tdep.c: Remove inclusion of "solib.h" and
2860         "solib-target.h".  Include "windows-tdep.h".
2861         (arm_wince_init_abi): Call windows_init_abi.  Remove call to
2862         set_solib_ops and set_gdbarch_has_dos_based_file_system.
2863         * configure.tgt (arm*-wince-pe | arm*-*-mingw32ce*): Append
2864         windows-tdep.o to gdb_target_obs.
2865
2866 2013-10-01  Yao Qi  <yao@codesourcery.com>
2867
2868         * amd64-windows-tdep.c: Remove inclusion of "solib.h" and
2869         "solib-target.h".
2870         (amd64_windows_init_abi): Don't call set_solib_ops and
2871         set_gdbarch_iterate_over_objfiles_in_search_order.  Call
2872         windows_init_abi instead.
2873         * i386-cygwin-tdep.c: Remove inclusion of "solib.h" and
2874         "solib-target.h".
2875         (i386_cygwin_init_abi): Don't call set_solib_ops,
2876         set_gdbarch_has_dos_based_file_system and
2877         set_gdbarch_iterate_over_objfiles_in_search_order.  Call
2878         windows_init_abi instead.
2879         * windows-tdep.c: Include "solib.h" and "solib-target.h".
2880         (windows_init_abi): New function.
2881         (windows_iterate_over_objfiles_in_search_order): Make it
2882         static.
2883         * windows-tdep.h (windows_init_abi): Declare.
2884         (windows_iterate_over_objfiles_in_search_order): Remove
2885         declaration.
2886
2887 2013-10-01  Jerome Guitton  <guitton@adacore.com>
2888
2889         Checked in by Joel Brobecker  <brobecker@adacore.com>
2890         * system-gdbinit/elinos.py (get_elinos_environment): Return an
2891         incomplete dictionnary instead of None in case of missing
2892         environment variables.
2893         (elinos_init): in case of an incomplete environment, best
2894         effort to load system libraries instead of abort.
2895
2896 2013-10-01  Joel Brobecker  <brobecker@adacore.com>
2897
2898         * ada-lang.c (ada_has_this_exception_support): Ignore
2899         mst_solib_trampoline minimal symbols.
2900
2901 2013-09-30  Tristan Gingold  <gingold@adacore.com>
2902
2903         * i386-darwin-nat.c (darwin_complete_target): Install methods for
2904         hardware watchpoint.
2905         (i386_darwin_dr_set): Support 32 and 64 bit states.
2906         (i386_darwin_dr_get): Likewise.
2907         (i386_darwin_dr_set_control): Make static.
2908         (i386_darwin_dr_set_addr, i386_darwin_dr_get_addr)
2909         (i386_darwin_dr_get_status, i386_darwin_dr_get_control): Likewise.
2910
2911 2013-09-30  Luis Machado  <lgustavo@codesourcery.com>
2912
2913         * aarch64-linux-nat.c: Replace PIDGET with ptid_get_pid.
2914         Replace TIDGET with ptid_get_lwp.
2915         Replace GET_LWP with ptid_get_lwp.
2916         * aix-thread.c (BUILD_THREAD, BUILD_LWP): Remove.
2917         Replace BUILD_THREAD with ptid_build.
2918         Replace BUILD_LWP with ptid_build.
2919         Replace PIDGET with ptid_get_pid.
2920         Replace TIDGET with ptid_get_lwp.
2921         * alphabsd-nat.c: Replace PIDGET with ptid_get_pid.
2922         * amd64-linux-nat.c: Replace PIDGET with ptid_get_pid.
2923         Replace TIDGET with ptid_get_lwp.
2924         * amd64bsd-nat.c: Replace PIDGET with ptid_get_pid.
2925         * arm-linux-nat.c: Replace PIDGET with ptid_get_pid.
2926         Replace TIDGET with ptid_get_lwp.
2927         Replace GET_LWP with ptid_get_lwp.
2928         * armnbsd-nat.c: Replace PIDGET with ptid_get_pid.
2929         * auxv.c: Likewise.
2930         * breakpoint.c: Likewise.
2931         * common/ptid.c (ptid_is_pid): Condense check for
2932         null_ptid and minus_one_ptid.
2933         (ptid_lwp_p): New function.
2934         (ptid_tid_p): New function.
2935         * common/ptid.h: Update comments for accessors.
2936         (ptid_lwp_p): New prototype.
2937         (ptid_tid_p): New prototype.
2938         * defs.h (PIDGET, TIDGET, MERGEPID): Do not define.
2939         * gcore.c: Replace PIDGET with ptid_get_pid.
2940         * gdbthread.h: Likewise.
2941         * gnu-nat.c: Likewise.
2942         * hppa-linux-nat.c: Replace PIDGET with ptid_get_pid.
2943         Replace TIDGET with ptid_get_lwp.
2944         * hppabsd-nat.c: Replace PIDGET with ptid_get_pid.
2945         * hppanbsd-nat.c: Likewise.
2946         * i386-linux-nat.c: Replace PIDGET with ptid_get_pid.
2947         Replace TIDGET with ptid_get_lwp.
2948         * i386bsd-nat.c: Replace PIDGET with ptid_get_pid.
2949         * ia64-linux-nat.c: Replace PIDGET with ptid_get_pid.
2950         * infcmd.c: Likewise.
2951         * inferior.h: Likewise.
2952         * inflow.c: Likewise.
2953         * infrun.c: Likewise.
2954         * linux-fork.c: Likewise.
2955         * linux-nat.c: Replace PIDGET with ptid_get_pid.
2956         Replace GET_PID with ptid_get_pid.
2957         Replace is_lwp with ptid_lwp_p.
2958         Replace GET_LWP with ptid_get_lwp.
2959         Replace BUILD_LWP with ptid_build.
2960
2961 2013-09-28  Mike Frysinger  <vapier@gentoo.org>
2962
2963         * common/linux-btrace.c: Move sys/syscall.h out of the
2964         HAVE_LINUX_PERF_EVENT_H check and wrap it in HAVE_SYS_SYSCALL_H.
2965         Also check for SYS_perf_event_open before attempting to buid.
2966
2967 2013-09-27  Doug Evans  <dje@google.com>
2968
2969         * dwarf2read.c (dwarf2_section_info): Add comment.
2970         (dwp_file): Split loaded_cutus into loaded_cus, loaded_tus.
2971         All uses updated.
2972         (dwarf2_section_empty_p): Rename arg from "info" to "section".
2973         (dwarf2_read_section): Delete unused local "header".  Add section
2974         name to error message.
2975         (create_dwo_in_dwp): Tweak comment.
2976         (MAX_NR_DWO_SECTIONS): Combine count of .debug_macro + .debug_macinfo.
2977
2978         * dwarf2read.c (die_reader_specs): Tweak comment.
2979         (get_section_bfd_owner, get_section_bfd_section): New functions.
2980         (get_section_name, get_section_file_name): New functions.
2981         (get_section_id, get_section_flags): New functions.
2982         (*): Use new functions to access section fields.
2983
2984         * dwarf2read.c (struct dwo_file): Add/tweak comments.
2985         (lookup_dwo_unit_in_dwp): Renamed from lookup_dwo_in_dwp.  Remove
2986         arg "htab".  All callers updated.
2987         (create_debug_types_hash_table): Remove redundant copy of
2988         abbrev_section.
2989         (create_dwo_in_dwp): Tweak comments.
2990         (read_str_index): Tweak comment.  Record dwarf form name in static
2991         local.
2992
2993 2013-09-27  Pedro Alves  <palves@redhat.com>
2994
2995         * remote.h (REMOTE_SYSROOT_PREFIX): New define.
2996         (remote_filename_p): Add comment.
2997         * remote.c (remote_filename_p): Adjust to use
2998         REMOTE_SYSROOT_PREFIX.
2999         * solib.c (solib_find): When deciding whether we need to add a
3000         directory separator, check whether the sysroot is "remote:"
3001         instead of checking whether the patch has a drive spec.  Add
3002         comments.
3003
3004 2013-09-27  Pedro Alves  <palves@redhat.com>
3005
3006         * remote.c (struct stop_reply) <solibs_changed, replay_event>:
3007         Delete fields.
3008         (remote_parse_stop_reply): Adjust, setting event->ws.kind
3009         directly.
3010
3011 2013-09-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
3012
3013         Fix set debug frame output.
3014         * frame.c (fprint_frame_type): Add TAILCALL_FRAME entry.  Move
3015         SENTINEL_FRAME entry lower to match enum frame_type order.
3016
3017 2013-09-26  Pierre Muller  <muller@sourceware.org>
3018
3019         Replace constant values 8 to 15 by AMD64_R8_REGNUM to
3020         AMD64_R15_REGNUM when a register index is expected.
3021         * amd64-windows-tdep.c (amd64_windows_dummy_call_integer_regs):
3022         Substitute in array.
3023         * amd64-tdep.c (amd64_dwarf_regmap): Ditto.
3024         (amd64_push_arguments): Substitute in integer_regnum array.
3025
3026 2013-09-25  Doug Evans  <dje@google.com>
3027
3028         * objfiles.c (allocate_objfile): Move comment to better place.
3029
3030         New option "set debug symfile on".
3031         * NEWS: Mention "set debug symfile".
3032         * Makefile.in (SFILES): Add symfile-debug.c.
3033         (COMMON_OBS): Add symfile-debug.o.
3034         * elfread.c (elf_symfile_read): Use objfile_set_sym_fns to set the
3035         objfile's symbol functions.
3036         * objfiles.h (objfile_set_sym_fns): Declare.
3037         * symfile-debug.c: New file.
3038         * symfile.c (syms_from_objfile_1): Use objfile_set_sym_fns to set the
3039         objfile's symbol functions.
3040         (reread_symbols): Ditto.
3041
3042         * symfile.h (struct sym_fns): Delete member "sym_flavour".
3043         All uses updated.
3044         (add_symtab_fns): Update prototype.
3045         * symfile.c (sym_fns_ptr): Delete.  Replace with ...
3046         (registered_sym_fns): ... this.
3047         (symtab_fns): Update.
3048         (add_symtab_fns): New arg "flavour".  All callers updated.
3049         (find_sym_fns): Rewrite to use new sym_fns registry.
3050
3051         * symfile.h (struct sym_fns): Add "objfile" argument to
3052         sym_read_linetable.  All uses updated.
3053
3054         * symtab.c (domain_name, search_domain_name): New functions.
3055         * symtab.h (domain_name, search_domain_name): Declare.
3056
3057         * symfile.h (struct quick_symbol_functions): Reorg arg list of
3058         map_matching_symbols so objfile is first.  All uses updated.
3059         * dwarf2read.c (dw2_map_matching_symbols): Update signature.
3060         * psymtab.c (map_matching_symbols_psymtab): Update signature.
3061
3062 2013-09-25  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3063
3064         PR shlibs/8882
3065         * solib-svr4.c (svr4_read_so_list): Skip the vDSO when reading
3066         link map entries.
3067
3068 2013-09-24  Doug Evans  <dje@google.com>
3069
3070         * objfiles.c (free_objfile): Move comment.
3071
3072 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
3073
3074         * ada-exp.y (string_to_operator): Delete.
3075         (dummy_string_to_ada_operator): Delete.
3076
3077 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
3078
3079         Revert:
3080         * i386-tdep.h (enum amd64_reg_class): New, moved here from
3081         amd64-tdep.c.
3082         (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
3083         call_dummy_integer_regs, and classify.
3084         * amd64-tdep.h (amd64_classify): Add declaration.
3085         * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
3086         (amd64_reg_class): Delete, moved to i386-tdep.h.
3087         (amd64_classify): Make non-static.  Move declaration to amd64-tdep.h.
3088         Replace call to amd64_classify by call to tdep->classify.
3089         (amd64_push_arguments): Get the list of registers to use for
3090         passing integer parameters from the gdbarch tdep structure,
3091         rather than using a hardcoded one.  Replace calls to amd64_classify
3092         by calls to tdep->classify.
3093         (amd64_push_dummy_call): Get the register number used for
3094         the "hidden" argument from tdep->call_dummy_integer_regs.
3095         (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
3096         and tdep->call_dummy_integer_regs.  Set tdep->classify.
3097
3098 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
3099
3100         Revert:
3101         * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
3102         * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
3103         where tdep->memory_args_by_pointer is non-zero.
3104
3105 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
3106
3107         Revert:
3108         * i386-tdep.h (struct gdbarch_tdep): Add new field
3109         integer_param_regs_saved_in_caller_frame.
3110         * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
3111         stack if tdep->integer_param_regs_saved_in_caller_frame is set.
3112
3113 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
3114
3115         * amd64-windows-tdep.c: #include "value.h"
3116         (amd64_windows_classify): Delete.
3117         (amd64_windows_passed_by_integer_register)
3118         (amd64_windows_passed_by_xmm_register)
3119         (amd64_windows_passed_by_pointer)
3120         (amd64_windows_adjust_args_passed_by_pointer)
3121         (amd64_windows_store_arg_in_reg, amd64_windows_push_arguments)
3122         (amd64_windows_push_dummy_call): New functions.
3123         (amd64_windows_init_abi): Remove setting of
3124         tdep->call_dummy_num_integer_regs, tdep->call_dummy_integer_regs,
3125         tdep->classify, tdep->memory_args_by_pointer and
3126         tdep->integer_param_regs_saved_in_caller_frame.
3127         Add call to set_gdbarch_push_dummy_call.
3128
3129 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
3130
3131         * dwarf2read.c (open_and_init_dwp_file): Try open_dwp_file also with
3132         objfile->original_name.
3133
3134 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
3135
3136         Pass down original filename for objfile.
3137         * coffread.c (coff_symfile_read): Update symbol_file_add_separate call.
3138         * elfread.c (elf_symfile_read): Likewise.
3139         * jit.c (jit_object_close_impl): Update allocate_objfile call, no
3140         longer set ORIGINAL_NAME.
3141         (jit_bfd_try_read_symtab): Update symbol_file_add_from_bfd call.
3142         * jv-lang.c (get_dynamics_objfile): Update allocate_objfile call.
3143         * machoread.c (macho_add_oso_symfile): Add parameter name.  Update
3144         symbol_file_add_from_bfd call.
3145         (macho_symfile_read_all_oso): Update two macho_add_oso_symfile calls.
3146         (macho_check_dsym): Add parameter filenamep.  Change function comment.
3147         Set *filenamep.
3148         (macho_symfile_read): New variable dsym_filename.  Update
3149         macho_check_dsym call.  Use it for symbol_file_add_separate.
3150         * objfiles.c (allocate_objfile): Add parameter name.  New comment for
3151         it.  Use it for objfile->original_name.
3152         (objfile_name): Return OBFD's filename, if available.
3153         * objfiles.h (allocate_objfile): Add new parameter name.
3154         * solib.c (solib_read_symbols): Update symbol_file_add_from_bfd call.
3155         * symfile-mem.c (symbol_file_add_from_memory): Update
3156         symbol_file_add_from_bfd call.
3157         * symfile.c (read_symbols): Update symbol_file_add_separate call, new
3158         comment for it.
3159         (symbol_file_add_with_addrs): New parameter name, add function comment
3160         for it.  Remove variable name.  Update allocate_objfile call.
3161         (symbol_file_add_separate): New parameter name, add function comment
3162         for it.  Update symbol_file_add_with_addrs call.
3163         (symbol_file_add_from_bfd): New parameter name.  Update
3164         symbol_file_add_with_addrs call.
3165         (symbol_file_add): Update symbol_file_add_from_bfd call.
3166         (reread_symbols): New variable original_name.  Save
3167         objfile->original_name by it.
3168         * symfile.h (symbol_file_add_from_bfd, symbol_file_add_separate): Add
3169         second parameter.
3170
3171 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
3172
3173         Code cleanup: Add objfile_name accessor function.
3174         * ada-lang.c (is_known_support_routine): Use objfile_name.
3175         * auto-load.c (source_gdb_script_for_objfile)
3176         (auto_load_objfile_script): Likewise.
3177         * coffread.c (coff_symtab_read, read_one_sym): Likewise.
3178         * dbxread.c (dbx_symfile_read): Likewise.
3179         * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
3180         * dwarf2loc.c (locexpr_describe_location_piece): Likewise.
3181         * dwarf2read.c (dwarf2_get_dwz_file, dwarf2_read_index)
3182         (dw2_symtab_iter_next, dw2_expand_symtabs_matching)
3183         (lookup_dwp_signatured_type, lookup_dwo_unit)
3184         (dwarf2_build_psymtabs_hard, scan_partial_symbols, process_queue)
3185         (fixup_go_packaging, process_imported_unit_die, dwarf2_physname)
3186         (read_import_statement, create_dwo_cu, open_and_init_dwp_file)
3187         (lookup_dwo_cutu, read_call_site_scope, dwarf2_ranges_read)
3188         (dwarf2_record_block_ranges, read_common_block, read_typedef)
3189         (read_subrange_type, load_partial_dies, read_partial_die)
3190         (read_addr_index_1, read_str_index, dwarf_decode_lines_1)
3191         (die_containing_type, build_error_marker_type, lookup_die_type)
3192         (follow_die_ref_or_sig, follow_die_ref, dwarf2_fetch_die_loc_sect_off)
3193         (dwarf2_fetch_constant_bytes, follow_die_sig, get_signatured_type)
3194         (get_DW_AT_signature_type, write_psymtabs_to_index)
3195         (save_gdb_index_command): Likewise.
3196         * elfread.c (find_separate_debug_file_by_buildid, elf_symfile_read):
3197         Likewise.
3198         * expprint.c (dump_subexp_body_standard): Likewise.
3199         * gdbtypes.c (type_name_no_tag_or_error): Likewise.
3200         * jit.c (jit_object_close_impl): Use the objfile field name renamed to
3201         original_name.
3202         * linux-thread-db.c (try_thread_db_load_from_pdir_1): New variable
3203         obj_name, use objfile_name for it, use the variable.
3204         (try_thread_db_load_from_pdir, has_libpthread, thread_db_new_objfile):
3205         Use objfile_name.
3206         * machoread.c (macho_symtab_read, macho_check_dsym)
3207         (macho_symfile_relocate): Likewise.
3208         * maint.c (maintenance_translate_address): Likewise.
3209         * minidebug.c (find_separate_debug_file_in_section): Likewise.
3210         * minsyms.c (install_minimal_symbols): Likewise.
3211         * objfiles.c (allocate_objfile): Use the objfile field name renamed to
3212         original_name.
3213         (filter_overlapping_sections): Use objfile_name.
3214         (objfile_name): New function.
3215         * objfiles.h (struct objfile): Rename field name to original_name.
3216         (objfile_name): New prototype.
3217         * printcmd.c (sym_info, address_info): Use objfile_name.
3218         * probe.c (parse_probes, collect_probes, compare_probes)
3219         (info_probes_for_ops): Likewise.
3220         * progspace.c (clone_program_space): Likewise.
3221         * psymtab.c (require_partial_symbols, dump_psymtab, allocate_psymtab)
3222         (maintenance_info_psymtabs): Likewise.
3223         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
3224         (source_section_scripts): Likewise.
3225         * python/py-objfile.c (objfpy_get_filename): Likewise.
3226         * python/py-progspace.c (pspy_get_filename): Likewise.
3227         * solib-aix.c (solib_aix_get_toc_value): Likewise.
3228         * solib-som.c (match_main, som_solib_section_offsets): Likewise.
3229         * solib.c (solib_read_symbols): Likewise.
3230         * stabsread.c (scan_file_globals): Likewise.
3231         * stap-probe.c (handle_stap_probe): Likewise.
3232         * symfile.c (symbol_file_clear, separate_debug_file_exists)
3233         (find_separate_debug_file_by_debuglink): Likewise.
3234         (reread_symbols): Likewise.  Use the objfile field name renamed to
3235         original_name.
3236         (allocate_symtab): Use objfile_name.
3237         * symmisc.c (print_symbol_bcache_statistics, print_objfile_statistics)
3238         (dump_objfile, dump_msymbols, dump_symtab_1)
3239         (maintenance_print_msymbols, maintenance_print_objfiles)
3240         (maintenance_info_symtabs, maintenance_check_symtabs): Likewise.
3241         * target.c (target_translate_tls_address, target_info): Likewise.
3242         * xcoffread.c (xcoff_initial_scan): Make variable name const.  Use
3243         objfile_name.
3244
3245 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
3246
3247         Code cleanup.
3248         * probe.c (parse_probes): Rename variable objfile_name to
3249         objfile_namestr.
3250
3251 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
3252
3253         Remove solib-sunos.c.
3254         * Makefile.in (ALLDEPFILES): Remove solib-sunos.c.
3255         * config/m68k/obsd.mh (NATDEPFILES): Remove solib-sunos.o.
3256         * objfiles.c (rt_common_objfile): Remove.
3257         (free_objfile): Remove rt_common_objfile comparison.
3258         * objfiles.h (rt_common_objfile): Remove.
3259         * solib-sunos.c: Remove.
3260         * symfile.c (reread_symbols): Remove solib-sunos.c comment.
3261
3262 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
3263
3264         Remove a.out NetBSD and OpenBSD hosts.
3265         * NEWS (Removed native configurations): New.
3266         * config/arm/nbsdaout.mh: Remove.
3267         * config/i386/nbsdaout.mh: Remove.
3268         * config/i386/obsdaout.mh: Remove.
3269         * config/m68k/nbsdaout.mh: Remove.
3270         * config/sparc/nbsdaout.mh: Remove.
3271         * config/vax/nbsdaout.mh: Remove.
3272         * configure.host (arm*-*-netbsd*, i[34567]86-*-netbsd*)
3273         (i[34567]86-*-openbsd[0-2].*, i[34567]86-*-openbsd3.[0-3])
3274         (m68*-*-netbsd*, sparc-*-netbsd*, vax-*-netbsd*): Add them to obsolete
3275         error.
3276         (arm*-*-netbsd*, i[34567]86-*-netbsd*, i[34567]86-*-openbsd[0-2].*)
3277         (i[34567]86-*-openbsd3.[0-3], m68*-*-netbsd*, sparc-*-netbsdaout*)
3278         (sparc-*-netbsd*, vax-*-netbsd*): Remove.
3279
3280 2013-09-23  Tom Tromey  <tromey@redhat.com>
3281
3282         * linespec.c (struct minsym_and_objfile): Remove.
3283         (minsym_and_objfile_d): Remove.
3284         (struct linespec, struct collect_info, linespec_parse_basic)
3285         (convert_linespec_to_sals, linespec_parser_delete, decode_objc)
3286         (compare_msymbols, find_method, find_function_symbols)
3287         (find_linespec_symbols, struct collect_minsyms, compare_msyms)
3288         (add_minsym, search_minsyms_for_name): Update.
3289
3290 2013-09-23  Andrew Burgess  <aburgess@broadcom.com>
3291
3292         * regcache.c: Add include of valprint.h.
3293         (dump_endian_bytes): Delete.
3294         (regcache_dump): Use print_hex_chars not dump_endian_bytes.
3295
3296 2013-09-23  Andrew Burgess  <aburgess@broadcom.com>
3297
3298         * sh64-tdep.c (sh64_do_fp_register): Use print_hex_chars.
3299
3300 2013-09-19  Pedro Alves  <palves@redhat.com>
3301
3302         * breakpoint.c (remove_threaded_breakpoints): Skip non-user
3303         breakpoints.
3304
3305 2013-09-19  Pedro Alves  <palves@redhat.com>
3306             Thomas Schwinge  <thomas@codesourcery.com>
3307             Yue Lu  <hacklu.newborn@gmail.com>
3308
3309         * gnu-nat.c (gnu_read_inferior, gnu_write_inferior): Make static.
3310         Take a gdb_byte pointer instead of a char pointer.
3311
3312         * gnu-nat.c (gnu_xfer_memory): Adjust interface as
3313         gnu_xfer_partial helper.
3314         (gnu_xfer_partial): New function.
3315         (gnu_target): Don't install a deprecated_xfer_memory hook.
3316         Install a to_xfer_partial hook.
3317
3318 2013-09-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
3319
3320         Constification.
3321         * main.c (captured_main): Replace catch_command_errors by
3322         catch_command_errors_const.  Twice.
3323         * symfile.c (symbol_file_add_main_1): Make args parameter const.
3324         (symbol_file_add): Make name parameter const.
3325         (symbol_file_add_main, symbol_file_add_main_1): Make args parameter const.
3326         (symfile_bfd_open): Make name parameter const, rename it to cname.  Add
3327         variable name.  Change their usage accordingly.
3328         * symfile.h (symbol_file_add, symfile_bfd_open): Make first parameter
3329         const.
3330         (symbol_file_add_main): Make args parameter const.
3331
3332 2013-09-18  Raunaq Bathija  <raunaq12@in.ibm.com>
3333             Ulrich Weigand  <uweigand@de.ibm.com>
3334
3335         * xcoffread.c (struct coff_symbol): Use CORE_ADDR as type
3336         of c_value member.
3337         (read_xcoff_symtab): Use CORE_ADDR as type of fcn_start_addr.
3338
3339 2013-09-18  Pedro Alves  <palves@redhat.com>
3340             Yue Lu  <hacklu.newborn@gmail.com>
3341
3342         * gnu-nat.c (inf_validate_procs, gnu_wait, gnu_resume)
3343         (gnu_create_inferior)
3344         (gnu_attach, gnu_thread_alive, gnu_pid_to_str, cur_thread)
3345         (set_sig_thread_cmd): Use the lwpid field of ptids to
3346         store/extract thread ids instead of the tid field.
3347         * i386gnu-nat.c (gnu_fetch_registers): Adjust.
3348
3349 2013-09-18  Andrew Burgess  <aburgess@broadcom.com>
3350
3351         * infcmd.c (default_print_one_register_info): Add detection of
3352         optimized out values.
3353         (default_print_registers_info): Switch to using
3354         get_frame_register_value.
3355
3356 2013-09-18  Markus Metzger  <markus.t.metzger@intel.com>
3357
3358         * infrun.c (handle_inferior_event): Check if we know the
3359         function start address before setting a resume breakpoint.
3360
3361 2013-09-18  Pedro Alves  <palves@redhat.com>
3362
3363         * gnu-nat.c (set_sig_thread_cmd): Compare the thread's ptid to
3364         minus_one_ptid instead of looking at the ptid's tid field and
3365         comparing that to -1.
3366
3367 2013-09-18  Andrew Burgess  <aburgess@broadcom.com>
3368
3369         * main.h (get_gdb_program_name): Remove extra whitespace.
3370
3371 2013-09-18  Andrew Burgess  <aburgess@broadcom.com>
3372
3373         * main.h (get_gdb_program_name): Add declaration.
3374         * main.c (get_gdb_program_name): Add definition.
3375
3376 2013-09-17  Doug Evans  <dje@google.com>
3377
3378         * dwarf2read.c: Move definitions of complaint functions to after
3379         forward declarations of local functions.
3380
3381 2013-09-17  Muhammad Waqas <mwaqas@codesourcery.com>
3382             Pedro Alves  <palves@redhat.com>
3383
3384         PR gdb/11568
3385         * breakpoint.c (remove_threaded_breakpoints): New function.
3386         (_initialize_breakpoint): Attach remove_threaded_breakpoints
3387         as thread_exit observer.
3388
3389 2013-09-17  Pedro Alves  <palves@redhat.com>
3390
3391         PR gdb/15911
3392         * ada-tasks.c (task_command_1): Adjust call to print_stack_frame.
3393         * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
3394         * corelow.c (core_open):
3395         * frame.h (print_stack_frame, print_frame_info): New
3396         'set_current_sal' parameter.
3397         * infcmd.c (finish_command, kill_command): Adjust call to
3398         print_stack_frame.
3399         * inferior.c (inferior_command): Likewise.
3400         * infrun.c (normal_stop): Likewise.
3401         * linux-fork.c (linux_fork_context): Likewise.
3402         * record-full.c (record_full_goto_entry, record_full_restore):
3403         Likewise.
3404         * remote-mips.c (common_open): Likewise.
3405         * stack.c (print_stack_frame): New 'set_current_sal' parameter.
3406         Use it.
3407         (print_frame_info): New 'set_current_sal' parameter.  Set the last
3408         displayed sal depending on the new paremeter instead of looking at
3409         print_what.
3410         (backtrace_command_1, select_and_print_frame, frame_command)
3411         (current_frame_command, up_command, down_command): Adjust call to
3412         print_stack_frame.
3413         * thread.c (print_thread_info, restore_selected_frame)
3414         (do_captured_thread_select): Adjust call to print_stack_frame.
3415         * tracepoint.c (tfind_1): Likewise.
3416         * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
3417         (mi_cmd_stack_info_frame): Likewise.
3418         * mi/mi-interp.c (mi_on_normal_stop): Likewise.
3419         * mi/mi-main.c (mi_cmd_exec_return, mi_cmd_trace_find): Likewise.
3420
3421 2013-09-16  Sergio Durigan Junior  <sergiodj@redhat.com>
3422
3423         * value.c (isvoid_internal_fn): Replace "parameter" with
3424         "argument".
3425
3426 2013-09-16  Stan Shebs  <stan@codesourcery.com>
3427
3428         * README: Update references to writing code for GDB.
3429         * configure.ac (build_warnings): Remove obsolete comment.
3430         * configure: Regenerate.
3431         * gdbarch.sh: Remove references to gdbint.texinfo.
3432         * gdbarch.h: Regenerate.
3433         * gdbtypes.c (objfile_type): Remove comments referencing internals
3434         manual and D10V.
3435
3436 2013-09-16  Sergio Durigan Junior  <sergiodj@redhat.com>
3437
3438         * NEWS: Mention new convenience function $_isvoid.
3439         * value.c (isvoid_internal_fn): New function.
3440         (_initialize_values): Add new convenience function $_isvoid.
3441
3442 2013-09-16  Pierre Muller  <muller@sourceware.org>
3443
3444         * arm-linux-tdep.c: Add "elf/common.h" header.
3445         Remove AT_HWCAP macro definintion as it is provided in
3446         added include file.
3447         * s390-tdep.c: Remove system header <elf.h>
3448         Add "elf/common.h" header for AT_HWCAP definition.
3449         (s390_core_read_description): Use correct CORE_ADDR
3450         for hwcap local variable used as third parameter
3451         of function target_auxv_search.
3452
3453 2013-09-14  Pierre Muller  <muller@sourceware.org>
3454             Tom Tromey  <tromey@redhat.com>
3455             Pedro Alves  <palves@redhat.com>
3456
3457         * common/filestuff.c (gdb_fopen_cloexec): Do not try to use "e"
3458         mode if operating system doesn't know O_CLOEXEC.
3459
3460 2013-09-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
3461
3462         Code cleanup.
3463         * symfile.c (reread_symbols): Move variable obfd_filename to a more
3464         inner block.
3465
3466 2013-09-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3467
3468         * NEWS: Mention TDB support.
3469         * features/s390-tdb.xml: New file.
3470         * features/s390-te-linux64.xml: New file.
3471         * features/s390x-te-linux64.xml: New file.
3472         * features/Makefile (WHICH): Add new tdescs above.
3473         (s390-te-linux64-expedite): Set.
3474         (s390x-te-linux64-expedite): Set.
3475         * features/s390-te-linux64.c: New file (generated).
3476         * features/s390x-te-linux64.c: New file (generated).
3477         * regformats/s390-te-linux64.dat: New file (generated).
3478         * regformats/s390x-te-linux64.dat: New file (generated).
3479         * s390-tdep.h (HWCAP_S390_HIGH_GPRS): Define.
3480         (HWCAP_S390_TE): Likewise.
3481         (S390_TDB_DWORD0_REGNUM): Likewise.
3482         (S390_TDB_DWORD0_REGNUM): Likewise.
3483         (S390_TDB_ABORT_CODE_REGNUM): Likewise.
3484         (S390_TDB_CONFLICT_TOKEN_REGNUM): Likewise.
3485         (S390_TDB_ATIA_REGNUM): Likewise.
3486         (S390_TDB_R0_REGNUM): Likewise.
3487         (S390_TDB_R1_REGNUM): Likewise.
3488         (S390_TDB_R2_REGNUM): Likewise.
3489         (S390_TDB_R3_REGNUM): Likewise.
3490         (S390_TDB_R4_REGNUM): Likewise.
3491         (S390_TDB_R5_REGNUM): Likewise.
3492         (S390_TDB_R6_REGNUM): Likewise.
3493         (S390_TDB_R7_REGNUM): Likewise.
3494         (S390_TDB_R8_REGNUM): Likewise.
3495         (S390_TDB_R9_REGNUM): Likewise.
3496         (S390_TDB_R10_REGNUM): Likewise.
3497         (S390_TDB_R11_REGNUM): Likewise.
3498         (S390_TDB_R12_REGNUM): Likewise.
3499         (S390_TDB_R13_REGNUM): Likewise.
3500         (S390_TDB_R14_REGNUM): Likewise.
3501         (S390_TDB_R15_REGNUM): Likewise.
3502         (S390_NUM_REGS): Increase.
3503         (S390_IS_TDBREGSET_REGNUM): New macro.
3504         (s390_regmap_tdb): Declare.
3505         (s390_sizeof_tdbregset): Define.
3506         (tdesc_s390_te_linux64): Declare.
3507         (tdesc_s390x_te_linux64): Likewise.
3508         * s390-tdep.c: Add includes for "auxv.h", <elf.h>,
3509         "features/s390-te-linux64.c", and "features/s390x-te-linux64.c".
3510         (s390_regmap_tdb): New regmap.
3511         (s390_supply_tdb_regset): New function.
3512         (s390_tdb_regset): New regset.
3513         (s390_linux64v2_regset_sections): Add TDB regset to list.
3514         (s390x_linux64v2_regset_sections): Likewise.
3515         (s390_regset_from_core_section): Recognize TDB core note section.
3516         (s390_core_read_description): If HWCAP indicates TE support,
3517         select tdesc_s390_te_linux64 or tdesc_s390_s390x_te_linux64.
3518         (s390_gdbarch_init): Handle TDB regset.
3519         (_initialize_s390_tdep): Initialize new tdescs.
3520         * s390-nat.c (HWCAP_S390_HIGH_GPRS): Remove define.
3521         (have_regset_tdb): New variable.
3522         (s390_native_supply): Support register invalidation.
3523         (fetch_regset): Invalidate registers if ptrace yields ENODATA.
3524         (check_regset): Treat ENODATA as "regset exists".
3525         (s390_linux_fetch_inferior_registers): Add TDB.
3526         (s390_read_description): Check for TDB existence and select
3527         appropriate tdesc.
3528         * gdbserver/Makefile.in (clean): Add removal of new makefile
3529         targets.
3530         (s390-te-linux64.c): New makefile target.
3531         (s390x-te-linux64.c): Likewise.
3532         * gdbserver/configure.srv (srv_regobj): Append new objects
3533         s390-te-linux64.o and s390x-te-linux64.o.
3534         (srv_xmlfiles): Append new files s390-te-linux64.xml,
3535         s390x-te-linux64.xml, and s390-tdb.xml.
3536         * gdbserver/linux-s390-low.c (init_registers_s390_te_linux64): New
3537         declaration.
3538         (tdesc_s390_te_linux64): Likewise.
3539         (init_registers_s390x_te_linux64): Likewise.
3540         (tdesc_s390x_te_linux64): Likewise.
3541         (s390_check_regset): Treat ENODATA as "regset exists".
3542         (s390_arch_setup): Add TDB regset support.
3543         (initialize_low_arch): Initialize registers for new tdescs.
3544
3545 2013-09-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3546
3547         * s390-tdep.h (S390_IS_GREGSET_REGNUM): New macro.
3548         (S390_IS_FPREGSET_REGNUM): New macro.
3549         * s390-tdep.c (s390_dwarf_regmap): Make const.
3550         (regnum_is_gpr_full): New function for replacing repeated code.
3551         (s390_pseudo_register_name): Use it.
3552         (s390_pseudo_register_type): Likewise.
3553         (s390_pseudo_register_read): Likewise.
3554         (s390_pseudo_register_write): Likewise.
3555         (s390_unwind_pseudo_register): Likewise.
3556         (s390_regmap_gregset): New format for regmap.
3557         (s390x_regmap_gregset): Likewise.
3558         (s390_regmap_fpregset): Likewise.
3559         (s390_regmap_upper): Likewise.
3560         (s390_regmap_last_break): Likewise.
3561         (s390_regmap_system_call): Likewise.
3562         (s390_supply_regset): Adjust to new regmap format.
3563         (s390_collect_regset): Likewise.
3564         * s390-nat.c (s390_native_supply): Adjust to new regmap format.
3565         (s390_native_collect): Likewise.
3566         (supply_gregset): Likewise.
3567         (fill_gregset): Likewise.
3568         (supply_fpregset): Likewise.
3569         (fill_fpregset): Likewise.
3570         (fetch_regset): Likewise.
3571         (store_regset): Likewise.
3572         (s390_linux_fetch_inferior_registers): Likewise.
3573         (s390_linux_fetch_inferior_registers): Likewise.
3574
3575 2013-09-12  Andrew Pinski  <apinski@cavium.com>
3576
3577         * aarch64-linux-nat.c (aarch64_linux_set_debug_regs): Zero out regs.
3578
3579 2013-09-10  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3580
3581         * config/s390/s390.mh (NATDEPFILES): Add linux-waitpid.o.
3582
3583 2013-09-09  Andrew Burgess  <aburgess@broadcom.com>
3584
3585         * top.c (quit_confirm): Remove use of deprecated_init_ui_hook.
3586
3587 2013-09-06  Pedro Alves <palves@redhat.com>
3588
3589         * remote-sim.c (dump_mem, gdbsim_fetch_register)
3590         (gdbsim_store_register, gdbsim_kill, gdbsim_load)
3591         (gdbsim_create_inferior, gdbsim_open, gdbsim_close)
3592         (gdbsim_detach, gdbsim_resume_inferior, gdbsim_wait)
3593         (gdbsim_files_info, gdbsim_mourn_inferior): Send debug output to
3594         gdb_stdlog.
3595
3596 2013-09-06  Pedro Alves  <palves@redhat.com>
3597
3598         * remote-sim.c (dump_mem): Constify buf parameter.
3599         gdbsim_xfer_inferior_memory): Rename to ...
3600         (gdbsim_xfer_memory): ... this.  Adjust interface as
3601         target_xfer_partial helper.
3602         (gdbsim_xfer_partial): New function.
3603         (init_gdbsim_ops): Don't install a deprecated_xfer_memory hook.
3604         Install a to_xfer_partial hook.  Send output to gdb_stdlog.
3605
3606 2013-09-06  Pedro Alves  <palves@redhat.com>
3607
3608         * remote-sim.c (gdbsim_xfer_inferior_memory): Use
3609         host_address_to_string, and send debug output to gdb_stdlog.
3610
3611 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
3612
3613         * Makefile.in (ALL_TARGET_OBS): Add cris-linux-tdep.o.
3614         * configure.tgt: Add cris-linux-tdep.o and linux-tdep.o to
3615         gdb_target_obs for cris target.
3616         * cris-tdep.c (struct gdbarch_tdep): Move to cris-tdep.h.
3617         (cris_gdbarch_init): Move calls to
3618         set_gdbarch_fetch_tls_load_module_address and
3619         set_solib_svr4_fetch_link_map_offsets to cris-linux-tdep.c.
3620         Add call to gdbarch_init_osabi.
3621         * cris-linux-tdep.c: New file.
3622         * cris-tdep.h: New file.
3623
3624 2013-09-06  Andrew Burgess  <aburgess@broadcom.com>
3625
3626         * tui/tui-io.c (tui_initialize_io): Remove legacy comment referring
3627         to deprecated_init_ui_hook.
3628
3629 2013-09-06  Andrew Burgess  <aburgess@broadcom.com>
3630
3631         * cli/cli-interp.c (_initialize_cli_interp): Add a
3632         command_loop_proc to interp_procs.
3633         * event-top.c (cli_command_loop): Change signature to match
3634         interp_command_loop_ftype.
3635         * event-top.h (cli_command_loop): Same.
3636         * interps.c (interp_new): Require every interpreter to have a
3637         command_loop_proc.
3638         (current_interp_command_loop): Just call the command_loop_proc on
3639         the current interpreter.
3640         * tui/tui-interp.c (_initialize_tui_interp): Add a
3641         command_loop_proc to interp_procs.
3642
3643 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
3644
3645         * cris-tdep.c (cris_gdbarch_init): Add call to
3646         get_gdbarch_fetch_tls_load_module_address.
3647
3648 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
3649
3650         * cris-tdep.c (cris_elf_greg_t): Rename from elf_greg_t.
3651         (cris_elf_gregset_t): Rename from elf_gregset_t.
3652         (crisv32_elf_gregset_t): Adjust.
3653         (cris_supply_gregset, fetch_core_registers): Adjust.
3654
3655 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
3656
3657         * cris-tdep.c (elf_greg_t): Change typedef to unsigned char[4]
3658
3659 2013-09-05  Andrew Burgess  <aburgess@broadcom.com>
3660
3661         * defs.h (deprecated_command_loop_hook): Remove, including
3662         references in comments.
3663         * interps.c (current_interp_command_loop): No longer use
3664         deprecated_command_loop_hook.
3665         (clear_interpreter_hooks): Remove deprecated_command_loop_hook
3666         setup.
3667         * top.c (deprecated_command_loop_hook): Remove.
3668
3669 2013-09-05  Pedro Alves  <palves@redhat.com>
3670
3671         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): 'dwarf_regnum'
3672         local is now int instead of ULONGEST.  Print it with %d
3673         instead of paddress.
3674
3675 2013-09-05  Tristan Gingold  <gingold@adacore.com>
3676
3677         * MAINTAINERS: Remove avr maintainership.
3678
3679 2013-09-05  Pedro Alves  <palves@redhat.com>
3680
3681         * findvar.c (value_of_register): Rework in terms of
3682         value_of_register_lazy.
3683
3684 2013-09-05  Muhammad Bilal  <mbilal@codesourcery.com>
3685
3686         * symfile.c (add_symbol_file_command): Remove trailing
3687          whitespaces and blank line after comment.
3688
3689 2013-09-05  Pedro Alves  <palves@redhat.com>
3690
3691         * tui/tui-regs.c (tui_register_format): Don't look at the
3692         register's name here.  Return string representing register
3693         value instead of storing it in the data element.
3694         (tui_get_register): Compare register string representations
3695         instead of register value states and contents.
3696
3697 2013-09-05  Pedro Alves  <palves@redhat.com>
3698
3699         PR tui/15933
3700         * tui/tui-regs.c (tui_show_registers): Show registers of the
3701         selected frame, not the current frame.
3702
3703 2013-09-05  Ricard Wanderlof  <ricardw@axis.com>
3704
3705         * MAINTAINERS (Write After Approval): Add myself to the list.
3706
3707 2013-09-04  Doug Evans  <dje@google.com>
3708
3709         * dwarf2read.c (queue_and_load_all_dwo_tus): New function.
3710         (queue_and_load_dwo_tu): New function.
3711         (lookup_dwo_signatured_type): Set per_cu.tu_read.
3712         (maybe_queue_comp_unit): Rename this_cu argument to dependent_cu.
3713         Make dependent_cu optional.
3714         (dw2_do_instantiate_symtab): If we just loaded a CU from a DWO,
3715         and an older .gdb_index is in use, queue and load all its TUs too.
3716
3717 2013-09-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
3718
3719         Code cleanup: Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH.
3720         * cli/cli-cmds.c (find_and_open_script): Add OPF_RETURN_REALPATH to
3721         variable search_flags.
3722         * defs.h (OPF_DISABLE_REALPATH): Rename to ...
3723         (OPF_RETURN_REALPATH): ... here.
3724         * dwarf2read.c (try_open_dwop_file): Set OPF_RETURN_REALPATH for flags.
3725         * exec.c (exec_file_attach): Remove OPF_DISABLE_REALPATH from openp
3726         call.  Twice.
3727         * nto-tdep.c (nto_find_and_open_solib): Add OPF_RETURN_REALPATH for
3728         openp call.
3729         * solib.c (solib_find): Likewise.  Four times.
3730         * source.c (openp): Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH
3731         in the function comment and for the realpath_fptr variable.
3732         (source_full_path_of): Add OPF_RETURN_REALPATH for openp call.
3733         (find_and_open_source): Likewise.  Twice.
3734         * symfile.c (symfile_bfd_open): Likewise, also twice.
3735
3736 2013-09-04  Doug Evans  <dje@google.com>
3737
3738         * progspace.c (save_current_space_and_thread): Remove unnecessary
3739         call to save_current_inferior.
3740
3741 2013-09-04  Andrew Burgess  <aburgess@broadcom.com>
3742
3743         * sh64-tdep.c (sh64_do_register): Return after printing message
3744         about unavailable register contents.
3745
3746 2013-09-04  Muhammad Bilal  <mbilal@codesourcery.com>
3747             Pedro Alves  <palves@redhat.com>
3748
3749         * symfile.c (add_symbol_file_command): Error out on unknown
3750         option.  Handle EXPECTING_SEC_ADDR/EXPECTING_SEC_NAME before '-'
3751         options and collapse into single conditional branch.
3752
3753 2013-09-03  Luis Machado  <lgustavo@codesourcery.com>
3754
3755         * inf-child.c (inf_child_follow_fork): New parameter
3756         detach_fork.
3757         * inf-ptrace.c (inf_ptrace_follow_fork): Likewise.
3758         * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
3759         * inferior.h (detach_fork): Remove.
3760         * infrun.c (detach_fork): Adjust comment and make it
3761         static.
3762         (follow_fork): Pass detach_fork parameter to
3763         target_follow_fork.
3764         * linux-nat.c (linux_child_follow_fork): New parameter
3765         detach_fork.
3766         * target.c (target_follow_fork): New parameter detach_fork.
3767         Pass detach_fork as parameter and print its value.
3768         * target.h (struct target_ops) <to_follow_fork>: New int
3769         parameter.
3770         (target_follow_fork): New parameter detach_fork.
3771
3772 2013-09-03  Joel Brobecker  <brobecker@adacore.com>
3773
3774         * solib-ia64-hpux.c (ia64_hpux_relocate_section_addresses):
3775         Replace sec->bfd by sec->the_bfd_section->owner.
3776
3777 2013-09-03  Yao Qi  <yao@codesourcery.com>
3778
3779         * linux-tdep.c (linux_is_uclinux): New function.  Code moved
3780         from linux_has_shared_address_space.
3781         (linux_has_shared_address_space): Call linux_is_uclinux.
3782         * linux-tdep.h (linux_is_uclinux): Declare.
3783         * m68klinux-tdep.c (m68k_linux_get_sigtramp_info): Call
3784         linux_is_uclinux.
3785
3786 2013-09-03  Yao Qi  <yao@codesourcery.com>
3787
3788         * config/djgpp/fnchange.lst: Remove entry of
3789         i386-interix-nat.c and i386-interix-tdep.c.
3790         * configure.ac: Remove '*-*-interix*'.
3791         * configure: Re-generated.
3792         * defs.h (enum gdb_osabi): Remove GDB_OSABI_INTERIX.
3793         * i386-cygwin-tdep.c (i386_cygwin_osabi_sniffer): Remove
3794         obsolete comments.
3795         * osabi.c (gdb_osabi_names): Remove "Interix".
3796
3797 2013-09-03  Yao Qi  <yao@codesourcery.com>
3798
3799         * arch-utils.c: Fix typo in the comment to gdbarch_update_p.
3800
3801 2013-09-02  Markus Metzger  <markus.t.metzger@intel.com>
3802
3803         * record.h (record_print_flag) <record_print_src_line,
3804         record_print_insn_range>: Rename into ...
3805         (record_print_flag) <record_print_src_line,
3806         record_print_insn_range>: ... this.  Update all users.
3807
3808 2013-09-02  Pierre Muller  <muller@sourceware.org>
3809
3810         * windows-nat.c (windows_xfer_memory): Handle ERROR_PARTIAL_COPY
3811         error code.
3812
3813 2013-09-02  Pierre Muller  <muller@sourceware.org>
3814
3815         * windows-nat.c (windows_xfer_memory): Fix compilation failure
3816         by use of plongest function.
3817
3818 2013-09-02  Tristan Gingold  <gingold@adacore.com>
3819
3820         * NEWS: Add entry mentioning support for native Windows x64
3821         SEH data.
3822
3823         * amd64-windows-tdep.c: #include "objfiles.h", "frame-unwind.h",
3824         "coff/internal.h", "coff/i386.h", "coff/pe.h" and "libcoff.h".
3825         (struct amd64_windows_frame_cache): New struct.
3826         (amd64_windows_w2gdb_regnum): New global.
3827         (pc_in_range, amd64_windows_frame_decode_epilogue)
3828         (amd64_windows_frame_decode_insns, amd64_windows_find_unwind_info)
3829         (amd64_windows_frame_cache, amd64_windows_frame_prev_register)
3830         (amd64_windows_frame_this_id): New functions.
3831         (amd64_windows_frame_unwind): New static global.
3832         (amd64_windows_skip_prologue): New function.
3833         (amd64_windows_init_abi): Call frame_unwind_prepend_unwinder
3834         with amd64_windows_frame_unwind. Call set_gdbarch_skip_prologue
3835         with amd64_windows_skip_prologue.
3836
3837 2013-08-30  Joel Brobecker  <brobecker@adacore.com>
3838
3839         GDB 7.6.1 released.
3840
3841 2013-08-30  Pedro Alves  <palves@redhat.com>
3842
3843         * mi/mi-main.c (mi_cmd_trace_find): Use LOC_AND_ADDRESS instead of
3844         SRC_AND_LOC.
3845
3846 2013-08-30  Pedro Alves  <palves@redhat.com>
3847
3848         * thread.c (restore_selected_frame): Use SRC_AND_LOC, and change
3849         warning text.
3850
3851 2013-08-30  Pedro Alves  <palves@redhat.com>
3852
3853         * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
3854         Adjust arguments to print_stack_frame.
3855
3856 2013-08-30  Pedro Alves  <palves@redhat.com>
3857
3858         * ada-tasks.c (task_command_1): Write SRC_AND_LOC instead '1'.
3859
3860 2013-08-30  Pedro Alves  <palves@redhat.com>
3861
3862         * frame.h (show_and_print_stack_frame): Delete declaration.
3863
3864 2013-08-30  Phil Muldoon  <pmuldoon@redhat.com>
3865
3866         PR python/15461
3867         * python/py-arch.c (ARCHPY_REQUIRE_VALID): New macro.
3868         (archpy_name): Check for valid architecture.
3869         (archpy_disassemble): Ditto.
3870
3871 2013-08-29  Joel Brobecker  <brobecker@adacore.com>
3872
3873         * rs6000-nat.c (rs6000_ptrace32): Cast "addr" to "uintptr_t"
3874         instead of "long long" in call to ptrace64.
3875
3876 2013-08-29  Andrew Burgess  <aburgess@broadcom.com>
3877
3878         * mi/mi-interp.c (mi_command_loop): Change signature to match
3879         interp_command_loop_ftype.
3880         (mi1_command_loop): Remove.
3881         (mi2_command_loop): Remove.
3882         (mi3_command_loop): Remove.
3883         (mi_interpreter_resume): Remove setting of
3884         deprecated_command_loop_hook.
3885         (_initialize_mi_interp): Set mi_command_loop as the command loop
3886         callback.
3887
3888 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
3889
3890         * valops.c (do_search_struct_field): Pass v2 instead of base_type to
3891         value_type.
3892
3893 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
3894
3895         * value.c (allocate_value_contents): Make static.
3896         * value.h (allocate_value_contents): Remove prototype.
3897
3898 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
3899
3900         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use value_at_lazy instead
3901         of assembling value via allocate_value_lazy and attribute setter.
3902         * findvar.c (default_read_var_value): Use value_at_lazy instead of
3903         assembling value via allocate_value_lazy and attribute setter.
3904         * valops.c (do_search_struct_field): Use value_at_lazy instead of
3905         assembling value via allocate_value_lazy and attribute setter.
3906
3907 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
3908
3909         * value.c (value_from_contents_and_address): Replace allocate_value and
3910         memcpy with value_from_contents.
3911
3912 2013-08-29  Phil Muldoon  <pmuldoon@redhat.com>
3913
3914         * python/py-framefilter.c (py_print_frame): Remove usage of
3915         PyString_AsString.  Use python_string_to_host_string instead.
3916         Refactor function to work with a string as a new allocation
3917         instead of a pointer.
3918         (py_print_frame): Ditto.
3919         * python/lib/gdb/frames.py (return_list): Cain iterators together
3920         instead of adding them as a list.
3921         (_sort_list): Call return_list, and remove duplicate code.
3922         (execute_frame_filters): Convert iterator to a list with list().
3923         * python/lib/gdb/command/frame_filters.py
3924         (SetFrameFilterPriority._set_filter_priority): Convert priority
3925         attribute to an integer.
3926         * python/lib/gdb/FrameIterator.py (FrameIterator.next): Define
3927         wrapper function __next__.
3928         * python/lib/gdb/FrameDecorator.py: If basestring not defined,
3929         define as "str".
3930
3931 2013-08-29  Phil Muldoon  <pmuldoon@redhat.com>
3932
3933         PR python/15752
3934         * python/py-framefilter.c (apply_frame_filter): Check
3935         gdb_python_initialized.  Exit if the Python frame-filter code
3936         cannot be initialized.
3937
3938 2013-08-29  Phil Muldoon  <pmuldoon@redhat.com>
3939
3940         PR cli/15842
3941         * top.c (print_gdb_version): Remove erroneous newline after help
3942         text.
3943
3944 2013-08-29  Yao Qi  <yao@codesourcery.com>
3945
3946         * varobj.c (install_dynamic_child): Remove trailing space.
3947         Add one blank line after variable declaration.
3948
3949 2013-08-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
3950
3951         PR gdb/15415
3952         * corefile.c (get_exec_file): Use exec_filename.
3953         * defs.h (OPF_DISABLE_REALPATH): New definition.  Add new comment.
3954         * exec.c (exec_close): Free EXEC_FILENAME.
3955         (exec_file_attach): New variable canonical_pathname.  Use
3956         OPF_DISABLE_REALPATH.  Call gdb_realpath explicitly.  Set
3957         EXEC_FILENAME.
3958         * exec.h (exec_filename): New.
3959         * inferior.c (print_inferior, inferior_command): Use
3960         PSPACE_EXEC_FILENAME.
3961         * mi/mi-main.c (print_one_inferior): Likewise.
3962         * progspace.c (clone_program_space, print_program_space): Likewise.
3963         * progspace.h (struct program_space): New field pspace_exec_filename.
3964         * source.c (openp): Describe OPF_DISABLE_REALPATH.  New variable
3965         realpath_fptr, initialize it from OPF_DISABLE_REALPATH, use it.
3966
3967 2013-08-28  Will Newton  <will.newton@linaro.org>
3968
3969         * common/linux-ptrace.c: Include stdint.h unconditionally.
3970
3971 2013-08-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
3972
3973         Code cleanup.
3974         * nto-tdep.c (nto_find_and_open_solib): Use OPF_TRY_CWD_FIRST.
3975
3976 2013-08-28  Yao Qi  <yao@codesourcery.com>
3977             Pedro Alves  <palves@redhat.com>
3978
3979         * event-top.c (gdb_setup_readline): Call stderr_fileopen
3980         instead of stdio_fileopen.
3981         * main.c (captured_main) [__MINGW32__]: Set stderr unbuffered.
3982         .Call stderr_fileopen instead of stdio_fileopen.
3983         * ui-file.c [__MINGW32__] (stderr_file_write): New function.
3984         [__MINGW32__] (stderr_file_fputs): New function.
3985         (stderr_fileopen): New function.
3986         * ui-file.h (stderr_fileopen): Declare.
3987
3988 2013-08-27  Doug Evans  <dje@google.com>
3989
3990         * dwarf2read.c (struct dwarf2_cu): Tweak comment.
3991         (struct dwarf2_per_cu_data): Ditto.
3992         (maybe_queue_comp_unit): Delete forward decl.  Add comment.
3993         (process_imported_unit_die): Ditto.
3994         (follow_die_sig_1): Simplify assert.
3995
3996 2013-08-27  Pedro Alves  <palves@redhat.com>
3997
3998         * windows-nat.c (windows_xfer_memory): Adjust prototype to follow
3999         xfer_partial's interface.  Return TARGET_XFER_E_IO on error.
4000         (windows_xfer_partial): Defer TARGET_OBJECT_MEMORY handling to
4001         windows_xfer_memory directly.
4002         (init_windows_ops): Don't install a deprecated_xfer_memory method.
4003
4004 2013-08-27  Pedro Alves  <palves@redhat.com>
4005
4006         * darwin-nat.c (darwin_xfer_memory): Delete.
4007         (_initialize_darwin_inferior): Don't install a
4008         deprecated_xfer_memory method.
4009
4010 2013-08-27  Pedro Alves  <pedro@codesourcery.com>
4011             Yao Qi  <yao@codesourcery.com>
4012
4013         * mi/mi-cmd-stack.c (list_args_or_locals): Adjust prototype.
4014         (parse_no_frames_option): Remove.
4015         (mi_cmd_stack_list_locals): Handle --skip-unavailable.
4016         (mi_cmd_stack_list_args): Adjust.
4017         (mi_cmd_stack_list_variables): Handle --skip-unavailable.
4018         (list_arg_or_local): Add new parameter 'skip_unavailable'.  Return
4019         early if SKIP_UNAVAILABLE is true and ARG->val is unavailable.
4020         Caller update.
4021         (list_args_or_locals): New parameter 'skip_unavailable'.
4022         Handle it.
4023         * valprint.c (scalar_type_p): Rename to ...
4024         (val_print_scalar_type_p): ... this.  Make extern.
4025         (val_print, value_check_printable): Adjust.
4026         * valprint.h (val_print_scalar_type_p): Declare.
4027         * value.c (value_entirely_unavailable): New function.
4028         * value.h (value_entirely_unavailable): Declare.
4029
4030         * NEWS: Mention the new option "--skip-unavailable" to MI
4031         commands '-stack-list-locals', '-stack-list-arguments' and
4032         '-stack-list-variables'.
4033
4034 2013-08-27  Yao Qi  <yao@codesourcery.com>
4035
4036         * mi/mi-cmd-stack.c (parse_no_frames_option): Remove.
4037         (mi_cmd_stack_list_args): Use mi_getopt_silent to handle
4038         options.
4039         * mi/mi-getopt.c (mi_getopt): Remove.
4040         (mi_getopt_1): Renamed from mi_getopt.  Add one parameter
4041         'error_on_unknown'.
4042         (mi_getopt): Call mi_getopt_1.
4043         (mi_getopt_silent): New.
4044         * mi/mi-getopt.h (mi_getopt_silent): Declare.
4045
4046 2013-08-26  Doug Evans  <dje@google.com>
4047
4048         PR symtab/15885
4049         * dwarf2read.c (dw2_dump): Print some minimal information indicating
4050         .gdb_index is in use.
4051         * symfile.c (reread_symbols): Reset objfile->sf.
4052
4053         * NEWS: Document "mt print objfiles" now takes optional regexp.
4054         * symmisc.c (maintenance_print_objfiles): Argument is now an optional
4055         regexp of objfiles to print.
4056         (_initialize_symmisc): Update doc string for "mt print objfiles".
4057
4058         * dwarf2read.c (write_psymtabs_to_index): Move error checks ahead of
4059         missing debug info checks.
4060
4061 2013-08-26  Raunaq Bathija  <raunaq12@in.ibm.com>
4062             Ulrich Weigand  <uweigand@de.ibm.com>
4063
4064         * xcoffread.c (arrange_linetable): Add fix to correctly handle
4065         line tables generated by XLC compiled binaries.
4066
4067 2013-08-23  Doug Evans  <dje@google.com>
4068
4069         * symmisc.c (dump_symtab): Delete prototype.
4070         (dump_msymbols, dump_objfile): Ditto.
4071         (maintenance_info_symtabs): Mark as dont_repeat.
4072         (_initialize_symmisc): Improve doc string for "mt info symtabs".
4073
4074         * elfread.c (elf_symfile_read): Move "Done reading minimal symbols"
4075         debugging printf to better location.
4076
4077 2013-08-23  Pedro Alves  <palves@redhat.com>
4078
4079         * target.c (target_read_live_memory): Change type of 'ret' local
4080         to LONGEST.
4081
4082 2013-08-23  Pedro Alves  <palves@redhat.com>
4083
4084         * remote.c (remote_write_bytes_aux, remote_write_bytes)
4085         (remote_read_bytes): Change return type to LONGEST, and adjust to
4086         return a target_xfer_error on error.
4087         (remote_xfer_memory): Delete.
4088         (remote_flash_write): Change type of 'ret' local to LONGEST.
4089         (remote_xfer_partial, remote_xfer_partial): Adjust.
4090         (init_remote_ops): Don't install a deprecated_xfer_memory hook.
4091
4092 2013-08-23  Pierre Muller  <muller@sourceware.org>
4093
4094         ARI fix: Push # directives to start of line.
4095         * rs6000-nat.c (rs6000_ptrace32, rs6000_ptrace64): Rule applied.
4096
4097 2013-08-12  Muhammad Waqas  <mwaqas@codesourcery.com>
4098
4099         PR gdb/15501
4100         * breakpoint.c (enable_command, disable_command): Iterate over
4101         all specified breakpoint locations.
4102
4103 2013-08-22  Luis Machado  <lgustavo@codesourcery.com>
4104
4105         * common/linux-ptrace.c (linux_fork_to_function): Push #
4106         directives to the start of the line.
4107         (linux_check_ptrace_features): Fix warning message to use
4108         the "_" markup.
4109
4110 2013-08-22  Luis Machado  <lgustavo@codesourcery.com>
4111
4112         * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-nat.h and
4113         nat/linux-waitpid.h.
4114         (linux-waitpid.o): New object file rule.
4115         * common/linux-ptrace.c: Include nat/linux-waitpid.h.
4116         (current_ptrace_options): Moved from linux-nat.c.
4117         (linux_ptrace_test_ret_to_nx): Use type casts for ptrace
4118         parameters.
4119         (linux_fork_to_function): New function.
4120         (linux_grandchild_function): Likewise.
4121         (linux_child_function): Likewise.
4122         (linux_check_ptrace_features): New function, heavily
4123         based on linux-nat.c:linux_test_for_tracefork.
4124         (linux_enable_event_reporting): New function.
4125         (ptrace_supports_feature): Likewise.
4126         (linux_supports_tracefork): Likewise.
4127         (linux_supports_traceclone): Likewise.
4128         (linux_supports_tracevforkdone): Likewise.
4129         (linux_supports_tracesysgood): Likewise.
4130         * common/linux-ptrace.h (HAS_NOMMU): Moved from
4131         gdbserver/linux-low.c.
4132         (linux_enable_event_reporting): New declaration.
4133         (linux_supports_tracefork): Likewise.
4134         (linux_supports_traceclone): Likewise.
4135         (linux_supports_tracevforkdone): Likewise.
4136         (linux_supports_tracesysgood): Likewise.
4137         * config.in (PTRACE_TYPE_ARG4): Regenerate.
4138         * config/aarch64/linux.mh (NATDEPFILES): Add linux-waitpid.o.
4139         * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
4140         * config/arm/linux.mh (NATDEPFILES): Likewise.
4141         * config/i386/linux.mh (NATDEPFILES): Likewise.
4142         * config/i386/linux64.mh (NATDEPFILES): Likewise.
4143         * config/ia64/linux.mh (NATDEPFILES): Likewise.
4144         * config/m32r/linux.mh (NATDEPFILES): Likewise.
4145         * config/m68k/linux.mh (NATDEPFILES): Likewise.
4146         * config/mips/linux.mh (NATDEPFILES): Likewise.
4147         * config/pa/linux.mh (NATDEPFILES): Likewise..
4148         * config/powerpc/linux.mh (NATDEPFILES): Likewise..
4149         * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
4150         * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
4151         * config/sparc/linux.mh (NATDEPFILES): Likewise.
4152         * config/sparc/linux64.mh (NATDEPFILES): Likewise.
4153         * config/tilegx/linux.mh (NATDEPFILES): Likewise.
4154         * config/xtensa/linux.mh (NATDEPFILES): Likewise.
4155         * configure.ac (AC_CACHE_CHECK): Add void * to the list of
4156         ptrace's 4th argument's types.
4157         Check the type of PTRACE_TYPE_ARG4.
4158         * configure: Regenerate.
4159         * linux-nat.c: Include nat/linux-nat.h and nat/linux-waitpid.h.
4160         (SYSCALL_SIGTRAP): Moved to nat/linux-nat.h.
4161         (linux_supports_tracefork_flag): Remove.
4162         (linux_supports_tracesysgood_flag): Likewise.
4163         (linux_supports_tracevforkdone_flag): Likewise.
4164         (current_ptrace_options): Moved to
4165         common/linux-ptrace.c.
4166         (linux_tracefork_child): Remove.
4167         (my_waitpid): Remove.
4168         (linux_test_for_tracefork): Renamed to
4169         linux_check_ptrace_features and moved to common/linux-ptrace.c.
4170         (linux_test_for_tracesysgood): Remove.
4171         (linux_supports_tracesysgood): Remove.
4172         (linux_supports_tracefork): Remove.
4173         (linux_supports_tracevforkdone): Remove.
4174         (linux_enable_tracesysgood): Remove.
4175         (linux_enable_event_reporting): Remove.
4176         (linux_init_ptrace): New function.
4177         (linux_child_post_attach): Call linux_init_ptrace.
4178         (linux_child_post_startup_inferior): Call linux_init_ptrace.
4179         (linux_child_follow_fork): Call linux_supports_tracefork
4180         and linux_supports_tracevforkdone.
4181         (linux_child_insert_fork_catchpoint): Call
4182         linux_supports_tracefork.
4183         (linux_child_insert_vfork_catchpoint): Likewise.
4184         (linux_child_set_syscall_catchpoint): Call
4185         linux_supports_tracesysgood.
4186         (lin_lwp_attach_lwp): Call linux_supports_tracefork.
4187         * nat/linux-nat.h: New file.
4188         * nat/linux-waitpid.c: New file.
4189         * nat/linux-waitpid.h: New file.
4190
4191 2013-08-22  Samuel Bronson  <naesten@gmail.com>
4192
4193         ARM Linux support for `catch syscall'.
4194         * syscalls/arm-linux.py: New file.
4195         * syscalls/arm-linux.xml: Likewise.
4196         * arm-linux-tdep.c (arm_linux_get_syscall_number): New function.
4197         (arm_linux_init_abi): Register the new function and syscall xml file.
4198         * data-directory/Makefile.in: Install the new syscall xml file.
4199         * NEWS: Brag about this.
4200
4201 2013-08-22  Pedro Alves  <palves@redhat.com>
4202
4203         PR gdb/15871
4204         * corefile.c (target_xfer_memory_error): New function.
4205         (memory_error): Defer EIO to target_memory_error.
4206         (read_memory): Use target_xfer_partial, and handle finer-grained
4207         target xfer errors.
4208         * target.c (target_xfer_error_to_string): New function.
4209         (memory_xfer_partial_1): If memory is known to be
4210         unavailable, return TARGET_XFER_E_UNAVAILABLE instead of -1.
4211         (target_xfer_partial): Make extern.
4212         * target.h (enum target_xfer_error): New enum.
4213         (target_xfer_error_to_string): Declare function.
4214         (target_xfer_partial): Declare function.
4215         (struct target_ops) <xfer_partial>: Adjust describing comment.
4216
4217 2013-08-22  Alan Modra  <amodra@gmail.com>
4218
4219         * configure.host: Support powerpc64le-linux and powerpcle-linux hosts.
4220         * configure.tgt: Likewise as targets.
4221
4222 2013-08-20  Doug Evans  <dje@google.com>
4223
4224         * buildsym.c (subfile_stack): Move here from buildsym.h.
4225         (pending_macros): Ditto.
4226         (get_macro_table): New function.
4227         (buildsym_init): Initialize subfile_stack.
4228         * coffread.c (type_vector,type_vector_length): Moved here from
4229         buildsym.h.
4230         (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
4231         (coff_symtab_read): Use it.
4232         * dbxread.c (read_ofile_symtab): Delete init of subfile_stack.
4233         * dwarf2read.c (macro_start_file): Replace uses of pending_macros
4234         with call to get_macro_table.
4235         * stabsread.c (type_vector,type_vector_length): Moved here from
4236         buildsym.h.
4237         (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
4238         * buildsym.h (get_macro_table): Declare.
4239
4240 2013-08-20  Tom Tromey  <tromey@redhat.com>
4241
4242         * dbxread.c (record_minimal_symbol): Make 'name' argument const.
4243         Update.
4244         (read_dbx_dynamic_symtab): Make 'name' const.  Remove casts.
4245
4246 2013-08-20  Doug Evans  <dje@google.com>
4247
4248         * blockframe.c: Remove #include "psymtab.h".
4249         * cp-support.c: Ditto.
4250         * source.c: Ditto.
4251         * stack.c: Ditto.
4252
4253 2013-08-20  Tom Tromey  <tromey@redhat.com>
4254
4255         PR python/15816:
4256         * exceptions.h (return_mask): Now an enum.
4257         (RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL): Now
4258         enum constants.
4259
4260 2013-08-20  Tom Tromey  <tromey@redhat.com>
4261
4262         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Use
4263         get_objfile_arch.
4264         * elfread.c (elf_rel_plt_read, elf_gnu_ifunc_record_cache)
4265         (elf_gnu_ifunc_resolve_by_got): Use get_objfile_arch.
4266         * jit.c (jit_object_close_impl): Update.
4267         * jv-lang.c (get_dynamics_objfile): Update.
4268         * linespec.c (add_minsym): Use get_dynamics_objfile.
4269         * objfiles.c (get_objfile_bfd_data): Initialize 'gdbarch' field.
4270         (allocate_objfile): Don't initialize 'gdbarch' field.
4271         (get_objfile_arch): Update.
4272         * objfiles.h (struct objfile_per_bfd_storage) <gdbarch>: New field,
4273         moved from...
4274         (struct objfile) <gdbarch>: ... here.  Remove.
4275         * stap-probe.c (stap_can_evaluate_probe_arguments): Use
4276         get_objfile_arch.
4277         * symfile.c (init_entry_point_info): Use get_objfile_arch.
4278
4279 2013-08-20  Alan Modra  <amodra@gmail.com>
4280
4281         * doublest.c (convert_floatformat_to_doublest): Use fmt->split_half
4282         for IBM long double nan and inf.
4283         (floatformat_is_negative, floatformat_classify,
4284         floatformat_mantissa): Similarly.
4285         (floatformat_ieee_single, floatformat_ieee_double,
4286         floatformat_ieee_quad, floatformat_arm_ext,
4287         floatformat_ia64_spill): Delete unused vars.
4288         (_initialize_doublest): Delete unused function.
4289         * gdbtypes.c (floatformats_ibm_long_double): Use new big- and
4290         little-endian variants of floatformat_ibm_long_double.
4291
4292 2013-08-19  Luis Machado  <lgustavo@codesourcery.com>
4293
4294         * Makefile.in (SFILES): Remove common/target-common.c and
4295         add target/waitstatus.c.
4296         (HFILES_NO_SRCDIR): Remove common/target-common.h and add
4297         target/resume.h, target/wait.h and target/waitstatus.h.
4298         (COMMON_OBS): Remove target-common.o and add
4299         waitstatus.o.
4300         (target-common.o): Remove.
4301         (waitstatus.o): New target object file.
4302         * common/target-common.c: Move contents to
4303         target/waitstatus.c and remove.
4304         * common/target-common.h: Move contents to other files and
4305         remove.
4306         (enum resume_kind: Move to target/resume.h.
4307         (TARGET_WNOHANG): Move to target/wait.h.
4308         (enum target_waitkind): Move to target/waitstatus.h.
4309         (struct target_waitstatus): Likewise.
4310         * target.h: Do not include target-common.h and
4311         include target/resume.h, target/wait.h and
4312         target/waitstatus.h.
4313         * target/resume.h: New file.
4314         * target/wait.h: New file.
4315         * target/waitstatus.h: New file.
4316         * target/waitstatus.c: New file.
4317
4318 2013-08-19  Pedro Alves  <palves@redhat.com>
4319
4320         * linux-nat.c (linux_test_for_tracefork)
4321         (linux_test_for_tracesysgood, linux_child_follow_fork)
4322         (lin_lwp_attach_lwp, linux_nat_resume): Don't block child signals.
4323         (linux_nat_wait_1): Extend comment.
4324         (linux_async_pipe): Add comment.
4325
4326 2013-08-15  Kevin Buettner  <kevinb@redhat.com>
4327
4328         * rl78-tdep.c (RL78_RAW_PC_REGNUM): New enum.
4329         (RL78_PC_REGNUM): Move to list of pseudo-register enums.
4330         (rl78_register_type, rl78_register_name, rl78_register_reggroup_p):
4331         Update to account for fact that PC is now a pseudo-register.
4332         (rl78_pseudo_register_write, rl78_pseudo_register_read):  Add
4333         cases for RL78_PC_REGNUM.
4334
4335 2013-08-15  Muhammad Bilal  <mbilal@codesourcery.com>
4336
4337         PR cli/15841
4338         * top.c (quit_force): Skip writing history file
4339         if input is not from terminal.
4340
4341 2013-08-14  Tom Tromey  <tromey@redhat.com>
4342
4343         * remote.c (struct remote_state) <echo_nextthread, nextthread,
4344         resultthreadlist>: New fields.
4345         (OPAQUETHREADBYTES, threadref, MAXTHREADLISTRESULTS): Move earlier.
4346         (remote_get_threadlist, remote_threadlist_iterator): Use
4347         new fields.  Remove static variables.
4348
4349 2013-08-14  Tom Tromey  <tromey@redhat.com>
4350
4351         * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p,
4352         remote_watch_data_address>: New fields.
4353         (remote_stopped_by_watchpoint_p, remote_watch_data_address): Remove.
4354         (process_stop_reply, remote_wait_as)
4355         (remote_check_watch_resources, remote_stopped_data_address): Update.
4356
4357 2013-08-14  Tom Tromey  <tromey@redhat.com>
4358
4359         * remote.c (struct remote_state) <async_client_callback,
4360         async_client_context>: New fields.
4361         (async_client_callback, async_client_context): Remove.
4362         (remote_async_serial_handler, remote_async): Update.
4363
4364 2013-08-14  Tom Tromey  <tromey@redhat.com>
4365
4366         * remote.c (sizeof_pkt): Remove.
4367         (remote_trace_find): Use rs->buf_size, not sizeof_pkt.
4368
4369 2013-08-14  Tom Tromey  <tromey@redhat.com>
4370
4371         * remote.c (struct remote_state) <use_threadinfo_query,
4372         use_threadextra_query>: New fields.
4373         (remote_threads_info, remote_threads_extra_info)
4374         (remote_open_1): Update.
4375
4376 2013-08-14  Tom Tromey  <tromey@redhat.com>
4377
4378         * remote.c (struct remote_state) <finished_object,
4379         finished_annex, finished_offset>: New fields.
4380         (remote_read_qxfer): Use remote_state fields; remove static
4381         variables.
4382
4383 2013-08-14  Tom Tromey  <tromey@redhat.com>
4384
4385         * remote.c (struct remote_state) <last_sent_step>:
4386         New field.
4387         (last_sent_step): Remove.
4388         (remote_resume, remote_wait_as): Update.
4389
4390 2013-08-14  Tom Tromey  <tromey@redhat.com>
4391
4392         * remote.c (struct remote_state) <last_sent_signal>:
4393         New field.
4394         (last_sent_signal): Remove.
4395         (new_remote_state, remote_resume, remote_wait_as): Update.
4396
4397 2013-08-14  Tom Tromey  <tromey@redhat.com>
4398
4399         * remote.c (struct remote_state) <last_program_signals_packet>:
4400         New field.
4401         (last_program_signals_packet): Remove.
4402         (remote_program_signals, remote_open_1): Update.
4403
4404 2013-08-14  Tom Tromey  <tromey@redhat.com>
4405
4406         * remote.c (struct remote_state) <last_pass_packet>:
4407         New field.
4408         (last_pass_packet): Remove.
4409         (remote_pass_signals, remote_open_1): Update.
4410
4411 2013-08-14  Tom Tromey  <tromey@redhat.com>
4412
4413         * remote.c (struct remote_state) <remote_traceframe_number>:
4414         New field.
4415         (remote_traceframe_number): Remove.
4416         (new_remote_state, remote_open_1, set_remote_traceframe)
4417         (remote_trace_find): Update.
4418
4419 2013-08-14  Tom Tromey  <tromey@redhat.com>
4420
4421         * remote.c (struct remote_state) <general_thread, continue_thread>:
4422         New fields.
4423         (general_thread, continue_thread): Remove.
4424         (record_currthread, set_thread, set_general_process)
4425         (remote_open_1, extended_remote_attach_1, remote_wait_as)
4426         (extended_remote_mourn_1): Update.
4427
4428 2013-08-14  Tom Tromey  <tromey@redhat.com>
4429
4430         * remote.c (struct remote_state) <remote_desc>: New field.
4431         (remote_desc): Remove.
4432         (remote_threads_info, remote_threads_extra_info, remote_close)
4433         (send_interrupt_sequence, remote_start_remote, remote_open_1)
4434         (readchar, remote_xfer_partial, remote_rcmd, packet_command)
4435         (remote_hostio_send_command, remote_file_put, remote_file_get)
4436         (remote_file_delete, remote_can_async_p, remote_is_async_p)
4437         (remote_async, remote_new_objfile, set_range_stepping): Update.
4438
4439 2013-08-14  Tom Tromey  <tromey@redhat.com>
4440
4441         * remote.c (remote_state): Now a pointer.
4442         (get_remote_state_raw): Update.
4443         (new_remote_state): New function.
4444         (_initialize_remote): Use new_remote_state.
4445
4446 2013-08-14  Tom Tromey  <tromey@redhat.com>
4447
4448         * remote.c (remote_protocol_features): Now const.
4449
4450 2013-08-14  Tom Tromey  <tromey@redhat.com>
4451
4452         * remote.c (crc32_table, crc32): Remove.
4453         (remote_verify_memory): Use xcrc32.
4454
4455 2013-08-13  Sergio Durigan Junior  <sergiodj@redhat.com>
4456
4457         * value.h (create_internalvar_type_lazy): Adjust prototype
4458         declaration.
4459
4460 2013-08-13  Andrew Burgess  <aburgess@broadcom.com>
4461
4462         * common/format.c (parse_format_string): Don't allow '#' flag for
4463         pointer arguments in format string.
4464
4465 2013-08-13  Pierre Muller  <muller@sourceware.org>
4466
4467         * utils.c (init_page_info): Only call tgetnum function
4468         if rl_get_screen_size did not return useful values.
4469
4470 2013-08-12  Ali Anwar  <ali_anwar@codesourcery.com>
4471
4472         PR breakpoints/15117
4473         * linespec.c (linespec_parse_basic): Check for convenience
4474         variable or history value while parsing.
4475
4476 2013-08-12  Sergio Durigan Junior  <sergiodj@redhat.com>
4477
4478         Revert implementation of gdbarch_gdb_signal_{to,from}_target for
4479         AVR.
4480         * avr-tdep.c: Remove include of "linux-tdep.h".  Remove enum with
4481         different signals between the generic Linux kernel implementation
4482         and AVR's.
4483         (avr_linux_gdb_signal_from_target): Delete.
4484         (avr_linux_gdb_signal_to_target): Delete.
4485         (avr_gdbarch_init): Don't set gdbarch_gdb_signal_{to,from}_target.
4486
4487 2013-08-09  Doug Evans  <dje@google.com>
4488
4489         * dwarf2read.c (create_addrmap_from_index): Ignore bad address table
4490         entries.
4491
4492 2013-08-09  Sergio Durigan Junior  <sergiodj@redhat.com>
4493
4494         * linux-tdep.c: Define enum with generic signal numbers.
4495         (linux_gdb_signal_from_target): New function.
4496         (linux_gdb_signal_to_target): Likewise.
4497         (linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4498         methods to the functions above.
4499         * linux-tdep.h (linux_gdb_signal_from_target): New prototype.
4500         (linux_gdb_signal_to_target): Likewise.
4501         * alpha-linux-tdep.c: Define new enum with signals different
4502         from generic Linux kernel.
4503         (alpha_linux_gdb_signal_from_target): New function.
4504         (alpha_linux_gdb_signal_to_target): Likewise.
4505         (alpha_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4506         with the functions mentioned above.
4507         * avr-tdep.c: Define enum with differences between Linux kernel
4508         and AVR signals.
4509         (avr_linux_gdb_signal_from_target): New function.
4510         (avr_linux_gdb_signal_to_target): Likewise.
4511         (avr_gdbarch_init): Set gdbarch_gdb_signal_{to,from}_target to
4512         the functions mentioned above.
4513         * sparc-linux-tdep.c: Define enum with differences between SPARC
4514         and generic Linux kernel signal numbers.
4515         (sparc32_linux_gdb_signal_from_target): New function.
4516         (sparc32_linux_gdb_signal_to_target): Likewise.
4517         (sparc32_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4518         to the functions defined above.
4519         * xtensa-linux-tdep.c: Define enum with differences between
4520         Xtensa and Linux kernel generic signals.
4521         (xtensa_linux_gdb_signal_from_target): New function.
4522         (xtensa_linux_gdb_signal_to_target): Likewise.
4523         (xtensa_linux_init_abi): Set gdbarch_gdb_signal_to_target
4524         to the functions defined above.
4525         * mips-linux-tdep.c: Define enum with differences between
4526         signals in MIPS and Linux kernel generic ones.
4527         (mips_gdb_signal_to_target): New function.
4528         (mips_gdb_signal_from_target): Redefine to use new enum, handle
4529         only different signals from the Linux kernel generic.
4530         (mips_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4531         the functions defined above.
4532         * mips-linux-tdep.h (enum mips_signals): Remove.
4533
4534 2013-08-09  Pedro Alves  <palves@redhat.com>
4535
4536         * avr-tdep.c (XMALLOC): Delete macro.
4537         * cli/cli-dump.c (XMALLOC): Delete macro.
4538
4539 2013-08-09  Pedro Alves  <palves@redhat.com>
4540
4541         * cli/cli-dump.c: Don't include cli/cli-dump.h.
4542         (scan_expression_with_cleanup, scan_filename_with_cleanup)
4543         (fopen_with_cleanup, add_dump_command): Make static.
4544         * cli/cli-dump.h: Delete file.
4545         * Makefile.in (HFILES_NO_SRCDIR): Remove reference to
4546         cli/cli-dump.h.
4547
4548 2013-08-09  Pedro Alves  <palves@redhat.com>
4549
4550         * tracepoint.c (tfile_start): Show tilde-expanded filename in
4551         error message.
4552
4553 2013-08-09  Pedro Alves  <palves@redhat.com>
4554
4555         * breakpoint.c (save_breakpoints): Show tilde-expanded filename in
4556         error message.
4557
4558 2013-08-09  Pedro Alves  <palves@redhat.com>
4559
4560         * gcore.c (create_gcore_bfd): Don't use tilde_expand here.
4561         (gcore_command): Use tilde_expand here, and when showing the
4562         filename to the user, show the expanded version.
4563
4564 2013-08-09  Yao Qi  <yao@codesourcery.com>
4565
4566         * stack.c (read_frame_arg): Set 'entryval_error' to NULL if
4567         'entryval' is set.
4568
4569 2013-08-08  Azat Khuzhin  <a3at.mail@gmail.com>  (tiny change)
4570
4571         * gcore.c (create_gcore_bfd): Use tilde_expand.
4572
4573 2013-08-08  Yao Qi  <yao@codesourcery.com>
4574
4575         * frame.h (read_frame_local): Declare.
4576         * mi/mi-cmd-stack.c (list_args_or_locals): Call
4577         read_frame_local.
4578         * stack.c (read_frame_local): New.
4579
4580 2013-08-08  Yao Qi  <yao@codesourcery.com>
4581
4582         * mi/mi-cmd-stack.c: Update comments to function
4583         list_args_or_locals.
4584
4585 2013-08-07  Tom Tromey  <tromey@redhat.com>
4586
4587         PR symtab/15028:
4588         * dwarf2read.c (struct process_psymtab_comp_unit_data): New.
4589         (process_psymtab_comp_unit_reader): Use it.
4590         (process_psymtab_comp_unit): Update.  Add "pretend_language"
4591         argument.
4592         (dwarf2_build_psymtabs_hard): Update.
4593         (scan_partial_symbols): Pass CU's language to
4594         process_psymtab_comp_unit.
4595
4596 2013-08-07  Tom Tromey  <tromey@redhat.com>
4597
4598         * dwarf2read.c (dw2_get_primary_filename_reader): Remove.
4599         (dwarf2_gdb_index_functions): Update.
4600         * psymtab.c (find_symbol_file_from_partial): Remove.
4601         (psym_functions): Update.
4602         * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
4603         Remove.
4604
4605 2013-08-07  Tom Tromey  <tromey@redhat.com>
4606
4607         * symfile.c (set_initial_language): Look up "main" symbol
4608         and use its language.
4609         * symtab.c (find_main_filename): Remove.
4610         * symtab.h (find_main_filename): Remove.
4611
4612 2013-08-07  Tom Tromey  <tromey@redhat.com>
4613
4614         * dwarf2read.c (recursively_compute_inclusions): Add
4615         "immediate_parent" argument.  Set symtab's "user" field
4616         if not set.
4617         (compute_symtab_includes): Update.
4618
4619 2013-08-07  Tom Tromey  <tromey@redhat.com>
4620
4621         * linespec.c (convert_linespec_to_sals): Use maybe_add_address
4622         when adding label symbols.
4623
4624 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
4625             Ulrich Weigand  <uweigand@de.ibm.com>
4626
4627         * configure.tgt (powerpc64-*-aix*): Match powerpc64 running aix.
4628         * configure.host (powerpc64-*-aix*): Likewise.
4629
4630 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
4631             Ulrich Weigand  <uweigand@de.ibm.com>
4632
4633         * gdb_ptrace.h: Use ptrace64 instead of ptrace if HAVE_PTRACE64
4634         is defined.
4635         * rs6000-nat.c: Check for __ld_info64_ if compiling 64 BIT gdb.
4636         (rs6000_ptrace32): Call ptrace64 instead of ptrace if present.
4637         (rs6000_ptrace64): Call ptace64 instead of ptracex if present.
4638         * configure.ac: Check for ptrace64.
4639         * configure, config.in: Regenerate.
4640
4641 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
4642             Ulrich Weigand  <uweigand@de.ibm.com>
4643
4644         * aixthread.c: Call ptrace64 instead of ptracex if defined.
4645         Call ptrace64 instead of ptrace if defined.
4646         Add macro addr_ptr to take care of ptrace address argument.
4647         (pdc_read_regs): Likewise.
4648         (pdc_write_regs): Likewise.
4649         (aix_thread_resume): Likewise.
4650         (fetch_regs_kernel_thread): Likewise.
4651         (store_regs_kernel_thread): Likewise.
4652
4653 2013-08-07  Anton Blanchard  <anton@samba.org>
4654
4655         * MAINTAINERS: Add myself to Write After Approval.
4656
4657 2013-08-05  Tom Tromey  <tromey@redhat.com>
4658
4659         * aix-thread.c (_initialize_aix_thread): Use
4660         complete_target_initialization.
4661         * bsd-uthread.c (_initialize_bsd_uthread): Use
4662         complete_target_initialization.
4663         * dec-thread.c (_initialize_dec_thread): Use
4664         complete_target_initialization.
4665         * ravenscar-thread.c (_initialize_ravenscar): Use
4666         complete_target_initialization.
4667         * sol-thread.c (_initialize_sol_thread): Use
4668         complete_target_initialization.
4669         * spu-multiarch.c (_initialize_spu_multiarch): Use
4670         complete_target_initialization.
4671
4672 2013-08-05  Tom Tromey  <tromey@redhat.com>
4673
4674         * ada-exp.y (write_var_or_type): Use bound_minimal_symbol.
4675         * ada-lang.c (ada_lookup_simple_minsym): Return
4676         bound_minimal_symbol.
4677         * ada-lang.h (ada_lookup_simple_minsym): Update.
4678         * c-exp.y (variable): Use lookup_bound_minimal_symbol.
4679         * f-exp.y (variable): Use lookup_bound_minimal_symbol.
4680         * go-exp.y (variable): Use lookup_bound_minimal_symbol.
4681         * jv-exp.y (push_expression_name): Use lookup_bound_minimal_symbol.
4682         * m2-exp.y (variable): Use lookup_bound_minimal_symbol.
4683         * minsyms.c (msymbol_objfile): Remove.
4684         (lookup_minimal_symbol_internal): New function, from
4685         lookup_minimal_symbol.
4686         (lookup_minimal_symbol): Rewrite using
4687         lookup_minimal_symbol_internal.
4688         (lookup_bound_minimal_symbol): New function.
4689         * minsyms.h (msymbol_objfile): Remove.
4690         (lookup_bound_minimal_symbol): Declare.
4691         * p-exp.y (variable): Use lookup_bound_minimal_symbol.
4692         * parse.c (write_exp_msymbol): Change parameter to a
4693         bound_minimal_symbol.
4694         (write_dollar_variable): Use lookup_bound_minimal_symbol.
4695         * parser-defs.h (write_exp_msymbol): Update.
4696         * printcmd.c (address_info): Use lookup_bound_minimal_symbol.
4697         * symfile.c (simple_read_overlay_table): Use
4698         lookup_bound_minimal_symbol.
4699         * symtab.c (skip_prologue_sal): Don't use msymbol_objfile.
4700         (search_symbols): Likewise.
4701         (print_msymbol_info): Take a bound_minimal_symbol argument.
4702         (symtab_symbol_info, rbreak_command): Update.
4703         * symtab.h (struct symbol_search) <msymbol>: Change type
4704         to bound_minimal_symbol.
4705         * valops.c (find_function_in_inferior): Use
4706         lookup_bound_minimal_symbol.
4707         * value.c (value_fn_field): Use lookup_bound_minimal_symbol.
4708
4709 2013-08-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
4710
4711         Code cleanup.
4712         * remote.c (cleanup_sigint_signal_handler): Rename the declaration
4713         to ...
4714         (async_cleanup_sigint_signal_handler): ... this.
4715         (initialize_sigint_signal_handler): Remove declaration.
4716         (handle_remote_sigint): Rename the declaration to ...
4717         (async_handle_remote_sigint): ... this.
4718         (handle_remote_sigint_twice): Rename the declaration to ...
4719         (async_handle_remote_sigint_twice): ... this.
4720         (async_remote_interrupt, async_remote_interrupt_twice)
4721         (remote_interrupt): Remove the declarations.
4722         (remote_interrupt_twice): Rename the declaration ...
4723         (sync_remote_interrupt_twice): ... this.
4724         (sigint_remote_twice_token): Rename the variable to ...
4725         (async_sigint_remote_twice_token): ... this.
4726         (sigint_remote_token): Rename the variable to ...
4727         (async_sigint_remote_token): ... this.
4728         (initialize_sigint_signal_handler): Rename the function to ...
4729         (async_initialize_sigint_signal_handler): ... this.  Update the name
4730         inside.
4731         (handle_remote_sigint): Rename the function to ...
4732         (async_handle_remote_sigint): ... this.  Update the names inside.
4733         (handle_remote_sigint_twice): Rename the function to ...
4734         (async_handle_remote_sigint_twice): ... this.  Update the names inside.
4735         (cleanup_sigint_signal_handler): Rename the function to ...
4736         (async_cleanup_sigint_signal_handler): ... this.
4737         (remote_interrupt): Rename the function to ...
4738         (sync_remote_interrupt): this.  Update the names inside.
4739         (remote_interrupt_twice): Rename the function to ...
4740         (sync_remote_interrupt_twice): this.  Update the names inside.
4741         (remote_terminal_inferior, remote_terminal_ours, remote_wait_as)
4742         (_initialize_remote): Update the names inside.
4743
4744 2013-08-02  Tom Tromey  <tromey@redhat.com>
4745
4746         PR symtab/15719:
4747         * breakpoint.c (update_watchpoint, watchpoint_check)
4748         (watch_command_1): Update.
4749         * eval.c (fetch_subexp_value): Add "preserve_errors"
4750         parameter.
4751         * ppc-linux-nat.c (check_condition): Update.
4752         * value.h (fetch_subexp_value): Update.
4753
4754 2013-08-02  Andrew Burgess  <aburgess@broadcom.com>
4755
4756         * mi/mi-interp.c (mi_interpreter_resume): Remove call to
4757         add_file_handler.
4758
4759 2013-08-01  Doug Evans  <dje@google.com>
4760
4761         PR symtab/15691
4762         * dwarf2read.c (struct dwarf2_per_cu_data): New member tu_read.
4763         (fill_in_sig_entry_from_dwo_entry): Reorganize asserts.
4764         Add assert of sig_entry->dwo_unit == NULL.
4765         (lookup_dwo_signatured_type): Don't assign TU to a DWO if the TU
4766         had already been read.
4767         (read_signatured_type): Set per_cu.tu_read.
4768
4769         PR symtab/15695
4770         * valops.c (value_struct_elt): Add missing call to check_typedef.
4771         (value_find_oload_method_list): Ditto.
4772
4773         * symtab.c (do_free_search_symbols_cleanup): Change arg to,
4774         effectively, struct symbol_search **.
4775         (make_cleanup_free_search_symbols): Change arg to struct
4776         symbol_search **.  All callers updated.
4777         (compare_search_syms): Compare symtab file name and block as well.
4778         (search_symbols_equal): New function.
4779         (sort_search_symbols_remove_dups): Renamed from sort_search_symbols.
4780         New args new_head, new_tail.  Result is now void.  Remove dups after
4781         sorting the symbols.
4782         (search_symbols): Sort all found symbols once, after all have been
4783         found, and remove duplicates.  Simplify cleanup tracking of result.
4784         * symtab.h (make_cleanup_free_search_symbols): Update prototype.
4785
4786         Further workarounds for binutils/15021.
4787         * dwarf2read.c (recursively_compute_inclusions): Change type of result
4788         parameter to VEC (symtab_ptr) **.  New parameter all_type_symtabs.
4789         Watch for duplicate symtabs coming from type units.
4790         (compute_symtab_includes): Update call to
4791         recursively_compute_inclusions. Build vector of included symtabs
4792         instead of per_cus.
4793         * symtab.h (symtab_ptr): New typedef.
4794         (DEF_VEC_P (symtab_ptr)): New VEC type.
4795         * linespec.c (symtab_p): Delete.  All uses updated to use symtab_ptr
4796         instead.
4797
4798 2013-08-01  Andrew Burgess  <aburgess@broadcom.com>
4799
4800         * cli/cli-script.c (script_from_file): Remove use of
4801         error_pre_print.
4802         * main.c (captured_main): Remove use of error_pre_print and
4803         quit_pre_print.
4804         * utils.c (error_pre_print, quit_pre_print): Remove.
4805         * utils.h (error_pre_print, quit_pre_print): Likewise.
4806
4807 2013-08-01  Yao Qi  <yao@codesourcery.com>
4808
4809         * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Parse argv
4810         with mi_getopt.
4811         (mi_cmd_stack_list_variables): Likewise.
4812
4813 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
4814
4815         * exceptions.c (deprecated_throw_reason): Remove.
4816         * exceptions.h (deprecated_throw_reason): Remove.
4817
4818 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
4819
4820         * remote-mips.c (mips_error): Replace use of
4821         deprecated_throw_reason with throw_verror.  Use the error message
4822         passed to mips_error as the error message for throw_verror.
4823
4824 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
4825
4826         * monitor.c (monitor_interrupt_query): Replace use of
4827         deprecated_throw_reason with quit.
4828         * nto-procfs.c (interrupt_query): Likewise.
4829         * remote-fileio.c (remote_fileio_sig_exit): Likewise.
4830         * remote-mips.c (mips_kill): Likewise.
4831         * remote.c (interrupt_query): Likewise.
4832
4833 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
4834
4835         * utils.c (internal_verror): Replace use of deprecated_throw_reason
4836         with call to fatal.
4837
4838 2013-07-31  Pedro Alves  <pedro@codesourcery.com>
4839             Yao Qi  <yao@codesourcery.com>
4840
4841         * tracepoint.c (trace_dump_command): Select the current frame.
4842
4843 2013-07-30  Doug Evans  <dje@google.com>
4844
4845         * dwarf2read.c (process_queue): Add type signature to debug output.
4846
4847 2013-07-30  Andrew Burgess  <aburgess@broadcom.com>
4848
4849         * value.c (value_fetch_lazy): Mark optimized out values as such
4850         rather than raising an error.
4851
4852 2013-07-30  Andrew Burgess  <aburgess@broadcom.com>
4853
4854         * value.c (value_fetch_lazy): Ensure parent value is not lazy
4855         before checking which bits of the parent, not the child, value are
4856         valid.
4857
4858 2013-07-30  Muhammad Bilal  <mbilal@codesorcery.com>
4859
4860         PR gdb/15715
4861         * top.c: Include "filenames.h".
4862         (set_history_filename): New function.
4863         (init_main): Install it as set hook of the "set history filename"
4864         command.
4865
4866 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
4867
4868         * dwarf2read.c (dwarf2_get_ref_die_offset): Constify struct
4869         attribute parameter.
4870         (dwarf2_const_value_data): Constify struct attribute parameter.
4871         (dwarf2_const_value): Constify struct attribute parameter.
4872         (dwarf2_const_value_attr): Constify struct attribute parameter.
4873         (lookup_die_type): Constify struct attribute parameter.
4874         (dwarf2_get_attr_constant_value): Constify struct attribute parameter.
4875         (follow_die_ref_or_sig): Constify struct attribute parameter.
4876         (follow_die_ref): Constify struct attribute parameter.
4877         (follow_die_sig): Constify struct attribute parameter.
4878         (get_DW_AT_signature_type): Constify struct attribute parameter.
4879         (get_type_unit_group): Constify struct attribute parameter.
4880         (fill_in_loclist_baton): Constify struct attribute parameter.
4881         (dwarf2_symbol_mark_computed): Constify struct attribute parameter.
4882         (type_unit_group): Constify struct attribute parameter.
4883
4884 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
4885
4886         * dwarf2read.c (attr_form_is_block): Make argument const.
4887         (attr_form_is_section_offset): Make argument const.
4888         (attr_form_is_constant): Make argument const.
4889         (attr_form_is_ref): Make argument const.
4890
4891 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
4892
4893         * dwarf2read.c (attr_is_ref): Rename to attr_form_is_ref.
4894         All uses updated.
4895         (attr_form_is_ref): Moved below attr_form_is_constant.
4896
4897 2013-07-29  Doug Evans  <dje@google.com>
4898
4899         * main.c (captured_command_loop): Tweak comment.
4900
4901         * target.c (target_async_permitted_1): Fix comment.
4902
4903         * symtab.c (iterate_over_some_symtabs): Add comment.
4904
4905         * symtab.c (iterate_over_some_symtabs): Fix indentation.
4906
4907 2013-07-27  Yao Qi  <yao@codesourcery.com>
4908
4909         * NEWS: Mention that GDBserver now supports hardware
4910         watchpoints on the MIPS GNU/Linux target.
4911
4912 2013-07-27  Yao Qi  <yao@codesourcery.com>
4913
4914         * Makefile.in (HFILES_NO_SRCDIR): Add
4915         common/mips-linux-watch.h.
4916         (mips-linux-watch.o): New rule.
4917         * common/mips-linux-watch.c: New.
4918         * common/mips-linux-watch.h: New.
4919         * config/mips/linux.mh (NATDEPFILES): Add mips-linux-watch.o
4920         * mips-linux-nat.c: Include mips-linux-watch.h.
4921         (W_BIT, R_BIT, I_BIT, W_MASK, R_MASK, I_MASK, IRW_MASK): Move
4922         to common/mips-linux-watch.h.
4923         (MAX_DEBUG_REGISTER): Likewise.
4924         (enum pt_watch_style): Likewise.
4925         (struct mips32_watch_regs): Likewise.
4926         (struct mips64_watch_regs): Likewise.
4927         (struct pt_watch_regs): Likewise.
4928         (struct mips_watchpoint): Likewise.
4929         (mips_linux_watch_get_irw_mask): Move to
4930         common/mips-linux-watch.c.
4931         (get_reg_mask, mips_linux_watch_get_num_valid): Likewise.
4932         (mips_linux_watch_get_watchlo): Likewise.
4933         (mips_linux_watch_set_watchlo): Likewise.
4934         (mips_linux_watch_get_watchhi): Likewise.
4935         (mips_linux_watch_set_watchhi): Likewise.
4936         (mips_linux_read_watch_registers): Likewise.
4937         (mips_linux_watch_type_to_irw): Likewise.
4938         (mips_linux_stopped_data_address, fill_mask): Likewise.
4939         (mips_linux_watch_try_one_watch): Likewise.
4940         (mips_linux_watch_populate_regs): Likewise.
4941
4942 2013-07-27  Yao Qi  <yao@codesourcery.com>
4943
4944         * mips-linux-nat.c (get_irw_mask): Rename to ...
4945         (mips_linux_watch_get_irw_mask): ... this.  Rename parameter
4946         'set' to 'n'.  Update function comment.  All callers changed.
4947         (get_reg_mask): Rename parameter 'set' to 'n'.  Update
4948         function comment.  All callers changed.
4949         (get_num_valid): Rename to ...
4950         (mips_linux_watch_get_num_valid): ... this.  Rename parameter
4951         'set' to 'n'.  Update function comment.  All callers changed.
4952         (get_watchlo): Rename to ...
4953         (mips_linux_watch_get_watchlo): ... this.  Rename parameter
4954         'set' to 'n'.  Update function comment.  All callers changed.
4955         (set_watchlo): Rename to ...
4956         (mips_linux_watch_set_watchlo): ... this.  Rename parameter
4957         'set' to 'n'.  Update function comment.  All callers changed.
4958         (get_watchhi): Rename to ...
4959         (mips_linux_watch_get_watchhi): ... this.  Update function
4960         comment.  All callers changed.
4961         (set_watchhi): Rename to ...
4962         (mips_linux_watch_set_watchhi): ... this.  Update function
4963         comment.  All callers changed.
4964         (mips_linux_read_watch_registers): Update function comment.
4965         Add new parameters 'lwpid', 'watch_readback', and
4966         'watch_readback_valid'.  Update.
4967         (type_to_irw): Rename to ...
4968         (mips_linux_watch_type_to_irw): ... this.  Update function
4969         comment.  All callers changed.
4970         (fill_mask): Update function comment.
4971         (try_one_watch): Rename to ...
4972         (mips_linux_watch_try_one_watch): ... this.  Change the type
4973         of parameter 'irw' from 'unsigned' to 'uint32_t'.
4974         (populate_regs_from_watches): Rename to ...
4975         (mips_linux_watch_populate_regs): ... this.  Add parameter
4976         'current_watches'.  All callers changed.
4977
4978 2013-07-27  Yao Qi  <yao@codesourcery.com>
4979
4980         * mips-linux-nat.c (MAX_DEBUG_REGISTER): Move it earlier in
4981         the code.
4982         (PTRACE_SET_WATCH_REGS, enum pt_watch_style): Remove.
4983         (struct mips32_watch_regs, struct mips64_watch_regs): Remove.
4984         (struct pt_watch_regs): Likewise.
4985         [!PTRACE_GET_WATCH_REGS] (PTRACE_SET_WATCH_REGS): New macro.
4986         [!PTRACE_GET_WATCH_REGS] (enum pt_watch_style): New.
4987         [!PTRACE_GET_WATCH_REGS] (struct mips32_watch_regs): New.
4988         [!PTRACE_GET_WATCH_REGS] (struct mips64_watch_regs): New.
4989         [!PTRACE_GET_WATCH_REGS] (struct pt_watch_regs): New.
4990
4991 2013-07-27  Yao Qi  <yao@codesourcery.com>
4992
4993         * breakpoint.h: Include break-common.h.
4994         (enum target_hw_bp_type): Move to ...
4995         * common/break-common.h: ... here.  New.
4996
4997 2013-07-26  Cyril Nikolaev  <cyril@nichtverstehen.de>
4998
4999         * inflow.c (terminal_init_inferior_with_pgrp): Save inferior
5000         process group regardless of having tty on stdin.
5001
5002 2013-07-25  Doug Evans  <dje@google.com>
5003
5004         * linux-fork.h (detach_fork): Delete.
5005
5006 2013-07-25  Tom Tromey  <tromey@redhat.com>
5007
5008         PR remote/15256, PR remote/15266:
5009         * bfd-target.c (target_bfd_reopen): Initialize to_magic.
5010         * monitor.c (monitor_detach): Use unpush_target.
5011         * remote-m32r-sdi.c (m32r_detach): Use unpush_target.
5012         * remote-mips.c (mips_detach): Use unpush_target.  Don't
5013         call mips_close.
5014         * remote-sim.c (gdbsim_detach): Use unpush_target.
5015         * target.c (pop_target): Remove.
5016         (pop_all_targets_above): Don't call target_close.
5017         (target_close): Assert that the target is unpushed.
5018         * target.h (pop_target): Don't declare.
5019         * tracepoint.c (tfile_open): Use unpush_target.
5020
5021 2013-07-25  Tom Tromey  <tromey@redhat.com>
5022
5023         * linux-thread-db.c (init_thread_db_ops): Call
5024         complete_target_initialization.
5025         (_initialize_thread_db): Don't call add_target.
5026         * target.c (complete_target_initialization): New function.
5027         (add_target_with_completer): Call it.
5028         * target.h (complete_target_initialization): Declare.
5029
5030 2013-07-25  Mark Kettenis  <kettenis@gnu.org>
5031
5032         * hppa-tdep.h (enum hppa_regnum): Add members for all space registers.
5033         * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Add comment.
5034         (HPPANBSD_SIZEOF_GREGS): New define.
5035         (hppaobsd_supply_gregset): Handle additional registers.
5036         * hppabsd-nat.c (hppabsd_gregset_supplies_p): Adjust to indicate
5037         we provide more registers now.
5038         (hppabsd_supply_gregset): Supply additional registers.
5039         (hppabsd_collect_gregset): Collect additional registers.
5040
5041 2013-07-25  Mark Kettenis  <kettenis@gnu.org>
5042
5043         * hppabsd-tdep.c: Include "dwarf2-frame.h".
5044         (hppabsd_dwarf2_frame_init_reg): New function.
5045         (hppabsd_init_abi): Hook in the DWARF CFI frame unwinder.
5046
5047 2013-07-25  Andrew Burgess  <aburgess@broadcom.com>
5048
5049         * mi/mi-main.c (output_register): Make MI 'r' format use standard
5050         'z' format code.  Remove error for optimized out values, standard
5051         code will handle these fine.
5052
5053 2013-07-25  Andrew Burgess  <aburgess@broadcom.com>
5054
5055         * NEWS: Mention new 'z' formatter.
5056         * printcmd.c (print_scalar_formatted): Add new 'z' formatter.
5057         (_initialize_printcmd): Mention 'z' formatter in help text of the
5058         'x' command.
5059
5060 2013-07-24  Maciej W. Rozycki  <macro@codesourcery.com>
5061
5062         * mips-tdep.c (micromips_deal_with_atomic_sequence): Correct
5063         formatting.
5064
5065 2013-07-24  Sergio Durigan Junior  <sergiodj@redhat.com>
5066
5067         * breakpoint.c (create_longjmp_master_breakpoint): Check if probe
5068         interface can evaluate arguments.  Fallback to the old mode if it
5069         cannot.
5070         (create_exception_master_breakpoint): Likewise.
5071         * elfread.c (elf_can_evaluate_probe_arguments): New function.
5072         (struct sym_probe_fns elf_probe_fns): Export function above to the
5073         probe interface.
5074         * probe.c (can_evaluate_probe_arguments): New function.
5075         * probe.h (struct probe_ops) <can_evaluate_probe_arguments>: New
5076         function pointer.
5077         (can_evaluate_probe_arguments): New function prototype.
5078         * solib-svr4.c (svr4_create_solib_event_breakpoints): Check if
5079         probe interface can evaluate arguments.  Fallback to the old mode
5080         if it cannot.
5081         * stap-probe.c (stap_get_probe_argument_count): Check if probe
5082         interface can evaluate arguments.  Warning the user if it cannot.
5083         (stap_can_evaluate_probe_arguments): New function.
5084         (struct probe_ops stap_probe_ops): Export function above to the
5085         probe interface.
5086         * symfile.h (struct sym_probe_fns) <can_evaluate_probe_arguments>:
5087         New function pointer.
5088
5089 2013-07-24  Luis Machado  <lgustavo@codesourcery.com>
5090
5091         * Makefile.in (SFILES): Add common/target-common.c.
5092         Add common/target-common.h to headers.
5093         (COMMON_OBS): Add target-common.o.
5094         (target-common.o): New target.
5095         * linux-nat.h (resume_kind): Move to common/target-common.h.
5096         * target.c (target_waitstatus_to_string): Move to
5097         common/target-common.c.
5098         * target.h: Include target-common.h.
5099         (target_waitkind): Move to common/target-common.h.
5100         (target_waitstatus): Likewise.
5101         (TARGET_WNOHANG): Likewise.
5102         * common/target-common.c: New file.
5103         * common/target-common.h: New file.
5104
5105 2013-07-24  Doug Evans  <dje@google.com>
5106
5107         * dwarf2read.c (lookup_dwo_cutu): Change missing DWO complaint to
5108         a warning.
5109
5110 2013-07-23  Yao Qi  <yao@codesourcery.com>
5111
5112         * i386-tdep.c (i386_in_stack_tramp_p): Remove unused
5113         parameter 'gdbarch'.
5114         (i386_stack_tramp_frame_sniffer): Caller update.
5115         * i386-linux-tdep.c (i386_linux_core_read_xcr0): Remove
5116         parameter 'gdbarch' and 'target'.
5117         (i386_linux_core_read_description): Caller update.
5118         * amd64-linux-tdep.c (amd64_linux_core_read_description):
5119         Likewise.
5120         * i386-linux-tdep.h (i386_linux_core_read_xcr0): Update
5121         declaration.
5122
5123 2013-07-23  Tom Tromey  <tromey@redhat.com>
5124
5125         * dwarf2read.c (init_cutu_and_read_dies): Revert patch from
5126         2013-07-22.
5127
5128 2013-07-22  Doug Evans  <dje@google.com>
5129
5130         * exec.h (remove_target_sections): Delete arg abfd.
5131         * exec.c (exec_close): Update call to remove_target_sections.
5132         (remove_target_sections): Delete arg abfd.
5133         * solib.c (update_solib_list): Ditto.
5134         (reload_shared_libraries_1): Ditto.
5135         (clear_solib): Ditto, and unconditionally call remove_target_sections.
5136         * target.h (struct target_section): Rename key to owner.
5137         All uses updated.
5138
5139 2013-07-22  Tom Tromey  <tromey@redhat.com>
5140
5141         * solib-som.c (som_open_symbol_file_object): Call do_cleanups.
5142
5143 2013-07-22  Tom Tromey  <tromey@redhat.com>
5144
5145         * dwarf2read.c (init_cutu_and_read_dies): Remove 'free_cu_cleanup'.
5146         Simplify cleanup handling.
5147
5148 2013-07-22  Tom Tromey  <tromey@redhat.com>
5149
5150         * dwarf2read.c (dwarf_decode_line_header): Call do_cleanups
5151         on all return paths.
5152
5153 2013-07-22  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
5154
5155         * ppc-linux-nat.c (PPC_DEBUG_FEATURE_DATA_BP_DAWR): New define.
5156         (ppc_linux_region_ok_for_hw_watchpoint): Add checking to use the new
5157         DAWR interface for longer ranges hardware watchpoint (up to 512 bytes).
5158
5159 2013-07-22  Phil Muldoon  <pmuldoon@redhat.com>
5160
5161         * top.c (print_gdb_version): Add help, apropos description and
5162         url to online documentation.
5163
5164 2013-07-19  Hui Zhu  <hui@codesourcery.com>
5165
5166         PR gdb/15692
5167         * mi/mi-cmd-break.c (mi_argv_to_format): Handle double quotes.
5168
5169 2013-07-19  Yao Qi  <yao@codesourcery.com>
5170
5171         * target.c (update_current_target): Change the default action
5172         of 'to_traceframe_info' from tcomplain to return_zero.
5173         * target.h (struct target_ops) <to_traceframe_info>: Add more
5174         comments.
5175         * valops.c (read_value_memory): Call
5176         traceframe_available_memory unconditionally.
5177
5178 2013-07-18  Yao Qi  <yao@codesourcery.com>
5179
5180         * coffread.c (coff_symfile_read): Iterate over minimal symbols,
5181         if the name is prefixed by "__imp_" or "_imp_", look for minimal
5182         symbol without prefix.  If found, set its type to
5183         'mst_solib_trampoline'.
5184
5185 2013-07-17  Doug Evans  <dje@google.com>
5186
5187         * NEWS: Mention "set print raw frame-arguments".
5188         * gdbcmd.h (setprintrawlist, showprintrawlist): Declare.
5189         * stack.c (print_raw_frame_arguments): New static global.
5190         (print_frame_arg): Set opts.raw from print_raw_frame_arguments.
5191         (_initialize_stack): New command "set/show print raw frame-arguments".
5192         * valprint.c (setprintrawlist, showprintrawlist): New globals.
5193         (set_print_raw, show_print_raw): New functions.
5194         (_initialize_valprint): New prefix command "set/show print raw".
5195         * valprint.h (value_print_options): Improve comments.
5196
5197         * cli/cli-cmds.c (init_cmd_lists): Delete unnecessary initialization
5198         of all *list variables.
5199
5200         * gdbcmd.h (togglelist): Delete.
5201         * cli/cli-cmds.c (togglelist): Delete.
5202         (init_cmd_lists): Update.
5203         * cli/cli-cmds.h (togglelist): Delete.
5204
5205 2013-07-17  Tom Tromey  <tromey@redhat.com>
5206
5207         * dwarf2read.c (dwarf2_per_objfile_free): Clear
5208         dwarf2_per_objfile.
5209
5210 2013-07-16  Doug Evans  <dje@google.com>
5211
5212         * nto-tdep.c (nto_relocate_section_addresses): Update,
5213         target_section.bfd deleted.
5214         * ppc64-tdep.c (ppc64_convert_from_func_ptr_addr): Ditto.
5215         * s390-tdep.c (s390_load): Ditto.
5216         * solib-aix.c (solib_aix_relocate_section_addresses): Ditto.
5217
5218 2013-07-16  Andrew Burgess  <aburgess@broadcom.com>
5219
5220         * common/format.c (parse_format_string): Add checks for NULL
5221         character before calling strchr.
5222
5223 2013-07-16  Doug Evans  <dje@google.com>
5224
5225         * solist.h (target_so_ops.find_and_open_solib): Clarify usage of
5226         temp_pathname argument.
5227         * nto-tdep.c (nto_find_and_open_solib): Fix setting of temp_pathname
5228         when opening the file fails.
5229
5230         * target.h (struct target_section): Delete member bfd.
5231         All users updated to use the_bfd_section->owner instead.
5232         * exec.c (add_to_section_table): Assert bfd is expected value.
5233         Remove initialization of target_section.bfd.
5234         (remove_target_sections): Update.
5235         (section_table_available_memory): Update.
5236         (section_table_xfer_memory_partial): Update.
5237         (print_section_info): Update.
5238         (exec_set_section_address): Update.
5239         * record-full.c (record_full_core_xfer_partial): Update.
5240         * solib-svr4.c (svr4_relocate_section_addresses): Update.
5241         * solib-target.c (solib_target_relocate_section_addresses): Update.
5242         * symfile.c (build_section_addr_info_from_section_table): Update.
5243         * target.c (memory_xfer_live_readonly_partial): Update.
5244         (memory_xfer_partial_1): Update.
5245
5246 2013-07-15  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
5247
5248         * ppc-linux-nat.c: Since the new PowerPC specific ptrace interface is
5249         now available for embedded (BookE) and server (BookS) processors,
5250         correct mentions of 'booke' and adjust comments accordingly in order to
5251         avoid confusion. Rename struct 'booke_debug_info' to 'hwdebug_info'.
5252         (have_ptrace_booke_interface): Rename function and variable
5253         'have_ptrace_booke_interface' to 'have_ptrace_hwdebug_interface'.
5254         Rename struct 'booke_debug_info' to 'hwdebug_info'. Update all uses.
5255         (booke_cmp_hw_point): Rename function 'booke_cmp_hw_point' to
5256         'hwdebug_point_cmp'. Update all uses.
5257         (booke_find_thread_points_by_tid): Rename function
5258         'booke_find_thread_points_by_tid' to
5259         'hwdebug_find_thread_points_by_tid'. Update all uses.
5260         (booke_insert_point): Rename function 'booke_insert_point' to
5261         'hwdebug_insert_point'. Update all uses.
5262         (booke_remove_point): Rename function 'booke_remove_point' to
5263         'hwdebug_remove_point'. Update all uses.
5264
5265 2013-07-15  Maciej W. Rozycki  <macro@codesourcery.com>
5266
5267         * mips-tdep.c (mips_gdbarch_init): Replace hardcoded magic
5268         numbers with enum values.
5269
5270 2013-07-15  Ali Anwar  <ali_anwar@codesourcery.com>
5271
5272         PR threads/13217
5273         * thread.c (thread_apply_all_command): Check for valid threads
5274         and thread count.
5275         (thread_array_cleanup): New struct.
5276         (set_thread_refcount): New function.
5277
5278 2013-07-11  Andrew Burgess  <aburgess@broadcom.com>
5279
5280         * infcmd.c (default_print_one_register_info): Reuse function
5281         print_hex_chars.
5282
5283 2013-07-10  Tom Tromey  <tromey@redhat.com>
5284
5285         * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS, ADA_EXP_C): New macros.
5286         (ada-exp.o): New target.
5287
5288 2013-07-10  Sergio Durigan Junior  <sergiodj@redhat.com>
5289
5290         * mt-tdep.c (mt_registers_info): Call
5291         get_no_prettyformat_print_options instead of
5292         get_raw_print_options (regression by last patch from Doug
5293         Evans).
5294
5295 2013-07-09  Pedro Alves  <palves@redhat.com>
5296
5297         Checked in by Joel Brobecker  <brobecker@adacore.com>.
5298         * ada-lang.c (coerce_unspec_val_to_type): Use
5299         value_optimized_out_const.
5300         * value.c (value_optimized_out_const): New function.
5301         * value.h (value_optimized_out_const): New declaration.
5302
5303 2013-07-09  Doug Evans  <dje@google.com>
5304
5305         * defs.h (enum val_prettyformat): Renamed from val_prettyprint.
5306         Enum values rename as well.  All uses updated.
5307         * valprint.h (value_print_options): Rename member pretty to
5308         pretty format.  Rename member prettyprint_arrays to
5309         prettyformat_arrays.  Rename member prettyprint_structs to
5310         prettyformat_structs.  All uses updated.
5311         (get_no_prettyformat_print_options): Renamed from
5312         get_raw_print_options.
5313         * valprint.c (get_no_prettyformat_print_options): Renamed from
5314         get_raw_print_options.  All callers updated.
5315         (show_prettyformat_structs): Renamed from show_prettyprint_structs.
5316         All callers updated.
5317         (show_prettyformat_arrays): Renamed from show_prettyprint_arrays.
5318         All callers updated.
5319         (_initialize_valprint): Improve help text for "set print pretty" and
5320         "set print arrays".
5321
5322 2013-07-09  Andrew Burgess  <aburgess@broadcom.com>
5323
5324         * value.c (value_bits_valid): Revert previous change, and change
5325         by Pedro on 2013-07-04, due to regressions in
5326         gdb.dwarf2/implptr.exp and gdb.dwarf2/pieces.exp.
5327
5328 2013-07-08  Andrew Burgess  <aburgess@broadcom.com>
5329             Pedro Alves  <palves@redhat.com>
5330
5331         * value.c (value_bits_valid): If the value is not lval_computed
5332         or has no check validity handler then the answer is the
5333         optimized_out flag, otherwise defer to the handler.
5334
5335 2013-07-06  Eli Zaretskii  <eliz@gnu.org>
5336
5337         * top.c (print_gdb_configuration): Explain in output of
5338         --configuration what does "relocatable" mean.
5339
5340         * main.c (print_gdb_help): Regroup options in the --help text.
5341         See http://sourceware.org/ml/gdb-patches/2013-04/msg00362.html for
5342         the relevant discussions.
5343
5344 2013-07-06  Yao Qi  <yao@codesourcery.com>
5345
5346         * breakpoint.h (struct breakpoint_ops) <create_breakpoints_sal>:
5347         Remove parameter 'lsal'.
5348         * breakpoint.c (create_breakpoint): Move local variable 'lsal'
5349         to inner block.  Caller update.
5350         (base_breakpoint_create_breakpoints_sal): Update.
5351         (bkpt_create_breakpoints_sal): Likewise.
5352         (tracepoint_create_breakpoints_sal): Likewise.
5353         (strace_marker_create_breakpoints_sal): Get 'lsal' from the
5354         element 0 of vector 'canonical->sals'.
5355
5356 2013-07-05  Luis Machado  <lgustavo@codesourcery.com>
5357
5358         * rs6000-tdep.c (rs6000_stab_reg_to_regnum): Return the real
5359         register number instead of the pseudo register one.
5360         (rs6000_dwarf2_reg_to_regnum): Likewise.
5361
5362 2013-07-04  Pedro Alves  <palves@redhat.com>
5363
5364         * findvar.c (value_of_register): Use allocate_optimized_out_value
5365         if the register has been optimized out, instead of
5366         set_value_optimized_out.
5367         * frame-unwind.c (frame_unwind_got_optimized): Use
5368         allocate_optimized_out_value.
5369
5370 2013-07-04  Pedro Alves  <palves@redhat.com>
5371
5372         * value.c (value_bits_valid): If the value is not lval_computed,
5373         or doesn't have a check_validity hook, assume the value is entirely
5374         valid.
5375
5376 2013-07-04  Andrew Burgess  <aburgess@broadcom.com>
5377
5378         * stack.c (read_frame_arg): No longer fetch lazy values.
5379         * value.c (value_optimized_out): If the value is not already
5380         marked optimized out, and is lazy then fetch it.
5381         (value_primitive_field): Move optimized out check to later in the
5382         function, after we have loaded any lazy values.
5383         (value_fetch_lazy): Use optimized out flag directly rather than
5384         calling optimized_out method.
5385
5386 2013-07-04  Andrew Burgess  <aburgess@broadcom.com>
5387
5388         * valops.c: Don't include "user-regs.h".
5389         (value_fetch_lazy): Moved to value.c.
5390         * value.c: Include "user-regs.h".
5391         (value_fetch_lazy): Moved from valops.c.
5392
5393 2013-07-04  Yao Qi  <yao@codesourcery.com>
5394
5395         Revert:
5396         2013-06-27  Yao Qi  <yao@codesourcery.com>
5397
5398         * common/create-version.sh: Update comments.  Handle the case
5399         that TARGET_ALIAS is empty.
5400
5401 2013-07-03  Pedro Alves  <palves@redhat.com>
5402
5403         * Makefile.in (config.status): Depend on development.sh.
5404         (aclocal_m4_deps): Add libmcheck.m4.
5405         * acinclude.m4: Include libmcheck.m4.
5406         * configure.ac: Source development.sh instead of setting
5407         'development' here.  --enable-libmcheck/--disable-libmcheck code
5408         factored out to GDB_AC_LIBMCHECK.  Run it.
5409         * development.sh: New file.
5410         * libmcheck.m4: New file.
5411         * configure: Regenerate.
5412
5413 2013-07-02  Tom Tromey  <tromey@redhat.com>
5414
5415         * contrib/ari/update-web-ari.sh: Update for version.in change.
5416
5417 2013-07-02  Tom Tromey  <tromey@redhat.com>
5418
5419         * common/ptid.h: Comment fixes.
5420
5421 2013-07-01  Tom Tromey  <tromey@redhat.com>
5422
5423         * dwarf2read.c (dwarf2_get_dwz_file): Return NULL if
5424         .gnu_debugaltlink not found.  Use bfd_get_alt_debug_link_info.
5425         (dwarf2_read_index, create_all_comp_units): Update.
5426
5427 2013-07-01  Tom Tromey  <tromey@redhat.com>
5428
5429         * configure.ac (build_warnings): Add -Wold-style-definition.
5430         * configure: Rebuild.
5431         * machoread.c (_initialize_machoread): Use "(void)".
5432         * macrocmd.c (macro_inform_no_debuginfo): Fix formatting;
5433         use "(void)".
5434
5435 2013-07-01  Tom Tromey  <tromey@redhat.com>
5436
5437         * configure.ac (build_warnings): Add -Wold-style-declaration.
5438         * configure: Rebuild.
5439         * dsrec.c (make_srec): Use "static const", not "const static".
5440         * h8300-tdep.c (h8300_breakpoint_from_pc): Use "static const",
5441         not "const static".
5442         * mi/mi-parse.c (mi_no_values, mi_simple_values, mi_all_values):
5443         Use "static const", not "const static".
5444         * mn10300-tdep.c (mn10300_breakpoint_from_pc): Use "static const",
5445         not "const static".
5446         * moxie-tdep.c (moxie_breakpoint_from_pc): Use "static const",
5447         not "const static".
5448         * rs6000-tdep.c (rs6000_breakpoint_from_pc): Use "static const",
5449         not "const static".
5450         * v850-tdep.c (v850_breakpoint_from_pc): Use "static const",
5451         not "const static".
5452         (v850_dbtrap_breakpoint_from_pc): Likewise.
5453         * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Use "static const",
5454         not "const static".
5455
5456 2013-07-01  Tom Tromey  <tromey@redhat.com>
5457
5458         * configure.ac (build_warnings): Add -Wmissing-parameter-type.
5459         * configure: Rebuild.
5460
5461 2013-07-01  Pedro Alves  <palves@redhat.com>
5462
5463         * defs.h: Include "pathmax.h".
5464         * utils.c: Don't include sys/param.h.
5465         (gdb_realpath): Remove code that checks for MAXPATHLEN.
5466         * solib-ia64-hpux.c (ia64_hpux_handle_load_event): Use PATH_MAX
5467         instead of MAXPATHLEN.
5468         * solib-sunos.c: Don't include sys/param.h.
5469         * xcoffread.c: Don't include sys/param.h.
5470         * bsd-kvm.c: Don't include sys/param.h.
5471         * darwin-nat.c: Don't include sys/param.h.
5472         (darwin_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
5473         * darwin-nat-info.c: Don't include sys/param.h.
5474         * fbsd-nat.c (fbsd_pid_to_exec_file): Use PATH_MAX instead of
5475         MAXPATHLEN.
5476         * i386obsd-nat.c: Don't include sys/param.h.
5477         * inf-child.c: Don't include sys/param.h.
5478         (inf_child_fileio_readlink): Use PATH_MAX instead of MAXPATHLEN.
5479         * linux-fork.c: Don't include sys/param.h.
5480         (fork_save_infrun_state): Use PATH_MAX instead of MAXPATHLEN.
5481         * linux-nat.c: Don't include sys/param.h.
5482         (linux_child_pid_to_exec_file, linux_proc_pending_signals)
5483         (linux_proc_pending_signals): Use PATH_MAX instead of MAXPATHLEN.
5484         * m68klinux-nat.c: Don't include sys/param.h.
5485         * nbsd-nat.c: Don't include sys/param.h.
5486         (nbsd_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
5487         * ppc-linux-nat.c: Don't include sys/param.h.
5488         * rs6000-nat.c: Don't include sys/param.h.
5489         * spu-linux-nat.c. Don't include sys/param.h.
5490         * windows-nat.c: Don't include sys/param.h.
5491         * xtensa-linux-nat.c: Don't include sys/param.h.
5492         * config/i386/nm-fbsd.h: Don't include sys/param.h.
5493
5494 2013-07-01  Pedro Alves  <palves@redhat.com>
5495
5496         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add pathmax.
5497         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/pathmax.m4.
5498         * gnulib/aclocal.m4: Regenerate.
5499         * gnulib/config.in: Regenerate.
5500         * gnulib/configure: Regenerate.
5501         * gnulib/import/pathmax.h: New file.
5502         * gnulib/import/Makefile.am: Regenerate.
5503         * gnulib/import/Makefile.in: Regenerate.
5504         * gnulib/import/m4/gnulib-cache.m4: Regenerate.
5505         * gnulib/import/m4/gnulib-comp.m4: Regenerate.
5506         * gnulib/import/m4/pathmax.m4: New file.
5507
5508 2013-07-01  Pedro Alves  <palves@redhat.com>
5509
5510         * configure.ac (GDBINIT): Define, depending on host.
5511         * go32-nat.c (init_go32_ops): Don't override gdbinit here.
5512         * top.c (PATH_MAX): Delete fallback definition.
5513         (GDBINIT_FILENAME): Delete.
5514         (gdbinit): Reimplement as const char array set to the GDBINIT
5515         string constant.
5516         * top.h (gdbinit): Make const.
5517         * configure, config.in: Regenerate.
5518
5519 2013-07-01  Pedro Alves  <palves@redhat.com>
5520
5521         * cli/cli-cmds.c (source_script): Make 'file' parameter const.
5522         * cli/cli-cmds.h (source_script): Likewise.
5523         * exceptions.c (catch_command_errors_const): New function.
5524         * exceptions.h (catch_command_errors_const): Declare.
5525         * main.c (get_init_files): Make parameters const, and adjust.
5526         (captured_main): Make 'system_gdbinit', 'home_gdbinit' and
5527         'local_gdbinit' locals const.  Adjust to use
5528         catch_command_errors_const.
5529         (print_gdb_help): Make 'system_gdbinit', 'home_gdbinit' and
5530         'local_gdbinit' locals const.
5531
5532 2013-07-01  Pedro Alves  <palves@redhat.com>
5533
5534         * defs.h: Don't check HAVE_UNISTD_H before including <unistd.h>.
5535         (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO): Delete.
5536         * tracepoint.c: Don't check HAVE_UNISTD_H before including
5537         <unistd.h>.
5538
5539 2013-07-01  Pedro Alves  <palves@redhat.com>
5540
5541         Import the "unistd" gnulib module.
5542         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add "unistd".
5543         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/off_t.m4,
5544         import/m4/ssize_t.m4, import/m4/sys_types_h.m4 and
5545         import/m4/unistd_h.m4.
5546         * gnulib/aclocal.m4: Renenerate.
5547         * gnulib/config.in: Renenerate.
5548         * gnulib/configure: Renenerate.
5549         * gnulib/import/Makefile.am: Renenerate.
5550         * gnulib/import/Makefile.in: Renenerate.
5551         * gnulib/import/m4/gnulib-cache.m4: Renenerate.
5552         * gnulib/import/m4/gnulib-comp.m4: Renenerate.
5553         * gnulib/import/m4/off_t.m4: New file.
5554         * gnulib/import/m4/ssize_t.m4: New file.
5555         * gnulib/import/m4/sys_types_h.m4: New file.
5556         * gnulib/import/m4/unistd_h.m4: New file.
5557         * gnulib/import/sys_types.in.h: New file.
5558         * gnulib/import/unistd.c: New file.
5559         * gnulib/import/unistd.in.h: New file.
5560
5561 2013-07-01  Pedro Alves  <palves@redhat.com>
5562
5563         * utils.c <pathconf/_PC_PATH_MAX use>: Check if _PC_PATH_MAX is
5564         defined instead of checking HAVE_UNISTD_H.
5565
5566 2013-07-01  Pedro Alves  <palves@redhat.com>
5567
5568         Reimport gnulib from scratch.
5569         * gnulib/Makefile.in (aclocal_m4_deps): Remove reference to
5570         import/m4/onceonly.m4.
5571         * gnulib/aclocal.m4: Renegerate.
5572         * gnulib/config.in: Renegerate.
5573         * gnulib/configure: Renegerate.
5574         * gnulib/import/Makefile.in: Renegerate.
5575         * gnulib/import/extra/update-copyright: Renegerate.
5576         * gnulib/import/m4/onceonly.m4: Delete.
5577
5578 2013-07-01  Pedro Alves  <palves@redhat.com>
5579
5580         * tui/tui-regs.c (pagination_enabled): Delete declaration.
5581
5582 2013-06-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
5583
5584         Code cleanup.
5585         * remote.c (async_remote_interrupt_twice): Make it static.
5586         * remote.h (async_remote_interrupt_twice): Remove the declaration.
5587
5588 2013-06-29  Sergio Durigan Junior  <sergiodj@redhat.com>
5589
5590         * ia64-linux-tdep.c: Include <ctype.h>.
5591         (ia64_linux_stap_is_single_operand): New function.
5592         (ia64_linux_init_abi): Initialize SystemTap related attributes.
5593
5594 2013-06-28  Tom Tromey  <tromey@redhat.com>
5595
5596         * Makefile.in (version.c): Use version.in, not
5597         common/version.in.
5598         * common/create-version.sh: Likewise.
5599         * common/version.in: Move...
5600         * version.in: ...here.
5601
5602 2013-06-28  Pedro Alves  <palves@redhat.com>
5603
5604         * infrun.c (set_observer_mode): Don't declare pagination_enabled
5605         here.
5606         * utils.h (pagination_enabled): Declare.
5607
5608 2013-06-28  Pedro Alves  <palves@redhat.com>
5609
5610         * infrun.c (non_stop, non_stop_1, set_non_stop, show_non_stop):
5611         Move higher up in file.
5612
5613 2013-06-28  Tom Tromey  <tromey@redhat.com>
5614
5615         * tracepoint.c (deprecated_readline_begin_hook)
5616         (deprecated_readline_hook, deprecated_readline_end_hook): Don't
5617         declare.
5618
5619 2013-06-28  Pedro Alves  <palves@redhat.com>
5620
5621         PR tui/14880
5622         * tui/tui-regs.c (tui_get_register): Fetch value contents before
5623         checking if they're available.
5624         * value.c (value_available_contents_eq): Change comment.
5625         * value.h (value_available_contents_eq): Expand comment.
5626
5627 2013-06-27  Tom Tromey  <tromey@redhat.com>
5628
5629         * target.c (find_run_target): Remove.
5630         * target.h (find_run_target): Remove.
5631
5632 2013-06-27  Tom Tromey  <tromey@redhat.com>
5633
5634         * corelow.c (core_gdbarch): Now static.
5635
5636 2013-06-27  Tom Tromey  <tromey@redhat.com>
5637
5638         * target.c (target_struct_index): Remove.
5639
5640 2013-06-27  Pedro Alves  <palves@redhat.com>
5641
5642         * infrun.c: Remove comment describing the 'stepping over runtime
5643         loader dynamic symbol resolution code' mechanism; moved to
5644         gdbint.texinfo.
5645
5646 2013-06-27  Pedro Alves  <palves@redhat.com>
5647
5648         * exceptions.c (catch_command_errors): Remove spurious space.
5649         * exceptions.h (catch_command_errors): Second parameter is "arg",
5650         not "command".
5651
5652 2013-06-27  Yao Qi  <yao@codesourcery.com>
5653
5654         * common/create-version.sh: Update comments.  Handle the case
5655         that TARGET_ALIAS is empty.
5656
5657 2013-06-26  Pedro Alves  <palves@redhat.com>
5658
5659         * infrun.c (SOLIB_IN_DYNAMIC_LINKER): Delete macro and describing
5660         comment.
5661
5662 2013-06-26  Pedro Alves  <palves@redhat.com>
5663
5664         * infrun.c: Update comments on stepping over runtime loader
5665         dynamic symbol resolution code.
5666
5667 2013-06-26  Sergio Durigan Junior  <sergiodj@redhat.com>
5668
5669         * ax-gdb.h (union exp_element): Forward declare.
5670         * parser-defs.h: Include expression.h.
5671
5672 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
5673
5674         * mips-tdep.c (fetch_mips_16): Use unmake_compact_addr.
5675
5676 2013-06-26  Dmitry Kozlov <ddk@codesourcery.com>
5677
5678         * tracepoint.c (trace_save): Extend tsave to save starttime, stoptime.
5679
5680 2013-06-26  Dmitry Kozlov <ddk@codesourcery.com>
5681
5682         Fix trace-status to output proper start-time and stop-time.
5683         * tracepoint.c (trace_status_command): Fix type of printf arg to
5684         prevent improper type conversion.
5685         (trace_status_mi): Likewise.
5686
5687 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
5688
5689         * mips-tdep.c (mips_next_pc): Fix a typo.
5690
5691 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
5692
5693         * mips-tdep.c (micromips_scan_prologue): Fix a typo.
5694
5695 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
5696             Yao Qi  <yao@codesourcery.com>
5697
5698         * mi/mi-cmds.c (mi_cmds): Register -trace-frame-collected.
5699         * mi/mi-cmds.h (mi_cmd_trace_frame_collected): Declare.
5700         * mi/mi-main.c (print_variable_or_computed): New function.
5701         (mi_cmd_trace_frame_collected): New function.
5702         * tracepoint.c (find_trace_state_variable_by_number): New.
5703         (struct traceframe_info): Move to tracepoint.h
5704         (struct collection_list): Likewise.
5705         (do_collect_symbol): Include locals and arguments in the
5706         collected variables list.
5707         (clear_collection_list): Clear wholly collected variables list
5708         and computed variables list.
5709         (append_exp): New function.
5710         (encode_actions_1): Include variables in the wholly
5711         collected variables list.  Include memory ranges and
5712         full-fledged expressions in the computed expressions list.
5713         (encode_actions): Move some code to ...
5714         Return the cleanup chain.
5715         (encode_actions_rsp): ... here.  New function.
5716         (get_traceframe_location, get_traceframe_info): Remove static.
5717         * tracepoint.h (struct memrange): Moved from tracepoint.c.
5718         (struct collection_list): Moved from tracepoint.c.  Add two
5719         new fields 'wholly_collected' and 'computed'.
5720         (find_trace_state_variable_by_number): Declare.
5721         (encode_actions): Adjust declaration.
5722         (encode_actions_rsp): Declare.
5723         (get_traceframe_info, get_traceframe_location): Declare.
5724
5725         * NEWS: Mention new MI command -trace-frame-collected.
5726
5727 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
5728             Yao Qi  <yao@codesourcery.com>
5729
5730         * ctf.c (ctf_traceframe_info): Push trace state variables
5731         present in the trace data into the traceframe info object.
5732         * breakpoint.c (DEF_VEC_I): Remove.
5733         * common/filestuff.c (DEF_VEC_I): Likewise.
5734         * dwarf2loc.c (DEF_VEC_I): Likewise.
5735         * mi/mi-main.c (DEF_VEC_I): Likewise.
5736         * common/gdb_vecs.h (DEF_VEC_I): Define vector for int.
5737         * features/traceframe-info.dtd: Add tvar element and its
5738         attributes.
5739         * tracepoint.c (free_traceframe_info): Free vector 'tvars'.
5740         (build_traceframe_info): Push trace state variables present in
5741         the trace data into the traceframe info object.
5742         (traceframe_info_start_tvar): New function.
5743         (tvar_attributes): New.
5744         (traceframe_info_children): Add "tvar" element.
5745         * tracepoint.h (struct traceframe_info) <tvars>: New field.
5746
5747         * NEWS: Mention the change in GDB and GDBserver.
5748
5749 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
5750             Yao Qi  <yao@codesourcery.com>
5751
5752         * tracepoint.c (trace_dump_command): Move code to ...
5753         (get_traceframe_location): ... here.  New.
5754
5755 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
5756             Yao Qi  <yao@codesourcery.com>
5757
5758         * tracepoint.c (trace_dump_command): GDB emits an error
5759          instead of a warning when a traceframe is not selected.
5760
5761 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
5762             Yao Qi  <yao@codesourcery.com>
5763
5764         * tracepoint.c (tracepoint_list, stepping_list): Remove.
5765         (clear_collection_list): Free fields 'aexpre_list' and 'list'
5766         in collection_list.
5767         (do_clear_collection_list, init_collection_list): New.
5768         (encode_actions): Add local variables 'tracepoint_list' and
5769         'stepping_list'.  Call init_collection_list and make cleanup
5770         which calls do_clear_collection_list.  Don't call
5771         clear_collection_list.
5772         (_initialize_tracepoint): Delete references to
5773         'tracepoint_list' and 'stepping_list'.
5774
5775 2013-06-25  Tom Tromey  <tromey@redhat.com>
5776
5777         * common/create-version.sh (date): Use "$", not "$$" in sed
5778         expression.
5779
5780 2013-06-25  Kevin Buettner  <kevinb@redhat.com>
5781
5782         * NEWS (New targets): Add entry for TI MSP430.
5783
5784 2013-06-25  Yao Qi  <yao@codesourcery.com>
5785
5786         * remote.c (remote_start_remote): Move code to upload tsv
5787         earlier.
5788
5789 2013-06-25  Yao Qi  <yao@codesourcery.com>
5790             Hui Zhu  <hui@codesourcery.com>
5791             Pedro Alves  <palves@redhat.com>
5792
5793         PR breakpoints/15075
5794         PR breakpoints/15434
5795         * breakpoint.c (bpstat_stop_status): Call
5796         b->ops->after_condition_true.
5797         (update_dprintf_command_list): Don't append "continue" command
5798         to the command list of dprintf breakpoint.
5799         (base_breakpoint_after_condition_true): New function.
5800         (base_breakpoint_ops): Add base_breakpoint_after_condition_true.
5801         (dprintf_after_condition_true): New function.
5802         (initialize_breakpoint_ops): Set dprintf_after_condition_true.
5803         * breakpoint.h (breakpoint_ops): Add after_condition_true.
5804
5805 2013-06-24  Kevin Buettner  <kevinb@redhat.com>
5806
5807         * Makefile.in (ALL_TARGET_OBS): Add msp430-tdep.o.
5808         (ALLDEPFILES): Add msp430-tdep.c.
5809         * configure.tgt (msp430*-*-elf): New target.
5810         * msp430-tdep.c: New file.
5811
5812 2013-06-24  Maciej W. Rozycki  <macro@codesourcery.com>
5813
5814         * mips-tdep.c (mips_elf_make_msymbol_special): Handle MIPS16 and
5815         microMIPS synthetic symbols.
5816
5817 2013-06-24  Maciej W. Rozycki  <macro@codesourcery.com>
5818
5819         * objfiles.h (pc_in_section): New prototype.
5820         (in_plt_section): Remove name argument, replace prototype with
5821         static inline function.
5822         * mips-tdep.h: Include "objfiles.h".
5823         (in_mips_stubs_section): New function.
5824         * hppa-tdep.h (gdbarch_tdep): Remove name argument of
5825         in_solib_call_trampoline member.
5826         (hppa_in_solib_call_trampoline): Remove name argument.
5827         * objfiles.c (pc_in_section): New function.
5828         (in_plt_section): Remove function.
5829         * mips-linux-tdep.c: Include "objfiles.h".
5830         (mips_linux_in_dynsym_stub): Call in_mips_stubs_section.  Remove
5831         name argument.  Return 1 rather than the low 16-bit halfword of
5832         any instruction examined.
5833         (mips_linux_in_dynsym_resolve_code): Update
5834         mips_linux_in_dynsym_stub call accordingly.
5835         * mips-tdep.c (mips_stub_frame_sniffer): Use in_mips_stubs_section
5836         rather than an equivalent hand-coded sequence.
5837         * hppa-hpux-tdep.c (in_opd_section): Remove function.
5838         (hppa32_hpux_in_solib_call_trampoline): Remove name argument.
5839         (hppa64_hpux_in_solib_call_trampoline): Likewise.
5840         (hppa64_hpux_find_global_pointer): Use pc_in_section rather than
5841         in_opd_section.
5842         * hppa-tdep.c (hppa_stub_unwind_sniffer): Remove name argument
5843         on call to tdep->in_solib_call_trampoline.
5844         (hppa_in_solib_call_trampoline): Remove name argument, update
5845         according to in_plt_section change.
5846         (hppa_skip_trampoline_code): Update according to in_plt_section
5847         change.
5848         * aarch64-tdep.c (aarch64_stub_unwind_sniffer): Likewise.
5849         * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code):
5850         Likewise.
5851         * arm-tdep.c (arm_stub_unwind_sniffer): Likewise.
5852         * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
5853         * hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
5854         * nios2-tdep.c (nios2_stub_frame_sniffer): Likewise.
5855         * nto-tdep.c (nto_relocate_section_addresses): Likewise.
5856         * s390-tdep.c (s390_stub_frame_sniffer): Likewise.
5857         * sh-tdep.c (sh_stub_unwind_sniffer): Likewise.
5858         * solib-dsbt.c (dsbt_in_dynsym_resolve_code): Likewise.
5859         * solib-frv.c (frv_in_dynsym_resolve_code): Likewise.
5860         * solib-svr4.c (svr4_in_dynsym_resolve_code): Likewise.
5861         * solib-target.c (solib_target_in_dynsym_resolve_code): Likewise.
5862         * sparc-tdep.c (sparc_analyze_prologue): Likewise.
5863         * tic6x-tdep.c (tic6x_stub_unwind_sniffer): Likewise.
5864
5865 2013-06-24  Joel Brobecker  <brobecker@adacore.com>
5866
5867         * common/create-version.sh: Fix expansion of $host_alias
5868         and $target_alias in generation of HOST_NAME and TARGET_NAME
5869         (resp.).
5870
5871 2013-06-24  Tom Tromey  <tromey@redhat.com>
5872
5873         * common/create-version.sh: New file.
5874         * Makefile.in (version.c): Use bfd/version.h, common/version.in,
5875         create-version.sh.
5876         (HFILES_NO_SRCDIR): Use common/version.h.
5877         * version.in: Move to ...
5878         * common/version.in: ... here.  Replace date with "DATE".
5879         * version.h: Move to ...
5880         * common/version.h: ... here.
5881
5882 2013-06-21  Joel Brobecker  <brobecker@adacore.com>
5883
5884         * gdb/gnulib/Makefile.in: Update date in copyright header.
5885         * gdb/gnulib/configure.ac: Ditto.
5886         * gdb/gnulib/update-gnulib.sh: Ditto.
5887
5888 2013-06-21  Joel Brobecker  <brobecker@adacore.com>
5889
5890         * copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by
5891         "gdb/gnulib/import".
5892
5893 2013-06-21  Will Newton  <will.newton@linaro.org>
5894
5895         * doublest.c (ldfrexp): Remove function.
5896         (convert_doublest_to_floatformat): Call frexpl instead of
5897         ldfrexp.
5898
5899 2013-06-21  Will Newton  <will.newton@linaro.org>
5900
5901         * gnulib/update-gnulib.sh(IMPORTED_GNULIB_MODULES): Add frexpl.
5902         * gnulib/aclocal.m4: Regenerate.
5903         * gnulib/config.in: Regenerate.
5904         * gnulib/configure: Regenerate.
5905         * gnulib/import/Makefile.am: Update.
5906         * gnulib/import/Makefile.in: Update.
5907         * gnulib/import/m4/gnulib-cache.m4: Update.
5908         * gnulib/import/m4/gnulib-comp.m4: Update.
5909         * gnulib/import/float+.h: Import.
5910         * gnulib/import/float.c: Import.
5911         * gnulib/import/float.in.h: Import.
5912         * gnulib/import/fpucw.h: Import.
5913         * gnulib/import/frexp.c: Import.
5914         * gnulib/import/frexpl.c: Import.
5915         * gnulib/import/isnan.c: Import.
5916         * gnulib/import/isnand-nolibm.h: Import.
5917         * gnulib/import/isnand.c: Import.
5918         * gnulib/import/isnanl-nolibm.h: Import.
5919         * gnulib/import/isnanl.c: Import.
5920         * gnulib/import/itold.c: Import.
5921         * gnulib/import/m4/exponentd.m4: Import.
5922         * gnulib/import/m4/exponentl.m4: Import.
5923         * gnulib/import/m4/float_h.m4: Import.
5924         * gnulib/import/m4/fpieee.m4: Import.
5925         * gnulib/import/m4/frexp.m4: Import.
5926         * gnulib/import/m4/frexpl.m4: Import.
5927         * gnulib/import/m4/isnand.m4: Import.
5928         * gnulib/import/m4/isnanl.m4: Import.
5929         * gnulib/import/m4/math_h.m4: Import.
5930         * gnulib/import/math.c: Import.
5931         * gnulib/import/math.in.h: Import.
5932
5933 2013-06-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
5934
5935         * common/linux-btrace.c (cpu_supports_btrace): Remove variable vendor,
5936         replace strcmp with signature_INTEL_ebx, signature_INTEL_ecx and
5937         signature_INTEL_edx comparisons.
5938
5939 2013-06-20  Doug Evans  <dje@google.com>
5940
5941         symtab/15652
5942         * dwarf2read.c (try_open_dwop_file): New arg search_cwd.
5943         All callers updated.
5944         (open_dwp_file): If we can't find the dwp file, search the basename
5945         in debug-file-directory.
5946
5947         * dwarf2read.c (struct dwp_file): Fix comment.
5948         (open_and_init_dwp_file): Set dwp_file->name to bfd's file name.
5949
5950         * source.c (openp): Document OPF_TRY_CWD_FIRST+OPF_SEARCH_IN_PATH
5951         better.
5952
5953 2013-06-20  Yao Qi  <yao@codesourcery.com>
5954
5955         * breakpoint.c (create_breakpoint): Fix code indentation.
5956
5957 2013-06-20  Yao Qi  <yao@codesourcery.com>
5958
5959         * breakpoint.c (create_breakpoints_sal_default): Remove
5960         parameter 'lsal'.  Update declaration.
5961         (bkpt_create_breakpoints_sal): Caller update.
5962         (tracepoint_create_breakpoints_sal): Likewise.
5963
5964 2013-06-20  Pedro Alves  <pedro@codesourcery.com>
5965             Yao Qi  <yao@codesourcery.com>
5966
5967         * NEWS: Mention the new option '--skip-unavailable' of command
5968         -data-list-register-values.
5969         * mi/mi-main.c (mi_cmd_data_list_register_values): Accept the
5970         --skip-unavailable option.  Adjust to use output_register.
5971         (output_register): Add new 'skip_unavailable' parameter.
5972         Handle it.
5973
5974 2013-06-19  Mike Frysinger  <vapier@gentoo.org>
5975
5976         * Makefile.in (HFILES_NO_SRCDIR): Add common/i386-cpuid.h and
5977         common/i386-gcc-cpuid.h.
5978         * common/i386-cpuid.h: New wrapper header around i386-gcc-cpuid.h.
5979         * common/i386-gcc-cpuid.h: Rename from testsuite/gdb.arch/i386-cpuid.h.
5980         Copy the latest version from upstream gcc.
5981         * common/linux-btrace.c: Include i386-cpuid.h.
5982         (intel_supports_btrace): Delete x86 ifdefs and replace inline asm with
5983         call to i386_cpuid.
5984         (cpu_supports_btrace): Likewise.
5985         * go32-nat.c: Include i386-cpuid.h.
5986         (go32_sysinfo): Add (disabled) calls to i386_cpuid with comments.
5987
5988 2013-06-19  Doug Evans  <dje@google.com>
5989
5990         * symfile.c (symfile_bfd_open): Delete unnecessary declaration.
5991         (get_section_index): Ditto.
5992
5993 2013-06-19  Tom Tromey  <tromey@redhat.com>
5994
5995         * breakpoint.c (_initialize_breakpoint): Remove trailing \n from
5996         "dprintf" help.
5997
5998 2013-06-18  Doug Evans  <dje@google.com>
5999
6000         * dwarf2read.c (dw2_symtab_iter_next): Check value of cu_index
6001         before using it.
6002         (dw2_expand_symtabs_matching): Fix symbol kind validity check.
6003         Move test of cu_index closer to use.  Print complaint if cu_index
6004         is bad.
6005
6006 2013-06-18  Joel Brobecker  <brobecker@adacore.com>
6007
6008         * machoread.c (oso_vector): Delete this global.
6009         (macho_register_oso): Add new parameter "oso_vector_ptr".
6010         Use it instead of the "oso_vector" global.
6011         (macho_symtab_read, macho_symfile_read_all_oso): Likewise.
6012         (macho_symfile_read): Use a local oso_vector, to be free'ed
6013         at the end of this function, in place of the old "oso_vector"
6014         global.  Update various function calls accordingly.  Use one
6015         single cleanup chain for the entire function.
6016
6017 2013-06-18  Joel Brobecker  <brobecker@adacore.com>
6018
6019         * dwarf2read.c (dwarf2_per_objfile_free): Replace uses of
6020         DWARF2_PER_OBJFILE by uses of DATA instead.
6021
6022 2013-06-18  Tom Tromey  <tromey@redhat.com>
6023
6024         * break-catch-sig.c (signal_catchpoint_explains_signal): Add 'sig'
6025         argument.
6026         * breakpoint.c (bpstat_explains_signal): Add 'sig' argument.
6027         Special case signals other than GDB_SIGNAL_TRAP.
6028         (explains_signal_watchpoint): New function.
6029         (base_breakpoint_explains_signal): Add 'sig' argument.
6030         (initialize_breakpoint_ops): Set 'explains_signal' method for
6031         watchpoints.
6032         * breakpoint.h (struct breakpoint_ops) <explains_signal>: Add
6033         signal argument.
6034         (bpstat_explains_signal): Likewise.
6035         * infrun.c (handle_syscall_event, handle_inferior_event): Update.
6036
6037 2013-06-18  Tom Tromey  <tromey@redhat.com>
6038
6039         * python/py-inferior.c (gdbpy_selected_inferior): Don't incref.
6040
6041 2013-06-18  Tom Tromey  <tromey@redhat.com>
6042
6043         * python/python.c (finish_python_initialization): Decref
6044         'pythondir' on failure path as well.
6045
6046 2013-06-18  Tom Tromey  <tromey@redhat.com>
6047
6048         PR symtab/15391:
6049         * dwarf2loc.c (read_pieced_value): Truncate this_size_bits
6050         after taking bits_to_skip into account.  Sign extend byte_offset.
6051         * utils.h (gdb_sign_extend): Declare.
6052         * utils.c (gdb_sign_extend): New function.
6053
6054 2013-06-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
6055
6056         * dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.
6057
6058 2013-06-17  Pierre Muller  <muller@sourceware.org>
6059
6060         * corelow.c (core_open): Print GDB signal name instead of target
6061         signal number.
6062
6063 2013-06-17  Mike Frysinger  <vapier@gentoo.org>
6064
6065         * .gitignore: Add /gcore.
6066
6067 2013-06-13  Doug Evans  <dje@google.com>
6068
6069         * dwarf2read.c (try_open_dwop_file): Work around behaviour of
6070         OPF_TRY_CWD_FIRST to not search path if the file contains a '/'.
6071
6072 2013-06-12  Phil Muldoon  <pmuldoon@redhat.com>
6073
6074         * stack.c (backtrace_command_1): Fix indentation.
6075
6076 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
6077
6078         * window-nat.c (thread_rec): Add missing empty line after
6079         local variable declaration.
6080
6081 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
6082
6083         * windows-nat.c (thread_rec): Revert format used to print
6084         error code returned by SuspendThread from %d back to %u.
6085
6086 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
6087
6088         * windows-nat.c (windows_continue): Add "0x" prefix for thread
6089         ID in debug trace.
6090         (get_windows_debug_event): Likewise, for all debug traces.
6091
6092 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
6093
6094         * window-nat.c (thread_rec): Add thread ID in SuspendThread
6095         warning message.
6096
6097 2013-06-08  Pedro Alves  <pedro@codesourcery.com>
6098             Yao Qi  <yao@codesourcery.com>
6099
6100         * mi/mi-main.c (get_register): Remove declaration.
6101         (output_register): Declare.
6102         (mi_cmd_data_list_register_values): Remove local variable
6103         'tuple_cleanup'.  Move some code into output_register.
6104         (get_register): Renamed to ...
6105         (output_register): ... this.  Output the register's
6106         "number" ui_out tuple here.
6107
6108 2013-06-07  Pedro Alves  <palves@redhat.com>
6109
6110         * darwin-nat.c: Fix formating in copyright header.
6111         * darwin-nat.h: Likewise.
6112         * gnu-nat.c: Likewise.
6113         * machoread.c: Likewise.
6114
6115 2013-06-07  Pedro Alves  <palves@redhat.com>
6116
6117         PR server/14823
6118         * regformats/regdat.sh: Output #include tdesc.h.  Make globals
6119         static.  Output a global target description pointer.
6120         (init_registers_${name}): Adjust to initialize a
6121         target description structure.
6122
6123 2013-06-07  Will Newton  <will.newton@linaro.org>
6124
6125         * printcmd.c (build_address_symbolic): Call
6126         gdbarch_addr_bits_remove for text minimal symbols.
6127
6128 2013-06-07  Will Newton  <will.newton@linaro.org>
6129
6130         * MAINTAINERS: Add myself to Write After Approval.
6131
6132 2013-06-07  Yao Qi  <yao@codesourcery.com>
6133
6134         * tracepoint.c (start_tracing): Move code to ...
6135         (trace_reset_local_state): ... here.  New.
6136         (disconnect_tracing): Don't call set_current_traceframe,
6137         set_tracepoint_num, and set_traceframe_context. Call
6138         trace_reset_local_state instead.
6139         (tfile_close): Call trace_reset_local_state.
6140         * ctf.c (ctf_close): Likewise.
6141         * remote.c (remote_close): Likewise.
6142         * tracepoint.h (trace_reset_local_state): Declare.
6143
6144 2013-06-06  Doug Evans  <dje@google.com>
6145
6146         * dwarf2read.c: Whitespace fixes for DWP file format documentation,
6147         and fix header docs.
6148
6149 2013-06-05  Doug Evans  <dje@google.com>
6150             Keith Seitz  <keiths@redhat.com>
6151
6152         PR 15519
6153         * cp-namespace.c (find_symbol_in_baseclass): Call
6154         cp_lookup_symbol_in_namespace instead of cp_lookup_symbol_namespace.
6155         Check result of call to lookup_symbol_static.
6156         Call lookup_static_symbol_aux unconditionally.
6157         Call check_typedef on base types before accessing them.
6158         (cp_lookup_nested_symbol): Fix comment.
6159
6160 2013-06-05  Luis Machado  <lgustavo@codesourcery.com>
6161
6162         * gnu-v3-abi.c (gnuv3_skip_trampoline): Handle thunk
6163         minimal symbols pointing to function descriptors.
6164
6165 2013-06-05  Tom Tromey  <tromey@redhat.com>
6166
6167         * python/py-utils.c (gdb_pymodule_addobject): Cast away const.
6168
6169 2013-06-04  Sergio Durigan Junior  <sergiodj@redhat.com>
6170             Pedro Alves  <palves@redhat.com>
6171
6172         * remote.c (remote_wait_as): Restore signal handler before returning
6173         when GDB gets a notification.
6174
6175 2013-06-04  Gary Benson  <gbenson@redhat.com>
6176
6177         PR 2328
6178         * breakpoint.h (handle_solib_event): Moved function declaration
6179         to solib.h.
6180         * breakpoint.c (handle_solib_event): Moved function to solib.c.
6181         (bpstat_stop_status): Pass new argument to handle_solib_event.
6182         * solib.h (update_solib_breakpoints): New function declaration.
6183         (handle_solib_event): Moved function declaration from
6184         breakpoint.h.
6185         * solib.c (update_solib_breakpoints): New function.
6186         (handle_solib_event): Moved function from breakpoint.c.
6187         Updated to call solib_ops->handle_event if not NULL.
6188         * solist.h (target_so_ops): New fields "update_breakpoints" and
6189         "handle_event".
6190         * infrun.c (set_stop_on_solib_events): New function.
6191         (_initialize_infrun): Use the above for "set
6192         stop-on-solib-events".
6193         (handle_inferior_event): Pass new argument to handle_solib_event.
6194         * solib-svr4.c (probe.h): New include.
6195         (svr4_free_library_list): New forward declaration.
6196         (probe_action): New enum.
6197         (probe_info): New struct.
6198         (probe_info): New static variable.
6199         (NUM_PROBES): New definition.
6200         (svr4_info): New fields "using_xfer", "probes_table" and
6201         "solib_list".
6202         (free_probes_table): New function.
6203         (free_solib_list): New function.
6204         (svr4_pspace_data_cleanup): Free probes table and solib list.
6205         (svr4_copy_library_list): New function.
6206         (svr4_current_sos_via_xfer_libraries): New parameter "annex".
6207         (svr4_read_so_list): New parameter "prev_lm".
6208         (svr4_current_sos_direct): Renamed from "svr4_current_sos".
6209         (svr4_current_sos): New function.
6210         (probe_and_action): New struct.
6211         (hash_probe_and_action): New function.
6212         (equal_probe_and_action): Likewise.
6213         (register_solib_event_probe): Likewise.
6214         (solib_event_probe_at): Likewise.
6215         (solib_event_probe_action): Likewise.
6216         (solist_update_full): Likewise.
6217         (solist_update_incremental): Likewise.
6218         (disable_probes_interface_cleanup): Likewise.
6219         (svr4_handle_solib_event): Likewise.
6220         (svr4_update_solib_event_breakpoint): Likewise.
6221         (svr4_update_solib_event_breakpoints): Likewise.
6222         (svr4_create_solib_event_breakpoints): Likewise.
6223         (enable_break): Free probes table before creating breakpoints.
6224         Use svr4_create_solib_event_breakpoints to create breakpoints.
6225         (svr4_solib_create_inferior_hook): Free the solib list.
6226         (_initialize_svr4_solib): Initialise
6227         svr4_so_ops.handle_solib_event and svr4_so_ops.update_breakpoints.
6228
6229 2013-06-04  Gary Benson  <gbenson@redhat.com>
6230
6231         * target.h (target_ops): New field
6232         "to_augmented_libraries_svr4_read".
6233         (target_augmented_libraries_svr4_read): New macro.
6234         * target.c (update_current_target): Handle
6235         to_augmented_libraries_svr4_read.
6236         * remote.c (remote_state): New field
6237         "augmented_libraries_svr4_read".
6238         (remote_augmented_libraries_svr4_read_feature): New function.
6239         (remote_protocol_features): Add entry for
6240         "augmented-libraries-svr4-read".
6241         (remote_augmented_libraries_svr4_read): New function.
6242         (init_remote_ops): Initialize
6243         remote_ops.to_augmented_libraries_svr4_read.
6244
6245 2013-06-04  Gary Benson  <gbenson@redhat.com>
6246
6247         * NEWS: Update.
6248
6249 2013-06-04  Gary Benson  <gbenson@redhat.com>
6250
6251         * objfiles.h (inhibit_section_map_updates): New function
6252         declaration.
6253         (resume_section_map_updates): Likewise.
6254         (resume_section_map_updates_cleanup): Likewise.
6255         * objfiles.c (objfile_pspace_info): Removed field
6256         "objfiles_changed_p".  New fields "new_objfiles_available",
6257         "section_map_dirty" and "inhibit_updates".
6258         (allocate_objfile): Set new_objfiles_available.
6259         (free_objfile): Set section_map_dirty.
6260         (objfile_relocate1): Likewise.
6261         (in_plt_section): Likewise.
6262         (find_pc_section): Update the conditions under which the
6263         section map will be updated.
6264         (inhibit_section_map_updates): New function.
6265         (resume_section_map_updates): Likewise.
6266         (resume_section_map_updates_cleanup): Likewise.
6267
6268 2013-06-04  Gary Benson  <gbenson@redhat.com>
6269
6270         * probe.h (get_probe_argument_count): New declaration.
6271         (evaluate_probe_argument): Likewise.
6272         * probe.c (get_probe_argument_count): New function.
6273         (evaluate_probe_argument): Likewise.
6274         (probe_safe_evaluate_at_pc): Use the above new functions.
6275
6276 2013-06-04  Alan Modra  <amodra@gmail.com>
6277
6278         * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
6279         * rs6000-tdep.c (read_insn): Add frame param, don't assume big-endian.
6280         (ppc_insns_match_pattern): Add frame param.  Avoid multiple
6281         target mem reads on optional insns.
6282         * ppc-linux-tdep.c (ppc_skip_trampoline_code): Update
6283         ppc_insns_match_pattern calls.
6284         * ppc64-tdep.c (ppc64_standard_linkage2, ppc64_standard_linkage3):
6285         Add match for power7 thread safety insns, and new order of
6286         std 2,40(1) insn.  Correct code shown for _dl_runtime_resolve
6287         invocation in comment, and update rest of comment.
6288         (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN,
6289         PPC64_STANDARD_LINKAGE3_LEN): Delete.
6290         (ppc64_standard_linkage2_target): Update insn offsets.
6291         (ppc64_skip_trampoline_code): Use a single insn buffer.  Match newer
6292         stubs first.  Update calls.
6293
6294 2013-06-04  Yao Qi  <yao@codesourcery.com>
6295
6296         * solib.c (solib_find): Don't need dir separator if path has
6297         drive spec.
6298
6299 2013-06-03  Joel Brobecker  <brobecker@adacore.com>
6300
6301         Revert (indirectly causes a SIGSEGV):
6302         * machoread.c (macho_symfile_read): Assign first cleanup to
6303         'back_to'.
6304
6305 2013-06-03  Yao Qi  <yao@codesourcery.com>
6306
6307         * mi/mi-cmd-var.c (mi_no_values, mi_simple_values): Move to
6308         mi-parse.c.  Make them static.
6309         (mi_all_values): Likewise.
6310         (mi_parse_values_option): Move to mi-parse.c.  Rename it to
6311         mi_parse_print_values.  Make it external.
6312         * mi/mi-cmds.h (mi_no_values, mi_simple_values, mi_all_values):
6313         Remove the declarations.
6314         * mi/mi-parse.c (mi_parse_print_values): Moved from mi-cmd-var.c.
6315         * mi/mi-parse.h (mi_parse_print_values): Declare.
6316         * mi/mi-cmd-stack.c: Include mi-parse.h.
6317         (parse_print_values): Remove
6318         (mi_cmd_stack_list_locals): Call mi_parse_print_values instead
6319         of parse_print_values.
6320         (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Likewise.
6321
6322 2013-05-31  Pedro Alves  <pedro@codesourcery.com>
6323             Yao Qi  <yao@codesourcery.com>
6324
6325         * tracepoint.c (all_tracepoint_actions_and_cleanup): Declare.
6326         (encode_actions): Move code to ...
6327         (all_tracepoint_actions_and_cleanup): ... here.  New.
6328         (trace_dump_command): Likewise.
6329
6330 2013-05-30  Tom Tromey  <tromey@redhat.com>
6331
6332         * symmisc.c (maintenance_expand_symtabs): Call do_cleanups.
6333
6334 2013-05-30  Tom Tromey  <tromey@redhat.com>
6335
6336         * xml-support.c (gdb_xml_create_parser_and_cleanup): Rename from
6337         gdb_xml_create_parser_and_cleanup_1.  Return a cleanup.  Remove
6338         'old_chain' argument.  Add 'parser_result' argument.
6339         (gdb_xml_create_parser_and_cleanup): Remove old version.
6340         (gdb_xml_parse_quick): Update.
6341         (xml_process_xincludes): Update.
6342         * xml-support.h (gdb_xml_create_parser_and_cleanup): Don't
6343         declare.
6344
6345 2013-05-30  Tom Tromey  <tromey@redhat.com>
6346
6347         * probe.c (collect_probes): Check arguments for NULL before
6348         calling compile_rx_or_error.
6349         * utils.c (compile_rx_or_error): Require 'rx' to be non-NULL.
6350         Remove NULL return.
6351
6352 2013-05-30  Tom Tromey  <tromey@redhat.com>
6353
6354         * infrun.c (adjust_pc_after_break): Introduce an outer null
6355         cleanup.
6356
6357 2013-05-30  Tom Tromey  <tromey@redhat.com>
6358
6359         * mi/mi-cmd-var.c (varobj_update_one): Add an outer null cleanup.
6360
6361 2013-05-30  Tom Tromey  <tromey@redhat.com>
6362
6363         * cli/cli-script.c (read_command_lines_1): Use a null cleanup
6364         for 'old_chain'.  Do not check 'head' before processing
6365         cleanups.
6366
6367 2013-05-30  Tom Tromey  <tromey@redhat.com>
6368
6369         * mi/mi-cmd-stack.c (list_arg_or_local): Remove
6370         "cleanup_tuple".
6371
6372 2013-05-30  Tom Tromey  <tromey@redhat.com>
6373
6374         * dbxread.c (dbx_read_symtab): Declare 'back_to' in a more
6375         inner scope.  Unconditionally call do_cleanups.
6376
6377 2013-05-30  Tom Tromey  <tromey@redhat.com>
6378
6379         * source.c (find_and_open_source): Call do_cleanups.
6380
6381 2013-05-30  Tom Tromey  <tromey@redhat.com>
6382
6383         * linux-thread-db.c (thread_db_load_search): Unconditionally
6384         call do_cleanups.
6385
6386 2013-05-30  Tom Tromey  <tromey@redhat.com>
6387
6388         * solib-aix.c (solib_aix_bfd_open): Don't use a null cleanup
6389         for 'cleanup'; instead use a later one.
6390
6391 2013-05-30  Tom Tromey  <tromey@redhat.com>
6392
6393         * python/py-breakpoint.c (bppy_get_commands): Use
6394         explicit, unconditional return.
6395         * python/py-frame.c (frapy_read_var): Likewise.
6396         * python/python.c (gdbpy_decode_line): Likewise.
6397
6398 2013-05-30  Tom Tromey  <tromey@redhat.com>
6399
6400         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
6401         do_cleanups on all return paths.
6402
6403 2013-05-30  Tom Tromey  <tromey@redhat.com>
6404
6405         * top.c (execute_command): Discard 'cleanup_if_error' cleanups.
6406
6407 2013-05-30  Tom Tromey  <tromey@redhat.com>
6408
6409         * stabsread.c (read_struct_type): Call do_cleanups along
6410         all return paths.
6411
6412 2013-05-30  Maciej W. Rozycki  <macro@codesourcery.com>
6413
6414         * mips-linux-tdep.c: Adjust formatting throughout.
6415
6416 2013-05-30  Tom Tromey  <tromey@redhat.com>
6417
6418         * mipsread.c (read_alphacoff_dynamic_symtab): Call do_cleanups
6419         along all return paths.
6420
6421 2013-05-30  Tom Tromey  <tromey@redhat.com>
6422
6423         * symfile.c (find_separate_debug_file): Call do_cleanups
6424         along all return paths.
6425
6426 2013-05-30  Tom Tromey  <tromey@redhat.com>
6427
6428         * symtab.c (search_symbols): Introduce a null cleanup for
6429         'retval_chain'.
6430
6431 2013-05-30  Tom Tromey  <tromey@redhat.com>
6432
6433         * python/py-value.c (valpy_binop): Call do_cleanups before
6434         exiting loop.
6435
6436 2013-05-30  Tom Tromey  <tromey@redhat.com>
6437
6438         * python/py-prettyprint.c (print_children): Remove extra
6439         do_cleanups call.
6440
6441 2013-05-30  Tom Tromey  <tromey@redhat.com>
6442
6443         * python/py-frame.c (frapy_read_var): Call do_cleanups along
6444         all return paths.
6445
6446 2013-05-30  Tom Tromey  <tromey@redhat.com>
6447
6448         * python/py-breakpoint.c (bppy_get_commands): Call do_cleanups
6449         along all return paths.
6450
6451 2013-05-30  Tom Tromey  <tromey@redhat.com>
6452
6453         * cli/cli-logging.c (set_logging_redirect): Unconditionally
6454         call do_cleanups.
6455
6456 2013-05-30  Tom Tromey  <tromey@redhat.com>
6457
6458         * varobj.c (c_value_of_root): Call do_cleanups along all
6459         return paths.
6460
6461 2013-05-30  Tom Tromey  <tromey@redhat.com>
6462
6463         * tracepoint.c (trace_dump_command): Unconditionally call
6464         do_cleanups.
6465
6466 2013-05-30  Tom Tromey  <tromey@redhat.com>
6467
6468         * breakpoint.c (output_thread_groups, parse_cmd_to_aexpr): Call
6469         do_cleanups earlier.
6470
6471 2013-05-30  Tom Tromey  <tromey@redhat.com>
6472
6473         * machoread.c (macho_symfile_read): Assign first cleanup to
6474         'back_to'.
6475
6476 2013-05-30  Tom Tromey  <tromey@redhat.com>
6477
6478         * m32r-rom.c (m32r_load): Call do_cleanups at all returns.
6479
6480 2013-05-30  Tom Tromey  <tromey@redhat.com>
6481
6482         * mi/mi-main.c (list_available_thread_groups): Call do_cleanups.
6483
6484 2013-05-30  Tom Tromey  <tromey@redhat.com>
6485
6486         * inf-ptrace.c (inf_ptrace_create_inferior): Unconditionally
6487         call discard_cleanups.
6488         (inf_ptrace_attach): Likewise.
6489
6490 2013-05-30  Tom Tromey  <tromey@redhat.com>
6491
6492         * remote-mips.c (mips_exit_debug): Call do_cleanups on all
6493         return paths.
6494         (mips_initialize): Likewise.
6495         (common_open): Call do_cleanups.
6496
6497 2013-05-30  Tom Tromey  <tromey@redhat.com>
6498
6499         * utils.c (internal_vproblem): Call do_cleanups.
6500
6501 2013-05-30  Tom Tromey  <tromey@redhat.com>
6502
6503         * linespec.c (find_linespec_symbols): Don't reassign to 'cleanup'.
6504
6505 2013-05-30  Tom Tromey  <tromey@redhat.com>
6506
6507         * cli/cli-script.c (setup_user_args): Don't return after error.
6508
6509 2013-05-30  Tom Tromey  <tromey@redhat.com>
6510
6511         * somread.c (som_symtab_read): Call do_cleanups.
6512
6513 2013-05-30  Tom Tromey  <tromey@redhat.com>
6514
6515         * printcmd.c (print_command_1): Unconditionally call do_cleanups.
6516
6517 2013-05-30  Tom Tromey  <tromey@redhat.com>
6518
6519         * cli/cli-cmds.c (cd_command, alias_command): Call do_cleanups.
6520         * cli/cli-dump.c (restore_binary_file): Call do_cleanups.
6521         * interps.c (interpreter_exec_cmd): Call do_cleanups.
6522         * source.c (show_substitute_path_command): Call do_cleanups.
6523         (unset_substitute_path_command, set_substitute_path_command):
6524         Likewise.
6525         * symfile.c (load_command): Call do_cleanups.
6526
6527 2013-05-30  Tom Tromey  <tromey@redhat.com>
6528
6529         * contrib/cleanup_check.py: New file.
6530         * contrib/gcc-with-excheck: Add option parsing.
6531
6532 2013-05-30  Joel Brobecker  <brobecker@adacore.com>
6533
6534         * windows-nat.c (windows_delete_thread): Add missing space
6535         in cast expression.
6536
6537 2013-05-30  Hafiz Abid Qadeer  <abidh@codesourcery.com>
6538
6539         * inferior.c (top level): Include tilde.h.
6540         (add_inferior_command): Call tilde_expand on the value of 'exec'
6541         argument.
6542
6543 2013-05-30  Pedro Alves  <pedro@codesourcery.com>
6544             Yao Qi  <yao@codesourcery.com>
6545
6546         * tracepoint.c (encode_actions_1): Remove parameter 't'.
6547         Caller update.
6548         (encode_actions): Likewise.
6549         * remote.c (remote_download_tracepoint): Caller update.
6550         * tracepoint.h (encode_actions): Update declaration.
6551
6552 2013-05-30  Pedro Alves  <palves@redhat.com>
6553
6554         * python/python-internal.h (gdb_Py_DECREF): Cast OP to PyObject
6555         pointer.
6556
6557 2013-05-30  Yao Qi  <yao@codesourcery.com>
6558
6559         * remote.c (remote_check_symbols): Remove unused parameter
6560         'objfile'.
6561         Declaration update.
6562         (remote_start_remote, remote_new_objfile): Caller update.
6563
6564 2013-05-30  Yao Qi  <yao@codesourcery.com>
6565
6566         * mi/mi-cmds.c (mi_cmds): Define MI command
6567         '-exec-arguments' by macro DEF_MI_CMD_CLI_1 instead of
6568         DEF_MI_CMD_CLI.
6569
6570 2013-05-29  Pedro Alves  <palves@redhat.com>
6571
6572         * remote.c (remote_insert_breakpoint, remote_remove_breakpoint)
6573         (remote_insert_watchpoint, remote_remove_watchpoint)
6574         (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
6575         (remote_verify_memory, compare_sections_command)
6576         (remote_search_memory): Set the general process/thread on the
6577         remote side.
6578
6579 2013-05-29  Pedro Alves  <palves@redhat.com>
6580
6581         * aarch64-tdep.c: Don't include "features/aarch64-without-fpu.c".
6582         (_initialize_aarch64_tdep): Don't call
6583         initialize_tdesc_aarch64_without_fpu.
6584         * features/Makefile (WHICH): Remove reference to
6585         aarch64-without-fpu.
6586         * features/aarch64-without-fpu.c: Delete file.
6587         * regformats/aarch64-without-fpu.dat: Delete file.
6588
6589 2013-05-28  Yao Qi  <yao@codesourcery.com>
6590
6591         * tracepoint.c (stringify_collection_list): Remove parameter
6592         'string'.
6593         (encode_actions): Caller update.  Remove local variables.
6594
6595 2013-05-24  Yao Qi  <yao@codesourcery.com>
6596
6597         * tracepoint.c (TFILE_PID): Remove.
6598         (tfile_open): Don't add thread and inferior.
6599         (tfile_close): Don't set 'inferior_ptid'.  Don't call
6600         exit_inferior_silent.
6601         (tfile_thread_alive): Remove.
6602         (init_tfile_ops): Don't set field 'to_thread_alive' of
6603         tfile_ops.
6604
6605 2013-05-23  Doug Evans  <dje@google.com>
6606
6607         * contrib/cc-with-tweaks.sh (-p): Handle no dwo files.
6608
6609 2013-05-23  Pedro Alves  <palves@redhat.com>
6610
6611         * common/filestuff.c [USE_WIN32API]: Define HAVE_SOCKETS.
6612         [HAVE_SYS_SOCKET_H]: Define HAVE_SOCKETS.
6613         (socket_mark_cloexec, gdb_socketpair_cloexec, gdb_socket_cloexec):
6614         Only define if HAVE_SOCKETS is defined.
6615         * configure.ac: Check for sys/socket.h.
6616         * config.in, configure: Regenerate.
6617
6618 2013-05-23  Pedro Alves  <palves@redhat.com>
6619
6620         * dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
6621         (open_and_init_dwp_file): Use %s/pulongest instead of %u for
6622         printing uint32_t variables.
6623
6624 2013-05-23  Pedro Alves  <palves@redhat.com>
6625
6626         * NEWS: Mention GDBserver range stepping support.
6627
6628 2013-05-23  Yao Qi  <yao@codesourcery.com>
6629             Pedro Alves  <palves@redhat.com>
6630
6631         * gdbthread.h (struct thread_control_state) <may_range_step>: New
6632         field.
6633         * infcmd.c (step_once, until_next_command): Enable range stepping.
6634         * infrun.c (displaced_step_prepare): Disable range stepping.
6635         (resume): Disable range stepping if stepping over a breakpoint or
6636         we have software watchpoints.  If range stepping is enabled,
6637         assert the thread is in the stepping range.
6638         (clear_proceed_status_thread): Clear may_range_step.
6639         (handle_inferior_event): Disable range stepping as soon as we know
6640         the thread that hit the event.  Re-enable it whenever we're going
6641         to step with a step range.
6642         * remote.c (struct vCont_action_support) <r>: New field.
6643         (use_range_stepping): New global.
6644         (remote_vcont_probe): Handle 'r' action.
6645         (append_resumption): Append an 'r' action if the thread may range
6646         step.
6647         (show_range_stepping): New function.
6648         (set_range_stepping): New function.
6649         (_initialize_remote): Call add_setshow_boolean_cmd to register the
6650         'set range-stepping' and 'show range-stepping' commands.
6651         * NEWS: Mention range stepping, the new vCont;r action, and the
6652         new "set/show range-stepping" commands.
6653
6654 2013-05-23  Yao Qi  <yao@codesourcery.com>
6655             Pedro Alves  <palves@redhat.com>
6656
6657         * remote.c (struct vCont_action_support): New struct.
6658         (struct remote_state) <support_vCont_t>: Remove field.
6659         <vCont_actions_support>: New field.
6660         (remote_vcont_probe, remote_stop_ns): Update.
6661
6662 2013-05-23  Yao Qi  <yao@codesourcery.com>
6663             Pedro Alves  <palves@redhat.com>
6664
6665         * gdbthread.h (pc_in_thread_step_range): New declaration.
6666         * thread.c (pc_in_thread_step_range): New function.
6667         * infrun.c (handle_inferior_event): Use it.
6668
6669 2013-05-23  Joel Brobecker  <brobecker@adacore.com>
6670
6671         * mi/mi-cmd-break.c (mi_argv_to_format): Use xsnprintf instead
6672         of sprintf.
6673
6674 2013-05-22  Keith Seitz  <keiths@redhat.com>
6675
6676         * ada-lang.c (is_known_support_routine): Add explicit free of
6677         'func_name' from find_frame_funname.
6678         (ada_unhandled_exception_name_addr_from_raise): Add cleanups
6679         for func_name from find_frame_funname.
6680         * python/py-frame.c (frapy_name): Add explicit free of
6681         'name' from find_frame_funname.
6682         * stack.c (find_frame_funname): Add comment explaining that
6683         funcp must be freed by the caller.
6684         Return copy of symbol names instead of pointers.
6685         (print_frame): Add a cleanup for 'funname' from
6686         find_frame_funname.
6687         * stack.h (find_frame_funname): Remove "const" from
6688         'funname' parameter.
6689
6690 2013-05-22  Tom Tromey  <tromey@redhat.com>
6691
6692         PR c++/15401:
6693         * c-valprint.c (c_value_print): Use value_addr for
6694         references.  Convert back to reference type with value_ref.
6695
6696 2013-05-22  Eli Zaretskii  <eliz@gnu.org>
6697
6698         * windows-nat.c (handle_unload_dll): Don't call solib_add for the
6699         unloaded DLL, it will be done by handle_solib_event.  See
6700         http://sourceware.org/ml/gdb-patches/2013-05/msg00713.html for the
6701         details.
6702
6703 2013-05-22  Phil Muldoon  <pmuldoon@redhat.com>
6704
6705         * ui-out.c: Create typedef ui_out_level_p and define vector
6706         operations for that type.
6707         (struct ui_out): Use a vector instead of an array.
6708         (current_level): Return level from a vector.
6709         (push_level): Create a level in a vector.
6710         (pop_level): Delete a level in a vector.
6711         (ui_out_new): Create initial level zero level, and store in a
6712         vector.
6713         (ui_out_destroy): Add vector cleanup.
6714
6715 2013-05-22  Pedro Alves  <palves@redhat.com>
6716
6717         * python/python-internal.h (gdb_Py_DECREF): Tag with
6718         "ARI: editCase function".
6719
6720 2013-05-21  Paul Pluzhnikov  <ppluzhnikov@google.com>
6721
6722         * solib-svr4.c (svr4_free_so): Protect against NULL dereference.
6723
6724 2013-05-21  Pedro Alves  <palves@redhat.com>
6725
6726         * python/py-prettyprint.c (apply_val_pretty_printer): Check
6727         whether PRINTER is NULL before installing a Py_DECREF cleanup.
6728         * python/py-utils.c (py_decref): Don't check for NULL before
6729         calling Py_DECREF.
6730
6731 2013-05-21  Pedro Alves  <palves@redhat.com>
6732
6733         * python/py-utils.c (py_decref): Remove extra braces.
6734         (gdb_pymodule_addobject): Remove extra braces.
6735         * python-internal.h (gdb_Py_DECREF): New static inline function.
6736         (Py_DECREF): Redefine as calling gdb_Py_DECREF.
6737
6738 2013-05-21  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
6739
6740         * breakpoints.c (detach_breakpoints): Do not
6741         detach breakpoints locations with loc_type bp_loc_other.
6742
6743 2013-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
6744
6745         Workaround Python 2.6.
6746         * python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
6747         a block.
6748
6749 2013-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
6750
6751         Code cleanup: constification.
6752         * solib.c (solib_ops): Make return type and ops variable type const.
6753         (set_solib_ops): Make the new_ops parameter and ops variable const.
6754         (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
6755         (solib_add, solib_keep_data_in_core, clear_solib)
6756         (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
6757         (reload_shared_libraries, solib_global_lookup): Make the ops variable
6758         const.
6759         * solib.h (set_solib_ops): Make the new_ops parameter const.
6760
6761 2013-05-21  Joel Brobecker  <brobecker@adacore.com>
6762
6763         * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
6764         variable.
6765         (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
6766         (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
6767         (SYSTEM_GDBINIT_FILES): New variables.
6768         (all): Add stamp-system-gdbinit.
6769         (stamp-system-gdbinit): New rule.
6770         (clean-system-gdbinit, install-system-gdbinit)
6771         (uninstall-system-gdbinit): New rules.  Make them .PHONY.
6772         (install-only): Add dependency on install-system-gdbinit.
6773         (uninstall): Add dependency on uninstall-system-gdbinit.
6774         (clean): Add dependency on clean-system-gdbinit.
6775         * system-gdbinit/elinos.py: New file.
6776         * system-gdbinit/wrs-linux.py: New file.
6777
6778 2013-05-21  Joel Brobecker  <brobecker@adacore.com>
6779
6780         * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
6781
6782 2013-05-21  Hui Zhu  <hui@codesourcery.com>
6783
6784         * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
6785         * breakpoint.h (dprintf_breakpoint_ops): Add extern.
6786         * mi/mi-cmd-break.c (ctype.h): New include.
6787         (gdb_obstack.h): New include.
6788         (mi_argv_to_format, mi_cmd_break_insert_1): New.
6789         (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
6790         (mi_cmd_dprintf_insert): New.
6791         * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
6792         * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
6793
6794 2013-05-20  Tom Tromey  <tromey@redhat.com>
6795
6796         * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
6797
6798 2013-05-20  Tom Tromey  <tromey@redhat.com>
6799
6800         * python/py-value.c (valpy_get_dynamic_type): Simplify
6801         dynamic_type assignment.  Use Py_XINCREF.
6802
6803 2013-05-20  Tom Tromey  <tromey@redhat.com>
6804
6805         * python/py-type.c (typy_fields): Unconditionally decref 'r'.
6806
6807 2013-05-20  Tom Tromey  <tromey@redhat.com>
6808
6809         * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
6810         (gdbpy_selected_frame): Move object-construction code
6811         out of TRY_CATCH.
6812
6813 2013-05-20  Tom Tromey  <tromey@redhat.com>
6814
6815         * python/py-arch.c (gdbpy_initialize_arch): Use
6816         gdb_pymodule_addobject.
6817         * python/py-block.c (gdbpy_initialize_blocks): Use
6818         gdb_pymodule_addobject.
6819         * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
6820         gdb_pymodule_addobject.
6821         * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
6822         gdb_pymodule_addobject.
6823         * python/py-event.c (gdbpy_initialize_event_generic): Use
6824         gdb_pymodule_addobject.
6825         * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
6826         gdb_pymodule_addobject.
6827         * python/py-evts.c (add_new_registry): Use
6828         gdb_pymodule_addobject.
6829         (gdbpy_initialize_py_events): Likewise.
6830         * python/py-finishbreakpoint.c
6831         (gdbpy_initialize_finishbreakpoints): Use
6832         gdb_pymodule_addobject.
6833         * python/py-frame.c (gdbpy_initialize_frames): Use
6834         gdb_pymodule_addobject.
6835         * python/py-function.c (gdbpy_initialize_functions): Use
6836         gdb_pymodule_addobject.
6837         * python/py-inferior.c (gdbpy_initialize_inferior): Use
6838         gdb_pymodule_addobject.
6839         * python/py-infthread.c (gdbpy_initialize_thread): Use
6840         gdb_pymodule_addobject.
6841         * python/py-objfile.c (gdbpy_initialize_objfile): Use
6842         gdb_pymodule_addobject.
6843         * python/py-param.c (gdbpy_initialize_parameters): Use
6844         gdb_pymodule_addobject.
6845         * python/py-progspace.c (gdbpy_initialize_pspace): Use
6846         gdb_pymodule_addobject.
6847         * python/py-symbol.c (gdbpy_initialize_symbols): Use
6848         gdb_pymodule_addobject.
6849         * python/py-symtab.c (gdbpy_initialize_symtabs): Use
6850         gdb_pymodule_addobject.
6851         * python/py-type.c (gdbpy_initialize_types): Use
6852         gdb_pymodule_addobject.
6853         * python/py-utils.c (gdb_pymodule_addobject): New function.
6854         * python/py-value.c (gdbpy_initialize_values): Use
6855         gdb_pymodule_addobject.
6856         * python/python-internal.h (gdb_pymodule_addobject): Declare.
6857         * python/python.c (_initialize_python): Use
6858         gdb_pymodule_addobject.
6859
6860 2013-05-20  Tom Tromey  <tromey@redhat.com>
6861
6862         * python/py-cmd.c (cmdpy_completer): Use explicit decref.
6863         * python/py-param.c (get_set_value, get_show_value): Use
6864         explicit decrefs.
6865         * python/python.c (start_type_printers, apply_type_printers):
6866         Use explicit decrefs.
6867
6868 2013-05-20  Tom Tromey  <tromey@redhat.com>
6869
6870         * python/py-evts.c (gdbpy_initialize_py_events): Don't
6871         incref the module.
6872
6873 2013-05-20  Tom Tromey  <tromey@redhat.com>
6874
6875         * python/python.c (gdbpy_run_events): Decref the result
6876         of PyObject_CallObject.
6877
6878 2013-05-20  Tom Tromey  <tromey@redhat.com>
6879
6880         * python/py-symtab.c (set_sal): Use
6881         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.  Return -1 on error.
6882         (symtab_and_line_to_sal_object): Update.
6883
6884 2013-05-20  Tom Tromey  <tromey@redhat.com>
6885
6886         * python/py-param.c (compute_enum_values): Decref 'item'.
6887
6888 2013-05-20  Tom Tromey  <tromey@redhat.com>
6889
6890         * mi/mi-main.c: Include python-internal.h.
6891         (mi_cmd_list_features): Check gdb_python_initialized.
6892         * python/py-inferior.c (python_on_normal_stop, python_on_resume)
6893         (python_inferior_exit, python_new_objfile, add_thread_object)
6894         (delete_thread_object, py_free_inferior): Check
6895         gdb_python_initialized.
6896         * python/py-prettyprint.c (apply_val_pretty_printer): Check
6897         gdb_python_initialized.
6898         * python/py-type.c (save_objfile_types): Check
6899         gdb_python_initialized.
6900         * python/python-internal.h (gdb_python_initialized): Declare.
6901         * python/python.c (ensure_python_env): Throw exception if
6902         Python not initialized.
6903         (before_prompt_hook, source_python_script_for_objfile)
6904         (start_type_printers, apply_type_printers,
6905         free_type_printers): Check gdb_python_initialized.
6906         * varobj.c (varobj_get_display_hint)
6907         (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
6908         (install_new_value_visualizer, varobj_set_visualizer)
6909         (value_get_print_value): Check gdb_python_initialized.
6910
6911 2013-05-20  Tom Tromey  <tromey@redhat.com>
6912
6913         * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
6914         Check errors.
6915         * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
6916         * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
6917         Check errors.
6918         * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
6919         Check errors.
6920         * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
6921         Check errors.
6922         * python/py-event.c (gdbpy_initialize_event): Return 'int'.
6923         Check errors.
6924         * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
6925         init function to return 'int'.
6926         * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
6927         Return 'int'.  Check errors.
6928         * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
6929         Check errors.
6930         * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
6931         Return 'int'.  Check errors.
6932         * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
6933         Check errors.
6934         * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
6935         Check errors.
6936         * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
6937         Check errors.
6938         * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
6939         Check errors.
6940         * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
6941         Check errors.
6942         * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
6943         Check errors.
6944         * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
6945         Check errors.
6946         * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
6947         Check errors.
6948         * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
6949         Check errors.
6950         * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
6951         Check errors.
6952         * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
6953         Check errors.
6954         * python/py-type.c (gdbpy_initialize_types): Return 'int'.
6955         Check errors.
6956         * python/py-value.c (gdbpy_initialize_values): Return 'int'.
6957         Check errors.
6958         * python/python-internal.h (gdbpy_initialize_auto_load,
6959         gdbpy_initialize_values, gdbpy_initialize_frames,
6960         gdbpy_initialize_symtabs, gdbpy_initialize_commands,
6961         gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
6962         gdbpy_initialize_blocks, gdbpy_initialize_types,
6963         gdbpy_initialize_functions, gdbpy_initialize_pspace,
6964         gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
6965         gdbpy_initialize_finishbreakpoints,
6966         gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
6967         gdbpy_initialize_thread, gdbpy_initialize_inferior,
6968         gdbpy_initialize_eventregistry, gdbpy_initialize_event,
6969         gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
6970         gdbpy_initialize_signal_event,
6971         gdbpy_initialize_breakpoint_event,
6972         gdbpy_initialize_continue_event,
6973         gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
6974         gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
6975         Update.  Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
6976         * python/python.c (gdb_python_initialized): New global.
6977         (gdbpy_initialize_events): Return 'int'.  Check errors.
6978         (_initialize_python): Check errors.  Set
6979         gdb_python_initialized.
6980
6981 2013-05-20  Tom Tromey  <tromey@redhat.com>
6982
6983         * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
6984         Decref the reslut of PyObject_CallMethod.
6985
6986 2013-05-20  Tom Tromey  <tromey@redhat.com>
6987
6988         * python/py-event.c (gdbpy_initialize_event_generic): Return
6989         early if PyType_Ready fails.
6990
6991 2013-05-20  Tom Tromey  <tromey@redhat.com>
6992
6993         * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
6994         as 'default' in the switch.
6995
6996 2013-05-20  Tom Tromey  <tromey@redhat.com>
6997
6998         * python/py-inferior.c (gdbpy_inferiors): Update.  Hoist
6999         get_addr_from_python calls out of TRY_CATCH.
7000         (infpy_write_memory, infpy_search_memory): Likewise.
7001         * python/py-utils.c (get_addr_from_python): Return negative
7002         value on error.  Use TRY_CATCH.
7003         * python/python-internal.h (get_addr_from_python): Use
7004         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
7005
7006 2013-05-20  Tom Tromey  <tromey@redhat.com>
7007
7008         * python/py-event.c (evpy_emit_event): Decref the
7009         result of PyObject_CallFunctionObjArgs.
7010
7011 2013-05-20  Tom Tromey  <tromey@redhat.com>
7012
7013         * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
7014         Correctly decref.
7015
7016 2013-05-20  Tom Tromey  <tromey@redhat.com>
7017
7018         * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
7019
7020 2013-05-20  Tom Tromey  <tromey@redhat.com>
7021
7022         * python/py-event.h (gdbpy_initialize_event_generic): Use
7023         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
7024         * python/py-evts.c (add_new_registry): Use
7025         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
7026         * python/python-internal.h
7027         (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
7028
7029 2013-05-20  Tom Tromey  <tromey@redhat.com>
7030
7031         * python/py-arch.c (archpy_disassemble): Update.
7032         * python/py-type.c (typy_get_composite, typy_lookup_typename)
7033         (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
7034         * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
7035         * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
7036         macro.
7037         (GDB_PY_HANDLE_EXCEPTION): Update.
7038         (gdbpy_convert_exception): Update.  Use CPYCHECKER_SETS_EXCEPTION.
7039
7040 2013-05-20  Tom Tromey  <tromey@redhat.com>
7041
7042         * python/python-internal.h (events_object_type): Remove.
7043
7044 2013-05-20  Tom Tromey  <tromey@redhat.com>
7045
7046         * python/py-event.h (evpy_emit_event): Use
7047         CPYCHECKER_STEALS_REFERENCE_TO_ARG.
7048         * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
7049         New macro.
7050
7051 2013-05-20  Tom Tromey  <tromey@redhat.com>
7052
7053         * py-evtregistry.c (create_event_object): Decref
7054         eventregistry_object if PyList_New fails.
7055
7056 2013-05-20  Tom Tromey  <tromey@redhat.com>
7057
7058         * py-cmd.c (gdbpy_string_to_argv): Check result of
7059         PyList_New.
7060
7061 2013-05-20  Tom Tromey  <tromey@redhat.com>
7062
7063         * python/python.c (before_prompt_hook): Add cleanup to
7064         decref 'hook'.
7065
7066 2013-05-20  Tom Tromey  <tromey@redhat.com>
7067
7068         * python/py-function.c (fnpy_init): Decref result of
7069         PyObject_GetAttrString.
7070
7071 2013-05-20  Tom Tromey  <tromey@redhat.com>
7072
7073         * python/py-threadevent.c (get_event_thread): Use
7074         CPYCHECKER_RETURNS_BORROWED_REF.
7075         * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
7076         New define.
7077         (pspace_to_pspace_object, objfile_to_objfile_object)
7078         (find_thread_object): Use it.
7079
7080 2013-05-20  Tom Tromey  <tromey@redhat.com>
7081
7082         * python/py-arch.c (arch_object_type): Use
7083         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7084         * python/py-block.c (block_syms_iterator_object_type):
7085         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7086         * python/py-bpevent.c (breakpoint_event_object_type):
7087         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7088         * python/py-cmd.c (cmdpy_object_type): Use
7089         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7090         * python/py-continueevent.c (continue_event_object_type):
7091         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7092         * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
7093         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7094         * python/py-events.h (thread_event_object_type):
7095         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7096         * python/py-evtregistry.c (eventregistry_object_type): Use
7097         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7098         * python/py-exitedevent.c (exited_event_object_type):
7099         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7100         * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
7101         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7102         * python/py-function.c (fnpy_object_type): Use
7103         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7104         * python/py-inferior.c (inferior_object_type, membuf_object_type):
7105         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7106         * python/py-infthread.c (thread_object_type): Use
7107         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7108         * python/py-lazy-string.c (lazy_string_object_type):
7109         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7110         * python/py-newobjfileevent.c (new_objfile_event_object_type):
7111         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7112         * python/py-objfile.c (objfile_object_type): Use
7113         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7114         * python/py-param.c (parmpy_object_type):
7115         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7116         * python/py-progspace.c (pspace_object_type):
7117         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7118         * python/py-signalevent.c (signal_event_object_type):
7119         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7120         * python/py-symtab.c (symtab_object_type, sal_object_type): Use
7121         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7122         * python/py-type.c (type_object_type, field_object_type)
7123         (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7124         * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
7125         define.
7126         (value_object_type, block_object_type, symbol_object_type)
7127         (event_object_type, stop_event_object_type, breakpoint_object_type)
7128         (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7129
7130 2013-05-20  Andreas Tobler  <andreas@fgznet.ch>
7131
7132         * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
7133         (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
7134
7135 2013-05-20  Doug Evans  <dje@google.com>
7136
7137         When reading CU, stay in DWO.  Be more tolerent of bad debug info.
7138         For Fission.
7139         * dwarf2read.c (struct dwarf2_per_cu_data): New member
7140         reading_dwo_directly.
7141         (struct signatured_type): New member dwo_unit.
7142         (struct die_reader_specs): New member comp_dir.
7143         (create_signatured_type_table_from_index): Use malloc for
7144         all_type_units instead of objfile's obstack.
7145         (create_all_type_units): Ditto.
7146         (fill_in_sig_entry_from_dwo_entry): New function.
7147         (add_type_unit): New function.
7148         (lookup_dwo_signatured_type): New function.
7149         (lookup_dwp_signatured_type): New function.
7150         (lookup_signatured_type): New arg cu.  All callers updated.
7151         (init_cu_die_reader): Initialize comp_dir.
7152         (read_cutu_die_from_dwo): New arg stub_comp_dir.  All callers updated.
7153         Change assert of matching type signatures to call error on mismatch.
7154         (lookup_dwo_unit): Add assert.
7155         (init_tu_and_read_dwo_dies): New function.
7156         (init_cutu_and_read_dies): Call it.
7157         (build_type_unit_groups): Handle case of no type unit groups created.
7158         (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
7159         (lookup_dwo_cutu): Tweak complaint.
7160         (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
7161         (dwarf2_per_objfile_free): Free all_type_units.
7162
7163 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
7164
7165         * windows-nat.c (handle_unload_dll): Add missing empty line.
7166
7167 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
7168
7169         * dwarf2read.c (prototyped_function_p): New function.
7170         (read_subroutine_type): Use it.
7171
7172 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
7173
7174         * rs6000-aix-tdep.c: De-indent some example code provided
7175         as a comment.
7176
7177 2013-05-17  Edjunior Machado  <emachado@linux.vnet.ibm.com>
7178
7179         * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
7180         region is ok for a hardware watchpoint using the new ptrace interface
7181         on Power servers.
7182
7183 2013-05-17  Doug Evans  <dje@google.com>
7184
7185         * NEWS: Mention new maintenance commands check-symtabs, and
7186         expand-symtabs, and renamed check-psymtabs.
7187         * psymtab.c (maintenance_check_psymtabs): Renamed from
7188         maintenance_check_symtabs.  Only process already-expanded symbol
7189         tables.
7190         (_initialize_psymtab): Update.
7191         * symmisc.c (maintenance_check_symtabs): New function.
7192         (maintenance_expand_name_matcher): New function
7193         (maintenance_expand_file_matcher): New function
7194         (maintenance_expand_symtabs): New function.
7195         (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
7196         commands.
7197
7198 2013-05-17  Tom Tromey  <tromey@redhat.com>
7199
7200         * python/py-inferior.c (infpy_read_memory): Don't call
7201         PyErr_SetString if PyObject_New fails.
7202         * python/py-frame.c (frame_info_to_frame_object): Don't call
7203         PyErr_SetString if PyObject_New fails.
7204
7205 2013-05-17  Pavel Chupin  <pavel.v.chupin@intel.com>
7206
7207         * acinclude.m4: Add check for dlopen in libdl.
7208         * configure.ac: Ditto.
7209         * configure: Regenerate.
7210
7211 2013-05-17  Phil Muldoon  <pmuldoon@redhat.com>
7212
7213         * frame.c (frame_stash): Convert to htab.
7214         (frame_addr_hash): New function.
7215         (frame_addr_hash_eq): New function.
7216         (frame_stash_create): Convert function to create
7217         a hash table.
7218         (frame_stash_add): Convert function to add an entry to a hash
7219         table.
7220         (frame_stash_find): Convert function to search the hash table.
7221         (frame_stash_invalidate): Convert function to empty the hash
7222         table.
7223         (get_frame_id): Only add to stash if a frame_id is created.
7224         (_initialize_frame): Call frame_stash_create.
7225
7226 2013-05-16  Yue Lu  <hacklu.newborn@gmail.com>  (tiny change)
7227
7228         * configure.ac: Ensure MIG is available when building for GNU Hurd
7229         hosts.
7230         * configure: Regenerate.
7231
7232 2013-05-16  Joel Brobecker  <brobecker@adacore.com>
7233
7234         * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
7235
7236 2013-05-16  Joel Brobecker  <brobecker@adacore.com>
7237
7238         * ada-lang.c (ada_make_symbol_completion_list): Make sure
7239         all cleanups are done before returning from this function.
7240
7241 2013-05-15  Joel Brobecker  <brobecker@adacore.com>
7242
7243         * utils.h: #include "exceptions.h".
7244         (enum errors): Remove partial declaration.
7245
7246 2013-05-15  Joel Brobecker  <brobecker@adacore.com>
7247
7248         * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
7249         * gdbarch.h, gdbarch.c: Regenerate.
7250         * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
7251         handling.
7252
7253         * rs6000-aix-tdep.h: New file.
7254         * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
7255         * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
7256         "xml-utils.h".
7257         (struct field_info, struct ld_info_desc): New types.
7258         (ld_info32_desc, ld_info64_desc): New static constants.
7259         (struct ld_info): New type.
7260         (rs6000_aix_extract_ld_info): New function.
7261         (rs6000_aix_shared_library_to_xml): Likewise.
7262         (rs6000_aix_ld_info_to_xml): Likewise.
7263         (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
7264         (rs6000_aix_init_osabi): Add call to
7265         set_gdbarch_core_xfer_shared_libraries_aix.
7266         * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
7267         Remove "xml-utils.h" include.
7268         (LdInfo): Delete typedef.
7269         (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
7270         Delete macros.
7271         (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
7272         Adjust code accordingly.
7273         (rs6000_core_ldinfo): Delete, folded into
7274         rs6000_aix_core_xfer_shared_libraries_aix.
7275         (rs6000_xfer_shared_library): Delete.
7276         (rs6000_xfer_shared_libraries): Reimplement.
7277
7278 2013-05-15  Markus Metzger  <markus.t.metzger@intel.com>
7279
7280         * record.c (record_goto_cmdlist): New.
7281         (cmd_record_goto): Split into this ...
7282         (cmd_record_goto_begin): ... this
7283         (cmd_record_goto_end): ... and this.
7284         (_initialize_record): Change "record goto" to prefix command.
7285         Add commands for "record goto begin" and "record goto end".
7286         Add an alias for "record goto start" to "record goto begin".
7287
7288 2013-05-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
7289
7290         * linespec.c (convert_linespec_to_sals): New comment for
7291         SOURCE_FILENAME assignment.
7292
7293 2013-05-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
7294
7295         * cleanups.c (restore_my_cleanups): Replace gdb_assert by
7296         internal_warning.
7297
7298 2013-05-14  Tom Tromey  <tromey@redhat.com>
7299
7300         * eval.c (parse_and_eval_long): Make 'exp' const.
7301         * value.h (parse_and_eval_long): Update.
7302
7303 2013-05-14  Tom Tromey  <tromey@redhat.com>
7304
7305         * ui-file.c (gdb_fopen): Make arguments const.
7306         * ui-file.h (gdb_fopen): Make arguments const.
7307
7308 2013-05-14  Tom Tromey  <tromey@redhat.com>
7309
7310         * remote.c (remote_set_trace_notes): Make arguments const.
7311         * target.c (update_current_target): Update cast.
7312         * target.h (to_set_trace_notes): Make arguments const.
7313
7314 2013-05-14  Tom Tromey  <tromey@redhat.com>
7315
7316         * go32-nat.c (go32_terminal_info): Make 'args' const.
7317         * inferior.h (child_terminal_info): Update.
7318         * inflow.c (child_terminal_info): Make 'args' const.
7319         * target.c (default_terminal_info): Make 'args' const.
7320         (debug_to_terminal_save_ours): Likewise.
7321         * target.h (struct target_ops) <to_terminal_info>: Make argument
7322         const.
7323
7324 2013-05-13  Tom Tromey  <tromey@redhat.com>
7325
7326         * gcore.c (create_gcore_bfd): Make 'filename' const.
7327         * gcore.h (create_gcore_bfd): Make 'filename' const.
7328         * record-full.c (record_full_save): Make 'recfilename' const.
7329         * target.c (target_save_record): Make 'filename' const.
7330         * target.h (struct target_ops) <to_save_record>: Make 'filename'
7331         const.
7332         (target_save_record): Likewise.
7333
7334 2013-05-13  Tom Tromey  <tromey@redhat.com>
7335
7336         PR gdb/15338:
7337         * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
7338         ranges section has been read.
7339
7340 2013-05-13  Tom Tromey  <tromey@redhat.com>
7341
7342         PR exp/15364:
7343         * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
7344         STRUCTOP_PTR>: Return a not_lval value for
7345         EVAL_AVOID_SIDE_EFFECTS.
7346         * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
7347         for EVAL_AVOID_SIDE_EFFECTS.
7348
7349 2013-05-13  Joel Brobecker  <brobecker@adacore.com>
7350
7351         * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
7352         floating point registers to register type before storing
7353         value.
7354         * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
7355         Likewise.
7356
7357 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
7358             Tom Tromey  <tromey@redhat.com>
7359
7360         * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
7361         New functions.
7362         * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
7363         Declare.
7364         * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
7365         (darwin_ptrace_him): Use unmark_fd_no_cloexec.
7366         * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
7367         (inf_ttrace_prepare): Use mark_fd_no_cloexec.
7368
7369 2013-05-10  Freddie Chopin  <freddie_chopin@op.pl>
7370             Tom Tromey  <tromey@redhat.com>
7371
7372         PR build/15414:
7373         * configure: Rebuild.
7374         * configure.ac (build_warnings): Do not use -Wformat-nonliteral
7375         with -Wno-format.
7376
7377 2013-05-10  Pedro Alves  <palves@redhat.com>
7378
7379         * remote.c (_initialize_remote): Fix spelling of
7380         qXfer:traceframe-info:read packet in packet config command.
7381
7382 2013-05-10  David Taylor  <dtaylor@emc.com>
7383
7384         PR remote/15455
7385
7386         * remote.c (remote_trace_set_readonly_regions): Do not overwrite
7387         "QTro" at start of packet.
7388
7389 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
7390
7391         * solib-aix.c (solib_aix_relocate_section_addresses):
7392         For the .bss section action, apply the same offset as
7393         the .data section.
7394
7395 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
7396
7397         * solib-aix.c (solib_aix_relocate_section_addresses):
7398         Remove FIXME comment.
7399
7400 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
7401
7402         PR tdep/15420:
7403         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
7404         New functions, directly copied from sparc-sol-thread.c.
7405         * sparc-sol-thread.c: Delete.
7406         * configure.ac: Remove code handling sparc-solaris-thread.c.
7407         * configure: Regenerate.
7408
7409 2013-05-10  Phil Muldoon  <pmuldoon@redhat.com>
7410
7411         * stack.c (backtrace_command_1): Add "no-filters", and Python frame
7412         filter logic.
7413         (backtrace_command): Add "no-filters" option parsing.
7414         (_initialize_stack): Alter help to reflect "no-filters" option.
7415         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
7416         (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
7417         (py-frame.o): Add target
7418         * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
7419         filter files.
7420         * python/python.h: Add new frame filter constants, and flag enum.
7421         (apply_frame_filter): Add definition.
7422         * python/python.c (apply_frame_filter): New non-Python
7423         enabled function.
7424         * python/py-utils.c (py_xdecref): New function.
7425         (make_cleanup_py_xdecref): Ditto.
7426         * python/py-objfile.c: Declare frame_filters dictionary.
7427         (objfpy_dealloc): Add frame_filters dealloc.
7428         (objfpy_new): Initialize frame_filters attribute.
7429         (objfile_to_objfile_object): Ditto.
7430         (objfpy_get_frame_filters): New function.
7431         (objfpy_set_frame_filters): New function.
7432         * python/py-progspace.c: Declare frame_filters dictionary.
7433         (pspy_dealloc): Add frame_filters dealloc.
7434         (pspy_new): Initialize frame_filters attribute.
7435         (pspacee_to_pspace_object): Ditto.
7436         (pspy_get_frame_filters): New function.
7437         (pspy_set_frame_filters): New function.
7438         * python/py-framefilter.c: New file.
7439         * python/lib/gdb/command/frame_filters.py: New file.
7440         * python/lib/gdb/frames.py: New file.
7441         * python/lib/gdb/__init__.py: Initialize global frame_filters
7442         dictionary
7443         * python/lib/gdb/FrameDecorator.py: New file.
7444         * python/lib/gdb/FrameIterator.py: New file.
7445         * mi/mi-cmds.c (mi_cmds): Add frame filters command.
7446         * mi/mi-cmds.h: Declare.
7447         * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
7448         --no-frame-filter logic, and Python frame filter logic.
7449         (stack_enable_frame_filters): New function.
7450         (parse_no_frame_option): Ditto.
7451         (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
7452         filter logic.
7453         (mi_cmd_stack_list_locals): Ditto.
7454         (mi_cmd_stack_list_args): Ditto.
7455         (mi_cmd_stack_list_variables): Ditto.
7456         * NEWS: Add frame filter note.
7457
7458 2013-05-09  Doug Evans  <dje@google.com>
7459
7460         * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
7461         All callers updated.
7462         (syms_from_objfile): Ditto.  Make static.
7463         (symbol_file_add_with_addrs): Renamed from
7464         symbol_file_add_with_addrs_or_offsets.  Delete args offsets,
7465         num_offsets.  All callers updated.
7466         * symfile.h (syms_from_objfile): Delete.
7467
7468         * symfile.c (decrement_reading_symtab): Add assert.
7469         (increment_reading_symtab): Ditto.
7470
7471 2013-05-09  Joel Brobecker  <brobecker@adacore.com>
7472
7473         * source.c (forward_search_command): Replace call to getc
7474         by call to fgetc.
7475         (reverse_search_command): Likewise.
7476
7477 2013-05-08  Doug Evans  <dje@google.com>
7478
7479         * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
7480         matching test.
7481
7482 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
7483
7484         * sol-thread.c (info_cb): Factorize the code a little.
7485
7486 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
7487
7488         * sol-thread.c (info_cb): Rework the output of the "maintenance
7489         info sol-threads" command a bit.
7490
7491 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
7492
7493         * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
7494         Replace ti.ti_startfunc by ti.ti_pc.
7495
7496 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
7497
7498         * solib-aix.c (solib_aix_free_library_list): New function
7499         for the case where HAVE_LIBEXPAT is not defined.
7500
7501 2013-05-07  Sergio Durigan Junior  <sergiodj@redhat.com>
7502
7503         PR breakpoints/15413:
7504         * breakpoint.c (condition_completer): Simplify the code to
7505         disconsider multiple locations of breakpoints when completing the
7506         "condition" command.
7507
7508 2013-05-07  Pierre Muller  <muller@sourceware.org>
7509
7510         * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
7511         instead of <sys/wait.h>.
7512
7513 2013-05-07  Pierre Muller  <muller@sourceware.org>
7514
7515         * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
7516         trailing new line from warning message.
7517
7518 2013-05-07  Pierre Muller  <muller@sourceware.org>
7519
7520         * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
7521         (PC_SOLIB): Change type from ari_deprecate to ari_regression.
7522
7523 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
7524
7525         * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
7526         error message (ARI fix).
7527
7528 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
7529
7530         * features/library-list-aix.dtd: Replace library-list by
7531         library-list-aix.
7532         * rs6000-nat.c: Replace library-list by library-list-aix
7533         throughout.
7534         * solib-aix.c: Likewise.
7535
7536 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
7537
7538         * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
7539         Renames TARGET_OBJECT_AIX_LIBRARIES.
7540         * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
7541         TARGET_OBJECT_LIBRARIES_AIX throughout.
7542         * solib-aix.c: Likwise.
7543
7544 2013-05-07  Yao Qi  <yao@codesourcery.com>
7545
7546         * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
7547         (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
7548
7549 2013-05-07  Yao Qi  <yao@codesourcery.com>
7550
7551         * solib-dsbt.c (enable_break): Declare.
7552         (dsbt_current_sos): Remove call to enable_break2.
7553         (enable_break2): Rename to enable_break.  Set solib breakpoint
7554         on '_dl_debug_state'.
7555         (enable_break): Remove.
7556
7557 2013-05-07  Luis Machado  <lgustavo@codesourcery.com>
7558
7559         * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
7560         debug state prior to replicating existing hardware watchpoints or
7561         breakpoints.
7562
7563 2013-05-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
7564
7565         * gcore.c (gcore_create_callback): Ignore sections with
7566         separate_debug_objfile_backlink != NULL.
7567
7568 2013-05-06  Sandra Loosemore  <sandra@codesourcery.com>
7569             Andrew Jenner  <andrew@codesourcery.com>
7570             Chung-Lin Tang  <cltang@codesourcery.com>
7571             Julian Brown  <julian@codesourcery.com>
7572
7573         Based on the nios2-elf port from Altera Corporation.
7574
7575         * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
7576         nios2-linux-tdep.o.
7577         (HFILES_NO_SRCDIR): Add nios2-tdep.h.
7578         (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
7579         * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
7580         * nios2-tdep.h: New.
7581         * nios2-tdep.c: New.
7582         * nios2-linux-tdep.c: New.
7583         * features/Makefile (WHICH): Add nios2-linux.
7584         (nios2-linux-expedite): Set.
7585         * features/nios2-cpu.xml: New.
7586         * features/nios2.xml: New.
7587         * features/nios2-linux.xml: New.
7588         * features/nios2.c: New (autogenerated).
7589         * features/nios2-linux.c: New (autogenerated).
7590         * regformats/nios2-linux.dat: New (autogenerated).
7591         * NEWS (Changes since GDB 7.6): Add new Nios II targets
7592         and commands.
7593
7594 2013-05-06  Doug Evans  <dje@google.com>
7595
7596         * symfile.c: Whitespace cleanup.
7597
7598         * solist.h (struct target_so_ops): New member clear_so.
7599         * solib-svr4.c (svr4_clear_so): New function.
7600         (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
7601         * solib.c (clear_so): Renamed from free_so_symbols.
7602         All callers updated.  Call target clear_so if it exists.
7603
7604 2013-05-06  Tom Tromey  <tromey@redhat.com>
7605
7606         * ada-lang.c (ada_value_primitive_packed_val): Don't
7607         call value_incref.
7608         * value.c (set_value_parent): Incref the new parent and decref
7609         the old parent.
7610         (value_copy, value_primitive_field): Use set_value_parent.
7611
7612 2013-05-06  Tom Tromey  <tromey@redhat.com>
7613
7614         * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
7615         (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
7616         if needed.
7617         * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
7618         * dwarf2read.c (write_constant_as_bytes)
7619         (dwarf2_fetch_constant_bytes): New functions.
7620
7621 2013-05-06  Tom Tromey  <tromey@redhat.com>
7622
7623         * dwarf2read.c (dwarf2_const_value_data): Remove unused
7624         parameters.
7625         (dwarf2_const_value_attr): Update.
7626
7627 2013-05-06  Tom Tromey  <tromey@redhat.com>
7628
7629         * somread.c (som_symfile_offsets): Add 'const' to addrs.
7630         * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
7631         * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
7632         Remove declaration.
7633
7634 2013-05-06  Tom Tromey  <tromey@redhat.com>
7635
7636         * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
7637         objfile's obstack.
7638
7639 2013-05-06  Doug Evans  <dje@google.com>
7640
7641         * dbxread.c (process_one_symbol): Constify section_offsets parameter.
7642         * stabsread.h (process_one_symbol): Update declaration.
7643         * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
7644         * elfread.c (elf_symfile_relocate_probe): Ditto.
7645         * psymtab.c (relocate_psymtabs): Ditto.
7646         * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
7647         (objfile_relocate): Ditto.
7648         * objfiles.h (objfile_relocate): Update declaration.
7649         * symfile.c (relative_addr_info_to_section_offsets): Constify
7650         addrs parameter.
7651         (default_symfile_offsets): Ditto.
7652         (syms_from_objfile_1): Constify offsets parameter.
7653         (syms_from_objfile): Ditto.
7654         (symbol_file_add_with_addrs_or_offsets): Ditto.
7655         (symfile_map_offsets_to_segments): Constify data parameter.
7656         * symfile.h (struct quick_symbol_functions): Constify new_offsets,
7657         delta parameters of member relocate.
7658         (struct sym_probe_fns): Constify new_offsets,
7659         delta parameters of member sym_relocate_probe.
7660         (struct sym_fns): Constify section_addr_info parameter of member
7661         sym_offsets.
7662         (relative_addr_info_to_section_offsets): Update declaration.
7663         (default_symfile_offsets): Ditto.
7664         (syms_from_objfile): Ditto.
7665         (symfile_map_offsets_to_segments): Ditto.
7666
7667         * symfile.c (syms_from_objfile_1): Use correct section count when
7668         objfile->sf == NULL.
7669
7670 2013-05-06  Mike Frysinger  <vapier@gentoo.org>
7671
7672         * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
7673
7674 2013-05-06  Doug Evans  <dje@google.com>
7675
7676         * psympriv.h (struct partial_symtab): Augment comment for member
7677         section_offsets.
7678
7679 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7680
7681         Reimplement shared library support on ppc-aix...
7682         * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
7683         * features/library-list-aix.dtd: New file.
7684         * solib-aix.h, solib-aix.c: New file.
7685         * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
7686         (rs6000_find_toc_address_hook): Delete.
7687         (rs6000_push_dummy_call): Rewrite code setting the TOC value.
7688         (rs6000_aix_init_osabi): Register solib_aix_so_ops.
7689         * rs6000-nat.c: Remove "xcoffsolib.h" include.  Include
7690         "xml-utils.h".
7691         (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
7692         (vmap_symtab, fixup_breakpoints): Delete.
7693         (rs6000_xfer_shared_libraries): New function.
7694         (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
7695         (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
7696         (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
7697         (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
7698         (rs6000_xfer_shared_library): New function.
7699         (find_toc_address): Delete.
7700         (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
7701         * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
7702         * xcoffread.c (record_minimal_symbol): Reloate symbol address
7703         before creating minimal symbol.  Adjust function description
7704         accordingly.
7705         (scan_xcoff_symtab): Replace call to
7706         prim_record_minimal_symbol_and_info by call to
7707         record_minimal_symbol.
7708         (xcoff_symfile_offsets): Reimplement mostly as a wrapper
7709         around default_symfile_offsets.
7710         * configure.tgt: Add solib-aix.o to gdb_target_obs for
7711         powerpc-aix targets.
7712         * config/rs6000/nm-rs6000.h: Delete.
7713         * config/powerpc/aix.mh (NAT_FILE): Delete.
7714         (NATDEPFILES): Remove xcoffsolib.o.
7715         * Makefile.in (XMLFILES): Add library-list-aix.dtd.
7716         (ALL_TARGET_OBS): Add solib-aix.o.
7717         (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
7718         config/rs6000/nm-rs6000.h.  Add solib-aix.h.
7719         (ALLDEPFILES): Add solib-aix.c.  Remove xcoffsolib.c.
7720         * xcoffsolib.h, xcoffsolib.c: Delete.
7721
7722         * solib.c (reload_shared_libraries): Remove reference to
7723         SOLIB_CREATE_INFERIOR_HOOK.
7724         * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
7725         (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
7726         (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
7727         comment.
7728         * corelow.c (deprecated_core_resize_section_table): Delete.
7729         * exec.c: Remove include of xcoffsolib.h".
7730         (map_vmap, vmap): Delete.
7731         (exec_close_1): Remove references to vmap.
7732         (exec_file_attach): Remove vmap handling code, and reference
7733         to DEPRECATED_IBM6000_TARGET.
7734         (bfdsec_to_vmap): Delete.
7735         (exec_files_info): Remove block of code handling VMAP.
7736         * infcmd.c (post_create_inferior): Remove reference to
7737         SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
7738         * infrun.c (follow_exec): Remove reference to
7739         SOLIB_CREATE_INFERIOR_HOOK.
7740         * stack.c (print_frame): Remove reference to PC_SOLIB.
7741         * solib-dsbt.c (dsbt_current_sos): Adjust comment.
7742         (dsbt_relocate_main_executable): Likewise.
7743         * solib-frv.c (frv_current_sos): Likewise.
7744
7745 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7746
7747         * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
7748         to target_write_memory and target_read_memory.
7749
7750 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7751
7752         * darwin-nat.c (darwin_setup_fake_stop_event): New function.
7753         (darwin_attach): Adjust using darwin_setup_fake_stop_event.
7754
7755 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7756
7757         * darwin-nat.c: Replace all "%x" instances in format strings
7758         into "0x%x" throughout.
7759
7760 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7761
7762         * darwin-nat.c (darwin_mourn_inferior): Replace call to
7763         gdb_assert by call to MACH_CHECK_ERROR.
7764         (darwin_attach_pid): Raise an error rather than a failed
7765         assertion when various system calls failed.  Report a warning
7766         instead of raising a failed assertion when PREV_NOT is not NULL
7767         after call to mach_port_request_notification.
7768         (darwin_ptrace_me): Raise an error rather than a failed
7769         assertion when read returns nonzero.
7770
7771 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7772
7773         * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
7774
7775 2013-05-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
7776
7777         * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
7778
7779 2013-05-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
7780
7781         * event-top.c (display_gdb_prompt): Call missing do_cleanups.
7782         * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
7783         * symfile.c (symfile_bfd_open): New variable back_to.  Do not leave
7784         a stale cleanup.  Fix double free of NAME.
7785
7786 2013-05-04  Eli Zaretskii  <eliz@gnu.org>
7787
7788         * windows-nat.c (windows_delete_thread): Accept an additional
7789         argument, the thread's exit code, and announce thread death when
7790         print_thread_events is non-zero and we are deleting a thread that
7791         is not the main thread.
7792         (get_windows_debug_event): Pass thread exit code to
7793         windows_delete_thread.
7794
7795 2013-05-03  Kevin Buettner  <kevinb@redhat.com>
7796
7797         * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
7798         (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
7799         (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
7800         (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
7801         (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
7802         (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
7803         (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
7804         (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
7805         (gdbarch_tdep): New struct.
7806         (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
7807         E_NUM_REGS.
7808         (v850e3v5_register_name): New function.
7809         (v850_register_type): v850e3v5 vector registers are 64-bits wide.
7810         (v850_use_struct_convention): Add `gdbarch' parameter.  Add new
7811         code handling the struct return conventions for the RH850 ABI.
7812         Update all callers.
7813         (v850_eight_byte_align_p): New function.
7814         (v850_push_call_dummy): Push structs by value, not by reference
7815         for the RH850 ABI.  Add support for eight byte alignment.
7816         (v850_dbtrap_breakpoint_from_pc): New function.
7817         (v850_gdbarch_init): Add ABI detection code.  Register
7818         v850e3v5_register_name for the v850e3v5 architecture.  Set the
7819         number of registers for v850e3v5.  Register
7820         v850_dbtrap_breakpoint_from_pc as appropriate.
7821         (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
7822
7823 2013-05-03  Doug Evans  <dje@google.com>
7824
7825         * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
7826         of bfd_count_sections.
7827         * solib-target.c (solib_target_relocate_section_addresses): Ditto.
7828         * symfile.c (default_symfile_offsets): Ditto.
7829         (syms_from_objfile_1): Ditto.  Make dummy addrs list an array of
7830         one entry, not bfd_count_sections entries.
7831
7832 2013-05-03  Kevin Buettner  <kevinb@redhat.com>
7833
7834         * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
7835         `save' and `restore' register groups.  Don't include SPL
7836         or SPH in these groups.
7837         (rl78_dwarf_reg_to_regnum):  Adjust mapping for
7838         RL78_PC_REGNUM.  Add mappings for RL78_PSW_REGNUM,
7839         RL78_ES_REGNUM, and RL78_CS_REGNUM.
7840         (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4.  Invoke
7841         dwarf2_append_unwinders().
7842
7843 2013-05-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
7844
7845         * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
7846         ignore SIGINT and SIGTRAP in case these internal signals are
7847         caught explicitely.
7848
7849 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
7850
7851         * darwin-nat.c (darwin_read_write_inferior): Change types
7852         of parameters rdaddr and wraddr to "gdb_byte *". Change type
7853         of copy_count to "mach_msg_type_number_t".
7854         (darwin_read_dyld_info): Change type of parameter
7855         rdaddr to "gdb_byte *".
7856
7857 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
7858
7859         * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
7860         of &info->load_map from "char *" to "gdb_byte *".
7861
7862 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
7863
7864         * ia64-tdep.c (ia64_access_fpreg): Change cast of val
7865         from "char *" to "gdb_byte *".
7866         (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
7867
7868 2013-04-30  Doug Evans  <dje@google.com>
7869
7870         * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
7871         (init_cutu_and_read_dies): Flag a complaint, not error, for bad
7872         DWO stub.  If DWO isn't found, just use stub.
7873         (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
7874
7875         * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
7876         calling init_cutu_and_read_dies.
7877
7878 2013-03-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
7879
7880         * target-descriptions.c (maint_print_c_tdesc_cmd):
7881         Add case to parse structures as register types and
7882         bitfields.
7883
7884 2013-04-30  Walfred Tedeschi  <walfred.tedeschi@intel.com>
7885
7886         * MAINTAINERS (Write After Approval): Add myself to the list.
7887
7888 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
7889
7890         * sol-thread.c (rw_common): Change type of parameter "buf"
7891         to "gdb_byte *".
7892         (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
7893         rw_common to "gdb_byte *" instead of "char *".
7894
7895 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
7896
7897         * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
7898         of local variable msym to const struct bound_minimal_symbol.
7899         Adjust use accordingly.
7900         [ti.ti_state == TD_THR_SLEEP]: Likewise.
7901
7902 2013-04-30  Samuel Thibault  <samuel.thibault@gnu.org>
7903
7904         * i386gnu-nat.c (CREG_OFFSET): New macro.
7905         (creg_offset): New array.
7906         (CREG_ADDR): Use creg_offset instead of reg_offset.
7907
7908 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
7909
7910         * mep-tdep.c (mep_write_pc): Delete.
7911         (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
7912         Add call to set_gdbarch_pc_regnum.
7913
7914 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
7915
7916         * common/filestuff.c: Replace #include <dirent.h> by
7917         #include "gdb_dirent.h".
7918
7919 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
7920
7921         * common/filestuff.c: Replace #include <sys/stat.h> by
7922         #include "gdb_stat.h".
7923
7924 2013-04-29  Pierre Muller  <muller@sourceware.org>
7925
7926         * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
7927         editCase function rule.
7928         (get_DW_AT_signature_type): Likewise.
7929
7930 2013-04-29  Joel Brobecker  <brobecker@adacore.com>
7931
7932         * m32r-tdep.c (m32r_write_pc): Delete.
7933         (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
7934         Add call to set_gdbarch_pc_regnum.
7935
7936 2013-04-29  Pierre Muller  <muller@sourceware.org>
7937
7938         * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
7939
7940 2013-04-29  Joel Brobecker  <brobecker@adacore.com>
7941
7942         * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
7943
7944 2013-04-28  Yao Qi  <yao@codesourcery.com>
7945
7946         * solib-dsbt.c (fetch_loadmap): Re-indent.
7947         (displacement_from_map, enable_break2): Likewise.
7948         (dsbt_relocate_section_addresses): Likewise.
7949
7950 2013-04-26  Joel Brobecker  <brobecker@adacore.com>
7951
7952         GDB 7.6 released.
7953
7954 2013-04-25  Andreas Kaufmann  <Andreas.Kaufmann@synopsys.com>
7955
7956         PR corefiles/14983:
7957         * dwarf2read.c (process_full_comp_unit): Always create a static
7958         block.
7959
7960 2013-04-25  Hui Zhu  <hui@codesourcery.com>
7961
7962         * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
7963         to loc->cmd_bytecode.
7964
7965 2013-04-24  Doug Evans  <dje@google.com>
7966
7967         * dwarf2read.c (setup_type_unit_groups): Fix comment.
7968
7969 2013-04-22  Keith Seitz  <keiths@redhat.com>
7970
7971         * tracepoint.c (trace_save):  Call the writer's start method.
7972
7973 2013-04-24  Muhammad Bilal  <mbilal@codesourcery.com>
7974
7975         PR gdb/10462
7976         * cli/cli-decode.c (lookup_command): Show an error if there is no space
7977         before argument.
7978
7979 2013-04-23  Tom Tromey  <tromey@redhat.com>
7980
7981         * common/filestuff.c: Check USE_WIN32API before including
7982         sys/socket.h.
7983         (HAVE_F_GETFD): New define.
7984         (mark_cloexec): Check HAVE_F_GETFD.
7985         (gdb_open_cloexec): Change 'mode' to unsigned long.
7986         (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
7987         (gdb_pipe_cloexec): Check HAVE_PIPE.
7988         * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
7989         long.
7990
7991 2013-04-23  Hui Zhu  <hui@codesourcery.com>
7992
7993         PR gdb/15293
7994         * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
7995
7996 2013-04-23  Hui Zhu  <hui@codesourcery.com>
7997
7998         PR gdb/15165
7999         * breakpoint.c (dprintf_print_recreate): New.
8000         (save_breakpoints): Let it not save dprintf commands.
8001         (initialize_breakpoint_ops): Set dprintf_print_recreate.
8002
8003 2013-04-22  Tom Tromey  <tromey@redhat.com>
8004
8005         PR gdb/7912:
8006         * Makefile.in (SFILES): Add filestuff.c
8007         (COMMON_OBS): Add filestuff.o.
8008         (filestuff.o): New target.
8009         * auto-load.c (auto_load_objfile_script_1): Use
8010         gdb_fopen_cloexec.
8011         * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
8012         * cli/cli-cmds.c (shell_escape): Call close_most_fds.
8013         * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
8014         * common/agent.c (gdb_connect_sync_socket): Use
8015         gdb_socket_cloexec.
8016         * common/filestuff.c: New file.
8017         * common/filestuff.h: New file.
8018         * common/linux-osdata.c (linux_common_core_of_thread)
8019         (command_from_pid, commandline_from_pid, print_source_lines)
8020         (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
8021         (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
8022         gdb_fopen_cloexec.
8023         * common/linux-procfs.c (linux_proc_get_int)
8024         (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
8025         * config.in, configure: Rebuild.
8026         * configure.ac: Don't check for sys/socket.h.  Check for
8027         fdwalk, pipe2.
8028         * corelow.c (core_open): Use gdb_open_cloexec.
8029         * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
8030         * fork-child.c (fork_inferior): Call close_most_fds.
8031         * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
8032         * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
8033         * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
8034         Use gdb_fopen_cloexec.
8035         (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
8036         gdb_open_cloexec.
8037         (linux_async_pipe): Use gdb_pipe_cloexec.
8038         * remote-fileio.c (remote_fileio_func_open): Use
8039         gdb_open_cloexec.
8040         * remote.c (remote_file_put, remote_file_get): Use
8041         gdb_fopen_cloexec.
8042         * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
8043         close_most_fds.
8044         * ser-tcp.c (net_open): Use gdb_socket_cloexec.
8045         * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
8046         * solib.c (solib_find): Use gdb_open_cloexec.
8047         * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
8048         * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
8049         (tfile_open): Use gdb_open_cloexec.
8050         * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
8051         * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
8052         * xml-support.c (xml_fetch_content_from_file): Use
8053         gdb_fopen_cloexec.
8054         * main.c (captured_main): Call notice_open_fds.
8055
8056 2013-04-22  Edjunior Machado  <emachado@linux.vnet.ibm.com>
8057
8058         * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
8059         'char *' to 'gdb_byte *'.
8060         (gdbsim_store_register): Change the type of 'tmp' from 'char' to
8061         'gdb_byte'.
8062
8063 2013-04-22  Yao Qi  <yao@codesourcery.com>
8064
8065         * infrun.c: Fix typo in comment.
8066
8067 2013-04-22  Andrew Haley  <aph@redhat.com>
8068
8069         * arm-tdep.c (BranchDest): Cast result as "unsigned long",
8070         instead of "long".
8071
8072 2013-04-20  Yao Qi  <yao@codesourcery.com>
8073
8074         * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
8075         'char *' to 'gdb_byte *'.  Cast the return value of
8076         'bt_ctf_get_char_array' to 'gdb_byte *'.
8077
8078 2013-04-19  Pedro Alves  <palves@redhat.com>
8079
8080         * configure.ac (build_warnings): Replace -Wno-pointer-sign with
8081         -Wpointer-sign.
8082         * configure: Regenerate.
8083
8084 2013-04-19  Pedro Alves  <palves@redhat.com>
8085
8086         * ser-tcp.c (net_read_prim): Cast second argument to recv to
8087         'void *'.
8088
8089 2013-04-19  Pedro Alves  <palves@redhat.com>
8090
8091         * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
8092         Change type of 'myaddr' parameter to gdb_byte pointer.
8093         (monitor_write_memory_longlongs): Likewise.  Cast 'myaddr' pointer
8094         to 'long long' pointer instead of to 'unsigned long long'.
8095         (monitor_write_memory_block, monitor_read_memory_single)
8096         (monitor_read_memory): Change type of 'myaddr' parameter to
8097         gdb_byte pointer.
8098
8099 2013-04-19  Pedro Alves  <palves@redhat.com>
8100
8101         * record.c (validate_history_size): Make parameter 'setting'
8102         unsigned.
8103
8104 2013-04-19  Pedro Alves  <palves@redhat.com>
8105
8106         * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
8107         to 'gdb_byte *'.
8108
8109 2013-04-19  Pedro Alves  <palves@redhat.com>
8110
8111         * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
8112         local to int.
8113
8114 2013-04-19  Pedro Alves  <palves@redhat.com>
8115
8116         * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
8117         * ada-tasks.c (read_fat_string_value): Likewise.
8118
8119 2013-04-19  Pedro Alves  <palves@redhat.com>
8120
8121         * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
8122         unsigned.  Pass 'tmp' to safe_read_uleb128 instead of the signed
8123         'offset', and adjust.
8124
8125 2013-04-19  Pedro Alves  <palves@redhat.com>
8126
8127         * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
8128         (read_index_from_section): Add cast to 'char *'.
8129
8130 2013-04-19  Pedro Alves  <palves@redhat.com>
8131
8132         * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
8133
8134 2013-04-19  Pedro Alves  <palves@redhat.com>
8135
8136         * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
8137
8138 2013-04-19  Pedro Alves  <palves@redhat.com>
8139
8140         * record-full.c (record_full_get_bookmark): Change local 'ret'
8141         type to char * and add cast to gdb_byte *.
8142         (record_full_goto_bookmark): Handle 'bookmark' argument as a
8143         string.
8144         * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
8145
8146 2013-04-19  Pedro Alves  <palves@redhat.com>
8147
8148         * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
8149         * python/py-prettyprint.c (print_string_repr): Change type of
8150         'output' local to char *.  Add cast to gdb_byte * in
8151         LA_PRINT_STRING call.
8152         (print_children): Change type of 'output' local to char *.
8153         * python/py-value.c (valpy_string): Add cast to const char * in
8154         PyUnicode_Decode call.
8155
8156 2013-04-19  Pedro Alves  <palves@redhat.com>
8157
8158         * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
8159         and change its type to 'const char *'.  Adjust.
8160         (mips_send_packet): Add cast to 'char *', and remove cast to
8161         'unsigned char *'.
8162         (mips_receive_packet): Remove cast to 'unsigned char *'.
8163         (mips_load_srec): Use bfd_byte.
8164         (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
8165         (pmon_checkset): Make 'value' parameter unsigned.
8166
8167 2013-04-19  Pedro Alves  <palves@redhat.com>
8168
8169         * common/agent.c (agent_run_command): Add cast to gdb_byte *.
8170
8171 2013-04-19  Pedro Alves  <palves@redhat.com>
8172
8173         * remote.c (remote_write_bytes_aux, compare_sections_command)
8174         (remote_read_qxfer)
8175         (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
8176         (remote_hostio_readlink, remote_bfd_iovec_pread)
8177         (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
8178         binary buffer, and char when buffer is used as string.
8179         * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
8180         (trace_save, tfile_open, traceframe_walk_blocks)
8181         (tfile_fetch_registers): Likewise.
8182
8183 2013-04-19  Pedro Alves  <palves@redhat.com>
8184
8185         * ser-base.c (ser_base_write): Change prototype -- take 'void *'
8186         buffer and size_t size.  Adjust.
8187         * ser-base.h (ser_base_write): Adjust.
8188         * ser-go32.c (cnts): Change type to size_t.
8189         (dos_write): Change prototype -- take 'void *'
8190         buffer and size_t size.  Adjust.
8191         (dos_info): Print elements of 'cnts' as unsigned long.
8192         * serial.c (serial_write): Likewise.
8193         * serial.h (serial_write): Adjust.
8194         (struct serial_ops) <write>: Change prototype -- take 'void *'
8195         buffer and size_t size.  Adjust.
8196
8197 2013-04-19  Pedro Alves  <palves@redhat.com>
8198
8199         * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
8200         gdb_byte *.
8201         * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
8202
8203 2013-04-19  Pedro Alves  <palves@redhat.com>
8204
8205         * alpha-tdep.c (alpha_extract_return_value): Use
8206         regcache_cooked_read_unsigned to read 'v0'.
8207
8208 2013-04-19  Pedro Alves  <palves@redhat.com>
8209
8210         * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
8211         parameters 'at', 'as' and 'offset' to uint32_t.
8212
8213 2013-04-19  Pedro Alves  <palves@redhat.com>
8214
8215         * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
8216         'is64' to signed 'int'.
8217
8218 2013-04-19  Pedro Alves  <palves@redhat.com>
8219
8220         * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
8221         parameter to int *.
8222
8223 2013-04-19  Pedro Alves  <palves@redhat.com>
8224
8225         * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
8226         'insnbuf' buffer type to unsigned int[].
8227
8228 2013-04-19  Pedro Alves  <palves@redhat.com>
8229
8230         * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
8231
8232 2013-04-19  Pedro Alves  <palves@redhat.com>
8233
8234         * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
8235         unsigned long *.
8236
8237 2013-04-19  Pedro Alves  <palves@redhat.com>
8238
8239         * alpha-tdep.c (heuristic_fence_post): Change type to int.
8240         (alpha_heuristic_proc_start): Adjust to check -1 instead of
8241         UINT_MAX.
8242         * mips-tdep.c (heuristic_fence_post): Change type to int.
8243         (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
8244
8245 2013-04-19  Pedro Alves  <palves@redhat.com>
8246
8247         * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
8248         (struct gdbarch_tdep) <cris_version>: Make unsigned.
8249         (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
8250
8251 2013-04-19  Pedro Alves  <palves@redhat.com>
8252
8253         * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'.  Use
8254         it to get a string view of the byte buffer.
8255         * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
8256         type to gdb_byte *.  Adjust.
8257         * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
8258         Change local to char *.
8259         * solib-darwin.c (find_program_interpreter): Change return type to
8260         char *.  Adjust.
8261         (darwin_solib_get_all_image_info_addr_at_init): Adjust.
8262         * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
8263         * solib-frv.c (enable_break2): Change local 'buf' to char *.
8264         * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
8265         * solib-svr4.c (find_program_interpreter): Change return type to
8266         char *.  Adjust.
8267         (enable_break): Change local 'interp_name' to char *.
8268         * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
8269         * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
8270         (spu_pseudo_register_write_spu): Use char for string buffer.
8271         Adjust.
8272         (info_spu_event_command, info_spu_signal_command): Add casts to
8273         'char *'.
8274
8275 2013-04-19  Pedro Alves  <palves@redhat.com>
8276
8277         * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
8278         gdb_byte[].
8279         (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
8280         * ada-lang.c (ada_value_assign): Use gdb_byte.
8281         * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
8282         (alphanbsd_sigtramp_offset): Use gdb_byte.
8283         * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
8284         (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
8285         (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
8286         (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
8287         (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
8288         * arm-tdep.c (arm_stub_unwind_sniffer)
8289         (arm_displaced_init_closure): Use gdb_byte.
8290         (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
8291         (arm_default_thumb_le_breakpoint)
8292         (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
8293         * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
8294         thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
8295         * arm-wince-tdep.c (arm_wince_le_breakpoint)
8296         (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
8297         * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
8298         (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
8299         (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
8300         * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
8301         (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
8302         * cris-tdep.c (push_stack_item, cris_push_dummy_call)
8303         (cris_store_return_value, cris_extract_return_value): Use
8304         gdb_byte.
8305         (constraint): Change type of parameter to char * from signed
8306         char*.  Use gdb_byte.
8307         * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
8308         of local buffer to gdb_byte *.
8309         * dwarf2read.c (read_index_from_section): Use gdb_byte.
8310         (create_dwp_hash_table): Change type of locals to gdb_byte *.
8311         (add_address_entry): Change type of local buffer to gdb_byte[].
8312         * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
8313         (frv_push_dummy_call): Use gdb_byte.
8314         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
8315         (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
8316         (hppa_hpux_supply_save_state): Use gdb_byte.
8317         * hppa-tdep.c (hppa32_push_dummy_call)
8318         (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
8319         * ia64-tdep.c (extract_bit_field, replace_bit_field)
8320         (slotN_contents, replace_slotN_contents): Change type of parameter
8321         to gdb_byte *.
8322         (fetch_instruction, ia64_pseudo_register_write)
8323         (ia64_register_to_value, ia64_value_to_register)
8324         (ia64_extract_return_value, ia64_store_return_value)
8325         (ia64_push_dummy_call): Use gdb_byte.
8326         * m32c-tdep.c (m32c_return_value): Remove cast.
8327         * m68hc11-tdep.c (m68hc11_pseudo_register_write)
8328         (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
8329         gdb_byte.
8330         * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
8331         * mn10300-tdep.c (mn10300_store_return_value)
8332         (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
8333         gdb_byte.
8334         * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
8335         (moxie_process_record): Remove casts.
8336         * ppc-ravenscar-thread.c (supply_register_at_address)
8337         (ppc_ravenscar_generic_store_registers): Use gdb_byte.
8338         * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
8339         * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
8340         * remote-mips.c (mips_xfer_memory): Use gdb_byte.
8341         * remote.c (compare_sections_command): Use gdb_byte.
8342         * score-tdep.c (score7_free_memblock): Change type of parameter to
8343         gdb_byte *.
8344         * sh-tdep.c (sh_justify_value_in_reg): Change return type to
8345         gdb_byte *.  Use gdb_byte.
8346         (sh_push_dummy_call_fpu): Use gdb_byte.
8347         (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
8348         (sh_store_return_value_nofpu, sh_store_return_value_fpu)
8349         (sh_register_convert_to_virtual, sh_register_convert_to_raw):
8350         Change parameter type to 'gdb_byte *'.  Use gdb_byte.
8351         (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
8352         * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
8353         (sh64_store_return_value, sh64_register_convert_to_virtual):
8354         Change parameter type to 'gdb_byte *'.  Use gdb_byte.
8355         (sh64_pseudo_register_write): Use gdb_byte.
8356         * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
8357         * solib-irix.c (fetch_lm_info): Likewise.  Use gdb_byte for byte
8358         buffer.
8359         (irix_current_sos): Use gdb_byte.
8360         * solib-som.c (som_current_sos): Use gdb_byte.
8361         * sparc-ravenscar-thread.c (supply_register_at_address)
8362         (sparc_ravenscar_generic_store_registers): Use gdb_byte.
8363         * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
8364         * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
8365         * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
8366         'gdb_byte *'.
8367         * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
8368         'gdb_byte *'.
8369         * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
8370         * xstormy16-tdep.c (xstormy16_extract_return_value)
8371         (xstormy16_store_return_value): Change parameter type to
8372         'gdb_byte *'.  Adjust.
8373         (xstormy16_push_dummy_call): Use gdb_byte.
8374         * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
8375         (call0_analyze_prologue, execute_code): Use gdb_byte.
8376
8377 2013-04-19  Vladimir Kargov <kargov@gmail.com>
8378             Pedro Alves  <palves@redhat.com>
8379
8380         * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
8381         value contents.
8382
8383 2013-04-17  Doug Evans  <dje@google.com>
8384
8385         * dwarf2read.c (struct signatured_type): New member type.
8386         (struct attribute): Replace member signatured_type with signature.
8387         (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
8388         (read_call_site_scope): Call follow_die_ref instead of
8389         follow_die_ref_or_sig.
8390         (read_structure_type): Rewrite handling of signatured types.
8391         (read_enumeration_type): Ditto.
8392         (read_attribute_value): Update.
8393         (build_error_marker_type): New function.
8394         (lookup_die_type): Add assert.  Rewrite handling of signatured types.
8395         Don't call error for bad types, just build an error marker type.
8396         (dump_die_shallow): Update.
8397         (follow_die_sig_1): Renamed from follow_die_sig.
8398         Don't call error for bad types, instead return NULL.
8399         (follow_die_sig): New function.
8400         (get_signatured_type, get_DW_AT_signature_type): New functions.
8401
8402 2013-04-17  Yufeng Zhang  <yufeng.zhang@arm.com>
8403
8404         * aarch64-tdep.c (aarch64_write_pc): Removed.
8405         (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
8406         function.
8407
8408 2013-04-17  Yao Qi  <yao@codesourcery.com>
8409
8410         * top.c (print_gdb_configuration): Print configure-time
8411         parameter on using libbabeltrace or not.
8412
8413 2013-04-16  Pedro Alves  <palves@redhat.com>
8414
8415         * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
8416
8417 2013-04-16  Pedro Alves  <palves@redhat.com>
8418
8419         * common/glibc_thread_db.h: Update from upstream glibc
8420         (git 568035b7874a099087b77f7bba3e36a1173787b0).
8421
8422 2013-04-16  Pedro Alves  <palves@redhat.com>
8423
8424         * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
8425         * common/glibc_thread_db.h: ... this new file ...
8426         * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
8427
8428 2013-04-16  Will Newton  <will.newton@gmail.com>
8429             Pedro Alves  <palves@redhat.com>
8430
8431         PR build/11881
8432
8433         * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
8434         (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
8435         HAVE_THREAD_DB_H.
8436
8437 2013-04-16  Pedro Alves  <palves@redhat.com>
8438             Eli Zaretskii  <eliz@gnu.org>
8439
8440         * NEWS: Mention "set foo unlimited".
8441
8442 2013-04-15  Doug Evans  <dje@google.com>
8443
8444         * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
8445         (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
8446         (create_dwo_cu_reader): Renamed from
8447         create_dwo_debug_info_hash_table_reader.
8448         (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
8449         Remove support for multiple CUs in a DWO file.
8450         (open_and_init_dwo_file, lookup_dwo_cutu): Update.
8451
8452         * dwarf2read.c (create_debug_types_hash_table): Use hex_string
8453         instead of phex.
8454         (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
8455         (create_dwo_in_dwp): Ditto.
8456
8457 2013-04-15  Tom Tromey  <tromey@redhat.com>
8458
8459         * NEWS: Move recent entries into "since 7.6" section.
8460
8461 2013-04-15  Tom Tromey  <tromey@redhat.com>
8462
8463         PR c++/13588:
8464         * NEWS: Update.
8465         * break-catch-throw.c (struct exception_catchpoint)
8466         <exception_rx, pattern>: New fields.
8467         (fetch_probe_arguments, dtor_exception_catchpoint)
8468         (check_status_exception_catchpoint)
8469         (print_one_detail_exception_catchpoint): New functions.
8470         (handle_gnu_v3_exceptions): Add "except_rx" argument.
8471         Compile regular expression if needed.
8472         (extract_exception_regexp): New function.
8473         (catch_exception_command_1): Use extract_exception_regexp.
8474         (compute_exception): Use fetch_probe_arguments.
8475         (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
8476         and check_status fields.
8477         * cp-abi.c (cplus_typename_from_type_info): New function.
8478         * cp-abi.h (cplus_typename_from_type_info): Declare.
8479         (struct cp_abi_ops) <get_typename_from_type_info>: New field.
8480         * gdb_regex.h (compile_rx_or_error): Declare.
8481         * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
8482         comment.
8483         (init_gnuv3_ops): Set get_type_from_type_info field.
8484         * probe.c (compile_rx_or_error): Move...
8485         * utils.c (compile_rx_or_error): ... here.
8486
8487 2013-04-15  Tom Tromey  <tromey@redhat.com>
8488
8489         PR c++/15176:
8490         * NEWS: Update.
8491         * break-catch-throw.c (compute_exception): New function.
8492         (exception_funcs): New global.
8493         (_initialize_break_catch_throw): Create $_exception.
8494         * cp-abi.c (cplus_type_from_type_info): New function.
8495         * cp-abi.h (cplus_type_from_type_info): Declare.
8496         (struct cp_abi_ops) <get_type_from_type_info>: New field.
8497         * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
8498         (gnuv3_get_type_from_type_info): New functions.
8499         (init_gnuv3_ops): Set get_type_from_type_info ABI field.
8500
8501 2013-04-15  Tom Tromey  <tromey@redhat.com>
8502
8503         * break-catch-throw.c (struct exception_names): New.
8504         (exception_functions): Change type.
8505         (re_set_exception_catchpoint): Look for SDT probes.
8506
8507 2013-04-15  Tom Tromey  <tromey@redhat.com>
8508
8509         PR c++/10119:
8510         * break-catch-throw.c (exception_functions): New global.
8511         (gnu_v3_exception_catchpoint_ops): Move earlier.
8512         (struct exception_catchpoint): New.
8513         (classify_exception_breakpoint): Rewrite.
8514         (re_set_exception_catchpoint): New function.
8515         (handle_gnu_v3_exceptions): Return void.  Use init_catchpoint.
8516         Allocate a struct exception_catchpoint.
8517         (catch_exception_command_1): Update.
8518         (initialize_throw_catchpoint_ops): Set 're_set' method.
8519
8520 2013-04-15  Tom Tromey  <tromey@redhat.com>
8521
8522         * Makefile.in (SFILES): Add break-catch-throw.c
8523         (COMMON_OBS): Add break-catch-throw.o.
8524         * break-catch-throw.c: New file.
8525         * breakpoint.c: Move exception-catching code to new file.
8526         (ep_parse_optional_if_clause): No longer static.
8527         * breakpoint.h (ep_parse_optional_if_clause): Declare.
8528
8529 2013-04-15  Tom Tromey  <tromey@redhat.com>
8530
8531         PR c++/9065:
8532         * NEWS: Update.
8533         * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
8534         * c-exp.y (TYPEID): New token.
8535         (exp): Add new TYPEID productions.
8536         (ident_tokens): Add "typeid".
8537         * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
8538         * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
8539         (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
8540         * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
8541         * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
8542         case.
8543         * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
8544         (build_std_type_info_type, gnuv3_get_typeid_type)
8545         (gnuv3_get_typeid): New functions.
8546         (init_gnuv3_ops): Initialize std_type_info_gdbarch_data.  Set
8547         new fields on ABI object.
8548         * parse.c (operator_length_standard) <OP_TYPEID>: New case.
8549         * std-operator.def (OP_TYPEID): New.
8550
8551 2013-04-15  Tom Tromey  <tromey@redhat.com>
8552
8553         * elfread.c (elf_symtab_read): Install versioned symbol under
8554         unversioned name as well.
8555
8556 2013-04-15  Tom Tromey  <tromey@redhat.com>
8557
8558         PR c++/11990:
8559         * c-lang.c (cplus_language_defn): Use gdb_demangle.
8560         * c-typeprint.c (c_type_print_base): Use gdb_demangle.
8561         * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
8562         (gdb_demangle): New function.
8563         * cp-support.h (gdb_demangle): Declare.
8564         * dwarf2read.c (dwarf2_physname, fixup_partial_die)
8565         (dwarf2_name): Use gdb_demangle.
8566         * gdbtypes.c (check_stub_method): Use gdb_demangle.
8567         * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
8568         suffixes from name.
8569         (gnuv3_print_method_ptr): Use gdb_demangle.
8570         * jv-lang.c (java_demangle): Use gdb_demangle.
8571         * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
8572         * language.c (unk_lang_demangle): Use gdb_demangle.
8573         * symtab.c (symbol_find_demangled_name)
8574         (demangle_for_lookup): Use gdb_demangle.
8575
8576 2013-04-15  Tom Tromey  <tromey@redhat.com>
8577
8578         PR c++/12824:
8579         * NEWS: Update.
8580         * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
8581         New constant.
8582         (classify_exception_breakpoint): New function.
8583         (print_it_exception_catchpoint, print_one_exception_catchpoint)
8584         (print_mention_exception_catchpoint)
8585         (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
8586         (catch_exception_command_1): Handle "rethrow" catchpoint.
8587         (catch_rethrow_command): New function.
8588         (_initialize_breakpoint): Add "catch rethrow" command.
8589
8590 2013-04-15  Pierre Muller  <muller@sourceware.org>
8591
8592         * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
8593         set_gdbarch_write_pc as deprecated anymore.
8594
8595 2013-04-15  Joel Brobecker  <brobecker@adacore.com>
8596
8597         * spu-tdep.c (spu_write_pc): Add empty line after local variable
8598         declarations.
8599
8600 2013-04-13  Yao Qi  <yao@codesourcery.com>
8601
8602         * ctf.c (_initialize_ctf): Include "completer.h".
8603         Call add_target_with_completer instead of add_target.
8604
8605 2013-04-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
8606
8607         Fix GDB regression related to PR binutils/14813.
8608         * jit.c (mem_bfd_iovec_close): Return 0 for success.
8609         * minidebug.c (lzma_close): Add return value comment.
8610         * remote.c (remote_bfd_iovec_close): Return 0 for success.
8611         * solib-spu.c (spu_bfd_iovec_close): Likewise.
8612         * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
8613
8614 2013-04-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
8615
8616         * config.in: Regenerate.
8617
8618 2013-04-12  Tom Tromey  <tromey@redhat.com>
8619
8620         * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
8621         const.
8622         * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
8623         (struct die_reader_specs) <buffer>: Likewise.
8624         (die_reader_func_ftype): Make 'info_ptr' const.
8625         (struct line_header) <include_dirs, statement_program_start,
8626         statement_program_end>: Now const.
8627         (struct file_entry) <name>: Likewise.
8628         (struct partial_die_info) <sibling>: Likewise.
8629         (struct dwarf_block) <data>: Likewise.
8630         (dwarf2_read_section): Remove cast.
8631         (dwarf2_get_section_info): Make 'bufp' const.
8632         (read_index_from_section): Constify.
8633         (dw2_get_file_names_reader): Make 'info_ptr' const.
8634         (dw2_get_primary_filename_reader): Likewise.
8635         (read_comp_unit_head): Make 'info_ptr' and return type const.
8636         (read_and_check_comp_unit_head, read_and_check_type_unit_head):
8637         Likewise.
8638         (read_abbrev_offset): Constify.
8639         (dwarf2_create_include_psymtab): Make 'name' const.
8640         (create_debug_types_hash_table): Update.
8641         (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
8642         (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
8643         Constify.
8644         (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
8645         (load_partial_comp_unit_reader): Make 'info_ptr' const.
8646         (read_comp_units_from_section): Constify.
8647         (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
8648         (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
8649         const.
8650         (dwarf2_compute_name, setup_type_unit_groups): Constify.
8651         (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
8652         (create_dwp_hash_table, dwarf2_ranges_read)
8653         (dwarf2_record_block_ranges): Constify.
8654         (read_die_and_children, read_die_and_siblings_1)
8655         (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
8656         const.
8657         (read_full_die_1, read_full_die): Make 'info_ptr' const.
8658         (abbrev_table_read_table): Constify.
8659         (load_partial_dies): Make 'info_ptr' const.
8660         (read_partial_die, read_attribute_value, read_attribute): Make
8661         'info_ptr' and return type const.
8662         (read_address, read_initial_length)
8663         (read_checked_initial_length_and_offset, read_offset)
8664         (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
8665         const.
8666         (read_direct_string): Make 'buf' and return type const.
8667         (read_indirect_string_at_offset, read_indirect_string_from_dwz)
8668         (read_indirect_string): Make return type const.
8669         (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
8670         (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
8671         'info_ptr' const.
8672         (read_str_index): Make return type const.
8673         (add_include_dir): Make 'include_dir' const.
8674         (add_file_name): Make 'name' const.
8675         (dwarf_decode_line_header): Constify.
8676         (psymtab_include_file_name): Make return type const.
8677         (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
8678         (dwarf2_start_subfile): Make 'filename' const.
8679         (dwarf2_const_value_attr): Make 'bytes' const.
8680         (read_signatured_type_reader): Make 'info_ptr' const.
8681         (decode_locdesc): Constify.
8682         (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
8683         const.
8684         (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
8685         'mac_end', and return type const.
8686         (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
8687         (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
8688         type const.
8689         (per_cu_header_read_in): Constify.
8690         * symfile.h (dwarf2_get_section_info): Update.
8691
8692 2013-04-12  Tom Tromey  <tromey@redhat.com>
8693
8694         * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
8695
8696 2013-04-12  Eli Zaretskii  <eliz@gnu.org>
8697
8698         * NEWS: Mention "show configuration", --configuration.
8699         * top.c (print_gdb_configuration): New function, displays the
8700         details about GDB configure-time parameters.
8701         (print_gdb_version): Mention "show configuration".
8702         * cli/cli-cmds.c (show_configuration): New function.
8703         (_initialize_cli_cmds): Add the "show configuration" command.
8704         * main.c (captured_main) <print_configuration>: New static var.
8705         <long_options>: Use it.
8706         If --configuration was given, call print_gdb_configuration.
8707
8708 2013-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8709             Pedro Alves  <palves@redhat.com>
8710
8711         * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
8712         (generated_files): Add gcore.
8713         (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
8714         HAVE_NATIVE_GCORE_HOST.
8715         (gcore): New.
8716         * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
8717         * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
8718         config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
8719         config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
8720         config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
8721         Add HAVE_NATIVE_GCORE_HOST.
8722         * configure: Regenerate.
8723         * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
8724         New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME.  New
8725         AC_CONFIG_FILES for gcore.
8726         * configure.tgt: Add gdb_have_gcore to the initial comment.  Set
8727         gdb_have_gcore.
8728         * gdb_gcore.sh: Rename to ...
8729         * gcore.in: ... here.  Remove gcore.sh comment.  Use GDB_TRANSFORM_NAME
8730         and GCORE_TRANSFORM_NAME substitutions.
8731
8732         Fix parsing tabs in ${gdb_target_obs}.
8733         * configure.tgt (gdb_have_gcore): Replace case with for and if.
8734
8735 2013-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8736
8737         * remote.c (unpush_and_perror): Add output message final dot.
8738
8739 2013-04-11  Yao Qi  <yao@codesourcery.com>
8740
8741         * tracepoint.c (tfile_interp_line): Fit parameters line and
8742         utpp in one line.
8743
8744 2013-04-10  Joel Brobecker  <brobecker@adacore.com>
8745
8746         * solib.c (solib_map_sections): Remove code overwriting
8747         SO->SO_NAME with the bfd's filename.
8748
8749 2013-04-10  Pedro Alves  <palves@redhat.com>
8750
8751         * cli/cli-decode.c (integer_unlimited_completer): New function.
8752         (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
8753         (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
8754         completer.
8755         * cli/cli-setshow.c: Include "cli/cli-utils.h".
8756         (is_unlimited_literal): New function.
8757         (do_set_command): Handle literal "unlimited" arguments.
8758         * frame.c (_initialize_frame) <set backtrace limit>: Document
8759         "unlimited".
8760         * printcmd.c (_initialize_printcmd) <set print
8761         max-symbolic-offset>: Add help text.
8762         * record-full.c (_initialize_record_full) <set record full
8763         insn-number-max>: Likewise.
8764         * record.c (_initialize_record) <set record
8765         instruction-history-size, set record function-call-history-size>:
8766         Add help text.
8767         * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
8768         help text.
8769         * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
8770         Likewise.
8771         * source.c (_initialize_source) <set listsize>: Add help text.
8772         * utils.c (initialize_utils) <set height, set width>: Likewise.
8773         <set pagination>: Mention "set height unlimited".
8774         * valprint.c (_initialize_valprint) <set print elements, set print
8775         repeats>: Document "unlimited".
8776
8777 2013-04-10  Pedro Alves  <palves@redhat.com>
8778
8779         * cli/cli-cmds.c (quit_command): Call query_if_trace_running
8780         instead of disconnect_tracing.
8781         * infcmd.c (detach_command, disconnect_command): Call
8782         query_if_trace_running.  Adjust.
8783         * top.c: Include "tracepoint.h".
8784         (quit_target): Delete.  Contents moved ...
8785         (quit_force): ... here.  Wrap each stage of teardown in
8786         TRY_CATCH.  Call disconnect_tracing before detaching.
8787
8788 2013-04-10  Hui Zhu  <hui@codesourcery.com>
8789             Yao Qi  <yao@codesourcery.com>
8790
8791         * configure.ac: Check libbabeltrace is installed.
8792         * config.in: Regenerate.
8793         * configure: Regenerate.
8794         * Makefile.in (LIBBABELTRACE): New.
8795         (CLIBS): Add LIBBABELTRACE.
8796         * ctf.c: Include "exec.h".
8797         (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
8798         (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
8799         (ctf_save_metadata_header): Define new type aliases in
8800         metadata.
8801         (ctf_write_header): Define event type "tsv_def" and "tp_def"
8802         in metadata.  Start a new faked packet for trace status.
8803         (ctf_write_status): Write trace status to CTF.
8804         (ctf_write_uploaded_tsv): Write TSV to CTF.
8805         (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
8806         (ctf_write_definition_end): End the faked packet.
8807
8808         (ctx, ctf_iter, trace_dirname): New.
8809         (start_pos): New variable.
8810         (ctf_destroy, ctf_open_dir, ctf_open): New.
8811         (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
8812         macros.
8813         (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
8814         (ctf_fetch_registers, ctf_xfer_partial): New.
8815         (ctf_get_trace_state_variable_value): New.
8816         (ctf_get_tpnum_from_frame_event): New.
8817         (ctf_get_traceframe_address): New.
8818         (ctf_trace_find, ctf_has_stack): New.
8819         (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
8820         (ctf_get_trace_status, ctf_read_status): New.
8821         (_initialize_ctf): New.
8822         * tracepoint.c (get_tracepoint_number): New
8823         (get_uploaded_tsv): Remove 'static'.
8824         (struct traceframe_info, trace_regblock_size): Move it to ...
8825         * tracepoint.h: ... here.
8826         (get_tracepoint_number): Declare it.
8827         (get_uploaded_tsv): Declare it.
8828
8829         * NEWS: Mention new configure option.
8830
8831 2013-04-10  Pedro Alves  <palves@redhat.com>
8832             Hui Zhu  <hui@codesourcery.com>
8833
8834         * breakpoint.c (dprintf_re_set): New.
8835         (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
8836         to dprintf_re_set.
8837
8838 2013-04-09  Joel Brobecker  <brobecker@adacore.com>
8839
8840         * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
8841         Remove solib-svr4.o from the list.
8842
8843 2013-04-09  Joel Brobecker  <brobecker@adacore.com>
8844
8845         * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
8846         Use gdb_assert_not_reached instead of invalid boolean expression.
8847
8848 2013-04-09  Pedro Alves  <palves@redhat.com>
8849
8850         * remote.c (unpush_and_perror): New function.
8851         (readchar, remote_serial_write): Use it.
8852
8853 2013-04-09  Markus Metzger  <markus.t.metzger@intel.com>
8854
8855         * NEWS: Mention new btrace RSP packets.
8856
8857 2013-04-08  Tom Tromey  <tromey@redhat.com>
8858
8859         * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
8860         long.
8861
8862 2013-04-08  Tom Tromey  <tromey@redhat.com>
8863
8864         * maint.c (print_bfd_section_info): Print the section index.
8865         * symmisc.c (dump_msymbols): Print the section index.
8866
8867 2013-04-08  Tom Tromey  <tromey@redhat.com>
8868
8869         PR symtab/8424:
8870         * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
8871         SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
8872         * breakpoint.c (resolve_sal_pc): Update.
8873         * elfread.c (elf_gnu_ifunc_record_cache): Update.
8874         * findvar.c (struct minsym_lookup_data) <objfile>: New field.
8875         (minsym_lookup_iterator_cb): Use it.
8876         (default_read_var_value): Update.
8877         * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
8878         Update.
8879         * infcmd.c (jump_command): Update.
8880         * linespec.c (minsym_found): Update.
8881         * maint.c (maintenance_translate_address): Update.
8882         * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
8883         (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
8884         * parse.c (write_exp_msymbol): Update.
8885         * printcmd.c (address_info): Update.
8886         * psymtab.c (find_pc_sect_psymbol): Update.
8887         (fixup_psymbol_section): Check SYMBOL_SECTION, not
8888         SYMBOL_OBJ_SECTION.
8889         (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
8890         Don't initialize SYMBOL_OBJ_SECTION.
8891         * spu-tdep.c (spu_catch_start): Update.
8892         * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
8893         * symmisc.c (dump_msymbols, print_symbol): Update.
8894         * symtab.c (fixup_section): Don't set 'obj_section'.  Change
8895         how fallback section is computed.
8896         (fixup_symbol_section): Update.
8897         (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
8898         Update.
8899         (allocate_symbol, initialize_symbol, allocate_template_symbol):
8900         Initialize SYMBOL_SECTION.
8901         * symtab.h (struct general_symbol_info) <section>: Update comment.
8902         <obj_section>: Remove.
8903         (SYMBOL_OBJ_SECTION): Add 'objfile' argument.  Rewrite.
8904         (SYMBOL_OBJFILE): New macro.
8905
8906 2013-04-08  Tom Tromey  <tromey@redhat.com>
8907
8908         * coffread.c (record_minimal_symbol): Update.
8909         * dbxread.c (record_minimal_symbol): Update.
8910         * elfread.c (record_minimal_symbol): Update.
8911         * machoread.c (macho_symtab_add_minsym): Update.
8912         * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
8913         Update.
8914         * minsyms.c (prim_record_minimal_symbol): Update.
8915         (prim_record_minimal_symbol_full): Remove 'bfd_section'
8916         argument.
8917         (prim_record_minimal_symbol_and_info): Likewise.
8918         * minsyms.h (prim_record_minimal_symbol_full)
8919         (prim_record_minimal_symbol_and_info): Update.
8920         * symtab.c (allocate_symbol, initialize_symbol)
8921         (allocate_template_symbol): Initialize SYMBOL_SECTION.
8922         * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
8923         Update.
8924
8925 2013-04-08  Tom Tromey  <tromey@redhat.com>
8926
8927         PR symtab/8423:
8928         * solib-som.c (som_solib_section_offsets): Use BFD section
8929         indices.  Set offsets for all sections.
8930         * somread.c (som_symtab_read): Compute BFD section for
8931         symbol.  Use prim_record_minimal_symbol_and_info.
8932         (som_symfile_read): Fix comment.
8933         (struct find_section_offset_arg): New.
8934         (find_section_offset, set_section_index): New functions.
8935         (som_symfile_offsets): Use set_section_index to compute
8936         section indices.
8937
8938 2013-04-08  Tom Tromey  <tromey@redhat.com>
8939
8940         * coffread.c (cs_to_section): Use gdb_bfd_section_index.
8941         * elfread.c (record_minimal_symbol, elf_symtab_read): Use
8942         gdb_bfd_section_index.
8943         * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
8944         New functions.
8945         * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
8946         Declare.
8947         * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
8948         Update.
8949         * objfiles.c (add_to_objfile_sections_full): New function.
8950         (add_to_objfile_sections): Use it.
8951         (build_section_table): Rewrite.
8952         (objfile_relocate1): Use gdb_bfd_section_index.  Update.
8953         * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
8954         (struct objfile) <sections>: Update comment.
8955         (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
8956         is NULL.
8957         (ALL_OBJSECTIONS): Use it.
8958         * solib-dsbt.c (dsbt_relocate_main_executable): Update.
8959         * solib-frv.c (frv_relocate_main_executable): Update.
8960         * solib-target.c (solib_target_relocate_section_addresses):
8961         Use gdb_bfd_section_index.
8962         * symfile.c (build_section_addr_info_from_section_table):
8963         Use gdb_bfd_section_index.
8964         (build_section_addr_info_from_bfd, place_section): Likewise.
8965         * symtab.c (fixup_section): Update.
8966         * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
8967
8968 2013-04-08  Tom Tromey  <tromey@redhat.com>
8969
8970         * minsyms.h (struct bound_minimal_symbol): New.
8971         (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
8972         Remove objfile argument.
8973         (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
8974         Return bound_minimal_symbol.
8975         * minsyms.c (lookup_minimal_symbol_by_pc_1)
8976         (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
8977         Return bound_minimal_symbol.
8978         (in_gnu_ifunc_stub): Update.
8979         (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
8980         Remove 'objfile_p' argument.
8981         (lookup_solib_trampoline_symbol_by_pc): Update.
8982         * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
8983         arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
8984         c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
8985         glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
8986         i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
8987         linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
8988         mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
8989         ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
8990         stack.c, symtab.c, tui/tui-disasm.c: Update.
8991
8992 2013-04-08  Tom Tromey  <tromey@redhat.com>
8993
8994         * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
8995         Use symbol's obstack, not an objfile.
8996         * coffread.c (process_coff_symbol): Update.
8997         * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
8998         * jv-lang.c (add_class_symbol): Update.
8999         * mdebugread.c (new_symbol): Update.
9000         * minsyms.c (prim_record_minimal_symbol_full)
9001         (terminate_minimal_symbol_table): Update.
9002         * psymtab.c (add_psymbol_to_bcache): Clear entire symbol.  Update.
9003         * stabsread.c (define_symbol, read_enum_type): Update.
9004         * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
9005         Handle Ada specially.
9006         (symbol_set_language): Add 'obstack' argument.
9007         (symbol_set_names): Update.
9008         (symbol_natural_name, symbol_demangled_name): Always use
9009         ada_decode_symbol.
9010         * symtab.h (struct general_symbol_info)
9011         <language_specific::obstack>: New field.
9012         <ada_mangled>: New field.
9013         (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
9014         (symbol_set_language): Update.
9015
9016 2013-04-08  Tom Tromey  <tromey@redhat.com>
9017
9018         * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
9019         Take an obstack, not an objfile.
9020         (symbol_set_names): Update.
9021         * symtab.h (symbol_set_demangled_name): Update.
9022
9023 2013-04-08  Tom Tromey  <tromey@redhat.com>
9024
9025         * coffread.c (process_coff_symbol, coff_read_enum_type): Call
9026         allocate_symbol.
9027         * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
9028         (read_func_scope): Call allocate_template_symbol.
9029         (new_symbol_full): Call allocate_symbol.
9030         * jit.c (finalize_symtab): Call allocate_symbol.
9031         * jv-lang.c (add_class_symbol): Call allocate_symbol.
9032         * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
9033         * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
9034         (common_block_end): Call allocate_symbol.
9035         * symtab.c (allocate_symbol, initialize_symbol)
9036         (allocate_template_symbol): New functions.
9037         * symtab.c (allocate_symbol, initialize_symbol)
9038         (allocate_template_symbol): Declare.
9039         * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
9040
9041 2013-04-08  Pedro Alves  <palves@redhat.com>
9042             Keith Seitz  <keiths@redhat.com>
9043
9044         * breakpoint.c (create_breakpoint): Rename
9045         "parse_condition_and_thread" parameter to "parse_arg".  Update
9046         describing comment.  If !PARSE_ARG, then error out if ARG is not
9047         the empty string after extracting the location.
9048         * breakpoint.h (create_breakpoint): Rename
9049         "parse_condition_and_thread" parameter to "parse_arg".
9050
9051 2013-04-08  Aleksandar Ristovski  <aristovski@qnx.com
9052
9053         * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
9054
9055 2013-04-07  Yao Qi  <yao@codesourcery.com>
9056
9057         * remote.c (remote_trace_find): Change type of parameters 'addr1'
9058         and 'addr2' to CORE_ADDR.
9059         * target.c (update_current_target): Update.
9060         * target.h (struct target_ops) <to_trace_find>: Change parameter
9061         type to CORE_ADDR.
9062         * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
9063         'addr2' to CORE_ADDR.
9064         (tfile_trace_find): Likewise.
9065         (tfile_get_traceframe_address): Change return type to CORE_ADDR.
9066         Change local variable 'addr' to type CORE_ADDR.
9067         * tracepoint.h (tfind_1): Update declaration.
9068
9069 2013-04-06  Eli Zaretskii  <eliz@gnu.org>
9070
9071         * windows-nat.c (windows_get_absolute_argv0): Move from here...
9072         * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
9073         Include main.h.
9074
9075         * windows-nat.h (windows_get_absolute_argv0): Move prototype from
9076         here...
9077         * main.h (windows_get_absolute_argv0): ...to here.
9078
9079 2013-04-05  Doug Evans  <dje@google.com>
9080
9081         * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
9082         (read_cutu_die_from_dwo): Add comments.
9083         (read_structure_type): Update comment.
9084         (read_enumeration_type, read_namespace_type): Update comment.
9085         (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
9086
9087 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
9088
9089         Convert man pages to texinfo, new gdbinit.5 texinfo page.
9090         * Makefile.in (gdb.z): Remove.
9091         (install-only): Remove $(man1dir) and gdb.1 installation.
9092         * gdb.1: Remove.
9093
9094 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
9095
9096         Fix compatibility with Linux kernel 3.8.3.
9097         * linux-tdep.c (linux_find_memory_regions_full): Move variable number
9098         to more inner block.  Remove parsing of NUMBER from outer block.
9099         Parse NUMBER only if KEYWORD has been identified.
9100
9101 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
9102
9103         Fix variable name shadowing.
9104         * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
9105         filename to mapsfilename and update its uses.
9106
9107 2013-04-05  Eli Zaretskii  <eliz@gnu.org>
9108
9109         * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
9110         empty.  See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
9111         and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
9112         details of the problem.
9113
9114 2013-04-04  Pedro Alves  <palves@redhat.com>
9115             Hui Zhu  <hui@codesourcery.com>
9116
9117         * breakpoint.c (validate_commands_for_breakpoint): If validating a
9118         tracepoint, reset its STEP_COUNT and call validate_actionline.
9119
9120 2013-04-03  Doug Evans  <dje@google.com>
9121
9122         * dwarf2read.c (read_die_and_siblings_1): Renamed from
9123         read_die_and_siblings.
9124         (read_die_and_siblings): New function.
9125         (read_cutu_die_from_dwo): Dump die if requested.
9126         (read_die_and_children): Call read_full_die_1 and
9127         read_die_and_siblings_1.
9128         (read_full_die): Dump die if requested.
9129
9130         * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
9131
9132         * dwarf2read.c (struct dwo_file): New member comp_dir.
9133         Rename member name to dwo_name.  All uses updated.
9134         (hash_dwo_file): Include comp_dir in computation.
9135         (eq_dwo_file): Ditto.
9136         (lookup_dwo_file_slot): New arg comp_dir.  All callers updated.
9137         (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
9138
9139         * psymtab.c (read_psymtabs_with_fullname): Don't call
9140         psymtab_to_fullname if the basenames are different.
9141
9142 2013-04-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
9143
9144         * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
9145         New entry about "fullname" presence.
9146
9147 2013-04-03  Pedro Alves  <palves@redhat.com>
9148
9149         * NEWS: Mention x86_64/Cygwin as new native configuration.
9150
9151 2013-04-02  Doug Evans  <dje@google.com>
9152
9153         * dwarf2read.c (read_structure_type): Fix typo in comment.
9154
9155 2013-04-02  Pedro Alves  <palves@redhat.com>
9156
9157         * NEWS: Mention "set/show debug aarch64", "set/show debug
9158         coff-pe-read" and "set/show debug mach-o".
9159
9160 2013-04-02  Pedro Alves  <palves@redhat.com>
9161
9162         * NEWS: Mention "set/show remote trace-buffer-size-packet".
9163
9164 2013-04-02  Eli Zaretskii  <eliz@gnu.org>
9165
9166         * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
9167         gdb_string.h is now in common/.
9168
9169 2013-04-02  Pedro Alves  <palves@redhat.com>
9170
9171         * NEWS: Move "set debug notification" and "set trace-buffer-size"
9172         under "New options".
9173
9174 2013-04-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
9175
9176         Revert this patch:
9177         PR gdb/15275
9178         * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
9179
9180 2013-04-02  Pedro Alves  <palves@redhat.com>
9181
9182         PR gdb/15275
9183
9184         * remote.c (send_interrupt_sequence): Use remote_serial_write.
9185         (remote_serial_write): New function.
9186         (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
9187
9188 2013-04-01  Jiong Wang  <jiwang@tilera.com>
9189
9190         * NEWS: Mention TILE-Gx in "New native configurations" and
9191         "New targets" sections.
9192
9193 2013-04-01  Doug Evans  <dje@google.com>
9194
9195         * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
9196         (process_enumeration_scope): Simplify.
9197
9198         * dwarf2read.c (struct dwarf2_per_cu_data): Move member
9199         type_unit_group ...
9200         (struct signatured_type): ... to here.
9201         (sig_type_ptr): New typedef.
9202         (type_unit_group): Delete member 't.first_cu'.  Move member 'tus'
9203         out of union 't'.  All uses updated.
9204         (dw2_get_file_names_reader): Assert not called for a type unit.
9205         (dw2_get_file_names): Assert not called for a type unit or type
9206         unit group.
9207         (build_type_psymtabs_reader): Assert called for a type unit.
9208         (build_type_psymtab_dependencies): Assert called for a type unit group.
9209
9210         * dwarf2read.c (free_dwo_file): Add comment.
9211         (dwarf2_per_objfile_free): Unref dwp bfd.
9212
9213 2013-04-01  Aleksandar Ristovski  <aristovski@qnx.com>
9214
9215         * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
9216         (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
9217         (read_pe_exported_syms): Remove unused 'exportix'.
9218         (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
9219         'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
9220         'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
9221
9222 2013-04-01  Aleksandar Ristovski  <aristovski@qnx.com>
9223
9224         * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
9225         (print_it_watchpoint): Remove unused 'bl'.
9226         (say_where): Remove unused 'uiout'.
9227         (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
9228         (bkpt_breakpoint_hit): Remove unused 'b'.
9229         (internal_bkpt_print_it): Remove unused 'uiout'.
9230         * buildsym.c (augment_type_symtab): Remove unused 'i'.
9231
9232 2013-03-31  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
9233
9234         * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
9235         (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
9236
9237 2013-03-29  Doug Evans  <dje@google.com>
9238
9239         * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
9240         Delete arg is_dwp.  All callers updated.
9241         (open_dwp_file): New function.
9242         (open_and_init_dwp_file): Call it.
9243         (get_dwp_file): New function.
9244         (lookup_dwo_cutu): Call it.
9245
9246         * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
9247         unnecessary, cleanup.
9248
9249         * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
9250
9251         * dwarf2read.c (read_cutu_die_from_dwo): New function.
9252         (lookup_dwo_unit): New function.
9253         (init_cutu_and_read_dies): Move DWO handling to new functions.
9254
9255         * dwarf2read.c (struct signatured_type): Tweak comment.
9256         (struct dwo_unit): Tweak comment.
9257         (create_debug_types_hash_table): Tweak comment.  Reformat long line.
9258         (create_dwo_debug_info_hash_table): Tweak comment.
9259         (dwarf2_per_cu_offset_and_type): Tweak comment.
9260
9261         * dwarf2read.c (lookup_signatured_type): Remove complaint about
9262         missing .debug_types section.
9263
9264 2013-03-29  Yao Qi  <yao@codesourcery.com>
9265
9266         * corelow.c: Include "completer.h".
9267         (_initialize_corelow): Call add_target_with_completer with
9268         argument 'filename_completer'.
9269         * tracepoint.c: Likewise.
9270         * exec.c (_initialize_exec): Likewise.
9271         * target.c (add_target): Rename to ...
9272         (add_target_with_completer): ... this.  Call set_cmd_completer
9273         if parameter completer is not NULL.
9274         (add_target): New.
9275         * target.h: Include "command.h".
9276         (add_target_with_completer): Declare it.
9277
9278 2013-03-28  Joel Brobecker  <brobecker@adacore.com>
9279
9280         * coffread.c (is_import_fixup_symbol): New function.
9281         (record_minimal_symbol): Use is_import_fixup_symbol to
9282         detect import fixup symbols, and discard them.
9283
9284 2013-03-28  Doug Evans  <dje@google.com>
9285
9286         * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
9287         types hash table until we know we need it.
9288
9289         * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
9290         index numbers.
9291
9292         * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
9293         All callers updated.
9294         (dw2_print_stats): Print #read CUs too.
9295         (dump_die_shallow): Print signatured types better.
9296
9297         * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
9298         info_or_types_section to section.  All uses updated.
9299         (struct dwo_unit): Ditto.
9300
9301 2013-03-28  Pedro Alves  <palves@redhat.com>
9302
9303         * NEWS (New options): New section.
9304         (New options): Mention set/show remote trace-status-packet.
9305         * remote.c (PACKET_qTStatus): New enumeration value.
9306         (remote_get_trace_status): Skip sending qTStatus if the packet is
9307         disabled.  Use packet_ok.
9308         (_initialize_remote): Register a configuration command for
9309         qTStatus packet.
9310
9311 2013-03-28  Doug Evans  <dje@google.com>
9312
9313         * symfile.c (find_separate_debug_file): Add comment.
9314         (terminate_after_last_dir_separator): Tweak comment.
9315
9316         * dwarf2read.c (create_partial_symtab): Add forward decl.
9317         (create_partial_symtab): Move to be closer to other psymtab functions.
9318         (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
9319
9320         * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
9321         (compute_symtab_includes): Remove unnecessary forward declaration.
9322         (die_needs_namespace): Add comment marking group of functions for
9323         dwarf2 name computation.
9324
9325         * typeprint.c (_initialize_typeprint): Improve type help text.
9326
9327         * python/python.c (finish_python_initialization): Provide suggestion
9328         for how to tell gdb to find its python files.
9329
9330 2013-03-28  Pedro Alves  <palves@redhat.com>
9331
9332         PR gdb/15294
9333
9334         * source.c (_initialize_source): Change back "set listsize" to an
9335         integer command.
9336
9337 2013-03-27  Gareth McMullin  <gareth@blacksphere.co.nz>
9338
9339         PR gdb/15275
9340         * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
9341
9342 2013-03-27  Pedro Alves  <palves@redhat.com>
9343
9344         * top.c (history_size): Rename to ...
9345         (history_size_setshow_var): ... this.  Add comment.
9346         (show_commands): Use readline's 'history_length' instead of
9347         computing the history length by calling history_get in a loop.
9348         (set_history_size_command): Error out for sizes over INT_MAX.
9349         Restore previous history size on invalid size.
9350         (init_history): If HISTSIZE is negative, leave the history size as
9351         zero.  Add comments.
9352         (init_main): Adjust.
9353
9354 2013-03-27  Pedro Alves  <palves@redhat.com>
9355
9356         * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
9357         coff_pe_read" command to "set debug coff-pe-read".
9358
9359 2013-03-27  Markus Metzger  <markus.t.metzger@intel.com>
9360
9361         * record.c (command_size_to_target_size): Fix size comparison.
9362         Change parameter type from pointer to integer to integer.
9363         Update all users.
9364
9365 2013-03-27  Pierre Muller  <muller@sourceware.org>
9366
9367         * windows-nat.c (handle_output_debug_string): Avoid typecast
9368         from integer of different size warning.
9369
9370 2013-03-26  Joel Brobecker  <brobecker@adacore.com>
9371
9372         * windows-nat.c (handle_output_debug_string): Add empty line
9373         after local block variable definition.
9374
9375 2013-03-26  Pedro Alves  <palves@redhat.com>
9376
9377         * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
9378         (net_open): Make 'polls' local unsigned.
9379
9380 2013-03-26  Pedro Alves  <palves@redhat.com>
9381
9382         * remote.c (_initialize_remote): Make "set remoteaddresssize"
9383         a zuinteger command instead of uinteger.
9384
9385 2013-03-26  Pedro Alves  <palves@redhat.com>
9386
9387         * record-full.c (record_full_insn_num): Make it unsigned.
9388         (record_full_check_insn_num, record_full_message)
9389         (record_full_registers_change, record_full_xfer_partial): Remove
9390         record_full_insn_max_num check (it's always != 0).
9391         (record_full_info, record_full_restore): Use %u as format string.
9392         (): Use %u as format string.
9393         (set_record_full_insn_max_num): Remove record_full_insn_max_num
9394         check (it's always != 0).
9395
9396 2013-03-26  Pedro Alves  <palves@redhat.com>
9397
9398         * dcache.c (_initialize_dcache): Make the "set dcache line-size"
9399         and "set dcache size" commands zuinteger instead of uinteger.
9400
9401 2013-03-26  Pedro Alves  <palves@redhat.com>
9402
9403         * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
9404         command zuinteger instead of uinteger.
9405
9406 2013-03-26  Pedro Alves  <palves@redhat.com>
9407
9408         * coff-pe-read.c (_initialize_coff_pe_read): Make the command
9409         zuinteger instead of uinteger.
9410
9411 2013-03-26  Pedro Alves  <palves@redhat.com>
9412
9413         * record.c (record_insn_history_size_setshow_var)
9414         (record_call_history_size_setshow_var): New globals.
9415         (command_size_to_target_size): New function.
9416         (cmd_record_insn_history, cmd_record_call_history): Use
9417         command_size_to_target_size instead of cast.
9418         (validate_history_size, set_record_insn_history_size)
9419         (set_record_call_history_size): New functions.
9420         (_initialize_record): Install set_record_insn_history_size and
9421         set_record_call_history_size as "set" hooks of "set record
9422         instruction-history-size" and "set record
9423         function-call-history-size".
9424
9425 2013-03-26  Pedro Alves  <palves@redhat.com>
9426
9427         * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
9428         use with history_max_entries use.  Remove FIXME note.
9429
9430 2013-03-26  Markus Metzger  <markus.t.metzger@intel.com>
9431
9432         * record-btrace.c (record_btrace_close): Call
9433         record_btrace_auto_disable.
9434
9435 2013-03-25  Joel Brobecker  <brobecker@adacore.com>
9436
9437         * rs6000-nat.c (fixup_breakpoints): Delete declaration.
9438
9439 2013-03-25  Doug Evans  <dje@google.com>
9440
9441         * contrib/cc-with-tweaks.sh: Check exit code of dwp.
9442
9443 2013-03-25  Tom Tromey  <tromey@redhat.com>
9444
9445         PR symtab/11462:
9446         * c-exp.y (exp): Add new productions for destructors after '.' and
9447         '->'.
9448         (write_destructor_name): New function.
9449
9450 2013-03-25  Tom Tromey  <tromey@redhat.com>
9451
9452         PR c++/9197:
9453         * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
9454         value_struct_elt, not lookup_struct_elt_type.
9455         * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
9456         STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
9457         * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
9458
9459 2013-03-25  Yao Qi  <yao@codesourcery.com>
9460
9461         * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
9462         instead of '_mkdir'.
9463
9464 2013-03-23  Eli Zaretskii  <eliz@gnu.org>
9465
9466         * windows-nat.c (windows_get_absolute_argv0): New function.
9467         * windows-nat.h: Add its prototype.
9468
9469         * main.c (get_init_files): Use filename_ncmp instead of strncmp.
9470         Use IS_DIR_SEPARATOR instead of looking for a character inside
9471         SLASH_STRING.  Include filenames.h.
9472         (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
9473         relocate_gdb_directory works when passed gdb_program_name.
9474         Include windows-nat.h.
9475
9476 2013-03-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
9477
9478         * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
9479         * remote.c (trace_error): Remove the special handling of '2'.
9480         (readchar) <SERIAL_EOF>
9481         (readchar) <SERIAL_ERROR>
9482         (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
9483         (remote_get_trace_status): Call throw_exception if EX is
9484         TARGET_CLOSE_ERROR.
9485         * utils.c (perror_with_name): Rename to ...
9486         (throw_perror_with_name): ... here.  New parameter errcode, describe it
9487         in the function comment.
9488         (perror_with_name): New function wrapper.
9489         * utils.h (enum errors): New stub declaration.
9490         (throw_perror_with_name): New declaration.
9491
9492 2013-03-22  Pedro Alves  <palves@redhat.com>
9493             Yao Qi  <yao@codesourcery.com>
9494             Mark Kettenis  <kettenis@gnu.org>
9495
9496         * cli/cli-setshow.c (do_set_command) <var_uinteger>:
9497         Don't let the user set the value to UINT_MAX directly.
9498         <var_integer>: Don't let the user set the value to INT_MAX
9499         directly.
9500
9501 2013-03-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
9502
9503         * remote.c (remote_unpush_target): New function.
9504         (remote_open_1): Remove two pop_target calls, update one comment, add
9505         comment to target_preopen call.  Replace pop_target call by
9506         remote_unpush_target call.
9507         (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
9508         pop_target calls by remote_unpush_target calls.
9509
9510 2013-03-22  Pedro Alves  <palves@redhat.com>
9511
9512         * linux-nat.c (linux_child_follow_fork): Don't call
9513         linux_enable_event_reporting.
9514         (linux_handle_extended_wait): Don't call
9515         linux_enable_event_reporting.
9516
9517 2013-03-22  Pedro Alves  <palves@redhat.com>
9518
9519         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
9520         use it to rewrite the trampoline buffers with type gdb_byte[], and
9521         undefine the macro.  Remove char* cast.
9522
9523 2013-03-21  Doug Evans  <dje@google.com>
9524
9525         New commands "mt set per-command {space,time,symtab} {on,off}".
9526         * NEWS: Add entry.
9527         * event-top.c: #include "maint.h".
9528         * main.c: #include "maint.h".
9529         * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
9530         timeval-utils.h, maint.h, cli/cli-setshow.h.
9531         (per_command_time, per_command_space): New static globals.
9532         (per_command_symtab): New static global.
9533         (per_command_setlist, per_command_showlist): New static globals.
9534         (struct cmd_stats): Move here from utils.c.
9535         (set_per_command_time): Renamed from set_display_time in utils.c
9536         and moved here.  All callers updated.
9537         (set_per_command_space): Renamed from set_display_space in utils.c
9538         and moved here.  All callers updated.
9539         (count_symtabs_and_blocks): New function.
9540         (report_command_stats): Moved here from utils.c.  Add support for
9541         printing symtab stats.  Only print data if enabled before command
9542         executed.
9543         (make_command_stats_cleanup): Ditto.
9544         (sert_per_command_cmd, show_per_command_cmd): New functions.
9545         (_initialize_maint_cmds): Add new commands
9546         mt set per-command {space,time,symtab} {on,off}.
9547         * maint.h: New file.
9548         * top.c: #include "maint.h".
9549         * utils.c (reset_prompt_for_continue_wait_time): New function.
9550         (get_prompt_for_continue_wait_time): New function.
9551         * utils.h (reset_prompt_for_continue_wait_time): Declare
9552         (get_prompt_for_continue_wait_time): Declare.
9553         (make_command_stats_cleanup): Moved to maint.h.
9554         (set_display_time, set_display_space): Moved to maint.h and renamed
9555         to set_per_command_time, set_per_command_space.
9556         * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
9557         parse_binary_operation and made non-static.  Don't call error,
9558         just return an error marker.  All callers updated.
9559         * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
9560
9561 2013-03-21  Tom Tromey  <tromey@redhat.com>
9562
9563         * symfile.c (alloc_section_addr_info): Update header.  Don't set
9564         'num_sections' field.
9565         (build_section_addr_info_from_section_table): Set 'num_sections'.
9566         (build_section_addr_info_from_bfd): Likewise.
9567         (build_section_addr_info_from_objfile): Remove dead loop
9568         condition.
9569         (free_section_addr_info): Unconditionally call xfree.
9570         (relative_addr_info_to_section_offsets, addrs_section_sort)
9571         (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
9572         condition.
9573         (syms_from_objfile_1): Remove dead 'if' condition.  Check
9574         'num_sections'.
9575         (add_symbol_file_command): Set 'num_sections'.
9576         * symfile-mem.c (symbol_file_add_from_memory): Set
9577         'num_sections'.
9578         * somread.c (som_symfile_offsets): Remove dead loop condition.
9579         * machoread.c (macho_symfile_offsets): Remove dead 'if'.
9580         * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
9581
9582 2013-03-21  Tom Tromey  <tromey@redhat.com>
9583
9584         * tracepoint.h (decode_agent_options): Add 'trace_string'
9585         argument.
9586         * tracepoint.c (decode_agent_options): Add 'trace_string'
9587         argument.
9588         (validate_actionline): Update.
9589         (collect_symbol): Add 'trace_string' argument.
9590         (struct add_local_symbols_data) <trace_string>: New field.
9591         (do_collect_symbol): Update.
9592         (add_local_symbols): Add 'trace_string' argument.
9593         (encode_actions_1): Update.
9594         (trace_dump_actions): Update.
9595         * dwarf2loc.c (access_memory): Update.
9596         * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
9597         * ax-general.c (new_agent_expr): Update.
9598         * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
9599         (gen_trace_for_return_address): Add argument.
9600         (trace_kludge, trace_string_kludge): Remove.
9601         * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
9602         (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
9603         (gen_trace_for_var): Add 'trace_string' argument.
9604         (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
9605         (gen_printf, agent_eval_command_one): Update.
9606
9607 2013-03-21  Tom Tromey  <tromey@redhat.com>
9608
9609         PR exp/15109:
9610         * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
9611         Handle FILENAME token.
9612
9613 2013-03-21  Tom Tromey  <tromey@redhat.com>
9614
9615         * c-exp.y (YYPRINT): Define.
9616         (c_print_token): New function.
9617
9618 2013-03-21  Tom Tromey  <tromey@redhat.com>
9619
9620         * c-exp.y (%union) <sym, ivar, ivec>: Remove.
9621
9622 2013-03-21  Yao Qi  <yao@codesourcery.com>
9623
9624         * ctf.c: Include "gdb_stat.h".
9625         [USE_WIN32API]: New macro 'mkdir'.
9626         (ctf_start): Use permission bits macros if they are defined.
9627
9628 2013-03-20  Keith Seitz  <keiths@redhat.com>
9629
9630         * breakpoint.h (struct breakpoint): Add comment to
9631         extra_string indicating that this member is mallod'd.
9632         * breakpoint.c (base_breakpoint_dtor): Free extra_string.
9633
9634 2013-03-20  Pedro Alves  <palves@redhat.com>
9635
9636         PR gdb/15289
9637
9638         * cli/cli-setshow.c (do_set_command)
9639         <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
9640         the result of parsing the command argument.  Throw error if the
9641         value is greater than UINT_MAX.  Print the invalid value with
9642         plongest.
9643         <var_integer, var_zinteger>: Use LONGEST for variable holding the
9644         result of parsing the command argument.  Throw error if the value
9645         is greater than INT_MAX, not greater or equal.  Also throw error
9646         if the value is less than INT_MIN.  Print the invalid value with
9647         plongest.
9648         <var_zuinteger_unlimited>: Throw error if the value is greater
9649         than INT_MAX, not greater or equal.
9650         (do_show_command) <var_integer, var_zinteger,
9651         var_zuinteger_unlimited>: Use %d for printing int, not %u.
9652
9653 2013-03-20  Tom Tromey  <tromey@redhat.com>
9654
9655         * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
9656         if possible.
9657         * dwarf2read.c (read_func_scope): Remove old FIXME.
9658         * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
9659         not LOC_COMPUTED.
9660         * findvar.c (symbol_read_needs_frame, default_read_var_value):
9661         Unconditionally call via computed ops, if possible.
9662         * printcmd.c (address_info): Unconditionally call via computed ops,
9663         if possible.
9664         * stack.c (read_frame_arg): Unconditionally call via computed ops,
9665         if possible.
9666         * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
9667         * tracepoint.c (scope_info): Unconditionally call via computed ops,
9668         if possible.
9669
9670 2013-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
9671             Tom Tromey  <tromey@redhat.com>
9672
9673         PR symtab/8421:
9674         * coffread.c (coff_register_index): New global.
9675         (process_coff_symbol, coff_read_enum_type): Set
9676         SYMBOL_ACLASS_INDEX.
9677         (_initialize_coffread): Initialize new global.
9678         * dwarf2loc.c (locexpr_find_frame_base_location)
9679         (dwarf2_block_frame_base_locexpr_funcs)
9680         (loclist_find_frame_base_location)
9681         (dwarf2_block_frame_base_loclist_funcs): New.
9682         (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
9683         (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
9684         * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
9685         (dwarf2_block_frame_base_loclist_funcs): New.
9686         * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
9687         (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
9688         globals.
9689         (read_func_scope): Update.
9690         (fixup_go_packaging, mark_common_block_symbol_computed)
9691         (var_decode_location, new_symbol_full, dwarf2_const_value):
9692         Set SYMBOL_ACLASS_INDEX.
9693         (dwarf2_symbol_mark_computed): Likewise.  Add 'is_block' argument.
9694         (_initialize_dwarf2_read): Initialize new globals.
9695         * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
9696         * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
9697         * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
9698         globals.
9699         (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
9700         (_initialize_mdebugread): Initialize new globals.
9701         * psympriv.h (struct partial_symbol) <aclass>: Update comment.
9702         * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
9703         (stab_register_index, stab_regparm_index): New globals.
9704         (define_symbol, read_enum_type, common_block_end): Set
9705         SYMBOL_ACLASS_INDEX.
9706         (_initialize_stabsread): Initialize new globals.
9707         * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
9708         globals.
9709         (MAX_SYMBOL_IMPLS): New define.
9710         (register_symbol_computed_impl, register_symbol_block_impl)
9711         (register_symbol_register_impl)
9712         (initialize_ordinary_address_classes): New functions.
9713         (_initialize_symtab): Call initialize_ordinary_address_classes.
9714         * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
9715         (struct symbol_impl): New.
9716         (SYMBOL_ACLASS_BITS): New define.
9717         (struct symbol) <aclass, ops>: Remove fields.
9718         <aclass_index>: New field.
9719         (symbol_impls): Declare.
9720         (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
9721         (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
9722         (register_symbol_computed_impl, register_symbol_block_impl)
9723         (register_symbol_register_impl): Declare.
9724         (struct symbol_computed_ops): Add location_has_loclist.
9725         (struct symbol_block_ops): New.
9726         (SYMBOL_BLOCK_OPS): New.
9727         * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
9728
9729 2013-03-20  Tom Tromey  <tromey@redhat.com>
9730
9731         * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
9732         (print_partial_symbols, recursively_search_psymtabs): Use
9733         PSYMBOL_CLASS.
9734
9735 2013-03-20  Pierre Muller  <muller@sourceware.org>
9736
9737         * contrib/ari/gdb_ari.sh (OP eol rule): Also check
9738         addtion, subtraction, multiplication and division binary operator.
9739
9740 2013-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
9741
9742         Code cleanup.
9743         * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
9744         * bsd-kvm.c (bsd_kvm_close): Likewise.
9745         * bsd-uthread.c (bsd_uthread_close): Likewise.
9746         * corelow.c (core_close): Likewise.
9747         (core_close_cleanup): Remove parameter quitting from a caller.
9748         * event-top.c (async_disconnect): Likewise.
9749         * exec.c (exec_close_1): Remove parameter quitting.
9750         * go32-nat.c (go32_close): Likewise.
9751         * linux-nat.c (linux_nat_close): Remove parameter quitting.  Remove
9752         parameter quitting from a caller.
9753         * mips-linux-nat.c (super_close): Remove parameter quitting from the
9754         variable.
9755         (mips_linux_close): Remove parameter quitting.  Remove parameter
9756         quitting from a caller.
9757         * monitor.c (monitor_close): Remove parameter quitting.
9758         * monitor.h (monitor_close): Likewise.
9759         * record-btrace.c (record_btrace_close): Likewise.
9760         * record-full.c (record_full_close): Likewise.
9761         * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
9762         it also from fprintf_unfiltered.
9763         * remote-mips.c (mips_close): Remove parameter quitting.
9764         (mips_detach): Remove parameter quitting from a caller.
9765         * remote-sim.c (gdbsim_close): Remove parameter quitting.
9766         (gdbsim_close): Remove duplicate function comment.  Remove parameter
9767         quitting and remove it also from printf_filtered.
9768         * remote.c (remote_close): Remove parameter quitting.
9769         * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
9770         * target.c (update_current_target): Remove parameter int from to_close
9771         de_fault.
9772         (push_target, unpush_target, pop_target): Remove parameter quitting from
9773         a caller.
9774         (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
9775         Remove parameter quitting from a caller.
9776         (target_preopen): Remove parameter quitting from a caller.
9777         (target_close): Remove parameter quitting.  Remove parameter quitting
9778         from a caller two times.  Remove parameter quitting also from
9779         fprintf_unfiltered.
9780         * target.h (struct target_ops): Remove parameter quitting and as int
9781         from fields to_xclose and to_close.
9782         (extern struct target_ops current_target):
9783         (target_close, pop_all_targets): Remove parameter quitting.  Update the
9784         comment.
9785         (pop_all_targets_above): Remove parameter quitting.
9786         * top.c (quit_target): Remove parameter quitting from a caller.
9787         * tracepoint.c (tfile_close): Remove parameter quitting.
9788         * windows-nat.c (windows_close): Remove parameter quitting.
9789
9790 2013-03-20  Corinna Vinschen  <vinschen@redhat.com>
9791
9792         * windows-nat.c (handle_output_debug_string): Replace call
9793         to string_to_core_addr with call to strtoull.
9794
9795 2013-03-20  Yao Qi  <yao@codesourcery.com>
9796
9797         * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
9798         and write it to CTF metadata.
9799
9800 2013-03-19  Corinna Vinschen  <vinschen@redhat.com>
9801
9802         * windows-nat.c (handle_output_debug_string): Change type of n to
9803         SIZE_T to avoid crash on 64 bit systems.
9804
9805 2013-03-17  Eli Zaretskii  <eliz@gnu.org>
9806
9807         * python/python-internal.h (HAVE_SNPRINTF)
9808         [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
9809         about redefinition of snprintf by pyerrors.h.
9810
9811 2013-03-15  Steve Ellcey  <sellcey@mips.com>
9812
9813         * remote-sim.c (sim_command_completer): Make char arguments const.
9814
9815 2013-03-15  Tom Tromey  <tromey@redhat.com>
9816
9817         PR c++/15116:
9818         * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
9819
9820 2013-03-14  Tom Tromey  <tromey@redhat.com>
9821
9822         * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
9823         New fields.
9824         (get_file_crc): Move from symfile.c.
9825         (gdb_bfd_crc): New function.
9826         * gdb_bfd.h (gdb_bfd_crc): Declare.
9827         * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
9828         * symfile.c (get_file_crc): Move to gdb_bfd.c.
9829         (separate_debug_file_exists): Use gdb_bfd_crc.
9830
9831 2013-03-14  Tom Tromey  <tromey@redhat.com>
9832
9833         * symfile.c (get_debug_link_info): Remove.
9834         (find_separate_debug_file_by_debuglink): Use
9835         bfd_get_debug_link_info.
9836
9837 2013-03-14  Tom Tromey  <tromey@redhat.com>
9838
9839         * symtab.c (error_in_psymtab_expansion): New function.
9840         (lookup_symbol_aux_quick)
9841         (basic_lookup_transparent_type_quick): Remove "last resort"
9842         code.  Use error_in_psymtab_expansion.
9843
9844 2013-03-14  Doug Evans  <dje@google.com>
9845             Jan Kratochvil  <jan.kratochvil@redhat.com>
9846
9847         * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
9848         any successful compare_filenames_for_search or FILENAME_CMP.
9849         * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
9850         * symtab.c (iterate_over_some_symtabs): Likewise.
9851
9852 2013-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
9853
9854         * source.c (print_source_lines_base): Make a local copy of
9855         symtab_to_fullname.
9856
9857 2013-03-14  Hui Zhu  <hui_zhu@mentor.com>
9858             Jan Kratochvil  <jan.kratochvil@redhat.com>
9859
9860         * source.c (print_source_lines_base): Suppress "file" for TUI.
9861
9862 2013-03-14  Keith Seitz  <keiths@redhat.com>
9863             Alan Matsuoka  <alanm@redhat.com>
9864
9865         PR c++/15203
9866         PR c++/15210
9867         * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
9868         TYPE_CODE_METHOD.
9869         * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
9870         symbols.
9871
9872 2013-03-14  Yao Qi  <yao@codesourcery.com>
9873
9874         * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
9875         status to tfile if trace is stopped by command 'tstop'.
9876
9877 2013-03-14  Yao Qi  <yao@codesourcery.com>
9878
9879         * tracepoint.c (tfile_write_status): Write trace notes and user
9880         name into tfile if they are not NULL.
9881
9882 2013-03-14  Hui Zhu  <hui@codesourcery.com>
9883             Yao Qi  <yao@codesourcery.com>
9884
9885         * Makefile.in (REMOTE_OBS): Add ctf.o.
9886         (SFILES): Add ctf.c.
9887         (HFILES_NO_SRCDIR): Add ctf.h.
9888         * ctf.c, ctf.h: New files.
9889         * tracepoint.c: Include 'ctf.h'.
9890         (collect_pseudocommand): Remove static.
9891         (trace_save_command): Parse option "-ctf".
9892         Produce different trace file writers per option.
9893         Adjust output message.
9894         (trace_save_tfile, trace_save_ctf): New.
9895         * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
9896         * mi/mi-main.c: Include 'ctf.h'.
9897         (mi_cmd_trace_save): Handle option '-ctf'.  Call either
9898         trace_save_tfile or trace_save_ctf.
9899         * NEWS: Mention these changes.
9900
9901 2013-03-14  Yao Qi  <yao@codesourcery.com>
9902
9903         * tracepoint.c (trace_file_writer_xfree): New.
9904         (struct tfile_writer_data): New.
9905         (tfile_dtor, tfile_can_target_save, tfile_start): New.
9906         (tfile_write_header, tfile_write_regblock_type): New.
9907         (tfile_write_status, tfile_write_uploaded_tsv): New.
9908         (tfile_write_uploaded_tp, tfile_write_definition_end): New.
9909         (tfile_write_raw_data, (tfile_end): New.
9910         (tfile_write_ops): New global variable.
9911         (TRACE_WRITE_R_BLOCK): New macro.
9912         (TRACE_WRITE_M_BLOCK_HEADER): New macro.
9913         (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
9914         (TRACE_WRITE_V_BLOCK): New macro.
9915         (trace_save): Add extra one parameter WRITER.  Make it static.
9916         Use WRITER to writer trace.
9917         (tfile_trace_file_writer_new): New.
9918         (trace_save_command): Caller update.
9919         (trace_save_tfile): Write trace data in TFILE format.
9920         * tracepoint.h (struct trace_frame_write_ops): New.
9921         (struct trace_file_write_ops): New.
9922         (struct trace_file_writer): New.
9923         (trace_save): Remove its declaration.
9924         (trace_save_tfile): Declare it.
9925         * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
9926         instead of trace_save.
9927
9928 2013-03-13  Pedro Alves  <palves@redhat.com>
9929
9930         * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
9931
9932 2013-03-13  Pedro Alves  <palves@redhat.com>
9933
9934         * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
9935         commented out code.
9936         * demangle.c (current_demangling_style_string): Make it const.
9937         (set_demangling_command): Assert the demangling style is known.
9938         Remove all handling of unknown styles.  Set
9939         'current_demangling_style_string' to an element of the
9940         demangling_style_names array.
9941         (set_demangling_style): Delete.
9942         (_initialize_demangler): Set current_demangling_style_string to the
9943         element of the demangling_style_names array that corresponds to
9944         the default demangling style.  Remove FIXME note.  Don't call
9945         set_demangling_style.
9946         * gdb-demangle.h (set_demangling_style): Remove declaration.
9947
9948 2013-03-13  Pedro Alves  <palves@redhat.com>
9949
9950         * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
9951         fields const.
9952         (ada_make_symbol_completion_list): Make "text0" parameter const.
9953         * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
9954         * breakpoint.c (condition_completer): Make "text" and "word"
9955         parameters const.  Adjust.
9956         (check_tracepoint_command): Adjust to validate_actionline
9957         prototype change.
9958         (catch_syscall_completer): Make "text" and "word" parameters
9959         const.
9960         * cli/cli-cmds.c (show_user): Make "comname" local const.
9961         (valid_command_p): Make "command" parameter const.
9962         (alias_command): Make "alias_prefix" and "command_prefix" locals
9963         const.
9964         * cli/cli-decode.c (add_cmd): Make "name" parameter const.
9965         (add_alias_cmd): Make "name" and "oldname" parameters const.
9966         Adjust.  No longer make copy of OLDNAME.
9967         (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
9968         (add_setshow_cmd_full, add_setshow_enum_cmd)
9969         (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
9970         (add_setshow_filename_cmd, add_setshow_string_cmd)
9971         (add_setshow_string_noescape_cmd)
9972         (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
9973         (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
9974         (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
9975         (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
9976         Make "name" parameter const.
9977         (help_cmd): Rename "command" parameter to "arg".  New const local
9978         "command".
9979         (find_cmd): Make "command" parameter const.
9980         (lookup_cmd_1): Make "text" parameter pointer to const.  Adjust to
9981         deprecated_cmd_warning prototype change.
9982         (undef_cmd_error): Make "cmdtype" parameter const.
9983         (lookup_cmd): Make "line" parameter const.
9984         (deprecated_cmd_warning): Change type of "text" parameter to
9985         pointer to const char, from pointer to pointer to char.  Adjust.
9986         (lookup_cmd_composition): Make "text" parameter const.
9987         (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
9988         parameters const.
9989         * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
9990         const.
9991         * cli/cli-script.c (validate_comname): Make "tem" local const.
9992         (define_command): New const local "tem_c".  Use it in calls to
9993         lookup_cmd.
9994         (document_command): Make "tem" and "comfull" locals const.
9995         (show_user_1): Make "prefix" and "name" parameters const.
9996         * cli-script.h (show_user_1): Make "prefix" and "name" parameters
9997         const.
9998         * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
9999         (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
10000         (deprecated_cmd_warning, lookup_cmd_composition, add_com)
10001         (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
10002         (complete_on_enum, add_setshow_enum_cmd)
10003         (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
10004         (add_setshow_filename_cmd, add_setshow_string_cmd)
10005         (add_setshow_string_noescape_cmd)
10006         (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
10007         (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
10008         (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
10009         Change prototypes, constifying strings.
10010         * completer.c (noop_completer, filename_completer): Make "text"
10011         and "prefix" parameters const.
10012         (location_completer, expression_completer)
10013         (complete_line_internal): Make "text" and "prefix" parameters
10014         const and adjust.
10015         (command_completer, signal_completer): Make "text" and "prefix"
10016         parameters const.
10017         * completer.h (noop_completer, filename_completer)
10018         (expression_completer, location_completer, command_completer)
10019         (signal_completer): Change prototypes.
10020         * corefile.c (complete_set_gnutarget): Make "text" and "word"
10021         parameters const.
10022         * cp-abi.c (cp_abi_completer): Likewise.
10023         * expression.h (parse_expression_for_completion): Change
10024         prototype.
10025         * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
10026         parameters const.
10027         * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
10028         * infrun.c (handle_completer): Make "text" and "word" parameters
10029         const.
10030         * interps.c (interpreter_completer): Make "text" and "word"
10031         parameters const.
10032         * language.h (struct language_defn)
10033         <la_make_symbol_completion_list>: Make "text" and "word"
10034         parameters const.
10035         * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
10036         (parse_exp_in_context): Rename to ...
10037         (parse_exp_in_context_1): ... this.
10038         (parse_exp_in_context): Reimplement, with const hack from
10039         parse_exp_1.
10040         (parse_expression_for_completion): Make "string" parameter const.
10041         * printcmd.c (decode_format): Make "string_ptr" parameter pointer
10042         to pointer to const char.  Adjust.
10043         (print_command_1): Make "exp" parameter const.
10044         (output_command): Rename to ...
10045         (output_command_const): ... this.  Make "exp" parameter const.
10046         (output_command): Reimplement.
10047         (x_command): Adjust.
10048         (display_command): Rename "exp" parameter to "arg".  New "exp"
10049         local, const version of "arg".
10050         * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
10051         "cmd_name" local const.
10052         * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
10053         call.
10054         (cmdpy_completer): Make "text" and "word" parameters const.
10055         (gdbpy_parse_command_name): Make "prefix_text2" local const.
10056         * python/py-param.c (add_setshow_generic): Make "tmp_name" local
10057         const.
10058         * remote.c (_initialize_remote): Make "cmd_name" local const.
10059         * symtab.c (language_search_unquoted_string): Make "text" and "p"
10060         parameters const.  Adjust.
10061         (completion_list_add_fields): Make "sym_text", "text" and "word"
10062         parameters const.
10063         (struct add_name_data) <sym_text, text, word>: Make fields const.
10064         (default_make_symbol_completion_list_break_on): Make "text" and
10065         "word" parameters const.  Adjust locals.
10066         (default_make_symbol_completion_list)
10067         (make_symbol_completion_list, make_symbol_completion_type)
10068         (make_symbol_completion_list_fn): Make "text" and "word"
10069         parameters const.
10070         (make_file_symbol_completion_list): Make "text", "word" and
10071         "srcfile" parameters const.  Adjust locals.
10072         (add_filename_to_list): Make "text" and "word" parameters const.
10073         (struct add_partial_filename_data) <text, word>: Make fields
10074         const.
10075         (make_source_files_completion_list): Make "text" and "word"
10076         parameters const.
10077         * symtab.h (default_make_symbol_completion_list_break_on)
10078         (default_make_symbol_completion_list, make_symbol_completion_list)
10079         (make_symbol_completion_type enum type_code)
10080         (make_symbol_completion_list_fn make_file_symbol_completion_list)
10081         (make_source_files_completion_list): Change prototype.
10082         * top.c (execute_command): Adjust to pass pointer to pointer to
10083         const char to lookup_cmd, and to deprecated_cmd_warning prototype
10084         change.
10085         (set_verbose): Make "cmdname" local const.
10086         * tracepoint.c (decode_agent_options): Make "exp" parameter const,
10087         and adjust.
10088         (validate_actionline): Make "line" parameter a pointer to const
10089         char, and adjust.
10090         (encode_actions_1): Make "action_exp" local const, and adjust.
10091         (encode_actions): Adjust.
10092         (replace_comma): Delete.
10093         (trace_dump_actions): Make "action_exp" and "next_comma" locals
10094         const, and adjust.  Don't frob the action string while splitting
10095         it at commas.  Instead, make a copy of each split substring in
10096         turn.
10097         (trace_dump_command): Adjust to validate_actionline prototype
10098         change.
10099         * tracepoint.h (decode_agent_options, decode_agent_options)
10100         (encode_actions, validate_actionline): Change prototypes.
10101         * valprint.h (output_command): Delete declaration.
10102         (output_command_const): Declare.
10103         * value.c (function_destroyer): Cast const away in xfree call.
10104
10105 2013-03-13  Pedro Alves  <palves@redhat.com>
10106
10107         * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
10108         rather than casting 'const char * const *' to 'const char **'.
10109         * ada-lex.l (processInt): Make "trailer" local const.  Remove
10110         'const char **' cast.
10111         * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
10112         locals, and use those as strtol output pointer, instead than doing
10113         invalid casts to from 'const char **' to 'char **'.
10114         (_initialize_demangle): Remove cast.
10115         * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
10116         locals, and use those as strtol output pointer, instead than doing
10117         invalid casts to from 'const char **' to 'char **'.
10118         * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
10119         casts.
10120         * stap-probe.c (stap_parse_register_operand)
10121         (stap_parse_single_operand): Likewise.
10122
10123 2013-03-13  Yao Qi  <yao@codesourcery.com>
10124
10125         * tracepoint.c (tfile_get_trace_state_variable_value): Look for
10126         the last matched 'V' blcok in trace frame.
10127
10128 2013-03-12  Joel Brobecker  <brobecker@adacore.com>
10129
10130         * NEWS: Create a new section for the next release branch.
10131         Rename the section of the current branch, now that it has
10132         been cut.
10133
10134 2013-03-12  Joel Brobecker  <brobecker@adacore.com>
10135
10136         GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
10137         * version.in: Bump version to 7.6.50.20130312-cvs.
10138
10139 2013-03-12  Keith Seitz  <keiths@redhat.com>
10140
10141         * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
10142         * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
10143         Remove temporary copy of input string.
10144         (mi_execute_command_wrapper): Make "cmd" const.
10145         * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
10146         * mi/mi-parse.c (mi_parse_argv): Make "args" const.
10147         Use const strings.
10148         (mi_parse): Make "cmd" const.
10149         Use const strings.
10150         * mi/mi-parse.h (mi_parse): Make "cmd" const.
10151
10152 2013-03-12  Keith Seitz  <keiths@redhat.com>
10153
10154         * ada-lang.c (ada_read_renaming_var_value): Pass const
10155         pointer to expression string to parse_exp_1.
10156         (create_excep_cond_exprs): Likewise.
10157         * ax-gdb.c (agent_eval_command_one): Likewise.
10158         (maint_agent_printf_command): Likewise.
10159         Constify much of the string handling/parsing.
10160         * breakpoint.c (set_breakpoint_condition): Pass const
10161         pointer to expression string to parse_exp_1.
10162         (update_watchpoint): Likewise.
10163         (parse_cmd_to_aexpr): Constify string handling.
10164         Pass const pointer to parse_exp_1.
10165         (init_breakpoint_sal): Pass const pointer to parse_exp_1.
10166         (find_condition_and_thread): Likewise.
10167         Make TOK const.
10168         (watch_command_1): Make "arg" const.
10169         Constify string handling.
10170         Copy the expression string instead of changing the input
10171         string.
10172         (update_breakpoint_location): Pass const pointer to
10173         parse_exp_1.
10174         * eval.c (parse_and_eval_address): Make "exp" const.
10175         (parse_to_comma_and_eval): Make "expp" const.
10176         (parse_and_eval): Make "exp" const.
10177         * expression.h (parse_expression): Make argument const.
10178         (parse_exp_1): Make first argument const.
10179         * findcmd.c (parse_find_args): Treat "args" as const.
10180         * linespec.c (parse_linespec): Pass const pointer to
10181         linespec_expression_to_pc.
10182         (linespec_expression_to_pc): Make "exp_ptr" const.
10183         * parse.c (parse_exp_1): Make "stringptr" const.
10184         Make a copy of the expression to pass to parse_exp_in_context until
10185         this whole interface can be constified.
10186         (parse_expression): Make "string" const.
10187         * printcmd.c (ui_printf): Treat "arg" as const.
10188         Handle const strings.
10189         * tracepoint.c (validate_actionline): Pass const pointer to
10190         all calls to parse_exp_1.
10191         (encode_actions_1): Likewise.
10192         * value.h (parse_to_comma_and_eval): Make argument const.
10193         (parse_and_eval_address): Likewise.
10194         (parse_and_eval): Likewise.
10195         * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
10196         (varobj_set_value): Likewise.
10197         * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
10198         constify string handling.
10199         Pass const pointers to parse_and_eval_address and
10200         parse_to_comman_and_eval.
10201         * cli/cli-utils.c (skip_to_space): Rename to ...
10202         (skip_to_space_const): ... this. Handle const strings.
10203         * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
10204         skip_to_space_const.
10205         (skip_to_space_const): Declare.
10206         * common/format.c (parse_format_string): Make "arg" const.
10207         Handle const strings.
10208         * common/format.h (parse_format_string): Make "arg" const.
10209         * gdbserver/ax.c (ax_printf): Make "format" const.
10210         * python/python.c (gdbpy_parse_and_eval): Do not make a copy
10211         of the expression string.
10212
10213 2013-03-12  Hui Zhu  <hui@codesourcery.com>
10214
10215         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
10216
10217 2013-03-12  Yao Qi  <yao@codesourcery.com>
10218             Hui Zhu  <hui@codesourcery.com>
10219
10220         * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
10221         (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
10222         DW_OP_deref_size.
10223
10224 2013-03-12  Paul Hilfinger  <hilfingr@adacore.com>
10225
10226         * ada-lex.l (rules): Only recognize 'thread' as a
10227         delimiter when followed by numerals, as for c-exp.y.
10228         Use new rewind_to_char function to rewind the input for
10229         expression-delimiting tokens.
10230         (rewind_to_char): New function.
10231
10232 2013-03-11  Pedro Alves  <palves@redhat.com>
10233             Jan Kratochvil  <jan.kratochvil@redhat.com>
10234
10235         * configure: Regenerate.
10236         * configure.ac (check dynamic export flag): Link python test with
10237         $PYTHON_LIBS.
10238
10239 2013-03-11  Doug Evans  <dje@google.com>
10240             Keith Seitz  <keiths@redhat.com>
10241
10242         * linespec.c (find_linespec_symbols): Call find_function_symbols
10243         first, and then call lookup_prefix_sym/find_method.
10244
10245 2013-03-11  Pedro Alves  <palves@redhat.com>
10246
10247         * charset.c (convert_between_encodings): Don't cast between
10248         different pointer to pointer types.  Instead, make the 'inp' local
10249         be of the type iconv expects.
10250         (wchar_iterate): Don't cast between different pointer to pointer
10251         types.  Instead, use new pointer local of the type iconv expects.
10252         * target.c (target_read_stralloc, target_fileio_read_stralloc):
10253         Add new local of type char pointer, and use it to get a
10254         char/string view of the byte buffer, instead of casting between
10255         pointer to pointer types.
10256
10257 2013-03-11  Hafiz Abid Qadeer  <abidh@codesourcery.com>
10258
10259         * remote.c (remote_set_trace_buffer_size): Move != operator
10260         to the start of next line to fix an ARI warning.
10261
10262 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10263
10264         * NEWS: Add record changes.
10265
10266 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10267
10268         * record-btrace.c (btrace_insn_history): Omit the pc prefix in
10269         the instruction history disassembly.
10270         * disasm.c (dump_insns): Omit the pc prefix, if requested.
10271         * disasm.h (DISASSEMBLY_OMIT_PC): New.
10272
10273 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10274
10275         * Makefile.in (SFILES): Add record-btrace.c
10276         (COMMON_OBS): Add record-btrace.o
10277         * record-btrace.c: New.
10278         * objfiles.c: Include btrace.h.
10279         (free_objfile): call btrace_free_objfile.
10280
10281 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10282
10283         * target.c (target_call_history, target_call_history_from,
10284         target_call_history_range): New.
10285         * target.h (target_ops) <to_call_history, to_call_history_from,
10286         to_call_history_range>: New fields.
10287         (target_call_history, target_call_history_from,
10288         target_call_history_range): New declaration.
10289         * record.c (get_call_history_modifiers, cmd_record_call_history,
10290         record_call_history_size): New.
10291         (_initialize_record): Add the "record function-call-history" command.
10292         Add "set/show record function-call-history-size" commands.
10293         * record.h (record_print_flag): New.
10294
10295 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10296
10297         * target.h (target_ops) <to_insn_history, to_insn_history_from,
10298         to_insn_history_range>: New fields.
10299         (target_insn_history): New.
10300         (target_insn_history_from): New.
10301         (target_insn_history_range): New.
10302         * target.c (target_insn_history): New.
10303         (target_insn_history_from): New.
10304         (target_insn_history_range): New.
10305         * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
10306         (record_insn_history_size): New.
10307         (get_insn_number): New.
10308         (get_context_size): New.
10309         (no_chunk): New.
10310         (get_insn_history_modifiers): New.
10311         (cmd_record_insn_history): New.
10312         (_initialize_record): Add "set/show record instruction-history-size"
10313         command. Add "record instruction-history" command.
10314
10315 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10316
10317         * record.h (record_disconnect): New.
10318         (record_detach): New.
10319         (record_mourn_inferior): New.
10320         (record_kill): New.
10321         * record-full.c (record_disconnect, record_detach,
10322         record_mourn_inferior, record_kill): Move to...
10323         * record.c: ...here.
10324         (DEBUG): New.
10325         (record_stop): New.
10326         (record_unpush): New.
10327         (cmd_record_stop): Call record_stop. Replace unpush_target
10328         call with record_unpush call.
10329         (record_disconnect, record_detach): Assert that the target
10330         is of record stratum. Call record_unpush, record_stop, and
10331         DEBUG.
10332         (record_mourn_inferior, record_kill): Assert that the target
10333         is of record stratum. Call record_unpush and DEBUG.
10334
10335 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10336
10337         * record-full.h, record-full.c (record_memory_query): Rename
10338         to ...
10339         (record_full_memory_query): ...this. Update all users.
10340         (record_arch_list_add_reg): Rename to ...
10341         (record_full_arch_list_add_reg): ...this. Update all users.
10342         (record_arch_list_add_mem): Rename to ...
10343         (record_full_arch_list_add_mem): ...this. Update all users.
10344         (record_arch_list_add_end): Rename to ...
10345         (record_full_arch_list_add_end): ...this. Update all users.
10346         (record_gdb_operation_disable_set): Rename to ...
10347         (record_full_gdb_operation_disable_set): ...this.
10348         Update all users.
10349
10350 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10351
10352         * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
10353         (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
10354         (RECORD_IS_REPLAY): Renamed to ...
10355         (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
10356         (RECORD_FILE_MAGIC): Renamed to ...
10357         (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
10358         (record_mem_entry): Renamed to ...
10359         (record_full_mem_entry): ... this. Updated all users.
10360         (record_reg_entry): Renamed to ...
10361         (record_full_reg_entry): ... this. Updated all users.
10362         (record_end_entry): Renamed to ...
10363         (record_full_end_entry): ... this. Updated all users.
10364         (record_type) <record_end, record_reg, record_mem>: Renamed
10365         to ...
10366         (record_full_type) <record_full_end, record_full_reg,
10367         record_full_mem>: ... this. Updated all users.
10368         (record_entry): Renamed to ...
10369         (record_full_entry): ... this. Updated all users.
10370         (record_core_buf_entry): Renamed to ...
10371         (record_full_core_buf_entry): ... this. Updated all users.
10372         (record_core_regbuf): Renamed to ...
10373         (record_full_core_regbuf): ... this. Updated all users.
10374         (record_core_start): Renamed to ...
10375         (record_full_core_start): ... this. Updated all users.
10376         (record_core_end): Renamed to ...
10377         (record_full_core_end): ... this. Updated all users.
10378         (record_core_buf_list): Renamed to ...
10379         (record_full_core_buf_list): ... this. Updated all users.
10380         (record_first): Renamed to ...
10381         (record_full_first): ... this. Updated all users.
10382         (record_list): Renamed to ...
10383         (record_full_list): ... this. Updated all users.
10384         (record_arch_list_head): Renamed to ...
10385         (record_full_arch_list_head): ... this. Updated all users.
10386         (record_arch_list_tail): Renamed to ...
10387         (record_full_arch_list_tail): ... this. Updated all users.
10388         (record_stop_at_limit): Renamed to ...
10389         (record_full_stop_at_limit): ... this. Updated all users.
10390         (record_insn_max_num): Renamed to ...
10391         (record_full_insn_max_num): ... this. Updated all users.
10392         (record_insn_num): Renamed to ...
10393         (record_full_insn_num): ... this. Updated all users.
10394         (record_insn_count): Renamed to ...
10395         (record_full_insn_count): ... this. Updated all users.
10396         (record_ops): Renamed to ...
10397         (record_full_ops): ... this. Updated all users.
10398         (record_core_ops): Renamed to ...
10399         (record_full_core_ops): ... this. Updated all users.
10400         (set_record_cmdlist): Renamed to ...
10401         (set_record_full_cmdlist): ... this. Updated all users.
10402         (show_record_cmdlist): Renamed to ...
10403         (show_record_full_cmdlist): ... this. Updated all users.
10404         (record_cmdlist): Renamed to ...
10405         (record_full_cmdlist): ... this. Updated all users.
10406         (record_beneath_to_resume_ops): Renamed to ...
10407         (record_full_beneath_to_resume_ops): ... this. Updated all users.
10408         (record_beneath_to_resume): Renamed to ...
10409         (record_full_beneath_to_resume): ... this. Updated all users.
10410         (record_beneath_to_wait_ops): Renamed to ...
10411         (record_full_beneath_to_wait_ops): ... this. Updated all users.
10412         (record_beneath_to_wait): Renamed to ...
10413         (record_full_beneath_to_wait): ... this. Updated all users.
10414         (record_beneath_to_store_registers_ops): Renamed to ...
10415         (record_full_beneath_to_store_registers_ops): ... this.
10416         Updated all users.
10417         (record_beneath_to_store_registers): Renamed to ...
10418         (record_full_beneath_to_store_registers): ... this.
10419         Updated all users.
10420         (record_beneath_to_xfer_partial_ops): Renamed to ...
10421         (record_full_beneath_to_xfer_partial_ops): ... this.
10422         Updated all users.
10423         (record_beneath_to_xfer_partial): Renamed to ...
10424         (record_full_beneath_to_xfer_partial): ... this.
10425         Updated all users.
10426         (record_beneath_to_insert_breakpoint): Renamed to ...
10427         (record_full_beneath_to_insert_breakpoint): ... this.
10428         Updated all users.
10429         (record_beneath_to_stopped_by_watchpoint): Renamed to ...
10430         (record_full_beneath_to_stopped_by_watchpoint): ... this.
10431         Updated all users.
10432         (record_beneath_to_stopped_data_address): Renamed to ...
10433         (record_full_beneath_to_stopped_data_address): ... this.
10434         Updated all users.
10435         (record_beneath_to_async): Renamed to ...
10436         (record_full_beneath_to_async): ... this. Updated all users.
10437         (record_goto_insn): Renamed to ...
10438         (record_full_goto_insn): ... this. Updated all users.
10439         (record_save): Renamed to ...
10440         (record_full_save): ... this. Updated all users.
10441         (record_reg_alloc): Renamed to ...
10442         (record_full_reg_alloc): ... this. Updated all users.
10443         (record_reg_release): Renamed to ...
10444         (record_full_reg_release): ... this. Updated all users.
10445         (record_mem_alloc): Renamed to ...
10446         (record_full_mem_alloc): ... this. Updated all users.
10447         (record_mem_release): Renamed to ...
10448         (record_full_mem_release): ... this. Updated all users.
10449         (record_end_alloc): Renamed to ...
10450         (record_full_end_alloc): ... this. Updated all users.
10451         (record_end_release): Renamed to ...
10452         (record_full_end_release): ... this. Updated all users.
10453         (record_entry_release): Renamed to ...
10454         (record_full_entry_release): ... this. Updated all users.
10455         (record_list_release): Renamed to ...
10456         (record_full_list_release): ... this. Updated all users.
10457         (record_list_release_following): Renamed to ...
10458         (record_full_list_release_following): ... this.
10459         Updated all users.
10460         (record_list_release_first): Renamed to ...
10461         (record_full_list_release_first): ... this. Updated all users.
10462         (record_arch_list_add): Renamed to ...
10463         (record_full_arch_list_add): ... this. Updated all users.
10464         (record_get_loc): Renamed to ...
10465         (record_full_get_loc): ... this. Updated all users.
10466         (record_check_insn_num): Renamed to ...
10467         (record_full_check_insn_num): ... this. Updated all users.
10468         (record_arch_list_cleanups): Renamed to ...
10469         (record_full_arch_list_cleanups): ... this. Updated all users.
10470         (record_message): Renamed to ...
10471         (record_full_message): ... this. Updated all users.
10472         (record_message_wrapper): Renamed to ...
10473         (record_full_message_wrapper): ... this. Updated all users.
10474         (record_message_wrapper_safe): Renamed to ...
10475         (record_full_message_wrapper_safe): ... this. Updated all users.
10476         (record_gdb_operation_disable): Renamed to ...
10477         (record_full_gdb_operation_disable): ... this. Updated all users.
10478         (record_hw_watchpoint): Renamed to ...
10479         (record_full_hw_watchpoint): ... this. Updated all users.
10480         (record_exec_insn): Renamed to ...
10481         (record_full_exec_insn): ... this. Updated all users.
10482         (record_restore): Renamed to ...
10483         (record_full_restore): ... this. Updated all users.
10484         (record_async_inferior_event_token): Renamed to ...
10485         (record_full_async_inferior_event_token): ... this.
10486         Updated all users.
10487         (record_async_inferior_event_handler): Renamed to ...
10488         (record_full_async_inferior_event_handler): ... this.
10489         Updated all users.
10490         (record_core_open_1): Renamed to ...
10491         (record_full_core_open_1): ... this. Updated all users.
10492         (record_open_1): Renamed to ...
10493         (record_full_open_1): ... this. Updated all users.
10494         (record_open): Renamed to ...
10495         (record_full_open): ... this. Updated all users.
10496         (record_close): Renamed to ...
10497         (record_full_close): ... this. Updated all users.
10498         (record_resume_step): Renamed to ...
10499         (record_full_resume_step): ... this. Updated all users.
10500         (record_resumed): Renamed to ...
10501         (record_full_resumed): ... this. Updated all users.
10502         (record_execution_dir): Renamed to ...
10503         (record_full_execution_dir): ... this. Updated all users.
10504         (record_resume): Renamed to ...
10505         (record_full_resume): ... this. Updated all users.
10506         (record_get_sig): Renamed to ...
10507         (record_full_get_sig): ... this. Updated all users.
10508         (record_sig_handler): Renamed to ...
10509         (record_full_sig_handler): ... this. Updated all users.
10510         (record_wait_cleanups): Renamed to ...
10511         (record_full_wait_cleanups): ... this. Updated all users.
10512         (record_wait_1): Renamed to ...
10513         (record_full_wait_1): ... this. Updated all users.
10514         (record_wait): Renamed to ...
10515         (record_full_wait): ... this. Updated all users.
10516         (record_stopped_by_watchpoint): Renamed to ...
10517         (record_full_stopped_by_watchpoint): ... this. Updated all users.
10518         (record_disconnect): Renamed to ...
10519         (record_full_disconnect): ... this. Updated all users.
10520         (record_detach): Renamed to ...
10521         (record_full_detach): ... this. Updated all users.
10522         (record_mourn_inferior): Renamed to ...
10523         (record_full_mourn_inferior): ... this. Updated all users.
10524         (record_kill): Renamed to ...
10525         (record_full_kill): ... this. Updated all users.
10526         (record_stopped_data_address): Renamed to ...
10527         (record_full_stopped_data_address): ... this. Updated all users.
10528         (record_registers_change): Renamed to ...
10529         (record_full_registers_change): ... this. Updated all users.
10530         (record_store_registers): Renamed to ...
10531         (record_full_store_registers): ... this. Updated all users.
10532         (record_xfer_partial): Renamed to ...
10533         (record_full_xfer_partial): ... this. Updated all users.
10534         (record_breakpoint): Renamed to ...
10535         (record_full_breakpoint): ... this. Updated all users.
10536         (record_breakpoint_p): Renamed to ...
10537         (record_full_breakpoint_p): ... this. Updated all users.
10538         (record_breakpoints): Renamed to ...
10539         (record_full_breakpoints): ... this. Updated all users.
10540         (record_sync_record_breakpoints): Renamed to ...
10541         (record_full_sync_record_breakpoints): ... this.
10542         Updated all users.
10543         (record_init_record_breakpoints): Renamed to ...
10544         (record_full_init_record_breakpoints): ... this.
10545         Updated all users.
10546         (record_insert_breakpoint): Renamed to ...
10547         (record_full_insert_breakpoint): ... this. Updated all users.
10548         (record_remove_breakpoint): Renamed to ...
10549         (record_full_remove_breakpoint): ... this. Updated all users.
10550         (record_can_execute_reverse): Renamed to ...
10551         (record_full_can_execute_reverse): ... this. Updated all users.
10552         (record_get_bookmark): Renamed to ...
10553         (record_full_get_bookmark): ... this. Updated all users.
10554         (record_goto_bookmark): Renamed to ...
10555         (record_full_goto_bookmark): ... this. Updated all users.
10556         (record_async): Renamed to ...
10557         (record_full_async): ... this. Updated all users.
10558         (record_can_async_p): Renamed to ...
10559         (record_full_can_async_p): ... this. Updated all users.
10560         (record_is_async_p): Renamed to ...
10561         (record_full_is_async_p): ... this. Updated all users.
10562         (record_execution_direction): Renamed to ...
10563         (record_full_execution_direction): ... this. Updated all users.
10564         (record_info): Renamed to ...
10565         (record_full_info): ... this. Updated all users.
10566         (record_delete): Renamed to ...
10567         (record_full_delete): ... this. Updated all users.
10568         (record_is_replaying): Renamed to ...
10569         (record_full_is_replaying): ... this. Updated all users.
10570         (record_goto_entry): Renamed to ...
10571         (record_full_goto_entry): ... this. Updated all users.
10572         (record_goto_begin): Renamed to ...
10573         (record_full_goto_begin): ... this. Updated all users.
10574         (record_goto_end): Renamed to ...
10575         (record_full_goto_end): ... this. Updated all users.
10576         (record_goto): Renamed to ...
10577         (record_full_goto): ... this. Updated all users.
10578         (init_record_ops): Renamed to ...
10579         (init_record_full_ops): ... this. Updated all users.
10580         (record_core_resume): Renamed to ...
10581         (record_full_core_resume): ... this. Updated all users.
10582         (record_core_kill): Renamed to ...
10583         (record_full_core_kill): ... this. Updated all users.
10584         (record_core_fetch_registers): Renamed to ...
10585         (record_full_core_fetch_registers): ... this. Updated all users.
10586         (record_core_prepare_to_store): Renamed to ...
10587         (record_full_core_prepare_to_store): ... this. Updated all users.
10588         (record_core_store_registers): Renamed to ...
10589         (record_full_core_store_registers): ... this. Updated all users.
10590         (record_core_xfer_partial): Renamed to ...
10591         (record_full_core_xfer_partial): ... this. Updated all users.
10592         (record_core_insert_breakpoint): Renamed to ...
10593         (record_full_core_insert_breakpoint): ... this. Updated all users.
10594         (record_core_remove_breakpoint): Renamed to ...
10595         (record_full_core_remove_breakpoint): ... this. Updated all users.
10596         (record_core_has_execution): Renamed to ...
10597         (record_full_core_has_execution): ... this. Updated all users.
10598         (init_record_core_ops): Renamed to ...
10599         (init_record_full_core_ops): ... this. Updated all users.
10600         (cmd_record_restore): Renamed to ...
10601         (cmd_record_full_restore): ... this. Updated all users.
10602         (record_save_cleanups): Renamed to ...
10603         (record_full_save_cleanups): ... this. Updated all users.
10604         (cmd_record_start): Renamed to ...
10605         (cmd_record_full_start): ... this. Updated all users.
10606         (set_record_insn_max_num): Renamed to ...
10607         (set_record_full_insn_max_num): ... this. Updated all users.
10608         (set_record_command): Renamed to ...
10609         (set_record_full_command): ... this. Updated all users.
10610         (show_record_command): Renamed to ...
10611         (show_record_full_command): ... this. Updated all users.
10612         (_initialize_record): Renamed to ...
10613         (_initialize_record_full): ... this. Updated all users.
10614
10615 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10616
10617         * record.h: Split into this and ...
10618         * record-full.h: ... this.
10619         * record.c: Split into this and ...
10620         * record-full.c: ... this.
10621         * target.h (target_ops): Add new fields to_info_record,
10622         to_save_record, to_delete_record, to_record_is_replaying,
10623         to_goto_record_begin, to_goto_record_end, to_goto_record.
10624         (target_info_record): New.
10625         (target_save_record): New.
10626         (target_supports_delete_record): New.
10627         (target_delete_record): New.
10628         (target_record_is_replaying): New.
10629         (target_goto_record_begin): New.
10630         (target_goto_record_end): New.
10631         (target_goto_record): New.
10632         * target.c (target_info_record): New.
10633         (target_save_record): New.
10634         (target_supports_delete_record): New.
10635         (target_delete_record): New.
10636         (target_record_is_replaying): New.
10637         (target_goto_record_begin): New.
10638         (target_goto_record_end): New.
10639         (target_goto_record): New.
10640         * record.h: Declare struct cmd_list_element.
10641         (record_cmdlist): New declaration.
10642         (set_record_cmdlist): New declaration.
10643         (show_record_cmdlist): New declaration.
10644         (info_record_cmdlist): New declaration.
10645         (cmd_record_goto): New declaration.
10646         * record.c: Remove unnecessary includes.
10647         Include inferior.h.
10648         (cmd_record_goto): Remove declaration.
10649         (record_cmdlist): Now extern. Initialize.
10650         (set_record_cmdlist): Now extern. Initialize.
10651         (show_record_cmdlist): Now extern. Initialize.
10652         (info_record_cmdlist): Now extern. Initialize.
10653         (find_record_target): New.
10654         (require_record_target): New.
10655         (cmd_record_start): Update.
10656         (cmd_record_delete): Remove target-specific code.
10657         Call target_delete_record.
10658         (cmd_record_stop): Unpush any record target.
10659         (set_record_insn_max_num): Move to record-full.c
10660         (set_record_command): Add comment.
10661         (show_record_command): Add comment.
10662         (info_record_command): Update comment.
10663         Remove target-specific code.
10664         Call the record target's to_info_record.
10665         (cmd_record_start): New.
10666         (cmd_record_goto): Now extern.
10667         Remove target-specific code.
10668         Call target_goto_begin,  target_goto_end, or target_goto.
10669         (_initialize_record): Move record target ops initialization to
10670         record-full.c.
10671         Change "record" command help text.
10672         Move "record restore", "record set", and "record show" commands to
10673         record-full.c.
10674         * Makefile.in (SFILES): Add record-full.c.
10675         (HFILES_NO_SRCDIR): Add record-full.h.
10676         (COMMON_OBS): Add record-full.o.
10677         * amd64-linux-tdep.c: Include record-full.h instead of record.h.
10678         * arm-tdep.c: Include record-full.h.
10679         * i386-linux-tdep.c: Include record-full.h instead of record.h.
10680         * i386-tdep.c: Include record-full.h.
10681         * infrun.c: Include record-full.h.
10682         * linux-record.c: Include record-full.h.
10683         * moxie-tdep.c: Include record-full.h.
10684         * record-full.c: Include record-full.h.
10685         Change module comment.
10686         (set_record_full_cmdlist): New.
10687         (show_record_full_cmdlist): New.
10688         (record_full_cmdlist): New.
10689         (record_goto_insn): New declaration.
10690         (record_save): New declaration.
10691         (record_check_insn_num): Change query string.
10692         (record_info): New.
10693         (record_delete): New.
10694         (record_is_replaying): New.
10695         (record_goto_entry): New.
10696         (record_goto_begin): New.
10697         (record_goto_end): New.
10698         (record_goto): New.
10699         (init_record_ops): Update.
10700         (init_record_core_ops): Update.
10701         (cmd_record_save): Rename to record_save. Remove target and arg checks.
10702         (cmd_record_start): New.
10703         (set_record_insn_max_num): Moved from record.c
10704         (set_record_full_command): New.
10705         (show_record_full_command): New.
10706         (_initialize_record_full): New.
10707
10708 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10709
10710         * target.h (add_deprecated_target_alias): New.
10711         * target.c (add_deprecated_target_alias): New.
10712
10713 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10714
10715         * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
10716         and signal.h.
10717         (linux_supports_btrace): Add kernel and
10718         cpuid check.
10719         (kernel_supports_btrace): New function.
10720         (cpu_supports_btrace): New function.
10721         (intel_supports_btrace): New function.
10722
10723 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10724
10725         * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
10726         * remote.c: Include btrace.h.
10727         (struct btrace_target_info): New struct.
10728         (remote_supports_btrace): New function.
10729         (send_Qbtrace): New function.
10730         (remote_enable_btrace): New function.
10731         (remote_disable_btrace): New function.
10732         (remote_teardown_btrace): New function.
10733         (remote_read_btrace): New function.
10734         (init_remote_ops): Add btrace ops.
10735         (enum <unnamed>): Add btrace packets.
10736         (struct protocol_feature remote_protocol_features[]): Add btrace packets.
10737         (_initialize_remote): Add packet configuration for branch tracing.
10738
10739 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10740
10741         * features/btrace.dtd: New file.
10742         * Makefile.in (XMLFILES): Add btrace.dtd.
10743         * btrace.h (parse_xml_btrace): New declaration.
10744         * btrace.c: Include xml-support.h.
10745         (parse_xml_btrace): New function.
10746         (parse_xml_btrace_block): New function.
10747         (block_attributes): New struct.
10748         (btrace_attributes): New struct.
10749         (btrace_children): New struct.
10750         (btrace_elements): New struct.
10751
10752 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10753
10754         * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
10755         (amd64_linux_enable_btrace): New.
10756         (amd64_linux_disable_btrace): New.
10757         (amd64_linux_teardown_btrace): New.
10758         (_initialize_amd64_linux_nat): Initialize btrace ops.
10759         * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
10760         (i386_linux_enable_btrace): New.
10761         (i386_linux_disable_btrace): New.
10762         (i386_linux_teardown_btrace): New.
10763         (_initialize_i386_linux_nat): Initialize btrace ops.
10764         * config/i386/linux.mh: Add linux-btrace.o.
10765         * config/i386/linux64.mh: Add linux-btrace.o.
10766
10767 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10768
10769         * common/linux_btrace.h: New file.
10770         * common/linux_btrace.c: New file.
10771         * Makefile.in (SFILES): Add btrace.c.
10772         (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
10773         (COMMON_OBS): Add btrace.o.
10774         (linux-btrace.o): New rule.
10775
10776 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10777
10778         * target.h: Include btrace.h.
10779         (struct target_ops) <to_supports_btrace, to_enable_btrace,
10780         to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
10781         * target.c (target_supports_btrace): New function.
10782         (target_enable_btrace): New function.
10783         (target_disable_btrace): New function.
10784         (target_teardown_btrace): New function.
10785         (target_read_btrace): New function.
10786         * btrace.h: New file.
10787         * btrace.c: New file.
10788         * Makefile.in: Add btrace.c.
10789         * gdbthread.h: Include btrace.h.
10790         (struct thread_info): Add btrace field.
10791         * thread.c: Include btrace.h.
10792         (clear_thread_inferior_resources): Call target_teardown_btrace.
10793         * common/btrace-common.h: New file.
10794
10795 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
10796
10797         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
10798         for CHILD, ignore PTRACE_KILL errors, move the inner block variable
10799         kill_status to outer block.
10800
10801 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
10802
10803         Fix entry-values if the callee called a noreturn function.
10804         * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
10805         get_frame_address_in_block.  Add new comment.
10806
10807 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
10808
10809         Fix entry-values in C++ across CUs.
10810         * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
10811         lookup_minimal_symbol.  Add a comment.
10812         * dwarf2read.c
10813         (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
10814         DW_AT_linkage_name.
10815
10816 2013-03-08  Yao Qi  <yao@codesourcery.com>
10817
10818         * tracepoint.c (_initialize_tracepoint): Indent the code.
10819
10820 2013-03-08  Pedro Alves  <palves@redhat.com>
10821
10822         * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
10823         (parse_find_args, find_command): Change type of pattern buffer
10824         locals to 'gdb_byte *'.
10825
10826 2013-03-08  Stan Shebs  <stan@codesourcery.com>
10827             Hafiz Abid Qadeer  <abidh@codesourcery.com>
10828
10829         * NEWS: Mention set and show trace-buffer-size commands.
10830         Mention new packet.
10831         * target.h (struct target_ops): New method
10832         to_set_trace_buffer_size.
10833         (target_set_trace_buffer_size): New macro.
10834         * target.c (update_current_target): Set up new method.
10835         * tracepoint.c (trace_buffer_size): New global.
10836         (start_tracing): Send it to the target.
10837         (set_trace_buffer_size): New function.
10838         (_initialize_tracepoint): Add new setshow for trace-buffer-size.
10839         * remote.c (remote_set_trace_buffer_size): New function.
10840         (_initialize_remote): Use it.
10841         (QTBuffer:size) New remote command.
10842         (PACKET_QTBuffer_size): New enum.
10843         (remote_protocol_features): Add an entry for
10844         PACKET_QTBuffer_size.
10845
10846 2013-03-08  Tom Tromey  <tromey@redhat.com>
10847
10848         * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
10849         variable.
10850
10851 2013-03-07  Pedro Alves  <palves@redhat.com>
10852
10853         * target.c (target_read_stralloc, target_fileio_read_alloc):
10854         *Cast pointer to 'gdb_byte *' in target call.
10855
10856 2013-03-07  Pedro Alves  <palves@redhat.com>
10857
10858         * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
10859         call.
10860
10861 2013-03-07  Keith Seitz  <keiths@redhat.com>
10862
10863         * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
10864         (trace_pass_command): Likewise.
10865         * cli/cli-cmds.c: Include cli/cli-utils.h.
10866         (source_command): Use skip-spaces.
10867         (disassemble_command): Likewise.
10868         * findcmd.c: Include cli/cli-utils.h.
10869         (parse_find_args): Use skip_spaces.
10870         * go32-nat.c: Include cli/cli-utils.h.
10871         (go32_sldt): Use skip_spaces.
10872         (go32_sgdt): Likewise.
10873         (go32_sidt): Likewise.
10874         (go32_pde): Likewise.
10875         (go32_pte): Likewise.
10876         (go32_pte_for_address): Likewise.
10877         * infcmd.c: Include cli/cli-utils.h.
10878         (registers_info): Use skip_spaces.
10879         * linux-tdep.c (read_mapping): Use skip_spaces_const.
10880         (linux_info_proc): Likewise.
10881         * linux-thread-db.c: Include cli/cli-utils.h.
10882         (info_auto_load_libthread_db): Use skip_spaces_const.
10883         * m32r-rom.c: Include cli/cli-utils.h.
10884         (m32r_upload_command): Use skip_spaces.
10885         * maint.c: Include cli/cli-utils.h.
10886         (maintenance_translate_address): Use skip_spaces.
10887         * mi/mi-parse.c: Include cli/cli-utils.h.
10888         (mi_parse_argv): Use skip_spaces.
10889         (mi_parse): Likewise.
10890         * minsyms.c: Include cli/cli-utils.h.
10891         (msymbol_hash_iw): Use skip_spaces_const.
10892         * objc-lang.c: Include cli/cli-utils.h.
10893         (parse_selector): Use skip_spaces.
10894         (parse_method): Likewise.
10895         * python/python.c: Include cli/cli-utils.h.
10896         (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
10897         (python_command)[HAVE_PYTHON]: Likewise.
10898         (python_interactive_command)[!HAVE_PYTHON]: Likewise.
10899         * remote-m32r-sdi.c: Include cli/cli-utils.h.
10900         (m32r_load): Use skip_spaces.
10901         * serial.c: Include cli/cli-utils.h.
10902         (serial_open): Use skip_spaces_const.
10903         * stack.c: Include cli/cli-utils.h.
10904         (parse_frame_specification_1): Use skip_spaces_const.
10905         * symfile.c: Include cli/cli-utils.h.
10906         (set_ext_lang_command): Use skip_spaces.
10907         * symtab.c: Include cli/cli-utils.h.
10908         (rbreak_command): Use skip_spaces.
10909         * thread.c (thread_name_command): Use skip_spaces.
10910         * tracepoint.c (validate_actionline): Use skip_spaces.
10911         (encode_actions_1): Likewise.
10912         (trace_find_range_command): Likewise.
10913         (trace_find_outside_command): Likewise.
10914         (trace_dump_actions): Likewise.
10915
10916 2013-03-07  Pedro Alves  <palves@redhat.com>
10917
10918         * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
10919         * expprint.c (print_subexp_standard): Likewise.
10920         * utils.c (host_char_to_target): Likewise.
10921         * valprint.c (generic_emit_char, generic_printstr): Likewise.
10922         * varobj.c (value_get_print_value): Change type of local to char*.
10923         Cast it gdb_byte * in call to language printer.
10924
10925 2013-03-07  Pedro Alves  <palves@redhat.com>
10926
10927         * charset.c (struct wchar_iterator) <input>: Change type to 'const
10928         gdb_byte *'.
10929         (make_wchar_iterator): Remove cast to char*.
10930         (wchar_iterate): Change type of local.
10931
10932 2013-03-07  Pedro Alves  <palves@redhat.com>
10933
10934         * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
10935         for 'regcache->register_status'.
10936
10937 2013-03-07  Pedro Alves  <palves@redhat.com>
10938
10939         * breakpoint.c (breakpoint_xfer_memory): Change type of local to
10940         int.
10941
10942 2013-03-07  Pedro Alves  <palves@redhat.com>
10943
10944         * stap-probe.c (handle_stap_probe): Add cast to char*.
10945
10946 2013-03-07  Pedro Alves  <palves@redhat.com>
10947
10948         * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
10949         RECORD_MSGRCV>: Pass a signed variable to
10950         regcache_raw_read_signed, instead of an unsigned one.
10951
10952 2013-03-07  Pedro Alves  <palves@redhat.com>
10953
10954         * remote-notif.c (notif_debug): Change type to int.
10955         * remote-notif.h (notif_debug): Likewise.
10956
10957 2013-03-07  Pedro Alves  <palves@redhat.com>
10958
10959         * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
10960
10961 2013-03-07  Pedro Alves  <palves@redhat.com>
10962
10963         * remote.c (hex2bin, bin2hex): Move extern declarations to ...
10964         * remote.h (hex2bin, bin2hex): ... here.
10965         * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
10966
10967 2013-03-07  Eli Zaretskii  <eliz@gnu.org>
10968
10969         * utils.c (initialize_utils): Improve doc strings of "set/show
10970         width", "set/show height", and "set/show pagination".
10971
10972 2013-03-06  Keith Seitz  <keiths@redhat.com>
10973
10974         * ax-gdb.c (gen_printf): Make FORMAT const.
10975         * ax-gdb.h (gen_printf): Likewise.
10976         * ax-general.c (ax_string): Make STR const.
10977         * ax.h (ax_string): Likewise.
10978
10979 2013-03-06  Doug Evans  <dje@google.com>
10980
10981         * elfread.c (elf_symfile_read): Move debugging printf to more
10982         logical location.
10983
10984 2013-03-06  Pedro Alves  <palves@redhat.com>
10985
10986         * python/py-utils.c (target_string_to_unicode): Delete function.
10987         * python/python-internal.h (target_string_to_unicode): Delete
10988         declaration.
10989
10990 2013-03-06  Pierre Muller  <muller@sourceware.org>
10991
10992         * linespec.c (get_current_search_block): ARI fix, use (void)
10993         for empty parameter list.
10994
10995 2013-03-05  Doug Evans  <dje@google.com>
10996
10997         * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
10998         of old ada_lookup_symbol_list.  In !full_search case, don't
10999         search superblocks.
11000         (ada_lookup_symbol_list): Delete arg full_search, all callers
11001         updated.  Call ada_lookup_symbol_list_worker.
11002         (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
11003         * ada-lang.h (ada_lookup_symbol_list): Update.
11004         * language.h (language_defn): Update comment for
11005         la_iterate_over_symbols.
11006         * linespec.c (iterate_over_file_blocks): New function.
11007         (iterate_over_all_matching_symtabs): Call it.
11008         (lookup_prefix_sym): Ditto.
11009         (get_current_search_block): New function.
11010         (get_search_block): Delete.
11011         (find_label_symbols): Call get_current_search_block.
11012         (add_matching_symbols_to_info): Call iterate_over_file_blocks.
11013         * symtab.c (iterate_over_symbols): Don't search superblocks.
11014
11015 2013-03-05  Yao Qi  <yao@codesourcery.com>
11016
11017         * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
11018         parameter VAR's type from "unsigned int" to "int".
11019         * command.h (var_zuinteger_unlimited): Update its comments.
11020         (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
11021
11022 2013-03-05  Corinna Vinschen  <vinschen@redhat.de>
11023
11024         * NEWS: Mention new target x86_64-*-cygwin*.
11025
11026 2013-03-05  Corinna Vinschen  <vinschen@redhat.de>
11027
11028         * configure.host: Add x86_64-*-cygwin* as host.
11029         * configure.tgt: Add x86_64-*-cygwin* as target.
11030         * config/i386/cygwin64.mh: New file.
11031
11032 2013-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
11033
11034         * linespec.c (decode_line_2): Fix duplicate request off by two message.
11035
11036 2013-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
11037
11038         * linespec.c (struct linespec_canonical_name): New.
11039         (struct linespec_state): Change canonical_names type to it.
11040         (add_sal_to_sals): Change variable canonical_name to canonical.  Change
11041         xrealloc element size.  Initialize the different CANONICAL fields.
11042         (canonical_to_fullform): New.
11043         (filter_results): Use it.  Add variables canonical, fullform and
11044         cleanup.
11045         (struct decode_line_2_item, decode_line_2_compare_items): New.
11046         (decode_line_2): Remove variables iter and item_names, add variables
11047         items and items_count.  Modify the code for these new variables.
11048
11049 2013-03-04  Corinna Vinschen  <vinschen@redhat.com>
11050
11051         * coff-pe-read.c (read_pe_exported_syms): Don't return without
11052         calling do_cleanup.
11053
11054 2013-03-04  Luis Machado  <lgustavo@codesourcery.com>
11055
11056         * tracepoint.c (build_traceframe_info): Add code for byte order.
11057
11058 2013-03-02  Kevin Buettner  <kevinb@redhat.com>
11059
11060         * v850-tdep.c: (v850e2_register_name): Revise system register
11061         names to match current V850E2M architecture specifications.
11062         Update register number enum comments too.
11063
11064 2013-03-01  Jiong Wang  <jiwang@tilera.com>
11065             Pedro Alves  <palves@redhat.com>
11066
11067         * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
11068         to END_ADDR.
11069         (tilegx_skip_prologue): Limit prologue analysis to section end.
11070
11071 2013-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
11072
11073         * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
11074         use it.
11075
11076 2013-03-01  Pedro Alves  <palves@redhat.com>
11077
11078         Use gdb_byte for bytes from the program being debugged.
11079
11080         * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
11081         Change type of local 'buf' to gdb_byte.
11082         * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
11083         * bfin-tdep.c (bfin_push_dummy_call): Likewise.
11084         * cris-tdep.c (cris_sigcontext_addr)
11085         (cris_sigtramp_frame_unwind_cache): Likewise.
11086         * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
11087         (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
11088         Likewise.
11089         * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
11090         * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
11091         (hppa32_hpux_search_dummy_call_sequence)
11092         (hppa_hpux_supply_save_state): Likewise.
11093         * hppa-linux-tdep.c (insns_match_pattern)
11094         (hppa_linux_find_global_pointer): Likewise.
11095         * hppa-tdep.c (hppa_in_function_epilogue_p)
11096         (skip_prologue_hard_way, hppa_frame_cache): Likewise.
11097         * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
11098         * i386fbsd-tdep.c (i386fbsd_supply_uthread)
11099         (i386fbsd_collect_uthread): Likewise.
11100         * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
11101         * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
11102         * ia64-tdep.c (examine_prologue, ia64_frame_cache)
11103         (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
11104         (ia64_sigtramp_frame_prev_register, ia64_access_reg)
11105         (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
11106         (ia64_libunwind_frame_prev_register)
11107         (ia64_libunwind_sigtramp_frame_this_id)
11108         (ia64_find_global_pointer_from_dynamic_section)
11109         (find_extant_func_descr, find_func_descr, ia64_dummy_id)
11110         (ia64_unwind_pc): Likewise.
11111         * iq2000-tdep.c (iq2000_store_return_value): Likewise.
11112         * m68hc11-tdep.c (m68hc11_push_dummy_call)
11113         (m68hc11_extract_return_value): Likewise.
11114         * m68klinux-nat.c (fetch_register, store_register): Likewise.
11115         * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
11116         (mep_get_insn, mep_push_dummy_call): Likewise.
11117         * mips-linux-tdep.c (mips_linux_get_longjmp_target)
11118         (mips_linux_in_dynsym_stub): Likewise.
11119         * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
11120         * ppc-linux-nat.c (fetch_register, store_register): Likewise.
11121         * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
11122         to gdb_byte.
11123         * remote-mips.c (mips_set_register): Likewise.
11124         * remote-sim.c (gdbsim_fetch_register): Likewise.
11125         * score-tdep.c (score7_fetch_inst): Change type of parameter
11126         'memblock' and local 'buf' to gdb_byte.
11127         (score7_malloc_and_get_memblock): Change return type to gdb_byte.
11128         Change type of local 'buf' to gdb_byte.  Adjust.
11129         (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
11130         to gdb_byte**.
11131         (score7_analyze_prologue): Change type of 'memblock' and
11132         'memblock_ptr' locals to gdb_byte*.
11133         * sh64-tdep.c (sh64_extract_return_value)
11134         (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
11135         * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
11136         * solib-pa64.c (pa64_solib_create_inferior_hook)
11137         (pa64_open_symbol_file_object): Remove local 'buf'.
11138         * solib-som.c (som_solib_create_inferior_hook, link_map_start)
11139         (som_open_symbol_file_object): Likewise.
11140         * solib-spu.c (spu_current_sos): Likewise.
11141         * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
11142         * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
11143         (spu_store_registers): Likewise.
11144         * target.c (debug_print_register): Likewise.
11145         * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
11146         * xstormy16-tdep.c (xstormy16_store_return_value)
11147         (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
11148         (xstormy16_find_jmp_table_entry): Likewise.
11149
11150 2013-03-01  Jiong Wang  <jiwang@tilera.com>
11151
11152         * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
11153         (tilegx_gdbarch_init): Install it.
11154
11155 2013-02-28  Tom Tromey  <tromey@redhat.com>
11156
11157         * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
11158         PyLong_Check.
11159
11160 2013-02-28  Doug Evans  <dje@google.com>
11161
11162         * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
11163         * python/python.c (gdbpy_find_pc_line): Ditto.
11164
11165 2013-02-28  Tom Tromey  <tromey@redhat.com>
11166
11167         * contrib/excheck.py: New file.
11168         * contrib/exsummary.py: New file.
11169         * contrib/gcc-with-excheck: New file.
11170
11171 2013-02-28  Tom Tromey  <tromey@redhat.com>
11172
11173         * python/python.c (gdbpy_print_stack): Call begin_line and
11174         fprintf_filtered inside TRY_CATCH.
11175
11176 2013-02-28  Tom Tromey  <tromey@redhat.com>
11177
11178         * python/python.c (gdbpy_find_pc_line): Call find_pc_line
11179         inside TRY_CATCH.
11180
11181 2013-02-28  Tom Tromey  <tromey@redhat.com>
11182
11183         * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
11184         frame_object_to_frame_info inside TRY_CATCH.
11185
11186 2013-02-28  Tom Tromey  <tromey@redhat.com>
11187
11188         * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
11189         TRY_CATCH.
11190
11191 2013-02-28  Tom Tromey  <tromey@redhat.com>
11192
11193         * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
11194
11195 2013-02-27  Corinna Vinschen  <vinschen@redhat.com>
11196
11197         * windows-nat.c: Throughout, fix format strings and casts of
11198         printf-like functions to avoid type related warnings on all
11199         platforms.
11200         (handle_output_debug_string): Fetch context information address
11201         from debug string using string_to_core_addr.
11202
11203 2013-02-27  Jiong Wang  <jiwang@tilera.com>
11204
11205         * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
11206         * regformats/reg-tilegx32.dat: New.
11207
11208 2013-02-27  Jiong Wang  <jiwang@tilera.com>
11209
11210         * configure.tgt (tilegx-*-linux*): Enable gdbserver.
11211
11212 2013-02-27  Jiong Wang  <jiwang@tilera.com>
11213
11214         * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
11215
11216 2013-02-27  Yao Qi  <yao@codesourcery.com>
11217             Pedro Alves  <palves@redhat.com>
11218
11219         * tracepoint.c (tfile_trace_find): For tfind
11220         pc/tp/range/outside, look for the next trace frame instead of
11221         always starting from frame 0.
11222
11223 2013-02-26  Anthony Green  <green@moxielogic.com>
11224
11225         * configure.tgt: Add support for moxie-*-rtems* target.
11226
11227 2013-02-25  Pedro Alves  <palves@redhat.com>
11228
11229         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
11230         warning text.
11231
11232 2013-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
11233
11234         * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
11235         if $fp is used as the virtual frame pointer.
11236
11237 2013-02-23  Alan Modra  <amodra@gmail.com>
11238
11239         * elfread.c (elf_symtab_read): Do not use udata.p here to find
11240         symbol size.
11241         * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
11242         * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
11243         * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
11244         * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
11245
11246 2013-02-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
11247
11248         Code cleanup.
11249         * elfread.c (build_id_bfd_get): Make the return type const.
11250         (build_id_verify): Make the check parameter const.
11251         (build_id_to_debug_filename): Make the build_id parameter and variable
11252         data const.
11253         (find_separate_debug_file_by_buildid): Make the variable build_id const.
11254
11255 2013-02-21  Alan Modra  <amodra@gmail.com>
11256
11257         * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
11258
11259 2013-02-20  Siva Chandra Reddy  <sivachandra@google.com>
11260
11261         Add a new method 'disassemble' to gdb.Architecture class.
11262         * python/py-arch.c (archpy_disassmble): Implementation of the
11263         new method gdb.Architecture.disassemble.
11264         (arch_object_methods): Add entry for the new method.
11265
11266 2013-02-20  Jiong Wang  <jiwang@tilera.com>
11267
11268         * MAINTAINERS (Write After Approval): Add myself to the list.
11269
11270 2013-02-19  Pedro Alves  <palves@redhat.com>
11271
11272         Garbage collect 'struct monitor_ops'::load_routine.
11273
11274         * monitor.h (struct monitor_ops) <load_routine>: Remove field.
11275         * monitor.c (monitor_load): No longer call
11276         current_monitor->load_routine.
11277         * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
11278         * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
11279         * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
11280
11281 2013-02-19  Pedro Alves  <palves@redhat.com>
11282
11283         PR gdb/15161
11284
11285         Harmonize with generic_load.
11286
11287         * monitor.c: Include "readline/readline.h".
11288         (monitor_load): Rename parameter 'file' to 'args'.  Use build_argv
11289         instead of sscanf.  Use CORE_ADDR/strtoulst instead of unsigned
11290         long/strtol for the 'load_offset' local.  Error out if no argument
11291         is given or if too many arguments are given.  Tilde expand the
11292         passed in file name.
11293
11294 2013-02-19  Kai Tietz  <ktietz@redhat.com>
11295
11296         PR gdb/15161
11297         * symfile.c (load_section_data): Change type of load_offset
11298         to CORE_ADDR.
11299         (generic_load): User strtoulst instead of strtoul for conversion
11300         of load_offset.
11301
11302 2013-02-19  Jiong Wang  <jiwang@tilera.com>
11303
11304         * tilegx-tdep.c (tilegx_analyze_prologue): add check for
11305          for return address, "lr" register, saved on stack.
11306         * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
11307         after we invoke tilegx_analyze_prologue.
11308
11309 2013-02-19  Jiong Wang  <jiwang@tilera.com>
11310
11311         * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
11312
11313 2013-02-19  Jiong Wang  <jiwang@tilera.com>
11314
11315         * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
11316
11317 2013-02-19  Jiong Wang  <jiwang@tilera.com>
11318
11319         * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
11320         (tilegx_write_pc): New function.
11321         (tilegx_cannot_reference_register): Return zero if REGNO
11322         is TILEGX_FAULTNUM_REGNUM.
11323         (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
11324         (tilegx_register_name): Add handling of "faultnum" register.
11325         * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
11326         * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
11327         handling of TILEGX_FAULTNUM_REGNUM.
11328         * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
11329
11330 2013-02-19  Jiong Wang  <jiwang@tilera.com>
11331
11332         * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
11333         should be aligned to 64bit.
11334
11335 2013-02-19  Kai Tietz  <ktietz@redhat.com>
11336
11337         * windows-nat.c (windows_xfer_memory): Fix debug-output
11338         for LLP64.
11339
11340 2013-02-19  Lei Liu  <lei.liu2@windriver.com>
11341
11342         * mips-linux-nat.c (mips64_linux_regsets_store_registers):
11343         Don't check DSP register number if HAVE_DSP is not set.
11344
11345 2013-02-19  Alan Modra  <amodra@gmail.com>
11346
11347         * elfread.c (struct build_id): Delete.  Use struct elf_build_id
11348         throughout file instead.
11349         (build_id_bfd_get): Update to use new elf_tdata build_id field.
11350         Don't xmalloc return value.
11351         (build_id_verify): Similarly.  Don't xfree.
11352         (build_id_to_debug_filename): Update.
11353         (find_separate_debug_file_by_buildid): Update, don't xfree.
11354
11355 2013-02-18  Tom Tromey  <tromey@redhat.com>
11356
11357         PR gdb/15102:
11358         * dwarf2read.c (read_subrange_type): Use result of
11359         'check_typedef'.
11360
11361 2013-02-16  Yuanhui Zhang  <asmwarrior@gmail.com>
11362
11363         * frame.c: Remove one extra white space after #include
11364         directive.
11365
11366 2013-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
11367
11368         * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
11369
11370 2013-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
11371
11372         * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
11373         and dir commands into an if block.
11374
11375 2013-02-15  Sanimir Agovic  <sanimir.agovic@intel.com>
11376
11377         * python/py-breakpoint (struct pybp_code):  Use int instead of
11378         enum type_code.
11379
11380 2013-02-15  Pedro Alves  <pedro@codesourcery.com>
11381             Hafiz Abid Qadeer  <abidh@codesourcery.com>
11382
11383         * NEWS: Mention new field "trace-file".
11384         * tracepoint.c (trace_status_mi): Output "trace-file" field.
11385         (tfile_open): Record the trace file's filename in the trace
11386         status.
11387         (tfile_files_info): Mention the name of the trace file.
11388         Check the "filename" field explicitely.
11389         (trace_status_command): Explicitely check "filename" field.
11390         (trace_find_command): Ditto.
11391         (trace_find_pc_command): Ditto.
11392         (trace_find_tracepoint_command): Ditto.
11393         (trace_find_line_command): Ditto.
11394         (trace_find_range_command): Ditto.
11395         (trace_find_outside_command): Ditto.
11396         * tracepoint.h (struct trace_status) <from_file>: Rename it
11397         to "filename" and make it hold the trace file's filename
11398         instead of a boolean.
11399         * remote.c (remote_get_trace_status): Initialize "filename"
11400         field with NULL instead of 0.
11401
11402 2013-02-15  Yao Qi  <yao@codesourcery.com>
11403
11404         * remote.c: Fix a typo.
11405
11406 2013-02-14  Pierre Muller  <muller@sourceware.org>
11407
11408         * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
11409
11410 2013-02-14  Pedro Alves  <palves@redhat.com>
11411
11412         * utils.c (savestring): Don't #undef it.  Move function to
11413         common/common-utils.c.
11414         * common/common-utils.c: Include gdb_string.h.
11415         (savestring): Move here from utils.c.
11416         * common/common-utils.h (savestring): Declare.
11417
11418 2013-02-14  Pedro Alves  <palves@redhat.com>
11419
11420         * utils.c (savestring): Rename parameter 'size' to 'len'.
11421
11422 2013-02-14  Pedro Alves  <palves@redhat.com>
11423             Yufeng Zhang  <yufeng.zhang@arm.com>
11424
11425         * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
11426         (aarch64_inferior_data, struct aarch64_inferior_data):
11427         Delete.
11428         (struct aarch64_process_info): New.
11429         (aarch64_process_list): New global.
11430         (aarch64_find_process_pid, aarch64_add_process)
11431         (aarch64_process_info_get): New functions.
11432         (aarch64_inferior_data_get): Delete.
11433         (aarch64_process_info_get): New function.
11434         (aarch64_forget_process): New function.
11435         (aarch64_get_debug_reg_state): New parameter 'pid'.  Reimplement.
11436         (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
11437         aarch64_get_debug_reg_state.
11438         (aarch64_notify_debug_reg_change): Use iterate_over_lwps
11439         instead of linux_nat_iterate_watchpoint_lwps.
11440         (aarch64_linux_new_fork): New function.
11441         (aarch64_linux_child_post_startup_inferior): Use
11442         aarch64_forget_process instead of aarch64_init_debug_reg_state.
11443         (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
11444         (aarch64_linux_remove_hw_breakpoint)
11445         (aarch64_handle_aligned_watchpoint)
11446         (aarch64_handle_unaligned_watchpoint)
11447         (aarch64_linux_insert_watchpoint)
11448         (aarch64_linux_remove_watchpoint)
11449         (aarch64_linux_stopped_data_address): Adjust to pass the current
11450         process id to aarch64_debug_reg_state.
11451         (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
11452         linux_nat_new_fork hook, and aarch64_forget_process as
11453         linux_nat_forget_process hook; remove the call to
11454         register_inferior_data_with_cleanup.
11455
11456 2013-02-14  Pedro Alves  <palves@redhat.com>
11457
11458         * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
11459         EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
11460         lval_memory.
11461
11462 2013-02-14  Pedro Alves  <pedro@codesourcery.com>
11463             Hafiz Abid Qadeer  <abidh@codesourcery.com>
11464
11465         * tracepoint.h (validate_trace_state_variable_name): Declare.
11466         * tracepoint.c (validate_trace_state_variable_name): New.
11467         (trace_variable_command): Parse the trace state variable's name
11468         without using parse_expression.  Do several validations.
11469         * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
11470         trace state variable's name with parse_expression.  Validate it.
11471
11472 2013-02-14  Yao Qi  <yao@codesourcery.com>
11473
11474         * infcmd.c (breakpoint_proceeded): Remove it.
11475
11476 2013-02-14  Yao Qi  <yao@codesourcery.com>
11477
11478         * tracepoint.c (end_actions_pseudocommand): Make it static.
11479         (while_stepping_pseudocommand): Likewise.
11480         * tracepoint.h (end_actions_pseudocommand): Remove the
11481         declaration.
11482         (while_stepping_pseudocommand): Likewise.
11483
11484 2013-02-14  Yao Qi  <yao@codesourcery.com>
11485
11486         * cli/cli-decode.c (help_cmd): Remove the declaration of
11487         "cmdlist".
11488         (help_all): Likewise.
11489
11490 2013-02-13  Pedro Alves  <palves@redhat.com>
11491
11492         * amd64-linux-nat.c (update_debug_registers_callback):
11493         Update comment.
11494         (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
11495         iterate_over_lwps.
11496         (amd64_linux_prepare_to_resume): Pass the lwp's pid to
11497         i386_debug_reg_state.
11498         (amd64_linux_new_fork): New function.
11499         (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
11500         linux_nat_new_fork hook, and i386_forget_process as
11501         linux_nat_forget_process hook.
11502         * i386-linux-nat.c (update_debug_registers_callback):
11503         Update comment.
11504         (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
11505         iterate_over_lwps.
11506         (i386_linux_prepare_to_resume): Pass the lwp's pid to
11507         i386_debug_reg_state.
11508         (i386_linux_new_fork): New function.
11509         (_initialize_i386_linux_nat): Install i386_linux_new_fork as
11510         linux_nat_new_fork hook, and i386_forget_process as
11511         linux_nat_forget_process hook.
11512         * i386-nat.c (i386_init_dregs): Delete.
11513         (i386_inferior_data, struct i386_inferior_data):
11514         Delete.
11515         (struct i386_process_info): New.
11516         (i386_process_list): New global.
11517         (i386_find_process_pid, i386_add_process, i386_process_info_get):
11518         New functions.
11519         (i386_inferior_data_get): Delete.
11520         (i386_process_info_get): New function.
11521         (i386_debug_reg_state): New parameter 'pid'.  Reimplement.
11522         (i386_forget_process): New function.
11523         (i386_cleanup_dregs): Rewrite.
11524         (i386_update_inferior_debug_regs, i386_insert_watchpoint)
11525         (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
11526         (i386_stopped_data_address, i386_insert_hw_breakpoint)
11527         (i386_remove_hw_breakpoint): Adjust to pass the current process id
11528         to i386_debug_reg_state.
11529         (i386_use_watchpoints): Don't register inferior data.
11530         * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
11531         adjust comment.
11532         (i386_forget_process): Declare.
11533         * linux-fork.c (delete_fork): Call linux_nat_forget_process.
11534         * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
11535         New static globals.
11536         (linux_child_follow_fork): Don't call linux_nat_new_thread here.
11537         (add_initial_lwp): New, factored out from ...
11538         (add_lwp): ... this.  Don't check the number of lwps before
11539         calling linux_nat_new_thread.
11540         (linux_nat_iterate_watchpoint_lwps): Delete.
11541         (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
11542         (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
11543         forks and vforks.
11544         (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
11545         initial lwp.
11546         (linux_nat_kill, linux_nat_mourn_inferior): Call
11547         linux_nat_forget_process.
11548         (linux_nat_set_new_fork, linux_nat_set_forget_process)
11549         (linux_nat_forget_process): New functions.
11550         * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
11551         type.
11552         (linux_nat_iterate_watchpoint_lwps): Delete declaration.
11553         (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
11554         types.
11555         (linux_nat_set_new_fork, linux_nat_set_forget_process)
11556         (linux_nat_forget_process): New declarations.
11557
11558         * amd64fbsd-nat.c (super_mourn_inferior): New global.
11559         (amd64fbsd_mourn_inferior): New function.
11560         (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
11561         * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
11562
11563 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11564
11565         * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
11566         Adding _().
11567
11568 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11569
11570         * aarch64-linux-nat.c (debug_reg_change_callback)
11571         (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
11572         %s and phex().
11573
11574 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11575
11576         * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
11577         with LONGEST.
11578
11579 2013-02-13  Pedro Alves  <palves@redhat.com>
11580             Hafiz Abid Qadeer  <abidh@codesourcery.com>
11581
11582         * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
11583
11584 2013-02-12  Tom Tromey  <tromey@redhat.com>
11585
11586         PR symtab/11464:
11587         * c-exp.y (lex_one_token): Initialize other fields of yylval on
11588         NAME return.
11589         (classify_inner_name): Remove 'first_name' argument, add
11590         'context'.  Remove unused variable.
11591         (yylex): Explicitly maintain the context type.  Exit loop earlier
11592         if NAME result is seen.
11593
11594 2013-02-12  Pedro Alves  <palves@redhat.com>
11595
11596         * amd64-darwin-tdep.c: Add (C) after Copyright.
11597         * cli/cli-cmds.h: Ditto.
11598         * cli/cli-decode.c: Ditto.
11599         * cli/cli-decode.h: Ditto.
11600         * cli/cli-dump.c: Ditto.
11601         * cli/cli-dump.h: Ditto.
11602         * cli/cli-interp.c: Ditto.
11603         * cli/cli-logging.c: Ditto.
11604         * cli/cli-script.c: Ditto.
11605         * cli/cli-script.h: Ditto.
11606         * cli/cli-setshow.c: Ditto.
11607         * cli/cli-setshow.h: Ditto.
11608         * cli/cli-utils.c: Ditto.
11609         * cli/cli-utils.h: Ditto.
11610         * config/alpha/nm-osf3.h: Ditto.
11611         * config/djgpp/djconfig.sh: Ditto.
11612         * config/i386/nm-fbsd.h: Ditto.
11613         * config/i386/nm-i386gnu.h: Ditto.
11614         * config/nm-linux.h: Ditto.
11615         * config/nm-nto.h: Ditto.
11616         * config/rs6000/nm-rs6000.h: Ditto.
11617         * config/sparc/nm-sol2.h: Ditto.
11618         * darwin-nat-info.c: Ditto.
11619         * dfp.c: Ditto.
11620         * dfp.h: Ditto.
11621         * gdb-demangle.h: Ditto.
11622         * i386-darwin-nat.c: Ditto.
11623         * i386-darwin-tdep.c: Ditto.
11624         * linux-fork.h: Ditto.
11625         * m32c-tdep.c: Ditto.
11626         * microblaze-linux-tdep.c: Ditto.
11627         * microblaze-rom.c: Ditto.
11628         * microblaze-tdep.c: Ditto.
11629         * microblaze-tdep.h: Ditto.
11630         * mips-linux-tdep.h: Ditto.
11631         * ppc-ravenscar-thread.c: Ditto.
11632         * ppc-ravenscar-thread.h: Ditto.
11633         * prologue-value.c: Ditto.
11634         * prologue-value.h: Ditto.
11635         * ravenscar-thread.c: Ditto.
11636         * ravenscar-thread.h: Ditto.
11637         * sparc-ravenscar-thread.c: Ditto.
11638         * sparc-ravenscar-thread.h: Ditto.
11639         * tilegx-linux-tdep.c: Ditto.
11640         * unwind_stop_reasons.def: Ditto.
11641         * windows-nat.h: Ditto.
11642         * xtensa-linux-tdep.c: Ditto.
11643         * xtensa-xtregs.c: Ditto.
11644         * regformats/regdat.sh: Ditto.
11645         * regformats/regdef.h: Ditto.
11646
11647 2013-02-12  Pedro Alves  <palves@redhat.com>
11648
11649         * break-catch-sig.c: Update copyright years.
11650
11651 2013-02-11  Siva Chandra Reddy  <sivachandra@google.com>
11652
11653         Add support for a destructor for ui_out data and use it to
11654         provide a ui_out destructor.
11655         * ui-out.h: Declare the new ui_out destructor.
11656         (ui_out_impl): Add a field for data destructor in ui_out_impl.
11657         * ui-out.c (default_data_destroy): Add a default data destructor
11658         which does nothing.
11659         (default_ui_out_impl): Set the new data_destroy field to
11660         default_data_destroy
11661         (uo_data_destroy): Local function which invokes the data
11662         destructor if present.
11663         (clear_table): Local function which clears the table data of a
11664         ui_out object.
11665         (ui_out_destroy): Public function which frees a ui_out object.
11666         (ui_out_table_end): Use the new clear_table function.
11667         * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
11668         NULL.
11669         * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
11670         to NULL.
11671
11672 2013-02-11  Doug Evans  <dje@google.com>
11673
11674         * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
11675         (printf_decfloat): New function.  Broken out from ui_printf.
11676         Remove unnecessary code to shift the entire format string down.
11677         (printf_pointer): New function.
11678         (ui_printf): Code to print C strings, wide C strings, decfloats,
11679         and pointers moved to separate functions.
11680
11681 2013-02-11  Sergio Durigan Junior  <sergiodj@redhat.com>
11682
11683         * valops.c (value_assign): Handling bitfield offset in
11684         `lval_internalvar_component' case.
11685
11686 2013-02-08  Doug Evans  <dje@google.com>
11687
11688         * common/format.c (parse_format_string): Fix whitespace.
11689
11690 2013-02-08  Matthew Gretton-Dann  <matthew.gretton-dann@linaro.org>
11691
11692         * stack.c (return_command): Work around uninitialized variable
11693         warning.
11694
11695 2013-02-08  Yufeng Zhang  <yufeng.zhang@arm.com>
11696
11697         * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
11698         number of the registers from 36 to 34.
11699
11700 2013-02-08  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11701
11702         * NEWS: Mention new AArch64 native and target support.
11703
11704 2013-02-08  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11705
11706         * MAINTAINERS (Write After Approval): Add myself.
11707
11708 2013-02-08  Jim MacArthur  <jim.macarthur@arm.com>
11709             Marcus Shawcroft  <marcus.shawcroft@arm.com>
11710             Nigel Stephens  <nigel.stephens@arm.com>
11711             Yufeng Zhang  <yufeng.zhang@arm.com>
11712
11713         * aarch64-linux-nat.c: New file.
11714         * config/aarch64/linux.mh: New file.
11715         * configure.host: Add AArch64.
11716         * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
11717
11718 2013-02-07  Doug Evans  <dje@google.com>
11719
11720         * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
11721         disassemble command.
11722
11723 2013-02-07  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11724
11725         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
11726         set_gdbarch_fetch_tls_load_module_address.
11727
11728 2013-02-06  David S. Miller  <davem@davemloft.net>
11729
11730         * sparc-tdep.c (sparc32_return_value): Handle writing return value when
11731         using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
11732         * value.c (struct_return_convention): New function.
11733         (using_struct_return): Implement in terms of struct_return_convention.
11734         * value.h (struct_return_convention): Declare.
11735         * stack.c (return_command): Allow successful overriding of the return
11736         value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
11737
11738 2013-02-06  Tom Tromey  <tromey@redhat.com>
11739
11740         * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
11741         outside of TRY_CATCH.
11742
11743 2013-02-06  Yao Qi  <yao@codesourcery.com>
11744
11745         * mi/mi-interp.c: Include "tracepoint.h".
11746         (mi_tsv_modified): Declare.
11747         (mi_tsv_created, mi_tsv_deleted): Update declaration.
11748         (mi_interpreter_init): Call observer_attach_tsv_modified.
11749         (mi_tsv_modified): New.
11750         (mi_tsv_created, mi_tsv_deleted): Update.
11751         * tracepoint.c (trace_variable_command): Call
11752         observer_notify_tsv_modified if the initial value of tsv is
11753         changed.
11754         (delete_trace_state_variable): Call
11755         observer_notify_tsv_deleted earlier.
11756         (trace_variable_command): Caller update.
11757         (create_tsv_from_upload): Likewise.
11758         * observer.sh: Declare "struct trace_state_variable".
11759
11760         * NEWS: Mention the new MI notification "=tsv-modified".
11761
11762 2013-02-05  Doug Evans  <dje@google.com>
11763
11764         * completer.c (location_completer): Fix typo in comment.
11765
11766 2013-02-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
11767
11768         * breakpoint.c (add_location_to_breakpoint): Insert the location with
11769         ADDRESS sorted.
11770
11771 2013-02-05  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11772
11773         * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
11774         Refactor if statement to avoid trailing || operator.
11775
11776 2013-02-05  Andreas Tobler  <andreast@fgznet.ch>
11777
11778         * NEWS: Add PowerPC FreeBSD as a new native configuration.
11779
11780 2013-02-04  Andreas Tobler  <andreast@fgznet.ch>
11781
11782         * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
11783         * configure.host: Add powerpc*-*-freebsd* target.
11784         * configure.tgt: Add target info for powerpc*-*-freebsd*.
11785         * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
11786         * config/powerpc/fbsd.mh: New file.
11787
11788 2013-02-04  Sergio Durigan Junior  <sergiodj@redhat.com>
11789             Denys Vlasenko  <dvlasenk@redhat.com>
11790             Pedro Alves  <palves@redhat.com>
11791
11792         * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
11793         (struct elf_internal_linux_prpsinfo): Forward declare.
11794         * gdbarch.h, gdbarch.c: Regenerate.
11795         * linux-tdep.c: Include `cli/cli-utils.h'.
11796         (linux_fill_prpsinfo): New function.
11797         (linux_make_corefile_notes): Use linux_fill_prpsinfo.  If there's
11798         an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
11799         elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
11800         depending on gdbarch pointer bitness.
11801         * ppc-linux-tdep.c: Include elf-bfd.h.
11802         (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
11803         on 32-bit.
11804
11805 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
11806             Marcus Shawcroft  <marcus.shawcroft@arm.com>
11807             Nigel Stephens  <nigel.stephens@arm.com>
11808             Yufeng Zhang  <yufeng.zhang@arm.com>
11809
11810         * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
11811
11812 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
11813             Marcus Shawcroft  <marcus.shawcroft@arm.com>
11814             Nigel Stephens  <nigel.stephens@arm.com>
11815             Yufeng Zhang  <yufeng.zhang@arm.com>
11816
11817         * aarch64-newlib-tdep.c: New file.
11818         * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
11819         aarch64*-*-elf.
11820         * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
11821         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
11822         (ALLDEPFILES): Add aarch64-newlib-tdep.c.
11823         * osabi.c (gdb_osabi_names): Add "Newlib".
11824
11825 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
11826             Marcus Shawcroft  <marcus.shawcroft@arm.com>
11827             Nigel Stephens  <nigel.stephens@arm.com>
11828             Yufeng Zhang  <yufeng.zhang@arm.com>
11829
11830         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
11831         (ALLDEPFILES): Add aarch64-linux-tdep.c.
11832         * aarch64-linux-tdep.c: New file.
11833         * aarch64-linux-tdep.h: New file.
11834         * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
11835         * configure.tgt: Add aarch64-none-linux-gnu.
11836
11837 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
11838             Marcus Shawcroft  <marcus.shawcroft@arm.com>
11839             Nigel Stephens  <nigel.stephens@arm.com>
11840             Yufeng Zhang  <yufeng.zhang@arm.com>
11841
11842         * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
11843         (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
11844         (ALLDEPFILES): Add aarch64-tdep.c.
11845         * aarch64-tdep.c: New file.
11846         * aarch64-tdep.h: New file.
11847         * configure.tgt: Add AArch64.
11848         * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
11849         (aarch64-expedite): New definition.
11850         * features/aarch64-core.xml: New file.
11851         * features/aarch64-fpu.xml: New file.
11852         * features/aarch64-without-fpu.c: New file (generated).
11853         * features/aarch64-without-fpu.xml: New file.
11854         * features/aarch64.c: New file (generated).
11855         * features/aarch64.xml: New file.
11856         * regformats/aarch64-without-fpu.dat: New file (generated).
11857         * regformats/aarch64.dat: New file (generated).
11858
11859 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11860
11861         * contrib/expect-read1.c: New file.
11862         * contrib/expect-read1.sh: New file.
11863
11864 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11865
11866         * dwarf2read.c (file_file_name): New function with code from
11867         file_full_name.
11868         (file_full_name): Move most of the code to file_file_name.
11869         (macro_start_file): Rename variable full_name to file_name and use
11870         file_file_name for it.  Add comp_dir parameter to new_macro_table.
11871         * macrocmd.c (show_pp_source_pos): New variable fullname.  Replace any
11872         macro_source_file->filename access by macro_source_fullname call.
11873         * macroscope.c (_initialize_macroscope): Update the new_macro_table
11874         caller.
11875         * macrotab.c (struct macro_table): New field comp_dir.
11876         (macro_include): New variables link_fullname and source_fullname.
11877         Replace any macro_source_file->filename access by macro_source_fullname
11878         call.
11879         (macro_lookup_inclusion): Remove the partial filenames checking code.
11880         (check_for_redefinition): New variables source_fullname and
11881         found_key_fullname.  Replace any macro_source_file->filename access by
11882         macro_source_fullname call.
11883         (macro_undef): New variables source_fullname and key_fullname.  Replace
11884         any macro_source_file->filename access by macro_source_fullname call.
11885         (macro_lookup_definition): New variables retval and source_fullname.
11886         Replace any macro_source_file->filename access by macro_source_fullname
11887         call.
11888         (foreach_macro): New variable key_fullname.  Replace any
11889         macro_source_file->filename access by macro_source_fullname call.
11890         (foreach_macro_in_scope): New variable datum_fullname.  Replace any
11891         macro_source_file->filename access by macro_source_fullname call.
11892         (new_macro_table): Add parameter comp_dir.  Initialize T with it.
11893         (macro_source_fullname): New function.
11894         * macrotab.h (struct macro_source_file): Extent the filename field
11895         comment.
11896         (new_macro_table): New parameter comp_dir, add a comment for it.
11897         (macro_source_fullname): new declaration.
11898
11899 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11900
11901         * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
11902         this_real_name to outer block.  Use it also for
11903         compare_filenames_for_search.
11904         (dw2_expand_symtabs_matching): New variable this_real_name.  Use it
11905         with dw2_get_real_path for file_matcher, considering also
11906         BASENAMES_MAY_DIFFER.
11907         (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
11908
11909 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11910
11911         * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
11912         to the file_matcher parameter.  Pass 0 to it.
11913         (dwarf2_create_include_psymtab): Copy also DIRNAME.
11914         * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
11915         NULL psymtab_to_fullname result.
11916         (psymtab_to_fullname): Remove variable r.  Never return NULL, assemble
11917         an expected filename instead.
11918         (expand_symtabs_matching_via_partial): Add basenames parameter to the
11919         file_matcher parameter.  Call also psymtab_to_fullname, after newly
11920         considering BASENAMES_MAY_DIFFER.
11921         * source.c (rewrite_source_path): Remove static.
11922         * source.h (rewrite_source_path): New declaration.
11923         * symfile.h (struct quick_symbol_functions): Add basenames parameter to
11924         the expand_symtabs_matching field.  Comment it.
11925         * symtab.c (file_matches): New function comment.  Add parameter
11926         basenames, implement it.
11927         (search_symbols_file_matches): Add basenames parameter.  Update the
11928         file_matches caller.
11929         (search_symbols): Match FILES also against symtab_to_fullname.
11930         Optimize it for BASENAMES_MAY_DIFFER.
11931
11932 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11933
11934         * source.c (print_source_lines_base): Print for TUI also "fullname".
11935         * tui/tui-data.c (init_content_element): Change tui_locator_element
11936         field to full_name.
11937         * tui/tui-data.h (struct tui_locator_element): Likewise.
11938         * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
11939         tui_update_locator_filename calls to tui_update_locator_fullname.
11940         Replace symtab->filename refererence by symtab_to_fullname call.
11941         * tui/tui-out.c (tui_field_string): Check for "fullname" now.
11942         * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
11943         field to full_name.  Replace symtab->filename refererence by
11944         symtab_to_fullname call.
11945         (tui_show_symtab_source): Rename parameter to fullname.  Change
11946         tui_locator_element field to full_name.
11947         * tui/tui-stack.c: Include source.h.
11948         (tui_set_locator_filename): Rename the declaration to ...
11949         (tui_set_locator_fullname): ... here.  Rename its parameter to
11950         fullname, updates its comment.
11951         (tui_set_locator_info): Rename its parameter to fullname.
11952         (tui_set_locator_filename): Rename the definition to ...
11953         (tui_set_locator_fullname): ... here.  Rename its parameter to
11954         fullname, updates its comment.  Change tui_locator_element field to
11955         full_name.
11956         (tui_set_locator_info): Rename its parameter to fullname.
11957         (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
11958         (tui_update_locator_filename): Rename to ...
11959         (tui_update_locator_fullname): ... here. Rename callee to
11960         tui_set_locator_fullname.
11961         (tui_show_frame_info): Replace symtab->filename refererence by
11962         symtab_to_fullname call.
11963         * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
11964         (tui_update_locator_fullname): ... here.
11965         * tui/tui-winsource.c (tui_display_main): Rename the callee to
11966         tui_update_locator_fullname.  Replace symtab->filename refererence by
11967         symtab_to_fullname call.
11968         * tui/tui.c (tui_show_source): Rename its parameter to fullname.
11969         Rename the callee to tui_update_locator_fullname.
11970         * tui/tui.h (tui_show_source): Rename its parameter to fullname.
11971
11972 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11973
11974         * ada-lang.c (user_select_syms): Replace symtab->filename refererences
11975         by symtab_to_filename_for_display calls.
11976         * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
11977         (clear_command): New variable sal_fullname, initialize it.  Replace
11978         compare_filenames_for_search by filename_cmp with sal_fullname.
11979         (say_where, update_static_tracepoint): Replace symtab->filename
11980         refererences by symtab_to_filename_for_display calls.
11981         * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
11982         Likewise.
11983         * dwarf2read.c: Include source.h.
11984         (fixup_go_packaging): Replace symtab->filename refererences by
11985         symtab_to_filename_for_display calls.
11986         * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
11987         Replace symtab->filename refererences by symtab_to_filename_for_display
11988         calls.
11989         (create_sals_line_offset, convert_linespec_to_sals): New variable
11990         fullname, initialize it, replace symtab->filename reference by the
11991         variable.
11992         * linux-fork.c: Include source.h.
11993         (info_checkpoints_command): Replace symtab->filename refererences by
11994         symtab_to_filename_for_display calls.
11995         * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
11996         by symtab_to_filename_for_display calls.
11997         * mdebugread.c: Include source.h.
11998         (psymtab_to_symtab_1): Replace symtab->filename refererences by
11999         symtab_to_filename_for_display calls.
12000         * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
12001         (mi_cmd_file_list_exec_source_files): Likewise.
12002         * printcmd.c: Include source.h.
12003         (build_address_symbolic): Replace symtab->filename refererences by
12004         symtab_to_filename_for_display calls.
12005         * psymtab.c (partial_map_symtabs_matching_filename)
12006         (read_psymtabs_with_fullname): Call compare_filenames_for_search also
12007         with psymtab_to_fullname.
12008         * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
12009         by symtab_to_filename_for_display calls.
12010         (stpy_get_filename): New variable filename, initialize it, use instead
12011         of symtab->filename refererences.
12012         (salpy_str): Make variable filename const char *.  Replace
12013         symtab->filename refererences by symtab_to_filename_for_display calls.
12014         * skip.c: Include source.h and filenames.h.
12015         (skip_file_command): Remove const from the symtab variable.  Replace
12016         symtab->filename refererences by symtab_to_fullname call.
12017         (function_name_is_marked_for_skip): New variables searched_for_fullname
12018         and fullname.  Use them to search also with symtab's fullname.
12019         * source.c (find_source_lines): Replace symtab->filename refererences
12020         by symtab_to_filename_for_display calls.
12021         (print_source_lines_base): New variable filename, use it instead of
12022         symtab->filename.  Replace symtab->filename refererences by
12023         symtab_to_filename_for_display calls.
12024         (line_info, forward_search_command): Replace symtab->filename
12025         refererences by symtab_to_filename_for_display calls.
12026         (reverse_search_command): Replace symtab->filename refererences by
12027         symtab_to_filename_for_display calls.  New variable filename for it.
12028         * stack.c (frame_info): Likewise.
12029         * symmisc.c: Include source.h.
12030         (dump_objfile, dump_symtab_1, maintenance_print_symbols)
12031         (maintenance_info_symtabs): Replace symtab->filename refererences by
12032         symtab_to_filename_for_display calls.
12033         * symtab.c (iterate_over_some_symtabs): Call
12034         compare_filenames_for_search also with symtab_to_fullname.
12035         (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
12036         symtab->filename refererences by symtab_to_filename_for_display calls.
12037         (find_line_symtab): Replace symtab->filename refererences by
12038         symtab_to_filename_for_display calls.
12039         (file_matches): Replace filename_cmp by compare_filenames_for_search.
12040         (print_symbol_info): Make the last parameter const char *.  New
12041         variable s_filename.  Use it in the function.
12042         (symtab_symbol_info): Make the last_filename variable const char *.
12043         Replace symtab->filename refererences by symtab_to_filename_for_display
12044         calls.
12045         (rbreak_command): New variable fullname.  Use it.  Replace
12046         symtab->filename refererence by symtab_to_filename_for_display call.
12047         * tracepoint.c (set_traceframe_context, trace_find_line_command)
12048         (print_one_static_tracepoint_marker): Replace symtab->filename
12049         refererences by symtab_to_filename_for_display calls.
12050         * tui/tui-source.c (tui_set_source_content): New variables filename and
12051         s_filename.  Replace symtab->filename refererences by this variable.
12052         Replace other symtab->filename refererences by
12053         symtab_to_filename_for_display calls.
12054
12055 2013-02-03  Eldar Gaynetdinov <hal9000ed2k@gmail.com>
12056             Jan Kratochvil  <jan.kratochvil@redhat.com>
12057
12058         Add a new variable that controls a way in which filenames are
12059         displayed.
12060         * NEWS (set filename-display): New entry.
12061         * source.c (filename_display_basename, filename_display_relative)
12062         (filename_display_absolute, filename_display_kind_names)
12063         (filename_display_string, show_filename_display_string)
12064         (symtab_to_filename_for_display): New.
12065         (_initialize_source): Added initialization of 'filename-display'
12066         variable.
12067         * source.h (symtab_to_filename_for_display): Added declaration.
12068         * stack.c (print_frame): Added new variable and calling of a new
12069         function and condition with this variable. Changed third argument of
12070         calling of a function.
12071
12072 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
12073
12074         * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
12075         Rename field reference filename to fullname.
12076         * tui/tui-data.h (struct tui_source_info): Rename field filename to
12077         fullname.  New comment for it.
12078         * tui/tui-source.c (tui_set_source_content): Rename field reference
12079         filename to fullname.  Initialize field by symtab_to_fullname now.
12080         * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
12081         reference filename to fullname.  Use symtab_to_fullname during
12082         comparison.
12083
12084 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
12085
12086         Code cleanup.
12087         * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
12088         (dw2_expand_symtabs_with_fullname): ... here.  Rename parameter
12089         filename to fullname.  Rename variable this_name to this_fullname.
12090         Lowercase FILENAME_CMP call.
12091         (dw2_find_symbol_file): New comment for the returned string.
12092         (dwarf2_gdb_index_functions): Rename the function to
12093         dw2_expand_symtabs_with_fullname.
12094         * psymtab.c (read_psymtabs_with_filename): Rename to ...
12095         (read_psymtabs_with_fullname): ... here.  Rename parameter filename to
12096         fullname.
12097         (psym_functions): Rename the function to read_psymtabs_with_fullname.
12098         * symfile.h (struct quick_symbol_functions): Rename field
12099         expand_symtabs_with_filename to expand_symtabs_with_fullname and its
12100         parameter filename to fullname.  Document returned string meaning for
12101         find_symbol_file.
12102         * symtab.c (find_line_symtab): Rename the called function to
12103         expand_symtabs_with_fullname.
12104
12105 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
12106
12107         Code cleanup.
12108         * breakpoint.c (clear_command): Remove variable is_abs, unify the
12109         call of filename_cmp with compare_filenames_for_search.
12110         * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
12111         is_abs, unify the call of FILENAME_CMP with
12112         compare_filenames_for_search.  New gdb_asserts for real_path and name.
12113         Unify the call of compare_filenames_for_search with FILENAME_CMP.
12114         * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
12115         * symfile.h (struct quick_symbol_functions): Extend the comment for
12116         map_symtabs_matching_filename.
12117         * symtab.c (compare_filenames_for_search): Remove the function comment
12118         relative path requirement.  Handle absolute filenames, with a comment.
12119         (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
12120         FILENAME_CMP with compare_filenames_for_search.  New gdb_asserts for
12121         real_path and name.  Unify the call of compare_filenames_for_search
12122         with FILENAME_CMP.
12123         (iterate_over_symtabs): New gdb_assert on REAL_PATH.
12124
12125 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
12126
12127         Code cleanup.
12128         * breakpoint.c (print_breakpoint_location): Replace bp_location field
12129         source_file references by symtab field references.  Remove variables
12130         sal and fullname.
12131         (momentary_breakpoint_from_master, add_location_to_breakpoint):
12132         (clear_command, say_where): Replace bp_location field source_file
12133         references by symtab field references.
12134         (bp_location_dtor): Remove the source_file reference.
12135         (update_static_tracepoint): Replace bp_location field source_file
12136         references by symtab field references.
12137         (breakpoint_free_objfile): New function.
12138         * breakpoint.h (struct bp_location): Extend the comment for line_number.
12139         Replace the field source_file by field symtab, extend its comment.
12140         (breakpoint_free_objfile): New declaration.
12141         * objfiles.c (free_objfile): Call breakpoint_free_objfile.
12142         * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
12143         field source_file references by symtab field references.
12144
12145 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
12146
12147         Replace xfullpath calls by gdb_realpath calls.
12148         * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
12149         function comment.
12150         * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
12151         Remove it from the iterate_over_some_symtabs call.
12152         (dw2_map_symtabs_matching_filename): Remove parameter full_path.
12153         Remove it from the dw2_map_expand_apply calls, remove a block handling
12154         it.
12155         * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
12156         Remove it from the iterate_over_some_symtabs call.
12157         (partial_map_symtabs_matching_filename): Remove parameter full_path.
12158         Remove it from the partial_map_expand_apply calls, remove a block
12159         handling it.  Drop gdb_realpath call and cleanups from the real_path
12160         handling.
12161         * source.c (openp): Drop the comment part about xfullpath.  Replace
12162         xfullpath calls by gdb_realpath calls.
12163         (find_and_open_source): Replace xfullpath call by gdb_realpath call.
12164         * symfile.h (struct quick_symbol_functions): Remove parameter full_path
12165         from method map_symtabs_matching_filename and its comment.
12166         * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
12167         gdb_realpath call.
12168         * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
12169         remove it also from the function comment, remove a block handling it.
12170         Drop gdb_realpath call and cleanups from the real_path handling.
12171         (iterate_over_symtabs): Drop variable full_path and its use.
12172         * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
12173         * utils.c (xfullpath): Remove.
12174         * utils.h (xfullpath): Remove.
12175
12176 2013-02-01  Andreas Tobler  <andreast@fgznet.ch>
12177
12178         * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
12179         (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
12180         (ALLDEPFILES): Add ppc64-tdep.c.
12181         * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
12182         ppc64-tdep.o to gdb_target_obs.
12183         * ppc64-tdep.h: New file.
12184         * ppc64-tdep.c: New file.
12185         (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
12186         ppc-linux-tdep.c to here.
12187         (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
12188         (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
12189         (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
12190         (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
12191         from ppc-linux-tdep.c to here.
12192         (ppc64_convert_from_func_ptr_addr): Rename from
12193         ppc64_linux_convert_from_func_ptr_addr to
12194         ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
12195         here.
12196         * rs6000-tdep.c:
12197         (read_insn): Move from ppc-linux-tdep.c to here.
12198         (insns_match_pattern, insn_d_field, insn_ds_field): Move
12199         from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
12200         * ppc-linux-tdep.c: Include ppc64-tdep.h.
12201         Removed above functions.
12202         (ppc_linux_init_abi): Adjust.
12203
12204 2013-02-01  Aleksandar Ristovski  <aristovski@qnx.com>
12205
12206         * ada-valprint.c (ada_print_floating): Remove unused 'len'.
12207
12208 2013-02-01  Aleksandar Ristovski  <aristovski@qnx.com>
12209
12210         * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
12211
12212 2013-02-01  Pedro Alves  <palves@redhat.com>
12213
12214         * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
12215         * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
12216
12217 2013-02-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
12218
12219         * elfread.c (elf_symfile_read): Limit separate debug info additions to
12220         files with no separate debug info.
12221         * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
12222         * symfile.c (read_symbols): Call find_separate_debug_file_in_section
12223         only for files with no separate debug info.
12224
12225 2013-01-31  Tom Tromey  <tromey@redhat.com>
12226
12227         * jit.c (jit_program_space_data): Rename from jit_inferior_data;
12228         change type.
12229         (struct jit_program_space_data): Rename from jit_inferior_data.
12230         Update comments.
12231         (get_jit_program_space_data): Rename from get_jit_inferior_data.
12232         Change return type.  Attach data to program space.
12233         (jit_program_space_data_cleanup): Rename from
12234         jit_inferior_data_cleanup; change argument type.
12235         (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
12236         change type.
12237         (jit_register_code): Update.
12238         (jit_update_inferior_cache): Remove.
12239         (jit_breakpoint_deleted): Get jit data from the location's program
12240         space.
12241         (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
12242         'ps_data', change type.
12243         (jit_inferior_init, jit_breakpoint_re_set_internal)
12244         (jit_event_handler): Update.
12245         (free_objfile_data): Get data from objfile's program space.
12246         (_initialize_jit): Update.
12247
12248 2013-01-31  Tom Tromey  <tromey@redhat.com>
12249
12250         PR gdb/13987:
12251         * jit.c (struct jit_inferior_data) <cached_code_address,
12252         jit_breakpoint>: New fields.
12253         (jit_breakpoint_re_set_internal): Fix logging.  Only create
12254         breakpoint if cached address has changed.
12255         (jit_update_inferior_cache, jit_breakpoint_deleted): New
12256         functions.
12257         (_initialize_jit): Register breakpoint deleted observer.
12258
12259 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
12260
12261         * infrun.c (handle_syscall_event): Remove unused gdbarch.
12262         (save_infcall_suspend_state): Ifdef out unused inf.
12263         (restore_infcall_suspend_state): Ifdef out unused inf.
12264         * jit.c (jit_register_code): Remove unused i, b, inf_data.
12265         (jit_frame_sniffer): Remove unused inf_data.
12266
12267 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
12268
12269         * c-exp.y (classify_inner_name): Remove unused type.
12270         * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
12271         in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
12272         need_escape.
12273         (c_get_string): Remove unused kind.
12274         * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
12275
12276 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
12277
12278         * charset.c (intermediate_encoding): Remove unused i.
12279         * completer.c (signal_completer): Remove unused i.
12280         * continuations.c (discard_my_continuations_1): Remove unused
12281         continuation_ptr.
12282         * corelow.c (core_close): Remove unuseD name.
12283         (get_core_siginfo): Remove unused pid.
12284         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
12285         i, cps.
12286         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
12287         (loclist_describe_location): Remove unused first.
12288         * event-top.c (command_line_handler): Remove unused got_eof.
12289         * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
12290         (resize_section_table): Remove unused old_value.
12291         * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
12292         * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
12293         * i386-tdep.c (i386_process_record): Remove unused rex.
12294         * infcmd.c (get_return_value): Remove unused uiout.
12295         * jv-lang.c (type_from_class): Remove unused is_array.
12296         * jv-valprint.c (java_val_print): Remove unused i.
12297         * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
12298         * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
12299         * m2-typeprint.c (m2_print_type): Remove unused code.
12300         * macroexp.c (get_character_constant): Remove unused body_start.
12301         (macro_stringify): Remove unused result.
12302         * objc-lang.c (find_methods): Remove unused gdbarch.
12303         * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
12304         * regcache.c (regcache_cooked_read): Remove unused gdbarch.
12305         * stack.c (print_frame_args): Remove unused summary.
12306         * thread.c (thread_apply_command): Remove unused p.
12307         * valarith.c (value_x_unop): Remove unused mangle_ptr.
12308         * valops.c (search_struct_method): Remove unused skip.
12309         * valprint.c (generic_val_print): Remove unused byte_order.
12310         * varobj.c (varobj_update): Remove unused changed.
12311         * cli/cli-cmds.c (complete_command): Remove unused next_item.
12312         (alias_command): Remove unused c.
12313         * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
12314         * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
12315         format.
12316         (mi_cmd_data_write_memory): Remove unused word_format.
12317         (mi_cmd_data_write_memory_bytes): Remove unused r.
12318         * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
12319         p_start, p_end.
12320         * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
12321         * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
12322         line_width.
12323
12324 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
12325
12326         * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
12327         * symtab.c (iterate_over_symtabs): Remove unused s.
12328         (find_pc_sect_symtab): Remove unused pspAce.
12329         (find_pc_sect_line): Remove unused alt_symtab.
12330         (find_pcs_for_symtab_line): Remove unused ix, previous_function.
12331         (completion_list_add_name): Remove unused newsize.
12332
12333 2013-01-31  Tom Tromey  <tromey@redhat.com>
12334
12335         PR c++/14998:
12336         * dwarf2read.c (read_tag_ptr_to_member_type): Handle
12337         TYPE_CODE_FUNC.
12338
12339 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
12340
12341         * target.c (target_read_string): Remove unused origlen.
12342
12343 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
12344
12345         * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
12346         * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
12347         * ax-general.c (ax_print): Remove unused is_float.
12348         * blockframe.c (block_innermost_frame): Remove unused start, end.
12349         * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
12350
12351 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
12352
12353         * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
12354         (svr4_read_so_list): Remove unused lmo.
12355         * solib-target.c (solib_target_relocate_section_addresses): Remove
12356         unused flags.
12357
12358 2013-01-30  Tom Tromey  <tromey@redhat.com>
12359
12360         * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
12361
12362 2013-01-30  Tom Tromey  <tromey@redhat.com>
12363
12364         * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
12365         * utils.c (gnu_debuglink_crc32): Remove.
12366         * utils.h (gnu_debuglink_crc32): Don't declare.
12367
12368 2013-01-30  Tom Tromey  <tromey@redhat.com>
12369
12370         * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
12371         (read_structure_type, read_enumeration_type): Remove cast.
12372
12373 2013-01-30  Tom Tromey  <tromey@redhat.com>
12374
12375         * dwarf2read.c (read_namespace_type): Remove cast.
12376         (read_typedef): Likewise.
12377
12378 2013-01-29  Tom Tromey  <tromey@redhat.com>
12379
12380         * dwarf2read.c (free_dwo_file): Remove assert.
12381
12382 2013-01-29  Tom Tromey  <tromey@redhat.com>
12383
12384         * value.c (deprecated_set_value_modifiable): Remove.
12385         * value.h (deprecated_set_value_modifiable): Remove.
12386
12387 2013-01-28  Doug Evans  <dje@google.com>
12388
12389         * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
12390         to addresses from dwo files.
12391
12392 2013-01-25  Siva Chandra Reddy  <sivachandra@google.com>
12393
12394         * valops.c (find_overload_match): Remove unused argument 'lax'.
12395         * value.h: Remove unused argument 'lax' from the declaration of
12396         find_overload_match.
12397         * eval.c (value_subexp_standard): Do not pass a 'lax' argument
12398         to find_overload_match.
12399         * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
12400         argument to find_overload_match.
12401
12402 2013-01-25  Tom Tromey  <tromey@redhat.com>
12403
12404         * dwarf2read.c (processing_has_namespace_info): Remove.
12405         (struct dwarf2_cu) <processing_has_namespace_info>: New field.
12406         (process_die, read_func_scope, dwarf2_start_symtab)
12407         (new_symbol_full): Update.
12408
12409 2013-01-25  Tom Tromey  <tromey@redhat.com>
12410
12411         * cp-namespace.c (cp_set_block_scope): Remove.
12412         * cp-support.h (cp_set_block_scope): Remove.
12413         * dbxread.c: Include block.h.
12414         (cp_set_block_scope): New function.
12415         (process_one_symbol): Update.
12416         * dwarf2read.c (read_func_scope): Use block_set_scope.
12417
12418 2013-01-25  Pedro Alves  <palves@redhat.com>
12419
12420         * remote.c (add_current_inferior_and_thread): Tweak comment.
12421
12422 2013-01-25  Tom Tromey  <tromey@redhat.com>
12423
12424         * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
12425         (cp_add_using_directive): Add 'copy_names' argument.
12426         * cp-support.h (cp_add_using_directive): Update.
12427         (struct using_direct) <import_src, import_dest, alias,
12428         declaration>: Now const.
12429         * dwarf2read.c (read_import_statement): Use obconcat.
12430         Don't copy names passed to cp_add_using_directive.
12431
12432 2013-01-25  Tom Tromey  <tromey@redhat.com>
12433
12434         * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
12435
12436 2013-01-25  Pedro Alves  <palves@redhat.com>
12437
12438         * remote.c (stop_reply_extract_thread): New.
12439         (add_current_inferior_and_thread): New parameter 'wait_status'.
12440         Handle it.
12441         (remote_start_remote): Pass wait status to
12442         add_current_inferior_and_thread.
12443         (extended_remote_run): Update comment.
12444         (extended_remote_create_inferior_1): Pass wait status to
12445         add_current_inferior_and_thread.
12446
12447 2013-01-25  Andrew Burgess  <aburgess@broadcom.com>
12448             Ulrich Weigand  <uweigand@de.ibm.com>
12449
12450         * valarith.c (value_vector_widen): New function for replicating a
12451         scalar into a vector.
12452         (value_binop): Use value_vector_widen to widen scalar to vector
12453         rather than casting, this better matches gcc C behaviour.
12454         * valops.c (value_casst): Update logic for casting between vector
12455         types, and for casting from scalar to vector, try to match gcc C
12456         behaviour.
12457         * value.h (value_vector_widen): Declare.
12458         * opencl-lang.c (opencl_value_cast): New opencl specific casting
12459         function, handle special case for casting scalar to vector.
12460         (opencl_relop): Use opencl_value_cast.
12461         (evaluate_subexp_opencl): Use opencl_value_cast instead of
12462         value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
12463         in order to use opencl_value_cast.
12464
12465 2013-01-25  Yao Qi  <yao@codesourcery.com>
12466
12467         * event-loop.c: Include "queue.h".
12468         (gdb_event_p): New typedef.
12469         (DECLARE_QUEUE_P): Use.
12470         (DEFINE_QUEUE_P): Use.
12471         (async_queue_event): Remove.
12472         (gdb_event_xfree): New.
12473         (initialize_event_loop): New.
12474         (process_event): Use QUEUE macros.
12475         (event_queue): Remove.
12476         (gdb_wait_for_event): Caller update.
12477         (check_async_event_handlers): Likewise.
12478         (poll_timers): Likewise.
12479         * event-loop.h (initialize_event_loop): Declare.
12480         * event-loop.c (gdb_event_xfree): New.
12481         * top.c (gdb_init): Call initialize_event_loop.
12482
12483 2013-01-25  Yao Qi  <yao@codesourcery.com>
12484
12485         * event-loop.c (async_queue_event): Remove one parameter
12486         'position'.  Remove code handling 'position' == TAIL.
12487         (gdb_wait_for_event): Caller update.
12488         (check_async_event_handlers): Caller update.
12489         (poll_timers): Caller update.
12490         * event-loop.h (enum queue_position): Remove.
12491
12492 2013-01-25  Maxim Kuvyrkov  <maxim@kugelworks.com>
12493
12494         * MAINTAINERS: Update my email.
12495
12496 2013-01-25  Yao Qi  <yao@codesourcery.com>
12497
12498         * main.c (print_gdb_help): Remove "--epoch" from the help
12499         message.
12500
12501 2013-01-24  Ulrich Weigand  <uweigand@de.ibm.com>
12502
12503         * symtab.c (skip_prologue_using_sal): Consider a file
12504         change the same as an increased line number
12505
12506 2013-01-24  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
12507
12508         * MAINTAINERS (Write After Approval): Add myself to the list.
12509
12510 2013-01-24  Tom Tromey  <tromey@redhat.com>
12511
12512         * ada-lang.h (ada_decode_symbol): Make return type const.
12513         * ada-lang.c (ada_decode_symbol): Likewise.
12514
12515 2013-01-23  Doug Evans  <dje@google.com>
12516
12517         * linespec.c (find_linespec_symbols): Make static.
12518
12519 2013-01-23  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
12520
12521         * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
12522         type on float conversion for complex type.
12523
12524 2013-01-23  Siva Chandra Reddy  <sivachandra@google.com>
12525
12526         Add a new class gdb.Architecture which exposes GDB's
12527         internal representation of architecture via GDB Python API.
12528         * Makefile.in: Add entries corresponding to the new file
12529         python/py-arch.c.
12530         * NEWS (Python Scripting): Add entries for the new class
12531         gdb.Architecture and the new method gdb.Frame.architecture.
12532         * python/py-arch.c: Implement gdb.Architecture class.
12533         * python/py-frame.c (frapy_arch): Implement the method
12534         gdb.Frame.architecture().
12535         (frame_object_methods): Add 'architecture' to the method table.
12536         * python/python-internal.h: Add declarations of new utility
12537         functions.
12538         * python/python.c (_initialize_python): Initialize
12539         gdb.Architecture class.
12540
12541 2013-01-23  Doug Evans  <dje@google.com>
12542
12543         Work around binutils/15021.
12544         * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
12545         type_unit_group out of union s.  All uses updated.
12546         (read_index_from_section): Watch for index version 8.
12547         (follow_die_sig): If using .gdb_index version <= 7, record the TU as
12548         an imported symtab.
12549         (write_psymtabs_to_index): Increment version number to 8.
12550
12551 2013-01-22  Pedro Alves  <palves@redhat.com>
12552
12553         * annotate.c (breakpoint_changed): Skip if breakpoint is not
12554         user-visible.
12555
12556 2013-01-22  Pedro Alves  <palves@redhat.com>
12557
12558         * annotate.c (annotate_breakpoints_changed): Rename to ...
12559         (annotate_breakpoints_invalid): ... this.  Make static.
12560         (breakpoint_changed): Adjust.
12561         (_initialize_annotate): Always install the observers.  Install a
12562         "breakpoint_created" observer.
12563         * annotate.h (annotate_breakpoints_changed): Delete declaration.
12564         * breakpoint.c (set_breakpoint_condition)
12565         (breakpoint_set_commands, do_map_commands_command)
12566         (init_raw_breakpoint, clear_command, set_ignore_count)
12567         (enable_breakpoint_disp): No longer call
12568         annotate_breakpoints_changed.
12569
12570 2013-01-22  Pedro Alves  <palves@redhat.com>
12571
12572         * annotate.c: Include "inferior.h".
12573         (frames_invalid_emitted)
12574         (breakpoints_invalid_emitted): New globals.
12575         (async_background_execution_p): New function.
12576         (annotate_breakpoints_changed, annotate_frames_invalid): Skip
12577         emitting the annotation if it has already been emitted.
12578         (annotate_display_prompt): New function.
12579         * annotate.h (annotate_display_prompt): New declaration.
12580         * event-top.c: Include annotate.h.
12581         (display_gdb_prompt): Call annotate_display_prompt.
12582
12583 2013-01-22  Pedro Alves  <palves@redhat.com>
12584
12585         * annotate.c (ignore_count_changed): Delete.
12586         (annotate_breakpoints_changed): Don't clear ignore_count_changed.
12587         (annotate_ignore_count_change): Delete.
12588         (annotate_stopped): Don't emit a delayed breakpoints-changed
12589         annotation.
12590         * annotate.h (annotate_ignore_count_change): Delete.
12591         * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
12592         annotate_ignore_count_change.
12593
12594 2013-01-22  Tom Tromey  <tromey@redhat.com>
12595
12596         * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
12597         require_rvalue for a register location.
12598
12599 2013-01-21  Marc Khouzam  <marc.khouzam@ericsson.com>
12600
12601         * breakpoint.c (print_one_breakpoint_location): Add MI
12602         field 'thread-groups' when printing a breakpoint.
12603         (output_thread_groups): New function.
12604
12605 2013-01-21  Siva Chandra Reddy  <sivachandra@google.com>
12606
12607         * python/lib/gdb/commands/explore.py
12608         (CompoundExplorer.explore_expr): Correct the name of a method
12609         being invoked.
12610         (ExploreTypeCommand.invoke): Add a missing 'return'.
12611
12612 2013-01-21  Tom Tromey  <tromey@redhat.com>
12613
12614         * gdb_obstack.h (obconcat): Move declaration here, from...
12615         * symfile.h (obconcat): ... here.
12616         * gdb_obstack.c: New file.
12617         (obconcat): Move from...
12618         * symfile.c (obconcat): ... here.
12619         * Makefile.in (SFILES): Add gdb_obstack.c.
12620         (COMMON_OBS): Add gdb_obstack.o.
12621
12622 2013-01-21  Tom Tromey  <tromey@redhat.com>
12623
12624         * symfile.h (obsavestring): Don't declare.
12625         * symfile.c (obsavestring): Remove.
12626         * ada-exp.y: Use obstack_copy0, not obsavestring.
12627         * ada-lang.c: Use obstack_copy0, not obsavestring.
12628         * coffread.c: Use obstack_copy0, not obsavestring.
12629         * cp-namespace.c: Use obstack_copy0, not obsavestring.
12630         * dbxread.c: Use obstack_copy0, not obsavestring.
12631         * dwarf2read.c: Use obstack_copy0, not obsavestring.
12632         * jit.c: Use obstack_copy0, not obsavestring.
12633         * mdebugread.c: Use obstack_copy0, not obsavestring.
12634         * psymtab.c: Use obstack_copy0, not obsavestring.
12635         * stabsread.c: Use obstack_copy0, not obsavestring.
12636         * xcoffread.c: Use obstack_copy0, not obsavestring.
12637
12638 2013-01-21  Tom Tromey  <tromey@redhat.com>
12639
12640         * dwarf2read.c (fixup_go_packaging): Save package name
12641         on objfile obstack.
12642         * gdbtypes.c (init_type): Don't copy name.
12643
12644 2013-01-21  Tom Tromey  <tromey@redhat.com>
12645
12646         * dwarf2read.c (struct partial_die_info) <name, scope>: Now
12647         const.
12648         (struct attribute) <u.str>: Now const.
12649         (struct fnfieldlist) <name>: Now const.
12650         (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
12651         (partial_die_parent_scope): Make return type const.
12652         (partial_die_full_name, add_partial_symbol): Update.
12653         (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
12654         'name' const.
12655         (find_file_and_directory): Make 'name' and 'comp_dir' const.
12656         (read_file_scope, read_func_scope, dwarf2_add_field)
12657         (dwarf2_add_member_fn, read_structure_type)
12658         (process_enumeration_scope, read_array_type, read_module_type)
12659         (read_base_type, read_subrange_type): Update.
12660         (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
12661         (new_symbol_full, guess_full_die_structure_name): Update.
12662         (dwarf2_canonicalize_name): Return const type.  Make 'name' const.
12663         (dwarf2_name): Return const type.
12664         (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
12665         const.
12666
12667 2013-01-21  Tom Tromey  <tromey@redhat.com>
12668
12669         * gdbtypes.c (init_type): Make 'name' const.
12670         * gdbtypes.h (init_type): Update.
12671
12672 2013-01-21  Tom Tromey  <tromey@redhat.com>
12673
12674         * buildsym.c (patch_subfile_names): Use set_last_source_file.
12675         (start_symtab): Make 'name' and 'dirname' const.  Use
12676         set_last_source_file.
12677         (restart_symtab, reset_symtab_globals): Use set_last_source_file.
12678         (last_source_file): Define.  Now static.
12679         (set_last_source_file, get_last_source_file): New functions.
12680         * buildsym.h (last_source_file): Don't declare.
12681         (start_symtab): Update.
12682         (set_last_source_file, get_last_source_file): Declare.
12683         * coffread.c (complete_symtab): Use set_last_source_file.
12684         (coff_end_symtab): Likewise.
12685         (coff_symtab_read): Use set_last_source_file, get_last_source_file.
12686         * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
12687         set_last_source_file.
12688         (process_one_symbol): Use get_last_source_file.
12689         * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
12690         (psymtab_to_symtab_1): Use get_last_source_file.
12691         * xcoffread.c (process_linenos): Use get_last_source_file.
12692         (complete_symtab): Use set_last_source_file.
12693         (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
12694         (scan_xcoff_symtab): Use set_last_source_file.
12695
12696 2013-01-21  Tom Tromey  <tromey@redhat.com>
12697
12698         * symtab.c (struct demangled_name_entry) <mangled>: Now const.
12699         (symbol_set_names): Remove casts.  Handle field const-ness.
12700
12701 2013-01-21  Tom Tromey  <tromey@redhat.com>
12702
12703         * dwarf2read.c (new_symbol_full): Remove cast.
12704         * symtab.c (symbol_set_demangled_name): Make 'name' const.
12705         * symtab.h (symbol_set_demangled_name): Update.
12706
12707 2013-01-21  Tom Tromey  <tromey@redhat.com>
12708
12709         * main.c (captured_main): Call bfd_init.
12710
12711 2013-01-21  Tom Tromey  <tromey@redhat.com>
12712
12713         * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
12714         * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
12715         * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
12716         * NEWS: Update.
12717
12718 2013-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
12719
12720         * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
12721
12722 2013-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
12723
12724         Fix gdb.fortran/common-block.exp crash in PIE mode.
12725         * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
12726         LOC_COMMON_BLOCK.
12727         * f-valprint.c (info_common_command_for_block): Expect
12728         LOC_COMMON_BLOCK in gdb_assert.
12729         * symtab.h (struct general_symbol_info): Update comment for the
12730         common_block member.
12731         (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
12732         (enum address_class): New member LOC_COMMON_BLOCK.
12733
12734 2013-01-18  David Blaikie  <dblaikie@gmail.com>
12735
12736         * MAINTAINERS (Write After Approval): Add "David Blaikie".
12737
12738 2013-01-18  Tom Tromey  <tromey@redhat.com>
12739
12740         PR c++/14999:
12741         * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
12742         Call require_rvalue.
12743
12744 2013-01-18  Yao Qi  <yao@codesourcery.com>
12745
12746         * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
12747         (dbx_read_symtab): New declaration.
12748         (dbx_psymtab_to_symtab): Delete.
12749         (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
12750         Rename parameter PST to SELF.  Exchanged two parameters.
12751         (start_psymtab): Caller update.
12752         * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
12753         (dwarf2_read_symtab): New declaration.
12754         (dwarf2_psymtab_to_symtab): Delete.
12755         (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
12756         Rename parameter PST to SELF.  Exchanged two parameters.
12757         (create_partial_symtab): Caller update.
12758         * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
12759         (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
12760         Rename parameter PST to SELF.  Exchanged two parameters.
12761         (parse_partial_symbols, new_psymtab): Caller update.
12762         * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
12763         two parameters.
12764         * psymtab.c (psymtab_to_symtab): Caller update.
12765         * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
12766         (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
12767         Rename parameter PST to SELF.  Exchanged two parameters.
12768         (xcoff_start_psymtab): Caller update.
12769
12770 2013-01-18  Yao Qi  <yao@codesourcery.com>
12771
12772         * infrun.c (proceed): Rename local variable 'oneproc' to
12773         'force_step'.
12774
12775 2013-01-17  Doug Evans  <dje@google.com>
12776
12777         * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
12778         (dw2_build_type_unit_groups): Delete.  All uses updated.
12779
12780         * symtab.h (struct symbol_search): Add comment.
12781
12782 2013-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
12783
12784         * symtab.c (compare_filenames_for_search): New comment for
12785         HAS_DRIVE_SPEC.
12786
12787 2013-01-17  Tom Tromey  <tromey@redhat.com>
12788
12789         * cp-abi.c (cp_abi_completer): Fix typo in assignment.
12790
12791 2013-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
12792
12793         * symtab.c (iterate_over_some_symtabs): New variable cleanups,
12794         initialize it by existing make_cleanup.  Call new do_cleanups.
12795
12796 2013-01-17  Tom Tromey  <tromey@redhat.com>
12797
12798         * cp-abi.c (cp_abi_completer): New function.
12799         (_initialize_cp_abi): Set completer for "set cp-abi".
12800
12801 2013-01-17  Tom Tromey  <tromey@redhat.com>
12802
12803         * mem-break.c: Remove obsolete comment.
12804         * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
12805
12806 2012-01-17  Sanjoy Das <sanjoy@playingwithpointers.com>
12807
12808         * jit.c (jit_reader_load_command): Interpret the jit reader name
12809         as an absolute path if it begins with a forward slash.
12810
12811 2012-01-17  Sanjoy Das <sanjoy@playingwithpointers.com>
12812
12813         PR gdb/14550
12814
12815         * jit.c (finalize_symtab): Ensure that only the global block has a
12816         NULL superblock.
12817
12818 2013-01-17  Pedro Alves  <palves@redhat.com>
12819
12820         * acinclude.m4: Include ../config/plugins.m4,
12821         ../config/largefile.m4 and ../config/lead-dot.m4.  Add comments.
12822         * Makefile.in (aclocal_m4_deps): Update.
12823         * aclocal.m4: Renegerate.
12824
12825 2013-01-16  Doug Evans  <dje@google.com>
12826
12827         * contrib/cc-with-tweaks.sh: Add references to Fission docs.
12828
12829 2013-01-16  Pedro Alves  <palves@redhat.com>
12830             Tom Tromey  <tromey@redhat.com>
12831
12832         PR cli/7221:
12833         * NEWS: Add "catch signal".
12834         * breakpoint.c (base_breakpoint_ops): No longer static.
12835         (bpstat_explains_signal): New function.
12836         (init_catchpoint): No longer static.
12837         (base_breakpoint_explains_signal): New function.
12838         (base_breakpoint_ops): Initialize new field.
12839         * breakpoint.h (enum bpstat_signal_value): New.
12840         (struct breakpoint_ops) <explains_signal>: New field.
12841         (bpstat_explains_signal): Remove macro, declare as function.
12842         (base_breakpoint_ops, init_catchpoint): Declare.
12843         * break-catch-sig.c: New file.
12844         * inferior.h (signal_catch_update): Declare.
12845         * infrun.c (signal_catch): New global.
12846         (handle_syscall_event): Update for change to
12847         bpstat_explains_signal.
12848         (handle_inferior_event): Likewise.  Always handle random signals
12849         via bpstats.
12850         (signal_cache_update): Check signal_catch.
12851         (signal_catch_update): New function.
12852         (_initialize_infrun): Initialize signal_catch.
12853         * Makefile.in (SFILES): Add break-catch-sig.c.
12854         (COMMON_OBS): Add break-catch-sig.o.
12855
12856 2013-01-16  Tom Tromey  <tromey@redhat.com>
12857
12858         * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
12859         (print_one_catch_solib, print_one_catch_syscall)
12860         (print_one_catch_exec, print_one_exception_catchpoint): Emit
12861         "catch-type".
12862
12863 2013-01-16  Yao Qi  <yao@codesourcery.com>
12864
12865         * printcmd.c (current_display_number): Make it static.
12866
12867 2013-01-16  Yao Qi  <yao@codesourcery.com>
12868
12869         * infcmd.c (step_once): Don't check '!single_inst' as it was
12870         checked before.
12871
12872 2013-01-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
12873
12874         * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
12875
12876 2013-01-14  Tom Tromey  <tromey@redhat.com>
12877
12878         * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
12879         set command.
12880         * command.h (add_setshow_string_noescape_cmd): Update.
12881         * corefile.c (set_gnutarget_command): Remove trailing whitespace.
12882         (complete_set_gnutarget): New function.
12883         (_initialize_core): Set the "set gnutarget" completer.
12884
12885 2013-01-14  Tom Tromey  <tromey@redhat.com>
12886
12887         PR symtab/14442:
12888         * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
12889         (c_type_print_modifier): Likewise.
12890         * dwarf2read.c (read_tag_restrict_type): New function.
12891         (read_type_die_1): Handle DW_TAG_restrict_type.
12892         * gdbtypes.c (make_restrict_type): New function.
12893         (recursive_dump_type): Handle TYPE_RESTRICT.
12894         * gdbtypes.h (enum type_flag_values): Renumber.
12895         (enum type_instance_flag_value): Add
12896         TYPE_INSTANCE_FLAG_RESTRICT.
12897         (TYPE_RESTRICT): New macro.
12898         (make_restrict_type): Declare.
12899
12900 2013-01-14  Tom Tromey  <tromey@redhat.com>
12901
12902         PR symtab/14931:
12903         * psymtab.c (struct psymtab_state): New.
12904         (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
12905         functions.
12906         * psympriv.h (make_cleanup_discard_psymtabs): Declare.
12907         * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
12908
12909 2013-01-14  Richard Sharman  <richard_sharman@mitel.com>
12910             Pedro Alves  <palves@redhat.com>
12911
12912         PR remote/14786
12913
12914         * remote.c (remote_threads_info): Make a copy of the reply from
12915         qfThreadInfo and use that instead of rs->buf.
12916
12917 2013-01-14  Yao Qi  <yao@codesourcery.com>
12918
12919         * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
12920         (dbx_psymtab_to_symtab): Likewise.
12921         * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
12922         * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
12923         * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
12924
12925 2013-01-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
12926
12927         * parse.c (parse_exp_in_context): New variable inner_chain.  Call
12928         make_cleanup_restore_current_language.  Call set_language.  Move
12929         OLD_CHAIN and INNER_CHAIN cleanups.
12930         * utils.c (do_restore_current_language)
12931         (make_cleanup_restore_current_language): New functions.
12932         * utils.h (make_cleanup_restore_current_language): New declaration.
12933
12934 2013-01-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
12935
12936         * source.c (symtab_to_fullname): Apply rewrite_source_path also for
12937         non-existing files.
12938
12939         * source.c (symtab_to_fullname): Do not prepend DIRNAME for
12940         non-existing files if FILENAME is already absolute.
12941
12942 2013-01-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
12943
12944         * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
12945         fputs_filtered.  Append trailing newline.
12946
12947 2013-01-11  Yao Qi  <yao@codesourcery.com>
12948             Stan Shebs  <stan@codesourcery.com>
12949
12950         * psymtab.c (init_psymbol_list): Clarify the comment.
12951
12952 2013-01-11  Yao Qi  <yao@codesourcery.com>
12953
12954         * breakpoint.c (print_one_breakpoint_location): Remove dead code.
12955         (update_dprintf_command_list): Assert that 'printf_line' is
12956         non-null.  Remove condition check.
12957
12958 2013-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
12959
12960         Code cleanup.
12961         * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
12962         type const char *.
12963         * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
12964         const char *.
12965         * tui/tui-source.h (tui_source_is_displayed): Likewise.
12966
12967 2013-01-09  Anthony Green  <green@moxielogic.com>
12968
12969         * cp-abi.c (cplus_print_vtable): Don't return value from void
12970         function.
12971         * ada-lang.c (re_set_catch_assert): Ditto.
12972
12973 2013-01-09  Doug Evans  <dje@google.com>
12974
12975         * symfile.h (quick_symbol_functions): Delete member
12976         pre_expand_symtabs_matching.  All uses removed.
12977         * dwarf2read.c (dw2_lookup_symbol): Implement.
12978         (dw2_do_expand_symtabs_matching): Delete.
12979         (dw2_pre_expand_symtabs_matching): Delete.
12980         (struct dw2_symtab_iterator): New type.
12981         (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
12982         (dw2_expand_symtabs_for_function): Rewrite.
12983         (dwarf2_gdb_index_functions): Update.
12984         * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
12985         (psym_functions): Update.
12986
12987 2013-01-09  Tom Tromey  <tromey@redhat.com>
12988
12989         * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
12990         * configure: Rebuild.
12991         * configure.ac: Add somread.o to the build if BFD has SOM
12992         support.
12993         * somread.c: Include som/aout.h, not syms.h.
12994         (som_symtab_read): Use som_external_symbol_dictionary_record.
12995         Unpack records manually.
12996         (_initialize_somread): Declare.
12997
12998 2012-01-08  Mike Frysinger  <vapier@gentoo.org>
12999
13000         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
13001         Cast return_address to 64bits.
13002
13003 2013-01-08  Hui Zhu  <hui_zhu@mentor.com>
13004
13005         * printcmd.c: Remove define of function output_command.
13006         * tracepoint.c: Remove extern of function output_command.
13007         * valprint.h: (output_command): New extern.
13008
13009 2013-01-07  Tom Tromey  <tromey@redhat.com>
13010
13011         * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
13012         Remove.
13013         (objc_language_defn): Use c_printchar, c_printstr,
13014         c_emit_char.
13015
13016 2013-01-07  Tom Tromey  <tromey@redhat.com>
13017
13018         PR cli/7719:
13019         * NEWS: Update.
13020         * ada-valprint.c (printstr, print_field_values): Remove
13021         "inspect_it" code.
13022         * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
13023         code.
13024         * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
13025         code.
13026         * m2-lang.c (m2_printstr): Remove "inspect_it" code.
13027         * main.c (captured_main): Remove "epoch" argument.
13028         * objc-lang.c (objc_printstr): Remove "inspect_it" code.
13029         * p-lang.c (pascal_printstr): Remove "inspect_it" code.
13030         * p-valprint.c (pascal_object_print_value_fields): Remove
13031         "inspect_it" code.
13032         * printcmd.c (print_command_1): Remove 'inspect' argument.
13033         (print_command, call_command): Update.
13034         (inspect_command): Remove.
13035         (_initialize_printcmd): Make "inspect" an alias for "print".
13036         * top.c (epoch_interface): Remove.
13037         * top.h (epoch_interface): Remove.
13038         * valprint.c (user_print_options): Update.
13039         (print_converted_chars_to_obstack): Remove "inspect_it" code.
13040         * valprint.h (struct value_print_options) <inspect_it>: Remove
13041         field.
13042
13043 2013-01-04  Tom Tromey  <tromey@redhat.com>
13044
13045         * valprint.h (read_string): Add 'extern'.
13046
13047 2013-01-07  Joel Brobecker  <brobecker@adacore.com>
13048
13049         * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
13050         used to decide whether to define darwin_read_dyld_info or not.
13051
13052 2013-01-03  Pierre Muller  <muller@sourceware.org>
13053
13054         * main.c (relocate_gdb_directory): Avoid calling stat function
13055         if DIR is empty.
13056
13057 2013-01-03  Yao Qi  <yao@codesourcery.com>
13058
13059         * psymtab.c (fixup_psymbol_section): Update declaration.
13060         (fixup_psymbol_section): Remove code returning value.
13061
13062 2013-01-03  Yao Qi  <yao@codesourcery.com>
13063
13064         * symtab.h: Remove some out of date comments.
13065          (enum exception_event_kind): Move it ...
13066         * breakpoint.c: ... here.
13067
13068 2013-01-02  Iain Sandoe  <developer@sandoe-acoustics.co.uk>
13069
13070         PR gdb/14405
13071         * darwin-nat.c (darwin_read_dyld_info): Only build if
13072         TASK_DYLD_INFO_COUNT is defined.
13073         (darwin_xfer_partial): Call darwin_read_dyld_info only if
13074         TASK_DYLD_INFO_COUNT is defined.
13075
13076 2013-01-02  Tom Tromey  <tromey@redhat.com>
13077
13078         * symfile.h (struct ecoff_debug_hack): Remove.
13079         * objfiles.c: Don't include mdebugread.h.
13080
13081 2013-01-02  Tom Tromey  <tromey@redhat.com>
13082
13083         * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
13084         * configure.ac: Check for Mach-O support in BFD.  Update
13085         CONFIG_OBS.
13086         * configure: Rebuild.
13087
13088 2013-01-02  Tom Tromey  <tromey@redhat.com>
13089
13090         * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
13091         * configure.ac: Use GDB_AC_CHECK_BFD.
13092         * configure: Rebuild.
13093
13094 2013-01-01  Maxim Kuvyrkov  <maxim.kuvyrkov@gmail.com>
13095
13096         * MAINTAINERS: Update my email.
13097
13098 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
13099
13100         * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
13101
13102 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
13103
13104         * rs6000-nat.c (bss_data_overlap): New function.
13105         (vmap_symtab): Use it to adjust the .bss section's offset.
13106
13107 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
13108
13109         Update year range in copyright notice of all files.
13110
13111 2013-01-01, 13  Joel Brobecker  <brobecker@adacore.com>
13112
13113         * top.c (print_gdb_version): Update copyright year.
13114
13115 For older changes see ChangeLog-2012.
13116 \f
13117 Local Variables:
13118 mode: change-log
13119 left-margin: 8
13120 fill-column: 74
13121 version-control: never
13122 coding: utf-8
13123 End: