374b8c5fe3fe22ebe51be3fb46698e2879e56dd4
[external/binutils.git] / gdb / ChangeLog
1 2013-12-19  Tom Tromey  <tromey@redhat.com>
2
3         * ser-unix.c (hardwire_ops): New global.
4         (_initialize_ser_hardwire): Use it.
5         * ser-tcp.c (tcp_ops): New global.
6         (_initialize_ser_tcp): Use it.
7         * ser-pipe.c (pipe_ops): New global.
8         (_initialize_ser_pipe): Use it.
9         * ser-mingw.c (hardwire_ops, tty_ops, pipe_ops, tcp_ops): New
10         globals.
11         (_initialize_ser_windows): Use them.
12
13 2013-12-19  Tom Tromey  <tromey@redhat.com>
14
15         * serial.c (serial_ops_p): New typedef.
16         (serial_ops_list): Now a VEC.
17         (serial_interface_lookup): Return const.  Use VEC_iterate.
18         (serial_add_interface): Make parameter const.
19         (serial_open): Update.
20         (serial_fdopen_ops): Make 'ops' const.
21         (serial_pipe): Update.
22         * ser-tcp.c (_initialize_ser_tcp): Update.
23         * ser-pipe.c (_initialize_ser_pipe): Update.
24         * ser-unix.c (_initialize_ser_hardwire): Update.
25         * ser-mingw.c (_initialize_ser_windows): Update.
26         * ser-go32.c (dos_ops): Now const.  Update.
27         * serial.h (struct serial) <ops>: Now const.
28         (struct serial_ops) <next>: Remove.
29         (serial_add_interface): Make parameter const.
30
31 2013-12-18  Yufeng Zhang  <yufeng.zhang@arm.com>
32
33         * aarch64-linux-nat.c (aarch64_linux_set_debug_regs): Set
34         iov.iov_len with the real length in use.
35
36 2013-12-18  Yao Qi  <yao@codesourcery.com>
37
38         * target.h (target_xfer_partial_ftype): New typedef.
39         (target_xfer_partial): Update declaration.
40         * auxv.h (memory_xfer_auxv): Likewise.
41         * ia64-hpux-nat.c (super_xfer_partial): Likewise.
42         * ia64-linux-nat.c (super_xfer_partial): Likewise.
43         * linux-nat.c (super_xfer_partial): Likewise.
44         * procfs.c (procfs_xfer_partial): Likewise.
45         * record-full.c (record_full_beneath_to_xfer_partial):
46         (tmp_to_xfer_partial): Likewise.
47         * sparc-nat.c (inf_ptrace_xfer_partial): Likewise.
48         * target.c (default_xfer_partial): Likewise.
49         (current_xfer_partial): Likewise.
50         (target_xfer_partial): Change parameter type to 'gdb_byte *'.
51
52 2013-12-18  Yao Qi  <yao@codesourcery.com>
53
54         * linux-nat.c (linux_proc_xfer_partial): Call xsnprintf instead
55         of sprintf.
56         (linux_nat_detach, linux_child_pid_to_exec_file): Likewise.
57         (linux_proc_pending_signals): Likewise.
58
59 2013-12-18  Joel Brobecker  <brobecker@adacore.com>
60
61         * value.c (value_entirely_unavailable): ARI fix: Move trailing
62         binary operator to the next line.  No actual code change.
63
64 2013-12-17  Pedro Alves  <palves@redhat.com>
65
66         * frame.h (enum frame_id_stack_status): New enum.
67         (struct frame_id) <stack_addr>: Adjust comment.
68         <stack_addr_p>: Delete field, replaced with ...
69         <stack_status>: ... this new field.
70         (frame_id_build_unavailable_stack): Declare.
71         * frame.c (frame_addr_hash, fprint_field, outer_frame_id)
72         (frame_id_build_special): Adjust.
73         (frame_id_build_unavailable_stack): New function.
74         (frame_id_build, frame_id_build_wild): Adjust.
75         (frame_id_p, frame_id_eq, frame_id_inner): Adjust to take into
76         account frames with unavailable stack.
77
78         * amd64-tdep.c (amd64_frame_this_id)
79         (amd64_sigtramp_frame_this_id, amd64_epilogue_frame_this_id): Use
80         frame_id_build_unavailable_stack.
81         * dwarf2-frame.c (dwarf2_frame_this_id): Likewise.
82         * i386-tdep.c (i386_frame_this_id, i386_epilogue_frame_this_id)
83         (i386_sigtramp_frame_this_id):  Likewise.
84
85 2013-12-17  Andrew Burgess  <aburgess@broadcom.com>
86
87         * dwarf2loc.c (read_pieced_value): Mark bits, not bytes
88         unavailable, use correct bit length.
89         * value.c (struct value): Extend comment on unavailable to
90         indicate that it is bit based.
91         (value_bits_available): New function.
92         (value_bytes_available): Call value_bits_available.
93         (value_entirely_available): Check against the bit length, not byte
94         length.
95         (mark_value_bits_unavailable): New function.
96         (mark_value_bytes_unavailable): Move contents to
97         mark_value_bits_unavailable, call to same.
98         (memcmp_with_bit_offsets): New function.
99         (value_available_contents_bits_eq): New function, takes the
100         functionality from value_available_contents_eq but uses
101         memcmp_with_bit_offsets now, and is bit not byte based.
102         (value_available_contents_eq): Move implementation into
103         value_available_contents_bits_eq, call to same.
104         (value_contents_copy_raw): Work on bits, not bytes.
105         (unpack_value_bits_as_long_1): Check availability in bits, not
106         bytes.
107         * value.h (value_bits_available): Declare new function.
108         (mark_value_bits_unavailable): Declare new function.
109
110 2013-12-16  Pierre Muller  <muller@sourceware.org>
111
112         Fix compilation error for cygwin native build.
113         * windows-nat.c (windows_ensure_ntdll_loaded) [__USEWIDE]:
114         Call wcstombs.
115
116 2013-12-16  Pedro Alves  <palves@redhat.com>
117
118         PR 16329
119         * sol-thread.c (check_for_thread_db): If the target can't run or
120         isn't a core, return without pushing.
121
122 2013-12-15  Joel Brobecker  <brobecker@adacore.com>
123
124         Revert the following commit:
125         * solib.c (solib_map_sections): Remove code overwriting
126         SO->SO_NAME with the bfd's filename.
127
128         Make the following changes required after the revert above:
129         * solib-aix.c (solib_aix_bfd_open): Set the filename of the
130         returned bfd to a copy of the synthetic pathname.
131         * solib-darwin.c (darwin_bfd_open): Set the filename of the
132         returned bfd to a copy of PATHNAME.
133
134 2013-12-13  Joel Brobecker  <brobecker@adacore.com>
135
136         * ada-lang.c (ada_array_bound_from_type): Move the declaration
137         and assignment of variable "elt_type" inside the else block
138         where it is used.  Add two missing check_typedef calls.
139         Fix bug where we got TYPE's TYPE_TARGET_TYPE, where in fact
140         we really wanted to get ELT_TYPE's TYPE_TARGET_TYPE.
141
142 2013-12-13  Joel Brobecker  <brobecker@adacore.com>
143
144         * ada-lang.c (ada_array_bound_from_type): Remove unwanted space
145         between 'struct type *' and 'arr_type'.
146
147 2013-12-12  Siva Chandra Reddy  <sivachandra@google.com>
148
149         PR python/16113
150         * NEWS (Python Scripting): Add entry for the new feature and the
151         new attribute of gdb.Field objects.
152         * python/py-type.c (gdbpy_is_field): New function
153         (convert_field): Add 'parent_type' attribute to gdb.Field
154         objects.
155         * python/py-value.c (valpy_getitem): Allow subscript value to be
156         a gdb.Field object.
157         (value_has_field): New function
158         (get_field_flag): New function
159         * python/python-internal.h (gdbpy_is_field): Add declaration.
160
161 2013-12-12  Pedro Alves  <palves@redhat.com>
162
163         * breakpoint.c (insert_bp_location): Make 'hw_bp_err_string' local
164         const, and remove casts.
165
166 2013-12-12  Pedro Alves  <palves@redhat.com>
167
168         * cli/cli-cmds.c (source_script_from_stream) Use have_python
169         instead of catching UNSUPPORTED_ERROR.
170         * exceptions.h (UNSUPPORTED_ERROR): Delete.
171         * python/python.c (source_python_script) [!HAVE_PYTHON]: Internal
172         error if called.
173         * python/python.h (have_python): New static inline function.
174
175 2013-12-11  Doug Evans  <dje@google.com>
176
177         * dwarf2read.c (lookup_dwo_cutu): Include name of dwp file in
178         "can't find DWO" warning.
179
180 2013-12-11  Sergio Durigan Junior  <sergiodj@redhat.com>
181
182         * break-catch-throw.c (fetch_probe_arguments): Pass selected frame
183         to get_probe_argument_count and evaluate_probe_argument.
184         * probe.c (get_probe_argument_count): Adjust declaration to accept
185         frame.  Pass frame to probe_ops's get_probe_argument_count.
186         (evaluate_probe_argument): Likewise, for evaluate_probe_argument.
187         (probe_safe_evaluate_at_pc): Pass frame to
188         get_probe_argument_count and evaluate_probe_argument.
189         * probe.h (struct probe_ops) <get_probe_argument_count,
190         evaluate_probe_argument>: Adjust declarations to accept frame.
191         (get_probe_argument_count, evaluate_probe_argument): Likewise.
192         * solib-svr4.c (solib_event_probe_action): Get current frame.
193         Pass it to get_probe_argument_count.
194         (svr4_handle_solib_event): Get current frame.  Pass it to
195         get_probe_argument_count and evaluate_probe_argument.
196         * stap-probe.c (stap_parse_probe_arguments): Adjust declaration to
197         accept gdbarch.  Do not obtain it from the probe's objfile.
198         (stap_get_probe_argument_count): Adjust declaration to accept
199         frame.  Obtain gdbarch from the frame.  Call generic
200         can_evaluate_probe_arguments.  Pass gdbarch to
201         stap_parse_probe_arguments.
202         (stap_get_arg): Adjust declaration to accept gdbarch.  Pass it to
203         stap_parse_probe_arguments.
204         (stap_evaluate_probe_argument): Adjust declaration to accept
205         frame.  Obtain gdbarch from the frame.  Pass gdbarch to
206         stap_get_arg.
207         (stap_compile_to_ax): Pass agent_expr's gdbarch to stap_get_arg.
208         (compute_probe_arg): Obtain gdbarch from frame.  Pass frame to
209         get_probe_argument_count and evaluate_probe_argument.
210
211 2013-12-10  Doug Evans  <dje@google.com>
212
213         PR 16286
214         * c-lang.c (c_get_string): Ignore the declared size of the object
215         if a specific length is requested.
216
217 2013-12-10  Doug Evans  <dje@google.com>
218
219         * interps.h (interp_exec_p): Delete.
220         * interps.c (interp_exec_p): Delete.
221         (interp_exec): Update.  Assert interp->procs->exec_proc != NULL.
222         * mi/mi-interp.c (mi_cmd_interpreter_exec): Update.
223
224 2013-12-10  Yao Qi  <yao@codesourcery.com>
225
226         * amd64-tdep.c (amd64_analyze_stack_align): Call
227         target_read_code instead of target_read_memory.
228         (amd64_analyze_prologue): Call read_code_unsigned_integer
229         instead of read_memory_unsigned_integer.  Call read_code
230         instead of read_memory.
231         (amd64_skip_xmm_prologue): Likewise.
232
233 2013-12-10  Yao Qi  <yao@codesourcery.com>
234
235         * corefile.c (read_code): New function.
236         (read_code_integer): New function.
237         (read_code_unsigned_integer): New function.
238         * gdbcore.h (read_code): Declare.
239         (read_code_integer): Declare.
240         (read_code_unsigned_integer): Declare.
241         * i386-tdep.c (i386_follow_jump): Call target_read_code instead
242         of target_read_memory.  Call read_code_unsigned_integer instead
243         of read_memory_unsigned_integer.
244         (i386_analyze_struct_return): Likewise.
245         (i386_skip_probe): Likewise.
246         (i386_analyze_stack_align): Likewise.
247         (i386_match_pattern): Likewise.
248         (i386_skip_noop): Likewise.
249         (i386_analyze_frame_setup): Likewise.
250         (i386_analyze_register_saves): Likewise.
251         (i386_skip_prologue): Likewise.
252         (i386_skip_main_prologue): Likewise.
253         (i386_frame_cache_1): Likewise.
254
255 2013-12-10  Yao Qi  <yao@codesourcery.com>
256
257         * infrun.c: Include "target-dcache.h".
258         (prepare_for_detach): Call target_dcache_invalidate.
259         (wait_for_inferior): Likewise.
260         (fetch_inferior_event): Likewise.
261         (infrun_thread_stop_requested_callback): Likewise.  Set
262         overlay_cache_invalid to 1.
263
264 2013-12-10  Joel Brobecker  <brobecker@adacore.com>
265
266         * symtab.c (symbol_find_demangled_name): Add handling of
267         Ada symbols.
268
269 2013-12-10  Joel Brobecker  <brobecker@adacore.com>
270
271         * mi/mi-main.c (mi_cmd_list_features): add "exec-run-start-option".
272         * NEWS: Expand the entry documenting the new -exec-run --start
273         option to mention the corresponding new entry in the output of
274         "-list-features".
275
276 2013-12-10  Joel Brobecker  <brobecker@adacore.com>
277
278         * windows-nat.c (handle_load_dll): Add comments.
279         (windows_ensure_ntdll_loaded): New function.
280         (do_initial_windows_stuff): Use windows_ensure_ntdll_loaded.
281         Add FIXME comment.
282
283 2013-12-08  Joel Brobecker  <brobecker@adacore.com>
284
285         GDB 7.6.2 released.
286
287 2013-12-08  Yao Qi  <yao@codesourcery.com>
288
289         * stack.c (frame_info): Initialize variable caller_pc.
290
291 2013-12-06  Pedro Alves  <palves@redhat.com>
292
293         * frame.c (enum cached_copy_status): New enum.
294         (struct frame_info) <prev_pc.p>: Change type to enum
295         cached_copy_status.
296         (fprint_frame): Handle not saved and unavailable prev_pc values.
297         (frame_unwind_pc_if_available): Delete and merge contents into ...
298         (frame_unwind_pc): ... here.  Handle OPTIMIZED_OUT_ERROR.  Adjust
299         to use enum cached_copy_status.
300         (frame_unwind_caller_pc_if_available): Delete.
301         (create_new_frame): Adjust.
302         * frame.h (frame_unwind_caller_pc_if_available): Delete
303         declaration.
304         * stack.c (frame_info): Use frame_unwind_caller_pc instead of
305         frame_unwind_caller_pc_if_available, and handle
306         NOT_AVAILABLE_ERROR and OPTIMIZED_OUT_ERROR errors.
307         * valprint.c (val_print_optimized_out): Use val_print_not_saved.
308         (val_print_not_saved): New function.
309         * valprint.h (val_print_not_saved): Declare.
310
311 2013-12-06  Andrew Burgess  <aburgess@broadcom.com>
312             Pedro Alves  <palves@redhat.com>
313
314         * exceptions.h (errors): Add OPTIMIZED_OUT_ERROR.
315         * dwarf2loc.c (write_pieced_value): Throw OPTIMIZED_OUT_ERROR.
316         * frame.c (frame_unwind_register): Throw OPTIMIZED_OUT_ERROR.
317         * spu-tdep.c (spu_software_single_step): Throw
318         OPTIMIZED_OUT_ERROR.
319         * valops.c (value_assign): Throw OPTIMIZED_OUT_ERROR.
320
321 2013-12-06  Tom Tromey  <tromey@redhat.com>
322
323         * objfiles.c (free_objfile): Update comment.
324
325 2013-12-06  Tom Tromey  <tromey@redhat.com>
326
327         * objfiles.h (objfile_to_front): Remove.
328         * objfiles.c (objfile_to_front): Remove.
329
330 2013-12-06  Tom Tromey  <tromey@redhat.com>
331
332         * minsyms.c (get_symbol_leading_char): Remove unnecessary
333         declaration.
334
335 2013-12-06  Tom Tromey  <tromey@redhat.com>
336
337         * psympriv.h (struct partial_symtab) <user>: Move earlier.
338
339 2013-12-06  Tom Tromey  <tromey@redhat.com>
340
341         * cli/cli-cmds.c (edit_command): Use paddress, not hex_string.
342         (list_command): Likewise.
343
344 2013-12-06  Tom Tromey  <tromey@redhat.com>
345
346         * psymtab.c (allocate_psymtab): Put the filename in the filename
347         bcache.
348
349 2013-12-06  Tom Tromey  <tromey@redhat.com>
350
351         * buildsym.c (end_symtab_from_static_block): Use obstack_copy0.
352         * symtab.h (struct symtab) <dirname>: Now const.
353
354 2013-12-06  Tom Tromey  <tromey@redhat.com>
355
356         * symfile.c (allocate_symtab): Remove cast.
357         * symtab.h (struct symtab) <filename>: Now const.
358
359 2013-12-06  Tom Tromey  <tromey@redhat.com>
360
361         * break-catch-throw.c (fetch_probe_arguments): Use
362         get_probe_argument_count and evaluate_probe_argument.
363         * elfread.c (elf_get_probe_argument_count)
364         (elf_can_evaluate_probe_arguments, elf_evaluate_probe_argument)
365         (elf_compile_to_ax): Remove.
366         (elf_probe_fns): Update.
367         * probe.c (get_probe_argument_count, can_evaluate_probe_arguments)
368         (evaluate_probe_argument): Call method on probe, not via sym
369         functions.
370         * stap-probe.c (compute_probe_arg): Use get_probe_argument_count,
371         evaluate_probe_argument.
372         (compile_probe_arg): Use get_probe_argument_count.  Call method on
373         probe, not via sym functions.
374         * symfile-debug.c (debug_sym_get_probe_argument_count)
375         (debug_can_evaluate_probe_arguments)
376         (debug_sym_evaluate_probe_argument, debug_sym_compile_to_ax):
377         Remove.
378         (debug_sym_probe_fns): Remove.
379         * symfile.h (struct sym_probe_fns) <sym_get_probe_argument_count,
380         can_evaluate_probe_arguments, sym_evaluate_probe_argument,
381         sym_compile_to_ax>: Remove fields.
382
383 2013-12-06  Pierre Muller  <muller@sourceware.org>
384
385         Fix completion for pascal language.
386         * p-exp.y (exp : field_exp name): Do not call mark_struct_expression.
387         (exp : field_exp name COMPLETE): New rule.
388         (exp : SIZEOF): Set correct current_type.
389         (last_was_structop): Remove static variable.
390         (yylex): Remove saw_structop local variable.
391         Adapt code to removal of variables above.
392
393 2013-12-06  Joel Brobecker  <brobecker@adacore.com>
394
395         * frame.c (get_prev_frame_1): Delete variable "this_id".
396         Replace its use by a call to get_frame_id.
397
398 2013-12-05  Anthony Green  <green@moxielogic.com>
399
400         * moxie-tdep.c (moxie_software_single_step): New function.
401         (INST2OFFSET): New helper macro.
402         (moxie_gdbarch_init): Call set_gdbarch_software_single_step.
403         (moxie_process_readu): Move this up in the file.
404
405 2013-12-05  Doug Evans  <xdje42@gmail.com>
406
407         * auto-load.c (load_auto_scripts_for_objfile): Add some comments.
408
409 2013-12-05  Joel Brobecker  <brobecker@adacore.com>
410             Tristan Gingold  <gingold@adacore.com>
411
412         * amd64-windows-tdep.c (amd64_windows_frame_decode_insns):
413         Accept version 2.  Ignore operations using opcode 6.
414
415 2013-12-05  Joel Brobecker  <brobecker@adacore.com>
416
417         * ada-lex.l (find_dot_all): Fix coding style violations.
418
419 2013-12-03  Walfred Tedeschi  <walfred.tedeschi@intel.com>
420
421         * NEWS:  Add section for Intel(R) Architecture Instructions
422         Extesions mentioning MPX.
423
424 2013-12-03  Joel Brobecker  <brobecker@adacore.com>
425
426         * ada-lex.l (find_dot_all): Use strncasecmp instead of strncmp.
427
428 2013-12-03  Joel Brobecker  <brobecker@adacore.com>
429
430         * ada-lang.c (create_excep_cond_exprs): Force EXP to NULL
431         when parse_exp_1 threw an error.  Add comment.
432
433 2013-12-03  Joel Brobecker  <brobecker@adacore.com>
434
435         * NEWS: Mention "-list-features" in the entry documenting
436         the support for the "--language" option.
437
438 2013-12-03  Tom Tromey  <tromey@redhat.com>
439             Jan Kratochvil  <jan.kratochvil@redhat.com>
440             Doug Evans  <dje@google.com>
441             Samuel Bronson  <naesten@gmail.com>
442
443         Bring back gdb-add-index as a contrib script.
444         * contrib/gdb-add-index.sh: New file.
445         * NEWS: Note the addition.
446
447 2013-12-03  Samuel Bronson  <naesten@gmail.com>
448
449         * MAINTAINERS (Write After Approval): Add myself to the list.
450
451 2013-12-03  Joel Brobecker  <brobecker@adacore.com>
452
453         * mi/mi-main.c (mi_cmd_list_features): Remove "ada-exceptions".
454
455 2013-12-03  Joel Brobecker  <brobecker@adacore.com>
456
457         * mi/mi-main.c: Remove trailing spaces throughout.
458
459 2013-12-03  Pedro Alves  <palves@redhat.com>
460             Joel Brobecker  <brobecker@adacore.com>
461
462         * exceptions.h (enum_errors) <UNDEFINED_COMMAND_ERROR>: New enum.
463         * mi/mi-parse.c (mi_parse): Throw UNDEFINED_COMMAND_ERROR instead
464         of a regular error when the GDB/MI command does not exist.
465         * mi/mi-main.c (mi_cmd_list_features): Add
466         "undefined-command-error-code".
467         (mi_print_exception): Print an "undefined-command"
468         error code if EXCEPTION.ERROR is UNDEFINED_COMMAND_ERROR.
469         * NEWS: Add entry documenting the new "code" variable in
470         "^error" result records.
471
472 2013-12-03  Joel Brobecker  <brobecker@adacore.com>
473
474         * mi/mi-cmds.h (mi_cmd_info_gdb_mi_command): Declare.
475         * mi/mi-cmd-info.c (mi_cmd_info_gdb_mi_command): New function.
476         * mi/mi-cmds.c (mi_cmds): Add -info-gdb-mi-command command.
477         * mi/mi-main.c (mi_cmd_list_features): Add "info-gdb-mi-command"
478         field to output of "-list-features".
479
480         * NEWS: Add entry for new -info-gdb-mi-command.
481
482 2013-12-02  Doug Evans  <dje@google.com>
483             Jan Kratochvil  <jan.kratochvil@redhat.com>
484
485         * objfiles.c (allocate_objfile): Save original_name as an absolute
486         path.
487         * objfiles.h (struct objfile): Expand comment on original_name.
488         * source.c (openp): Call gdb_abspath.
489         * utils.c (gdb_abspath): New function.
490         * utils.h (gdb_abspath): Declare.
491
492 2013-12-02  Pedro Alves  <palves@redhat.com>
493
494         * dcache.c (dcache_read_line): Use target_read_raw_memory.
495         * target.c (target_read_raw_memory): New function.
496         (target_read_stack, target_write_memory, target_write_raw_memory):
497         Update comment.
498         (target_read_code): Add comment.
499         * target.h (target_read_raw_memory): Declare.
500
501 2013-12-02  Pedro Alves  <palves@redhat.com>
502
503         * ctf.c (ctf_start): Use S_IRGRP, S_IXGRP, S_IXOTH
504         unconditionally.
505
506 2013-12-02  Pedro Alves  <pedro@codesourcery.com>
507             Maciej W. Rozycki  <macro@codesourcery.com>
508
509         * remote.c (putpkt_for_catch_errors): Remove function.
510         (remote_kill): Handle TARGET_CLOSE_ERROR from the kill packet
511         gracefully.
512
513 2013-12-02  Pedro Alves  <palves@redhat.com>
514
515         PR remote/15974
516         * remote-notif.c (handle_notification): Return early if no
517         notification is found.
518
519 2013-12-02  Joel Brobecker  <brobecker@adacore.com>
520
521         * common/filestuff.c (fdwalk): Add "defined(RLIMIT_NOFILE)"
522         preprocessor check.
523
524 2013-12-02  Joel Brobecker  <brobecker@adacore.com>
525
526         * Makefile.in (HFILES_NO_SRCDIR): Remove "common/gdb_dirent.h".
527
528 2013-12-02  Joel Brobecker  <brobecker@adacore.com>
529
530         * Makefile.in (HFILES_NO_SRCDIR): Remove "common/gdb_stat.h".
531         * ctf.c (ctf_start): Remove obsolete comment.
532
533 2013-12-02  Joel Brobecker  <brobecker@adacore.com>
534
535         * Makefile.in (HFILES_NO_SRCDIR): Remove "common/gdb_string.h".
536
537 2013-11-30  Doug Evans  <xdje42@gmail.com>
538
539         * auto-load.h (script_language): New members name, auto_load_enabled.
540         Add missing comments on struct members.
541         (auto_load_objfile_script): Delete.
542         * auto-load.c: #include "cli/cli-cmds.h".
543         (auto_load_gdb_scripts_enabled): New function.
544         (script_language_gdb): Update, add new members.
545         (source_gdb_script_for_objfile): Simplify, auto-load safe-checking
546         and call to maybe_add_script moved to caller.
547         (auto_load_objfile_script_1): Auto-load safe-checking and
548         call to maybe_add_script moved here.
549         (auto_load_objfile_script): Make static.  Early exit if support for
550         scripting language hasn't been compiled in, or auto-loading has been
551         disabled.
552         (source_section_scripts): Argument "source_name" renamed to
553         "section_name".  All uses updated.  Replace uses of AUTO_SECTION_NAME
554         with section_name.  Skip loading script if support for scripting
555         language hasn't been compiled in, or auto-loading has been disabled.
556         Call language->source_script_for_objfile instead of calling
557         source_python_script_for_objfile directly.
558         (load_auto_scripts_for_objfile): Update.
559         * python/py-auto-load.c: Delete #include "cli/cli-cmds.h".
560         (gdbpy_load_auto_script_for_objfile): Delete.
561         (auto_load_python_scripts_enabled): New function.
562         (script_language_python): Update, add new members.
563         (gdbpy_script_language_defn): New function.
564         * python/python.h (gdbpy_load_auto_scripts_for_objfile): Delete.
565         (gdbpy_script_language_defn): Declare.
566
567         * auto-load.c (AUTO_SECTION_NAME): Moved here and renamed from
568         py-auto-load.c, GDBPY_AUTO_SECTION_NAME.
569         (source_section_scripts): Moved here from py-auto-load.c.
570         (auto_load_section_scripts): Ditto.
571         * python/py-auto-load.c (GDBPY_AUTO_SECTION_NAME): Moved to
572         auto-load.c, renamed AUTO_SECTION_NAME.
573         (source_section_scripts, auto_load_section_scripts): Moved to
574         auto-load.c.
575
576 2013-11-30  Yao Qi  <yao@codesourcery.com>
577
578         * remote.c (getpkt_or_notif_sane_1): Fix typo "checksm".
579
580 2013-11-29  Sergio Durigan Junior  <sergiodj@redhat.com>
581
582         * gdbarch.sh: Remove include of "gdb_string.h", replace by
583         <string.h>.
584
585 2013-11-29  Doug Evans  <xdje42@gmail.com>
586
587         * python/py-auto-load.c (source_section_scripts): Move comment to
588         more relevant location.
589
590         Whitespace cleanup.
591         * python/py-breakpoint.c: Remove trailing whitespace.
592         * python/py-cmd.c: Ditto.
593         * python/py-evts.c: Ditto.
594         * python/py-finishbreakpoint.c: Ditto.
595         * python/py-frame.c: Ditto.
596         * python/py-function.c: Ditto.
597         * python/py-inferior.c: Ditto.
598         * python/py-infthread.c: Ditto.
599         * python/py-param.c: Ditto.
600         * python/py-prettyprint.c: Ditto.
601         * python/py-symbol.c: Ditto.
602         * python/py-type.c: Ditto.
603         * python/py-utils.c: Ditto.
604         * python/py-value.c: Ditto.
605         * python/python-internal.h: Ditto.
606         * python/python.c: Ditto.
607
608 2013-11-29  Pedro Alves  <palves@redhat.com>
609
610         * unwind_stop_reasons.def (UNWIND_NULL_ID): Update comment.
611
612 2013-11-29  Pedro Alves  <palves@redhat.com>
613
614         * breakpoint.c (build_target_condition_list): Release previous
615         conditions.
616         (build_target_command_list): Release previous commands.
617         (bp_location_dtor): Release target conditions and commands.
618         * remote.c (remote_add_target_side_condition): Don't release
619         conditions.
620         (remote_add_target_side_commands): Don't release commands.
621
622 2013-11-29  Yao Qi  <yao@codesourcery.com>
623             Pedro Alves  <palves@redhat.com>
624
625         * dcache.c (dcache_read_line): Use current_target.beneath
626         instead of &current_target.
627         * target.c (memory_xfer_partial_1): Factor code out to ...
628         (raw_memory_xfer_partial): ... it.  New function.
629         (target_xfer_partial): Call raw_memory_xfer_partial if OBJECT
630         is TARGET_OBJECT_RAW_MEMORY.
631
632 2013-11-28  Doug Evans  <xdje42@gmail.com>
633
634         * breakpoint.h (gdbpy_breakpoint_object): Renamed from
635         breakpoint_object.  All uses updated.
636         * python/python-internal.h (gdbpy_breakpoint_object): Renamed from
637         breakpoint_object.  All uses updated.
638         * python.c (*): All uses of breakpoint_object updated.
639         * python.h (*): All uses of breakpoint_object updated.
640         * python/py-breakpoint.c (*): All uses of breakpoint_object updated.
641         * python/py-finishbreakpoint.c (*): Ditto.
642
643 2013-11-28  Doug Evans  <xdje42@gmail.com>
644
645         * configure.ac: Add comments delineating libpython and libmcheck.
646         * configure: Regenerate.
647
648 2013-11-28  Andrew Burgess  <aburgess@broadcom.com>
649             Pedro Alves  <palves@redhat.com>
650
651         * valprint.c (value_check_printable): If the value is entirely
652         unavailable, print a single "<unavailable>" instead of printing
653         all subfields.
654
655 2013-11-28  Pedro Alves  <palves@redhat.com>
656
657         * frame.c (get_prev_frame_1) <stop_reason != UNWIND_NO_REASON>:
658         Add "set debug frame" output.
659         (frame_stop_reason_symbol_string): New function.
660
661 2013-11-28  Pedro Alves  <palves@redhat.com>
662
663         * frame-unwind.c (default_frame_unwind_stop_reason): Return
664         UNWIND_OUTERMOST if the frame's ID is outer_frame_id.
665         * frame.c (get_prev_frame_1): Remove outer_frame_id check.
666
667 2013-11-28  Pedro Alves  <palves@redhat.com>
668
669         * frame.c (get_prev_frame_1): If the frame id is outer_frame_id,
670         set the unwind stop reason to UNWIND_OUTERMOST, not
671         UNWIND_NULL_ID.  Remove explicit check for sentinel frame.
672
673 2013-11-28  Pedro Alves  <palves@redhat.com>
674
675         * frame.c (frame_unwind_register): Say the register was "not
676         saved" instead of "optimized out".
677
678 2013-11-27  Steffen Sledz  <sledz@dresearch-fe.de>
679
680         PR 16152
681         * configure: Rebuild.
682         * configure.ac: Tighten cygwin detection check.
683
684 2013-11-27  Pedro Alves  <palves@redhat.com>
685
686         * frame-unwind.c (frame_unwind_got_optimized): Use the type of the
687         register in the previous frame's arch.
688
689 2013-11-27  Pedro Alves  <palves@redhat.com>
690
691         * frame-unwind.c (frame_unwind_got_optimized): Return
692         an lval_register value instead of a not_lval value.
693
694 2013-11-27  Andrew Burgess  <aburgess@broadcom.com>
695
696         * frame.c: Include "valprint.h".
697         (frame_unwind_register_value): Use value_optimized_out.
698         * value.c (value_fetch_lazy): Likewise.
699
700 2013-11-26  Andrew Burgess  <aburgess@broadcom.com>
701
702         * value.c (allocate_optimized_out_value): Mark value as non-lazy.
703
704 2013-11-26  Tom Tromey  <tromey@redhat.com>
705
706         * dwarf2-frame.c (dwarf2_frame_cache): Revert patch from
707         2013-11-22.
708
709 2013-11-26  Walfred Tedeschi  <walfred.tedeschi@intel.com>
710
711         * i386-xstate.h (I386_XSTATE_MPX): New Macro.
712         (I386_XSTATE_MPX_MASK): Makes use of I386_XSTATE_MPX.
713         (HAS_MPX): New macro.
714         (HAS_AVX): New macro.
715         (I386_XSTATE_SIZE): Uses HAS_MPX and HAS_AVX.
716
717 2013-11-25  Keith Seitz  <keiths@redhat.com>
718
719         PR c++/14819
720         * c-exp.y (classify_inner_name): If no matching symbol was
721         found, try looking up the token as a base class.
722         Likewise if a constructor was found.
723         * cp-namespace.c (find_type_baseclass_by_name): New function.
724         * cp-support.h (find_type_baseclass_by_name): Declare.
725         * valops.c (value_struct_elt_for_reference): If we get
726         a non-static field, try to get a value based on the
727         current instance, if any.
728
729 2013-11-24  Yao Qi  <yao@codesourcery.com>
730
731         * disasm.c (dis_asm_read_memory): Call target_read_code
732         instead of target_read_memory.
733
734 2013-11-24  Yao Qi  <yao@codesourcery.com>
735
736         * NEWS: Add note on new "set code-cache" option.
737         * target-dcache.c (code_cache_enabled_1): New variable.
738         (code_cache_enabled): New variable.
739         (show_code_cache, set_code_cache): New function.
740         (code_cache_enabled_p): New function.
741         (_initialize_target_dcache): Register command.
742         * target-dcache.h (code_cache_enabled_p): Declare.
743         * target.c (memory_xfer_partial_1):Handle
744         TARGET_OBJECT_CODE_MEMORY and code_cache_enabled.
745         (target_read_code): New function.
746         * target.h (enum target_object) <TARGET_OBJECT_CODE_MEMORY>:
747         New.
748         (target_read_code): Declare.
749
750 2013-11-24  Yao Qi  <yao@codesourcery.com>
751
752         * target-dcache.c (stack_cache_enabled_p_1): Rename to ...
753         (stack_cache_enabled_1): ... this.  New variable.
754         (stack_cache_enabled_p): Rename to ...
755         (stack_cache_enabled): ... this.  New variable.
756         (set_stack_cache_enabled_p): Rename to ...
757         (set_stack_cache): ... this.  Update caller.
758         (show_stack_cache_enabled_p): Rename to ...
759         (show_stack_cache): ... this.  Update caller.
760         (stack_cache_enabled): Rename to ...
761         (stack_cache_enabled_p): ... this.  Update caller.
762         (_initialize_target_dcache): Replace "data cache" with
763         "target memory cache".
764         * target-dcache.h (stack_cache_enabled): Remove declaration.
765         (stack_cache_enabled_p): Add declaration.
766
767 2013-11-23  Doug Evans  <xdje42@gmail.com>
768
769         * python/py-frame.c (gdbpy_initialize_frames): Remove FIRST_ERROR,
770         superfluous.
771
772 2013-11-23  Doug Evans  <xdje42@gmail.com>
773
774         * python/py-frame.c (frapy_block): Fix error message text.
775
776 2013-11-23  Doug Evans  <xdje42@gmail.com>
777
778         * cli/cli-script.c (multi_line_command_p): New function.
779         (recurse_read_control_structure, read_command_lines_1): Call it.
780         (execute_control_command): Consistently have a blank line between
781         each case.
782
783 2013-11-22  Sterling Augustine  <saugustine@google.com>
784
785         PR gdb/16196:
786         * valprint.c (read_string): Set new variable fetchlen based on
787         fetchlimit and size.  Use it in call to partial_memory_read.
788         Update comment.
789
790 2013-11-22  Tom Tromey  <tromey@redhat.com>
791
792         PR backtrace/16155:
793         * dwarf2-frame.c (dwarf2_frame_cache): Set undefined_retaddr if
794         the return address column is unspecified.
795
796 2013-11-22  Tom Tromey  <tromey@redhat.com>
797             Pedro Alves  <palves@redhat.com>
798
799         PR backtrace/16155
800         * value.c (value_fetch_lazy): Internal error if
801         get_frame_register_value returns the same register.
802
803 2013-11-22  Pedro Alves  <palves@redhat.com>
804             Tom Tromey  <tromey@redhat.com>
805
806         * frame.c (frame_stash_add): Now returns whether a frame with the
807         same ID was already known.
808         (compute_frame_id): New function, factored out from get_frame_id.
809         (get_frame_id): No longer lazilly compute the frame id here.
810         (get_prev_frame_if_no_cycle): New function.  Detects wider stack
811         cycles.
812         (get_prev_frame_1): Use it instead of get_prev_frame_raw directly,
813         and checking for stack cycles here.
814
815 2013-11-22  Pedro Alves  <palves@redhat.com>
816
817         PR 16155
818         * frame.c (get_prev_frame_1): Do the UNWIND_SAME_ID check between
819         this frame and the new previous frame, not between this frame and
820         the next frame.
821
822 2013-11-22  Pedro Alves  <palves@redhat.com>
823
824         PR 16155
825         * dwarf2-frame.c (struct dwarf2_frame_cache)
826         <checked_tailcall_bottom, entry_cfa_sp_offset,
827         entry_cfa_sp_offset_p>: New fields.
828         (dwarf2_frame_cache): Adjust to use the new cache fields instead
829         of locals.  Don't call dwarf2_tailcall_sniffer_first here.
830         (dwarf2_frame_prev_register): Call it here, but only once.
831
832 2013-11-21  Doug Evans  <xdje42@gmail.com>
833
834         * gdbtypes.c: #include bcache.h, dwarf2loc.h.
835         (type_equality_entry): Move here from python/py-type.c.
836         (type_equality_entry_d): Ditto.
837         (compare_maybe_null_strings, check_types_equal): Ditto.
838         (check_types_worklist, types_deeply_equal): Ditto.
839         * gdbtypes.h (types_deeply_equal): Declare.
840         * python/py-type.c: Remove inclusion of bcache.h, dwarf2loc.h.
841         (typy_richcompare): Update.
842
843 2013-11-20  Joel Brobecker  <brobecker@adacore.com>
844
845         * python/py-value.c (is_intlike): Delete.
846         (valpy_int): Replace use of CHECK_TYPEDEF and is_intlike
847         by use of is_integral_type.
848         (valpy_long): Replace use of CHECK_TYPEDEF and is_intlike
849         by use of is_integral_type and check for TYPE_CODE_PTR.
850
851 2013-11-20  Tom Tromey  <tromey@redhat.com>
852
853         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Remove
854         strerror module.
855         * gnulib/aclocal.m4: Update.
856         * gnulib/config.in: Update.
857         * gnulib/configure: Update.
858         * gnulib/import/Makefile.am: Update.
859         * gnulib/import/Makefile.in: Update.
860         * gnulib/import/errno.in.h: Remove.
861         * gnulib/import/intprops.h: Remove.
862         * gnulib/import/m4/errno_h.m4: Remove.
863         * gnulib/import/m4/gnulib-cache.m4: Update.
864         * gnulib/import/m4/gnulib-comp.m4: Update.
865         * gnulib/import/m4/strerror.m4: Remove.
866         * gnulib/import/m4/sys_socket_h.m4: Remove.
867         * gnulib/import/strerror-override.c: Remove.
868         * gnulib/import/strerror-override.h: Remove.
869         * gnulib/import/strerror.c: Remove.
870         * gnulib/update-gnulib.sh: Update.
871
872 2013-11-20  Yao Qi  <yao@codesourcery.com>
873
874         * target-dcache.c (target_dcache_get_or_init): Call
875         set_address_space_data if 'dcache' is NULL.
876
877 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
878
879         * common/i386-gcc-cpuid.h (bit_MPX): Synchronize with gcc file.
880
881 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
882
883         * python/lib/gdb/command/bound_register.py: New file.
884         * data-directory/Makefile.in: Copy bond_register.py to the right path
885         to be initialized at gdb startup.
886
887 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
888
889         * amd64-linux-nat.c (amd64_linux_gregset32_reg_offset):
890         Add MPX registers.
891         (amd64_linux_read_description): Add initialization for MPX and
892         AVX independently.
893         * amd64-linux-tdep.c: Includes features/i386/amd64-mpx-linux.c.
894         (amd64_linux_gregset_reg_offset): Add MPX registers.
895         (amd64_linux_core_read_description): Add initialization for MPX
896         registers.
897         (_initialize_amd64_linux_tdep): Initialize MPX targets.
898         * amd64-linux-tdep.h (AMD64_LINUX_RAX_REGNUM): Set it to the last
899         register on the list.
900         (tdesc_amd64_mpx_linux) Add new target  for MPX.
901         * amd64-tdep.c: Includes features/i386/amd64-mpx.c.
902         (amd64_mpx_names): MPX register names.
903         (amd64_init_abi): Add MPX register while initializing the ABI.
904         (_initialize_amd64_tdep): Initialize MPX targets.
905         * amd64-tdep.h (amd64_regnum): Add MPX registers.
906         (AMD64_NUM_REGS): Set number of registers taking MPX into account.
907
908 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
909
910         * i386-linux-nat.c (GETXSTATEREGS_SUPPLIES): Add MPX
911         registers on the range of registers to be read from
912         xsave buffer.
913         (i386_linux_read_description): Add case for MPX.
914         * i386-linux-tdep.c: Include features/i386/i386-mpx-linux.c.
915         (i386_linux_gregset_reg_offset): Add MPX registers.
916         (i386_linux_core_read_description): Initialize also MPX.
917         (_initialize_i386_linux_tdep): Add mpx initialization.
918         * i386-tdep.h (gdbarch_tdep): Add fields bnd0r_regnum, bnd0_regnum,
919         mpx_register_names.
920         (i386_regnum): Add MPX registers.
921         (I386_MPX_NUM_REGS): New macro.
922         (i386_bnd_regnum_p): New function.
923         * i386-linux-tdep.h (I386_LINUX_NUM_REGS): Set
924         number of registers to be the number of BNDSTATUS.
925         (tdesc_i386_mpx_linux): Add description for MPX Linux registers.
926         * i386-tdep.c: Include features/i386/i386-mpx.c.
927         (i386_mpx_names): Add MPX register names array.
928         (i386_bnd_names): Add bnd pseudo register names array.
929         (i386_bndr_regnum_p): Lookup register numbers for bnd raw
930         registers.
931         (i386_bndr_regnum_p): Lookup register numbers for bnd raw registers.
932         (386_mpx_ctrl_regnum_p): Lookup register numbers for MPX control
933         registers.
934         (i386_bnd_type): New function.
935         (i386_pseudo_register_type): Use i386_bnd_type for bnd pseudo
936         register types.
937         (i386_pseudo_register_read_into_value): Add bnd case.
938         (i386_pseudo_register_write): Add bnd pseudo registers.
939         (i386_register_reggroup_p): Add MPX register to the group all.
940         (i386_validate_tdesc_p): Add MPX to the target  description
941         validation.
942         (i386_pseudo_register_name): Add bnd pseudo registers.
943         (i386_gdbarch_init): Add MPX for architecture initialization.
944         (_initia_initialize_i386_tdep): Add mpx initialization.
945         * i387-tdep.c (xsave_mpx_offset): New vector for MPX offsets on
946         XSAVE buffer.
947         (XSAVE_MPX_ADDR): New macro.
948         (i387_supply_xsave): Add MPX case.
949         (i387_collect_xsave): Add MPX case.
950         * i387-tdep.h (I387_BND0R_REGNUM): New macro.
951         (I387_BNDCFGU_REGNUM): New macro.
952         (I387_NUM_MPX_REGS): New macro.
953         (I387_NUM_BND_REGS): New macro.
954         (I387_NUM_MPX_CTRL_REGS): New macro.
955         (I387_MPXEND_REGNUM): New macro.
956         * common/i386-xstate.h (I386_XSTATE_BNDREGS): New macro.
957         (I386_XSTATE_BNDCFG): Likewise.
958         (I386_XSTATE_MPX_MASK): Likewise.
959         (I386_XSTATE_ALL_MASK): New macro represents flags for all states.
960         (I386_XSTATE_BNDREGS_SIZE): New macro.
961         (I386_XSTATE_BNDCFG_SIZE): Likewise.
962         (I386_XSTATE_SIZE): Adapt for MPX.
963         (I386_XSTATE_MAX_SIZE): Likewise.
964
965 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
966
967         * features/i386/Makefile: Adapts for using MPX registers.
968         * features/i386/32bit-mpx.xml: New file.
969         * features/i386/64bit-mpx.xml: Likewise.
970         * features/i386/amd64-mpx-linux.c: Likewise.
971         * features/i386/amd64-mpx-linux.xml: Likewise.
972         * features/i386/amd64-mpx.c: Likewise.
973         * features/i386/amd64-mpx.xml: Likewise.
974         * features/i386/i386-mpx-linux.c: Likewise.
975         * features/i386/i386-mpx-linux.xml: Likewise.
976         * features/i386/i386-mpx.c: Likewise.
977         * features/i386/i386-mpx.xml: Likewise.
978         * regformats/i386/amd64-mpx-linux.dat: New file.
979         * regformats/i386/amd64-mpx.dat: Likewise.
980         * regformats/i386/i386-mpx-linux.dat: Likewise.
981         * regformats/i386/i386-mpx.dat: Likewise.
982
983 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
984
985         * target-descriptions.c (maint_print_maint_print_c_tdesc_cmd):
986         Modified logic of creating a bitfield to be in sync with
987         tdesc_gdb_type.
988
989 2013-11-20  Will Newton  <will.newton@linaro.org>
990
991         * arm-tdep.c (arm_get_next_pc): Remove "Infinite loop detected"
992         error message.
993
994 2013-11-20  Yao Qi  <yao@codesourcery.com>
995
996         * progspace.h (struct address_space_data): Declare.
997         * target-dcache.c: Include "progspace.h".
998         (target_dache): Remove.
999         (target_dcache_aspace_key): New.
1000         (target_dcache_cleanup): New function.
1001         (target_dcache_init_p): Get data through
1002         target_dcache_aspace_key.
1003         (target_dcache_invalidate): Likewise.
1004         (target_dcache_get): Likewise.
1005         (target_dcache_get_or_init): Likewise.
1006         (_initialize_target_dcache): Initialize
1007         target_dcache_aspace_key.
1008
1009 2013-11-20  Yao Qi  <yao@codesourcery.com>
1010
1011         * progspace.c (struct address_space): Update comments.
1012         <REGISTRY_FIELDS>: New fields.
1013         DEFINE_REGISTRY for address_space.
1014         (new_address_space): Call address_space_alloc_data.
1015         (free_address_space): Call address_space_free_data.
1016         * progspace.h: Use DECLARE_REGISTRY.
1017
1018 2013-11-20  Yao Qi  <yao@codesourcery.com>
1019
1020         * Makefile.in (SFILES):Add target-dcache.c.
1021         (HFILES_NO_SRCDIR): Add target-dcache.h.
1022         (COMMON_OBS): Add target-dcache.o.
1023         * dcache.c: Remove inclusion to "target.h".  Include
1024         "target-dcache.h".
1025         * memattr.c: Include "target-dcache.h".
1026         * top.c: Likewise.
1027         * tracepoint.c: Likewise.
1028         * target.c: (stack_cache_enabled_p_1): Move to
1029         target-dcache.c.
1030         (stack_cache_enabled_p): Likewise.
1031         (set_stack_cache_enabled_p): Likewise.
1032         (show_stack_cache_enabled_p): Likewise.
1033         (target_dcache, target_dcache_init_p): Likewise.
1034         (target_dcache_invalidate): Likewise.
1035         (target_dcache_get, target_dcache_get_or_init): Likewise.
1036         (memory_xfer_partial_1): Call function stack_cache_enabled.
1037         (initialize_target): Move code to target-dcache.c.
1038         * target.h (target_dcache_invalidate): Move to
1039         target-dcache.h.
1040         (target_dcache_get): Likewise.
1041         * target-dcache.c: New.
1042         * target-dcache.h: New.
1043
1044 2013-11-20  Yao Qi  <yao@codesourcery.com>
1045
1046         * target.c (memory_xfer_partial_1): Update 'target_dcache' if
1047         it is initialized.
1048
1049 2013-11-20  Yao Qi  <yao@codesourcery.com>
1050
1051         * dcache.c (last_cache): Remove.
1052         (dcache_free, dcache_init): Update.
1053         (dcache_update):
1054         (dcache_print_line): Add parameter 'dcache'.  Replace
1055         'target_dcache' with 'dcache'.
1056         (dcache_info): Move code to dcache_info_1. Call
1057         'dcache_info_1'.
1058         (dcache_info_1): New function.
1059         (set_dcache_size): Call target_dcache_invalidate.
1060         (set_dcache_line_size): Call target_dcache_invalidate.
1061         * target.c (target_dcache_init_p): New function.
1062         (target_dcache_invalidate): Check target_dcache_init_p first.
1063         (target_dcache_get, target_dcache_get_or_init): New function.
1064         (memory_xfer_partial_1): Adjust.
1065         (initialize_target): Don't initialize 'target_dcache'.
1066         * target.h (struct dcache_struct): Declare.
1067         (target_dcache_get): Declare.
1068
1069 2013-11-19  Yao Qi  <yao@codesourcery.com>
1070
1071         * varobj.c (varobj_get_type): Fix typo.
1072
1073 2013-11-19  Joel Brobecker  <brobecker@adacore.com>
1074
1075         * python/py-value.c (is_intlike): Add TYPE_CODE_RANGE handling.
1076
1077 2013-11-19  Joel Brobecker  <brobecker@adacore.com>
1078
1079         * contrib/ari/gdb_ari.sh: Remove checks for "dirent.h" and
1080         "stat.h".
1081
1082 2013-11-18  Tom Tromey  <tromey@redhat.com>
1083
1084         * common/gdb_stat.h: Remove.
1085         * ada-lang.c: Use sys/stat.h, not gdb_stat.h.
1086         * common/filestuff.c: Use sys/stat.h, not gdb_stat.h.
1087         * common/linux-osdata.c: Use sys/stat.h, not gdb_stat.h.
1088         * corefile.c: Use sys/stat.h, not gdb_stat.h.
1089         * ctf.c: Use sys/stat.h, not gdb_stat.h.
1090         * darwin-nat.c: Use sys/stat.h, not gdb_stat.h.
1091         * dbxread.c: Use sys/stat.h, not gdb_stat.h.
1092         * dwarf2read.c: Use sys/stat.h, not gdb_stat.h.
1093         * exec.c: Use sys/stat.h, not gdb_stat.h.
1094         * gdbserver/linux-low.c: Use sys/stat.h, not gdb_stat.h.
1095         * gdbserver/remote-utils.c: Use sys/stat.h, not gdb_stat.h.
1096         * inf-child.c: Use sys/stat.h, not gdb_stat.h.
1097         * jit.c: Use sys/stat.h, not gdb_stat.h.
1098         * linux-nat.c: Use sys/stat.h, not gdb_stat.h.
1099         * m68klinux-nat.c: Use sys/stat.h, not gdb_stat.h.
1100         * main.c: Use sys/stat.h, not gdb_stat.h.
1101         * mdebugread.c: Use sys/stat.h, not gdb_stat.h.
1102         * mi/mi-cmd-env.c: Use sys/stat.h, not gdb_stat.h.
1103         * nto-tdep.c: Use sys/stat.h, not gdb_stat.h.
1104         * objfiles.c: Use sys/stat.h, not gdb_stat.h.
1105         * procfs.c: Use sys/stat.h, not gdb_stat.h.
1106         * remote-fileio.c: Use sys/stat.h, not gdb_stat.h.
1107         * remote-mips.c: Use sys/stat.h, not gdb_stat.h.
1108         * remote.c: Use sys/stat.h, not gdb_stat.h.
1109         * rs6000-nat.c: Use sys/stat.h, not gdb_stat.h.
1110         * sol-thread.c: Use sys/stat.h, not gdb_stat.h.
1111         * solib-spu.c: Use sys/stat.h, not gdb_stat.h.
1112         * source.c: Use sys/stat.h, not gdb_stat.h.
1113         * symfile.c: Use sys/stat.h, not gdb_stat.h.
1114         * symmisc.c: Use sys/stat.h, not gdb_stat.h.
1115         * symtab.c: Use sys/stat.h, not gdb_stat.h.
1116         * top.c: Use sys/stat.h, not gdb_stat.h.
1117         * xcoffread.c: Use sys/stat.h, not gdb_stat.h.
1118
1119 2013-11-18  Tom Tromey  <tromey@redhat.com>
1120
1121         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
1122         sys_stat.
1123         * gnulib/aclocal.m4: Update.
1124         * gnulib/config.in: Update.
1125         * gnulib/configure: Update.
1126         * gnulib/import/Makefile.am: Update.
1127         * gnulib/import/Makefile.in: Update.
1128         * gnulib/import/m4/gnulib-cache.m4: Update.
1129         * gnulib/import/m4/gnulib-comp.m4: Update.
1130         * gnulib/import/m4/sys_stat_h.m4: New.
1131         * gnulib/import/m4/time_h.m4: New.
1132         * gnulib/import/sys_stat.in.h: New.
1133         * gnulib/import/time.in.h: New.
1134
1135 2013-11-18  Tom Tromey  <tromey@redhat.com>
1136
1137         * configure: Rebuild.
1138         * configure.ac: Remove check of HAVE_SYS_TYPES_H.
1139
1140 2013-11-18  Tom Tromey  <tromey@redhat.com>
1141
1142         * configure: Rebuild.
1143         * configure.ac: Don't check for unistd.h.
1144
1145 2013-11-18  Tom Tromey  <tromey@redhat.com>
1146
1147         * configure: Rebuild.
1148         * configure.ac: Don't check for stdlib.h
1149         * defs.h: Include stdlib.h unconditionally.
1150
1151 2013-11-18  Tom Tromey  <tromey@redhat.com>
1152
1153         * config.in: Rebuild.
1154         * configure: Rebuild.
1155         * configure.ac: Don't check for stddef.h.
1156         * defs.h: Unconditionally include stddef.h.  Remove duplicate
1157         inclusion.
1158
1159 2013-11-18  Tom Tromey  <tromey@redhat.com>
1160
1161         * common/common.m4 (GDB_AC_COMMON): Don't use AC_HEADER_DIRENT.
1162         * common/gdb_dirent.h: Remove.
1163         * common/filestuff.c: Use dirent.h.
1164         * common/linux-osdata.c: Use dirent.h.
1165         (NAMELEN): Define.
1166         * config.in: Rebuild.
1167         * configure: Rebuild.
1168         * configure.ac: Don't use AC_HEADER_DIRENT.
1169         * linux-fork.c: Use dirent.h
1170         * linux-nat.c: Use dirent.h.
1171         * nto-procfs.c: Use dirent.h.
1172         * procfs.c: Use dirent.h.
1173
1174 2013-11-18  Tom Tromey  <tromey@redhat.com>
1175
1176         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add dirent.
1177         * gnulib/aclocal.m4: Update.
1178         * gnulib/config.in: Update.
1179         * gnulib/configure: Update.
1180         * gnulib/import/Makefile.am: Update.
1181         * gnulib/import/Makefile.in: Update.
1182         * gnulib/import/dirent.in.h: New.
1183         * gnulib/import/m4/dirent_h.m4: New.
1184         * gnulib/import/m4/gnulib-cache.m4: Update.
1185         * gnulib/import/m4/gnulib-comp.m4: Update.
1186
1187 2013-11-18  Tom Tromey  <tromey@redhat.com>
1188
1189         * configure: Rebuild.
1190         * common/common.m4 (GDB_AC_COMMON): Don't check for string.h or
1191         strings.h.
1192
1193 2013-11-18  Tom Tromey  <tromey@redhat.com>
1194
1195         * common/gdb_string.h: Remove.
1196         * aarch64-tdep.c: Use string.h, not gdb_string.h.
1197         * ada-exp.y: Use string.h, not gdb_string.h.
1198         * ada-lang.c: Use string.h, not gdb_string.h.
1199         * ada-lex.l: Use string.h, not gdb_string.h.
1200         * ada-typeprint.c: Use string.h, not gdb_string.h.
1201         * ada-valprint.c: Use string.h, not gdb_string.h.
1202         * aix-thread.c: Use string.h, not gdb_string.h.
1203         * alpha-linux-tdep.c: Use string.h, not gdb_string.h.
1204         * alpha-mdebug-tdep.c: Use string.h, not gdb_string.h.
1205         * alpha-nat.c: Use string.h, not gdb_string.h.
1206         * alpha-osf1-tdep.c: Use string.h, not gdb_string.h.
1207         * alpha-tdep.c: Use string.h, not gdb_string.h.
1208         * alphanbsd-tdep.c: Use string.h, not gdb_string.h.
1209         * amd64-dicos-tdep.c: Use string.h, not gdb_string.h.
1210         * amd64-linux-nat.c: Use string.h, not gdb_string.h.
1211         * amd64-linux-tdep.c: Use string.h, not gdb_string.h.
1212         * amd64-nat.c: Use string.h, not gdb_string.h.
1213         * amd64-sol2-tdep.c: Use string.h, not gdb_string.h.
1214         * amd64fbsd-tdep.c: Use string.h, not gdb_string.h.
1215         * amd64obsd-tdep.c: Use string.h, not gdb_string.h.
1216         * arch-utils.c: Use string.h, not gdb_string.h.
1217         * arm-linux-nat.c: Use string.h, not gdb_string.h.
1218         * arm-linux-tdep.c: Use string.h, not gdb_string.h.
1219         * arm-tdep.c: Use string.h, not gdb_string.h.
1220         * arm-wince-tdep.c: Use string.h, not gdb_string.h.
1221         * armbsd-tdep.c: Use string.h, not gdb_string.h.
1222         * armnbsd-nat.c: Use string.h, not gdb_string.h.
1223         * armnbsd-tdep.c: Use string.h, not gdb_string.h.
1224         * armobsd-tdep.c: Use string.h, not gdb_string.h.
1225         * avr-tdep.c: Use string.h, not gdb_string.h.
1226         * ax-gdb.c: Use string.h, not gdb_string.h.
1227         * ax-general.c: Use string.h, not gdb_string.h.
1228         * bcache.c: Use string.h, not gdb_string.h.
1229         * bfin-tdep.c: Use string.h, not gdb_string.h.
1230         * breakpoint.c: Use string.h, not gdb_string.h.
1231         * build-id.c: Use string.h, not gdb_string.h.
1232         * buildsym.c: Use string.h, not gdb_string.h.
1233         * c-exp.y: Use string.h, not gdb_string.h.
1234         * c-lang.c: Use string.h, not gdb_string.h.
1235         * c-typeprint.c: Use string.h, not gdb_string.h.
1236         * c-valprint.c: Use string.h, not gdb_string.h.
1237         * charset.c: Use string.h, not gdb_string.h.
1238         * cli-out.c: Use string.h, not gdb_string.h.
1239         * cli/cli-cmds.c: Use string.h, not gdb_string.h.
1240         * cli/cli-decode.c: Use string.h, not gdb_string.h.
1241         * cli/cli-dump.c: Use string.h, not gdb_string.h.
1242         * cli/cli-interp.c: Use string.h, not gdb_string.h.
1243         * cli/cli-logging.c: Use string.h, not gdb_string.h.
1244         * cli/cli-script.c: Use string.h, not gdb_string.h.
1245         * cli/cli-setshow.c: Use string.h, not gdb_string.h.
1246         * cli/cli-utils.c: Use string.h, not gdb_string.h.
1247         * coffread.c: Use string.h, not gdb_string.h.
1248         * common/common-utils.c: Use string.h, not gdb_string.h.
1249         * common/filestuff.c: Use string.h, not gdb_string.h.
1250         * common/linux-procfs.c: Use string.h, not gdb_string.h.
1251         * common/linux-ptrace.c: Use string.h, not gdb_string.h.
1252         * common/signals.c: Use string.h, not gdb_string.h.
1253         * common/vec.h: Use string.h, not gdb_string.h.
1254         * core-regset.c: Use string.h, not gdb_string.h.
1255         * corefile.c: Use string.h, not gdb_string.h.
1256         * corelow.c: Use string.h, not gdb_string.h.
1257         * cp-abi.c: Use string.h, not gdb_string.h.
1258         * cp-support.c: Use string.h, not gdb_string.h.
1259         * cp-valprint.c: Use string.h, not gdb_string.h.
1260         * cris-tdep.c: Use string.h, not gdb_string.h.
1261         * d-lang.c: Use string.h, not gdb_string.h.
1262         * dbxread.c: Use string.h, not gdb_string.h.
1263         * dcache.c: Use string.h, not gdb_string.h.
1264         * demangle.c: Use string.h, not gdb_string.h.
1265         * dicos-tdep.c: Use string.h, not gdb_string.h.
1266         * disasm.c: Use string.h, not gdb_string.h.
1267         * doublest.c: Use string.h, not gdb_string.h.
1268         * dsrec.c: Use string.h, not gdb_string.h.
1269         * dummy-frame.c: Use string.h, not gdb_string.h.
1270         * dwarf2-frame.c: Use string.h, not gdb_string.h.
1271         * dwarf2loc.c: Use string.h, not gdb_string.h.
1272         * dwarf2read.c: Use string.h, not gdb_string.h.
1273         * elfread.c: Use string.h, not gdb_string.h.
1274         * environ.c: Use string.h, not gdb_string.h.
1275         * eval.c: Use string.h, not gdb_string.h.
1276         * event-loop.c: Use string.h, not gdb_string.h.
1277         * exceptions.c: Use string.h, not gdb_string.h.
1278         * exec.c: Use string.h, not gdb_string.h.
1279         * expprint.c: Use string.h, not gdb_string.h.
1280         * f-exp.y: Use string.h, not gdb_string.h.
1281         * f-lang.c: Use string.h, not gdb_string.h.
1282         * f-typeprint.c: Use string.h, not gdb_string.h.
1283         * f-valprint.c: Use string.h, not gdb_string.h.
1284         * fbsd-nat.c: Use string.h, not gdb_string.h.
1285         * findcmd.c: Use string.h, not gdb_string.h.
1286         * findvar.c: Use string.h, not gdb_string.h.
1287         * fork-child.c: Use string.h, not gdb_string.h.
1288         * frame.c: Use string.h, not gdb_string.h.
1289         * frv-linux-tdep.c: Use string.h, not gdb_string.h.
1290         * frv-tdep.c: Use string.h, not gdb_string.h.
1291         * gdb.c: Use string.h, not gdb_string.h.
1292         * gdb_bfd.c: Use string.h, not gdb_string.h.
1293         * gdbarch.c: Use string.h, not gdb_string.h.
1294         * gdbtypes.c: Use string.h, not gdb_string.h.
1295         * gnu-nat.c: Use string.h, not gdb_string.h.
1296         * gnu-v2-abi.c: Use string.h, not gdb_string.h.
1297         * gnu-v3-abi.c: Use string.h, not gdb_string.h.
1298         * go-exp.y: Use string.h, not gdb_string.h.
1299         * go-lang.c: Use string.h, not gdb_string.h.
1300         * go32-nat.c: Use string.h, not gdb_string.h.
1301         * hppa-hpux-tdep.c: Use string.h, not gdb_string.h.
1302         * hppa-linux-nat.c: Use string.h, not gdb_string.h.
1303         * hppanbsd-tdep.c: Use string.h, not gdb_string.h.
1304         * hppaobsd-tdep.c: Use string.h, not gdb_string.h.
1305         * i386-cygwin-tdep.c: Use string.h, not gdb_string.h.
1306         * i386-dicos-tdep.c: Use string.h, not gdb_string.h.
1307         * i386-linux-nat.c: Use string.h, not gdb_string.h.
1308         * i386-linux-tdep.c: Use string.h, not gdb_string.h.
1309         * i386-nto-tdep.c: Use string.h, not gdb_string.h.
1310         * i386-sol2-tdep.c: Use string.h, not gdb_string.h.
1311         * i386-tdep.c: Use string.h, not gdb_string.h.
1312         * i386bsd-tdep.c: Use string.h, not gdb_string.h.
1313         * i386gnu-nat.c: Use string.h, not gdb_string.h.
1314         * i386nbsd-tdep.c: Use string.h, not gdb_string.h.
1315         * i386obsd-tdep.c: Use string.h, not gdb_string.h.
1316         * i387-tdep.c: Use string.h, not gdb_string.h.
1317         * ia64-libunwind-tdep.c: Use string.h, not gdb_string.h.
1318         * ia64-linux-nat.c: Use string.h, not gdb_string.h.
1319         * inf-child.c: Use string.h, not gdb_string.h.
1320         * inf-ptrace.c: Use string.h, not gdb_string.h.
1321         * inf-ttrace.c: Use string.h, not gdb_string.h.
1322         * infcall.c: Use string.h, not gdb_string.h.
1323         * infcmd.c: Use string.h, not gdb_string.h.
1324         * inflow.c: Use string.h, not gdb_string.h.
1325         * infrun.c: Use string.h, not gdb_string.h.
1326         * interps.c: Use string.h, not gdb_string.h.
1327         * iq2000-tdep.c: Use string.h, not gdb_string.h.
1328         * irix5-nat.c: Use string.h, not gdb_string.h.
1329         * jv-exp.y: Use string.h, not gdb_string.h.
1330         * jv-lang.c: Use string.h, not gdb_string.h.
1331         * jv-typeprint.c: Use string.h, not gdb_string.h.
1332         * jv-valprint.c: Use string.h, not gdb_string.h.
1333         * language.c: Use string.h, not gdb_string.h.
1334         * linux-fork.c: Use string.h, not gdb_string.h.
1335         * linux-nat.c: Use string.h, not gdb_string.h.
1336         * lm32-tdep.c: Use string.h, not gdb_string.h.
1337         * m2-exp.y: Use string.h, not gdb_string.h.
1338         * m2-typeprint.c: Use string.h, not gdb_string.h.
1339         * m32c-tdep.c: Use string.h, not gdb_string.h.
1340         * m32r-linux-nat.c: Use string.h, not gdb_string.h.
1341         * m32r-linux-tdep.c: Use string.h, not gdb_string.h.
1342         * m32r-rom.c: Use string.h, not gdb_string.h.
1343         * m32r-tdep.c: Use string.h, not gdb_string.h.
1344         * m68hc11-tdep.c: Use string.h, not gdb_string.h.
1345         * m68k-tdep.c: Use string.h, not gdb_string.h.
1346         * m68kbsd-tdep.c: Use string.h, not gdb_string.h.
1347         * m68klinux-nat.c: Use string.h, not gdb_string.h.
1348         * m68klinux-tdep.c: Use string.h, not gdb_string.h.
1349         * m88k-tdep.c: Use string.h, not gdb_string.h.
1350         * macrocmd.c: Use string.h, not gdb_string.h.
1351         * main.c: Use string.h, not gdb_string.h.
1352         * mdebugread.c: Use string.h, not gdb_string.h.
1353         * mem-break.c: Use string.h, not gdb_string.h.
1354         * memattr.c: Use string.h, not gdb_string.h.
1355         * memory-map.c: Use string.h, not gdb_string.h.
1356         * mep-tdep.c: Use string.h, not gdb_string.h.
1357         * mi/mi-cmd-break.c: Use string.h, not gdb_string.h.
1358         * mi/mi-cmd-disas.c: Use string.h, not gdb_string.h.
1359         * mi/mi-cmd-env.c: Use string.h, not gdb_string.h.
1360         * mi/mi-cmd-stack.c: Use string.h, not gdb_string.h.
1361         * mi/mi-cmd-var.c: Use string.h, not gdb_string.h.
1362         * mi/mi-cmds.c: Use string.h, not gdb_string.h.
1363         * mi/mi-console.c: Use string.h, not gdb_string.h.
1364         * mi/mi-getopt.c: Use string.h, not gdb_string.h.
1365         * mi/mi-interp.c: Use string.h, not gdb_string.h.
1366         * mi/mi-main.c: Use string.h, not gdb_string.h.
1367         * mi/mi-parse.c: Use string.h, not gdb_string.h.
1368         * microblaze-rom.c: Use string.h, not gdb_string.h.
1369         * microblaze-tdep.c: Use string.h, not gdb_string.h.
1370         * mingw-hdep.c: Use string.h, not gdb_string.h.
1371         * minidebug.c: Use string.h, not gdb_string.h.
1372         * minsyms.c: Use string.h, not gdb_string.h.
1373         * mips-irix-tdep.c: Use string.h, not gdb_string.h.
1374         * mips-linux-tdep.c: Use string.h, not gdb_string.h.
1375         * mips-tdep.c: Use string.h, not gdb_string.h.
1376         * mips64obsd-tdep.c: Use string.h, not gdb_string.h.
1377         * mipsnbsd-tdep.c: Use string.h, not gdb_string.h.
1378         * mipsread.c: Use string.h, not gdb_string.h.
1379         * mn10300-linux-tdep.c: Use string.h, not gdb_string.h.
1380         * mn10300-tdep.c: Use string.h, not gdb_string.h.
1381         * monitor.c: Use string.h, not gdb_string.h.
1382         * moxie-tdep.c: Use string.h, not gdb_string.h.
1383         * mt-tdep.c: Use string.h, not gdb_string.h.
1384         * nbsd-tdep.c: Use string.h, not gdb_string.h.
1385         * nios2-linux-tdep.c: Use string.h, not gdb_string.h.
1386         * nto-procfs.c: Use string.h, not gdb_string.h.
1387         * nto-tdep.c: Use string.h, not gdb_string.h.
1388         * objc-lang.c: Use string.h, not gdb_string.h.
1389         * objfiles.c: Use string.h, not gdb_string.h.
1390         * opencl-lang.c: Use string.h, not gdb_string.h.
1391         * osabi.c: Use string.h, not gdb_string.h.
1392         * osdata.c: Use string.h, not gdb_string.h.
1393         * p-exp.y: Use string.h, not gdb_string.h.
1394         * p-lang.c: Use string.h, not gdb_string.h.
1395         * p-typeprint.c: Use string.h, not gdb_string.h.
1396         * parse.c: Use string.h, not gdb_string.h.
1397         * posix-hdep.c: Use string.h, not gdb_string.h.
1398         * ppc-linux-nat.c: Use string.h, not gdb_string.h.
1399         * ppc-sysv-tdep.c: Use string.h, not gdb_string.h.
1400         * ppcfbsd-tdep.c: Use string.h, not gdb_string.h.
1401         * ppcnbsd-tdep.c: Use string.h, not gdb_string.h.
1402         * ppcobsd-tdep.c: Use string.h, not gdb_string.h.
1403         * printcmd.c: Use string.h, not gdb_string.h.
1404         * procfs.c: Use string.h, not gdb_string.h.
1405         * prologue-value.c: Use string.h, not gdb_string.h.
1406         * python/py-auto-load.c: Use string.h, not gdb_string.h.
1407         * python/py-gdb-readline.c: Use string.h, not gdb_string.h.
1408         * ravenscar-thread.c: Use string.h, not gdb_string.h.
1409         * regcache.c: Use string.h, not gdb_string.h.
1410         * registry.c: Use string.h, not gdb_string.h.
1411         * remote-fileio.c: Use string.h, not gdb_string.h.
1412         * remote-m32r-sdi.c: Use string.h, not gdb_string.h.
1413         * remote-mips.c: Use string.h, not gdb_string.h.
1414         * remote-sim.c: Use string.h, not gdb_string.h.
1415         * remote.c: Use string.h, not gdb_string.h.
1416         * reverse.c: Use string.h, not gdb_string.h.
1417         * rs6000-aix-tdep.c: Use string.h, not gdb_string.h.
1418         * ser-base.c: Use string.h, not gdb_string.h.
1419         * ser-go32.c: Use string.h, not gdb_string.h.
1420         * ser-mingw.c: Use string.h, not gdb_string.h.
1421         * ser-pipe.c: Use string.h, not gdb_string.h.
1422         * ser-tcp.c: Use string.h, not gdb_string.h.
1423         * ser-unix.c: Use string.h, not gdb_string.h.
1424         * serial.c: Use string.h, not gdb_string.h.
1425         * sh-tdep.c: Use string.h, not gdb_string.h.
1426         * sh64-tdep.c: Use string.h, not gdb_string.h.
1427         * shnbsd-tdep.c: Use string.h, not gdb_string.h.
1428         * skip.c: Use string.h, not gdb_string.h.
1429         * sol-thread.c: Use string.h, not gdb_string.h.
1430         * solib-dsbt.c: Use string.h, not gdb_string.h.
1431         * solib-frv.c: Use string.h, not gdb_string.h.
1432         * solib-osf.c: Use string.h, not gdb_string.h.
1433         * solib-spu.c: Use string.h, not gdb_string.h.
1434         * solib-target.c: Use string.h, not gdb_string.h.
1435         * solib.c: Use string.h, not gdb_string.h.
1436         * somread.c: Use string.h, not gdb_string.h.
1437         * source.c: Use string.h, not gdb_string.h.
1438         * sparc-nat.c: Use string.h, not gdb_string.h.
1439         * sparc-sol2-tdep.c: Use string.h, not gdb_string.h.
1440         * sparc-tdep.c: Use string.h, not gdb_string.h.
1441         * sparc64-tdep.c: Use string.h, not gdb_string.h.
1442         * sparc64fbsd-tdep.c: Use string.h, not gdb_string.h.
1443         * sparc64nbsd-tdep.c: Use string.h, not gdb_string.h.
1444         * sparcnbsd-tdep.c: Use string.h, not gdb_string.h.
1445         * spu-linux-nat.c: Use string.h, not gdb_string.h.
1446         * spu-multiarch.c: Use string.h, not gdb_string.h.
1447         * spu-tdep.c: Use string.h, not gdb_string.h.
1448         * stabsread.c: Use string.h, not gdb_string.h.
1449         * stack.c: Use string.h, not gdb_string.h.
1450         * std-regs.c: Use string.h, not gdb_string.h.
1451         * symfile.c: Use string.h, not gdb_string.h.
1452         * symmisc.c: Use string.h, not gdb_string.h.
1453         * symtab.c: Use string.h, not gdb_string.h.
1454         * target.c: Use string.h, not gdb_string.h.
1455         * thread.c: Use string.h, not gdb_string.h.
1456         * tilegx-linux-nat.c: Use string.h, not gdb_string.h.
1457         * tilegx-tdep.c: Use string.h, not gdb_string.h.
1458         * top.c: Use string.h, not gdb_string.h.
1459         * tracepoint.c: Use string.h, not gdb_string.h.
1460         * tui/tui-command.c: Use string.h, not gdb_string.h.
1461         * tui/tui-data.c: Use string.h, not gdb_string.h.
1462         * tui/tui-disasm.c: Use string.h, not gdb_string.h.
1463         * tui/tui-file.c: Use string.h, not gdb_string.h.
1464         * tui/tui-layout.c: Use string.h, not gdb_string.h.
1465         * tui/tui-out.c: Use string.h, not gdb_string.h.
1466         * tui/tui-regs.c: Use string.h, not gdb_string.h.
1467         * tui/tui-source.c: Use string.h, not gdb_string.h.
1468         * tui/tui-stack.c: Use string.h, not gdb_string.h.
1469         * tui/tui-win.c: Use string.h, not gdb_string.h.
1470         * tui/tui-windata.c: Use string.h, not gdb_string.h.
1471         * tui/tui-winsource.c: Use string.h, not gdb_string.h.
1472         * typeprint.c: Use string.h, not gdb_string.h.
1473         * ui-file.c: Use string.h, not gdb_string.h.
1474         * ui-out.c: Use string.h, not gdb_string.h.
1475         * user-regs.c: Use string.h, not gdb_string.h.
1476         * utils.c: Use string.h, not gdb_string.h.
1477         * v850-tdep.c: Use string.h, not gdb_string.h.
1478         * valarith.c: Use string.h, not gdb_string.h.
1479         * valops.c: Use string.h, not gdb_string.h.
1480         * valprint.c: Use string.h, not gdb_string.h.
1481         * value.c: Use string.h, not gdb_string.h.
1482         * varobj.c: Use string.h, not gdb_string.h.
1483         * vax-tdep.c: Use string.h, not gdb_string.h.
1484         * vaxnbsd-tdep.c: Use string.h, not gdb_string.h.
1485         * vaxobsd-tdep.c: Use string.h, not gdb_string.h.
1486         * windows-nat.c: Use string.h, not gdb_string.h.
1487         * xcoffread.c: Use string.h, not gdb_string.h.
1488         * xml-support.c: Use string.h, not gdb_string.h.
1489         * xstormy16-tdep.c: Use string.h, not gdb_string.h.
1490         * xtensa-linux-nat.c: Use string.h, not gdb_string.h.
1491
1492 2013-11-18  Tom Tromey  <tromey@redhat.com>
1493
1494         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add strerror
1495         and strstr.
1496         * gnulib/aclocal.m4: Update.
1497         * gnulib/config.in: Update.
1498         * gnulib/configure: Update.
1499         * gnulib/import/Makefile.am: Update.
1500         * gnulib/import/Makefile.in: Update.
1501         * gnulib/import/errno.in.h: New.
1502         * gnulib/import/intprops.h: New.
1503         * gnulib/import/m4/errno_h.m4: New.
1504         * gnulib/import/m4/gnulib-cache.m4: Update.
1505         * gnulib/import/m4/gnulib-comp.m4: Update.
1506         * gnulib/import/m4/strerror.m4: New.
1507         * gnulib/import/m4/strstr.m4: New.
1508         * gnulib/import/m4/sys_socket_h.m4: New.
1509         * gnulib/import/strerror-override.c: New.
1510         * gnulib/import/strerror-override.h: New.
1511         * gnulib/import/strerror.c: New.
1512         * gnulib/import/strstr.c: New.
1513
1514 2013-11-18  Tom Tromey  <tromey@redhat.com>
1515
1516         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Split into
1517         multiple lines.
1518
1519 2013-11-18  Jose E. Marchesi  <jose.marchesi@oracle.com>
1520
1521         * sparc-tdep.c (sparc_is_annulled_branch_insn): New function.
1522         * sparc-tdep.h: And its prototype.
1523
1524         * sparc64-linux-tdep.c (sparc64_linux_get_longjmp_target): New
1525         function.
1526         (sparc64_linux_init_abi): Register the get_longjmp_target hook.
1527
1528 2013-11-18  Pedro Alves  <palves@redhat.com>
1529
1530         * dwarf2-frame.c (read_addr_from_reg): Remove stale comment and
1531         use unpack_pointer.
1532
1533 2013-11-18  Joel Brobecker  <brobecker@adacore.com>
1534
1535         * mi/mi-main.c (mi_cmd_list_features): Add "language-options"
1536         to -list-features output.
1537
1538 2013-11-17  Joel Brobecker  <brobecker@adacore.com>
1539
1540         * dwarf2expr.h (struct dwarf_expr_context_funcs)
1541         <read_addr_from_reg>: Renames "read_reg".
1542         * dwarf2-frame.c (read_addr_from_reg): Renames "read_reg".
1543         Adjust comment.
1544         (dwarf2_frame_ctx_funcs, execute_stack_op, dwarf2_frame_cache):
1545         Use read_addr_from_reg in place of read_reg.
1546         * dwarf2expr.c (execute_stack_op): Use read_addr_from_reg
1547         in place of read_reg.
1548         * dwarf2loc.c (dwarf_expr_read_addr_from_reg): Renames
1549         dwarf_expr_read_reg.
1550         (dwarf_expr_ctx_funcs): Replace dwarf_expr_read_reg
1551         with dwarf_expr_read_addr_from_reg.
1552         (needs_frame_read_addr_from_reg): Renames needs_frame_read_reg.
1553         (needs_frame_ctx_funcs): Replace needs_frame_read_reg with
1554         needs_frame_read_addr_from_reg.
1555
1556 2013-11-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
1557
1558         * NEWS (Changes in GDB 7.5) (New commands) (explore): Fix typo.
1559
1560 2013-11-15  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1561
1562         * dwarf2loc.c (chain_candidate): Prevent invoking memcpy with
1563         NULL.
1564
1565 2013-11-15  Tom Tromey  <tromey@redhat.com>
1566
1567         PR c++/16117:
1568         * c-exp.y (lex_one_token): Add "is_quoted_name" argument.
1569         (classify_name): Likewise.  Prefer a field of "this" over a
1570         filename.
1571         (classify_inner_name, yylex): Update.
1572
1573 2013-11-15  Joel Brobecker  <brobecker@adacore.com>
1574
1575         * dwarf2expr.h (struct dwarf_expr_context_funcs) <read_reg>:
1576         Extend the documentation a bit.
1577         <get_reg_value>: New field.
1578         * dwarf2loc.c (dwarf_expr_get_reg_value)
1579         (needs_frame_get_reg_value): New functions.
1580         (dwarf_expr_ctx_funcs, needs_frame_ctx_funcs): Add "get_reg_value"
1581         callback.
1582         * dwarf2-frame.c (get_reg_value): New function.
1583         (dwarf2_frame_ctx_funcs): Add "get_reg_value" callback.
1584         * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_regval_type>:
1585         Use new callback to compute result_val.
1586
1587 2013-11-15  Alan Modra  <amodra@gmail.com>
1588
1589         * ppc64-tdep.c (ppc64_plt_entry_point): Renamed from..
1590         (ppc64_desc_entry_point): ..this.  Update comments here and at
1591         call points.
1592         (ppc64_standard_linkage1, ppc64_standard_linkage2,
1593         ppc64_standard_linkage3): Update comments.
1594         (ppc64_standard_linkage4, ppc64_standard_linkage5,
1595         (ppc64_standard_linkage6, ppc64_standard_linkage7): New insn
1596         patterns.
1597         (ppc64_standard_linkage4_target): New function.
1598         (ppc64_skip_trampoline_code): Skip ELFv2 patterns too.
1599         * rs6000-tdep.c (skip_prologue): Skip ELFv2 r2 setup.  Correct
1600         nop match.  Fix comment wrap.
1601
1602 2013-11-14  Pedro Alves  <palves@redhat.com>
1603
1604         * infrun.c (handle_signal_stop): Move STOP_QUIETLY,
1605         STOP_QUIETLY_REMOTE and 'stop_after_trap' handling earlier.
1606
1607 2013-11-14  Pedro Alves  <palves@redhat.com>
1608
1609         * infrun.c (struct execution_control_state)
1610         <stepped_after_stopped_by_watchpoint>: New field.
1611         (get_inferior_stop_soon): New function.
1612         (handle_inferior_event): 'stepped_after_stopped_by_watchpoint' was
1613         moved to struct execution_control_state -- adjust.  Use
1614         get_inferior_stop_soon.  Split TARGET_WAITKIND_STOPPED handling to
1615         new function.
1616         (handle_signal_stop): New function, factored out from
1617         handle_inferior_event.
1618
1619 2013-11-14  Pedro Alves  <palves@redhat.com>
1620
1621         * break-catch-sig.c (signal_catchpoint_explains_signal): Adjust to
1622         return a boolean.
1623         * breakpoint.c (bpstat_explains_signal): Adjust to return a
1624         boolean.
1625         (explains_signal_watchpoint, base_breakpoint_explains_signal):
1626         Adjust to return a boolean.
1627         * breakpoint.h (enum bpstat_signal_value): Delete.
1628         (struct breakpoint_ops) <explains_signal>: New returns a boolean.
1629         (bpstat_explains_signal): Likewise.
1630         * infrun.c (handle_inferior_event) <random signal checks>:
1631         bpstat_explains_signal now returns a boolean - adjust.  No longer
1632         consider hiding signals.
1633
1634 2013-11-14  Pedro Alves  <palves@redhat.com>
1635
1636         * breakpoint.c (bpstat_explains_signal) <Moribund locations>:
1637         Return BPSTAT_SIGNAL_PASS instead of BPSTAT_SIGNAL_HIDE.
1638         (explains_signal_watchpoint): Return BPSTAT_SIGNAL_PASS instead of
1639         BPSTAT_SIGNAL_HIDE.
1640         (base_breakpoint_explains_signal): Return BPSTAT_SIGNAL_PASS
1641         instead of BPSTAT_SIGNAL_HIDE.
1642         * infrun.c (handle_inferior_event): Rework random signal checks.
1643
1644 2013-11-14  Pedro Alves  <palves@redhat.com>
1645
1646         * infrun.c (struct execution_control_state): Remove
1647         'random_signal' field.
1648         (handle_syscall_event): Use bpstat_causes_stop instead of
1649         bpstat_explains_signal.  Don't set ecs->random_signal.
1650         (handle_inferior_event): New 'random_signal' local.
1651         <TARGET_WAITKIND_FORKED, TARGET_WAITKIND_VFORKED,
1652         TARGET_WAITKIND_EXECD>: Use bpstat_causes_stop instead of
1653         bpstat_explains_signal.  Don't set ecs->random_signal.
1654         <TARGET_WAITKIND_STOPPED>: Adjust to use local instead of
1655         ecs->random_signal.
1656
1657 2013-11-14  Pedro Alves  <palves@redhat.com>
1658
1659         * infrun.c (handle_inferior_event): Move comment from the
1660         function's body to the function's description, adjusted.
1661
1662 2013-11-14  Pedro Alves  <palves@redhat.com>
1663
1664         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>:
1665         Handle STOP_QUIETLY_NO_SIGSTOP and STOP_QUIETLY_REMOTE here.
1666         Assert we never fall through out of the TARGET_WAITKIND_LOADED
1667         case.
1668
1669 2013-11-14  Tom Tromey  <tromey@redhat.com>
1670
1671         * python/py-linetable.c (ltpy_has_line)
1672         (ltpy_get_all_source_lines): Fix loop termination condition.
1673
1674 2013-11-14  Joel Brobecker  <brobecker@adacore.com>
1675
1676         * mi/mi-parse.h (struct mi_parse) <language>: New field.
1677         * mi/mi-main.c (mi_cmd_execute): Temporarily set language to
1678         PARSE->LANGUAGE during command execution, if set.
1679         * mi/mi-parse.c: Add "language.h" #include.
1680         (mi_parse): Add parsing of "--language" command option.
1681
1682         * NEWS: Add entry mentioning the new "--language" command option.
1683
1684 2013-11-14  Pedro Alves  <palves@redhat.com>
1685             Joel Brobecker  <brobecker@adacore.com>
1686
1687         * cli/cli-utils.h (extract_arg_const): Add declaration.
1688         * cli/cli-utils.c (extract_arg_const): New function.
1689         (extract_arg): Reimplement using extract_arg_const.
1690
1691 2013-11-14  Joel Brobecker  <brobecker@adacore.com>
1692
1693         * language.h: Add "symtab.h" #include.
1694
1695 2013-11-13  Doug Evans  <xdje42@gmail.com>
1696
1697         * breakpoint.c (bpstat_check_breakpoint_conditions): For thread
1698         specific breakpoints, don't evaluate breakpoint condition if
1699         different thread.
1700
1701 2013-11-13  Keith Seitz  <keiths@redhat.com>
1702
1703         PR c++/7935
1704         PR c++/10541
1705         * cp-support.c (insepct_type): Add support for substituting
1706         namespace aliases, too.
1707         * dwarf2read.c (scan_partial_symbols): Add a partial symbol
1708         for DW_TAG_imported_declaration.
1709         (add_partial_symbol): Likewise.
1710         (process_die): Handle namespace aliases with
1711         read_namespace_alias.
1712         (die_needs_namespace): Add DW_TAG_imported_declaration.
1713         (read_namespace_alias): New function.
1714         (load_partial_dies): Load DW_TAG_imported_declaration, too.
1715         (new_symbol_full): Handle DW_TAG_imported_declaration.
1716
1717 2013-11-13  Keith Seitz  <keiths@redhat.com>
1718
1719         * p-exp.y (uptok): Make first parameter const.
1720         (yylex): Make `tokstart' and `tokptr' const.
1721         Don't copy the lexer input to a temporary buffer.
1722         Make `p' const.
1723         Remove const workaround for parse_escape.
1724         Create a temporary buffer for a convenience variable instead
1725         of doing in-place modification of the input.
1726         If a match is found with a different case from the input,
1727         do not change the input at all.
1728         Use `tmp' to construct the resultant stoken instead of
1729         `tokstart'.
1730
1731 2013-11-13  Doug Evans  <xdje42@gmail.com>
1732
1733         * breakpoint.c (breakpoint_cond_eval): Fix and enhance comment.
1734
1735 2013-11-13  Joel Brobecker  <brobecker@adacore.com>
1736
1737         * mi/mi-main.c (mi_cmd_list_features): Replace "info-ada-exceptions"
1738         entry with "ada-exceptions".
1739
1740 2013-11-13  Joel Brobecker  <brobecker@adacore.com>
1741
1742         * symfile.c (reread_symbols): Move call to set_objfile_per_bfd
1743         after re-initialization of OBJFILE's obstack.
1744
1745 2013-11-12  Doug Evans  <xdje42@gmail.com>
1746
1747         * breakpoint.c (bpstat_check_breakpoint_conditions): Assert
1748         bs->stop != 0 on entry.  Update function comment.  Simplify early
1749         exit for frame mismatch.  Reindent rest of function.
1750
1751 2013-11-12  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1752
1753         * objc-lang.c (uniquify_strings): Prevent invoking qsort with
1754         NULL.
1755
1756 2013-11-12  Doug Evans  <dje@google.com>
1757
1758         Work around gold/15646.
1759         * dwarf2read.c (read_index_from_section): Update comment.
1760         (struct dw2_symtab_iterator): New member global_seen.
1761         (dw2_symtab_iter_init): Initialize it.
1762         (dw2_symtab_iter_next): Skip duplicate global symbols.
1763         (dw2_expand_symtabs_matching): Ditto.
1764
1765 2013-11-12  Joel Brobecker  <brobecker@adacore.com>
1766
1767         * mi/mi-cmds.h (mi_cmd_info_ada_exceptions): Add declaration.
1768         * mi/mi-cmds.c (mi_cmds): Add entry for -info-ada-exceptions
1769         command.
1770         * mi/mi-cmd-info.c: #include "ada-lang.c" and "arch-utils.c".
1771         (mi_cmd_info_ada_exceptions): New function.
1772         * mi/mi-main.c (mi_cmd_list_features): Add "info-ada-exceptions".
1773
1774 2013-11-12  Joel Brobecker  <brobecker@adacore.com>
1775
1776         * ada-lang.h: #include "vec.h".
1777         (struct ada_exc_info): New.
1778         (ada_exc_info): New typedef.
1779         (DEF_VEC_O(ada_exc_info)): New vector.
1780         (ada_exceptions_list): Add declaration.
1781         * ada-lang.c (ada_is_exception_sym)
1782         (ada_is_non_standard_exception_sym, compare_ada_exception_info)
1783         (sort_remove_dups_ada_exceptions_list)
1784         (ada_exc_search_name_matches, ada_add_standard_exceptions)
1785         (ada_add_exceptions_from_frame, ada_add_global_exceptions)
1786         (ada_exceptions_list_1, ada_exceptions_list)
1787         (info_exceptions_command): New function.
1788         (_initialize_ada_language): Add "info exception" command.
1789
1790 2013-11-11  Phil Muldoon  <pmuldoon@redhat.com>
1791
1792         PR python/15629
1793         * NEWS: Add linetable feature.
1794         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-linetable entries.
1795         * python/py-linetable.c: New file.
1796         * python/py-symtab.c (stpy_get_linetable): New function.
1797         * python/python-internal.h (symtab_to_linetable_object): Declare.
1798         (gdbpy_initialize_linetable): Ditto.
1799         * python/python.c (_initialize_python): Call
1800         gdbpy_initialize_linetable.
1801
1802 2013-11-11  Joel Brobecker  <brobecker@adacore.com>
1803
1804         * ada-lang.c (create_ada_exception_catchpoint): Enhance
1805         the documentation of fields "except_string" and "condition".
1806         * mi/mi-cmd-catch.c (mi_cmd_catch_assert): Reallocate
1807         CONDITION on the heap before passing it to
1808         create_ada_exception_catchpoint.
1809         (mi_cmd_catch_exception): Likewise for EXCEPTION_NAME and
1810         CONDITION.
1811
1812 2013-11-11  Tom Tromey  <tromey@redhat.com>
1813
1814         * config.in, configure: Rebuild.
1815         * configure.ac (HAVE_TKILL_SYSCALL): Check for "syscall".
1816
1817 2013-11-11  Joel Brobecker  <brobecker@adacore.com>
1818
1819         * remote-sim.c (gdbsim_detach): Break declaration into
1820         shorter lines.  No code change.
1821
1822 2013-11-11  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
1823
1824         * remote-sim.c (gdbsim_detach): Fix prototype.
1825
1826 2013-11-08  Doug Evans  <dje@google.com>
1827
1828         * dwarf2read.c (dwarf2_read_debug): Change to unsigned int.
1829         (create_debug_types_hash_table): Only print debugging messages for
1830         each TU if dwarf2-read >= 2.
1831         (process_queue): Ditto.
1832         (_initialize_dwarf2_read): Make "set debug dwarf2-read" a zuinteger.
1833         Update doc string.
1834
1835 2013-11-08  Tom Tromey  <tromey@redhat.com>
1836
1837         * configure: Rebuild.
1838         * configure.ac: Remove mentions of HAVE_MULTIPLE_PROC_FDS.
1839
1840 2013-11-08  Tom Tromey  <tromey@redhat.com>
1841
1842         * configure, config.in: Rebuild.
1843         * configure.ac: Remove unused configury.
1844
1845 2013-11-08  Tom Tromey  <tromey@redhat.com>
1846
1847         * m32c-tdep.c: Use gdb_string.h.
1848
1849 2013-11-08  Tom Tromey  <tromey@redhat.com>
1850
1851         * configure, config.in: Rebuild.
1852         * configure.ac: Remove all link.h-related checks.
1853
1854 2013-11-08  Tom Tromey  <tromey@redhat.com>
1855
1856         * acinclude.m4: Include common.m4.
1857         * common/common.m4: New file.
1858         * configure, config.in: Rebuild.
1859         * configure.ac: Use GDB_AC_COMMON.
1860
1861 2013-11-08  Doug Evans  <dje@google.com>
1862
1863         * NEWS: Mention that "set debug symtab-create" now accepts a
1864         verbosity level.
1865         * buildsym.c (end_symtab_from_static_block): Call set_symtab_primary
1866         to set the symtab's primary flag.
1867         * jit.c (finalize_symtab): Ditto.
1868         * mdebugread.c (psymtab_to_symtab_1): Ditto.
1869         * symfile.c (allocate_symtab): Only print debugging messages for
1870         symtab_create_debug levels 2 and higher.
1871         * symtab.c (symtab_create_debug): Change type to unsigned int.
1872         (set_symtab_primary): New function.
1873         (_initialize_symtab): Change "set debug symtab-create" to a
1874         zuinteger option.
1875         * symtab.h (set_symtab_primary): Declare.
1876         (symtab_create_debug): Update decl.
1877
1878 2013-11-08  Tom Tromey  <tromey@redhat.com>
1879
1880         * aix-thread.c (aix_thread_detach): Update.
1881         * corelow.c (core_detach): Update.
1882         * darwin-nat.c (darwin_detach): Update.
1883         * dec-thread.c (dec_thread_detach): Update.
1884         * gnu-nat.c (gnu_detach): Update.
1885         * go32-nat.c (go32_detach): Update.
1886         * inf-ptrace.c (inf_ptrace_detach): Update.
1887         * inf-ttrace.c (inf_ttrace_detach): Update.
1888         * linux-fork.c (linux_fork_detach): Update.
1889         * linux-fork.h (linux_fork_detach): Update.
1890         * linux-nat.c (linux_nat_detach): Update.  Introduce "tem"
1891         local for const-correctness.
1892         * linux-thread-db.c (thread_db_detach): Update.
1893         * monitor.c (monitor_detach): Update.
1894         * nto-procfs.c (procfs_detach): Update.
1895         * procfs.c (procfs_detach): Update.
1896         * record.c (record_detach): Update.
1897         * record.h (record_detach): Update.
1898         * remote-m32r-sdi.c (m32r_detach): Update.
1899         * remote-mips.c (mips_detach): Update.
1900         * remote-sim.c (gdbsim_detach): Update.
1901         * remote.c (remote_detach_1, remote_detach)
1902         (extended_remote_detach): Update.
1903         * sol-thread.c (sol_thread_detach): Update.
1904         * target.c (target_detach): Make "args" const.
1905         (init_dummy_target): Update.
1906         * target.h (struct target_ops) <to_detach>: Make argument const.
1907         (target_detach): Likewise.
1908         * windows-nat.c (windows_detach): Update.
1909
1910 2013-11-07  Doug Evans  <dje@google.com>
1911
1912         PR 11786
1913         *  solib-svr4.c (svr4_exec_displacement): Ignore filesz, memsz, flags
1914         and align fields for PT_GNU_RELRO segments.
1915
1916 2013-11-07  Phil Muldoon  <pmuldoon@redhat.com>
1917
1918         PR python/15747
1919         * python/py-cmd.c: Add COMPLETE_EXPRESSION constant.
1920
1921 2013-11-07  Phil Muldoon  <pmuldoon@redhat.com>
1922
1923         * NEWS: Document Python temporary breakpoint support.
1924         * python/py-breakpoint.c (bppy_get_temporary): New function.
1925         (bppy_init): New keyword: temporary. Parse it and set breakpoint
1926         to temporary if True.
1927
1928 2013-11-07  Jose E. Marchesi  <jose.marchesi@oracle.com>
1929
1930         * sparc-tdep.c (sparc_analyze_control_transfer): Assertion
1931         removed to allow analyzing unconditional branch instructions
1932         with PC-relative offsets of zero.
1933
1934 2013-11-07  Yao Qi  <yao@codesourcery.com>
1935
1936         * mi/mi-cmd-var.c: Include "language.h".
1937         (mi_cmd_var_info_expression): Get language name from
1938         language_defn.
1939         * varobj.c (varobj_language_string): Remove.
1940         (variable_language): Remove declaration.
1941         (languages): Remove.
1942         (varobj_get_language): Change the type of return value.
1943         (variable_language): Remove.
1944         * varobj.h (enum varobj_languages): Remove.
1945         (varobj_language_string): Remove declaration.
1946         (varobj_get_language): Update declaration.
1947
1948 2013-11-07  Yao Qi  <yao@codesourcery.com>
1949
1950         * language.h (struct language_defn) <la_natural_name>: New
1951         field.
1952         * ada-lang.c (ada_language_defn): Initialize field
1953         'la_natural_name'.
1954         * c-lang.c (c_language_defn): Likewise.
1955         (cplus_language_defn, asm_language_defn): Likewise.
1956         * d-lang.c (d_language_defn): Likewise.
1957         * f-lang.c (f_language_defn): Likewise.
1958         * go-lang.c (go_language_defn): Likewise.
1959         * jv-lang.c (java_language_defn): Likewise.
1960         * language.c (unknown_language_defn ): Likewise.
1961         (auto_language_defn): Likewise.
1962         * m2-lang.c (m2_language_defn): Likewise.
1963         * objc-lang.c (objc_language_defn): Likewise.
1964         * opencl-lang.c (opencl_language_defn): Likewise.
1965         * p-lang.c (pascal_language_defn): Likewise.
1966
1967 2013-11-07  Yao Qi  <yao@codesourcery.com>
1968
1969         * language.c (language_str): Return const char *.
1970         (add_language): Add const to 'language_names'
1971         * language.h (struct language_defn) <la_name>: Add const.
1972         (language_str: Update declaration.
1973
1974 2013-11-06  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1975
1976         * s390-linux-nat.c (s390_read_description): Consider the TE field
1977         in the HWCAP for determining 'have_regset_tdb'.
1978
1979 2013-11-06  Will Newton  <will.newton@linaro.org>
1980
1981         PR gdb/12866
1982         * dwarf2read.c (skip_one_die): Sanity check DW_AT_sibling
1983         values.  (read_partial_die): Likewise.
1984
1985 2013-11-06  Muhammad Bilal  <mbilal@codesourcery.com>
1986
1987         PR cli/16122
1988         * top.c (command_line_input): Unify interactivity tests to use
1989         input_from_terminal_p.
1990         * event-top.c (command_line_handler): Likewise.
1991
1992 2013-11-06  Yao Qi  <yao@codesourcery.com>
1993
1994         * Makefile.in (check-perf): New target.
1995
1996 2013-11-05  Will Newton  <will.newton@linaro.org>
1997
1998         PR gdb/7670
1999         * arm-tdep.c (print_fpu_flags): Use filtered output routines.
2000         (arm_print_float_info): Likewise.
2001
2002 2013-11-04  Anton Blanchard  <anton@samba.org>
2003
2004         * target.c (memory_xfer_partial): Cap write to 4KB.
2005
2006 2013-11-01  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
2007
2008         * breakpoint.c (create_longjmp_master_breakpoint): Allow libc
2009         probe scan even when the arch provides no get_longjmp_target.
2010
2011 2013-10-31  Pedro Alves  <palves@redhat.com>
2012
2013         * infrun.c (handle_syscall_event): Don't set or clear stop_signal.
2014         (handle_inferior_event) <TARGET_WAITKIND_FORKED,
2015         TARGET_WAITKIND_VFORKED>: Don't set stop_signal to
2016         GDB_SIGNAL_TRAP, or clear it.  Pass GDB_SIGNAL_0 to
2017         bpstat_explains signal, instead of GDB_SIGNAL_TRAP.
2018         <bpstat handling>: If the bpstat chain wants the signal to be
2019         hidden, then set stop_signal to GDB_SIGNAL_0 instead of
2020         GDB_SIGNAL_TRAP.
2021
2022 2013-10-31  Andrew Burgess  <aburgess@broadcom.com>
2023
2024         * breakpoint.c (update_watchpoint): Update error message and add
2025         an additional error message.
2026
2027 2013-10-30  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2028
2029         * s390-tdep.h: Rename to...
2030         * s390-linux-tdep.h: ...here.
2031         * s390-tdep.c: Rename to...
2032         * s390-linux-tdep.c: ...here.  Adjust #include.
2033         * s390-nat.c: Rename to...
2034         * s390-linux-nat.c: ...here.  Adjust #include.
2035         * config/s390/s390.mh: Rename to...
2036         * config/s390/linux.mh: ...here.  Reflect rename s390-nat.o ->
2037         s390-linux-nat.o.
2038         * configure.host: Reflect host rename "s390" -> "linux".
2039         * configure.tgt: Reflect rename s390-tdep.o -> s390-linux-tdep.o.
2040         * Makefile.in (ALL_TARGET_OBS): Likewise.
2041         (HFILES_NO_SRCDIR): Reflect rename s390-tdep.h ->
2042         s390-linux-tdep.h.
2043         (ALLDEPFILES): Reflect rename of .c files.
2044
2045 2013-10-30  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2046
2047         * s390-nat.c: Whitespace cleanup.
2048         * s390-tdep.c: Likewise.
2049         * s390-tdep.h: Remove empty line at end of file.
2050
2051 2013-10-30  Maciej W. Rozycki  <macro@codesourcery.com>
2052
2053         * linux-tdep.c (linux_corefile_thread_callback): Preinitialize
2054         siginfo_size.
2055
2056 2013-10-29  Tom Tromey  <tromey@redhat.com>
2057
2058         * utils.c (reg): Move undefinition...
2059         * gdb_curses.h: ... here.  Update comment to mention AIX.
2060
2061 2013-10-29  Nicolas Blanc  <nicolas.blanc@intel.com>
2062
2063         * exec.h (add_target_sections_of_objfile): New declaration.
2064         * exec.c (add_target_sections_of_objfile): New function.
2065         * symfile.c (add_symbol_file_command): Update current target sections.
2066         (remove_symbol_file_command): New command.
2067         (symfile_free_objfile): New function.
2068         (_initialize_symfile): Register observer for free_objfile events.
2069         * NEWS: Add description of the remove-symbol-file command.
2070         * breakpoint.c (disable_breakpoints_in_freed_objfile): New function.
2071         * objfiles.c (free_objfile): Notify free_objfile.
2072         (is_addr_in_objfile): New function.
2073         * objfiles.h (is_addr_in_objfile): New declaration.
2074         * printcmd.c (clear_dangling_display_expressions): Act upon free_objfile
2075         events instead of solib_unloaded events.
2076         (_initialize_printcmd): Register observer for free_objfile instead
2077         of solib_unloaded notifications.
2078         * solib.c (remove_user_added_objfile): New function.
2079         (_initialize_symfile): Add remove-symbol-file.
2080
2081 2013-10-29  Andrew Burgess  <aburgess@broadcom.com>
2082
2083         * infcmd.c (default_print_one_register_info): Use val_print to
2084         print all values even optimized out or unavailable ones.  Don't
2085         try to print a raw form of optimized out or unavailable values.
2086
2087 2013-10-29  Yao Qi  <yao@codesourcery.com>
2088
2089         * auto-load.c (auto_load_pspace_data_cleanup): Get data from
2090         parameter 'arg' instead of from program_space_data.
2091         * objfiles.c (objfiles_pspace_data_cleanup): Likewise.
2092         * solib-darwin.c (darwin_pspace_data_cleanup): Likewise.
2093         * solib-dsbt.c (dsbt_pspace_data_cleanup): Likewise.
2094         * solib-svr4.c (svr4_pspace_data_cleanup): Likewise.
2095         * inflow.c (inflow_inferior_data_cleanup): Get data from
2096         parameter 'arg' instead of inferior_data.
2097         * registry.h: Add comments.
2098
2099 2013-10-28  Pedro Alves  <palves@redhat.com>
2100
2101         * breakpoint.c (watchpoints_triggered)
2102         <!target_stopped_data_address>: Hardcode return 1.
2103
2104 2013-10-28  Pedro Alves  <palves@redhat.com>
2105
2106         * infrun.c (process_event_stop_test): Remove unnecessary scoping
2107         level and reindent.
2108
2109 2013-10-28  Pedro Alves  <palves@redhat.com>
2110
2111         * infrun.c (process_event_stop_test): New function, factored out
2112         from handle_inferior_event.
2113         (handle_inferior_event): 'process_event_stop_test' is now a
2114         function instead of a goto label -- adjust.
2115
2116 2013-10-28  Pedro Alves  <palves@redhat.com>
2117
2118         * infrun.c (handle_inferior_event): Move process_event_stop_test
2119         goto label to the else branch of the ecs->random_signal check,
2120         along with FRAME and GDBARCH re-fetching.
2121
2122 2013-10-28  Pedro Alves  <palves@redhat.com>
2123
2124         * infrun.c (switch_back_to_stepped_thread): New function, factored
2125         out from handle_inferior_event.
2126         (handle_inferior_event): Adjust to call
2127         switch_back_to_stepped_thread.  Call it also at the tail of the
2128         random signal handling, and return, instead of also handling
2129         random signals just before the stepping tests.
2130
2131 2013-10-28  Pedro Alves  <palves@redhat.com>
2132
2133         * infrun.c (clear_stop_func): Delete.
2134         (handle_inferior_event): Don't call clear_stop_func and don't
2135         clear 'ecs->random_signal'.
2136
2137 2013-10-27  Yao Qi  <yao@codesourcery.com>
2138
2139         * varobj.c (struct varobj_root) <lang>: Rename to 'lang_ops'.
2140         (varobj_create, varobj_get_path_expr): Update.
2141         (varobj_value_has_mutated, varobj_update): Likewise.
2142         (create_child_with_value, new_root_variable): Likewise.
2143         (number_of_children, name_of_variable): Likewise.
2144         (value_of_child, my_value_of_variable): Likewise.
2145         (varobj_value_is_changeable_p): Likewise.
2146
2147 2013-10-25  Yao Qi  <yao@codesourcery.com>
2148
2149         * language.h (struct lang_varobj_ops): Declare.
2150         (struct language_defn) <la_varobj_ops>: New field.
2151         * ada-lang.c: Include "varobj.h"
2152         (defn ada_language_defn): Initialize field 'la_varobj_ops' with
2153         ada_varobj_ops.
2154         * c-lang.c: Include "varobj.h"
2155         (c_language_defn): Initialize field 'la_varobj_ops' with
2156         c_varobj_ops.
2157         (cplus_language_defn): Initialize field 'la_varobj_ops' with
2158         cplus_varobj_ops.
2159         (asm_language_defn): Initialize field 'la_varobj_ops' with
2160         default_varobj_ops.
2161         (minimal_language_defn): Likewise.
2162         * d-lang.c (d_language_defn): Likewise.
2163         * f-lang.c (f_language_defn): Likewise.
2164         * go-lang.c (go_language_defn): Likewise.
2165         * m2-lang.c (m2_language_defn): Likewise.
2166         * objc-lang.c (objc_language_defn): Likewise.
2167         * opencl-lang.c (opencl_language_defn): Likewise.
2168         * p-lang.c (pascal_language_defn): Likewise.
2169         * language.c (unknown_language_defn): Likewise.
2170         (auto_language_defn): Likewise.
2171         (local_language_defn): Likewise.
2172         * jv-lang.c (java_language_defn): Initialize field
2173         'la_varobj_ops' with java_varobj_ops.
2174         * varobj.c (varobj_create): Update.
2175         * varobj.h (default_varobj_ops): Define macro.
2176
2177 2013-10-25  Pedro Alves  <palves@redhat.com>
2178
2179         * cp-valprint.c (cp_print_value_fields): No longer handle a NULL
2180         static field value.
2181         (cp_print_static_field): If the value is entirely optimized out,
2182         print <optimized out> here.
2183         * jv-valprint.c (java_print_value_fields): No longer handle a NULL
2184         static field value.
2185         * p-valprint.c (pascal_object_print_static_field): If the value is
2186         entirely optimized out, print <optimized out> here.
2187         * valops.c (do_search_struct_field)
2188         (value_struct_elt_for_reference): No longer handle a NULL static
2189         field value.
2190         * value.c (value_static_field): Return an optimized out value
2191         instead of NULL.
2192
2193 2013-10-25  Yao Qi  <yao@codesourcery.com>
2194
2195         * remote.c (remote_traceframe_info): Return early if
2196         traceframe is not selected.
2197
2198 2013-10-25  Yao Qi  <yao@codesourcery.com>
2199
2200         * tracepoint.c (traceframe_fun): Remove.
2201         (traceframe_sal): Remove.
2202         (set_traceframe_context): Add local variables.
2203
2204 2013-10-25  Joel Brobecker  <brobecker@adacore.com>
2205
2206         * varobj.h (struct lang_varobj_ops): Remove spaces between '*'
2207         and parameter name.
2208
2209 2013-10-24  Maciej W. Rozycki  <macro@codesourcery.com>
2210
2211         * linux-tdep.c (linux_corefile_thread_callback): Propagate any
2212         failure from register information collection.
2213
2214 2013-10-24  Maciej W. Rozycki  <macro@codesourcery.com>
2215
2216         * linux-tdep.c (linux_corefile_thread_data): Remove `num_notes'
2217         member.
2218         (linux_corefile_thread_callback): Update accordingly.
2219         (linux_make_corefile_notes): Likewise.
2220
2221 2013-10-24  Pedro Alves   <palves@redhat.com>
2222
2223         * NEWS (New options): Mention set/show startup-with-shell.
2224         * config/alpha/nm-osf3.h (START_INFERIOR_TRAPS_EXPECTED): Set to 2
2225         instead of 3.
2226         * fork-child.c (fork_inferior, startup_inferior): Handle 'set
2227         startup-with-shell'.
2228         (show_startup_with_shell): New function.
2229         (_initialize_fork_child): Register the set/show startup-with-shell
2230         commands.
2231         * inf-ptrace.c (inf_ptrace_create_inferior): Remove comment.
2232         * inf-ttrace.c (inf_ttrace_him): Remove comment.
2233         * procfs.c (procfs_init_inferior): Remove comment.
2234         * infcmd.c (startup_with_shell): New global.
2235         * inferior.h (startup_with_shell): Declare global.
2236         (STARTUP_WITH_SHELL): Delete.
2237         (START_INFERIOR_TRAPS_EXPECTED): Set to 1 by default instead of 2.
2238
2239 2013-10-23  Pedro Alves  <palves@redhat.com>
2240
2241         * common/gdb_signals.h (gdb_signal_to_symbol_string): Declare.
2242         * common/signals.c: Include "gdb_assert.h".
2243         (signals): New field 'symbol'.
2244         (SET): Use the 'symbol' parameter.
2245         (gdb_signal_to_symbol_string): New function.
2246         * infrun.c (handle_inferior_event) <random signal>: In debug
2247         output, print the random signal enum as string in addition to its
2248         number.
2249         * target/waitstatus.c (target_waitstatus_to_string): Print the
2250         signal's enum value as string instead of the (POSIX) signal name.
2251
2252 2013-10-23  Gary Benson  <gbenson@redhat.com>
2253
2254         PR 16013
2255         * common/linux-osdata.c (command_from_pid): Reduced size of cmd
2256         from 32 to 18.  Adjusted fscanf format string accordingly.
2257         (Avoids leaving cmd unterminated.)
2258         (print_sockets): Do not parse tlen, inode, sl, timeout, txq, rxq,
2259         trun, retn or extra.  (Avoids leaving extra unterminated.)  Check
2260         that local_address and remote_address will not overflow.
2261         (linux_xfer_osdata_modules): Parse lines using strtok to avoid
2262         leaving dependencies unterminated.  Parse size as "%u" to match
2263         definition.
2264
2265 2013-10-22  Pedro Alves  <palves@redhat.com>
2266
2267         * infrun.c (handle_inferior_event) <thread hop>: Don't clear or
2268         set ecs->random signal.
2269
2270 2013-10-22  Pedro Alves  <palves@redhat.com>
2271
2272         * infrun.c (keep_going): Update comments.
2273
2274 2013-10-22  Pedro Alves  <palves@redhat.com>
2275
2276         * remote.c (remote_parse_stop_reply) <'T'/'S'/'X' replies>: Map
2277         invalid signal numbers to GDB_SIGNAL_UNKNOWN.
2278
2279 2013-10-22  Pedro Alves  <palves@redhat.com>
2280
2281         * include/gdb/signals.def (TARGET_EXC_BAD_ACCESS): Rename to
2282         GDB_EXC_BAD_ACCESS.
2283         (TARGET_EXC_BAD_INSTRUCTION): Rename to GDB_EXC_BAD_INSTRUCTION.
2284         (TARGET_EXC_ARITHMETIC): Rename to GDB_EXC_ARITHMETIC.
2285         (TARGET_EXC_EMULATION): Rename to GDB_EXC_EMULATION.
2286         (TARGET_EXC_SOFTWARE): Rename to GDB_EXC_SOFTWARE.
2287         (TARGET_EXC_BREAKPOINT): Rename to GDB_EXC_BREAKPOINT.
2288         (GDB_SIGNAL_LAST): Change description string.
2289         * common/signals.c (gdb_signal_from_host, do_gdb_signal_to_host):
2290         Adjust to signal renaming.
2291         * darwin-nat.c (darwin_decode_message): Likewise.
2292
2293 2013-10-22  Jose E. Marchesi  <jose.marchesi@oracle.com>
2294
2295         * MAINTAINERS (Write After Approval): Add myself to the list.
2296
2297 2013-10-18  Andrew Burgess  <aburgess@broadcom.com>
2298
2299         * breakpoint.c (update_watchpoint): If hardware watchpoints are
2300         forced off, downgrade them to software watchpoints if possible,
2301         and error out if not possible.
2302         (watch_command_1): Move watchpoint type selection closer to
2303         watchpoint creation, and extend the comments.
2304
2305 2013-10-18  Pedro Alves  <palves@redhat.com>
2306
2307         PR gdb/16062
2308         * infrun.c (handle_inferior_event): Keep going if we got a random
2309         signal we should not stop for, instead of falling through to the
2310         step tests.
2311
2312 2013-10-18  Yao Qi  <yao@codesourcery.com>
2313
2314         * c-varobj.c (cplus_number_of_children): Fix indentation.
2315
2316 2013-10-17  Tom Tromey  <tromey@redhat.com>
2317
2318         PR gdb/15995:
2319         * printcmd.c (printcmd): Call gdb_flush.
2320
2321 2013-10-17  Tom Tromey  <tromey@redhat.com>
2322
2323         * elfread.c (struct elfinfo) <stabindexsect>: Remove.
2324         (elf_locate_sections): Update.
2325
2326 2013-10-17  Yao Qi  <yao@codesourcery.com>
2327
2328         * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
2329         * ada-varobj.c: Remove the include of ada-varobj.h.
2330         (ada_varobj_get_number_of_children): Declare.
2331         (ada_varobj_get_name_of_child): Make it static.
2332         (ada_varobj_get_path_expr_of_child): Likewise.
2333         (ada_varobj_get_value_of_child): Likewise.
2334         (ada_varobj_get_type_of_child): Likewise.
2335         (ada_varobj_get_value_of_array_variable): Likewise.
2336         * ada-varobj.h: Remove.
2337
2338 2013-10-17  Yao Qi  <yao@codesourcery.com>
2339
2340         * Makefile.in (SFILES): Add c-varobj.c and jv-varobj.c.
2341         (COMMON_OBS): Add c-varobj.o and jv-varobj.o.
2342         * ada-varobj.c: Include "varobj.h".
2343         (ada_number_of_children): New.  Moved from varobj.c.
2344         (ada_name_of_variable, ada_name_of_child): Likewise.
2345         (ada_path_expr_of_child, ada_value_of_child): Likewise.
2346         (ada_type_of_child, ada_value_of_variable): Likewise.
2347         (ada_value_is_changeable_p, ada_value_has_mutated): Likewise.
2348         (ada_varobj_ops): New.
2349         * c-varobj.c, jv-varobj.c: New file.  Moved from varobj.c.
2350         * gdbtypes.c (get_target_type): New.  Moved from varobj.c.
2351         * gdbtypes.h (get_target_type): Declare.
2352         * varobj.c: Remove the inclusion of "ada-varobj.h" and
2353         "ada-lang.h".
2354         (ANONYMOUS_STRUCT_NAME): Move it to c-varobj.c.
2355         (ANONYMOUS_UNION_NAME): Likewise.
2356         (get_type, get_value_type, get_target_type): Remove declarations.
2357         (value_get_print_value, varobj_value_get_print_value): Likewise.
2358         (c_number_of_children, c_name_of_variable): Likewise.
2359         (c_name_of_child, c_path_expr_of_child): Likewise.
2360         (c_value_of_child, c_type_of_child): Likewise.
2361         (c_value_of_variable, cplus_number_of_children): Likewise.
2362         (cplus_class_num_children, cplus_name_of_variable): Likewise.
2363         (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
2364         (cplus_value_of_child, cplus_type_of_child): Likewise.
2365         (cplus_value_of_variable, java_number_of_children): Likewise.
2366         (java_name_of_variable, java_name_of_child): Likewise.
2367         (java_path_expr_of_child, java_value_of_child): Likewise.
2368         (java_type_of_child, java_value_of_variable): Likewise.
2369         (ada_number_of_children, ada_name_of_variable): Likewise.
2370         (ada_name_of_child, ada_path_expr_of_child): Likewise.
2371         (ada_value_of_child, ada_type_of_child): Likewise.
2372         (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
2373         (ada_value_has_mutated): Likewise.
2374         (struct language_specific): Move it to varobj.h.
2375         (CPLUS_FAKE_CHILD): Move it to varobj.h.
2376         (restrict_range): Rename it varobj_restrict_range.  Make it extern.
2377         Callers update.
2378         (get_path_expr_parent): Rename it to varobj_get_path_expr_parent.
2379         Make it extern.
2380         (is_anonymous_child): Move it to c-varobj.c and rename to
2381         varobj_is_anonymous_child.  Caller update.
2382         (get_type): Move it to c-varobj.c.
2383         (get_value_type): Rename it varobj_get_value_type.  Make it
2384         extern.
2385         (get_target_type): Move it gdbtypes.c.
2386         (varobj_formatted_print_options): New function.
2387         (value_get_print_value): Rename it to
2388         varobj_value_get_print_value and make it extern.
2389         (varobj_value_is_changeable_p): Make it extern.
2390         (adjust_value_for_child_access): Move it to c-varobj.c.
2391         (default_value_is_changeable_p): Rename it to
2392         varobj_default_value_is_changeable_p.  Make it extern.
2393         (c_number_of_children, c_name_of_variable): Move it to c-varobj.c
2394         (c_name_of_child, c_path_expr_of_child): Likewise.
2395         (c_value_of_child, c_type_of_child): Likewise.
2396         (c_value_of_variable, cplus_number_of_children): Likewise.
2397         (cplus_class_num_children, cplus_name_of_variable): Likewise.
2398         (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
2399         (cplus_value_of_child, cplus_type_of_child): Likewise.
2400         (cplus_value_of_variable): Likewise.
2401         (java_number_of_children, java_name_of_variable): Move it to jv-varobj.c.
2402         (java_name_of_child, java_path_expr_of_child): Likewise.
2403         (java_value_of_child, java_type_of_child): Likewise.
2404         (java_value_of_variable): Likewise.
2405         (ada_number_of_children, ada_name_of_variable): Move it to ada-varobj.c.
2406         (ada_name_of_child, ada_path_expr_of_child): Likewise.
2407         (ada_value_of_child, ada_type_of_child): Likewise.
2408         (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
2409         (ada_value_has_mutated): Likewise.
2410         * varobj.h (CPLUS_FAKE_CHILD): New macro, moved from varobj.c.
2411         (struct lang_varobj_ops): New.  Renamed by 'struct language_specific'.
2412         (c_varobj_ops, cplus_varobj_ops): Declare.
2413         (java_varobj_ops, ada_varobj_ops): Declare.
2414         (varobj_default_value_is_changeable_p): Declare.
2415         (varobj_value_is_changeable_p): Declare.
2416         (varobj_get_value_type, varobj_is_anonymous_child): Declare.
2417         (varobj_get_path_expr_parent): Declare.
2418         (varobj_value_get_print_value): Declare.
2419         (varobj_formatted_print_options): Declare.
2420         (varobj_restrict_range): Declare.
2421
2422 2013-10-17  Luis Machado  <lgustavo@codesourcery.com>
2423
2424         * target/waitstatus.h (target_waitkind): Remove spurious
2425         character from the comments.
2426
2427 2013-10-17  Joel Brobecker  <brobecker@adacore.com>
2428
2429         * gdbarch.sh (get_longjmp_target): Add method documentation.
2430         * gdbarch.h: Regenerate.
2431
2432 2013-10-16  Tom Tromey  <tromey@redhat.com>
2433
2434         * dbxread.c (read_dbx_symtab) <bss_ext_symbol>: Remove unused
2435         label.
2436
2437 2013-10-16  Luis Machado  <lgustavo@codesourcery.com>
2438
2439         * gcore.in: Call GDB using the full path to the gcore script.
2440         Error out if the GDB binary is not found.
2441
2442 2013-10-16  Sergio Durigan Junior  <sergiodj@redhat.com>
2443
2444         PR gdb/16014
2445         * dwarf2read.c (dw2_get_real_path): Remove unnecessary call to
2446         sizeof.
2447
2448 2013-10-16  Sergio Durigan Junior  <sergiodj@redhat.com>
2449
2450         PR gdb/16042
2451         * target.c (target_disable_btrace): Fix invalid return value for
2452         void function.
2453         (target_teardown_btrace): Likewise.
2454
2455 2013-10-14  Yao Qi  <yao@codesourcery.com>
2456
2457         * varobj.c (struct varobj): Move most of the fields to
2458         varobj.h.
2459         (struct varobj_dynamic): New struct.
2460         (varobj_get_display_hint) [HAVE_PYTHON]: Adjust.
2461         (varobj_has_more): Likewise.
2462         (dynamic_varobj_has_child_method): Likewise.
2463         (update_dynamic_varobj_children): Likewise.
2464         (varobj_get_num_children): Likewise.
2465         (varobj_list_children, varobj_pretty_printed_p): Likewise.
2466         (install_new_value_visualizer): Likewise.
2467         (install_new_value_visualizer, install_new_value): Likewise.
2468         (varobj_update, new_variable, free_variable): Likewise.
2469         (my_value_of_variable, value_get_print_value): Likewise.
2470         (install_visualizer): Change the type of parameter 'var' to
2471         'struct varobjd_dynamic *'.  Callers update.
2472         * varobj.h (struct varobj): Moved from varobj.c.
2473         (struct varobj) <dynamic>: New field.
2474
2475 2013-10-13  Sandra Loosemore  <sandra@codesourcery.com>
2476
2477         * nios2-tdep.c (nios2_reg_names): Use "sstatus" rather than "ba"
2478         as the preferred name of r30.
2479         * nios2-linux-tdep.c (reg_offsets): Likewise.
2480         * features/nios2-cpu.xml: Likewise.
2481         * features/nios2-linux.c: Regenerated.
2482         * features/nios2.c: Regenerated.
2483         * regformats/nios2-linux.dat: Regenerated.
2484
2485 2013-10-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
2486
2487         Canonicalize directories for EXEC_FILENAME.
2488         * exec.c (exec_file_attach): Use gdb_realpath_keepfile for
2489         exec_filename.
2490         * utils.c (gdb_realpath_keepfile): New function.
2491         * utils.h (gdb_realpath_keepfile): New declaration.
2492
2493 2013-10-11  Doug Evans  <dje@google.com>
2494
2495         * Makefile.in (GDBFLAGS): New variable.
2496         (run): New rule.
2497
2498 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
2499
2500         * NEWS: Add entry documenting the new "-catch-assert" and
2501         "-catch-exception" GDB/MI commands.
2502
2503 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
2504
2505         * breakpoint.h (init_ada_exception_breakpoint): Add parameter
2506         "enabled".
2507         * breakpoint.c (init_ada_exception_breakpoint): Add parameter
2508         "enabled".  Set B->ENABLE_STATE accordingly.
2509         * ada-lang.h (ada_exception_catchpoint_kind): Move here from
2510         ada-lang.c.
2511         (create_ada_exception_catchpoint): Add declaration.
2512         * ada-lang.c (ada_exception_catchpoint_kind): Move to ada-lang.h.
2513         (create_ada_exception_catchpoint): Make non-static. Add new
2514         parameter "disabled". Use it in call to
2515         init_ada_exception_breakpoint.
2516         (catch_ada_exception_command): Add parameter "enabled" in call
2517         to create_ada_exception_catchpoint.
2518         (catch_assert_command): Likewise.
2519
2520         * mi/mi-cmds.h (mi_cmd_catch_assert, mi_cmd_catch_exception):
2521         Add declarations.
2522         * mi/mi-cmds.c (mi_cmds): Add the "catch-assert" and
2523         "catch-exception" commands.
2524         * mi/mi-cmd-catch.c: Add #include "ada-lang.h".
2525         (mi_cmd_catch_assert, mi_cmd_catch_exception): New functions.
2526
2527 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
2528
2529         * ada-lang.c (enum ada_exception_catchpoint_kind): Renames
2530         "enum exception_catchpoint_kind".  Replace the "ex_" prefix
2531         of all its enumerates with "ada_".  Update the rest of this
2532         file throughout.
2533
2534 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
2535
2536         * ada-lang.c (ada_decode_exception_location): Delete.
2537         (create_ada_exception_catchpoint): Remove arguments "sal",
2538         "addr_string" and "ops".  Add argument "ex_kind" instead.
2539         Adjust implementation accordingly, calling ada_exception_sal
2540         to get the entities it no longer gets passed as arguments.
2541         Document the function's arguments.
2542         (catch_ada_exception_command): Use catch_ada_exception_command_split
2543         instead of ada_decode_exception_location, and update call to
2544         create_ada_exception_catchpoint.
2545         (catch_ada_assert_command_split): Renames
2546         ada_decode_assert_location.  Remove parameters "addr_string" and
2547         "ops", and now returns void.  Adjust implementation accordingly.
2548         Update the function documentation.
2549         (catch_assert_command): Use catch_ada_assert_command_split
2550         instead of ada_decode_assert_location.  Update call to
2551         create_ada_exception_catchpoint.
2552
2553 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
2554
2555         * utils.h (perror_warning_with_name): Add declaration.
2556         * utils.c (perror_warning_with_name): New function.
2557         * cli/cli-cmds.c (source_script_with_search): Add call to
2558         perror_warning_with_name if from_tty is nul.
2559
2560 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
2561
2562         * utils.c (perror_string): New function, extracted out of
2563         throw_perror_with_name.
2564         (throw_perror_with_name): Rework to use perror_string.
2565
2566 2013-10-11  Yao Qi  <yao@codesourcery.com>
2567
2568         * remote.c (discard_pending_stop_replies_in_queue): Update
2569         declaration.
2570         (struct stop_reply) <rs>: New field.
2571         (remove_stop_reply_of_remote_state): New function.
2572         (discard_pending_stop_replies_in_queue): Add parameter 'rs'.
2573         Callers update.  Pass remove_stop_reply_of_remote_state to
2574         QUEUE_iterate.
2575         (remote_parse_stop_reply): Initialize field 'rs'.
2576
2577 2013-10-10  Will Newton  <will.newton@linaro.org>
2578
2579         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
2580         linux_init_abi.
2581
2582 2013-10-10  Joel Brobecker  <brobecker@adacore.com>
2583
2584         * cli/cli-cmds.c (show_baud_rate): Moved to serial.c as
2585         serial_baud_show_cmd.
2586         (_initialize_cli_cmds): Delete the code creating the
2587         "set/show remotebaud" commands.
2588         * serial.c (baud_rate): Move here from top.c.
2589         (serial_baud_show_cmd): Move here from cli/cli-cmds.c.
2590         (_initialize_serial): Create "set/show serial baud" commands.
2591         Add "set/show remotebaud" command aliases.
2592         * top.c (baud_rate): Moved to serial.c.
2593         * NEWS: Document the new "set/show serial baud" commands,
2594         replacing "set/show remotebaud".
2595
2596 2013-10-09  Pedro Alves  <palves@redhat.com>
2597
2598         * breakpoint.c (insert_bp_location): Use memory_error_message to
2599         build the memory error string.
2600         * c-lang.c: Include "gdbcore.h".
2601         (c_get_string): Use memory_error to throw error.
2602         (target_xfer_memory_error): Delete.
2603         (memory_error_message): New, factored out from
2604         target_xfer_memory_error.
2605         (memory_error): Change parameter type to target_xfer_error.
2606         Rewrite.
2607         (read_memory): Use memory_error instead of
2608         target_xfer_memory_error.
2609         * gdbcore.h: Include "target.h".
2610         (memory_error): Change parameter type to target_xfer_error.
2611         (memory_error_message): Declare function.
2612         * target.c (target_read_memory, target_read_stack)
2613         (target_write_memory, target_write_raw_memory): Return
2614         TARGET_XFER_E_IO on error.  Adjust comments.
2615         (get_target_memory): Pass TARGET_XFER_E_IO to memory_error,
2616         instead of EIO.
2617         * target.h (target_read, target_insert_breakpoint)
2618         (target_remove_breakpoint): Adjust comments.
2619         * valprint.c (partial_memory_read): Rename parameter, and adjust
2620         comment.
2621         (val_print_string): Use memory_error_message to build the memory
2622         error string.
2623
2624 2013-10-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
2625
2626         * common/filestuff.c (gdb_fopen_cloexec): Remove initialization of
2627         result variable.  Rename variable fopen_e_ever_failed to
2628         fopen_e_ever_failed_einval.  Retry fopen only for errno EINVAL.
2629
2630 2013-10-09  Pedro Alves  <palves@redhat.com>
2631
2632         * monitor.c (monitor_write_memory, monitor_write_memory_bytes)
2633         (monitor_write_memory_longlongs, monitor_write_memory_block):
2634         Constify 'myaddr' parameter.
2635         (monitor_xfer_memory): Adjust interface as monitor_xfer_partial
2636         helper.
2637         (monitor_xfer_partial): New function.
2638         (init_base_monitor_ops): Don't install a deprecated_xfer_memory
2639         hook.  Install a to_xfer_partial hook.
2640
2641 2013-10-09  Tom Tromey  <tromey@redhat.com>
2642
2643         * dwarf2read.c (dwarf2_get_dwz_file): Update for type change in
2644         bfd_get_alt_debug_link_info.
2645
2646 2013-10-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
2647
2648         New flag OBJF_NOT_FILENAME.
2649         * auto-load.c (auto_load_objfile_script): Check also OBJF_NOT_FILENAME.
2650         * jit.c (jit_object_close_impl): Use OBJF_NOT_FILENAME for
2651         allocate_objfile.
2652         (jit_bfd_try_read_symtab): Use OBJF_NOT_FILENAME for
2653         symbol_file_add_from_bfd.
2654         * jv-lang.c (get_dynamics_objfile): Use OBJF_NOT_FILENAME for
2655         allocate_objfile.
2656         * objfiles.c (allocate_objfile): Assert OBJF_NOT_FILENAME if NAME is
2657         NULL.
2658         * objfiles.h (OBJF_NOT_FILENAME): New.
2659
2660 2013-10-08  Tom Tromey  <tromey@redhat.com>
2661
2662         * Makefile.in (SFILES): Add build-id.c.
2663         (HFILES_NO_SRCDIR): Add build-id.h.
2664         * build-id.c: New file, largely from elfread.c.  Modified
2665         most functions.
2666         * build-id.h: New file.
2667         * dwarf2read.c (dwarf2_get_dwz_file): Update for change to
2668         bfd_get_alt_debug_link_info.  Verify dwz file's build-id.
2669         Search for dwz file using build-id.
2670         * elfread.c (build_id_bfd_get, build_id_verify)
2671         (build_id_to_debug_filename, find_separate_debug_file): Remove.
2672
2673 2013-10-08  Joel Brobecker  <brobecker@adacore.com>
2674
2675         * ada-lang.c (compare_names_with_case): Renamed from
2676         compare_names, adding a new parameter "casing" and its handling.
2677         New function documentation.
2678         (compare_names): New function, implemented using
2679         compare_names_with_case.
2680
2681 2013-10-08  Joel Brobecker  <brobecker@adacore.com>
2682
2683         * ada-lang.c (ada_exception_sal): Remove advance declaration.
2684
2685 2013-10-07  Tom Tromey  <tromey@redhat.com>
2686
2687         * objfiles.c (free_objfile_per_bfd_storage): Delete the
2688         demangled_names_hash.
2689         (free_objfile): Don't delete the demangled_names_hash.
2690         * objfiles.h (struct objfile_per_bfd_storage)
2691         <demangled_names_hash>: New field.
2692         (struct objfile) <demangled_names_hash>: Move to
2693         objfile_per_bfd_storage.
2694         * symfile.c (reread_symbols): Don't delete the
2695         demangled_names_hash.
2696         * symtab.c (create_demangled_names_hash): Update.
2697         (symbol_set_names): Update.
2698
2699 2013-10-07  Tom Tromey  <tromey@redhat.com>
2700
2701         * gdb_bfd.c (struct gdb_bfd_data) <relocation_computed,
2702         needs_relocations>: New fields.
2703         (gdb_bfd_requires_relocations): New function.
2704         * gdb_bfd.h (gdb_bfd_requires_relocations): Declare.
2705         * objfiles.c (get_objfile_bfd_data): Disallow sharing if
2706         the BFD needs relocations applied.
2707
2708 2013-10-07  Pedro Alves  <palves@redhat.com>
2709
2710         PR breakpoints/11568
2711         * breakpoint.c (remove_threaded_breakpoints): Say "no longer in
2712         the thread list" instead of "gone".
2713
2714 2013-10-06  Sergio Durigan Junior  <sergiodj@redhat.com>
2715
2716         * NEWS: Mention new convenience variable $_exitsignal.
2717         * corelow.c (core_open): Reset exit convenience variables.  Set
2718         $_exitsignal to the uncaught signal which generated the corefile.
2719         * infrun.c (handle_inferior_event): Reset exit convenience
2720         variables.  Set $_exitsignal for TARGET_WAITKIND_SIGNALLED.
2721         (clear_exit_convenience_vars): New function.
2722         * inferior.h (clear_exit_convenience_vars): New prototype.
2723
2724 2013-10-06  Yao Qi  <yao@codesourcery.com>
2725
2726         * varobj.h: Add comments to enum varobj_languages.
2727
2728 2013-10-04  Doug Evans  <dje@google.com>
2729
2730         Add support for DWP file format version 2.
2731         * NEWS: Mention support for DWP file format version 2.
2732         * dwarf2read.c (dwarf2_section_info): Convert asection field to a
2733         union of asection, containing_section.  New fields virtual_offset
2734         and is_virtual.  Change type of readin filed from int to char.
2735         (dwo_sections, dwo_file): Tweak comments.
2736         (dwp_v2_section_ids): New enum.
2737         (dwp_sections): New fields abbrev, info, line, loc, macinfo, macro,
2738         str_offsets, types.
2739         (virtual_v1_dwo_sections): Renamed from virtual_dwo_sections.
2740         All uses updated.
2741         (virtual_v2_dwo_sections): New struct.
2742         (dwp_hash_table): New fields version, nr_columns.  Change type of
2743         section_pool field to a union.
2744         (dwp_file): New field version.
2745         (dwarf2_has_info): Check for virtual sections.
2746         (get_containing_section): New function.
2747         (get_section_bfd_owner, get_section_bfd_section): Call it.
2748         (dwarf2_locate_sections): Update.
2749         (dwarf2_section_empty_p): Update.
2750         (dwarf2_read_section): Handle virtual sections.
2751         (locate_dwz_sections): Update.
2752         (create_dwp_hash_table): Document and handle V2 format.
2753         (locate_v1_virtual_dwo_sections): Renamed from
2754         locate_virtual_dwo_sections and update.  All callers updated.
2755         (create_dwo_unit_in_dwp_v1): Renamed from create_dwo_in_dwp.
2756         Delete arg htab.  Rename arg section_index to unit_index.
2757         All callers updated.
2758         (MAX_NR_V1_DWO_SECTIONS): Renamed from MAX_NR_DWO_SECTIONS.
2759         All uses updated.
2760         (create_dwp_v2_section, create_dwo_unit_in_dwp_v2): New functions.
2761         (lookup_dwo_unit_in_dwp): Add V2 support.
2762         (dwarf2_locate_dwo_sections): Update.
2763         (dwarf2_locate_common_dwp_sections): Renamed from
2764         dwarf2_locate_dwp_sections and update.  All callers updated.
2765         (dwarf2_locate_v2_dwp_sections): New function.
2766         (open_and_init_dwp_file): Add V2 support.
2767         (read_str_index): New locals str_section, str_offsets_section.
2768
2769 2013-10-04  Pedro Alves  <palves@redhat.com>
2770
2771         * common/ptid.c (null_ptid, minus_one_ptid, ptid_build)
2772         (pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid)
2773         (ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p): Replace
2774         describing comments with references to ptid.h.
2775         * common/ptid.h: Remove intro description of constructors,
2776         accessors and predicates.
2777         (struct ptid): Reformat.
2778         (minus_one_ptid, ptid_build, pid_to_ptid, ptid_get_pid)
2779         (ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid): Change
2780         describing comments.
2781
2782 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
2783
2784         * aix-thread.c (sync_threadlists): Add missing ')' in call
2785         to ptid_build.
2786
2787 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
2788
2789         * procfs.c (procfs_init_inferior): Fix typo causing the build
2790         to fail.
2791
2792 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
2793
2794         * aix-thread.c (ptrace32): Remove cast to addr_ptr.
2795
2796 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
2797
2798         * mi/mi-main.c (run_one_inferior): Add function description.
2799         Make ARG a pointer to an integer whose value determines whether
2800         we should "run" or "start" the program.
2801         (mi_cmd_exec_run): Add handling of the "--start" option.
2802         Reject all other command-line options.
2803         * NEWS: Add entry for "-exec-run"'s new "--start" option.
2804
2805 2013-10-04  Yao Qi  <yao@codesourcery.com>
2806
2807         * remote-notif.h (REMOTE_NOTIF_ID): New enum.
2808         (struct notif_client) <pending_event>: Moved
2809         to struct remote_notif_state.
2810         <id>: New field.
2811         (struct remote_notif_state) <pending_event>: New field.
2812         (notif_event_xfree): Declare.
2813         * remote-notif.c (handle_notification): Adjust.
2814         (notif_event_xfree): New function.
2815         (do_notif_event_xfree): Call notif_event_xfree.
2816         (remote_notif_state_xfree): Call notif_event_xfree to free
2817         each element in field pending_event.
2818         * remote.c (discard_pending_stop_replies): Remove declaration.
2819         (discard_pending_stop_replies_in_queue): Declare.
2820         (remote_close): Call discard_pending_stop_replies_in_queue
2821         instead of discard_pending_stop_replies.
2822         (remote_start_remote): Adjust.
2823         (stop_reply_xfree): Call notif_event_xfree.
2824         (notif_client_stop): Adjust initialization.
2825         (remote_notif_remove_all): Rename it to ...
2826         (remove_stop_reply_for_inferior): ... this.  Update comments.
2827         Don't check INF is NULL.
2828         (discard_pending_stop_replies): Return early if notif_state is
2829         NULL.  Adjust.  Don't check INF is NULL.
2830         (remote_notif_get_pending_events): Adjust.
2831         (discard_pending_stop_replies_in_queue): New function.
2832         (remote_wait_ns): Likewise.
2833
2834 2013-10-04  Yao Qi  <yao@codesourcery.com>
2835
2836         * remote-notif.c (DECLARE_QUEUE_P): Remove.
2837         (notif_queue): Remove.
2838         (remote_notif_process): Add one parameter 'notif_queue'.
2839         Update comments.  Callers update.
2840         (remote_async_get_pending_events_token): Remove.
2841         (remote_notif_register_async_event_handler): Remove.
2842         (remote_notif_unregister_async_event_handler): Remove.
2843         (handle_notification): Add parameter 'notif_queue'.  Update
2844         comments.  Callers update.
2845         (notif_xfree): Remove.
2846         (remote_notif_state_allocate): New function.
2847         (remote_notif_state_xfree): New function.
2848         (_initialize_notif): Remove code to allocate queue.
2849         * remote-notif.h (DECLARE_QUEUE_P): Moved from remote-notif.c.
2850         (struct remote_notif_state): New.
2851         (handle_notification): Update declaration.
2852         (remote_notif_process): Likewise.
2853         (remote_notif_register_async_event_handler): Remove.
2854         (remote_notif_unregister_async_event_handler): Remove.
2855         (remote_notif_state_allocate): Declare.
2856         (remote_notif_state_xfree): Declare.
2857         * remote.c (struct remote_state) <notif_state>: New field.
2858         (remote_close): Don't call
2859         remote_notif_unregister_async_event_handler.  Call
2860         remote_notif_state_xfree.
2861         (remote_open_1): Don't call
2862         remote_notif_register_async_event_handler.  Call
2863         remote_notif_state_allocate.
2864
2865 2013-10-04  Yao Qi  <yao@codesourcery.com>
2866
2867         * varobj.c (create_child_with_value): Remove 'const' from the
2868         type of parameter 'name'.
2869         (varobj_add_child): Likewise.
2870         (install_dynamic_child): Remove 'const' from the type of
2871         parameter 'name'.
2872         (varobj_add_child): Likewise.
2873         (create_child_with_value): Likewise.  Update comments.  Don't
2874         duplicate 'name'.
2875         (update_dynamic_varobj_children): Duplicate 'name'
2876         and pass it to install_dynamic_child.
2877
2878 2013-10-03  Phil Muldoon  <pmuldoon@redhat.com>
2879
2880         * python/py-value.c (convert_value_from_python): Move PyInt_Check
2881         conversion logic to occur after PyLong_Check.  Comment on order
2882         change significance.
2883         * python/py-arch.c (archpy_disassemble): Comment on order of
2884         conversion for integers and longs.
2885
2886 2013-10-03  Pedro Alves  <palves@redhat.com>
2887
2888         * common/linux-ptrace.c (linux_check_ptrace_features): Factor out
2889         the PTRACE_O_TRACESYSGOOD and PTRACE_O_TRACEFORK to separate
2890         functions.  Always test for PTRACE_O_TRACESYSGOOD even if
2891         PTRACE_O_TRACEFORK is not supported.
2892         (linux_test_for_tracesysgood): New function.
2893         (linux_test_for_tracefork): New function, factored out from
2894         linux_check_ptrace_features, and also don't kill child_pid here.
2895
2896 2013-10-03  Tristan Gingold  <gingold@adacore.com>
2897
2898         * i386-darwin-nat.c (i386_darwin_dr_set): Fix argument type.
2899         Remove verbose error reporting.  Use detected state to
2900         thread_set_state call.
2901         (i386_darwin_dr_get): Fix return type.  Remove verbose error
2902         report.
2903         Remove trailing spaces.
2904
2905 2013-10-02  Pedro Alves  <palves@redhat.com>
2906
2907         * cp-valprint.c (cp_print_value_fields): Adjust calls to
2908         val_print_optimized_out.
2909         * jv-valprint.c (java_print_value_fields): Likewise.
2910         * p-valprint.c (pascal_object_print_value_fields): Likewise.
2911         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full)
2912         <DWARF_VALUE_REGISTER>: If the register was not saved, return a
2913         new optimized out value.
2914         * findvar.c (address_from_register): Likewise.
2915         * frame.c (put_frame_register): Tweak error string to say the
2916         register was not saved, rather than optimized out.
2917         * infcmd.c (default_print_one_register_info): Adjust call to
2918         val_print_optimized_out.  Use value_of_register instead of
2919         get_frame_register_value.
2920         * mi/mi-main.c (output_register): Use value_of_register instead of
2921         get_frame_register_value.
2922         * valprint.c (valprint_check_validity): Likewise.
2923         (val_print_optimized_out): New value parameter.  If the value is
2924         lval_register, print <not saved> instead.
2925         (value_check_printable, val_print_scalar_formatted): Adjust calls
2926         to val_print_optimized_out.
2927         * valprint.h (val_print_optimized_out): New value parameter.
2928         * value.c (struct value) <optimized_out>: Extend comment.
2929         (error_value_optimized_out): New function.
2930         (require_not_optimized_out): Use it.  Use a different string for
2931         lval_register values.
2932         * value.h (error_value_optimized_out): New declaration.
2933         * NEWS: Mention <not saved>.
2934
2935 2013-10-02  Joel Brobecker  <brobecker@adacore.com>
2936
2937         * symtab.c (compare_search_syms): Use FILENAME_CMP instead of
2938         strcmp to compare two symtab filenames.
2939
2940 2013-10-02  Joel Brobecker  <brobecker@adacore.com>
2941
2942         * symtab.c (search_symbols_equal): Delete.
2943         (sort_search_symbols_remove_dups): Replace call to
2944         search_symbols_equal by call to compare_search_syms,
2945         adjusting as necessary.
2946
2947 2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
2948
2949         PR python/15579
2950         * python/python.c: Document gdb.execute command in Python help.
2951
2952 2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
2953
2954         * python/py-frame.c (frame_info_to_frame_object): Use
2955         gdbpy_convert_exception. Clean up Python object on failure.
2956
2957 2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
2958
2959         * python/lib/gdb/command/frame_filters.py
2960         (InfoFrameFilter.list_frame_filters): Retrieve exception manually.
2961         (ShowFrameFilterPriority.invoke): Ditto.
2962
2963 2013-10-01  Keith Seitz  <keiths@redhat.com>
2964
2965         * linespec.c (struct ls_parser): Make 'saved_arg' const.
2966         (parse_linespec): Make 'argptr' const.
2967         Remove temporary cast of 'argptr' to const char **.
2968         (decode_line_full): Pass const pointer to parse_linespec.
2969         (decode_line_1): Likewise.
2970         (decode_objc): Make local variable 'new_argptr' const.
2971         (find_function_symbols): Remove temporary cast to char *
2972         to find_imps.
2973         * objc-lang.c (find_imps): Make argument 'method' const.
2974         Return const.
2975         * objc-lang.h (find_imps): Likewise.
2976
2977 2013-10-01  Keith Seitz  <keiths@redhat.com>
2978
2979         * completer.c (skip_quoted_chars): Make all arguments const.
2980         Return const.
2981         (skip_quoted): Likewise.
2982         * completer.h (skip_quoted_chars): Likewise.
2983         (skip_quoted): Likewise.
2984         * defs.h (skip_quoted): Remove duplicate declaration.
2985         * jv-exp.y: Include completer.h.
2986         (yylex): Remove unneccessary cast to char * fro skip_quoted.
2987         * p-exp.y: Include completer.h.
2988
2989 2013-10-01  Keith Seitz  <keiths@redhat.com>
2990
2991         * c-exp.y (parse_number): Make first argument const.
2992         Make a copy of the input to manipulate.
2993         (c_parse_escape): Make first argument const.
2994         Make local variable 'tokptr' const.
2995         (parse_string_or_char): Make first two arguments const.
2996         (macro_original_text): Make const.
2997         (lex_one_token): Make local variable 'tokstart' const.
2998         Likewise for local variables named 'p'.
2999         Cast away const for struct stoken (temporary).
3000         * c-lang.h (c_parse_escpae): Make first argument const.
3001         * cli/cli-cmds.c (echo_command): Make local variable 'p'
3002         const.
3003         * cli/cli-setshow.c (do_set_command): Likewise for 'p' in
3004         var_string case.
3005         * f-exp.y (parse_number): Make first argument const.
3006         (match_string_literal): Make local variable 'tokstart'
3007         const.
3008         (yylex): Make local variable 'p' const.
3009         Cast away const for struct stoken (temporary).
3010         * go-exp.y (parse_number): Make first argument const.
3011         (parse_string_or_char): Likewise.
3012         Make local variable 'tokstart' const.
3013         (lex_one_token): Likewise for numerous locals called 'p'.
3014         Cast away const for struct stoken (temporary).
3015         * jv-exp.y (parse_number): Make first argument const.
3016         Make local variables 'tokstart' and 'tokptr' const.
3017         Cast away const for call to skip_quoted (temporary).
3018         (yylex): Make local variable 'p' const.
3019         Cast away const for struct stoken (temporary).
3020         * m2-exp.y (parse_number): Make local variable 'p' const.
3021         (yylex): Likewise for 'tokstart'.
3022         Cast away const for struct stoken (temporary).
3023         Make local variable 'p' const.
3024         * macroexp.c (get_character_constant): Pass a const string
3025         to c_parse_escape.
3026         (get_string_literal): Likewise.
3027         (macro_expand_next): Make first argument const.
3028         Cast away const for init_shared_buffer.
3029         * macroexp.h (macro_expand_next): Make first argument const.
3030         * p-exp.y (yylex): Make a local copy of 'lexptr'.
3031         Pass a const string to c_parse_escape.
3032         Make local variables 'p' and 'namestart' const.
3033         * parse.c (lexptr): Make const.
3034         (prev_lexptr): Likewise.
3035         (find_template_name_end): Return const.
3036         Make argument const, too.
3037         (parse_exp_in_context): Make first argument const.
3038         Remove the entire const_hack.
3039         (parse_exp_in_context_1): Make first argument const.
3040         * parser-defs.h (find_template_name_end): Return const.
3041         Make argument const, too.
3042         (lexptr): Make const.
3043         (prev_lexptr): Likewise.
3044         * utils.c (parse_escape): Make second argument const.
3045         * utils.h (parse_escape): Likewise.
3046
3047 2013-10-01  Keith Seitz  <keiths@redhat.com>
3048
3049         * ada-exp.y (write_object_renaming): Update: struct stoken.ptr
3050         is now const.
3051         (block_lookup): Make 'raw_name' and 'name' const.
3052         * ada-lex.l (processString): Update for struct stoken.ptr.
3053         * c-exp.y (qualified_name : TYPENAME COLONCOLON '~' name): Likewise.
3054         (operator_stoken): Likewise.
3055         (lex_one_token): Remove temporary cast to char * for
3056         'yylval.sval.ptr'.
3057         * f-exp.y (yylex): Likewise.
3058         * gdb-types.c (lookup_struct_elt_type): Make argument 'name' const.
3059         * gdbtypes.h (lookup_struct_elt_type): Likewisee.
3060         * go-exp.y (lex_one_token): Remove temporary cast to char * for
3061         'yylval.sval.ptr'.
3062         * jv-exp.y (QualifiedName): Update for struct stoken.ptr.
3063         (yylex): Remove temporary cast to char * for 'yylval.sval.ptr'.
3064         * linespec.c (struct ls_parser): Make 'stream' const.
3065         (find_parameter_list_end): Make argument 'input' and local
3066         variable 'p' const.
3067         (linespec_lexer_lex_string): Make local variables 'start' and
3068         'p' const.
3069         Use skip_spaces_const instead of skip_spaces.
3070         (linespec_lexer_peek_token): Make local variable 'saved_stream'
3071         const.
3072         (parse_linespec): Temporarily cast 'argptr' to const for
3073         'parser->lexer.stream'.
3074         * m2-exp.y (yylex): Remove temporary cast to char * for
3075         'yylval.sval.ptr'.
3076         * objc-lang.c (add_msglist): Make local variable 'p' const.
3077         * p-exp.y (exp : exp '['): Update for struct stoken.ptr.
3078         (exp : STRING): Make 'sp' const.
3079         (parse_number): Make argument 'p' const.
3080         * parser-defs.h (struct stoken): Make 'ptr' const.
3081
3082 2013-10-01  Doug Evans  <dje@google.com>
3083
3084         * cli/cli-decode.c: Remove unnecessary inclusion of tui/tui.h.
3085
3086 2013-10-01  Yao Qi  <yao@codesourcery.com>
3087
3088         * varobj.c (c_value_of_root): Remove declaration.
3089         (cplus_value_of_root, java_value_of_root): Likewise.
3090         (ada_value_of_root): Likewise.
3091         (struct language_specific) <value_of_root>: Remove.
3092         (languages): Update initialization.
3093         (check_scope): Move earlier.
3094         (c_value_of_root): Move earlier and rename to ...
3095         (value_of_root_1): ... this.
3096         (value_of_root): Caller update.
3097         (cplus_value_of_root, java_value_of_root): Remove.
3098         (ada_value_of_root): Remove.
3099
3100 2013-10-01  Yao Qi  <yao@codesourcery.com>
3101
3102         * varobj.c (varobj_format_string): Remove "unknown".
3103         (languages): Remove the first element.
3104         * varobj.h (enum varobj_languages): Remove vlang_c.
3105
3106 2013-10-01  Yao Qi  <yao@codesourcery.com>
3107
3108         * varobj.c (struct language_specific) <language>: Remove.
3109         (languages): Update the initialization.
3110
3111 2013-10-01  Yao Qi  <yao@codesourcery.com>
3112
3113         * arm-wince-tdep.c: Remove inclusion of "solib.h" and
3114         "solib-target.h".  Include "windows-tdep.h".
3115         (arm_wince_init_abi): Call windows_init_abi.  Remove call to
3116         set_solib_ops and set_gdbarch_has_dos_based_file_system.
3117         * configure.tgt (arm*-wince-pe | arm*-*-mingw32ce*): Append
3118         windows-tdep.o to gdb_target_obs.
3119
3120 2013-10-01  Yao Qi  <yao@codesourcery.com>
3121
3122         * amd64-windows-tdep.c: Remove inclusion of "solib.h" and
3123         "solib-target.h".
3124         (amd64_windows_init_abi): Don't call set_solib_ops and
3125         set_gdbarch_iterate_over_objfiles_in_search_order.  Call
3126         windows_init_abi instead.
3127         * i386-cygwin-tdep.c: Remove inclusion of "solib.h" and
3128         "solib-target.h".
3129         (i386_cygwin_init_abi): Don't call set_solib_ops,
3130         set_gdbarch_has_dos_based_file_system and
3131         set_gdbarch_iterate_over_objfiles_in_search_order.  Call
3132         windows_init_abi instead.
3133         * windows-tdep.c: Include "solib.h" and "solib-target.h".
3134         (windows_init_abi): New function.
3135         (windows_iterate_over_objfiles_in_search_order): Make it
3136         static.
3137         * windows-tdep.h (windows_init_abi): Declare.
3138         (windows_iterate_over_objfiles_in_search_order): Remove
3139         declaration.
3140
3141 2013-10-01  Jerome Guitton  <guitton@adacore.com>
3142
3143         Checked in by Joel Brobecker  <brobecker@adacore.com>
3144         * system-gdbinit/elinos.py (get_elinos_environment): Return an
3145         incomplete dictionnary instead of None in case of missing
3146         environment variables.
3147         (elinos_init): in case of an incomplete environment, best
3148         effort to load system libraries instead of abort.
3149
3150 2013-10-01  Joel Brobecker  <brobecker@adacore.com>
3151
3152         * ada-lang.c (ada_has_this_exception_support): Ignore
3153         mst_solib_trampoline minimal symbols.
3154
3155 2013-09-30  Tristan Gingold  <gingold@adacore.com>
3156
3157         * i386-darwin-nat.c (darwin_complete_target): Install methods for
3158         hardware watchpoint.
3159         (i386_darwin_dr_set): Support 32 and 64 bit states.
3160         (i386_darwin_dr_get): Likewise.
3161         (i386_darwin_dr_set_control): Make static.
3162         (i386_darwin_dr_set_addr, i386_darwin_dr_get_addr)
3163         (i386_darwin_dr_get_status, i386_darwin_dr_get_control): Likewise.
3164
3165 2013-09-30  Luis Machado  <lgustavo@codesourcery.com>
3166
3167         * aarch64-linux-nat.c: Replace PIDGET with ptid_get_pid.
3168         Replace TIDGET with ptid_get_lwp.
3169         Replace GET_LWP with ptid_get_lwp.
3170         * aix-thread.c (BUILD_THREAD, BUILD_LWP): Remove.
3171         Replace BUILD_THREAD with ptid_build.
3172         Replace BUILD_LWP with ptid_build.
3173         Replace PIDGET with ptid_get_pid.
3174         Replace TIDGET with ptid_get_lwp.
3175         * alphabsd-nat.c: Replace PIDGET with ptid_get_pid.
3176         * amd64-linux-nat.c: Replace PIDGET with ptid_get_pid.
3177         Replace TIDGET with ptid_get_lwp.
3178         * amd64bsd-nat.c: Replace PIDGET with ptid_get_pid.
3179         * arm-linux-nat.c: Replace PIDGET with ptid_get_pid.
3180         Replace TIDGET with ptid_get_lwp.
3181         Replace GET_LWP with ptid_get_lwp.
3182         * armnbsd-nat.c: Replace PIDGET with ptid_get_pid.
3183         * auxv.c: Likewise.
3184         * breakpoint.c: Likewise.
3185         * common/ptid.c (ptid_is_pid): Condense check for
3186         null_ptid and minus_one_ptid.
3187         (ptid_lwp_p): New function.
3188         (ptid_tid_p): New function.
3189         * common/ptid.h: Update comments for accessors.
3190         (ptid_lwp_p): New prototype.
3191         (ptid_tid_p): New prototype.
3192         * defs.h (PIDGET, TIDGET, MERGEPID): Do not define.
3193         * gcore.c: Replace PIDGET with ptid_get_pid.
3194         * gdbthread.h: Likewise.
3195         * gnu-nat.c: Likewise.
3196         * hppa-linux-nat.c: Replace PIDGET with ptid_get_pid.
3197         Replace TIDGET with ptid_get_lwp.
3198         * hppabsd-nat.c: Replace PIDGET with ptid_get_pid.
3199         * hppanbsd-nat.c: Likewise.
3200         * i386-linux-nat.c: Replace PIDGET with ptid_get_pid.
3201         Replace TIDGET with ptid_get_lwp.
3202         * i386bsd-nat.c: Replace PIDGET with ptid_get_pid.
3203         * ia64-linux-nat.c: Replace PIDGET with ptid_get_pid.
3204         * infcmd.c: Likewise.
3205         * inferior.h: Likewise.
3206         * inflow.c: Likewise.
3207         * infrun.c: Likewise.
3208         * linux-fork.c: Likewise.
3209         * linux-nat.c: Replace PIDGET with ptid_get_pid.
3210         Replace GET_PID with ptid_get_pid.
3211         Replace is_lwp with ptid_lwp_p.
3212         Replace GET_LWP with ptid_get_lwp.
3213         Replace BUILD_LWP with ptid_build.
3214
3215 2013-09-28  Mike Frysinger  <vapier@gentoo.org>
3216
3217         * common/linux-btrace.c: Move sys/syscall.h out of the
3218         HAVE_LINUX_PERF_EVENT_H check and wrap it in HAVE_SYS_SYSCALL_H.
3219         Also check for SYS_perf_event_open before attempting to buid.
3220
3221 2013-09-27  Doug Evans  <dje@google.com>
3222
3223         * dwarf2read.c (dwarf2_section_info): Add comment.
3224         (dwp_file): Split loaded_cutus into loaded_cus, loaded_tus.
3225         All uses updated.
3226         (dwarf2_section_empty_p): Rename arg from "info" to "section".
3227         (dwarf2_read_section): Delete unused local "header".  Add section
3228         name to error message.
3229         (create_dwo_in_dwp): Tweak comment.
3230         (MAX_NR_DWO_SECTIONS): Combine count of .debug_macro + .debug_macinfo.
3231
3232         * dwarf2read.c (die_reader_specs): Tweak comment.
3233         (get_section_bfd_owner, get_section_bfd_section): New functions.
3234         (get_section_name, get_section_file_name): New functions.
3235         (get_section_id, get_section_flags): New functions.
3236         (*): Use new functions to access section fields.
3237
3238         * dwarf2read.c (struct dwo_file): Add/tweak comments.
3239         (lookup_dwo_unit_in_dwp): Renamed from lookup_dwo_in_dwp.  Remove
3240         arg "htab".  All callers updated.
3241         (create_debug_types_hash_table): Remove redundant copy of
3242         abbrev_section.
3243         (create_dwo_in_dwp): Tweak comments.
3244         (read_str_index): Tweak comment.  Record dwarf form name in static
3245         local.
3246
3247 2013-09-27  Pedro Alves  <palves@redhat.com>
3248
3249         * remote.h (REMOTE_SYSROOT_PREFIX): New define.
3250         (remote_filename_p): Add comment.
3251         * remote.c (remote_filename_p): Adjust to use
3252         REMOTE_SYSROOT_PREFIX.
3253         * solib.c (solib_find): When deciding whether we need to add a
3254         directory separator, check whether the sysroot is "remote:"
3255         instead of checking whether the patch has a drive spec.  Add
3256         comments.
3257
3258 2013-09-27  Pedro Alves  <palves@redhat.com>
3259
3260         * remote.c (struct stop_reply) <solibs_changed, replay_event>:
3261         Delete fields.
3262         (remote_parse_stop_reply): Adjust, setting event->ws.kind
3263         directly.
3264
3265 2013-09-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
3266
3267         Fix set debug frame output.
3268         * frame.c (fprint_frame_type): Add TAILCALL_FRAME entry.  Move
3269         SENTINEL_FRAME entry lower to match enum frame_type order.
3270
3271 2013-09-26  Pierre Muller  <muller@sourceware.org>
3272
3273         Replace constant values 8 to 15 by AMD64_R8_REGNUM to
3274         AMD64_R15_REGNUM when a register index is expected.
3275         * amd64-windows-tdep.c (amd64_windows_dummy_call_integer_regs):
3276         Substitute in array.
3277         * amd64-tdep.c (amd64_dwarf_regmap): Ditto.
3278         (amd64_push_arguments): Substitute in integer_regnum array.
3279
3280 2013-09-25  Doug Evans  <dje@google.com>
3281
3282         * objfiles.c (allocate_objfile): Move comment to better place.
3283
3284         New option "set debug symfile on".
3285         * NEWS: Mention "set debug symfile".
3286         * Makefile.in (SFILES): Add symfile-debug.c.
3287         (COMMON_OBS): Add symfile-debug.o.
3288         * elfread.c (elf_symfile_read): Use objfile_set_sym_fns to set the
3289         objfile's symbol functions.
3290         * objfiles.h (objfile_set_sym_fns): Declare.
3291         * symfile-debug.c: New file.
3292         * symfile.c (syms_from_objfile_1): Use objfile_set_sym_fns to set the
3293         objfile's symbol functions.
3294         (reread_symbols): Ditto.
3295
3296         * symfile.h (struct sym_fns): Delete member "sym_flavour".
3297         All uses updated.
3298         (add_symtab_fns): Update prototype.
3299         * symfile.c (sym_fns_ptr): Delete.  Replace with ...
3300         (registered_sym_fns): ... this.
3301         (symtab_fns): Update.
3302         (add_symtab_fns): New arg "flavour".  All callers updated.
3303         (find_sym_fns): Rewrite to use new sym_fns registry.
3304
3305         * symfile.h (struct sym_fns): Add "objfile" argument to
3306         sym_read_linetable.  All uses updated.
3307
3308         * symtab.c (domain_name, search_domain_name): New functions.
3309         * symtab.h (domain_name, search_domain_name): Declare.
3310
3311         * symfile.h (struct quick_symbol_functions): Reorg arg list of
3312         map_matching_symbols so objfile is first.  All uses updated.
3313         * dwarf2read.c (dw2_map_matching_symbols): Update signature.
3314         * psymtab.c (map_matching_symbols_psymtab): Update signature.
3315
3316 2013-09-25  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3317
3318         PR shlibs/8882
3319         * solib-svr4.c (svr4_read_so_list): Skip the vDSO when reading
3320         link map entries.
3321
3322 2013-09-24  Doug Evans  <dje@google.com>
3323
3324         * objfiles.c (free_objfile): Move comment.
3325
3326 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
3327
3328         * ada-exp.y (string_to_operator): Delete.
3329         (dummy_string_to_ada_operator): Delete.
3330
3331 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
3332
3333         Revert:
3334         * i386-tdep.h (enum amd64_reg_class): New, moved here from
3335         amd64-tdep.c.
3336         (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
3337         call_dummy_integer_regs, and classify.
3338         * amd64-tdep.h (amd64_classify): Add declaration.
3339         * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
3340         (amd64_reg_class): Delete, moved to i386-tdep.h.
3341         (amd64_classify): Make non-static.  Move declaration to amd64-tdep.h.
3342         Replace call to amd64_classify by call to tdep->classify.
3343         (amd64_push_arguments): Get the list of registers to use for
3344         passing integer parameters from the gdbarch tdep structure,
3345         rather than using a hardcoded one.  Replace calls to amd64_classify
3346         by calls to tdep->classify.
3347         (amd64_push_dummy_call): Get the register number used for
3348         the "hidden" argument from tdep->call_dummy_integer_regs.
3349         (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
3350         and tdep->call_dummy_integer_regs.  Set tdep->classify.
3351
3352 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
3353
3354         Revert:
3355         * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
3356         * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
3357         where tdep->memory_args_by_pointer is non-zero.
3358
3359 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
3360
3361         Revert:
3362         * i386-tdep.h (struct gdbarch_tdep): Add new field
3363         integer_param_regs_saved_in_caller_frame.
3364         * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
3365         stack if tdep->integer_param_regs_saved_in_caller_frame is set.
3366
3367 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
3368
3369         * amd64-windows-tdep.c: #include "value.h"
3370         (amd64_windows_classify): Delete.
3371         (amd64_windows_passed_by_integer_register)
3372         (amd64_windows_passed_by_xmm_register)
3373         (amd64_windows_passed_by_pointer)
3374         (amd64_windows_adjust_args_passed_by_pointer)
3375         (amd64_windows_store_arg_in_reg, amd64_windows_push_arguments)
3376         (amd64_windows_push_dummy_call): New functions.
3377         (amd64_windows_init_abi): Remove setting of
3378         tdep->call_dummy_num_integer_regs, tdep->call_dummy_integer_regs,
3379         tdep->classify, tdep->memory_args_by_pointer and
3380         tdep->integer_param_regs_saved_in_caller_frame.
3381         Add call to set_gdbarch_push_dummy_call.
3382
3383 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
3384
3385         * dwarf2read.c (open_and_init_dwp_file): Try open_dwp_file also with
3386         objfile->original_name.
3387
3388 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
3389
3390         Pass down original filename for objfile.
3391         * coffread.c (coff_symfile_read): Update symbol_file_add_separate call.
3392         * elfread.c (elf_symfile_read): Likewise.
3393         * jit.c (jit_object_close_impl): Update allocate_objfile call, no
3394         longer set ORIGINAL_NAME.
3395         (jit_bfd_try_read_symtab): Update symbol_file_add_from_bfd call.
3396         * jv-lang.c (get_dynamics_objfile): Update allocate_objfile call.
3397         * machoread.c (macho_add_oso_symfile): Add parameter name.  Update
3398         symbol_file_add_from_bfd call.
3399         (macho_symfile_read_all_oso): Update two macho_add_oso_symfile calls.
3400         (macho_check_dsym): Add parameter filenamep.  Change function comment.
3401         Set *filenamep.
3402         (macho_symfile_read): New variable dsym_filename.  Update
3403         macho_check_dsym call.  Use it for symbol_file_add_separate.
3404         * objfiles.c (allocate_objfile): Add parameter name.  New comment for
3405         it.  Use it for objfile->original_name.
3406         (objfile_name): Return OBFD's filename, if available.
3407         * objfiles.h (allocate_objfile): Add new parameter name.
3408         * solib.c (solib_read_symbols): Update symbol_file_add_from_bfd call.
3409         * symfile-mem.c (symbol_file_add_from_memory): Update
3410         symbol_file_add_from_bfd call.
3411         * symfile.c (read_symbols): Update symbol_file_add_separate call, new
3412         comment for it.
3413         (symbol_file_add_with_addrs): New parameter name, add function comment
3414         for it.  Remove variable name.  Update allocate_objfile call.
3415         (symbol_file_add_separate): New parameter name, add function comment
3416         for it.  Update symbol_file_add_with_addrs call.
3417         (symbol_file_add_from_bfd): New parameter name.  Update
3418         symbol_file_add_with_addrs call.
3419         (symbol_file_add): Update symbol_file_add_from_bfd call.
3420         (reread_symbols): New variable original_name.  Save
3421         objfile->original_name by it.
3422         * symfile.h (symbol_file_add_from_bfd, symbol_file_add_separate): Add
3423         second parameter.
3424
3425 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
3426
3427         Code cleanup: Add objfile_name accessor function.
3428         * ada-lang.c (is_known_support_routine): Use objfile_name.
3429         * auto-load.c (source_gdb_script_for_objfile)
3430         (auto_load_objfile_script): Likewise.
3431         * coffread.c (coff_symtab_read, read_one_sym): Likewise.
3432         * dbxread.c (dbx_symfile_read): Likewise.
3433         * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
3434         * dwarf2loc.c (locexpr_describe_location_piece): Likewise.
3435         * dwarf2read.c (dwarf2_get_dwz_file, dwarf2_read_index)
3436         (dw2_symtab_iter_next, dw2_expand_symtabs_matching)
3437         (lookup_dwp_signatured_type, lookup_dwo_unit)
3438         (dwarf2_build_psymtabs_hard, scan_partial_symbols, process_queue)
3439         (fixup_go_packaging, process_imported_unit_die, dwarf2_physname)
3440         (read_import_statement, create_dwo_cu, open_and_init_dwp_file)
3441         (lookup_dwo_cutu, read_call_site_scope, dwarf2_ranges_read)
3442         (dwarf2_record_block_ranges, read_common_block, read_typedef)
3443         (read_subrange_type, load_partial_dies, read_partial_die)
3444         (read_addr_index_1, read_str_index, dwarf_decode_lines_1)
3445         (die_containing_type, build_error_marker_type, lookup_die_type)
3446         (follow_die_ref_or_sig, follow_die_ref, dwarf2_fetch_die_loc_sect_off)
3447         (dwarf2_fetch_constant_bytes, follow_die_sig, get_signatured_type)
3448         (get_DW_AT_signature_type, write_psymtabs_to_index)
3449         (save_gdb_index_command): Likewise.
3450         * elfread.c (find_separate_debug_file_by_buildid, elf_symfile_read):
3451         Likewise.
3452         * expprint.c (dump_subexp_body_standard): Likewise.
3453         * gdbtypes.c (type_name_no_tag_or_error): Likewise.
3454         * jit.c (jit_object_close_impl): Use the objfile field name renamed to
3455         original_name.
3456         * linux-thread-db.c (try_thread_db_load_from_pdir_1): New variable
3457         obj_name, use objfile_name for it, use the variable.
3458         (try_thread_db_load_from_pdir, has_libpthread, thread_db_new_objfile):
3459         Use objfile_name.
3460         * machoread.c (macho_symtab_read, macho_check_dsym)
3461         (macho_symfile_relocate): Likewise.
3462         * maint.c (maintenance_translate_address): Likewise.
3463         * minidebug.c (find_separate_debug_file_in_section): Likewise.
3464         * minsyms.c (install_minimal_symbols): Likewise.
3465         * objfiles.c (allocate_objfile): Use the objfile field name renamed to
3466         original_name.
3467         (filter_overlapping_sections): Use objfile_name.
3468         (objfile_name): New function.
3469         * objfiles.h (struct objfile): Rename field name to original_name.
3470         (objfile_name): New prototype.
3471         * printcmd.c (sym_info, address_info): Use objfile_name.
3472         * probe.c (parse_probes, collect_probes, compare_probes)
3473         (info_probes_for_ops): Likewise.
3474         * progspace.c (clone_program_space): Likewise.
3475         * psymtab.c (require_partial_symbols, dump_psymtab, allocate_psymtab)
3476         (maintenance_info_psymtabs): Likewise.
3477         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
3478         (source_section_scripts): Likewise.
3479         * python/py-objfile.c (objfpy_get_filename): Likewise.
3480         * python/py-progspace.c (pspy_get_filename): Likewise.
3481         * solib-aix.c (solib_aix_get_toc_value): Likewise.
3482         * solib-som.c (match_main, som_solib_section_offsets): Likewise.
3483         * solib.c (solib_read_symbols): Likewise.
3484         * stabsread.c (scan_file_globals): Likewise.
3485         * stap-probe.c (handle_stap_probe): Likewise.
3486         * symfile.c (symbol_file_clear, separate_debug_file_exists)
3487         (find_separate_debug_file_by_debuglink): Likewise.
3488         (reread_symbols): Likewise.  Use the objfile field name renamed to
3489         original_name.
3490         (allocate_symtab): Use objfile_name.
3491         * symmisc.c (print_symbol_bcache_statistics, print_objfile_statistics)
3492         (dump_objfile, dump_msymbols, dump_symtab_1)
3493         (maintenance_print_msymbols, maintenance_print_objfiles)
3494         (maintenance_info_symtabs, maintenance_check_symtabs): Likewise.
3495         * target.c (target_translate_tls_address, target_info): Likewise.
3496         * xcoffread.c (xcoff_initial_scan): Make variable name const.  Use
3497         objfile_name.
3498
3499 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
3500
3501         Code cleanup.
3502         * probe.c (parse_probes): Rename variable objfile_name to
3503         objfile_namestr.
3504
3505 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
3506
3507         Remove solib-sunos.c.
3508         * Makefile.in (ALLDEPFILES): Remove solib-sunos.c.
3509         * config/m68k/obsd.mh (NATDEPFILES): Remove solib-sunos.o.
3510         * objfiles.c (rt_common_objfile): Remove.
3511         (free_objfile): Remove rt_common_objfile comparison.
3512         * objfiles.h (rt_common_objfile): Remove.
3513         * solib-sunos.c: Remove.
3514         * symfile.c (reread_symbols): Remove solib-sunos.c comment.
3515
3516 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
3517
3518         Remove a.out NetBSD and OpenBSD hosts.
3519         * NEWS (Removed native configurations): New.
3520         * config/arm/nbsdaout.mh: Remove.
3521         * config/i386/nbsdaout.mh: Remove.
3522         * config/i386/obsdaout.mh: Remove.
3523         * config/m68k/nbsdaout.mh: Remove.
3524         * config/sparc/nbsdaout.mh: Remove.
3525         * config/vax/nbsdaout.mh: Remove.
3526         * configure.host (arm*-*-netbsd*, i[34567]86-*-netbsd*)
3527         (i[34567]86-*-openbsd[0-2].*, i[34567]86-*-openbsd3.[0-3])
3528         (m68*-*-netbsd*, sparc-*-netbsd*, vax-*-netbsd*): Add them to obsolete
3529         error.
3530         (arm*-*-netbsd*, i[34567]86-*-netbsd*, i[34567]86-*-openbsd[0-2].*)
3531         (i[34567]86-*-openbsd3.[0-3], m68*-*-netbsd*, sparc-*-netbsdaout*)
3532         (sparc-*-netbsd*, vax-*-netbsd*): Remove.
3533
3534 2013-09-23  Tom Tromey  <tromey@redhat.com>
3535
3536         * linespec.c (struct minsym_and_objfile): Remove.
3537         (minsym_and_objfile_d): Remove.
3538         (struct linespec, struct collect_info, linespec_parse_basic)
3539         (convert_linespec_to_sals, linespec_parser_delete, decode_objc)
3540         (compare_msymbols, find_method, find_function_symbols)
3541         (find_linespec_symbols, struct collect_minsyms, compare_msyms)
3542         (add_minsym, search_minsyms_for_name): Update.
3543
3544 2013-09-23  Andrew Burgess  <aburgess@broadcom.com>
3545
3546         * regcache.c: Add include of valprint.h.
3547         (dump_endian_bytes): Delete.
3548         (regcache_dump): Use print_hex_chars not dump_endian_bytes.
3549
3550 2013-09-23  Andrew Burgess  <aburgess@broadcom.com>
3551
3552         * sh64-tdep.c (sh64_do_fp_register): Use print_hex_chars.
3553
3554 2013-09-19  Pedro Alves  <palves@redhat.com>
3555
3556         * breakpoint.c (remove_threaded_breakpoints): Skip non-user
3557         breakpoints.
3558
3559 2013-09-19  Pedro Alves  <palves@redhat.com>
3560             Thomas Schwinge  <thomas@codesourcery.com>
3561             Yue Lu  <hacklu.newborn@gmail.com>
3562
3563         * gnu-nat.c (gnu_read_inferior, gnu_write_inferior): Make static.
3564         Take a gdb_byte pointer instead of a char pointer.
3565
3566         * gnu-nat.c (gnu_xfer_memory): Adjust interface as
3567         gnu_xfer_partial helper.
3568         (gnu_xfer_partial): New function.
3569         (gnu_target): Don't install a deprecated_xfer_memory hook.
3570         Install a to_xfer_partial hook.
3571
3572 2013-09-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
3573
3574         Constification.
3575         * main.c (captured_main): Replace catch_command_errors by
3576         catch_command_errors_const.  Twice.
3577         * symfile.c (symbol_file_add_main_1): Make args parameter const.
3578         (symbol_file_add): Make name parameter const.
3579         (symbol_file_add_main, symbol_file_add_main_1): Make args parameter const.
3580         (symfile_bfd_open): Make name parameter const, rename it to cname.  Add
3581         variable name.  Change their usage accordingly.
3582         * symfile.h (symbol_file_add, symfile_bfd_open): Make first parameter
3583         const.
3584         (symbol_file_add_main): Make args parameter const.
3585
3586 2013-09-18  Raunaq Bathija  <raunaq12@in.ibm.com>
3587             Ulrich Weigand  <uweigand@de.ibm.com>
3588
3589         * xcoffread.c (struct coff_symbol): Use CORE_ADDR as type
3590         of c_value member.
3591         (read_xcoff_symtab): Use CORE_ADDR as type of fcn_start_addr.
3592
3593 2013-09-18  Pedro Alves  <palves@redhat.com>
3594             Yue Lu  <hacklu.newborn@gmail.com>
3595
3596         * gnu-nat.c (inf_validate_procs, gnu_wait, gnu_resume)
3597         (gnu_create_inferior)
3598         (gnu_attach, gnu_thread_alive, gnu_pid_to_str, cur_thread)
3599         (set_sig_thread_cmd): Use the lwpid field of ptids to
3600         store/extract thread ids instead of the tid field.
3601         * i386gnu-nat.c (gnu_fetch_registers): Adjust.
3602
3603 2013-09-18  Andrew Burgess  <aburgess@broadcom.com>
3604
3605         * infcmd.c (default_print_one_register_info): Add detection of
3606         optimized out values.
3607         (default_print_registers_info): Switch to using
3608         get_frame_register_value.
3609
3610 2013-09-18  Markus Metzger  <markus.t.metzger@intel.com>
3611
3612         * infrun.c (handle_inferior_event): Check if we know the
3613         function start address before setting a resume breakpoint.
3614
3615 2013-09-18  Pedro Alves  <palves@redhat.com>
3616
3617         * gnu-nat.c (set_sig_thread_cmd): Compare the thread's ptid to
3618         minus_one_ptid instead of looking at the ptid's tid field and
3619         comparing that to -1.
3620
3621 2013-09-18  Andrew Burgess  <aburgess@broadcom.com>
3622
3623         * main.h (get_gdb_program_name): Remove extra whitespace.
3624
3625 2013-09-18  Andrew Burgess  <aburgess@broadcom.com>
3626
3627         * main.h (get_gdb_program_name): Add declaration.
3628         * main.c (get_gdb_program_name): Add definition.
3629
3630 2013-09-17  Doug Evans  <dje@google.com>
3631
3632         * dwarf2read.c: Move definitions of complaint functions to after
3633         forward declarations of local functions.
3634
3635 2013-09-17  Muhammad Waqas <mwaqas@codesourcery.com>
3636             Pedro Alves  <palves@redhat.com>
3637
3638         PR gdb/11568
3639         * breakpoint.c (remove_threaded_breakpoints): New function.
3640         (_initialize_breakpoint): Attach remove_threaded_breakpoints
3641         as thread_exit observer.
3642
3643 2013-09-17  Pedro Alves  <palves@redhat.com>
3644
3645         PR gdb/15911
3646         * ada-tasks.c (task_command_1): Adjust call to print_stack_frame.
3647         * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
3648         * corelow.c (core_open):
3649         * frame.h (print_stack_frame, print_frame_info): New
3650         'set_current_sal' parameter.
3651         * infcmd.c (finish_command, kill_command): Adjust call to
3652         print_stack_frame.
3653         * inferior.c (inferior_command): Likewise.
3654         * infrun.c (normal_stop): Likewise.
3655         * linux-fork.c (linux_fork_context): Likewise.
3656         * record-full.c (record_full_goto_entry, record_full_restore):
3657         Likewise.
3658         * remote-mips.c (common_open): Likewise.
3659         * stack.c (print_stack_frame): New 'set_current_sal' parameter.
3660         Use it.
3661         (print_frame_info): New 'set_current_sal' parameter.  Set the last
3662         displayed sal depending on the new paremeter instead of looking at
3663         print_what.
3664         (backtrace_command_1, select_and_print_frame, frame_command)
3665         (current_frame_command, up_command, down_command): Adjust call to
3666         print_stack_frame.
3667         * thread.c (print_thread_info, restore_selected_frame)
3668         (do_captured_thread_select): Adjust call to print_stack_frame.
3669         * tracepoint.c (tfind_1): Likewise.
3670         * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
3671         (mi_cmd_stack_info_frame): Likewise.
3672         * mi/mi-interp.c (mi_on_normal_stop): Likewise.
3673         * mi/mi-main.c (mi_cmd_exec_return, mi_cmd_trace_find): Likewise.
3674
3675 2013-09-16  Sergio Durigan Junior  <sergiodj@redhat.com>
3676
3677         * value.c (isvoid_internal_fn): Replace "parameter" with
3678         "argument".
3679
3680 2013-09-16  Stan Shebs  <stan@codesourcery.com>
3681
3682         * README: Update references to writing code for GDB.
3683         * configure.ac (build_warnings): Remove obsolete comment.
3684         * configure: Regenerate.
3685         * gdbarch.sh: Remove references to gdbint.texinfo.
3686         * gdbarch.h: Regenerate.
3687         * gdbtypes.c (objfile_type): Remove comments referencing internals
3688         manual and D10V.
3689
3690 2013-09-16  Sergio Durigan Junior  <sergiodj@redhat.com>
3691
3692         * NEWS: Mention new convenience function $_isvoid.
3693         * value.c (isvoid_internal_fn): New function.
3694         (_initialize_values): Add new convenience function $_isvoid.
3695
3696 2013-09-16  Pierre Muller  <muller@sourceware.org>
3697
3698         * arm-linux-tdep.c: Add "elf/common.h" header.
3699         Remove AT_HWCAP macro definintion as it is provided in
3700         added include file.
3701         * s390-tdep.c: Remove system header <elf.h>
3702         Add "elf/common.h" header for AT_HWCAP definition.
3703         (s390_core_read_description): Use correct CORE_ADDR
3704         for hwcap local variable used as third parameter
3705         of function target_auxv_search.
3706
3707 2013-09-14  Pierre Muller  <muller@sourceware.org>
3708             Tom Tromey  <tromey@redhat.com>
3709             Pedro Alves  <palves@redhat.com>
3710
3711         * common/filestuff.c (gdb_fopen_cloexec): Do not try to use "e"
3712         mode if operating system doesn't know O_CLOEXEC.
3713
3714 2013-09-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
3715
3716         Code cleanup.
3717         * symfile.c (reread_symbols): Move variable obfd_filename to a more
3718         inner block.
3719
3720 2013-09-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3721
3722         * NEWS: Mention TDB support.
3723         * features/s390-tdb.xml: New file.
3724         * features/s390-te-linux64.xml: New file.
3725         * features/s390x-te-linux64.xml: New file.
3726         * features/Makefile (WHICH): Add new tdescs above.
3727         (s390-te-linux64-expedite): Set.
3728         (s390x-te-linux64-expedite): Set.
3729         * features/s390-te-linux64.c: New file (generated).
3730         * features/s390x-te-linux64.c: New file (generated).
3731         * regformats/s390-te-linux64.dat: New file (generated).
3732         * regformats/s390x-te-linux64.dat: New file (generated).
3733         * s390-tdep.h (HWCAP_S390_HIGH_GPRS): Define.
3734         (HWCAP_S390_TE): Likewise.
3735         (S390_TDB_DWORD0_REGNUM): Likewise.
3736         (S390_TDB_DWORD0_REGNUM): Likewise.
3737         (S390_TDB_ABORT_CODE_REGNUM): Likewise.
3738         (S390_TDB_CONFLICT_TOKEN_REGNUM): Likewise.
3739         (S390_TDB_ATIA_REGNUM): Likewise.
3740         (S390_TDB_R0_REGNUM): Likewise.
3741         (S390_TDB_R1_REGNUM): Likewise.
3742         (S390_TDB_R2_REGNUM): Likewise.
3743         (S390_TDB_R3_REGNUM): Likewise.
3744         (S390_TDB_R4_REGNUM): Likewise.
3745         (S390_TDB_R5_REGNUM): Likewise.
3746         (S390_TDB_R6_REGNUM): Likewise.
3747         (S390_TDB_R7_REGNUM): Likewise.
3748         (S390_TDB_R8_REGNUM): Likewise.
3749         (S390_TDB_R9_REGNUM): Likewise.
3750         (S390_TDB_R10_REGNUM): Likewise.
3751         (S390_TDB_R11_REGNUM): Likewise.
3752         (S390_TDB_R12_REGNUM): Likewise.
3753         (S390_TDB_R13_REGNUM): Likewise.
3754         (S390_TDB_R14_REGNUM): Likewise.
3755         (S390_TDB_R15_REGNUM): Likewise.
3756         (S390_NUM_REGS): Increase.
3757         (S390_IS_TDBREGSET_REGNUM): New macro.
3758         (s390_regmap_tdb): Declare.
3759         (s390_sizeof_tdbregset): Define.
3760         (tdesc_s390_te_linux64): Declare.
3761         (tdesc_s390x_te_linux64): Likewise.
3762         * s390-tdep.c: Add includes for "auxv.h", <elf.h>,
3763         "features/s390-te-linux64.c", and "features/s390x-te-linux64.c".
3764         (s390_regmap_tdb): New regmap.
3765         (s390_supply_tdb_regset): New function.
3766         (s390_tdb_regset): New regset.
3767         (s390_linux64v2_regset_sections): Add TDB regset to list.
3768         (s390x_linux64v2_regset_sections): Likewise.
3769         (s390_regset_from_core_section): Recognize TDB core note section.
3770         (s390_core_read_description): If HWCAP indicates TE support,
3771         select tdesc_s390_te_linux64 or tdesc_s390_s390x_te_linux64.
3772         (s390_gdbarch_init): Handle TDB regset.
3773         (_initialize_s390_tdep): Initialize new tdescs.
3774         * s390-nat.c (HWCAP_S390_HIGH_GPRS): Remove define.
3775         (have_regset_tdb): New variable.
3776         (s390_native_supply): Support register invalidation.
3777         (fetch_regset): Invalidate registers if ptrace yields ENODATA.
3778         (check_regset): Treat ENODATA as "regset exists".
3779         (s390_linux_fetch_inferior_registers): Add TDB.
3780         (s390_read_description): Check for TDB existence and select
3781         appropriate tdesc.
3782         * gdbserver/Makefile.in (clean): Add removal of new makefile
3783         targets.
3784         (s390-te-linux64.c): New makefile target.
3785         (s390x-te-linux64.c): Likewise.
3786         * gdbserver/configure.srv (srv_regobj): Append new objects
3787         s390-te-linux64.o and s390x-te-linux64.o.
3788         (srv_xmlfiles): Append new files s390-te-linux64.xml,
3789         s390x-te-linux64.xml, and s390-tdb.xml.
3790         * gdbserver/linux-s390-low.c (init_registers_s390_te_linux64): New
3791         declaration.
3792         (tdesc_s390_te_linux64): Likewise.
3793         (init_registers_s390x_te_linux64): Likewise.
3794         (tdesc_s390x_te_linux64): Likewise.
3795         (s390_check_regset): Treat ENODATA as "regset exists".
3796         (s390_arch_setup): Add TDB regset support.
3797         (initialize_low_arch): Initialize registers for new tdescs.
3798
3799 2013-09-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3800
3801         * s390-tdep.h (S390_IS_GREGSET_REGNUM): New macro.
3802         (S390_IS_FPREGSET_REGNUM): New macro.
3803         * s390-tdep.c (s390_dwarf_regmap): Make const.
3804         (regnum_is_gpr_full): New function for replacing repeated code.
3805         (s390_pseudo_register_name): Use it.
3806         (s390_pseudo_register_type): Likewise.
3807         (s390_pseudo_register_read): Likewise.
3808         (s390_pseudo_register_write): Likewise.
3809         (s390_unwind_pseudo_register): Likewise.
3810         (s390_regmap_gregset): New format for regmap.
3811         (s390x_regmap_gregset): Likewise.
3812         (s390_regmap_fpregset): Likewise.
3813         (s390_regmap_upper): Likewise.
3814         (s390_regmap_last_break): Likewise.
3815         (s390_regmap_system_call): Likewise.
3816         (s390_supply_regset): Adjust to new regmap format.
3817         (s390_collect_regset): Likewise.
3818         * s390-nat.c (s390_native_supply): Adjust to new regmap format.
3819         (s390_native_collect): Likewise.
3820         (supply_gregset): Likewise.
3821         (fill_gregset): Likewise.
3822         (supply_fpregset): Likewise.
3823         (fill_fpregset): Likewise.
3824         (fetch_regset): Likewise.
3825         (store_regset): Likewise.
3826         (s390_linux_fetch_inferior_registers): Likewise.
3827         (s390_linux_fetch_inferior_registers): Likewise.
3828
3829 2013-09-12  Andrew Pinski  <apinski@cavium.com>
3830
3831         * aarch64-linux-nat.c (aarch64_linux_set_debug_regs): Zero out regs.
3832
3833 2013-09-10  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3834
3835         * config/s390/s390.mh (NATDEPFILES): Add linux-waitpid.o.
3836
3837 2013-09-09  Andrew Burgess  <aburgess@broadcom.com>
3838
3839         * top.c (quit_confirm): Remove use of deprecated_init_ui_hook.
3840
3841 2013-09-06  Pedro Alves <palves@redhat.com>
3842
3843         * remote-sim.c (dump_mem, gdbsim_fetch_register)
3844         (gdbsim_store_register, gdbsim_kill, gdbsim_load)
3845         (gdbsim_create_inferior, gdbsim_open, gdbsim_close)
3846         (gdbsim_detach, gdbsim_resume_inferior, gdbsim_wait)
3847         (gdbsim_files_info, gdbsim_mourn_inferior): Send debug output to
3848         gdb_stdlog.
3849
3850 2013-09-06  Pedro Alves  <palves@redhat.com>
3851
3852         * remote-sim.c (dump_mem): Constify buf parameter.
3853         gdbsim_xfer_inferior_memory): Rename to ...
3854         (gdbsim_xfer_memory): ... this.  Adjust interface as
3855         target_xfer_partial helper.
3856         (gdbsim_xfer_partial): New function.
3857         (init_gdbsim_ops): Don't install a deprecated_xfer_memory hook.
3858         Install a to_xfer_partial hook.  Send output to gdb_stdlog.
3859
3860 2013-09-06  Pedro Alves  <palves@redhat.com>
3861
3862         * remote-sim.c (gdbsim_xfer_inferior_memory): Use
3863         host_address_to_string, and send debug output to gdb_stdlog.
3864
3865 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
3866
3867         * Makefile.in (ALL_TARGET_OBS): Add cris-linux-tdep.o.
3868         * configure.tgt: Add cris-linux-tdep.o and linux-tdep.o to
3869         gdb_target_obs for cris target.
3870         * cris-tdep.c (struct gdbarch_tdep): Move to cris-tdep.h.
3871         (cris_gdbarch_init): Move calls to
3872         set_gdbarch_fetch_tls_load_module_address and
3873         set_solib_svr4_fetch_link_map_offsets to cris-linux-tdep.c.
3874         Add call to gdbarch_init_osabi.
3875         * cris-linux-tdep.c: New file.
3876         * cris-tdep.h: New file.
3877
3878 2013-09-06  Andrew Burgess  <aburgess@broadcom.com>
3879
3880         * tui/tui-io.c (tui_initialize_io): Remove legacy comment referring
3881         to deprecated_init_ui_hook.
3882
3883 2013-09-06  Andrew Burgess  <aburgess@broadcom.com>
3884
3885         * cli/cli-interp.c (_initialize_cli_interp): Add a
3886         command_loop_proc to interp_procs.
3887         * event-top.c (cli_command_loop): Change signature to match
3888         interp_command_loop_ftype.
3889         * event-top.h (cli_command_loop): Same.
3890         * interps.c (interp_new): Require every interpreter to have a
3891         command_loop_proc.
3892         (current_interp_command_loop): Just call the command_loop_proc on
3893         the current interpreter.
3894         * tui/tui-interp.c (_initialize_tui_interp): Add a
3895         command_loop_proc to interp_procs.
3896
3897 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
3898
3899         * cris-tdep.c (cris_gdbarch_init): Add call to
3900         get_gdbarch_fetch_tls_load_module_address.
3901
3902 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
3903
3904         * cris-tdep.c (cris_elf_greg_t): Rename from elf_greg_t.
3905         (cris_elf_gregset_t): Rename from elf_gregset_t.
3906         (crisv32_elf_gregset_t): Adjust.
3907         (cris_supply_gregset, fetch_core_registers): Adjust.
3908
3909 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
3910
3911         * cris-tdep.c (elf_greg_t): Change typedef to unsigned char[4]
3912
3913 2013-09-05  Andrew Burgess  <aburgess@broadcom.com>
3914
3915         * defs.h (deprecated_command_loop_hook): Remove, including
3916         references in comments.
3917         * interps.c (current_interp_command_loop): No longer use
3918         deprecated_command_loop_hook.
3919         (clear_interpreter_hooks): Remove deprecated_command_loop_hook
3920         setup.
3921         * top.c (deprecated_command_loop_hook): Remove.
3922
3923 2013-09-05  Pedro Alves  <palves@redhat.com>
3924
3925         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): 'dwarf_regnum'
3926         local is now int instead of ULONGEST.  Print it with %d
3927         instead of paddress.
3928
3929 2013-09-05  Tristan Gingold  <gingold@adacore.com>
3930
3931         * MAINTAINERS: Remove avr maintainership.
3932
3933 2013-09-05  Pedro Alves  <palves@redhat.com>
3934
3935         * findvar.c (value_of_register): Rework in terms of
3936         value_of_register_lazy.
3937
3938 2013-09-05  Muhammad Bilal  <mbilal@codesourcery.com>
3939
3940         * symfile.c (add_symbol_file_command): Remove trailing
3941          whitespaces and blank line after comment.
3942
3943 2013-09-05  Pedro Alves  <palves@redhat.com>
3944
3945         * tui/tui-regs.c (tui_register_format): Don't look at the
3946         register's name here.  Return string representing register
3947         value instead of storing it in the data element.
3948         (tui_get_register): Compare register string representations
3949         instead of register value states and contents.
3950
3951 2013-09-05  Pedro Alves  <palves@redhat.com>
3952
3953         PR tui/15933
3954         * tui/tui-regs.c (tui_show_registers): Show registers of the
3955         selected frame, not the current frame.
3956
3957 2013-09-05  Ricard Wanderlof  <ricardw@axis.com>
3958
3959         * MAINTAINERS (Write After Approval): Add myself to the list.
3960
3961 2013-09-04  Doug Evans  <dje@google.com>
3962
3963         * dwarf2read.c (queue_and_load_all_dwo_tus): New function.
3964         (queue_and_load_dwo_tu): New function.
3965         (lookup_dwo_signatured_type): Set per_cu.tu_read.
3966         (maybe_queue_comp_unit): Rename this_cu argument to dependent_cu.
3967         Make dependent_cu optional.
3968         (dw2_do_instantiate_symtab): If we just loaded a CU from a DWO,
3969         and an older .gdb_index is in use, queue and load all its TUs too.
3970
3971 2013-09-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
3972
3973         Code cleanup: Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH.
3974         * cli/cli-cmds.c (find_and_open_script): Add OPF_RETURN_REALPATH to
3975         variable search_flags.
3976         * defs.h (OPF_DISABLE_REALPATH): Rename to ...
3977         (OPF_RETURN_REALPATH): ... here.
3978         * dwarf2read.c (try_open_dwop_file): Set OPF_RETURN_REALPATH for flags.
3979         * exec.c (exec_file_attach): Remove OPF_DISABLE_REALPATH from openp
3980         call.  Twice.
3981         * nto-tdep.c (nto_find_and_open_solib): Add OPF_RETURN_REALPATH for
3982         openp call.
3983         * solib.c (solib_find): Likewise.  Four times.
3984         * source.c (openp): Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH
3985         in the function comment and for the realpath_fptr variable.
3986         (source_full_path_of): Add OPF_RETURN_REALPATH for openp call.
3987         (find_and_open_source): Likewise.  Twice.
3988         * symfile.c (symfile_bfd_open): Likewise, also twice.
3989
3990 2013-09-04  Doug Evans  <dje@google.com>
3991
3992         * progspace.c (save_current_space_and_thread): Remove unnecessary
3993         call to save_current_inferior.
3994
3995 2013-09-04  Andrew Burgess  <aburgess@broadcom.com>
3996
3997         * sh64-tdep.c (sh64_do_register): Return after printing message
3998         about unavailable register contents.
3999
4000 2013-09-04  Muhammad Bilal  <mbilal@codesourcery.com>
4001             Pedro Alves  <palves@redhat.com>
4002
4003         * symfile.c (add_symbol_file_command): Error out on unknown
4004         option.  Handle EXPECTING_SEC_ADDR/EXPECTING_SEC_NAME before '-'
4005         options and collapse into single conditional branch.
4006
4007 2013-09-03  Luis Machado  <lgustavo@codesourcery.com>
4008
4009         * inf-child.c (inf_child_follow_fork): New parameter
4010         detach_fork.
4011         * inf-ptrace.c (inf_ptrace_follow_fork): Likewise.
4012         * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
4013         * inferior.h (detach_fork): Remove.
4014         * infrun.c (detach_fork): Adjust comment and make it
4015         static.
4016         (follow_fork): Pass detach_fork parameter to
4017         target_follow_fork.
4018         * linux-nat.c (linux_child_follow_fork): New parameter
4019         detach_fork.
4020         * target.c (target_follow_fork): New parameter detach_fork.
4021         Pass detach_fork as parameter and print its value.
4022         * target.h (struct target_ops) <to_follow_fork>: New int
4023         parameter.
4024         (target_follow_fork): New parameter detach_fork.
4025
4026 2013-09-03  Joel Brobecker  <brobecker@adacore.com>
4027
4028         * solib-ia64-hpux.c (ia64_hpux_relocate_section_addresses):
4029         Replace sec->bfd by sec->the_bfd_section->owner.
4030
4031 2013-09-03  Yao Qi  <yao@codesourcery.com>
4032
4033         * linux-tdep.c (linux_is_uclinux): New function.  Code moved
4034         from linux_has_shared_address_space.
4035         (linux_has_shared_address_space): Call linux_is_uclinux.
4036         * linux-tdep.h (linux_is_uclinux): Declare.
4037         * m68klinux-tdep.c (m68k_linux_get_sigtramp_info): Call
4038         linux_is_uclinux.
4039
4040 2013-09-03  Yao Qi  <yao@codesourcery.com>
4041
4042         * config/djgpp/fnchange.lst: Remove entry of
4043         i386-interix-nat.c and i386-interix-tdep.c.
4044         * configure.ac: Remove '*-*-interix*'.
4045         * configure: Re-generated.
4046         * defs.h (enum gdb_osabi): Remove GDB_OSABI_INTERIX.
4047         * i386-cygwin-tdep.c (i386_cygwin_osabi_sniffer): Remove
4048         obsolete comments.
4049         * osabi.c (gdb_osabi_names): Remove "Interix".
4050
4051 2013-09-03  Yao Qi  <yao@codesourcery.com>
4052
4053         * arch-utils.c: Fix typo in the comment to gdbarch_update_p.
4054
4055 2013-09-02  Markus Metzger  <markus.t.metzger@intel.com>
4056
4057         * record.h (record_print_flag) <record_print_src_line,
4058         record_print_insn_range>: Rename into ...
4059         (record_print_flag) <record_print_src_line,
4060         record_print_insn_range>: ... this.  Update all users.
4061
4062 2013-09-02  Pierre Muller  <muller@sourceware.org>
4063
4064         * windows-nat.c (windows_xfer_memory): Handle ERROR_PARTIAL_COPY
4065         error code.
4066
4067 2013-09-02  Pierre Muller  <muller@sourceware.org>
4068
4069         * windows-nat.c (windows_xfer_memory): Fix compilation failure
4070         by use of plongest function.
4071
4072 2013-09-02  Tristan Gingold  <gingold@adacore.com>
4073
4074         * NEWS: Add entry mentioning support for native Windows x64
4075         SEH data.
4076
4077         * amd64-windows-tdep.c: #include "objfiles.h", "frame-unwind.h",
4078         "coff/internal.h", "coff/i386.h", "coff/pe.h" and "libcoff.h".
4079         (struct amd64_windows_frame_cache): New struct.
4080         (amd64_windows_w2gdb_regnum): New global.
4081         (pc_in_range, amd64_windows_frame_decode_epilogue)
4082         (amd64_windows_frame_decode_insns, amd64_windows_find_unwind_info)
4083         (amd64_windows_frame_cache, amd64_windows_frame_prev_register)
4084         (amd64_windows_frame_this_id): New functions.
4085         (amd64_windows_frame_unwind): New static global.
4086         (amd64_windows_skip_prologue): New function.
4087         (amd64_windows_init_abi): Call frame_unwind_prepend_unwinder
4088         with amd64_windows_frame_unwind. Call set_gdbarch_skip_prologue
4089         with amd64_windows_skip_prologue.
4090
4091 2013-08-30  Joel Brobecker  <brobecker@adacore.com>
4092
4093         GDB 7.6.1 released.
4094
4095 2013-08-30  Pedro Alves  <palves@redhat.com>
4096
4097         * mi/mi-main.c (mi_cmd_trace_find): Use LOC_AND_ADDRESS instead of
4098         SRC_AND_LOC.
4099
4100 2013-08-30  Pedro Alves  <palves@redhat.com>
4101
4102         * thread.c (restore_selected_frame): Use SRC_AND_LOC, and change
4103         warning text.
4104
4105 2013-08-30  Pedro Alves  <palves@redhat.com>
4106
4107         * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
4108         Adjust arguments to print_stack_frame.
4109
4110 2013-08-30  Pedro Alves  <palves@redhat.com>
4111
4112         * ada-tasks.c (task_command_1): Write SRC_AND_LOC instead '1'.
4113
4114 2013-08-30  Pedro Alves  <palves@redhat.com>
4115
4116         * frame.h (show_and_print_stack_frame): Delete declaration.
4117
4118 2013-08-30  Phil Muldoon  <pmuldoon@redhat.com>
4119
4120         PR python/15461
4121         * python/py-arch.c (ARCHPY_REQUIRE_VALID): New macro.
4122         (archpy_name): Check for valid architecture.
4123         (archpy_disassemble): Ditto.
4124
4125 2013-08-29  Joel Brobecker  <brobecker@adacore.com>
4126
4127         * rs6000-nat.c (rs6000_ptrace32): Cast "addr" to "uintptr_t"
4128         instead of "long long" in call to ptrace64.
4129
4130 2013-08-29  Andrew Burgess  <aburgess@broadcom.com>
4131
4132         * mi/mi-interp.c (mi_command_loop): Change signature to match
4133         interp_command_loop_ftype.
4134         (mi1_command_loop): Remove.
4135         (mi2_command_loop): Remove.
4136         (mi3_command_loop): Remove.
4137         (mi_interpreter_resume): Remove setting of
4138         deprecated_command_loop_hook.
4139         (_initialize_mi_interp): Set mi_command_loop as the command loop
4140         callback.
4141
4142 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
4143
4144         * valops.c (do_search_struct_field): Pass v2 instead of base_type to
4145         value_type.
4146
4147 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
4148
4149         * value.c (allocate_value_contents): Make static.
4150         * value.h (allocate_value_contents): Remove prototype.
4151
4152 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
4153
4154         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use value_at_lazy instead
4155         of assembling value via allocate_value_lazy and attribute setter.
4156         * findvar.c (default_read_var_value): Use value_at_lazy instead of
4157         assembling value via allocate_value_lazy and attribute setter.
4158         * valops.c (do_search_struct_field): Use value_at_lazy instead of
4159         assembling value via allocate_value_lazy and attribute setter.
4160
4161 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
4162
4163         * value.c (value_from_contents_and_address): Replace allocate_value and
4164         memcpy with value_from_contents.
4165
4166 2013-08-29  Phil Muldoon  <pmuldoon@redhat.com>
4167
4168         * python/py-framefilter.c (py_print_frame): Remove usage of
4169         PyString_AsString.  Use python_string_to_host_string instead.
4170         Refactor function to work with a string as a new allocation
4171         instead of a pointer.
4172         (py_print_frame): Ditto.
4173         * python/lib/gdb/frames.py (return_list): Cain iterators together
4174         instead of adding them as a list.
4175         (_sort_list): Call return_list, and remove duplicate code.
4176         (execute_frame_filters): Convert iterator to a list with list().
4177         * python/lib/gdb/command/frame_filters.py
4178         (SetFrameFilterPriority._set_filter_priority): Convert priority
4179         attribute to an integer.
4180         * python/lib/gdb/FrameIterator.py (FrameIterator.next): Define
4181         wrapper function __next__.
4182         * python/lib/gdb/FrameDecorator.py: If basestring not defined,
4183         define as "str".
4184
4185 2013-08-29  Phil Muldoon  <pmuldoon@redhat.com>
4186
4187         PR python/15752
4188         * python/py-framefilter.c (apply_frame_filter): Check
4189         gdb_python_initialized.  Exit if the Python frame-filter code
4190         cannot be initialized.
4191
4192 2013-08-29  Phil Muldoon  <pmuldoon@redhat.com>
4193
4194         PR cli/15842
4195         * top.c (print_gdb_version): Remove erroneous newline after help
4196         text.
4197
4198 2013-08-29  Yao Qi  <yao@codesourcery.com>
4199
4200         * varobj.c (install_dynamic_child): Remove trailing space.
4201         Add one blank line after variable declaration.
4202
4203 2013-08-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
4204
4205         PR gdb/15415
4206         * corefile.c (get_exec_file): Use exec_filename.
4207         * defs.h (OPF_DISABLE_REALPATH): New definition.  Add new comment.
4208         * exec.c (exec_close): Free EXEC_FILENAME.
4209         (exec_file_attach): New variable canonical_pathname.  Use
4210         OPF_DISABLE_REALPATH.  Call gdb_realpath explicitly.  Set
4211         EXEC_FILENAME.
4212         * exec.h (exec_filename): New.
4213         * inferior.c (print_inferior, inferior_command): Use
4214         PSPACE_EXEC_FILENAME.
4215         * mi/mi-main.c (print_one_inferior): Likewise.
4216         * progspace.c (clone_program_space, print_program_space): Likewise.
4217         * progspace.h (struct program_space): New field pspace_exec_filename.
4218         * source.c (openp): Describe OPF_DISABLE_REALPATH.  New variable
4219         realpath_fptr, initialize it from OPF_DISABLE_REALPATH, use it.
4220
4221 2013-08-28  Will Newton  <will.newton@linaro.org>
4222
4223         * common/linux-ptrace.c: Include stdint.h unconditionally.
4224
4225 2013-08-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
4226
4227         Code cleanup.
4228         * nto-tdep.c (nto_find_and_open_solib): Use OPF_TRY_CWD_FIRST.
4229
4230 2013-08-28  Yao Qi  <yao@codesourcery.com>
4231             Pedro Alves  <palves@redhat.com>
4232
4233         * event-top.c (gdb_setup_readline): Call stderr_fileopen
4234         instead of stdio_fileopen.
4235         * main.c (captured_main) [__MINGW32__]: Set stderr unbuffered.
4236         .Call stderr_fileopen instead of stdio_fileopen.
4237         * ui-file.c [__MINGW32__] (stderr_file_write): New function.
4238         [__MINGW32__] (stderr_file_fputs): New function.
4239         (stderr_fileopen): New function.
4240         * ui-file.h (stderr_fileopen): Declare.
4241
4242 2013-08-27  Doug Evans  <dje@google.com>
4243
4244         * dwarf2read.c (struct dwarf2_cu): Tweak comment.
4245         (struct dwarf2_per_cu_data): Ditto.
4246         (maybe_queue_comp_unit): Delete forward decl.  Add comment.
4247         (process_imported_unit_die): Ditto.
4248         (follow_die_sig_1): Simplify assert.
4249
4250 2013-08-27  Pedro Alves  <palves@redhat.com>
4251
4252         * windows-nat.c (windows_xfer_memory): Adjust prototype to follow
4253         xfer_partial's interface.  Return TARGET_XFER_E_IO on error.
4254         (windows_xfer_partial): Defer TARGET_OBJECT_MEMORY handling to
4255         windows_xfer_memory directly.
4256         (init_windows_ops): Don't install a deprecated_xfer_memory method.
4257
4258 2013-08-27  Pedro Alves  <palves@redhat.com>
4259
4260         * darwin-nat.c (darwin_xfer_memory): Delete.
4261         (_initialize_darwin_inferior): Don't install a
4262         deprecated_xfer_memory method.
4263
4264 2013-08-27  Pedro Alves  <pedro@codesourcery.com>
4265             Yao Qi  <yao@codesourcery.com>
4266
4267         * mi/mi-cmd-stack.c (list_args_or_locals): Adjust prototype.
4268         (parse_no_frames_option): Remove.
4269         (mi_cmd_stack_list_locals): Handle --skip-unavailable.
4270         (mi_cmd_stack_list_args): Adjust.
4271         (mi_cmd_stack_list_variables): Handle --skip-unavailable.
4272         (list_arg_or_local): Add new parameter 'skip_unavailable'.  Return
4273         early if SKIP_UNAVAILABLE is true and ARG->val is unavailable.
4274         Caller update.
4275         (list_args_or_locals): New parameter 'skip_unavailable'.
4276         Handle it.
4277         * valprint.c (scalar_type_p): Rename to ...
4278         (val_print_scalar_type_p): ... this.  Make extern.
4279         (val_print, value_check_printable): Adjust.
4280         * valprint.h (val_print_scalar_type_p): Declare.
4281         * value.c (value_entirely_unavailable): New function.
4282         * value.h (value_entirely_unavailable): Declare.
4283
4284         * NEWS: Mention the new option "--skip-unavailable" to MI
4285         commands '-stack-list-locals', '-stack-list-arguments' and
4286         '-stack-list-variables'.
4287
4288 2013-08-27  Yao Qi  <yao@codesourcery.com>
4289
4290         * mi/mi-cmd-stack.c (parse_no_frames_option): Remove.
4291         (mi_cmd_stack_list_args): Use mi_getopt_silent to handle
4292         options.
4293         * mi/mi-getopt.c (mi_getopt): Remove.
4294         (mi_getopt_1): Renamed from mi_getopt.  Add one parameter
4295         'error_on_unknown'.
4296         (mi_getopt): Call mi_getopt_1.
4297         (mi_getopt_silent): New.
4298         * mi/mi-getopt.h (mi_getopt_silent): Declare.
4299
4300 2013-08-26  Doug Evans  <dje@google.com>
4301
4302         PR symtab/15885
4303         * dwarf2read.c (dw2_dump): Print some minimal information indicating
4304         .gdb_index is in use.
4305         * symfile.c (reread_symbols): Reset objfile->sf.
4306
4307         * NEWS: Document "mt print objfiles" now takes optional regexp.
4308         * symmisc.c (maintenance_print_objfiles): Argument is now an optional
4309         regexp of objfiles to print.
4310         (_initialize_symmisc): Update doc string for "mt print objfiles".
4311
4312         * dwarf2read.c (write_psymtabs_to_index): Move error checks ahead of
4313         missing debug info checks.
4314
4315 2013-08-26  Raunaq Bathija  <raunaq12@in.ibm.com>
4316             Ulrich Weigand  <uweigand@de.ibm.com>
4317
4318         * xcoffread.c (arrange_linetable): Add fix to correctly handle
4319         line tables generated by XLC compiled binaries.
4320
4321 2013-08-23  Doug Evans  <dje@google.com>
4322
4323         * symmisc.c (dump_symtab): Delete prototype.
4324         (dump_msymbols, dump_objfile): Ditto.
4325         (maintenance_info_symtabs): Mark as dont_repeat.
4326         (_initialize_symmisc): Improve doc string for "mt info symtabs".
4327
4328         * elfread.c (elf_symfile_read): Move "Done reading minimal symbols"
4329         debugging printf to better location.
4330
4331 2013-08-23  Pedro Alves  <palves@redhat.com>
4332
4333         * target.c (target_read_live_memory): Change type of 'ret' local
4334         to LONGEST.
4335
4336 2013-08-23  Pedro Alves  <palves@redhat.com>
4337
4338         * remote.c (remote_write_bytes_aux, remote_write_bytes)
4339         (remote_read_bytes): Change return type to LONGEST, and adjust to
4340         return a target_xfer_error on error.
4341         (remote_xfer_memory): Delete.
4342         (remote_flash_write): Change type of 'ret' local to LONGEST.
4343         (remote_xfer_partial, remote_xfer_partial): Adjust.
4344         (init_remote_ops): Don't install a deprecated_xfer_memory hook.
4345
4346 2013-08-23  Pierre Muller  <muller@sourceware.org>
4347
4348         ARI fix: Push # directives to start of line.
4349         * rs6000-nat.c (rs6000_ptrace32, rs6000_ptrace64): Rule applied.
4350
4351 2013-08-12  Muhammad Waqas  <mwaqas@codesourcery.com>
4352
4353         PR gdb/15501
4354         * breakpoint.c (enable_command, disable_command): Iterate over
4355         all specified breakpoint locations.
4356
4357 2013-08-22  Luis Machado  <lgustavo@codesourcery.com>
4358
4359         * common/linux-ptrace.c (linux_fork_to_function): Push #
4360         directives to the start of the line.
4361         (linux_check_ptrace_features): Fix warning message to use
4362         the "_" markup.
4363
4364 2013-08-22  Luis Machado  <lgustavo@codesourcery.com>
4365
4366         * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-nat.h and
4367         nat/linux-waitpid.h.
4368         (linux-waitpid.o): New object file rule.
4369         * common/linux-ptrace.c: Include nat/linux-waitpid.h.
4370         (current_ptrace_options): Moved from linux-nat.c.
4371         (linux_ptrace_test_ret_to_nx): Use type casts for ptrace
4372         parameters.
4373         (linux_fork_to_function): New function.
4374         (linux_grandchild_function): Likewise.
4375         (linux_child_function): Likewise.
4376         (linux_check_ptrace_features): New function, heavily
4377         based on linux-nat.c:linux_test_for_tracefork.
4378         (linux_enable_event_reporting): New function.
4379         (ptrace_supports_feature): Likewise.
4380         (linux_supports_tracefork): Likewise.
4381         (linux_supports_traceclone): Likewise.
4382         (linux_supports_tracevforkdone): Likewise.
4383         (linux_supports_tracesysgood): Likewise.
4384         * common/linux-ptrace.h (HAS_NOMMU): Moved from
4385         gdbserver/linux-low.c.
4386         (linux_enable_event_reporting): New declaration.
4387         (linux_supports_tracefork): Likewise.
4388         (linux_supports_traceclone): Likewise.
4389         (linux_supports_tracevforkdone): Likewise.
4390         (linux_supports_tracesysgood): Likewise.
4391         * config.in (PTRACE_TYPE_ARG4): Regenerate.
4392         * config/aarch64/linux.mh (NATDEPFILES): Add linux-waitpid.o.
4393         * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
4394         * config/arm/linux.mh (NATDEPFILES): Likewise.
4395         * config/i386/linux.mh (NATDEPFILES): Likewise.
4396         * config/i386/linux64.mh (NATDEPFILES): Likewise.
4397         * config/ia64/linux.mh (NATDEPFILES): Likewise.
4398         * config/m32r/linux.mh (NATDEPFILES): Likewise.
4399         * config/m68k/linux.mh (NATDEPFILES): Likewise.
4400         * config/mips/linux.mh (NATDEPFILES): Likewise.
4401         * config/pa/linux.mh (NATDEPFILES): Likewise..
4402         * config/powerpc/linux.mh (NATDEPFILES): Likewise..
4403         * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
4404         * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
4405         * config/sparc/linux.mh (NATDEPFILES): Likewise.
4406         * config/sparc/linux64.mh (NATDEPFILES): Likewise.
4407         * config/tilegx/linux.mh (NATDEPFILES): Likewise.
4408         * config/xtensa/linux.mh (NATDEPFILES): Likewise.
4409         * configure.ac (AC_CACHE_CHECK): Add void * to the list of
4410         ptrace's 4th argument's types.
4411         Check the type of PTRACE_TYPE_ARG4.
4412         * configure: Regenerate.
4413         * linux-nat.c: Include nat/linux-nat.h and nat/linux-waitpid.h.
4414         (SYSCALL_SIGTRAP): Moved to nat/linux-nat.h.
4415         (linux_supports_tracefork_flag): Remove.
4416         (linux_supports_tracesysgood_flag): Likewise.
4417         (linux_supports_tracevforkdone_flag): Likewise.
4418         (current_ptrace_options): Moved to
4419         common/linux-ptrace.c.
4420         (linux_tracefork_child): Remove.
4421         (my_waitpid): Remove.
4422         (linux_test_for_tracefork): Renamed to
4423         linux_check_ptrace_features and moved to common/linux-ptrace.c.
4424         (linux_test_for_tracesysgood): Remove.
4425         (linux_supports_tracesysgood): Remove.
4426         (linux_supports_tracefork): Remove.
4427         (linux_supports_tracevforkdone): Remove.
4428         (linux_enable_tracesysgood): Remove.
4429         (linux_enable_event_reporting): Remove.
4430         (linux_init_ptrace): New function.
4431         (linux_child_post_attach): Call linux_init_ptrace.
4432         (linux_child_post_startup_inferior): Call linux_init_ptrace.
4433         (linux_child_follow_fork): Call linux_supports_tracefork
4434         and linux_supports_tracevforkdone.
4435         (linux_child_insert_fork_catchpoint): Call
4436         linux_supports_tracefork.
4437         (linux_child_insert_vfork_catchpoint): Likewise.
4438         (linux_child_set_syscall_catchpoint): Call
4439         linux_supports_tracesysgood.
4440         (lin_lwp_attach_lwp): Call linux_supports_tracefork.
4441         * nat/linux-nat.h: New file.
4442         * nat/linux-waitpid.c: New file.
4443         * nat/linux-waitpid.h: New file.
4444
4445 2013-08-22  Samuel Bronson  <naesten@gmail.com>
4446
4447         ARM Linux support for `catch syscall'.
4448         * syscalls/arm-linux.py: New file.
4449         * syscalls/arm-linux.xml: Likewise.
4450         * arm-linux-tdep.c (arm_linux_get_syscall_number): New function.
4451         (arm_linux_init_abi): Register the new function and syscall xml file.
4452         * data-directory/Makefile.in: Install the new syscall xml file.
4453         * NEWS: Brag about this.
4454
4455 2013-08-22  Pedro Alves  <palves@redhat.com>
4456
4457         PR gdb/15871
4458         * corefile.c (target_xfer_memory_error): New function.
4459         (memory_error): Defer EIO to target_memory_error.
4460         (read_memory): Use target_xfer_partial, and handle finer-grained
4461         target xfer errors.
4462         * target.c (target_xfer_error_to_string): New function.
4463         (memory_xfer_partial_1): If memory is known to be
4464         unavailable, return TARGET_XFER_E_UNAVAILABLE instead of -1.
4465         (target_xfer_partial): Make extern.
4466         * target.h (enum target_xfer_error): New enum.
4467         (target_xfer_error_to_string): Declare function.
4468         (target_xfer_partial): Declare function.
4469         (struct target_ops) <xfer_partial>: Adjust describing comment.
4470
4471 2013-08-22  Alan Modra  <amodra@gmail.com>
4472
4473         * configure.host: Support powerpc64le-linux and powerpcle-linux hosts.
4474         * configure.tgt: Likewise as targets.
4475
4476 2013-08-20  Doug Evans  <dje@google.com>
4477
4478         * buildsym.c (subfile_stack): Move here from buildsym.h.
4479         (pending_macros): Ditto.
4480         (get_macro_table): New function.
4481         (buildsym_init): Initialize subfile_stack.
4482         * coffread.c (type_vector,type_vector_length): Moved here from
4483         buildsym.h.
4484         (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
4485         (coff_symtab_read): Use it.
4486         * dbxread.c (read_ofile_symtab): Delete init of subfile_stack.
4487         * dwarf2read.c (macro_start_file): Replace uses of pending_macros
4488         with call to get_macro_table.
4489         * stabsread.c (type_vector,type_vector_length): Moved here from
4490         buildsym.h.
4491         (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
4492         * buildsym.h (get_macro_table): Declare.
4493
4494 2013-08-20  Tom Tromey  <tromey@redhat.com>
4495
4496         * dbxread.c (record_minimal_symbol): Make 'name' argument const.
4497         Update.
4498         (read_dbx_dynamic_symtab): Make 'name' const.  Remove casts.
4499
4500 2013-08-20  Doug Evans  <dje@google.com>
4501
4502         * blockframe.c: Remove #include "psymtab.h".
4503         * cp-support.c: Ditto.
4504         * source.c: Ditto.
4505         * stack.c: Ditto.
4506
4507 2013-08-20  Tom Tromey  <tromey@redhat.com>
4508
4509         PR python/15816:
4510         * exceptions.h (return_mask): Now an enum.
4511         (RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL): Now
4512         enum constants.
4513
4514 2013-08-20  Tom Tromey  <tromey@redhat.com>
4515
4516         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Use
4517         get_objfile_arch.
4518         * elfread.c (elf_rel_plt_read, elf_gnu_ifunc_record_cache)
4519         (elf_gnu_ifunc_resolve_by_got): Use get_objfile_arch.
4520         * jit.c (jit_object_close_impl): Update.
4521         * jv-lang.c (get_dynamics_objfile): Update.
4522         * linespec.c (add_minsym): Use get_dynamics_objfile.
4523         * objfiles.c (get_objfile_bfd_data): Initialize 'gdbarch' field.
4524         (allocate_objfile): Don't initialize 'gdbarch' field.
4525         (get_objfile_arch): Update.
4526         * objfiles.h (struct objfile_per_bfd_storage) <gdbarch>: New field,
4527         moved from...
4528         (struct objfile) <gdbarch>: ... here.  Remove.
4529         * stap-probe.c (stap_can_evaluate_probe_arguments): Use
4530         get_objfile_arch.
4531         * symfile.c (init_entry_point_info): Use get_objfile_arch.
4532
4533 2013-08-20  Alan Modra  <amodra@gmail.com>
4534
4535         * doublest.c (convert_floatformat_to_doublest): Use fmt->split_half
4536         for IBM long double nan and inf.
4537         (floatformat_is_negative, floatformat_classify,
4538         floatformat_mantissa): Similarly.
4539         (floatformat_ieee_single, floatformat_ieee_double,
4540         floatformat_ieee_quad, floatformat_arm_ext,
4541         floatformat_ia64_spill): Delete unused vars.
4542         (_initialize_doublest): Delete unused function.
4543         * gdbtypes.c (floatformats_ibm_long_double): Use new big- and
4544         little-endian variants of floatformat_ibm_long_double.
4545
4546 2013-08-19  Luis Machado  <lgustavo@codesourcery.com>
4547
4548         * Makefile.in (SFILES): Remove common/target-common.c and
4549         add target/waitstatus.c.
4550         (HFILES_NO_SRCDIR): Remove common/target-common.h and add
4551         target/resume.h, target/wait.h and target/waitstatus.h.
4552         (COMMON_OBS): Remove target-common.o and add
4553         waitstatus.o.
4554         (target-common.o): Remove.
4555         (waitstatus.o): New target object file.
4556         * common/target-common.c: Move contents to
4557         target/waitstatus.c and remove.
4558         * common/target-common.h: Move contents to other files and
4559         remove.
4560         (enum resume_kind: Move to target/resume.h.
4561         (TARGET_WNOHANG): Move to target/wait.h.
4562         (enum target_waitkind): Move to target/waitstatus.h.
4563         (struct target_waitstatus): Likewise.
4564         * target.h: Do not include target-common.h and
4565         include target/resume.h, target/wait.h and
4566         target/waitstatus.h.
4567         * target/resume.h: New file.
4568         * target/wait.h: New file.
4569         * target/waitstatus.h: New file.
4570         * target/waitstatus.c: New file.
4571
4572 2013-08-19  Pedro Alves  <palves@redhat.com>
4573
4574         * linux-nat.c (linux_test_for_tracefork)
4575         (linux_test_for_tracesysgood, linux_child_follow_fork)
4576         (lin_lwp_attach_lwp, linux_nat_resume): Don't block child signals.
4577         (linux_nat_wait_1): Extend comment.
4578         (linux_async_pipe): Add comment.
4579
4580 2013-08-15  Kevin Buettner  <kevinb@redhat.com>
4581
4582         * rl78-tdep.c (RL78_RAW_PC_REGNUM): New enum.
4583         (RL78_PC_REGNUM): Move to list of pseudo-register enums.
4584         (rl78_register_type, rl78_register_name, rl78_register_reggroup_p):
4585         Update to account for fact that PC is now a pseudo-register.
4586         (rl78_pseudo_register_write, rl78_pseudo_register_read):  Add
4587         cases for RL78_PC_REGNUM.
4588
4589 2013-08-15  Muhammad Bilal  <mbilal@codesourcery.com>
4590
4591         PR cli/15841
4592         * top.c (quit_force): Skip writing history file
4593         if input is not from terminal.
4594
4595 2013-08-14  Tom Tromey  <tromey@redhat.com>
4596
4597         * remote.c (struct remote_state) <echo_nextthread, nextthread,
4598         resultthreadlist>: New fields.
4599         (OPAQUETHREADBYTES, threadref, MAXTHREADLISTRESULTS): Move earlier.
4600         (remote_get_threadlist, remote_threadlist_iterator): Use
4601         new fields.  Remove static variables.
4602
4603 2013-08-14  Tom Tromey  <tromey@redhat.com>
4604
4605         * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p,
4606         remote_watch_data_address>: New fields.
4607         (remote_stopped_by_watchpoint_p, remote_watch_data_address): Remove.
4608         (process_stop_reply, remote_wait_as)
4609         (remote_check_watch_resources, remote_stopped_data_address): Update.
4610
4611 2013-08-14  Tom Tromey  <tromey@redhat.com>
4612
4613         * remote.c (struct remote_state) <async_client_callback,
4614         async_client_context>: New fields.
4615         (async_client_callback, async_client_context): Remove.
4616         (remote_async_serial_handler, remote_async): Update.
4617
4618 2013-08-14  Tom Tromey  <tromey@redhat.com>
4619
4620         * remote.c (sizeof_pkt): Remove.
4621         (remote_trace_find): Use rs->buf_size, not sizeof_pkt.
4622
4623 2013-08-14  Tom Tromey  <tromey@redhat.com>
4624
4625         * remote.c (struct remote_state) <use_threadinfo_query,
4626         use_threadextra_query>: New fields.
4627         (remote_threads_info, remote_threads_extra_info)
4628         (remote_open_1): Update.
4629
4630 2013-08-14  Tom Tromey  <tromey@redhat.com>
4631
4632         * remote.c (struct remote_state) <finished_object,
4633         finished_annex, finished_offset>: New fields.
4634         (remote_read_qxfer): Use remote_state fields; remove static
4635         variables.
4636
4637 2013-08-14  Tom Tromey  <tromey@redhat.com>
4638
4639         * remote.c (struct remote_state) <last_sent_step>:
4640         New field.
4641         (last_sent_step): Remove.
4642         (remote_resume, remote_wait_as): Update.
4643
4644 2013-08-14  Tom Tromey  <tromey@redhat.com>
4645
4646         * remote.c (struct remote_state) <last_sent_signal>:
4647         New field.
4648         (last_sent_signal): Remove.
4649         (new_remote_state, remote_resume, remote_wait_as): Update.
4650
4651 2013-08-14  Tom Tromey  <tromey@redhat.com>
4652
4653         * remote.c (struct remote_state) <last_program_signals_packet>:
4654         New field.
4655         (last_program_signals_packet): Remove.
4656         (remote_program_signals, remote_open_1): Update.
4657
4658 2013-08-14  Tom Tromey  <tromey@redhat.com>
4659
4660         * remote.c (struct remote_state) <last_pass_packet>:
4661         New field.
4662         (last_pass_packet): Remove.
4663         (remote_pass_signals, remote_open_1): Update.
4664
4665 2013-08-14  Tom Tromey  <tromey@redhat.com>
4666
4667         * remote.c (struct remote_state) <remote_traceframe_number>:
4668         New field.
4669         (remote_traceframe_number): Remove.
4670         (new_remote_state, remote_open_1, set_remote_traceframe)
4671         (remote_trace_find): Update.
4672
4673 2013-08-14  Tom Tromey  <tromey@redhat.com>
4674
4675         * remote.c (struct remote_state) <general_thread, continue_thread>:
4676         New fields.
4677         (general_thread, continue_thread): Remove.
4678         (record_currthread, set_thread, set_general_process)
4679         (remote_open_1, extended_remote_attach_1, remote_wait_as)
4680         (extended_remote_mourn_1): Update.
4681
4682 2013-08-14  Tom Tromey  <tromey@redhat.com>
4683
4684         * remote.c (struct remote_state) <remote_desc>: New field.
4685         (remote_desc): Remove.
4686         (remote_threads_info, remote_threads_extra_info, remote_close)
4687         (send_interrupt_sequence, remote_start_remote, remote_open_1)
4688         (readchar, remote_xfer_partial, remote_rcmd, packet_command)
4689         (remote_hostio_send_command, remote_file_put, remote_file_get)
4690         (remote_file_delete, remote_can_async_p, remote_is_async_p)
4691         (remote_async, remote_new_objfile, set_range_stepping): Update.
4692
4693 2013-08-14  Tom Tromey  <tromey@redhat.com>
4694
4695         * remote.c (remote_state): Now a pointer.
4696         (get_remote_state_raw): Update.
4697         (new_remote_state): New function.
4698         (_initialize_remote): Use new_remote_state.
4699
4700 2013-08-14  Tom Tromey  <tromey@redhat.com>
4701
4702         * remote.c (remote_protocol_features): Now const.
4703
4704 2013-08-14  Tom Tromey  <tromey@redhat.com>
4705
4706         * remote.c (crc32_table, crc32): Remove.
4707         (remote_verify_memory): Use xcrc32.
4708
4709 2013-08-13  Sergio Durigan Junior  <sergiodj@redhat.com>
4710
4711         * value.h (create_internalvar_type_lazy): Adjust prototype
4712         declaration.
4713
4714 2013-08-13  Andrew Burgess  <aburgess@broadcom.com>
4715
4716         * common/format.c (parse_format_string): Don't allow '#' flag for
4717         pointer arguments in format string.
4718
4719 2013-08-13  Pierre Muller  <muller@sourceware.org>
4720
4721         * utils.c (init_page_info): Only call tgetnum function
4722         if rl_get_screen_size did not return useful values.
4723
4724 2013-08-12  Ali Anwar  <ali_anwar@codesourcery.com>
4725
4726         PR breakpoints/15117
4727         * linespec.c (linespec_parse_basic): Check for convenience
4728         variable or history value while parsing.
4729
4730 2013-08-12  Sergio Durigan Junior  <sergiodj@redhat.com>
4731
4732         Revert implementation of gdbarch_gdb_signal_{to,from}_target for
4733         AVR.
4734         * avr-tdep.c: Remove include of "linux-tdep.h".  Remove enum with
4735         different signals between the generic Linux kernel implementation
4736         and AVR's.
4737         (avr_linux_gdb_signal_from_target): Delete.
4738         (avr_linux_gdb_signal_to_target): Delete.
4739         (avr_gdbarch_init): Don't set gdbarch_gdb_signal_{to,from}_target.
4740
4741 2013-08-09  Doug Evans  <dje@google.com>
4742
4743         * dwarf2read.c (create_addrmap_from_index): Ignore bad address table
4744         entries.
4745
4746 2013-08-09  Sergio Durigan Junior  <sergiodj@redhat.com>
4747
4748         * linux-tdep.c: Define enum with generic signal numbers.
4749         (linux_gdb_signal_from_target): New function.
4750         (linux_gdb_signal_to_target): Likewise.
4751         (linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4752         methods to the functions above.
4753         * linux-tdep.h (linux_gdb_signal_from_target): New prototype.
4754         (linux_gdb_signal_to_target): Likewise.
4755         * alpha-linux-tdep.c: Define new enum with signals different
4756         from generic Linux kernel.
4757         (alpha_linux_gdb_signal_from_target): New function.
4758         (alpha_linux_gdb_signal_to_target): Likewise.
4759         (alpha_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4760         with the functions mentioned above.
4761         * avr-tdep.c: Define enum with differences between Linux kernel
4762         and AVR signals.
4763         (avr_linux_gdb_signal_from_target): New function.
4764         (avr_linux_gdb_signal_to_target): Likewise.
4765         (avr_gdbarch_init): Set gdbarch_gdb_signal_{to,from}_target to
4766         the functions mentioned above.
4767         * sparc-linux-tdep.c: Define enum with differences between SPARC
4768         and generic Linux kernel signal numbers.
4769         (sparc32_linux_gdb_signal_from_target): New function.
4770         (sparc32_linux_gdb_signal_to_target): Likewise.
4771         (sparc32_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4772         to the functions defined above.
4773         * xtensa-linux-tdep.c: Define enum with differences between
4774         Xtensa and Linux kernel generic signals.
4775         (xtensa_linux_gdb_signal_from_target): New function.
4776         (xtensa_linux_gdb_signal_to_target): Likewise.
4777         (xtensa_linux_init_abi): Set gdbarch_gdb_signal_to_target
4778         to the functions defined above.
4779         * mips-linux-tdep.c: Define enum with differences between
4780         signals in MIPS and Linux kernel generic ones.
4781         (mips_gdb_signal_to_target): New function.
4782         (mips_gdb_signal_from_target): Redefine to use new enum, handle
4783         only different signals from the Linux kernel generic.
4784         (mips_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4785         the functions defined above.
4786         * mips-linux-tdep.h (enum mips_signals): Remove.
4787
4788 2013-08-09  Pedro Alves  <palves@redhat.com>
4789
4790         * avr-tdep.c (XMALLOC): Delete macro.
4791         * cli/cli-dump.c (XMALLOC): Delete macro.
4792
4793 2013-08-09  Pedro Alves  <palves@redhat.com>
4794
4795         * cli/cli-dump.c: Don't include cli/cli-dump.h.
4796         (scan_expression_with_cleanup, scan_filename_with_cleanup)
4797         (fopen_with_cleanup, add_dump_command): Make static.
4798         * cli/cli-dump.h: Delete file.
4799         * Makefile.in (HFILES_NO_SRCDIR): Remove reference to
4800         cli/cli-dump.h.
4801
4802 2013-08-09  Pedro Alves  <palves@redhat.com>
4803
4804         * tracepoint.c (tfile_start): Show tilde-expanded filename in
4805         error message.
4806
4807 2013-08-09  Pedro Alves  <palves@redhat.com>
4808
4809         * breakpoint.c (save_breakpoints): Show tilde-expanded filename in
4810         error message.
4811
4812 2013-08-09  Pedro Alves  <palves@redhat.com>
4813
4814         * gcore.c (create_gcore_bfd): Don't use tilde_expand here.
4815         (gcore_command): Use tilde_expand here, and when showing the
4816         filename to the user, show the expanded version.
4817
4818 2013-08-09  Yao Qi  <yao@codesourcery.com>
4819
4820         * stack.c (read_frame_arg): Set 'entryval_error' to NULL if
4821         'entryval' is set.
4822
4823 2013-08-08  Azat Khuzhin  <a3at.mail@gmail.com>  (tiny change)
4824
4825         * gcore.c (create_gcore_bfd): Use tilde_expand.
4826
4827 2013-08-08  Yao Qi  <yao@codesourcery.com>
4828
4829         * frame.h (read_frame_local): Declare.
4830         * mi/mi-cmd-stack.c (list_args_or_locals): Call
4831         read_frame_local.
4832         * stack.c (read_frame_local): New.
4833
4834 2013-08-08  Yao Qi  <yao@codesourcery.com>
4835
4836         * mi/mi-cmd-stack.c: Update comments to function
4837         list_args_or_locals.
4838
4839 2013-08-07  Tom Tromey  <tromey@redhat.com>
4840
4841         PR symtab/15028:
4842         * dwarf2read.c (struct process_psymtab_comp_unit_data): New.
4843         (process_psymtab_comp_unit_reader): Use it.
4844         (process_psymtab_comp_unit): Update.  Add "pretend_language"
4845         argument.
4846         (dwarf2_build_psymtabs_hard): Update.
4847         (scan_partial_symbols): Pass CU's language to
4848         process_psymtab_comp_unit.
4849
4850 2013-08-07  Tom Tromey  <tromey@redhat.com>
4851
4852         * dwarf2read.c (dw2_get_primary_filename_reader): Remove.
4853         (dwarf2_gdb_index_functions): Update.
4854         * psymtab.c (find_symbol_file_from_partial): Remove.
4855         (psym_functions): Update.
4856         * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
4857         Remove.
4858
4859 2013-08-07  Tom Tromey  <tromey@redhat.com>
4860
4861         * symfile.c (set_initial_language): Look up "main" symbol
4862         and use its language.
4863         * symtab.c (find_main_filename): Remove.
4864         * symtab.h (find_main_filename): Remove.
4865
4866 2013-08-07  Tom Tromey  <tromey@redhat.com>
4867
4868         * dwarf2read.c (recursively_compute_inclusions): Add
4869         "immediate_parent" argument.  Set symtab's "user" field
4870         if not set.
4871         (compute_symtab_includes): Update.
4872
4873 2013-08-07  Tom Tromey  <tromey@redhat.com>
4874
4875         * linespec.c (convert_linespec_to_sals): Use maybe_add_address
4876         when adding label symbols.
4877
4878 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
4879             Ulrich Weigand  <uweigand@de.ibm.com>
4880
4881         * configure.tgt (powerpc64-*-aix*): Match powerpc64 running aix.
4882         * configure.host (powerpc64-*-aix*): Likewise.
4883
4884 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
4885             Ulrich Weigand  <uweigand@de.ibm.com>
4886
4887         * gdb_ptrace.h: Use ptrace64 instead of ptrace if HAVE_PTRACE64
4888         is defined.
4889         * rs6000-nat.c: Check for __ld_info64_ if compiling 64 BIT gdb.
4890         (rs6000_ptrace32): Call ptrace64 instead of ptrace if present.
4891         (rs6000_ptrace64): Call ptace64 instead of ptracex if present.
4892         * configure.ac: Check for ptrace64.
4893         * configure, config.in: Regenerate.
4894
4895 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
4896             Ulrich Weigand  <uweigand@de.ibm.com>
4897
4898         * aixthread.c: Call ptrace64 instead of ptracex if defined.
4899         Call ptrace64 instead of ptrace if defined.
4900         Add macro addr_ptr to take care of ptrace address argument.
4901         (pdc_read_regs): Likewise.
4902         (pdc_write_regs): Likewise.
4903         (aix_thread_resume): Likewise.
4904         (fetch_regs_kernel_thread): Likewise.
4905         (store_regs_kernel_thread): Likewise.
4906
4907 2013-08-07  Anton Blanchard  <anton@samba.org>
4908
4909         * MAINTAINERS: Add myself to Write After Approval.
4910
4911 2013-08-05  Tom Tromey  <tromey@redhat.com>
4912
4913         * aix-thread.c (_initialize_aix_thread): Use
4914         complete_target_initialization.
4915         * bsd-uthread.c (_initialize_bsd_uthread): Use
4916         complete_target_initialization.
4917         * dec-thread.c (_initialize_dec_thread): Use
4918         complete_target_initialization.
4919         * ravenscar-thread.c (_initialize_ravenscar): Use
4920         complete_target_initialization.
4921         * sol-thread.c (_initialize_sol_thread): Use
4922         complete_target_initialization.
4923         * spu-multiarch.c (_initialize_spu_multiarch): Use
4924         complete_target_initialization.
4925
4926 2013-08-05  Tom Tromey  <tromey@redhat.com>
4927
4928         * ada-exp.y (write_var_or_type): Use bound_minimal_symbol.
4929         * ada-lang.c (ada_lookup_simple_minsym): Return
4930         bound_minimal_symbol.
4931         * ada-lang.h (ada_lookup_simple_minsym): Update.
4932         * c-exp.y (variable): Use lookup_bound_minimal_symbol.
4933         * f-exp.y (variable): Use lookup_bound_minimal_symbol.
4934         * go-exp.y (variable): Use lookup_bound_minimal_symbol.
4935         * jv-exp.y (push_expression_name): Use lookup_bound_minimal_symbol.
4936         * m2-exp.y (variable): Use lookup_bound_minimal_symbol.
4937         * minsyms.c (msymbol_objfile): Remove.
4938         (lookup_minimal_symbol_internal): New function, from
4939         lookup_minimal_symbol.
4940         (lookup_minimal_symbol): Rewrite using
4941         lookup_minimal_symbol_internal.
4942         (lookup_bound_minimal_symbol): New function.
4943         * minsyms.h (msymbol_objfile): Remove.
4944         (lookup_bound_minimal_symbol): Declare.
4945         * p-exp.y (variable): Use lookup_bound_minimal_symbol.
4946         * parse.c (write_exp_msymbol): Change parameter to a
4947         bound_minimal_symbol.
4948         (write_dollar_variable): Use lookup_bound_minimal_symbol.
4949         * parser-defs.h (write_exp_msymbol): Update.
4950         * printcmd.c (address_info): Use lookup_bound_minimal_symbol.
4951         * symfile.c (simple_read_overlay_table): Use
4952         lookup_bound_minimal_symbol.
4953         * symtab.c (skip_prologue_sal): Don't use msymbol_objfile.
4954         (search_symbols): Likewise.
4955         (print_msymbol_info): Take a bound_minimal_symbol argument.
4956         (symtab_symbol_info, rbreak_command): Update.
4957         * symtab.h (struct symbol_search) <msymbol>: Change type
4958         to bound_minimal_symbol.
4959         * valops.c (find_function_in_inferior): Use
4960         lookup_bound_minimal_symbol.
4961         * value.c (value_fn_field): Use lookup_bound_minimal_symbol.
4962
4963 2013-08-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
4964
4965         Code cleanup.
4966         * remote.c (cleanup_sigint_signal_handler): Rename the declaration
4967         to ...
4968         (async_cleanup_sigint_signal_handler): ... this.
4969         (initialize_sigint_signal_handler): Remove declaration.
4970         (handle_remote_sigint): Rename the declaration to ...
4971         (async_handle_remote_sigint): ... this.
4972         (handle_remote_sigint_twice): Rename the declaration to ...
4973         (async_handle_remote_sigint_twice): ... this.
4974         (async_remote_interrupt, async_remote_interrupt_twice)
4975         (remote_interrupt): Remove the declarations.
4976         (remote_interrupt_twice): Rename the declaration ...
4977         (sync_remote_interrupt_twice): ... this.
4978         (sigint_remote_twice_token): Rename the variable to ...
4979         (async_sigint_remote_twice_token): ... this.
4980         (sigint_remote_token): Rename the variable to ...
4981         (async_sigint_remote_token): ... this.
4982         (initialize_sigint_signal_handler): Rename the function to ...
4983         (async_initialize_sigint_signal_handler): ... this.  Update the name
4984         inside.
4985         (handle_remote_sigint): Rename the function to ...
4986         (async_handle_remote_sigint): ... this.  Update the names inside.
4987         (handle_remote_sigint_twice): Rename the function to ...
4988         (async_handle_remote_sigint_twice): ... this.  Update the names inside.
4989         (cleanup_sigint_signal_handler): Rename the function to ...
4990         (async_cleanup_sigint_signal_handler): ... this.
4991         (remote_interrupt): Rename the function to ...
4992         (sync_remote_interrupt): this.  Update the names inside.
4993         (remote_interrupt_twice): Rename the function to ...
4994         (sync_remote_interrupt_twice): this.  Update the names inside.
4995         (remote_terminal_inferior, remote_terminal_ours, remote_wait_as)
4996         (_initialize_remote): Update the names inside.
4997
4998 2013-08-02  Tom Tromey  <tromey@redhat.com>
4999
5000         PR symtab/15719:
5001         * breakpoint.c (update_watchpoint, watchpoint_check)
5002         (watch_command_1): Update.
5003         * eval.c (fetch_subexp_value): Add "preserve_errors"
5004         parameter.
5005         * ppc-linux-nat.c (check_condition): Update.
5006         * value.h (fetch_subexp_value): Update.
5007
5008 2013-08-02  Andrew Burgess  <aburgess@broadcom.com>
5009
5010         * mi/mi-interp.c (mi_interpreter_resume): Remove call to
5011         add_file_handler.
5012
5013 2013-08-01  Doug Evans  <dje@google.com>
5014
5015         PR symtab/15691
5016         * dwarf2read.c (struct dwarf2_per_cu_data): New member tu_read.
5017         (fill_in_sig_entry_from_dwo_entry): Reorganize asserts.
5018         Add assert of sig_entry->dwo_unit == NULL.
5019         (lookup_dwo_signatured_type): Don't assign TU to a DWO if the TU
5020         had already been read.
5021         (read_signatured_type): Set per_cu.tu_read.
5022
5023         PR symtab/15695
5024         * valops.c (value_struct_elt): Add missing call to check_typedef.
5025         (value_find_oload_method_list): Ditto.
5026
5027         * symtab.c (do_free_search_symbols_cleanup): Change arg to,
5028         effectively, struct symbol_search **.
5029         (make_cleanup_free_search_symbols): Change arg to struct
5030         symbol_search **.  All callers updated.
5031         (compare_search_syms): Compare symtab file name and block as well.
5032         (search_symbols_equal): New function.
5033         (sort_search_symbols_remove_dups): Renamed from sort_search_symbols.
5034         New args new_head, new_tail.  Result is now void.  Remove dups after
5035         sorting the symbols.
5036         (search_symbols): Sort all found symbols once, after all have been
5037         found, and remove duplicates.  Simplify cleanup tracking of result.
5038         * symtab.h (make_cleanup_free_search_symbols): Update prototype.
5039
5040         Further workarounds for binutils/15021.
5041         * dwarf2read.c (recursively_compute_inclusions): Change type of result
5042         parameter to VEC (symtab_ptr) **.  New parameter all_type_symtabs.
5043         Watch for duplicate symtabs coming from type units.
5044         (compute_symtab_includes): Update call to
5045         recursively_compute_inclusions. Build vector of included symtabs
5046         instead of per_cus.
5047         * symtab.h (symtab_ptr): New typedef.
5048         (DEF_VEC_P (symtab_ptr)): New VEC type.
5049         * linespec.c (symtab_p): Delete.  All uses updated to use symtab_ptr
5050         instead.
5051
5052 2013-08-01  Andrew Burgess  <aburgess@broadcom.com>
5053
5054         * cli/cli-script.c (script_from_file): Remove use of
5055         error_pre_print.
5056         * main.c (captured_main): Remove use of error_pre_print and
5057         quit_pre_print.
5058         * utils.c (error_pre_print, quit_pre_print): Remove.
5059         * utils.h (error_pre_print, quit_pre_print): Likewise.
5060
5061 2013-08-01  Yao Qi  <yao@codesourcery.com>
5062
5063         * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Parse argv
5064         with mi_getopt.
5065         (mi_cmd_stack_list_variables): Likewise.
5066
5067 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
5068
5069         * exceptions.c (deprecated_throw_reason): Remove.
5070         * exceptions.h (deprecated_throw_reason): Remove.
5071
5072 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
5073
5074         * remote-mips.c (mips_error): Replace use of
5075         deprecated_throw_reason with throw_verror.  Use the error message
5076         passed to mips_error as the error message for throw_verror.
5077
5078 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
5079
5080         * monitor.c (monitor_interrupt_query): Replace use of
5081         deprecated_throw_reason with quit.
5082         * nto-procfs.c (interrupt_query): Likewise.
5083         * remote-fileio.c (remote_fileio_sig_exit): Likewise.
5084         * remote-mips.c (mips_kill): Likewise.
5085         * remote.c (interrupt_query): Likewise.
5086
5087 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
5088
5089         * utils.c (internal_verror): Replace use of deprecated_throw_reason
5090         with call to fatal.
5091
5092 2013-07-31  Pedro Alves  <pedro@codesourcery.com>
5093             Yao Qi  <yao@codesourcery.com>
5094
5095         * tracepoint.c (trace_dump_command): Select the current frame.
5096
5097 2013-07-30  Doug Evans  <dje@google.com>
5098
5099         * dwarf2read.c (process_queue): Add type signature to debug output.
5100
5101 2013-07-30  Andrew Burgess  <aburgess@broadcom.com>
5102
5103         * value.c (value_fetch_lazy): Mark optimized out values as such
5104         rather than raising an error.
5105
5106 2013-07-30  Andrew Burgess  <aburgess@broadcom.com>
5107
5108         * value.c (value_fetch_lazy): Ensure parent value is not lazy
5109         before checking which bits of the parent, not the child, value are
5110         valid.
5111
5112 2013-07-30  Muhammad Bilal  <mbilal@codesorcery.com>
5113
5114         PR gdb/15715
5115         * top.c: Include "filenames.h".
5116         (set_history_filename): New function.
5117         (init_main): Install it as set hook of the "set history filename"
5118         command.
5119
5120 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
5121
5122         * dwarf2read.c (dwarf2_get_ref_die_offset): Constify struct
5123         attribute parameter.
5124         (dwarf2_const_value_data): Constify struct attribute parameter.
5125         (dwarf2_const_value): Constify struct attribute parameter.
5126         (dwarf2_const_value_attr): Constify struct attribute parameter.
5127         (lookup_die_type): Constify struct attribute parameter.
5128         (dwarf2_get_attr_constant_value): Constify struct attribute parameter.
5129         (follow_die_ref_or_sig): Constify struct attribute parameter.
5130         (follow_die_ref): Constify struct attribute parameter.
5131         (follow_die_sig): Constify struct attribute parameter.
5132         (get_DW_AT_signature_type): Constify struct attribute parameter.
5133         (get_type_unit_group): Constify struct attribute parameter.
5134         (fill_in_loclist_baton): Constify struct attribute parameter.
5135         (dwarf2_symbol_mark_computed): Constify struct attribute parameter.
5136         (type_unit_group): Constify struct attribute parameter.
5137
5138 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
5139
5140         * dwarf2read.c (attr_form_is_block): Make argument const.
5141         (attr_form_is_section_offset): Make argument const.
5142         (attr_form_is_constant): Make argument const.
5143         (attr_form_is_ref): Make argument const.
5144
5145 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
5146
5147         * dwarf2read.c (attr_is_ref): Rename to attr_form_is_ref.
5148         All uses updated.
5149         (attr_form_is_ref): Moved below attr_form_is_constant.
5150
5151 2013-07-29  Doug Evans  <dje@google.com>
5152
5153         * main.c (captured_command_loop): Tweak comment.
5154
5155         * target.c (target_async_permitted_1): Fix comment.
5156
5157         * symtab.c (iterate_over_some_symtabs): Add comment.
5158
5159         * symtab.c (iterate_over_some_symtabs): Fix indentation.
5160
5161 2013-07-27  Yao Qi  <yao@codesourcery.com>
5162
5163         * NEWS: Mention that GDBserver now supports hardware
5164         watchpoints on the MIPS GNU/Linux target.
5165
5166 2013-07-27  Yao Qi  <yao@codesourcery.com>
5167
5168         * Makefile.in (HFILES_NO_SRCDIR): Add
5169         common/mips-linux-watch.h.
5170         (mips-linux-watch.o): New rule.
5171         * common/mips-linux-watch.c: New.
5172         * common/mips-linux-watch.h: New.
5173         * config/mips/linux.mh (NATDEPFILES): Add mips-linux-watch.o
5174         * mips-linux-nat.c: Include mips-linux-watch.h.
5175         (W_BIT, R_BIT, I_BIT, W_MASK, R_MASK, I_MASK, IRW_MASK): Move
5176         to common/mips-linux-watch.h.
5177         (MAX_DEBUG_REGISTER): Likewise.
5178         (enum pt_watch_style): Likewise.
5179         (struct mips32_watch_regs): Likewise.
5180         (struct mips64_watch_regs): Likewise.
5181         (struct pt_watch_regs): Likewise.
5182         (struct mips_watchpoint): Likewise.
5183         (mips_linux_watch_get_irw_mask): Move to
5184         common/mips-linux-watch.c.
5185         (get_reg_mask, mips_linux_watch_get_num_valid): Likewise.
5186         (mips_linux_watch_get_watchlo): Likewise.
5187         (mips_linux_watch_set_watchlo): Likewise.
5188         (mips_linux_watch_get_watchhi): Likewise.
5189         (mips_linux_watch_set_watchhi): Likewise.
5190         (mips_linux_read_watch_registers): Likewise.
5191         (mips_linux_watch_type_to_irw): Likewise.
5192         (mips_linux_stopped_data_address, fill_mask): Likewise.
5193         (mips_linux_watch_try_one_watch): Likewise.
5194         (mips_linux_watch_populate_regs): Likewise.
5195
5196 2013-07-27  Yao Qi  <yao@codesourcery.com>
5197
5198         * mips-linux-nat.c (get_irw_mask): Rename to ...
5199         (mips_linux_watch_get_irw_mask): ... this.  Rename parameter
5200         'set' to 'n'.  Update function comment.  All callers changed.
5201         (get_reg_mask): Rename parameter 'set' to 'n'.  Update
5202         function comment.  All callers changed.
5203         (get_num_valid): Rename to ...
5204         (mips_linux_watch_get_num_valid): ... this.  Rename parameter
5205         'set' to 'n'.  Update function comment.  All callers changed.
5206         (get_watchlo): Rename to ...
5207         (mips_linux_watch_get_watchlo): ... this.  Rename parameter
5208         'set' to 'n'.  Update function comment.  All callers changed.
5209         (set_watchlo): Rename to ...
5210         (mips_linux_watch_set_watchlo): ... this.  Rename parameter
5211         'set' to 'n'.  Update function comment.  All callers changed.
5212         (get_watchhi): Rename to ...
5213         (mips_linux_watch_get_watchhi): ... this.  Update function
5214         comment.  All callers changed.
5215         (set_watchhi): Rename to ...
5216         (mips_linux_watch_set_watchhi): ... this.  Update function
5217         comment.  All callers changed.
5218         (mips_linux_read_watch_registers): Update function comment.
5219         Add new parameters 'lwpid', 'watch_readback', and
5220         'watch_readback_valid'.  Update.
5221         (type_to_irw): Rename to ...
5222         (mips_linux_watch_type_to_irw): ... this.  Update function
5223         comment.  All callers changed.
5224         (fill_mask): Update function comment.
5225         (try_one_watch): Rename to ...
5226         (mips_linux_watch_try_one_watch): ... this.  Change the type
5227         of parameter 'irw' from 'unsigned' to 'uint32_t'.
5228         (populate_regs_from_watches): Rename to ...
5229         (mips_linux_watch_populate_regs): ... this.  Add parameter
5230         'current_watches'.  All callers changed.
5231
5232 2013-07-27  Yao Qi  <yao@codesourcery.com>
5233
5234         * mips-linux-nat.c (MAX_DEBUG_REGISTER): Move it earlier in
5235         the code.
5236         (PTRACE_SET_WATCH_REGS, enum pt_watch_style): Remove.
5237         (struct mips32_watch_regs, struct mips64_watch_regs): Remove.
5238         (struct pt_watch_regs): Likewise.
5239         [!PTRACE_GET_WATCH_REGS] (PTRACE_SET_WATCH_REGS): New macro.
5240         [!PTRACE_GET_WATCH_REGS] (enum pt_watch_style): New.
5241         [!PTRACE_GET_WATCH_REGS] (struct mips32_watch_regs): New.
5242         [!PTRACE_GET_WATCH_REGS] (struct mips64_watch_regs): New.
5243         [!PTRACE_GET_WATCH_REGS] (struct pt_watch_regs): New.
5244
5245 2013-07-27  Yao Qi  <yao@codesourcery.com>
5246
5247         * breakpoint.h: Include break-common.h.
5248         (enum target_hw_bp_type): Move to ...
5249         * common/break-common.h: ... here.  New.
5250
5251 2013-07-26  Cyril Nikolaev  <cyril@nichtverstehen.de>
5252
5253         * inflow.c (terminal_init_inferior_with_pgrp): Save inferior
5254         process group regardless of having tty on stdin.
5255
5256 2013-07-25  Doug Evans  <dje@google.com>
5257
5258         * linux-fork.h (detach_fork): Delete.
5259
5260 2013-07-25  Tom Tromey  <tromey@redhat.com>
5261
5262         PR remote/15256, PR remote/15266:
5263         * bfd-target.c (target_bfd_reopen): Initialize to_magic.
5264         * monitor.c (monitor_detach): Use unpush_target.
5265         * remote-m32r-sdi.c (m32r_detach): Use unpush_target.
5266         * remote-mips.c (mips_detach): Use unpush_target.  Don't
5267         call mips_close.
5268         * remote-sim.c (gdbsim_detach): Use unpush_target.
5269         * target.c (pop_target): Remove.
5270         (pop_all_targets_above): Don't call target_close.
5271         (target_close): Assert that the target is unpushed.
5272         * target.h (pop_target): Don't declare.
5273         * tracepoint.c (tfile_open): Use unpush_target.
5274
5275 2013-07-25  Tom Tromey  <tromey@redhat.com>
5276
5277         * linux-thread-db.c (init_thread_db_ops): Call
5278         complete_target_initialization.
5279         (_initialize_thread_db): Don't call add_target.
5280         * target.c (complete_target_initialization): New function.
5281         (add_target_with_completer): Call it.
5282         * target.h (complete_target_initialization): Declare.
5283
5284 2013-07-25  Mark Kettenis  <kettenis@gnu.org>
5285
5286         * hppa-tdep.h (enum hppa_regnum): Add members for all space registers.
5287         * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Add comment.
5288         (HPPANBSD_SIZEOF_GREGS): New define.
5289         (hppaobsd_supply_gregset): Handle additional registers.
5290         * hppabsd-nat.c (hppabsd_gregset_supplies_p): Adjust to indicate
5291         we provide more registers now.
5292         (hppabsd_supply_gregset): Supply additional registers.
5293         (hppabsd_collect_gregset): Collect additional registers.
5294
5295 2013-07-25  Mark Kettenis  <kettenis@gnu.org>
5296
5297         * hppabsd-tdep.c: Include "dwarf2-frame.h".
5298         (hppabsd_dwarf2_frame_init_reg): New function.
5299         (hppabsd_init_abi): Hook in the DWARF CFI frame unwinder.
5300
5301 2013-07-25  Andrew Burgess  <aburgess@broadcom.com>
5302
5303         * mi/mi-main.c (output_register): Make MI 'r' format use standard
5304         'z' format code.  Remove error for optimized out values, standard
5305         code will handle these fine.
5306
5307 2013-07-25  Andrew Burgess  <aburgess@broadcom.com>
5308
5309         * NEWS: Mention new 'z' formatter.
5310         * printcmd.c (print_scalar_formatted): Add new 'z' formatter.
5311         (_initialize_printcmd): Mention 'z' formatter in help text of the
5312         'x' command.
5313
5314 2013-07-24  Maciej W. Rozycki  <macro@codesourcery.com>
5315
5316         * mips-tdep.c (micromips_deal_with_atomic_sequence): Correct
5317         formatting.
5318
5319 2013-07-24  Sergio Durigan Junior  <sergiodj@redhat.com>
5320
5321         * breakpoint.c (create_longjmp_master_breakpoint): Check if probe
5322         interface can evaluate arguments.  Fallback to the old mode if it
5323         cannot.
5324         (create_exception_master_breakpoint): Likewise.
5325         * elfread.c (elf_can_evaluate_probe_arguments): New function.
5326         (struct sym_probe_fns elf_probe_fns): Export function above to the
5327         probe interface.
5328         * probe.c (can_evaluate_probe_arguments): New function.
5329         * probe.h (struct probe_ops) <can_evaluate_probe_arguments>: New
5330         function pointer.
5331         (can_evaluate_probe_arguments): New function prototype.
5332         * solib-svr4.c (svr4_create_solib_event_breakpoints): Check if
5333         probe interface can evaluate arguments.  Fallback to the old mode
5334         if it cannot.
5335         * stap-probe.c (stap_get_probe_argument_count): Check if probe
5336         interface can evaluate arguments.  Warning the user if it cannot.
5337         (stap_can_evaluate_probe_arguments): New function.
5338         (struct probe_ops stap_probe_ops): Export function above to the
5339         probe interface.
5340         * symfile.h (struct sym_probe_fns) <can_evaluate_probe_arguments>:
5341         New function pointer.
5342
5343 2013-07-24  Luis Machado  <lgustavo@codesourcery.com>
5344
5345         * Makefile.in (SFILES): Add common/target-common.c.
5346         Add common/target-common.h to headers.
5347         (COMMON_OBS): Add target-common.o.
5348         (target-common.o): New target.
5349         * linux-nat.h (resume_kind): Move to common/target-common.h.
5350         * target.c (target_waitstatus_to_string): Move to
5351         common/target-common.c.
5352         * target.h: Include target-common.h.
5353         (target_waitkind): Move to common/target-common.h.
5354         (target_waitstatus): Likewise.
5355         (TARGET_WNOHANG): Likewise.
5356         * common/target-common.c: New file.
5357         * common/target-common.h: New file.
5358
5359 2013-07-24  Doug Evans  <dje@google.com>
5360
5361         * dwarf2read.c (lookup_dwo_cutu): Change missing DWO complaint to
5362         a warning.
5363
5364 2013-07-23  Yao Qi  <yao@codesourcery.com>
5365
5366         * i386-tdep.c (i386_in_stack_tramp_p): Remove unused
5367         parameter 'gdbarch'.
5368         (i386_stack_tramp_frame_sniffer): Caller update.
5369         * i386-linux-tdep.c (i386_linux_core_read_xcr0): Remove
5370         parameter 'gdbarch' and 'target'.
5371         (i386_linux_core_read_description): Caller update.
5372         * amd64-linux-tdep.c (amd64_linux_core_read_description):
5373         Likewise.
5374         * i386-linux-tdep.h (i386_linux_core_read_xcr0): Update
5375         declaration.
5376
5377 2013-07-23  Tom Tromey  <tromey@redhat.com>
5378
5379         * dwarf2read.c (init_cutu_and_read_dies): Revert patch from
5380         2013-07-22.
5381
5382 2013-07-22  Doug Evans  <dje@google.com>
5383
5384         * exec.h (remove_target_sections): Delete arg abfd.
5385         * exec.c (exec_close): Update call to remove_target_sections.
5386         (remove_target_sections): Delete arg abfd.
5387         * solib.c (update_solib_list): Ditto.
5388         (reload_shared_libraries_1): Ditto.
5389         (clear_solib): Ditto, and unconditionally call remove_target_sections.
5390         * target.h (struct target_section): Rename key to owner.
5391         All uses updated.
5392
5393 2013-07-22  Tom Tromey  <tromey@redhat.com>
5394
5395         * solib-som.c (som_open_symbol_file_object): Call do_cleanups.
5396
5397 2013-07-22  Tom Tromey  <tromey@redhat.com>
5398
5399         * dwarf2read.c (init_cutu_and_read_dies): Remove 'free_cu_cleanup'.
5400         Simplify cleanup handling.
5401
5402 2013-07-22  Tom Tromey  <tromey@redhat.com>
5403
5404         * dwarf2read.c (dwarf_decode_line_header): Call do_cleanups
5405         on all return paths.
5406
5407 2013-07-22  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
5408
5409         * ppc-linux-nat.c (PPC_DEBUG_FEATURE_DATA_BP_DAWR): New define.
5410         (ppc_linux_region_ok_for_hw_watchpoint): Add checking to use the new
5411         DAWR interface for longer ranges hardware watchpoint (up to 512 bytes).
5412
5413 2013-07-22  Phil Muldoon  <pmuldoon@redhat.com>
5414
5415         * top.c (print_gdb_version): Add help, apropos description and
5416         url to online documentation.
5417
5418 2013-07-19  Hui Zhu  <hui@codesourcery.com>
5419
5420         PR gdb/15692
5421         * mi/mi-cmd-break.c (mi_argv_to_format): Handle double quotes.
5422
5423 2013-07-19  Yao Qi  <yao@codesourcery.com>
5424
5425         * target.c (update_current_target): Change the default action
5426         of 'to_traceframe_info' from tcomplain to return_zero.
5427         * target.h (struct target_ops) <to_traceframe_info>: Add more
5428         comments.
5429         * valops.c (read_value_memory): Call
5430         traceframe_available_memory unconditionally.
5431
5432 2013-07-18  Yao Qi  <yao@codesourcery.com>
5433
5434         * coffread.c (coff_symfile_read): Iterate over minimal symbols,
5435         if the name is prefixed by "__imp_" or "_imp_", look for minimal
5436         symbol without prefix.  If found, set its type to
5437         'mst_solib_trampoline'.
5438
5439 2013-07-17  Doug Evans  <dje@google.com>
5440
5441         * NEWS: Mention "set print raw frame-arguments".
5442         * gdbcmd.h (setprintrawlist, showprintrawlist): Declare.
5443         * stack.c (print_raw_frame_arguments): New static global.
5444         (print_frame_arg): Set opts.raw from print_raw_frame_arguments.
5445         (_initialize_stack): New command "set/show print raw frame-arguments".
5446         * valprint.c (setprintrawlist, showprintrawlist): New globals.
5447         (set_print_raw, show_print_raw): New functions.
5448         (_initialize_valprint): New prefix command "set/show print raw".
5449         * valprint.h (value_print_options): Improve comments.
5450
5451         * cli/cli-cmds.c (init_cmd_lists): Delete unnecessary initialization
5452         of all *list variables.
5453
5454         * gdbcmd.h (togglelist): Delete.
5455         * cli/cli-cmds.c (togglelist): Delete.
5456         (init_cmd_lists): Update.
5457         * cli/cli-cmds.h (togglelist): Delete.
5458
5459 2013-07-17  Tom Tromey  <tromey@redhat.com>
5460
5461         * dwarf2read.c (dwarf2_per_objfile_free): Clear
5462         dwarf2_per_objfile.
5463
5464 2013-07-16  Doug Evans  <dje@google.com>
5465
5466         * nto-tdep.c (nto_relocate_section_addresses): Update,
5467         target_section.bfd deleted.
5468         * ppc64-tdep.c (ppc64_convert_from_func_ptr_addr): Ditto.
5469         * s390-tdep.c (s390_load): Ditto.
5470         * solib-aix.c (solib_aix_relocate_section_addresses): Ditto.
5471
5472 2013-07-16  Andrew Burgess  <aburgess@broadcom.com>
5473
5474         * common/format.c (parse_format_string): Add checks for NULL
5475         character before calling strchr.
5476
5477 2013-07-16  Doug Evans  <dje@google.com>
5478
5479         * solist.h (target_so_ops.find_and_open_solib): Clarify usage of
5480         temp_pathname argument.
5481         * nto-tdep.c (nto_find_and_open_solib): Fix setting of temp_pathname
5482         when opening the file fails.
5483
5484         * target.h (struct target_section): Delete member bfd.
5485         All users updated to use the_bfd_section->owner instead.
5486         * exec.c (add_to_section_table): Assert bfd is expected value.
5487         Remove initialization of target_section.bfd.
5488         (remove_target_sections): Update.
5489         (section_table_available_memory): Update.
5490         (section_table_xfer_memory_partial): Update.
5491         (print_section_info): Update.
5492         (exec_set_section_address): Update.
5493         * record-full.c (record_full_core_xfer_partial): Update.
5494         * solib-svr4.c (svr4_relocate_section_addresses): Update.
5495         * solib-target.c (solib_target_relocate_section_addresses): Update.
5496         * symfile.c (build_section_addr_info_from_section_table): Update.
5497         * target.c (memory_xfer_live_readonly_partial): Update.
5498         (memory_xfer_partial_1): Update.
5499
5500 2013-07-15  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
5501
5502         * ppc-linux-nat.c: Since the new PowerPC specific ptrace interface is
5503         now available for embedded (BookE) and server (BookS) processors,
5504         correct mentions of 'booke' and adjust comments accordingly in order to
5505         avoid confusion. Rename struct 'booke_debug_info' to 'hwdebug_info'.
5506         (have_ptrace_booke_interface): Rename function and variable
5507         'have_ptrace_booke_interface' to 'have_ptrace_hwdebug_interface'.
5508         Rename struct 'booke_debug_info' to 'hwdebug_info'. Update all uses.
5509         (booke_cmp_hw_point): Rename function 'booke_cmp_hw_point' to
5510         'hwdebug_point_cmp'. Update all uses.
5511         (booke_find_thread_points_by_tid): Rename function
5512         'booke_find_thread_points_by_tid' to
5513         'hwdebug_find_thread_points_by_tid'. Update all uses.
5514         (booke_insert_point): Rename function 'booke_insert_point' to
5515         'hwdebug_insert_point'. Update all uses.
5516         (booke_remove_point): Rename function 'booke_remove_point' to
5517         'hwdebug_remove_point'. Update all uses.
5518
5519 2013-07-15  Maciej W. Rozycki  <macro@codesourcery.com>
5520
5521         * mips-tdep.c (mips_gdbarch_init): Replace hardcoded magic
5522         numbers with enum values.
5523
5524 2013-07-15  Ali Anwar  <ali_anwar@codesourcery.com>
5525
5526         PR threads/13217
5527         * thread.c (thread_apply_all_command): Check for valid threads
5528         and thread count.
5529         (thread_array_cleanup): New struct.
5530         (set_thread_refcount): New function.
5531
5532 2013-07-11  Andrew Burgess  <aburgess@broadcom.com>
5533
5534         * infcmd.c (default_print_one_register_info): Reuse function
5535         print_hex_chars.
5536
5537 2013-07-10  Tom Tromey  <tromey@redhat.com>
5538
5539         * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS, ADA_EXP_C): New macros.
5540         (ada-exp.o): New target.
5541
5542 2013-07-10  Sergio Durigan Junior  <sergiodj@redhat.com>
5543
5544         * mt-tdep.c (mt_registers_info): Call
5545         get_no_prettyformat_print_options instead of
5546         get_raw_print_options (regression by last patch from Doug
5547         Evans).
5548
5549 2013-07-09  Pedro Alves  <palves@redhat.com>
5550
5551         Checked in by Joel Brobecker  <brobecker@adacore.com>.
5552         * ada-lang.c (coerce_unspec_val_to_type): Use
5553         value_optimized_out_const.
5554         * value.c (value_optimized_out_const): New function.
5555         * value.h (value_optimized_out_const): New declaration.
5556
5557 2013-07-09  Doug Evans  <dje@google.com>
5558
5559         * defs.h (enum val_prettyformat): Renamed from val_prettyprint.
5560         Enum values rename as well.  All uses updated.
5561         * valprint.h (value_print_options): Rename member pretty to
5562         pretty format.  Rename member prettyprint_arrays to
5563         prettyformat_arrays.  Rename member prettyprint_structs to
5564         prettyformat_structs.  All uses updated.
5565         (get_no_prettyformat_print_options): Renamed from
5566         get_raw_print_options.
5567         * valprint.c (get_no_prettyformat_print_options): Renamed from
5568         get_raw_print_options.  All callers updated.
5569         (show_prettyformat_structs): Renamed from show_prettyprint_structs.
5570         All callers updated.
5571         (show_prettyformat_arrays): Renamed from show_prettyprint_arrays.
5572         All callers updated.
5573         (_initialize_valprint): Improve help text for "set print pretty" and
5574         "set print arrays".
5575
5576 2013-07-09  Andrew Burgess  <aburgess@broadcom.com>
5577
5578         * value.c (value_bits_valid): Revert previous change, and change
5579         by Pedro on 2013-07-04, due to regressions in
5580         gdb.dwarf2/implptr.exp and gdb.dwarf2/pieces.exp.
5581
5582 2013-07-08  Andrew Burgess  <aburgess@broadcom.com>
5583             Pedro Alves  <palves@redhat.com>
5584
5585         * value.c (value_bits_valid): If the value is not lval_computed
5586         or has no check validity handler then the answer is the
5587         optimized_out flag, otherwise defer to the handler.
5588
5589 2013-07-06  Eli Zaretskii  <eliz@gnu.org>
5590
5591         * top.c (print_gdb_configuration): Explain in output of
5592         --configuration what does "relocatable" mean.
5593
5594         * main.c (print_gdb_help): Regroup options in the --help text.
5595         See http://sourceware.org/ml/gdb-patches/2013-04/msg00362.html for
5596         the relevant discussions.
5597
5598 2013-07-06  Yao Qi  <yao@codesourcery.com>
5599
5600         * breakpoint.h (struct breakpoint_ops) <create_breakpoints_sal>:
5601         Remove parameter 'lsal'.
5602         * breakpoint.c (create_breakpoint): Move local variable 'lsal'
5603         to inner block.  Caller update.
5604         (base_breakpoint_create_breakpoints_sal): Update.
5605         (bkpt_create_breakpoints_sal): Likewise.
5606         (tracepoint_create_breakpoints_sal): Likewise.
5607         (strace_marker_create_breakpoints_sal): Get 'lsal' from the
5608         element 0 of vector 'canonical->sals'.
5609
5610 2013-07-05  Luis Machado  <lgustavo@codesourcery.com>
5611
5612         * rs6000-tdep.c (rs6000_stab_reg_to_regnum): Return the real
5613         register number instead of the pseudo register one.
5614         (rs6000_dwarf2_reg_to_regnum): Likewise.
5615
5616 2013-07-04  Pedro Alves  <palves@redhat.com>
5617
5618         * findvar.c (value_of_register): Use allocate_optimized_out_value
5619         if the register has been optimized out, instead of
5620         set_value_optimized_out.
5621         * frame-unwind.c (frame_unwind_got_optimized): Use
5622         allocate_optimized_out_value.
5623
5624 2013-07-04  Pedro Alves  <palves@redhat.com>
5625
5626         * value.c (value_bits_valid): If the value is not lval_computed,
5627         or doesn't have a check_validity hook, assume the value is entirely
5628         valid.
5629
5630 2013-07-04  Andrew Burgess  <aburgess@broadcom.com>
5631
5632         * stack.c (read_frame_arg): No longer fetch lazy values.
5633         * value.c (value_optimized_out): If the value is not already
5634         marked optimized out, and is lazy then fetch it.
5635         (value_primitive_field): Move optimized out check to later in the
5636         function, after we have loaded any lazy values.
5637         (value_fetch_lazy): Use optimized out flag directly rather than
5638         calling optimized_out method.
5639
5640 2013-07-04  Andrew Burgess  <aburgess@broadcom.com>
5641
5642         * valops.c: Don't include "user-regs.h".
5643         (value_fetch_lazy): Moved to value.c.
5644         * value.c: Include "user-regs.h".
5645         (value_fetch_lazy): Moved from valops.c.
5646
5647 2013-07-04  Yao Qi  <yao@codesourcery.com>
5648
5649         Revert:
5650         2013-06-27  Yao Qi  <yao@codesourcery.com>
5651
5652         * common/create-version.sh: Update comments.  Handle the case
5653         that TARGET_ALIAS is empty.
5654
5655 2013-07-03  Pedro Alves  <palves@redhat.com>
5656
5657         * Makefile.in (config.status): Depend on development.sh.
5658         (aclocal_m4_deps): Add libmcheck.m4.
5659         * acinclude.m4: Include libmcheck.m4.
5660         * configure.ac: Source development.sh instead of setting
5661         'development' here.  --enable-libmcheck/--disable-libmcheck code
5662         factored out to GDB_AC_LIBMCHECK.  Run it.
5663         * development.sh: New file.
5664         * libmcheck.m4: New file.
5665         * configure: Regenerate.
5666
5667 2013-07-02  Tom Tromey  <tromey@redhat.com>
5668
5669         * contrib/ari/update-web-ari.sh: Update for version.in change.
5670
5671 2013-07-02  Tom Tromey  <tromey@redhat.com>
5672
5673         * common/ptid.h: Comment fixes.
5674
5675 2013-07-01  Tom Tromey  <tromey@redhat.com>
5676
5677         * dwarf2read.c (dwarf2_get_dwz_file): Return NULL if
5678         .gnu_debugaltlink not found.  Use bfd_get_alt_debug_link_info.
5679         (dwarf2_read_index, create_all_comp_units): Update.
5680
5681 2013-07-01  Tom Tromey  <tromey@redhat.com>
5682
5683         * configure.ac (build_warnings): Add -Wold-style-definition.
5684         * configure: Rebuild.
5685         * machoread.c (_initialize_machoread): Use "(void)".
5686         * macrocmd.c (macro_inform_no_debuginfo): Fix formatting;
5687         use "(void)".
5688
5689 2013-07-01  Tom Tromey  <tromey@redhat.com>
5690
5691         * configure.ac (build_warnings): Add -Wold-style-declaration.
5692         * configure: Rebuild.
5693         * dsrec.c (make_srec): Use "static const", not "const static".
5694         * h8300-tdep.c (h8300_breakpoint_from_pc): Use "static const",
5695         not "const static".
5696         * mi/mi-parse.c (mi_no_values, mi_simple_values, mi_all_values):
5697         Use "static const", not "const static".
5698         * mn10300-tdep.c (mn10300_breakpoint_from_pc): Use "static const",
5699         not "const static".
5700         * moxie-tdep.c (moxie_breakpoint_from_pc): Use "static const",
5701         not "const static".
5702         * rs6000-tdep.c (rs6000_breakpoint_from_pc): Use "static const",
5703         not "const static".
5704         * v850-tdep.c (v850_breakpoint_from_pc): Use "static const",
5705         not "const static".
5706         (v850_dbtrap_breakpoint_from_pc): Likewise.
5707         * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Use "static const",
5708         not "const static".
5709
5710 2013-07-01  Tom Tromey  <tromey@redhat.com>
5711
5712         * configure.ac (build_warnings): Add -Wmissing-parameter-type.
5713         * configure: Rebuild.
5714
5715 2013-07-01  Pedro Alves  <palves@redhat.com>
5716
5717         * defs.h: Include "pathmax.h".
5718         * utils.c: Don't include sys/param.h.
5719         (gdb_realpath): Remove code that checks for MAXPATHLEN.
5720         * solib-ia64-hpux.c (ia64_hpux_handle_load_event): Use PATH_MAX
5721         instead of MAXPATHLEN.
5722         * solib-sunos.c: Don't include sys/param.h.
5723         * xcoffread.c: Don't include sys/param.h.
5724         * bsd-kvm.c: Don't include sys/param.h.
5725         * darwin-nat.c: Don't include sys/param.h.
5726         (darwin_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
5727         * darwin-nat-info.c: Don't include sys/param.h.
5728         * fbsd-nat.c (fbsd_pid_to_exec_file): Use PATH_MAX instead of
5729         MAXPATHLEN.
5730         * i386obsd-nat.c: Don't include sys/param.h.
5731         * inf-child.c: Don't include sys/param.h.
5732         (inf_child_fileio_readlink): Use PATH_MAX instead of MAXPATHLEN.
5733         * linux-fork.c: Don't include sys/param.h.
5734         (fork_save_infrun_state): Use PATH_MAX instead of MAXPATHLEN.
5735         * linux-nat.c: Don't include sys/param.h.
5736         (linux_child_pid_to_exec_file, linux_proc_pending_signals)
5737         (linux_proc_pending_signals): Use PATH_MAX instead of MAXPATHLEN.
5738         * m68klinux-nat.c: Don't include sys/param.h.
5739         * nbsd-nat.c: Don't include sys/param.h.
5740         (nbsd_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
5741         * ppc-linux-nat.c: Don't include sys/param.h.
5742         * rs6000-nat.c: Don't include sys/param.h.
5743         * spu-linux-nat.c. Don't include sys/param.h.
5744         * windows-nat.c: Don't include sys/param.h.
5745         * xtensa-linux-nat.c: Don't include sys/param.h.
5746         * config/i386/nm-fbsd.h: Don't include sys/param.h.
5747
5748 2013-07-01  Pedro Alves  <palves@redhat.com>
5749
5750         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add pathmax.
5751         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/pathmax.m4.
5752         * gnulib/aclocal.m4: Regenerate.
5753         * gnulib/config.in: Regenerate.
5754         * gnulib/configure: Regenerate.
5755         * gnulib/import/pathmax.h: New file.
5756         * gnulib/import/Makefile.am: Regenerate.
5757         * gnulib/import/Makefile.in: Regenerate.
5758         * gnulib/import/m4/gnulib-cache.m4: Regenerate.
5759         * gnulib/import/m4/gnulib-comp.m4: Regenerate.
5760         * gnulib/import/m4/pathmax.m4: New file.
5761
5762 2013-07-01  Pedro Alves  <palves@redhat.com>
5763
5764         * configure.ac (GDBINIT): Define, depending on host.
5765         * go32-nat.c (init_go32_ops): Don't override gdbinit here.
5766         * top.c (PATH_MAX): Delete fallback definition.
5767         (GDBINIT_FILENAME): Delete.
5768         (gdbinit): Reimplement as const char array set to the GDBINIT
5769         string constant.
5770         * top.h (gdbinit): Make const.
5771         * configure, config.in: Regenerate.
5772
5773 2013-07-01  Pedro Alves  <palves@redhat.com>
5774
5775         * cli/cli-cmds.c (source_script): Make 'file' parameter const.
5776         * cli/cli-cmds.h (source_script): Likewise.
5777         * exceptions.c (catch_command_errors_const): New function.
5778         * exceptions.h (catch_command_errors_const): Declare.
5779         * main.c (get_init_files): Make parameters const, and adjust.
5780         (captured_main): Make 'system_gdbinit', 'home_gdbinit' and
5781         'local_gdbinit' locals const.  Adjust to use
5782         catch_command_errors_const.
5783         (print_gdb_help): Make 'system_gdbinit', 'home_gdbinit' and
5784         'local_gdbinit' locals const.
5785
5786 2013-07-01  Pedro Alves  <palves@redhat.com>
5787
5788         * defs.h: Don't check HAVE_UNISTD_H before including <unistd.h>.
5789         (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO): Delete.
5790         * tracepoint.c: Don't check HAVE_UNISTD_H before including
5791         <unistd.h>.
5792
5793 2013-07-01  Pedro Alves  <palves@redhat.com>
5794
5795         Import the "unistd" gnulib module.
5796         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add "unistd".
5797         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/off_t.m4,
5798         import/m4/ssize_t.m4, import/m4/sys_types_h.m4 and
5799         import/m4/unistd_h.m4.
5800         * gnulib/aclocal.m4: Renenerate.
5801         * gnulib/config.in: Renenerate.
5802         * gnulib/configure: Renenerate.
5803         * gnulib/import/Makefile.am: Renenerate.
5804         * gnulib/import/Makefile.in: Renenerate.
5805         * gnulib/import/m4/gnulib-cache.m4: Renenerate.
5806         * gnulib/import/m4/gnulib-comp.m4: Renenerate.
5807         * gnulib/import/m4/off_t.m4: New file.
5808         * gnulib/import/m4/ssize_t.m4: New file.
5809         * gnulib/import/m4/sys_types_h.m4: New file.
5810         * gnulib/import/m4/unistd_h.m4: New file.
5811         * gnulib/import/sys_types.in.h: New file.
5812         * gnulib/import/unistd.c: New file.
5813         * gnulib/import/unistd.in.h: New file.
5814
5815 2013-07-01  Pedro Alves  <palves@redhat.com>
5816
5817         * utils.c <pathconf/_PC_PATH_MAX use>: Check if _PC_PATH_MAX is
5818         defined instead of checking HAVE_UNISTD_H.
5819
5820 2013-07-01  Pedro Alves  <palves@redhat.com>
5821
5822         Reimport gnulib from scratch.
5823         * gnulib/Makefile.in (aclocal_m4_deps): Remove reference to
5824         import/m4/onceonly.m4.
5825         * gnulib/aclocal.m4: Renegerate.
5826         * gnulib/config.in: Renegerate.
5827         * gnulib/configure: Renegerate.
5828         * gnulib/import/Makefile.in: Renegerate.
5829         * gnulib/import/extra/update-copyright: Renegerate.
5830         * gnulib/import/m4/onceonly.m4: Delete.
5831
5832 2013-07-01  Pedro Alves  <palves@redhat.com>
5833
5834         * tui/tui-regs.c (pagination_enabled): Delete declaration.
5835
5836 2013-06-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
5837
5838         Code cleanup.
5839         * remote.c (async_remote_interrupt_twice): Make it static.
5840         * remote.h (async_remote_interrupt_twice): Remove the declaration.
5841
5842 2013-06-29  Sergio Durigan Junior  <sergiodj@redhat.com>
5843
5844         * ia64-linux-tdep.c: Include <ctype.h>.
5845         (ia64_linux_stap_is_single_operand): New function.
5846         (ia64_linux_init_abi): Initialize SystemTap related attributes.
5847
5848 2013-06-28  Tom Tromey  <tromey@redhat.com>
5849
5850         * Makefile.in (version.c): Use version.in, not
5851         common/version.in.
5852         * common/create-version.sh: Likewise.
5853         * common/version.in: Move...
5854         * version.in: ...here.
5855
5856 2013-06-28  Pedro Alves  <palves@redhat.com>
5857
5858         * infrun.c (set_observer_mode): Don't declare pagination_enabled
5859         here.
5860         * utils.h (pagination_enabled): Declare.
5861
5862 2013-06-28  Pedro Alves  <palves@redhat.com>
5863
5864         * infrun.c (non_stop, non_stop_1, set_non_stop, show_non_stop):
5865         Move higher up in file.
5866
5867 2013-06-28  Tom Tromey  <tromey@redhat.com>
5868
5869         * tracepoint.c (deprecated_readline_begin_hook)
5870         (deprecated_readline_hook, deprecated_readline_end_hook): Don't
5871         declare.
5872
5873 2013-06-28  Pedro Alves  <palves@redhat.com>
5874
5875         PR tui/14880
5876         * tui/tui-regs.c (tui_get_register): Fetch value contents before
5877         checking if they're available.
5878         * value.c (value_available_contents_eq): Change comment.
5879         * value.h (value_available_contents_eq): Expand comment.
5880
5881 2013-06-27  Tom Tromey  <tromey@redhat.com>
5882
5883         * target.c (find_run_target): Remove.
5884         * target.h (find_run_target): Remove.
5885
5886 2013-06-27  Tom Tromey  <tromey@redhat.com>
5887
5888         * corelow.c (core_gdbarch): Now static.
5889
5890 2013-06-27  Tom Tromey  <tromey@redhat.com>
5891
5892         * target.c (target_struct_index): Remove.
5893
5894 2013-06-27  Pedro Alves  <palves@redhat.com>
5895
5896         * infrun.c: Remove comment describing the 'stepping over runtime
5897         loader dynamic symbol resolution code' mechanism; moved to
5898         gdbint.texinfo.
5899
5900 2013-06-27  Pedro Alves  <palves@redhat.com>
5901
5902         * exceptions.c (catch_command_errors): Remove spurious space.
5903         * exceptions.h (catch_command_errors): Second parameter is "arg",
5904         not "command".
5905
5906 2013-06-27  Yao Qi  <yao@codesourcery.com>
5907
5908         * common/create-version.sh: Update comments.  Handle the case
5909         that TARGET_ALIAS is empty.
5910
5911 2013-06-26  Pedro Alves  <palves@redhat.com>
5912
5913         * infrun.c (SOLIB_IN_DYNAMIC_LINKER): Delete macro and describing
5914         comment.
5915
5916 2013-06-26  Pedro Alves  <palves@redhat.com>
5917
5918         * infrun.c: Update comments on stepping over runtime loader
5919         dynamic symbol resolution code.
5920
5921 2013-06-26  Sergio Durigan Junior  <sergiodj@redhat.com>
5922
5923         * ax-gdb.h (union exp_element): Forward declare.
5924         * parser-defs.h: Include expression.h.
5925
5926 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
5927
5928         * mips-tdep.c (fetch_mips_16): Use unmake_compact_addr.
5929
5930 2013-06-26  Dmitry Kozlov <ddk@codesourcery.com>
5931
5932         * tracepoint.c (trace_save): Extend tsave to save starttime, stoptime.
5933
5934 2013-06-26  Dmitry Kozlov <ddk@codesourcery.com>
5935
5936         Fix trace-status to output proper start-time and stop-time.
5937         * tracepoint.c (trace_status_command): Fix type of printf arg to
5938         prevent improper type conversion.
5939         (trace_status_mi): Likewise.
5940
5941 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
5942
5943         * mips-tdep.c (mips_next_pc): Fix a typo.
5944
5945 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
5946
5947         * mips-tdep.c (micromips_scan_prologue): Fix a typo.
5948
5949 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
5950             Yao Qi  <yao@codesourcery.com>
5951
5952         * mi/mi-cmds.c (mi_cmds): Register -trace-frame-collected.
5953         * mi/mi-cmds.h (mi_cmd_trace_frame_collected): Declare.
5954         * mi/mi-main.c (print_variable_or_computed): New function.
5955         (mi_cmd_trace_frame_collected): New function.
5956         * tracepoint.c (find_trace_state_variable_by_number): New.
5957         (struct traceframe_info): Move to tracepoint.h
5958         (struct collection_list): Likewise.
5959         (do_collect_symbol): Include locals and arguments in the
5960         collected variables list.
5961         (clear_collection_list): Clear wholly collected variables list
5962         and computed variables list.
5963         (append_exp): New function.
5964         (encode_actions_1): Include variables in the wholly
5965         collected variables list.  Include memory ranges and
5966         full-fledged expressions in the computed expressions list.
5967         (encode_actions): Move some code to ...
5968         Return the cleanup chain.
5969         (encode_actions_rsp): ... here.  New function.
5970         (get_traceframe_location, get_traceframe_info): Remove static.
5971         * tracepoint.h (struct memrange): Moved from tracepoint.c.
5972         (struct collection_list): Moved from tracepoint.c.  Add two
5973         new fields 'wholly_collected' and 'computed'.
5974         (find_trace_state_variable_by_number): Declare.
5975         (encode_actions): Adjust declaration.
5976         (encode_actions_rsp): Declare.
5977         (get_traceframe_info, get_traceframe_location): Declare.
5978
5979         * NEWS: Mention new MI command -trace-frame-collected.
5980
5981 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
5982             Yao Qi  <yao@codesourcery.com>
5983
5984         * ctf.c (ctf_traceframe_info): Push trace state variables
5985         present in the trace data into the traceframe info object.
5986         * breakpoint.c (DEF_VEC_I): Remove.
5987         * common/filestuff.c (DEF_VEC_I): Likewise.
5988         * dwarf2loc.c (DEF_VEC_I): Likewise.
5989         * mi/mi-main.c (DEF_VEC_I): Likewise.
5990         * common/gdb_vecs.h (DEF_VEC_I): Define vector for int.
5991         * features/traceframe-info.dtd: Add tvar element and its
5992         attributes.
5993         * tracepoint.c (free_traceframe_info): Free vector 'tvars'.
5994         (build_traceframe_info): Push trace state variables present in
5995         the trace data into the traceframe info object.
5996         (traceframe_info_start_tvar): New function.
5997         (tvar_attributes): New.
5998         (traceframe_info_children): Add "tvar" element.
5999         * tracepoint.h (struct traceframe_info) <tvars>: New field.
6000
6001         * NEWS: Mention the change in GDB and GDBserver.
6002
6003 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
6004             Yao Qi  <yao@codesourcery.com>
6005
6006         * tracepoint.c (trace_dump_command): Move code to ...
6007         (get_traceframe_location): ... here.  New.
6008
6009 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
6010             Yao Qi  <yao@codesourcery.com>
6011
6012         * tracepoint.c (trace_dump_command): GDB emits an error
6013          instead of a warning when a traceframe is not selected.
6014
6015 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
6016             Yao Qi  <yao@codesourcery.com>
6017
6018         * tracepoint.c (tracepoint_list, stepping_list): Remove.
6019         (clear_collection_list): Free fields 'aexpre_list' and 'list'
6020         in collection_list.
6021         (do_clear_collection_list, init_collection_list): New.
6022         (encode_actions): Add local variables 'tracepoint_list' and
6023         'stepping_list'.  Call init_collection_list and make cleanup
6024         which calls do_clear_collection_list.  Don't call
6025         clear_collection_list.
6026         (_initialize_tracepoint): Delete references to
6027         'tracepoint_list' and 'stepping_list'.
6028
6029 2013-06-25  Tom Tromey  <tromey@redhat.com>
6030
6031         * common/create-version.sh (date): Use "$", not "$$" in sed
6032         expression.
6033
6034 2013-06-25  Kevin Buettner  <kevinb@redhat.com>
6035
6036         * NEWS (New targets): Add entry for TI MSP430.
6037
6038 2013-06-25  Yao Qi  <yao@codesourcery.com>
6039
6040         * remote.c (remote_start_remote): Move code to upload tsv
6041         earlier.
6042
6043 2013-06-25  Yao Qi  <yao@codesourcery.com>
6044             Hui Zhu  <hui@codesourcery.com>
6045             Pedro Alves  <palves@redhat.com>
6046
6047         PR breakpoints/15075
6048         PR breakpoints/15434
6049         * breakpoint.c (bpstat_stop_status): Call
6050         b->ops->after_condition_true.
6051         (update_dprintf_command_list): Don't append "continue" command
6052         to the command list of dprintf breakpoint.
6053         (base_breakpoint_after_condition_true): New function.
6054         (base_breakpoint_ops): Add base_breakpoint_after_condition_true.
6055         (dprintf_after_condition_true): New function.
6056         (initialize_breakpoint_ops): Set dprintf_after_condition_true.
6057         * breakpoint.h (breakpoint_ops): Add after_condition_true.
6058
6059 2013-06-24  Kevin Buettner  <kevinb@redhat.com>
6060
6061         * Makefile.in (ALL_TARGET_OBS): Add msp430-tdep.o.
6062         (ALLDEPFILES): Add msp430-tdep.c.
6063         * configure.tgt (msp430*-*-elf): New target.
6064         * msp430-tdep.c: New file.
6065
6066 2013-06-24  Maciej W. Rozycki  <macro@codesourcery.com>
6067
6068         * mips-tdep.c (mips_elf_make_msymbol_special): Handle MIPS16 and
6069         microMIPS synthetic symbols.
6070
6071 2013-06-24  Maciej W. Rozycki  <macro@codesourcery.com>
6072
6073         * objfiles.h (pc_in_section): New prototype.
6074         (in_plt_section): Remove name argument, replace prototype with
6075         static inline function.
6076         * mips-tdep.h: Include "objfiles.h".
6077         (in_mips_stubs_section): New function.
6078         * hppa-tdep.h (gdbarch_tdep): Remove name argument of
6079         in_solib_call_trampoline member.
6080         (hppa_in_solib_call_trampoline): Remove name argument.
6081         * objfiles.c (pc_in_section): New function.
6082         (in_plt_section): Remove function.
6083         * mips-linux-tdep.c: Include "objfiles.h".
6084         (mips_linux_in_dynsym_stub): Call in_mips_stubs_section.  Remove
6085         name argument.  Return 1 rather than the low 16-bit halfword of
6086         any instruction examined.
6087         (mips_linux_in_dynsym_resolve_code): Update
6088         mips_linux_in_dynsym_stub call accordingly.
6089         * mips-tdep.c (mips_stub_frame_sniffer): Use in_mips_stubs_section
6090         rather than an equivalent hand-coded sequence.
6091         * hppa-hpux-tdep.c (in_opd_section): Remove function.
6092         (hppa32_hpux_in_solib_call_trampoline): Remove name argument.
6093         (hppa64_hpux_in_solib_call_trampoline): Likewise.
6094         (hppa64_hpux_find_global_pointer): Use pc_in_section rather than
6095         in_opd_section.
6096         * hppa-tdep.c (hppa_stub_unwind_sniffer): Remove name argument
6097         on call to tdep->in_solib_call_trampoline.
6098         (hppa_in_solib_call_trampoline): Remove name argument, update
6099         according to in_plt_section change.
6100         (hppa_skip_trampoline_code): Update according to in_plt_section
6101         change.
6102         * aarch64-tdep.c (aarch64_stub_unwind_sniffer): Likewise.
6103         * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code):
6104         Likewise.
6105         * arm-tdep.c (arm_stub_unwind_sniffer): Likewise.
6106         * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
6107         * hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
6108         * nios2-tdep.c (nios2_stub_frame_sniffer): Likewise.
6109         * nto-tdep.c (nto_relocate_section_addresses): Likewise.
6110         * s390-tdep.c (s390_stub_frame_sniffer): Likewise.
6111         * sh-tdep.c (sh_stub_unwind_sniffer): Likewise.
6112         * solib-dsbt.c (dsbt_in_dynsym_resolve_code): Likewise.
6113         * solib-frv.c (frv_in_dynsym_resolve_code): Likewise.
6114         * solib-svr4.c (svr4_in_dynsym_resolve_code): Likewise.
6115         * solib-target.c (solib_target_in_dynsym_resolve_code): Likewise.
6116         * sparc-tdep.c (sparc_analyze_prologue): Likewise.
6117         * tic6x-tdep.c (tic6x_stub_unwind_sniffer): Likewise.
6118
6119 2013-06-24  Joel Brobecker  <brobecker@adacore.com>
6120
6121         * common/create-version.sh: Fix expansion of $host_alias
6122         and $target_alias in generation of HOST_NAME and TARGET_NAME
6123         (resp.).
6124
6125 2013-06-24  Tom Tromey  <tromey@redhat.com>
6126
6127         * common/create-version.sh: New file.
6128         * Makefile.in (version.c): Use bfd/version.h, common/version.in,
6129         create-version.sh.
6130         (HFILES_NO_SRCDIR): Use common/version.h.
6131         * version.in: Move to ...
6132         * common/version.in: ... here.  Replace date with "DATE".
6133         * version.h: Move to ...
6134         * common/version.h: ... here.
6135
6136 2013-06-21  Joel Brobecker  <brobecker@adacore.com>
6137
6138         * gdb/gnulib/Makefile.in: Update date in copyright header.
6139         * gdb/gnulib/configure.ac: Ditto.
6140         * gdb/gnulib/update-gnulib.sh: Ditto.
6141
6142 2013-06-21  Joel Brobecker  <brobecker@adacore.com>
6143
6144         * copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by
6145         "gdb/gnulib/import".
6146
6147 2013-06-21  Will Newton  <will.newton@linaro.org>
6148
6149         * doublest.c (ldfrexp): Remove function.
6150         (convert_doublest_to_floatformat): Call frexpl instead of
6151         ldfrexp.
6152
6153 2013-06-21  Will Newton  <will.newton@linaro.org>
6154
6155         * gnulib/update-gnulib.sh(IMPORTED_GNULIB_MODULES): Add frexpl.
6156         * gnulib/aclocal.m4: Regenerate.
6157         * gnulib/config.in: Regenerate.
6158         * gnulib/configure: Regenerate.
6159         * gnulib/import/Makefile.am: Update.
6160         * gnulib/import/Makefile.in: Update.
6161         * gnulib/import/m4/gnulib-cache.m4: Update.
6162         * gnulib/import/m4/gnulib-comp.m4: Update.
6163         * gnulib/import/float+.h: Import.
6164         * gnulib/import/float.c: Import.
6165         * gnulib/import/float.in.h: Import.
6166         * gnulib/import/fpucw.h: Import.
6167         * gnulib/import/frexp.c: Import.
6168         * gnulib/import/frexpl.c: Import.
6169         * gnulib/import/isnan.c: Import.
6170         * gnulib/import/isnand-nolibm.h: Import.
6171         * gnulib/import/isnand.c: Import.
6172         * gnulib/import/isnanl-nolibm.h: Import.
6173         * gnulib/import/isnanl.c: Import.
6174         * gnulib/import/itold.c: Import.
6175         * gnulib/import/m4/exponentd.m4: Import.
6176         * gnulib/import/m4/exponentl.m4: Import.
6177         * gnulib/import/m4/float_h.m4: Import.
6178         * gnulib/import/m4/fpieee.m4: Import.
6179         * gnulib/import/m4/frexp.m4: Import.
6180         * gnulib/import/m4/frexpl.m4: Import.
6181         * gnulib/import/m4/isnand.m4: Import.
6182         * gnulib/import/m4/isnanl.m4: Import.
6183         * gnulib/import/m4/math_h.m4: Import.
6184         * gnulib/import/math.c: Import.
6185         * gnulib/import/math.in.h: Import.
6186
6187 2013-06-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
6188
6189         * common/linux-btrace.c (cpu_supports_btrace): Remove variable vendor,
6190         replace strcmp with signature_INTEL_ebx, signature_INTEL_ecx and
6191         signature_INTEL_edx comparisons.
6192
6193 2013-06-20  Doug Evans  <dje@google.com>
6194
6195         symtab/15652
6196         * dwarf2read.c (try_open_dwop_file): New arg search_cwd.
6197         All callers updated.
6198         (open_dwp_file): If we can't find the dwp file, search the basename
6199         in debug-file-directory.
6200
6201         * dwarf2read.c (struct dwp_file): Fix comment.
6202         (open_and_init_dwp_file): Set dwp_file->name to bfd's file name.
6203
6204         * source.c (openp): Document OPF_TRY_CWD_FIRST+OPF_SEARCH_IN_PATH
6205         better.
6206
6207 2013-06-20  Yao Qi  <yao@codesourcery.com>
6208
6209         * breakpoint.c (create_breakpoint): Fix code indentation.
6210
6211 2013-06-20  Yao Qi  <yao@codesourcery.com>
6212
6213         * breakpoint.c (create_breakpoints_sal_default): Remove
6214         parameter 'lsal'.  Update declaration.
6215         (bkpt_create_breakpoints_sal): Caller update.
6216         (tracepoint_create_breakpoints_sal): Likewise.
6217
6218 2013-06-20  Pedro Alves  <pedro@codesourcery.com>
6219             Yao Qi  <yao@codesourcery.com>
6220
6221         * NEWS: Mention the new option '--skip-unavailable' of command
6222         -data-list-register-values.
6223         * mi/mi-main.c (mi_cmd_data_list_register_values): Accept the
6224         --skip-unavailable option.  Adjust to use output_register.
6225         (output_register): Add new 'skip_unavailable' parameter.
6226         Handle it.
6227
6228 2013-06-19  Mike Frysinger  <vapier@gentoo.org>
6229
6230         * Makefile.in (HFILES_NO_SRCDIR): Add common/i386-cpuid.h and
6231         common/i386-gcc-cpuid.h.
6232         * common/i386-cpuid.h: New wrapper header around i386-gcc-cpuid.h.
6233         * common/i386-gcc-cpuid.h: Rename from testsuite/gdb.arch/i386-cpuid.h.
6234         Copy the latest version from upstream gcc.
6235         * common/linux-btrace.c: Include i386-cpuid.h.
6236         (intel_supports_btrace): Delete x86 ifdefs and replace inline asm with
6237         call to i386_cpuid.
6238         (cpu_supports_btrace): Likewise.
6239         * go32-nat.c: Include i386-cpuid.h.
6240         (go32_sysinfo): Add (disabled) calls to i386_cpuid with comments.
6241
6242 2013-06-19  Doug Evans  <dje@google.com>
6243
6244         * symfile.c (symfile_bfd_open): Delete unnecessary declaration.
6245         (get_section_index): Ditto.
6246
6247 2013-06-19  Tom Tromey  <tromey@redhat.com>
6248
6249         * breakpoint.c (_initialize_breakpoint): Remove trailing \n from
6250         "dprintf" help.
6251
6252 2013-06-18  Doug Evans  <dje@google.com>
6253
6254         * dwarf2read.c (dw2_symtab_iter_next): Check value of cu_index
6255         before using it.
6256         (dw2_expand_symtabs_matching): Fix symbol kind validity check.
6257         Move test of cu_index closer to use.  Print complaint if cu_index
6258         is bad.
6259
6260 2013-06-18  Joel Brobecker  <brobecker@adacore.com>
6261
6262         * machoread.c (oso_vector): Delete this global.
6263         (macho_register_oso): Add new parameter "oso_vector_ptr".
6264         Use it instead of the "oso_vector" global.
6265         (macho_symtab_read, macho_symfile_read_all_oso): Likewise.
6266         (macho_symfile_read): Use a local oso_vector, to be free'ed
6267         at the end of this function, in place of the old "oso_vector"
6268         global.  Update various function calls accordingly.  Use one
6269         single cleanup chain for the entire function.
6270
6271 2013-06-18  Joel Brobecker  <brobecker@adacore.com>
6272
6273         * dwarf2read.c (dwarf2_per_objfile_free): Replace uses of
6274         DWARF2_PER_OBJFILE by uses of DATA instead.
6275
6276 2013-06-18  Tom Tromey  <tromey@redhat.com>
6277
6278         * break-catch-sig.c (signal_catchpoint_explains_signal): Add 'sig'
6279         argument.
6280         * breakpoint.c (bpstat_explains_signal): Add 'sig' argument.
6281         Special case signals other than GDB_SIGNAL_TRAP.
6282         (explains_signal_watchpoint): New function.
6283         (base_breakpoint_explains_signal): Add 'sig' argument.
6284         (initialize_breakpoint_ops): Set 'explains_signal' method for
6285         watchpoints.
6286         * breakpoint.h (struct breakpoint_ops) <explains_signal>: Add
6287         signal argument.
6288         (bpstat_explains_signal): Likewise.
6289         * infrun.c (handle_syscall_event, handle_inferior_event): Update.
6290
6291 2013-06-18  Tom Tromey  <tromey@redhat.com>
6292
6293         * python/py-inferior.c (gdbpy_selected_inferior): Don't incref.
6294
6295 2013-06-18  Tom Tromey  <tromey@redhat.com>
6296
6297         * python/python.c (finish_python_initialization): Decref
6298         'pythondir' on failure path as well.
6299
6300 2013-06-18  Tom Tromey  <tromey@redhat.com>
6301
6302         PR symtab/15391:
6303         * dwarf2loc.c (read_pieced_value): Truncate this_size_bits
6304         after taking bits_to_skip into account.  Sign extend byte_offset.
6305         * utils.h (gdb_sign_extend): Declare.
6306         * utils.c (gdb_sign_extend): New function.
6307
6308 2013-06-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
6309
6310         * dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.
6311
6312 2013-06-17  Pierre Muller  <muller@sourceware.org>
6313
6314         * corelow.c (core_open): Print GDB signal name instead of target
6315         signal number.
6316
6317 2013-06-17  Mike Frysinger  <vapier@gentoo.org>
6318
6319         * .gitignore: Add /gcore.
6320
6321 2013-06-13  Doug Evans  <dje@google.com>
6322
6323         * dwarf2read.c (try_open_dwop_file): Work around behaviour of
6324         OPF_TRY_CWD_FIRST to not search path if the file contains a '/'.
6325
6326 2013-06-12  Phil Muldoon  <pmuldoon@redhat.com>
6327
6328         * stack.c (backtrace_command_1): Fix indentation.
6329
6330 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
6331
6332         * window-nat.c (thread_rec): Add missing empty line after
6333         local variable declaration.
6334
6335 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
6336
6337         * windows-nat.c (thread_rec): Revert format used to print
6338         error code returned by SuspendThread from %d back to %u.
6339
6340 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
6341
6342         * windows-nat.c (windows_continue): Add "0x" prefix for thread
6343         ID in debug trace.
6344         (get_windows_debug_event): Likewise, for all debug traces.
6345
6346 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
6347
6348         * window-nat.c (thread_rec): Add thread ID in SuspendThread
6349         warning message.
6350
6351 2013-06-08  Pedro Alves  <pedro@codesourcery.com>
6352             Yao Qi  <yao@codesourcery.com>
6353
6354         * mi/mi-main.c (get_register): Remove declaration.
6355         (output_register): Declare.
6356         (mi_cmd_data_list_register_values): Remove local variable
6357         'tuple_cleanup'.  Move some code into output_register.
6358         (get_register): Renamed to ...
6359         (output_register): ... this.  Output the register's
6360         "number" ui_out tuple here.
6361
6362 2013-06-07  Pedro Alves  <palves@redhat.com>
6363
6364         * darwin-nat.c: Fix formating in copyright header.
6365         * darwin-nat.h: Likewise.
6366         * gnu-nat.c: Likewise.
6367         * machoread.c: Likewise.
6368
6369 2013-06-07  Pedro Alves  <palves@redhat.com>
6370
6371         PR server/14823
6372         * regformats/regdat.sh: Output #include tdesc.h.  Make globals
6373         static.  Output a global target description pointer.
6374         (init_registers_${name}): Adjust to initialize a
6375         target description structure.
6376
6377 2013-06-07  Will Newton  <will.newton@linaro.org>
6378
6379         * printcmd.c (build_address_symbolic): Call
6380         gdbarch_addr_bits_remove for text minimal symbols.
6381
6382 2013-06-07  Will Newton  <will.newton@linaro.org>
6383
6384         * MAINTAINERS: Add myself to Write After Approval.
6385
6386 2013-06-07  Yao Qi  <yao@codesourcery.com>
6387
6388         * tracepoint.c (start_tracing): Move code to ...
6389         (trace_reset_local_state): ... here.  New.
6390         (disconnect_tracing): Don't call set_current_traceframe,
6391         set_tracepoint_num, and set_traceframe_context. Call
6392         trace_reset_local_state instead.
6393         (tfile_close): Call trace_reset_local_state.
6394         * ctf.c (ctf_close): Likewise.
6395         * remote.c (remote_close): Likewise.
6396         * tracepoint.h (trace_reset_local_state): Declare.
6397
6398 2013-06-06  Doug Evans  <dje@google.com>
6399
6400         * dwarf2read.c: Whitespace fixes for DWP file format documentation,
6401         and fix header docs.
6402
6403 2013-06-05  Doug Evans  <dje@google.com>
6404             Keith Seitz  <keiths@redhat.com>
6405
6406         PR 15519
6407         * cp-namespace.c (find_symbol_in_baseclass): Call
6408         cp_lookup_symbol_in_namespace instead of cp_lookup_symbol_namespace.
6409         Check result of call to lookup_symbol_static.
6410         Call lookup_static_symbol_aux unconditionally.
6411         Call check_typedef on base types before accessing them.
6412         (cp_lookup_nested_symbol): Fix comment.
6413
6414 2013-06-05  Luis Machado  <lgustavo@codesourcery.com>
6415
6416         * gnu-v3-abi.c (gnuv3_skip_trampoline): Handle thunk
6417         minimal symbols pointing to function descriptors.
6418
6419 2013-06-05  Tom Tromey  <tromey@redhat.com>
6420
6421         * python/py-utils.c (gdb_pymodule_addobject): Cast away const.
6422
6423 2013-06-04  Sergio Durigan Junior  <sergiodj@redhat.com>
6424             Pedro Alves  <palves@redhat.com>
6425
6426         * remote.c (remote_wait_as): Restore signal handler before returning
6427         when GDB gets a notification.
6428
6429 2013-06-04  Gary Benson  <gbenson@redhat.com>
6430
6431         PR 2328
6432         * breakpoint.h (handle_solib_event): Moved function declaration
6433         to solib.h.
6434         * breakpoint.c (handle_solib_event): Moved function to solib.c.
6435         (bpstat_stop_status): Pass new argument to handle_solib_event.
6436         * solib.h (update_solib_breakpoints): New function declaration.
6437         (handle_solib_event): Moved function declaration from
6438         breakpoint.h.
6439         * solib.c (update_solib_breakpoints): New function.
6440         (handle_solib_event): Moved function from breakpoint.c.
6441         Updated to call solib_ops->handle_event if not NULL.
6442         * solist.h (target_so_ops): New fields "update_breakpoints" and
6443         "handle_event".
6444         * infrun.c (set_stop_on_solib_events): New function.
6445         (_initialize_infrun): Use the above for "set
6446         stop-on-solib-events".
6447         (handle_inferior_event): Pass new argument to handle_solib_event.
6448         * solib-svr4.c (probe.h): New include.
6449         (svr4_free_library_list): New forward declaration.
6450         (probe_action): New enum.
6451         (probe_info): New struct.
6452         (probe_info): New static variable.
6453         (NUM_PROBES): New definition.
6454         (svr4_info): New fields "using_xfer", "probes_table" and
6455         "solib_list".
6456         (free_probes_table): New function.
6457         (free_solib_list): New function.
6458         (svr4_pspace_data_cleanup): Free probes table and solib list.
6459         (svr4_copy_library_list): New function.
6460         (svr4_current_sos_via_xfer_libraries): New parameter "annex".
6461         (svr4_read_so_list): New parameter "prev_lm".
6462         (svr4_current_sos_direct): Renamed from "svr4_current_sos".
6463         (svr4_current_sos): New function.
6464         (probe_and_action): New struct.
6465         (hash_probe_and_action): New function.
6466         (equal_probe_and_action): Likewise.
6467         (register_solib_event_probe): Likewise.
6468         (solib_event_probe_at): Likewise.
6469         (solib_event_probe_action): Likewise.
6470         (solist_update_full): Likewise.
6471         (solist_update_incremental): Likewise.
6472         (disable_probes_interface_cleanup): Likewise.
6473         (svr4_handle_solib_event): Likewise.
6474         (svr4_update_solib_event_breakpoint): Likewise.
6475         (svr4_update_solib_event_breakpoints): Likewise.
6476         (svr4_create_solib_event_breakpoints): Likewise.
6477         (enable_break): Free probes table before creating breakpoints.
6478         Use svr4_create_solib_event_breakpoints to create breakpoints.
6479         (svr4_solib_create_inferior_hook): Free the solib list.
6480         (_initialize_svr4_solib): Initialise
6481         svr4_so_ops.handle_solib_event and svr4_so_ops.update_breakpoints.
6482
6483 2013-06-04  Gary Benson  <gbenson@redhat.com>
6484
6485         * target.h (target_ops): New field
6486         "to_augmented_libraries_svr4_read".
6487         (target_augmented_libraries_svr4_read): New macro.
6488         * target.c (update_current_target): Handle
6489         to_augmented_libraries_svr4_read.
6490         * remote.c (remote_state): New field
6491         "augmented_libraries_svr4_read".
6492         (remote_augmented_libraries_svr4_read_feature): New function.
6493         (remote_protocol_features): Add entry for
6494         "augmented-libraries-svr4-read".
6495         (remote_augmented_libraries_svr4_read): New function.
6496         (init_remote_ops): Initialize
6497         remote_ops.to_augmented_libraries_svr4_read.
6498
6499 2013-06-04  Gary Benson  <gbenson@redhat.com>
6500
6501         * NEWS: Update.
6502
6503 2013-06-04  Gary Benson  <gbenson@redhat.com>
6504
6505         * objfiles.h (inhibit_section_map_updates): New function
6506         declaration.
6507         (resume_section_map_updates): Likewise.
6508         (resume_section_map_updates_cleanup): Likewise.
6509         * objfiles.c (objfile_pspace_info): Removed field
6510         "objfiles_changed_p".  New fields "new_objfiles_available",
6511         "section_map_dirty" and "inhibit_updates".
6512         (allocate_objfile): Set new_objfiles_available.
6513         (free_objfile): Set section_map_dirty.
6514         (objfile_relocate1): Likewise.
6515         (in_plt_section): Likewise.
6516         (find_pc_section): Update the conditions under which the
6517         section map will be updated.
6518         (inhibit_section_map_updates): New function.
6519         (resume_section_map_updates): Likewise.
6520         (resume_section_map_updates_cleanup): Likewise.
6521
6522 2013-06-04  Gary Benson  <gbenson@redhat.com>
6523
6524         * probe.h (get_probe_argument_count): New declaration.
6525         (evaluate_probe_argument): Likewise.
6526         * probe.c (get_probe_argument_count): New function.
6527         (evaluate_probe_argument): Likewise.
6528         (probe_safe_evaluate_at_pc): Use the above new functions.
6529
6530 2013-06-04  Alan Modra  <amodra@gmail.com>
6531
6532         * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
6533         * rs6000-tdep.c (read_insn): Add frame param, don't assume big-endian.
6534         (ppc_insns_match_pattern): Add frame param.  Avoid multiple
6535         target mem reads on optional insns.
6536         * ppc-linux-tdep.c (ppc_skip_trampoline_code): Update
6537         ppc_insns_match_pattern calls.
6538         * ppc64-tdep.c (ppc64_standard_linkage2, ppc64_standard_linkage3):
6539         Add match for power7 thread safety insns, and new order of
6540         std 2,40(1) insn.  Correct code shown for _dl_runtime_resolve
6541         invocation in comment, and update rest of comment.
6542         (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN,
6543         PPC64_STANDARD_LINKAGE3_LEN): Delete.
6544         (ppc64_standard_linkage2_target): Update insn offsets.
6545         (ppc64_skip_trampoline_code): Use a single insn buffer.  Match newer
6546         stubs first.  Update calls.
6547
6548 2013-06-04  Yao Qi  <yao@codesourcery.com>
6549
6550         * solib.c (solib_find): Don't need dir separator if path has
6551         drive spec.
6552
6553 2013-06-03  Joel Brobecker  <brobecker@adacore.com>
6554
6555         Revert (indirectly causes a SIGSEGV):
6556         * machoread.c (macho_symfile_read): Assign first cleanup to
6557         'back_to'.
6558
6559 2013-06-03  Yao Qi  <yao@codesourcery.com>
6560
6561         * mi/mi-cmd-var.c (mi_no_values, mi_simple_values): Move to
6562         mi-parse.c.  Make them static.
6563         (mi_all_values): Likewise.
6564         (mi_parse_values_option): Move to mi-parse.c.  Rename it to
6565         mi_parse_print_values.  Make it external.
6566         * mi/mi-cmds.h (mi_no_values, mi_simple_values, mi_all_values):
6567         Remove the declarations.
6568         * mi/mi-parse.c (mi_parse_print_values): Moved from mi-cmd-var.c.
6569         * mi/mi-parse.h (mi_parse_print_values): Declare.
6570         * mi/mi-cmd-stack.c: Include mi-parse.h.
6571         (parse_print_values): Remove
6572         (mi_cmd_stack_list_locals): Call mi_parse_print_values instead
6573         of parse_print_values.
6574         (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Likewise.
6575
6576 2013-05-31  Pedro Alves  <pedro@codesourcery.com>
6577             Yao Qi  <yao@codesourcery.com>
6578
6579         * tracepoint.c (all_tracepoint_actions_and_cleanup): Declare.
6580         (encode_actions): Move code to ...
6581         (all_tracepoint_actions_and_cleanup): ... here.  New.
6582         (trace_dump_command): Likewise.
6583
6584 2013-05-30  Tom Tromey  <tromey@redhat.com>
6585
6586         * symmisc.c (maintenance_expand_symtabs): Call do_cleanups.
6587
6588 2013-05-30  Tom Tromey  <tromey@redhat.com>
6589
6590         * xml-support.c (gdb_xml_create_parser_and_cleanup): Rename from
6591         gdb_xml_create_parser_and_cleanup_1.  Return a cleanup.  Remove
6592         'old_chain' argument.  Add 'parser_result' argument.
6593         (gdb_xml_create_parser_and_cleanup): Remove old version.
6594         (gdb_xml_parse_quick): Update.
6595         (xml_process_xincludes): Update.
6596         * xml-support.h (gdb_xml_create_parser_and_cleanup): Don't
6597         declare.
6598
6599 2013-05-30  Tom Tromey  <tromey@redhat.com>
6600
6601         * probe.c (collect_probes): Check arguments for NULL before
6602         calling compile_rx_or_error.
6603         * utils.c (compile_rx_or_error): Require 'rx' to be non-NULL.
6604         Remove NULL return.
6605
6606 2013-05-30  Tom Tromey  <tromey@redhat.com>
6607
6608         * infrun.c (adjust_pc_after_break): Introduce an outer null
6609         cleanup.
6610
6611 2013-05-30  Tom Tromey  <tromey@redhat.com>
6612
6613         * mi/mi-cmd-var.c (varobj_update_one): Add an outer null cleanup.
6614
6615 2013-05-30  Tom Tromey  <tromey@redhat.com>
6616
6617         * cli/cli-script.c (read_command_lines_1): Use a null cleanup
6618         for 'old_chain'.  Do not check 'head' before processing
6619         cleanups.
6620
6621 2013-05-30  Tom Tromey  <tromey@redhat.com>
6622
6623         * mi/mi-cmd-stack.c (list_arg_or_local): Remove
6624         "cleanup_tuple".
6625
6626 2013-05-30  Tom Tromey  <tromey@redhat.com>
6627
6628         * dbxread.c (dbx_read_symtab): Declare 'back_to' in a more
6629         inner scope.  Unconditionally call do_cleanups.
6630
6631 2013-05-30  Tom Tromey  <tromey@redhat.com>
6632
6633         * source.c (find_and_open_source): Call do_cleanups.
6634
6635 2013-05-30  Tom Tromey  <tromey@redhat.com>
6636
6637         * linux-thread-db.c (thread_db_load_search): Unconditionally
6638         call do_cleanups.
6639
6640 2013-05-30  Tom Tromey  <tromey@redhat.com>
6641
6642         * solib-aix.c (solib_aix_bfd_open): Don't use a null cleanup
6643         for 'cleanup'; instead use a later one.
6644
6645 2013-05-30  Tom Tromey  <tromey@redhat.com>
6646
6647         * python/py-breakpoint.c (bppy_get_commands): Use
6648         explicit, unconditional return.
6649         * python/py-frame.c (frapy_read_var): Likewise.
6650         * python/python.c (gdbpy_decode_line): Likewise.
6651
6652 2013-05-30  Tom Tromey  <tromey@redhat.com>
6653
6654         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
6655         do_cleanups on all return paths.
6656
6657 2013-05-30  Tom Tromey  <tromey@redhat.com>
6658
6659         * top.c (execute_command): Discard 'cleanup_if_error' cleanups.
6660
6661 2013-05-30  Tom Tromey  <tromey@redhat.com>
6662
6663         * stabsread.c (read_struct_type): Call do_cleanups along
6664         all return paths.
6665
6666 2013-05-30  Maciej W. Rozycki  <macro@codesourcery.com>
6667
6668         * mips-linux-tdep.c: Adjust formatting throughout.
6669
6670 2013-05-30  Tom Tromey  <tromey@redhat.com>
6671
6672         * mipsread.c (read_alphacoff_dynamic_symtab): Call do_cleanups
6673         along all return paths.
6674
6675 2013-05-30  Tom Tromey  <tromey@redhat.com>
6676
6677         * symfile.c (find_separate_debug_file): Call do_cleanups
6678         along all return paths.
6679
6680 2013-05-30  Tom Tromey  <tromey@redhat.com>
6681
6682         * symtab.c (search_symbols): Introduce a null cleanup for
6683         'retval_chain'.
6684
6685 2013-05-30  Tom Tromey  <tromey@redhat.com>
6686
6687         * python/py-value.c (valpy_binop): Call do_cleanups before
6688         exiting loop.
6689
6690 2013-05-30  Tom Tromey  <tromey@redhat.com>
6691
6692         * python/py-prettyprint.c (print_children): Remove extra
6693         do_cleanups call.
6694
6695 2013-05-30  Tom Tromey  <tromey@redhat.com>
6696
6697         * python/py-frame.c (frapy_read_var): Call do_cleanups along
6698         all return paths.
6699
6700 2013-05-30  Tom Tromey  <tromey@redhat.com>
6701
6702         * python/py-breakpoint.c (bppy_get_commands): Call do_cleanups
6703         along all return paths.
6704
6705 2013-05-30  Tom Tromey  <tromey@redhat.com>
6706
6707         * cli/cli-logging.c (set_logging_redirect): Unconditionally
6708         call do_cleanups.
6709
6710 2013-05-30  Tom Tromey  <tromey@redhat.com>
6711
6712         * varobj.c (c_value_of_root): Call do_cleanups along all
6713         return paths.
6714
6715 2013-05-30  Tom Tromey  <tromey@redhat.com>
6716
6717         * tracepoint.c (trace_dump_command): Unconditionally call
6718         do_cleanups.
6719
6720 2013-05-30  Tom Tromey  <tromey@redhat.com>
6721
6722         * breakpoint.c (output_thread_groups, parse_cmd_to_aexpr): Call
6723         do_cleanups earlier.
6724
6725 2013-05-30  Tom Tromey  <tromey@redhat.com>
6726
6727         * machoread.c (macho_symfile_read): Assign first cleanup to
6728         'back_to'.
6729
6730 2013-05-30  Tom Tromey  <tromey@redhat.com>
6731
6732         * m32r-rom.c (m32r_load): Call do_cleanups at all returns.
6733
6734 2013-05-30  Tom Tromey  <tromey@redhat.com>
6735
6736         * mi/mi-main.c (list_available_thread_groups): Call do_cleanups.
6737
6738 2013-05-30  Tom Tromey  <tromey@redhat.com>
6739
6740         * inf-ptrace.c (inf_ptrace_create_inferior): Unconditionally
6741         call discard_cleanups.
6742         (inf_ptrace_attach): Likewise.
6743
6744 2013-05-30  Tom Tromey  <tromey@redhat.com>
6745
6746         * remote-mips.c (mips_exit_debug): Call do_cleanups on all
6747         return paths.
6748         (mips_initialize): Likewise.
6749         (common_open): Call do_cleanups.
6750
6751 2013-05-30  Tom Tromey  <tromey@redhat.com>
6752
6753         * utils.c (internal_vproblem): Call do_cleanups.
6754
6755 2013-05-30  Tom Tromey  <tromey@redhat.com>
6756
6757         * linespec.c (find_linespec_symbols): Don't reassign to 'cleanup'.
6758
6759 2013-05-30  Tom Tromey  <tromey@redhat.com>
6760
6761         * cli/cli-script.c (setup_user_args): Don't return after error.
6762
6763 2013-05-30  Tom Tromey  <tromey@redhat.com>
6764
6765         * somread.c (som_symtab_read): Call do_cleanups.
6766
6767 2013-05-30  Tom Tromey  <tromey@redhat.com>
6768
6769         * printcmd.c (print_command_1): Unconditionally call do_cleanups.
6770
6771 2013-05-30  Tom Tromey  <tromey@redhat.com>
6772
6773         * cli/cli-cmds.c (cd_command, alias_command): Call do_cleanups.
6774         * cli/cli-dump.c (restore_binary_file): Call do_cleanups.
6775         * interps.c (interpreter_exec_cmd): Call do_cleanups.
6776         * source.c (show_substitute_path_command): Call do_cleanups.
6777         (unset_substitute_path_command, set_substitute_path_command):
6778         Likewise.
6779         * symfile.c (load_command): Call do_cleanups.
6780
6781 2013-05-30  Tom Tromey  <tromey@redhat.com>
6782
6783         * contrib/cleanup_check.py: New file.
6784         * contrib/gcc-with-excheck: Add option parsing.
6785
6786 2013-05-30  Joel Brobecker  <brobecker@adacore.com>
6787
6788         * windows-nat.c (windows_delete_thread): Add missing space
6789         in cast expression.
6790
6791 2013-05-30  Hafiz Abid Qadeer  <abidh@codesourcery.com>
6792
6793         * inferior.c (top level): Include tilde.h.
6794         (add_inferior_command): Call tilde_expand on the value of 'exec'
6795         argument.
6796
6797 2013-05-30  Pedro Alves  <pedro@codesourcery.com>
6798             Yao Qi  <yao@codesourcery.com>
6799
6800         * tracepoint.c (encode_actions_1): Remove parameter 't'.
6801         Caller update.
6802         (encode_actions): Likewise.
6803         * remote.c (remote_download_tracepoint): Caller update.
6804         * tracepoint.h (encode_actions): Update declaration.
6805
6806 2013-05-30  Pedro Alves  <palves@redhat.com>
6807
6808         * python/python-internal.h (gdb_Py_DECREF): Cast OP to PyObject
6809         pointer.
6810
6811 2013-05-30  Yao Qi  <yao@codesourcery.com>
6812
6813         * remote.c (remote_check_symbols): Remove unused parameter
6814         'objfile'.
6815         Declaration update.
6816         (remote_start_remote, remote_new_objfile): Caller update.
6817
6818 2013-05-30  Yao Qi  <yao@codesourcery.com>
6819
6820         * mi/mi-cmds.c (mi_cmds): Define MI command
6821         '-exec-arguments' by macro DEF_MI_CMD_CLI_1 instead of
6822         DEF_MI_CMD_CLI.
6823
6824 2013-05-29  Pedro Alves  <palves@redhat.com>
6825
6826         * remote.c (remote_insert_breakpoint, remote_remove_breakpoint)
6827         (remote_insert_watchpoint, remote_remove_watchpoint)
6828         (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
6829         (remote_verify_memory, compare_sections_command)
6830         (remote_search_memory): Set the general process/thread on the
6831         remote side.
6832
6833 2013-05-29  Pedro Alves  <palves@redhat.com>
6834
6835         * aarch64-tdep.c: Don't include "features/aarch64-without-fpu.c".
6836         (_initialize_aarch64_tdep): Don't call
6837         initialize_tdesc_aarch64_without_fpu.
6838         * features/Makefile (WHICH): Remove reference to
6839         aarch64-without-fpu.
6840         * features/aarch64-without-fpu.c: Delete file.
6841         * regformats/aarch64-without-fpu.dat: Delete file.
6842
6843 2013-05-28  Yao Qi  <yao@codesourcery.com>
6844
6845         * tracepoint.c (stringify_collection_list): Remove parameter
6846         'string'.
6847         (encode_actions): Caller update.  Remove local variables.
6848
6849 2013-05-24  Yao Qi  <yao@codesourcery.com>
6850
6851         * tracepoint.c (TFILE_PID): Remove.
6852         (tfile_open): Don't add thread and inferior.
6853         (tfile_close): Don't set 'inferior_ptid'.  Don't call
6854         exit_inferior_silent.
6855         (tfile_thread_alive): Remove.
6856         (init_tfile_ops): Don't set field 'to_thread_alive' of
6857         tfile_ops.
6858
6859 2013-05-23  Doug Evans  <dje@google.com>
6860
6861         * contrib/cc-with-tweaks.sh (-p): Handle no dwo files.
6862
6863 2013-05-23  Pedro Alves  <palves@redhat.com>
6864
6865         * common/filestuff.c [USE_WIN32API]: Define HAVE_SOCKETS.
6866         [HAVE_SYS_SOCKET_H]: Define HAVE_SOCKETS.
6867         (socket_mark_cloexec, gdb_socketpair_cloexec, gdb_socket_cloexec):
6868         Only define if HAVE_SOCKETS is defined.
6869         * configure.ac: Check for sys/socket.h.
6870         * config.in, configure: Regenerate.
6871
6872 2013-05-23  Pedro Alves  <palves@redhat.com>
6873
6874         * dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
6875         (open_and_init_dwp_file): Use %s/pulongest instead of %u for
6876         printing uint32_t variables.
6877
6878 2013-05-23  Pedro Alves  <palves@redhat.com>
6879
6880         * NEWS: Mention GDBserver range stepping support.
6881
6882 2013-05-23  Yao Qi  <yao@codesourcery.com>
6883             Pedro Alves  <palves@redhat.com>
6884
6885         * gdbthread.h (struct thread_control_state) <may_range_step>: New
6886         field.
6887         * infcmd.c (step_once, until_next_command): Enable range stepping.
6888         * infrun.c (displaced_step_prepare): Disable range stepping.
6889         (resume): Disable range stepping if stepping over a breakpoint or
6890         we have software watchpoints.  If range stepping is enabled,
6891         assert the thread is in the stepping range.
6892         (clear_proceed_status_thread): Clear may_range_step.
6893         (handle_inferior_event): Disable range stepping as soon as we know
6894         the thread that hit the event.  Re-enable it whenever we're going
6895         to step with a step range.
6896         * remote.c (struct vCont_action_support) <r>: New field.
6897         (use_range_stepping): New global.
6898         (remote_vcont_probe): Handle 'r' action.
6899         (append_resumption): Append an 'r' action if the thread may range
6900         step.
6901         (show_range_stepping): New function.
6902         (set_range_stepping): New function.
6903         (_initialize_remote): Call add_setshow_boolean_cmd to register the
6904         'set range-stepping' and 'show range-stepping' commands.
6905         * NEWS: Mention range stepping, the new vCont;r action, and the
6906         new "set/show range-stepping" commands.
6907
6908 2013-05-23  Yao Qi  <yao@codesourcery.com>
6909             Pedro Alves  <palves@redhat.com>
6910
6911         * remote.c (struct vCont_action_support): New struct.
6912         (struct remote_state) <support_vCont_t>: Remove field.
6913         <vCont_actions_support>: New field.
6914         (remote_vcont_probe, remote_stop_ns): Update.
6915
6916 2013-05-23  Yao Qi  <yao@codesourcery.com>
6917             Pedro Alves  <palves@redhat.com>
6918
6919         * gdbthread.h (pc_in_thread_step_range): New declaration.
6920         * thread.c (pc_in_thread_step_range): New function.
6921         * infrun.c (handle_inferior_event): Use it.
6922
6923 2013-05-23  Joel Brobecker  <brobecker@adacore.com>
6924
6925         * mi/mi-cmd-break.c (mi_argv_to_format): Use xsnprintf instead
6926         of sprintf.
6927
6928 2013-05-22  Keith Seitz  <keiths@redhat.com>
6929
6930         * ada-lang.c (is_known_support_routine): Add explicit free of
6931         'func_name' from find_frame_funname.
6932         (ada_unhandled_exception_name_addr_from_raise): Add cleanups
6933         for func_name from find_frame_funname.
6934         * python/py-frame.c (frapy_name): Add explicit free of
6935         'name' from find_frame_funname.
6936         * stack.c (find_frame_funname): Add comment explaining that
6937         funcp must be freed by the caller.
6938         Return copy of symbol names instead of pointers.
6939         (print_frame): Add a cleanup for 'funname' from
6940         find_frame_funname.
6941         * stack.h (find_frame_funname): Remove "const" from
6942         'funname' parameter.
6943
6944 2013-05-22  Tom Tromey  <tromey@redhat.com>
6945
6946         PR c++/15401:
6947         * c-valprint.c (c_value_print): Use value_addr for
6948         references.  Convert back to reference type with value_ref.
6949
6950 2013-05-22  Eli Zaretskii  <eliz@gnu.org>
6951
6952         * windows-nat.c (handle_unload_dll): Don't call solib_add for the
6953         unloaded DLL, it will be done by handle_solib_event.  See
6954         http://sourceware.org/ml/gdb-patches/2013-05/msg00713.html for the
6955         details.
6956
6957 2013-05-22  Phil Muldoon  <pmuldoon@redhat.com>
6958
6959         * ui-out.c: Create typedef ui_out_level_p and define vector
6960         operations for that type.
6961         (struct ui_out): Use a vector instead of an array.
6962         (current_level): Return level from a vector.
6963         (push_level): Create a level in a vector.
6964         (pop_level): Delete a level in a vector.
6965         (ui_out_new): Create initial level zero level, and store in a
6966         vector.
6967         (ui_out_destroy): Add vector cleanup.
6968
6969 2013-05-22  Pedro Alves  <palves@redhat.com>
6970
6971         * python/python-internal.h (gdb_Py_DECREF): Tag with
6972         "ARI: editCase function".
6973
6974 2013-05-21  Paul Pluzhnikov  <ppluzhnikov@google.com>
6975
6976         * solib-svr4.c (svr4_free_so): Protect against NULL dereference.
6977
6978 2013-05-21  Pedro Alves  <palves@redhat.com>
6979
6980         * python/py-prettyprint.c (apply_val_pretty_printer): Check
6981         whether PRINTER is NULL before installing a Py_DECREF cleanup.
6982         * python/py-utils.c (py_decref): Don't check for NULL before
6983         calling Py_DECREF.
6984
6985 2013-05-21  Pedro Alves  <palves@redhat.com>
6986
6987         * python/py-utils.c (py_decref): Remove extra braces.
6988         (gdb_pymodule_addobject): Remove extra braces.
6989         * python-internal.h (gdb_Py_DECREF): New static inline function.
6990         (Py_DECREF): Redefine as calling gdb_Py_DECREF.
6991
6992 2013-05-21  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
6993
6994         * breakpoints.c (detach_breakpoints): Do not
6995         detach breakpoints locations with loc_type bp_loc_other.
6996
6997 2013-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
6998
6999         Workaround Python 2.6.
7000         * python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
7001         a block.
7002
7003 2013-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
7004
7005         Code cleanup: constification.
7006         * solib.c (solib_ops): Make return type and ops variable type const.
7007         (set_solib_ops): Make the new_ops parameter and ops variable const.
7008         (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
7009         (solib_add, solib_keep_data_in_core, clear_solib)
7010         (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
7011         (reload_shared_libraries, solib_global_lookup): Make the ops variable
7012         const.
7013         * solib.h (set_solib_ops): Make the new_ops parameter const.
7014
7015 2013-05-21  Joel Brobecker  <brobecker@adacore.com>
7016
7017         * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
7018         variable.
7019         (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
7020         (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
7021         (SYSTEM_GDBINIT_FILES): New variables.
7022         (all): Add stamp-system-gdbinit.
7023         (stamp-system-gdbinit): New rule.
7024         (clean-system-gdbinit, install-system-gdbinit)
7025         (uninstall-system-gdbinit): New rules.  Make them .PHONY.
7026         (install-only): Add dependency on install-system-gdbinit.
7027         (uninstall): Add dependency on uninstall-system-gdbinit.
7028         (clean): Add dependency on clean-system-gdbinit.
7029         * system-gdbinit/elinos.py: New file.
7030         * system-gdbinit/wrs-linux.py: New file.
7031
7032 2013-05-21  Joel Brobecker  <brobecker@adacore.com>
7033
7034         * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
7035
7036 2013-05-21  Hui Zhu  <hui@codesourcery.com>
7037
7038         * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
7039         * breakpoint.h (dprintf_breakpoint_ops): Add extern.
7040         * mi/mi-cmd-break.c (ctype.h): New include.
7041         (gdb_obstack.h): New include.
7042         (mi_argv_to_format, mi_cmd_break_insert_1): New.
7043         (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
7044         (mi_cmd_dprintf_insert): New.
7045         * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
7046         * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
7047
7048 2013-05-20  Tom Tromey  <tromey@redhat.com>
7049
7050         * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
7051
7052 2013-05-20  Tom Tromey  <tromey@redhat.com>
7053
7054         * python/py-value.c (valpy_get_dynamic_type): Simplify
7055         dynamic_type assignment.  Use Py_XINCREF.
7056
7057 2013-05-20  Tom Tromey  <tromey@redhat.com>
7058
7059         * python/py-type.c (typy_fields): Unconditionally decref 'r'.
7060
7061 2013-05-20  Tom Tromey  <tromey@redhat.com>
7062
7063         * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
7064         (gdbpy_selected_frame): Move object-construction code
7065         out of TRY_CATCH.
7066
7067 2013-05-20  Tom Tromey  <tromey@redhat.com>
7068
7069         * python/py-arch.c (gdbpy_initialize_arch): Use
7070         gdb_pymodule_addobject.
7071         * python/py-block.c (gdbpy_initialize_blocks): Use
7072         gdb_pymodule_addobject.
7073         * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
7074         gdb_pymodule_addobject.
7075         * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
7076         gdb_pymodule_addobject.
7077         * python/py-event.c (gdbpy_initialize_event_generic): Use
7078         gdb_pymodule_addobject.
7079         * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
7080         gdb_pymodule_addobject.
7081         * python/py-evts.c (add_new_registry): Use
7082         gdb_pymodule_addobject.
7083         (gdbpy_initialize_py_events): Likewise.
7084         * python/py-finishbreakpoint.c
7085         (gdbpy_initialize_finishbreakpoints): Use
7086         gdb_pymodule_addobject.
7087         * python/py-frame.c (gdbpy_initialize_frames): Use
7088         gdb_pymodule_addobject.
7089         * python/py-function.c (gdbpy_initialize_functions): Use
7090         gdb_pymodule_addobject.
7091         * python/py-inferior.c (gdbpy_initialize_inferior): Use
7092         gdb_pymodule_addobject.
7093         * python/py-infthread.c (gdbpy_initialize_thread): Use
7094         gdb_pymodule_addobject.
7095         * python/py-objfile.c (gdbpy_initialize_objfile): Use
7096         gdb_pymodule_addobject.
7097         * python/py-param.c (gdbpy_initialize_parameters): Use
7098         gdb_pymodule_addobject.
7099         * python/py-progspace.c (gdbpy_initialize_pspace): Use
7100         gdb_pymodule_addobject.
7101         * python/py-symbol.c (gdbpy_initialize_symbols): Use
7102         gdb_pymodule_addobject.
7103         * python/py-symtab.c (gdbpy_initialize_symtabs): Use
7104         gdb_pymodule_addobject.
7105         * python/py-type.c (gdbpy_initialize_types): Use
7106         gdb_pymodule_addobject.
7107         * python/py-utils.c (gdb_pymodule_addobject): New function.
7108         * python/py-value.c (gdbpy_initialize_values): Use
7109         gdb_pymodule_addobject.
7110         * python/python-internal.h (gdb_pymodule_addobject): Declare.
7111         * python/python.c (_initialize_python): Use
7112         gdb_pymodule_addobject.
7113
7114 2013-05-20  Tom Tromey  <tromey@redhat.com>
7115
7116         * python/py-cmd.c (cmdpy_completer): Use explicit decref.
7117         * python/py-param.c (get_set_value, get_show_value): Use
7118         explicit decrefs.
7119         * python/python.c (start_type_printers, apply_type_printers):
7120         Use explicit decrefs.
7121
7122 2013-05-20  Tom Tromey  <tromey@redhat.com>
7123
7124         * python/py-evts.c (gdbpy_initialize_py_events): Don't
7125         incref the module.
7126
7127 2013-05-20  Tom Tromey  <tromey@redhat.com>
7128
7129         * python/python.c (gdbpy_run_events): Decref the result
7130         of PyObject_CallObject.
7131
7132 2013-05-20  Tom Tromey  <tromey@redhat.com>
7133
7134         * python/py-symtab.c (set_sal): Use
7135         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.  Return -1 on error.
7136         (symtab_and_line_to_sal_object): Update.
7137
7138 2013-05-20  Tom Tromey  <tromey@redhat.com>
7139
7140         * python/py-param.c (compute_enum_values): Decref 'item'.
7141
7142 2013-05-20  Tom Tromey  <tromey@redhat.com>
7143
7144         * mi/mi-main.c: Include python-internal.h.
7145         (mi_cmd_list_features): Check gdb_python_initialized.
7146         * python/py-inferior.c (python_on_normal_stop, python_on_resume)
7147         (python_inferior_exit, python_new_objfile, add_thread_object)
7148         (delete_thread_object, py_free_inferior): Check
7149         gdb_python_initialized.
7150         * python/py-prettyprint.c (apply_val_pretty_printer): Check
7151         gdb_python_initialized.
7152         * python/py-type.c (save_objfile_types): Check
7153         gdb_python_initialized.
7154         * python/python-internal.h (gdb_python_initialized): Declare.
7155         * python/python.c (ensure_python_env): Throw exception if
7156         Python not initialized.
7157         (before_prompt_hook, source_python_script_for_objfile)
7158         (start_type_printers, apply_type_printers,
7159         free_type_printers): Check gdb_python_initialized.
7160         * varobj.c (varobj_get_display_hint)
7161         (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
7162         (install_new_value_visualizer, varobj_set_visualizer)
7163         (value_get_print_value): Check gdb_python_initialized.
7164
7165 2013-05-20  Tom Tromey  <tromey@redhat.com>
7166
7167         * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
7168         Check errors.
7169         * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
7170         * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
7171         Check errors.
7172         * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
7173         Check errors.
7174         * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
7175         Check errors.
7176         * python/py-event.c (gdbpy_initialize_event): Return 'int'.
7177         Check errors.
7178         * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
7179         init function to return 'int'.
7180         * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
7181         Return 'int'.  Check errors.
7182         * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
7183         Check errors.
7184         * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
7185         Return 'int'.  Check errors.
7186         * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
7187         Check errors.
7188         * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
7189         Check errors.
7190         * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
7191         Check errors.
7192         * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
7193         Check errors.
7194         * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
7195         Check errors.
7196         * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
7197         Check errors.
7198         * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
7199         Check errors.
7200         * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
7201         Check errors.
7202         * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
7203         Check errors.
7204         * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
7205         Check errors.
7206         * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
7207         Check errors.
7208         * python/py-type.c (gdbpy_initialize_types): Return 'int'.
7209         Check errors.
7210         * python/py-value.c (gdbpy_initialize_values): Return 'int'.
7211         Check errors.
7212         * python/python-internal.h (gdbpy_initialize_auto_load,
7213         gdbpy_initialize_values, gdbpy_initialize_frames,
7214         gdbpy_initialize_symtabs, gdbpy_initialize_commands,
7215         gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
7216         gdbpy_initialize_blocks, gdbpy_initialize_types,
7217         gdbpy_initialize_functions, gdbpy_initialize_pspace,
7218         gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
7219         gdbpy_initialize_finishbreakpoints,
7220         gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
7221         gdbpy_initialize_thread, gdbpy_initialize_inferior,
7222         gdbpy_initialize_eventregistry, gdbpy_initialize_event,
7223         gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
7224         gdbpy_initialize_signal_event,
7225         gdbpy_initialize_breakpoint_event,
7226         gdbpy_initialize_continue_event,
7227         gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
7228         gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
7229         Update.  Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
7230         * python/python.c (gdb_python_initialized): New global.
7231         (gdbpy_initialize_events): Return 'int'.  Check errors.
7232         (_initialize_python): Check errors.  Set
7233         gdb_python_initialized.
7234
7235 2013-05-20  Tom Tromey  <tromey@redhat.com>
7236
7237         * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
7238         Decref the reslut of PyObject_CallMethod.
7239
7240 2013-05-20  Tom Tromey  <tromey@redhat.com>
7241
7242         * python/py-event.c (gdbpy_initialize_event_generic): Return
7243         early if PyType_Ready fails.
7244
7245 2013-05-20  Tom Tromey  <tromey@redhat.com>
7246
7247         * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
7248         as 'default' in the switch.
7249
7250 2013-05-20  Tom Tromey  <tromey@redhat.com>
7251
7252         * python/py-inferior.c (gdbpy_inferiors): Update.  Hoist
7253         get_addr_from_python calls out of TRY_CATCH.
7254         (infpy_write_memory, infpy_search_memory): Likewise.
7255         * python/py-utils.c (get_addr_from_python): Return negative
7256         value on error.  Use TRY_CATCH.
7257         * python/python-internal.h (get_addr_from_python): Use
7258         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
7259
7260 2013-05-20  Tom Tromey  <tromey@redhat.com>
7261
7262         * python/py-event.c (evpy_emit_event): Decref the
7263         result of PyObject_CallFunctionObjArgs.
7264
7265 2013-05-20  Tom Tromey  <tromey@redhat.com>
7266
7267         * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
7268         Correctly decref.
7269
7270 2013-05-20  Tom Tromey  <tromey@redhat.com>
7271
7272         * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
7273
7274 2013-05-20  Tom Tromey  <tromey@redhat.com>
7275
7276         * python/py-event.h (gdbpy_initialize_event_generic): Use
7277         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
7278         * python/py-evts.c (add_new_registry): Use
7279         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
7280         * python/python-internal.h
7281         (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
7282
7283 2013-05-20  Tom Tromey  <tromey@redhat.com>
7284
7285         * python/py-arch.c (archpy_disassemble): Update.
7286         * python/py-type.c (typy_get_composite, typy_lookup_typename)
7287         (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
7288         * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
7289         * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
7290         macro.
7291         (GDB_PY_HANDLE_EXCEPTION): Update.
7292         (gdbpy_convert_exception): Update.  Use CPYCHECKER_SETS_EXCEPTION.
7293
7294 2013-05-20  Tom Tromey  <tromey@redhat.com>
7295
7296         * python/python-internal.h (events_object_type): Remove.
7297
7298 2013-05-20  Tom Tromey  <tromey@redhat.com>
7299
7300         * python/py-event.h (evpy_emit_event): Use
7301         CPYCHECKER_STEALS_REFERENCE_TO_ARG.
7302         * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
7303         New macro.
7304
7305 2013-05-20  Tom Tromey  <tromey@redhat.com>
7306
7307         * py-evtregistry.c (create_event_object): Decref
7308         eventregistry_object if PyList_New fails.
7309
7310 2013-05-20  Tom Tromey  <tromey@redhat.com>
7311
7312         * py-cmd.c (gdbpy_string_to_argv): Check result of
7313         PyList_New.
7314
7315 2013-05-20  Tom Tromey  <tromey@redhat.com>
7316
7317         * python/python.c (before_prompt_hook): Add cleanup to
7318         decref 'hook'.
7319
7320 2013-05-20  Tom Tromey  <tromey@redhat.com>
7321
7322         * python/py-function.c (fnpy_init): Decref result of
7323         PyObject_GetAttrString.
7324
7325 2013-05-20  Tom Tromey  <tromey@redhat.com>
7326
7327         * python/py-threadevent.c (get_event_thread): Use
7328         CPYCHECKER_RETURNS_BORROWED_REF.
7329         * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
7330         New define.
7331         (pspace_to_pspace_object, objfile_to_objfile_object)
7332         (find_thread_object): Use it.
7333
7334 2013-05-20  Tom Tromey  <tromey@redhat.com>
7335
7336         * python/py-arch.c (arch_object_type): Use
7337         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7338         * python/py-block.c (block_syms_iterator_object_type):
7339         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7340         * python/py-bpevent.c (breakpoint_event_object_type):
7341         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7342         * python/py-cmd.c (cmdpy_object_type): Use
7343         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7344         * python/py-continueevent.c (continue_event_object_type):
7345         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7346         * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
7347         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7348         * python/py-events.h (thread_event_object_type):
7349         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7350         * python/py-evtregistry.c (eventregistry_object_type): Use
7351         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7352         * python/py-exitedevent.c (exited_event_object_type):
7353         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7354         * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
7355         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7356         * python/py-function.c (fnpy_object_type): Use
7357         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7358         * python/py-inferior.c (inferior_object_type, membuf_object_type):
7359         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7360         * python/py-infthread.c (thread_object_type): Use
7361         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7362         * python/py-lazy-string.c (lazy_string_object_type):
7363         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7364         * python/py-newobjfileevent.c (new_objfile_event_object_type):
7365         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7366         * python/py-objfile.c (objfile_object_type): Use
7367         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7368         * python/py-param.c (parmpy_object_type):
7369         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7370         * python/py-progspace.c (pspace_object_type):
7371         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7372         * python/py-signalevent.c (signal_event_object_type):
7373         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7374         * python/py-symtab.c (symtab_object_type, sal_object_type): Use
7375         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7376         * python/py-type.c (type_object_type, field_object_type)
7377         (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7378         * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
7379         define.
7380         (value_object_type, block_object_type, symbol_object_type)
7381         (event_object_type, stop_event_object_type, breakpoint_object_type)
7382         (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7383
7384 2013-05-20  Andreas Tobler  <andreas@fgznet.ch>
7385
7386         * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
7387         (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
7388
7389 2013-05-20  Doug Evans  <dje@google.com>
7390
7391         When reading CU, stay in DWO.  Be more tolerent of bad debug info.
7392         For Fission.
7393         * dwarf2read.c (struct dwarf2_per_cu_data): New member
7394         reading_dwo_directly.
7395         (struct signatured_type): New member dwo_unit.
7396         (struct die_reader_specs): New member comp_dir.
7397         (create_signatured_type_table_from_index): Use malloc for
7398         all_type_units instead of objfile's obstack.
7399         (create_all_type_units): Ditto.
7400         (fill_in_sig_entry_from_dwo_entry): New function.
7401         (add_type_unit): New function.
7402         (lookup_dwo_signatured_type): New function.
7403         (lookup_dwp_signatured_type): New function.
7404         (lookup_signatured_type): New arg cu.  All callers updated.
7405         (init_cu_die_reader): Initialize comp_dir.
7406         (read_cutu_die_from_dwo): New arg stub_comp_dir.  All callers updated.
7407         Change assert of matching type signatures to call error on mismatch.
7408         (lookup_dwo_unit): Add assert.
7409         (init_tu_and_read_dwo_dies): New function.
7410         (init_cutu_and_read_dies): Call it.
7411         (build_type_unit_groups): Handle case of no type unit groups created.
7412         (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
7413         (lookup_dwo_cutu): Tweak complaint.
7414         (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
7415         (dwarf2_per_objfile_free): Free all_type_units.
7416
7417 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
7418
7419         * windows-nat.c (handle_unload_dll): Add missing empty line.
7420
7421 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
7422
7423         * dwarf2read.c (prototyped_function_p): New function.
7424         (read_subroutine_type): Use it.
7425
7426 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
7427
7428         * rs6000-aix-tdep.c: De-indent some example code provided
7429         as a comment.
7430
7431 2013-05-17  Edjunior Machado  <emachado@linux.vnet.ibm.com>
7432
7433         * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
7434         region is ok for a hardware watchpoint using the new ptrace interface
7435         on Power servers.
7436
7437 2013-05-17  Doug Evans  <dje@google.com>
7438
7439         * NEWS: Mention new maintenance commands check-symtabs, and
7440         expand-symtabs, and renamed check-psymtabs.
7441         * psymtab.c (maintenance_check_psymtabs): Renamed from
7442         maintenance_check_symtabs.  Only process already-expanded symbol
7443         tables.
7444         (_initialize_psymtab): Update.
7445         * symmisc.c (maintenance_check_symtabs): New function.
7446         (maintenance_expand_name_matcher): New function
7447         (maintenance_expand_file_matcher): New function
7448         (maintenance_expand_symtabs): New function.
7449         (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
7450         commands.
7451
7452 2013-05-17  Tom Tromey  <tromey@redhat.com>
7453
7454         * python/py-inferior.c (infpy_read_memory): Don't call
7455         PyErr_SetString if PyObject_New fails.
7456         * python/py-frame.c (frame_info_to_frame_object): Don't call
7457         PyErr_SetString if PyObject_New fails.
7458
7459 2013-05-17  Pavel Chupin  <pavel.v.chupin@intel.com>
7460
7461         * acinclude.m4: Add check for dlopen in libdl.
7462         * configure.ac: Ditto.
7463         * configure: Regenerate.
7464
7465 2013-05-17  Phil Muldoon  <pmuldoon@redhat.com>
7466
7467         * frame.c (frame_stash): Convert to htab.
7468         (frame_addr_hash): New function.
7469         (frame_addr_hash_eq): New function.
7470         (frame_stash_create): Convert function to create
7471         a hash table.
7472         (frame_stash_add): Convert function to add an entry to a hash
7473         table.
7474         (frame_stash_find): Convert function to search the hash table.
7475         (frame_stash_invalidate): Convert function to empty the hash
7476         table.
7477         (get_frame_id): Only add to stash if a frame_id is created.
7478         (_initialize_frame): Call frame_stash_create.
7479
7480 2013-05-16  Yue Lu  <hacklu.newborn@gmail.com>  (tiny change)
7481
7482         * configure.ac: Ensure MIG is available when building for GNU Hurd
7483         hosts.
7484         * configure: Regenerate.
7485
7486 2013-05-16  Joel Brobecker  <brobecker@adacore.com>
7487
7488         * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
7489
7490 2013-05-16  Joel Brobecker  <brobecker@adacore.com>
7491
7492         * ada-lang.c (ada_make_symbol_completion_list): Make sure
7493         all cleanups are done before returning from this function.
7494
7495 2013-05-15  Joel Brobecker  <brobecker@adacore.com>
7496
7497         * utils.h: #include "exceptions.h".
7498         (enum errors): Remove partial declaration.
7499
7500 2013-05-15  Joel Brobecker  <brobecker@adacore.com>
7501
7502         * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
7503         * gdbarch.h, gdbarch.c: Regenerate.
7504         * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
7505         handling.
7506
7507         * rs6000-aix-tdep.h: New file.
7508         * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
7509         * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
7510         "xml-utils.h".
7511         (struct field_info, struct ld_info_desc): New types.
7512         (ld_info32_desc, ld_info64_desc): New static constants.
7513         (struct ld_info): New type.
7514         (rs6000_aix_extract_ld_info): New function.
7515         (rs6000_aix_shared_library_to_xml): Likewise.
7516         (rs6000_aix_ld_info_to_xml): Likewise.
7517         (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
7518         (rs6000_aix_init_osabi): Add call to
7519         set_gdbarch_core_xfer_shared_libraries_aix.
7520         * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
7521         Remove "xml-utils.h" include.
7522         (LdInfo): Delete typedef.
7523         (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
7524         Delete macros.
7525         (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
7526         Adjust code accordingly.
7527         (rs6000_core_ldinfo): Delete, folded into
7528         rs6000_aix_core_xfer_shared_libraries_aix.
7529         (rs6000_xfer_shared_library): Delete.
7530         (rs6000_xfer_shared_libraries): Reimplement.
7531
7532 2013-05-15  Markus Metzger  <markus.t.metzger@intel.com>
7533
7534         * record.c (record_goto_cmdlist): New.
7535         (cmd_record_goto): Split into this ...
7536         (cmd_record_goto_begin): ... this
7537         (cmd_record_goto_end): ... and this.
7538         (_initialize_record): Change "record goto" to prefix command.
7539         Add commands for "record goto begin" and "record goto end".
7540         Add an alias for "record goto start" to "record goto begin".
7541
7542 2013-05-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
7543
7544         * linespec.c (convert_linespec_to_sals): New comment for
7545         SOURCE_FILENAME assignment.
7546
7547 2013-05-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
7548
7549         * cleanups.c (restore_my_cleanups): Replace gdb_assert by
7550         internal_warning.
7551
7552 2013-05-14  Tom Tromey  <tromey@redhat.com>
7553
7554         * eval.c (parse_and_eval_long): Make 'exp' const.
7555         * value.h (parse_and_eval_long): Update.
7556
7557 2013-05-14  Tom Tromey  <tromey@redhat.com>
7558
7559         * ui-file.c (gdb_fopen): Make arguments const.
7560         * ui-file.h (gdb_fopen): Make arguments const.
7561
7562 2013-05-14  Tom Tromey  <tromey@redhat.com>
7563
7564         * remote.c (remote_set_trace_notes): Make arguments const.
7565         * target.c (update_current_target): Update cast.
7566         * target.h (to_set_trace_notes): Make arguments const.
7567
7568 2013-05-14  Tom Tromey  <tromey@redhat.com>
7569
7570         * go32-nat.c (go32_terminal_info): Make 'args' const.
7571         * inferior.h (child_terminal_info): Update.
7572         * inflow.c (child_terminal_info): Make 'args' const.
7573         * target.c (default_terminal_info): Make 'args' const.
7574         (debug_to_terminal_save_ours): Likewise.
7575         * target.h (struct target_ops) <to_terminal_info>: Make argument
7576         const.
7577
7578 2013-05-13  Tom Tromey  <tromey@redhat.com>
7579
7580         * gcore.c (create_gcore_bfd): Make 'filename' const.
7581         * gcore.h (create_gcore_bfd): Make 'filename' const.
7582         * record-full.c (record_full_save): Make 'recfilename' const.
7583         * target.c (target_save_record): Make 'filename' const.
7584         * target.h (struct target_ops) <to_save_record>: Make 'filename'
7585         const.
7586         (target_save_record): Likewise.
7587
7588 2013-05-13  Tom Tromey  <tromey@redhat.com>
7589
7590         PR gdb/15338:
7591         * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
7592         ranges section has been read.
7593
7594 2013-05-13  Tom Tromey  <tromey@redhat.com>
7595
7596         PR exp/15364:
7597         * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
7598         STRUCTOP_PTR>: Return a not_lval value for
7599         EVAL_AVOID_SIDE_EFFECTS.
7600         * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
7601         for EVAL_AVOID_SIDE_EFFECTS.
7602
7603 2013-05-13  Joel Brobecker  <brobecker@adacore.com>
7604
7605         * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
7606         floating point registers to register type before storing
7607         value.
7608         * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
7609         Likewise.
7610
7611 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
7612             Tom Tromey  <tromey@redhat.com>
7613
7614         * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
7615         New functions.
7616         * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
7617         Declare.
7618         * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
7619         (darwin_ptrace_him): Use unmark_fd_no_cloexec.
7620         * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
7621         (inf_ttrace_prepare): Use mark_fd_no_cloexec.
7622
7623 2013-05-10  Freddie Chopin  <freddie_chopin@op.pl>
7624             Tom Tromey  <tromey@redhat.com>
7625
7626         PR build/15414:
7627         * configure: Rebuild.
7628         * configure.ac (build_warnings): Do not use -Wformat-nonliteral
7629         with -Wno-format.
7630
7631 2013-05-10  Pedro Alves  <palves@redhat.com>
7632
7633         * remote.c (_initialize_remote): Fix spelling of
7634         qXfer:traceframe-info:read packet in packet config command.
7635
7636 2013-05-10  David Taylor  <dtaylor@emc.com>
7637
7638         PR remote/15455
7639
7640         * remote.c (remote_trace_set_readonly_regions): Do not overwrite
7641         "QTro" at start of packet.
7642
7643 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
7644
7645         * solib-aix.c (solib_aix_relocate_section_addresses):
7646         For the .bss section action, apply the same offset as
7647         the .data section.
7648
7649 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
7650
7651         * solib-aix.c (solib_aix_relocate_section_addresses):
7652         Remove FIXME comment.
7653
7654 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
7655
7656         PR tdep/15420:
7657         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
7658         New functions, directly copied from sparc-sol-thread.c.
7659         * sparc-sol-thread.c: Delete.
7660         * configure.ac: Remove code handling sparc-solaris-thread.c.
7661         * configure: Regenerate.
7662
7663 2013-05-10  Phil Muldoon  <pmuldoon@redhat.com>
7664
7665         * stack.c (backtrace_command_1): Add "no-filters", and Python frame
7666         filter logic.
7667         (backtrace_command): Add "no-filters" option parsing.
7668         (_initialize_stack): Alter help to reflect "no-filters" option.
7669         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
7670         (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
7671         (py-frame.o): Add target
7672         * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
7673         filter files.
7674         * python/python.h: Add new frame filter constants, and flag enum.
7675         (apply_frame_filter): Add definition.
7676         * python/python.c (apply_frame_filter): New non-Python
7677         enabled function.
7678         * python/py-utils.c (py_xdecref): New function.
7679         (make_cleanup_py_xdecref): Ditto.
7680         * python/py-objfile.c: Declare frame_filters dictionary.
7681         (objfpy_dealloc): Add frame_filters dealloc.
7682         (objfpy_new): Initialize frame_filters attribute.
7683         (objfile_to_objfile_object): Ditto.
7684         (objfpy_get_frame_filters): New function.
7685         (objfpy_set_frame_filters): New function.
7686         * python/py-progspace.c: Declare frame_filters dictionary.
7687         (pspy_dealloc): Add frame_filters dealloc.
7688         (pspy_new): Initialize frame_filters attribute.
7689         (pspacee_to_pspace_object): Ditto.
7690         (pspy_get_frame_filters): New function.
7691         (pspy_set_frame_filters): New function.
7692         * python/py-framefilter.c: New file.
7693         * python/lib/gdb/command/frame_filters.py: New file.
7694         * python/lib/gdb/frames.py: New file.
7695         * python/lib/gdb/__init__.py: Initialize global frame_filters
7696         dictionary
7697         * python/lib/gdb/FrameDecorator.py: New file.
7698         * python/lib/gdb/FrameIterator.py: New file.
7699         * mi/mi-cmds.c (mi_cmds): Add frame filters command.
7700         * mi/mi-cmds.h: Declare.
7701         * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
7702         --no-frame-filter logic, and Python frame filter logic.
7703         (stack_enable_frame_filters): New function.
7704         (parse_no_frame_option): Ditto.
7705         (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
7706         filter logic.
7707         (mi_cmd_stack_list_locals): Ditto.
7708         (mi_cmd_stack_list_args): Ditto.
7709         (mi_cmd_stack_list_variables): Ditto.
7710         * NEWS: Add frame filter note.
7711
7712 2013-05-09  Doug Evans  <dje@google.com>
7713
7714         * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
7715         All callers updated.
7716         (syms_from_objfile): Ditto.  Make static.
7717         (symbol_file_add_with_addrs): Renamed from
7718         symbol_file_add_with_addrs_or_offsets.  Delete args offsets,
7719         num_offsets.  All callers updated.
7720         * symfile.h (syms_from_objfile): Delete.
7721
7722         * symfile.c (decrement_reading_symtab): Add assert.
7723         (increment_reading_symtab): Ditto.
7724
7725 2013-05-09  Joel Brobecker  <brobecker@adacore.com>
7726
7727         * source.c (forward_search_command): Replace call to getc
7728         by call to fgetc.
7729         (reverse_search_command): Likewise.
7730
7731 2013-05-08  Doug Evans  <dje@google.com>
7732
7733         * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
7734         matching test.
7735
7736 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
7737
7738         * sol-thread.c (info_cb): Factorize the code a little.
7739
7740 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
7741
7742         * sol-thread.c (info_cb): Rework the output of the "maintenance
7743         info sol-threads" command a bit.
7744
7745 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
7746
7747         * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
7748         Replace ti.ti_startfunc by ti.ti_pc.
7749
7750 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
7751
7752         * solib-aix.c (solib_aix_free_library_list): New function
7753         for the case where HAVE_LIBEXPAT is not defined.
7754
7755 2013-05-07  Sergio Durigan Junior  <sergiodj@redhat.com>
7756
7757         PR breakpoints/15413:
7758         * breakpoint.c (condition_completer): Simplify the code to
7759         disconsider multiple locations of breakpoints when completing the
7760         "condition" command.
7761
7762 2013-05-07  Pierre Muller  <muller@sourceware.org>
7763
7764         * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
7765         instead of <sys/wait.h>.
7766
7767 2013-05-07  Pierre Muller  <muller@sourceware.org>
7768
7769         * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
7770         trailing new line from warning message.
7771
7772 2013-05-07  Pierre Muller  <muller@sourceware.org>
7773
7774         * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
7775         (PC_SOLIB): Change type from ari_deprecate to ari_regression.
7776
7777 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
7778
7779         * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
7780         error message (ARI fix).
7781
7782 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
7783
7784         * features/library-list-aix.dtd: Replace library-list by
7785         library-list-aix.
7786         * rs6000-nat.c: Replace library-list by library-list-aix
7787         throughout.
7788         * solib-aix.c: Likewise.
7789
7790 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
7791
7792         * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
7793         Renames TARGET_OBJECT_AIX_LIBRARIES.
7794         * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
7795         TARGET_OBJECT_LIBRARIES_AIX throughout.
7796         * solib-aix.c: Likwise.
7797
7798 2013-05-07  Yao Qi  <yao@codesourcery.com>
7799
7800         * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
7801         (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
7802
7803 2013-05-07  Yao Qi  <yao@codesourcery.com>
7804
7805         * solib-dsbt.c (enable_break): Declare.
7806         (dsbt_current_sos): Remove call to enable_break2.
7807         (enable_break2): Rename to enable_break.  Set solib breakpoint
7808         on '_dl_debug_state'.
7809         (enable_break): Remove.
7810
7811 2013-05-07  Luis Machado  <lgustavo@codesourcery.com>
7812
7813         * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
7814         debug state prior to replicating existing hardware watchpoints or
7815         breakpoints.
7816
7817 2013-05-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
7818
7819         * gcore.c (gcore_create_callback): Ignore sections with
7820         separate_debug_objfile_backlink != NULL.
7821
7822 2013-05-06  Sandra Loosemore  <sandra@codesourcery.com>
7823             Andrew Jenner  <andrew@codesourcery.com>
7824             Chung-Lin Tang  <cltang@codesourcery.com>
7825             Julian Brown  <julian@codesourcery.com>
7826
7827         Based on the nios2-elf port from Altera Corporation.
7828
7829         * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
7830         nios2-linux-tdep.o.
7831         (HFILES_NO_SRCDIR): Add nios2-tdep.h.
7832         (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
7833         * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
7834         * nios2-tdep.h: New.
7835         * nios2-tdep.c: New.
7836         * nios2-linux-tdep.c: New.
7837         * features/Makefile (WHICH): Add nios2-linux.
7838         (nios2-linux-expedite): Set.
7839         * features/nios2-cpu.xml: New.
7840         * features/nios2.xml: New.
7841         * features/nios2-linux.xml: New.
7842         * features/nios2.c: New (autogenerated).
7843         * features/nios2-linux.c: New (autogenerated).
7844         * regformats/nios2-linux.dat: New (autogenerated).
7845         * NEWS (Changes since GDB 7.6): Add new Nios II targets
7846         and commands.
7847
7848 2013-05-06  Doug Evans  <dje@google.com>
7849
7850         * symfile.c: Whitespace cleanup.
7851
7852         * solist.h (struct target_so_ops): New member clear_so.
7853         * solib-svr4.c (svr4_clear_so): New function.
7854         (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
7855         * solib.c (clear_so): Renamed from free_so_symbols.
7856         All callers updated.  Call target clear_so if it exists.
7857
7858 2013-05-06  Tom Tromey  <tromey@redhat.com>
7859
7860         * ada-lang.c (ada_value_primitive_packed_val): Don't
7861         call value_incref.
7862         * value.c (set_value_parent): Incref the new parent and decref
7863         the old parent.
7864         (value_copy, value_primitive_field): Use set_value_parent.
7865
7866 2013-05-06  Tom Tromey  <tromey@redhat.com>
7867
7868         * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
7869         (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
7870         if needed.
7871         * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
7872         * dwarf2read.c (write_constant_as_bytes)
7873         (dwarf2_fetch_constant_bytes): New functions.
7874
7875 2013-05-06  Tom Tromey  <tromey@redhat.com>
7876
7877         * dwarf2read.c (dwarf2_const_value_data): Remove unused
7878         parameters.
7879         (dwarf2_const_value_attr): Update.
7880
7881 2013-05-06  Tom Tromey  <tromey@redhat.com>
7882
7883         * somread.c (som_symfile_offsets): Add 'const' to addrs.
7884         * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
7885         * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
7886         Remove declaration.
7887
7888 2013-05-06  Tom Tromey  <tromey@redhat.com>
7889
7890         * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
7891         objfile's obstack.
7892
7893 2013-05-06  Doug Evans  <dje@google.com>
7894
7895         * dbxread.c (process_one_symbol): Constify section_offsets parameter.
7896         * stabsread.h (process_one_symbol): Update declaration.
7897         * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
7898         * elfread.c (elf_symfile_relocate_probe): Ditto.
7899         * psymtab.c (relocate_psymtabs): Ditto.
7900         * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
7901         (objfile_relocate): Ditto.
7902         * objfiles.h (objfile_relocate): Update declaration.
7903         * symfile.c (relative_addr_info_to_section_offsets): Constify
7904         addrs parameter.
7905         (default_symfile_offsets): Ditto.
7906         (syms_from_objfile_1): Constify offsets parameter.
7907         (syms_from_objfile): Ditto.
7908         (symbol_file_add_with_addrs_or_offsets): Ditto.
7909         (symfile_map_offsets_to_segments): Constify data parameter.
7910         * symfile.h (struct quick_symbol_functions): Constify new_offsets,
7911         delta parameters of member relocate.
7912         (struct sym_probe_fns): Constify new_offsets,
7913         delta parameters of member sym_relocate_probe.
7914         (struct sym_fns): Constify section_addr_info parameter of member
7915         sym_offsets.
7916         (relative_addr_info_to_section_offsets): Update declaration.
7917         (default_symfile_offsets): Ditto.
7918         (syms_from_objfile): Ditto.
7919         (symfile_map_offsets_to_segments): Ditto.
7920
7921         * symfile.c (syms_from_objfile_1): Use correct section count when
7922         objfile->sf == NULL.
7923
7924 2013-05-06  Mike Frysinger  <vapier@gentoo.org>
7925
7926         * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
7927
7928 2013-05-06  Doug Evans  <dje@google.com>
7929
7930         * psympriv.h (struct partial_symtab): Augment comment for member
7931         section_offsets.
7932
7933 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7934
7935         Reimplement shared library support on ppc-aix...
7936         * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
7937         * features/library-list-aix.dtd: New file.
7938         * solib-aix.h, solib-aix.c: New file.
7939         * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
7940         (rs6000_find_toc_address_hook): Delete.
7941         (rs6000_push_dummy_call): Rewrite code setting the TOC value.
7942         (rs6000_aix_init_osabi): Register solib_aix_so_ops.
7943         * rs6000-nat.c: Remove "xcoffsolib.h" include.  Include
7944         "xml-utils.h".
7945         (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
7946         (vmap_symtab, fixup_breakpoints): Delete.
7947         (rs6000_xfer_shared_libraries): New function.
7948         (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
7949         (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
7950         (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
7951         (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
7952         (rs6000_xfer_shared_library): New function.
7953         (find_toc_address): Delete.
7954         (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
7955         * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
7956         * xcoffread.c (record_minimal_symbol): Reloate symbol address
7957         before creating minimal symbol.  Adjust function description
7958         accordingly.
7959         (scan_xcoff_symtab): Replace call to
7960         prim_record_minimal_symbol_and_info by call to
7961         record_minimal_symbol.
7962         (xcoff_symfile_offsets): Reimplement mostly as a wrapper
7963         around default_symfile_offsets.
7964         * configure.tgt: Add solib-aix.o to gdb_target_obs for
7965         powerpc-aix targets.
7966         * config/rs6000/nm-rs6000.h: Delete.
7967         * config/powerpc/aix.mh (NAT_FILE): Delete.
7968         (NATDEPFILES): Remove xcoffsolib.o.
7969         * Makefile.in (XMLFILES): Add library-list-aix.dtd.
7970         (ALL_TARGET_OBS): Add solib-aix.o.
7971         (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
7972         config/rs6000/nm-rs6000.h.  Add solib-aix.h.
7973         (ALLDEPFILES): Add solib-aix.c.  Remove xcoffsolib.c.
7974         * xcoffsolib.h, xcoffsolib.c: Delete.
7975
7976         * solib.c (reload_shared_libraries): Remove reference to
7977         SOLIB_CREATE_INFERIOR_HOOK.
7978         * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
7979         (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
7980         (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
7981         comment.
7982         * corelow.c (deprecated_core_resize_section_table): Delete.
7983         * exec.c: Remove include of xcoffsolib.h".
7984         (map_vmap, vmap): Delete.
7985         (exec_close_1): Remove references to vmap.
7986         (exec_file_attach): Remove vmap handling code, and reference
7987         to DEPRECATED_IBM6000_TARGET.
7988         (bfdsec_to_vmap): Delete.
7989         (exec_files_info): Remove block of code handling VMAP.
7990         * infcmd.c (post_create_inferior): Remove reference to
7991         SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
7992         * infrun.c (follow_exec): Remove reference to
7993         SOLIB_CREATE_INFERIOR_HOOK.
7994         * stack.c (print_frame): Remove reference to PC_SOLIB.
7995         * solib-dsbt.c (dsbt_current_sos): Adjust comment.
7996         (dsbt_relocate_main_executable): Likewise.
7997         * solib-frv.c (frv_current_sos): Likewise.
7998
7999 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
8000
8001         * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
8002         to target_write_memory and target_read_memory.
8003
8004 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
8005
8006         * darwin-nat.c (darwin_setup_fake_stop_event): New function.
8007         (darwin_attach): Adjust using darwin_setup_fake_stop_event.
8008
8009 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
8010
8011         * darwin-nat.c: Replace all "%x" instances in format strings
8012         into "0x%x" throughout.
8013
8014 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
8015
8016         * darwin-nat.c (darwin_mourn_inferior): Replace call to
8017         gdb_assert by call to MACH_CHECK_ERROR.
8018         (darwin_attach_pid): Raise an error rather than a failed
8019         assertion when various system calls failed.  Report a warning
8020         instead of raising a failed assertion when PREV_NOT is not NULL
8021         after call to mach_port_request_notification.
8022         (darwin_ptrace_me): Raise an error rather than a failed
8023         assertion when read returns nonzero.
8024
8025 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
8026
8027         * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
8028
8029 2013-05-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
8030
8031         * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
8032
8033 2013-05-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
8034
8035         * event-top.c (display_gdb_prompt): Call missing do_cleanups.
8036         * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
8037         * symfile.c (symfile_bfd_open): New variable back_to.  Do not leave
8038         a stale cleanup.  Fix double free of NAME.
8039
8040 2013-05-04  Eli Zaretskii  <eliz@gnu.org>
8041
8042         * windows-nat.c (windows_delete_thread): Accept an additional
8043         argument, the thread's exit code, and announce thread death when
8044         print_thread_events is non-zero and we are deleting a thread that
8045         is not the main thread.
8046         (get_windows_debug_event): Pass thread exit code to
8047         windows_delete_thread.
8048
8049 2013-05-03  Kevin Buettner  <kevinb@redhat.com>
8050
8051         * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
8052         (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
8053         (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
8054         (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
8055         (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
8056         (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
8057         (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
8058         (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
8059         (gdbarch_tdep): New struct.
8060         (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
8061         E_NUM_REGS.
8062         (v850e3v5_register_name): New function.
8063         (v850_register_type): v850e3v5 vector registers are 64-bits wide.
8064         (v850_use_struct_convention): Add `gdbarch' parameter.  Add new
8065         code handling the struct return conventions for the RH850 ABI.
8066         Update all callers.
8067         (v850_eight_byte_align_p): New function.
8068         (v850_push_call_dummy): Push structs by value, not by reference
8069         for the RH850 ABI.  Add support for eight byte alignment.
8070         (v850_dbtrap_breakpoint_from_pc): New function.
8071         (v850_gdbarch_init): Add ABI detection code.  Register
8072         v850e3v5_register_name for the v850e3v5 architecture.  Set the
8073         number of registers for v850e3v5.  Register
8074         v850_dbtrap_breakpoint_from_pc as appropriate.
8075         (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
8076
8077 2013-05-03  Doug Evans  <dje@google.com>
8078
8079         * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
8080         of bfd_count_sections.
8081         * solib-target.c (solib_target_relocate_section_addresses): Ditto.
8082         * symfile.c (default_symfile_offsets): Ditto.
8083         (syms_from_objfile_1): Ditto.  Make dummy addrs list an array of
8084         one entry, not bfd_count_sections entries.
8085
8086 2013-05-03  Kevin Buettner  <kevinb@redhat.com>
8087
8088         * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
8089         `save' and `restore' register groups.  Don't include SPL
8090         or SPH in these groups.
8091         (rl78_dwarf_reg_to_regnum):  Adjust mapping for
8092         RL78_PC_REGNUM.  Add mappings for RL78_PSW_REGNUM,
8093         RL78_ES_REGNUM, and RL78_CS_REGNUM.
8094         (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4.  Invoke
8095         dwarf2_append_unwinders().
8096
8097 2013-05-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
8098
8099         * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
8100         ignore SIGINT and SIGTRAP in case these internal signals are
8101         caught explicitely.
8102
8103 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
8104
8105         * darwin-nat.c (darwin_read_write_inferior): Change types
8106         of parameters rdaddr and wraddr to "gdb_byte *". Change type
8107         of copy_count to "mach_msg_type_number_t".
8108         (darwin_read_dyld_info): Change type of parameter
8109         rdaddr to "gdb_byte *".
8110
8111 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
8112
8113         * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
8114         of &info->load_map from "char *" to "gdb_byte *".
8115
8116 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
8117
8118         * ia64-tdep.c (ia64_access_fpreg): Change cast of val
8119         from "char *" to "gdb_byte *".
8120         (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
8121
8122 2013-04-30  Doug Evans  <dje@google.com>
8123
8124         * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
8125         (init_cutu_and_read_dies): Flag a complaint, not error, for bad
8126         DWO stub.  If DWO isn't found, just use stub.
8127         (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
8128
8129         * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
8130         calling init_cutu_and_read_dies.
8131
8132 2013-03-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
8133
8134         * target-descriptions.c (maint_print_c_tdesc_cmd):
8135         Add case to parse structures as register types and
8136         bitfields.
8137
8138 2013-04-30  Walfred Tedeschi  <walfred.tedeschi@intel.com>
8139
8140         * MAINTAINERS (Write After Approval): Add myself to the list.
8141
8142 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
8143
8144         * sol-thread.c (rw_common): Change type of parameter "buf"
8145         to "gdb_byte *".
8146         (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
8147         rw_common to "gdb_byte *" instead of "char *".
8148
8149 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
8150
8151         * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
8152         of local variable msym to const struct bound_minimal_symbol.
8153         Adjust use accordingly.
8154         [ti.ti_state == TD_THR_SLEEP]: Likewise.
8155
8156 2013-04-30  Samuel Thibault  <samuel.thibault@gnu.org>
8157
8158         * i386gnu-nat.c (CREG_OFFSET): New macro.
8159         (creg_offset): New array.
8160         (CREG_ADDR): Use creg_offset instead of reg_offset.
8161
8162 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
8163
8164         * mep-tdep.c (mep_write_pc): Delete.
8165         (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
8166         Add call to set_gdbarch_pc_regnum.
8167
8168 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
8169
8170         * common/filestuff.c: Replace #include <dirent.h> by
8171         #include "gdb_dirent.h".
8172
8173 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
8174
8175         * common/filestuff.c: Replace #include <sys/stat.h> by
8176         #include "gdb_stat.h".
8177
8178 2013-04-29  Pierre Muller  <muller@sourceware.org>
8179
8180         * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
8181         editCase function rule.
8182         (get_DW_AT_signature_type): Likewise.
8183
8184 2013-04-29  Joel Brobecker  <brobecker@adacore.com>
8185
8186         * m32r-tdep.c (m32r_write_pc): Delete.
8187         (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
8188         Add call to set_gdbarch_pc_regnum.
8189
8190 2013-04-29  Pierre Muller  <muller@sourceware.org>
8191
8192         * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
8193
8194 2013-04-29  Joel Brobecker  <brobecker@adacore.com>
8195
8196         * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
8197
8198 2013-04-28  Yao Qi  <yao@codesourcery.com>
8199
8200         * solib-dsbt.c (fetch_loadmap): Re-indent.
8201         (displacement_from_map, enable_break2): Likewise.
8202         (dsbt_relocate_section_addresses): Likewise.
8203
8204 2013-04-26  Joel Brobecker  <brobecker@adacore.com>
8205
8206         GDB 7.6 released.
8207
8208 2013-04-25  Andreas Kaufmann  <Andreas.Kaufmann@synopsys.com>
8209
8210         PR corefiles/14983:
8211         * dwarf2read.c (process_full_comp_unit): Always create a static
8212         block.
8213
8214 2013-04-25  Hui Zhu  <hui@codesourcery.com>
8215
8216         * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
8217         to loc->cmd_bytecode.
8218
8219 2013-04-24  Doug Evans  <dje@google.com>
8220
8221         * dwarf2read.c (setup_type_unit_groups): Fix comment.
8222
8223 2013-04-22  Keith Seitz  <keiths@redhat.com>
8224
8225         * tracepoint.c (trace_save):  Call the writer's start method.
8226
8227 2013-04-24  Muhammad Bilal  <mbilal@codesourcery.com>
8228
8229         PR gdb/10462
8230         * cli/cli-decode.c (lookup_command): Show an error if there is no space
8231         before argument.
8232
8233 2013-04-23  Tom Tromey  <tromey@redhat.com>
8234
8235         * common/filestuff.c: Check USE_WIN32API before including
8236         sys/socket.h.
8237         (HAVE_F_GETFD): New define.
8238         (mark_cloexec): Check HAVE_F_GETFD.
8239         (gdb_open_cloexec): Change 'mode' to unsigned long.
8240         (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
8241         (gdb_pipe_cloexec): Check HAVE_PIPE.
8242         * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
8243         long.
8244
8245 2013-04-23  Hui Zhu  <hui@codesourcery.com>
8246
8247         PR gdb/15293
8248         * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
8249
8250 2013-04-23  Hui Zhu  <hui@codesourcery.com>
8251
8252         PR gdb/15165
8253         * breakpoint.c (dprintf_print_recreate): New.
8254         (save_breakpoints): Let it not save dprintf commands.
8255         (initialize_breakpoint_ops): Set dprintf_print_recreate.
8256
8257 2013-04-22  Tom Tromey  <tromey@redhat.com>
8258
8259         PR gdb/7912:
8260         * Makefile.in (SFILES): Add filestuff.c
8261         (COMMON_OBS): Add filestuff.o.
8262         (filestuff.o): New target.
8263         * auto-load.c (auto_load_objfile_script_1): Use
8264         gdb_fopen_cloexec.
8265         * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
8266         * cli/cli-cmds.c (shell_escape): Call close_most_fds.
8267         * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
8268         * common/agent.c (gdb_connect_sync_socket): Use
8269         gdb_socket_cloexec.
8270         * common/filestuff.c: New file.
8271         * common/filestuff.h: New file.
8272         * common/linux-osdata.c (linux_common_core_of_thread)
8273         (command_from_pid, commandline_from_pid, print_source_lines)
8274         (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
8275         (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
8276         gdb_fopen_cloexec.
8277         * common/linux-procfs.c (linux_proc_get_int)
8278         (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
8279         * config.in, configure: Rebuild.
8280         * configure.ac: Don't check for sys/socket.h.  Check for
8281         fdwalk, pipe2.
8282         * corelow.c (core_open): Use gdb_open_cloexec.
8283         * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
8284         * fork-child.c (fork_inferior): Call close_most_fds.
8285         * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
8286         * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
8287         * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
8288         Use gdb_fopen_cloexec.
8289         (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
8290         gdb_open_cloexec.
8291         (linux_async_pipe): Use gdb_pipe_cloexec.
8292         * remote-fileio.c (remote_fileio_func_open): Use
8293         gdb_open_cloexec.
8294         * remote.c (remote_file_put, remote_file_get): Use
8295         gdb_fopen_cloexec.
8296         * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
8297         close_most_fds.
8298         * ser-tcp.c (net_open): Use gdb_socket_cloexec.
8299         * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
8300         * solib.c (solib_find): Use gdb_open_cloexec.
8301         * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
8302         * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
8303         (tfile_open): Use gdb_open_cloexec.
8304         * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
8305         * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
8306         * xml-support.c (xml_fetch_content_from_file): Use
8307         gdb_fopen_cloexec.
8308         * main.c (captured_main): Call notice_open_fds.
8309
8310 2013-04-22  Edjunior Machado  <emachado@linux.vnet.ibm.com>
8311
8312         * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
8313         'char *' to 'gdb_byte *'.
8314         (gdbsim_store_register): Change the type of 'tmp' from 'char' to
8315         'gdb_byte'.
8316
8317 2013-04-22  Yao Qi  <yao@codesourcery.com>
8318
8319         * infrun.c: Fix typo in comment.
8320
8321 2013-04-22  Andrew Haley  <aph@redhat.com>
8322
8323         * arm-tdep.c (BranchDest): Cast result as "unsigned long",
8324         instead of "long".
8325
8326 2013-04-20  Yao Qi  <yao@codesourcery.com>
8327
8328         * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
8329         'char *' to 'gdb_byte *'.  Cast the return value of
8330         'bt_ctf_get_char_array' to 'gdb_byte *'.
8331
8332 2013-04-19  Pedro Alves  <palves@redhat.com>
8333
8334         * configure.ac (build_warnings): Replace -Wno-pointer-sign with
8335         -Wpointer-sign.
8336         * configure: Regenerate.
8337
8338 2013-04-19  Pedro Alves  <palves@redhat.com>
8339
8340         * ser-tcp.c (net_read_prim): Cast second argument to recv to
8341         'void *'.
8342
8343 2013-04-19  Pedro Alves  <palves@redhat.com>
8344
8345         * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
8346         Change type of 'myaddr' parameter to gdb_byte pointer.
8347         (monitor_write_memory_longlongs): Likewise.  Cast 'myaddr' pointer
8348         to 'long long' pointer instead of to 'unsigned long long'.
8349         (monitor_write_memory_block, monitor_read_memory_single)
8350         (monitor_read_memory): Change type of 'myaddr' parameter to
8351         gdb_byte pointer.
8352
8353 2013-04-19  Pedro Alves  <palves@redhat.com>
8354
8355         * record.c (validate_history_size): Make parameter 'setting'
8356         unsigned.
8357
8358 2013-04-19  Pedro Alves  <palves@redhat.com>
8359
8360         * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
8361         to 'gdb_byte *'.
8362
8363 2013-04-19  Pedro Alves  <palves@redhat.com>
8364
8365         * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
8366         local to int.
8367
8368 2013-04-19  Pedro Alves  <palves@redhat.com>
8369
8370         * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
8371         * ada-tasks.c (read_fat_string_value): Likewise.
8372
8373 2013-04-19  Pedro Alves  <palves@redhat.com>
8374
8375         * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
8376         unsigned.  Pass 'tmp' to safe_read_uleb128 instead of the signed
8377         'offset', and adjust.
8378
8379 2013-04-19  Pedro Alves  <palves@redhat.com>
8380
8381         * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
8382         (read_index_from_section): Add cast to 'char *'.
8383
8384 2013-04-19  Pedro Alves  <palves@redhat.com>
8385
8386         * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
8387
8388 2013-04-19  Pedro Alves  <palves@redhat.com>
8389
8390         * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
8391
8392 2013-04-19  Pedro Alves  <palves@redhat.com>
8393
8394         * record-full.c (record_full_get_bookmark): Change local 'ret'
8395         type to char * and add cast to gdb_byte *.
8396         (record_full_goto_bookmark): Handle 'bookmark' argument as a
8397         string.
8398         * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
8399
8400 2013-04-19  Pedro Alves  <palves@redhat.com>
8401
8402         * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
8403         * python/py-prettyprint.c (print_string_repr): Change type of
8404         'output' local to char *.  Add cast to gdb_byte * in
8405         LA_PRINT_STRING call.
8406         (print_children): Change type of 'output' local to char *.
8407         * python/py-value.c (valpy_string): Add cast to const char * in
8408         PyUnicode_Decode call.
8409
8410 2013-04-19  Pedro Alves  <palves@redhat.com>
8411
8412         * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
8413         and change its type to 'const char *'.  Adjust.
8414         (mips_send_packet): Add cast to 'char *', and remove cast to
8415         'unsigned char *'.
8416         (mips_receive_packet): Remove cast to 'unsigned char *'.
8417         (mips_load_srec): Use bfd_byte.
8418         (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
8419         (pmon_checkset): Make 'value' parameter unsigned.
8420
8421 2013-04-19  Pedro Alves  <palves@redhat.com>
8422
8423         * common/agent.c (agent_run_command): Add cast to gdb_byte *.
8424
8425 2013-04-19  Pedro Alves  <palves@redhat.com>
8426
8427         * remote.c (remote_write_bytes_aux, compare_sections_command)
8428         (remote_read_qxfer)
8429         (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
8430         (remote_hostio_readlink, remote_bfd_iovec_pread)
8431         (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
8432         binary buffer, and char when buffer is used as string.
8433         * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
8434         (trace_save, tfile_open, traceframe_walk_blocks)
8435         (tfile_fetch_registers): Likewise.
8436
8437 2013-04-19  Pedro Alves  <palves@redhat.com>
8438
8439         * ser-base.c (ser_base_write): Change prototype -- take 'void *'
8440         buffer and size_t size.  Adjust.
8441         * ser-base.h (ser_base_write): Adjust.
8442         * ser-go32.c (cnts): Change type to size_t.
8443         (dos_write): Change prototype -- take 'void *'
8444         buffer and size_t size.  Adjust.
8445         (dos_info): Print elements of 'cnts' as unsigned long.
8446         * serial.c (serial_write): Likewise.
8447         * serial.h (serial_write): Adjust.
8448         (struct serial_ops) <write>: Change prototype -- take 'void *'
8449         buffer and size_t size.  Adjust.
8450
8451 2013-04-19  Pedro Alves  <palves@redhat.com>
8452
8453         * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
8454         gdb_byte *.
8455         * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
8456
8457 2013-04-19  Pedro Alves  <palves@redhat.com>
8458
8459         * alpha-tdep.c (alpha_extract_return_value): Use
8460         regcache_cooked_read_unsigned to read 'v0'.
8461
8462 2013-04-19  Pedro Alves  <palves@redhat.com>
8463
8464         * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
8465         parameters 'at', 'as' and 'offset' to uint32_t.
8466
8467 2013-04-19  Pedro Alves  <palves@redhat.com>
8468
8469         * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
8470         'is64' to signed 'int'.
8471
8472 2013-04-19  Pedro Alves  <palves@redhat.com>
8473
8474         * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
8475         parameter to int *.
8476
8477 2013-04-19  Pedro Alves  <palves@redhat.com>
8478
8479         * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
8480         'insnbuf' buffer type to unsigned int[].
8481
8482 2013-04-19  Pedro Alves  <palves@redhat.com>
8483
8484         * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
8485
8486 2013-04-19  Pedro Alves  <palves@redhat.com>
8487
8488         * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
8489         unsigned long *.
8490
8491 2013-04-19  Pedro Alves  <palves@redhat.com>
8492
8493         * alpha-tdep.c (heuristic_fence_post): Change type to int.
8494         (alpha_heuristic_proc_start): Adjust to check -1 instead of
8495         UINT_MAX.
8496         * mips-tdep.c (heuristic_fence_post): Change type to int.
8497         (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
8498
8499 2013-04-19  Pedro Alves  <palves@redhat.com>
8500
8501         * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
8502         (struct gdbarch_tdep) <cris_version>: Make unsigned.
8503         (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
8504
8505 2013-04-19  Pedro Alves  <palves@redhat.com>
8506
8507         * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'.  Use
8508         it to get a string view of the byte buffer.
8509         * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
8510         type to gdb_byte *.  Adjust.
8511         * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
8512         Change local to char *.
8513         * solib-darwin.c (find_program_interpreter): Change return type to
8514         char *.  Adjust.
8515         (darwin_solib_get_all_image_info_addr_at_init): Adjust.
8516         * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
8517         * solib-frv.c (enable_break2): Change local 'buf' to char *.
8518         * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
8519         * solib-svr4.c (find_program_interpreter): Change return type to
8520         char *.  Adjust.
8521         (enable_break): Change local 'interp_name' to char *.
8522         * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
8523         * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
8524         (spu_pseudo_register_write_spu): Use char for string buffer.
8525         Adjust.
8526         (info_spu_event_command, info_spu_signal_command): Add casts to
8527         'char *'.
8528
8529 2013-04-19  Pedro Alves  <palves@redhat.com>
8530
8531         * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
8532         gdb_byte[].
8533         (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
8534         * ada-lang.c (ada_value_assign): Use gdb_byte.
8535         * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
8536         (alphanbsd_sigtramp_offset): Use gdb_byte.
8537         * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
8538         (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
8539         (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
8540         (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
8541         (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
8542         * arm-tdep.c (arm_stub_unwind_sniffer)
8543         (arm_displaced_init_closure): Use gdb_byte.
8544         (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
8545         (arm_default_thumb_le_breakpoint)
8546         (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
8547         * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
8548         thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
8549         * arm-wince-tdep.c (arm_wince_le_breakpoint)
8550         (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
8551         * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
8552         (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
8553         (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
8554         * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
8555         (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
8556         * cris-tdep.c (push_stack_item, cris_push_dummy_call)
8557         (cris_store_return_value, cris_extract_return_value): Use
8558         gdb_byte.
8559         (constraint): Change type of parameter to char * from signed
8560         char*.  Use gdb_byte.
8561         * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
8562         of local buffer to gdb_byte *.
8563         * dwarf2read.c (read_index_from_section): Use gdb_byte.
8564         (create_dwp_hash_table): Change type of locals to gdb_byte *.
8565         (add_address_entry): Change type of local buffer to gdb_byte[].
8566         * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
8567         (frv_push_dummy_call): Use gdb_byte.
8568         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
8569         (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
8570         (hppa_hpux_supply_save_state): Use gdb_byte.
8571         * hppa-tdep.c (hppa32_push_dummy_call)
8572         (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
8573         * ia64-tdep.c (extract_bit_field, replace_bit_field)
8574         (slotN_contents, replace_slotN_contents): Change type of parameter
8575         to gdb_byte *.
8576         (fetch_instruction, ia64_pseudo_register_write)
8577         (ia64_register_to_value, ia64_value_to_register)
8578         (ia64_extract_return_value, ia64_store_return_value)
8579         (ia64_push_dummy_call): Use gdb_byte.
8580         * m32c-tdep.c (m32c_return_value): Remove cast.
8581         * m68hc11-tdep.c (m68hc11_pseudo_register_write)
8582         (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
8583         gdb_byte.
8584         * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
8585         * mn10300-tdep.c (mn10300_store_return_value)
8586         (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
8587         gdb_byte.
8588         * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
8589         (moxie_process_record): Remove casts.
8590         * ppc-ravenscar-thread.c (supply_register_at_address)
8591         (ppc_ravenscar_generic_store_registers): Use gdb_byte.
8592         * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
8593         * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
8594         * remote-mips.c (mips_xfer_memory): Use gdb_byte.
8595         * remote.c (compare_sections_command): Use gdb_byte.
8596         * score-tdep.c (score7_free_memblock): Change type of parameter to
8597         gdb_byte *.
8598         * sh-tdep.c (sh_justify_value_in_reg): Change return type to
8599         gdb_byte *.  Use gdb_byte.
8600         (sh_push_dummy_call_fpu): Use gdb_byte.
8601         (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
8602         (sh_store_return_value_nofpu, sh_store_return_value_fpu)
8603         (sh_register_convert_to_virtual, sh_register_convert_to_raw):
8604         Change parameter type to 'gdb_byte *'.  Use gdb_byte.
8605         (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
8606         * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
8607         (sh64_store_return_value, sh64_register_convert_to_virtual):
8608         Change parameter type to 'gdb_byte *'.  Use gdb_byte.
8609         (sh64_pseudo_register_write): Use gdb_byte.
8610         * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
8611         * solib-irix.c (fetch_lm_info): Likewise.  Use gdb_byte for byte
8612         buffer.
8613         (irix_current_sos): Use gdb_byte.
8614         * solib-som.c (som_current_sos): Use gdb_byte.
8615         * sparc-ravenscar-thread.c (supply_register_at_address)
8616         (sparc_ravenscar_generic_store_registers): Use gdb_byte.
8617         * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
8618         * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
8619         * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
8620         'gdb_byte *'.
8621         * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
8622         'gdb_byte *'.
8623         * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
8624         * xstormy16-tdep.c (xstormy16_extract_return_value)
8625         (xstormy16_store_return_value): Change parameter type to
8626         'gdb_byte *'.  Adjust.
8627         (xstormy16_push_dummy_call): Use gdb_byte.
8628         * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
8629         (call0_analyze_prologue, execute_code): Use gdb_byte.
8630
8631 2013-04-19  Vladimir Kargov <kargov@gmail.com>
8632             Pedro Alves  <palves@redhat.com>
8633
8634         * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
8635         value contents.
8636
8637 2013-04-17  Doug Evans  <dje@google.com>
8638
8639         * dwarf2read.c (struct signatured_type): New member type.
8640         (struct attribute): Replace member signatured_type with signature.
8641         (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
8642         (read_call_site_scope): Call follow_die_ref instead of
8643         follow_die_ref_or_sig.
8644         (read_structure_type): Rewrite handling of signatured types.
8645         (read_enumeration_type): Ditto.
8646         (read_attribute_value): Update.
8647         (build_error_marker_type): New function.
8648         (lookup_die_type): Add assert.  Rewrite handling of signatured types.
8649         Don't call error for bad types, just build an error marker type.
8650         (dump_die_shallow): Update.
8651         (follow_die_sig_1): Renamed from follow_die_sig.
8652         Don't call error for bad types, instead return NULL.
8653         (follow_die_sig): New function.
8654         (get_signatured_type, get_DW_AT_signature_type): New functions.
8655
8656 2013-04-17  Yufeng Zhang  <yufeng.zhang@arm.com>
8657
8658         * aarch64-tdep.c (aarch64_write_pc): Removed.
8659         (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
8660         function.
8661
8662 2013-04-17  Yao Qi  <yao@codesourcery.com>
8663
8664         * top.c (print_gdb_configuration): Print configure-time
8665         parameter on using libbabeltrace or not.
8666
8667 2013-04-16  Pedro Alves  <palves@redhat.com>
8668
8669         * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
8670
8671 2013-04-16  Pedro Alves  <palves@redhat.com>
8672
8673         * common/glibc_thread_db.h: Update from upstream glibc
8674         (git 568035b7874a099087b77f7bba3e36a1173787b0).
8675
8676 2013-04-16  Pedro Alves  <palves@redhat.com>
8677
8678         * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
8679         * common/glibc_thread_db.h: ... this new file ...
8680         * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
8681
8682 2013-04-16  Will Newton  <will.newton@gmail.com>
8683             Pedro Alves  <palves@redhat.com>
8684
8685         PR build/11881
8686
8687         * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
8688         (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
8689         HAVE_THREAD_DB_H.
8690
8691 2013-04-16  Pedro Alves  <palves@redhat.com>
8692             Eli Zaretskii  <eliz@gnu.org>
8693
8694         * NEWS: Mention "set foo unlimited".
8695
8696 2013-04-15  Doug Evans  <dje@google.com>
8697
8698         * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
8699         (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
8700         (create_dwo_cu_reader): Renamed from
8701         create_dwo_debug_info_hash_table_reader.
8702         (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
8703         Remove support for multiple CUs in a DWO file.
8704         (open_and_init_dwo_file, lookup_dwo_cutu): Update.
8705
8706         * dwarf2read.c (create_debug_types_hash_table): Use hex_string
8707         instead of phex.
8708         (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
8709         (create_dwo_in_dwp): Ditto.
8710
8711 2013-04-15  Tom Tromey  <tromey@redhat.com>
8712
8713         * NEWS: Move recent entries into "since 7.6" section.
8714
8715 2013-04-15  Tom Tromey  <tromey@redhat.com>
8716
8717         PR c++/13588:
8718         * NEWS: Update.
8719         * break-catch-throw.c (struct exception_catchpoint)
8720         <exception_rx, pattern>: New fields.
8721         (fetch_probe_arguments, dtor_exception_catchpoint)
8722         (check_status_exception_catchpoint)
8723         (print_one_detail_exception_catchpoint): New functions.
8724         (handle_gnu_v3_exceptions): Add "except_rx" argument.
8725         Compile regular expression if needed.
8726         (extract_exception_regexp): New function.
8727         (catch_exception_command_1): Use extract_exception_regexp.
8728         (compute_exception): Use fetch_probe_arguments.
8729         (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
8730         and check_status fields.
8731         * cp-abi.c (cplus_typename_from_type_info): New function.
8732         * cp-abi.h (cplus_typename_from_type_info): Declare.
8733         (struct cp_abi_ops) <get_typename_from_type_info>: New field.
8734         * gdb_regex.h (compile_rx_or_error): Declare.
8735         * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
8736         comment.
8737         (init_gnuv3_ops): Set get_type_from_type_info field.
8738         * probe.c (compile_rx_or_error): Move...
8739         * utils.c (compile_rx_or_error): ... here.
8740
8741 2013-04-15  Tom Tromey  <tromey@redhat.com>
8742
8743         PR c++/15176:
8744         * NEWS: Update.
8745         * break-catch-throw.c (compute_exception): New function.
8746         (exception_funcs): New global.
8747         (_initialize_break_catch_throw): Create $_exception.
8748         * cp-abi.c (cplus_type_from_type_info): New function.
8749         * cp-abi.h (cplus_type_from_type_info): Declare.
8750         (struct cp_abi_ops) <get_type_from_type_info>: New field.
8751         * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
8752         (gnuv3_get_type_from_type_info): New functions.
8753         (init_gnuv3_ops): Set get_type_from_type_info ABI field.
8754
8755 2013-04-15  Tom Tromey  <tromey@redhat.com>
8756
8757         * break-catch-throw.c (struct exception_names): New.
8758         (exception_functions): Change type.
8759         (re_set_exception_catchpoint): Look for SDT probes.
8760
8761 2013-04-15  Tom Tromey  <tromey@redhat.com>
8762
8763         PR c++/10119:
8764         * break-catch-throw.c (exception_functions): New global.
8765         (gnu_v3_exception_catchpoint_ops): Move earlier.
8766         (struct exception_catchpoint): New.
8767         (classify_exception_breakpoint): Rewrite.
8768         (re_set_exception_catchpoint): New function.
8769         (handle_gnu_v3_exceptions): Return void.  Use init_catchpoint.
8770         Allocate a struct exception_catchpoint.
8771         (catch_exception_command_1): Update.
8772         (initialize_throw_catchpoint_ops): Set 're_set' method.
8773
8774 2013-04-15  Tom Tromey  <tromey@redhat.com>
8775
8776         * Makefile.in (SFILES): Add break-catch-throw.c
8777         (COMMON_OBS): Add break-catch-throw.o.
8778         * break-catch-throw.c: New file.
8779         * breakpoint.c: Move exception-catching code to new file.
8780         (ep_parse_optional_if_clause): No longer static.
8781         * breakpoint.h (ep_parse_optional_if_clause): Declare.
8782
8783 2013-04-15  Tom Tromey  <tromey@redhat.com>
8784
8785         PR c++/9065:
8786         * NEWS: Update.
8787         * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
8788         * c-exp.y (TYPEID): New token.
8789         (exp): Add new TYPEID productions.
8790         (ident_tokens): Add "typeid".
8791         * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
8792         * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
8793         (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
8794         * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
8795         * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
8796         case.
8797         * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
8798         (build_std_type_info_type, gnuv3_get_typeid_type)
8799         (gnuv3_get_typeid): New functions.
8800         (init_gnuv3_ops): Initialize std_type_info_gdbarch_data.  Set
8801         new fields on ABI object.
8802         * parse.c (operator_length_standard) <OP_TYPEID>: New case.
8803         * std-operator.def (OP_TYPEID): New.
8804
8805 2013-04-15  Tom Tromey  <tromey@redhat.com>
8806
8807         * elfread.c (elf_symtab_read): Install versioned symbol under
8808         unversioned name as well.
8809
8810 2013-04-15  Tom Tromey  <tromey@redhat.com>
8811
8812         PR c++/11990:
8813         * c-lang.c (cplus_language_defn): Use gdb_demangle.
8814         * c-typeprint.c (c_type_print_base): Use gdb_demangle.
8815         * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
8816         (gdb_demangle): New function.
8817         * cp-support.h (gdb_demangle): Declare.
8818         * dwarf2read.c (dwarf2_physname, fixup_partial_die)
8819         (dwarf2_name): Use gdb_demangle.
8820         * gdbtypes.c (check_stub_method): Use gdb_demangle.
8821         * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
8822         suffixes from name.
8823         (gnuv3_print_method_ptr): Use gdb_demangle.
8824         * jv-lang.c (java_demangle): Use gdb_demangle.
8825         * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
8826         * language.c (unk_lang_demangle): Use gdb_demangle.
8827         * symtab.c (symbol_find_demangled_name)
8828         (demangle_for_lookup): Use gdb_demangle.
8829
8830 2013-04-15  Tom Tromey  <tromey@redhat.com>
8831
8832         PR c++/12824:
8833         * NEWS: Update.
8834         * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
8835         New constant.
8836         (classify_exception_breakpoint): New function.
8837         (print_it_exception_catchpoint, print_one_exception_catchpoint)
8838         (print_mention_exception_catchpoint)
8839         (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
8840         (catch_exception_command_1): Handle "rethrow" catchpoint.
8841         (catch_rethrow_command): New function.
8842         (_initialize_breakpoint): Add "catch rethrow" command.
8843
8844 2013-04-15  Pierre Muller  <muller@sourceware.org>
8845
8846         * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
8847         set_gdbarch_write_pc as deprecated anymore.
8848
8849 2013-04-15  Joel Brobecker  <brobecker@adacore.com>
8850
8851         * spu-tdep.c (spu_write_pc): Add empty line after local variable
8852         declarations.
8853
8854 2013-04-13  Yao Qi  <yao@codesourcery.com>
8855
8856         * ctf.c (_initialize_ctf): Include "completer.h".
8857         Call add_target_with_completer instead of add_target.
8858
8859 2013-04-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
8860
8861         Fix GDB regression related to PR binutils/14813.
8862         * jit.c (mem_bfd_iovec_close): Return 0 for success.
8863         * minidebug.c (lzma_close): Add return value comment.
8864         * remote.c (remote_bfd_iovec_close): Return 0 for success.
8865         * solib-spu.c (spu_bfd_iovec_close): Likewise.
8866         * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
8867
8868 2013-04-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
8869
8870         * config.in: Regenerate.
8871
8872 2013-04-12  Tom Tromey  <tromey@redhat.com>
8873
8874         * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
8875         const.
8876         * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
8877         (struct die_reader_specs) <buffer>: Likewise.
8878         (die_reader_func_ftype): Make 'info_ptr' const.
8879         (struct line_header) <include_dirs, statement_program_start,
8880         statement_program_end>: Now const.
8881         (struct file_entry) <name>: Likewise.
8882         (struct partial_die_info) <sibling>: Likewise.
8883         (struct dwarf_block) <data>: Likewise.
8884         (dwarf2_read_section): Remove cast.
8885         (dwarf2_get_section_info): Make 'bufp' const.
8886         (read_index_from_section): Constify.
8887         (dw2_get_file_names_reader): Make 'info_ptr' const.
8888         (dw2_get_primary_filename_reader): Likewise.
8889         (read_comp_unit_head): Make 'info_ptr' and return type const.
8890         (read_and_check_comp_unit_head, read_and_check_type_unit_head):
8891         Likewise.
8892         (read_abbrev_offset): Constify.
8893         (dwarf2_create_include_psymtab): Make 'name' const.
8894         (create_debug_types_hash_table): Update.
8895         (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
8896         (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
8897         Constify.
8898         (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
8899         (load_partial_comp_unit_reader): Make 'info_ptr' const.
8900         (read_comp_units_from_section): Constify.
8901         (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
8902         (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
8903         const.
8904         (dwarf2_compute_name, setup_type_unit_groups): Constify.
8905         (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
8906         (create_dwp_hash_table, dwarf2_ranges_read)
8907         (dwarf2_record_block_ranges): Constify.
8908         (read_die_and_children, read_die_and_siblings_1)
8909         (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
8910         const.
8911         (read_full_die_1, read_full_die): Make 'info_ptr' const.
8912         (abbrev_table_read_table): Constify.
8913         (load_partial_dies): Make 'info_ptr' const.
8914         (read_partial_die, read_attribute_value, read_attribute): Make
8915         'info_ptr' and return type const.
8916         (read_address, read_initial_length)
8917         (read_checked_initial_length_and_offset, read_offset)
8918         (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
8919         const.
8920         (read_direct_string): Make 'buf' and return type const.
8921         (read_indirect_string_at_offset, read_indirect_string_from_dwz)
8922         (read_indirect_string): Make return type const.
8923         (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
8924         (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
8925         'info_ptr' const.
8926         (read_str_index): Make return type const.
8927         (add_include_dir): Make 'include_dir' const.
8928         (add_file_name): Make 'name' const.
8929         (dwarf_decode_line_header): Constify.
8930         (psymtab_include_file_name): Make return type const.
8931         (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
8932         (dwarf2_start_subfile): Make 'filename' const.
8933         (dwarf2_const_value_attr): Make 'bytes' const.
8934         (read_signatured_type_reader): Make 'info_ptr' const.
8935         (decode_locdesc): Constify.
8936         (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
8937         const.
8938         (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
8939         'mac_end', and return type const.
8940         (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
8941         (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
8942         type const.
8943         (per_cu_header_read_in): Constify.
8944         * symfile.h (dwarf2_get_section_info): Update.
8945
8946 2013-04-12  Tom Tromey  <tromey@redhat.com>
8947
8948         * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
8949
8950 2013-04-12  Eli Zaretskii  <eliz@gnu.org>
8951
8952         * NEWS: Mention "show configuration", --configuration.
8953         * top.c (print_gdb_configuration): New function, displays the
8954         details about GDB configure-time parameters.
8955         (print_gdb_version): Mention "show configuration".
8956         * cli/cli-cmds.c (show_configuration): New function.
8957         (_initialize_cli_cmds): Add the "show configuration" command.
8958         * main.c (captured_main) <print_configuration>: New static var.
8959         <long_options>: Use it.
8960         If --configuration was given, call print_gdb_configuration.
8961
8962 2013-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8963             Pedro Alves  <palves@redhat.com>
8964
8965         * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
8966         (generated_files): Add gcore.
8967         (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
8968         HAVE_NATIVE_GCORE_HOST.
8969         (gcore): New.
8970         * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
8971         * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
8972         config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
8973         config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
8974         config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
8975         Add HAVE_NATIVE_GCORE_HOST.
8976         * configure: Regenerate.
8977         * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
8978         New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME.  New
8979         AC_CONFIG_FILES for gcore.
8980         * configure.tgt: Add gdb_have_gcore to the initial comment.  Set
8981         gdb_have_gcore.
8982         * gdb_gcore.sh: Rename to ...
8983         * gcore.in: ... here.  Remove gcore.sh comment.  Use GDB_TRANSFORM_NAME
8984         and GCORE_TRANSFORM_NAME substitutions.
8985
8986         Fix parsing tabs in ${gdb_target_obs}.
8987         * configure.tgt (gdb_have_gcore): Replace case with for and if.
8988
8989 2013-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8990
8991         * remote.c (unpush_and_perror): Add output message final dot.
8992
8993 2013-04-11  Yao Qi  <yao@codesourcery.com>
8994
8995         * tracepoint.c (tfile_interp_line): Fit parameters line and
8996         utpp in one line.
8997
8998 2013-04-10  Joel Brobecker  <brobecker@adacore.com>
8999
9000         * solib.c (solib_map_sections): Remove code overwriting
9001         SO->SO_NAME with the bfd's filename.
9002
9003 2013-04-10  Pedro Alves  <palves@redhat.com>
9004
9005         * cli/cli-decode.c (integer_unlimited_completer): New function.
9006         (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
9007         (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
9008         completer.
9009         * cli/cli-setshow.c: Include "cli/cli-utils.h".
9010         (is_unlimited_literal): New function.
9011         (do_set_command): Handle literal "unlimited" arguments.
9012         * frame.c (_initialize_frame) <set backtrace limit>: Document
9013         "unlimited".
9014         * printcmd.c (_initialize_printcmd) <set print
9015         max-symbolic-offset>: Add help text.
9016         * record-full.c (_initialize_record_full) <set record full
9017         insn-number-max>: Likewise.
9018         * record.c (_initialize_record) <set record
9019         instruction-history-size, set record function-call-history-size>:
9020         Add help text.
9021         * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
9022         help text.
9023         * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
9024         Likewise.
9025         * source.c (_initialize_source) <set listsize>: Add help text.
9026         * utils.c (initialize_utils) <set height, set width>: Likewise.
9027         <set pagination>: Mention "set height unlimited".
9028         * valprint.c (_initialize_valprint) <set print elements, set print
9029         repeats>: Document "unlimited".
9030
9031 2013-04-10  Pedro Alves  <palves@redhat.com>
9032
9033         * cli/cli-cmds.c (quit_command): Call query_if_trace_running
9034         instead of disconnect_tracing.
9035         * infcmd.c (detach_command, disconnect_command): Call
9036         query_if_trace_running.  Adjust.
9037         * top.c: Include "tracepoint.h".
9038         (quit_target): Delete.  Contents moved ...
9039         (quit_force): ... here.  Wrap each stage of teardown in
9040         TRY_CATCH.  Call disconnect_tracing before detaching.
9041
9042 2013-04-10  Hui Zhu  <hui@codesourcery.com>
9043             Yao Qi  <yao@codesourcery.com>
9044
9045         * configure.ac: Check libbabeltrace is installed.
9046         * config.in: Regenerate.
9047         * configure: Regenerate.
9048         * Makefile.in (LIBBABELTRACE): New.
9049         (CLIBS): Add LIBBABELTRACE.
9050         * ctf.c: Include "exec.h".
9051         (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
9052         (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
9053         (ctf_save_metadata_header): Define new type aliases in
9054         metadata.
9055         (ctf_write_header): Define event type "tsv_def" and "tp_def"
9056         in metadata.  Start a new faked packet for trace status.
9057         (ctf_write_status): Write trace status to CTF.
9058         (ctf_write_uploaded_tsv): Write TSV to CTF.
9059         (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
9060         (ctf_write_definition_end): End the faked packet.
9061
9062         (ctx, ctf_iter, trace_dirname): New.
9063         (start_pos): New variable.
9064         (ctf_destroy, ctf_open_dir, ctf_open): New.
9065         (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
9066         macros.
9067         (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
9068         (ctf_fetch_registers, ctf_xfer_partial): New.
9069         (ctf_get_trace_state_variable_value): New.
9070         (ctf_get_tpnum_from_frame_event): New.
9071         (ctf_get_traceframe_address): New.
9072         (ctf_trace_find, ctf_has_stack): New.
9073         (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
9074         (ctf_get_trace_status, ctf_read_status): New.
9075         (_initialize_ctf): New.
9076         * tracepoint.c (get_tracepoint_number): New
9077         (get_uploaded_tsv): Remove 'static'.
9078         (struct traceframe_info, trace_regblock_size): Move it to ...
9079         * tracepoint.h: ... here.
9080         (get_tracepoint_number): Declare it.
9081         (get_uploaded_tsv): Declare it.
9082
9083         * NEWS: Mention new configure option.
9084
9085 2013-04-10  Pedro Alves  <palves@redhat.com>
9086             Hui Zhu  <hui@codesourcery.com>
9087
9088         * breakpoint.c (dprintf_re_set): New.
9089         (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
9090         to dprintf_re_set.
9091
9092 2013-04-09  Joel Brobecker  <brobecker@adacore.com>
9093
9094         * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
9095         Remove solib-svr4.o from the list.
9096
9097 2013-04-09  Joel Brobecker  <brobecker@adacore.com>
9098
9099         * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
9100         Use gdb_assert_not_reached instead of invalid boolean expression.
9101
9102 2013-04-09  Pedro Alves  <palves@redhat.com>
9103
9104         * remote.c (unpush_and_perror): New function.
9105         (readchar, remote_serial_write): Use it.
9106
9107 2013-04-09  Markus Metzger  <markus.t.metzger@intel.com>
9108
9109         * NEWS: Mention new btrace RSP packets.
9110
9111 2013-04-08  Tom Tromey  <tromey@redhat.com>
9112
9113         * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
9114         long.
9115
9116 2013-04-08  Tom Tromey  <tromey@redhat.com>
9117
9118         * maint.c (print_bfd_section_info): Print the section index.
9119         * symmisc.c (dump_msymbols): Print the section index.
9120
9121 2013-04-08  Tom Tromey  <tromey@redhat.com>
9122
9123         PR symtab/8424:
9124         * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
9125         SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
9126         * breakpoint.c (resolve_sal_pc): Update.
9127         * elfread.c (elf_gnu_ifunc_record_cache): Update.
9128         * findvar.c (struct minsym_lookup_data) <objfile>: New field.
9129         (minsym_lookup_iterator_cb): Use it.
9130         (default_read_var_value): Update.
9131         * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
9132         Update.
9133         * infcmd.c (jump_command): Update.
9134         * linespec.c (minsym_found): Update.
9135         * maint.c (maintenance_translate_address): Update.
9136         * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
9137         (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
9138         * parse.c (write_exp_msymbol): Update.
9139         * printcmd.c (address_info): Update.
9140         * psymtab.c (find_pc_sect_psymbol): Update.
9141         (fixup_psymbol_section): Check SYMBOL_SECTION, not
9142         SYMBOL_OBJ_SECTION.
9143         (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
9144         Don't initialize SYMBOL_OBJ_SECTION.
9145         * spu-tdep.c (spu_catch_start): Update.
9146         * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
9147         * symmisc.c (dump_msymbols, print_symbol): Update.
9148         * symtab.c (fixup_section): Don't set 'obj_section'.  Change
9149         how fallback section is computed.
9150         (fixup_symbol_section): Update.
9151         (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
9152         Update.
9153         (allocate_symbol, initialize_symbol, allocate_template_symbol):
9154         Initialize SYMBOL_SECTION.
9155         * symtab.h (struct general_symbol_info) <section>: Update comment.
9156         <obj_section>: Remove.
9157         (SYMBOL_OBJ_SECTION): Add 'objfile' argument.  Rewrite.
9158         (SYMBOL_OBJFILE): New macro.
9159
9160 2013-04-08  Tom Tromey  <tromey@redhat.com>
9161
9162         * coffread.c (record_minimal_symbol): Update.
9163         * dbxread.c (record_minimal_symbol): Update.
9164         * elfread.c (record_minimal_symbol): Update.
9165         * machoread.c (macho_symtab_add_minsym): Update.
9166         * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
9167         Update.
9168         * minsyms.c (prim_record_minimal_symbol): Update.
9169         (prim_record_minimal_symbol_full): Remove 'bfd_section'
9170         argument.
9171         (prim_record_minimal_symbol_and_info): Likewise.
9172         * minsyms.h (prim_record_minimal_symbol_full)
9173         (prim_record_minimal_symbol_and_info): Update.
9174         * symtab.c (allocate_symbol, initialize_symbol)
9175         (allocate_template_symbol): Initialize SYMBOL_SECTION.
9176         * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
9177         Update.
9178
9179 2013-04-08  Tom Tromey  <tromey@redhat.com>
9180
9181         PR symtab/8423:
9182         * solib-som.c (som_solib_section_offsets): Use BFD section
9183         indices.  Set offsets for all sections.
9184         * somread.c (som_symtab_read): Compute BFD section for
9185         symbol.  Use prim_record_minimal_symbol_and_info.
9186         (som_symfile_read): Fix comment.
9187         (struct find_section_offset_arg): New.
9188         (find_section_offset, set_section_index): New functions.
9189         (som_symfile_offsets): Use set_section_index to compute
9190         section indices.
9191
9192 2013-04-08  Tom Tromey  <tromey@redhat.com>
9193
9194         * coffread.c (cs_to_section): Use gdb_bfd_section_index.
9195         * elfread.c (record_minimal_symbol, elf_symtab_read): Use
9196         gdb_bfd_section_index.
9197         * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
9198         New functions.
9199         * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
9200         Declare.
9201         * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
9202         Update.
9203         * objfiles.c (add_to_objfile_sections_full): New function.
9204         (add_to_objfile_sections): Use it.
9205         (build_section_table): Rewrite.
9206         (objfile_relocate1): Use gdb_bfd_section_index.  Update.
9207         * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
9208         (struct objfile) <sections>: Update comment.
9209         (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
9210         is NULL.
9211         (ALL_OBJSECTIONS): Use it.
9212         * solib-dsbt.c (dsbt_relocate_main_executable): Update.
9213         * solib-frv.c (frv_relocate_main_executable): Update.
9214         * solib-target.c (solib_target_relocate_section_addresses):
9215         Use gdb_bfd_section_index.
9216         * symfile.c (build_section_addr_info_from_section_table):
9217         Use gdb_bfd_section_index.
9218         (build_section_addr_info_from_bfd, place_section): Likewise.
9219         * symtab.c (fixup_section): Update.
9220         * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
9221
9222 2013-04-08  Tom Tromey  <tromey@redhat.com>
9223
9224         * minsyms.h (struct bound_minimal_symbol): New.
9225         (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
9226         Remove objfile argument.
9227         (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
9228         Return bound_minimal_symbol.
9229         * minsyms.c (lookup_minimal_symbol_by_pc_1)
9230         (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
9231         Return bound_minimal_symbol.
9232         (in_gnu_ifunc_stub): Update.
9233         (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
9234         Remove 'objfile_p' argument.
9235         (lookup_solib_trampoline_symbol_by_pc): Update.
9236         * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
9237         arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
9238         c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
9239         glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
9240         i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
9241         linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
9242         mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
9243         ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
9244         stack.c, symtab.c, tui/tui-disasm.c: Update.
9245
9246 2013-04-08  Tom Tromey  <tromey@redhat.com>
9247
9248         * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
9249         Use symbol's obstack, not an objfile.
9250         * coffread.c (process_coff_symbol): Update.
9251         * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
9252         * jv-lang.c (add_class_symbol): Update.
9253         * mdebugread.c (new_symbol): Update.
9254         * minsyms.c (prim_record_minimal_symbol_full)
9255         (terminate_minimal_symbol_table): Update.
9256         * psymtab.c (add_psymbol_to_bcache): Clear entire symbol.  Update.
9257         * stabsread.c (define_symbol, read_enum_type): Update.
9258         * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
9259         Handle Ada specially.
9260         (symbol_set_language): Add 'obstack' argument.
9261         (symbol_set_names): Update.
9262         (symbol_natural_name, symbol_demangled_name): Always use
9263         ada_decode_symbol.
9264         * symtab.h (struct general_symbol_info)
9265         <language_specific::obstack>: New field.
9266         <ada_mangled>: New field.
9267         (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
9268         (symbol_set_language): Update.
9269
9270 2013-04-08  Tom Tromey  <tromey@redhat.com>
9271
9272         * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
9273         Take an obstack, not an objfile.
9274         (symbol_set_names): Update.
9275         * symtab.h (symbol_set_demangled_name): Update.
9276
9277 2013-04-08  Tom Tromey  <tromey@redhat.com>
9278
9279         * coffread.c (process_coff_symbol, coff_read_enum_type): Call
9280         allocate_symbol.
9281         * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
9282         (read_func_scope): Call allocate_template_symbol.
9283         (new_symbol_full): Call allocate_symbol.
9284         * jit.c (finalize_symtab): Call allocate_symbol.
9285         * jv-lang.c (add_class_symbol): Call allocate_symbol.
9286         * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
9287         * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
9288         (common_block_end): Call allocate_symbol.
9289         * symtab.c (allocate_symbol, initialize_symbol)
9290         (allocate_template_symbol): New functions.
9291         * symtab.c (allocate_symbol, initialize_symbol)
9292         (allocate_template_symbol): Declare.
9293         * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
9294
9295 2013-04-08  Pedro Alves  <palves@redhat.com>
9296             Keith Seitz  <keiths@redhat.com>
9297
9298         * breakpoint.c (create_breakpoint): Rename
9299         "parse_condition_and_thread" parameter to "parse_arg".  Update
9300         describing comment.  If !PARSE_ARG, then error out if ARG is not
9301         the empty string after extracting the location.
9302         * breakpoint.h (create_breakpoint): Rename
9303         "parse_condition_and_thread" parameter to "parse_arg".
9304
9305 2013-04-08  Aleksandar Ristovski  <aristovski@qnx.com
9306
9307         * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
9308
9309 2013-04-07  Yao Qi  <yao@codesourcery.com>
9310
9311         * remote.c (remote_trace_find): Change type of parameters 'addr1'
9312         and 'addr2' to CORE_ADDR.
9313         * target.c (update_current_target): Update.
9314         * target.h (struct target_ops) <to_trace_find>: Change parameter
9315         type to CORE_ADDR.
9316         * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
9317         'addr2' to CORE_ADDR.
9318         (tfile_trace_find): Likewise.
9319         (tfile_get_traceframe_address): Change return type to CORE_ADDR.
9320         Change local variable 'addr' to type CORE_ADDR.
9321         * tracepoint.h (tfind_1): Update declaration.
9322
9323 2013-04-06  Eli Zaretskii  <eliz@gnu.org>
9324
9325         * windows-nat.c (windows_get_absolute_argv0): Move from here...
9326         * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
9327         Include main.h.
9328
9329         * windows-nat.h (windows_get_absolute_argv0): Move prototype from
9330         here...
9331         * main.h (windows_get_absolute_argv0): ...to here.
9332
9333 2013-04-05  Doug Evans  <dje@google.com>
9334
9335         * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
9336         (read_cutu_die_from_dwo): Add comments.
9337         (read_structure_type): Update comment.
9338         (read_enumeration_type, read_namespace_type): Update comment.
9339         (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
9340
9341 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
9342
9343         Convert man pages to texinfo, new gdbinit.5 texinfo page.
9344         * Makefile.in (gdb.z): Remove.
9345         (install-only): Remove $(man1dir) and gdb.1 installation.
9346         * gdb.1: Remove.
9347
9348 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
9349
9350         Fix compatibility with Linux kernel 3.8.3.
9351         * linux-tdep.c (linux_find_memory_regions_full): Move variable number
9352         to more inner block.  Remove parsing of NUMBER from outer block.
9353         Parse NUMBER only if KEYWORD has been identified.
9354
9355 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
9356
9357         Fix variable name shadowing.
9358         * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
9359         filename to mapsfilename and update its uses.
9360
9361 2013-04-05  Eli Zaretskii  <eliz@gnu.org>
9362
9363         * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
9364         empty.  See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
9365         and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
9366         details of the problem.
9367
9368 2013-04-04  Pedro Alves  <palves@redhat.com>
9369             Hui Zhu  <hui@codesourcery.com>
9370
9371         * breakpoint.c (validate_commands_for_breakpoint): If validating a
9372         tracepoint, reset its STEP_COUNT and call validate_actionline.
9373
9374 2013-04-03  Doug Evans  <dje@google.com>
9375
9376         * dwarf2read.c (read_die_and_siblings_1): Renamed from
9377         read_die_and_siblings.
9378         (read_die_and_siblings): New function.
9379         (read_cutu_die_from_dwo): Dump die if requested.
9380         (read_die_and_children): Call read_full_die_1 and
9381         read_die_and_siblings_1.
9382         (read_full_die): Dump die if requested.
9383
9384         * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
9385
9386         * dwarf2read.c (struct dwo_file): New member comp_dir.
9387         Rename member name to dwo_name.  All uses updated.
9388         (hash_dwo_file): Include comp_dir in computation.
9389         (eq_dwo_file): Ditto.
9390         (lookup_dwo_file_slot): New arg comp_dir.  All callers updated.
9391         (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
9392
9393         * psymtab.c (read_psymtabs_with_fullname): Don't call
9394         psymtab_to_fullname if the basenames are different.
9395
9396 2013-04-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
9397
9398         * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
9399         New entry about "fullname" presence.
9400
9401 2013-04-03  Pedro Alves  <palves@redhat.com>
9402
9403         * NEWS: Mention x86_64/Cygwin as new native configuration.
9404
9405 2013-04-02  Doug Evans  <dje@google.com>
9406
9407         * dwarf2read.c (read_structure_type): Fix typo in comment.
9408
9409 2013-04-02  Pedro Alves  <palves@redhat.com>
9410
9411         * NEWS: Mention "set/show debug aarch64", "set/show debug
9412         coff-pe-read" and "set/show debug mach-o".
9413
9414 2013-04-02  Pedro Alves  <palves@redhat.com>
9415
9416         * NEWS: Mention "set/show remote trace-buffer-size-packet".
9417
9418 2013-04-02  Eli Zaretskii  <eliz@gnu.org>
9419
9420         * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
9421         gdb_string.h is now in common/.
9422
9423 2013-04-02  Pedro Alves  <palves@redhat.com>
9424
9425         * NEWS: Move "set debug notification" and "set trace-buffer-size"
9426         under "New options".
9427
9428 2013-04-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
9429
9430         Revert this patch:
9431         PR gdb/15275
9432         * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
9433
9434 2013-04-02  Pedro Alves  <palves@redhat.com>
9435
9436         PR gdb/15275
9437
9438         * remote.c (send_interrupt_sequence): Use remote_serial_write.
9439         (remote_serial_write): New function.
9440         (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
9441
9442 2013-04-01  Jiong Wang  <jiwang@tilera.com>
9443
9444         * NEWS: Mention TILE-Gx in "New native configurations" and
9445         "New targets" sections.
9446
9447 2013-04-01  Doug Evans  <dje@google.com>
9448
9449         * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
9450         (process_enumeration_scope): Simplify.
9451
9452         * dwarf2read.c (struct dwarf2_per_cu_data): Move member
9453         type_unit_group ...
9454         (struct signatured_type): ... to here.
9455         (sig_type_ptr): New typedef.
9456         (type_unit_group): Delete member 't.first_cu'.  Move member 'tus'
9457         out of union 't'.  All uses updated.
9458         (dw2_get_file_names_reader): Assert not called for a type unit.
9459         (dw2_get_file_names): Assert not called for a type unit or type
9460         unit group.
9461         (build_type_psymtabs_reader): Assert called for a type unit.
9462         (build_type_psymtab_dependencies): Assert called for a type unit group.
9463
9464         * dwarf2read.c (free_dwo_file): Add comment.
9465         (dwarf2_per_objfile_free): Unref dwp bfd.
9466
9467 2013-04-01  Aleksandar Ristovski  <aristovski@qnx.com>
9468
9469         * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
9470         (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
9471         (read_pe_exported_syms): Remove unused 'exportix'.
9472         (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
9473         'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
9474         'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
9475
9476 2013-04-01  Aleksandar Ristovski  <aristovski@qnx.com>
9477
9478         * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
9479         (print_it_watchpoint): Remove unused 'bl'.
9480         (say_where): Remove unused 'uiout'.
9481         (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
9482         (bkpt_breakpoint_hit): Remove unused 'b'.
9483         (internal_bkpt_print_it): Remove unused 'uiout'.
9484         * buildsym.c (augment_type_symtab): Remove unused 'i'.
9485
9486 2013-03-31  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
9487
9488         * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
9489         (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
9490
9491 2013-03-29  Doug Evans  <dje@google.com>
9492
9493         * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
9494         Delete arg is_dwp.  All callers updated.
9495         (open_dwp_file): New function.
9496         (open_and_init_dwp_file): Call it.
9497         (get_dwp_file): New function.
9498         (lookup_dwo_cutu): Call it.
9499
9500         * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
9501         unnecessary, cleanup.
9502
9503         * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
9504
9505         * dwarf2read.c (read_cutu_die_from_dwo): New function.
9506         (lookup_dwo_unit): New function.
9507         (init_cutu_and_read_dies): Move DWO handling to new functions.
9508
9509         * dwarf2read.c (struct signatured_type): Tweak comment.
9510         (struct dwo_unit): Tweak comment.
9511         (create_debug_types_hash_table): Tweak comment.  Reformat long line.
9512         (create_dwo_debug_info_hash_table): Tweak comment.
9513         (dwarf2_per_cu_offset_and_type): Tweak comment.
9514
9515         * dwarf2read.c (lookup_signatured_type): Remove complaint about
9516         missing .debug_types section.
9517
9518 2013-03-29  Yao Qi  <yao@codesourcery.com>
9519
9520         * corelow.c: Include "completer.h".
9521         (_initialize_corelow): Call add_target_with_completer with
9522         argument 'filename_completer'.
9523         * tracepoint.c: Likewise.
9524         * exec.c (_initialize_exec): Likewise.
9525         * target.c (add_target): Rename to ...
9526         (add_target_with_completer): ... this.  Call set_cmd_completer
9527         if parameter completer is not NULL.
9528         (add_target): New.
9529         * target.h: Include "command.h".
9530         (add_target_with_completer): Declare it.
9531
9532 2013-03-28  Joel Brobecker  <brobecker@adacore.com>
9533
9534         * coffread.c (is_import_fixup_symbol): New function.
9535         (record_minimal_symbol): Use is_import_fixup_symbol to
9536         detect import fixup symbols, and discard them.
9537
9538 2013-03-28  Doug Evans  <dje@google.com>
9539
9540         * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
9541         types hash table until we know we need it.
9542
9543         * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
9544         index numbers.
9545
9546         * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
9547         All callers updated.
9548         (dw2_print_stats): Print #read CUs too.
9549         (dump_die_shallow): Print signatured types better.
9550
9551         * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
9552         info_or_types_section to section.  All uses updated.
9553         (struct dwo_unit): Ditto.
9554
9555 2013-03-28  Pedro Alves  <palves@redhat.com>
9556
9557         * NEWS (New options): New section.
9558         (New options): Mention set/show remote trace-status-packet.
9559         * remote.c (PACKET_qTStatus): New enumeration value.
9560         (remote_get_trace_status): Skip sending qTStatus if the packet is
9561         disabled.  Use packet_ok.
9562         (_initialize_remote): Register a configuration command for
9563         qTStatus packet.
9564
9565 2013-03-28  Doug Evans  <dje@google.com>
9566
9567         * symfile.c (find_separate_debug_file): Add comment.
9568         (terminate_after_last_dir_separator): Tweak comment.
9569
9570         * dwarf2read.c (create_partial_symtab): Add forward decl.
9571         (create_partial_symtab): Move to be closer to other psymtab functions.
9572         (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
9573
9574         * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
9575         (compute_symtab_includes): Remove unnecessary forward declaration.
9576         (die_needs_namespace): Add comment marking group of functions for
9577         dwarf2 name computation.
9578
9579         * typeprint.c (_initialize_typeprint): Improve type help text.
9580
9581         * python/python.c (finish_python_initialization): Provide suggestion
9582         for how to tell gdb to find its python files.
9583
9584 2013-03-28  Pedro Alves  <palves@redhat.com>
9585
9586         PR gdb/15294
9587
9588         * source.c (_initialize_source): Change back "set listsize" to an
9589         integer command.
9590
9591 2013-03-27  Gareth McMullin  <gareth@blacksphere.co.nz>
9592
9593         PR gdb/15275
9594         * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
9595
9596 2013-03-27  Pedro Alves  <palves@redhat.com>
9597
9598         * top.c (history_size): Rename to ...
9599         (history_size_setshow_var): ... this.  Add comment.
9600         (show_commands): Use readline's 'history_length' instead of
9601         computing the history length by calling history_get in a loop.
9602         (set_history_size_command): Error out for sizes over INT_MAX.
9603         Restore previous history size on invalid size.
9604         (init_history): If HISTSIZE is negative, leave the history size as
9605         zero.  Add comments.
9606         (init_main): Adjust.
9607
9608 2013-03-27  Pedro Alves  <palves@redhat.com>
9609
9610         * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
9611         coff_pe_read" command to "set debug coff-pe-read".
9612
9613 2013-03-27  Markus Metzger  <markus.t.metzger@intel.com>
9614
9615         * record.c (command_size_to_target_size): Fix size comparison.
9616         Change parameter type from pointer to integer to integer.
9617         Update all users.
9618
9619 2013-03-27  Pierre Muller  <muller@sourceware.org>
9620
9621         * windows-nat.c (handle_output_debug_string): Avoid typecast
9622         from integer of different size warning.
9623
9624 2013-03-26  Joel Brobecker  <brobecker@adacore.com>
9625
9626         * windows-nat.c (handle_output_debug_string): Add empty line
9627         after local block variable definition.
9628
9629 2013-03-26  Pedro Alves  <palves@redhat.com>
9630
9631         * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
9632         (net_open): Make 'polls' local unsigned.
9633
9634 2013-03-26  Pedro Alves  <palves@redhat.com>
9635
9636         * remote.c (_initialize_remote): Make "set remoteaddresssize"
9637         a zuinteger command instead of uinteger.
9638
9639 2013-03-26  Pedro Alves  <palves@redhat.com>
9640
9641         * record-full.c (record_full_insn_num): Make it unsigned.
9642         (record_full_check_insn_num, record_full_message)
9643         (record_full_registers_change, record_full_xfer_partial): Remove
9644         record_full_insn_max_num check (it's always != 0).
9645         (record_full_info, record_full_restore): Use %u as format string.
9646         (): Use %u as format string.
9647         (set_record_full_insn_max_num): Remove record_full_insn_max_num
9648         check (it's always != 0).
9649
9650 2013-03-26  Pedro Alves  <palves@redhat.com>
9651
9652         * dcache.c (_initialize_dcache): Make the "set dcache line-size"
9653         and "set dcache size" commands zuinteger instead of uinteger.
9654
9655 2013-03-26  Pedro Alves  <palves@redhat.com>
9656
9657         * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
9658         command zuinteger instead of uinteger.
9659
9660 2013-03-26  Pedro Alves  <palves@redhat.com>
9661
9662         * coff-pe-read.c (_initialize_coff_pe_read): Make the command
9663         zuinteger instead of uinteger.
9664
9665 2013-03-26  Pedro Alves  <palves@redhat.com>
9666
9667         * record.c (record_insn_history_size_setshow_var)
9668         (record_call_history_size_setshow_var): New globals.
9669         (command_size_to_target_size): New function.
9670         (cmd_record_insn_history, cmd_record_call_history): Use
9671         command_size_to_target_size instead of cast.
9672         (validate_history_size, set_record_insn_history_size)
9673         (set_record_call_history_size): New functions.
9674         (_initialize_record): Install set_record_insn_history_size and
9675         set_record_call_history_size as "set" hooks of "set record
9676         instruction-history-size" and "set record
9677         function-call-history-size".
9678
9679 2013-03-26  Pedro Alves  <palves@redhat.com>
9680
9681         * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
9682         use with history_max_entries use.  Remove FIXME note.
9683
9684 2013-03-26  Markus Metzger  <markus.t.metzger@intel.com>
9685
9686         * record-btrace.c (record_btrace_close): Call
9687         record_btrace_auto_disable.
9688
9689 2013-03-25  Joel Brobecker  <brobecker@adacore.com>
9690
9691         * rs6000-nat.c (fixup_breakpoints): Delete declaration.
9692
9693 2013-03-25  Doug Evans  <dje@google.com>
9694
9695         * contrib/cc-with-tweaks.sh: Check exit code of dwp.
9696
9697 2013-03-25  Tom Tromey  <tromey@redhat.com>
9698
9699         PR symtab/11462:
9700         * c-exp.y (exp): Add new productions for destructors after '.' and
9701         '->'.
9702         (write_destructor_name): New function.
9703
9704 2013-03-25  Tom Tromey  <tromey@redhat.com>
9705
9706         PR c++/9197:
9707         * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
9708         value_struct_elt, not lookup_struct_elt_type.
9709         * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
9710         STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
9711         * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
9712
9713 2013-03-25  Yao Qi  <yao@codesourcery.com>
9714
9715         * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
9716         instead of '_mkdir'.
9717
9718 2013-03-23  Eli Zaretskii  <eliz@gnu.org>
9719
9720         * windows-nat.c (windows_get_absolute_argv0): New function.
9721         * windows-nat.h: Add its prototype.
9722
9723         * main.c (get_init_files): Use filename_ncmp instead of strncmp.
9724         Use IS_DIR_SEPARATOR instead of looking for a character inside
9725         SLASH_STRING.  Include filenames.h.
9726         (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
9727         relocate_gdb_directory works when passed gdb_program_name.
9728         Include windows-nat.h.
9729
9730 2013-03-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
9731
9732         * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
9733         * remote.c (trace_error): Remove the special handling of '2'.
9734         (readchar) <SERIAL_EOF>
9735         (readchar) <SERIAL_ERROR>
9736         (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
9737         (remote_get_trace_status): Call throw_exception if EX is
9738         TARGET_CLOSE_ERROR.
9739         * utils.c (perror_with_name): Rename to ...
9740         (throw_perror_with_name): ... here.  New parameter errcode, describe it
9741         in the function comment.
9742         (perror_with_name): New function wrapper.
9743         * utils.h (enum errors): New stub declaration.
9744         (throw_perror_with_name): New declaration.
9745
9746 2013-03-22  Pedro Alves  <palves@redhat.com>
9747             Yao Qi  <yao@codesourcery.com>
9748             Mark Kettenis  <kettenis@gnu.org>
9749
9750         * cli/cli-setshow.c (do_set_command) <var_uinteger>:
9751         Don't let the user set the value to UINT_MAX directly.
9752         <var_integer>: Don't let the user set the value to INT_MAX
9753         directly.
9754
9755 2013-03-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
9756
9757         * remote.c (remote_unpush_target): New function.
9758         (remote_open_1): Remove two pop_target calls, update one comment, add
9759         comment to target_preopen call.  Replace pop_target call by
9760         remote_unpush_target call.
9761         (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
9762         pop_target calls by remote_unpush_target calls.
9763
9764 2013-03-22  Pedro Alves  <palves@redhat.com>
9765
9766         * linux-nat.c (linux_child_follow_fork): Don't call
9767         linux_enable_event_reporting.
9768         (linux_handle_extended_wait): Don't call
9769         linux_enable_event_reporting.
9770
9771 2013-03-22  Pedro Alves  <palves@redhat.com>
9772
9773         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
9774         use it to rewrite the trampoline buffers with type gdb_byte[], and
9775         undefine the macro.  Remove char* cast.
9776
9777 2013-03-21  Doug Evans  <dje@google.com>
9778
9779         New commands "mt set per-command {space,time,symtab} {on,off}".
9780         * NEWS: Add entry.
9781         * event-top.c: #include "maint.h".
9782         * main.c: #include "maint.h".
9783         * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
9784         timeval-utils.h, maint.h, cli/cli-setshow.h.
9785         (per_command_time, per_command_space): New static globals.
9786         (per_command_symtab): New static global.
9787         (per_command_setlist, per_command_showlist): New static globals.
9788         (struct cmd_stats): Move here from utils.c.
9789         (set_per_command_time): Renamed from set_display_time in utils.c
9790         and moved here.  All callers updated.
9791         (set_per_command_space): Renamed from set_display_space in utils.c
9792         and moved here.  All callers updated.
9793         (count_symtabs_and_blocks): New function.
9794         (report_command_stats): Moved here from utils.c.  Add support for
9795         printing symtab stats.  Only print data if enabled before command
9796         executed.
9797         (make_command_stats_cleanup): Ditto.
9798         (sert_per_command_cmd, show_per_command_cmd): New functions.
9799         (_initialize_maint_cmds): Add new commands
9800         mt set per-command {space,time,symtab} {on,off}.
9801         * maint.h: New file.
9802         * top.c: #include "maint.h".
9803         * utils.c (reset_prompt_for_continue_wait_time): New function.
9804         (get_prompt_for_continue_wait_time): New function.
9805         * utils.h (reset_prompt_for_continue_wait_time): Declare
9806         (get_prompt_for_continue_wait_time): Declare.
9807         (make_command_stats_cleanup): Moved to maint.h.
9808         (set_display_time, set_display_space): Moved to maint.h and renamed
9809         to set_per_command_time, set_per_command_space.
9810         * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
9811         parse_binary_operation and made non-static.  Don't call error,
9812         just return an error marker.  All callers updated.
9813         * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
9814
9815 2013-03-21  Tom Tromey  <tromey@redhat.com>
9816
9817         * symfile.c (alloc_section_addr_info): Update header.  Don't set
9818         'num_sections' field.
9819         (build_section_addr_info_from_section_table): Set 'num_sections'.
9820         (build_section_addr_info_from_bfd): Likewise.
9821         (build_section_addr_info_from_objfile): Remove dead loop
9822         condition.
9823         (free_section_addr_info): Unconditionally call xfree.
9824         (relative_addr_info_to_section_offsets, addrs_section_sort)
9825         (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
9826         condition.
9827         (syms_from_objfile_1): Remove dead 'if' condition.  Check
9828         'num_sections'.
9829         (add_symbol_file_command): Set 'num_sections'.
9830         * symfile-mem.c (symbol_file_add_from_memory): Set
9831         'num_sections'.
9832         * somread.c (som_symfile_offsets): Remove dead loop condition.
9833         * machoread.c (macho_symfile_offsets): Remove dead 'if'.
9834         * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
9835
9836 2013-03-21  Tom Tromey  <tromey@redhat.com>
9837
9838         * tracepoint.h (decode_agent_options): Add 'trace_string'
9839         argument.
9840         * tracepoint.c (decode_agent_options): Add 'trace_string'
9841         argument.
9842         (validate_actionline): Update.
9843         (collect_symbol): Add 'trace_string' argument.
9844         (struct add_local_symbols_data) <trace_string>: New field.
9845         (do_collect_symbol): Update.
9846         (add_local_symbols): Add 'trace_string' argument.
9847         (encode_actions_1): Update.
9848         (trace_dump_actions): Update.
9849         * dwarf2loc.c (access_memory): Update.
9850         * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
9851         * ax-general.c (new_agent_expr): Update.
9852         * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
9853         (gen_trace_for_return_address): Add argument.
9854         (trace_kludge, trace_string_kludge): Remove.
9855         * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
9856         (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
9857         (gen_trace_for_var): Add 'trace_string' argument.
9858         (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
9859         (gen_printf, agent_eval_command_one): Update.
9860
9861 2013-03-21  Tom Tromey  <tromey@redhat.com>
9862
9863         PR exp/15109:
9864         * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
9865         Handle FILENAME token.
9866
9867 2013-03-21  Tom Tromey  <tromey@redhat.com>
9868
9869         * c-exp.y (YYPRINT): Define.
9870         (c_print_token): New function.
9871
9872 2013-03-21  Tom Tromey  <tromey@redhat.com>
9873
9874         * c-exp.y (%union) <sym, ivar, ivec>: Remove.
9875
9876 2013-03-21  Yao Qi  <yao@codesourcery.com>
9877
9878         * ctf.c: Include "gdb_stat.h".
9879         [USE_WIN32API]: New macro 'mkdir'.
9880         (ctf_start): Use permission bits macros if they are defined.
9881
9882 2013-03-20  Keith Seitz  <keiths@redhat.com>
9883
9884         * breakpoint.h (struct breakpoint): Add comment to
9885         extra_string indicating that this member is mallod'd.
9886         * breakpoint.c (base_breakpoint_dtor): Free extra_string.
9887
9888 2013-03-20  Pedro Alves  <palves@redhat.com>
9889
9890         PR gdb/15289
9891
9892         * cli/cli-setshow.c (do_set_command)
9893         <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
9894         the result of parsing the command argument.  Throw error if the
9895         value is greater than UINT_MAX.  Print the invalid value with
9896         plongest.
9897         <var_integer, var_zinteger>: Use LONGEST for variable holding the
9898         result of parsing the command argument.  Throw error if the value
9899         is greater than INT_MAX, not greater or equal.  Also throw error
9900         if the value is less than INT_MIN.  Print the invalid value with
9901         plongest.
9902         <var_zuinteger_unlimited>: Throw error if the value is greater
9903         than INT_MAX, not greater or equal.
9904         (do_show_command) <var_integer, var_zinteger,
9905         var_zuinteger_unlimited>: Use %d for printing int, not %u.
9906
9907 2013-03-20  Tom Tromey  <tromey@redhat.com>
9908
9909         * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
9910         if possible.
9911         * dwarf2read.c (read_func_scope): Remove old FIXME.
9912         * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
9913         not LOC_COMPUTED.
9914         * findvar.c (symbol_read_needs_frame, default_read_var_value):
9915         Unconditionally call via computed ops, if possible.
9916         * printcmd.c (address_info): Unconditionally call via computed ops,
9917         if possible.
9918         * stack.c (read_frame_arg): Unconditionally call via computed ops,
9919         if possible.
9920         * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
9921         * tracepoint.c (scope_info): Unconditionally call via computed ops,
9922         if possible.
9923
9924 2013-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
9925             Tom Tromey  <tromey@redhat.com>
9926
9927         PR symtab/8421:
9928         * coffread.c (coff_register_index): New global.
9929         (process_coff_symbol, coff_read_enum_type): Set
9930         SYMBOL_ACLASS_INDEX.
9931         (_initialize_coffread): Initialize new global.
9932         * dwarf2loc.c (locexpr_find_frame_base_location)
9933         (dwarf2_block_frame_base_locexpr_funcs)
9934         (loclist_find_frame_base_location)
9935         (dwarf2_block_frame_base_loclist_funcs): New.
9936         (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
9937         (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
9938         * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
9939         (dwarf2_block_frame_base_loclist_funcs): New.
9940         * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
9941         (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
9942         globals.
9943         (read_func_scope): Update.
9944         (fixup_go_packaging, mark_common_block_symbol_computed)
9945         (var_decode_location, new_symbol_full, dwarf2_const_value):
9946         Set SYMBOL_ACLASS_INDEX.
9947         (dwarf2_symbol_mark_computed): Likewise.  Add 'is_block' argument.
9948         (_initialize_dwarf2_read): Initialize new globals.
9949         * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
9950         * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
9951         * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
9952         globals.
9953         (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
9954         (_initialize_mdebugread): Initialize new globals.
9955         * psympriv.h (struct partial_symbol) <aclass>: Update comment.
9956         * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
9957         (stab_register_index, stab_regparm_index): New globals.
9958         (define_symbol, read_enum_type, common_block_end): Set
9959         SYMBOL_ACLASS_INDEX.
9960         (_initialize_stabsread): Initialize new globals.
9961         * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
9962         globals.
9963         (MAX_SYMBOL_IMPLS): New define.
9964         (register_symbol_computed_impl, register_symbol_block_impl)
9965         (register_symbol_register_impl)
9966         (initialize_ordinary_address_classes): New functions.
9967         (_initialize_symtab): Call initialize_ordinary_address_classes.
9968         * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
9969         (struct symbol_impl): New.
9970         (SYMBOL_ACLASS_BITS): New define.
9971         (struct symbol) <aclass, ops>: Remove fields.
9972         <aclass_index>: New field.
9973         (symbol_impls): Declare.
9974         (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
9975         (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
9976         (register_symbol_computed_impl, register_symbol_block_impl)
9977         (register_symbol_register_impl): Declare.
9978         (struct symbol_computed_ops): Add location_has_loclist.
9979         (struct symbol_block_ops): New.
9980         (SYMBOL_BLOCK_OPS): New.
9981         * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
9982
9983 2013-03-20  Tom Tromey  <tromey@redhat.com>
9984
9985         * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
9986         (print_partial_symbols, recursively_search_psymtabs): Use
9987         PSYMBOL_CLASS.
9988
9989 2013-03-20  Pierre Muller  <muller@sourceware.org>
9990
9991         * contrib/ari/gdb_ari.sh (OP eol rule): Also check
9992         addtion, subtraction, multiplication and division binary operator.
9993
9994 2013-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
9995
9996         Code cleanup.
9997         * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
9998         * bsd-kvm.c (bsd_kvm_close): Likewise.
9999         * bsd-uthread.c (bsd_uthread_close): Likewise.
10000         * corelow.c (core_close): Likewise.
10001         (core_close_cleanup): Remove parameter quitting from a caller.
10002         * event-top.c (async_disconnect): Likewise.
10003         * exec.c (exec_close_1): Remove parameter quitting.
10004         * go32-nat.c (go32_close): Likewise.
10005         * linux-nat.c (linux_nat_close): Remove parameter quitting.  Remove
10006         parameter quitting from a caller.
10007         * mips-linux-nat.c (super_close): Remove parameter quitting from the
10008         variable.
10009         (mips_linux_close): Remove parameter quitting.  Remove parameter
10010         quitting from a caller.
10011         * monitor.c (monitor_close): Remove parameter quitting.
10012         * monitor.h (monitor_close): Likewise.
10013         * record-btrace.c (record_btrace_close): Likewise.
10014         * record-full.c (record_full_close): Likewise.
10015         * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
10016         it also from fprintf_unfiltered.
10017         * remote-mips.c (mips_close): Remove parameter quitting.
10018         (mips_detach): Remove parameter quitting from a caller.
10019         * remote-sim.c (gdbsim_close): Remove parameter quitting.
10020         (gdbsim_close): Remove duplicate function comment.  Remove parameter
10021         quitting and remove it also from printf_filtered.
10022         * remote.c (remote_close): Remove parameter quitting.
10023         * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
10024         * target.c (update_current_target): Remove parameter int from to_close
10025         de_fault.
10026         (push_target, unpush_target, pop_target): Remove parameter quitting from
10027         a caller.
10028         (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
10029         Remove parameter quitting from a caller.
10030         (target_preopen): Remove parameter quitting from a caller.
10031         (target_close): Remove parameter quitting.  Remove parameter quitting
10032         from a caller two times.  Remove parameter quitting also from
10033         fprintf_unfiltered.
10034         * target.h (struct target_ops): Remove parameter quitting and as int
10035         from fields to_xclose and to_close.
10036         (extern struct target_ops current_target):
10037         (target_close, pop_all_targets): Remove parameter quitting.  Update the
10038         comment.
10039         (pop_all_targets_above): Remove parameter quitting.
10040         * top.c (quit_target): Remove parameter quitting from a caller.
10041         * tracepoint.c (tfile_close): Remove parameter quitting.
10042         * windows-nat.c (windows_close): Remove parameter quitting.
10043
10044 2013-03-20  Corinna Vinschen  <vinschen@redhat.com>
10045
10046         * windows-nat.c (handle_output_debug_string): Replace call
10047         to string_to_core_addr with call to strtoull.
10048
10049 2013-03-20  Yao Qi  <yao@codesourcery.com>
10050
10051         * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
10052         and write it to CTF metadata.
10053
10054 2013-03-19  Corinna Vinschen  <vinschen@redhat.com>
10055
10056         * windows-nat.c (handle_output_debug_string): Change type of n to
10057         SIZE_T to avoid crash on 64 bit systems.
10058
10059 2013-03-17  Eli Zaretskii  <eliz@gnu.org>
10060
10061         * python/python-internal.h (HAVE_SNPRINTF)
10062         [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
10063         about redefinition of snprintf by pyerrors.h.
10064
10065 2013-03-15  Steve Ellcey  <sellcey@mips.com>
10066
10067         * remote-sim.c (sim_command_completer): Make char arguments const.
10068
10069 2013-03-15  Tom Tromey  <tromey@redhat.com>
10070
10071         PR c++/15116:
10072         * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
10073
10074 2013-03-14  Tom Tromey  <tromey@redhat.com>
10075
10076         * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
10077         New fields.
10078         (get_file_crc): Move from symfile.c.
10079         (gdb_bfd_crc): New function.
10080         * gdb_bfd.h (gdb_bfd_crc): Declare.
10081         * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
10082         * symfile.c (get_file_crc): Move to gdb_bfd.c.
10083         (separate_debug_file_exists): Use gdb_bfd_crc.
10084
10085 2013-03-14  Tom Tromey  <tromey@redhat.com>
10086
10087         * symfile.c (get_debug_link_info): Remove.
10088         (find_separate_debug_file_by_debuglink): Use
10089         bfd_get_debug_link_info.
10090
10091 2013-03-14  Tom Tromey  <tromey@redhat.com>
10092
10093         * symtab.c (error_in_psymtab_expansion): New function.
10094         (lookup_symbol_aux_quick)
10095         (basic_lookup_transparent_type_quick): Remove "last resort"
10096         code.  Use error_in_psymtab_expansion.
10097
10098 2013-03-14  Doug Evans  <dje@google.com>
10099             Jan Kratochvil  <jan.kratochvil@redhat.com>
10100
10101         * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
10102         any successful compare_filenames_for_search or FILENAME_CMP.
10103         * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
10104         * symtab.c (iterate_over_some_symtabs): Likewise.
10105
10106 2013-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
10107
10108         * source.c (print_source_lines_base): Make a local copy of
10109         symtab_to_fullname.
10110
10111 2013-03-14  Hui Zhu  <hui_zhu@mentor.com>
10112             Jan Kratochvil  <jan.kratochvil@redhat.com>
10113
10114         * source.c (print_source_lines_base): Suppress "file" for TUI.
10115
10116 2013-03-14  Keith Seitz  <keiths@redhat.com>
10117             Alan Matsuoka  <alanm@redhat.com>
10118
10119         PR c++/15203
10120         PR c++/15210
10121         * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
10122         TYPE_CODE_METHOD.
10123         * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
10124         symbols.
10125
10126 2013-03-14  Yao Qi  <yao@codesourcery.com>
10127
10128         * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
10129         status to tfile if trace is stopped by command 'tstop'.
10130
10131 2013-03-14  Yao Qi  <yao@codesourcery.com>
10132
10133         * tracepoint.c (tfile_write_status): Write trace notes and user
10134         name into tfile if they are not NULL.
10135
10136 2013-03-14  Hui Zhu  <hui@codesourcery.com>
10137             Yao Qi  <yao@codesourcery.com>
10138
10139         * Makefile.in (REMOTE_OBS): Add ctf.o.
10140         (SFILES): Add ctf.c.
10141         (HFILES_NO_SRCDIR): Add ctf.h.
10142         * ctf.c, ctf.h: New files.
10143         * tracepoint.c: Include 'ctf.h'.
10144         (collect_pseudocommand): Remove static.
10145         (trace_save_command): Parse option "-ctf".
10146         Produce different trace file writers per option.
10147         Adjust output message.
10148         (trace_save_tfile, trace_save_ctf): New.
10149         * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
10150         * mi/mi-main.c: Include 'ctf.h'.
10151         (mi_cmd_trace_save): Handle option '-ctf'.  Call either
10152         trace_save_tfile or trace_save_ctf.
10153         * NEWS: Mention these changes.
10154
10155 2013-03-14  Yao Qi  <yao@codesourcery.com>
10156
10157         * tracepoint.c (trace_file_writer_xfree): New.
10158         (struct tfile_writer_data): New.
10159         (tfile_dtor, tfile_can_target_save, tfile_start): New.
10160         (tfile_write_header, tfile_write_regblock_type): New.
10161         (tfile_write_status, tfile_write_uploaded_tsv): New.
10162         (tfile_write_uploaded_tp, tfile_write_definition_end): New.
10163         (tfile_write_raw_data, (tfile_end): New.
10164         (tfile_write_ops): New global variable.
10165         (TRACE_WRITE_R_BLOCK): New macro.
10166         (TRACE_WRITE_M_BLOCK_HEADER): New macro.
10167         (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
10168         (TRACE_WRITE_V_BLOCK): New macro.
10169         (trace_save): Add extra one parameter WRITER.  Make it static.
10170         Use WRITER to writer trace.
10171         (tfile_trace_file_writer_new): New.
10172         (trace_save_command): Caller update.
10173         (trace_save_tfile): Write trace data in TFILE format.
10174         * tracepoint.h (struct trace_frame_write_ops): New.
10175         (struct trace_file_write_ops): New.
10176         (struct trace_file_writer): New.
10177         (trace_save): Remove its declaration.
10178         (trace_save_tfile): Declare it.
10179         * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
10180         instead of trace_save.
10181
10182 2013-03-13  Pedro Alves  <palves@redhat.com>
10183
10184         * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
10185
10186 2013-03-13  Pedro Alves  <palves@redhat.com>
10187
10188         * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
10189         commented out code.
10190         * demangle.c (current_demangling_style_string): Make it const.
10191         (set_demangling_command): Assert the demangling style is known.
10192         Remove all handling of unknown styles.  Set
10193         'current_demangling_style_string' to an element of the
10194         demangling_style_names array.
10195         (set_demangling_style): Delete.
10196         (_initialize_demangler): Set current_demangling_style_string to the
10197         element of the demangling_style_names array that corresponds to
10198         the default demangling style.  Remove FIXME note.  Don't call
10199         set_demangling_style.
10200         * gdb-demangle.h (set_demangling_style): Remove declaration.
10201
10202 2013-03-13  Pedro Alves  <palves@redhat.com>
10203
10204         * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
10205         fields const.
10206         (ada_make_symbol_completion_list): Make "text0" parameter const.
10207         * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
10208         * breakpoint.c (condition_completer): Make "text" and "word"
10209         parameters const.  Adjust.
10210         (check_tracepoint_command): Adjust to validate_actionline
10211         prototype change.
10212         (catch_syscall_completer): Make "text" and "word" parameters
10213         const.
10214         * cli/cli-cmds.c (show_user): Make "comname" local const.
10215         (valid_command_p): Make "command" parameter const.
10216         (alias_command): Make "alias_prefix" and "command_prefix" locals
10217         const.
10218         * cli/cli-decode.c (add_cmd): Make "name" parameter const.
10219         (add_alias_cmd): Make "name" and "oldname" parameters const.
10220         Adjust.  No longer make copy of OLDNAME.
10221         (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
10222         (add_setshow_cmd_full, add_setshow_enum_cmd)
10223         (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
10224         (add_setshow_filename_cmd, add_setshow_string_cmd)
10225         (add_setshow_string_noescape_cmd)
10226         (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
10227         (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
10228         (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
10229         (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
10230         Make "name" parameter const.
10231         (help_cmd): Rename "command" parameter to "arg".  New const local
10232         "command".
10233         (find_cmd): Make "command" parameter const.
10234         (lookup_cmd_1): Make "text" parameter pointer to const.  Adjust to
10235         deprecated_cmd_warning prototype change.
10236         (undef_cmd_error): Make "cmdtype" parameter const.
10237         (lookup_cmd): Make "line" parameter const.
10238         (deprecated_cmd_warning): Change type of "text" parameter to
10239         pointer to const char, from pointer to pointer to char.  Adjust.
10240         (lookup_cmd_composition): Make "text" parameter const.
10241         (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
10242         parameters const.
10243         * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
10244         const.
10245         * cli/cli-script.c (validate_comname): Make "tem" local const.
10246         (define_command): New const local "tem_c".  Use it in calls to
10247         lookup_cmd.
10248         (document_command): Make "tem" and "comfull" locals const.
10249         (show_user_1): Make "prefix" and "name" parameters const.
10250         * cli-script.h (show_user_1): Make "prefix" and "name" parameters
10251         const.
10252         * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
10253         (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
10254         (deprecated_cmd_warning, lookup_cmd_composition, add_com)
10255         (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
10256         (complete_on_enum, add_setshow_enum_cmd)
10257         (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
10258         (add_setshow_filename_cmd, add_setshow_string_cmd)
10259         (add_setshow_string_noescape_cmd)
10260         (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
10261         (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
10262         (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
10263         Change prototypes, constifying strings.
10264         * completer.c (noop_completer, filename_completer): Make "text"
10265         and "prefix" parameters const.
10266         (location_completer, expression_completer)
10267         (complete_line_internal): Make "text" and "prefix" parameters
10268         const and adjust.
10269         (command_completer, signal_completer): Make "text" and "prefix"
10270         parameters const.
10271         * completer.h (noop_completer, filename_completer)
10272         (expression_completer, location_completer, command_completer)
10273         (signal_completer): Change prototypes.
10274         * corefile.c (complete_set_gnutarget): Make "text" and "word"
10275         parameters const.
10276         * cp-abi.c (cp_abi_completer): Likewise.
10277         * expression.h (parse_expression_for_completion): Change
10278         prototype.
10279         * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
10280         parameters const.
10281         * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
10282         * infrun.c (handle_completer): Make "text" and "word" parameters
10283         const.
10284         * interps.c (interpreter_completer): Make "text" and "word"
10285         parameters const.
10286         * language.h (struct language_defn)
10287         <la_make_symbol_completion_list>: Make "text" and "word"
10288         parameters const.
10289         * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
10290         (parse_exp_in_context): Rename to ...
10291         (parse_exp_in_context_1): ... this.
10292         (parse_exp_in_context): Reimplement, with const hack from
10293         parse_exp_1.
10294         (parse_expression_for_completion): Make "string" parameter const.
10295         * printcmd.c (decode_format): Make "string_ptr" parameter pointer
10296         to pointer to const char.  Adjust.
10297         (print_command_1): Make "exp" parameter const.
10298         (output_command): Rename to ...
10299         (output_command_const): ... this.  Make "exp" parameter const.
10300         (output_command): Reimplement.
10301         (x_command): Adjust.
10302         (display_command): Rename "exp" parameter to "arg".  New "exp"
10303         local, const version of "arg".
10304         * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
10305         "cmd_name" local const.
10306         * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
10307         call.
10308         (cmdpy_completer): Make "text" and "word" parameters const.
10309         (gdbpy_parse_command_name): Make "prefix_text2" local const.
10310         * python/py-param.c (add_setshow_generic): Make "tmp_name" local
10311         const.
10312         * remote.c (_initialize_remote): Make "cmd_name" local const.
10313         * symtab.c (language_search_unquoted_string): Make "text" and "p"
10314         parameters const.  Adjust.
10315         (completion_list_add_fields): Make "sym_text", "text" and "word"
10316         parameters const.
10317         (struct add_name_data) <sym_text, text, word>: Make fields const.
10318         (default_make_symbol_completion_list_break_on): Make "text" and
10319         "word" parameters const.  Adjust locals.
10320         (default_make_symbol_completion_list)
10321         (make_symbol_completion_list, make_symbol_completion_type)
10322         (make_symbol_completion_list_fn): Make "text" and "word"
10323         parameters const.
10324         (make_file_symbol_completion_list): Make "text", "word" and
10325         "srcfile" parameters const.  Adjust locals.
10326         (add_filename_to_list): Make "text" and "word" parameters const.
10327         (struct add_partial_filename_data) <text, word>: Make fields
10328         const.
10329         (make_source_files_completion_list): Make "text" and "word"
10330         parameters const.
10331         * symtab.h (default_make_symbol_completion_list_break_on)
10332         (default_make_symbol_completion_list, make_symbol_completion_list)
10333         (make_symbol_completion_type enum type_code)
10334         (make_symbol_completion_list_fn make_file_symbol_completion_list)
10335         (make_source_files_completion_list): Change prototype.
10336         * top.c (execute_command): Adjust to pass pointer to pointer to
10337         const char to lookup_cmd, and to deprecated_cmd_warning prototype
10338         change.
10339         (set_verbose): Make "cmdname" local const.
10340         * tracepoint.c (decode_agent_options): Make "exp" parameter const,
10341         and adjust.
10342         (validate_actionline): Make "line" parameter a pointer to const
10343         char, and adjust.
10344         (encode_actions_1): Make "action_exp" local const, and adjust.
10345         (encode_actions): Adjust.
10346         (replace_comma): Delete.
10347         (trace_dump_actions): Make "action_exp" and "next_comma" locals
10348         const, and adjust.  Don't frob the action string while splitting
10349         it at commas.  Instead, make a copy of each split substring in
10350         turn.
10351         (trace_dump_command): Adjust to validate_actionline prototype
10352         change.
10353         * tracepoint.h (decode_agent_options, decode_agent_options)
10354         (encode_actions, validate_actionline): Change prototypes.
10355         * valprint.h (output_command): Delete declaration.
10356         (output_command_const): Declare.
10357         * value.c (function_destroyer): Cast const away in xfree call.
10358
10359 2013-03-13  Pedro Alves  <palves@redhat.com>
10360
10361         * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
10362         rather than casting 'const char * const *' to 'const char **'.
10363         * ada-lex.l (processInt): Make "trailer" local const.  Remove
10364         'const char **' cast.
10365         * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
10366         locals, and use those as strtol output pointer, instead than doing
10367         invalid casts to from 'const char **' to 'char **'.
10368         (_initialize_demangle): Remove cast.
10369         * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
10370         locals, and use those as strtol output pointer, instead than doing
10371         invalid casts to from 'const char **' to 'char **'.
10372         * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
10373         casts.
10374         * stap-probe.c (stap_parse_register_operand)
10375         (stap_parse_single_operand): Likewise.
10376
10377 2013-03-13  Yao Qi  <yao@codesourcery.com>
10378
10379         * tracepoint.c (tfile_get_trace_state_variable_value): Look for
10380         the last matched 'V' blcok in trace frame.
10381
10382 2013-03-12  Joel Brobecker  <brobecker@adacore.com>
10383
10384         * NEWS: Create a new section for the next release branch.
10385         Rename the section of the current branch, now that it has
10386         been cut.
10387
10388 2013-03-12  Joel Brobecker  <brobecker@adacore.com>
10389
10390         GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
10391         * version.in: Bump version to 7.6.50.20130312-cvs.
10392
10393 2013-03-12  Keith Seitz  <keiths@redhat.com>
10394
10395         * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
10396         * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
10397         Remove temporary copy of input string.
10398         (mi_execute_command_wrapper): Make "cmd" const.
10399         * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
10400         * mi/mi-parse.c (mi_parse_argv): Make "args" const.
10401         Use const strings.
10402         (mi_parse): Make "cmd" const.
10403         Use const strings.
10404         * mi/mi-parse.h (mi_parse): Make "cmd" const.
10405
10406 2013-03-12  Keith Seitz  <keiths@redhat.com>
10407
10408         * ada-lang.c (ada_read_renaming_var_value): Pass const
10409         pointer to expression string to parse_exp_1.
10410         (create_excep_cond_exprs): Likewise.
10411         * ax-gdb.c (agent_eval_command_one): Likewise.
10412         (maint_agent_printf_command): Likewise.
10413         Constify much of the string handling/parsing.
10414         * breakpoint.c (set_breakpoint_condition): Pass const
10415         pointer to expression string to parse_exp_1.
10416         (update_watchpoint): Likewise.
10417         (parse_cmd_to_aexpr): Constify string handling.
10418         Pass const pointer to parse_exp_1.
10419         (init_breakpoint_sal): Pass const pointer to parse_exp_1.
10420         (find_condition_and_thread): Likewise.
10421         Make TOK const.
10422         (watch_command_1): Make "arg" const.
10423         Constify string handling.
10424         Copy the expression string instead of changing the input
10425         string.
10426         (update_breakpoint_location): Pass const pointer to
10427         parse_exp_1.
10428         * eval.c (parse_and_eval_address): Make "exp" const.
10429         (parse_to_comma_and_eval): Make "expp" const.
10430         (parse_and_eval): Make "exp" const.
10431         * expression.h (parse_expression): Make argument const.
10432         (parse_exp_1): Make first argument const.
10433         * findcmd.c (parse_find_args): Treat "args" as const.
10434         * linespec.c (parse_linespec): Pass const pointer to
10435         linespec_expression_to_pc.
10436         (linespec_expression_to_pc): Make "exp_ptr" const.
10437         * parse.c (parse_exp_1): Make "stringptr" const.
10438         Make a copy of the expression to pass to parse_exp_in_context until
10439         this whole interface can be constified.
10440         (parse_expression): Make "string" const.
10441         * printcmd.c (ui_printf): Treat "arg" as const.
10442         Handle const strings.
10443         * tracepoint.c (validate_actionline): Pass const pointer to
10444         all calls to parse_exp_1.
10445         (encode_actions_1): Likewise.
10446         * value.h (parse_to_comma_and_eval): Make argument const.
10447         (parse_and_eval_address): Likewise.
10448         (parse_and_eval): Likewise.
10449         * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
10450         (varobj_set_value): Likewise.
10451         * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
10452         constify string handling.
10453         Pass const pointers to parse_and_eval_address and
10454         parse_to_comman_and_eval.
10455         * cli/cli-utils.c (skip_to_space): Rename to ...
10456         (skip_to_space_const): ... this. Handle const strings.
10457         * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
10458         skip_to_space_const.
10459         (skip_to_space_const): Declare.
10460         * common/format.c (parse_format_string): Make "arg" const.
10461         Handle const strings.
10462         * common/format.h (parse_format_string): Make "arg" const.
10463         * gdbserver/ax.c (ax_printf): Make "format" const.
10464         * python/python.c (gdbpy_parse_and_eval): Do not make a copy
10465         of the expression string.
10466
10467 2013-03-12  Hui Zhu  <hui@codesourcery.com>
10468
10469         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
10470
10471 2013-03-12  Yao Qi  <yao@codesourcery.com>
10472             Hui Zhu  <hui@codesourcery.com>
10473
10474         * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
10475         (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
10476         DW_OP_deref_size.
10477
10478 2013-03-12  Paul Hilfinger  <hilfingr@adacore.com>
10479
10480         * ada-lex.l (rules): Only recognize 'thread' as a
10481         delimiter when followed by numerals, as for c-exp.y.
10482         Use new rewind_to_char function to rewind the input for
10483         expression-delimiting tokens.
10484         (rewind_to_char): New function.
10485
10486 2013-03-11  Pedro Alves  <palves@redhat.com>
10487             Jan Kratochvil  <jan.kratochvil@redhat.com>
10488
10489         * configure: Regenerate.
10490         * configure.ac (check dynamic export flag): Link python test with
10491         $PYTHON_LIBS.
10492
10493 2013-03-11  Doug Evans  <dje@google.com>
10494             Keith Seitz  <keiths@redhat.com>
10495
10496         * linespec.c (find_linespec_symbols): Call find_function_symbols
10497         first, and then call lookup_prefix_sym/find_method.
10498
10499 2013-03-11  Pedro Alves  <palves@redhat.com>
10500
10501         * charset.c (convert_between_encodings): Don't cast between
10502         different pointer to pointer types.  Instead, make the 'inp' local
10503         be of the type iconv expects.
10504         (wchar_iterate): Don't cast between different pointer to pointer
10505         types.  Instead, use new pointer local of the type iconv expects.
10506         * target.c (target_read_stralloc, target_fileio_read_stralloc):
10507         Add new local of type char pointer, and use it to get a
10508         char/string view of the byte buffer, instead of casting between
10509         pointer to pointer types.
10510
10511 2013-03-11  Hafiz Abid Qadeer  <abidh@codesourcery.com>
10512
10513         * remote.c (remote_set_trace_buffer_size): Move != operator
10514         to the start of next line to fix an ARI warning.
10515
10516 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10517
10518         * NEWS: Add record changes.
10519
10520 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10521
10522         * record-btrace.c (btrace_insn_history): Omit the pc prefix in
10523         the instruction history disassembly.
10524         * disasm.c (dump_insns): Omit the pc prefix, if requested.
10525         * disasm.h (DISASSEMBLY_OMIT_PC): New.
10526
10527 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10528
10529         * Makefile.in (SFILES): Add record-btrace.c
10530         (COMMON_OBS): Add record-btrace.o
10531         * record-btrace.c: New.
10532         * objfiles.c: Include btrace.h.
10533         (free_objfile): call btrace_free_objfile.
10534
10535 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10536
10537         * target.c (target_call_history, target_call_history_from,
10538         target_call_history_range): New.
10539         * target.h (target_ops) <to_call_history, to_call_history_from,
10540         to_call_history_range>: New fields.
10541         (target_call_history, target_call_history_from,
10542         target_call_history_range): New declaration.
10543         * record.c (get_call_history_modifiers, cmd_record_call_history,
10544         record_call_history_size): New.
10545         (_initialize_record): Add the "record function-call-history" command.
10546         Add "set/show record function-call-history-size" commands.
10547         * record.h (record_print_flag): New.
10548
10549 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10550
10551         * target.h (target_ops) <to_insn_history, to_insn_history_from,
10552         to_insn_history_range>: New fields.
10553         (target_insn_history): New.
10554         (target_insn_history_from): New.
10555         (target_insn_history_range): New.
10556         * target.c (target_insn_history): New.
10557         (target_insn_history_from): New.
10558         (target_insn_history_range): New.
10559         * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
10560         (record_insn_history_size): New.
10561         (get_insn_number): New.
10562         (get_context_size): New.
10563         (no_chunk): New.
10564         (get_insn_history_modifiers): New.
10565         (cmd_record_insn_history): New.
10566         (_initialize_record): Add "set/show record instruction-history-size"
10567         command. Add "record instruction-history" command.
10568
10569 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10570
10571         * record.h (record_disconnect): New.
10572         (record_detach): New.
10573         (record_mourn_inferior): New.
10574         (record_kill): New.
10575         * record-full.c (record_disconnect, record_detach,
10576         record_mourn_inferior, record_kill): Move to...
10577         * record.c: ...here.
10578         (DEBUG): New.
10579         (record_stop): New.
10580         (record_unpush): New.
10581         (cmd_record_stop): Call record_stop. Replace unpush_target
10582         call with record_unpush call.
10583         (record_disconnect, record_detach): Assert that the target
10584         is of record stratum. Call record_unpush, record_stop, and
10585         DEBUG.
10586         (record_mourn_inferior, record_kill): Assert that the target
10587         is of record stratum. Call record_unpush and DEBUG.
10588
10589 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10590
10591         * record-full.h, record-full.c (record_memory_query): Rename
10592         to ...
10593         (record_full_memory_query): ...this. Update all users.
10594         (record_arch_list_add_reg): Rename to ...
10595         (record_full_arch_list_add_reg): ...this. Update all users.
10596         (record_arch_list_add_mem): Rename to ...
10597         (record_full_arch_list_add_mem): ...this. Update all users.
10598         (record_arch_list_add_end): Rename to ...
10599         (record_full_arch_list_add_end): ...this. Update all users.
10600         (record_gdb_operation_disable_set): Rename to ...
10601         (record_full_gdb_operation_disable_set): ...this.
10602         Update all users.
10603
10604 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10605
10606         * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
10607         (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
10608         (RECORD_IS_REPLAY): Renamed to ...
10609         (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
10610         (RECORD_FILE_MAGIC): Renamed to ...
10611         (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
10612         (record_mem_entry): Renamed to ...
10613         (record_full_mem_entry): ... this. Updated all users.
10614         (record_reg_entry): Renamed to ...
10615         (record_full_reg_entry): ... this. Updated all users.
10616         (record_end_entry): Renamed to ...
10617         (record_full_end_entry): ... this. Updated all users.
10618         (record_type) <record_end, record_reg, record_mem>: Renamed
10619         to ...
10620         (record_full_type) <record_full_end, record_full_reg,
10621         record_full_mem>: ... this. Updated all users.
10622         (record_entry): Renamed to ...
10623         (record_full_entry): ... this. Updated all users.
10624         (record_core_buf_entry): Renamed to ...
10625         (record_full_core_buf_entry): ... this. Updated all users.
10626         (record_core_regbuf): Renamed to ...
10627         (record_full_core_regbuf): ... this. Updated all users.
10628         (record_core_start): Renamed to ...
10629         (record_full_core_start): ... this. Updated all users.
10630         (record_core_end): Renamed to ...
10631         (record_full_core_end): ... this. Updated all users.
10632         (record_core_buf_list): Renamed to ...
10633         (record_full_core_buf_list): ... this. Updated all users.
10634         (record_first): Renamed to ...
10635         (record_full_first): ... this. Updated all users.
10636         (record_list): Renamed to ...
10637         (record_full_list): ... this. Updated all users.
10638         (record_arch_list_head): Renamed to ...
10639         (record_full_arch_list_head): ... this. Updated all users.
10640         (record_arch_list_tail): Renamed to ...
10641         (record_full_arch_list_tail): ... this. Updated all users.
10642         (record_stop_at_limit): Renamed to ...
10643         (record_full_stop_at_limit): ... this. Updated all users.
10644         (record_insn_max_num): Renamed to ...
10645         (record_full_insn_max_num): ... this. Updated all users.
10646         (record_insn_num): Renamed to ...
10647         (record_full_insn_num): ... this. Updated all users.
10648         (record_insn_count): Renamed to ...
10649         (record_full_insn_count): ... this. Updated all users.
10650         (record_ops): Renamed to ...
10651         (record_full_ops): ... this. Updated all users.
10652         (record_core_ops): Renamed to ...
10653         (record_full_core_ops): ... this. Updated all users.
10654         (set_record_cmdlist): Renamed to ...
10655         (set_record_full_cmdlist): ... this. Updated all users.
10656         (show_record_cmdlist): Renamed to ...
10657         (show_record_full_cmdlist): ... this. Updated all users.
10658         (record_cmdlist): Renamed to ...
10659         (record_full_cmdlist): ... this. Updated all users.
10660         (record_beneath_to_resume_ops): Renamed to ...
10661         (record_full_beneath_to_resume_ops): ... this. Updated all users.
10662         (record_beneath_to_resume): Renamed to ...
10663         (record_full_beneath_to_resume): ... this. Updated all users.
10664         (record_beneath_to_wait_ops): Renamed to ...
10665         (record_full_beneath_to_wait_ops): ... this. Updated all users.
10666         (record_beneath_to_wait): Renamed to ...
10667         (record_full_beneath_to_wait): ... this. Updated all users.
10668         (record_beneath_to_store_registers_ops): Renamed to ...
10669         (record_full_beneath_to_store_registers_ops): ... this.
10670         Updated all users.
10671         (record_beneath_to_store_registers): Renamed to ...
10672         (record_full_beneath_to_store_registers): ... this.
10673         Updated all users.
10674         (record_beneath_to_xfer_partial_ops): Renamed to ...
10675         (record_full_beneath_to_xfer_partial_ops): ... this.
10676         Updated all users.
10677         (record_beneath_to_xfer_partial): Renamed to ...
10678         (record_full_beneath_to_xfer_partial): ... this.
10679         Updated all users.
10680         (record_beneath_to_insert_breakpoint): Renamed to ...
10681         (record_full_beneath_to_insert_breakpoint): ... this.
10682         Updated all users.
10683         (record_beneath_to_stopped_by_watchpoint): Renamed to ...
10684         (record_full_beneath_to_stopped_by_watchpoint): ... this.
10685         Updated all users.
10686         (record_beneath_to_stopped_data_address): Renamed to ...
10687         (record_full_beneath_to_stopped_data_address): ... this.
10688         Updated all users.
10689         (record_beneath_to_async): Renamed to ...
10690         (record_full_beneath_to_async): ... this. Updated all users.
10691         (record_goto_insn): Renamed to ...
10692         (record_full_goto_insn): ... this. Updated all users.
10693         (record_save): Renamed to ...
10694         (record_full_save): ... this. Updated all users.
10695         (record_reg_alloc): Renamed to ...
10696         (record_full_reg_alloc): ... this. Updated all users.
10697         (record_reg_release): Renamed to ...
10698         (record_full_reg_release): ... this. Updated all users.
10699         (record_mem_alloc): Renamed to ...
10700         (record_full_mem_alloc): ... this. Updated all users.
10701         (record_mem_release): Renamed to ...
10702         (record_full_mem_release): ... this. Updated all users.
10703         (record_end_alloc): Renamed to ...
10704         (record_full_end_alloc): ... this. Updated all users.
10705         (record_end_release): Renamed to ...
10706         (record_full_end_release): ... this. Updated all users.
10707         (record_entry_release): Renamed to ...
10708         (record_full_entry_release): ... this. Updated all users.
10709         (record_list_release): Renamed to ...
10710         (record_full_list_release): ... this. Updated all users.
10711         (record_list_release_following): Renamed to ...
10712         (record_full_list_release_following): ... this.
10713         Updated all users.
10714         (record_list_release_first): Renamed to ...
10715         (record_full_list_release_first): ... this. Updated all users.
10716         (record_arch_list_add): Renamed to ...
10717         (record_full_arch_list_add): ... this. Updated all users.
10718         (record_get_loc): Renamed to ...
10719         (record_full_get_loc): ... this. Updated all users.
10720         (record_check_insn_num): Renamed to ...
10721         (record_full_check_insn_num): ... this. Updated all users.
10722         (record_arch_list_cleanups): Renamed to ...
10723         (record_full_arch_list_cleanups): ... this. Updated all users.
10724         (record_message): Renamed to ...
10725         (record_full_message): ... this. Updated all users.
10726         (record_message_wrapper): Renamed to ...
10727         (record_full_message_wrapper): ... this. Updated all users.
10728         (record_message_wrapper_safe): Renamed to ...
10729         (record_full_message_wrapper_safe): ... this. Updated all users.
10730         (record_gdb_operation_disable): Renamed to ...
10731         (record_full_gdb_operation_disable): ... this. Updated all users.
10732         (record_hw_watchpoint): Renamed to ...
10733         (record_full_hw_watchpoint): ... this. Updated all users.
10734         (record_exec_insn): Renamed to ...
10735         (record_full_exec_insn): ... this. Updated all users.
10736         (record_restore): Renamed to ...
10737         (record_full_restore): ... this. Updated all users.
10738         (record_async_inferior_event_token): Renamed to ...
10739         (record_full_async_inferior_event_token): ... this.
10740         Updated all users.
10741         (record_async_inferior_event_handler): Renamed to ...
10742         (record_full_async_inferior_event_handler): ... this.
10743         Updated all users.
10744         (record_core_open_1): Renamed to ...
10745         (record_full_core_open_1): ... this. Updated all users.
10746         (record_open_1): Renamed to ...
10747         (record_full_open_1): ... this. Updated all users.
10748         (record_open): Renamed to ...
10749         (record_full_open): ... this. Updated all users.
10750         (record_close): Renamed to ...
10751         (record_full_close): ... this. Updated all users.
10752         (record_resume_step): Renamed to ...
10753         (record_full_resume_step): ... this. Updated all users.
10754         (record_resumed): Renamed to ...
10755         (record_full_resumed): ... this. Updated all users.
10756         (record_execution_dir): Renamed to ...
10757         (record_full_execution_dir): ... this. Updated all users.
10758         (record_resume): Renamed to ...
10759         (record_full_resume): ... this. Updated all users.
10760         (record_get_sig): Renamed to ...
10761         (record_full_get_sig): ... this. Updated all users.
10762         (record_sig_handler): Renamed to ...
10763         (record_full_sig_handler): ... this. Updated all users.
10764         (record_wait_cleanups): Renamed to ...
10765         (record_full_wait_cleanups): ... this. Updated all users.
10766         (record_wait_1): Renamed to ...
10767         (record_full_wait_1): ... this. Updated all users.
10768         (record_wait): Renamed to ...
10769         (record_full_wait): ... this. Updated all users.
10770         (record_stopped_by_watchpoint): Renamed to ...
10771         (record_full_stopped_by_watchpoint): ... this. Updated all users.
10772         (record_disconnect): Renamed to ...
10773         (record_full_disconnect): ... this. Updated all users.
10774         (record_detach): Renamed to ...
10775         (record_full_detach): ... this. Updated all users.
10776         (record_mourn_inferior): Renamed to ...
10777         (record_full_mourn_inferior): ... this. Updated all users.
10778         (record_kill): Renamed to ...
10779         (record_full_kill): ... this. Updated all users.
10780         (record_stopped_data_address): Renamed to ...
10781         (record_full_stopped_data_address): ... this. Updated all users.
10782         (record_registers_change): Renamed to ...
10783         (record_full_registers_change): ... this. Updated all users.
10784         (record_store_registers): Renamed to ...
10785         (record_full_store_registers): ... this. Updated all users.
10786         (record_xfer_partial): Renamed to ...
10787         (record_full_xfer_partial): ... this. Updated all users.
10788         (record_breakpoint): Renamed to ...
10789         (record_full_breakpoint): ... this. Updated all users.
10790         (record_breakpoint_p): Renamed to ...
10791         (record_full_breakpoint_p): ... this. Updated all users.
10792         (record_breakpoints): Renamed to ...
10793         (record_full_breakpoints): ... this. Updated all users.
10794         (record_sync_record_breakpoints): Renamed to ...
10795         (record_full_sync_record_breakpoints): ... this.
10796         Updated all users.
10797         (record_init_record_breakpoints): Renamed to ...
10798         (record_full_init_record_breakpoints): ... this.
10799         Updated all users.
10800         (record_insert_breakpoint): Renamed to ...
10801         (record_full_insert_breakpoint): ... this. Updated all users.
10802         (record_remove_breakpoint): Renamed to ...
10803         (record_full_remove_breakpoint): ... this. Updated all users.
10804         (record_can_execute_reverse): Renamed to ...
10805         (record_full_can_execute_reverse): ... this. Updated all users.
10806         (record_get_bookmark): Renamed to ...
10807         (record_full_get_bookmark): ... this. Updated all users.
10808         (record_goto_bookmark): Renamed to ...
10809         (record_full_goto_bookmark): ... this. Updated all users.
10810         (record_async): Renamed to ...
10811         (record_full_async): ... this. Updated all users.
10812         (record_can_async_p): Renamed to ...
10813         (record_full_can_async_p): ... this. Updated all users.
10814         (record_is_async_p): Renamed to ...
10815         (record_full_is_async_p): ... this. Updated all users.
10816         (record_execution_direction): Renamed to ...
10817         (record_full_execution_direction): ... this. Updated all users.
10818         (record_info): Renamed to ...
10819         (record_full_info): ... this. Updated all users.
10820         (record_delete): Renamed to ...
10821         (record_full_delete): ... this. Updated all users.
10822         (record_is_replaying): Renamed to ...
10823         (record_full_is_replaying): ... this. Updated all users.
10824         (record_goto_entry): Renamed to ...
10825         (record_full_goto_entry): ... this. Updated all users.
10826         (record_goto_begin): Renamed to ...
10827         (record_full_goto_begin): ... this. Updated all users.
10828         (record_goto_end): Renamed to ...
10829         (record_full_goto_end): ... this. Updated all users.
10830         (record_goto): Renamed to ...
10831         (record_full_goto): ... this. Updated all users.
10832         (init_record_ops): Renamed to ...
10833         (init_record_full_ops): ... this. Updated all users.
10834         (record_core_resume): Renamed to ...
10835         (record_full_core_resume): ... this. Updated all users.
10836         (record_core_kill): Renamed to ...
10837         (record_full_core_kill): ... this. Updated all users.
10838         (record_core_fetch_registers): Renamed to ...
10839         (record_full_core_fetch_registers): ... this. Updated all users.
10840         (record_core_prepare_to_store): Renamed to ...
10841         (record_full_core_prepare_to_store): ... this. Updated all users.
10842         (record_core_store_registers): Renamed to ...
10843         (record_full_core_store_registers): ... this. Updated all users.
10844         (record_core_xfer_partial): Renamed to ...
10845         (record_full_core_xfer_partial): ... this. Updated all users.
10846         (record_core_insert_breakpoint): Renamed to ...
10847         (record_full_core_insert_breakpoint): ... this. Updated all users.
10848         (record_core_remove_breakpoint): Renamed to ...
10849         (record_full_core_remove_breakpoint): ... this. Updated all users.
10850         (record_core_has_execution): Renamed to ...
10851         (record_full_core_has_execution): ... this. Updated all users.
10852         (init_record_core_ops): Renamed to ...
10853         (init_record_full_core_ops): ... this. Updated all users.
10854         (cmd_record_restore): Renamed to ...
10855         (cmd_record_full_restore): ... this. Updated all users.
10856         (record_save_cleanups): Renamed to ...
10857         (record_full_save_cleanups): ... this. Updated all users.
10858         (cmd_record_start): Renamed to ...
10859         (cmd_record_full_start): ... this. Updated all users.
10860         (set_record_insn_max_num): Renamed to ...
10861         (set_record_full_insn_max_num): ... this. Updated all users.
10862         (set_record_command): Renamed to ...
10863         (set_record_full_command): ... this. Updated all users.
10864         (show_record_command): Renamed to ...
10865         (show_record_full_command): ... this. Updated all users.
10866         (_initialize_record): Renamed to ...
10867         (_initialize_record_full): ... this. Updated all users.
10868
10869 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10870
10871         * record.h: Split into this and ...
10872         * record-full.h: ... this.
10873         * record.c: Split into this and ...
10874         * record-full.c: ... this.
10875         * target.h (target_ops): Add new fields to_info_record,
10876         to_save_record, to_delete_record, to_record_is_replaying,
10877         to_goto_record_begin, to_goto_record_end, to_goto_record.
10878         (target_info_record): New.
10879         (target_save_record): New.
10880         (target_supports_delete_record): New.
10881         (target_delete_record): New.
10882         (target_record_is_replaying): New.
10883         (target_goto_record_begin): New.
10884         (target_goto_record_end): New.
10885         (target_goto_record): New.
10886         * target.c (target_info_record): New.
10887         (target_save_record): New.
10888         (target_supports_delete_record): New.
10889         (target_delete_record): New.
10890         (target_record_is_replaying): New.
10891         (target_goto_record_begin): New.
10892         (target_goto_record_end): New.
10893         (target_goto_record): New.
10894         * record.h: Declare struct cmd_list_element.
10895         (record_cmdlist): New declaration.
10896         (set_record_cmdlist): New declaration.
10897         (show_record_cmdlist): New declaration.
10898         (info_record_cmdlist): New declaration.
10899         (cmd_record_goto): New declaration.
10900         * record.c: Remove unnecessary includes.
10901         Include inferior.h.
10902         (cmd_record_goto): Remove declaration.
10903         (record_cmdlist): Now extern. Initialize.
10904         (set_record_cmdlist): Now extern. Initialize.
10905         (show_record_cmdlist): Now extern. Initialize.
10906         (info_record_cmdlist): Now extern. Initialize.
10907         (find_record_target): New.
10908         (require_record_target): New.
10909         (cmd_record_start): Update.
10910         (cmd_record_delete): Remove target-specific code.
10911         Call target_delete_record.
10912         (cmd_record_stop): Unpush any record target.
10913         (set_record_insn_max_num): Move to record-full.c
10914         (set_record_command): Add comment.
10915         (show_record_command): Add comment.
10916         (info_record_command): Update comment.
10917         Remove target-specific code.
10918         Call the record target's to_info_record.
10919         (cmd_record_start): New.
10920         (cmd_record_goto): Now extern.
10921         Remove target-specific code.
10922         Call target_goto_begin,  target_goto_end, or target_goto.
10923         (_initialize_record): Move record target ops initialization to
10924         record-full.c.
10925         Change "record" command help text.
10926         Move "record restore", "record set", and "record show" commands to
10927         record-full.c.
10928         * Makefile.in (SFILES): Add record-full.c.
10929         (HFILES_NO_SRCDIR): Add record-full.h.
10930         (COMMON_OBS): Add record-full.o.
10931         * amd64-linux-tdep.c: Include record-full.h instead of record.h.
10932         * arm-tdep.c: Include record-full.h.
10933         * i386-linux-tdep.c: Include record-full.h instead of record.h.
10934         * i386-tdep.c: Include record-full.h.
10935         * infrun.c: Include record-full.h.
10936         * linux-record.c: Include record-full.h.
10937         * moxie-tdep.c: Include record-full.h.
10938         * record-full.c: Include record-full.h.
10939         Change module comment.
10940         (set_record_full_cmdlist): New.
10941         (show_record_full_cmdlist): New.
10942         (record_full_cmdlist): New.
10943         (record_goto_insn): New declaration.
10944         (record_save): New declaration.
10945         (record_check_insn_num): Change query string.
10946         (record_info): New.
10947         (record_delete): New.
10948         (record_is_replaying): New.
10949         (record_goto_entry): New.
10950         (record_goto_begin): New.
10951         (record_goto_end): New.
10952         (record_goto): New.
10953         (init_record_ops): Update.
10954         (init_record_core_ops): Update.
10955         (cmd_record_save): Rename to record_save. Remove target and arg checks.
10956         (cmd_record_start): New.
10957         (set_record_insn_max_num): Moved from record.c
10958         (set_record_full_command): New.
10959         (show_record_full_command): New.
10960         (_initialize_record_full): New.
10961
10962 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10963
10964         * target.h (add_deprecated_target_alias): New.
10965         * target.c (add_deprecated_target_alias): New.
10966
10967 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10968
10969         * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
10970         and signal.h.
10971         (linux_supports_btrace): Add kernel and
10972         cpuid check.
10973         (kernel_supports_btrace): New function.
10974         (cpu_supports_btrace): New function.
10975         (intel_supports_btrace): New function.
10976
10977 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10978
10979         * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
10980         * remote.c: Include btrace.h.
10981         (struct btrace_target_info): New struct.
10982         (remote_supports_btrace): New function.
10983         (send_Qbtrace): New function.
10984         (remote_enable_btrace): New function.
10985         (remote_disable_btrace): New function.
10986         (remote_teardown_btrace): New function.
10987         (remote_read_btrace): New function.
10988         (init_remote_ops): Add btrace ops.
10989         (enum <unnamed>): Add btrace packets.
10990         (struct protocol_feature remote_protocol_features[]): Add btrace packets.
10991         (_initialize_remote): Add packet configuration for branch tracing.
10992
10993 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10994
10995         * features/btrace.dtd: New file.
10996         * Makefile.in (XMLFILES): Add btrace.dtd.
10997         * btrace.h (parse_xml_btrace): New declaration.
10998         * btrace.c: Include xml-support.h.
10999         (parse_xml_btrace): New function.
11000         (parse_xml_btrace_block): New function.
11001         (block_attributes): New struct.
11002         (btrace_attributes): New struct.
11003         (btrace_children): New struct.
11004         (btrace_elements): New struct.
11005
11006 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
11007
11008         * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
11009         (amd64_linux_enable_btrace): New.
11010         (amd64_linux_disable_btrace): New.
11011         (amd64_linux_teardown_btrace): New.
11012         (_initialize_amd64_linux_nat): Initialize btrace ops.
11013         * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
11014         (i386_linux_enable_btrace): New.
11015         (i386_linux_disable_btrace): New.
11016         (i386_linux_teardown_btrace): New.
11017         (_initialize_i386_linux_nat): Initialize btrace ops.
11018         * config/i386/linux.mh: Add linux-btrace.o.
11019         * config/i386/linux64.mh: Add linux-btrace.o.
11020
11021 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
11022
11023         * common/linux_btrace.h: New file.
11024         * common/linux_btrace.c: New file.
11025         * Makefile.in (SFILES): Add btrace.c.
11026         (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
11027         (COMMON_OBS): Add btrace.o.
11028         (linux-btrace.o): New rule.
11029
11030 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
11031
11032         * target.h: Include btrace.h.
11033         (struct target_ops) <to_supports_btrace, to_enable_btrace,
11034         to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
11035         * target.c (target_supports_btrace): New function.
11036         (target_enable_btrace): New function.
11037         (target_disable_btrace): New function.
11038         (target_teardown_btrace): New function.
11039         (target_read_btrace): New function.
11040         * btrace.h: New file.
11041         * btrace.c: New file.
11042         * Makefile.in: Add btrace.c.
11043         * gdbthread.h: Include btrace.h.
11044         (struct thread_info): Add btrace field.
11045         * thread.c: Include btrace.h.
11046         (clear_thread_inferior_resources): Call target_teardown_btrace.
11047         * common/btrace-common.h: New file.
11048
11049 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
11050
11051         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
11052         for CHILD, ignore PTRACE_KILL errors, move the inner block variable
11053         kill_status to outer block.
11054
11055 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
11056
11057         Fix entry-values if the callee called a noreturn function.
11058         * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
11059         get_frame_address_in_block.  Add new comment.
11060
11061 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
11062
11063         Fix entry-values in C++ across CUs.
11064         * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
11065         lookup_minimal_symbol.  Add a comment.
11066         * dwarf2read.c
11067         (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
11068         DW_AT_linkage_name.
11069
11070 2013-03-08  Yao Qi  <yao@codesourcery.com>
11071
11072         * tracepoint.c (_initialize_tracepoint): Indent the code.
11073
11074 2013-03-08  Pedro Alves  <palves@redhat.com>
11075
11076         * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
11077         (parse_find_args, find_command): Change type of pattern buffer
11078         locals to 'gdb_byte *'.
11079
11080 2013-03-08  Stan Shebs  <stan@codesourcery.com>
11081             Hafiz Abid Qadeer  <abidh@codesourcery.com>
11082
11083         * NEWS: Mention set and show trace-buffer-size commands.
11084         Mention new packet.
11085         * target.h (struct target_ops): New method
11086         to_set_trace_buffer_size.
11087         (target_set_trace_buffer_size): New macro.
11088         * target.c (update_current_target): Set up new method.
11089         * tracepoint.c (trace_buffer_size): New global.
11090         (start_tracing): Send it to the target.
11091         (set_trace_buffer_size): New function.
11092         (_initialize_tracepoint): Add new setshow for trace-buffer-size.
11093         * remote.c (remote_set_trace_buffer_size): New function.
11094         (_initialize_remote): Use it.
11095         (QTBuffer:size) New remote command.
11096         (PACKET_QTBuffer_size): New enum.
11097         (remote_protocol_features): Add an entry for
11098         PACKET_QTBuffer_size.
11099
11100 2013-03-08  Tom Tromey  <tromey@redhat.com>
11101
11102         * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
11103         variable.
11104
11105 2013-03-07  Pedro Alves  <palves@redhat.com>
11106
11107         * target.c (target_read_stralloc, target_fileio_read_alloc):
11108         *Cast pointer to 'gdb_byte *' in target call.
11109
11110 2013-03-07  Pedro Alves  <palves@redhat.com>
11111
11112         * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
11113         call.
11114
11115 2013-03-07  Keith Seitz  <keiths@redhat.com>
11116
11117         * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
11118         (trace_pass_command): Likewise.
11119         * cli/cli-cmds.c: Include cli/cli-utils.h.
11120         (source_command): Use skip-spaces.
11121         (disassemble_command): Likewise.
11122         * findcmd.c: Include cli/cli-utils.h.
11123         (parse_find_args): Use skip_spaces.
11124         * go32-nat.c: Include cli/cli-utils.h.
11125         (go32_sldt): Use skip_spaces.
11126         (go32_sgdt): Likewise.
11127         (go32_sidt): Likewise.
11128         (go32_pde): Likewise.
11129         (go32_pte): Likewise.
11130         (go32_pte_for_address): Likewise.
11131         * infcmd.c: Include cli/cli-utils.h.
11132         (registers_info): Use skip_spaces.
11133         * linux-tdep.c (read_mapping): Use skip_spaces_const.
11134         (linux_info_proc): Likewise.
11135         * linux-thread-db.c: Include cli/cli-utils.h.
11136         (info_auto_load_libthread_db): Use skip_spaces_const.
11137         * m32r-rom.c: Include cli/cli-utils.h.
11138         (m32r_upload_command): Use skip_spaces.
11139         * maint.c: Include cli/cli-utils.h.
11140         (maintenance_translate_address): Use skip_spaces.
11141         * mi/mi-parse.c: Include cli/cli-utils.h.
11142         (mi_parse_argv): Use skip_spaces.
11143         (mi_parse): Likewise.
11144         * minsyms.c: Include cli/cli-utils.h.
11145         (msymbol_hash_iw): Use skip_spaces_const.
11146         * objc-lang.c: Include cli/cli-utils.h.
11147         (parse_selector): Use skip_spaces.
11148         (parse_method): Likewise.
11149         * python/python.c: Include cli/cli-utils.h.
11150         (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
11151         (python_command)[HAVE_PYTHON]: Likewise.
11152         (python_interactive_command)[!HAVE_PYTHON]: Likewise.
11153         * remote-m32r-sdi.c: Include cli/cli-utils.h.
11154         (m32r_load): Use skip_spaces.
11155         * serial.c: Include cli/cli-utils.h.
11156         (serial_open): Use skip_spaces_const.
11157         * stack.c: Include cli/cli-utils.h.
11158         (parse_frame_specification_1): Use skip_spaces_const.
11159         * symfile.c: Include cli/cli-utils.h.
11160         (set_ext_lang_command): Use skip_spaces.
11161         * symtab.c: Include cli/cli-utils.h.
11162         (rbreak_command): Use skip_spaces.
11163         * thread.c (thread_name_command): Use skip_spaces.
11164         * tracepoint.c (validate_actionline): Use skip_spaces.
11165         (encode_actions_1): Likewise.
11166         (trace_find_range_command): Likewise.
11167         (trace_find_outside_command): Likewise.
11168         (trace_dump_actions): Likewise.
11169
11170 2013-03-07  Pedro Alves  <palves@redhat.com>
11171
11172         * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
11173         * expprint.c (print_subexp_standard): Likewise.
11174         * utils.c (host_char_to_target): Likewise.
11175         * valprint.c (generic_emit_char, generic_printstr): Likewise.
11176         * varobj.c (value_get_print_value): Change type of local to char*.
11177         Cast it gdb_byte * in call to language printer.
11178
11179 2013-03-07  Pedro Alves  <palves@redhat.com>
11180
11181         * charset.c (struct wchar_iterator) <input>: Change type to 'const
11182         gdb_byte *'.
11183         (make_wchar_iterator): Remove cast to char*.
11184         (wchar_iterate): Change type of local.
11185
11186 2013-03-07  Pedro Alves  <palves@redhat.com>
11187
11188         * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
11189         for 'regcache->register_status'.
11190
11191 2013-03-07  Pedro Alves  <palves@redhat.com>
11192
11193         * breakpoint.c (breakpoint_xfer_memory): Change type of local to
11194         int.
11195
11196 2013-03-07  Pedro Alves  <palves@redhat.com>
11197
11198         * stap-probe.c (handle_stap_probe): Add cast to char*.
11199
11200 2013-03-07  Pedro Alves  <palves@redhat.com>
11201
11202         * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
11203         RECORD_MSGRCV>: Pass a signed variable to
11204         regcache_raw_read_signed, instead of an unsigned one.
11205
11206 2013-03-07  Pedro Alves  <palves@redhat.com>
11207
11208         * remote-notif.c (notif_debug): Change type to int.
11209         * remote-notif.h (notif_debug): Likewise.
11210
11211 2013-03-07  Pedro Alves  <palves@redhat.com>
11212
11213         * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
11214
11215 2013-03-07  Pedro Alves  <palves@redhat.com>
11216
11217         * remote.c (hex2bin, bin2hex): Move extern declarations to ...
11218         * remote.h (hex2bin, bin2hex): ... here.
11219         * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
11220
11221 2013-03-07  Eli Zaretskii  <eliz@gnu.org>
11222
11223         * utils.c (initialize_utils): Improve doc strings of "set/show
11224         width", "set/show height", and "set/show pagination".
11225
11226 2013-03-06  Keith Seitz  <keiths@redhat.com>
11227
11228         * ax-gdb.c (gen_printf): Make FORMAT const.
11229         * ax-gdb.h (gen_printf): Likewise.
11230         * ax-general.c (ax_string): Make STR const.
11231         * ax.h (ax_string): Likewise.
11232
11233 2013-03-06  Doug Evans  <dje@google.com>
11234
11235         * elfread.c (elf_symfile_read): Move debugging printf to more
11236         logical location.
11237
11238 2013-03-06  Pedro Alves  <palves@redhat.com>
11239
11240         * python/py-utils.c (target_string_to_unicode): Delete function.
11241         * python/python-internal.h (target_string_to_unicode): Delete
11242         declaration.
11243
11244 2013-03-06  Pierre Muller  <muller@sourceware.org>
11245
11246         * linespec.c (get_current_search_block): ARI fix, use (void)
11247         for empty parameter list.
11248
11249 2013-03-05  Doug Evans  <dje@google.com>
11250
11251         * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
11252         of old ada_lookup_symbol_list.  In !full_search case, don't
11253         search superblocks.
11254         (ada_lookup_symbol_list): Delete arg full_search, all callers
11255         updated.  Call ada_lookup_symbol_list_worker.
11256         (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
11257         * ada-lang.h (ada_lookup_symbol_list): Update.
11258         * language.h (language_defn): Update comment for
11259         la_iterate_over_symbols.
11260         * linespec.c (iterate_over_file_blocks): New function.
11261         (iterate_over_all_matching_symtabs): Call it.
11262         (lookup_prefix_sym): Ditto.
11263         (get_current_search_block): New function.
11264         (get_search_block): Delete.
11265         (find_label_symbols): Call get_current_search_block.
11266         (add_matching_symbols_to_info): Call iterate_over_file_blocks.
11267         * symtab.c (iterate_over_symbols): Don't search superblocks.
11268
11269 2013-03-05  Yao Qi  <yao@codesourcery.com>
11270
11271         * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
11272         parameter VAR's type from "unsigned int" to "int".
11273         * command.h (var_zuinteger_unlimited): Update its comments.
11274         (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
11275
11276 2013-03-05  Corinna Vinschen  <vinschen@redhat.de>
11277
11278         * NEWS: Mention new target x86_64-*-cygwin*.
11279
11280 2013-03-05  Corinna Vinschen  <vinschen@redhat.de>
11281
11282         * configure.host: Add x86_64-*-cygwin* as host.
11283         * configure.tgt: Add x86_64-*-cygwin* as target.
11284         * config/i386/cygwin64.mh: New file.
11285
11286 2013-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
11287
11288         * linespec.c (decode_line_2): Fix duplicate request off by two message.
11289
11290 2013-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
11291
11292         * linespec.c (struct linespec_canonical_name): New.
11293         (struct linespec_state): Change canonical_names type to it.
11294         (add_sal_to_sals): Change variable canonical_name to canonical.  Change
11295         xrealloc element size.  Initialize the different CANONICAL fields.
11296         (canonical_to_fullform): New.
11297         (filter_results): Use it.  Add variables canonical, fullform and
11298         cleanup.
11299         (struct decode_line_2_item, decode_line_2_compare_items): New.
11300         (decode_line_2): Remove variables iter and item_names, add variables
11301         items and items_count.  Modify the code for these new variables.
11302
11303 2013-03-04  Corinna Vinschen  <vinschen@redhat.com>
11304
11305         * coff-pe-read.c (read_pe_exported_syms): Don't return without
11306         calling do_cleanup.
11307
11308 2013-03-04  Luis Machado  <lgustavo@codesourcery.com>
11309
11310         * tracepoint.c (build_traceframe_info): Add code for byte order.
11311
11312 2013-03-02  Kevin Buettner  <kevinb@redhat.com>
11313
11314         * v850-tdep.c: (v850e2_register_name): Revise system register
11315         names to match current V850E2M architecture specifications.
11316         Update register number enum comments too.
11317
11318 2013-03-01  Jiong Wang  <jiwang@tilera.com>
11319             Pedro Alves  <palves@redhat.com>
11320
11321         * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
11322         to END_ADDR.
11323         (tilegx_skip_prologue): Limit prologue analysis to section end.
11324
11325 2013-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
11326
11327         * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
11328         use it.
11329
11330 2013-03-01  Pedro Alves  <palves@redhat.com>
11331
11332         Use gdb_byte for bytes from the program being debugged.
11333
11334         * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
11335         Change type of local 'buf' to gdb_byte.
11336         * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
11337         * bfin-tdep.c (bfin_push_dummy_call): Likewise.
11338         * cris-tdep.c (cris_sigcontext_addr)
11339         (cris_sigtramp_frame_unwind_cache): Likewise.
11340         * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
11341         (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
11342         Likewise.
11343         * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
11344         * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
11345         (hppa32_hpux_search_dummy_call_sequence)
11346         (hppa_hpux_supply_save_state): Likewise.
11347         * hppa-linux-tdep.c (insns_match_pattern)
11348         (hppa_linux_find_global_pointer): Likewise.
11349         * hppa-tdep.c (hppa_in_function_epilogue_p)
11350         (skip_prologue_hard_way, hppa_frame_cache): Likewise.
11351         * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
11352         * i386fbsd-tdep.c (i386fbsd_supply_uthread)
11353         (i386fbsd_collect_uthread): Likewise.
11354         * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
11355         * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
11356         * ia64-tdep.c (examine_prologue, ia64_frame_cache)
11357         (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
11358         (ia64_sigtramp_frame_prev_register, ia64_access_reg)
11359         (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
11360         (ia64_libunwind_frame_prev_register)
11361         (ia64_libunwind_sigtramp_frame_this_id)
11362         (ia64_find_global_pointer_from_dynamic_section)
11363         (find_extant_func_descr, find_func_descr, ia64_dummy_id)
11364         (ia64_unwind_pc): Likewise.
11365         * iq2000-tdep.c (iq2000_store_return_value): Likewise.
11366         * m68hc11-tdep.c (m68hc11_push_dummy_call)
11367         (m68hc11_extract_return_value): Likewise.
11368         * m68klinux-nat.c (fetch_register, store_register): Likewise.
11369         * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
11370         (mep_get_insn, mep_push_dummy_call): Likewise.
11371         * mips-linux-tdep.c (mips_linux_get_longjmp_target)
11372         (mips_linux_in_dynsym_stub): Likewise.
11373         * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
11374         * ppc-linux-nat.c (fetch_register, store_register): Likewise.
11375         * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
11376         to gdb_byte.
11377         * remote-mips.c (mips_set_register): Likewise.
11378         * remote-sim.c (gdbsim_fetch_register): Likewise.
11379         * score-tdep.c (score7_fetch_inst): Change type of parameter
11380         'memblock' and local 'buf' to gdb_byte.
11381         (score7_malloc_and_get_memblock): Change return type to gdb_byte.
11382         Change type of local 'buf' to gdb_byte.  Adjust.
11383         (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
11384         to gdb_byte**.
11385         (score7_analyze_prologue): Change type of 'memblock' and
11386         'memblock_ptr' locals to gdb_byte*.
11387         * sh64-tdep.c (sh64_extract_return_value)
11388         (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
11389         * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
11390         * solib-pa64.c (pa64_solib_create_inferior_hook)
11391         (pa64_open_symbol_file_object): Remove local 'buf'.
11392         * solib-som.c (som_solib_create_inferior_hook, link_map_start)
11393         (som_open_symbol_file_object): Likewise.
11394         * solib-spu.c (spu_current_sos): Likewise.
11395         * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
11396         * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
11397         (spu_store_registers): Likewise.
11398         * target.c (debug_print_register): Likewise.
11399         * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
11400         * xstormy16-tdep.c (xstormy16_store_return_value)
11401         (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
11402         (xstormy16_find_jmp_table_entry): Likewise.
11403
11404 2013-03-01  Jiong Wang  <jiwang@tilera.com>
11405
11406         * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
11407         (tilegx_gdbarch_init): Install it.
11408
11409 2013-02-28  Tom Tromey  <tromey@redhat.com>
11410
11411         * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
11412         PyLong_Check.
11413
11414 2013-02-28  Doug Evans  <dje@google.com>
11415
11416         * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
11417         * python/python.c (gdbpy_find_pc_line): Ditto.
11418
11419 2013-02-28  Tom Tromey  <tromey@redhat.com>
11420
11421         * contrib/excheck.py: New file.
11422         * contrib/exsummary.py: New file.
11423         * contrib/gcc-with-excheck: New file.
11424
11425 2013-02-28  Tom Tromey  <tromey@redhat.com>
11426
11427         * python/python.c (gdbpy_print_stack): Call begin_line and
11428         fprintf_filtered inside TRY_CATCH.
11429
11430 2013-02-28  Tom Tromey  <tromey@redhat.com>
11431
11432         * python/python.c (gdbpy_find_pc_line): Call find_pc_line
11433         inside TRY_CATCH.
11434
11435 2013-02-28  Tom Tromey  <tromey@redhat.com>
11436
11437         * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
11438         frame_object_to_frame_info inside TRY_CATCH.
11439
11440 2013-02-28  Tom Tromey  <tromey@redhat.com>
11441
11442         * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
11443         TRY_CATCH.
11444
11445 2013-02-28  Tom Tromey  <tromey@redhat.com>
11446
11447         * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
11448
11449 2013-02-27  Corinna Vinschen  <vinschen@redhat.com>
11450
11451         * windows-nat.c: Throughout, fix format strings and casts of
11452         printf-like functions to avoid type related warnings on all
11453         platforms.
11454         (handle_output_debug_string): Fetch context information address
11455         from debug string using string_to_core_addr.
11456
11457 2013-02-27  Jiong Wang  <jiwang@tilera.com>
11458
11459         * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
11460         * regformats/reg-tilegx32.dat: New.
11461
11462 2013-02-27  Jiong Wang  <jiwang@tilera.com>
11463
11464         * configure.tgt (tilegx-*-linux*): Enable gdbserver.
11465
11466 2013-02-27  Jiong Wang  <jiwang@tilera.com>
11467
11468         * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
11469
11470 2013-02-27  Yao Qi  <yao@codesourcery.com>
11471             Pedro Alves  <palves@redhat.com>
11472
11473         * tracepoint.c (tfile_trace_find): For tfind
11474         pc/tp/range/outside, look for the next trace frame instead of
11475         always starting from frame 0.
11476
11477 2013-02-26  Anthony Green  <green@moxielogic.com>
11478
11479         * configure.tgt: Add support for moxie-*-rtems* target.
11480
11481 2013-02-25  Pedro Alves  <palves@redhat.com>
11482
11483         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
11484         warning text.
11485
11486 2013-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
11487
11488         * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
11489         if $fp is used as the virtual frame pointer.
11490
11491 2013-02-23  Alan Modra  <amodra@gmail.com>
11492
11493         * elfread.c (elf_symtab_read): Do not use udata.p here to find
11494         symbol size.
11495         * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
11496         * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
11497         * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
11498         * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
11499
11500 2013-02-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
11501
11502         Code cleanup.
11503         * elfread.c (build_id_bfd_get): Make the return type const.
11504         (build_id_verify): Make the check parameter const.
11505         (build_id_to_debug_filename): Make the build_id parameter and variable
11506         data const.
11507         (find_separate_debug_file_by_buildid): Make the variable build_id const.
11508
11509 2013-02-21  Alan Modra  <amodra@gmail.com>
11510
11511         * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
11512
11513 2013-02-20  Siva Chandra Reddy  <sivachandra@google.com>
11514
11515         Add a new method 'disassemble' to gdb.Architecture class.
11516         * python/py-arch.c (archpy_disassmble): Implementation of the
11517         new method gdb.Architecture.disassemble.
11518         (arch_object_methods): Add entry for the new method.
11519
11520 2013-02-20  Jiong Wang  <jiwang@tilera.com>
11521
11522         * MAINTAINERS (Write After Approval): Add myself to the list.
11523
11524 2013-02-19  Pedro Alves  <palves@redhat.com>
11525
11526         Garbage collect 'struct monitor_ops'::load_routine.
11527
11528         * monitor.h (struct monitor_ops) <load_routine>: Remove field.
11529         * monitor.c (monitor_load): No longer call
11530         current_monitor->load_routine.
11531         * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
11532         * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
11533         * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
11534
11535 2013-02-19  Pedro Alves  <palves@redhat.com>
11536
11537         PR gdb/15161
11538
11539         Harmonize with generic_load.
11540
11541         * monitor.c: Include "readline/readline.h".
11542         (monitor_load): Rename parameter 'file' to 'args'.  Use build_argv
11543         instead of sscanf.  Use CORE_ADDR/strtoulst instead of unsigned
11544         long/strtol for the 'load_offset' local.  Error out if no argument
11545         is given or if too many arguments are given.  Tilde expand the
11546         passed in file name.
11547
11548 2013-02-19  Kai Tietz  <ktietz@redhat.com>
11549
11550         PR gdb/15161
11551         * symfile.c (load_section_data): Change type of load_offset
11552         to CORE_ADDR.
11553         (generic_load): User strtoulst instead of strtoul for conversion
11554         of load_offset.
11555
11556 2013-02-19  Jiong Wang  <jiwang@tilera.com>
11557
11558         * tilegx-tdep.c (tilegx_analyze_prologue): add check for
11559          for return address, "lr" register, saved on stack.
11560         * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
11561         after we invoke tilegx_analyze_prologue.
11562
11563 2013-02-19  Jiong Wang  <jiwang@tilera.com>
11564
11565         * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
11566
11567 2013-02-19  Jiong Wang  <jiwang@tilera.com>
11568
11569         * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
11570
11571 2013-02-19  Jiong Wang  <jiwang@tilera.com>
11572
11573         * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
11574         (tilegx_write_pc): New function.
11575         (tilegx_cannot_reference_register): Return zero if REGNO
11576         is TILEGX_FAULTNUM_REGNUM.
11577         (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
11578         (tilegx_register_name): Add handling of "faultnum" register.
11579         * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
11580         * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
11581         handling of TILEGX_FAULTNUM_REGNUM.
11582         * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
11583
11584 2013-02-19  Jiong Wang  <jiwang@tilera.com>
11585
11586         * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
11587         should be aligned to 64bit.
11588
11589 2013-02-19  Kai Tietz  <ktietz@redhat.com>
11590
11591         * windows-nat.c (windows_xfer_memory): Fix debug-output
11592         for LLP64.
11593
11594 2013-02-19  Lei Liu  <lei.liu2@windriver.com>
11595
11596         * mips-linux-nat.c (mips64_linux_regsets_store_registers):
11597         Don't check DSP register number if HAVE_DSP is not set.
11598
11599 2013-02-19  Alan Modra  <amodra@gmail.com>
11600
11601         * elfread.c (struct build_id): Delete.  Use struct elf_build_id
11602         throughout file instead.
11603         (build_id_bfd_get): Update to use new elf_tdata build_id field.
11604         Don't xmalloc return value.
11605         (build_id_verify): Similarly.  Don't xfree.
11606         (build_id_to_debug_filename): Update.
11607         (find_separate_debug_file_by_buildid): Update, don't xfree.
11608
11609 2013-02-18  Tom Tromey  <tromey@redhat.com>
11610
11611         PR gdb/15102:
11612         * dwarf2read.c (read_subrange_type): Use result of
11613         'check_typedef'.
11614
11615 2013-02-16  Yuanhui Zhang  <asmwarrior@gmail.com>
11616
11617         * frame.c: Remove one extra white space after #include
11618         directive.
11619
11620 2013-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
11621
11622         * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
11623
11624 2013-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
11625
11626         * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
11627         and dir commands into an if block.
11628
11629 2013-02-15  Sanimir Agovic  <sanimir.agovic@intel.com>
11630
11631         * python/py-breakpoint (struct pybp_code):  Use int instead of
11632         enum type_code.
11633
11634 2013-02-15  Pedro Alves  <pedro@codesourcery.com>
11635             Hafiz Abid Qadeer  <abidh@codesourcery.com>
11636
11637         * NEWS: Mention new field "trace-file".
11638         * tracepoint.c (trace_status_mi): Output "trace-file" field.
11639         (tfile_open): Record the trace file's filename in the trace
11640         status.
11641         (tfile_files_info): Mention the name of the trace file.
11642         Check the "filename" field explicitely.
11643         (trace_status_command): Explicitely check "filename" field.
11644         (trace_find_command): Ditto.
11645         (trace_find_pc_command): Ditto.
11646         (trace_find_tracepoint_command): Ditto.
11647         (trace_find_line_command): Ditto.
11648         (trace_find_range_command): Ditto.
11649         (trace_find_outside_command): Ditto.
11650         * tracepoint.h (struct trace_status) <from_file>: Rename it
11651         to "filename" and make it hold the trace file's filename
11652         instead of a boolean.
11653         * remote.c (remote_get_trace_status): Initialize "filename"
11654         field with NULL instead of 0.
11655
11656 2013-02-15  Yao Qi  <yao@codesourcery.com>
11657
11658         * remote.c: Fix a typo.
11659
11660 2013-02-14  Pierre Muller  <muller@sourceware.org>
11661
11662         * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
11663
11664 2013-02-14  Pedro Alves  <palves@redhat.com>
11665
11666         * utils.c (savestring): Don't #undef it.  Move function to
11667         common/common-utils.c.
11668         * common/common-utils.c: Include gdb_string.h.
11669         (savestring): Move here from utils.c.
11670         * common/common-utils.h (savestring): Declare.
11671
11672 2013-02-14  Pedro Alves  <palves@redhat.com>
11673
11674         * utils.c (savestring): Rename parameter 'size' to 'len'.
11675
11676 2013-02-14  Pedro Alves  <palves@redhat.com>
11677             Yufeng Zhang  <yufeng.zhang@arm.com>
11678
11679         * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
11680         (aarch64_inferior_data, struct aarch64_inferior_data):
11681         Delete.
11682         (struct aarch64_process_info): New.
11683         (aarch64_process_list): New global.
11684         (aarch64_find_process_pid, aarch64_add_process)
11685         (aarch64_process_info_get): New functions.
11686         (aarch64_inferior_data_get): Delete.
11687         (aarch64_process_info_get): New function.
11688         (aarch64_forget_process): New function.
11689         (aarch64_get_debug_reg_state): New parameter 'pid'.  Reimplement.
11690         (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
11691         aarch64_get_debug_reg_state.
11692         (aarch64_notify_debug_reg_change): Use iterate_over_lwps
11693         instead of linux_nat_iterate_watchpoint_lwps.
11694         (aarch64_linux_new_fork): New function.
11695         (aarch64_linux_child_post_startup_inferior): Use
11696         aarch64_forget_process instead of aarch64_init_debug_reg_state.
11697         (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
11698         (aarch64_linux_remove_hw_breakpoint)
11699         (aarch64_handle_aligned_watchpoint)
11700         (aarch64_handle_unaligned_watchpoint)
11701         (aarch64_linux_insert_watchpoint)
11702         (aarch64_linux_remove_watchpoint)
11703         (aarch64_linux_stopped_data_address): Adjust to pass the current
11704         process id to aarch64_debug_reg_state.
11705         (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
11706         linux_nat_new_fork hook, and aarch64_forget_process as
11707         linux_nat_forget_process hook; remove the call to
11708         register_inferior_data_with_cleanup.
11709
11710 2013-02-14  Pedro Alves  <palves@redhat.com>
11711
11712         * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
11713         EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
11714         lval_memory.
11715
11716 2013-02-14  Pedro Alves  <pedro@codesourcery.com>
11717             Hafiz Abid Qadeer  <abidh@codesourcery.com>
11718
11719         * tracepoint.h (validate_trace_state_variable_name): Declare.
11720         * tracepoint.c (validate_trace_state_variable_name): New.
11721         (trace_variable_command): Parse the trace state variable's name
11722         without using parse_expression.  Do several validations.
11723         * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
11724         trace state variable's name with parse_expression.  Validate it.
11725
11726 2013-02-14  Yao Qi  <yao@codesourcery.com>
11727
11728         * infcmd.c (breakpoint_proceeded): Remove it.
11729
11730 2013-02-14  Yao Qi  <yao@codesourcery.com>
11731
11732         * tracepoint.c (end_actions_pseudocommand): Make it static.
11733         (while_stepping_pseudocommand): Likewise.
11734         * tracepoint.h (end_actions_pseudocommand): Remove the
11735         declaration.
11736         (while_stepping_pseudocommand): Likewise.
11737
11738 2013-02-14  Yao Qi  <yao@codesourcery.com>
11739
11740         * cli/cli-decode.c (help_cmd): Remove the declaration of
11741         "cmdlist".
11742         (help_all): Likewise.
11743
11744 2013-02-13  Pedro Alves  <palves@redhat.com>
11745
11746         * amd64-linux-nat.c (update_debug_registers_callback):
11747         Update comment.
11748         (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
11749         iterate_over_lwps.
11750         (amd64_linux_prepare_to_resume): Pass the lwp's pid to
11751         i386_debug_reg_state.
11752         (amd64_linux_new_fork): New function.
11753         (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
11754         linux_nat_new_fork hook, and i386_forget_process as
11755         linux_nat_forget_process hook.
11756         * i386-linux-nat.c (update_debug_registers_callback):
11757         Update comment.
11758         (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
11759         iterate_over_lwps.
11760         (i386_linux_prepare_to_resume): Pass the lwp's pid to
11761         i386_debug_reg_state.
11762         (i386_linux_new_fork): New function.
11763         (_initialize_i386_linux_nat): Install i386_linux_new_fork as
11764         linux_nat_new_fork hook, and i386_forget_process as
11765         linux_nat_forget_process hook.
11766         * i386-nat.c (i386_init_dregs): Delete.
11767         (i386_inferior_data, struct i386_inferior_data):
11768         Delete.
11769         (struct i386_process_info): New.
11770         (i386_process_list): New global.
11771         (i386_find_process_pid, i386_add_process, i386_process_info_get):
11772         New functions.
11773         (i386_inferior_data_get): Delete.
11774         (i386_process_info_get): New function.
11775         (i386_debug_reg_state): New parameter 'pid'.  Reimplement.
11776         (i386_forget_process): New function.
11777         (i386_cleanup_dregs): Rewrite.
11778         (i386_update_inferior_debug_regs, i386_insert_watchpoint)
11779         (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
11780         (i386_stopped_data_address, i386_insert_hw_breakpoint)
11781         (i386_remove_hw_breakpoint): Adjust to pass the current process id
11782         to i386_debug_reg_state.
11783         (i386_use_watchpoints): Don't register inferior data.
11784         * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
11785         adjust comment.
11786         (i386_forget_process): Declare.
11787         * linux-fork.c (delete_fork): Call linux_nat_forget_process.
11788         * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
11789         New static globals.
11790         (linux_child_follow_fork): Don't call linux_nat_new_thread here.
11791         (add_initial_lwp): New, factored out from ...
11792         (add_lwp): ... this.  Don't check the number of lwps before
11793         calling linux_nat_new_thread.
11794         (linux_nat_iterate_watchpoint_lwps): Delete.
11795         (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
11796         (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
11797         forks and vforks.
11798         (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
11799         initial lwp.
11800         (linux_nat_kill, linux_nat_mourn_inferior): Call
11801         linux_nat_forget_process.
11802         (linux_nat_set_new_fork, linux_nat_set_forget_process)
11803         (linux_nat_forget_process): New functions.
11804         * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
11805         type.
11806         (linux_nat_iterate_watchpoint_lwps): Delete declaration.
11807         (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
11808         types.
11809         (linux_nat_set_new_fork, linux_nat_set_forget_process)
11810         (linux_nat_forget_process): New declarations.
11811
11812         * amd64fbsd-nat.c (super_mourn_inferior): New global.
11813         (amd64fbsd_mourn_inferior): New function.
11814         (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
11815         * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
11816
11817 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11818
11819         * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
11820         Adding _().
11821
11822 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11823
11824         * aarch64-linux-nat.c (debug_reg_change_callback)
11825         (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
11826         %s and phex().
11827
11828 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11829
11830         * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
11831         with LONGEST.
11832
11833 2013-02-13  Pedro Alves  <palves@redhat.com>
11834             Hafiz Abid Qadeer  <abidh@codesourcery.com>
11835
11836         * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
11837
11838 2013-02-12  Tom Tromey  <tromey@redhat.com>
11839
11840         PR symtab/11464:
11841         * c-exp.y (lex_one_token): Initialize other fields of yylval on
11842         NAME return.
11843         (classify_inner_name): Remove 'first_name' argument, add
11844         'context'.  Remove unused variable.
11845         (yylex): Explicitly maintain the context type.  Exit loop earlier
11846         if NAME result is seen.
11847
11848 2013-02-12  Pedro Alves  <palves@redhat.com>
11849
11850         * amd64-darwin-tdep.c: Add (C) after Copyright.
11851         * cli/cli-cmds.h: Ditto.
11852         * cli/cli-decode.c: Ditto.
11853         * cli/cli-decode.h: Ditto.
11854         * cli/cli-dump.c: Ditto.
11855         * cli/cli-dump.h: Ditto.
11856         * cli/cli-interp.c: Ditto.
11857         * cli/cli-logging.c: Ditto.
11858         * cli/cli-script.c: Ditto.
11859         * cli/cli-script.h: Ditto.
11860         * cli/cli-setshow.c: Ditto.
11861         * cli/cli-setshow.h: Ditto.
11862         * cli/cli-utils.c: Ditto.
11863         * cli/cli-utils.h: Ditto.
11864         * config/alpha/nm-osf3.h: Ditto.
11865         * config/djgpp/djconfig.sh: Ditto.
11866         * config/i386/nm-fbsd.h: Ditto.
11867         * config/i386/nm-i386gnu.h: Ditto.
11868         * config/nm-linux.h: Ditto.
11869         * config/nm-nto.h: Ditto.
11870         * config/rs6000/nm-rs6000.h: Ditto.
11871         * config/sparc/nm-sol2.h: Ditto.
11872         * darwin-nat-info.c: Ditto.
11873         * dfp.c: Ditto.
11874         * dfp.h: Ditto.
11875         * gdb-demangle.h: Ditto.
11876         * i386-darwin-nat.c: Ditto.
11877         * i386-darwin-tdep.c: Ditto.
11878         * linux-fork.h: Ditto.
11879         * m32c-tdep.c: Ditto.
11880         * microblaze-linux-tdep.c: Ditto.
11881         * microblaze-rom.c: Ditto.
11882         * microblaze-tdep.c: Ditto.
11883         * microblaze-tdep.h: Ditto.
11884         * mips-linux-tdep.h: Ditto.
11885         * ppc-ravenscar-thread.c: Ditto.
11886         * ppc-ravenscar-thread.h: Ditto.
11887         * prologue-value.c: Ditto.
11888         * prologue-value.h: Ditto.
11889         * ravenscar-thread.c: Ditto.
11890         * ravenscar-thread.h: Ditto.
11891         * sparc-ravenscar-thread.c: Ditto.
11892         * sparc-ravenscar-thread.h: Ditto.
11893         * tilegx-linux-tdep.c: Ditto.
11894         * unwind_stop_reasons.def: Ditto.
11895         * windows-nat.h: Ditto.
11896         * xtensa-linux-tdep.c: Ditto.
11897         * xtensa-xtregs.c: Ditto.
11898         * regformats/regdat.sh: Ditto.
11899         * regformats/regdef.h: Ditto.
11900
11901 2013-02-12  Pedro Alves  <palves@redhat.com>
11902
11903         * break-catch-sig.c: Update copyright years.
11904
11905 2013-02-11  Siva Chandra Reddy  <sivachandra@google.com>
11906
11907         Add support for a destructor for ui_out data and use it to
11908         provide a ui_out destructor.
11909         * ui-out.h: Declare the new ui_out destructor.
11910         (ui_out_impl): Add a field for data destructor in ui_out_impl.
11911         * ui-out.c (default_data_destroy): Add a default data destructor
11912         which does nothing.
11913         (default_ui_out_impl): Set the new data_destroy field to
11914         default_data_destroy
11915         (uo_data_destroy): Local function which invokes the data
11916         destructor if present.
11917         (clear_table): Local function which clears the table data of a
11918         ui_out object.
11919         (ui_out_destroy): Public function which frees a ui_out object.
11920         (ui_out_table_end): Use the new clear_table function.
11921         * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
11922         NULL.
11923         * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
11924         to NULL.
11925
11926 2013-02-11  Doug Evans  <dje@google.com>
11927
11928         * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
11929         (printf_decfloat): New function.  Broken out from ui_printf.
11930         Remove unnecessary code to shift the entire format string down.
11931         (printf_pointer): New function.
11932         (ui_printf): Code to print C strings, wide C strings, decfloats,
11933         and pointers moved to separate functions.
11934
11935 2013-02-11  Sergio Durigan Junior  <sergiodj@redhat.com>
11936
11937         * valops.c (value_assign): Handling bitfield offset in
11938         `lval_internalvar_component' case.
11939
11940 2013-02-08  Doug Evans  <dje@google.com>
11941
11942         * common/format.c (parse_format_string): Fix whitespace.
11943
11944 2013-02-08  Matthew Gretton-Dann  <matthew.gretton-dann@linaro.org>
11945
11946         * stack.c (return_command): Work around uninitialized variable
11947         warning.
11948
11949 2013-02-08  Yufeng Zhang  <yufeng.zhang@arm.com>
11950
11951         * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
11952         number of the registers from 36 to 34.
11953
11954 2013-02-08  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11955
11956         * NEWS: Mention new AArch64 native and target support.
11957
11958 2013-02-08  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11959
11960         * MAINTAINERS (Write After Approval): Add myself.
11961
11962 2013-02-08  Jim MacArthur  <jim.macarthur@arm.com>
11963             Marcus Shawcroft  <marcus.shawcroft@arm.com>
11964             Nigel Stephens  <nigel.stephens@arm.com>
11965             Yufeng Zhang  <yufeng.zhang@arm.com>
11966
11967         * aarch64-linux-nat.c: New file.
11968         * config/aarch64/linux.mh: New file.
11969         * configure.host: Add AArch64.
11970         * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
11971
11972 2013-02-07  Doug Evans  <dje@google.com>
11973
11974         * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
11975         disassemble command.
11976
11977 2013-02-07  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11978
11979         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
11980         set_gdbarch_fetch_tls_load_module_address.
11981
11982 2013-02-06  David S. Miller  <davem@davemloft.net>
11983
11984         * sparc-tdep.c (sparc32_return_value): Handle writing return value when
11985         using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
11986         * value.c (struct_return_convention): New function.
11987         (using_struct_return): Implement in terms of struct_return_convention.
11988         * value.h (struct_return_convention): Declare.
11989         * stack.c (return_command): Allow successful overriding of the return
11990         value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
11991
11992 2013-02-06  Tom Tromey  <tromey@redhat.com>
11993
11994         * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
11995         outside of TRY_CATCH.
11996
11997 2013-02-06  Yao Qi  <yao@codesourcery.com>
11998
11999         * mi/mi-interp.c: Include "tracepoint.h".
12000         (mi_tsv_modified): Declare.
12001         (mi_tsv_created, mi_tsv_deleted): Update declaration.
12002         (mi_interpreter_init): Call observer_attach_tsv_modified.
12003         (mi_tsv_modified): New.
12004         (mi_tsv_created, mi_tsv_deleted): Update.
12005         * tracepoint.c (trace_variable_command): Call
12006         observer_notify_tsv_modified if the initial value of tsv is
12007         changed.
12008         (delete_trace_state_variable): Call
12009         observer_notify_tsv_deleted earlier.
12010         (trace_variable_command): Caller update.
12011         (create_tsv_from_upload): Likewise.
12012         * observer.sh: Declare "struct trace_state_variable".
12013
12014         * NEWS: Mention the new MI notification "=tsv-modified".
12015
12016 2013-02-05  Doug Evans  <dje@google.com>
12017
12018         * completer.c (location_completer): Fix typo in comment.
12019
12020 2013-02-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
12021
12022         * breakpoint.c (add_location_to_breakpoint): Insert the location with
12023         ADDRESS sorted.
12024
12025 2013-02-05  Marcus Shawcroft  <marcus.shawcroft@arm.com>
12026
12027         * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
12028         Refactor if statement to avoid trailing || operator.
12029
12030 2013-02-05  Andreas Tobler  <andreast@fgznet.ch>
12031
12032         * NEWS: Add PowerPC FreeBSD as a new native configuration.
12033
12034 2013-02-04  Andreas Tobler  <andreast@fgznet.ch>
12035
12036         * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
12037         * configure.host: Add powerpc*-*-freebsd* target.
12038         * configure.tgt: Add target info for powerpc*-*-freebsd*.
12039         * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
12040         * config/powerpc/fbsd.mh: New file.
12041
12042 2013-02-04  Sergio Durigan Junior  <sergiodj@redhat.com>
12043             Denys Vlasenko  <dvlasenk@redhat.com>
12044             Pedro Alves  <palves@redhat.com>
12045
12046         * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
12047         (struct elf_internal_linux_prpsinfo): Forward declare.
12048         * gdbarch.h, gdbarch.c: Regenerate.
12049         * linux-tdep.c: Include `cli/cli-utils.h'.
12050         (linux_fill_prpsinfo): New function.
12051         (linux_make_corefile_notes): Use linux_fill_prpsinfo.  If there's
12052         an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
12053         elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
12054         depending on gdbarch pointer bitness.
12055         * ppc-linux-tdep.c: Include elf-bfd.h.
12056         (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
12057         on 32-bit.
12058
12059 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
12060             Marcus Shawcroft  <marcus.shawcroft@arm.com>
12061             Nigel Stephens  <nigel.stephens@arm.com>
12062             Yufeng Zhang  <yufeng.zhang@arm.com>
12063
12064         * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
12065
12066 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
12067             Marcus Shawcroft  <marcus.shawcroft@arm.com>
12068             Nigel Stephens  <nigel.stephens@arm.com>
12069             Yufeng Zhang  <yufeng.zhang@arm.com>
12070
12071         * aarch64-newlib-tdep.c: New file.
12072         * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
12073         aarch64*-*-elf.
12074         * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
12075         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
12076         (ALLDEPFILES): Add aarch64-newlib-tdep.c.
12077         * osabi.c (gdb_osabi_names): Add "Newlib".
12078
12079 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
12080             Marcus Shawcroft  <marcus.shawcroft@arm.com>
12081             Nigel Stephens  <nigel.stephens@arm.com>
12082             Yufeng Zhang  <yufeng.zhang@arm.com>
12083
12084         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
12085         (ALLDEPFILES): Add aarch64-linux-tdep.c.
12086         * aarch64-linux-tdep.c: New file.
12087         * aarch64-linux-tdep.h: New file.
12088         * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
12089         * configure.tgt: Add aarch64-none-linux-gnu.
12090
12091 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
12092             Marcus Shawcroft  <marcus.shawcroft@arm.com>
12093             Nigel Stephens  <nigel.stephens@arm.com>
12094             Yufeng Zhang  <yufeng.zhang@arm.com>
12095
12096         * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
12097         (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
12098         (ALLDEPFILES): Add aarch64-tdep.c.
12099         * aarch64-tdep.c: New file.
12100         * aarch64-tdep.h: New file.
12101         * configure.tgt: Add AArch64.
12102         * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
12103         (aarch64-expedite): New definition.
12104         * features/aarch64-core.xml: New file.
12105         * features/aarch64-fpu.xml: New file.
12106         * features/aarch64-without-fpu.c: New file (generated).
12107         * features/aarch64-without-fpu.xml: New file.
12108         * features/aarch64.c: New file (generated).
12109         * features/aarch64.xml: New file.
12110         * regformats/aarch64-without-fpu.dat: New file (generated).
12111         * regformats/aarch64.dat: New file (generated).
12112
12113 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
12114
12115         * contrib/expect-read1.c: New file.
12116         * contrib/expect-read1.sh: New file.
12117
12118 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
12119
12120         * dwarf2read.c (file_file_name): New function with code from
12121         file_full_name.
12122         (file_full_name): Move most of the code to file_file_name.
12123         (macro_start_file): Rename variable full_name to file_name and use
12124         file_file_name for it.  Add comp_dir parameter to new_macro_table.
12125         * macrocmd.c (show_pp_source_pos): New variable fullname.  Replace any
12126         macro_source_file->filename access by macro_source_fullname call.
12127         * macroscope.c (_initialize_macroscope): Update the new_macro_table
12128         caller.
12129         * macrotab.c (struct macro_table): New field comp_dir.
12130         (macro_include): New variables link_fullname and source_fullname.
12131         Replace any macro_source_file->filename access by macro_source_fullname
12132         call.
12133         (macro_lookup_inclusion): Remove the partial filenames checking code.
12134         (check_for_redefinition): New variables source_fullname and
12135         found_key_fullname.  Replace any macro_source_file->filename access by
12136         macro_source_fullname call.
12137         (macro_undef): New variables source_fullname and key_fullname.  Replace
12138         any macro_source_file->filename access by macro_source_fullname call.
12139         (macro_lookup_definition): New variables retval and source_fullname.
12140         Replace any macro_source_file->filename access by macro_source_fullname
12141         call.
12142         (foreach_macro): New variable key_fullname.  Replace any
12143         macro_source_file->filename access by macro_source_fullname call.
12144         (foreach_macro_in_scope): New variable datum_fullname.  Replace any
12145         macro_source_file->filename access by macro_source_fullname call.
12146         (new_macro_table): Add parameter comp_dir.  Initialize T with it.
12147         (macro_source_fullname): New function.
12148         * macrotab.h (struct macro_source_file): Extent the filename field
12149         comment.
12150         (new_macro_table): New parameter comp_dir, add a comment for it.
12151         (macro_source_fullname): new declaration.
12152
12153 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
12154
12155         * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
12156         this_real_name to outer block.  Use it also for
12157         compare_filenames_for_search.
12158         (dw2_expand_symtabs_matching): New variable this_real_name.  Use it
12159         with dw2_get_real_path for file_matcher, considering also
12160         BASENAMES_MAY_DIFFER.
12161         (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
12162
12163 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
12164
12165         * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
12166         to the file_matcher parameter.  Pass 0 to it.
12167         (dwarf2_create_include_psymtab): Copy also DIRNAME.
12168         * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
12169         NULL psymtab_to_fullname result.
12170         (psymtab_to_fullname): Remove variable r.  Never return NULL, assemble
12171         an expected filename instead.
12172         (expand_symtabs_matching_via_partial): Add basenames parameter to the
12173         file_matcher parameter.  Call also psymtab_to_fullname, after newly
12174         considering BASENAMES_MAY_DIFFER.
12175         * source.c (rewrite_source_path): Remove static.
12176         * source.h (rewrite_source_path): New declaration.
12177         * symfile.h (struct quick_symbol_functions): Add basenames parameter to
12178         the expand_symtabs_matching field.  Comment it.
12179         * symtab.c (file_matches): New function comment.  Add parameter
12180         basenames, implement it.
12181         (search_symbols_file_matches): Add basenames parameter.  Update the
12182         file_matches caller.
12183         (search_symbols): Match FILES also against symtab_to_fullname.
12184         Optimize it for BASENAMES_MAY_DIFFER.
12185
12186 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
12187
12188         * source.c (print_source_lines_base): Print for TUI also "fullname".
12189         * tui/tui-data.c (init_content_element): Change tui_locator_element
12190         field to full_name.
12191         * tui/tui-data.h (struct tui_locator_element): Likewise.
12192         * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
12193         tui_update_locator_filename calls to tui_update_locator_fullname.
12194         Replace symtab->filename refererence by symtab_to_fullname call.
12195         * tui/tui-out.c (tui_field_string): Check for "fullname" now.
12196         * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
12197         field to full_name.  Replace symtab->filename refererence by
12198         symtab_to_fullname call.
12199         (tui_show_symtab_source): Rename parameter to fullname.  Change
12200         tui_locator_element field to full_name.
12201         * tui/tui-stack.c: Include source.h.
12202         (tui_set_locator_filename): Rename the declaration to ...
12203         (tui_set_locator_fullname): ... here.  Rename its parameter to
12204         fullname, updates its comment.
12205         (tui_set_locator_info): Rename its parameter to fullname.
12206         (tui_set_locator_filename): Rename the definition to ...
12207         (tui_set_locator_fullname): ... here.  Rename its parameter to
12208         fullname, updates its comment.  Change tui_locator_element field to
12209         full_name.
12210         (tui_set_locator_info): Rename its parameter to fullname.
12211         (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
12212         (tui_update_locator_filename): Rename to ...
12213         (tui_update_locator_fullname): ... here. Rename callee to
12214         tui_set_locator_fullname.
12215         (tui_show_frame_info): Replace symtab->filename refererence by
12216         symtab_to_fullname call.
12217         * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
12218         (tui_update_locator_fullname): ... here.
12219         * tui/tui-winsource.c (tui_display_main): Rename the callee to
12220         tui_update_locator_fullname.  Replace symtab->filename refererence by
12221         symtab_to_fullname call.
12222         * tui/tui.c (tui_show_source): Rename its parameter to fullname.
12223         Rename the callee to tui_update_locator_fullname.
12224         * tui/tui.h (tui_show_source): Rename its parameter to fullname.
12225
12226 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
12227
12228         * ada-lang.c (user_select_syms): Replace symtab->filename refererences
12229         by symtab_to_filename_for_display calls.
12230         * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
12231         (clear_command): New variable sal_fullname, initialize it.  Replace
12232         compare_filenames_for_search by filename_cmp with sal_fullname.
12233         (say_where, update_static_tracepoint): Replace symtab->filename
12234         refererences by symtab_to_filename_for_display calls.
12235         * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
12236         Likewise.
12237         * dwarf2read.c: Include source.h.
12238         (fixup_go_packaging): Replace symtab->filename refererences by
12239         symtab_to_filename_for_display calls.
12240         * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
12241         Replace symtab->filename refererences by symtab_to_filename_for_display
12242         calls.
12243         (create_sals_line_offset, convert_linespec_to_sals): New variable
12244         fullname, initialize it, replace symtab->filename reference by the
12245         variable.
12246         * linux-fork.c: Include source.h.
12247         (info_checkpoints_command): Replace symtab->filename refererences by
12248         symtab_to_filename_for_display calls.
12249         * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
12250         by symtab_to_filename_for_display calls.
12251         * mdebugread.c: Include source.h.
12252         (psymtab_to_symtab_1): Replace symtab->filename refererences by
12253         symtab_to_filename_for_display calls.
12254         * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
12255         (mi_cmd_file_list_exec_source_files): Likewise.
12256         * printcmd.c: Include source.h.
12257         (build_address_symbolic): Replace symtab->filename refererences by
12258         symtab_to_filename_for_display calls.
12259         * psymtab.c (partial_map_symtabs_matching_filename)
12260         (read_psymtabs_with_fullname): Call compare_filenames_for_search also
12261         with psymtab_to_fullname.
12262         * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
12263         by symtab_to_filename_for_display calls.
12264         (stpy_get_filename): New variable filename, initialize it, use instead
12265         of symtab->filename refererences.
12266         (salpy_str): Make variable filename const char *.  Replace
12267         symtab->filename refererences by symtab_to_filename_for_display calls.
12268         * skip.c: Include source.h and filenames.h.
12269         (skip_file_command): Remove const from the symtab variable.  Replace
12270         symtab->filename refererences by symtab_to_fullname call.
12271         (function_name_is_marked_for_skip): New variables searched_for_fullname
12272         and fullname.  Use them to search also with symtab's fullname.
12273         * source.c (find_source_lines): Replace symtab->filename refererences
12274         by symtab_to_filename_for_display calls.
12275         (print_source_lines_base): New variable filename, use it instead of
12276         symtab->filename.  Replace symtab->filename refererences by
12277         symtab_to_filename_for_display calls.
12278         (line_info, forward_search_command): Replace symtab->filename
12279         refererences by symtab_to_filename_for_display calls.
12280         (reverse_search_command): Replace symtab->filename refererences by
12281         symtab_to_filename_for_display calls.  New variable filename for it.
12282         * stack.c (frame_info): Likewise.
12283         * symmisc.c: Include source.h.
12284         (dump_objfile, dump_symtab_1, maintenance_print_symbols)
12285         (maintenance_info_symtabs): Replace symtab->filename refererences by
12286         symtab_to_filename_for_display calls.
12287         * symtab.c (iterate_over_some_symtabs): Call
12288         compare_filenames_for_search also with symtab_to_fullname.
12289         (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
12290         symtab->filename refererences by symtab_to_filename_for_display calls.
12291         (find_line_symtab): Replace symtab->filename refererences by
12292         symtab_to_filename_for_display calls.
12293         (file_matches): Replace filename_cmp by compare_filenames_for_search.
12294         (print_symbol_info): Make the last parameter const char *.  New
12295         variable s_filename.  Use it in the function.
12296         (symtab_symbol_info): Make the last_filename variable const char *.
12297         Replace symtab->filename refererences by symtab_to_filename_for_display
12298         calls.
12299         (rbreak_command): New variable fullname.  Use it.  Replace
12300         symtab->filename refererence by symtab_to_filename_for_display call.
12301         * tracepoint.c (set_traceframe_context, trace_find_line_command)
12302         (print_one_static_tracepoint_marker): Replace symtab->filename
12303         refererences by symtab_to_filename_for_display calls.
12304         * tui/tui-source.c (tui_set_source_content): New variables filename and
12305         s_filename.  Replace symtab->filename refererences by this variable.
12306         Replace other symtab->filename refererences by
12307         symtab_to_filename_for_display calls.
12308
12309 2013-02-03  Eldar Gaynetdinov <hal9000ed2k@gmail.com>
12310             Jan Kratochvil  <jan.kratochvil@redhat.com>
12311
12312         Add a new variable that controls a way in which filenames are
12313         displayed.
12314         * NEWS (set filename-display): New entry.
12315         * source.c (filename_display_basename, filename_display_relative)
12316         (filename_display_absolute, filename_display_kind_names)
12317         (filename_display_string, show_filename_display_string)
12318         (symtab_to_filename_for_display): New.
12319         (_initialize_source): Added initialization of 'filename-display'
12320         variable.
12321         * source.h (symtab_to_filename_for_display): Added declaration.
12322         * stack.c (print_frame): Added new variable and calling of a new
12323         function and condition with this variable. Changed third argument of
12324         calling of a function.
12325
12326 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
12327
12328         * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
12329         Rename field reference filename to fullname.
12330         * tui/tui-data.h (struct tui_source_info): Rename field filename to
12331         fullname.  New comment for it.
12332         * tui/tui-source.c (tui_set_source_content): Rename field reference
12333         filename to fullname.  Initialize field by symtab_to_fullname now.
12334         * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
12335         reference filename to fullname.  Use symtab_to_fullname during
12336         comparison.
12337
12338 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
12339
12340         Code cleanup.
12341         * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
12342         (dw2_expand_symtabs_with_fullname): ... here.  Rename parameter
12343         filename to fullname.  Rename variable this_name to this_fullname.
12344         Lowercase FILENAME_CMP call.
12345         (dw2_find_symbol_file): New comment for the returned string.
12346         (dwarf2_gdb_index_functions): Rename the function to
12347         dw2_expand_symtabs_with_fullname.
12348         * psymtab.c (read_psymtabs_with_filename): Rename to ...
12349         (read_psymtabs_with_fullname): ... here.  Rename parameter filename to
12350         fullname.
12351         (psym_functions): Rename the function to read_psymtabs_with_fullname.
12352         * symfile.h (struct quick_symbol_functions): Rename field
12353         expand_symtabs_with_filename to expand_symtabs_with_fullname and its
12354         parameter filename to fullname.  Document returned string meaning for
12355         find_symbol_file.
12356         * symtab.c (find_line_symtab): Rename the called function to
12357         expand_symtabs_with_fullname.
12358
12359 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
12360
12361         Code cleanup.
12362         * breakpoint.c (clear_command): Remove variable is_abs, unify the
12363         call of filename_cmp with compare_filenames_for_search.
12364         * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
12365         is_abs, unify the call of FILENAME_CMP with
12366         compare_filenames_for_search.  New gdb_asserts for real_path and name.
12367         Unify the call of compare_filenames_for_search with FILENAME_CMP.
12368         * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
12369         * symfile.h (struct quick_symbol_functions): Extend the comment for
12370         map_symtabs_matching_filename.
12371         * symtab.c (compare_filenames_for_search): Remove the function comment
12372         relative path requirement.  Handle absolute filenames, with a comment.
12373         (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
12374         FILENAME_CMP with compare_filenames_for_search.  New gdb_asserts for
12375         real_path and name.  Unify the call of compare_filenames_for_search
12376         with FILENAME_CMP.
12377         (iterate_over_symtabs): New gdb_assert on REAL_PATH.
12378
12379 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
12380
12381         Code cleanup.
12382         * breakpoint.c (print_breakpoint_location): Replace bp_location field
12383         source_file references by symtab field references.  Remove variables
12384         sal and fullname.
12385         (momentary_breakpoint_from_master, add_location_to_breakpoint):
12386         (clear_command, say_where): Replace bp_location field source_file
12387         references by symtab field references.
12388         (bp_location_dtor): Remove the source_file reference.
12389         (update_static_tracepoint): Replace bp_location field source_file
12390         references by symtab field references.
12391         (breakpoint_free_objfile): New function.
12392         * breakpoint.h (struct bp_location): Extend the comment for line_number.
12393         Replace the field source_file by field symtab, extend its comment.
12394         (breakpoint_free_objfile): New declaration.
12395         * objfiles.c (free_objfile): Call breakpoint_free_objfile.
12396         * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
12397         field source_file references by symtab field references.
12398
12399 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
12400
12401         Replace xfullpath calls by gdb_realpath calls.
12402         * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
12403         function comment.
12404         * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
12405         Remove it from the iterate_over_some_symtabs call.
12406         (dw2_map_symtabs_matching_filename): Remove parameter full_path.
12407         Remove it from the dw2_map_expand_apply calls, remove a block handling
12408         it.
12409         * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
12410         Remove it from the iterate_over_some_symtabs call.
12411         (partial_map_symtabs_matching_filename): Remove parameter full_path.
12412         Remove it from the partial_map_expand_apply calls, remove a block
12413         handling it.  Drop gdb_realpath call and cleanups from the real_path
12414         handling.
12415         * source.c (openp): Drop the comment part about xfullpath.  Replace
12416         xfullpath calls by gdb_realpath calls.
12417         (find_and_open_source): Replace xfullpath call by gdb_realpath call.
12418         * symfile.h (struct quick_symbol_functions): Remove parameter full_path
12419         from method map_symtabs_matching_filename and its comment.
12420         * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
12421         gdb_realpath call.
12422         * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
12423         remove it also from the function comment, remove a block handling it.
12424         Drop gdb_realpath call and cleanups from the real_path handling.
12425         (iterate_over_symtabs): Drop variable full_path and its use.
12426         * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
12427         * utils.c (xfullpath): Remove.
12428         * utils.h (xfullpath): Remove.
12429
12430 2013-02-01  Andreas Tobler  <andreast@fgznet.ch>
12431
12432         * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
12433         (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
12434         (ALLDEPFILES): Add ppc64-tdep.c.
12435         * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
12436         ppc64-tdep.o to gdb_target_obs.
12437         * ppc64-tdep.h: New file.
12438         * ppc64-tdep.c: New file.
12439         (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
12440         ppc-linux-tdep.c to here.
12441         (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
12442         (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
12443         (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
12444         (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
12445         from ppc-linux-tdep.c to here.
12446         (ppc64_convert_from_func_ptr_addr): Rename from
12447         ppc64_linux_convert_from_func_ptr_addr to
12448         ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
12449         here.
12450         * rs6000-tdep.c:
12451         (read_insn): Move from ppc-linux-tdep.c to here.
12452         (insns_match_pattern, insn_d_field, insn_ds_field): Move
12453         from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
12454         * ppc-linux-tdep.c: Include ppc64-tdep.h.
12455         Removed above functions.
12456         (ppc_linux_init_abi): Adjust.
12457
12458 2013-02-01  Aleksandar Ristovski  <aristovski@qnx.com>
12459
12460         * ada-valprint.c (ada_print_floating): Remove unused 'len'.
12461
12462 2013-02-01  Aleksandar Ristovski  <aristovski@qnx.com>
12463
12464         * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
12465
12466 2013-02-01  Pedro Alves  <palves@redhat.com>
12467
12468         * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
12469         * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
12470
12471 2013-02-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
12472
12473         * elfread.c (elf_symfile_read): Limit separate debug info additions to
12474         files with no separate debug info.
12475         * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
12476         * symfile.c (read_symbols): Call find_separate_debug_file_in_section
12477         only for files with no separate debug info.
12478
12479 2013-01-31  Tom Tromey  <tromey@redhat.com>
12480
12481         * jit.c (jit_program_space_data): Rename from jit_inferior_data;
12482         change type.
12483         (struct jit_program_space_data): Rename from jit_inferior_data.
12484         Update comments.
12485         (get_jit_program_space_data): Rename from get_jit_inferior_data.
12486         Change return type.  Attach data to program space.
12487         (jit_program_space_data_cleanup): Rename from
12488         jit_inferior_data_cleanup; change argument type.
12489         (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
12490         change type.
12491         (jit_register_code): Update.
12492         (jit_update_inferior_cache): Remove.
12493         (jit_breakpoint_deleted): Get jit data from the location's program
12494         space.
12495         (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
12496         'ps_data', change type.
12497         (jit_inferior_init, jit_breakpoint_re_set_internal)
12498         (jit_event_handler): Update.
12499         (free_objfile_data): Get data from objfile's program space.
12500         (_initialize_jit): Update.
12501
12502 2013-01-31  Tom Tromey  <tromey@redhat.com>
12503
12504         PR gdb/13987:
12505         * jit.c (struct jit_inferior_data) <cached_code_address,
12506         jit_breakpoint>: New fields.
12507         (jit_breakpoint_re_set_internal): Fix logging.  Only create
12508         breakpoint if cached address has changed.
12509         (jit_update_inferior_cache, jit_breakpoint_deleted): New
12510         functions.
12511         (_initialize_jit): Register breakpoint deleted observer.
12512
12513 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
12514
12515         * infrun.c (handle_syscall_event): Remove unused gdbarch.
12516         (save_infcall_suspend_state): Ifdef out unused inf.
12517         (restore_infcall_suspend_state): Ifdef out unused inf.
12518         * jit.c (jit_register_code): Remove unused i, b, inf_data.
12519         (jit_frame_sniffer): Remove unused inf_data.
12520
12521 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
12522
12523         * c-exp.y (classify_inner_name): Remove unused type.
12524         * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
12525         in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
12526         need_escape.
12527         (c_get_string): Remove unused kind.
12528         * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
12529
12530 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
12531
12532         * charset.c (intermediate_encoding): Remove unused i.
12533         * completer.c (signal_completer): Remove unused i.
12534         * continuations.c (discard_my_continuations_1): Remove unused
12535         continuation_ptr.
12536         * corelow.c (core_close): Remove unuseD name.
12537         (get_core_siginfo): Remove unused pid.
12538         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
12539         i, cps.
12540         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
12541         (loclist_describe_location): Remove unused first.
12542         * event-top.c (command_line_handler): Remove unused got_eof.
12543         * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
12544         (resize_section_table): Remove unused old_value.
12545         * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
12546         * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
12547         * i386-tdep.c (i386_process_record): Remove unused rex.
12548         * infcmd.c (get_return_value): Remove unused uiout.
12549         * jv-lang.c (type_from_class): Remove unused is_array.
12550         * jv-valprint.c (java_val_print): Remove unused i.
12551         * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
12552         * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
12553         * m2-typeprint.c (m2_print_type): Remove unused code.
12554         * macroexp.c (get_character_constant): Remove unused body_start.
12555         (macro_stringify): Remove unused result.
12556         * objc-lang.c (find_methods): Remove unused gdbarch.
12557         * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
12558         * regcache.c (regcache_cooked_read): Remove unused gdbarch.
12559         * stack.c (print_frame_args): Remove unused summary.
12560         * thread.c (thread_apply_command): Remove unused p.
12561         * valarith.c (value_x_unop): Remove unused mangle_ptr.
12562         * valops.c (search_struct_method): Remove unused skip.
12563         * valprint.c (generic_val_print): Remove unused byte_order.
12564         * varobj.c (varobj_update): Remove unused changed.
12565         * cli/cli-cmds.c (complete_command): Remove unused next_item.
12566         (alias_command): Remove unused c.
12567         * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
12568         * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
12569         format.
12570         (mi_cmd_data_write_memory): Remove unused word_format.
12571         (mi_cmd_data_write_memory_bytes): Remove unused r.
12572         * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
12573         p_start, p_end.
12574         * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
12575         * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
12576         line_width.
12577
12578 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
12579
12580         * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
12581         * symtab.c (iterate_over_symtabs): Remove unused s.
12582         (find_pc_sect_symtab): Remove unused pspAce.
12583         (find_pc_sect_line): Remove unused alt_symtab.
12584         (find_pcs_for_symtab_line): Remove unused ix, previous_function.
12585         (completion_list_add_name): Remove unused newsize.
12586
12587 2013-01-31  Tom Tromey  <tromey@redhat.com>
12588
12589         PR c++/14998:
12590         * dwarf2read.c (read_tag_ptr_to_member_type): Handle
12591         TYPE_CODE_FUNC.
12592
12593 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
12594
12595         * target.c (target_read_string): Remove unused origlen.
12596
12597 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
12598
12599         * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
12600         * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
12601         * ax-general.c (ax_print): Remove unused is_float.
12602         * blockframe.c (block_innermost_frame): Remove unused start, end.
12603         * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
12604
12605 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
12606
12607         * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
12608         (svr4_read_so_list): Remove unused lmo.
12609         * solib-target.c (solib_target_relocate_section_addresses): Remove
12610         unused flags.
12611
12612 2013-01-30  Tom Tromey  <tromey@redhat.com>
12613
12614         * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
12615
12616 2013-01-30  Tom Tromey  <tromey@redhat.com>
12617
12618         * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
12619         * utils.c (gnu_debuglink_crc32): Remove.
12620         * utils.h (gnu_debuglink_crc32): Don't declare.
12621
12622 2013-01-30  Tom Tromey  <tromey@redhat.com>
12623
12624         * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
12625         (read_structure_type, read_enumeration_type): Remove cast.
12626
12627 2013-01-30  Tom Tromey  <tromey@redhat.com>
12628
12629         * dwarf2read.c (read_namespace_type): Remove cast.
12630         (read_typedef): Likewise.
12631
12632 2013-01-29  Tom Tromey  <tromey@redhat.com>
12633
12634         * dwarf2read.c (free_dwo_file): Remove assert.
12635
12636 2013-01-29  Tom Tromey  <tromey@redhat.com>
12637
12638         * value.c (deprecated_set_value_modifiable): Remove.
12639         * value.h (deprecated_set_value_modifiable): Remove.
12640
12641 2013-01-28  Doug Evans  <dje@google.com>
12642
12643         * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
12644         to addresses from dwo files.
12645
12646 2013-01-25  Siva Chandra Reddy  <sivachandra@google.com>
12647
12648         * valops.c (find_overload_match): Remove unused argument 'lax'.
12649         * value.h: Remove unused argument 'lax' from the declaration of
12650         find_overload_match.
12651         * eval.c (value_subexp_standard): Do not pass a 'lax' argument
12652         to find_overload_match.
12653         * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
12654         argument to find_overload_match.
12655
12656 2013-01-25  Tom Tromey  <tromey@redhat.com>
12657
12658         * dwarf2read.c (processing_has_namespace_info): Remove.
12659         (struct dwarf2_cu) <processing_has_namespace_info>: New field.
12660         (process_die, read_func_scope, dwarf2_start_symtab)
12661         (new_symbol_full): Update.
12662
12663 2013-01-25  Tom Tromey  <tromey@redhat.com>
12664
12665         * cp-namespace.c (cp_set_block_scope): Remove.
12666         * cp-support.h (cp_set_block_scope): Remove.
12667         * dbxread.c: Include block.h.
12668         (cp_set_block_scope): New function.
12669         (process_one_symbol): Update.
12670         * dwarf2read.c (read_func_scope): Use block_set_scope.
12671
12672 2013-01-25  Pedro Alves  <palves@redhat.com>
12673
12674         * remote.c (add_current_inferior_and_thread): Tweak comment.
12675
12676 2013-01-25  Tom Tromey  <tromey@redhat.com>
12677
12678         * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
12679         (cp_add_using_directive): Add 'copy_names' argument.
12680         * cp-support.h (cp_add_using_directive): Update.
12681         (struct using_direct) <import_src, import_dest, alias,
12682         declaration>: Now const.
12683         * dwarf2read.c (read_import_statement): Use obconcat.
12684         Don't copy names passed to cp_add_using_directive.
12685
12686 2013-01-25  Tom Tromey  <tromey@redhat.com>
12687
12688         * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
12689
12690 2013-01-25  Pedro Alves  <palves@redhat.com>
12691
12692         * remote.c (stop_reply_extract_thread): New.
12693         (add_current_inferior_and_thread): New parameter 'wait_status'.
12694         Handle it.
12695         (remote_start_remote): Pass wait status to
12696         add_current_inferior_and_thread.
12697         (extended_remote_run): Update comment.
12698         (extended_remote_create_inferior_1): Pass wait status to
12699         add_current_inferior_and_thread.
12700
12701 2013-01-25  Andrew Burgess  <aburgess@broadcom.com>
12702             Ulrich Weigand  <uweigand@de.ibm.com>
12703
12704         * valarith.c (value_vector_widen): New function for replicating a
12705         scalar into a vector.
12706         (value_binop): Use value_vector_widen to widen scalar to vector
12707         rather than casting, this better matches gcc C behaviour.
12708         * valops.c (value_casst): Update logic for casting between vector
12709         types, and for casting from scalar to vector, try to match gcc C
12710         behaviour.
12711         * value.h (value_vector_widen): Declare.
12712         * opencl-lang.c (opencl_value_cast): New opencl specific casting
12713         function, handle special case for casting scalar to vector.
12714         (opencl_relop): Use opencl_value_cast.
12715         (evaluate_subexp_opencl): Use opencl_value_cast instead of
12716         value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
12717         in order to use opencl_value_cast.
12718
12719 2013-01-25  Yao Qi  <yao@codesourcery.com>
12720
12721         * event-loop.c: Include "queue.h".
12722         (gdb_event_p): New typedef.
12723         (DECLARE_QUEUE_P): Use.
12724         (DEFINE_QUEUE_P): Use.
12725         (async_queue_event): Remove.
12726         (gdb_event_xfree): New.
12727         (initialize_event_loop): New.
12728         (process_event): Use QUEUE macros.
12729         (event_queue): Remove.
12730         (gdb_wait_for_event): Caller update.
12731         (check_async_event_handlers): Likewise.
12732         (poll_timers): Likewise.
12733         * event-loop.h (initialize_event_loop): Declare.
12734         * event-loop.c (gdb_event_xfree): New.
12735         * top.c (gdb_init): Call initialize_event_loop.
12736
12737 2013-01-25  Yao Qi  <yao@codesourcery.com>
12738
12739         * event-loop.c (async_queue_event): Remove one parameter
12740         'position'.  Remove code handling 'position' == TAIL.
12741         (gdb_wait_for_event): Caller update.
12742         (check_async_event_handlers): Caller update.
12743         (poll_timers): Caller update.
12744         * event-loop.h (enum queue_position): Remove.
12745
12746 2013-01-25  Maxim Kuvyrkov  <maxim@kugelworks.com>
12747
12748         * MAINTAINERS: Update my email.
12749
12750 2013-01-25  Yao Qi  <yao@codesourcery.com>
12751
12752         * main.c (print_gdb_help): Remove "--epoch" from the help
12753         message.
12754
12755 2013-01-24  Ulrich Weigand  <uweigand@de.ibm.com>
12756
12757         * symtab.c (skip_prologue_using_sal): Consider a file
12758         change the same as an increased line number
12759
12760 2013-01-24  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
12761
12762         * MAINTAINERS (Write After Approval): Add myself to the list.
12763
12764 2013-01-24  Tom Tromey  <tromey@redhat.com>
12765
12766         * ada-lang.h (ada_decode_symbol): Make return type const.
12767         * ada-lang.c (ada_decode_symbol): Likewise.
12768
12769 2013-01-23  Doug Evans  <dje@google.com>
12770
12771         * linespec.c (find_linespec_symbols): Make static.
12772
12773 2013-01-23  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
12774
12775         * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
12776         type on float conversion for complex type.
12777
12778 2013-01-23  Siva Chandra Reddy  <sivachandra@google.com>
12779
12780         Add a new class gdb.Architecture which exposes GDB's
12781         internal representation of architecture via GDB Python API.
12782         * Makefile.in: Add entries corresponding to the new file
12783         python/py-arch.c.
12784         * NEWS (Python Scripting): Add entries for the new class
12785         gdb.Architecture and the new method gdb.Frame.architecture.
12786         * python/py-arch.c: Implement gdb.Architecture class.
12787         * python/py-frame.c (frapy_arch): Implement the method
12788         gdb.Frame.architecture().
12789         (frame_object_methods): Add 'architecture' to the method table.
12790         * python/python-internal.h: Add declarations of new utility
12791         functions.
12792         * python/python.c (_initialize_python): Initialize
12793         gdb.Architecture class.
12794
12795 2013-01-23  Doug Evans  <dje@google.com>
12796
12797         Work around binutils/15021.
12798         * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
12799         type_unit_group out of union s.  All uses updated.
12800         (read_index_from_section): Watch for index version 8.
12801         (follow_die_sig): If using .gdb_index version <= 7, record the TU as
12802         an imported symtab.
12803         (write_psymtabs_to_index): Increment version number to 8.
12804
12805 2013-01-22  Pedro Alves  <palves@redhat.com>
12806
12807         * annotate.c (breakpoint_changed): Skip if breakpoint is not
12808         user-visible.
12809
12810 2013-01-22  Pedro Alves  <palves@redhat.com>
12811
12812         * annotate.c (annotate_breakpoints_changed): Rename to ...
12813         (annotate_breakpoints_invalid): ... this.  Make static.
12814         (breakpoint_changed): Adjust.
12815         (_initialize_annotate): Always install the observers.  Install a
12816         "breakpoint_created" observer.
12817         * annotate.h (annotate_breakpoints_changed): Delete declaration.
12818         * breakpoint.c (set_breakpoint_condition)
12819         (breakpoint_set_commands, do_map_commands_command)
12820         (init_raw_breakpoint, clear_command, set_ignore_count)
12821         (enable_breakpoint_disp): No longer call
12822         annotate_breakpoints_changed.
12823
12824 2013-01-22  Pedro Alves  <palves@redhat.com>
12825
12826         * annotate.c: Include "inferior.h".
12827         (frames_invalid_emitted)
12828         (breakpoints_invalid_emitted): New globals.
12829         (async_background_execution_p): New function.
12830         (annotate_breakpoints_changed, annotate_frames_invalid): Skip
12831         emitting the annotation if it has already been emitted.
12832         (annotate_display_prompt): New function.
12833         * annotate.h (annotate_display_prompt): New declaration.
12834         * event-top.c: Include annotate.h.
12835         (display_gdb_prompt): Call annotate_display_prompt.
12836
12837 2013-01-22  Pedro Alves  <palves@redhat.com>
12838
12839         * annotate.c (ignore_count_changed): Delete.
12840         (annotate_breakpoints_changed): Don't clear ignore_count_changed.
12841         (annotate_ignore_count_change): Delete.
12842         (annotate_stopped): Don't emit a delayed breakpoints-changed
12843         annotation.
12844         * annotate.h (annotate_ignore_count_change): Delete.
12845         * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
12846         annotate_ignore_count_change.
12847
12848 2013-01-22  Tom Tromey  <tromey@redhat.com>
12849
12850         * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
12851         require_rvalue for a register location.
12852
12853 2013-01-21  Marc Khouzam  <marc.khouzam@ericsson.com>
12854
12855         * breakpoint.c (print_one_breakpoint_location): Add MI
12856         field 'thread-groups' when printing a breakpoint.
12857         (output_thread_groups): New function.
12858
12859 2013-01-21  Siva Chandra Reddy  <sivachandra@google.com>
12860
12861         * python/lib/gdb/commands/explore.py
12862         (CompoundExplorer.explore_expr): Correct the name of a method
12863         being invoked.
12864         (ExploreTypeCommand.invoke): Add a missing 'return'.
12865
12866 2013-01-21  Tom Tromey  <tromey@redhat.com>
12867
12868         * gdb_obstack.h (obconcat): Move declaration here, from...
12869         * symfile.h (obconcat): ... here.
12870         * gdb_obstack.c: New file.
12871         (obconcat): Move from...
12872         * symfile.c (obconcat): ... here.
12873         * Makefile.in (SFILES): Add gdb_obstack.c.
12874         (COMMON_OBS): Add gdb_obstack.o.
12875
12876 2013-01-21  Tom Tromey  <tromey@redhat.com>
12877
12878         * symfile.h (obsavestring): Don't declare.
12879         * symfile.c (obsavestring): Remove.
12880         * ada-exp.y: Use obstack_copy0, not obsavestring.
12881         * ada-lang.c: Use obstack_copy0, not obsavestring.
12882         * coffread.c: Use obstack_copy0, not obsavestring.
12883         * cp-namespace.c: Use obstack_copy0, not obsavestring.
12884         * dbxread.c: Use obstack_copy0, not obsavestring.
12885         * dwarf2read.c: Use obstack_copy0, not obsavestring.
12886         * jit.c: Use obstack_copy0, not obsavestring.
12887         * mdebugread.c: Use obstack_copy0, not obsavestring.
12888         * psymtab.c: Use obstack_copy0, not obsavestring.
12889         * stabsread.c: Use obstack_copy0, not obsavestring.
12890         * xcoffread.c: Use obstack_copy0, not obsavestring.
12891
12892 2013-01-21  Tom Tromey  <tromey@redhat.com>
12893
12894         * dwarf2read.c (fixup_go_packaging): Save package name
12895         on objfile obstack.
12896         * gdbtypes.c (init_type): Don't copy name.
12897
12898 2013-01-21  Tom Tromey  <tromey@redhat.com>
12899
12900         * dwarf2read.c (struct partial_die_info) <name, scope>: Now
12901         const.
12902         (struct attribute) <u.str>: Now const.
12903         (struct fnfieldlist) <name>: Now const.
12904         (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
12905         (partial_die_parent_scope): Make return type const.
12906         (partial_die_full_name, add_partial_symbol): Update.
12907         (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
12908         'name' const.
12909         (find_file_and_directory): Make 'name' and 'comp_dir' const.
12910         (read_file_scope, read_func_scope, dwarf2_add_field)
12911         (dwarf2_add_member_fn, read_structure_type)
12912         (process_enumeration_scope, read_array_type, read_module_type)
12913         (read_base_type, read_subrange_type): Update.
12914         (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
12915         (new_symbol_full, guess_full_die_structure_name): Update.
12916         (dwarf2_canonicalize_name): Return const type.  Make 'name' const.
12917         (dwarf2_name): Return const type.
12918         (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
12919         const.
12920
12921 2013-01-21  Tom Tromey  <tromey@redhat.com>
12922
12923         * gdbtypes.c (init_type): Make 'name' const.
12924         * gdbtypes.h (init_type): Update.
12925
12926 2013-01-21  Tom Tromey  <tromey@redhat.com>
12927
12928         * buildsym.c (patch_subfile_names): Use set_last_source_file.
12929         (start_symtab): Make 'name' and 'dirname' const.  Use
12930         set_last_source_file.
12931         (restart_symtab, reset_symtab_globals): Use set_last_source_file.
12932         (last_source_file): Define.  Now static.
12933         (set_last_source_file, get_last_source_file): New functions.
12934         * buildsym.h (last_source_file): Don't declare.
12935         (start_symtab): Update.
12936         (set_last_source_file, get_last_source_file): Declare.
12937         * coffread.c (complete_symtab): Use set_last_source_file.
12938         (coff_end_symtab): Likewise.
12939         (coff_symtab_read): Use set_last_source_file, get_last_source_file.
12940         * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
12941         set_last_source_file.
12942         (process_one_symbol): Use get_last_source_file.
12943         * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
12944         (psymtab_to_symtab_1): Use get_last_source_file.
12945         * xcoffread.c (process_linenos): Use get_last_source_file.
12946         (complete_symtab): Use set_last_source_file.
12947         (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
12948         (scan_xcoff_symtab): Use set_last_source_file.
12949
12950 2013-01-21  Tom Tromey  <tromey@redhat.com>
12951
12952         * symtab.c (struct demangled_name_entry) <mangled>: Now const.
12953         (symbol_set_names): Remove casts.  Handle field const-ness.
12954
12955 2013-01-21  Tom Tromey  <tromey@redhat.com>
12956
12957         * dwarf2read.c (new_symbol_full): Remove cast.
12958         * symtab.c (symbol_set_demangled_name): Make 'name' const.
12959         * symtab.h (symbol_set_demangled_name): Update.
12960
12961 2013-01-21  Tom Tromey  <tromey@redhat.com>
12962
12963         * main.c (captured_main): Call bfd_init.
12964
12965 2013-01-21  Tom Tromey  <tromey@redhat.com>
12966
12967         * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
12968         * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
12969         * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
12970         * NEWS: Update.
12971
12972 2013-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
12973
12974         * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
12975
12976 2013-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
12977
12978         Fix gdb.fortran/common-block.exp crash in PIE mode.
12979         * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
12980         LOC_COMMON_BLOCK.
12981         * f-valprint.c (info_common_command_for_block): Expect
12982         LOC_COMMON_BLOCK in gdb_assert.
12983         * symtab.h (struct general_symbol_info): Update comment for the
12984         common_block member.
12985         (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
12986         (enum address_class): New member LOC_COMMON_BLOCK.
12987
12988 2013-01-18  David Blaikie  <dblaikie@gmail.com>
12989
12990         * MAINTAINERS (Write After Approval): Add "David Blaikie".
12991
12992 2013-01-18  Tom Tromey  <tromey@redhat.com>
12993
12994         PR c++/14999:
12995         * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
12996         Call require_rvalue.
12997
12998 2013-01-18  Yao Qi  <yao@codesourcery.com>
12999
13000         * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
13001         (dbx_read_symtab): New declaration.
13002         (dbx_psymtab_to_symtab): Delete.
13003         (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
13004         Rename parameter PST to SELF.  Exchanged two parameters.
13005         (start_psymtab): Caller update.
13006         * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
13007         (dwarf2_read_symtab): New declaration.
13008         (dwarf2_psymtab_to_symtab): Delete.
13009         (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
13010         Rename parameter PST to SELF.  Exchanged two parameters.
13011         (create_partial_symtab): Caller update.
13012         * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
13013         (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
13014         Rename parameter PST to SELF.  Exchanged two parameters.
13015         (parse_partial_symbols, new_psymtab): Caller update.
13016         * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
13017         two parameters.
13018         * psymtab.c (psymtab_to_symtab): Caller update.
13019         * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
13020         (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
13021         Rename parameter PST to SELF.  Exchanged two parameters.
13022         (xcoff_start_psymtab): Caller update.
13023
13024 2013-01-18  Yao Qi  <yao@codesourcery.com>
13025
13026         * infrun.c (proceed): Rename local variable 'oneproc' to
13027         'force_step'.
13028
13029 2013-01-17  Doug Evans  <dje@google.com>
13030
13031         * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
13032         (dw2_build_type_unit_groups): Delete.  All uses updated.
13033
13034         * symtab.h (struct symbol_search): Add comment.
13035
13036 2013-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
13037
13038         * symtab.c (compare_filenames_for_search): New comment for
13039         HAS_DRIVE_SPEC.
13040
13041 2013-01-17  Tom Tromey  <tromey@redhat.com>
13042
13043         * cp-abi.c (cp_abi_completer): Fix typo in assignment.
13044
13045 2013-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
13046
13047         * symtab.c (iterate_over_some_symtabs): New variable cleanups,
13048         initialize it by existing make_cleanup.  Call new do_cleanups.
13049
13050 2013-01-17  Tom Tromey  <tromey@redhat.com>
13051
13052         * cp-abi.c (cp_abi_completer): New function.
13053         (_initialize_cp_abi): Set completer for "set cp-abi".
13054
13055 2013-01-17  Tom Tromey  <tromey@redhat.com>
13056
13057         * mem-break.c: Remove obsolete comment.
13058         * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
13059
13060 2012-01-17  Sanjoy Das <sanjoy@playingwithpointers.com>
13061
13062         * jit.c (jit_reader_load_command): Interpret the jit reader name
13063         as an absolute path if it begins with a forward slash.
13064
13065 2012-01-17  Sanjoy Das <sanjoy@playingwithpointers.com>
13066
13067         PR gdb/14550
13068
13069         * jit.c (finalize_symtab): Ensure that only the global block has a
13070         NULL superblock.
13071
13072 2013-01-17  Pedro Alves  <palves@redhat.com>
13073
13074         * acinclude.m4: Include ../config/plugins.m4,
13075         ../config/largefile.m4 and ../config/lead-dot.m4.  Add comments.
13076         * Makefile.in (aclocal_m4_deps): Update.
13077         * aclocal.m4: Renegerate.
13078
13079 2013-01-16  Doug Evans  <dje@google.com>
13080
13081         * contrib/cc-with-tweaks.sh: Add references to Fission docs.
13082
13083 2013-01-16  Pedro Alves  <palves@redhat.com>
13084             Tom Tromey  <tromey@redhat.com>
13085
13086         PR cli/7221:
13087         * NEWS: Add "catch signal".
13088         * breakpoint.c (base_breakpoint_ops): No longer static.
13089         (bpstat_explains_signal): New function.
13090         (init_catchpoint): No longer static.
13091         (base_breakpoint_explains_signal): New function.
13092         (base_breakpoint_ops): Initialize new field.
13093         * breakpoint.h (enum bpstat_signal_value): New.
13094         (struct breakpoint_ops) <explains_signal>: New field.
13095         (bpstat_explains_signal): Remove macro, declare as function.
13096         (base_breakpoint_ops, init_catchpoint): Declare.
13097         * break-catch-sig.c: New file.
13098         * inferior.h (signal_catch_update): Declare.
13099         * infrun.c (signal_catch): New global.
13100         (handle_syscall_event): Update for change to
13101         bpstat_explains_signal.
13102         (handle_inferior_event): Likewise.  Always handle random signals
13103         via bpstats.
13104         (signal_cache_update): Check signal_catch.
13105         (signal_catch_update): New function.
13106         (_initialize_infrun): Initialize signal_catch.
13107         * Makefile.in (SFILES): Add break-catch-sig.c.
13108         (COMMON_OBS): Add break-catch-sig.o.
13109
13110 2013-01-16  Tom Tromey  <tromey@redhat.com>
13111
13112         * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
13113         (print_one_catch_solib, print_one_catch_syscall)
13114         (print_one_catch_exec, print_one_exception_catchpoint): Emit
13115         "catch-type".
13116
13117 2013-01-16  Yao Qi  <yao@codesourcery.com>
13118
13119         * printcmd.c (current_display_number): Make it static.
13120
13121 2013-01-16  Yao Qi  <yao@codesourcery.com>
13122
13123         * infcmd.c (step_once): Don't check '!single_inst' as it was
13124         checked before.
13125
13126 2013-01-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
13127
13128         * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
13129
13130 2013-01-14  Tom Tromey  <tromey@redhat.com>
13131
13132         * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
13133         set command.
13134         * command.h (add_setshow_string_noescape_cmd): Update.
13135         * corefile.c (set_gnutarget_command): Remove trailing whitespace.
13136         (complete_set_gnutarget): New function.
13137         (_initialize_core): Set the "set gnutarget" completer.
13138
13139 2013-01-14  Tom Tromey  <tromey@redhat.com>
13140
13141         PR symtab/14442:
13142         * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
13143         (c_type_print_modifier): Likewise.
13144         * dwarf2read.c (read_tag_restrict_type): New function.
13145         (read_type_die_1): Handle DW_TAG_restrict_type.
13146         * gdbtypes.c (make_restrict_type): New function.
13147         (recursive_dump_type): Handle TYPE_RESTRICT.
13148         * gdbtypes.h (enum type_flag_values): Renumber.
13149         (enum type_instance_flag_value): Add
13150         TYPE_INSTANCE_FLAG_RESTRICT.
13151         (TYPE_RESTRICT): New macro.
13152         (make_restrict_type): Declare.
13153
13154 2013-01-14  Tom Tromey  <tromey@redhat.com>
13155
13156         PR symtab/14931:
13157         * psymtab.c (struct psymtab_state): New.
13158         (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
13159         functions.
13160         * psympriv.h (make_cleanup_discard_psymtabs): Declare.
13161         * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
13162
13163 2013-01-14  Richard Sharman  <richard_sharman@mitel.com>
13164             Pedro Alves  <palves@redhat.com>
13165
13166         PR remote/14786
13167
13168         * remote.c (remote_threads_info): Make a copy of the reply from
13169         qfThreadInfo and use that instead of rs->buf.
13170
13171 2013-01-14  Yao Qi  <yao@codesourcery.com>
13172
13173         * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
13174         (dbx_psymtab_to_symtab): Likewise.
13175         * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
13176         * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
13177         * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
13178
13179 2013-01-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
13180
13181         * parse.c (parse_exp_in_context): New variable inner_chain.  Call
13182         make_cleanup_restore_current_language.  Call set_language.  Move
13183         OLD_CHAIN and INNER_CHAIN cleanups.
13184         * utils.c (do_restore_current_language)
13185         (make_cleanup_restore_current_language): New functions.
13186         * utils.h (make_cleanup_restore_current_language): New declaration.
13187
13188 2013-01-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
13189
13190         * source.c (symtab_to_fullname): Apply rewrite_source_path also for
13191         non-existing files.
13192
13193         * source.c (symtab_to_fullname): Do not prepend DIRNAME for
13194         non-existing files if FILENAME is already absolute.
13195
13196 2013-01-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
13197
13198         * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
13199         fputs_filtered.  Append trailing newline.
13200
13201 2013-01-11  Yao Qi  <yao@codesourcery.com>
13202             Stan Shebs  <stan@codesourcery.com>
13203
13204         * psymtab.c (init_psymbol_list): Clarify the comment.
13205
13206 2013-01-11  Yao Qi  <yao@codesourcery.com>
13207
13208         * breakpoint.c (print_one_breakpoint_location): Remove dead code.
13209         (update_dprintf_command_list): Assert that 'printf_line' is
13210         non-null.  Remove condition check.
13211
13212 2013-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
13213
13214         Code cleanup.
13215         * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
13216         type const char *.
13217         * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
13218         const char *.
13219         * tui/tui-source.h (tui_source_is_displayed): Likewise.
13220
13221 2013-01-09  Anthony Green  <green@moxielogic.com>
13222
13223         * cp-abi.c (cplus_print_vtable): Don't return value from void
13224         function.
13225         * ada-lang.c (re_set_catch_assert): Ditto.
13226
13227 2013-01-09  Doug Evans  <dje@google.com>
13228
13229         * symfile.h (quick_symbol_functions): Delete member
13230         pre_expand_symtabs_matching.  All uses removed.
13231         * dwarf2read.c (dw2_lookup_symbol): Implement.
13232         (dw2_do_expand_symtabs_matching): Delete.
13233         (dw2_pre_expand_symtabs_matching): Delete.
13234         (struct dw2_symtab_iterator): New type.
13235         (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
13236         (dw2_expand_symtabs_for_function): Rewrite.
13237         (dwarf2_gdb_index_functions): Update.
13238         * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
13239         (psym_functions): Update.
13240
13241 2013-01-09  Tom Tromey  <tromey@redhat.com>
13242
13243         * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
13244         * configure: Rebuild.
13245         * configure.ac: Add somread.o to the build if BFD has SOM
13246         support.
13247         * somread.c: Include som/aout.h, not syms.h.
13248         (som_symtab_read): Use som_external_symbol_dictionary_record.
13249         Unpack records manually.
13250         (_initialize_somread): Declare.
13251
13252 2012-01-08  Mike Frysinger  <vapier@gentoo.org>
13253
13254         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
13255         Cast return_address to 64bits.
13256
13257 2013-01-08  Hui Zhu  <hui_zhu@mentor.com>
13258
13259         * printcmd.c: Remove define of function output_command.
13260         * tracepoint.c: Remove extern of function output_command.
13261         * valprint.h: (output_command): New extern.
13262
13263 2013-01-07  Tom Tromey  <tromey@redhat.com>
13264
13265         * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
13266         Remove.
13267         (objc_language_defn): Use c_printchar, c_printstr,
13268         c_emit_char.
13269
13270 2013-01-07  Tom Tromey  <tromey@redhat.com>
13271
13272         PR cli/7719:
13273         * NEWS: Update.
13274         * ada-valprint.c (printstr, print_field_values): Remove
13275         "inspect_it" code.
13276         * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
13277         code.
13278         * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
13279         code.
13280         * m2-lang.c (m2_printstr): Remove "inspect_it" code.
13281         * main.c (captured_main): Remove "epoch" argument.
13282         * objc-lang.c (objc_printstr): Remove "inspect_it" code.
13283         * p-lang.c (pascal_printstr): Remove "inspect_it" code.
13284         * p-valprint.c (pascal_object_print_value_fields): Remove
13285         "inspect_it" code.
13286         * printcmd.c (print_command_1): Remove 'inspect' argument.
13287         (print_command, call_command): Update.
13288         (inspect_command): Remove.
13289         (_initialize_printcmd): Make "inspect" an alias for "print".
13290         * top.c (epoch_interface): Remove.
13291         * top.h (epoch_interface): Remove.
13292         * valprint.c (user_print_options): Update.
13293         (print_converted_chars_to_obstack): Remove "inspect_it" code.
13294         * valprint.h (struct value_print_options) <inspect_it>: Remove
13295         field.
13296
13297 2013-01-04  Tom Tromey  <tromey@redhat.com>
13298
13299         * valprint.h (read_string): Add 'extern'.
13300
13301 2013-01-07  Joel Brobecker  <brobecker@adacore.com>
13302
13303         * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
13304         used to decide whether to define darwin_read_dyld_info or not.
13305
13306 2013-01-03  Pierre Muller  <muller@sourceware.org>
13307
13308         * main.c (relocate_gdb_directory): Avoid calling stat function
13309         if DIR is empty.
13310
13311 2013-01-03  Yao Qi  <yao@codesourcery.com>
13312
13313         * psymtab.c (fixup_psymbol_section): Update declaration.
13314         (fixup_psymbol_section): Remove code returning value.
13315
13316 2013-01-03  Yao Qi  <yao@codesourcery.com>
13317
13318         * symtab.h: Remove some out of date comments.
13319          (enum exception_event_kind): Move it ...
13320         * breakpoint.c: ... here.
13321
13322 2013-01-02  Iain Sandoe  <developer@sandoe-acoustics.co.uk>
13323
13324         PR gdb/14405
13325         * darwin-nat.c (darwin_read_dyld_info): Only build if
13326         TASK_DYLD_INFO_COUNT is defined.
13327         (darwin_xfer_partial): Call darwin_read_dyld_info only if
13328         TASK_DYLD_INFO_COUNT is defined.
13329
13330 2013-01-02  Tom Tromey  <tromey@redhat.com>
13331
13332         * symfile.h (struct ecoff_debug_hack): Remove.
13333         * objfiles.c: Don't include mdebugread.h.
13334
13335 2013-01-02  Tom Tromey  <tromey@redhat.com>
13336
13337         * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
13338         * configure.ac: Check for Mach-O support in BFD.  Update
13339         CONFIG_OBS.
13340         * configure: Rebuild.
13341
13342 2013-01-02  Tom Tromey  <tromey@redhat.com>
13343
13344         * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
13345         * configure.ac: Use GDB_AC_CHECK_BFD.
13346         * configure: Rebuild.
13347
13348 2013-01-01  Maxim Kuvyrkov  <maxim.kuvyrkov@gmail.com>
13349
13350         * MAINTAINERS: Update my email.
13351
13352 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
13353
13354         * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
13355
13356 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
13357
13358         * rs6000-nat.c (bss_data_overlap): New function.
13359         (vmap_symtab): Use it to adjust the .bss section's offset.
13360
13361 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
13362
13363         Update year range in copyright notice of all files.
13364
13365 2013-01-01, 13  Joel Brobecker  <brobecker@adacore.com>
13366
13367         * top.c (print_gdb_version): Update copyright year.
13368
13369 For older changes see ChangeLog-2012.
13370 \f
13371 Local Variables:
13372 mode: change-log
13373 left-margin: 8
13374 fill-column: 74
13375 version-control: never
13376 coding: utf-8
13377 End: