ca2ca0e037823a397701db281f6d885fd0c654d6
[external/binutils.git] / gdb / ChangeLog
1 2013-12-02  Pedro Alves  <palves@redhat.com>
2
3         * ctf.c (ctf_start): Use S_IRGRP, S_IXGRP, S_IXOTH
4         unconditionally.
5
6 2013-12-02  Pedro Alves  <pedro@codesourcery.com>
7             Maciej W. Rozycki  <macro@codesourcery.com>
8
9         * remote.c (putpkt_for_catch_errors): Remove function.
10         (remote_kill): Handle TARGET_CLOSE_ERROR from the kill packet
11         gracefully.
12
13 2013-12-02  Pedro Alves  <palves@redhat.com>
14
15         PR remote/15974
16         * remote-notif.c (handle_notification): Return early if no
17         notification is found.
18
19 2013-12-02  Joel Brobecker  <brobecker@adacore.com>
20
21         * common/filestuff.c (fdwalk): Add "defined(RLIMIT_NOFILE)"
22         preprocessor check.
23
24 2013-12-02  Joel Brobecker  <brobecker@adacore.com>
25
26         * Makefile.in (HFILES_NO_SRCDIR): Remove "common/gdb_dirent.h".
27
28 2013-12-02  Joel Brobecker  <brobecker@adacore.com>
29
30         * Makefile.in (HFILES_NO_SRCDIR): Remove "common/gdb_stat.h".
31         * ctf.c (ctf_start): Remove obsolete comment.
32
33 2013-12-02  Joel Brobecker  <brobecker@adacore.com>
34
35         * Makefile.in (HFILES_NO_SRCDIR): Remove "common/gdb_string.h".
36
37 2013-11-30  Doug Evans  <xdje42@gmail.com>
38
39         * auto-load.h (script_language): New members name, auto_load_enabled.
40         Add missing comments on struct members.
41         (auto_load_objfile_script): Delete.
42         * auto-load.c: #include "cli/cli-cmds.h".
43         (auto_load_gdb_scripts_enabled): New function.
44         (script_language_gdb): Update, add new members.
45         (source_gdb_script_for_objfile): Simplify, auto-load safe-checking
46         and call to maybe_add_script moved to caller.
47         (auto_load_objfile_script_1): Auto-load safe-checking and
48         call to maybe_add_script moved here.
49         (auto_load_objfile_script): Make static.  Early exit if support for
50         scripting language hasn't been compiled in, or auto-loading has been
51         disabled.
52         (source_section_scripts): Argument "source_name" renamed to
53         "section_name".  All uses updated.  Replace uses of AUTO_SECTION_NAME
54         with section_name.  Skip loading script if support for scripting
55         language hasn't been compiled in, or auto-loading has been disabled.
56         Call language->source_script_for_objfile instead of calling
57         source_python_script_for_objfile directly.
58         (load_auto_scripts_for_objfile): Update.
59         * python/py-auto-load.c: Delete #include "cli/cli-cmds.h".
60         (gdbpy_load_auto_script_for_objfile): Delete.
61         (auto_load_python_scripts_enabled): New function.
62         (script_language_python): Update, add new members.
63         (gdbpy_script_language_defn): New function.
64         * python/python.h (gdbpy_load_auto_scripts_for_objfile): Delete.
65         (gdbpy_script_language_defn): Declare.
66
67         * auto-load.c (AUTO_SECTION_NAME): Moved here and renamed from
68         py-auto-load.c, GDBPY_AUTO_SECTION_NAME.
69         (source_section_scripts): Moved here from py-auto-load.c.
70         (auto_load_section_scripts): Ditto.
71         * python/py-auto-load.c (GDBPY_AUTO_SECTION_NAME): Moved to
72         auto-load.c, renamed AUTO_SECTION_NAME.
73         (source_section_scripts, auto_load_section_scripts): Moved to
74         auto-load.c.
75
76 2013-11-30  Yao Qi  <yao@codesourcery.com>
77
78         * remote.c (getpkt_or_notif_sane_1): Fix typo "checksm".
79
80 2013-11-29  Sergio Durigan Junior  <sergiodj@redhat.com>
81
82         * gdbarch.sh: Remove include of "gdb_string.h", replace by
83         <string.h>.
84
85 2013-11-29  Doug Evans  <xdje42@gmail.com>
86
87         * python/py-auto-load.c (source_section_scripts): Move comment to
88         more relevant location.
89
90         Whitespace cleanup.
91         * python/py-breakpoint.c: Remove trailing whitespace.
92         * python/py-cmd.c: Ditto.
93         * python/py-evts.c: Ditto.
94         * python/py-finishbreakpoint.c: Ditto.
95         * python/py-frame.c: Ditto.
96         * python/py-function.c: Ditto.
97         * python/py-inferior.c: Ditto.
98         * python/py-infthread.c: Ditto.
99         * python/py-param.c: Ditto.
100         * python/py-prettyprint.c: Ditto.
101         * python/py-symbol.c: Ditto.
102         * python/py-type.c: Ditto.
103         * python/py-utils.c: Ditto.
104         * python/py-value.c: Ditto.
105         * python/python-internal.h: Ditto.
106         * python/python.c: Ditto.
107
108 2013-11-29  Pedro Alves  <palves@redhat.com>
109
110         * unwind_stop_reasons.def (UNWIND_NULL_ID): Update comment.
111
112 2013-11-29  Pedro Alves  <palves@redhat.com>
113
114         * breakpoint.c (build_target_condition_list): Release previous
115         conditions.
116         (build_target_command_list): Release previous commands.
117         (bp_location_dtor): Release target conditions and commands.
118         * remote.c (remote_add_target_side_condition): Don't release
119         conditions.
120         (remote_add_target_side_commands): Don't release commands.
121
122 2013-11-29  Yao Qi  <yao@codesourcery.com>
123             Pedro Alves  <palves@redhat.com>
124
125         * dcache.c (dcache_read_line): Use current_target.beneath
126         instead of &current_target.
127         * target.c (memory_xfer_partial_1): Factor code out to ...
128         (raw_memory_xfer_partial): ... it.  New function.
129         (target_xfer_partial): Call raw_memory_xfer_partial if OBJECT
130         is TARGET_OBJECT_RAW_MEMORY.
131
132 2013-11-28  Doug Evans  <xdje42@gmail.com>
133
134         * breakpoint.h (gdbpy_breakpoint_object): Renamed from
135         breakpoint_object.  All uses updated.
136         * python/python-internal.h (gdbpy_breakpoint_object): Renamed from
137         breakpoint_object.  All uses updated.
138         * python.c (*): All uses of breakpoint_object updated.
139         * python.h (*): All uses of breakpoint_object updated.
140         * python/py-breakpoint.c (*): All uses of breakpoint_object updated.
141         * python/py-finishbreakpoint.c (*): Ditto.
142
143 2013-11-28  Doug Evans  <xdje42@gmail.com>
144
145         * configure.ac: Add comments delineating libpython and libmcheck.
146         * configure: Regenerate.
147
148 2013-11-28  Andrew Burgess  <aburgess@broadcom.com>
149             Pedro Alves  <palves@redhat.com>
150
151         * valprint.c (value_check_printable): If the value is entirely
152         unavailable, print a single "<unavailable>" instead of printing
153         all subfields.
154
155 2013-11-28  Pedro Alves  <palves@redhat.com>
156
157         * frame.c (get_prev_frame_1) <stop_reason != UNWIND_NO_REASON>:
158         Add "set debug frame" output.
159         (frame_stop_reason_symbol_string): New function.
160
161 2013-11-28  Pedro Alves  <palves@redhat.com>
162
163         * frame-unwind.c (default_frame_unwind_stop_reason): Return
164         UNWIND_OUTERMOST if the frame's ID is outer_frame_id.
165         * frame.c (get_prev_frame_1): Remove outer_frame_id check.
166
167 2013-11-28  Pedro Alves  <palves@redhat.com>
168
169         * frame.c (get_prev_frame_1): If the frame id is outer_frame_id,
170         set the unwind stop reason to UNWIND_OUTERMOST, not
171         UNWIND_NULL_ID.  Remove explicit check for sentinel frame.
172
173 2013-11-28  Pedro Alves  <palves@redhat.com>
174
175         * frame.c (frame_unwind_register): Say the register was "not
176         saved" instead of "optimized out".
177
178 2013-11-27  Steffen Sledz  <sledz@dresearch-fe.de>
179
180         PR 16152
181         * configure: Rebuild.
182         * configure.ac: Tighten cygwin detection check.
183
184 2013-11-27  Pedro Alves  <palves@redhat.com>
185
186         * frame-unwind.c (frame_unwind_got_optimized): Use the type of the
187         register in the previous frame's arch.
188
189 2013-11-27  Pedro Alves  <palves@redhat.com>
190
191         * frame-unwind.c (frame_unwind_got_optimized): Return
192         an lval_register value instead of a not_lval value.
193
194 2013-11-27  Andrew Burgess  <aburgess@broadcom.com>
195
196         * frame.c: Include "valprint.h".
197         (frame_unwind_register_value): Use value_optimized_out.
198         * value.c (value_fetch_lazy): Likewise.
199
200 2013-11-26  Andrew Burgess  <aburgess@broadcom.com>
201
202         * value.c (allocate_optimized_out_value): Mark value as non-lazy.
203
204 2013-11-26  Tom Tromey  <tromey@redhat.com>
205
206         * dwarf2-frame.c (dwarf2_frame_cache): Revert patch from
207         2013-11-22.
208
209 2013-11-26  Walfred Tedeschi  <walfred.tedeschi@intel.com>
210
211         * i386-xstate.h (I386_XSTATE_MPX): New Macro.
212         (I386_XSTATE_MPX_MASK): Makes use of I386_XSTATE_MPX.
213         (HAS_MPX): New macro.
214         (HAS_AVX): New macro.
215         (I386_XSTATE_SIZE): Uses HAS_MPX and HAS_AVX.
216
217 2013-11-25  Keith Seitz  <keiths@redhat.com>
218
219         PR c++/14819
220         * c-exp.y (classify_inner_name): If no matching symbol was
221         found, try looking up the token as a base class.
222         Likewise if a constructor was found.
223         * cp-namespace.c (find_type_baseclass_by_name): New function.
224         * cp-support.h (find_type_baseclass_by_name): Declare.
225         * valops.c (value_struct_elt_for_reference): If we get
226         a non-static field, try to get a value based on the
227         current instance, if any.
228
229 2013-11-24  Yao Qi  <yao@codesourcery.com>
230
231         * disasm.c (dis_asm_read_memory): Call target_read_code
232         instead of target_read_memory.
233
234 2013-11-24  Yao Qi  <yao@codesourcery.com>
235
236         * NEWS: Add note on new "set code-cache" option.
237         * target-dcache.c (code_cache_enabled_1): New variable.
238         (code_cache_enabled): New variable.
239         (show_code_cache, set_code_cache): New function.
240         (code_cache_enabled_p): New function.
241         (_initialize_target_dcache): Register command.
242         * target-dcache.h (code_cache_enabled_p): Declare.
243         * target.c (memory_xfer_partial_1):Handle
244         TARGET_OBJECT_CODE_MEMORY and code_cache_enabled.
245         (target_read_code): New function.
246         * target.h (enum target_object) <TARGET_OBJECT_CODE_MEMORY>:
247         New.
248         (target_read_code): Declare.
249
250 2013-11-24  Yao Qi  <yao@codesourcery.com>
251
252         * target-dcache.c (stack_cache_enabled_p_1): Rename to ...
253         (stack_cache_enabled_1): ... this.  New variable.
254         (stack_cache_enabled_p): Rename to ...
255         (stack_cache_enabled): ... this.  New variable.
256         (set_stack_cache_enabled_p): Rename to ...
257         (set_stack_cache): ... this.  Update caller.
258         (show_stack_cache_enabled_p): Rename to ...
259         (show_stack_cache): ... this.  Update caller.
260         (stack_cache_enabled): Rename to ...
261         (stack_cache_enabled_p): ... this.  Update caller.
262         (_initialize_target_dcache): Replace "data cache" with
263         "target memory cache".
264         * target-dcache.h (stack_cache_enabled): Remove declaration.
265         (stack_cache_enabled_p): Add declaration.
266
267 2013-11-23  Doug Evans  <xdje42@gmail.com>
268
269         * python/py-frame.c (gdbpy_initialize_frames): Remove FIRST_ERROR,
270         superfluous.
271
272 2013-11-23  Doug Evans  <xdje42@gmail.com>
273
274         * python/py-frame.c (frapy_block): Fix error message text.
275
276 2013-11-23  Doug Evans  <xdje42@gmail.com>
277
278         * cli/cli-script.c (multi_line_command_p): New function.
279         (recurse_read_control_structure, read_command_lines_1): Call it.
280         (execute_control_command): Consistently have a blank line between
281         each case.
282
283 2013-11-22  Sterling Augustine  <saugustine@google.com>
284
285         PR gdb/16196:
286         * valprint.c (read_string): Set new variable fetchlen based on
287         fetchlimit and size.  Use it in call to partial_memory_read.
288         Update comment.
289
290 2013-11-22  Tom Tromey  <tromey@redhat.com>
291
292         PR backtrace/16155:
293         * dwarf2-frame.c (dwarf2_frame_cache): Set undefined_retaddr if
294         the return address column is unspecified.
295
296 2013-11-22  Tom Tromey  <tromey@redhat.com>
297             Pedro Alves  <palves@redhat.com>
298
299         PR backtrace/16155
300         * value.c (value_fetch_lazy): Internal error if
301         get_frame_register_value returns the same register.
302
303 2013-11-22  Pedro Alves  <palves@redhat.com>
304             Tom Tromey  <tromey@redhat.com>
305
306         * frame.c (frame_stash_add): Now returns whether a frame with the
307         same ID was already known.
308         (compute_frame_id): New function, factored out from get_frame_id.
309         (get_frame_id): No longer lazilly compute the frame id here.
310         (get_prev_frame_if_no_cycle): New function.  Detects wider stack
311         cycles.
312         (get_prev_frame_1): Use it instead of get_prev_frame_raw directly,
313         and checking for stack cycles here.
314
315 2013-11-22  Pedro Alves  <palves@redhat.com>
316
317         PR 16155
318         * frame.c (get_prev_frame_1): Do the UNWIND_SAME_ID check between
319         this frame and the new previous frame, not between this frame and
320         the next frame.
321
322 2013-11-22  Pedro Alves  <palves@redhat.com>
323
324         PR 16155
325         * dwarf2-frame.c (struct dwarf2_frame_cache)
326         <checked_tailcall_bottom, entry_cfa_sp_offset,
327         entry_cfa_sp_offset_p>: New fields.
328         (dwarf2_frame_cache): Adjust to use the new cache fields instead
329         of locals.  Don't call dwarf2_tailcall_sniffer_first here.
330         (dwarf2_frame_prev_register): Call it here, but only once.
331
332 2013-11-21  Doug Evans  <xdje42@gmail.com>
333
334         * gdbtypes.c: #include bcache.h, dwarf2loc.h.
335         (type_equality_entry): Move here from python/py-type.c.
336         (type_equality_entry_d): Ditto.
337         (compare_maybe_null_strings, check_types_equal): Ditto.
338         (check_types_worklist, types_deeply_equal): Ditto.
339         * gdbtypes.h (types_deeply_equal): Declare.
340         * python/py-type.c: Remove inclusion of bcache.h, dwarf2loc.h.
341         (typy_richcompare): Update.
342
343 2013-11-20  Joel Brobecker  <brobecker@adacore.com>
344
345         * python/py-value.c (is_intlike): Delete.
346         (valpy_int): Replace use of CHECK_TYPEDEF and is_intlike
347         by use of is_integral_type.
348         (valpy_long): Replace use of CHECK_TYPEDEF and is_intlike
349         by use of is_integral_type and check for TYPE_CODE_PTR.
350
351 2013-11-20  Tom Tromey  <tromey@redhat.com>
352
353         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Remove
354         strerror module.
355         * gnulib/aclocal.m4: Update.
356         * gnulib/config.in: Update.
357         * gnulib/configure: Update.
358         * gnulib/import/Makefile.am: Update.
359         * gnulib/import/Makefile.in: Update.
360         * gnulib/import/errno.in.h: Remove.
361         * gnulib/import/intprops.h: Remove.
362         * gnulib/import/m4/errno_h.m4: Remove.
363         * gnulib/import/m4/gnulib-cache.m4: Update.
364         * gnulib/import/m4/gnulib-comp.m4: Update.
365         * gnulib/import/m4/strerror.m4: Remove.
366         * gnulib/import/m4/sys_socket_h.m4: Remove.
367         * gnulib/import/strerror-override.c: Remove.
368         * gnulib/import/strerror-override.h: Remove.
369         * gnulib/import/strerror.c: Remove.
370         * gnulib/update-gnulib.sh: Update.
371
372 2013-11-20  Yao Qi  <yao@codesourcery.com>
373
374         * target-dcache.c (target_dcache_get_or_init): Call
375         set_address_space_data if 'dcache' is NULL.
376
377 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
378
379         * common/i386-gcc-cpuid.h (bit_MPX): Synchronize with gcc file.
380
381 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
382
383         * python/lib/gdb/command/bound_register.py: New file.
384         * data-directory/Makefile.in: Copy bond_register.py to the right path
385         to be initialized at gdb startup.
386
387 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
388
389         * amd64-linux-nat.c (amd64_linux_gregset32_reg_offset):
390         Add MPX registers.
391         (amd64_linux_read_description): Add initialization for MPX and
392         AVX independently.
393         * amd64-linux-tdep.c: Includes features/i386/amd64-mpx-linux.c.
394         (amd64_linux_gregset_reg_offset): Add MPX registers.
395         (amd64_linux_core_read_description): Add initialization for MPX
396         registers.
397         (_initialize_amd64_linux_tdep): Initialize MPX targets.
398         * amd64-linux-tdep.h (AMD64_LINUX_RAX_REGNUM): Set it to the last
399         register on the list.
400         (tdesc_amd64_mpx_linux) Add new target  for MPX.
401         * amd64-tdep.c: Includes features/i386/amd64-mpx.c.
402         (amd64_mpx_names): MPX register names.
403         (amd64_init_abi): Add MPX register while initializing the ABI.
404         (_initialize_amd64_tdep): Initialize MPX targets.
405         * amd64-tdep.h (amd64_regnum): Add MPX registers.
406         (AMD64_NUM_REGS): Set number of registers taking MPX into account.
407
408 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
409
410         * i386-linux-nat.c (GETXSTATEREGS_SUPPLIES): Add MPX
411         registers on the range of registers to be read from
412         xsave buffer.
413         (i386_linux_read_description): Add case for MPX.
414         * i386-linux-tdep.c: Include features/i386/i386-mpx-linux.c.
415         (i386_linux_gregset_reg_offset): Add MPX registers.
416         (i386_linux_core_read_description): Initialize also MPX.
417         (_initialize_i386_linux_tdep): Add mpx initialization.
418         * i386-tdep.h (gdbarch_tdep): Add fields bnd0r_regnum, bnd0_regnum,
419         mpx_register_names.
420         (i386_regnum): Add MPX registers.
421         (I386_MPX_NUM_REGS): New macro.
422         (i386_bnd_regnum_p): New function.
423         * i386-linux-tdep.h (I386_LINUX_NUM_REGS): Set
424         number of registers to be the number of BNDSTATUS.
425         (tdesc_i386_mpx_linux): Add description for MPX Linux registers.
426         * i386-tdep.c: Include features/i386/i386-mpx.c.
427         (i386_mpx_names): Add MPX register names array.
428         (i386_bnd_names): Add bnd pseudo register names array.
429         (i386_bndr_regnum_p): Lookup register numbers for bnd raw
430         registers.
431         (i386_bndr_regnum_p): Lookup register numbers for bnd raw registers.
432         (386_mpx_ctrl_regnum_p): Lookup register numbers for MPX control
433         registers.
434         (i386_bnd_type): New function.
435         (i386_pseudo_register_type): Use i386_bnd_type for bnd pseudo
436         register types.
437         (i386_pseudo_register_read_into_value): Add bnd case.
438         (i386_pseudo_register_write): Add bnd pseudo registers.
439         (i386_register_reggroup_p): Add MPX register to the group all.
440         (i386_validate_tdesc_p): Add MPX to the target  description
441         validation.
442         (i386_pseudo_register_name): Add bnd pseudo registers.
443         (i386_gdbarch_init): Add MPX for architecture initialization.
444         (_initia_initialize_i386_tdep): Add mpx initialization.
445         * i387-tdep.c (xsave_mpx_offset): New vector for MPX offsets on
446         XSAVE buffer.
447         (XSAVE_MPX_ADDR): New macro.
448         (i387_supply_xsave): Add MPX case.
449         (i387_collect_xsave): Add MPX case.
450         * i387-tdep.h (I387_BND0R_REGNUM): New macro.
451         (I387_BNDCFGU_REGNUM): New macro.
452         (I387_NUM_MPX_REGS): New macro.
453         (I387_NUM_BND_REGS): New macro.
454         (I387_NUM_MPX_CTRL_REGS): New macro.
455         (I387_MPXEND_REGNUM): New macro.
456         * common/i386-xstate.h (I386_XSTATE_BNDREGS): New macro.
457         (I386_XSTATE_BNDCFG): Likewise.
458         (I386_XSTATE_MPX_MASK): Likewise.
459         (I386_XSTATE_ALL_MASK): New macro represents flags for all states.
460         (I386_XSTATE_BNDREGS_SIZE): New macro.
461         (I386_XSTATE_BNDCFG_SIZE): Likewise.
462         (I386_XSTATE_SIZE): Adapt for MPX.
463         (I386_XSTATE_MAX_SIZE): Likewise.
464
465 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
466
467         * features/i386/Makefile: Adapts for using MPX registers.
468         * features/i386/32bit-mpx.xml: New file.
469         * features/i386/64bit-mpx.xml: Likewise.
470         * features/i386/amd64-mpx-linux.c: Likewise.
471         * features/i386/amd64-mpx-linux.xml: Likewise.
472         * features/i386/amd64-mpx.c: Likewise.
473         * features/i386/amd64-mpx.xml: Likewise.
474         * features/i386/i386-mpx-linux.c: Likewise.
475         * features/i386/i386-mpx-linux.xml: Likewise.
476         * features/i386/i386-mpx.c: Likewise.
477         * features/i386/i386-mpx.xml: Likewise.
478         * regformats/i386/amd64-mpx-linux.dat: New file.
479         * regformats/i386/amd64-mpx.dat: Likewise.
480         * regformats/i386/i386-mpx-linux.dat: Likewise.
481         * regformats/i386/i386-mpx.dat: Likewise.
482
483 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
484
485         * target-descriptions.c (maint_print_maint_print_c_tdesc_cmd):
486         Modified logic of creating a bitfield to be in sync with
487         tdesc_gdb_type.
488
489 2013-11-20  Will Newton  <will.newton@linaro.org>
490
491         * arm-tdep.c (arm_get_next_pc): Remove "Infinite loop detected"
492         error message.
493
494 2013-11-20  Yao Qi  <yao@codesourcery.com>
495
496         * progspace.h (struct address_space_data): Declare.
497         * target-dcache.c: Include "progspace.h".
498         (target_dache): Remove.
499         (target_dcache_aspace_key): New.
500         (target_dcache_cleanup): New function.
501         (target_dcache_init_p): Get data through
502         target_dcache_aspace_key.
503         (target_dcache_invalidate): Likewise.
504         (target_dcache_get): Likewise.
505         (target_dcache_get_or_init): Likewise.
506         (_initialize_target_dcache): Initialize
507         target_dcache_aspace_key.
508
509 2013-11-20  Yao Qi  <yao@codesourcery.com>
510
511         * progspace.c (struct address_space): Update comments.
512         <REGISTRY_FIELDS>: New fields.
513         DEFINE_REGISTRY for address_space.
514         (new_address_space): Call address_space_alloc_data.
515         (free_address_space): Call address_space_free_data.
516         * progspace.h: Use DECLARE_REGISTRY.
517
518 2013-11-20  Yao Qi  <yao@codesourcery.com>
519
520         * Makefile.in (SFILES):Add target-dcache.c.
521         (HFILES_NO_SRCDIR): Add target-dcache.h.
522         (COMMON_OBS): Add target-dcache.o.
523         * dcache.c: Remove inclusion to "target.h".  Include
524         "target-dcache.h".
525         * memattr.c: Include "target-dcache.h".
526         * top.c: Likewise.
527         * tracepoint.c: Likewise.
528         * target.c: (stack_cache_enabled_p_1): Move to
529         target-dcache.c.
530         (stack_cache_enabled_p): Likewise.
531         (set_stack_cache_enabled_p): Likewise.
532         (show_stack_cache_enabled_p): Likewise.
533         (target_dcache, target_dcache_init_p): Likewise.
534         (target_dcache_invalidate): Likewise.
535         (target_dcache_get, target_dcache_get_or_init): Likewise.
536         (memory_xfer_partial_1): Call function stack_cache_enabled.
537         (initialize_target): Move code to target-dcache.c.
538         * target.h (target_dcache_invalidate): Move to
539         target-dcache.h.
540         (target_dcache_get): Likewise.
541         * target-dcache.c: New.
542         * target-dcache.h: New.
543
544 2013-11-20  Yao Qi  <yao@codesourcery.com>
545
546         * target.c (memory_xfer_partial_1): Update 'target_dcache' if
547         it is initialized.
548
549 2013-11-20  Yao Qi  <yao@codesourcery.com>
550
551         * dcache.c (last_cache): Remove.
552         (dcache_free, dcache_init): Update.
553         (dcache_update):
554         (dcache_print_line): Add parameter 'dcache'.  Replace
555         'target_dcache' with 'dcache'.
556         (dcache_info): Move code to dcache_info_1. Call
557         'dcache_info_1'.
558         (dcache_info_1): New function.
559         (set_dcache_size): Call target_dcache_invalidate.
560         (set_dcache_line_size): Call target_dcache_invalidate.
561         * target.c (target_dcache_init_p): New function.
562         (target_dcache_invalidate): Check target_dcache_init_p first.
563         (target_dcache_get, target_dcache_get_or_init): New function.
564         (memory_xfer_partial_1): Adjust.
565         (initialize_target): Don't initialize 'target_dcache'.
566         * target.h (struct dcache_struct): Declare.
567         (target_dcache_get): Declare.
568
569 2013-11-19  Yao Qi  <yao@codesourcery.com>
570
571         * varobj.c (varobj_get_type): Fix typo.
572
573 2013-11-19  Joel Brobecker  <brobecker@adacore.com>
574
575         * python/py-value.c (is_intlike): Add TYPE_CODE_RANGE handling.
576
577 2013-11-19  Joel Brobecker  <brobecker@adacore.com>
578
579         * contrib/ari/gdb_ari.sh: Remove checks for "dirent.h" and
580         "stat.h".
581
582 2013-11-18  Tom Tromey  <tromey@redhat.com>
583
584         * common/gdb_stat.h: Remove.
585         * ada-lang.c: Use sys/stat.h, not gdb_stat.h.
586         * common/filestuff.c: Use sys/stat.h, not gdb_stat.h.
587         * common/linux-osdata.c: Use sys/stat.h, not gdb_stat.h.
588         * corefile.c: Use sys/stat.h, not gdb_stat.h.
589         * ctf.c: Use sys/stat.h, not gdb_stat.h.
590         * darwin-nat.c: Use sys/stat.h, not gdb_stat.h.
591         * dbxread.c: Use sys/stat.h, not gdb_stat.h.
592         * dwarf2read.c: Use sys/stat.h, not gdb_stat.h.
593         * exec.c: Use sys/stat.h, not gdb_stat.h.
594         * gdbserver/linux-low.c: Use sys/stat.h, not gdb_stat.h.
595         * gdbserver/remote-utils.c: Use sys/stat.h, not gdb_stat.h.
596         * inf-child.c: Use sys/stat.h, not gdb_stat.h.
597         * jit.c: Use sys/stat.h, not gdb_stat.h.
598         * linux-nat.c: Use sys/stat.h, not gdb_stat.h.
599         * m68klinux-nat.c: Use sys/stat.h, not gdb_stat.h.
600         * main.c: Use sys/stat.h, not gdb_stat.h.
601         * mdebugread.c: Use sys/stat.h, not gdb_stat.h.
602         * mi/mi-cmd-env.c: Use sys/stat.h, not gdb_stat.h.
603         * nto-tdep.c: Use sys/stat.h, not gdb_stat.h.
604         * objfiles.c: Use sys/stat.h, not gdb_stat.h.
605         * procfs.c: Use sys/stat.h, not gdb_stat.h.
606         * remote-fileio.c: Use sys/stat.h, not gdb_stat.h.
607         * remote-mips.c: Use sys/stat.h, not gdb_stat.h.
608         * remote.c: Use sys/stat.h, not gdb_stat.h.
609         * rs6000-nat.c: Use sys/stat.h, not gdb_stat.h.
610         * sol-thread.c: Use sys/stat.h, not gdb_stat.h.
611         * solib-spu.c: Use sys/stat.h, not gdb_stat.h.
612         * source.c: Use sys/stat.h, not gdb_stat.h.
613         * symfile.c: Use sys/stat.h, not gdb_stat.h.
614         * symmisc.c: Use sys/stat.h, not gdb_stat.h.
615         * symtab.c: Use sys/stat.h, not gdb_stat.h.
616         * top.c: Use sys/stat.h, not gdb_stat.h.
617         * xcoffread.c: Use sys/stat.h, not gdb_stat.h.
618
619 2013-11-18  Tom Tromey  <tromey@redhat.com>
620
621         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
622         sys_stat.
623         * gnulib/aclocal.m4: Update.
624         * gnulib/config.in: Update.
625         * gnulib/configure: Update.
626         * gnulib/import/Makefile.am: Update.
627         * gnulib/import/Makefile.in: Update.
628         * gnulib/import/m4/gnulib-cache.m4: Update.
629         * gnulib/import/m4/gnulib-comp.m4: Update.
630         * gnulib/import/m4/sys_stat_h.m4: New.
631         * gnulib/import/m4/time_h.m4: New.
632         * gnulib/import/sys_stat.in.h: New.
633         * gnulib/import/time.in.h: New.
634
635 2013-11-18  Tom Tromey  <tromey@redhat.com>
636
637         * configure: Rebuild.
638         * configure.ac: Remove check of HAVE_SYS_TYPES_H.
639
640 2013-11-18  Tom Tromey  <tromey@redhat.com>
641
642         * configure: Rebuild.
643         * configure.ac: Don't check for unistd.h.
644
645 2013-11-18  Tom Tromey  <tromey@redhat.com>
646
647         * configure: Rebuild.
648         * configure.ac: Don't check for stdlib.h
649         * defs.h: Include stdlib.h unconditionally.
650
651 2013-11-18  Tom Tromey  <tromey@redhat.com>
652
653         * config.in: Rebuild.
654         * configure: Rebuild.
655         * configure.ac: Don't check for stddef.h.
656         * defs.h: Unconditionally include stddef.h.  Remove duplicate
657         inclusion.
658
659 2013-11-18  Tom Tromey  <tromey@redhat.com>
660
661         * common/common.m4 (GDB_AC_COMMON): Don't use AC_HEADER_DIRENT.
662         * common/gdb_dirent.h: Remove.
663         * common/filestuff.c: Use dirent.h.
664         * common/linux-osdata.c: Use dirent.h.
665         (NAMELEN): Define.
666         * config.in: Rebuild.
667         * configure: Rebuild.
668         * configure.ac: Don't use AC_HEADER_DIRENT.
669         * linux-fork.c: Use dirent.h
670         * linux-nat.c: Use dirent.h.
671         * nto-procfs.c: Use dirent.h.
672         * procfs.c: Use dirent.h.
673
674 2013-11-18  Tom Tromey  <tromey@redhat.com>
675
676         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add dirent.
677         * gnulib/aclocal.m4: Update.
678         * gnulib/config.in: Update.
679         * gnulib/configure: Update.
680         * gnulib/import/Makefile.am: Update.
681         * gnulib/import/Makefile.in: Update.
682         * gnulib/import/dirent.in.h: New.
683         * gnulib/import/m4/dirent_h.m4: New.
684         * gnulib/import/m4/gnulib-cache.m4: Update.
685         * gnulib/import/m4/gnulib-comp.m4: Update.
686
687 2013-11-18  Tom Tromey  <tromey@redhat.com>
688
689         * configure: Rebuild.
690         * common/common.m4 (GDB_AC_COMMON): Don't check for string.h or
691         strings.h.
692
693 2013-11-18  Tom Tromey  <tromey@redhat.com>
694
695         * common/gdb_string.h: Remove.
696         * aarch64-tdep.c: Use string.h, not gdb_string.h.
697         * ada-exp.y: Use string.h, not gdb_string.h.
698         * ada-lang.c: Use string.h, not gdb_string.h.
699         * ada-lex.l: Use string.h, not gdb_string.h.
700         * ada-typeprint.c: Use string.h, not gdb_string.h.
701         * ada-valprint.c: Use string.h, not gdb_string.h.
702         * aix-thread.c: Use string.h, not gdb_string.h.
703         * alpha-linux-tdep.c: Use string.h, not gdb_string.h.
704         * alpha-mdebug-tdep.c: Use string.h, not gdb_string.h.
705         * alpha-nat.c: Use string.h, not gdb_string.h.
706         * alpha-osf1-tdep.c: Use string.h, not gdb_string.h.
707         * alpha-tdep.c: Use string.h, not gdb_string.h.
708         * alphanbsd-tdep.c: Use string.h, not gdb_string.h.
709         * amd64-dicos-tdep.c: Use string.h, not gdb_string.h.
710         * amd64-linux-nat.c: Use string.h, not gdb_string.h.
711         * amd64-linux-tdep.c: Use string.h, not gdb_string.h.
712         * amd64-nat.c: Use string.h, not gdb_string.h.
713         * amd64-sol2-tdep.c: Use string.h, not gdb_string.h.
714         * amd64fbsd-tdep.c: Use string.h, not gdb_string.h.
715         * amd64obsd-tdep.c: Use string.h, not gdb_string.h.
716         * arch-utils.c: Use string.h, not gdb_string.h.
717         * arm-linux-nat.c: Use string.h, not gdb_string.h.
718         * arm-linux-tdep.c: Use string.h, not gdb_string.h.
719         * arm-tdep.c: Use string.h, not gdb_string.h.
720         * arm-wince-tdep.c: Use string.h, not gdb_string.h.
721         * armbsd-tdep.c: Use string.h, not gdb_string.h.
722         * armnbsd-nat.c: Use string.h, not gdb_string.h.
723         * armnbsd-tdep.c: Use string.h, not gdb_string.h.
724         * armobsd-tdep.c: Use string.h, not gdb_string.h.
725         * avr-tdep.c: Use string.h, not gdb_string.h.
726         * ax-gdb.c: Use string.h, not gdb_string.h.
727         * ax-general.c: Use string.h, not gdb_string.h.
728         * bcache.c: Use string.h, not gdb_string.h.
729         * bfin-tdep.c: Use string.h, not gdb_string.h.
730         * breakpoint.c: Use string.h, not gdb_string.h.
731         * build-id.c: Use string.h, not gdb_string.h.
732         * buildsym.c: Use string.h, not gdb_string.h.
733         * c-exp.y: Use string.h, not gdb_string.h.
734         * c-lang.c: Use string.h, not gdb_string.h.
735         * c-typeprint.c: Use string.h, not gdb_string.h.
736         * c-valprint.c: Use string.h, not gdb_string.h.
737         * charset.c: Use string.h, not gdb_string.h.
738         * cli-out.c: Use string.h, not gdb_string.h.
739         * cli/cli-cmds.c: Use string.h, not gdb_string.h.
740         * cli/cli-decode.c: Use string.h, not gdb_string.h.
741         * cli/cli-dump.c: Use string.h, not gdb_string.h.
742         * cli/cli-interp.c: Use string.h, not gdb_string.h.
743         * cli/cli-logging.c: Use string.h, not gdb_string.h.
744         * cli/cli-script.c: Use string.h, not gdb_string.h.
745         * cli/cli-setshow.c: Use string.h, not gdb_string.h.
746         * cli/cli-utils.c: Use string.h, not gdb_string.h.
747         * coffread.c: Use string.h, not gdb_string.h.
748         * common/common-utils.c: Use string.h, not gdb_string.h.
749         * common/filestuff.c: Use string.h, not gdb_string.h.
750         * common/linux-procfs.c: Use string.h, not gdb_string.h.
751         * common/linux-ptrace.c: Use string.h, not gdb_string.h.
752         * common/signals.c: Use string.h, not gdb_string.h.
753         * common/vec.h: Use string.h, not gdb_string.h.
754         * core-regset.c: Use string.h, not gdb_string.h.
755         * corefile.c: Use string.h, not gdb_string.h.
756         * corelow.c: Use string.h, not gdb_string.h.
757         * cp-abi.c: Use string.h, not gdb_string.h.
758         * cp-support.c: Use string.h, not gdb_string.h.
759         * cp-valprint.c: Use string.h, not gdb_string.h.
760         * cris-tdep.c: Use string.h, not gdb_string.h.
761         * d-lang.c: Use string.h, not gdb_string.h.
762         * dbxread.c: Use string.h, not gdb_string.h.
763         * dcache.c: Use string.h, not gdb_string.h.
764         * demangle.c: Use string.h, not gdb_string.h.
765         * dicos-tdep.c: Use string.h, not gdb_string.h.
766         * disasm.c: Use string.h, not gdb_string.h.
767         * doublest.c: Use string.h, not gdb_string.h.
768         * dsrec.c: Use string.h, not gdb_string.h.
769         * dummy-frame.c: Use string.h, not gdb_string.h.
770         * dwarf2-frame.c: Use string.h, not gdb_string.h.
771         * dwarf2loc.c: Use string.h, not gdb_string.h.
772         * dwarf2read.c: Use string.h, not gdb_string.h.
773         * elfread.c: Use string.h, not gdb_string.h.
774         * environ.c: Use string.h, not gdb_string.h.
775         * eval.c: Use string.h, not gdb_string.h.
776         * event-loop.c: Use string.h, not gdb_string.h.
777         * exceptions.c: Use string.h, not gdb_string.h.
778         * exec.c: Use string.h, not gdb_string.h.
779         * expprint.c: Use string.h, not gdb_string.h.
780         * f-exp.y: Use string.h, not gdb_string.h.
781         * f-lang.c: Use string.h, not gdb_string.h.
782         * f-typeprint.c: Use string.h, not gdb_string.h.
783         * f-valprint.c: Use string.h, not gdb_string.h.
784         * fbsd-nat.c: Use string.h, not gdb_string.h.
785         * findcmd.c: Use string.h, not gdb_string.h.
786         * findvar.c: Use string.h, not gdb_string.h.
787         * fork-child.c: Use string.h, not gdb_string.h.
788         * frame.c: Use string.h, not gdb_string.h.
789         * frv-linux-tdep.c: Use string.h, not gdb_string.h.
790         * frv-tdep.c: Use string.h, not gdb_string.h.
791         * gdb.c: Use string.h, not gdb_string.h.
792         * gdb_bfd.c: Use string.h, not gdb_string.h.
793         * gdbarch.c: Use string.h, not gdb_string.h.
794         * gdbtypes.c: Use string.h, not gdb_string.h.
795         * gnu-nat.c: Use string.h, not gdb_string.h.
796         * gnu-v2-abi.c: Use string.h, not gdb_string.h.
797         * gnu-v3-abi.c: Use string.h, not gdb_string.h.
798         * go-exp.y: Use string.h, not gdb_string.h.
799         * go-lang.c: Use string.h, not gdb_string.h.
800         * go32-nat.c: Use string.h, not gdb_string.h.
801         * hppa-hpux-tdep.c: Use string.h, not gdb_string.h.
802         * hppa-linux-nat.c: Use string.h, not gdb_string.h.
803         * hppanbsd-tdep.c: Use string.h, not gdb_string.h.
804         * hppaobsd-tdep.c: Use string.h, not gdb_string.h.
805         * i386-cygwin-tdep.c: Use string.h, not gdb_string.h.
806         * i386-dicos-tdep.c: Use string.h, not gdb_string.h.
807         * i386-linux-nat.c: Use string.h, not gdb_string.h.
808         * i386-linux-tdep.c: Use string.h, not gdb_string.h.
809         * i386-nto-tdep.c: Use string.h, not gdb_string.h.
810         * i386-sol2-tdep.c: Use string.h, not gdb_string.h.
811         * i386-tdep.c: Use string.h, not gdb_string.h.
812         * i386bsd-tdep.c: Use string.h, not gdb_string.h.
813         * i386gnu-nat.c: Use string.h, not gdb_string.h.
814         * i386nbsd-tdep.c: Use string.h, not gdb_string.h.
815         * i386obsd-tdep.c: Use string.h, not gdb_string.h.
816         * i387-tdep.c: Use string.h, not gdb_string.h.
817         * ia64-libunwind-tdep.c: Use string.h, not gdb_string.h.
818         * ia64-linux-nat.c: Use string.h, not gdb_string.h.
819         * inf-child.c: Use string.h, not gdb_string.h.
820         * inf-ptrace.c: Use string.h, not gdb_string.h.
821         * inf-ttrace.c: Use string.h, not gdb_string.h.
822         * infcall.c: Use string.h, not gdb_string.h.
823         * infcmd.c: Use string.h, not gdb_string.h.
824         * inflow.c: Use string.h, not gdb_string.h.
825         * infrun.c: Use string.h, not gdb_string.h.
826         * interps.c: Use string.h, not gdb_string.h.
827         * iq2000-tdep.c: Use string.h, not gdb_string.h.
828         * irix5-nat.c: Use string.h, not gdb_string.h.
829         * jv-exp.y: Use string.h, not gdb_string.h.
830         * jv-lang.c: Use string.h, not gdb_string.h.
831         * jv-typeprint.c: Use string.h, not gdb_string.h.
832         * jv-valprint.c: Use string.h, not gdb_string.h.
833         * language.c: Use string.h, not gdb_string.h.
834         * linux-fork.c: Use string.h, not gdb_string.h.
835         * linux-nat.c: Use string.h, not gdb_string.h.
836         * lm32-tdep.c: Use string.h, not gdb_string.h.
837         * m2-exp.y: Use string.h, not gdb_string.h.
838         * m2-typeprint.c: Use string.h, not gdb_string.h.
839         * m32c-tdep.c: Use string.h, not gdb_string.h.
840         * m32r-linux-nat.c: Use string.h, not gdb_string.h.
841         * m32r-linux-tdep.c: Use string.h, not gdb_string.h.
842         * m32r-rom.c: Use string.h, not gdb_string.h.
843         * m32r-tdep.c: Use string.h, not gdb_string.h.
844         * m68hc11-tdep.c: Use string.h, not gdb_string.h.
845         * m68k-tdep.c: Use string.h, not gdb_string.h.
846         * m68kbsd-tdep.c: Use string.h, not gdb_string.h.
847         * m68klinux-nat.c: Use string.h, not gdb_string.h.
848         * m68klinux-tdep.c: Use string.h, not gdb_string.h.
849         * m88k-tdep.c: Use string.h, not gdb_string.h.
850         * macrocmd.c: Use string.h, not gdb_string.h.
851         * main.c: Use string.h, not gdb_string.h.
852         * mdebugread.c: Use string.h, not gdb_string.h.
853         * mem-break.c: Use string.h, not gdb_string.h.
854         * memattr.c: Use string.h, not gdb_string.h.
855         * memory-map.c: Use string.h, not gdb_string.h.
856         * mep-tdep.c: Use string.h, not gdb_string.h.
857         * mi/mi-cmd-break.c: Use string.h, not gdb_string.h.
858         * mi/mi-cmd-disas.c: Use string.h, not gdb_string.h.
859         * mi/mi-cmd-env.c: Use string.h, not gdb_string.h.
860         * mi/mi-cmd-stack.c: Use string.h, not gdb_string.h.
861         * mi/mi-cmd-var.c: Use string.h, not gdb_string.h.
862         * mi/mi-cmds.c: Use string.h, not gdb_string.h.
863         * mi/mi-console.c: Use string.h, not gdb_string.h.
864         * mi/mi-getopt.c: Use string.h, not gdb_string.h.
865         * mi/mi-interp.c: Use string.h, not gdb_string.h.
866         * mi/mi-main.c: Use string.h, not gdb_string.h.
867         * mi/mi-parse.c: Use string.h, not gdb_string.h.
868         * microblaze-rom.c: Use string.h, not gdb_string.h.
869         * microblaze-tdep.c: Use string.h, not gdb_string.h.
870         * mingw-hdep.c: Use string.h, not gdb_string.h.
871         * minidebug.c: Use string.h, not gdb_string.h.
872         * minsyms.c: Use string.h, not gdb_string.h.
873         * mips-irix-tdep.c: Use string.h, not gdb_string.h.
874         * mips-linux-tdep.c: Use string.h, not gdb_string.h.
875         * mips-tdep.c: Use string.h, not gdb_string.h.
876         * mips64obsd-tdep.c: Use string.h, not gdb_string.h.
877         * mipsnbsd-tdep.c: Use string.h, not gdb_string.h.
878         * mipsread.c: Use string.h, not gdb_string.h.
879         * mn10300-linux-tdep.c: Use string.h, not gdb_string.h.
880         * mn10300-tdep.c: Use string.h, not gdb_string.h.
881         * monitor.c: Use string.h, not gdb_string.h.
882         * moxie-tdep.c: Use string.h, not gdb_string.h.
883         * mt-tdep.c: Use string.h, not gdb_string.h.
884         * nbsd-tdep.c: Use string.h, not gdb_string.h.
885         * nios2-linux-tdep.c: Use string.h, not gdb_string.h.
886         * nto-procfs.c: Use string.h, not gdb_string.h.
887         * nto-tdep.c: Use string.h, not gdb_string.h.
888         * objc-lang.c: Use string.h, not gdb_string.h.
889         * objfiles.c: Use string.h, not gdb_string.h.
890         * opencl-lang.c: Use string.h, not gdb_string.h.
891         * osabi.c: Use string.h, not gdb_string.h.
892         * osdata.c: Use string.h, not gdb_string.h.
893         * p-exp.y: Use string.h, not gdb_string.h.
894         * p-lang.c: Use string.h, not gdb_string.h.
895         * p-typeprint.c: Use string.h, not gdb_string.h.
896         * parse.c: Use string.h, not gdb_string.h.
897         * posix-hdep.c: Use string.h, not gdb_string.h.
898         * ppc-linux-nat.c: Use string.h, not gdb_string.h.
899         * ppc-sysv-tdep.c: Use string.h, not gdb_string.h.
900         * ppcfbsd-tdep.c: Use string.h, not gdb_string.h.
901         * ppcnbsd-tdep.c: Use string.h, not gdb_string.h.
902         * ppcobsd-tdep.c: Use string.h, not gdb_string.h.
903         * printcmd.c: Use string.h, not gdb_string.h.
904         * procfs.c: Use string.h, not gdb_string.h.
905         * prologue-value.c: Use string.h, not gdb_string.h.
906         * python/py-auto-load.c: Use string.h, not gdb_string.h.
907         * python/py-gdb-readline.c: Use string.h, not gdb_string.h.
908         * ravenscar-thread.c: Use string.h, not gdb_string.h.
909         * regcache.c: Use string.h, not gdb_string.h.
910         * registry.c: Use string.h, not gdb_string.h.
911         * remote-fileio.c: Use string.h, not gdb_string.h.
912         * remote-m32r-sdi.c: Use string.h, not gdb_string.h.
913         * remote-mips.c: Use string.h, not gdb_string.h.
914         * remote-sim.c: Use string.h, not gdb_string.h.
915         * remote.c: Use string.h, not gdb_string.h.
916         * reverse.c: Use string.h, not gdb_string.h.
917         * rs6000-aix-tdep.c: Use string.h, not gdb_string.h.
918         * ser-base.c: Use string.h, not gdb_string.h.
919         * ser-go32.c: Use string.h, not gdb_string.h.
920         * ser-mingw.c: Use string.h, not gdb_string.h.
921         * ser-pipe.c: Use string.h, not gdb_string.h.
922         * ser-tcp.c: Use string.h, not gdb_string.h.
923         * ser-unix.c: Use string.h, not gdb_string.h.
924         * serial.c: Use string.h, not gdb_string.h.
925         * sh-tdep.c: Use string.h, not gdb_string.h.
926         * sh64-tdep.c: Use string.h, not gdb_string.h.
927         * shnbsd-tdep.c: Use string.h, not gdb_string.h.
928         * skip.c: Use string.h, not gdb_string.h.
929         * sol-thread.c: Use string.h, not gdb_string.h.
930         * solib-dsbt.c: Use string.h, not gdb_string.h.
931         * solib-frv.c: Use string.h, not gdb_string.h.
932         * solib-osf.c: Use string.h, not gdb_string.h.
933         * solib-spu.c: Use string.h, not gdb_string.h.
934         * solib-target.c: Use string.h, not gdb_string.h.
935         * solib.c: Use string.h, not gdb_string.h.
936         * somread.c: Use string.h, not gdb_string.h.
937         * source.c: Use string.h, not gdb_string.h.
938         * sparc-nat.c: Use string.h, not gdb_string.h.
939         * sparc-sol2-tdep.c: Use string.h, not gdb_string.h.
940         * sparc-tdep.c: Use string.h, not gdb_string.h.
941         * sparc64-tdep.c: Use string.h, not gdb_string.h.
942         * sparc64fbsd-tdep.c: Use string.h, not gdb_string.h.
943         * sparc64nbsd-tdep.c: Use string.h, not gdb_string.h.
944         * sparcnbsd-tdep.c: Use string.h, not gdb_string.h.
945         * spu-linux-nat.c: Use string.h, not gdb_string.h.
946         * spu-multiarch.c: Use string.h, not gdb_string.h.
947         * spu-tdep.c: Use string.h, not gdb_string.h.
948         * stabsread.c: Use string.h, not gdb_string.h.
949         * stack.c: Use string.h, not gdb_string.h.
950         * std-regs.c: Use string.h, not gdb_string.h.
951         * symfile.c: Use string.h, not gdb_string.h.
952         * symmisc.c: Use string.h, not gdb_string.h.
953         * symtab.c: Use string.h, not gdb_string.h.
954         * target.c: Use string.h, not gdb_string.h.
955         * thread.c: Use string.h, not gdb_string.h.
956         * tilegx-linux-nat.c: Use string.h, not gdb_string.h.
957         * tilegx-tdep.c: Use string.h, not gdb_string.h.
958         * top.c: Use string.h, not gdb_string.h.
959         * tracepoint.c: Use string.h, not gdb_string.h.
960         * tui/tui-command.c: Use string.h, not gdb_string.h.
961         * tui/tui-data.c: Use string.h, not gdb_string.h.
962         * tui/tui-disasm.c: Use string.h, not gdb_string.h.
963         * tui/tui-file.c: Use string.h, not gdb_string.h.
964         * tui/tui-layout.c: Use string.h, not gdb_string.h.
965         * tui/tui-out.c: Use string.h, not gdb_string.h.
966         * tui/tui-regs.c: Use string.h, not gdb_string.h.
967         * tui/tui-source.c: Use string.h, not gdb_string.h.
968         * tui/tui-stack.c: Use string.h, not gdb_string.h.
969         * tui/tui-win.c: Use string.h, not gdb_string.h.
970         * tui/tui-windata.c: Use string.h, not gdb_string.h.
971         * tui/tui-winsource.c: Use string.h, not gdb_string.h.
972         * typeprint.c: Use string.h, not gdb_string.h.
973         * ui-file.c: Use string.h, not gdb_string.h.
974         * ui-out.c: Use string.h, not gdb_string.h.
975         * user-regs.c: Use string.h, not gdb_string.h.
976         * utils.c: Use string.h, not gdb_string.h.
977         * v850-tdep.c: Use string.h, not gdb_string.h.
978         * valarith.c: Use string.h, not gdb_string.h.
979         * valops.c: Use string.h, not gdb_string.h.
980         * valprint.c: Use string.h, not gdb_string.h.
981         * value.c: Use string.h, not gdb_string.h.
982         * varobj.c: Use string.h, not gdb_string.h.
983         * vax-tdep.c: Use string.h, not gdb_string.h.
984         * vaxnbsd-tdep.c: Use string.h, not gdb_string.h.
985         * vaxobsd-tdep.c: Use string.h, not gdb_string.h.
986         * windows-nat.c: Use string.h, not gdb_string.h.
987         * xcoffread.c: Use string.h, not gdb_string.h.
988         * xml-support.c: Use string.h, not gdb_string.h.
989         * xstormy16-tdep.c: Use string.h, not gdb_string.h.
990         * xtensa-linux-nat.c: Use string.h, not gdb_string.h.
991
992 2013-11-18  Tom Tromey  <tromey@redhat.com>
993
994         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add strerror
995         and strstr.
996         * gnulib/aclocal.m4: Update.
997         * gnulib/config.in: Update.
998         * gnulib/configure: Update.
999         * gnulib/import/Makefile.am: Update.
1000         * gnulib/import/Makefile.in: Update.
1001         * gnulib/import/errno.in.h: New.
1002         * gnulib/import/intprops.h: New.
1003         * gnulib/import/m4/errno_h.m4: New.
1004         * gnulib/import/m4/gnulib-cache.m4: Update.
1005         * gnulib/import/m4/gnulib-comp.m4: Update.
1006         * gnulib/import/m4/strerror.m4: New.
1007         * gnulib/import/m4/strstr.m4: New.
1008         * gnulib/import/m4/sys_socket_h.m4: New.
1009         * gnulib/import/strerror-override.c: New.
1010         * gnulib/import/strerror-override.h: New.
1011         * gnulib/import/strerror.c: New.
1012         * gnulib/import/strstr.c: New.
1013
1014 2013-11-18  Tom Tromey  <tromey@redhat.com>
1015
1016         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Split into
1017         multiple lines.
1018
1019 2013-11-18  Jose E. Marchesi  <jose.marchesi@oracle.com>
1020
1021         * sparc-tdep.c (sparc_is_annulled_branch_insn): New function.
1022         * sparc-tdep.h: And its prototype.
1023
1024         * sparc64-linux-tdep.c (sparc64_linux_get_longjmp_target): New
1025         function.
1026         (sparc64_linux_init_abi): Register the get_longjmp_target hook.
1027
1028 2013-11-18  Pedro Alves  <palves@redhat.com>
1029
1030         * dwarf2-frame.c (read_addr_from_reg): Remove stale comment and
1031         use unpack_pointer.
1032
1033 2013-11-18  Joel Brobecker  <brobecker@adacore.com>
1034
1035         * mi/mi-main.c (mi_cmd_list_features): Add "language-options"
1036         to -list-features output.
1037
1038 2013-11-17  Joel Brobecker  <brobecker@adacore.com>
1039
1040         * dwarf2expr.h (struct dwarf_expr_context_funcs)
1041         <read_addr_from_reg>: Renames "read_reg".
1042         * dwarf2-frame.c (read_addr_from_reg): Renames "read_reg".
1043         Adjust comment.
1044         (dwarf2_frame_ctx_funcs, execute_stack_op, dwarf2_frame_cache):
1045         Use read_addr_from_reg in place of read_reg.
1046         * dwarf2expr.c (execute_stack_op): Use read_addr_from_reg
1047         in place of read_reg.
1048         * dwarf2loc.c (dwarf_expr_read_addr_from_reg): Renames
1049         dwarf_expr_read_reg.
1050         (dwarf_expr_ctx_funcs): Replace dwarf_expr_read_reg
1051         with dwarf_expr_read_addr_from_reg.
1052         (needs_frame_read_addr_from_reg): Renames needs_frame_read_reg.
1053         (needs_frame_ctx_funcs): Replace needs_frame_read_reg with
1054         needs_frame_read_addr_from_reg.
1055
1056 2013-11-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
1057
1058         * NEWS (Changes in GDB 7.5) (New commands) (explore): Fix typo.
1059
1060 2013-11-15  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1061
1062         * dwarf2loc.c (chain_candidate): Prevent invoking memcpy with
1063         NULL.
1064
1065 2013-11-15  Tom Tromey  <tromey@redhat.com>
1066
1067         PR c++/16117:
1068         * c-exp.y (lex_one_token): Add "is_quoted_name" argument.
1069         (classify_name): Likewise.  Prefer a field of "this" over a
1070         filename.
1071         (classify_inner_name, yylex): Update.
1072
1073 2013-11-15  Joel Brobecker  <brobecker@adacore.com>
1074
1075         * dwarf2expr.h (struct dwarf_expr_context_funcs) <read_reg>:
1076         Extend the documentation a bit.
1077         <get_reg_value>: New field.
1078         * dwarf2loc.c (dwarf_expr_get_reg_value)
1079         (needs_frame_get_reg_value): New functions.
1080         (dwarf_expr_ctx_funcs, needs_frame_ctx_funcs): Add "get_reg_value"
1081         callback.
1082         * dwarf2-frame.c (get_reg_value): New function.
1083         (dwarf2_frame_ctx_funcs): Add "get_reg_value" callback.
1084         * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_regval_type>:
1085         Use new callback to compute result_val.
1086
1087 2013-11-15  Alan Modra  <amodra@gmail.com>
1088
1089         * ppc64-tdep.c (ppc64_plt_entry_point): Renamed from..
1090         (ppc64_desc_entry_point): ..this.  Update comments here and at
1091         call points.
1092         (ppc64_standard_linkage1, ppc64_standard_linkage2,
1093         ppc64_standard_linkage3): Update comments.
1094         (ppc64_standard_linkage4, ppc64_standard_linkage5,
1095         (ppc64_standard_linkage6, ppc64_standard_linkage7): New insn
1096         patterns.
1097         (ppc64_standard_linkage4_target): New function.
1098         (ppc64_skip_trampoline_code): Skip ELFv2 patterns too.
1099         * rs6000-tdep.c (skip_prologue): Skip ELFv2 r2 setup.  Correct
1100         nop match.  Fix comment wrap.
1101
1102 2013-11-14  Pedro Alves  <palves@redhat.com>
1103
1104         * infrun.c (handle_signal_stop): Move STOP_QUIETLY,
1105         STOP_QUIETLY_REMOTE and 'stop_after_trap' handling earlier.
1106
1107 2013-11-14  Pedro Alves  <palves@redhat.com>
1108
1109         * infrun.c (struct execution_control_state)
1110         <stepped_after_stopped_by_watchpoint>: New field.
1111         (get_inferior_stop_soon): New function.
1112         (handle_inferior_event): 'stepped_after_stopped_by_watchpoint' was
1113         moved to struct execution_control_state -- adjust.  Use
1114         get_inferior_stop_soon.  Split TARGET_WAITKIND_STOPPED handling to
1115         new function.
1116         (handle_signal_stop): New function, factored out from
1117         handle_inferior_event.
1118
1119 2013-11-14  Pedro Alves  <palves@redhat.com>
1120
1121         * break-catch-sig.c (signal_catchpoint_explains_signal): Adjust to
1122         return a boolean.
1123         * breakpoint.c (bpstat_explains_signal): Adjust to return a
1124         boolean.
1125         (explains_signal_watchpoint, base_breakpoint_explains_signal):
1126         Adjust to return a boolean.
1127         * breakpoint.h (enum bpstat_signal_value): Delete.
1128         (struct breakpoint_ops) <explains_signal>: New returns a boolean.
1129         (bpstat_explains_signal): Likewise.
1130         * infrun.c (handle_inferior_event) <random signal checks>:
1131         bpstat_explains_signal now returns a boolean - adjust.  No longer
1132         consider hiding signals.
1133
1134 2013-11-14  Pedro Alves  <palves@redhat.com>
1135
1136         * breakpoint.c (bpstat_explains_signal) <Moribund locations>:
1137         Return BPSTAT_SIGNAL_PASS instead of BPSTAT_SIGNAL_HIDE.
1138         (explains_signal_watchpoint): Return BPSTAT_SIGNAL_PASS instead of
1139         BPSTAT_SIGNAL_HIDE.
1140         (base_breakpoint_explains_signal): Return BPSTAT_SIGNAL_PASS
1141         instead of BPSTAT_SIGNAL_HIDE.
1142         * infrun.c (handle_inferior_event): Rework random signal checks.
1143
1144 2013-11-14  Pedro Alves  <palves@redhat.com>
1145
1146         * infrun.c (struct execution_control_state): Remove
1147         'random_signal' field.
1148         (handle_syscall_event): Use bpstat_causes_stop instead of
1149         bpstat_explains_signal.  Don't set ecs->random_signal.
1150         (handle_inferior_event): New 'random_signal' local.
1151         <TARGET_WAITKIND_FORKED, TARGET_WAITKIND_VFORKED,
1152         TARGET_WAITKIND_EXECD>: Use bpstat_causes_stop instead of
1153         bpstat_explains_signal.  Don't set ecs->random_signal.
1154         <TARGET_WAITKIND_STOPPED>: Adjust to use local instead of
1155         ecs->random_signal.
1156
1157 2013-11-14  Pedro Alves  <palves@redhat.com>
1158
1159         * infrun.c (handle_inferior_event): Move comment from the
1160         function's body to the function's description, adjusted.
1161
1162 2013-11-14  Pedro Alves  <palves@redhat.com>
1163
1164         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>:
1165         Handle STOP_QUIETLY_NO_SIGSTOP and STOP_QUIETLY_REMOTE here.
1166         Assert we never fall through out of the TARGET_WAITKIND_LOADED
1167         case.
1168
1169 2013-11-14  Tom Tromey  <tromey@redhat.com>
1170
1171         * python/py-linetable.c (ltpy_has_line)
1172         (ltpy_get_all_source_lines): Fix loop termination condition.
1173
1174 2013-11-14  Joel Brobecker  <brobecker@adacore.com>
1175
1176         * mi/mi-parse.h (struct mi_parse) <language>: New field.
1177         * mi/mi-main.c (mi_cmd_execute): Temporarily set language to
1178         PARSE->LANGUAGE during command execution, if set.
1179         * mi/mi-parse.c: Add "language.h" #include.
1180         (mi_parse): Add parsing of "--language" command option.
1181
1182         * NEWS: Add entry mentioning the new "--language" command option.
1183
1184 2013-11-14  Pedro Alves  <palves@redhat.com>
1185             Joel Brobecker  <brobecker@adacore.com>
1186
1187         * cli/cli-utils.h (extract_arg_const): Add declaration.
1188         * cli/cli-utils.c (extract_arg_const): New function.
1189         (extract_arg): Reimplement using extract_arg_const.
1190
1191 2013-11-14  Joel Brobecker  <brobecker@adacore.com>
1192
1193         * language.h: Add "symtab.h" #include.
1194
1195 2013-11-13  Doug Evans  <xdje42@gmail.com>
1196
1197         * breakpoint.c (bpstat_check_breakpoint_conditions): For thread
1198         specific breakpoints, don't evaluate breakpoint condition if
1199         different thread.
1200
1201 2013-11-13  Keith Seitz  <keiths@redhat.com>
1202
1203         PR c++/7935
1204         PR c++/10541
1205         * cp-support.c (insepct_type): Add support for substituting
1206         namespace aliases, too.
1207         * dwarf2read.c (scan_partial_symbols): Add a partial symbol
1208         for DW_TAG_imported_declaration.
1209         (add_partial_symbol): Likewise.
1210         (process_die): Handle namespace aliases with
1211         read_namespace_alias.
1212         (die_needs_namespace): Add DW_TAG_imported_declaration.
1213         (read_namespace_alias): New function.
1214         (load_partial_dies): Load DW_TAG_imported_declaration, too.
1215         (new_symbol_full): Handle DW_TAG_imported_declaration.
1216
1217 2013-11-13  Keith Seitz  <keiths@redhat.com>
1218
1219         * p-exp.y (uptok): Make first parameter const.
1220         (yylex): Make `tokstart' and `tokptr' const.
1221         Don't copy the lexer input to a temporary buffer.
1222         Make `p' const.
1223         Remove const workaround for parse_escape.
1224         Create a temporary buffer for a convenience variable instead
1225         of doing in-place modification of the input.
1226         If a match is found with a different case from the input,
1227         do not change the input at all.
1228         Use `tmp' to construct the resultant stoken instead of
1229         `tokstart'.
1230
1231 2013-11-13  Doug Evans  <xdje42@gmail.com>
1232
1233         * breakpoint.c (breakpoint_cond_eval): Fix and enhance comment.
1234
1235 2013-11-13  Joel Brobecker  <brobecker@adacore.com>
1236
1237         * mi/mi-main.c (mi_cmd_list_features): Replace "info-ada-exceptions"
1238         entry with "ada-exceptions".
1239
1240 2013-11-13  Joel Brobecker  <brobecker@adacore.com>
1241
1242         * symfile.c (reread_symbols): Move call to set_objfile_per_bfd
1243         after re-initialization of OBJFILE's obstack.
1244
1245 2013-11-12  Doug Evans  <xdje42@gmail.com>
1246
1247         * breakpoint.c (bpstat_check_breakpoint_conditions): Assert
1248         bs->stop != 0 on entry.  Update function comment.  Simplify early
1249         exit for frame mismatch.  Reindent rest of function.
1250
1251 2013-11-12  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1252
1253         * objc-lang.c (uniquify_strings): Prevent invoking qsort with
1254         NULL.
1255
1256 2013-11-12  Doug Evans  <dje@google.com>
1257
1258         Work around gold/15646.
1259         * dwarf2read.c (read_index_from_section): Update comment.
1260         (struct dw2_symtab_iterator): New member global_seen.
1261         (dw2_symtab_iter_init): Initialize it.
1262         (dw2_symtab_iter_next): Skip duplicate global symbols.
1263         (dw2_expand_symtabs_matching): Ditto.
1264
1265 2013-11-12  Joel Brobecker  <brobecker@adacore.com>
1266
1267         * mi/mi-cmds.h (mi_cmd_info_ada_exceptions): Add declaration.
1268         * mi/mi-cmds.c (mi_cmds): Add entry for -info-ada-exceptions
1269         command.
1270         * mi/mi-cmd-info.c: #include "ada-lang.c" and "arch-utils.c".
1271         (mi_cmd_info_ada_exceptions): New function.
1272         * mi/mi-main.c (mi_cmd_list_features): Add "info-ada-exceptions".
1273
1274 2013-11-12  Joel Brobecker  <brobecker@adacore.com>
1275
1276         * ada-lang.h: #include "vec.h".
1277         (struct ada_exc_info): New.
1278         (ada_exc_info): New typedef.
1279         (DEF_VEC_O(ada_exc_info)): New vector.
1280         (ada_exceptions_list): Add declaration.
1281         * ada-lang.c (ada_is_exception_sym)
1282         (ada_is_non_standard_exception_sym, compare_ada_exception_info)
1283         (sort_remove_dups_ada_exceptions_list)
1284         (ada_exc_search_name_matches, ada_add_standard_exceptions)
1285         (ada_add_exceptions_from_frame, ada_add_global_exceptions)
1286         (ada_exceptions_list_1, ada_exceptions_list)
1287         (info_exceptions_command): New function.
1288         (_initialize_ada_language): Add "info exception" command.
1289
1290 2013-11-11  Phil Muldoon  <pmuldoon@redhat.com>
1291
1292         PR python/15629
1293         * NEWS: Add linetable feature.
1294         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-linetable entries.
1295         * python/py-linetable.c: New file.
1296         * python/py-symtab.c (stpy_get_linetable): New function.
1297         * python/python-internal.h (symtab_to_linetable_object): Declare.
1298         (gdbpy_initialize_linetable): Ditto.
1299         * python/python.c (_initialize_python): Call
1300         gdbpy_initialize_linetable.
1301
1302 2013-11-11  Joel Brobecker  <brobecker@adacore.com>
1303
1304         * ada-lang.c (create_ada_exception_catchpoint): Enhance
1305         the documentation of fields "except_string" and "condition".
1306         * mi/mi-cmd-catch.c (mi_cmd_catch_assert): Reallocate
1307         CONDITION on the heap before passing it to
1308         create_ada_exception_catchpoint.
1309         (mi_cmd_catch_exception): Likewise for EXCEPTION_NAME and
1310         CONDITION.
1311
1312 2013-11-11  Tom Tromey  <tromey@redhat.com>
1313
1314         * config.in, configure: Rebuild.
1315         * configure.ac (HAVE_TKILL_SYSCALL): Check for "syscall".
1316
1317 2013-11-11  Joel Brobecker  <brobecker@adacore.com>
1318
1319         * remote-sim.c (gdbsim_detach): Break declaration into
1320         shorter lines.  No code change.
1321
1322 2013-11-11  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
1323
1324         * remote-sim.c (gdbsim_detach): Fix prototype.
1325
1326 2013-11-08  Doug Evans  <dje@google.com>
1327
1328         * dwarf2read.c (dwarf2_read_debug): Change to unsigned int.
1329         (create_debug_types_hash_table): Only print debugging messages for
1330         each TU if dwarf2-read >= 2.
1331         (process_queue): Ditto.
1332         (_initialize_dwarf2_read): Make "set debug dwarf2-read" a zuinteger.
1333         Update doc string.
1334
1335 2013-11-08  Tom Tromey  <tromey@redhat.com>
1336
1337         * configure: Rebuild.
1338         * configure.ac: Remove mentions of HAVE_MULTIPLE_PROC_FDS.
1339
1340 2013-11-08  Tom Tromey  <tromey@redhat.com>
1341
1342         * configure, config.in: Rebuild.
1343         * configure.ac: Remove unused configury.
1344
1345 2013-11-08  Tom Tromey  <tromey@redhat.com>
1346
1347         * m32c-tdep.c: Use gdb_string.h.
1348
1349 2013-11-08  Tom Tromey  <tromey@redhat.com>
1350
1351         * configure, config.in: Rebuild.
1352         * configure.ac: Remove all link.h-related checks.
1353
1354 2013-11-08  Tom Tromey  <tromey@redhat.com>
1355
1356         * acinclude.m4: Include common.m4.
1357         * common/common.m4: New file.
1358         * configure, config.in: Rebuild.
1359         * configure.ac: Use GDB_AC_COMMON.
1360
1361 2013-11-08  Doug Evans  <dje@google.com>
1362
1363         * NEWS: Mention that "set debug symtab-create" now accepts a
1364         verbosity level.
1365         * buildsym.c (end_symtab_from_static_block): Call set_symtab_primary
1366         to set the symtab's primary flag.
1367         * jit.c (finalize_symtab): Ditto.
1368         * mdebugread.c (psymtab_to_symtab_1): Ditto.
1369         * symfile.c (allocate_symtab): Only print debugging messages for
1370         symtab_create_debug levels 2 and higher.
1371         * symtab.c (symtab_create_debug): Change type to unsigned int.
1372         (set_symtab_primary): New function.
1373         (_initialize_symtab): Change "set debug symtab-create" to a
1374         zuinteger option.
1375         * symtab.h (set_symtab_primary): Declare.
1376         (symtab_create_debug): Update decl.
1377
1378 2013-11-08  Tom Tromey  <tromey@redhat.com>
1379
1380         * aix-thread.c (aix_thread_detach): Update.
1381         * corelow.c (core_detach): Update.
1382         * darwin-nat.c (darwin_detach): Update.
1383         * dec-thread.c (dec_thread_detach): Update.
1384         * gnu-nat.c (gnu_detach): Update.
1385         * go32-nat.c (go32_detach): Update.
1386         * inf-ptrace.c (inf_ptrace_detach): Update.
1387         * inf-ttrace.c (inf_ttrace_detach): Update.
1388         * linux-fork.c (linux_fork_detach): Update.
1389         * linux-fork.h (linux_fork_detach): Update.
1390         * linux-nat.c (linux_nat_detach): Update.  Introduce "tem"
1391         local for const-correctness.
1392         * linux-thread-db.c (thread_db_detach): Update.
1393         * monitor.c (monitor_detach): Update.
1394         * nto-procfs.c (procfs_detach): Update.
1395         * procfs.c (procfs_detach): Update.
1396         * record.c (record_detach): Update.
1397         * record.h (record_detach): Update.
1398         * remote-m32r-sdi.c (m32r_detach): Update.
1399         * remote-mips.c (mips_detach): Update.
1400         * remote-sim.c (gdbsim_detach): Update.
1401         * remote.c (remote_detach_1, remote_detach)
1402         (extended_remote_detach): Update.
1403         * sol-thread.c (sol_thread_detach): Update.
1404         * target.c (target_detach): Make "args" const.
1405         (init_dummy_target): Update.
1406         * target.h (struct target_ops) <to_detach>: Make argument const.
1407         (target_detach): Likewise.
1408         * windows-nat.c (windows_detach): Update.
1409
1410 2013-11-07  Doug Evans  <dje@google.com>
1411
1412         PR 11786
1413         *  solib-svr4.c (svr4_exec_displacement): Ignore filesz, memsz, flags
1414         and align fields for PT_GNU_RELRO segments.
1415
1416 2013-11-07  Phil Muldoon  <pmuldoon@redhat.com>
1417
1418         PR python/15747
1419         * python/py-cmd.c: Add COMPLETE_EXPRESSION constant.
1420
1421 2013-11-07  Phil Muldoon  <pmuldoon@redhat.com>
1422
1423         * NEWS: Document Python temporary breakpoint support.
1424         * python/py-breakpoint.c (bppy_get_temporary): New function.
1425         (bppy_init): New keyword: temporary. Parse it and set breakpoint
1426         to temporary if True.
1427
1428 2013-11-07  Jose E. Marchesi  <jose.marchesi@oracle.com>
1429
1430         * sparc-tdep.c (sparc_analyze_control_transfer): Assertion
1431         removed to allow analyzing unconditional branch instructions
1432         with PC-relative offsets of zero.
1433
1434 2013-11-07  Yao Qi  <yao@codesourcery.com>
1435
1436         * mi/mi-cmd-var.c: Include "language.h".
1437         (mi_cmd_var_info_expression): Get language name from
1438         language_defn.
1439         * varobj.c (varobj_language_string): Remove.
1440         (variable_language): Remove declaration.
1441         (languages): Remove.
1442         (varobj_get_language): Change the type of return value.
1443         (variable_language): Remove.
1444         * varobj.h (enum varobj_languages): Remove.
1445         (varobj_language_string): Remove declaration.
1446         (varobj_get_language): Update declaration.
1447
1448 2013-11-07  Yao Qi  <yao@codesourcery.com>
1449
1450         * language.h (struct language_defn) <la_natural_name>: New
1451         field.
1452         * ada-lang.c (ada_language_defn): Initialize field
1453         'la_natural_name'.
1454         * c-lang.c (c_language_defn): Likewise.
1455         (cplus_language_defn, asm_language_defn): Likewise.
1456         * d-lang.c (d_language_defn): Likewise.
1457         * f-lang.c (f_language_defn): Likewise.
1458         * go-lang.c (go_language_defn): Likewise.
1459         * jv-lang.c (java_language_defn): Likewise.
1460         * language.c (unknown_language_defn ): Likewise.
1461         (auto_language_defn): Likewise.
1462         * m2-lang.c (m2_language_defn): Likewise.
1463         * objc-lang.c (objc_language_defn): Likewise.
1464         * opencl-lang.c (opencl_language_defn): Likewise.
1465         * p-lang.c (pascal_language_defn): Likewise.
1466
1467 2013-11-07  Yao Qi  <yao@codesourcery.com>
1468
1469         * language.c (language_str): Return const char *.
1470         (add_language): Add const to 'language_names'
1471         * language.h (struct language_defn) <la_name>: Add const.
1472         (language_str: Update declaration.
1473
1474 2013-11-06  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1475
1476         * s390-linux-nat.c (s390_read_description): Consider the TE field
1477         in the HWCAP for determining 'have_regset_tdb'.
1478
1479 2013-11-06  Will Newton  <will.newton@linaro.org>
1480
1481         PR gdb/12866
1482         * dwarf2read.c (skip_one_die): Sanity check DW_AT_sibling
1483         values.  (read_partial_die): Likewise.
1484
1485 2013-11-06  Muhammad Bilal  <mbilal@codesourcery.com>
1486
1487         PR cli/16122
1488         * top.c (command_line_input): Unify interactivity tests to use
1489         input_from_terminal_p.
1490         * event-top.c (command_line_handler): Likewise.
1491
1492 2013-11-06  Yao Qi  <yao@codesourcery.com>
1493
1494         * Makefile.in (check-perf): New target.
1495
1496 2013-11-05  Will Newton  <will.newton@linaro.org>
1497
1498         PR gdb/7670
1499         * arm-tdep.c (print_fpu_flags): Use filtered output routines.
1500         (arm_print_float_info): Likewise.
1501
1502 2013-11-04  Anton Blanchard  <anton@samba.org>
1503
1504         * target.c (memory_xfer_partial): Cap write to 4KB.
1505
1506 2013-11-01  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
1507
1508         * breakpoint.c (create_longjmp_master_breakpoint): Allow libc
1509         probe scan even when the arch provides no get_longjmp_target.
1510
1511 2013-10-31  Pedro Alves  <palves@redhat.com>
1512
1513         * infrun.c (handle_syscall_event): Don't set or clear stop_signal.
1514         (handle_inferior_event) <TARGET_WAITKIND_FORKED,
1515         TARGET_WAITKIND_VFORKED>: Don't set stop_signal to
1516         GDB_SIGNAL_TRAP, or clear it.  Pass GDB_SIGNAL_0 to
1517         bpstat_explains signal, instead of GDB_SIGNAL_TRAP.
1518         <bpstat handling>: If the bpstat chain wants the signal to be
1519         hidden, then set stop_signal to GDB_SIGNAL_0 instead of
1520         GDB_SIGNAL_TRAP.
1521
1522 2013-10-31  Andrew Burgess  <aburgess@broadcom.com>
1523
1524         * breakpoint.c (update_watchpoint): Update error message and add
1525         an additional error message.
1526
1527 2013-10-30  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1528
1529         * s390-tdep.h: Rename to...
1530         * s390-linux-tdep.h: ...here.
1531         * s390-tdep.c: Rename to...
1532         * s390-linux-tdep.c: ...here.  Adjust #include.
1533         * s390-nat.c: Rename to...
1534         * s390-linux-nat.c: ...here.  Adjust #include.
1535         * config/s390/s390.mh: Rename to...
1536         * config/s390/linux.mh: ...here.  Reflect rename s390-nat.o ->
1537         s390-linux-nat.o.
1538         * configure.host: Reflect host rename "s390" -> "linux".
1539         * configure.tgt: Reflect rename s390-tdep.o -> s390-linux-tdep.o.
1540         * Makefile.in (ALL_TARGET_OBS): Likewise.
1541         (HFILES_NO_SRCDIR): Reflect rename s390-tdep.h ->
1542         s390-linux-tdep.h.
1543         (ALLDEPFILES): Reflect rename of .c files.
1544
1545 2013-10-30  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1546
1547         * s390-nat.c: Whitespace cleanup.
1548         * s390-tdep.c: Likewise.
1549         * s390-tdep.h: Remove empty line at end of file.
1550
1551 2013-10-30  Maciej W. Rozycki  <macro@codesourcery.com>
1552
1553         * linux-tdep.c (linux_corefile_thread_callback): Preinitialize
1554         siginfo_size.
1555
1556 2013-10-29  Tom Tromey  <tromey@redhat.com>
1557
1558         * utils.c (reg): Move undefinition...
1559         * gdb_curses.h: ... here.  Update comment to mention AIX.
1560
1561 2013-10-29  Nicolas Blanc  <nicolas.blanc@intel.com>
1562
1563         * exec.h (add_target_sections_of_objfile): New declaration.
1564         * exec.c (add_target_sections_of_objfile): New function.
1565         * symfile.c (add_symbol_file_command): Update current target sections.
1566         (remove_symbol_file_command): New command.
1567         (symfile_free_objfile): New function.
1568         (_initialize_symfile): Register observer for free_objfile events.
1569         * NEWS: Add description of the remove-symbol-file command.
1570         * breakpoint.c (disable_breakpoints_in_freed_objfile): New function.
1571         * objfiles.c (free_objfile): Notify free_objfile.
1572         (is_addr_in_objfile): New function.
1573         * objfiles.h (is_addr_in_objfile): New declaration.
1574         * printcmd.c (clear_dangling_display_expressions): Act upon free_objfile
1575         events instead of solib_unloaded events.
1576         (_initialize_printcmd): Register observer for free_objfile instead
1577         of solib_unloaded notifications.
1578         * solib.c (remove_user_added_objfile): New function.
1579         (_initialize_symfile): Add remove-symbol-file.
1580
1581 2013-10-29  Andrew Burgess  <aburgess@broadcom.com>
1582
1583         * infcmd.c (default_print_one_register_info): Use val_print to
1584         print all values even optimized out or unavailable ones.  Don't
1585         try to print a raw form of optimized out or unavailable values.
1586
1587 2013-10-29  Yao Qi  <yao@codesourcery.com>
1588
1589         * auto-load.c (auto_load_pspace_data_cleanup): Get data from
1590         parameter 'arg' instead of from program_space_data.
1591         * objfiles.c (objfiles_pspace_data_cleanup): Likewise.
1592         * solib-darwin.c (darwin_pspace_data_cleanup): Likewise.
1593         * solib-dsbt.c (dsbt_pspace_data_cleanup): Likewise.
1594         * solib-svr4.c (svr4_pspace_data_cleanup): Likewise.
1595         * inflow.c (inflow_inferior_data_cleanup): Get data from
1596         parameter 'arg' instead of inferior_data.
1597         * registry.h: Add comments.
1598
1599 2013-10-28  Pedro Alves  <palves@redhat.com>
1600
1601         * breakpoint.c (watchpoints_triggered)
1602         <!target_stopped_data_address>: Hardcode return 1.
1603
1604 2013-10-28  Pedro Alves  <palves@redhat.com>
1605
1606         * infrun.c (process_event_stop_test): Remove unnecessary scoping
1607         level and reindent.
1608
1609 2013-10-28  Pedro Alves  <palves@redhat.com>
1610
1611         * infrun.c (process_event_stop_test): New function, factored out
1612         from handle_inferior_event.
1613         (handle_inferior_event): 'process_event_stop_test' is now a
1614         function instead of a goto label -- adjust.
1615
1616 2013-10-28  Pedro Alves  <palves@redhat.com>
1617
1618         * infrun.c (handle_inferior_event): Move process_event_stop_test
1619         goto label to the else branch of the ecs->random_signal check,
1620         along with FRAME and GDBARCH re-fetching.
1621
1622 2013-10-28  Pedro Alves  <palves@redhat.com>
1623
1624         * infrun.c (switch_back_to_stepped_thread): New function, factored
1625         out from handle_inferior_event.
1626         (handle_inferior_event): Adjust to call
1627         switch_back_to_stepped_thread.  Call it also at the tail of the
1628         random signal handling, and return, instead of also handling
1629         random signals just before the stepping tests.
1630
1631 2013-10-28  Pedro Alves  <palves@redhat.com>
1632
1633         * infrun.c (clear_stop_func): Delete.
1634         (handle_inferior_event): Don't call clear_stop_func and don't
1635         clear 'ecs->random_signal'.
1636
1637 2013-10-27  Yao Qi  <yao@codesourcery.com>
1638
1639         * varobj.c (struct varobj_root) <lang>: Rename to 'lang_ops'.
1640         (varobj_create, varobj_get_path_expr): Update.
1641         (varobj_value_has_mutated, varobj_update): Likewise.
1642         (create_child_with_value, new_root_variable): Likewise.
1643         (number_of_children, name_of_variable): Likewise.
1644         (value_of_child, my_value_of_variable): Likewise.
1645         (varobj_value_is_changeable_p): Likewise.
1646
1647 2013-10-25  Yao Qi  <yao@codesourcery.com>
1648
1649         * language.h (struct lang_varobj_ops): Declare.
1650         (struct language_defn) <la_varobj_ops>: New field.
1651         * ada-lang.c: Include "varobj.h"
1652         (defn ada_language_defn): Initialize field 'la_varobj_ops' with
1653         ada_varobj_ops.
1654         * c-lang.c: Include "varobj.h"
1655         (c_language_defn): Initialize field 'la_varobj_ops' with
1656         c_varobj_ops.
1657         (cplus_language_defn): Initialize field 'la_varobj_ops' with
1658         cplus_varobj_ops.
1659         (asm_language_defn): Initialize field 'la_varobj_ops' with
1660         default_varobj_ops.
1661         (minimal_language_defn): Likewise.
1662         * d-lang.c (d_language_defn): Likewise.
1663         * f-lang.c (f_language_defn): Likewise.
1664         * go-lang.c (go_language_defn): Likewise.
1665         * m2-lang.c (m2_language_defn): Likewise.
1666         * objc-lang.c (objc_language_defn): Likewise.
1667         * opencl-lang.c (opencl_language_defn): Likewise.
1668         * p-lang.c (pascal_language_defn): Likewise.
1669         * language.c (unknown_language_defn): Likewise.
1670         (auto_language_defn): Likewise.
1671         (local_language_defn): Likewise.
1672         * jv-lang.c (java_language_defn): Initialize field
1673         'la_varobj_ops' with java_varobj_ops.
1674         * varobj.c (varobj_create): Update.
1675         * varobj.h (default_varobj_ops): Define macro.
1676
1677 2013-10-25  Pedro Alves  <palves@redhat.com>
1678
1679         * cp-valprint.c (cp_print_value_fields): No longer handle a NULL
1680         static field value.
1681         (cp_print_static_field): If the value is entirely optimized out,
1682         print <optimized out> here.
1683         * jv-valprint.c (java_print_value_fields): No longer handle a NULL
1684         static field value.
1685         * p-valprint.c (pascal_object_print_static_field): If the value is
1686         entirely optimized out, print <optimized out> here.
1687         * valops.c (do_search_struct_field)
1688         (value_struct_elt_for_reference): No longer handle a NULL static
1689         field value.
1690         * value.c (value_static_field): Return an optimized out value
1691         instead of NULL.
1692
1693 2013-10-25  Yao Qi  <yao@codesourcery.com>
1694
1695         * remote.c (remote_traceframe_info): Return early if
1696         traceframe is not selected.
1697
1698 2013-10-25  Yao Qi  <yao@codesourcery.com>
1699
1700         * tracepoint.c (traceframe_fun): Remove.
1701         (traceframe_sal): Remove.
1702         (set_traceframe_context): Add local variables.
1703
1704 2013-10-25  Joel Brobecker  <brobecker@adacore.com>
1705
1706         * varobj.h (struct lang_varobj_ops): Remove spaces between '*'
1707         and parameter name.
1708
1709 2013-10-24  Maciej W. Rozycki  <macro@codesourcery.com>
1710
1711         * linux-tdep.c (linux_corefile_thread_callback): Propagate any
1712         failure from register information collection.
1713
1714 2013-10-24  Maciej W. Rozycki  <macro@codesourcery.com>
1715
1716         * linux-tdep.c (linux_corefile_thread_data): Remove `num_notes'
1717         member.
1718         (linux_corefile_thread_callback): Update accordingly.
1719         (linux_make_corefile_notes): Likewise.
1720
1721 2013-10-24  Pedro Alves   <palves@redhat.com>
1722
1723         * NEWS (New options): Mention set/show startup-with-shell.
1724         * config/alpha/nm-osf3.h (START_INFERIOR_TRAPS_EXPECTED): Set to 2
1725         instead of 3.
1726         * fork-child.c (fork_inferior, startup_inferior): Handle 'set
1727         startup-with-shell'.
1728         (show_startup_with_shell): New function.
1729         (_initialize_fork_child): Register the set/show startup-with-shell
1730         commands.
1731         * inf-ptrace.c (inf_ptrace_create_inferior): Remove comment.
1732         * inf-ttrace.c (inf_ttrace_him): Remove comment.
1733         * procfs.c (procfs_init_inferior): Remove comment.
1734         * infcmd.c (startup_with_shell): New global.
1735         * inferior.h (startup_with_shell): Declare global.
1736         (STARTUP_WITH_SHELL): Delete.
1737         (START_INFERIOR_TRAPS_EXPECTED): Set to 1 by default instead of 2.
1738
1739 2013-10-23  Pedro Alves  <palves@redhat.com>
1740
1741         * common/gdb_signals.h (gdb_signal_to_symbol_string): Declare.
1742         * common/signals.c: Include "gdb_assert.h".
1743         (signals): New field 'symbol'.
1744         (SET): Use the 'symbol' parameter.
1745         (gdb_signal_to_symbol_string): New function.
1746         * infrun.c (handle_inferior_event) <random signal>: In debug
1747         output, print the random signal enum as string in addition to its
1748         number.
1749         * target/waitstatus.c (target_waitstatus_to_string): Print the
1750         signal's enum value as string instead of the (POSIX) signal name.
1751
1752 2013-10-23  Gary Benson  <gbenson@redhat.com>
1753
1754         PR 16013
1755         * common/linux-osdata.c (command_from_pid): Reduced size of cmd
1756         from 32 to 18.  Adjusted fscanf format string accordingly.
1757         (Avoids leaving cmd unterminated.)
1758         (print_sockets): Do not parse tlen, inode, sl, timeout, txq, rxq,
1759         trun, retn or extra.  (Avoids leaving extra unterminated.)  Check
1760         that local_address and remote_address will not overflow.
1761         (linux_xfer_osdata_modules): Parse lines using strtok to avoid
1762         leaving dependencies unterminated.  Parse size as "%u" to match
1763         definition.
1764
1765 2013-10-22  Pedro Alves  <palves@redhat.com>
1766
1767         * infrun.c (handle_inferior_event) <thread hop>: Don't clear or
1768         set ecs->random signal.
1769
1770 2013-10-22  Pedro Alves  <palves@redhat.com>
1771
1772         * infrun.c (keep_going): Update comments.
1773
1774 2013-10-22  Pedro Alves  <palves@redhat.com>
1775
1776         * remote.c (remote_parse_stop_reply) <'T'/'S'/'X' replies>: Map
1777         invalid signal numbers to GDB_SIGNAL_UNKNOWN.
1778
1779 2013-10-22  Pedro Alves  <palves@redhat.com>
1780
1781         * include/gdb/signals.def (TARGET_EXC_BAD_ACCESS): Rename to
1782         GDB_EXC_BAD_ACCESS.
1783         (TARGET_EXC_BAD_INSTRUCTION): Rename to GDB_EXC_BAD_INSTRUCTION.
1784         (TARGET_EXC_ARITHMETIC): Rename to GDB_EXC_ARITHMETIC.
1785         (TARGET_EXC_EMULATION): Rename to GDB_EXC_EMULATION.
1786         (TARGET_EXC_SOFTWARE): Rename to GDB_EXC_SOFTWARE.
1787         (TARGET_EXC_BREAKPOINT): Rename to GDB_EXC_BREAKPOINT.
1788         (GDB_SIGNAL_LAST): Change description string.
1789         * common/signals.c (gdb_signal_from_host, do_gdb_signal_to_host):
1790         Adjust to signal renaming.
1791         * darwin-nat.c (darwin_decode_message): Likewise.
1792
1793 2013-10-22  Jose E. Marchesi  <jose.marchesi@oracle.com>
1794
1795         * MAINTAINERS (Write After Approval): Add myself to the list.
1796
1797 2013-10-18  Andrew Burgess  <aburgess@broadcom.com>
1798
1799         * breakpoint.c (update_watchpoint): If hardware watchpoints are
1800         forced off, downgrade them to software watchpoints if possible,
1801         and error out if not possible.
1802         (watch_command_1): Move watchpoint type selection closer to
1803         watchpoint creation, and extend the comments.
1804
1805 2013-10-18  Pedro Alves  <palves@redhat.com>
1806
1807         PR gdb/16062
1808         * infrun.c (handle_inferior_event): Keep going if we got a random
1809         signal we should not stop for, instead of falling through to the
1810         step tests.
1811
1812 2013-10-18  Yao Qi  <yao@codesourcery.com>
1813
1814         * c-varobj.c (cplus_number_of_children): Fix indentation.
1815
1816 2013-10-17  Tom Tromey  <tromey@redhat.com>
1817
1818         PR gdb/15995:
1819         * printcmd.c (printcmd): Call gdb_flush.
1820
1821 2013-10-17  Tom Tromey  <tromey@redhat.com>
1822
1823         * elfread.c (struct elfinfo) <stabindexsect>: Remove.
1824         (elf_locate_sections): Update.
1825
1826 2013-10-17  Yao Qi  <yao@codesourcery.com>
1827
1828         * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
1829         * ada-varobj.c: Remove the include of ada-varobj.h.
1830         (ada_varobj_get_number_of_children): Declare.
1831         (ada_varobj_get_name_of_child): Make it static.
1832         (ada_varobj_get_path_expr_of_child): Likewise.
1833         (ada_varobj_get_value_of_child): Likewise.
1834         (ada_varobj_get_type_of_child): Likewise.
1835         (ada_varobj_get_value_of_array_variable): Likewise.
1836         * ada-varobj.h: Remove.
1837
1838 2013-10-17  Yao Qi  <yao@codesourcery.com>
1839
1840         * Makefile.in (SFILES): Add c-varobj.c and jv-varobj.c.
1841         (COMMON_OBS): Add c-varobj.o and jv-varobj.o.
1842         * ada-varobj.c: Include "varobj.h".
1843         (ada_number_of_children): New.  Moved from varobj.c.
1844         (ada_name_of_variable, ada_name_of_child): Likewise.
1845         (ada_path_expr_of_child, ada_value_of_child): Likewise.
1846         (ada_type_of_child, ada_value_of_variable): Likewise.
1847         (ada_value_is_changeable_p, ada_value_has_mutated): Likewise.
1848         (ada_varobj_ops): New.
1849         * c-varobj.c, jv-varobj.c: New file.  Moved from varobj.c.
1850         * gdbtypes.c (get_target_type): New.  Moved from varobj.c.
1851         * gdbtypes.h (get_target_type): Declare.
1852         * varobj.c: Remove the inclusion of "ada-varobj.h" and
1853         "ada-lang.h".
1854         (ANONYMOUS_STRUCT_NAME): Move it to c-varobj.c.
1855         (ANONYMOUS_UNION_NAME): Likewise.
1856         (get_type, get_value_type, get_target_type): Remove declarations.
1857         (value_get_print_value, varobj_value_get_print_value): Likewise.
1858         (c_number_of_children, c_name_of_variable): Likewise.
1859         (c_name_of_child, c_path_expr_of_child): Likewise.
1860         (c_value_of_child, c_type_of_child): Likewise.
1861         (c_value_of_variable, cplus_number_of_children): Likewise.
1862         (cplus_class_num_children, cplus_name_of_variable): Likewise.
1863         (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
1864         (cplus_value_of_child, cplus_type_of_child): Likewise.
1865         (cplus_value_of_variable, java_number_of_children): Likewise.
1866         (java_name_of_variable, java_name_of_child): Likewise.
1867         (java_path_expr_of_child, java_value_of_child): Likewise.
1868         (java_type_of_child, java_value_of_variable): Likewise.
1869         (ada_number_of_children, ada_name_of_variable): Likewise.
1870         (ada_name_of_child, ada_path_expr_of_child): Likewise.
1871         (ada_value_of_child, ada_type_of_child): Likewise.
1872         (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
1873         (ada_value_has_mutated): Likewise.
1874         (struct language_specific): Move it to varobj.h.
1875         (CPLUS_FAKE_CHILD): Move it to varobj.h.
1876         (restrict_range): Rename it varobj_restrict_range.  Make it extern.
1877         Callers update.
1878         (get_path_expr_parent): Rename it to varobj_get_path_expr_parent.
1879         Make it extern.
1880         (is_anonymous_child): Move it to c-varobj.c and rename to
1881         varobj_is_anonymous_child.  Caller update.
1882         (get_type): Move it to c-varobj.c.
1883         (get_value_type): Rename it varobj_get_value_type.  Make it
1884         extern.
1885         (get_target_type): Move it gdbtypes.c.
1886         (varobj_formatted_print_options): New function.
1887         (value_get_print_value): Rename it to
1888         varobj_value_get_print_value and make it extern.
1889         (varobj_value_is_changeable_p): Make it extern.
1890         (adjust_value_for_child_access): Move it to c-varobj.c.
1891         (default_value_is_changeable_p): Rename it to
1892         varobj_default_value_is_changeable_p.  Make it extern.
1893         (c_number_of_children, c_name_of_variable): Move it to c-varobj.c
1894         (c_name_of_child, c_path_expr_of_child): Likewise.
1895         (c_value_of_child, c_type_of_child): Likewise.
1896         (c_value_of_variable, cplus_number_of_children): Likewise.
1897         (cplus_class_num_children, cplus_name_of_variable): Likewise.
1898         (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
1899         (cplus_value_of_child, cplus_type_of_child): Likewise.
1900         (cplus_value_of_variable): Likewise.
1901         (java_number_of_children, java_name_of_variable): Move it to jv-varobj.c.
1902         (java_name_of_child, java_path_expr_of_child): Likewise.
1903         (java_value_of_child, java_type_of_child): Likewise.
1904         (java_value_of_variable): Likewise.
1905         (ada_number_of_children, ada_name_of_variable): Move it to ada-varobj.c.
1906         (ada_name_of_child, ada_path_expr_of_child): Likewise.
1907         (ada_value_of_child, ada_type_of_child): Likewise.
1908         (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
1909         (ada_value_has_mutated): Likewise.
1910         * varobj.h (CPLUS_FAKE_CHILD): New macro, moved from varobj.c.
1911         (struct lang_varobj_ops): New.  Renamed by 'struct language_specific'.
1912         (c_varobj_ops, cplus_varobj_ops): Declare.
1913         (java_varobj_ops, ada_varobj_ops): Declare.
1914         (varobj_default_value_is_changeable_p): Declare.
1915         (varobj_value_is_changeable_p): Declare.
1916         (varobj_get_value_type, varobj_is_anonymous_child): Declare.
1917         (varobj_get_path_expr_parent): Declare.
1918         (varobj_value_get_print_value): Declare.
1919         (varobj_formatted_print_options): Declare.
1920         (varobj_restrict_range): Declare.
1921
1922 2013-10-17  Luis Machado  <lgustavo@codesourcery.com>
1923
1924         * target/waitstatus.h (target_waitkind): Remove spurious
1925         character from the comments.
1926
1927 2013-10-17  Joel Brobecker  <brobecker@adacore.com>
1928
1929         * gdbarch.sh (get_longjmp_target): Add method documentation.
1930         * gdbarch.h: Regenerate.
1931
1932 2013-10-16  Tom Tromey  <tromey@redhat.com>
1933
1934         * dbxread.c (read_dbx_symtab) <bss_ext_symbol>: Remove unused
1935         label.
1936
1937 2013-10-16  Luis Machado  <lgustavo@codesourcery.com>
1938
1939         * gcore.in: Call GDB using the full path to the gcore script.
1940         Error out if the GDB binary is not found.
1941
1942 2013-10-16  Sergio Durigan Junior  <sergiodj@redhat.com>
1943
1944         PR gdb/16014
1945         * dwarf2read.c (dw2_get_real_path): Remove unnecessary call to
1946         sizeof.
1947
1948 2013-10-16  Sergio Durigan Junior  <sergiodj@redhat.com>
1949
1950         PR gdb/16042
1951         * target.c (target_disable_btrace): Fix invalid return value for
1952         void function.
1953         (target_teardown_btrace): Likewise.
1954
1955 2013-10-14  Yao Qi  <yao@codesourcery.com>
1956
1957         * varobj.c (struct varobj): Move most of the fields to
1958         varobj.h.
1959         (struct varobj_dynamic): New struct.
1960         (varobj_get_display_hint) [HAVE_PYTHON]: Adjust.
1961         (varobj_has_more): Likewise.
1962         (dynamic_varobj_has_child_method): Likewise.
1963         (update_dynamic_varobj_children): Likewise.
1964         (varobj_get_num_children): Likewise.
1965         (varobj_list_children, varobj_pretty_printed_p): Likewise.
1966         (install_new_value_visualizer): Likewise.
1967         (install_new_value_visualizer, install_new_value): Likewise.
1968         (varobj_update, new_variable, free_variable): Likewise.
1969         (my_value_of_variable, value_get_print_value): Likewise.
1970         (install_visualizer): Change the type of parameter 'var' to
1971         'struct varobjd_dynamic *'.  Callers update.
1972         * varobj.h (struct varobj): Moved from varobj.c.
1973         (struct varobj) <dynamic>: New field.
1974
1975 2013-10-13  Sandra Loosemore  <sandra@codesourcery.com>
1976
1977         * nios2-tdep.c (nios2_reg_names): Use "sstatus" rather than "ba"
1978         as the preferred name of r30.
1979         * nios2-linux-tdep.c (reg_offsets): Likewise.
1980         * features/nios2-cpu.xml: Likewise.
1981         * features/nios2-linux.c: Regenerated.
1982         * features/nios2.c: Regenerated.
1983         * regformats/nios2-linux.dat: Regenerated.
1984
1985 2013-10-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
1986
1987         Canonicalize directories for EXEC_FILENAME.
1988         * exec.c (exec_file_attach): Use gdb_realpath_keepfile for
1989         exec_filename.
1990         * utils.c (gdb_realpath_keepfile): New function.
1991         * utils.h (gdb_realpath_keepfile): New declaration.
1992
1993 2013-10-11  Doug Evans  <dje@google.com>
1994
1995         * Makefile.in (GDBFLAGS): New variable.
1996         (run): New rule.
1997
1998 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
1999
2000         * NEWS: Add entry documenting the new "-catch-assert" and
2001         "-catch-exception" GDB/MI commands.
2002
2003 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
2004
2005         * breakpoint.h (init_ada_exception_breakpoint): Add parameter
2006         "enabled".
2007         * breakpoint.c (init_ada_exception_breakpoint): Add parameter
2008         "enabled".  Set B->ENABLE_STATE accordingly.
2009         * ada-lang.h (ada_exception_catchpoint_kind): Move here from
2010         ada-lang.c.
2011         (create_ada_exception_catchpoint): Add declaration.
2012         * ada-lang.c (ada_exception_catchpoint_kind): Move to ada-lang.h.
2013         (create_ada_exception_catchpoint): Make non-static. Add new
2014         parameter "disabled". Use it in call to
2015         init_ada_exception_breakpoint.
2016         (catch_ada_exception_command): Add parameter "enabled" in call
2017         to create_ada_exception_catchpoint.
2018         (catch_assert_command): Likewise.
2019
2020         * mi/mi-cmds.h (mi_cmd_catch_assert, mi_cmd_catch_exception):
2021         Add declarations.
2022         * mi/mi-cmds.c (mi_cmds): Add the "catch-assert" and
2023         "catch-exception" commands.
2024         * mi/mi-cmd-catch.c: Add #include "ada-lang.h".
2025         (mi_cmd_catch_assert, mi_cmd_catch_exception): New functions.
2026
2027 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
2028
2029         * ada-lang.c (enum ada_exception_catchpoint_kind): Renames
2030         "enum exception_catchpoint_kind".  Replace the "ex_" prefix
2031         of all its enumerates with "ada_".  Update the rest of this
2032         file throughout.
2033
2034 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
2035
2036         * ada-lang.c (ada_decode_exception_location): Delete.
2037         (create_ada_exception_catchpoint): Remove arguments "sal",
2038         "addr_string" and "ops".  Add argument "ex_kind" instead.
2039         Adjust implementation accordingly, calling ada_exception_sal
2040         to get the entities it no longer gets passed as arguments.
2041         Document the function's arguments.
2042         (catch_ada_exception_command): Use catch_ada_exception_command_split
2043         instead of ada_decode_exception_location, and update call to
2044         create_ada_exception_catchpoint.
2045         (catch_ada_assert_command_split): Renames
2046         ada_decode_assert_location.  Remove parameters "addr_string" and
2047         "ops", and now returns void.  Adjust implementation accordingly.
2048         Update the function documentation.
2049         (catch_assert_command): Use catch_ada_assert_command_split
2050         instead of ada_decode_assert_location.  Update call to
2051         create_ada_exception_catchpoint.
2052
2053 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
2054
2055         * utils.h (perror_warning_with_name): Add declaration.
2056         * utils.c (perror_warning_with_name): New function.
2057         * cli/cli-cmds.c (source_script_with_search): Add call to
2058         perror_warning_with_name if from_tty is nul.
2059
2060 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
2061
2062         * utils.c (perror_string): New function, extracted out of
2063         throw_perror_with_name.
2064         (throw_perror_with_name): Rework to use perror_string.
2065
2066 2013-10-11  Yao Qi  <yao@codesourcery.com>
2067
2068         * remote.c (discard_pending_stop_replies_in_queue): Update
2069         declaration.
2070         (struct stop_reply) <rs>: New field.
2071         (remove_stop_reply_of_remote_state): New function.
2072         (discard_pending_stop_replies_in_queue): Add parameter 'rs'.
2073         Callers update.  Pass remove_stop_reply_of_remote_state to
2074         QUEUE_iterate.
2075         (remote_parse_stop_reply): Initialize field 'rs'.
2076
2077 2013-10-10  Will Newton  <will.newton@linaro.org>
2078
2079         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
2080         linux_init_abi.
2081
2082 2013-10-10  Joel Brobecker  <brobecker@adacore.com>
2083
2084         * cli/cli-cmds.c (show_baud_rate): Moved to serial.c as
2085         serial_baud_show_cmd.
2086         (_initialize_cli_cmds): Delete the code creating the
2087         "set/show remotebaud" commands.
2088         * serial.c (baud_rate): Move here from top.c.
2089         (serial_baud_show_cmd): Move here from cli/cli-cmds.c.
2090         (_initialize_serial): Create "set/show serial baud" commands.
2091         Add "set/show remotebaud" command aliases.
2092         * top.c (baud_rate): Moved to serial.c.
2093         * NEWS: Document the new "set/show serial baud" commands,
2094         replacing "set/show remotebaud".
2095
2096 2013-10-09  Pedro Alves  <palves@redhat.com>
2097
2098         * breakpoint.c (insert_bp_location): Use memory_error_message to
2099         build the memory error string.
2100         * c-lang.c: Include "gdbcore.h".
2101         (c_get_string): Use memory_error to throw error.
2102         (target_xfer_memory_error): Delete.
2103         (memory_error_message): New, factored out from
2104         target_xfer_memory_error.
2105         (memory_error): Change parameter type to target_xfer_error.
2106         Rewrite.
2107         (read_memory): Use memory_error instead of
2108         target_xfer_memory_error.
2109         * gdbcore.h: Include "target.h".
2110         (memory_error): Change parameter type to target_xfer_error.
2111         (memory_error_message): Declare function.
2112         * target.c (target_read_memory, target_read_stack)
2113         (target_write_memory, target_write_raw_memory): Return
2114         TARGET_XFER_E_IO on error.  Adjust comments.
2115         (get_target_memory): Pass TARGET_XFER_E_IO to memory_error,
2116         instead of EIO.
2117         * target.h (target_read, target_insert_breakpoint)
2118         (target_remove_breakpoint): Adjust comments.
2119         * valprint.c (partial_memory_read): Rename parameter, and adjust
2120         comment.
2121         (val_print_string): Use memory_error_message to build the memory
2122         error string.
2123
2124 2013-10-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
2125
2126         * common/filestuff.c (gdb_fopen_cloexec): Remove initialization of
2127         result variable.  Rename variable fopen_e_ever_failed to
2128         fopen_e_ever_failed_einval.  Retry fopen only for errno EINVAL.
2129
2130 2013-10-09  Pedro Alves  <palves@redhat.com>
2131
2132         * monitor.c (monitor_write_memory, monitor_write_memory_bytes)
2133         (monitor_write_memory_longlongs, monitor_write_memory_block):
2134         Constify 'myaddr' parameter.
2135         (monitor_xfer_memory): Adjust interface as monitor_xfer_partial
2136         helper.
2137         (monitor_xfer_partial): New function.
2138         (init_base_monitor_ops): Don't install a deprecated_xfer_memory
2139         hook.  Install a to_xfer_partial hook.
2140
2141 2013-10-09  Tom Tromey  <tromey@redhat.com>
2142
2143         * dwarf2read.c (dwarf2_get_dwz_file): Update for type change in
2144         bfd_get_alt_debug_link_info.
2145
2146 2013-10-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
2147
2148         New flag OBJF_NOT_FILENAME.
2149         * auto-load.c (auto_load_objfile_script): Check also OBJF_NOT_FILENAME.
2150         * jit.c (jit_object_close_impl): Use OBJF_NOT_FILENAME for
2151         allocate_objfile.
2152         (jit_bfd_try_read_symtab): Use OBJF_NOT_FILENAME for
2153         symbol_file_add_from_bfd.
2154         * jv-lang.c (get_dynamics_objfile): Use OBJF_NOT_FILENAME for
2155         allocate_objfile.
2156         * objfiles.c (allocate_objfile): Assert OBJF_NOT_FILENAME if NAME is
2157         NULL.
2158         * objfiles.h (OBJF_NOT_FILENAME): New.
2159
2160 2013-10-08  Tom Tromey  <tromey@redhat.com>
2161
2162         * Makefile.in (SFILES): Add build-id.c.
2163         (HFILES_NO_SRCDIR): Add build-id.h.
2164         * build-id.c: New file, largely from elfread.c.  Modified
2165         most functions.
2166         * build-id.h: New file.
2167         * dwarf2read.c (dwarf2_get_dwz_file): Update for change to
2168         bfd_get_alt_debug_link_info.  Verify dwz file's build-id.
2169         Search for dwz file using build-id.
2170         * elfread.c (build_id_bfd_get, build_id_verify)
2171         (build_id_to_debug_filename, find_separate_debug_file): Remove.
2172
2173 2013-10-08  Joel Brobecker  <brobecker@adacore.com>
2174
2175         * ada-lang.c (compare_names_with_case): Renamed from
2176         compare_names, adding a new parameter "casing" and its handling.
2177         New function documentation.
2178         (compare_names): New function, implemented using
2179         compare_names_with_case.
2180
2181 2013-10-08  Joel Brobecker  <brobecker@adacore.com>
2182
2183         * ada-lang.c (ada_exception_sal): Remove advance declaration.
2184
2185 2013-10-07  Tom Tromey  <tromey@redhat.com>
2186
2187         * objfiles.c (free_objfile_per_bfd_storage): Delete the
2188         demangled_names_hash.
2189         (free_objfile): Don't delete the demangled_names_hash.
2190         * objfiles.h (struct objfile_per_bfd_storage)
2191         <demangled_names_hash>: New field.
2192         (struct objfile) <demangled_names_hash>: Move to
2193         objfile_per_bfd_storage.
2194         * symfile.c (reread_symbols): Don't delete the
2195         demangled_names_hash.
2196         * symtab.c (create_demangled_names_hash): Update.
2197         (symbol_set_names): Update.
2198
2199 2013-10-07  Tom Tromey  <tromey@redhat.com>
2200
2201         * gdb_bfd.c (struct gdb_bfd_data) <relocation_computed,
2202         needs_relocations>: New fields.
2203         (gdb_bfd_requires_relocations): New function.
2204         * gdb_bfd.h (gdb_bfd_requires_relocations): Declare.
2205         * objfiles.c (get_objfile_bfd_data): Disallow sharing if
2206         the BFD needs relocations applied.
2207
2208 2013-10-07  Pedro Alves  <palves@redhat.com>
2209
2210         PR breakpoints/11568
2211         * breakpoint.c (remove_threaded_breakpoints): Say "no longer in
2212         the thread list" instead of "gone".
2213
2214 2013-10-06  Sergio Durigan Junior  <sergiodj@redhat.com>
2215
2216         * NEWS: Mention new convenience variable $_exitsignal.
2217         * corelow.c (core_open): Reset exit convenience variables.  Set
2218         $_exitsignal to the uncaught signal which generated the corefile.
2219         * infrun.c (handle_inferior_event): Reset exit convenience
2220         variables.  Set $_exitsignal for TARGET_WAITKIND_SIGNALLED.
2221         (clear_exit_convenience_vars): New function.
2222         * inferior.h (clear_exit_convenience_vars): New prototype.
2223
2224 2013-10-06  Yao Qi  <yao@codesourcery.com>
2225
2226         * varobj.h: Add comments to enum varobj_languages.
2227
2228 2013-10-04  Doug Evans  <dje@google.com>
2229
2230         Add support for DWP file format version 2.
2231         * NEWS: Mention support for DWP file format version 2.
2232         * dwarf2read.c (dwarf2_section_info): Convert asection field to a
2233         union of asection, containing_section.  New fields virtual_offset
2234         and is_virtual.  Change type of readin filed from int to char.
2235         (dwo_sections, dwo_file): Tweak comments.
2236         (dwp_v2_section_ids): New enum.
2237         (dwp_sections): New fields abbrev, info, line, loc, macinfo, macro,
2238         str_offsets, types.
2239         (virtual_v1_dwo_sections): Renamed from virtual_dwo_sections.
2240         All uses updated.
2241         (virtual_v2_dwo_sections): New struct.
2242         (dwp_hash_table): New fields version, nr_columns.  Change type of
2243         section_pool field to a union.
2244         (dwp_file): New field version.
2245         (dwarf2_has_info): Check for virtual sections.
2246         (get_containing_section): New function.
2247         (get_section_bfd_owner, get_section_bfd_section): Call it.
2248         (dwarf2_locate_sections): Update.
2249         (dwarf2_section_empty_p): Update.
2250         (dwarf2_read_section): Handle virtual sections.
2251         (locate_dwz_sections): Update.
2252         (create_dwp_hash_table): Document and handle V2 format.
2253         (locate_v1_virtual_dwo_sections): Renamed from
2254         locate_virtual_dwo_sections and update.  All callers updated.
2255         (create_dwo_unit_in_dwp_v1): Renamed from create_dwo_in_dwp.
2256         Delete arg htab.  Rename arg section_index to unit_index.
2257         All callers updated.
2258         (MAX_NR_V1_DWO_SECTIONS): Renamed from MAX_NR_DWO_SECTIONS.
2259         All uses updated.
2260         (create_dwp_v2_section, create_dwo_unit_in_dwp_v2): New functions.
2261         (lookup_dwo_unit_in_dwp): Add V2 support.
2262         (dwarf2_locate_dwo_sections): Update.
2263         (dwarf2_locate_common_dwp_sections): Renamed from
2264         dwarf2_locate_dwp_sections and update.  All callers updated.
2265         (dwarf2_locate_v2_dwp_sections): New function.
2266         (open_and_init_dwp_file): Add V2 support.
2267         (read_str_index): New locals str_section, str_offsets_section.
2268
2269 2013-10-04  Pedro Alves  <palves@redhat.com>
2270
2271         * common/ptid.c (null_ptid, minus_one_ptid, ptid_build)
2272         (pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid)
2273         (ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p): Replace
2274         describing comments with references to ptid.h.
2275         * common/ptid.h: Remove intro description of constructors,
2276         accessors and predicates.
2277         (struct ptid): Reformat.
2278         (minus_one_ptid, ptid_build, pid_to_ptid, ptid_get_pid)
2279         (ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid): Change
2280         describing comments.
2281
2282 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
2283
2284         * aix-thread.c (sync_threadlists): Add missing ')' in call
2285         to ptid_build.
2286
2287 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
2288
2289         * procfs.c (procfs_init_inferior): Fix typo causing the build
2290         to fail.
2291
2292 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
2293
2294         * aix-thread.c (ptrace32): Remove cast to addr_ptr.
2295
2296 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
2297
2298         * mi/mi-main.c (run_one_inferior): Add function description.
2299         Make ARG a pointer to an integer whose value determines whether
2300         we should "run" or "start" the program.
2301         (mi_cmd_exec_run): Add handling of the "--start" option.
2302         Reject all other command-line options.
2303         * NEWS: Add entry for "-exec-run"'s new "--start" option.
2304
2305 2013-10-04  Yao Qi  <yao@codesourcery.com>
2306
2307         * remote-notif.h (REMOTE_NOTIF_ID): New enum.
2308         (struct notif_client) <pending_event>: Moved
2309         to struct remote_notif_state.
2310         <id>: New field.
2311         (struct remote_notif_state) <pending_event>: New field.
2312         (notif_event_xfree): Declare.
2313         * remote-notif.c (handle_notification): Adjust.
2314         (notif_event_xfree): New function.
2315         (do_notif_event_xfree): Call notif_event_xfree.
2316         (remote_notif_state_xfree): Call notif_event_xfree to free
2317         each element in field pending_event.
2318         * remote.c (discard_pending_stop_replies): Remove declaration.
2319         (discard_pending_stop_replies_in_queue): Declare.
2320         (remote_close): Call discard_pending_stop_replies_in_queue
2321         instead of discard_pending_stop_replies.
2322         (remote_start_remote): Adjust.
2323         (stop_reply_xfree): Call notif_event_xfree.
2324         (notif_client_stop): Adjust initialization.
2325         (remote_notif_remove_all): Rename it to ...
2326         (remove_stop_reply_for_inferior): ... this.  Update comments.
2327         Don't check INF is NULL.
2328         (discard_pending_stop_replies): Return early if notif_state is
2329         NULL.  Adjust.  Don't check INF is NULL.
2330         (remote_notif_get_pending_events): Adjust.
2331         (discard_pending_stop_replies_in_queue): New function.
2332         (remote_wait_ns): Likewise.
2333
2334 2013-10-04  Yao Qi  <yao@codesourcery.com>
2335
2336         * remote-notif.c (DECLARE_QUEUE_P): Remove.
2337         (notif_queue): Remove.
2338         (remote_notif_process): Add one parameter 'notif_queue'.
2339         Update comments.  Callers update.
2340         (remote_async_get_pending_events_token): Remove.
2341         (remote_notif_register_async_event_handler): Remove.
2342         (remote_notif_unregister_async_event_handler): Remove.
2343         (handle_notification): Add parameter 'notif_queue'.  Update
2344         comments.  Callers update.
2345         (notif_xfree): Remove.
2346         (remote_notif_state_allocate): New function.
2347         (remote_notif_state_xfree): New function.
2348         (_initialize_notif): Remove code to allocate queue.
2349         * remote-notif.h (DECLARE_QUEUE_P): Moved from remote-notif.c.
2350         (struct remote_notif_state): New.
2351         (handle_notification): Update declaration.
2352         (remote_notif_process): Likewise.
2353         (remote_notif_register_async_event_handler): Remove.
2354         (remote_notif_unregister_async_event_handler): Remove.
2355         (remote_notif_state_allocate): Declare.
2356         (remote_notif_state_xfree): Declare.
2357         * remote.c (struct remote_state) <notif_state>: New field.
2358         (remote_close): Don't call
2359         remote_notif_unregister_async_event_handler.  Call
2360         remote_notif_state_xfree.
2361         (remote_open_1): Don't call
2362         remote_notif_register_async_event_handler.  Call
2363         remote_notif_state_allocate.
2364
2365 2013-10-04  Yao Qi  <yao@codesourcery.com>
2366
2367         * varobj.c (create_child_with_value): Remove 'const' from the
2368         type of parameter 'name'.
2369         (varobj_add_child): Likewise.
2370         (install_dynamic_child): Remove 'const' from the type of
2371         parameter 'name'.
2372         (varobj_add_child): Likewise.
2373         (create_child_with_value): Likewise.  Update comments.  Don't
2374         duplicate 'name'.
2375         (update_dynamic_varobj_children): Duplicate 'name'
2376         and pass it to install_dynamic_child.
2377
2378 2013-10-03  Phil Muldoon  <pmuldoon@redhat.com>
2379
2380         * python/py-value.c (convert_value_from_python): Move PyInt_Check
2381         conversion logic to occur after PyLong_Check.  Comment on order
2382         change significance.
2383         * python/py-arch.c (archpy_disassemble): Comment on order of
2384         conversion for integers and longs.
2385
2386 2013-10-03  Pedro Alves  <palves@redhat.com>
2387
2388         * common/linux-ptrace.c (linux_check_ptrace_features): Factor out
2389         the PTRACE_O_TRACESYSGOOD and PTRACE_O_TRACEFORK to separate
2390         functions.  Always test for PTRACE_O_TRACESYSGOOD even if
2391         PTRACE_O_TRACEFORK is not supported.
2392         (linux_test_for_tracesysgood): New function.
2393         (linux_test_for_tracefork): New function, factored out from
2394         linux_check_ptrace_features, and also don't kill child_pid here.
2395
2396 2013-10-03  Tristan Gingold  <gingold@adacore.com>
2397
2398         * i386-darwin-nat.c (i386_darwin_dr_set): Fix argument type.
2399         Remove verbose error reporting.  Use detected state to
2400         thread_set_state call.
2401         (i386_darwin_dr_get): Fix return type.  Remove verbose error
2402         report.
2403         Remove trailing spaces.
2404
2405 2013-10-02  Pedro Alves  <palves@redhat.com>
2406
2407         * cp-valprint.c (cp_print_value_fields): Adjust calls to
2408         val_print_optimized_out.
2409         * jv-valprint.c (java_print_value_fields): Likewise.
2410         * p-valprint.c (pascal_object_print_value_fields): Likewise.
2411         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full)
2412         <DWARF_VALUE_REGISTER>: If the register was not saved, return a
2413         new optimized out value.
2414         * findvar.c (address_from_register): Likewise.
2415         * frame.c (put_frame_register): Tweak error string to say the
2416         register was not saved, rather than optimized out.
2417         * infcmd.c (default_print_one_register_info): Adjust call to
2418         val_print_optimized_out.  Use value_of_register instead of
2419         get_frame_register_value.
2420         * mi/mi-main.c (output_register): Use value_of_register instead of
2421         get_frame_register_value.
2422         * valprint.c (valprint_check_validity): Likewise.
2423         (val_print_optimized_out): New value parameter.  If the value is
2424         lval_register, print <not saved> instead.
2425         (value_check_printable, val_print_scalar_formatted): Adjust calls
2426         to val_print_optimized_out.
2427         * valprint.h (val_print_optimized_out): New value parameter.
2428         * value.c (struct value) <optimized_out>: Extend comment.
2429         (error_value_optimized_out): New function.
2430         (require_not_optimized_out): Use it.  Use a different string for
2431         lval_register values.
2432         * value.h (error_value_optimized_out): New declaration.
2433         * NEWS: Mention <not saved>.
2434
2435 2013-10-02  Joel Brobecker  <brobecker@adacore.com>
2436
2437         * symtab.c (compare_search_syms): Use FILENAME_CMP instead of
2438         strcmp to compare two symtab filenames.
2439
2440 2013-10-02  Joel Brobecker  <brobecker@adacore.com>
2441
2442         * symtab.c (search_symbols_equal): Delete.
2443         (sort_search_symbols_remove_dups): Replace call to
2444         search_symbols_equal by call to compare_search_syms,
2445         adjusting as necessary.
2446
2447 2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
2448
2449         PR python/15579
2450         * python/python.c: Document gdb.execute command in Python help.
2451
2452 2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
2453
2454         * python/py-frame.c (frame_info_to_frame_object): Use
2455         gdbpy_convert_exception. Clean up Python object on failure.
2456
2457 2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
2458
2459         * python/lib/gdb/command/frame_filters.py
2460         (InfoFrameFilter.list_frame_filters): Retrieve exception manually.
2461         (ShowFrameFilterPriority.invoke): Ditto.
2462
2463 2013-10-01  Keith Seitz  <keiths@redhat.com>
2464
2465         * linespec.c (struct ls_parser): Make 'saved_arg' const.
2466         (parse_linespec): Make 'argptr' const.
2467         Remove temporary cast of 'argptr' to const char **.
2468         (decode_line_full): Pass const pointer to parse_linespec.
2469         (decode_line_1): Likewise.
2470         (decode_objc): Make local variable 'new_argptr' const.
2471         (find_function_symbols): Remove temporary cast to char *
2472         to find_imps.
2473         * objc-lang.c (find_imps): Make argument 'method' const.
2474         Return const.
2475         * objc-lang.h (find_imps): Likewise.
2476
2477 2013-10-01  Keith Seitz  <keiths@redhat.com>
2478
2479         * completer.c (skip_quoted_chars): Make all arguments const.
2480         Return const.
2481         (skip_quoted): Likewise.
2482         * completer.h (skip_quoted_chars): Likewise.
2483         (skip_quoted): Likewise.
2484         * defs.h (skip_quoted): Remove duplicate declaration.
2485         * jv-exp.y: Include completer.h.
2486         (yylex): Remove unneccessary cast to char * fro skip_quoted.
2487         * p-exp.y: Include completer.h.
2488
2489 2013-10-01  Keith Seitz  <keiths@redhat.com>
2490
2491         * c-exp.y (parse_number): Make first argument const.
2492         Make a copy of the input to manipulate.
2493         (c_parse_escape): Make first argument const.
2494         Make local variable 'tokptr' const.
2495         (parse_string_or_char): Make first two arguments const.
2496         (macro_original_text): Make const.
2497         (lex_one_token): Make local variable 'tokstart' const.
2498         Likewise for local variables named 'p'.
2499         Cast away const for struct stoken (temporary).
2500         * c-lang.h (c_parse_escpae): Make first argument const.
2501         * cli/cli-cmds.c (echo_command): Make local variable 'p'
2502         const.
2503         * cli/cli-setshow.c (do_set_command): Likewise for 'p' in
2504         var_string case.
2505         * f-exp.y (parse_number): Make first argument const.
2506         (match_string_literal): Make local variable 'tokstart'
2507         const.
2508         (yylex): Make local variable 'p' const.
2509         Cast away const for struct stoken (temporary).
2510         * go-exp.y (parse_number): Make first argument const.
2511         (parse_string_or_char): Likewise.
2512         Make local variable 'tokstart' const.
2513         (lex_one_token): Likewise for numerous locals called 'p'.
2514         Cast away const for struct stoken (temporary).
2515         * jv-exp.y (parse_number): Make first argument const.
2516         Make local variables 'tokstart' and 'tokptr' const.
2517         Cast away const for call to skip_quoted (temporary).
2518         (yylex): Make local variable 'p' const.
2519         Cast away const for struct stoken (temporary).
2520         * m2-exp.y (parse_number): Make local variable 'p' const.
2521         (yylex): Likewise for 'tokstart'.
2522         Cast away const for struct stoken (temporary).
2523         Make local variable 'p' const.
2524         * macroexp.c (get_character_constant): Pass a const string
2525         to c_parse_escape.
2526         (get_string_literal): Likewise.
2527         (macro_expand_next): Make first argument const.
2528         Cast away const for init_shared_buffer.
2529         * macroexp.h (macro_expand_next): Make first argument const.
2530         * p-exp.y (yylex): Make a local copy of 'lexptr'.
2531         Pass a const string to c_parse_escape.
2532         Make local variables 'p' and 'namestart' const.
2533         * parse.c (lexptr): Make const.
2534         (prev_lexptr): Likewise.
2535         (find_template_name_end): Return const.
2536         Make argument const, too.
2537         (parse_exp_in_context): Make first argument const.
2538         Remove the entire const_hack.
2539         (parse_exp_in_context_1): Make first argument const.
2540         * parser-defs.h (find_template_name_end): Return const.
2541         Make argument const, too.
2542         (lexptr): Make const.
2543         (prev_lexptr): Likewise.
2544         * utils.c (parse_escape): Make second argument const.
2545         * utils.h (parse_escape): Likewise.
2546
2547 2013-10-01  Keith Seitz  <keiths@redhat.com>
2548
2549         * ada-exp.y (write_object_renaming): Update: struct stoken.ptr
2550         is now const.
2551         (block_lookup): Make 'raw_name' and 'name' const.
2552         * ada-lex.l (processString): Update for struct stoken.ptr.
2553         * c-exp.y (qualified_name : TYPENAME COLONCOLON '~' name): Likewise.
2554         (operator_stoken): Likewise.
2555         (lex_one_token): Remove temporary cast to char * for
2556         'yylval.sval.ptr'.
2557         * f-exp.y (yylex): Likewise.
2558         * gdb-types.c (lookup_struct_elt_type): Make argument 'name' const.
2559         * gdbtypes.h (lookup_struct_elt_type): Likewisee.
2560         * go-exp.y (lex_one_token): Remove temporary cast to char * for
2561         'yylval.sval.ptr'.
2562         * jv-exp.y (QualifiedName): Update for struct stoken.ptr.
2563         (yylex): Remove temporary cast to char * for 'yylval.sval.ptr'.
2564         * linespec.c (struct ls_parser): Make 'stream' const.
2565         (find_parameter_list_end): Make argument 'input' and local
2566         variable 'p' const.
2567         (linespec_lexer_lex_string): Make local variables 'start' and
2568         'p' const.
2569         Use skip_spaces_const instead of skip_spaces.
2570         (linespec_lexer_peek_token): Make local variable 'saved_stream'
2571         const.
2572         (parse_linespec): Temporarily cast 'argptr' to const for
2573         'parser->lexer.stream'.
2574         * m2-exp.y (yylex): Remove temporary cast to char * for
2575         'yylval.sval.ptr'.
2576         * objc-lang.c (add_msglist): Make local variable 'p' const.
2577         * p-exp.y (exp : exp '['): Update for struct stoken.ptr.
2578         (exp : STRING): Make 'sp' const.
2579         (parse_number): Make argument 'p' const.
2580         * parser-defs.h (struct stoken): Make 'ptr' const.
2581
2582 2013-10-01  Doug Evans  <dje@google.com>
2583
2584         * cli/cli-decode.c: Remove unnecessary inclusion of tui/tui.h.
2585
2586 2013-10-01  Yao Qi  <yao@codesourcery.com>
2587
2588         * varobj.c (c_value_of_root): Remove declaration.
2589         (cplus_value_of_root, java_value_of_root): Likewise.
2590         (ada_value_of_root): Likewise.
2591         (struct language_specific) <value_of_root>: Remove.
2592         (languages): Update initialization.
2593         (check_scope): Move earlier.
2594         (c_value_of_root): Move earlier and rename to ...
2595         (value_of_root_1): ... this.
2596         (value_of_root): Caller update.
2597         (cplus_value_of_root, java_value_of_root): Remove.
2598         (ada_value_of_root): Remove.
2599
2600 2013-10-01  Yao Qi  <yao@codesourcery.com>
2601
2602         * varobj.c (varobj_format_string): Remove "unknown".
2603         (languages): Remove the first element.
2604         * varobj.h (enum varobj_languages): Remove vlang_c.
2605
2606 2013-10-01  Yao Qi  <yao@codesourcery.com>
2607
2608         * varobj.c (struct language_specific) <language>: Remove.
2609         (languages): Update the initialization.
2610
2611 2013-10-01  Yao Qi  <yao@codesourcery.com>
2612
2613         * arm-wince-tdep.c: Remove inclusion of "solib.h" and
2614         "solib-target.h".  Include "windows-tdep.h".
2615         (arm_wince_init_abi): Call windows_init_abi.  Remove call to
2616         set_solib_ops and set_gdbarch_has_dos_based_file_system.
2617         * configure.tgt (arm*-wince-pe | arm*-*-mingw32ce*): Append
2618         windows-tdep.o to gdb_target_obs.
2619
2620 2013-10-01  Yao Qi  <yao@codesourcery.com>
2621
2622         * amd64-windows-tdep.c: Remove inclusion of "solib.h" and
2623         "solib-target.h".
2624         (amd64_windows_init_abi): Don't call set_solib_ops and
2625         set_gdbarch_iterate_over_objfiles_in_search_order.  Call
2626         windows_init_abi instead.
2627         * i386-cygwin-tdep.c: Remove inclusion of "solib.h" and
2628         "solib-target.h".
2629         (i386_cygwin_init_abi): Don't call set_solib_ops,
2630         set_gdbarch_has_dos_based_file_system and
2631         set_gdbarch_iterate_over_objfiles_in_search_order.  Call
2632         windows_init_abi instead.
2633         * windows-tdep.c: Include "solib.h" and "solib-target.h".
2634         (windows_init_abi): New function.
2635         (windows_iterate_over_objfiles_in_search_order): Make it
2636         static.
2637         * windows-tdep.h (windows_init_abi): Declare.
2638         (windows_iterate_over_objfiles_in_search_order): Remove
2639         declaration.
2640
2641 2013-10-01  Jerome Guitton  <guitton@adacore.com>
2642
2643         Checked in by Joel Brobecker  <brobecker@adacore.com>
2644         * system-gdbinit/elinos.py (get_elinos_environment): Return an
2645         incomplete dictionnary instead of None in case of missing
2646         environment variables.
2647         (elinos_init): in case of an incomplete environment, best
2648         effort to load system libraries instead of abort.
2649
2650 2013-10-01  Joel Brobecker  <brobecker@adacore.com>
2651
2652         * ada-lang.c (ada_has_this_exception_support): Ignore
2653         mst_solib_trampoline minimal symbols.
2654
2655 2013-09-30  Tristan Gingold  <gingold@adacore.com>
2656
2657         * i386-darwin-nat.c (darwin_complete_target): Install methods for
2658         hardware watchpoint.
2659         (i386_darwin_dr_set): Support 32 and 64 bit states.
2660         (i386_darwin_dr_get): Likewise.
2661         (i386_darwin_dr_set_control): Make static.
2662         (i386_darwin_dr_set_addr, i386_darwin_dr_get_addr)
2663         (i386_darwin_dr_get_status, i386_darwin_dr_get_control): Likewise.
2664
2665 2013-09-30  Luis Machado  <lgustavo@codesourcery.com>
2666
2667         * aarch64-linux-nat.c: Replace PIDGET with ptid_get_pid.
2668         Replace TIDGET with ptid_get_lwp.
2669         Replace GET_LWP with ptid_get_lwp.
2670         * aix-thread.c (BUILD_THREAD, BUILD_LWP): Remove.
2671         Replace BUILD_THREAD with ptid_build.
2672         Replace BUILD_LWP with ptid_build.
2673         Replace PIDGET with ptid_get_pid.
2674         Replace TIDGET with ptid_get_lwp.
2675         * alphabsd-nat.c: Replace PIDGET with ptid_get_pid.
2676         * amd64-linux-nat.c: Replace PIDGET with ptid_get_pid.
2677         Replace TIDGET with ptid_get_lwp.
2678         * amd64bsd-nat.c: Replace PIDGET with ptid_get_pid.
2679         * arm-linux-nat.c: Replace PIDGET with ptid_get_pid.
2680         Replace TIDGET with ptid_get_lwp.
2681         Replace GET_LWP with ptid_get_lwp.
2682         * armnbsd-nat.c: Replace PIDGET with ptid_get_pid.
2683         * auxv.c: Likewise.
2684         * breakpoint.c: Likewise.
2685         * common/ptid.c (ptid_is_pid): Condense check for
2686         null_ptid and minus_one_ptid.
2687         (ptid_lwp_p): New function.
2688         (ptid_tid_p): New function.
2689         * common/ptid.h: Update comments for accessors.
2690         (ptid_lwp_p): New prototype.
2691         (ptid_tid_p): New prototype.
2692         * defs.h (PIDGET, TIDGET, MERGEPID): Do not define.
2693         * gcore.c: Replace PIDGET with ptid_get_pid.
2694         * gdbthread.h: Likewise.
2695         * gnu-nat.c: Likewise.
2696         * hppa-linux-nat.c: Replace PIDGET with ptid_get_pid.
2697         Replace TIDGET with ptid_get_lwp.
2698         * hppabsd-nat.c: Replace PIDGET with ptid_get_pid.
2699         * hppanbsd-nat.c: Likewise.
2700         * i386-linux-nat.c: Replace PIDGET with ptid_get_pid.
2701         Replace TIDGET with ptid_get_lwp.
2702         * i386bsd-nat.c: Replace PIDGET with ptid_get_pid.
2703         * ia64-linux-nat.c: Replace PIDGET with ptid_get_pid.
2704         * infcmd.c: Likewise.
2705         * inferior.h: Likewise.
2706         * inflow.c: Likewise.
2707         * infrun.c: Likewise.
2708         * linux-fork.c: Likewise.
2709         * linux-nat.c: Replace PIDGET with ptid_get_pid.
2710         Replace GET_PID with ptid_get_pid.
2711         Replace is_lwp with ptid_lwp_p.
2712         Replace GET_LWP with ptid_get_lwp.
2713         Replace BUILD_LWP with ptid_build.
2714
2715 2013-09-28  Mike Frysinger  <vapier@gentoo.org>
2716
2717         * common/linux-btrace.c: Move sys/syscall.h out of the
2718         HAVE_LINUX_PERF_EVENT_H check and wrap it in HAVE_SYS_SYSCALL_H.
2719         Also check for SYS_perf_event_open before attempting to buid.
2720
2721 2013-09-27  Doug Evans  <dje@google.com>
2722
2723         * dwarf2read.c (dwarf2_section_info): Add comment.
2724         (dwp_file): Split loaded_cutus into loaded_cus, loaded_tus.
2725         All uses updated.
2726         (dwarf2_section_empty_p): Rename arg from "info" to "section".
2727         (dwarf2_read_section): Delete unused local "header".  Add section
2728         name to error message.
2729         (create_dwo_in_dwp): Tweak comment.
2730         (MAX_NR_DWO_SECTIONS): Combine count of .debug_macro + .debug_macinfo.
2731
2732         * dwarf2read.c (die_reader_specs): Tweak comment.
2733         (get_section_bfd_owner, get_section_bfd_section): New functions.
2734         (get_section_name, get_section_file_name): New functions.
2735         (get_section_id, get_section_flags): New functions.
2736         (*): Use new functions to access section fields.
2737
2738         * dwarf2read.c (struct dwo_file): Add/tweak comments.
2739         (lookup_dwo_unit_in_dwp): Renamed from lookup_dwo_in_dwp.  Remove
2740         arg "htab".  All callers updated.
2741         (create_debug_types_hash_table): Remove redundant copy of
2742         abbrev_section.
2743         (create_dwo_in_dwp): Tweak comments.
2744         (read_str_index): Tweak comment.  Record dwarf form name in static
2745         local.
2746
2747 2013-09-27  Pedro Alves  <palves@redhat.com>
2748
2749         * remote.h (REMOTE_SYSROOT_PREFIX): New define.
2750         (remote_filename_p): Add comment.
2751         * remote.c (remote_filename_p): Adjust to use
2752         REMOTE_SYSROOT_PREFIX.
2753         * solib.c (solib_find): When deciding whether we need to add a
2754         directory separator, check whether the sysroot is "remote:"
2755         instead of checking whether the patch has a drive spec.  Add
2756         comments.
2757
2758 2013-09-27  Pedro Alves  <palves@redhat.com>
2759
2760         * remote.c (struct stop_reply) <solibs_changed, replay_event>:
2761         Delete fields.
2762         (remote_parse_stop_reply): Adjust, setting event->ws.kind
2763         directly.
2764
2765 2013-09-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
2766
2767         Fix set debug frame output.
2768         * frame.c (fprint_frame_type): Add TAILCALL_FRAME entry.  Move
2769         SENTINEL_FRAME entry lower to match enum frame_type order.
2770
2771 2013-09-26  Pierre Muller  <muller@sourceware.org>
2772
2773         Replace constant values 8 to 15 by AMD64_R8_REGNUM to
2774         AMD64_R15_REGNUM when a register index is expected.
2775         * amd64-windows-tdep.c (amd64_windows_dummy_call_integer_regs):
2776         Substitute in array.
2777         * amd64-tdep.c (amd64_dwarf_regmap): Ditto.
2778         (amd64_push_arguments): Substitute in integer_regnum array.
2779
2780 2013-09-25  Doug Evans  <dje@google.com>
2781
2782         * objfiles.c (allocate_objfile): Move comment to better place.
2783
2784         New option "set debug symfile on".
2785         * NEWS: Mention "set debug symfile".
2786         * Makefile.in (SFILES): Add symfile-debug.c.
2787         (COMMON_OBS): Add symfile-debug.o.
2788         * elfread.c (elf_symfile_read): Use objfile_set_sym_fns to set the
2789         objfile's symbol functions.
2790         * objfiles.h (objfile_set_sym_fns): Declare.
2791         * symfile-debug.c: New file.
2792         * symfile.c (syms_from_objfile_1): Use objfile_set_sym_fns to set the
2793         objfile's symbol functions.
2794         (reread_symbols): Ditto.
2795
2796         * symfile.h (struct sym_fns): Delete member "sym_flavour".
2797         All uses updated.
2798         (add_symtab_fns): Update prototype.
2799         * symfile.c (sym_fns_ptr): Delete.  Replace with ...
2800         (registered_sym_fns): ... this.
2801         (symtab_fns): Update.
2802         (add_symtab_fns): New arg "flavour".  All callers updated.
2803         (find_sym_fns): Rewrite to use new sym_fns registry.
2804
2805         * symfile.h (struct sym_fns): Add "objfile" argument to
2806         sym_read_linetable.  All uses updated.
2807
2808         * symtab.c (domain_name, search_domain_name): New functions.
2809         * symtab.h (domain_name, search_domain_name): Declare.
2810
2811         * symfile.h (struct quick_symbol_functions): Reorg arg list of
2812         map_matching_symbols so objfile is first.  All uses updated.
2813         * dwarf2read.c (dw2_map_matching_symbols): Update signature.
2814         * psymtab.c (map_matching_symbols_psymtab): Update signature.
2815
2816 2013-09-25  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2817
2818         PR shlibs/8882
2819         * solib-svr4.c (svr4_read_so_list): Skip the vDSO when reading
2820         link map entries.
2821
2822 2013-09-24  Doug Evans  <dje@google.com>
2823
2824         * objfiles.c (free_objfile): Move comment.
2825
2826 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
2827
2828         * ada-exp.y (string_to_operator): Delete.
2829         (dummy_string_to_ada_operator): Delete.
2830
2831 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
2832
2833         Revert:
2834         * i386-tdep.h (enum amd64_reg_class): New, moved here from
2835         amd64-tdep.c.
2836         (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
2837         call_dummy_integer_regs, and classify.
2838         * amd64-tdep.h (amd64_classify): Add declaration.
2839         * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
2840         (amd64_reg_class): Delete, moved to i386-tdep.h.
2841         (amd64_classify): Make non-static.  Move declaration to amd64-tdep.h.
2842         Replace call to amd64_classify by call to tdep->classify.
2843         (amd64_push_arguments): Get the list of registers to use for
2844         passing integer parameters from the gdbarch tdep structure,
2845         rather than using a hardcoded one.  Replace calls to amd64_classify
2846         by calls to tdep->classify.
2847         (amd64_push_dummy_call): Get the register number used for
2848         the "hidden" argument from tdep->call_dummy_integer_regs.
2849         (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
2850         and tdep->call_dummy_integer_regs.  Set tdep->classify.
2851
2852 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
2853
2854         Revert:
2855         * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
2856         * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
2857         where tdep->memory_args_by_pointer is non-zero.
2858
2859 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
2860
2861         Revert:
2862         * i386-tdep.h (struct gdbarch_tdep): Add new field
2863         integer_param_regs_saved_in_caller_frame.
2864         * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
2865         stack if tdep->integer_param_regs_saved_in_caller_frame is set.
2866
2867 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
2868
2869         * amd64-windows-tdep.c: #include "value.h"
2870         (amd64_windows_classify): Delete.
2871         (amd64_windows_passed_by_integer_register)
2872         (amd64_windows_passed_by_xmm_register)
2873         (amd64_windows_passed_by_pointer)
2874         (amd64_windows_adjust_args_passed_by_pointer)
2875         (amd64_windows_store_arg_in_reg, amd64_windows_push_arguments)
2876         (amd64_windows_push_dummy_call): New functions.
2877         (amd64_windows_init_abi): Remove setting of
2878         tdep->call_dummy_num_integer_regs, tdep->call_dummy_integer_regs,
2879         tdep->classify, tdep->memory_args_by_pointer and
2880         tdep->integer_param_regs_saved_in_caller_frame.
2881         Add call to set_gdbarch_push_dummy_call.
2882
2883 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
2884
2885         * dwarf2read.c (open_and_init_dwp_file): Try open_dwp_file also with
2886         objfile->original_name.
2887
2888 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
2889
2890         Pass down original filename for objfile.
2891         * coffread.c (coff_symfile_read): Update symbol_file_add_separate call.
2892         * elfread.c (elf_symfile_read): Likewise.
2893         * jit.c (jit_object_close_impl): Update allocate_objfile call, no
2894         longer set ORIGINAL_NAME.
2895         (jit_bfd_try_read_symtab): Update symbol_file_add_from_bfd call.
2896         * jv-lang.c (get_dynamics_objfile): Update allocate_objfile call.
2897         * machoread.c (macho_add_oso_symfile): Add parameter name.  Update
2898         symbol_file_add_from_bfd call.
2899         (macho_symfile_read_all_oso): Update two macho_add_oso_symfile calls.
2900         (macho_check_dsym): Add parameter filenamep.  Change function comment.
2901         Set *filenamep.
2902         (macho_symfile_read): New variable dsym_filename.  Update
2903         macho_check_dsym call.  Use it for symbol_file_add_separate.
2904         * objfiles.c (allocate_objfile): Add parameter name.  New comment for
2905         it.  Use it for objfile->original_name.
2906         (objfile_name): Return OBFD's filename, if available.
2907         * objfiles.h (allocate_objfile): Add new parameter name.
2908         * solib.c (solib_read_symbols): Update symbol_file_add_from_bfd call.
2909         * symfile-mem.c (symbol_file_add_from_memory): Update
2910         symbol_file_add_from_bfd call.
2911         * symfile.c (read_symbols): Update symbol_file_add_separate call, new
2912         comment for it.
2913         (symbol_file_add_with_addrs): New parameter name, add function comment
2914         for it.  Remove variable name.  Update allocate_objfile call.
2915         (symbol_file_add_separate): New parameter name, add function comment
2916         for it.  Update symbol_file_add_with_addrs call.
2917         (symbol_file_add_from_bfd): New parameter name.  Update
2918         symbol_file_add_with_addrs call.
2919         (symbol_file_add): Update symbol_file_add_from_bfd call.
2920         (reread_symbols): New variable original_name.  Save
2921         objfile->original_name by it.
2922         * symfile.h (symbol_file_add_from_bfd, symbol_file_add_separate): Add
2923         second parameter.
2924
2925 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
2926
2927         Code cleanup: Add objfile_name accessor function.
2928         * ada-lang.c (is_known_support_routine): Use objfile_name.
2929         * auto-load.c (source_gdb_script_for_objfile)
2930         (auto_load_objfile_script): Likewise.
2931         * coffread.c (coff_symtab_read, read_one_sym): Likewise.
2932         * dbxread.c (dbx_symfile_read): Likewise.
2933         * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
2934         * dwarf2loc.c (locexpr_describe_location_piece): Likewise.
2935         * dwarf2read.c (dwarf2_get_dwz_file, dwarf2_read_index)
2936         (dw2_symtab_iter_next, dw2_expand_symtabs_matching)
2937         (lookup_dwp_signatured_type, lookup_dwo_unit)
2938         (dwarf2_build_psymtabs_hard, scan_partial_symbols, process_queue)
2939         (fixup_go_packaging, process_imported_unit_die, dwarf2_physname)
2940         (read_import_statement, create_dwo_cu, open_and_init_dwp_file)
2941         (lookup_dwo_cutu, read_call_site_scope, dwarf2_ranges_read)
2942         (dwarf2_record_block_ranges, read_common_block, read_typedef)
2943         (read_subrange_type, load_partial_dies, read_partial_die)
2944         (read_addr_index_1, read_str_index, dwarf_decode_lines_1)
2945         (die_containing_type, build_error_marker_type, lookup_die_type)
2946         (follow_die_ref_or_sig, follow_die_ref, dwarf2_fetch_die_loc_sect_off)
2947         (dwarf2_fetch_constant_bytes, follow_die_sig, get_signatured_type)
2948         (get_DW_AT_signature_type, write_psymtabs_to_index)
2949         (save_gdb_index_command): Likewise.
2950         * elfread.c (find_separate_debug_file_by_buildid, elf_symfile_read):
2951         Likewise.
2952         * expprint.c (dump_subexp_body_standard): Likewise.
2953         * gdbtypes.c (type_name_no_tag_or_error): Likewise.
2954         * jit.c (jit_object_close_impl): Use the objfile field name renamed to
2955         original_name.
2956         * linux-thread-db.c (try_thread_db_load_from_pdir_1): New variable
2957         obj_name, use objfile_name for it, use the variable.
2958         (try_thread_db_load_from_pdir, has_libpthread, thread_db_new_objfile):
2959         Use objfile_name.
2960         * machoread.c (macho_symtab_read, macho_check_dsym)
2961         (macho_symfile_relocate): Likewise.
2962         * maint.c (maintenance_translate_address): Likewise.
2963         * minidebug.c (find_separate_debug_file_in_section): Likewise.
2964         * minsyms.c (install_minimal_symbols): Likewise.
2965         * objfiles.c (allocate_objfile): Use the objfile field name renamed to
2966         original_name.
2967         (filter_overlapping_sections): Use objfile_name.
2968         (objfile_name): New function.
2969         * objfiles.h (struct objfile): Rename field name to original_name.
2970         (objfile_name): New prototype.
2971         * printcmd.c (sym_info, address_info): Use objfile_name.
2972         * probe.c (parse_probes, collect_probes, compare_probes)
2973         (info_probes_for_ops): Likewise.
2974         * progspace.c (clone_program_space): Likewise.
2975         * psymtab.c (require_partial_symbols, dump_psymtab, allocate_psymtab)
2976         (maintenance_info_psymtabs): Likewise.
2977         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
2978         (source_section_scripts): Likewise.
2979         * python/py-objfile.c (objfpy_get_filename): Likewise.
2980         * python/py-progspace.c (pspy_get_filename): Likewise.
2981         * solib-aix.c (solib_aix_get_toc_value): Likewise.
2982         * solib-som.c (match_main, som_solib_section_offsets): Likewise.
2983         * solib.c (solib_read_symbols): Likewise.
2984         * stabsread.c (scan_file_globals): Likewise.
2985         * stap-probe.c (handle_stap_probe): Likewise.
2986         * symfile.c (symbol_file_clear, separate_debug_file_exists)
2987         (find_separate_debug_file_by_debuglink): Likewise.
2988         (reread_symbols): Likewise.  Use the objfile field name renamed to
2989         original_name.
2990         (allocate_symtab): Use objfile_name.
2991         * symmisc.c (print_symbol_bcache_statistics, print_objfile_statistics)
2992         (dump_objfile, dump_msymbols, dump_symtab_1)
2993         (maintenance_print_msymbols, maintenance_print_objfiles)
2994         (maintenance_info_symtabs, maintenance_check_symtabs): Likewise.
2995         * target.c (target_translate_tls_address, target_info): Likewise.
2996         * xcoffread.c (xcoff_initial_scan): Make variable name const.  Use
2997         objfile_name.
2998
2999 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
3000
3001         Code cleanup.
3002         * probe.c (parse_probes): Rename variable objfile_name to
3003         objfile_namestr.
3004
3005 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
3006
3007         Remove solib-sunos.c.
3008         * Makefile.in (ALLDEPFILES): Remove solib-sunos.c.
3009         * config/m68k/obsd.mh (NATDEPFILES): Remove solib-sunos.o.
3010         * objfiles.c (rt_common_objfile): Remove.
3011         (free_objfile): Remove rt_common_objfile comparison.
3012         * objfiles.h (rt_common_objfile): Remove.
3013         * solib-sunos.c: Remove.
3014         * symfile.c (reread_symbols): Remove solib-sunos.c comment.
3015
3016 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
3017
3018         Remove a.out NetBSD and OpenBSD hosts.
3019         * NEWS (Removed native configurations): New.
3020         * config/arm/nbsdaout.mh: Remove.
3021         * config/i386/nbsdaout.mh: Remove.
3022         * config/i386/obsdaout.mh: Remove.
3023         * config/m68k/nbsdaout.mh: Remove.
3024         * config/sparc/nbsdaout.mh: Remove.
3025         * config/vax/nbsdaout.mh: Remove.
3026         * configure.host (arm*-*-netbsd*, i[34567]86-*-netbsd*)
3027         (i[34567]86-*-openbsd[0-2].*, i[34567]86-*-openbsd3.[0-3])
3028         (m68*-*-netbsd*, sparc-*-netbsd*, vax-*-netbsd*): Add them to obsolete
3029         error.
3030         (arm*-*-netbsd*, i[34567]86-*-netbsd*, i[34567]86-*-openbsd[0-2].*)
3031         (i[34567]86-*-openbsd3.[0-3], m68*-*-netbsd*, sparc-*-netbsdaout*)
3032         (sparc-*-netbsd*, vax-*-netbsd*): Remove.
3033
3034 2013-09-23  Tom Tromey  <tromey@redhat.com>
3035
3036         * linespec.c (struct minsym_and_objfile): Remove.
3037         (minsym_and_objfile_d): Remove.
3038         (struct linespec, struct collect_info, linespec_parse_basic)
3039         (convert_linespec_to_sals, linespec_parser_delete, decode_objc)
3040         (compare_msymbols, find_method, find_function_symbols)
3041         (find_linespec_symbols, struct collect_minsyms, compare_msyms)
3042         (add_minsym, search_minsyms_for_name): Update.
3043
3044 2013-09-23  Andrew Burgess  <aburgess@broadcom.com>
3045
3046         * regcache.c: Add include of valprint.h.
3047         (dump_endian_bytes): Delete.
3048         (regcache_dump): Use print_hex_chars not dump_endian_bytes.
3049
3050 2013-09-23  Andrew Burgess  <aburgess@broadcom.com>
3051
3052         * sh64-tdep.c (sh64_do_fp_register): Use print_hex_chars.
3053
3054 2013-09-19  Pedro Alves  <palves@redhat.com>
3055
3056         * breakpoint.c (remove_threaded_breakpoints): Skip non-user
3057         breakpoints.
3058
3059 2013-09-19  Pedro Alves  <palves@redhat.com>
3060             Thomas Schwinge  <thomas@codesourcery.com>
3061             Yue Lu  <hacklu.newborn@gmail.com>
3062
3063         * gnu-nat.c (gnu_read_inferior, gnu_write_inferior): Make static.
3064         Take a gdb_byte pointer instead of a char pointer.
3065
3066         * gnu-nat.c (gnu_xfer_memory): Adjust interface as
3067         gnu_xfer_partial helper.
3068         (gnu_xfer_partial): New function.
3069         (gnu_target): Don't install a deprecated_xfer_memory hook.
3070         Install a to_xfer_partial hook.
3071
3072 2013-09-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
3073
3074         Constification.
3075         * main.c (captured_main): Replace catch_command_errors by
3076         catch_command_errors_const.  Twice.
3077         * symfile.c (symbol_file_add_main_1): Make args parameter const.
3078         (symbol_file_add): Make name parameter const.
3079         (symbol_file_add_main, symbol_file_add_main_1): Make args parameter const.
3080         (symfile_bfd_open): Make name parameter const, rename it to cname.  Add
3081         variable name.  Change their usage accordingly.
3082         * symfile.h (symbol_file_add, symfile_bfd_open): Make first parameter
3083         const.
3084         (symbol_file_add_main): Make args parameter const.
3085
3086 2013-09-18  Raunaq Bathija  <raunaq12@in.ibm.com>
3087             Ulrich Weigand  <uweigand@de.ibm.com>
3088
3089         * xcoffread.c (struct coff_symbol): Use CORE_ADDR as type
3090         of c_value member.
3091         (read_xcoff_symtab): Use CORE_ADDR as type of fcn_start_addr.
3092
3093 2013-09-18  Pedro Alves  <palves@redhat.com>
3094             Yue Lu  <hacklu.newborn@gmail.com>
3095
3096         * gnu-nat.c (inf_validate_procs, gnu_wait, gnu_resume)
3097         (gnu_create_inferior)
3098         (gnu_attach, gnu_thread_alive, gnu_pid_to_str, cur_thread)
3099         (set_sig_thread_cmd): Use the lwpid field of ptids to
3100         store/extract thread ids instead of the tid field.
3101         * i386gnu-nat.c (gnu_fetch_registers): Adjust.
3102
3103 2013-09-18  Andrew Burgess  <aburgess@broadcom.com>
3104
3105         * infcmd.c (default_print_one_register_info): Add detection of
3106         optimized out values.
3107         (default_print_registers_info): Switch to using
3108         get_frame_register_value.
3109
3110 2013-09-18  Markus Metzger  <markus.t.metzger@intel.com>
3111
3112         * infrun.c (handle_inferior_event): Check if we know the
3113         function start address before setting a resume breakpoint.
3114
3115 2013-09-18  Pedro Alves  <palves@redhat.com>
3116
3117         * gnu-nat.c (set_sig_thread_cmd): Compare the thread's ptid to
3118         minus_one_ptid instead of looking at the ptid's tid field and
3119         comparing that to -1.
3120
3121 2013-09-18  Andrew Burgess  <aburgess@broadcom.com>
3122
3123         * main.h (get_gdb_program_name): Remove extra whitespace.
3124
3125 2013-09-18  Andrew Burgess  <aburgess@broadcom.com>
3126
3127         * main.h (get_gdb_program_name): Add declaration.
3128         * main.c (get_gdb_program_name): Add definition.
3129
3130 2013-09-17  Doug Evans  <dje@google.com>
3131
3132         * dwarf2read.c: Move definitions of complaint functions to after
3133         forward declarations of local functions.
3134
3135 2013-09-17  Muhammad Waqas <mwaqas@codesourcery.com>
3136             Pedro Alves  <palves@redhat.com>
3137
3138         PR gdb/11568
3139         * breakpoint.c (remove_threaded_breakpoints): New function.
3140         (_initialize_breakpoint): Attach remove_threaded_breakpoints
3141         as thread_exit observer.
3142
3143 2013-09-17  Pedro Alves  <palves@redhat.com>
3144
3145         PR gdb/15911
3146         * ada-tasks.c (task_command_1): Adjust call to print_stack_frame.
3147         * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
3148         * corelow.c (core_open):
3149         * frame.h (print_stack_frame, print_frame_info): New
3150         'set_current_sal' parameter.
3151         * infcmd.c (finish_command, kill_command): Adjust call to
3152         print_stack_frame.
3153         * inferior.c (inferior_command): Likewise.
3154         * infrun.c (normal_stop): Likewise.
3155         * linux-fork.c (linux_fork_context): Likewise.
3156         * record-full.c (record_full_goto_entry, record_full_restore):
3157         Likewise.
3158         * remote-mips.c (common_open): Likewise.
3159         * stack.c (print_stack_frame): New 'set_current_sal' parameter.
3160         Use it.
3161         (print_frame_info): New 'set_current_sal' parameter.  Set the last
3162         displayed sal depending on the new paremeter instead of looking at
3163         print_what.
3164         (backtrace_command_1, select_and_print_frame, frame_command)
3165         (current_frame_command, up_command, down_command): Adjust call to
3166         print_stack_frame.
3167         * thread.c (print_thread_info, restore_selected_frame)
3168         (do_captured_thread_select): Adjust call to print_stack_frame.
3169         * tracepoint.c (tfind_1): Likewise.
3170         * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
3171         (mi_cmd_stack_info_frame): Likewise.
3172         * mi/mi-interp.c (mi_on_normal_stop): Likewise.
3173         * mi/mi-main.c (mi_cmd_exec_return, mi_cmd_trace_find): Likewise.
3174
3175 2013-09-16  Sergio Durigan Junior  <sergiodj@redhat.com>
3176
3177         * value.c (isvoid_internal_fn): Replace "parameter" with
3178         "argument".
3179
3180 2013-09-16  Stan Shebs  <stan@codesourcery.com>
3181
3182         * README: Update references to writing code for GDB.
3183         * configure.ac (build_warnings): Remove obsolete comment.
3184         * configure: Regenerate.
3185         * gdbarch.sh: Remove references to gdbint.texinfo.
3186         * gdbarch.h: Regenerate.
3187         * gdbtypes.c (objfile_type): Remove comments referencing internals
3188         manual and D10V.
3189
3190 2013-09-16  Sergio Durigan Junior  <sergiodj@redhat.com>
3191
3192         * NEWS: Mention new convenience function $_isvoid.
3193         * value.c (isvoid_internal_fn): New function.
3194         (_initialize_values): Add new convenience function $_isvoid.
3195
3196 2013-09-16  Pierre Muller  <muller@sourceware.org>
3197
3198         * arm-linux-tdep.c: Add "elf/common.h" header.
3199         Remove AT_HWCAP macro definintion as it is provided in
3200         added include file.
3201         * s390-tdep.c: Remove system header <elf.h>
3202         Add "elf/common.h" header for AT_HWCAP definition.
3203         (s390_core_read_description): Use correct CORE_ADDR
3204         for hwcap local variable used as third parameter
3205         of function target_auxv_search.
3206
3207 2013-09-14  Pierre Muller  <muller@sourceware.org>
3208             Tom Tromey  <tromey@redhat.com>
3209             Pedro Alves  <palves@redhat.com>
3210
3211         * common/filestuff.c (gdb_fopen_cloexec): Do not try to use "e"
3212         mode if operating system doesn't know O_CLOEXEC.
3213
3214 2013-09-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
3215
3216         Code cleanup.
3217         * symfile.c (reread_symbols): Move variable obfd_filename to a more
3218         inner block.
3219
3220 2013-09-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3221
3222         * NEWS: Mention TDB support.
3223         * features/s390-tdb.xml: New file.
3224         * features/s390-te-linux64.xml: New file.
3225         * features/s390x-te-linux64.xml: New file.
3226         * features/Makefile (WHICH): Add new tdescs above.
3227         (s390-te-linux64-expedite): Set.
3228         (s390x-te-linux64-expedite): Set.
3229         * features/s390-te-linux64.c: New file (generated).
3230         * features/s390x-te-linux64.c: New file (generated).
3231         * regformats/s390-te-linux64.dat: New file (generated).
3232         * regformats/s390x-te-linux64.dat: New file (generated).
3233         * s390-tdep.h (HWCAP_S390_HIGH_GPRS): Define.
3234         (HWCAP_S390_TE): Likewise.
3235         (S390_TDB_DWORD0_REGNUM): Likewise.
3236         (S390_TDB_DWORD0_REGNUM): Likewise.
3237         (S390_TDB_ABORT_CODE_REGNUM): Likewise.
3238         (S390_TDB_CONFLICT_TOKEN_REGNUM): Likewise.
3239         (S390_TDB_ATIA_REGNUM): Likewise.
3240         (S390_TDB_R0_REGNUM): Likewise.
3241         (S390_TDB_R1_REGNUM): Likewise.
3242         (S390_TDB_R2_REGNUM): Likewise.
3243         (S390_TDB_R3_REGNUM): Likewise.
3244         (S390_TDB_R4_REGNUM): Likewise.
3245         (S390_TDB_R5_REGNUM): Likewise.
3246         (S390_TDB_R6_REGNUM): Likewise.
3247         (S390_TDB_R7_REGNUM): Likewise.
3248         (S390_TDB_R8_REGNUM): Likewise.
3249         (S390_TDB_R9_REGNUM): Likewise.
3250         (S390_TDB_R10_REGNUM): Likewise.
3251         (S390_TDB_R11_REGNUM): Likewise.
3252         (S390_TDB_R12_REGNUM): Likewise.
3253         (S390_TDB_R13_REGNUM): Likewise.
3254         (S390_TDB_R14_REGNUM): Likewise.
3255         (S390_TDB_R15_REGNUM): Likewise.
3256         (S390_NUM_REGS): Increase.
3257         (S390_IS_TDBREGSET_REGNUM): New macro.
3258         (s390_regmap_tdb): Declare.
3259         (s390_sizeof_tdbregset): Define.
3260         (tdesc_s390_te_linux64): Declare.
3261         (tdesc_s390x_te_linux64): Likewise.
3262         * s390-tdep.c: Add includes for "auxv.h", <elf.h>,
3263         "features/s390-te-linux64.c", and "features/s390x-te-linux64.c".
3264         (s390_regmap_tdb): New regmap.
3265         (s390_supply_tdb_regset): New function.
3266         (s390_tdb_regset): New regset.
3267         (s390_linux64v2_regset_sections): Add TDB regset to list.
3268         (s390x_linux64v2_regset_sections): Likewise.
3269         (s390_regset_from_core_section): Recognize TDB core note section.
3270         (s390_core_read_description): If HWCAP indicates TE support,
3271         select tdesc_s390_te_linux64 or tdesc_s390_s390x_te_linux64.
3272         (s390_gdbarch_init): Handle TDB regset.
3273         (_initialize_s390_tdep): Initialize new tdescs.
3274         * s390-nat.c (HWCAP_S390_HIGH_GPRS): Remove define.
3275         (have_regset_tdb): New variable.
3276         (s390_native_supply): Support register invalidation.
3277         (fetch_regset): Invalidate registers if ptrace yields ENODATA.
3278         (check_regset): Treat ENODATA as "regset exists".
3279         (s390_linux_fetch_inferior_registers): Add TDB.
3280         (s390_read_description): Check for TDB existence and select
3281         appropriate tdesc.
3282         * gdbserver/Makefile.in (clean): Add removal of new makefile
3283         targets.
3284         (s390-te-linux64.c): New makefile target.
3285         (s390x-te-linux64.c): Likewise.
3286         * gdbserver/configure.srv (srv_regobj): Append new objects
3287         s390-te-linux64.o and s390x-te-linux64.o.
3288         (srv_xmlfiles): Append new files s390-te-linux64.xml,
3289         s390x-te-linux64.xml, and s390-tdb.xml.
3290         * gdbserver/linux-s390-low.c (init_registers_s390_te_linux64): New
3291         declaration.
3292         (tdesc_s390_te_linux64): Likewise.
3293         (init_registers_s390x_te_linux64): Likewise.
3294         (tdesc_s390x_te_linux64): Likewise.
3295         (s390_check_regset): Treat ENODATA as "regset exists".
3296         (s390_arch_setup): Add TDB regset support.
3297         (initialize_low_arch): Initialize registers for new tdescs.
3298
3299 2013-09-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3300
3301         * s390-tdep.h (S390_IS_GREGSET_REGNUM): New macro.
3302         (S390_IS_FPREGSET_REGNUM): New macro.
3303         * s390-tdep.c (s390_dwarf_regmap): Make const.
3304         (regnum_is_gpr_full): New function for replacing repeated code.
3305         (s390_pseudo_register_name): Use it.
3306         (s390_pseudo_register_type): Likewise.
3307         (s390_pseudo_register_read): Likewise.
3308         (s390_pseudo_register_write): Likewise.
3309         (s390_unwind_pseudo_register): Likewise.
3310         (s390_regmap_gregset): New format for regmap.
3311         (s390x_regmap_gregset): Likewise.
3312         (s390_regmap_fpregset): Likewise.
3313         (s390_regmap_upper): Likewise.
3314         (s390_regmap_last_break): Likewise.
3315         (s390_regmap_system_call): Likewise.
3316         (s390_supply_regset): Adjust to new regmap format.
3317         (s390_collect_regset): Likewise.
3318         * s390-nat.c (s390_native_supply): Adjust to new regmap format.
3319         (s390_native_collect): Likewise.
3320         (supply_gregset): Likewise.
3321         (fill_gregset): Likewise.
3322         (supply_fpregset): Likewise.
3323         (fill_fpregset): Likewise.
3324         (fetch_regset): Likewise.
3325         (store_regset): Likewise.
3326         (s390_linux_fetch_inferior_registers): Likewise.
3327         (s390_linux_fetch_inferior_registers): Likewise.
3328
3329 2013-09-12  Andrew Pinski  <apinski@cavium.com>
3330
3331         * aarch64-linux-nat.c (aarch64_linux_set_debug_regs): Zero out regs.
3332
3333 2013-09-10  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3334
3335         * config/s390/s390.mh (NATDEPFILES): Add linux-waitpid.o.
3336
3337 2013-09-09  Andrew Burgess  <aburgess@broadcom.com>
3338
3339         * top.c (quit_confirm): Remove use of deprecated_init_ui_hook.
3340
3341 2013-09-06  Pedro Alves <palves@redhat.com>
3342
3343         * remote-sim.c (dump_mem, gdbsim_fetch_register)
3344         (gdbsim_store_register, gdbsim_kill, gdbsim_load)
3345         (gdbsim_create_inferior, gdbsim_open, gdbsim_close)
3346         (gdbsim_detach, gdbsim_resume_inferior, gdbsim_wait)
3347         (gdbsim_files_info, gdbsim_mourn_inferior): Send debug output to
3348         gdb_stdlog.
3349
3350 2013-09-06  Pedro Alves  <palves@redhat.com>
3351
3352         * remote-sim.c (dump_mem): Constify buf parameter.
3353         gdbsim_xfer_inferior_memory): Rename to ...
3354         (gdbsim_xfer_memory): ... this.  Adjust interface as
3355         target_xfer_partial helper.
3356         (gdbsim_xfer_partial): New function.
3357         (init_gdbsim_ops): Don't install a deprecated_xfer_memory hook.
3358         Install a to_xfer_partial hook.  Send output to gdb_stdlog.
3359
3360 2013-09-06  Pedro Alves  <palves@redhat.com>
3361
3362         * remote-sim.c (gdbsim_xfer_inferior_memory): Use
3363         host_address_to_string, and send debug output to gdb_stdlog.
3364
3365 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
3366
3367         * Makefile.in (ALL_TARGET_OBS): Add cris-linux-tdep.o.
3368         * configure.tgt: Add cris-linux-tdep.o and linux-tdep.o to
3369         gdb_target_obs for cris target.
3370         * cris-tdep.c (struct gdbarch_tdep): Move to cris-tdep.h.
3371         (cris_gdbarch_init): Move calls to
3372         set_gdbarch_fetch_tls_load_module_address and
3373         set_solib_svr4_fetch_link_map_offsets to cris-linux-tdep.c.
3374         Add call to gdbarch_init_osabi.
3375         * cris-linux-tdep.c: New file.
3376         * cris-tdep.h: New file.
3377
3378 2013-09-06  Andrew Burgess  <aburgess@broadcom.com>
3379
3380         * tui/tui-io.c (tui_initialize_io): Remove legacy comment referring
3381         to deprecated_init_ui_hook.
3382
3383 2013-09-06  Andrew Burgess  <aburgess@broadcom.com>
3384
3385         * cli/cli-interp.c (_initialize_cli_interp): Add a
3386         command_loop_proc to interp_procs.
3387         * event-top.c (cli_command_loop): Change signature to match
3388         interp_command_loop_ftype.
3389         * event-top.h (cli_command_loop): Same.
3390         * interps.c (interp_new): Require every interpreter to have a
3391         command_loop_proc.
3392         (current_interp_command_loop): Just call the command_loop_proc on
3393         the current interpreter.
3394         * tui/tui-interp.c (_initialize_tui_interp): Add a
3395         command_loop_proc to interp_procs.
3396
3397 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
3398
3399         * cris-tdep.c (cris_gdbarch_init): Add call to
3400         get_gdbarch_fetch_tls_load_module_address.
3401
3402 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
3403
3404         * cris-tdep.c (cris_elf_greg_t): Rename from elf_greg_t.
3405         (cris_elf_gregset_t): Rename from elf_gregset_t.
3406         (crisv32_elf_gregset_t): Adjust.
3407         (cris_supply_gregset, fetch_core_registers): Adjust.
3408
3409 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
3410
3411         * cris-tdep.c (elf_greg_t): Change typedef to unsigned char[4]
3412
3413 2013-09-05  Andrew Burgess  <aburgess@broadcom.com>
3414
3415         * defs.h (deprecated_command_loop_hook): Remove, including
3416         references in comments.
3417         * interps.c (current_interp_command_loop): No longer use
3418         deprecated_command_loop_hook.
3419         (clear_interpreter_hooks): Remove deprecated_command_loop_hook
3420         setup.
3421         * top.c (deprecated_command_loop_hook): Remove.
3422
3423 2013-09-05  Pedro Alves  <palves@redhat.com>
3424
3425         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): 'dwarf_regnum'
3426         local is now int instead of ULONGEST.  Print it with %d
3427         instead of paddress.
3428
3429 2013-09-05  Tristan Gingold  <gingold@adacore.com>
3430
3431         * MAINTAINERS: Remove avr maintainership.
3432
3433 2013-09-05  Pedro Alves  <palves@redhat.com>
3434
3435         * findvar.c (value_of_register): Rework in terms of
3436         value_of_register_lazy.
3437
3438 2013-09-05  Muhammad Bilal  <mbilal@codesourcery.com>
3439
3440         * symfile.c (add_symbol_file_command): Remove trailing
3441          whitespaces and blank line after comment.
3442
3443 2013-09-05  Pedro Alves  <palves@redhat.com>
3444
3445         * tui/tui-regs.c (tui_register_format): Don't look at the
3446         register's name here.  Return string representing register
3447         value instead of storing it in the data element.
3448         (tui_get_register): Compare register string representations
3449         instead of register value states and contents.
3450
3451 2013-09-05  Pedro Alves  <palves@redhat.com>
3452
3453         PR tui/15933
3454         * tui/tui-regs.c (tui_show_registers): Show registers of the
3455         selected frame, not the current frame.
3456
3457 2013-09-05  Ricard Wanderlof  <ricardw@axis.com>
3458
3459         * MAINTAINERS (Write After Approval): Add myself to the list.
3460
3461 2013-09-04  Doug Evans  <dje@google.com>
3462
3463         * dwarf2read.c (queue_and_load_all_dwo_tus): New function.
3464         (queue_and_load_dwo_tu): New function.
3465         (lookup_dwo_signatured_type): Set per_cu.tu_read.
3466         (maybe_queue_comp_unit): Rename this_cu argument to dependent_cu.
3467         Make dependent_cu optional.
3468         (dw2_do_instantiate_symtab): If we just loaded a CU from a DWO,
3469         and an older .gdb_index is in use, queue and load all its TUs too.
3470
3471 2013-09-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
3472
3473         Code cleanup: Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH.
3474         * cli/cli-cmds.c (find_and_open_script): Add OPF_RETURN_REALPATH to
3475         variable search_flags.
3476         * defs.h (OPF_DISABLE_REALPATH): Rename to ...
3477         (OPF_RETURN_REALPATH): ... here.
3478         * dwarf2read.c (try_open_dwop_file): Set OPF_RETURN_REALPATH for flags.
3479         * exec.c (exec_file_attach): Remove OPF_DISABLE_REALPATH from openp
3480         call.  Twice.
3481         * nto-tdep.c (nto_find_and_open_solib): Add OPF_RETURN_REALPATH for
3482         openp call.
3483         * solib.c (solib_find): Likewise.  Four times.
3484         * source.c (openp): Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH
3485         in the function comment and for the realpath_fptr variable.
3486         (source_full_path_of): Add OPF_RETURN_REALPATH for openp call.
3487         (find_and_open_source): Likewise.  Twice.
3488         * symfile.c (symfile_bfd_open): Likewise, also twice.
3489
3490 2013-09-04  Doug Evans  <dje@google.com>
3491
3492         * progspace.c (save_current_space_and_thread): Remove unnecessary
3493         call to save_current_inferior.
3494
3495 2013-09-04  Andrew Burgess  <aburgess@broadcom.com>
3496
3497         * sh64-tdep.c (sh64_do_register): Return after printing message
3498         about unavailable register contents.
3499
3500 2013-09-04  Muhammad Bilal  <mbilal@codesourcery.com>
3501             Pedro Alves  <palves@redhat.com>
3502
3503         * symfile.c (add_symbol_file_command): Error out on unknown
3504         option.  Handle EXPECTING_SEC_ADDR/EXPECTING_SEC_NAME before '-'
3505         options and collapse into single conditional branch.
3506
3507 2013-09-03  Luis Machado  <lgustavo@codesourcery.com>
3508
3509         * inf-child.c (inf_child_follow_fork): New parameter
3510         detach_fork.
3511         * inf-ptrace.c (inf_ptrace_follow_fork): Likewise.
3512         * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
3513         * inferior.h (detach_fork): Remove.
3514         * infrun.c (detach_fork): Adjust comment and make it
3515         static.
3516         (follow_fork): Pass detach_fork parameter to
3517         target_follow_fork.
3518         * linux-nat.c (linux_child_follow_fork): New parameter
3519         detach_fork.
3520         * target.c (target_follow_fork): New parameter detach_fork.
3521         Pass detach_fork as parameter and print its value.
3522         * target.h (struct target_ops) <to_follow_fork>: New int
3523         parameter.
3524         (target_follow_fork): New parameter detach_fork.
3525
3526 2013-09-03  Joel Brobecker  <brobecker@adacore.com>
3527
3528         * solib-ia64-hpux.c (ia64_hpux_relocate_section_addresses):
3529         Replace sec->bfd by sec->the_bfd_section->owner.
3530
3531 2013-09-03  Yao Qi  <yao@codesourcery.com>
3532
3533         * linux-tdep.c (linux_is_uclinux): New function.  Code moved
3534         from linux_has_shared_address_space.
3535         (linux_has_shared_address_space): Call linux_is_uclinux.
3536         * linux-tdep.h (linux_is_uclinux): Declare.
3537         * m68klinux-tdep.c (m68k_linux_get_sigtramp_info): Call
3538         linux_is_uclinux.
3539
3540 2013-09-03  Yao Qi  <yao@codesourcery.com>
3541
3542         * config/djgpp/fnchange.lst: Remove entry of
3543         i386-interix-nat.c and i386-interix-tdep.c.
3544         * configure.ac: Remove '*-*-interix*'.
3545         * configure: Re-generated.
3546         * defs.h (enum gdb_osabi): Remove GDB_OSABI_INTERIX.
3547         * i386-cygwin-tdep.c (i386_cygwin_osabi_sniffer): Remove
3548         obsolete comments.
3549         * osabi.c (gdb_osabi_names): Remove "Interix".
3550
3551 2013-09-03  Yao Qi  <yao@codesourcery.com>
3552
3553         * arch-utils.c: Fix typo in the comment to gdbarch_update_p.
3554
3555 2013-09-02  Markus Metzger  <markus.t.metzger@intel.com>
3556
3557         * record.h (record_print_flag) <record_print_src_line,
3558         record_print_insn_range>: Rename into ...
3559         (record_print_flag) <record_print_src_line,
3560         record_print_insn_range>: ... this.  Update all users.
3561
3562 2013-09-02  Pierre Muller  <muller@sourceware.org>
3563
3564         * windows-nat.c (windows_xfer_memory): Handle ERROR_PARTIAL_COPY
3565         error code.
3566
3567 2013-09-02  Pierre Muller  <muller@sourceware.org>
3568
3569         * windows-nat.c (windows_xfer_memory): Fix compilation failure
3570         by use of plongest function.
3571
3572 2013-09-02  Tristan Gingold  <gingold@adacore.com>
3573
3574         * NEWS: Add entry mentioning support for native Windows x64
3575         SEH data.
3576
3577         * amd64-windows-tdep.c: #include "objfiles.h", "frame-unwind.h",
3578         "coff/internal.h", "coff/i386.h", "coff/pe.h" and "libcoff.h".
3579         (struct amd64_windows_frame_cache): New struct.
3580         (amd64_windows_w2gdb_regnum): New global.
3581         (pc_in_range, amd64_windows_frame_decode_epilogue)
3582         (amd64_windows_frame_decode_insns, amd64_windows_find_unwind_info)
3583         (amd64_windows_frame_cache, amd64_windows_frame_prev_register)
3584         (amd64_windows_frame_this_id): New functions.
3585         (amd64_windows_frame_unwind): New static global.
3586         (amd64_windows_skip_prologue): New function.
3587         (amd64_windows_init_abi): Call frame_unwind_prepend_unwinder
3588         with amd64_windows_frame_unwind. Call set_gdbarch_skip_prologue
3589         with amd64_windows_skip_prologue.
3590
3591 2013-08-30  Joel Brobecker  <brobecker@adacore.com>
3592
3593         GDB 7.6.1 released.
3594
3595 2013-08-30  Pedro Alves  <palves@redhat.com>
3596
3597         * mi/mi-main.c (mi_cmd_trace_find): Use LOC_AND_ADDRESS instead of
3598         SRC_AND_LOC.
3599
3600 2013-08-30  Pedro Alves  <palves@redhat.com>
3601
3602         * thread.c (restore_selected_frame): Use SRC_AND_LOC, and change
3603         warning text.
3604
3605 2013-08-30  Pedro Alves  <palves@redhat.com>
3606
3607         * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
3608         Adjust arguments to print_stack_frame.
3609
3610 2013-08-30  Pedro Alves  <palves@redhat.com>
3611
3612         * ada-tasks.c (task_command_1): Write SRC_AND_LOC instead '1'.
3613
3614 2013-08-30  Pedro Alves  <palves@redhat.com>
3615
3616         * frame.h (show_and_print_stack_frame): Delete declaration.
3617
3618 2013-08-30  Phil Muldoon  <pmuldoon@redhat.com>
3619
3620         PR python/15461
3621         * python/py-arch.c (ARCHPY_REQUIRE_VALID): New macro.
3622         (archpy_name): Check for valid architecture.
3623         (archpy_disassemble): Ditto.
3624
3625 2013-08-29  Joel Brobecker  <brobecker@adacore.com>
3626
3627         * rs6000-nat.c (rs6000_ptrace32): Cast "addr" to "uintptr_t"
3628         instead of "long long" in call to ptrace64.
3629
3630 2013-08-29  Andrew Burgess  <aburgess@broadcom.com>
3631
3632         * mi/mi-interp.c (mi_command_loop): Change signature to match
3633         interp_command_loop_ftype.
3634         (mi1_command_loop): Remove.
3635         (mi2_command_loop): Remove.
3636         (mi3_command_loop): Remove.
3637         (mi_interpreter_resume): Remove setting of
3638         deprecated_command_loop_hook.
3639         (_initialize_mi_interp): Set mi_command_loop as the command loop
3640         callback.
3641
3642 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
3643
3644         * valops.c (do_search_struct_field): Pass v2 instead of base_type to
3645         value_type.
3646
3647 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
3648
3649         * value.c (allocate_value_contents): Make static.
3650         * value.h (allocate_value_contents): Remove prototype.
3651
3652 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
3653
3654         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use value_at_lazy instead
3655         of assembling value via allocate_value_lazy and attribute setter.
3656         * findvar.c (default_read_var_value): Use value_at_lazy instead of
3657         assembling value via allocate_value_lazy and attribute setter.
3658         * valops.c (do_search_struct_field): Use value_at_lazy instead of
3659         assembling value via allocate_value_lazy and attribute setter.
3660
3661 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
3662
3663         * value.c (value_from_contents_and_address): Replace allocate_value and
3664         memcpy with value_from_contents.
3665
3666 2013-08-29  Phil Muldoon  <pmuldoon@redhat.com>
3667
3668         * python/py-framefilter.c (py_print_frame): Remove usage of
3669         PyString_AsString.  Use python_string_to_host_string instead.
3670         Refactor function to work with a string as a new allocation
3671         instead of a pointer.
3672         (py_print_frame): Ditto.
3673         * python/lib/gdb/frames.py (return_list): Cain iterators together
3674         instead of adding them as a list.
3675         (_sort_list): Call return_list, and remove duplicate code.
3676         (execute_frame_filters): Convert iterator to a list with list().
3677         * python/lib/gdb/command/frame_filters.py
3678         (SetFrameFilterPriority._set_filter_priority): Convert priority
3679         attribute to an integer.
3680         * python/lib/gdb/FrameIterator.py (FrameIterator.next): Define
3681         wrapper function __next__.
3682         * python/lib/gdb/FrameDecorator.py: If basestring not defined,
3683         define as "str".
3684
3685 2013-08-29  Phil Muldoon  <pmuldoon@redhat.com>
3686
3687         PR python/15752
3688         * python/py-framefilter.c (apply_frame_filter): Check
3689         gdb_python_initialized.  Exit if the Python frame-filter code
3690         cannot be initialized.
3691
3692 2013-08-29  Phil Muldoon  <pmuldoon@redhat.com>
3693
3694         PR cli/15842
3695         * top.c (print_gdb_version): Remove erroneous newline after help
3696         text.
3697
3698 2013-08-29  Yao Qi  <yao@codesourcery.com>
3699
3700         * varobj.c (install_dynamic_child): Remove trailing space.
3701         Add one blank line after variable declaration.
3702
3703 2013-08-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
3704
3705         PR gdb/15415
3706         * corefile.c (get_exec_file): Use exec_filename.
3707         * defs.h (OPF_DISABLE_REALPATH): New definition.  Add new comment.
3708         * exec.c (exec_close): Free EXEC_FILENAME.
3709         (exec_file_attach): New variable canonical_pathname.  Use
3710         OPF_DISABLE_REALPATH.  Call gdb_realpath explicitly.  Set
3711         EXEC_FILENAME.
3712         * exec.h (exec_filename): New.
3713         * inferior.c (print_inferior, inferior_command): Use
3714         PSPACE_EXEC_FILENAME.
3715         * mi/mi-main.c (print_one_inferior): Likewise.
3716         * progspace.c (clone_program_space, print_program_space): Likewise.
3717         * progspace.h (struct program_space): New field pspace_exec_filename.
3718         * source.c (openp): Describe OPF_DISABLE_REALPATH.  New variable
3719         realpath_fptr, initialize it from OPF_DISABLE_REALPATH, use it.
3720
3721 2013-08-28  Will Newton  <will.newton@linaro.org>
3722
3723         * common/linux-ptrace.c: Include stdint.h unconditionally.
3724
3725 2013-08-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
3726
3727         Code cleanup.
3728         * nto-tdep.c (nto_find_and_open_solib): Use OPF_TRY_CWD_FIRST.
3729
3730 2013-08-28  Yao Qi  <yao@codesourcery.com>
3731             Pedro Alves  <palves@redhat.com>
3732
3733         * event-top.c (gdb_setup_readline): Call stderr_fileopen
3734         instead of stdio_fileopen.
3735         * main.c (captured_main) [__MINGW32__]: Set stderr unbuffered.
3736         .Call stderr_fileopen instead of stdio_fileopen.
3737         * ui-file.c [__MINGW32__] (stderr_file_write): New function.
3738         [__MINGW32__] (stderr_file_fputs): New function.
3739         (stderr_fileopen): New function.
3740         * ui-file.h (stderr_fileopen): Declare.
3741
3742 2013-08-27  Doug Evans  <dje@google.com>
3743
3744         * dwarf2read.c (struct dwarf2_cu): Tweak comment.
3745         (struct dwarf2_per_cu_data): Ditto.
3746         (maybe_queue_comp_unit): Delete forward decl.  Add comment.
3747         (process_imported_unit_die): Ditto.
3748         (follow_die_sig_1): Simplify assert.
3749
3750 2013-08-27  Pedro Alves  <palves@redhat.com>
3751
3752         * windows-nat.c (windows_xfer_memory): Adjust prototype to follow
3753         xfer_partial's interface.  Return TARGET_XFER_E_IO on error.
3754         (windows_xfer_partial): Defer TARGET_OBJECT_MEMORY handling to
3755         windows_xfer_memory directly.
3756         (init_windows_ops): Don't install a deprecated_xfer_memory method.
3757
3758 2013-08-27  Pedro Alves  <palves@redhat.com>
3759
3760         * darwin-nat.c (darwin_xfer_memory): Delete.
3761         (_initialize_darwin_inferior): Don't install a
3762         deprecated_xfer_memory method.
3763
3764 2013-08-27  Pedro Alves  <pedro@codesourcery.com>
3765             Yao Qi  <yao@codesourcery.com>
3766
3767         * mi/mi-cmd-stack.c (list_args_or_locals): Adjust prototype.
3768         (parse_no_frames_option): Remove.
3769         (mi_cmd_stack_list_locals): Handle --skip-unavailable.
3770         (mi_cmd_stack_list_args): Adjust.
3771         (mi_cmd_stack_list_variables): Handle --skip-unavailable.
3772         (list_arg_or_local): Add new parameter 'skip_unavailable'.  Return
3773         early if SKIP_UNAVAILABLE is true and ARG->val is unavailable.
3774         Caller update.
3775         (list_args_or_locals): New parameter 'skip_unavailable'.
3776         Handle it.
3777         * valprint.c (scalar_type_p): Rename to ...
3778         (val_print_scalar_type_p): ... this.  Make extern.
3779         (val_print, value_check_printable): Adjust.
3780         * valprint.h (val_print_scalar_type_p): Declare.
3781         * value.c (value_entirely_unavailable): New function.
3782         * value.h (value_entirely_unavailable): Declare.
3783
3784         * NEWS: Mention the new option "--skip-unavailable" to MI
3785         commands '-stack-list-locals', '-stack-list-arguments' and
3786         '-stack-list-variables'.
3787
3788 2013-08-27  Yao Qi  <yao@codesourcery.com>
3789
3790         * mi/mi-cmd-stack.c (parse_no_frames_option): Remove.
3791         (mi_cmd_stack_list_args): Use mi_getopt_silent to handle
3792         options.
3793         * mi/mi-getopt.c (mi_getopt): Remove.
3794         (mi_getopt_1): Renamed from mi_getopt.  Add one parameter
3795         'error_on_unknown'.
3796         (mi_getopt): Call mi_getopt_1.
3797         (mi_getopt_silent): New.
3798         * mi/mi-getopt.h (mi_getopt_silent): Declare.
3799
3800 2013-08-26  Doug Evans  <dje@google.com>
3801
3802         PR symtab/15885
3803         * dwarf2read.c (dw2_dump): Print some minimal information indicating
3804         .gdb_index is in use.
3805         * symfile.c (reread_symbols): Reset objfile->sf.
3806
3807         * NEWS: Document "mt print objfiles" now takes optional regexp.
3808         * symmisc.c (maintenance_print_objfiles): Argument is now an optional
3809         regexp of objfiles to print.
3810         (_initialize_symmisc): Update doc string for "mt print objfiles".
3811
3812         * dwarf2read.c (write_psymtabs_to_index): Move error checks ahead of
3813         missing debug info checks.
3814
3815 2013-08-26  Raunaq Bathija  <raunaq12@in.ibm.com>
3816             Ulrich Weigand  <uweigand@de.ibm.com>
3817
3818         * xcoffread.c (arrange_linetable): Add fix to correctly handle
3819         line tables generated by XLC compiled binaries.
3820
3821 2013-08-23  Doug Evans  <dje@google.com>
3822
3823         * symmisc.c (dump_symtab): Delete prototype.
3824         (dump_msymbols, dump_objfile): Ditto.
3825         (maintenance_info_symtabs): Mark as dont_repeat.
3826         (_initialize_symmisc): Improve doc string for "mt info symtabs".
3827
3828         * elfread.c (elf_symfile_read): Move "Done reading minimal symbols"
3829         debugging printf to better location.
3830
3831 2013-08-23  Pedro Alves  <palves@redhat.com>
3832
3833         * target.c (target_read_live_memory): Change type of 'ret' local
3834         to LONGEST.
3835
3836 2013-08-23  Pedro Alves  <palves@redhat.com>
3837
3838         * remote.c (remote_write_bytes_aux, remote_write_bytes)
3839         (remote_read_bytes): Change return type to LONGEST, and adjust to
3840         return a target_xfer_error on error.
3841         (remote_xfer_memory): Delete.
3842         (remote_flash_write): Change type of 'ret' local to LONGEST.
3843         (remote_xfer_partial, remote_xfer_partial): Adjust.
3844         (init_remote_ops): Don't install a deprecated_xfer_memory hook.
3845
3846 2013-08-23  Pierre Muller  <muller@sourceware.org>
3847
3848         ARI fix: Push # directives to start of line.
3849         * rs6000-nat.c (rs6000_ptrace32, rs6000_ptrace64): Rule applied.
3850
3851 2013-08-12  Muhammad Waqas  <mwaqas@codesourcery.com>
3852
3853         PR gdb/15501
3854         * breakpoint.c (enable_command, disable_command): Iterate over
3855         all specified breakpoint locations.
3856
3857 2013-08-22  Luis Machado  <lgustavo@codesourcery.com>
3858
3859         * common/linux-ptrace.c (linux_fork_to_function): Push #
3860         directives to the start of the line.
3861         (linux_check_ptrace_features): Fix warning message to use
3862         the "_" markup.
3863
3864 2013-08-22  Luis Machado  <lgustavo@codesourcery.com>
3865
3866         * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-nat.h and
3867         nat/linux-waitpid.h.
3868         (linux-waitpid.o): New object file rule.
3869         * common/linux-ptrace.c: Include nat/linux-waitpid.h.
3870         (current_ptrace_options): Moved from linux-nat.c.
3871         (linux_ptrace_test_ret_to_nx): Use type casts for ptrace
3872         parameters.
3873         (linux_fork_to_function): New function.
3874         (linux_grandchild_function): Likewise.
3875         (linux_child_function): Likewise.
3876         (linux_check_ptrace_features): New function, heavily
3877         based on linux-nat.c:linux_test_for_tracefork.
3878         (linux_enable_event_reporting): New function.
3879         (ptrace_supports_feature): Likewise.
3880         (linux_supports_tracefork): Likewise.
3881         (linux_supports_traceclone): Likewise.
3882         (linux_supports_tracevforkdone): Likewise.
3883         (linux_supports_tracesysgood): Likewise.
3884         * common/linux-ptrace.h (HAS_NOMMU): Moved from
3885         gdbserver/linux-low.c.
3886         (linux_enable_event_reporting): New declaration.
3887         (linux_supports_tracefork): Likewise.
3888         (linux_supports_traceclone): Likewise.
3889         (linux_supports_tracevforkdone): Likewise.
3890         (linux_supports_tracesysgood): Likewise.
3891         * config.in (PTRACE_TYPE_ARG4): Regenerate.
3892         * config/aarch64/linux.mh (NATDEPFILES): Add linux-waitpid.o.
3893         * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
3894         * config/arm/linux.mh (NATDEPFILES): Likewise.
3895         * config/i386/linux.mh (NATDEPFILES): Likewise.
3896         * config/i386/linux64.mh (NATDEPFILES): Likewise.
3897         * config/ia64/linux.mh (NATDEPFILES): Likewise.
3898         * config/m32r/linux.mh (NATDEPFILES): Likewise.
3899         * config/m68k/linux.mh (NATDEPFILES): Likewise.
3900         * config/mips/linux.mh (NATDEPFILES): Likewise.
3901         * config/pa/linux.mh (NATDEPFILES): Likewise..
3902         * config/powerpc/linux.mh (NATDEPFILES): Likewise..
3903         * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
3904         * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
3905         * config/sparc/linux.mh (NATDEPFILES): Likewise.
3906         * config/sparc/linux64.mh (NATDEPFILES): Likewise.
3907         * config/tilegx/linux.mh (NATDEPFILES): Likewise.
3908         * config/xtensa/linux.mh (NATDEPFILES): Likewise.
3909         * configure.ac (AC_CACHE_CHECK): Add void * to the list of
3910         ptrace's 4th argument's types.
3911         Check the type of PTRACE_TYPE_ARG4.
3912         * configure: Regenerate.
3913         * linux-nat.c: Include nat/linux-nat.h and nat/linux-waitpid.h.
3914         (SYSCALL_SIGTRAP): Moved to nat/linux-nat.h.
3915         (linux_supports_tracefork_flag): Remove.
3916         (linux_supports_tracesysgood_flag): Likewise.
3917         (linux_supports_tracevforkdone_flag): Likewise.
3918         (current_ptrace_options): Moved to
3919         common/linux-ptrace.c.
3920         (linux_tracefork_child): Remove.
3921         (my_waitpid): Remove.
3922         (linux_test_for_tracefork): Renamed to
3923         linux_check_ptrace_features and moved to common/linux-ptrace.c.
3924         (linux_test_for_tracesysgood): Remove.
3925         (linux_supports_tracesysgood): Remove.
3926         (linux_supports_tracefork): Remove.
3927         (linux_supports_tracevforkdone): Remove.
3928         (linux_enable_tracesysgood): Remove.
3929         (linux_enable_event_reporting): Remove.
3930         (linux_init_ptrace): New function.
3931         (linux_child_post_attach): Call linux_init_ptrace.
3932         (linux_child_post_startup_inferior): Call linux_init_ptrace.
3933         (linux_child_follow_fork): Call linux_supports_tracefork
3934         and linux_supports_tracevforkdone.
3935         (linux_child_insert_fork_catchpoint): Call
3936         linux_supports_tracefork.
3937         (linux_child_insert_vfork_catchpoint): Likewise.
3938         (linux_child_set_syscall_catchpoint): Call
3939         linux_supports_tracesysgood.
3940         (lin_lwp_attach_lwp): Call linux_supports_tracefork.
3941         * nat/linux-nat.h: New file.
3942         * nat/linux-waitpid.c: New file.
3943         * nat/linux-waitpid.h: New file.
3944
3945 2013-08-22  Samuel Bronson  <naesten@gmail.com>
3946
3947         ARM Linux support for `catch syscall'.
3948         * syscalls/arm-linux.py: New file.
3949         * syscalls/arm-linux.xml: Likewise.
3950         * arm-linux-tdep.c (arm_linux_get_syscall_number): New function.
3951         (arm_linux_init_abi): Register the new function and syscall xml file.
3952         * data-directory/Makefile.in: Install the new syscall xml file.
3953         * NEWS: Brag about this.
3954
3955 2013-08-22  Pedro Alves  <palves@redhat.com>
3956
3957         PR gdb/15871
3958         * corefile.c (target_xfer_memory_error): New function.
3959         (memory_error): Defer EIO to target_memory_error.
3960         (read_memory): Use target_xfer_partial, and handle finer-grained
3961         target xfer errors.
3962         * target.c (target_xfer_error_to_string): New function.
3963         (memory_xfer_partial_1): If memory is known to be
3964         unavailable, return TARGET_XFER_E_UNAVAILABLE instead of -1.
3965         (target_xfer_partial): Make extern.
3966         * target.h (enum target_xfer_error): New enum.
3967         (target_xfer_error_to_string): Declare function.
3968         (target_xfer_partial): Declare function.
3969         (struct target_ops) <xfer_partial>: Adjust describing comment.
3970
3971 2013-08-22  Alan Modra  <amodra@gmail.com>
3972
3973         * configure.host: Support powerpc64le-linux and powerpcle-linux hosts.
3974         * configure.tgt: Likewise as targets.
3975
3976 2013-08-20  Doug Evans  <dje@google.com>
3977
3978         * buildsym.c (subfile_stack): Move here from buildsym.h.
3979         (pending_macros): Ditto.
3980         (get_macro_table): New function.
3981         (buildsym_init): Initialize subfile_stack.
3982         * coffread.c (type_vector,type_vector_length): Moved here from
3983         buildsym.h.
3984         (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
3985         (coff_symtab_read): Use it.
3986         * dbxread.c (read_ofile_symtab): Delete init of subfile_stack.
3987         * dwarf2read.c (macro_start_file): Replace uses of pending_macros
3988         with call to get_macro_table.
3989         * stabsread.c (type_vector,type_vector_length): Moved here from
3990         buildsym.h.
3991         (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
3992         * buildsym.h (get_macro_table): Declare.
3993
3994 2013-08-20  Tom Tromey  <tromey@redhat.com>
3995
3996         * dbxread.c (record_minimal_symbol): Make 'name' argument const.
3997         Update.
3998         (read_dbx_dynamic_symtab): Make 'name' const.  Remove casts.
3999
4000 2013-08-20  Doug Evans  <dje@google.com>
4001
4002         * blockframe.c: Remove #include "psymtab.h".
4003         * cp-support.c: Ditto.
4004         * source.c: Ditto.
4005         * stack.c: Ditto.
4006
4007 2013-08-20  Tom Tromey  <tromey@redhat.com>
4008
4009         PR python/15816:
4010         * exceptions.h (return_mask): Now an enum.
4011         (RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL): Now
4012         enum constants.
4013
4014 2013-08-20  Tom Tromey  <tromey@redhat.com>
4015
4016         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Use
4017         get_objfile_arch.
4018         * elfread.c (elf_rel_plt_read, elf_gnu_ifunc_record_cache)
4019         (elf_gnu_ifunc_resolve_by_got): Use get_objfile_arch.
4020         * jit.c (jit_object_close_impl): Update.
4021         * jv-lang.c (get_dynamics_objfile): Update.
4022         * linespec.c (add_minsym): Use get_dynamics_objfile.
4023         * objfiles.c (get_objfile_bfd_data): Initialize 'gdbarch' field.
4024         (allocate_objfile): Don't initialize 'gdbarch' field.
4025         (get_objfile_arch): Update.
4026         * objfiles.h (struct objfile_per_bfd_storage) <gdbarch>: New field,
4027         moved from...
4028         (struct objfile) <gdbarch>: ... here.  Remove.
4029         * stap-probe.c (stap_can_evaluate_probe_arguments): Use
4030         get_objfile_arch.
4031         * symfile.c (init_entry_point_info): Use get_objfile_arch.
4032
4033 2013-08-20  Alan Modra  <amodra@gmail.com>
4034
4035         * doublest.c (convert_floatformat_to_doublest): Use fmt->split_half
4036         for IBM long double nan and inf.
4037         (floatformat_is_negative, floatformat_classify,
4038         floatformat_mantissa): Similarly.
4039         (floatformat_ieee_single, floatformat_ieee_double,
4040         floatformat_ieee_quad, floatformat_arm_ext,
4041         floatformat_ia64_spill): Delete unused vars.
4042         (_initialize_doublest): Delete unused function.
4043         * gdbtypes.c (floatformats_ibm_long_double): Use new big- and
4044         little-endian variants of floatformat_ibm_long_double.
4045
4046 2013-08-19  Luis Machado  <lgustavo@codesourcery.com>
4047
4048         * Makefile.in (SFILES): Remove common/target-common.c and
4049         add target/waitstatus.c.
4050         (HFILES_NO_SRCDIR): Remove common/target-common.h and add
4051         target/resume.h, target/wait.h and target/waitstatus.h.
4052         (COMMON_OBS): Remove target-common.o and add
4053         waitstatus.o.
4054         (target-common.o): Remove.
4055         (waitstatus.o): New target object file.
4056         * common/target-common.c: Move contents to
4057         target/waitstatus.c and remove.
4058         * common/target-common.h: Move contents to other files and
4059         remove.
4060         (enum resume_kind: Move to target/resume.h.
4061         (TARGET_WNOHANG): Move to target/wait.h.
4062         (enum target_waitkind): Move to target/waitstatus.h.
4063         (struct target_waitstatus): Likewise.
4064         * target.h: Do not include target-common.h and
4065         include target/resume.h, target/wait.h and
4066         target/waitstatus.h.
4067         * target/resume.h: New file.
4068         * target/wait.h: New file.
4069         * target/waitstatus.h: New file.
4070         * target/waitstatus.c: New file.
4071
4072 2013-08-19  Pedro Alves  <palves@redhat.com>
4073
4074         * linux-nat.c (linux_test_for_tracefork)
4075         (linux_test_for_tracesysgood, linux_child_follow_fork)
4076         (lin_lwp_attach_lwp, linux_nat_resume): Don't block child signals.
4077         (linux_nat_wait_1): Extend comment.
4078         (linux_async_pipe): Add comment.
4079
4080 2013-08-15  Kevin Buettner  <kevinb@redhat.com>
4081
4082         * rl78-tdep.c (RL78_RAW_PC_REGNUM): New enum.
4083         (RL78_PC_REGNUM): Move to list of pseudo-register enums.
4084         (rl78_register_type, rl78_register_name, rl78_register_reggroup_p):
4085         Update to account for fact that PC is now a pseudo-register.
4086         (rl78_pseudo_register_write, rl78_pseudo_register_read):  Add
4087         cases for RL78_PC_REGNUM.
4088
4089 2013-08-15  Muhammad Bilal  <mbilal@codesourcery.com>
4090
4091         PR cli/15841
4092         * top.c (quit_force): Skip writing history file
4093         if input is not from terminal.
4094
4095 2013-08-14  Tom Tromey  <tromey@redhat.com>
4096
4097         * remote.c (struct remote_state) <echo_nextthread, nextthread,
4098         resultthreadlist>: New fields.
4099         (OPAQUETHREADBYTES, threadref, MAXTHREADLISTRESULTS): Move earlier.
4100         (remote_get_threadlist, remote_threadlist_iterator): Use
4101         new fields.  Remove static variables.
4102
4103 2013-08-14  Tom Tromey  <tromey@redhat.com>
4104
4105         * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p,
4106         remote_watch_data_address>: New fields.
4107         (remote_stopped_by_watchpoint_p, remote_watch_data_address): Remove.
4108         (process_stop_reply, remote_wait_as)
4109         (remote_check_watch_resources, remote_stopped_data_address): Update.
4110
4111 2013-08-14  Tom Tromey  <tromey@redhat.com>
4112
4113         * remote.c (struct remote_state) <async_client_callback,
4114         async_client_context>: New fields.
4115         (async_client_callback, async_client_context): Remove.
4116         (remote_async_serial_handler, remote_async): Update.
4117
4118 2013-08-14  Tom Tromey  <tromey@redhat.com>
4119
4120         * remote.c (sizeof_pkt): Remove.
4121         (remote_trace_find): Use rs->buf_size, not sizeof_pkt.
4122
4123 2013-08-14  Tom Tromey  <tromey@redhat.com>
4124
4125         * remote.c (struct remote_state) <use_threadinfo_query,
4126         use_threadextra_query>: New fields.
4127         (remote_threads_info, remote_threads_extra_info)
4128         (remote_open_1): Update.
4129
4130 2013-08-14  Tom Tromey  <tromey@redhat.com>
4131
4132         * remote.c (struct remote_state) <finished_object,
4133         finished_annex, finished_offset>: New fields.
4134         (remote_read_qxfer): Use remote_state fields; remove static
4135         variables.
4136
4137 2013-08-14  Tom Tromey  <tromey@redhat.com>
4138
4139         * remote.c (struct remote_state) <last_sent_step>:
4140         New field.
4141         (last_sent_step): Remove.
4142         (remote_resume, remote_wait_as): Update.
4143
4144 2013-08-14  Tom Tromey  <tromey@redhat.com>
4145
4146         * remote.c (struct remote_state) <last_sent_signal>:
4147         New field.
4148         (last_sent_signal): Remove.
4149         (new_remote_state, remote_resume, remote_wait_as): Update.
4150
4151 2013-08-14  Tom Tromey  <tromey@redhat.com>
4152
4153         * remote.c (struct remote_state) <last_program_signals_packet>:
4154         New field.
4155         (last_program_signals_packet): Remove.
4156         (remote_program_signals, remote_open_1): Update.
4157
4158 2013-08-14  Tom Tromey  <tromey@redhat.com>
4159
4160         * remote.c (struct remote_state) <last_pass_packet>:
4161         New field.
4162         (last_pass_packet): Remove.
4163         (remote_pass_signals, remote_open_1): Update.
4164
4165 2013-08-14  Tom Tromey  <tromey@redhat.com>
4166
4167         * remote.c (struct remote_state) <remote_traceframe_number>:
4168         New field.
4169         (remote_traceframe_number): Remove.
4170         (new_remote_state, remote_open_1, set_remote_traceframe)
4171         (remote_trace_find): Update.
4172
4173 2013-08-14  Tom Tromey  <tromey@redhat.com>
4174
4175         * remote.c (struct remote_state) <general_thread, continue_thread>:
4176         New fields.
4177         (general_thread, continue_thread): Remove.
4178         (record_currthread, set_thread, set_general_process)
4179         (remote_open_1, extended_remote_attach_1, remote_wait_as)
4180         (extended_remote_mourn_1): Update.
4181
4182 2013-08-14  Tom Tromey  <tromey@redhat.com>
4183
4184         * remote.c (struct remote_state) <remote_desc>: New field.
4185         (remote_desc): Remove.
4186         (remote_threads_info, remote_threads_extra_info, remote_close)
4187         (send_interrupt_sequence, remote_start_remote, remote_open_1)
4188         (readchar, remote_xfer_partial, remote_rcmd, packet_command)
4189         (remote_hostio_send_command, remote_file_put, remote_file_get)
4190         (remote_file_delete, remote_can_async_p, remote_is_async_p)
4191         (remote_async, remote_new_objfile, set_range_stepping): Update.
4192
4193 2013-08-14  Tom Tromey  <tromey@redhat.com>
4194
4195         * remote.c (remote_state): Now a pointer.
4196         (get_remote_state_raw): Update.
4197         (new_remote_state): New function.
4198         (_initialize_remote): Use new_remote_state.
4199
4200 2013-08-14  Tom Tromey  <tromey@redhat.com>
4201
4202         * remote.c (remote_protocol_features): Now const.
4203
4204 2013-08-14  Tom Tromey  <tromey@redhat.com>
4205
4206         * remote.c (crc32_table, crc32): Remove.
4207         (remote_verify_memory): Use xcrc32.
4208
4209 2013-08-13  Sergio Durigan Junior  <sergiodj@redhat.com>
4210
4211         * value.h (create_internalvar_type_lazy): Adjust prototype
4212         declaration.
4213
4214 2013-08-13  Andrew Burgess  <aburgess@broadcom.com>
4215
4216         * common/format.c (parse_format_string): Don't allow '#' flag for
4217         pointer arguments in format string.
4218
4219 2013-08-13  Pierre Muller  <muller@sourceware.org>
4220
4221         * utils.c (init_page_info): Only call tgetnum function
4222         if rl_get_screen_size did not return useful values.
4223
4224 2013-08-12  Ali Anwar  <ali_anwar@codesourcery.com>
4225
4226         PR breakpoints/15117
4227         * linespec.c (linespec_parse_basic): Check for convenience
4228         variable or history value while parsing.
4229
4230 2013-08-12  Sergio Durigan Junior  <sergiodj@redhat.com>
4231
4232         Revert implementation of gdbarch_gdb_signal_{to,from}_target for
4233         AVR.
4234         * avr-tdep.c: Remove include of "linux-tdep.h".  Remove enum with
4235         different signals between the generic Linux kernel implementation
4236         and AVR's.
4237         (avr_linux_gdb_signal_from_target): Delete.
4238         (avr_linux_gdb_signal_to_target): Delete.
4239         (avr_gdbarch_init): Don't set gdbarch_gdb_signal_{to,from}_target.
4240
4241 2013-08-09  Doug Evans  <dje@google.com>
4242
4243         * dwarf2read.c (create_addrmap_from_index): Ignore bad address table
4244         entries.
4245
4246 2013-08-09  Sergio Durigan Junior  <sergiodj@redhat.com>
4247
4248         * linux-tdep.c: Define enum with generic signal numbers.
4249         (linux_gdb_signal_from_target): New function.
4250         (linux_gdb_signal_to_target): Likewise.
4251         (linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4252         methods to the functions above.
4253         * linux-tdep.h (linux_gdb_signal_from_target): New prototype.
4254         (linux_gdb_signal_to_target): Likewise.
4255         * alpha-linux-tdep.c: Define new enum with signals different
4256         from generic Linux kernel.
4257         (alpha_linux_gdb_signal_from_target): New function.
4258         (alpha_linux_gdb_signal_to_target): Likewise.
4259         (alpha_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4260         with the functions mentioned above.
4261         * avr-tdep.c: Define enum with differences between Linux kernel
4262         and AVR signals.
4263         (avr_linux_gdb_signal_from_target): New function.
4264         (avr_linux_gdb_signal_to_target): Likewise.
4265         (avr_gdbarch_init): Set gdbarch_gdb_signal_{to,from}_target to
4266         the functions mentioned above.
4267         * sparc-linux-tdep.c: Define enum with differences between SPARC
4268         and generic Linux kernel signal numbers.
4269         (sparc32_linux_gdb_signal_from_target): New function.
4270         (sparc32_linux_gdb_signal_to_target): Likewise.
4271         (sparc32_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4272         to the functions defined above.
4273         * xtensa-linux-tdep.c: Define enum with differences between
4274         Xtensa and Linux kernel generic signals.
4275         (xtensa_linux_gdb_signal_from_target): New function.
4276         (xtensa_linux_gdb_signal_to_target): Likewise.
4277         (xtensa_linux_init_abi): Set gdbarch_gdb_signal_to_target
4278         to the functions defined above.
4279         * mips-linux-tdep.c: Define enum with differences between
4280         signals in MIPS and Linux kernel generic ones.
4281         (mips_gdb_signal_to_target): New function.
4282         (mips_gdb_signal_from_target): Redefine to use new enum, handle
4283         only different signals from the Linux kernel generic.
4284         (mips_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4285         the functions defined above.
4286         * mips-linux-tdep.h (enum mips_signals): Remove.
4287
4288 2013-08-09  Pedro Alves  <palves@redhat.com>
4289
4290         * avr-tdep.c (XMALLOC): Delete macro.
4291         * cli/cli-dump.c (XMALLOC): Delete macro.
4292
4293 2013-08-09  Pedro Alves  <palves@redhat.com>
4294
4295         * cli/cli-dump.c: Don't include cli/cli-dump.h.
4296         (scan_expression_with_cleanup, scan_filename_with_cleanup)
4297         (fopen_with_cleanup, add_dump_command): Make static.
4298         * cli/cli-dump.h: Delete file.
4299         * Makefile.in (HFILES_NO_SRCDIR): Remove reference to
4300         cli/cli-dump.h.
4301
4302 2013-08-09  Pedro Alves  <palves@redhat.com>
4303
4304         * tracepoint.c (tfile_start): Show tilde-expanded filename in
4305         error message.
4306
4307 2013-08-09  Pedro Alves  <palves@redhat.com>
4308
4309         * breakpoint.c (save_breakpoints): Show tilde-expanded filename in
4310         error message.
4311
4312 2013-08-09  Pedro Alves  <palves@redhat.com>
4313
4314         * gcore.c (create_gcore_bfd): Don't use tilde_expand here.
4315         (gcore_command): Use tilde_expand here, and when showing the
4316         filename to the user, show the expanded version.
4317
4318 2013-08-09  Yao Qi  <yao@codesourcery.com>
4319
4320         * stack.c (read_frame_arg): Set 'entryval_error' to NULL if
4321         'entryval' is set.
4322
4323 2013-08-08  Azat Khuzhin  <a3at.mail@gmail.com>  (tiny change)
4324
4325         * gcore.c (create_gcore_bfd): Use tilde_expand.
4326
4327 2013-08-08  Yao Qi  <yao@codesourcery.com>
4328
4329         * frame.h (read_frame_local): Declare.
4330         * mi/mi-cmd-stack.c (list_args_or_locals): Call
4331         read_frame_local.
4332         * stack.c (read_frame_local): New.
4333
4334 2013-08-08  Yao Qi  <yao@codesourcery.com>
4335
4336         * mi/mi-cmd-stack.c: Update comments to function
4337         list_args_or_locals.
4338
4339 2013-08-07  Tom Tromey  <tromey@redhat.com>
4340
4341         PR symtab/15028:
4342         * dwarf2read.c (struct process_psymtab_comp_unit_data): New.
4343         (process_psymtab_comp_unit_reader): Use it.
4344         (process_psymtab_comp_unit): Update.  Add "pretend_language"
4345         argument.
4346         (dwarf2_build_psymtabs_hard): Update.
4347         (scan_partial_symbols): Pass CU's language to
4348         process_psymtab_comp_unit.
4349
4350 2013-08-07  Tom Tromey  <tromey@redhat.com>
4351
4352         * dwarf2read.c (dw2_get_primary_filename_reader): Remove.
4353         (dwarf2_gdb_index_functions): Update.
4354         * psymtab.c (find_symbol_file_from_partial): Remove.
4355         (psym_functions): Update.
4356         * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
4357         Remove.
4358
4359 2013-08-07  Tom Tromey  <tromey@redhat.com>
4360
4361         * symfile.c (set_initial_language): Look up "main" symbol
4362         and use its language.
4363         * symtab.c (find_main_filename): Remove.
4364         * symtab.h (find_main_filename): Remove.
4365
4366 2013-08-07  Tom Tromey  <tromey@redhat.com>
4367
4368         * dwarf2read.c (recursively_compute_inclusions): Add
4369         "immediate_parent" argument.  Set symtab's "user" field
4370         if not set.
4371         (compute_symtab_includes): Update.
4372
4373 2013-08-07  Tom Tromey  <tromey@redhat.com>
4374
4375         * linespec.c (convert_linespec_to_sals): Use maybe_add_address
4376         when adding label symbols.
4377
4378 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
4379             Ulrich Weigand  <uweigand@de.ibm.com>
4380
4381         * configure.tgt (powerpc64-*-aix*): Match powerpc64 running aix.
4382         * configure.host (powerpc64-*-aix*): Likewise.
4383
4384 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
4385             Ulrich Weigand  <uweigand@de.ibm.com>
4386
4387         * gdb_ptrace.h: Use ptrace64 instead of ptrace if HAVE_PTRACE64
4388         is defined.
4389         * rs6000-nat.c: Check for __ld_info64_ if compiling 64 BIT gdb.
4390         (rs6000_ptrace32): Call ptrace64 instead of ptrace if present.
4391         (rs6000_ptrace64): Call ptace64 instead of ptracex if present.
4392         * configure.ac: Check for ptrace64.
4393         * configure, config.in: Regenerate.
4394
4395 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
4396             Ulrich Weigand  <uweigand@de.ibm.com>
4397
4398         * aixthread.c: Call ptrace64 instead of ptracex if defined.
4399         Call ptrace64 instead of ptrace if defined.
4400         Add macro addr_ptr to take care of ptrace address argument.
4401         (pdc_read_regs): Likewise.
4402         (pdc_write_regs): Likewise.
4403         (aix_thread_resume): Likewise.
4404         (fetch_regs_kernel_thread): Likewise.
4405         (store_regs_kernel_thread): Likewise.
4406
4407 2013-08-07  Anton Blanchard  <anton@samba.org>
4408
4409         * MAINTAINERS: Add myself to Write After Approval.
4410
4411 2013-08-05  Tom Tromey  <tromey@redhat.com>
4412
4413         * aix-thread.c (_initialize_aix_thread): Use
4414         complete_target_initialization.
4415         * bsd-uthread.c (_initialize_bsd_uthread): Use
4416         complete_target_initialization.
4417         * dec-thread.c (_initialize_dec_thread): Use
4418         complete_target_initialization.
4419         * ravenscar-thread.c (_initialize_ravenscar): Use
4420         complete_target_initialization.
4421         * sol-thread.c (_initialize_sol_thread): Use
4422         complete_target_initialization.
4423         * spu-multiarch.c (_initialize_spu_multiarch): Use
4424         complete_target_initialization.
4425
4426 2013-08-05  Tom Tromey  <tromey@redhat.com>
4427
4428         * ada-exp.y (write_var_or_type): Use bound_minimal_symbol.
4429         * ada-lang.c (ada_lookup_simple_minsym): Return
4430         bound_minimal_symbol.
4431         * ada-lang.h (ada_lookup_simple_minsym): Update.
4432         * c-exp.y (variable): Use lookup_bound_minimal_symbol.
4433         * f-exp.y (variable): Use lookup_bound_minimal_symbol.
4434         * go-exp.y (variable): Use lookup_bound_minimal_symbol.
4435         * jv-exp.y (push_expression_name): Use lookup_bound_minimal_symbol.
4436         * m2-exp.y (variable): Use lookup_bound_minimal_symbol.
4437         * minsyms.c (msymbol_objfile): Remove.
4438         (lookup_minimal_symbol_internal): New function, from
4439         lookup_minimal_symbol.
4440         (lookup_minimal_symbol): Rewrite using
4441         lookup_minimal_symbol_internal.
4442         (lookup_bound_minimal_symbol): New function.
4443         * minsyms.h (msymbol_objfile): Remove.
4444         (lookup_bound_minimal_symbol): Declare.
4445         * p-exp.y (variable): Use lookup_bound_minimal_symbol.
4446         * parse.c (write_exp_msymbol): Change parameter to a
4447         bound_minimal_symbol.
4448         (write_dollar_variable): Use lookup_bound_minimal_symbol.
4449         * parser-defs.h (write_exp_msymbol): Update.
4450         * printcmd.c (address_info): Use lookup_bound_minimal_symbol.
4451         * symfile.c (simple_read_overlay_table): Use
4452         lookup_bound_minimal_symbol.
4453         * symtab.c (skip_prologue_sal): Don't use msymbol_objfile.
4454         (search_symbols): Likewise.
4455         (print_msymbol_info): Take a bound_minimal_symbol argument.
4456         (symtab_symbol_info, rbreak_command): Update.
4457         * symtab.h (struct symbol_search) <msymbol>: Change type
4458         to bound_minimal_symbol.
4459         * valops.c (find_function_in_inferior): Use
4460         lookup_bound_minimal_symbol.
4461         * value.c (value_fn_field): Use lookup_bound_minimal_symbol.
4462
4463 2013-08-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
4464
4465         Code cleanup.
4466         * remote.c (cleanup_sigint_signal_handler): Rename the declaration
4467         to ...
4468         (async_cleanup_sigint_signal_handler): ... this.
4469         (initialize_sigint_signal_handler): Remove declaration.
4470         (handle_remote_sigint): Rename the declaration to ...
4471         (async_handle_remote_sigint): ... this.
4472         (handle_remote_sigint_twice): Rename the declaration to ...
4473         (async_handle_remote_sigint_twice): ... this.
4474         (async_remote_interrupt, async_remote_interrupt_twice)
4475         (remote_interrupt): Remove the declarations.
4476         (remote_interrupt_twice): Rename the declaration ...
4477         (sync_remote_interrupt_twice): ... this.
4478         (sigint_remote_twice_token): Rename the variable to ...
4479         (async_sigint_remote_twice_token): ... this.
4480         (sigint_remote_token): Rename the variable to ...
4481         (async_sigint_remote_token): ... this.
4482         (initialize_sigint_signal_handler): Rename the function to ...
4483         (async_initialize_sigint_signal_handler): ... this.  Update the name
4484         inside.
4485         (handle_remote_sigint): Rename the function to ...
4486         (async_handle_remote_sigint): ... this.  Update the names inside.
4487         (handle_remote_sigint_twice): Rename the function to ...
4488         (async_handle_remote_sigint_twice): ... this.  Update the names inside.
4489         (cleanup_sigint_signal_handler): Rename the function to ...
4490         (async_cleanup_sigint_signal_handler): ... this.
4491         (remote_interrupt): Rename the function to ...
4492         (sync_remote_interrupt): this.  Update the names inside.
4493         (remote_interrupt_twice): Rename the function to ...
4494         (sync_remote_interrupt_twice): this.  Update the names inside.
4495         (remote_terminal_inferior, remote_terminal_ours, remote_wait_as)
4496         (_initialize_remote): Update the names inside.
4497
4498 2013-08-02  Tom Tromey  <tromey@redhat.com>
4499
4500         PR symtab/15719:
4501         * breakpoint.c (update_watchpoint, watchpoint_check)
4502         (watch_command_1): Update.
4503         * eval.c (fetch_subexp_value): Add "preserve_errors"
4504         parameter.
4505         * ppc-linux-nat.c (check_condition): Update.
4506         * value.h (fetch_subexp_value): Update.
4507
4508 2013-08-02  Andrew Burgess  <aburgess@broadcom.com>
4509
4510         * mi/mi-interp.c (mi_interpreter_resume): Remove call to
4511         add_file_handler.
4512
4513 2013-08-01  Doug Evans  <dje@google.com>
4514
4515         PR symtab/15691
4516         * dwarf2read.c (struct dwarf2_per_cu_data): New member tu_read.
4517         (fill_in_sig_entry_from_dwo_entry): Reorganize asserts.
4518         Add assert of sig_entry->dwo_unit == NULL.
4519         (lookup_dwo_signatured_type): Don't assign TU to a DWO if the TU
4520         had already been read.
4521         (read_signatured_type): Set per_cu.tu_read.
4522
4523         PR symtab/15695
4524         * valops.c (value_struct_elt): Add missing call to check_typedef.
4525         (value_find_oload_method_list): Ditto.
4526
4527         * symtab.c (do_free_search_symbols_cleanup): Change arg to,
4528         effectively, struct symbol_search **.
4529         (make_cleanup_free_search_symbols): Change arg to struct
4530         symbol_search **.  All callers updated.
4531         (compare_search_syms): Compare symtab file name and block as well.
4532         (search_symbols_equal): New function.
4533         (sort_search_symbols_remove_dups): Renamed from sort_search_symbols.
4534         New args new_head, new_tail.  Result is now void.  Remove dups after
4535         sorting the symbols.
4536         (search_symbols): Sort all found symbols once, after all have been
4537         found, and remove duplicates.  Simplify cleanup tracking of result.
4538         * symtab.h (make_cleanup_free_search_symbols): Update prototype.
4539
4540         Further workarounds for binutils/15021.
4541         * dwarf2read.c (recursively_compute_inclusions): Change type of result
4542         parameter to VEC (symtab_ptr) **.  New parameter all_type_symtabs.
4543         Watch for duplicate symtabs coming from type units.
4544         (compute_symtab_includes): Update call to
4545         recursively_compute_inclusions. Build vector of included symtabs
4546         instead of per_cus.
4547         * symtab.h (symtab_ptr): New typedef.
4548         (DEF_VEC_P (symtab_ptr)): New VEC type.
4549         * linespec.c (symtab_p): Delete.  All uses updated to use symtab_ptr
4550         instead.
4551
4552 2013-08-01  Andrew Burgess  <aburgess@broadcom.com>
4553
4554         * cli/cli-script.c (script_from_file): Remove use of
4555         error_pre_print.
4556         * main.c (captured_main): Remove use of error_pre_print and
4557         quit_pre_print.
4558         * utils.c (error_pre_print, quit_pre_print): Remove.
4559         * utils.h (error_pre_print, quit_pre_print): Likewise.
4560
4561 2013-08-01  Yao Qi  <yao@codesourcery.com>
4562
4563         * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Parse argv
4564         with mi_getopt.
4565         (mi_cmd_stack_list_variables): Likewise.
4566
4567 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
4568
4569         * exceptions.c (deprecated_throw_reason): Remove.
4570         * exceptions.h (deprecated_throw_reason): Remove.
4571
4572 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
4573
4574         * remote-mips.c (mips_error): Replace use of
4575         deprecated_throw_reason with throw_verror.  Use the error message
4576         passed to mips_error as the error message for throw_verror.
4577
4578 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
4579
4580         * monitor.c (monitor_interrupt_query): Replace use of
4581         deprecated_throw_reason with quit.
4582         * nto-procfs.c (interrupt_query): Likewise.
4583         * remote-fileio.c (remote_fileio_sig_exit): Likewise.
4584         * remote-mips.c (mips_kill): Likewise.
4585         * remote.c (interrupt_query): Likewise.
4586
4587 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
4588
4589         * utils.c (internal_verror): Replace use of deprecated_throw_reason
4590         with call to fatal.
4591
4592 2013-07-31  Pedro Alves  <pedro@codesourcery.com>
4593             Yao Qi  <yao@codesourcery.com>
4594
4595         * tracepoint.c (trace_dump_command): Select the current frame.
4596
4597 2013-07-30  Doug Evans  <dje@google.com>
4598
4599         * dwarf2read.c (process_queue): Add type signature to debug output.
4600
4601 2013-07-30  Andrew Burgess  <aburgess@broadcom.com>
4602
4603         * value.c (value_fetch_lazy): Mark optimized out values as such
4604         rather than raising an error.
4605
4606 2013-07-30  Andrew Burgess  <aburgess@broadcom.com>
4607
4608         * value.c (value_fetch_lazy): Ensure parent value is not lazy
4609         before checking which bits of the parent, not the child, value are
4610         valid.
4611
4612 2013-07-30  Muhammad Bilal  <mbilal@codesorcery.com>
4613
4614         PR gdb/15715
4615         * top.c: Include "filenames.h".
4616         (set_history_filename): New function.
4617         (init_main): Install it as set hook of the "set history filename"
4618         command.
4619
4620 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
4621
4622         * dwarf2read.c (dwarf2_get_ref_die_offset): Constify struct
4623         attribute parameter.
4624         (dwarf2_const_value_data): Constify struct attribute parameter.
4625         (dwarf2_const_value): Constify struct attribute parameter.
4626         (dwarf2_const_value_attr): Constify struct attribute parameter.
4627         (lookup_die_type): Constify struct attribute parameter.
4628         (dwarf2_get_attr_constant_value): Constify struct attribute parameter.
4629         (follow_die_ref_or_sig): Constify struct attribute parameter.
4630         (follow_die_ref): Constify struct attribute parameter.
4631         (follow_die_sig): Constify struct attribute parameter.
4632         (get_DW_AT_signature_type): Constify struct attribute parameter.
4633         (get_type_unit_group): Constify struct attribute parameter.
4634         (fill_in_loclist_baton): Constify struct attribute parameter.
4635         (dwarf2_symbol_mark_computed): Constify struct attribute parameter.
4636         (type_unit_group): Constify struct attribute parameter.
4637
4638 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
4639
4640         * dwarf2read.c (attr_form_is_block): Make argument const.
4641         (attr_form_is_section_offset): Make argument const.
4642         (attr_form_is_constant): Make argument const.
4643         (attr_form_is_ref): Make argument const.
4644
4645 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
4646
4647         * dwarf2read.c (attr_is_ref): Rename to attr_form_is_ref.
4648         All uses updated.
4649         (attr_form_is_ref): Moved below attr_form_is_constant.
4650
4651 2013-07-29  Doug Evans  <dje@google.com>
4652
4653         * main.c (captured_command_loop): Tweak comment.
4654
4655         * target.c (target_async_permitted_1): Fix comment.
4656
4657         * symtab.c (iterate_over_some_symtabs): Add comment.
4658
4659         * symtab.c (iterate_over_some_symtabs): Fix indentation.
4660
4661 2013-07-27  Yao Qi  <yao@codesourcery.com>
4662
4663         * NEWS: Mention that GDBserver now supports hardware
4664         watchpoints on the MIPS GNU/Linux target.
4665
4666 2013-07-27  Yao Qi  <yao@codesourcery.com>
4667
4668         * Makefile.in (HFILES_NO_SRCDIR): Add
4669         common/mips-linux-watch.h.
4670         (mips-linux-watch.o): New rule.
4671         * common/mips-linux-watch.c: New.
4672         * common/mips-linux-watch.h: New.
4673         * config/mips/linux.mh (NATDEPFILES): Add mips-linux-watch.o
4674         * mips-linux-nat.c: Include mips-linux-watch.h.
4675         (W_BIT, R_BIT, I_BIT, W_MASK, R_MASK, I_MASK, IRW_MASK): Move
4676         to common/mips-linux-watch.h.
4677         (MAX_DEBUG_REGISTER): Likewise.
4678         (enum pt_watch_style): Likewise.
4679         (struct mips32_watch_regs): Likewise.
4680         (struct mips64_watch_regs): Likewise.
4681         (struct pt_watch_regs): Likewise.
4682         (struct mips_watchpoint): Likewise.
4683         (mips_linux_watch_get_irw_mask): Move to
4684         common/mips-linux-watch.c.
4685         (get_reg_mask, mips_linux_watch_get_num_valid): Likewise.
4686         (mips_linux_watch_get_watchlo): Likewise.
4687         (mips_linux_watch_set_watchlo): Likewise.
4688         (mips_linux_watch_get_watchhi): Likewise.
4689         (mips_linux_watch_set_watchhi): Likewise.
4690         (mips_linux_read_watch_registers): Likewise.
4691         (mips_linux_watch_type_to_irw): Likewise.
4692         (mips_linux_stopped_data_address, fill_mask): Likewise.
4693         (mips_linux_watch_try_one_watch): Likewise.
4694         (mips_linux_watch_populate_regs): Likewise.
4695
4696 2013-07-27  Yao Qi  <yao@codesourcery.com>
4697
4698         * mips-linux-nat.c (get_irw_mask): Rename to ...
4699         (mips_linux_watch_get_irw_mask): ... this.  Rename parameter
4700         'set' to 'n'.  Update function comment.  All callers changed.
4701         (get_reg_mask): Rename parameter 'set' to 'n'.  Update
4702         function comment.  All callers changed.
4703         (get_num_valid): Rename to ...
4704         (mips_linux_watch_get_num_valid): ... this.  Rename parameter
4705         'set' to 'n'.  Update function comment.  All callers changed.
4706         (get_watchlo): Rename to ...
4707         (mips_linux_watch_get_watchlo): ... this.  Rename parameter
4708         'set' to 'n'.  Update function comment.  All callers changed.
4709         (set_watchlo): Rename to ...
4710         (mips_linux_watch_set_watchlo): ... this.  Rename parameter
4711         'set' to 'n'.  Update function comment.  All callers changed.
4712         (get_watchhi): Rename to ...
4713         (mips_linux_watch_get_watchhi): ... this.  Update function
4714         comment.  All callers changed.
4715         (set_watchhi): Rename to ...
4716         (mips_linux_watch_set_watchhi): ... this.  Update function
4717         comment.  All callers changed.
4718         (mips_linux_read_watch_registers): Update function comment.
4719         Add new parameters 'lwpid', 'watch_readback', and
4720         'watch_readback_valid'.  Update.
4721         (type_to_irw): Rename to ...
4722         (mips_linux_watch_type_to_irw): ... this.  Update function
4723         comment.  All callers changed.
4724         (fill_mask): Update function comment.
4725         (try_one_watch): Rename to ...
4726         (mips_linux_watch_try_one_watch): ... this.  Change the type
4727         of parameter 'irw' from 'unsigned' to 'uint32_t'.
4728         (populate_regs_from_watches): Rename to ...
4729         (mips_linux_watch_populate_regs): ... this.  Add parameter
4730         'current_watches'.  All callers changed.
4731
4732 2013-07-27  Yao Qi  <yao@codesourcery.com>
4733
4734         * mips-linux-nat.c (MAX_DEBUG_REGISTER): Move it earlier in
4735         the code.
4736         (PTRACE_SET_WATCH_REGS, enum pt_watch_style): Remove.
4737         (struct mips32_watch_regs, struct mips64_watch_regs): Remove.
4738         (struct pt_watch_regs): Likewise.
4739         [!PTRACE_GET_WATCH_REGS] (PTRACE_SET_WATCH_REGS): New macro.
4740         [!PTRACE_GET_WATCH_REGS] (enum pt_watch_style): New.
4741         [!PTRACE_GET_WATCH_REGS] (struct mips32_watch_regs): New.
4742         [!PTRACE_GET_WATCH_REGS] (struct mips64_watch_regs): New.
4743         [!PTRACE_GET_WATCH_REGS] (struct pt_watch_regs): New.
4744
4745 2013-07-27  Yao Qi  <yao@codesourcery.com>
4746
4747         * breakpoint.h: Include break-common.h.
4748         (enum target_hw_bp_type): Move to ...
4749         * common/break-common.h: ... here.  New.
4750
4751 2013-07-26  Cyril Nikolaev  <cyril@nichtverstehen.de>
4752
4753         * inflow.c (terminal_init_inferior_with_pgrp): Save inferior
4754         process group regardless of having tty on stdin.
4755
4756 2013-07-25  Doug Evans  <dje@google.com>
4757
4758         * linux-fork.h (detach_fork): Delete.
4759
4760 2013-07-25  Tom Tromey  <tromey@redhat.com>
4761
4762         PR remote/15256, PR remote/15266:
4763         * bfd-target.c (target_bfd_reopen): Initialize to_magic.
4764         * monitor.c (monitor_detach): Use unpush_target.
4765         * remote-m32r-sdi.c (m32r_detach): Use unpush_target.
4766         * remote-mips.c (mips_detach): Use unpush_target.  Don't
4767         call mips_close.
4768         * remote-sim.c (gdbsim_detach): Use unpush_target.
4769         * target.c (pop_target): Remove.
4770         (pop_all_targets_above): Don't call target_close.
4771         (target_close): Assert that the target is unpushed.
4772         * target.h (pop_target): Don't declare.
4773         * tracepoint.c (tfile_open): Use unpush_target.
4774
4775 2013-07-25  Tom Tromey  <tromey@redhat.com>
4776
4777         * linux-thread-db.c (init_thread_db_ops): Call
4778         complete_target_initialization.
4779         (_initialize_thread_db): Don't call add_target.
4780         * target.c (complete_target_initialization): New function.
4781         (add_target_with_completer): Call it.
4782         * target.h (complete_target_initialization): Declare.
4783
4784 2013-07-25  Mark Kettenis  <kettenis@gnu.org>
4785
4786         * hppa-tdep.h (enum hppa_regnum): Add members for all space registers.
4787         * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Add comment.
4788         (HPPANBSD_SIZEOF_GREGS): New define.
4789         (hppaobsd_supply_gregset): Handle additional registers.
4790         * hppabsd-nat.c (hppabsd_gregset_supplies_p): Adjust to indicate
4791         we provide more registers now.
4792         (hppabsd_supply_gregset): Supply additional registers.
4793         (hppabsd_collect_gregset): Collect additional registers.
4794
4795 2013-07-25  Mark Kettenis  <kettenis@gnu.org>
4796
4797         * hppabsd-tdep.c: Include "dwarf2-frame.h".
4798         (hppabsd_dwarf2_frame_init_reg): New function.
4799         (hppabsd_init_abi): Hook in the DWARF CFI frame unwinder.
4800
4801 2013-07-25  Andrew Burgess  <aburgess@broadcom.com>
4802
4803         * mi/mi-main.c (output_register): Make MI 'r' format use standard
4804         'z' format code.  Remove error for optimized out values, standard
4805         code will handle these fine.
4806
4807 2013-07-25  Andrew Burgess  <aburgess@broadcom.com>
4808
4809         * NEWS: Mention new 'z' formatter.
4810         * printcmd.c (print_scalar_formatted): Add new 'z' formatter.
4811         (_initialize_printcmd): Mention 'z' formatter in help text of the
4812         'x' command.
4813
4814 2013-07-24  Maciej W. Rozycki  <macro@codesourcery.com>
4815
4816         * mips-tdep.c (micromips_deal_with_atomic_sequence): Correct
4817         formatting.
4818
4819 2013-07-24  Sergio Durigan Junior  <sergiodj@redhat.com>
4820
4821         * breakpoint.c (create_longjmp_master_breakpoint): Check if probe
4822         interface can evaluate arguments.  Fallback to the old mode if it
4823         cannot.
4824         (create_exception_master_breakpoint): Likewise.
4825         * elfread.c (elf_can_evaluate_probe_arguments): New function.
4826         (struct sym_probe_fns elf_probe_fns): Export function above to the
4827         probe interface.
4828         * probe.c (can_evaluate_probe_arguments): New function.
4829         * probe.h (struct probe_ops) <can_evaluate_probe_arguments>: New
4830         function pointer.
4831         (can_evaluate_probe_arguments): New function prototype.
4832         * solib-svr4.c (svr4_create_solib_event_breakpoints): Check if
4833         probe interface can evaluate arguments.  Fallback to the old mode
4834         if it cannot.
4835         * stap-probe.c (stap_get_probe_argument_count): Check if probe
4836         interface can evaluate arguments.  Warning the user if it cannot.
4837         (stap_can_evaluate_probe_arguments): New function.
4838         (struct probe_ops stap_probe_ops): Export function above to the
4839         probe interface.
4840         * symfile.h (struct sym_probe_fns) <can_evaluate_probe_arguments>:
4841         New function pointer.
4842
4843 2013-07-24  Luis Machado  <lgustavo@codesourcery.com>
4844
4845         * Makefile.in (SFILES): Add common/target-common.c.
4846         Add common/target-common.h to headers.
4847         (COMMON_OBS): Add target-common.o.
4848         (target-common.o): New target.
4849         * linux-nat.h (resume_kind): Move to common/target-common.h.
4850         * target.c (target_waitstatus_to_string): Move to
4851         common/target-common.c.
4852         * target.h: Include target-common.h.
4853         (target_waitkind): Move to common/target-common.h.
4854         (target_waitstatus): Likewise.
4855         (TARGET_WNOHANG): Likewise.
4856         * common/target-common.c: New file.
4857         * common/target-common.h: New file.
4858
4859 2013-07-24  Doug Evans  <dje@google.com>
4860
4861         * dwarf2read.c (lookup_dwo_cutu): Change missing DWO complaint to
4862         a warning.
4863
4864 2013-07-23  Yao Qi  <yao@codesourcery.com>
4865
4866         * i386-tdep.c (i386_in_stack_tramp_p): Remove unused
4867         parameter 'gdbarch'.
4868         (i386_stack_tramp_frame_sniffer): Caller update.
4869         * i386-linux-tdep.c (i386_linux_core_read_xcr0): Remove
4870         parameter 'gdbarch' and 'target'.
4871         (i386_linux_core_read_description): Caller update.
4872         * amd64-linux-tdep.c (amd64_linux_core_read_description):
4873         Likewise.
4874         * i386-linux-tdep.h (i386_linux_core_read_xcr0): Update
4875         declaration.
4876
4877 2013-07-23  Tom Tromey  <tromey@redhat.com>
4878
4879         * dwarf2read.c (init_cutu_and_read_dies): Revert patch from
4880         2013-07-22.
4881
4882 2013-07-22  Doug Evans  <dje@google.com>
4883
4884         * exec.h (remove_target_sections): Delete arg abfd.
4885         * exec.c (exec_close): Update call to remove_target_sections.
4886         (remove_target_sections): Delete arg abfd.
4887         * solib.c (update_solib_list): Ditto.
4888         (reload_shared_libraries_1): Ditto.
4889         (clear_solib): Ditto, and unconditionally call remove_target_sections.
4890         * target.h (struct target_section): Rename key to owner.
4891         All uses updated.
4892
4893 2013-07-22  Tom Tromey  <tromey@redhat.com>
4894
4895         * solib-som.c (som_open_symbol_file_object): Call do_cleanups.
4896
4897 2013-07-22  Tom Tromey  <tromey@redhat.com>
4898
4899         * dwarf2read.c (init_cutu_and_read_dies): Remove 'free_cu_cleanup'.
4900         Simplify cleanup handling.
4901
4902 2013-07-22  Tom Tromey  <tromey@redhat.com>
4903
4904         * dwarf2read.c (dwarf_decode_line_header): Call do_cleanups
4905         on all return paths.
4906
4907 2013-07-22  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
4908
4909         * ppc-linux-nat.c (PPC_DEBUG_FEATURE_DATA_BP_DAWR): New define.
4910         (ppc_linux_region_ok_for_hw_watchpoint): Add checking to use the new
4911         DAWR interface for longer ranges hardware watchpoint (up to 512 bytes).
4912
4913 2013-07-22  Phil Muldoon  <pmuldoon@redhat.com>
4914
4915         * top.c (print_gdb_version): Add help, apropos description and
4916         url to online documentation.
4917
4918 2013-07-19  Hui Zhu  <hui@codesourcery.com>
4919
4920         PR gdb/15692
4921         * mi/mi-cmd-break.c (mi_argv_to_format): Handle double quotes.
4922
4923 2013-07-19  Yao Qi  <yao@codesourcery.com>
4924
4925         * target.c (update_current_target): Change the default action
4926         of 'to_traceframe_info' from tcomplain to return_zero.
4927         * target.h (struct target_ops) <to_traceframe_info>: Add more
4928         comments.
4929         * valops.c (read_value_memory): Call
4930         traceframe_available_memory unconditionally.
4931
4932 2013-07-18  Yao Qi  <yao@codesourcery.com>
4933
4934         * coffread.c (coff_symfile_read): Iterate over minimal symbols,
4935         if the name is prefixed by "__imp_" or "_imp_", look for minimal
4936         symbol without prefix.  If found, set its type to
4937         'mst_solib_trampoline'.
4938
4939 2013-07-17  Doug Evans  <dje@google.com>
4940
4941         * NEWS: Mention "set print raw frame-arguments".
4942         * gdbcmd.h (setprintrawlist, showprintrawlist): Declare.
4943         * stack.c (print_raw_frame_arguments): New static global.
4944         (print_frame_arg): Set opts.raw from print_raw_frame_arguments.
4945         (_initialize_stack): New command "set/show print raw frame-arguments".
4946         * valprint.c (setprintrawlist, showprintrawlist): New globals.
4947         (set_print_raw, show_print_raw): New functions.
4948         (_initialize_valprint): New prefix command "set/show print raw".
4949         * valprint.h (value_print_options): Improve comments.
4950
4951         * cli/cli-cmds.c (init_cmd_lists): Delete unnecessary initialization
4952         of all *list variables.
4953
4954         * gdbcmd.h (togglelist): Delete.
4955         * cli/cli-cmds.c (togglelist): Delete.
4956         (init_cmd_lists): Update.
4957         * cli/cli-cmds.h (togglelist): Delete.
4958
4959 2013-07-17  Tom Tromey  <tromey@redhat.com>
4960
4961         * dwarf2read.c (dwarf2_per_objfile_free): Clear
4962         dwarf2_per_objfile.
4963
4964 2013-07-16  Doug Evans  <dje@google.com>
4965
4966         * nto-tdep.c (nto_relocate_section_addresses): Update,
4967         target_section.bfd deleted.
4968         * ppc64-tdep.c (ppc64_convert_from_func_ptr_addr): Ditto.
4969         * s390-tdep.c (s390_load): Ditto.
4970         * solib-aix.c (solib_aix_relocate_section_addresses): Ditto.
4971
4972 2013-07-16  Andrew Burgess  <aburgess@broadcom.com>
4973
4974         * common/format.c (parse_format_string): Add checks for NULL
4975         character before calling strchr.
4976
4977 2013-07-16  Doug Evans  <dje@google.com>
4978
4979         * solist.h (target_so_ops.find_and_open_solib): Clarify usage of
4980         temp_pathname argument.
4981         * nto-tdep.c (nto_find_and_open_solib): Fix setting of temp_pathname
4982         when opening the file fails.
4983
4984         * target.h (struct target_section): Delete member bfd.
4985         All users updated to use the_bfd_section->owner instead.
4986         * exec.c (add_to_section_table): Assert bfd is expected value.
4987         Remove initialization of target_section.bfd.
4988         (remove_target_sections): Update.
4989         (section_table_available_memory): Update.
4990         (section_table_xfer_memory_partial): Update.
4991         (print_section_info): Update.
4992         (exec_set_section_address): Update.
4993         * record-full.c (record_full_core_xfer_partial): Update.
4994         * solib-svr4.c (svr4_relocate_section_addresses): Update.
4995         * solib-target.c (solib_target_relocate_section_addresses): Update.
4996         * symfile.c (build_section_addr_info_from_section_table): Update.
4997         * target.c (memory_xfer_live_readonly_partial): Update.
4998         (memory_xfer_partial_1): Update.
4999
5000 2013-07-15  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
5001
5002         * ppc-linux-nat.c: Since the new PowerPC specific ptrace interface is
5003         now available for embedded (BookE) and server (BookS) processors,
5004         correct mentions of 'booke' and adjust comments accordingly in order to
5005         avoid confusion. Rename struct 'booke_debug_info' to 'hwdebug_info'.
5006         (have_ptrace_booke_interface): Rename function and variable
5007         'have_ptrace_booke_interface' to 'have_ptrace_hwdebug_interface'.
5008         Rename struct 'booke_debug_info' to 'hwdebug_info'. Update all uses.
5009         (booke_cmp_hw_point): Rename function 'booke_cmp_hw_point' to
5010         'hwdebug_point_cmp'. Update all uses.
5011         (booke_find_thread_points_by_tid): Rename function
5012         'booke_find_thread_points_by_tid' to
5013         'hwdebug_find_thread_points_by_tid'. Update all uses.
5014         (booke_insert_point): Rename function 'booke_insert_point' to
5015         'hwdebug_insert_point'. Update all uses.
5016         (booke_remove_point): Rename function 'booke_remove_point' to
5017         'hwdebug_remove_point'. Update all uses.
5018
5019 2013-07-15  Maciej W. Rozycki  <macro@codesourcery.com>
5020
5021         * mips-tdep.c (mips_gdbarch_init): Replace hardcoded magic
5022         numbers with enum values.
5023
5024 2013-07-15  Ali Anwar  <ali_anwar@codesourcery.com>
5025
5026         PR threads/13217
5027         * thread.c (thread_apply_all_command): Check for valid threads
5028         and thread count.
5029         (thread_array_cleanup): New struct.
5030         (set_thread_refcount): New function.
5031
5032 2013-07-11  Andrew Burgess  <aburgess@broadcom.com>
5033
5034         * infcmd.c (default_print_one_register_info): Reuse function
5035         print_hex_chars.
5036
5037 2013-07-10  Tom Tromey  <tromey@redhat.com>
5038
5039         * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS, ADA_EXP_C): New macros.
5040         (ada-exp.o): New target.
5041
5042 2013-07-10  Sergio Durigan Junior  <sergiodj@redhat.com>
5043
5044         * mt-tdep.c (mt_registers_info): Call
5045         get_no_prettyformat_print_options instead of
5046         get_raw_print_options (regression by last patch from Doug
5047         Evans).
5048
5049 2013-07-09  Pedro Alves  <palves@redhat.com>
5050
5051         Checked in by Joel Brobecker  <brobecker@adacore.com>.
5052         * ada-lang.c (coerce_unspec_val_to_type): Use
5053         value_optimized_out_const.
5054         * value.c (value_optimized_out_const): New function.
5055         * value.h (value_optimized_out_const): New declaration.
5056
5057 2013-07-09  Doug Evans  <dje@google.com>
5058
5059         * defs.h (enum val_prettyformat): Renamed from val_prettyprint.
5060         Enum values rename as well.  All uses updated.
5061         * valprint.h (value_print_options): Rename member pretty to
5062         pretty format.  Rename member prettyprint_arrays to
5063         prettyformat_arrays.  Rename member prettyprint_structs to
5064         prettyformat_structs.  All uses updated.
5065         (get_no_prettyformat_print_options): Renamed from
5066         get_raw_print_options.
5067         * valprint.c (get_no_prettyformat_print_options): Renamed from
5068         get_raw_print_options.  All callers updated.
5069         (show_prettyformat_structs): Renamed from show_prettyprint_structs.
5070         All callers updated.
5071         (show_prettyformat_arrays): Renamed from show_prettyprint_arrays.
5072         All callers updated.
5073         (_initialize_valprint): Improve help text for "set print pretty" and
5074         "set print arrays".
5075
5076 2013-07-09  Andrew Burgess  <aburgess@broadcom.com>
5077
5078         * value.c (value_bits_valid): Revert previous change, and change
5079         by Pedro on 2013-07-04, due to regressions in
5080         gdb.dwarf2/implptr.exp and gdb.dwarf2/pieces.exp.
5081
5082 2013-07-08  Andrew Burgess  <aburgess@broadcom.com>
5083             Pedro Alves  <palves@redhat.com>
5084
5085         * value.c (value_bits_valid): If the value is not lval_computed
5086         or has no check validity handler then the answer is the
5087         optimized_out flag, otherwise defer to the handler.
5088
5089 2013-07-06  Eli Zaretskii  <eliz@gnu.org>
5090
5091         * top.c (print_gdb_configuration): Explain in output of
5092         --configuration what does "relocatable" mean.
5093
5094         * main.c (print_gdb_help): Regroup options in the --help text.
5095         See http://sourceware.org/ml/gdb-patches/2013-04/msg00362.html for
5096         the relevant discussions.
5097
5098 2013-07-06  Yao Qi  <yao@codesourcery.com>
5099
5100         * breakpoint.h (struct breakpoint_ops) <create_breakpoints_sal>:
5101         Remove parameter 'lsal'.
5102         * breakpoint.c (create_breakpoint): Move local variable 'lsal'
5103         to inner block.  Caller update.
5104         (base_breakpoint_create_breakpoints_sal): Update.
5105         (bkpt_create_breakpoints_sal): Likewise.
5106         (tracepoint_create_breakpoints_sal): Likewise.
5107         (strace_marker_create_breakpoints_sal): Get 'lsal' from the
5108         element 0 of vector 'canonical->sals'.
5109
5110 2013-07-05  Luis Machado  <lgustavo@codesourcery.com>
5111
5112         * rs6000-tdep.c (rs6000_stab_reg_to_regnum): Return the real
5113         register number instead of the pseudo register one.
5114         (rs6000_dwarf2_reg_to_regnum): Likewise.
5115
5116 2013-07-04  Pedro Alves  <palves@redhat.com>
5117
5118         * findvar.c (value_of_register): Use allocate_optimized_out_value
5119         if the register has been optimized out, instead of
5120         set_value_optimized_out.
5121         * frame-unwind.c (frame_unwind_got_optimized): Use
5122         allocate_optimized_out_value.
5123
5124 2013-07-04  Pedro Alves  <palves@redhat.com>
5125
5126         * value.c (value_bits_valid): If the value is not lval_computed,
5127         or doesn't have a check_validity hook, assume the value is entirely
5128         valid.
5129
5130 2013-07-04  Andrew Burgess  <aburgess@broadcom.com>
5131
5132         * stack.c (read_frame_arg): No longer fetch lazy values.
5133         * value.c (value_optimized_out): If the value is not already
5134         marked optimized out, and is lazy then fetch it.
5135         (value_primitive_field): Move optimized out check to later in the
5136         function, after we have loaded any lazy values.
5137         (value_fetch_lazy): Use optimized out flag directly rather than
5138         calling optimized_out method.
5139
5140 2013-07-04  Andrew Burgess  <aburgess@broadcom.com>
5141
5142         * valops.c: Don't include "user-regs.h".
5143         (value_fetch_lazy): Moved to value.c.
5144         * value.c: Include "user-regs.h".
5145         (value_fetch_lazy): Moved from valops.c.
5146
5147 2013-07-04  Yao Qi  <yao@codesourcery.com>
5148
5149         Revert:
5150         2013-06-27  Yao Qi  <yao@codesourcery.com>
5151
5152         * common/create-version.sh: Update comments.  Handle the case
5153         that TARGET_ALIAS is empty.
5154
5155 2013-07-03  Pedro Alves  <palves@redhat.com>
5156
5157         * Makefile.in (config.status): Depend on development.sh.
5158         (aclocal_m4_deps): Add libmcheck.m4.
5159         * acinclude.m4: Include libmcheck.m4.
5160         * configure.ac: Source development.sh instead of setting
5161         'development' here.  --enable-libmcheck/--disable-libmcheck code
5162         factored out to GDB_AC_LIBMCHECK.  Run it.
5163         * development.sh: New file.
5164         * libmcheck.m4: New file.
5165         * configure: Regenerate.
5166
5167 2013-07-02  Tom Tromey  <tromey@redhat.com>
5168
5169         * contrib/ari/update-web-ari.sh: Update for version.in change.
5170
5171 2013-07-02  Tom Tromey  <tromey@redhat.com>
5172
5173         * common/ptid.h: Comment fixes.
5174
5175 2013-07-01  Tom Tromey  <tromey@redhat.com>
5176
5177         * dwarf2read.c (dwarf2_get_dwz_file): Return NULL if
5178         .gnu_debugaltlink not found.  Use bfd_get_alt_debug_link_info.
5179         (dwarf2_read_index, create_all_comp_units): Update.
5180
5181 2013-07-01  Tom Tromey  <tromey@redhat.com>
5182
5183         * configure.ac (build_warnings): Add -Wold-style-definition.
5184         * configure: Rebuild.
5185         * machoread.c (_initialize_machoread): Use "(void)".
5186         * macrocmd.c (macro_inform_no_debuginfo): Fix formatting;
5187         use "(void)".
5188
5189 2013-07-01  Tom Tromey  <tromey@redhat.com>
5190
5191         * configure.ac (build_warnings): Add -Wold-style-declaration.
5192         * configure: Rebuild.
5193         * dsrec.c (make_srec): Use "static const", not "const static".
5194         * h8300-tdep.c (h8300_breakpoint_from_pc): Use "static const",
5195         not "const static".
5196         * mi/mi-parse.c (mi_no_values, mi_simple_values, mi_all_values):
5197         Use "static const", not "const static".
5198         * mn10300-tdep.c (mn10300_breakpoint_from_pc): Use "static const",
5199         not "const static".
5200         * moxie-tdep.c (moxie_breakpoint_from_pc): Use "static const",
5201         not "const static".
5202         * rs6000-tdep.c (rs6000_breakpoint_from_pc): Use "static const",
5203         not "const static".
5204         * v850-tdep.c (v850_breakpoint_from_pc): Use "static const",
5205         not "const static".
5206         (v850_dbtrap_breakpoint_from_pc): Likewise.
5207         * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Use "static const",
5208         not "const static".
5209
5210 2013-07-01  Tom Tromey  <tromey@redhat.com>
5211
5212         * configure.ac (build_warnings): Add -Wmissing-parameter-type.
5213         * configure: Rebuild.
5214
5215 2013-07-01  Pedro Alves  <palves@redhat.com>
5216
5217         * defs.h: Include "pathmax.h".
5218         * utils.c: Don't include sys/param.h.
5219         (gdb_realpath): Remove code that checks for MAXPATHLEN.
5220         * solib-ia64-hpux.c (ia64_hpux_handle_load_event): Use PATH_MAX
5221         instead of MAXPATHLEN.
5222         * solib-sunos.c: Don't include sys/param.h.
5223         * xcoffread.c: Don't include sys/param.h.
5224         * bsd-kvm.c: Don't include sys/param.h.
5225         * darwin-nat.c: Don't include sys/param.h.
5226         (darwin_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
5227         * darwin-nat-info.c: Don't include sys/param.h.
5228         * fbsd-nat.c (fbsd_pid_to_exec_file): Use PATH_MAX instead of
5229         MAXPATHLEN.
5230         * i386obsd-nat.c: Don't include sys/param.h.
5231         * inf-child.c: Don't include sys/param.h.
5232         (inf_child_fileio_readlink): Use PATH_MAX instead of MAXPATHLEN.
5233         * linux-fork.c: Don't include sys/param.h.
5234         (fork_save_infrun_state): Use PATH_MAX instead of MAXPATHLEN.
5235         * linux-nat.c: Don't include sys/param.h.
5236         (linux_child_pid_to_exec_file, linux_proc_pending_signals)
5237         (linux_proc_pending_signals): Use PATH_MAX instead of MAXPATHLEN.
5238         * m68klinux-nat.c: Don't include sys/param.h.
5239         * nbsd-nat.c: Don't include sys/param.h.
5240         (nbsd_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
5241         * ppc-linux-nat.c: Don't include sys/param.h.
5242         * rs6000-nat.c: Don't include sys/param.h.
5243         * spu-linux-nat.c. Don't include sys/param.h.
5244         * windows-nat.c: Don't include sys/param.h.
5245         * xtensa-linux-nat.c: Don't include sys/param.h.
5246         * config/i386/nm-fbsd.h: Don't include sys/param.h.
5247
5248 2013-07-01  Pedro Alves  <palves@redhat.com>
5249
5250         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add pathmax.
5251         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/pathmax.m4.
5252         * gnulib/aclocal.m4: Regenerate.
5253         * gnulib/config.in: Regenerate.
5254         * gnulib/configure: Regenerate.
5255         * gnulib/import/pathmax.h: New file.
5256         * gnulib/import/Makefile.am: Regenerate.
5257         * gnulib/import/Makefile.in: Regenerate.
5258         * gnulib/import/m4/gnulib-cache.m4: Regenerate.
5259         * gnulib/import/m4/gnulib-comp.m4: Regenerate.
5260         * gnulib/import/m4/pathmax.m4: New file.
5261
5262 2013-07-01  Pedro Alves  <palves@redhat.com>
5263
5264         * configure.ac (GDBINIT): Define, depending on host.
5265         * go32-nat.c (init_go32_ops): Don't override gdbinit here.
5266         * top.c (PATH_MAX): Delete fallback definition.
5267         (GDBINIT_FILENAME): Delete.
5268         (gdbinit): Reimplement as const char array set to the GDBINIT
5269         string constant.
5270         * top.h (gdbinit): Make const.
5271         * configure, config.in: Regenerate.
5272
5273 2013-07-01  Pedro Alves  <palves@redhat.com>
5274
5275         * cli/cli-cmds.c (source_script): Make 'file' parameter const.
5276         * cli/cli-cmds.h (source_script): Likewise.
5277         * exceptions.c (catch_command_errors_const): New function.
5278         * exceptions.h (catch_command_errors_const): Declare.
5279         * main.c (get_init_files): Make parameters const, and adjust.
5280         (captured_main): Make 'system_gdbinit', 'home_gdbinit' and
5281         'local_gdbinit' locals const.  Adjust to use
5282         catch_command_errors_const.
5283         (print_gdb_help): Make 'system_gdbinit', 'home_gdbinit' and
5284         'local_gdbinit' locals const.
5285
5286 2013-07-01  Pedro Alves  <palves@redhat.com>
5287
5288         * defs.h: Don't check HAVE_UNISTD_H before including <unistd.h>.
5289         (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO): Delete.
5290         * tracepoint.c: Don't check HAVE_UNISTD_H before including
5291         <unistd.h>.
5292
5293 2013-07-01  Pedro Alves  <palves@redhat.com>
5294
5295         Import the "unistd" gnulib module.
5296         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add "unistd".
5297         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/off_t.m4,
5298         import/m4/ssize_t.m4, import/m4/sys_types_h.m4 and
5299         import/m4/unistd_h.m4.
5300         * gnulib/aclocal.m4: Renenerate.
5301         * gnulib/config.in: Renenerate.
5302         * gnulib/configure: Renenerate.
5303         * gnulib/import/Makefile.am: Renenerate.
5304         * gnulib/import/Makefile.in: Renenerate.
5305         * gnulib/import/m4/gnulib-cache.m4: Renenerate.
5306         * gnulib/import/m4/gnulib-comp.m4: Renenerate.
5307         * gnulib/import/m4/off_t.m4: New file.
5308         * gnulib/import/m4/ssize_t.m4: New file.
5309         * gnulib/import/m4/sys_types_h.m4: New file.
5310         * gnulib/import/m4/unistd_h.m4: New file.
5311         * gnulib/import/sys_types.in.h: New file.
5312         * gnulib/import/unistd.c: New file.
5313         * gnulib/import/unistd.in.h: New file.
5314
5315 2013-07-01  Pedro Alves  <palves@redhat.com>
5316
5317         * utils.c <pathconf/_PC_PATH_MAX use>: Check if _PC_PATH_MAX is
5318         defined instead of checking HAVE_UNISTD_H.
5319
5320 2013-07-01  Pedro Alves  <palves@redhat.com>
5321
5322         Reimport gnulib from scratch.
5323         * gnulib/Makefile.in (aclocal_m4_deps): Remove reference to
5324         import/m4/onceonly.m4.
5325         * gnulib/aclocal.m4: Renegerate.
5326         * gnulib/config.in: Renegerate.
5327         * gnulib/configure: Renegerate.
5328         * gnulib/import/Makefile.in: Renegerate.
5329         * gnulib/import/extra/update-copyright: Renegerate.
5330         * gnulib/import/m4/onceonly.m4: Delete.
5331
5332 2013-07-01  Pedro Alves  <palves@redhat.com>
5333
5334         * tui/tui-regs.c (pagination_enabled): Delete declaration.
5335
5336 2013-06-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
5337
5338         Code cleanup.
5339         * remote.c (async_remote_interrupt_twice): Make it static.
5340         * remote.h (async_remote_interrupt_twice): Remove the declaration.
5341
5342 2013-06-29  Sergio Durigan Junior  <sergiodj@redhat.com>
5343
5344         * ia64-linux-tdep.c: Include <ctype.h>.
5345         (ia64_linux_stap_is_single_operand): New function.
5346         (ia64_linux_init_abi): Initialize SystemTap related attributes.
5347
5348 2013-06-28  Tom Tromey  <tromey@redhat.com>
5349
5350         * Makefile.in (version.c): Use version.in, not
5351         common/version.in.
5352         * common/create-version.sh: Likewise.
5353         * common/version.in: Move...
5354         * version.in: ...here.
5355
5356 2013-06-28  Pedro Alves  <palves@redhat.com>
5357
5358         * infrun.c (set_observer_mode): Don't declare pagination_enabled
5359         here.
5360         * utils.h (pagination_enabled): Declare.
5361
5362 2013-06-28  Pedro Alves  <palves@redhat.com>
5363
5364         * infrun.c (non_stop, non_stop_1, set_non_stop, show_non_stop):
5365         Move higher up in file.
5366
5367 2013-06-28  Tom Tromey  <tromey@redhat.com>
5368
5369         * tracepoint.c (deprecated_readline_begin_hook)
5370         (deprecated_readline_hook, deprecated_readline_end_hook): Don't
5371         declare.
5372
5373 2013-06-28  Pedro Alves  <palves@redhat.com>
5374
5375         PR tui/14880
5376         * tui/tui-regs.c (tui_get_register): Fetch value contents before
5377         checking if they're available.
5378         * value.c (value_available_contents_eq): Change comment.
5379         * value.h (value_available_contents_eq): Expand comment.
5380
5381 2013-06-27  Tom Tromey  <tromey@redhat.com>
5382
5383         * target.c (find_run_target): Remove.
5384         * target.h (find_run_target): Remove.
5385
5386 2013-06-27  Tom Tromey  <tromey@redhat.com>
5387
5388         * corelow.c (core_gdbarch): Now static.
5389
5390 2013-06-27  Tom Tromey  <tromey@redhat.com>
5391
5392         * target.c (target_struct_index): Remove.
5393
5394 2013-06-27  Pedro Alves  <palves@redhat.com>
5395
5396         * infrun.c: Remove comment describing the 'stepping over runtime
5397         loader dynamic symbol resolution code' mechanism; moved to
5398         gdbint.texinfo.
5399
5400 2013-06-27  Pedro Alves  <palves@redhat.com>
5401
5402         * exceptions.c (catch_command_errors): Remove spurious space.
5403         * exceptions.h (catch_command_errors): Second parameter is "arg",
5404         not "command".
5405
5406 2013-06-27  Yao Qi  <yao@codesourcery.com>
5407
5408         * common/create-version.sh: Update comments.  Handle the case
5409         that TARGET_ALIAS is empty.
5410
5411 2013-06-26  Pedro Alves  <palves@redhat.com>
5412
5413         * infrun.c (SOLIB_IN_DYNAMIC_LINKER): Delete macro and describing
5414         comment.
5415
5416 2013-06-26  Pedro Alves  <palves@redhat.com>
5417
5418         * infrun.c: Update comments on stepping over runtime loader
5419         dynamic symbol resolution code.
5420
5421 2013-06-26  Sergio Durigan Junior  <sergiodj@redhat.com>
5422
5423         * ax-gdb.h (union exp_element): Forward declare.
5424         * parser-defs.h: Include expression.h.
5425
5426 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
5427
5428         * mips-tdep.c (fetch_mips_16): Use unmake_compact_addr.
5429
5430 2013-06-26  Dmitry Kozlov <ddk@codesourcery.com>
5431
5432         * tracepoint.c (trace_save): Extend tsave to save starttime, stoptime.
5433
5434 2013-06-26  Dmitry Kozlov <ddk@codesourcery.com>
5435
5436         Fix trace-status to output proper start-time and stop-time.
5437         * tracepoint.c (trace_status_command): Fix type of printf arg to
5438         prevent improper type conversion.
5439         (trace_status_mi): Likewise.
5440
5441 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
5442
5443         * mips-tdep.c (mips_next_pc): Fix a typo.
5444
5445 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
5446
5447         * mips-tdep.c (micromips_scan_prologue): Fix a typo.
5448
5449 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
5450             Yao Qi  <yao@codesourcery.com>
5451
5452         * mi/mi-cmds.c (mi_cmds): Register -trace-frame-collected.
5453         * mi/mi-cmds.h (mi_cmd_trace_frame_collected): Declare.
5454         * mi/mi-main.c (print_variable_or_computed): New function.
5455         (mi_cmd_trace_frame_collected): New function.
5456         * tracepoint.c (find_trace_state_variable_by_number): New.
5457         (struct traceframe_info): Move to tracepoint.h
5458         (struct collection_list): Likewise.
5459         (do_collect_symbol): Include locals and arguments in the
5460         collected variables list.
5461         (clear_collection_list): Clear wholly collected variables list
5462         and computed variables list.
5463         (append_exp): New function.
5464         (encode_actions_1): Include variables in the wholly
5465         collected variables list.  Include memory ranges and
5466         full-fledged expressions in the computed expressions list.
5467         (encode_actions): Move some code to ...
5468         Return the cleanup chain.
5469         (encode_actions_rsp): ... here.  New function.
5470         (get_traceframe_location, get_traceframe_info): Remove static.
5471         * tracepoint.h (struct memrange): Moved from tracepoint.c.
5472         (struct collection_list): Moved from tracepoint.c.  Add two
5473         new fields 'wholly_collected' and 'computed'.
5474         (find_trace_state_variable_by_number): Declare.
5475         (encode_actions): Adjust declaration.
5476         (encode_actions_rsp): Declare.
5477         (get_traceframe_info, get_traceframe_location): Declare.
5478
5479         * NEWS: Mention new MI command -trace-frame-collected.
5480
5481 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
5482             Yao Qi  <yao@codesourcery.com>
5483
5484         * ctf.c (ctf_traceframe_info): Push trace state variables
5485         present in the trace data into the traceframe info object.
5486         * breakpoint.c (DEF_VEC_I): Remove.
5487         * common/filestuff.c (DEF_VEC_I): Likewise.
5488         * dwarf2loc.c (DEF_VEC_I): Likewise.
5489         * mi/mi-main.c (DEF_VEC_I): Likewise.
5490         * common/gdb_vecs.h (DEF_VEC_I): Define vector for int.
5491         * features/traceframe-info.dtd: Add tvar element and its
5492         attributes.
5493         * tracepoint.c (free_traceframe_info): Free vector 'tvars'.
5494         (build_traceframe_info): Push trace state variables present in
5495         the trace data into the traceframe info object.
5496         (traceframe_info_start_tvar): New function.
5497         (tvar_attributes): New.
5498         (traceframe_info_children): Add "tvar" element.
5499         * tracepoint.h (struct traceframe_info) <tvars>: New field.
5500
5501         * NEWS: Mention the change in GDB and GDBserver.
5502
5503 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
5504             Yao Qi  <yao@codesourcery.com>
5505
5506         * tracepoint.c (trace_dump_command): Move code to ...
5507         (get_traceframe_location): ... here.  New.
5508
5509 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
5510             Yao Qi  <yao@codesourcery.com>
5511
5512         * tracepoint.c (trace_dump_command): GDB emits an error
5513          instead of a warning when a traceframe is not selected.
5514
5515 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
5516             Yao Qi  <yao@codesourcery.com>
5517
5518         * tracepoint.c (tracepoint_list, stepping_list): Remove.
5519         (clear_collection_list): Free fields 'aexpre_list' and 'list'
5520         in collection_list.
5521         (do_clear_collection_list, init_collection_list): New.
5522         (encode_actions): Add local variables 'tracepoint_list' and
5523         'stepping_list'.  Call init_collection_list and make cleanup
5524         which calls do_clear_collection_list.  Don't call
5525         clear_collection_list.
5526         (_initialize_tracepoint): Delete references to
5527         'tracepoint_list' and 'stepping_list'.
5528
5529 2013-06-25  Tom Tromey  <tromey@redhat.com>
5530
5531         * common/create-version.sh (date): Use "$", not "$$" in sed
5532         expression.
5533
5534 2013-06-25  Kevin Buettner  <kevinb@redhat.com>
5535
5536         * NEWS (New targets): Add entry for TI MSP430.
5537
5538 2013-06-25  Yao Qi  <yao@codesourcery.com>
5539
5540         * remote.c (remote_start_remote): Move code to upload tsv
5541         earlier.
5542
5543 2013-06-25  Yao Qi  <yao@codesourcery.com>
5544             Hui Zhu  <hui@codesourcery.com>
5545             Pedro Alves  <palves@redhat.com>
5546
5547         PR breakpoints/15075
5548         PR breakpoints/15434
5549         * breakpoint.c (bpstat_stop_status): Call
5550         b->ops->after_condition_true.
5551         (update_dprintf_command_list): Don't append "continue" command
5552         to the command list of dprintf breakpoint.
5553         (base_breakpoint_after_condition_true): New function.
5554         (base_breakpoint_ops): Add base_breakpoint_after_condition_true.
5555         (dprintf_after_condition_true): New function.
5556         (initialize_breakpoint_ops): Set dprintf_after_condition_true.
5557         * breakpoint.h (breakpoint_ops): Add after_condition_true.
5558
5559 2013-06-24  Kevin Buettner  <kevinb@redhat.com>
5560
5561         * Makefile.in (ALL_TARGET_OBS): Add msp430-tdep.o.
5562         (ALLDEPFILES): Add msp430-tdep.c.
5563         * configure.tgt (msp430*-*-elf): New target.
5564         * msp430-tdep.c: New file.
5565
5566 2013-06-24  Maciej W. Rozycki  <macro@codesourcery.com>
5567
5568         * mips-tdep.c (mips_elf_make_msymbol_special): Handle MIPS16 and
5569         microMIPS synthetic symbols.
5570
5571 2013-06-24  Maciej W. Rozycki  <macro@codesourcery.com>
5572
5573         * objfiles.h (pc_in_section): New prototype.
5574         (in_plt_section): Remove name argument, replace prototype with
5575         static inline function.
5576         * mips-tdep.h: Include "objfiles.h".
5577         (in_mips_stubs_section): New function.
5578         * hppa-tdep.h (gdbarch_tdep): Remove name argument of
5579         in_solib_call_trampoline member.
5580         (hppa_in_solib_call_trampoline): Remove name argument.
5581         * objfiles.c (pc_in_section): New function.
5582         (in_plt_section): Remove function.
5583         * mips-linux-tdep.c: Include "objfiles.h".
5584         (mips_linux_in_dynsym_stub): Call in_mips_stubs_section.  Remove
5585         name argument.  Return 1 rather than the low 16-bit halfword of
5586         any instruction examined.
5587         (mips_linux_in_dynsym_resolve_code): Update
5588         mips_linux_in_dynsym_stub call accordingly.
5589         * mips-tdep.c (mips_stub_frame_sniffer): Use in_mips_stubs_section
5590         rather than an equivalent hand-coded sequence.
5591         * hppa-hpux-tdep.c (in_opd_section): Remove function.
5592         (hppa32_hpux_in_solib_call_trampoline): Remove name argument.
5593         (hppa64_hpux_in_solib_call_trampoline): Likewise.
5594         (hppa64_hpux_find_global_pointer): Use pc_in_section rather than
5595         in_opd_section.
5596         * hppa-tdep.c (hppa_stub_unwind_sniffer): Remove name argument
5597         on call to tdep->in_solib_call_trampoline.
5598         (hppa_in_solib_call_trampoline): Remove name argument, update
5599         according to in_plt_section change.
5600         (hppa_skip_trampoline_code): Update according to in_plt_section
5601         change.
5602         * aarch64-tdep.c (aarch64_stub_unwind_sniffer): Likewise.
5603         * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code):
5604         Likewise.
5605         * arm-tdep.c (arm_stub_unwind_sniffer): Likewise.
5606         * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
5607         * hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
5608         * nios2-tdep.c (nios2_stub_frame_sniffer): Likewise.
5609         * nto-tdep.c (nto_relocate_section_addresses): Likewise.
5610         * s390-tdep.c (s390_stub_frame_sniffer): Likewise.
5611         * sh-tdep.c (sh_stub_unwind_sniffer): Likewise.
5612         * solib-dsbt.c (dsbt_in_dynsym_resolve_code): Likewise.
5613         * solib-frv.c (frv_in_dynsym_resolve_code): Likewise.
5614         * solib-svr4.c (svr4_in_dynsym_resolve_code): Likewise.
5615         * solib-target.c (solib_target_in_dynsym_resolve_code): Likewise.
5616         * sparc-tdep.c (sparc_analyze_prologue): Likewise.
5617         * tic6x-tdep.c (tic6x_stub_unwind_sniffer): Likewise.
5618
5619 2013-06-24  Joel Brobecker  <brobecker@adacore.com>
5620
5621         * common/create-version.sh: Fix expansion of $host_alias
5622         and $target_alias in generation of HOST_NAME and TARGET_NAME
5623         (resp.).
5624
5625 2013-06-24  Tom Tromey  <tromey@redhat.com>
5626
5627         * common/create-version.sh: New file.
5628         * Makefile.in (version.c): Use bfd/version.h, common/version.in,
5629         create-version.sh.
5630         (HFILES_NO_SRCDIR): Use common/version.h.
5631         * version.in: Move to ...
5632         * common/version.in: ... here.  Replace date with "DATE".
5633         * version.h: Move to ...
5634         * common/version.h: ... here.
5635
5636 2013-06-21  Joel Brobecker  <brobecker@adacore.com>
5637
5638         * gdb/gnulib/Makefile.in: Update date in copyright header.
5639         * gdb/gnulib/configure.ac: Ditto.
5640         * gdb/gnulib/update-gnulib.sh: Ditto.
5641
5642 2013-06-21  Joel Brobecker  <brobecker@adacore.com>
5643
5644         * copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by
5645         "gdb/gnulib/import".
5646
5647 2013-06-21  Will Newton  <will.newton@linaro.org>
5648
5649         * doublest.c (ldfrexp): Remove function.
5650         (convert_doublest_to_floatformat): Call frexpl instead of
5651         ldfrexp.
5652
5653 2013-06-21  Will Newton  <will.newton@linaro.org>
5654
5655         * gnulib/update-gnulib.sh(IMPORTED_GNULIB_MODULES): Add frexpl.
5656         * gnulib/aclocal.m4: Regenerate.
5657         * gnulib/config.in: Regenerate.
5658         * gnulib/configure: Regenerate.
5659         * gnulib/import/Makefile.am: Update.
5660         * gnulib/import/Makefile.in: Update.
5661         * gnulib/import/m4/gnulib-cache.m4: Update.
5662         * gnulib/import/m4/gnulib-comp.m4: Update.
5663         * gnulib/import/float+.h: Import.
5664         * gnulib/import/float.c: Import.
5665         * gnulib/import/float.in.h: Import.
5666         * gnulib/import/fpucw.h: Import.
5667         * gnulib/import/frexp.c: Import.
5668         * gnulib/import/frexpl.c: Import.
5669         * gnulib/import/isnan.c: Import.
5670         * gnulib/import/isnand-nolibm.h: Import.
5671         * gnulib/import/isnand.c: Import.
5672         * gnulib/import/isnanl-nolibm.h: Import.
5673         * gnulib/import/isnanl.c: Import.
5674         * gnulib/import/itold.c: Import.
5675         * gnulib/import/m4/exponentd.m4: Import.
5676         * gnulib/import/m4/exponentl.m4: Import.
5677         * gnulib/import/m4/float_h.m4: Import.
5678         * gnulib/import/m4/fpieee.m4: Import.
5679         * gnulib/import/m4/frexp.m4: Import.
5680         * gnulib/import/m4/frexpl.m4: Import.
5681         * gnulib/import/m4/isnand.m4: Import.
5682         * gnulib/import/m4/isnanl.m4: Import.
5683         * gnulib/import/m4/math_h.m4: Import.
5684         * gnulib/import/math.c: Import.
5685         * gnulib/import/math.in.h: Import.
5686
5687 2013-06-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
5688
5689         * common/linux-btrace.c (cpu_supports_btrace): Remove variable vendor,
5690         replace strcmp with signature_INTEL_ebx, signature_INTEL_ecx and
5691         signature_INTEL_edx comparisons.
5692
5693 2013-06-20  Doug Evans  <dje@google.com>
5694
5695         symtab/15652
5696         * dwarf2read.c (try_open_dwop_file): New arg search_cwd.
5697         All callers updated.
5698         (open_dwp_file): If we can't find the dwp file, search the basename
5699         in debug-file-directory.
5700
5701         * dwarf2read.c (struct dwp_file): Fix comment.
5702         (open_and_init_dwp_file): Set dwp_file->name to bfd's file name.
5703
5704         * source.c (openp): Document OPF_TRY_CWD_FIRST+OPF_SEARCH_IN_PATH
5705         better.
5706
5707 2013-06-20  Yao Qi  <yao@codesourcery.com>
5708
5709         * breakpoint.c (create_breakpoint): Fix code indentation.
5710
5711 2013-06-20  Yao Qi  <yao@codesourcery.com>
5712
5713         * breakpoint.c (create_breakpoints_sal_default): Remove
5714         parameter 'lsal'.  Update declaration.
5715         (bkpt_create_breakpoints_sal): Caller update.
5716         (tracepoint_create_breakpoints_sal): Likewise.
5717
5718 2013-06-20  Pedro Alves  <pedro@codesourcery.com>
5719             Yao Qi  <yao@codesourcery.com>
5720
5721         * NEWS: Mention the new option '--skip-unavailable' of command
5722         -data-list-register-values.
5723         * mi/mi-main.c (mi_cmd_data_list_register_values): Accept the
5724         --skip-unavailable option.  Adjust to use output_register.
5725         (output_register): Add new 'skip_unavailable' parameter.
5726         Handle it.
5727
5728 2013-06-19  Mike Frysinger  <vapier@gentoo.org>
5729
5730         * Makefile.in (HFILES_NO_SRCDIR): Add common/i386-cpuid.h and
5731         common/i386-gcc-cpuid.h.
5732         * common/i386-cpuid.h: New wrapper header around i386-gcc-cpuid.h.
5733         * common/i386-gcc-cpuid.h: Rename from testsuite/gdb.arch/i386-cpuid.h.
5734         Copy the latest version from upstream gcc.
5735         * common/linux-btrace.c: Include i386-cpuid.h.
5736         (intel_supports_btrace): Delete x86 ifdefs and replace inline asm with
5737         call to i386_cpuid.
5738         (cpu_supports_btrace): Likewise.
5739         * go32-nat.c: Include i386-cpuid.h.
5740         (go32_sysinfo): Add (disabled) calls to i386_cpuid with comments.
5741
5742 2013-06-19  Doug Evans  <dje@google.com>
5743
5744         * symfile.c (symfile_bfd_open): Delete unnecessary declaration.
5745         (get_section_index): Ditto.
5746
5747 2013-06-19  Tom Tromey  <tromey@redhat.com>
5748
5749         * breakpoint.c (_initialize_breakpoint): Remove trailing \n from
5750         "dprintf" help.
5751
5752 2013-06-18  Doug Evans  <dje@google.com>
5753
5754         * dwarf2read.c (dw2_symtab_iter_next): Check value of cu_index
5755         before using it.
5756         (dw2_expand_symtabs_matching): Fix symbol kind validity check.
5757         Move test of cu_index closer to use.  Print complaint if cu_index
5758         is bad.
5759
5760 2013-06-18  Joel Brobecker  <brobecker@adacore.com>
5761
5762         * machoread.c (oso_vector): Delete this global.
5763         (macho_register_oso): Add new parameter "oso_vector_ptr".
5764         Use it instead of the "oso_vector" global.
5765         (macho_symtab_read, macho_symfile_read_all_oso): Likewise.
5766         (macho_symfile_read): Use a local oso_vector, to be free'ed
5767         at the end of this function, in place of the old "oso_vector"
5768         global.  Update various function calls accordingly.  Use one
5769         single cleanup chain for the entire function.
5770
5771 2013-06-18  Joel Brobecker  <brobecker@adacore.com>
5772
5773         * dwarf2read.c (dwarf2_per_objfile_free): Replace uses of
5774         DWARF2_PER_OBJFILE by uses of DATA instead.
5775
5776 2013-06-18  Tom Tromey  <tromey@redhat.com>
5777
5778         * break-catch-sig.c (signal_catchpoint_explains_signal): Add 'sig'
5779         argument.
5780         * breakpoint.c (bpstat_explains_signal): Add 'sig' argument.
5781         Special case signals other than GDB_SIGNAL_TRAP.
5782         (explains_signal_watchpoint): New function.
5783         (base_breakpoint_explains_signal): Add 'sig' argument.
5784         (initialize_breakpoint_ops): Set 'explains_signal' method for
5785         watchpoints.
5786         * breakpoint.h (struct breakpoint_ops) <explains_signal>: Add
5787         signal argument.
5788         (bpstat_explains_signal): Likewise.
5789         * infrun.c (handle_syscall_event, handle_inferior_event): Update.
5790
5791 2013-06-18  Tom Tromey  <tromey@redhat.com>
5792
5793         * python/py-inferior.c (gdbpy_selected_inferior): Don't incref.
5794
5795 2013-06-18  Tom Tromey  <tromey@redhat.com>
5796
5797         * python/python.c (finish_python_initialization): Decref
5798         'pythondir' on failure path as well.
5799
5800 2013-06-18  Tom Tromey  <tromey@redhat.com>
5801
5802         PR symtab/15391:
5803         * dwarf2loc.c (read_pieced_value): Truncate this_size_bits
5804         after taking bits_to_skip into account.  Sign extend byte_offset.
5805         * utils.h (gdb_sign_extend): Declare.
5806         * utils.c (gdb_sign_extend): New function.
5807
5808 2013-06-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
5809
5810         * dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.
5811
5812 2013-06-17  Pierre Muller  <muller@sourceware.org>
5813
5814         * corelow.c (core_open): Print GDB signal name instead of target
5815         signal number.
5816
5817 2013-06-17  Mike Frysinger  <vapier@gentoo.org>
5818
5819         * .gitignore: Add /gcore.
5820
5821 2013-06-13  Doug Evans  <dje@google.com>
5822
5823         * dwarf2read.c (try_open_dwop_file): Work around behaviour of
5824         OPF_TRY_CWD_FIRST to not search path if the file contains a '/'.
5825
5826 2013-06-12  Phil Muldoon  <pmuldoon@redhat.com>
5827
5828         * stack.c (backtrace_command_1): Fix indentation.
5829
5830 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
5831
5832         * window-nat.c (thread_rec): Add missing empty line after
5833         local variable declaration.
5834
5835 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
5836
5837         * windows-nat.c (thread_rec): Revert format used to print
5838         error code returned by SuspendThread from %d back to %u.
5839
5840 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
5841
5842         * windows-nat.c (windows_continue): Add "0x" prefix for thread
5843         ID in debug trace.
5844         (get_windows_debug_event): Likewise, for all debug traces.
5845
5846 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
5847
5848         * window-nat.c (thread_rec): Add thread ID in SuspendThread
5849         warning message.
5850
5851 2013-06-08  Pedro Alves  <pedro@codesourcery.com>
5852             Yao Qi  <yao@codesourcery.com>
5853
5854         * mi/mi-main.c (get_register): Remove declaration.
5855         (output_register): Declare.
5856         (mi_cmd_data_list_register_values): Remove local variable
5857         'tuple_cleanup'.  Move some code into output_register.
5858         (get_register): Renamed to ...
5859         (output_register): ... this.  Output the register's
5860         "number" ui_out tuple here.
5861
5862 2013-06-07  Pedro Alves  <palves@redhat.com>
5863
5864         * darwin-nat.c: Fix formating in copyright header.
5865         * darwin-nat.h: Likewise.
5866         * gnu-nat.c: Likewise.
5867         * machoread.c: Likewise.
5868
5869 2013-06-07  Pedro Alves  <palves@redhat.com>
5870
5871         PR server/14823
5872         * regformats/regdat.sh: Output #include tdesc.h.  Make globals
5873         static.  Output a global target description pointer.
5874         (init_registers_${name}): Adjust to initialize a
5875         target description structure.
5876
5877 2013-06-07  Will Newton  <will.newton@linaro.org>
5878
5879         * printcmd.c (build_address_symbolic): Call
5880         gdbarch_addr_bits_remove for text minimal symbols.
5881
5882 2013-06-07  Will Newton  <will.newton@linaro.org>
5883
5884         * MAINTAINERS: Add myself to Write After Approval.
5885
5886 2013-06-07  Yao Qi  <yao@codesourcery.com>
5887
5888         * tracepoint.c (start_tracing): Move code to ...
5889         (trace_reset_local_state): ... here.  New.
5890         (disconnect_tracing): Don't call set_current_traceframe,
5891         set_tracepoint_num, and set_traceframe_context. Call
5892         trace_reset_local_state instead.
5893         (tfile_close): Call trace_reset_local_state.
5894         * ctf.c (ctf_close): Likewise.
5895         * remote.c (remote_close): Likewise.
5896         * tracepoint.h (trace_reset_local_state): Declare.
5897
5898 2013-06-06  Doug Evans  <dje@google.com>
5899
5900         * dwarf2read.c: Whitespace fixes for DWP file format documentation,
5901         and fix header docs.
5902
5903 2013-06-05  Doug Evans  <dje@google.com>
5904             Keith Seitz  <keiths@redhat.com>
5905
5906         PR 15519
5907         * cp-namespace.c (find_symbol_in_baseclass): Call
5908         cp_lookup_symbol_in_namespace instead of cp_lookup_symbol_namespace.
5909         Check result of call to lookup_symbol_static.
5910         Call lookup_static_symbol_aux unconditionally.
5911         Call check_typedef on base types before accessing them.
5912         (cp_lookup_nested_symbol): Fix comment.
5913
5914 2013-06-05  Luis Machado  <lgustavo@codesourcery.com>
5915
5916         * gnu-v3-abi.c (gnuv3_skip_trampoline): Handle thunk
5917         minimal symbols pointing to function descriptors.
5918
5919 2013-06-05  Tom Tromey  <tromey@redhat.com>
5920
5921         * python/py-utils.c (gdb_pymodule_addobject): Cast away const.
5922
5923 2013-06-04  Sergio Durigan Junior  <sergiodj@redhat.com>
5924             Pedro Alves  <palves@redhat.com>
5925
5926         * remote.c (remote_wait_as): Restore signal handler before returning
5927         when GDB gets a notification.
5928
5929 2013-06-04  Gary Benson  <gbenson@redhat.com>
5930
5931         PR 2328
5932         * breakpoint.h (handle_solib_event): Moved function declaration
5933         to solib.h.
5934         * breakpoint.c (handle_solib_event): Moved function to solib.c.
5935         (bpstat_stop_status): Pass new argument to handle_solib_event.
5936         * solib.h (update_solib_breakpoints): New function declaration.
5937         (handle_solib_event): Moved function declaration from
5938         breakpoint.h.
5939         * solib.c (update_solib_breakpoints): New function.
5940         (handle_solib_event): Moved function from breakpoint.c.
5941         Updated to call solib_ops->handle_event if not NULL.
5942         * solist.h (target_so_ops): New fields "update_breakpoints" and
5943         "handle_event".
5944         * infrun.c (set_stop_on_solib_events): New function.
5945         (_initialize_infrun): Use the above for "set
5946         stop-on-solib-events".
5947         (handle_inferior_event): Pass new argument to handle_solib_event.
5948         * solib-svr4.c (probe.h): New include.
5949         (svr4_free_library_list): New forward declaration.
5950         (probe_action): New enum.
5951         (probe_info): New struct.
5952         (probe_info): New static variable.
5953         (NUM_PROBES): New definition.
5954         (svr4_info): New fields "using_xfer", "probes_table" and
5955         "solib_list".
5956         (free_probes_table): New function.
5957         (free_solib_list): New function.
5958         (svr4_pspace_data_cleanup): Free probes table and solib list.
5959         (svr4_copy_library_list): New function.
5960         (svr4_current_sos_via_xfer_libraries): New parameter "annex".
5961         (svr4_read_so_list): New parameter "prev_lm".
5962         (svr4_current_sos_direct): Renamed from "svr4_current_sos".
5963         (svr4_current_sos): New function.
5964         (probe_and_action): New struct.
5965         (hash_probe_and_action): New function.
5966         (equal_probe_and_action): Likewise.
5967         (register_solib_event_probe): Likewise.
5968         (solib_event_probe_at): Likewise.
5969         (solib_event_probe_action): Likewise.
5970         (solist_update_full): Likewise.
5971         (solist_update_incremental): Likewise.
5972         (disable_probes_interface_cleanup): Likewise.
5973         (svr4_handle_solib_event): Likewise.
5974         (svr4_update_solib_event_breakpoint): Likewise.
5975         (svr4_update_solib_event_breakpoints): Likewise.
5976         (svr4_create_solib_event_breakpoints): Likewise.
5977         (enable_break): Free probes table before creating breakpoints.
5978         Use svr4_create_solib_event_breakpoints to create breakpoints.
5979         (svr4_solib_create_inferior_hook): Free the solib list.
5980         (_initialize_svr4_solib): Initialise
5981         svr4_so_ops.handle_solib_event and svr4_so_ops.update_breakpoints.
5982
5983 2013-06-04  Gary Benson  <gbenson@redhat.com>
5984
5985         * target.h (target_ops): New field
5986         "to_augmented_libraries_svr4_read".
5987         (target_augmented_libraries_svr4_read): New macro.
5988         * target.c (update_current_target): Handle
5989         to_augmented_libraries_svr4_read.
5990         * remote.c (remote_state): New field
5991         "augmented_libraries_svr4_read".
5992         (remote_augmented_libraries_svr4_read_feature): New function.
5993         (remote_protocol_features): Add entry for
5994         "augmented-libraries-svr4-read".
5995         (remote_augmented_libraries_svr4_read): New function.
5996         (init_remote_ops): Initialize
5997         remote_ops.to_augmented_libraries_svr4_read.
5998
5999 2013-06-04  Gary Benson  <gbenson@redhat.com>
6000
6001         * NEWS: Update.
6002
6003 2013-06-04  Gary Benson  <gbenson@redhat.com>
6004
6005         * objfiles.h (inhibit_section_map_updates): New function
6006         declaration.
6007         (resume_section_map_updates): Likewise.
6008         (resume_section_map_updates_cleanup): Likewise.
6009         * objfiles.c (objfile_pspace_info): Removed field
6010         "objfiles_changed_p".  New fields "new_objfiles_available",
6011         "section_map_dirty" and "inhibit_updates".
6012         (allocate_objfile): Set new_objfiles_available.
6013         (free_objfile): Set section_map_dirty.
6014         (objfile_relocate1): Likewise.
6015         (in_plt_section): Likewise.
6016         (find_pc_section): Update the conditions under which the
6017         section map will be updated.
6018         (inhibit_section_map_updates): New function.
6019         (resume_section_map_updates): Likewise.
6020         (resume_section_map_updates_cleanup): Likewise.
6021
6022 2013-06-04  Gary Benson  <gbenson@redhat.com>
6023
6024         * probe.h (get_probe_argument_count): New declaration.
6025         (evaluate_probe_argument): Likewise.
6026         * probe.c (get_probe_argument_count): New function.
6027         (evaluate_probe_argument): Likewise.
6028         (probe_safe_evaluate_at_pc): Use the above new functions.
6029
6030 2013-06-04  Alan Modra  <amodra@gmail.com>
6031
6032         * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
6033         * rs6000-tdep.c (read_insn): Add frame param, don't assume big-endian.
6034         (ppc_insns_match_pattern): Add frame param.  Avoid multiple
6035         target mem reads on optional insns.
6036         * ppc-linux-tdep.c (ppc_skip_trampoline_code): Update
6037         ppc_insns_match_pattern calls.
6038         * ppc64-tdep.c (ppc64_standard_linkage2, ppc64_standard_linkage3):
6039         Add match for power7 thread safety insns, and new order of
6040         std 2,40(1) insn.  Correct code shown for _dl_runtime_resolve
6041         invocation in comment, and update rest of comment.
6042         (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN,
6043         PPC64_STANDARD_LINKAGE3_LEN): Delete.
6044         (ppc64_standard_linkage2_target): Update insn offsets.
6045         (ppc64_skip_trampoline_code): Use a single insn buffer.  Match newer
6046         stubs first.  Update calls.
6047
6048 2013-06-04  Yao Qi  <yao@codesourcery.com>
6049
6050         * solib.c (solib_find): Don't need dir separator if path has
6051         drive spec.
6052
6053 2013-06-03  Joel Brobecker  <brobecker@adacore.com>
6054
6055         Revert (indirectly causes a SIGSEGV):
6056         * machoread.c (macho_symfile_read): Assign first cleanup to
6057         'back_to'.
6058
6059 2013-06-03  Yao Qi  <yao@codesourcery.com>
6060
6061         * mi/mi-cmd-var.c (mi_no_values, mi_simple_values): Move to
6062         mi-parse.c.  Make them static.
6063         (mi_all_values): Likewise.
6064         (mi_parse_values_option): Move to mi-parse.c.  Rename it to
6065         mi_parse_print_values.  Make it external.
6066         * mi/mi-cmds.h (mi_no_values, mi_simple_values, mi_all_values):
6067         Remove the declarations.
6068         * mi/mi-parse.c (mi_parse_print_values): Moved from mi-cmd-var.c.
6069         * mi/mi-parse.h (mi_parse_print_values): Declare.
6070         * mi/mi-cmd-stack.c: Include mi-parse.h.
6071         (parse_print_values): Remove
6072         (mi_cmd_stack_list_locals): Call mi_parse_print_values instead
6073         of parse_print_values.
6074         (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Likewise.
6075
6076 2013-05-31  Pedro Alves  <pedro@codesourcery.com>
6077             Yao Qi  <yao@codesourcery.com>
6078
6079         * tracepoint.c (all_tracepoint_actions_and_cleanup): Declare.
6080         (encode_actions): Move code to ...
6081         (all_tracepoint_actions_and_cleanup): ... here.  New.
6082         (trace_dump_command): Likewise.
6083
6084 2013-05-30  Tom Tromey  <tromey@redhat.com>
6085
6086         * symmisc.c (maintenance_expand_symtabs): Call do_cleanups.
6087
6088 2013-05-30  Tom Tromey  <tromey@redhat.com>
6089
6090         * xml-support.c (gdb_xml_create_parser_and_cleanup): Rename from
6091         gdb_xml_create_parser_and_cleanup_1.  Return a cleanup.  Remove
6092         'old_chain' argument.  Add 'parser_result' argument.
6093         (gdb_xml_create_parser_and_cleanup): Remove old version.
6094         (gdb_xml_parse_quick): Update.
6095         (xml_process_xincludes): Update.
6096         * xml-support.h (gdb_xml_create_parser_and_cleanup): Don't
6097         declare.
6098
6099 2013-05-30  Tom Tromey  <tromey@redhat.com>
6100
6101         * probe.c (collect_probes): Check arguments for NULL before
6102         calling compile_rx_or_error.
6103         * utils.c (compile_rx_or_error): Require 'rx' to be non-NULL.
6104         Remove NULL return.
6105
6106 2013-05-30  Tom Tromey  <tromey@redhat.com>
6107
6108         * infrun.c (adjust_pc_after_break): Introduce an outer null
6109         cleanup.
6110
6111 2013-05-30  Tom Tromey  <tromey@redhat.com>
6112
6113         * mi/mi-cmd-var.c (varobj_update_one): Add an outer null cleanup.
6114
6115 2013-05-30  Tom Tromey  <tromey@redhat.com>
6116
6117         * cli/cli-script.c (read_command_lines_1): Use a null cleanup
6118         for 'old_chain'.  Do not check 'head' before processing
6119         cleanups.
6120
6121 2013-05-30  Tom Tromey  <tromey@redhat.com>
6122
6123         * mi/mi-cmd-stack.c (list_arg_or_local): Remove
6124         "cleanup_tuple".
6125
6126 2013-05-30  Tom Tromey  <tromey@redhat.com>
6127
6128         * dbxread.c (dbx_read_symtab): Declare 'back_to' in a more
6129         inner scope.  Unconditionally call do_cleanups.
6130
6131 2013-05-30  Tom Tromey  <tromey@redhat.com>
6132
6133         * source.c (find_and_open_source): Call do_cleanups.
6134
6135 2013-05-30  Tom Tromey  <tromey@redhat.com>
6136
6137         * linux-thread-db.c (thread_db_load_search): Unconditionally
6138         call do_cleanups.
6139
6140 2013-05-30  Tom Tromey  <tromey@redhat.com>
6141
6142         * solib-aix.c (solib_aix_bfd_open): Don't use a null cleanup
6143         for 'cleanup'; instead use a later one.
6144
6145 2013-05-30  Tom Tromey  <tromey@redhat.com>
6146
6147         * python/py-breakpoint.c (bppy_get_commands): Use
6148         explicit, unconditional return.
6149         * python/py-frame.c (frapy_read_var): Likewise.
6150         * python/python.c (gdbpy_decode_line): Likewise.
6151
6152 2013-05-30  Tom Tromey  <tromey@redhat.com>
6153
6154         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
6155         do_cleanups on all return paths.
6156
6157 2013-05-30  Tom Tromey  <tromey@redhat.com>
6158
6159         * top.c (execute_command): Discard 'cleanup_if_error' cleanups.
6160
6161 2013-05-30  Tom Tromey  <tromey@redhat.com>
6162
6163         * stabsread.c (read_struct_type): Call do_cleanups along
6164         all return paths.
6165
6166 2013-05-30  Maciej W. Rozycki  <macro@codesourcery.com>
6167
6168         * mips-linux-tdep.c: Adjust formatting throughout.
6169
6170 2013-05-30  Tom Tromey  <tromey@redhat.com>
6171
6172         * mipsread.c (read_alphacoff_dynamic_symtab): Call do_cleanups
6173         along all return paths.
6174
6175 2013-05-30  Tom Tromey  <tromey@redhat.com>
6176
6177         * symfile.c (find_separate_debug_file): Call do_cleanups
6178         along all return paths.
6179
6180 2013-05-30  Tom Tromey  <tromey@redhat.com>
6181
6182         * symtab.c (search_symbols): Introduce a null cleanup for
6183         'retval_chain'.
6184
6185 2013-05-30  Tom Tromey  <tromey@redhat.com>
6186
6187         * python/py-value.c (valpy_binop): Call do_cleanups before
6188         exiting loop.
6189
6190 2013-05-30  Tom Tromey  <tromey@redhat.com>
6191
6192         * python/py-prettyprint.c (print_children): Remove extra
6193         do_cleanups call.
6194
6195 2013-05-30  Tom Tromey  <tromey@redhat.com>
6196
6197         * python/py-frame.c (frapy_read_var): Call do_cleanups along
6198         all return paths.
6199
6200 2013-05-30  Tom Tromey  <tromey@redhat.com>
6201
6202         * python/py-breakpoint.c (bppy_get_commands): Call do_cleanups
6203         along all return paths.
6204
6205 2013-05-30  Tom Tromey  <tromey@redhat.com>
6206
6207         * cli/cli-logging.c (set_logging_redirect): Unconditionally
6208         call do_cleanups.
6209
6210 2013-05-30  Tom Tromey  <tromey@redhat.com>
6211
6212         * varobj.c (c_value_of_root): Call do_cleanups along all
6213         return paths.
6214
6215 2013-05-30  Tom Tromey  <tromey@redhat.com>
6216
6217         * tracepoint.c (trace_dump_command): Unconditionally call
6218         do_cleanups.
6219
6220 2013-05-30  Tom Tromey  <tromey@redhat.com>
6221
6222         * breakpoint.c (output_thread_groups, parse_cmd_to_aexpr): Call
6223         do_cleanups earlier.
6224
6225 2013-05-30  Tom Tromey  <tromey@redhat.com>
6226
6227         * machoread.c (macho_symfile_read): Assign first cleanup to
6228         'back_to'.
6229
6230 2013-05-30  Tom Tromey  <tromey@redhat.com>
6231
6232         * m32r-rom.c (m32r_load): Call do_cleanups at all returns.
6233
6234 2013-05-30  Tom Tromey  <tromey@redhat.com>
6235
6236         * mi/mi-main.c (list_available_thread_groups): Call do_cleanups.
6237
6238 2013-05-30  Tom Tromey  <tromey@redhat.com>
6239
6240         * inf-ptrace.c (inf_ptrace_create_inferior): Unconditionally
6241         call discard_cleanups.
6242         (inf_ptrace_attach): Likewise.
6243
6244 2013-05-30  Tom Tromey  <tromey@redhat.com>
6245
6246         * remote-mips.c (mips_exit_debug): Call do_cleanups on all
6247         return paths.
6248         (mips_initialize): Likewise.
6249         (common_open): Call do_cleanups.
6250
6251 2013-05-30  Tom Tromey  <tromey@redhat.com>
6252
6253         * utils.c (internal_vproblem): Call do_cleanups.
6254
6255 2013-05-30  Tom Tromey  <tromey@redhat.com>
6256
6257         * linespec.c (find_linespec_symbols): Don't reassign to 'cleanup'.
6258
6259 2013-05-30  Tom Tromey  <tromey@redhat.com>
6260
6261         * cli/cli-script.c (setup_user_args): Don't return after error.
6262
6263 2013-05-30  Tom Tromey  <tromey@redhat.com>
6264
6265         * somread.c (som_symtab_read): Call do_cleanups.
6266
6267 2013-05-30  Tom Tromey  <tromey@redhat.com>
6268
6269         * printcmd.c (print_command_1): Unconditionally call do_cleanups.
6270
6271 2013-05-30  Tom Tromey  <tromey@redhat.com>
6272
6273         * cli/cli-cmds.c (cd_command, alias_command): Call do_cleanups.
6274         * cli/cli-dump.c (restore_binary_file): Call do_cleanups.
6275         * interps.c (interpreter_exec_cmd): Call do_cleanups.
6276         * source.c (show_substitute_path_command): Call do_cleanups.
6277         (unset_substitute_path_command, set_substitute_path_command):
6278         Likewise.
6279         * symfile.c (load_command): Call do_cleanups.
6280
6281 2013-05-30  Tom Tromey  <tromey@redhat.com>
6282
6283         * contrib/cleanup_check.py: New file.
6284         * contrib/gcc-with-excheck: Add option parsing.
6285
6286 2013-05-30  Joel Brobecker  <brobecker@adacore.com>
6287
6288         * windows-nat.c (windows_delete_thread): Add missing space
6289         in cast expression.
6290
6291 2013-05-30  Hafiz Abid Qadeer  <abidh@codesourcery.com>
6292
6293         * inferior.c (top level): Include tilde.h.
6294         (add_inferior_command): Call tilde_expand on the value of 'exec'
6295         argument.
6296
6297 2013-05-30  Pedro Alves  <pedro@codesourcery.com>
6298             Yao Qi  <yao@codesourcery.com>
6299
6300         * tracepoint.c (encode_actions_1): Remove parameter 't'.
6301         Caller update.
6302         (encode_actions): Likewise.
6303         * remote.c (remote_download_tracepoint): Caller update.
6304         * tracepoint.h (encode_actions): Update declaration.
6305
6306 2013-05-30  Pedro Alves  <palves@redhat.com>
6307
6308         * python/python-internal.h (gdb_Py_DECREF): Cast OP to PyObject
6309         pointer.
6310
6311 2013-05-30  Yao Qi  <yao@codesourcery.com>
6312
6313         * remote.c (remote_check_symbols): Remove unused parameter
6314         'objfile'.
6315         Declaration update.
6316         (remote_start_remote, remote_new_objfile): Caller update.
6317
6318 2013-05-30  Yao Qi  <yao@codesourcery.com>
6319
6320         * mi/mi-cmds.c (mi_cmds): Define MI command
6321         '-exec-arguments' by macro DEF_MI_CMD_CLI_1 instead of
6322         DEF_MI_CMD_CLI.
6323
6324 2013-05-29  Pedro Alves  <palves@redhat.com>
6325
6326         * remote.c (remote_insert_breakpoint, remote_remove_breakpoint)
6327         (remote_insert_watchpoint, remote_remove_watchpoint)
6328         (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
6329         (remote_verify_memory, compare_sections_command)
6330         (remote_search_memory): Set the general process/thread on the
6331         remote side.
6332
6333 2013-05-29  Pedro Alves  <palves@redhat.com>
6334
6335         * aarch64-tdep.c: Don't include "features/aarch64-without-fpu.c".
6336         (_initialize_aarch64_tdep): Don't call
6337         initialize_tdesc_aarch64_without_fpu.
6338         * features/Makefile (WHICH): Remove reference to
6339         aarch64-without-fpu.
6340         * features/aarch64-without-fpu.c: Delete file.
6341         * regformats/aarch64-without-fpu.dat: Delete file.
6342
6343 2013-05-28  Yao Qi  <yao@codesourcery.com>
6344
6345         * tracepoint.c (stringify_collection_list): Remove parameter
6346         'string'.
6347         (encode_actions): Caller update.  Remove local variables.
6348
6349 2013-05-24  Yao Qi  <yao@codesourcery.com>
6350
6351         * tracepoint.c (TFILE_PID): Remove.
6352         (tfile_open): Don't add thread and inferior.
6353         (tfile_close): Don't set 'inferior_ptid'.  Don't call
6354         exit_inferior_silent.
6355         (tfile_thread_alive): Remove.
6356         (init_tfile_ops): Don't set field 'to_thread_alive' of
6357         tfile_ops.
6358
6359 2013-05-23  Doug Evans  <dje@google.com>
6360
6361         * contrib/cc-with-tweaks.sh (-p): Handle no dwo files.
6362
6363 2013-05-23  Pedro Alves  <palves@redhat.com>
6364
6365         * common/filestuff.c [USE_WIN32API]: Define HAVE_SOCKETS.
6366         [HAVE_SYS_SOCKET_H]: Define HAVE_SOCKETS.
6367         (socket_mark_cloexec, gdb_socketpair_cloexec, gdb_socket_cloexec):
6368         Only define if HAVE_SOCKETS is defined.
6369         * configure.ac: Check for sys/socket.h.
6370         * config.in, configure: Regenerate.
6371
6372 2013-05-23  Pedro Alves  <palves@redhat.com>
6373
6374         * dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
6375         (open_and_init_dwp_file): Use %s/pulongest instead of %u for
6376         printing uint32_t variables.
6377
6378 2013-05-23  Pedro Alves  <palves@redhat.com>
6379
6380         * NEWS: Mention GDBserver range stepping support.
6381
6382 2013-05-23  Yao Qi  <yao@codesourcery.com>
6383             Pedro Alves  <palves@redhat.com>
6384
6385         * gdbthread.h (struct thread_control_state) <may_range_step>: New
6386         field.
6387         * infcmd.c (step_once, until_next_command): Enable range stepping.
6388         * infrun.c (displaced_step_prepare): Disable range stepping.
6389         (resume): Disable range stepping if stepping over a breakpoint or
6390         we have software watchpoints.  If range stepping is enabled,
6391         assert the thread is in the stepping range.
6392         (clear_proceed_status_thread): Clear may_range_step.
6393         (handle_inferior_event): Disable range stepping as soon as we know
6394         the thread that hit the event.  Re-enable it whenever we're going
6395         to step with a step range.
6396         * remote.c (struct vCont_action_support) <r>: New field.
6397         (use_range_stepping): New global.
6398         (remote_vcont_probe): Handle 'r' action.
6399         (append_resumption): Append an 'r' action if the thread may range
6400         step.
6401         (show_range_stepping): New function.
6402         (set_range_stepping): New function.
6403         (_initialize_remote): Call add_setshow_boolean_cmd to register the
6404         'set range-stepping' and 'show range-stepping' commands.
6405         * NEWS: Mention range stepping, the new vCont;r action, and the
6406         new "set/show range-stepping" commands.
6407
6408 2013-05-23  Yao Qi  <yao@codesourcery.com>
6409             Pedro Alves  <palves@redhat.com>
6410
6411         * remote.c (struct vCont_action_support): New struct.
6412         (struct remote_state) <support_vCont_t>: Remove field.
6413         <vCont_actions_support>: New field.
6414         (remote_vcont_probe, remote_stop_ns): Update.
6415
6416 2013-05-23  Yao Qi  <yao@codesourcery.com>
6417             Pedro Alves  <palves@redhat.com>
6418
6419         * gdbthread.h (pc_in_thread_step_range): New declaration.
6420         * thread.c (pc_in_thread_step_range): New function.
6421         * infrun.c (handle_inferior_event): Use it.
6422
6423 2013-05-23  Joel Brobecker  <brobecker@adacore.com>
6424
6425         * mi/mi-cmd-break.c (mi_argv_to_format): Use xsnprintf instead
6426         of sprintf.
6427
6428 2013-05-22  Keith Seitz  <keiths@redhat.com>
6429
6430         * ada-lang.c (is_known_support_routine): Add explicit free of
6431         'func_name' from find_frame_funname.
6432         (ada_unhandled_exception_name_addr_from_raise): Add cleanups
6433         for func_name from find_frame_funname.
6434         * python/py-frame.c (frapy_name): Add explicit free of
6435         'name' from find_frame_funname.
6436         * stack.c (find_frame_funname): Add comment explaining that
6437         funcp must be freed by the caller.
6438         Return copy of symbol names instead of pointers.
6439         (print_frame): Add a cleanup for 'funname' from
6440         find_frame_funname.
6441         * stack.h (find_frame_funname): Remove "const" from
6442         'funname' parameter.
6443
6444 2013-05-22  Tom Tromey  <tromey@redhat.com>
6445
6446         PR c++/15401:
6447         * c-valprint.c (c_value_print): Use value_addr for
6448         references.  Convert back to reference type with value_ref.
6449
6450 2013-05-22  Eli Zaretskii  <eliz@gnu.org>
6451
6452         * windows-nat.c (handle_unload_dll): Don't call solib_add for the
6453         unloaded DLL, it will be done by handle_solib_event.  See
6454         http://sourceware.org/ml/gdb-patches/2013-05/msg00713.html for the
6455         details.
6456
6457 2013-05-22  Phil Muldoon  <pmuldoon@redhat.com>
6458
6459         * ui-out.c: Create typedef ui_out_level_p and define vector
6460         operations for that type.
6461         (struct ui_out): Use a vector instead of an array.
6462         (current_level): Return level from a vector.
6463         (push_level): Create a level in a vector.
6464         (pop_level): Delete a level in a vector.
6465         (ui_out_new): Create initial level zero level, and store in a
6466         vector.
6467         (ui_out_destroy): Add vector cleanup.
6468
6469 2013-05-22  Pedro Alves  <palves@redhat.com>
6470
6471         * python/python-internal.h (gdb_Py_DECREF): Tag with
6472         "ARI: editCase function".
6473
6474 2013-05-21  Paul Pluzhnikov  <ppluzhnikov@google.com>
6475
6476         * solib-svr4.c (svr4_free_so): Protect against NULL dereference.
6477
6478 2013-05-21  Pedro Alves  <palves@redhat.com>
6479
6480         * python/py-prettyprint.c (apply_val_pretty_printer): Check
6481         whether PRINTER is NULL before installing a Py_DECREF cleanup.
6482         * python/py-utils.c (py_decref): Don't check for NULL before
6483         calling Py_DECREF.
6484
6485 2013-05-21  Pedro Alves  <palves@redhat.com>
6486
6487         * python/py-utils.c (py_decref): Remove extra braces.
6488         (gdb_pymodule_addobject): Remove extra braces.
6489         * python-internal.h (gdb_Py_DECREF): New static inline function.
6490         (Py_DECREF): Redefine as calling gdb_Py_DECREF.
6491
6492 2013-05-21  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
6493
6494         * breakpoints.c (detach_breakpoints): Do not
6495         detach breakpoints locations with loc_type bp_loc_other.
6496
6497 2013-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
6498
6499         Workaround Python 2.6.
6500         * python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
6501         a block.
6502
6503 2013-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
6504
6505         Code cleanup: constification.
6506         * solib.c (solib_ops): Make return type and ops variable type const.
6507         (set_solib_ops): Make the new_ops parameter and ops variable const.
6508         (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
6509         (solib_add, solib_keep_data_in_core, clear_solib)
6510         (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
6511         (reload_shared_libraries, solib_global_lookup): Make the ops variable
6512         const.
6513         * solib.h (set_solib_ops): Make the new_ops parameter const.
6514
6515 2013-05-21  Joel Brobecker  <brobecker@adacore.com>
6516
6517         * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
6518         variable.
6519         (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
6520         (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
6521         (SYSTEM_GDBINIT_FILES): New variables.
6522         (all): Add stamp-system-gdbinit.
6523         (stamp-system-gdbinit): New rule.
6524         (clean-system-gdbinit, install-system-gdbinit)
6525         (uninstall-system-gdbinit): New rules.  Make them .PHONY.
6526         (install-only): Add dependency on install-system-gdbinit.
6527         (uninstall): Add dependency on uninstall-system-gdbinit.
6528         (clean): Add dependency on clean-system-gdbinit.
6529         * system-gdbinit/elinos.py: New file.
6530         * system-gdbinit/wrs-linux.py: New file.
6531
6532 2013-05-21  Joel Brobecker  <brobecker@adacore.com>
6533
6534         * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
6535
6536 2013-05-21  Hui Zhu  <hui@codesourcery.com>
6537
6538         * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
6539         * breakpoint.h (dprintf_breakpoint_ops): Add extern.
6540         * mi/mi-cmd-break.c (ctype.h): New include.
6541         (gdb_obstack.h): New include.
6542         (mi_argv_to_format, mi_cmd_break_insert_1): New.
6543         (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
6544         (mi_cmd_dprintf_insert): New.
6545         * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
6546         * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
6547
6548 2013-05-20  Tom Tromey  <tromey@redhat.com>
6549
6550         * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
6551
6552 2013-05-20  Tom Tromey  <tromey@redhat.com>
6553
6554         * python/py-value.c (valpy_get_dynamic_type): Simplify
6555         dynamic_type assignment.  Use Py_XINCREF.
6556
6557 2013-05-20  Tom Tromey  <tromey@redhat.com>
6558
6559         * python/py-type.c (typy_fields): Unconditionally decref 'r'.
6560
6561 2013-05-20  Tom Tromey  <tromey@redhat.com>
6562
6563         * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
6564         (gdbpy_selected_frame): Move object-construction code
6565         out of TRY_CATCH.
6566
6567 2013-05-20  Tom Tromey  <tromey@redhat.com>
6568
6569         * python/py-arch.c (gdbpy_initialize_arch): Use
6570         gdb_pymodule_addobject.
6571         * python/py-block.c (gdbpy_initialize_blocks): Use
6572         gdb_pymodule_addobject.
6573         * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
6574         gdb_pymodule_addobject.
6575         * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
6576         gdb_pymodule_addobject.
6577         * python/py-event.c (gdbpy_initialize_event_generic): Use
6578         gdb_pymodule_addobject.
6579         * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
6580         gdb_pymodule_addobject.
6581         * python/py-evts.c (add_new_registry): Use
6582         gdb_pymodule_addobject.
6583         (gdbpy_initialize_py_events): Likewise.
6584         * python/py-finishbreakpoint.c
6585         (gdbpy_initialize_finishbreakpoints): Use
6586         gdb_pymodule_addobject.
6587         * python/py-frame.c (gdbpy_initialize_frames): Use
6588         gdb_pymodule_addobject.
6589         * python/py-function.c (gdbpy_initialize_functions): Use
6590         gdb_pymodule_addobject.
6591         * python/py-inferior.c (gdbpy_initialize_inferior): Use
6592         gdb_pymodule_addobject.
6593         * python/py-infthread.c (gdbpy_initialize_thread): Use
6594         gdb_pymodule_addobject.
6595         * python/py-objfile.c (gdbpy_initialize_objfile): Use
6596         gdb_pymodule_addobject.
6597         * python/py-param.c (gdbpy_initialize_parameters): Use
6598         gdb_pymodule_addobject.
6599         * python/py-progspace.c (gdbpy_initialize_pspace): Use
6600         gdb_pymodule_addobject.
6601         * python/py-symbol.c (gdbpy_initialize_symbols): Use
6602         gdb_pymodule_addobject.
6603         * python/py-symtab.c (gdbpy_initialize_symtabs): Use
6604         gdb_pymodule_addobject.
6605         * python/py-type.c (gdbpy_initialize_types): Use
6606         gdb_pymodule_addobject.
6607         * python/py-utils.c (gdb_pymodule_addobject): New function.
6608         * python/py-value.c (gdbpy_initialize_values): Use
6609         gdb_pymodule_addobject.
6610         * python/python-internal.h (gdb_pymodule_addobject): Declare.
6611         * python/python.c (_initialize_python): Use
6612         gdb_pymodule_addobject.
6613
6614 2013-05-20  Tom Tromey  <tromey@redhat.com>
6615
6616         * python/py-cmd.c (cmdpy_completer): Use explicit decref.
6617         * python/py-param.c (get_set_value, get_show_value): Use
6618         explicit decrefs.
6619         * python/python.c (start_type_printers, apply_type_printers):
6620         Use explicit decrefs.
6621
6622 2013-05-20  Tom Tromey  <tromey@redhat.com>
6623
6624         * python/py-evts.c (gdbpy_initialize_py_events): Don't
6625         incref the module.
6626
6627 2013-05-20  Tom Tromey  <tromey@redhat.com>
6628
6629         * python/python.c (gdbpy_run_events): Decref the result
6630         of PyObject_CallObject.
6631
6632 2013-05-20  Tom Tromey  <tromey@redhat.com>
6633
6634         * python/py-symtab.c (set_sal): Use
6635         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.  Return -1 on error.
6636         (symtab_and_line_to_sal_object): Update.
6637
6638 2013-05-20  Tom Tromey  <tromey@redhat.com>
6639
6640         * python/py-param.c (compute_enum_values): Decref 'item'.
6641
6642 2013-05-20  Tom Tromey  <tromey@redhat.com>
6643
6644         * mi/mi-main.c: Include python-internal.h.
6645         (mi_cmd_list_features): Check gdb_python_initialized.
6646         * python/py-inferior.c (python_on_normal_stop, python_on_resume)
6647         (python_inferior_exit, python_new_objfile, add_thread_object)
6648         (delete_thread_object, py_free_inferior): Check
6649         gdb_python_initialized.
6650         * python/py-prettyprint.c (apply_val_pretty_printer): Check
6651         gdb_python_initialized.
6652         * python/py-type.c (save_objfile_types): Check
6653         gdb_python_initialized.
6654         * python/python-internal.h (gdb_python_initialized): Declare.
6655         * python/python.c (ensure_python_env): Throw exception if
6656         Python not initialized.
6657         (before_prompt_hook, source_python_script_for_objfile)
6658         (start_type_printers, apply_type_printers,
6659         free_type_printers): Check gdb_python_initialized.
6660         * varobj.c (varobj_get_display_hint)
6661         (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
6662         (install_new_value_visualizer, varobj_set_visualizer)
6663         (value_get_print_value): Check gdb_python_initialized.
6664
6665 2013-05-20  Tom Tromey  <tromey@redhat.com>
6666
6667         * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
6668         Check errors.
6669         * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
6670         * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
6671         Check errors.
6672         * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
6673         Check errors.
6674         * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
6675         Check errors.
6676         * python/py-event.c (gdbpy_initialize_event): Return 'int'.
6677         Check errors.
6678         * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
6679         init function to return 'int'.
6680         * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
6681         Return 'int'.  Check errors.
6682         * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
6683         Check errors.
6684         * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
6685         Return 'int'.  Check errors.
6686         * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
6687         Check errors.
6688         * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
6689         Check errors.
6690         * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
6691         Check errors.
6692         * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
6693         Check errors.
6694         * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
6695         Check errors.
6696         * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
6697         Check errors.
6698         * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
6699         Check errors.
6700         * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
6701         Check errors.
6702         * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
6703         Check errors.
6704         * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
6705         Check errors.
6706         * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
6707         Check errors.
6708         * python/py-type.c (gdbpy_initialize_types): Return 'int'.
6709         Check errors.
6710         * python/py-value.c (gdbpy_initialize_values): Return 'int'.
6711         Check errors.
6712         * python/python-internal.h (gdbpy_initialize_auto_load,
6713         gdbpy_initialize_values, gdbpy_initialize_frames,
6714         gdbpy_initialize_symtabs, gdbpy_initialize_commands,
6715         gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
6716         gdbpy_initialize_blocks, gdbpy_initialize_types,
6717         gdbpy_initialize_functions, gdbpy_initialize_pspace,
6718         gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
6719         gdbpy_initialize_finishbreakpoints,
6720         gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
6721         gdbpy_initialize_thread, gdbpy_initialize_inferior,
6722         gdbpy_initialize_eventregistry, gdbpy_initialize_event,
6723         gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
6724         gdbpy_initialize_signal_event,
6725         gdbpy_initialize_breakpoint_event,
6726         gdbpy_initialize_continue_event,
6727         gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
6728         gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
6729         Update.  Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
6730         * python/python.c (gdb_python_initialized): New global.
6731         (gdbpy_initialize_events): Return 'int'.  Check errors.
6732         (_initialize_python): Check errors.  Set
6733         gdb_python_initialized.
6734
6735 2013-05-20  Tom Tromey  <tromey@redhat.com>
6736
6737         * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
6738         Decref the reslut of PyObject_CallMethod.
6739
6740 2013-05-20  Tom Tromey  <tromey@redhat.com>
6741
6742         * python/py-event.c (gdbpy_initialize_event_generic): Return
6743         early if PyType_Ready fails.
6744
6745 2013-05-20  Tom Tromey  <tromey@redhat.com>
6746
6747         * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
6748         as 'default' in the switch.
6749
6750 2013-05-20  Tom Tromey  <tromey@redhat.com>
6751
6752         * python/py-inferior.c (gdbpy_inferiors): Update.  Hoist
6753         get_addr_from_python calls out of TRY_CATCH.
6754         (infpy_write_memory, infpy_search_memory): Likewise.
6755         * python/py-utils.c (get_addr_from_python): Return negative
6756         value on error.  Use TRY_CATCH.
6757         * python/python-internal.h (get_addr_from_python): Use
6758         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
6759
6760 2013-05-20  Tom Tromey  <tromey@redhat.com>
6761
6762         * python/py-event.c (evpy_emit_event): Decref the
6763         result of PyObject_CallFunctionObjArgs.
6764
6765 2013-05-20  Tom Tromey  <tromey@redhat.com>
6766
6767         * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
6768         Correctly decref.
6769
6770 2013-05-20  Tom Tromey  <tromey@redhat.com>
6771
6772         * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
6773
6774 2013-05-20  Tom Tromey  <tromey@redhat.com>
6775
6776         * python/py-event.h (gdbpy_initialize_event_generic): Use
6777         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
6778         * python/py-evts.c (add_new_registry): Use
6779         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
6780         * python/python-internal.h
6781         (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
6782
6783 2013-05-20  Tom Tromey  <tromey@redhat.com>
6784
6785         * python/py-arch.c (archpy_disassemble): Update.
6786         * python/py-type.c (typy_get_composite, typy_lookup_typename)
6787         (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
6788         * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
6789         * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
6790         macro.
6791         (GDB_PY_HANDLE_EXCEPTION): Update.
6792         (gdbpy_convert_exception): Update.  Use CPYCHECKER_SETS_EXCEPTION.
6793
6794 2013-05-20  Tom Tromey  <tromey@redhat.com>
6795
6796         * python/python-internal.h (events_object_type): Remove.
6797
6798 2013-05-20  Tom Tromey  <tromey@redhat.com>
6799
6800         * python/py-event.h (evpy_emit_event): Use
6801         CPYCHECKER_STEALS_REFERENCE_TO_ARG.
6802         * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
6803         New macro.
6804
6805 2013-05-20  Tom Tromey  <tromey@redhat.com>
6806
6807         * py-evtregistry.c (create_event_object): Decref
6808         eventregistry_object if PyList_New fails.
6809
6810 2013-05-20  Tom Tromey  <tromey@redhat.com>
6811
6812         * py-cmd.c (gdbpy_string_to_argv): Check result of
6813         PyList_New.
6814
6815 2013-05-20  Tom Tromey  <tromey@redhat.com>
6816
6817         * python/python.c (before_prompt_hook): Add cleanup to
6818         decref 'hook'.
6819
6820 2013-05-20  Tom Tromey  <tromey@redhat.com>
6821
6822         * python/py-function.c (fnpy_init): Decref result of
6823         PyObject_GetAttrString.
6824
6825 2013-05-20  Tom Tromey  <tromey@redhat.com>
6826
6827         * python/py-threadevent.c (get_event_thread): Use
6828         CPYCHECKER_RETURNS_BORROWED_REF.
6829         * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
6830         New define.
6831         (pspace_to_pspace_object, objfile_to_objfile_object)
6832         (find_thread_object): Use it.
6833
6834 2013-05-20  Tom Tromey  <tromey@redhat.com>
6835
6836         * python/py-arch.c (arch_object_type): Use
6837         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6838         * python/py-block.c (block_syms_iterator_object_type):
6839         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6840         * python/py-bpevent.c (breakpoint_event_object_type):
6841         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6842         * python/py-cmd.c (cmdpy_object_type): Use
6843         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6844         * python/py-continueevent.c (continue_event_object_type):
6845         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6846         * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
6847         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6848         * python/py-events.h (thread_event_object_type):
6849         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6850         * python/py-evtregistry.c (eventregistry_object_type): Use
6851         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6852         * python/py-exitedevent.c (exited_event_object_type):
6853         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6854         * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
6855         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6856         * python/py-function.c (fnpy_object_type): Use
6857         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6858         * python/py-inferior.c (inferior_object_type, membuf_object_type):
6859         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6860         * python/py-infthread.c (thread_object_type): Use
6861         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6862         * python/py-lazy-string.c (lazy_string_object_type):
6863         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6864         * python/py-newobjfileevent.c (new_objfile_event_object_type):
6865         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6866         * python/py-objfile.c (objfile_object_type): Use
6867         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6868         * python/py-param.c (parmpy_object_type):
6869         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6870         * python/py-progspace.c (pspace_object_type):
6871         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6872         * python/py-signalevent.c (signal_event_object_type):
6873         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6874         * python/py-symtab.c (symtab_object_type, sal_object_type): Use
6875         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6876         * python/py-type.c (type_object_type, field_object_type)
6877         (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6878         * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
6879         define.
6880         (value_object_type, block_object_type, symbol_object_type)
6881         (event_object_type, stop_event_object_type, breakpoint_object_type)
6882         (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6883
6884 2013-05-20  Andreas Tobler  <andreas@fgznet.ch>
6885
6886         * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
6887         (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
6888
6889 2013-05-20  Doug Evans  <dje@google.com>
6890
6891         When reading CU, stay in DWO.  Be more tolerent of bad debug info.
6892         For Fission.
6893         * dwarf2read.c (struct dwarf2_per_cu_data): New member
6894         reading_dwo_directly.
6895         (struct signatured_type): New member dwo_unit.
6896         (struct die_reader_specs): New member comp_dir.
6897         (create_signatured_type_table_from_index): Use malloc for
6898         all_type_units instead of objfile's obstack.
6899         (create_all_type_units): Ditto.
6900         (fill_in_sig_entry_from_dwo_entry): New function.
6901         (add_type_unit): New function.
6902         (lookup_dwo_signatured_type): New function.
6903         (lookup_dwp_signatured_type): New function.
6904         (lookup_signatured_type): New arg cu.  All callers updated.
6905         (init_cu_die_reader): Initialize comp_dir.
6906         (read_cutu_die_from_dwo): New arg stub_comp_dir.  All callers updated.
6907         Change assert of matching type signatures to call error on mismatch.
6908         (lookup_dwo_unit): Add assert.
6909         (init_tu_and_read_dwo_dies): New function.
6910         (init_cutu_and_read_dies): Call it.
6911         (build_type_unit_groups): Handle case of no type unit groups created.
6912         (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
6913         (lookup_dwo_cutu): Tweak complaint.
6914         (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
6915         (dwarf2_per_objfile_free): Free all_type_units.
6916
6917 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
6918
6919         * windows-nat.c (handle_unload_dll): Add missing empty line.
6920
6921 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
6922
6923         * dwarf2read.c (prototyped_function_p): New function.
6924         (read_subroutine_type): Use it.
6925
6926 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
6927
6928         * rs6000-aix-tdep.c: De-indent some example code provided
6929         as a comment.
6930
6931 2013-05-17  Edjunior Machado  <emachado@linux.vnet.ibm.com>
6932
6933         * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
6934         region is ok for a hardware watchpoint using the new ptrace interface
6935         on Power servers.
6936
6937 2013-05-17  Doug Evans  <dje@google.com>
6938
6939         * NEWS: Mention new maintenance commands check-symtabs, and
6940         expand-symtabs, and renamed check-psymtabs.
6941         * psymtab.c (maintenance_check_psymtabs): Renamed from
6942         maintenance_check_symtabs.  Only process already-expanded symbol
6943         tables.
6944         (_initialize_psymtab): Update.
6945         * symmisc.c (maintenance_check_symtabs): New function.
6946         (maintenance_expand_name_matcher): New function
6947         (maintenance_expand_file_matcher): New function
6948         (maintenance_expand_symtabs): New function.
6949         (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
6950         commands.
6951
6952 2013-05-17  Tom Tromey  <tromey@redhat.com>
6953
6954         * python/py-inferior.c (infpy_read_memory): Don't call
6955         PyErr_SetString if PyObject_New fails.
6956         * python/py-frame.c (frame_info_to_frame_object): Don't call
6957         PyErr_SetString if PyObject_New fails.
6958
6959 2013-05-17  Pavel Chupin  <pavel.v.chupin@intel.com>
6960
6961         * acinclude.m4: Add check for dlopen in libdl.
6962         * configure.ac: Ditto.
6963         * configure: Regenerate.
6964
6965 2013-05-17  Phil Muldoon  <pmuldoon@redhat.com>
6966
6967         * frame.c (frame_stash): Convert to htab.
6968         (frame_addr_hash): New function.
6969         (frame_addr_hash_eq): New function.
6970         (frame_stash_create): Convert function to create
6971         a hash table.
6972         (frame_stash_add): Convert function to add an entry to a hash
6973         table.
6974         (frame_stash_find): Convert function to search the hash table.
6975         (frame_stash_invalidate): Convert function to empty the hash
6976         table.
6977         (get_frame_id): Only add to stash if a frame_id is created.
6978         (_initialize_frame): Call frame_stash_create.
6979
6980 2013-05-16  Yue Lu  <hacklu.newborn@gmail.com>  (tiny change)
6981
6982         * configure.ac: Ensure MIG is available when building for GNU Hurd
6983         hosts.
6984         * configure: Regenerate.
6985
6986 2013-05-16  Joel Brobecker  <brobecker@adacore.com>
6987
6988         * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
6989
6990 2013-05-16  Joel Brobecker  <brobecker@adacore.com>
6991
6992         * ada-lang.c (ada_make_symbol_completion_list): Make sure
6993         all cleanups are done before returning from this function.
6994
6995 2013-05-15  Joel Brobecker  <brobecker@adacore.com>
6996
6997         * utils.h: #include "exceptions.h".
6998         (enum errors): Remove partial declaration.
6999
7000 2013-05-15  Joel Brobecker  <brobecker@adacore.com>
7001
7002         * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
7003         * gdbarch.h, gdbarch.c: Regenerate.
7004         * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
7005         handling.
7006
7007         * rs6000-aix-tdep.h: New file.
7008         * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
7009         * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
7010         "xml-utils.h".
7011         (struct field_info, struct ld_info_desc): New types.
7012         (ld_info32_desc, ld_info64_desc): New static constants.
7013         (struct ld_info): New type.
7014         (rs6000_aix_extract_ld_info): New function.
7015         (rs6000_aix_shared_library_to_xml): Likewise.
7016         (rs6000_aix_ld_info_to_xml): Likewise.
7017         (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
7018         (rs6000_aix_init_osabi): Add call to
7019         set_gdbarch_core_xfer_shared_libraries_aix.
7020         * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
7021         Remove "xml-utils.h" include.
7022         (LdInfo): Delete typedef.
7023         (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
7024         Delete macros.
7025         (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
7026         Adjust code accordingly.
7027         (rs6000_core_ldinfo): Delete, folded into
7028         rs6000_aix_core_xfer_shared_libraries_aix.
7029         (rs6000_xfer_shared_library): Delete.
7030         (rs6000_xfer_shared_libraries): Reimplement.
7031
7032 2013-05-15  Markus Metzger  <markus.t.metzger@intel.com>
7033
7034         * record.c (record_goto_cmdlist): New.
7035         (cmd_record_goto): Split into this ...
7036         (cmd_record_goto_begin): ... this
7037         (cmd_record_goto_end): ... and this.
7038         (_initialize_record): Change "record goto" to prefix command.
7039         Add commands for "record goto begin" and "record goto end".
7040         Add an alias for "record goto start" to "record goto begin".
7041
7042 2013-05-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
7043
7044         * linespec.c (convert_linespec_to_sals): New comment for
7045         SOURCE_FILENAME assignment.
7046
7047 2013-05-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
7048
7049         * cleanups.c (restore_my_cleanups): Replace gdb_assert by
7050         internal_warning.
7051
7052 2013-05-14  Tom Tromey  <tromey@redhat.com>
7053
7054         * eval.c (parse_and_eval_long): Make 'exp' const.
7055         * value.h (parse_and_eval_long): Update.
7056
7057 2013-05-14  Tom Tromey  <tromey@redhat.com>
7058
7059         * ui-file.c (gdb_fopen): Make arguments const.
7060         * ui-file.h (gdb_fopen): Make arguments const.
7061
7062 2013-05-14  Tom Tromey  <tromey@redhat.com>
7063
7064         * remote.c (remote_set_trace_notes): Make arguments const.
7065         * target.c (update_current_target): Update cast.
7066         * target.h (to_set_trace_notes): Make arguments const.
7067
7068 2013-05-14  Tom Tromey  <tromey@redhat.com>
7069
7070         * go32-nat.c (go32_terminal_info): Make 'args' const.
7071         * inferior.h (child_terminal_info): Update.
7072         * inflow.c (child_terminal_info): Make 'args' const.
7073         * target.c (default_terminal_info): Make 'args' const.
7074         (debug_to_terminal_save_ours): Likewise.
7075         * target.h (struct target_ops) <to_terminal_info>: Make argument
7076         const.
7077
7078 2013-05-13  Tom Tromey  <tromey@redhat.com>
7079
7080         * gcore.c (create_gcore_bfd): Make 'filename' const.
7081         * gcore.h (create_gcore_bfd): Make 'filename' const.
7082         * record-full.c (record_full_save): Make 'recfilename' const.
7083         * target.c (target_save_record): Make 'filename' const.
7084         * target.h (struct target_ops) <to_save_record>: Make 'filename'
7085         const.
7086         (target_save_record): Likewise.
7087
7088 2013-05-13  Tom Tromey  <tromey@redhat.com>
7089
7090         PR gdb/15338:
7091         * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
7092         ranges section has been read.
7093
7094 2013-05-13  Tom Tromey  <tromey@redhat.com>
7095
7096         PR exp/15364:
7097         * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
7098         STRUCTOP_PTR>: Return a not_lval value for
7099         EVAL_AVOID_SIDE_EFFECTS.
7100         * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
7101         for EVAL_AVOID_SIDE_EFFECTS.
7102
7103 2013-05-13  Joel Brobecker  <brobecker@adacore.com>
7104
7105         * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
7106         floating point registers to register type before storing
7107         value.
7108         * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
7109         Likewise.
7110
7111 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
7112             Tom Tromey  <tromey@redhat.com>
7113
7114         * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
7115         New functions.
7116         * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
7117         Declare.
7118         * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
7119         (darwin_ptrace_him): Use unmark_fd_no_cloexec.
7120         * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
7121         (inf_ttrace_prepare): Use mark_fd_no_cloexec.
7122
7123 2013-05-10  Freddie Chopin  <freddie_chopin@op.pl>
7124             Tom Tromey  <tromey@redhat.com>
7125
7126         PR build/15414:
7127         * configure: Rebuild.
7128         * configure.ac (build_warnings): Do not use -Wformat-nonliteral
7129         with -Wno-format.
7130
7131 2013-05-10  Pedro Alves  <palves@redhat.com>
7132
7133         * remote.c (_initialize_remote): Fix spelling of
7134         qXfer:traceframe-info:read packet in packet config command.
7135
7136 2013-05-10  David Taylor  <dtaylor@emc.com>
7137
7138         PR remote/15455
7139
7140         * remote.c (remote_trace_set_readonly_regions): Do not overwrite
7141         "QTro" at start of packet.
7142
7143 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
7144
7145         * solib-aix.c (solib_aix_relocate_section_addresses):
7146         For the .bss section action, apply the same offset as
7147         the .data section.
7148
7149 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
7150
7151         * solib-aix.c (solib_aix_relocate_section_addresses):
7152         Remove FIXME comment.
7153
7154 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
7155
7156         PR tdep/15420:
7157         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
7158         New functions, directly copied from sparc-sol-thread.c.
7159         * sparc-sol-thread.c: Delete.
7160         * configure.ac: Remove code handling sparc-solaris-thread.c.
7161         * configure: Regenerate.
7162
7163 2013-05-10  Phil Muldoon  <pmuldoon@redhat.com>
7164
7165         * stack.c (backtrace_command_1): Add "no-filters", and Python frame
7166         filter logic.
7167         (backtrace_command): Add "no-filters" option parsing.
7168         (_initialize_stack): Alter help to reflect "no-filters" option.
7169         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
7170         (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
7171         (py-frame.o): Add target
7172         * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
7173         filter files.
7174         * python/python.h: Add new frame filter constants, and flag enum.
7175         (apply_frame_filter): Add definition.
7176         * python/python.c (apply_frame_filter): New non-Python
7177         enabled function.
7178         * python/py-utils.c (py_xdecref): New function.
7179         (make_cleanup_py_xdecref): Ditto.
7180         * python/py-objfile.c: Declare frame_filters dictionary.
7181         (objfpy_dealloc): Add frame_filters dealloc.
7182         (objfpy_new): Initialize frame_filters attribute.
7183         (objfile_to_objfile_object): Ditto.
7184         (objfpy_get_frame_filters): New function.
7185         (objfpy_set_frame_filters): New function.
7186         * python/py-progspace.c: Declare frame_filters dictionary.
7187         (pspy_dealloc): Add frame_filters dealloc.
7188         (pspy_new): Initialize frame_filters attribute.
7189         (pspacee_to_pspace_object): Ditto.
7190         (pspy_get_frame_filters): New function.
7191         (pspy_set_frame_filters): New function.
7192         * python/py-framefilter.c: New file.
7193         * python/lib/gdb/command/frame_filters.py: New file.
7194         * python/lib/gdb/frames.py: New file.
7195         * python/lib/gdb/__init__.py: Initialize global frame_filters
7196         dictionary
7197         * python/lib/gdb/FrameDecorator.py: New file.
7198         * python/lib/gdb/FrameIterator.py: New file.
7199         * mi/mi-cmds.c (mi_cmds): Add frame filters command.
7200         * mi/mi-cmds.h: Declare.
7201         * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
7202         --no-frame-filter logic, and Python frame filter logic.
7203         (stack_enable_frame_filters): New function.
7204         (parse_no_frame_option): Ditto.
7205         (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
7206         filter logic.
7207         (mi_cmd_stack_list_locals): Ditto.
7208         (mi_cmd_stack_list_args): Ditto.
7209         (mi_cmd_stack_list_variables): Ditto.
7210         * NEWS: Add frame filter note.
7211
7212 2013-05-09  Doug Evans  <dje@google.com>
7213
7214         * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
7215         All callers updated.
7216         (syms_from_objfile): Ditto.  Make static.
7217         (symbol_file_add_with_addrs): Renamed from
7218         symbol_file_add_with_addrs_or_offsets.  Delete args offsets,
7219         num_offsets.  All callers updated.
7220         * symfile.h (syms_from_objfile): Delete.
7221
7222         * symfile.c (decrement_reading_symtab): Add assert.
7223         (increment_reading_symtab): Ditto.
7224
7225 2013-05-09  Joel Brobecker  <brobecker@adacore.com>
7226
7227         * source.c (forward_search_command): Replace call to getc
7228         by call to fgetc.
7229         (reverse_search_command): Likewise.
7230
7231 2013-05-08  Doug Evans  <dje@google.com>
7232
7233         * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
7234         matching test.
7235
7236 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
7237
7238         * sol-thread.c (info_cb): Factorize the code a little.
7239
7240 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
7241
7242         * sol-thread.c (info_cb): Rework the output of the "maintenance
7243         info sol-threads" command a bit.
7244
7245 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
7246
7247         * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
7248         Replace ti.ti_startfunc by ti.ti_pc.
7249
7250 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
7251
7252         * solib-aix.c (solib_aix_free_library_list): New function
7253         for the case where HAVE_LIBEXPAT is not defined.
7254
7255 2013-05-07  Sergio Durigan Junior  <sergiodj@redhat.com>
7256
7257         PR breakpoints/15413:
7258         * breakpoint.c (condition_completer): Simplify the code to
7259         disconsider multiple locations of breakpoints when completing the
7260         "condition" command.
7261
7262 2013-05-07  Pierre Muller  <muller@sourceware.org>
7263
7264         * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
7265         instead of <sys/wait.h>.
7266
7267 2013-05-07  Pierre Muller  <muller@sourceware.org>
7268
7269         * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
7270         trailing new line from warning message.
7271
7272 2013-05-07  Pierre Muller  <muller@sourceware.org>
7273
7274         * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
7275         (PC_SOLIB): Change type from ari_deprecate to ari_regression.
7276
7277 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
7278
7279         * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
7280         error message (ARI fix).
7281
7282 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
7283
7284         * features/library-list-aix.dtd: Replace library-list by
7285         library-list-aix.
7286         * rs6000-nat.c: Replace library-list by library-list-aix
7287         throughout.
7288         * solib-aix.c: Likewise.
7289
7290 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
7291
7292         * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
7293         Renames TARGET_OBJECT_AIX_LIBRARIES.
7294         * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
7295         TARGET_OBJECT_LIBRARIES_AIX throughout.
7296         * solib-aix.c: Likwise.
7297
7298 2013-05-07  Yao Qi  <yao@codesourcery.com>
7299
7300         * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
7301         (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
7302
7303 2013-05-07  Yao Qi  <yao@codesourcery.com>
7304
7305         * solib-dsbt.c (enable_break): Declare.
7306         (dsbt_current_sos): Remove call to enable_break2.
7307         (enable_break2): Rename to enable_break.  Set solib breakpoint
7308         on '_dl_debug_state'.
7309         (enable_break): Remove.
7310
7311 2013-05-07  Luis Machado  <lgustavo@codesourcery.com>
7312
7313         * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
7314         debug state prior to replicating existing hardware watchpoints or
7315         breakpoints.
7316
7317 2013-05-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
7318
7319         * gcore.c (gcore_create_callback): Ignore sections with
7320         separate_debug_objfile_backlink != NULL.
7321
7322 2013-05-06  Sandra Loosemore  <sandra@codesourcery.com>
7323             Andrew Jenner  <andrew@codesourcery.com>
7324             Chung-Lin Tang  <cltang@codesourcery.com>
7325             Julian Brown  <julian@codesourcery.com>
7326
7327         Based on the nios2-elf port from Altera Corporation.
7328
7329         * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
7330         nios2-linux-tdep.o.
7331         (HFILES_NO_SRCDIR): Add nios2-tdep.h.
7332         (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
7333         * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
7334         * nios2-tdep.h: New.
7335         * nios2-tdep.c: New.
7336         * nios2-linux-tdep.c: New.
7337         * features/Makefile (WHICH): Add nios2-linux.
7338         (nios2-linux-expedite): Set.
7339         * features/nios2-cpu.xml: New.
7340         * features/nios2.xml: New.
7341         * features/nios2-linux.xml: New.
7342         * features/nios2.c: New (autogenerated).
7343         * features/nios2-linux.c: New (autogenerated).
7344         * regformats/nios2-linux.dat: New (autogenerated).
7345         * NEWS (Changes since GDB 7.6): Add new Nios II targets
7346         and commands.
7347
7348 2013-05-06  Doug Evans  <dje@google.com>
7349
7350         * symfile.c: Whitespace cleanup.
7351
7352         * solist.h (struct target_so_ops): New member clear_so.
7353         * solib-svr4.c (svr4_clear_so): New function.
7354         (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
7355         * solib.c (clear_so): Renamed from free_so_symbols.
7356         All callers updated.  Call target clear_so if it exists.
7357
7358 2013-05-06  Tom Tromey  <tromey@redhat.com>
7359
7360         * ada-lang.c (ada_value_primitive_packed_val): Don't
7361         call value_incref.
7362         * value.c (set_value_parent): Incref the new parent and decref
7363         the old parent.
7364         (value_copy, value_primitive_field): Use set_value_parent.
7365
7366 2013-05-06  Tom Tromey  <tromey@redhat.com>
7367
7368         * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
7369         (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
7370         if needed.
7371         * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
7372         * dwarf2read.c (write_constant_as_bytes)
7373         (dwarf2_fetch_constant_bytes): New functions.
7374
7375 2013-05-06  Tom Tromey  <tromey@redhat.com>
7376
7377         * dwarf2read.c (dwarf2_const_value_data): Remove unused
7378         parameters.
7379         (dwarf2_const_value_attr): Update.
7380
7381 2013-05-06  Tom Tromey  <tromey@redhat.com>
7382
7383         * somread.c (som_symfile_offsets): Add 'const' to addrs.
7384         * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
7385         * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
7386         Remove declaration.
7387
7388 2013-05-06  Tom Tromey  <tromey@redhat.com>
7389
7390         * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
7391         objfile's obstack.
7392
7393 2013-05-06  Doug Evans  <dje@google.com>
7394
7395         * dbxread.c (process_one_symbol): Constify section_offsets parameter.
7396         * stabsread.h (process_one_symbol): Update declaration.
7397         * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
7398         * elfread.c (elf_symfile_relocate_probe): Ditto.
7399         * psymtab.c (relocate_psymtabs): Ditto.
7400         * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
7401         (objfile_relocate): Ditto.
7402         * objfiles.h (objfile_relocate): Update declaration.
7403         * symfile.c (relative_addr_info_to_section_offsets): Constify
7404         addrs parameter.
7405         (default_symfile_offsets): Ditto.
7406         (syms_from_objfile_1): Constify offsets parameter.
7407         (syms_from_objfile): Ditto.
7408         (symbol_file_add_with_addrs_or_offsets): Ditto.
7409         (symfile_map_offsets_to_segments): Constify data parameter.
7410         * symfile.h (struct quick_symbol_functions): Constify new_offsets,
7411         delta parameters of member relocate.
7412         (struct sym_probe_fns): Constify new_offsets,
7413         delta parameters of member sym_relocate_probe.
7414         (struct sym_fns): Constify section_addr_info parameter of member
7415         sym_offsets.
7416         (relative_addr_info_to_section_offsets): Update declaration.
7417         (default_symfile_offsets): Ditto.
7418         (syms_from_objfile): Ditto.
7419         (symfile_map_offsets_to_segments): Ditto.
7420
7421         * symfile.c (syms_from_objfile_1): Use correct section count when
7422         objfile->sf == NULL.
7423
7424 2013-05-06  Mike Frysinger  <vapier@gentoo.org>
7425
7426         * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
7427
7428 2013-05-06  Doug Evans  <dje@google.com>
7429
7430         * psympriv.h (struct partial_symtab): Augment comment for member
7431         section_offsets.
7432
7433 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7434
7435         Reimplement shared library support on ppc-aix...
7436         * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
7437         * features/library-list-aix.dtd: New file.
7438         * solib-aix.h, solib-aix.c: New file.
7439         * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
7440         (rs6000_find_toc_address_hook): Delete.
7441         (rs6000_push_dummy_call): Rewrite code setting the TOC value.
7442         (rs6000_aix_init_osabi): Register solib_aix_so_ops.
7443         * rs6000-nat.c: Remove "xcoffsolib.h" include.  Include
7444         "xml-utils.h".
7445         (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
7446         (vmap_symtab, fixup_breakpoints): Delete.
7447         (rs6000_xfer_shared_libraries): New function.
7448         (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
7449         (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
7450         (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
7451         (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
7452         (rs6000_xfer_shared_library): New function.
7453         (find_toc_address): Delete.
7454         (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
7455         * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
7456         * xcoffread.c (record_minimal_symbol): Reloate symbol address
7457         before creating minimal symbol.  Adjust function description
7458         accordingly.
7459         (scan_xcoff_symtab): Replace call to
7460         prim_record_minimal_symbol_and_info by call to
7461         record_minimal_symbol.
7462         (xcoff_symfile_offsets): Reimplement mostly as a wrapper
7463         around default_symfile_offsets.
7464         * configure.tgt: Add solib-aix.o to gdb_target_obs for
7465         powerpc-aix targets.
7466         * config/rs6000/nm-rs6000.h: Delete.
7467         * config/powerpc/aix.mh (NAT_FILE): Delete.
7468         (NATDEPFILES): Remove xcoffsolib.o.
7469         * Makefile.in (XMLFILES): Add library-list-aix.dtd.
7470         (ALL_TARGET_OBS): Add solib-aix.o.
7471         (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
7472         config/rs6000/nm-rs6000.h.  Add solib-aix.h.
7473         (ALLDEPFILES): Add solib-aix.c.  Remove xcoffsolib.c.
7474         * xcoffsolib.h, xcoffsolib.c: Delete.
7475
7476         * solib.c (reload_shared_libraries): Remove reference to
7477         SOLIB_CREATE_INFERIOR_HOOK.
7478         * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
7479         (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
7480         (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
7481         comment.
7482         * corelow.c (deprecated_core_resize_section_table): Delete.
7483         * exec.c: Remove include of xcoffsolib.h".
7484         (map_vmap, vmap): Delete.
7485         (exec_close_1): Remove references to vmap.
7486         (exec_file_attach): Remove vmap handling code, and reference
7487         to DEPRECATED_IBM6000_TARGET.
7488         (bfdsec_to_vmap): Delete.
7489         (exec_files_info): Remove block of code handling VMAP.
7490         * infcmd.c (post_create_inferior): Remove reference to
7491         SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
7492         * infrun.c (follow_exec): Remove reference to
7493         SOLIB_CREATE_INFERIOR_HOOK.
7494         * stack.c (print_frame): Remove reference to PC_SOLIB.
7495         * solib-dsbt.c (dsbt_current_sos): Adjust comment.
7496         (dsbt_relocate_main_executable): Likewise.
7497         * solib-frv.c (frv_current_sos): Likewise.
7498
7499 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7500
7501         * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
7502         to target_write_memory and target_read_memory.
7503
7504 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7505
7506         * darwin-nat.c (darwin_setup_fake_stop_event): New function.
7507         (darwin_attach): Adjust using darwin_setup_fake_stop_event.
7508
7509 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7510
7511         * darwin-nat.c: Replace all "%x" instances in format strings
7512         into "0x%x" throughout.
7513
7514 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7515
7516         * darwin-nat.c (darwin_mourn_inferior): Replace call to
7517         gdb_assert by call to MACH_CHECK_ERROR.
7518         (darwin_attach_pid): Raise an error rather than a failed
7519         assertion when various system calls failed.  Report a warning
7520         instead of raising a failed assertion when PREV_NOT is not NULL
7521         after call to mach_port_request_notification.
7522         (darwin_ptrace_me): Raise an error rather than a failed
7523         assertion when read returns nonzero.
7524
7525 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7526
7527         * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
7528
7529 2013-05-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
7530
7531         * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
7532
7533 2013-05-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
7534
7535         * event-top.c (display_gdb_prompt): Call missing do_cleanups.
7536         * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
7537         * symfile.c (symfile_bfd_open): New variable back_to.  Do not leave
7538         a stale cleanup.  Fix double free of NAME.
7539
7540 2013-05-04  Eli Zaretskii  <eliz@gnu.org>
7541
7542         * windows-nat.c (windows_delete_thread): Accept an additional
7543         argument, the thread's exit code, and announce thread death when
7544         print_thread_events is non-zero and we are deleting a thread that
7545         is not the main thread.
7546         (get_windows_debug_event): Pass thread exit code to
7547         windows_delete_thread.
7548
7549 2013-05-03  Kevin Buettner  <kevinb@redhat.com>
7550
7551         * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
7552         (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
7553         (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
7554         (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
7555         (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
7556         (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
7557         (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
7558         (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
7559         (gdbarch_tdep): New struct.
7560         (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
7561         E_NUM_REGS.
7562         (v850e3v5_register_name): New function.
7563         (v850_register_type): v850e3v5 vector registers are 64-bits wide.
7564         (v850_use_struct_convention): Add `gdbarch' parameter.  Add new
7565         code handling the struct return conventions for the RH850 ABI.
7566         Update all callers.
7567         (v850_eight_byte_align_p): New function.
7568         (v850_push_call_dummy): Push structs by value, not by reference
7569         for the RH850 ABI.  Add support for eight byte alignment.
7570         (v850_dbtrap_breakpoint_from_pc): New function.
7571         (v850_gdbarch_init): Add ABI detection code.  Register
7572         v850e3v5_register_name for the v850e3v5 architecture.  Set the
7573         number of registers for v850e3v5.  Register
7574         v850_dbtrap_breakpoint_from_pc as appropriate.
7575         (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
7576
7577 2013-05-03  Doug Evans  <dje@google.com>
7578
7579         * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
7580         of bfd_count_sections.
7581         * solib-target.c (solib_target_relocate_section_addresses): Ditto.
7582         * symfile.c (default_symfile_offsets): Ditto.
7583         (syms_from_objfile_1): Ditto.  Make dummy addrs list an array of
7584         one entry, not bfd_count_sections entries.
7585
7586 2013-05-03  Kevin Buettner  <kevinb@redhat.com>
7587
7588         * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
7589         `save' and `restore' register groups.  Don't include SPL
7590         or SPH in these groups.
7591         (rl78_dwarf_reg_to_regnum):  Adjust mapping for
7592         RL78_PC_REGNUM.  Add mappings for RL78_PSW_REGNUM,
7593         RL78_ES_REGNUM, and RL78_CS_REGNUM.
7594         (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4.  Invoke
7595         dwarf2_append_unwinders().
7596
7597 2013-05-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
7598
7599         * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
7600         ignore SIGINT and SIGTRAP in case these internal signals are
7601         caught explicitely.
7602
7603 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
7604
7605         * darwin-nat.c (darwin_read_write_inferior): Change types
7606         of parameters rdaddr and wraddr to "gdb_byte *". Change type
7607         of copy_count to "mach_msg_type_number_t".
7608         (darwin_read_dyld_info): Change type of parameter
7609         rdaddr to "gdb_byte *".
7610
7611 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
7612
7613         * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
7614         of &info->load_map from "char *" to "gdb_byte *".
7615
7616 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
7617
7618         * ia64-tdep.c (ia64_access_fpreg): Change cast of val
7619         from "char *" to "gdb_byte *".
7620         (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
7621
7622 2013-04-30  Doug Evans  <dje@google.com>
7623
7624         * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
7625         (init_cutu_and_read_dies): Flag a complaint, not error, for bad
7626         DWO stub.  If DWO isn't found, just use stub.
7627         (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
7628
7629         * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
7630         calling init_cutu_and_read_dies.
7631
7632 2013-03-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
7633
7634         * target-descriptions.c (maint_print_c_tdesc_cmd):
7635         Add case to parse structures as register types and
7636         bitfields.
7637
7638 2013-04-30  Walfred Tedeschi  <walfred.tedeschi@intel.com>
7639
7640         * MAINTAINERS (Write After Approval): Add myself to the list.
7641
7642 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
7643
7644         * sol-thread.c (rw_common): Change type of parameter "buf"
7645         to "gdb_byte *".
7646         (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
7647         rw_common to "gdb_byte *" instead of "char *".
7648
7649 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
7650
7651         * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
7652         of local variable msym to const struct bound_minimal_symbol.
7653         Adjust use accordingly.
7654         [ti.ti_state == TD_THR_SLEEP]: Likewise.
7655
7656 2013-04-30  Samuel Thibault  <samuel.thibault@gnu.org>
7657
7658         * i386gnu-nat.c (CREG_OFFSET): New macro.
7659         (creg_offset): New array.
7660         (CREG_ADDR): Use creg_offset instead of reg_offset.
7661
7662 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
7663
7664         * mep-tdep.c (mep_write_pc): Delete.
7665         (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
7666         Add call to set_gdbarch_pc_regnum.
7667
7668 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
7669
7670         * common/filestuff.c: Replace #include <dirent.h> by
7671         #include "gdb_dirent.h".
7672
7673 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
7674
7675         * common/filestuff.c: Replace #include <sys/stat.h> by
7676         #include "gdb_stat.h".
7677
7678 2013-04-29  Pierre Muller  <muller@sourceware.org>
7679
7680         * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
7681         editCase function rule.
7682         (get_DW_AT_signature_type): Likewise.
7683
7684 2013-04-29  Joel Brobecker  <brobecker@adacore.com>
7685
7686         * m32r-tdep.c (m32r_write_pc): Delete.
7687         (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
7688         Add call to set_gdbarch_pc_regnum.
7689
7690 2013-04-29  Pierre Muller  <muller@sourceware.org>
7691
7692         * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
7693
7694 2013-04-29  Joel Brobecker  <brobecker@adacore.com>
7695
7696         * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
7697
7698 2013-04-28  Yao Qi  <yao@codesourcery.com>
7699
7700         * solib-dsbt.c (fetch_loadmap): Re-indent.
7701         (displacement_from_map, enable_break2): Likewise.
7702         (dsbt_relocate_section_addresses): Likewise.
7703
7704 2013-04-26  Joel Brobecker  <brobecker@adacore.com>
7705
7706         GDB 7.6 released.
7707
7708 2013-04-25  Andreas Kaufmann  <Andreas.Kaufmann@synopsys.com>
7709
7710         PR corefiles/14983:
7711         * dwarf2read.c (process_full_comp_unit): Always create a static
7712         block.
7713
7714 2013-04-25  Hui Zhu  <hui@codesourcery.com>
7715
7716         * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
7717         to loc->cmd_bytecode.
7718
7719 2013-04-24  Doug Evans  <dje@google.com>
7720
7721         * dwarf2read.c (setup_type_unit_groups): Fix comment.
7722
7723 2013-04-22  Keith Seitz  <keiths@redhat.com>
7724
7725         * tracepoint.c (trace_save):  Call the writer's start method.
7726
7727 2013-04-24  Muhammad Bilal  <mbilal@codesourcery.com>
7728
7729         PR gdb/10462
7730         * cli/cli-decode.c (lookup_command): Show an error if there is no space
7731         before argument.
7732
7733 2013-04-23  Tom Tromey  <tromey@redhat.com>
7734
7735         * common/filestuff.c: Check USE_WIN32API before including
7736         sys/socket.h.
7737         (HAVE_F_GETFD): New define.
7738         (mark_cloexec): Check HAVE_F_GETFD.
7739         (gdb_open_cloexec): Change 'mode' to unsigned long.
7740         (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
7741         (gdb_pipe_cloexec): Check HAVE_PIPE.
7742         * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
7743         long.
7744
7745 2013-04-23  Hui Zhu  <hui@codesourcery.com>
7746
7747         PR gdb/15293
7748         * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
7749
7750 2013-04-23  Hui Zhu  <hui@codesourcery.com>
7751
7752         PR gdb/15165
7753         * breakpoint.c (dprintf_print_recreate): New.
7754         (save_breakpoints): Let it not save dprintf commands.
7755         (initialize_breakpoint_ops): Set dprintf_print_recreate.
7756
7757 2013-04-22  Tom Tromey  <tromey@redhat.com>
7758
7759         PR gdb/7912:
7760         * Makefile.in (SFILES): Add filestuff.c
7761         (COMMON_OBS): Add filestuff.o.
7762         (filestuff.o): New target.
7763         * auto-load.c (auto_load_objfile_script_1): Use
7764         gdb_fopen_cloexec.
7765         * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
7766         * cli/cli-cmds.c (shell_escape): Call close_most_fds.
7767         * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
7768         * common/agent.c (gdb_connect_sync_socket): Use
7769         gdb_socket_cloexec.
7770         * common/filestuff.c: New file.
7771         * common/filestuff.h: New file.
7772         * common/linux-osdata.c (linux_common_core_of_thread)
7773         (command_from_pid, commandline_from_pid, print_source_lines)
7774         (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
7775         (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
7776         gdb_fopen_cloexec.
7777         * common/linux-procfs.c (linux_proc_get_int)
7778         (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
7779         * config.in, configure: Rebuild.
7780         * configure.ac: Don't check for sys/socket.h.  Check for
7781         fdwalk, pipe2.
7782         * corelow.c (core_open): Use gdb_open_cloexec.
7783         * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
7784         * fork-child.c (fork_inferior): Call close_most_fds.
7785         * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
7786         * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
7787         * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
7788         Use gdb_fopen_cloexec.
7789         (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
7790         gdb_open_cloexec.
7791         (linux_async_pipe): Use gdb_pipe_cloexec.
7792         * remote-fileio.c (remote_fileio_func_open): Use
7793         gdb_open_cloexec.
7794         * remote.c (remote_file_put, remote_file_get): Use
7795         gdb_fopen_cloexec.
7796         * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
7797         close_most_fds.
7798         * ser-tcp.c (net_open): Use gdb_socket_cloexec.
7799         * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
7800         * solib.c (solib_find): Use gdb_open_cloexec.
7801         * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
7802         * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
7803         (tfile_open): Use gdb_open_cloexec.
7804         * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
7805         * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
7806         * xml-support.c (xml_fetch_content_from_file): Use
7807         gdb_fopen_cloexec.
7808         * main.c (captured_main): Call notice_open_fds.
7809
7810 2013-04-22  Edjunior Machado  <emachado@linux.vnet.ibm.com>
7811
7812         * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
7813         'char *' to 'gdb_byte *'.
7814         (gdbsim_store_register): Change the type of 'tmp' from 'char' to
7815         'gdb_byte'.
7816
7817 2013-04-22  Yao Qi  <yao@codesourcery.com>
7818
7819         * infrun.c: Fix typo in comment.
7820
7821 2013-04-22  Andrew Haley  <aph@redhat.com>
7822
7823         * arm-tdep.c (BranchDest): Cast result as "unsigned long",
7824         instead of "long".
7825
7826 2013-04-20  Yao Qi  <yao@codesourcery.com>
7827
7828         * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
7829         'char *' to 'gdb_byte *'.  Cast the return value of
7830         'bt_ctf_get_char_array' to 'gdb_byte *'.
7831
7832 2013-04-19  Pedro Alves  <palves@redhat.com>
7833
7834         * configure.ac (build_warnings): Replace -Wno-pointer-sign with
7835         -Wpointer-sign.
7836         * configure: Regenerate.
7837
7838 2013-04-19  Pedro Alves  <palves@redhat.com>
7839
7840         * ser-tcp.c (net_read_prim): Cast second argument to recv to
7841         'void *'.
7842
7843 2013-04-19  Pedro Alves  <palves@redhat.com>
7844
7845         * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
7846         Change type of 'myaddr' parameter to gdb_byte pointer.
7847         (monitor_write_memory_longlongs): Likewise.  Cast 'myaddr' pointer
7848         to 'long long' pointer instead of to 'unsigned long long'.
7849         (monitor_write_memory_block, monitor_read_memory_single)
7850         (monitor_read_memory): Change type of 'myaddr' parameter to
7851         gdb_byte pointer.
7852
7853 2013-04-19  Pedro Alves  <palves@redhat.com>
7854
7855         * record.c (validate_history_size): Make parameter 'setting'
7856         unsigned.
7857
7858 2013-04-19  Pedro Alves  <palves@redhat.com>
7859
7860         * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
7861         to 'gdb_byte *'.
7862
7863 2013-04-19  Pedro Alves  <palves@redhat.com>
7864
7865         * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
7866         local to int.
7867
7868 2013-04-19  Pedro Alves  <palves@redhat.com>
7869
7870         * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
7871         * ada-tasks.c (read_fat_string_value): Likewise.
7872
7873 2013-04-19  Pedro Alves  <palves@redhat.com>
7874
7875         * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
7876         unsigned.  Pass 'tmp' to safe_read_uleb128 instead of the signed
7877         'offset', and adjust.
7878
7879 2013-04-19  Pedro Alves  <palves@redhat.com>
7880
7881         * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
7882         (read_index_from_section): Add cast to 'char *'.
7883
7884 2013-04-19  Pedro Alves  <palves@redhat.com>
7885
7886         * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
7887
7888 2013-04-19  Pedro Alves  <palves@redhat.com>
7889
7890         * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
7891
7892 2013-04-19  Pedro Alves  <palves@redhat.com>
7893
7894         * record-full.c (record_full_get_bookmark): Change local 'ret'
7895         type to char * and add cast to gdb_byte *.
7896         (record_full_goto_bookmark): Handle 'bookmark' argument as a
7897         string.
7898         * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
7899
7900 2013-04-19  Pedro Alves  <palves@redhat.com>
7901
7902         * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
7903         * python/py-prettyprint.c (print_string_repr): Change type of
7904         'output' local to char *.  Add cast to gdb_byte * in
7905         LA_PRINT_STRING call.
7906         (print_children): Change type of 'output' local to char *.
7907         * python/py-value.c (valpy_string): Add cast to const char * in
7908         PyUnicode_Decode call.
7909
7910 2013-04-19  Pedro Alves  <palves@redhat.com>
7911
7912         * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
7913         and change its type to 'const char *'.  Adjust.
7914         (mips_send_packet): Add cast to 'char *', and remove cast to
7915         'unsigned char *'.
7916         (mips_receive_packet): Remove cast to 'unsigned char *'.
7917         (mips_load_srec): Use bfd_byte.
7918         (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
7919         (pmon_checkset): Make 'value' parameter unsigned.
7920
7921 2013-04-19  Pedro Alves  <palves@redhat.com>
7922
7923         * common/agent.c (agent_run_command): Add cast to gdb_byte *.
7924
7925 2013-04-19  Pedro Alves  <palves@redhat.com>
7926
7927         * remote.c (remote_write_bytes_aux, compare_sections_command)
7928         (remote_read_qxfer)
7929         (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
7930         (remote_hostio_readlink, remote_bfd_iovec_pread)
7931         (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
7932         binary buffer, and char when buffer is used as string.
7933         * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
7934         (trace_save, tfile_open, traceframe_walk_blocks)
7935         (tfile_fetch_registers): Likewise.
7936
7937 2013-04-19  Pedro Alves  <palves@redhat.com>
7938
7939         * ser-base.c (ser_base_write): Change prototype -- take 'void *'
7940         buffer and size_t size.  Adjust.
7941         * ser-base.h (ser_base_write): Adjust.
7942         * ser-go32.c (cnts): Change type to size_t.
7943         (dos_write): Change prototype -- take 'void *'
7944         buffer and size_t size.  Adjust.
7945         (dos_info): Print elements of 'cnts' as unsigned long.
7946         * serial.c (serial_write): Likewise.
7947         * serial.h (serial_write): Adjust.
7948         (struct serial_ops) <write>: Change prototype -- take 'void *'
7949         buffer and size_t size.  Adjust.
7950
7951 2013-04-19  Pedro Alves  <palves@redhat.com>
7952
7953         * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
7954         gdb_byte *.
7955         * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
7956
7957 2013-04-19  Pedro Alves  <palves@redhat.com>
7958
7959         * alpha-tdep.c (alpha_extract_return_value): Use
7960         regcache_cooked_read_unsigned to read 'v0'.
7961
7962 2013-04-19  Pedro Alves  <palves@redhat.com>
7963
7964         * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
7965         parameters 'at', 'as' and 'offset' to uint32_t.
7966
7967 2013-04-19  Pedro Alves  <palves@redhat.com>
7968
7969         * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
7970         'is64' to signed 'int'.
7971
7972 2013-04-19  Pedro Alves  <palves@redhat.com>
7973
7974         * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
7975         parameter to int *.
7976
7977 2013-04-19  Pedro Alves  <palves@redhat.com>
7978
7979         * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
7980         'insnbuf' buffer type to unsigned int[].
7981
7982 2013-04-19  Pedro Alves  <palves@redhat.com>
7983
7984         * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
7985
7986 2013-04-19  Pedro Alves  <palves@redhat.com>
7987
7988         * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
7989         unsigned long *.
7990
7991 2013-04-19  Pedro Alves  <palves@redhat.com>
7992
7993         * alpha-tdep.c (heuristic_fence_post): Change type to int.
7994         (alpha_heuristic_proc_start): Adjust to check -1 instead of
7995         UINT_MAX.
7996         * mips-tdep.c (heuristic_fence_post): Change type to int.
7997         (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
7998
7999 2013-04-19  Pedro Alves  <palves@redhat.com>
8000
8001         * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
8002         (struct gdbarch_tdep) <cris_version>: Make unsigned.
8003         (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
8004
8005 2013-04-19  Pedro Alves  <palves@redhat.com>
8006
8007         * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'.  Use
8008         it to get a string view of the byte buffer.
8009         * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
8010         type to gdb_byte *.  Adjust.
8011         * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
8012         Change local to char *.
8013         * solib-darwin.c (find_program_interpreter): Change return type to
8014         char *.  Adjust.
8015         (darwin_solib_get_all_image_info_addr_at_init): Adjust.
8016         * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
8017         * solib-frv.c (enable_break2): Change local 'buf' to char *.
8018         * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
8019         * solib-svr4.c (find_program_interpreter): Change return type to
8020         char *.  Adjust.
8021         (enable_break): Change local 'interp_name' to char *.
8022         * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
8023         * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
8024         (spu_pseudo_register_write_spu): Use char for string buffer.
8025         Adjust.
8026         (info_spu_event_command, info_spu_signal_command): Add casts to
8027         'char *'.
8028
8029 2013-04-19  Pedro Alves  <palves@redhat.com>
8030
8031         * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
8032         gdb_byte[].
8033         (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
8034         * ada-lang.c (ada_value_assign): Use gdb_byte.
8035         * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
8036         (alphanbsd_sigtramp_offset): Use gdb_byte.
8037         * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
8038         (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
8039         (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
8040         (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
8041         (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
8042         * arm-tdep.c (arm_stub_unwind_sniffer)
8043         (arm_displaced_init_closure): Use gdb_byte.
8044         (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
8045         (arm_default_thumb_le_breakpoint)
8046         (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
8047         * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
8048         thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
8049         * arm-wince-tdep.c (arm_wince_le_breakpoint)
8050         (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
8051         * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
8052         (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
8053         (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
8054         * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
8055         (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
8056         * cris-tdep.c (push_stack_item, cris_push_dummy_call)
8057         (cris_store_return_value, cris_extract_return_value): Use
8058         gdb_byte.
8059         (constraint): Change type of parameter to char * from signed
8060         char*.  Use gdb_byte.
8061         * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
8062         of local buffer to gdb_byte *.
8063         * dwarf2read.c (read_index_from_section): Use gdb_byte.
8064         (create_dwp_hash_table): Change type of locals to gdb_byte *.
8065         (add_address_entry): Change type of local buffer to gdb_byte[].
8066         * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
8067         (frv_push_dummy_call): Use gdb_byte.
8068         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
8069         (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
8070         (hppa_hpux_supply_save_state): Use gdb_byte.
8071         * hppa-tdep.c (hppa32_push_dummy_call)
8072         (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
8073         * ia64-tdep.c (extract_bit_field, replace_bit_field)
8074         (slotN_contents, replace_slotN_contents): Change type of parameter
8075         to gdb_byte *.
8076         (fetch_instruction, ia64_pseudo_register_write)
8077         (ia64_register_to_value, ia64_value_to_register)
8078         (ia64_extract_return_value, ia64_store_return_value)
8079         (ia64_push_dummy_call): Use gdb_byte.
8080         * m32c-tdep.c (m32c_return_value): Remove cast.
8081         * m68hc11-tdep.c (m68hc11_pseudo_register_write)
8082         (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
8083         gdb_byte.
8084         * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
8085         * mn10300-tdep.c (mn10300_store_return_value)
8086         (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
8087         gdb_byte.
8088         * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
8089         (moxie_process_record): Remove casts.
8090         * ppc-ravenscar-thread.c (supply_register_at_address)
8091         (ppc_ravenscar_generic_store_registers): Use gdb_byte.
8092         * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
8093         * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
8094         * remote-mips.c (mips_xfer_memory): Use gdb_byte.
8095         * remote.c (compare_sections_command): Use gdb_byte.
8096         * score-tdep.c (score7_free_memblock): Change type of parameter to
8097         gdb_byte *.
8098         * sh-tdep.c (sh_justify_value_in_reg): Change return type to
8099         gdb_byte *.  Use gdb_byte.
8100         (sh_push_dummy_call_fpu): Use gdb_byte.
8101         (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
8102         (sh_store_return_value_nofpu, sh_store_return_value_fpu)
8103         (sh_register_convert_to_virtual, sh_register_convert_to_raw):
8104         Change parameter type to 'gdb_byte *'.  Use gdb_byte.
8105         (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
8106         * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
8107         (sh64_store_return_value, sh64_register_convert_to_virtual):
8108         Change parameter type to 'gdb_byte *'.  Use gdb_byte.
8109         (sh64_pseudo_register_write): Use gdb_byte.
8110         * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
8111         * solib-irix.c (fetch_lm_info): Likewise.  Use gdb_byte for byte
8112         buffer.
8113         (irix_current_sos): Use gdb_byte.
8114         * solib-som.c (som_current_sos): Use gdb_byte.
8115         * sparc-ravenscar-thread.c (supply_register_at_address)
8116         (sparc_ravenscar_generic_store_registers): Use gdb_byte.
8117         * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
8118         * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
8119         * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
8120         'gdb_byte *'.
8121         * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
8122         'gdb_byte *'.
8123         * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
8124         * xstormy16-tdep.c (xstormy16_extract_return_value)
8125         (xstormy16_store_return_value): Change parameter type to
8126         'gdb_byte *'.  Adjust.
8127         (xstormy16_push_dummy_call): Use gdb_byte.
8128         * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
8129         (call0_analyze_prologue, execute_code): Use gdb_byte.
8130
8131 2013-04-19  Vladimir Kargov <kargov@gmail.com>
8132             Pedro Alves  <palves@redhat.com>
8133
8134         * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
8135         value contents.
8136
8137 2013-04-17  Doug Evans  <dje@google.com>
8138
8139         * dwarf2read.c (struct signatured_type): New member type.
8140         (struct attribute): Replace member signatured_type with signature.
8141         (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
8142         (read_call_site_scope): Call follow_die_ref instead of
8143         follow_die_ref_or_sig.
8144         (read_structure_type): Rewrite handling of signatured types.
8145         (read_enumeration_type): Ditto.
8146         (read_attribute_value): Update.
8147         (build_error_marker_type): New function.
8148         (lookup_die_type): Add assert.  Rewrite handling of signatured types.
8149         Don't call error for bad types, just build an error marker type.
8150         (dump_die_shallow): Update.
8151         (follow_die_sig_1): Renamed from follow_die_sig.
8152         Don't call error for bad types, instead return NULL.
8153         (follow_die_sig): New function.
8154         (get_signatured_type, get_DW_AT_signature_type): New functions.
8155
8156 2013-04-17  Yufeng Zhang  <yufeng.zhang@arm.com>
8157
8158         * aarch64-tdep.c (aarch64_write_pc): Removed.
8159         (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
8160         function.
8161
8162 2013-04-17  Yao Qi  <yao@codesourcery.com>
8163
8164         * top.c (print_gdb_configuration): Print configure-time
8165         parameter on using libbabeltrace or not.
8166
8167 2013-04-16  Pedro Alves  <palves@redhat.com>
8168
8169         * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
8170
8171 2013-04-16  Pedro Alves  <palves@redhat.com>
8172
8173         * common/glibc_thread_db.h: Update from upstream glibc
8174         (git 568035b7874a099087b77f7bba3e36a1173787b0).
8175
8176 2013-04-16  Pedro Alves  <palves@redhat.com>
8177
8178         * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
8179         * common/glibc_thread_db.h: ... this new file ...
8180         * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
8181
8182 2013-04-16  Will Newton  <will.newton@gmail.com>
8183             Pedro Alves  <palves@redhat.com>
8184
8185         PR build/11881
8186
8187         * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
8188         (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
8189         HAVE_THREAD_DB_H.
8190
8191 2013-04-16  Pedro Alves  <palves@redhat.com>
8192             Eli Zaretskii  <eliz@gnu.org>
8193
8194         * NEWS: Mention "set foo unlimited".
8195
8196 2013-04-15  Doug Evans  <dje@google.com>
8197
8198         * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
8199         (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
8200         (create_dwo_cu_reader): Renamed from
8201         create_dwo_debug_info_hash_table_reader.
8202         (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
8203         Remove support for multiple CUs in a DWO file.
8204         (open_and_init_dwo_file, lookup_dwo_cutu): Update.
8205
8206         * dwarf2read.c (create_debug_types_hash_table): Use hex_string
8207         instead of phex.
8208         (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
8209         (create_dwo_in_dwp): Ditto.
8210
8211 2013-04-15  Tom Tromey  <tromey@redhat.com>
8212
8213         * NEWS: Move recent entries into "since 7.6" section.
8214
8215 2013-04-15  Tom Tromey  <tromey@redhat.com>
8216
8217         PR c++/13588:
8218         * NEWS: Update.
8219         * break-catch-throw.c (struct exception_catchpoint)
8220         <exception_rx, pattern>: New fields.
8221         (fetch_probe_arguments, dtor_exception_catchpoint)
8222         (check_status_exception_catchpoint)
8223         (print_one_detail_exception_catchpoint): New functions.
8224         (handle_gnu_v3_exceptions): Add "except_rx" argument.
8225         Compile regular expression if needed.
8226         (extract_exception_regexp): New function.
8227         (catch_exception_command_1): Use extract_exception_regexp.
8228         (compute_exception): Use fetch_probe_arguments.
8229         (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
8230         and check_status fields.
8231         * cp-abi.c (cplus_typename_from_type_info): New function.
8232         * cp-abi.h (cplus_typename_from_type_info): Declare.
8233         (struct cp_abi_ops) <get_typename_from_type_info>: New field.
8234         * gdb_regex.h (compile_rx_or_error): Declare.
8235         * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
8236         comment.
8237         (init_gnuv3_ops): Set get_type_from_type_info field.
8238         * probe.c (compile_rx_or_error): Move...
8239         * utils.c (compile_rx_or_error): ... here.
8240
8241 2013-04-15  Tom Tromey  <tromey@redhat.com>
8242
8243         PR c++/15176:
8244         * NEWS: Update.
8245         * break-catch-throw.c (compute_exception): New function.
8246         (exception_funcs): New global.
8247         (_initialize_break_catch_throw): Create $_exception.
8248         * cp-abi.c (cplus_type_from_type_info): New function.
8249         * cp-abi.h (cplus_type_from_type_info): Declare.
8250         (struct cp_abi_ops) <get_type_from_type_info>: New field.
8251         * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
8252         (gnuv3_get_type_from_type_info): New functions.
8253         (init_gnuv3_ops): Set get_type_from_type_info ABI field.
8254
8255 2013-04-15  Tom Tromey  <tromey@redhat.com>
8256
8257         * break-catch-throw.c (struct exception_names): New.
8258         (exception_functions): Change type.
8259         (re_set_exception_catchpoint): Look for SDT probes.
8260
8261 2013-04-15  Tom Tromey  <tromey@redhat.com>
8262
8263         PR c++/10119:
8264         * break-catch-throw.c (exception_functions): New global.
8265         (gnu_v3_exception_catchpoint_ops): Move earlier.
8266         (struct exception_catchpoint): New.
8267         (classify_exception_breakpoint): Rewrite.
8268         (re_set_exception_catchpoint): New function.
8269         (handle_gnu_v3_exceptions): Return void.  Use init_catchpoint.
8270         Allocate a struct exception_catchpoint.
8271         (catch_exception_command_1): Update.
8272         (initialize_throw_catchpoint_ops): Set 're_set' method.
8273
8274 2013-04-15  Tom Tromey  <tromey@redhat.com>
8275
8276         * Makefile.in (SFILES): Add break-catch-throw.c
8277         (COMMON_OBS): Add break-catch-throw.o.
8278         * break-catch-throw.c: New file.
8279         * breakpoint.c: Move exception-catching code to new file.
8280         (ep_parse_optional_if_clause): No longer static.
8281         * breakpoint.h (ep_parse_optional_if_clause): Declare.
8282
8283 2013-04-15  Tom Tromey  <tromey@redhat.com>
8284
8285         PR c++/9065:
8286         * NEWS: Update.
8287         * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
8288         * c-exp.y (TYPEID): New token.
8289         (exp): Add new TYPEID productions.
8290         (ident_tokens): Add "typeid".
8291         * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
8292         * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
8293         (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
8294         * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
8295         * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
8296         case.
8297         * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
8298         (build_std_type_info_type, gnuv3_get_typeid_type)
8299         (gnuv3_get_typeid): New functions.
8300         (init_gnuv3_ops): Initialize std_type_info_gdbarch_data.  Set
8301         new fields on ABI object.
8302         * parse.c (operator_length_standard) <OP_TYPEID>: New case.
8303         * std-operator.def (OP_TYPEID): New.
8304
8305 2013-04-15  Tom Tromey  <tromey@redhat.com>
8306
8307         * elfread.c (elf_symtab_read): Install versioned symbol under
8308         unversioned name as well.
8309
8310 2013-04-15  Tom Tromey  <tromey@redhat.com>
8311
8312         PR c++/11990:
8313         * c-lang.c (cplus_language_defn): Use gdb_demangle.
8314         * c-typeprint.c (c_type_print_base): Use gdb_demangle.
8315         * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
8316         (gdb_demangle): New function.
8317         * cp-support.h (gdb_demangle): Declare.
8318         * dwarf2read.c (dwarf2_physname, fixup_partial_die)
8319         (dwarf2_name): Use gdb_demangle.
8320         * gdbtypes.c (check_stub_method): Use gdb_demangle.
8321         * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
8322         suffixes from name.
8323         (gnuv3_print_method_ptr): Use gdb_demangle.
8324         * jv-lang.c (java_demangle): Use gdb_demangle.
8325         * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
8326         * language.c (unk_lang_demangle): Use gdb_demangle.
8327         * symtab.c (symbol_find_demangled_name)
8328         (demangle_for_lookup): Use gdb_demangle.
8329
8330 2013-04-15  Tom Tromey  <tromey@redhat.com>
8331
8332         PR c++/12824:
8333         * NEWS: Update.
8334         * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
8335         New constant.
8336         (classify_exception_breakpoint): New function.
8337         (print_it_exception_catchpoint, print_one_exception_catchpoint)
8338         (print_mention_exception_catchpoint)
8339         (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
8340         (catch_exception_command_1): Handle "rethrow" catchpoint.
8341         (catch_rethrow_command): New function.
8342         (_initialize_breakpoint): Add "catch rethrow" command.
8343
8344 2013-04-15  Pierre Muller  <muller@sourceware.org>
8345
8346         * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
8347         set_gdbarch_write_pc as deprecated anymore.
8348
8349 2013-04-15  Joel Brobecker  <brobecker@adacore.com>
8350
8351         * spu-tdep.c (spu_write_pc): Add empty line after local variable
8352         declarations.
8353
8354 2013-04-13  Yao Qi  <yao@codesourcery.com>
8355
8356         * ctf.c (_initialize_ctf): Include "completer.h".
8357         Call add_target_with_completer instead of add_target.
8358
8359 2013-04-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
8360
8361         Fix GDB regression related to PR binutils/14813.
8362         * jit.c (mem_bfd_iovec_close): Return 0 for success.
8363         * minidebug.c (lzma_close): Add return value comment.
8364         * remote.c (remote_bfd_iovec_close): Return 0 for success.
8365         * solib-spu.c (spu_bfd_iovec_close): Likewise.
8366         * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
8367
8368 2013-04-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
8369
8370         * config.in: Regenerate.
8371
8372 2013-04-12  Tom Tromey  <tromey@redhat.com>
8373
8374         * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
8375         const.
8376         * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
8377         (struct die_reader_specs) <buffer>: Likewise.
8378         (die_reader_func_ftype): Make 'info_ptr' const.
8379         (struct line_header) <include_dirs, statement_program_start,
8380         statement_program_end>: Now const.
8381         (struct file_entry) <name>: Likewise.
8382         (struct partial_die_info) <sibling>: Likewise.
8383         (struct dwarf_block) <data>: Likewise.
8384         (dwarf2_read_section): Remove cast.
8385         (dwarf2_get_section_info): Make 'bufp' const.
8386         (read_index_from_section): Constify.
8387         (dw2_get_file_names_reader): Make 'info_ptr' const.
8388         (dw2_get_primary_filename_reader): Likewise.
8389         (read_comp_unit_head): Make 'info_ptr' and return type const.
8390         (read_and_check_comp_unit_head, read_and_check_type_unit_head):
8391         Likewise.
8392         (read_abbrev_offset): Constify.
8393         (dwarf2_create_include_psymtab): Make 'name' const.
8394         (create_debug_types_hash_table): Update.
8395         (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
8396         (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
8397         Constify.
8398         (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
8399         (load_partial_comp_unit_reader): Make 'info_ptr' const.
8400         (read_comp_units_from_section): Constify.
8401         (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
8402         (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
8403         const.
8404         (dwarf2_compute_name, setup_type_unit_groups): Constify.
8405         (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
8406         (create_dwp_hash_table, dwarf2_ranges_read)
8407         (dwarf2_record_block_ranges): Constify.
8408         (read_die_and_children, read_die_and_siblings_1)
8409         (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
8410         const.
8411         (read_full_die_1, read_full_die): Make 'info_ptr' const.
8412         (abbrev_table_read_table): Constify.
8413         (load_partial_dies): Make 'info_ptr' const.
8414         (read_partial_die, read_attribute_value, read_attribute): Make
8415         'info_ptr' and return type const.
8416         (read_address, read_initial_length)
8417         (read_checked_initial_length_and_offset, read_offset)
8418         (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
8419         const.
8420         (read_direct_string): Make 'buf' and return type const.
8421         (read_indirect_string_at_offset, read_indirect_string_from_dwz)
8422         (read_indirect_string): Make return type const.
8423         (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
8424         (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
8425         'info_ptr' const.
8426         (read_str_index): Make return type const.
8427         (add_include_dir): Make 'include_dir' const.
8428         (add_file_name): Make 'name' const.
8429         (dwarf_decode_line_header): Constify.
8430         (psymtab_include_file_name): Make return type const.
8431         (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
8432         (dwarf2_start_subfile): Make 'filename' const.
8433         (dwarf2_const_value_attr): Make 'bytes' const.
8434         (read_signatured_type_reader): Make 'info_ptr' const.
8435         (decode_locdesc): Constify.
8436         (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
8437         const.
8438         (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
8439         'mac_end', and return type const.
8440         (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
8441         (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
8442         type const.
8443         (per_cu_header_read_in): Constify.
8444         * symfile.h (dwarf2_get_section_info): Update.
8445
8446 2013-04-12  Tom Tromey  <tromey@redhat.com>
8447
8448         * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
8449
8450 2013-04-12  Eli Zaretskii  <eliz@gnu.org>
8451
8452         * NEWS: Mention "show configuration", --configuration.
8453         * top.c (print_gdb_configuration): New function, displays the
8454         details about GDB configure-time parameters.
8455         (print_gdb_version): Mention "show configuration".
8456         * cli/cli-cmds.c (show_configuration): New function.
8457         (_initialize_cli_cmds): Add the "show configuration" command.
8458         * main.c (captured_main) <print_configuration>: New static var.
8459         <long_options>: Use it.
8460         If --configuration was given, call print_gdb_configuration.
8461
8462 2013-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8463             Pedro Alves  <palves@redhat.com>
8464
8465         * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
8466         (generated_files): Add gcore.
8467         (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
8468         HAVE_NATIVE_GCORE_HOST.
8469         (gcore): New.
8470         * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
8471         * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
8472         config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
8473         config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
8474         config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
8475         Add HAVE_NATIVE_GCORE_HOST.
8476         * configure: Regenerate.
8477         * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
8478         New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME.  New
8479         AC_CONFIG_FILES for gcore.
8480         * configure.tgt: Add gdb_have_gcore to the initial comment.  Set
8481         gdb_have_gcore.
8482         * gdb_gcore.sh: Rename to ...
8483         * gcore.in: ... here.  Remove gcore.sh comment.  Use GDB_TRANSFORM_NAME
8484         and GCORE_TRANSFORM_NAME substitutions.
8485
8486         Fix parsing tabs in ${gdb_target_obs}.
8487         * configure.tgt (gdb_have_gcore): Replace case with for and if.
8488
8489 2013-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8490
8491         * remote.c (unpush_and_perror): Add output message final dot.
8492
8493 2013-04-11  Yao Qi  <yao@codesourcery.com>
8494
8495         * tracepoint.c (tfile_interp_line): Fit parameters line and
8496         utpp in one line.
8497
8498 2013-04-10  Joel Brobecker  <brobecker@adacore.com>
8499
8500         * solib.c (solib_map_sections): Remove code overwriting
8501         SO->SO_NAME with the bfd's filename.
8502
8503 2013-04-10  Pedro Alves  <palves@redhat.com>
8504
8505         * cli/cli-decode.c (integer_unlimited_completer): New function.
8506         (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
8507         (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
8508         completer.
8509         * cli/cli-setshow.c: Include "cli/cli-utils.h".
8510         (is_unlimited_literal): New function.
8511         (do_set_command): Handle literal "unlimited" arguments.
8512         * frame.c (_initialize_frame) <set backtrace limit>: Document
8513         "unlimited".
8514         * printcmd.c (_initialize_printcmd) <set print
8515         max-symbolic-offset>: Add help text.
8516         * record-full.c (_initialize_record_full) <set record full
8517         insn-number-max>: Likewise.
8518         * record.c (_initialize_record) <set record
8519         instruction-history-size, set record function-call-history-size>:
8520         Add help text.
8521         * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
8522         help text.
8523         * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
8524         Likewise.
8525         * source.c (_initialize_source) <set listsize>: Add help text.
8526         * utils.c (initialize_utils) <set height, set width>: Likewise.
8527         <set pagination>: Mention "set height unlimited".
8528         * valprint.c (_initialize_valprint) <set print elements, set print
8529         repeats>: Document "unlimited".
8530
8531 2013-04-10  Pedro Alves  <palves@redhat.com>
8532
8533         * cli/cli-cmds.c (quit_command): Call query_if_trace_running
8534         instead of disconnect_tracing.
8535         * infcmd.c (detach_command, disconnect_command): Call
8536         query_if_trace_running.  Adjust.
8537         * top.c: Include "tracepoint.h".
8538         (quit_target): Delete.  Contents moved ...
8539         (quit_force): ... here.  Wrap each stage of teardown in
8540         TRY_CATCH.  Call disconnect_tracing before detaching.
8541
8542 2013-04-10  Hui Zhu  <hui@codesourcery.com>
8543             Yao Qi  <yao@codesourcery.com>
8544
8545         * configure.ac: Check libbabeltrace is installed.
8546         * config.in: Regenerate.
8547         * configure: Regenerate.
8548         * Makefile.in (LIBBABELTRACE): New.
8549         (CLIBS): Add LIBBABELTRACE.
8550         * ctf.c: Include "exec.h".
8551         (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
8552         (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
8553         (ctf_save_metadata_header): Define new type aliases in
8554         metadata.
8555         (ctf_write_header): Define event type "tsv_def" and "tp_def"
8556         in metadata.  Start a new faked packet for trace status.
8557         (ctf_write_status): Write trace status to CTF.
8558         (ctf_write_uploaded_tsv): Write TSV to CTF.
8559         (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
8560         (ctf_write_definition_end): End the faked packet.
8561
8562         (ctx, ctf_iter, trace_dirname): New.
8563         (start_pos): New variable.
8564         (ctf_destroy, ctf_open_dir, ctf_open): New.
8565         (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
8566         macros.
8567         (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
8568         (ctf_fetch_registers, ctf_xfer_partial): New.
8569         (ctf_get_trace_state_variable_value): New.
8570         (ctf_get_tpnum_from_frame_event): New.
8571         (ctf_get_traceframe_address): New.
8572         (ctf_trace_find, ctf_has_stack): New.
8573         (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
8574         (ctf_get_trace_status, ctf_read_status): New.
8575         (_initialize_ctf): New.
8576         * tracepoint.c (get_tracepoint_number): New
8577         (get_uploaded_tsv): Remove 'static'.
8578         (struct traceframe_info, trace_regblock_size): Move it to ...
8579         * tracepoint.h: ... here.
8580         (get_tracepoint_number): Declare it.
8581         (get_uploaded_tsv): Declare it.
8582
8583         * NEWS: Mention new configure option.
8584
8585 2013-04-10  Pedro Alves  <palves@redhat.com>
8586             Hui Zhu  <hui@codesourcery.com>
8587
8588         * breakpoint.c (dprintf_re_set): New.
8589         (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
8590         to dprintf_re_set.
8591
8592 2013-04-09  Joel Brobecker  <brobecker@adacore.com>
8593
8594         * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
8595         Remove solib-svr4.o from the list.
8596
8597 2013-04-09  Joel Brobecker  <brobecker@adacore.com>
8598
8599         * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
8600         Use gdb_assert_not_reached instead of invalid boolean expression.
8601
8602 2013-04-09  Pedro Alves  <palves@redhat.com>
8603
8604         * remote.c (unpush_and_perror): New function.
8605         (readchar, remote_serial_write): Use it.
8606
8607 2013-04-09  Markus Metzger  <markus.t.metzger@intel.com>
8608
8609         * NEWS: Mention new btrace RSP packets.
8610
8611 2013-04-08  Tom Tromey  <tromey@redhat.com>
8612
8613         * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
8614         long.
8615
8616 2013-04-08  Tom Tromey  <tromey@redhat.com>
8617
8618         * maint.c (print_bfd_section_info): Print the section index.
8619         * symmisc.c (dump_msymbols): Print the section index.
8620
8621 2013-04-08  Tom Tromey  <tromey@redhat.com>
8622
8623         PR symtab/8424:
8624         * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
8625         SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
8626         * breakpoint.c (resolve_sal_pc): Update.
8627         * elfread.c (elf_gnu_ifunc_record_cache): Update.
8628         * findvar.c (struct minsym_lookup_data) <objfile>: New field.
8629         (minsym_lookup_iterator_cb): Use it.
8630         (default_read_var_value): Update.
8631         * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
8632         Update.
8633         * infcmd.c (jump_command): Update.
8634         * linespec.c (minsym_found): Update.
8635         * maint.c (maintenance_translate_address): Update.
8636         * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
8637         (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
8638         * parse.c (write_exp_msymbol): Update.
8639         * printcmd.c (address_info): Update.
8640         * psymtab.c (find_pc_sect_psymbol): Update.
8641         (fixup_psymbol_section): Check SYMBOL_SECTION, not
8642         SYMBOL_OBJ_SECTION.
8643         (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
8644         Don't initialize SYMBOL_OBJ_SECTION.
8645         * spu-tdep.c (spu_catch_start): Update.
8646         * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
8647         * symmisc.c (dump_msymbols, print_symbol): Update.
8648         * symtab.c (fixup_section): Don't set 'obj_section'.  Change
8649         how fallback section is computed.
8650         (fixup_symbol_section): Update.
8651         (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
8652         Update.
8653         (allocate_symbol, initialize_symbol, allocate_template_symbol):
8654         Initialize SYMBOL_SECTION.
8655         * symtab.h (struct general_symbol_info) <section>: Update comment.
8656         <obj_section>: Remove.
8657         (SYMBOL_OBJ_SECTION): Add 'objfile' argument.  Rewrite.
8658         (SYMBOL_OBJFILE): New macro.
8659
8660 2013-04-08  Tom Tromey  <tromey@redhat.com>
8661
8662         * coffread.c (record_minimal_symbol): Update.
8663         * dbxread.c (record_minimal_symbol): Update.
8664         * elfread.c (record_minimal_symbol): Update.
8665         * machoread.c (macho_symtab_add_minsym): Update.
8666         * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
8667         Update.
8668         * minsyms.c (prim_record_minimal_symbol): Update.
8669         (prim_record_minimal_symbol_full): Remove 'bfd_section'
8670         argument.
8671         (prim_record_minimal_symbol_and_info): Likewise.
8672         * minsyms.h (prim_record_minimal_symbol_full)
8673         (prim_record_minimal_symbol_and_info): Update.
8674         * symtab.c (allocate_symbol, initialize_symbol)
8675         (allocate_template_symbol): Initialize SYMBOL_SECTION.
8676         * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
8677         Update.
8678
8679 2013-04-08  Tom Tromey  <tromey@redhat.com>
8680
8681         PR symtab/8423:
8682         * solib-som.c (som_solib_section_offsets): Use BFD section
8683         indices.  Set offsets for all sections.
8684         * somread.c (som_symtab_read): Compute BFD section for
8685         symbol.  Use prim_record_minimal_symbol_and_info.
8686         (som_symfile_read): Fix comment.
8687         (struct find_section_offset_arg): New.
8688         (find_section_offset, set_section_index): New functions.
8689         (som_symfile_offsets): Use set_section_index to compute
8690         section indices.
8691
8692 2013-04-08  Tom Tromey  <tromey@redhat.com>
8693
8694         * coffread.c (cs_to_section): Use gdb_bfd_section_index.
8695         * elfread.c (record_minimal_symbol, elf_symtab_read): Use
8696         gdb_bfd_section_index.
8697         * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
8698         New functions.
8699         * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
8700         Declare.
8701         * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
8702         Update.
8703         * objfiles.c (add_to_objfile_sections_full): New function.
8704         (add_to_objfile_sections): Use it.
8705         (build_section_table): Rewrite.
8706         (objfile_relocate1): Use gdb_bfd_section_index.  Update.
8707         * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
8708         (struct objfile) <sections>: Update comment.
8709         (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
8710         is NULL.
8711         (ALL_OBJSECTIONS): Use it.
8712         * solib-dsbt.c (dsbt_relocate_main_executable): Update.
8713         * solib-frv.c (frv_relocate_main_executable): Update.
8714         * solib-target.c (solib_target_relocate_section_addresses):
8715         Use gdb_bfd_section_index.
8716         * symfile.c (build_section_addr_info_from_section_table):
8717         Use gdb_bfd_section_index.
8718         (build_section_addr_info_from_bfd, place_section): Likewise.
8719         * symtab.c (fixup_section): Update.
8720         * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
8721
8722 2013-04-08  Tom Tromey  <tromey@redhat.com>
8723
8724         * minsyms.h (struct bound_minimal_symbol): New.
8725         (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
8726         Remove objfile argument.
8727         (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
8728         Return bound_minimal_symbol.
8729         * minsyms.c (lookup_minimal_symbol_by_pc_1)
8730         (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
8731         Return bound_minimal_symbol.
8732         (in_gnu_ifunc_stub): Update.
8733         (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
8734         Remove 'objfile_p' argument.
8735         (lookup_solib_trampoline_symbol_by_pc): Update.
8736         * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
8737         arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
8738         c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
8739         glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
8740         i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
8741         linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
8742         mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
8743         ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
8744         stack.c, symtab.c, tui/tui-disasm.c: Update.
8745
8746 2013-04-08  Tom Tromey  <tromey@redhat.com>
8747
8748         * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
8749         Use symbol's obstack, not an objfile.
8750         * coffread.c (process_coff_symbol): Update.
8751         * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
8752         * jv-lang.c (add_class_symbol): Update.
8753         * mdebugread.c (new_symbol): Update.
8754         * minsyms.c (prim_record_minimal_symbol_full)
8755         (terminate_minimal_symbol_table): Update.
8756         * psymtab.c (add_psymbol_to_bcache): Clear entire symbol.  Update.
8757         * stabsread.c (define_symbol, read_enum_type): Update.
8758         * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
8759         Handle Ada specially.
8760         (symbol_set_language): Add 'obstack' argument.
8761         (symbol_set_names): Update.
8762         (symbol_natural_name, symbol_demangled_name): Always use
8763         ada_decode_symbol.
8764         * symtab.h (struct general_symbol_info)
8765         <language_specific::obstack>: New field.
8766         <ada_mangled>: New field.
8767         (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
8768         (symbol_set_language): Update.
8769
8770 2013-04-08  Tom Tromey  <tromey@redhat.com>
8771
8772         * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
8773         Take an obstack, not an objfile.
8774         (symbol_set_names): Update.
8775         * symtab.h (symbol_set_demangled_name): Update.
8776
8777 2013-04-08  Tom Tromey  <tromey@redhat.com>
8778
8779         * coffread.c (process_coff_symbol, coff_read_enum_type): Call
8780         allocate_symbol.
8781         * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
8782         (read_func_scope): Call allocate_template_symbol.
8783         (new_symbol_full): Call allocate_symbol.
8784         * jit.c (finalize_symtab): Call allocate_symbol.
8785         * jv-lang.c (add_class_symbol): Call allocate_symbol.
8786         * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
8787         * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
8788         (common_block_end): Call allocate_symbol.
8789         * symtab.c (allocate_symbol, initialize_symbol)
8790         (allocate_template_symbol): New functions.
8791         * symtab.c (allocate_symbol, initialize_symbol)
8792         (allocate_template_symbol): Declare.
8793         * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
8794
8795 2013-04-08  Pedro Alves  <palves@redhat.com>
8796             Keith Seitz  <keiths@redhat.com>
8797
8798         * breakpoint.c (create_breakpoint): Rename
8799         "parse_condition_and_thread" parameter to "parse_arg".  Update
8800         describing comment.  If !PARSE_ARG, then error out if ARG is not
8801         the empty string after extracting the location.
8802         * breakpoint.h (create_breakpoint): Rename
8803         "parse_condition_and_thread" parameter to "parse_arg".
8804
8805 2013-04-08  Aleksandar Ristovski  <aristovski@qnx.com
8806
8807         * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
8808
8809 2013-04-07  Yao Qi  <yao@codesourcery.com>
8810
8811         * remote.c (remote_trace_find): Change type of parameters 'addr1'
8812         and 'addr2' to CORE_ADDR.
8813         * target.c (update_current_target): Update.
8814         * target.h (struct target_ops) <to_trace_find>: Change parameter
8815         type to CORE_ADDR.
8816         * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
8817         'addr2' to CORE_ADDR.
8818         (tfile_trace_find): Likewise.
8819         (tfile_get_traceframe_address): Change return type to CORE_ADDR.
8820         Change local variable 'addr' to type CORE_ADDR.
8821         * tracepoint.h (tfind_1): Update declaration.
8822
8823 2013-04-06  Eli Zaretskii  <eliz@gnu.org>
8824
8825         * windows-nat.c (windows_get_absolute_argv0): Move from here...
8826         * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
8827         Include main.h.
8828
8829         * windows-nat.h (windows_get_absolute_argv0): Move prototype from
8830         here...
8831         * main.h (windows_get_absolute_argv0): ...to here.
8832
8833 2013-04-05  Doug Evans  <dje@google.com>
8834
8835         * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
8836         (read_cutu_die_from_dwo): Add comments.
8837         (read_structure_type): Update comment.
8838         (read_enumeration_type, read_namespace_type): Update comment.
8839         (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
8840
8841 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
8842
8843         Convert man pages to texinfo, new gdbinit.5 texinfo page.
8844         * Makefile.in (gdb.z): Remove.
8845         (install-only): Remove $(man1dir) and gdb.1 installation.
8846         * gdb.1: Remove.
8847
8848 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
8849
8850         Fix compatibility with Linux kernel 3.8.3.
8851         * linux-tdep.c (linux_find_memory_regions_full): Move variable number
8852         to more inner block.  Remove parsing of NUMBER from outer block.
8853         Parse NUMBER only if KEYWORD has been identified.
8854
8855 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
8856
8857         Fix variable name shadowing.
8858         * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
8859         filename to mapsfilename and update its uses.
8860
8861 2013-04-05  Eli Zaretskii  <eliz@gnu.org>
8862
8863         * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
8864         empty.  See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
8865         and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
8866         details of the problem.
8867
8868 2013-04-04  Pedro Alves  <palves@redhat.com>
8869             Hui Zhu  <hui@codesourcery.com>
8870
8871         * breakpoint.c (validate_commands_for_breakpoint): If validating a
8872         tracepoint, reset its STEP_COUNT and call validate_actionline.
8873
8874 2013-04-03  Doug Evans  <dje@google.com>
8875
8876         * dwarf2read.c (read_die_and_siblings_1): Renamed from
8877         read_die_and_siblings.
8878         (read_die_and_siblings): New function.
8879         (read_cutu_die_from_dwo): Dump die if requested.
8880         (read_die_and_children): Call read_full_die_1 and
8881         read_die_and_siblings_1.
8882         (read_full_die): Dump die if requested.
8883
8884         * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
8885
8886         * dwarf2read.c (struct dwo_file): New member comp_dir.
8887         Rename member name to dwo_name.  All uses updated.
8888         (hash_dwo_file): Include comp_dir in computation.
8889         (eq_dwo_file): Ditto.
8890         (lookup_dwo_file_slot): New arg comp_dir.  All callers updated.
8891         (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
8892
8893         * psymtab.c (read_psymtabs_with_fullname): Don't call
8894         psymtab_to_fullname if the basenames are different.
8895
8896 2013-04-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
8897
8898         * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
8899         New entry about "fullname" presence.
8900
8901 2013-04-03  Pedro Alves  <palves@redhat.com>
8902
8903         * NEWS: Mention x86_64/Cygwin as new native configuration.
8904
8905 2013-04-02  Doug Evans  <dje@google.com>
8906
8907         * dwarf2read.c (read_structure_type): Fix typo in comment.
8908
8909 2013-04-02  Pedro Alves  <palves@redhat.com>
8910
8911         * NEWS: Mention "set/show debug aarch64", "set/show debug
8912         coff-pe-read" and "set/show debug mach-o".
8913
8914 2013-04-02  Pedro Alves  <palves@redhat.com>
8915
8916         * NEWS: Mention "set/show remote trace-buffer-size-packet".
8917
8918 2013-04-02  Eli Zaretskii  <eliz@gnu.org>
8919
8920         * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
8921         gdb_string.h is now in common/.
8922
8923 2013-04-02  Pedro Alves  <palves@redhat.com>
8924
8925         * NEWS: Move "set debug notification" and "set trace-buffer-size"
8926         under "New options".
8927
8928 2013-04-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
8929
8930         Revert this patch:
8931         PR gdb/15275
8932         * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
8933
8934 2013-04-02  Pedro Alves  <palves@redhat.com>
8935
8936         PR gdb/15275
8937
8938         * remote.c (send_interrupt_sequence): Use remote_serial_write.
8939         (remote_serial_write): New function.
8940         (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
8941
8942 2013-04-01  Jiong Wang  <jiwang@tilera.com>
8943
8944         * NEWS: Mention TILE-Gx in "New native configurations" and
8945         "New targets" sections.
8946
8947 2013-04-01  Doug Evans  <dje@google.com>
8948
8949         * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
8950         (process_enumeration_scope): Simplify.
8951
8952         * dwarf2read.c (struct dwarf2_per_cu_data): Move member
8953         type_unit_group ...
8954         (struct signatured_type): ... to here.
8955         (sig_type_ptr): New typedef.
8956         (type_unit_group): Delete member 't.first_cu'.  Move member 'tus'
8957         out of union 't'.  All uses updated.
8958         (dw2_get_file_names_reader): Assert not called for a type unit.
8959         (dw2_get_file_names): Assert not called for a type unit or type
8960         unit group.
8961         (build_type_psymtabs_reader): Assert called for a type unit.
8962         (build_type_psymtab_dependencies): Assert called for a type unit group.
8963
8964         * dwarf2read.c (free_dwo_file): Add comment.
8965         (dwarf2_per_objfile_free): Unref dwp bfd.
8966
8967 2013-04-01  Aleksandar Ristovski  <aristovski@qnx.com>
8968
8969         * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
8970         (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
8971         (read_pe_exported_syms): Remove unused 'exportix'.
8972         (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
8973         'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
8974         'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
8975
8976 2013-04-01  Aleksandar Ristovski  <aristovski@qnx.com>
8977
8978         * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
8979         (print_it_watchpoint): Remove unused 'bl'.
8980         (say_where): Remove unused 'uiout'.
8981         (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
8982         (bkpt_breakpoint_hit): Remove unused 'b'.
8983         (internal_bkpt_print_it): Remove unused 'uiout'.
8984         * buildsym.c (augment_type_symtab): Remove unused 'i'.
8985
8986 2013-03-31  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
8987
8988         * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
8989         (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
8990
8991 2013-03-29  Doug Evans  <dje@google.com>
8992
8993         * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
8994         Delete arg is_dwp.  All callers updated.
8995         (open_dwp_file): New function.
8996         (open_and_init_dwp_file): Call it.
8997         (get_dwp_file): New function.
8998         (lookup_dwo_cutu): Call it.
8999
9000         * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
9001         unnecessary, cleanup.
9002
9003         * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
9004
9005         * dwarf2read.c (read_cutu_die_from_dwo): New function.
9006         (lookup_dwo_unit): New function.
9007         (init_cutu_and_read_dies): Move DWO handling to new functions.
9008
9009         * dwarf2read.c (struct signatured_type): Tweak comment.
9010         (struct dwo_unit): Tweak comment.
9011         (create_debug_types_hash_table): Tweak comment.  Reformat long line.
9012         (create_dwo_debug_info_hash_table): Tweak comment.
9013         (dwarf2_per_cu_offset_and_type): Tweak comment.
9014
9015         * dwarf2read.c (lookup_signatured_type): Remove complaint about
9016         missing .debug_types section.
9017
9018 2013-03-29  Yao Qi  <yao@codesourcery.com>
9019
9020         * corelow.c: Include "completer.h".
9021         (_initialize_corelow): Call add_target_with_completer with
9022         argument 'filename_completer'.
9023         * tracepoint.c: Likewise.
9024         * exec.c (_initialize_exec): Likewise.
9025         * target.c (add_target): Rename to ...
9026         (add_target_with_completer): ... this.  Call set_cmd_completer
9027         if parameter completer is not NULL.
9028         (add_target): New.
9029         * target.h: Include "command.h".
9030         (add_target_with_completer): Declare it.
9031
9032 2013-03-28  Joel Brobecker  <brobecker@adacore.com>
9033
9034         * coffread.c (is_import_fixup_symbol): New function.
9035         (record_minimal_symbol): Use is_import_fixup_symbol to
9036         detect import fixup symbols, and discard them.
9037
9038 2013-03-28  Doug Evans  <dje@google.com>
9039
9040         * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
9041         types hash table until we know we need it.
9042
9043         * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
9044         index numbers.
9045
9046         * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
9047         All callers updated.
9048         (dw2_print_stats): Print #read CUs too.
9049         (dump_die_shallow): Print signatured types better.
9050
9051         * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
9052         info_or_types_section to section.  All uses updated.
9053         (struct dwo_unit): Ditto.
9054
9055 2013-03-28  Pedro Alves  <palves@redhat.com>
9056
9057         * NEWS (New options): New section.
9058         (New options): Mention set/show remote trace-status-packet.
9059         * remote.c (PACKET_qTStatus): New enumeration value.
9060         (remote_get_trace_status): Skip sending qTStatus if the packet is
9061         disabled.  Use packet_ok.
9062         (_initialize_remote): Register a configuration command for
9063         qTStatus packet.
9064
9065 2013-03-28  Doug Evans  <dje@google.com>
9066
9067         * symfile.c (find_separate_debug_file): Add comment.
9068         (terminate_after_last_dir_separator): Tweak comment.
9069
9070         * dwarf2read.c (create_partial_symtab): Add forward decl.
9071         (create_partial_symtab): Move to be closer to other psymtab functions.
9072         (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
9073
9074         * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
9075         (compute_symtab_includes): Remove unnecessary forward declaration.
9076         (die_needs_namespace): Add comment marking group of functions for
9077         dwarf2 name computation.
9078
9079         * typeprint.c (_initialize_typeprint): Improve type help text.
9080
9081         * python/python.c (finish_python_initialization): Provide suggestion
9082         for how to tell gdb to find its python files.
9083
9084 2013-03-28  Pedro Alves  <palves@redhat.com>
9085
9086         PR gdb/15294
9087
9088         * source.c (_initialize_source): Change back "set listsize" to an
9089         integer command.
9090
9091 2013-03-27  Gareth McMullin  <gareth@blacksphere.co.nz>
9092
9093         PR gdb/15275
9094         * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
9095
9096 2013-03-27  Pedro Alves  <palves@redhat.com>
9097
9098         * top.c (history_size): Rename to ...
9099         (history_size_setshow_var): ... this.  Add comment.
9100         (show_commands): Use readline's 'history_length' instead of
9101         computing the history length by calling history_get in a loop.
9102         (set_history_size_command): Error out for sizes over INT_MAX.
9103         Restore previous history size on invalid size.
9104         (init_history): If HISTSIZE is negative, leave the history size as
9105         zero.  Add comments.
9106         (init_main): Adjust.
9107
9108 2013-03-27  Pedro Alves  <palves@redhat.com>
9109
9110         * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
9111         coff_pe_read" command to "set debug coff-pe-read".
9112
9113 2013-03-27  Markus Metzger  <markus.t.metzger@intel.com>
9114
9115         * record.c (command_size_to_target_size): Fix size comparison.
9116         Change parameter type from pointer to integer to integer.
9117         Update all users.
9118
9119 2013-03-27  Pierre Muller  <muller@sourceware.org>
9120
9121         * windows-nat.c (handle_output_debug_string): Avoid typecast
9122         from integer of different size warning.
9123
9124 2013-03-26  Joel Brobecker  <brobecker@adacore.com>
9125
9126         * windows-nat.c (handle_output_debug_string): Add empty line
9127         after local block variable definition.
9128
9129 2013-03-26  Pedro Alves  <palves@redhat.com>
9130
9131         * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
9132         (net_open): Make 'polls' local unsigned.
9133
9134 2013-03-26  Pedro Alves  <palves@redhat.com>
9135
9136         * remote.c (_initialize_remote): Make "set remoteaddresssize"
9137         a zuinteger command instead of uinteger.
9138
9139 2013-03-26  Pedro Alves  <palves@redhat.com>
9140
9141         * record-full.c (record_full_insn_num): Make it unsigned.
9142         (record_full_check_insn_num, record_full_message)
9143         (record_full_registers_change, record_full_xfer_partial): Remove
9144         record_full_insn_max_num check (it's always != 0).
9145         (record_full_info, record_full_restore): Use %u as format string.
9146         (): Use %u as format string.
9147         (set_record_full_insn_max_num): Remove record_full_insn_max_num
9148         check (it's always != 0).
9149
9150 2013-03-26  Pedro Alves  <palves@redhat.com>
9151
9152         * dcache.c (_initialize_dcache): Make the "set dcache line-size"
9153         and "set dcache size" commands zuinteger instead of uinteger.
9154
9155 2013-03-26  Pedro Alves  <palves@redhat.com>
9156
9157         * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
9158         command zuinteger instead of uinteger.
9159
9160 2013-03-26  Pedro Alves  <palves@redhat.com>
9161
9162         * coff-pe-read.c (_initialize_coff_pe_read): Make the command
9163         zuinteger instead of uinteger.
9164
9165 2013-03-26  Pedro Alves  <palves@redhat.com>
9166
9167         * record.c (record_insn_history_size_setshow_var)
9168         (record_call_history_size_setshow_var): New globals.
9169         (command_size_to_target_size): New function.
9170         (cmd_record_insn_history, cmd_record_call_history): Use
9171         command_size_to_target_size instead of cast.
9172         (validate_history_size, set_record_insn_history_size)
9173         (set_record_call_history_size): New functions.
9174         (_initialize_record): Install set_record_insn_history_size and
9175         set_record_call_history_size as "set" hooks of "set record
9176         instruction-history-size" and "set record
9177         function-call-history-size".
9178
9179 2013-03-26  Pedro Alves  <palves@redhat.com>
9180
9181         * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
9182         use with history_max_entries use.  Remove FIXME note.
9183
9184 2013-03-26  Markus Metzger  <markus.t.metzger@intel.com>
9185
9186         * record-btrace.c (record_btrace_close): Call
9187         record_btrace_auto_disable.
9188
9189 2013-03-25  Joel Brobecker  <brobecker@adacore.com>
9190
9191         * rs6000-nat.c (fixup_breakpoints): Delete declaration.
9192
9193 2013-03-25  Doug Evans  <dje@google.com>
9194
9195         * contrib/cc-with-tweaks.sh: Check exit code of dwp.
9196
9197 2013-03-25  Tom Tromey  <tromey@redhat.com>
9198
9199         PR symtab/11462:
9200         * c-exp.y (exp): Add new productions for destructors after '.' and
9201         '->'.
9202         (write_destructor_name): New function.
9203
9204 2013-03-25  Tom Tromey  <tromey@redhat.com>
9205
9206         PR c++/9197:
9207         * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
9208         value_struct_elt, not lookup_struct_elt_type.
9209         * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
9210         STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
9211         * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
9212
9213 2013-03-25  Yao Qi  <yao@codesourcery.com>
9214
9215         * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
9216         instead of '_mkdir'.
9217
9218 2013-03-23  Eli Zaretskii  <eliz@gnu.org>
9219
9220         * windows-nat.c (windows_get_absolute_argv0): New function.
9221         * windows-nat.h: Add its prototype.
9222
9223         * main.c (get_init_files): Use filename_ncmp instead of strncmp.
9224         Use IS_DIR_SEPARATOR instead of looking for a character inside
9225         SLASH_STRING.  Include filenames.h.
9226         (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
9227         relocate_gdb_directory works when passed gdb_program_name.
9228         Include windows-nat.h.
9229
9230 2013-03-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
9231
9232         * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
9233         * remote.c (trace_error): Remove the special handling of '2'.
9234         (readchar) <SERIAL_EOF>
9235         (readchar) <SERIAL_ERROR>
9236         (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
9237         (remote_get_trace_status): Call throw_exception if EX is
9238         TARGET_CLOSE_ERROR.
9239         * utils.c (perror_with_name): Rename to ...
9240         (throw_perror_with_name): ... here.  New parameter errcode, describe it
9241         in the function comment.
9242         (perror_with_name): New function wrapper.
9243         * utils.h (enum errors): New stub declaration.
9244         (throw_perror_with_name): New declaration.
9245
9246 2013-03-22  Pedro Alves  <palves@redhat.com>
9247             Yao Qi  <yao@codesourcery.com>
9248             Mark Kettenis  <kettenis@gnu.org>
9249
9250         * cli/cli-setshow.c (do_set_command) <var_uinteger>:
9251         Don't let the user set the value to UINT_MAX directly.
9252         <var_integer>: Don't let the user set the value to INT_MAX
9253         directly.
9254
9255 2013-03-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
9256
9257         * remote.c (remote_unpush_target): New function.
9258         (remote_open_1): Remove two pop_target calls, update one comment, add
9259         comment to target_preopen call.  Replace pop_target call by
9260         remote_unpush_target call.
9261         (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
9262         pop_target calls by remote_unpush_target calls.
9263
9264 2013-03-22  Pedro Alves  <palves@redhat.com>
9265
9266         * linux-nat.c (linux_child_follow_fork): Don't call
9267         linux_enable_event_reporting.
9268         (linux_handle_extended_wait): Don't call
9269         linux_enable_event_reporting.
9270
9271 2013-03-22  Pedro Alves  <palves@redhat.com>
9272
9273         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
9274         use it to rewrite the trampoline buffers with type gdb_byte[], and
9275         undefine the macro.  Remove char* cast.
9276
9277 2013-03-21  Doug Evans  <dje@google.com>
9278
9279         New commands "mt set per-command {space,time,symtab} {on,off}".
9280         * NEWS: Add entry.
9281         * event-top.c: #include "maint.h".
9282         * main.c: #include "maint.h".
9283         * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
9284         timeval-utils.h, maint.h, cli/cli-setshow.h.
9285         (per_command_time, per_command_space): New static globals.
9286         (per_command_symtab): New static global.
9287         (per_command_setlist, per_command_showlist): New static globals.
9288         (struct cmd_stats): Move here from utils.c.
9289         (set_per_command_time): Renamed from set_display_time in utils.c
9290         and moved here.  All callers updated.
9291         (set_per_command_space): Renamed from set_display_space in utils.c
9292         and moved here.  All callers updated.
9293         (count_symtabs_and_blocks): New function.
9294         (report_command_stats): Moved here from utils.c.  Add support for
9295         printing symtab stats.  Only print data if enabled before command
9296         executed.
9297         (make_command_stats_cleanup): Ditto.
9298         (sert_per_command_cmd, show_per_command_cmd): New functions.
9299         (_initialize_maint_cmds): Add new commands
9300         mt set per-command {space,time,symtab} {on,off}.
9301         * maint.h: New file.
9302         * top.c: #include "maint.h".
9303         * utils.c (reset_prompt_for_continue_wait_time): New function.
9304         (get_prompt_for_continue_wait_time): New function.
9305         * utils.h (reset_prompt_for_continue_wait_time): Declare
9306         (get_prompt_for_continue_wait_time): Declare.
9307         (make_command_stats_cleanup): Moved to maint.h.
9308         (set_display_time, set_display_space): Moved to maint.h and renamed
9309         to set_per_command_time, set_per_command_space.
9310         * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
9311         parse_binary_operation and made non-static.  Don't call error,
9312         just return an error marker.  All callers updated.
9313         * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
9314
9315 2013-03-21  Tom Tromey  <tromey@redhat.com>
9316
9317         * symfile.c (alloc_section_addr_info): Update header.  Don't set
9318         'num_sections' field.
9319         (build_section_addr_info_from_section_table): Set 'num_sections'.
9320         (build_section_addr_info_from_bfd): Likewise.
9321         (build_section_addr_info_from_objfile): Remove dead loop
9322         condition.
9323         (free_section_addr_info): Unconditionally call xfree.
9324         (relative_addr_info_to_section_offsets, addrs_section_sort)
9325         (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
9326         condition.
9327         (syms_from_objfile_1): Remove dead 'if' condition.  Check
9328         'num_sections'.
9329         (add_symbol_file_command): Set 'num_sections'.
9330         * symfile-mem.c (symbol_file_add_from_memory): Set
9331         'num_sections'.
9332         * somread.c (som_symfile_offsets): Remove dead loop condition.
9333         * machoread.c (macho_symfile_offsets): Remove dead 'if'.
9334         * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
9335
9336 2013-03-21  Tom Tromey  <tromey@redhat.com>
9337
9338         * tracepoint.h (decode_agent_options): Add 'trace_string'
9339         argument.
9340         * tracepoint.c (decode_agent_options): Add 'trace_string'
9341         argument.
9342         (validate_actionline): Update.
9343         (collect_symbol): Add 'trace_string' argument.
9344         (struct add_local_symbols_data) <trace_string>: New field.
9345         (do_collect_symbol): Update.
9346         (add_local_symbols): Add 'trace_string' argument.
9347         (encode_actions_1): Update.
9348         (trace_dump_actions): Update.
9349         * dwarf2loc.c (access_memory): Update.
9350         * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
9351         * ax-general.c (new_agent_expr): Update.
9352         * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
9353         (gen_trace_for_return_address): Add argument.
9354         (trace_kludge, trace_string_kludge): Remove.
9355         * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
9356         (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
9357         (gen_trace_for_var): Add 'trace_string' argument.
9358         (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
9359         (gen_printf, agent_eval_command_one): Update.
9360
9361 2013-03-21  Tom Tromey  <tromey@redhat.com>
9362
9363         PR exp/15109:
9364         * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
9365         Handle FILENAME token.
9366
9367 2013-03-21  Tom Tromey  <tromey@redhat.com>
9368
9369         * c-exp.y (YYPRINT): Define.
9370         (c_print_token): New function.
9371
9372 2013-03-21  Tom Tromey  <tromey@redhat.com>
9373
9374         * c-exp.y (%union) <sym, ivar, ivec>: Remove.
9375
9376 2013-03-21  Yao Qi  <yao@codesourcery.com>
9377
9378         * ctf.c: Include "gdb_stat.h".
9379         [USE_WIN32API]: New macro 'mkdir'.
9380         (ctf_start): Use permission bits macros if they are defined.
9381
9382 2013-03-20  Keith Seitz  <keiths@redhat.com>
9383
9384         * breakpoint.h (struct breakpoint): Add comment to
9385         extra_string indicating that this member is mallod'd.
9386         * breakpoint.c (base_breakpoint_dtor): Free extra_string.
9387
9388 2013-03-20  Pedro Alves  <palves@redhat.com>
9389
9390         PR gdb/15289
9391
9392         * cli/cli-setshow.c (do_set_command)
9393         <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
9394         the result of parsing the command argument.  Throw error if the
9395         value is greater than UINT_MAX.  Print the invalid value with
9396         plongest.
9397         <var_integer, var_zinteger>: Use LONGEST for variable holding the
9398         result of parsing the command argument.  Throw error if the value
9399         is greater than INT_MAX, not greater or equal.  Also throw error
9400         if the value is less than INT_MIN.  Print the invalid value with
9401         plongest.
9402         <var_zuinteger_unlimited>: Throw error if the value is greater
9403         than INT_MAX, not greater or equal.
9404         (do_show_command) <var_integer, var_zinteger,
9405         var_zuinteger_unlimited>: Use %d for printing int, not %u.
9406
9407 2013-03-20  Tom Tromey  <tromey@redhat.com>
9408
9409         * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
9410         if possible.
9411         * dwarf2read.c (read_func_scope): Remove old FIXME.
9412         * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
9413         not LOC_COMPUTED.
9414         * findvar.c (symbol_read_needs_frame, default_read_var_value):
9415         Unconditionally call via computed ops, if possible.
9416         * printcmd.c (address_info): Unconditionally call via computed ops,
9417         if possible.
9418         * stack.c (read_frame_arg): Unconditionally call via computed ops,
9419         if possible.
9420         * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
9421         * tracepoint.c (scope_info): Unconditionally call via computed ops,
9422         if possible.
9423
9424 2013-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
9425             Tom Tromey  <tromey@redhat.com>
9426
9427         PR symtab/8421:
9428         * coffread.c (coff_register_index): New global.
9429         (process_coff_symbol, coff_read_enum_type): Set
9430         SYMBOL_ACLASS_INDEX.
9431         (_initialize_coffread): Initialize new global.
9432         * dwarf2loc.c (locexpr_find_frame_base_location)
9433         (dwarf2_block_frame_base_locexpr_funcs)
9434         (loclist_find_frame_base_location)
9435         (dwarf2_block_frame_base_loclist_funcs): New.
9436         (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
9437         (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
9438         * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
9439         (dwarf2_block_frame_base_loclist_funcs): New.
9440         * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
9441         (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
9442         globals.
9443         (read_func_scope): Update.
9444         (fixup_go_packaging, mark_common_block_symbol_computed)
9445         (var_decode_location, new_symbol_full, dwarf2_const_value):
9446         Set SYMBOL_ACLASS_INDEX.
9447         (dwarf2_symbol_mark_computed): Likewise.  Add 'is_block' argument.
9448         (_initialize_dwarf2_read): Initialize new globals.
9449         * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
9450         * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
9451         * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
9452         globals.
9453         (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
9454         (_initialize_mdebugread): Initialize new globals.
9455         * psympriv.h (struct partial_symbol) <aclass>: Update comment.
9456         * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
9457         (stab_register_index, stab_regparm_index): New globals.
9458         (define_symbol, read_enum_type, common_block_end): Set
9459         SYMBOL_ACLASS_INDEX.
9460         (_initialize_stabsread): Initialize new globals.
9461         * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
9462         globals.
9463         (MAX_SYMBOL_IMPLS): New define.
9464         (register_symbol_computed_impl, register_symbol_block_impl)
9465         (register_symbol_register_impl)
9466         (initialize_ordinary_address_classes): New functions.
9467         (_initialize_symtab): Call initialize_ordinary_address_classes.
9468         * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
9469         (struct symbol_impl): New.
9470         (SYMBOL_ACLASS_BITS): New define.
9471         (struct symbol) <aclass, ops>: Remove fields.
9472         <aclass_index>: New field.
9473         (symbol_impls): Declare.
9474         (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
9475         (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
9476         (register_symbol_computed_impl, register_symbol_block_impl)
9477         (register_symbol_register_impl): Declare.
9478         (struct symbol_computed_ops): Add location_has_loclist.
9479         (struct symbol_block_ops): New.
9480         (SYMBOL_BLOCK_OPS): New.
9481         * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
9482
9483 2013-03-20  Tom Tromey  <tromey@redhat.com>
9484
9485         * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
9486         (print_partial_symbols, recursively_search_psymtabs): Use
9487         PSYMBOL_CLASS.
9488
9489 2013-03-20  Pierre Muller  <muller@sourceware.org>
9490
9491         * contrib/ari/gdb_ari.sh (OP eol rule): Also check
9492         addtion, subtraction, multiplication and division binary operator.
9493
9494 2013-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
9495
9496         Code cleanup.
9497         * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
9498         * bsd-kvm.c (bsd_kvm_close): Likewise.
9499         * bsd-uthread.c (bsd_uthread_close): Likewise.
9500         * corelow.c (core_close): Likewise.
9501         (core_close_cleanup): Remove parameter quitting from a caller.
9502         * event-top.c (async_disconnect): Likewise.
9503         * exec.c (exec_close_1): Remove parameter quitting.
9504         * go32-nat.c (go32_close): Likewise.
9505         * linux-nat.c (linux_nat_close): Remove parameter quitting.  Remove
9506         parameter quitting from a caller.
9507         * mips-linux-nat.c (super_close): Remove parameter quitting from the
9508         variable.
9509         (mips_linux_close): Remove parameter quitting.  Remove parameter
9510         quitting from a caller.
9511         * monitor.c (monitor_close): Remove parameter quitting.
9512         * monitor.h (monitor_close): Likewise.
9513         * record-btrace.c (record_btrace_close): Likewise.
9514         * record-full.c (record_full_close): Likewise.
9515         * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
9516         it also from fprintf_unfiltered.
9517         * remote-mips.c (mips_close): Remove parameter quitting.
9518         (mips_detach): Remove parameter quitting from a caller.
9519         * remote-sim.c (gdbsim_close): Remove parameter quitting.
9520         (gdbsim_close): Remove duplicate function comment.  Remove parameter
9521         quitting and remove it also from printf_filtered.
9522         * remote.c (remote_close): Remove parameter quitting.
9523         * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
9524         * target.c (update_current_target): Remove parameter int from to_close
9525         de_fault.
9526         (push_target, unpush_target, pop_target): Remove parameter quitting from
9527         a caller.
9528         (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
9529         Remove parameter quitting from a caller.
9530         (target_preopen): Remove parameter quitting from a caller.
9531         (target_close): Remove parameter quitting.  Remove parameter quitting
9532         from a caller two times.  Remove parameter quitting also from
9533         fprintf_unfiltered.
9534         * target.h (struct target_ops): Remove parameter quitting and as int
9535         from fields to_xclose and to_close.
9536         (extern struct target_ops current_target):
9537         (target_close, pop_all_targets): Remove parameter quitting.  Update the
9538         comment.
9539         (pop_all_targets_above): Remove parameter quitting.
9540         * top.c (quit_target): Remove parameter quitting from a caller.
9541         * tracepoint.c (tfile_close): Remove parameter quitting.
9542         * windows-nat.c (windows_close): Remove parameter quitting.
9543
9544 2013-03-20  Corinna Vinschen  <vinschen@redhat.com>
9545
9546         * windows-nat.c (handle_output_debug_string): Replace call
9547         to string_to_core_addr with call to strtoull.
9548
9549 2013-03-20  Yao Qi  <yao@codesourcery.com>
9550
9551         * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
9552         and write it to CTF metadata.
9553
9554 2013-03-19  Corinna Vinschen  <vinschen@redhat.com>
9555
9556         * windows-nat.c (handle_output_debug_string): Change type of n to
9557         SIZE_T to avoid crash on 64 bit systems.
9558
9559 2013-03-17  Eli Zaretskii  <eliz@gnu.org>
9560
9561         * python/python-internal.h (HAVE_SNPRINTF)
9562         [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
9563         about redefinition of snprintf by pyerrors.h.
9564
9565 2013-03-15  Steve Ellcey  <sellcey@mips.com>
9566
9567         * remote-sim.c (sim_command_completer): Make char arguments const.
9568
9569 2013-03-15  Tom Tromey  <tromey@redhat.com>
9570
9571         PR c++/15116:
9572         * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
9573
9574 2013-03-14  Tom Tromey  <tromey@redhat.com>
9575
9576         * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
9577         New fields.
9578         (get_file_crc): Move from symfile.c.
9579         (gdb_bfd_crc): New function.
9580         * gdb_bfd.h (gdb_bfd_crc): Declare.
9581         * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
9582         * symfile.c (get_file_crc): Move to gdb_bfd.c.
9583         (separate_debug_file_exists): Use gdb_bfd_crc.
9584
9585 2013-03-14  Tom Tromey  <tromey@redhat.com>
9586
9587         * symfile.c (get_debug_link_info): Remove.
9588         (find_separate_debug_file_by_debuglink): Use
9589         bfd_get_debug_link_info.
9590
9591 2013-03-14  Tom Tromey  <tromey@redhat.com>
9592
9593         * symtab.c (error_in_psymtab_expansion): New function.
9594         (lookup_symbol_aux_quick)
9595         (basic_lookup_transparent_type_quick): Remove "last resort"
9596         code.  Use error_in_psymtab_expansion.
9597
9598 2013-03-14  Doug Evans  <dje@google.com>
9599             Jan Kratochvil  <jan.kratochvil@redhat.com>
9600
9601         * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
9602         any successful compare_filenames_for_search or FILENAME_CMP.
9603         * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
9604         * symtab.c (iterate_over_some_symtabs): Likewise.
9605
9606 2013-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
9607
9608         * source.c (print_source_lines_base): Make a local copy of
9609         symtab_to_fullname.
9610
9611 2013-03-14  Hui Zhu  <hui_zhu@mentor.com>
9612             Jan Kratochvil  <jan.kratochvil@redhat.com>
9613
9614         * source.c (print_source_lines_base): Suppress "file" for TUI.
9615
9616 2013-03-14  Keith Seitz  <keiths@redhat.com>
9617             Alan Matsuoka  <alanm@redhat.com>
9618
9619         PR c++/15203
9620         PR c++/15210
9621         * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
9622         TYPE_CODE_METHOD.
9623         * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
9624         symbols.
9625
9626 2013-03-14  Yao Qi  <yao@codesourcery.com>
9627
9628         * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
9629         status to tfile if trace is stopped by command 'tstop'.
9630
9631 2013-03-14  Yao Qi  <yao@codesourcery.com>
9632
9633         * tracepoint.c (tfile_write_status): Write trace notes and user
9634         name into tfile if they are not NULL.
9635
9636 2013-03-14  Hui Zhu  <hui@codesourcery.com>
9637             Yao Qi  <yao@codesourcery.com>
9638
9639         * Makefile.in (REMOTE_OBS): Add ctf.o.
9640         (SFILES): Add ctf.c.
9641         (HFILES_NO_SRCDIR): Add ctf.h.
9642         * ctf.c, ctf.h: New files.
9643         * tracepoint.c: Include 'ctf.h'.
9644         (collect_pseudocommand): Remove static.
9645         (trace_save_command): Parse option "-ctf".
9646         Produce different trace file writers per option.
9647         Adjust output message.
9648         (trace_save_tfile, trace_save_ctf): New.
9649         * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
9650         * mi/mi-main.c: Include 'ctf.h'.
9651         (mi_cmd_trace_save): Handle option '-ctf'.  Call either
9652         trace_save_tfile or trace_save_ctf.
9653         * NEWS: Mention these changes.
9654
9655 2013-03-14  Yao Qi  <yao@codesourcery.com>
9656
9657         * tracepoint.c (trace_file_writer_xfree): New.
9658         (struct tfile_writer_data): New.
9659         (tfile_dtor, tfile_can_target_save, tfile_start): New.
9660         (tfile_write_header, tfile_write_regblock_type): New.
9661         (tfile_write_status, tfile_write_uploaded_tsv): New.
9662         (tfile_write_uploaded_tp, tfile_write_definition_end): New.
9663         (tfile_write_raw_data, (tfile_end): New.
9664         (tfile_write_ops): New global variable.
9665         (TRACE_WRITE_R_BLOCK): New macro.
9666         (TRACE_WRITE_M_BLOCK_HEADER): New macro.
9667         (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
9668         (TRACE_WRITE_V_BLOCK): New macro.
9669         (trace_save): Add extra one parameter WRITER.  Make it static.
9670         Use WRITER to writer trace.
9671         (tfile_trace_file_writer_new): New.
9672         (trace_save_command): Caller update.
9673         (trace_save_tfile): Write trace data in TFILE format.
9674         * tracepoint.h (struct trace_frame_write_ops): New.
9675         (struct trace_file_write_ops): New.
9676         (struct trace_file_writer): New.
9677         (trace_save): Remove its declaration.
9678         (trace_save_tfile): Declare it.
9679         * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
9680         instead of trace_save.
9681
9682 2013-03-13  Pedro Alves  <palves@redhat.com>
9683
9684         * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
9685
9686 2013-03-13  Pedro Alves  <palves@redhat.com>
9687
9688         * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
9689         commented out code.
9690         * demangle.c (current_demangling_style_string): Make it const.
9691         (set_demangling_command): Assert the demangling style is known.
9692         Remove all handling of unknown styles.  Set
9693         'current_demangling_style_string' to an element of the
9694         demangling_style_names array.
9695         (set_demangling_style): Delete.
9696         (_initialize_demangler): Set current_demangling_style_string to the
9697         element of the demangling_style_names array that corresponds to
9698         the default demangling style.  Remove FIXME note.  Don't call
9699         set_demangling_style.
9700         * gdb-demangle.h (set_demangling_style): Remove declaration.
9701
9702 2013-03-13  Pedro Alves  <palves@redhat.com>
9703
9704         * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
9705         fields const.
9706         (ada_make_symbol_completion_list): Make "text0" parameter const.
9707         * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
9708         * breakpoint.c (condition_completer): Make "text" and "word"
9709         parameters const.  Adjust.
9710         (check_tracepoint_command): Adjust to validate_actionline
9711         prototype change.
9712         (catch_syscall_completer): Make "text" and "word" parameters
9713         const.
9714         * cli/cli-cmds.c (show_user): Make "comname" local const.
9715         (valid_command_p): Make "command" parameter const.
9716         (alias_command): Make "alias_prefix" and "command_prefix" locals
9717         const.
9718         * cli/cli-decode.c (add_cmd): Make "name" parameter const.
9719         (add_alias_cmd): Make "name" and "oldname" parameters const.
9720         Adjust.  No longer make copy of OLDNAME.
9721         (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
9722         (add_setshow_cmd_full, add_setshow_enum_cmd)
9723         (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
9724         (add_setshow_filename_cmd, add_setshow_string_cmd)
9725         (add_setshow_string_noescape_cmd)
9726         (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
9727         (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
9728         (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
9729         (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
9730         Make "name" parameter const.
9731         (help_cmd): Rename "command" parameter to "arg".  New const local
9732         "command".
9733         (find_cmd): Make "command" parameter const.
9734         (lookup_cmd_1): Make "text" parameter pointer to const.  Adjust to
9735         deprecated_cmd_warning prototype change.
9736         (undef_cmd_error): Make "cmdtype" parameter const.
9737         (lookup_cmd): Make "line" parameter const.
9738         (deprecated_cmd_warning): Change type of "text" parameter to
9739         pointer to const char, from pointer to pointer to char.  Adjust.
9740         (lookup_cmd_composition): Make "text" parameter const.
9741         (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
9742         parameters const.
9743         * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
9744         const.
9745         * cli/cli-script.c (validate_comname): Make "tem" local const.
9746         (define_command): New const local "tem_c".  Use it in calls to
9747         lookup_cmd.
9748         (document_command): Make "tem" and "comfull" locals const.
9749         (show_user_1): Make "prefix" and "name" parameters const.
9750         * cli-script.h (show_user_1): Make "prefix" and "name" parameters
9751         const.
9752         * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
9753         (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
9754         (deprecated_cmd_warning, lookup_cmd_composition, add_com)
9755         (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
9756         (complete_on_enum, add_setshow_enum_cmd)
9757         (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
9758         (add_setshow_filename_cmd, add_setshow_string_cmd)
9759         (add_setshow_string_noescape_cmd)
9760         (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
9761         (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
9762         (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
9763         Change prototypes, constifying strings.
9764         * completer.c (noop_completer, filename_completer): Make "text"
9765         and "prefix" parameters const.
9766         (location_completer, expression_completer)
9767         (complete_line_internal): Make "text" and "prefix" parameters
9768         const and adjust.
9769         (command_completer, signal_completer): Make "text" and "prefix"
9770         parameters const.
9771         * completer.h (noop_completer, filename_completer)
9772         (expression_completer, location_completer, command_completer)
9773         (signal_completer): Change prototypes.
9774         * corefile.c (complete_set_gnutarget): Make "text" and "word"
9775         parameters const.
9776         * cp-abi.c (cp_abi_completer): Likewise.
9777         * expression.h (parse_expression_for_completion): Change
9778         prototype.
9779         * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
9780         parameters const.
9781         * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
9782         * infrun.c (handle_completer): Make "text" and "word" parameters
9783         const.
9784         * interps.c (interpreter_completer): Make "text" and "word"
9785         parameters const.
9786         * language.h (struct language_defn)
9787         <la_make_symbol_completion_list>: Make "text" and "word"
9788         parameters const.
9789         * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
9790         (parse_exp_in_context): Rename to ...
9791         (parse_exp_in_context_1): ... this.
9792         (parse_exp_in_context): Reimplement, with const hack from
9793         parse_exp_1.
9794         (parse_expression_for_completion): Make "string" parameter const.
9795         * printcmd.c (decode_format): Make "string_ptr" parameter pointer
9796         to pointer to const char.  Adjust.
9797         (print_command_1): Make "exp" parameter const.
9798         (output_command): Rename to ...
9799         (output_command_const): ... this.  Make "exp" parameter const.
9800         (output_command): Reimplement.
9801         (x_command): Adjust.
9802         (display_command): Rename "exp" parameter to "arg".  New "exp"
9803         local, const version of "arg".
9804         * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
9805         "cmd_name" local const.
9806         * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
9807         call.
9808         (cmdpy_completer): Make "text" and "word" parameters const.
9809         (gdbpy_parse_command_name): Make "prefix_text2" local const.
9810         * python/py-param.c (add_setshow_generic): Make "tmp_name" local
9811         const.
9812         * remote.c (_initialize_remote): Make "cmd_name" local const.
9813         * symtab.c (language_search_unquoted_string): Make "text" and "p"
9814         parameters const.  Adjust.
9815         (completion_list_add_fields): Make "sym_text", "text" and "word"
9816         parameters const.
9817         (struct add_name_data) <sym_text, text, word>: Make fields const.
9818         (default_make_symbol_completion_list_break_on): Make "text" and
9819         "word" parameters const.  Adjust locals.
9820         (default_make_symbol_completion_list)
9821         (make_symbol_completion_list, make_symbol_completion_type)
9822         (make_symbol_completion_list_fn): Make "text" and "word"
9823         parameters const.
9824         (make_file_symbol_completion_list): Make "text", "word" and
9825         "srcfile" parameters const.  Adjust locals.
9826         (add_filename_to_list): Make "text" and "word" parameters const.
9827         (struct add_partial_filename_data) <text, word>: Make fields
9828         const.
9829         (make_source_files_completion_list): Make "text" and "word"
9830         parameters const.
9831         * symtab.h (default_make_symbol_completion_list_break_on)
9832         (default_make_symbol_completion_list, make_symbol_completion_list)
9833         (make_symbol_completion_type enum type_code)
9834         (make_symbol_completion_list_fn make_file_symbol_completion_list)
9835         (make_source_files_completion_list): Change prototype.
9836         * top.c (execute_command): Adjust to pass pointer to pointer to
9837         const char to lookup_cmd, and to deprecated_cmd_warning prototype
9838         change.
9839         (set_verbose): Make "cmdname" local const.
9840         * tracepoint.c (decode_agent_options): Make "exp" parameter const,
9841         and adjust.
9842         (validate_actionline): Make "line" parameter a pointer to const
9843         char, and adjust.
9844         (encode_actions_1): Make "action_exp" local const, and adjust.
9845         (encode_actions): Adjust.
9846         (replace_comma): Delete.
9847         (trace_dump_actions): Make "action_exp" and "next_comma" locals
9848         const, and adjust.  Don't frob the action string while splitting
9849         it at commas.  Instead, make a copy of each split substring in
9850         turn.
9851         (trace_dump_command): Adjust to validate_actionline prototype
9852         change.
9853         * tracepoint.h (decode_agent_options, decode_agent_options)
9854         (encode_actions, validate_actionline): Change prototypes.
9855         * valprint.h (output_command): Delete declaration.
9856         (output_command_const): Declare.
9857         * value.c (function_destroyer): Cast const away in xfree call.
9858
9859 2013-03-13  Pedro Alves  <palves@redhat.com>
9860
9861         * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
9862         rather than casting 'const char * const *' to 'const char **'.
9863         * ada-lex.l (processInt): Make "trailer" local const.  Remove
9864         'const char **' cast.
9865         * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
9866         locals, and use those as strtol output pointer, instead than doing
9867         invalid casts to from 'const char **' to 'char **'.
9868         (_initialize_demangle): Remove cast.
9869         * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
9870         locals, and use those as strtol output pointer, instead than doing
9871         invalid casts to from 'const char **' to 'char **'.
9872         * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
9873         casts.
9874         * stap-probe.c (stap_parse_register_operand)
9875         (stap_parse_single_operand): Likewise.
9876
9877 2013-03-13  Yao Qi  <yao@codesourcery.com>
9878
9879         * tracepoint.c (tfile_get_trace_state_variable_value): Look for
9880         the last matched 'V' blcok in trace frame.
9881
9882 2013-03-12  Joel Brobecker  <brobecker@adacore.com>
9883
9884         * NEWS: Create a new section for the next release branch.
9885         Rename the section of the current branch, now that it has
9886         been cut.
9887
9888 2013-03-12  Joel Brobecker  <brobecker@adacore.com>
9889
9890         GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
9891         * version.in: Bump version to 7.6.50.20130312-cvs.
9892
9893 2013-03-12  Keith Seitz  <keiths@redhat.com>
9894
9895         * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
9896         * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
9897         Remove temporary copy of input string.
9898         (mi_execute_command_wrapper): Make "cmd" const.
9899         * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
9900         * mi/mi-parse.c (mi_parse_argv): Make "args" const.
9901         Use const strings.
9902         (mi_parse): Make "cmd" const.
9903         Use const strings.
9904         * mi/mi-parse.h (mi_parse): Make "cmd" const.
9905
9906 2013-03-12  Keith Seitz  <keiths@redhat.com>
9907
9908         * ada-lang.c (ada_read_renaming_var_value): Pass const
9909         pointer to expression string to parse_exp_1.
9910         (create_excep_cond_exprs): Likewise.
9911         * ax-gdb.c (agent_eval_command_one): Likewise.
9912         (maint_agent_printf_command): Likewise.
9913         Constify much of the string handling/parsing.
9914         * breakpoint.c (set_breakpoint_condition): Pass const
9915         pointer to expression string to parse_exp_1.
9916         (update_watchpoint): Likewise.
9917         (parse_cmd_to_aexpr): Constify string handling.
9918         Pass const pointer to parse_exp_1.
9919         (init_breakpoint_sal): Pass const pointer to parse_exp_1.
9920         (find_condition_and_thread): Likewise.
9921         Make TOK const.
9922         (watch_command_1): Make "arg" const.
9923         Constify string handling.
9924         Copy the expression string instead of changing the input
9925         string.
9926         (update_breakpoint_location): Pass const pointer to
9927         parse_exp_1.
9928         * eval.c (parse_and_eval_address): Make "exp" const.
9929         (parse_to_comma_and_eval): Make "expp" const.
9930         (parse_and_eval): Make "exp" const.
9931         * expression.h (parse_expression): Make argument const.
9932         (parse_exp_1): Make first argument const.
9933         * findcmd.c (parse_find_args): Treat "args" as const.
9934         * linespec.c (parse_linespec): Pass const pointer to
9935         linespec_expression_to_pc.
9936         (linespec_expression_to_pc): Make "exp_ptr" const.
9937         * parse.c (parse_exp_1): Make "stringptr" const.
9938         Make a copy of the expression to pass to parse_exp_in_context until
9939         this whole interface can be constified.
9940         (parse_expression): Make "string" const.
9941         * printcmd.c (ui_printf): Treat "arg" as const.
9942         Handle const strings.
9943         * tracepoint.c (validate_actionline): Pass const pointer to
9944         all calls to parse_exp_1.
9945         (encode_actions_1): Likewise.
9946         * value.h (parse_to_comma_and_eval): Make argument const.
9947         (parse_and_eval_address): Likewise.
9948         (parse_and_eval): Likewise.
9949         * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
9950         (varobj_set_value): Likewise.
9951         * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
9952         constify string handling.
9953         Pass const pointers to parse_and_eval_address and
9954         parse_to_comman_and_eval.
9955         * cli/cli-utils.c (skip_to_space): Rename to ...
9956         (skip_to_space_const): ... this. Handle const strings.
9957         * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
9958         skip_to_space_const.
9959         (skip_to_space_const): Declare.
9960         * common/format.c (parse_format_string): Make "arg" const.
9961         Handle const strings.
9962         * common/format.h (parse_format_string): Make "arg" const.
9963         * gdbserver/ax.c (ax_printf): Make "format" const.
9964         * python/python.c (gdbpy_parse_and_eval): Do not make a copy
9965         of the expression string.
9966
9967 2013-03-12  Hui Zhu  <hui@codesourcery.com>
9968
9969         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
9970
9971 2013-03-12  Yao Qi  <yao@codesourcery.com>
9972             Hui Zhu  <hui@codesourcery.com>
9973
9974         * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
9975         (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
9976         DW_OP_deref_size.
9977
9978 2013-03-12  Paul Hilfinger  <hilfingr@adacore.com>
9979
9980         * ada-lex.l (rules): Only recognize 'thread' as a
9981         delimiter when followed by numerals, as for c-exp.y.
9982         Use new rewind_to_char function to rewind the input for
9983         expression-delimiting tokens.
9984         (rewind_to_char): New function.
9985
9986 2013-03-11  Pedro Alves  <palves@redhat.com>
9987             Jan Kratochvil  <jan.kratochvil@redhat.com>
9988
9989         * configure: Regenerate.
9990         * configure.ac (check dynamic export flag): Link python test with
9991         $PYTHON_LIBS.
9992
9993 2013-03-11  Doug Evans  <dje@google.com>
9994             Keith Seitz  <keiths@redhat.com>
9995
9996         * linespec.c (find_linespec_symbols): Call find_function_symbols
9997         first, and then call lookup_prefix_sym/find_method.
9998
9999 2013-03-11  Pedro Alves  <palves@redhat.com>
10000
10001         * charset.c (convert_between_encodings): Don't cast between
10002         different pointer to pointer types.  Instead, make the 'inp' local
10003         be of the type iconv expects.
10004         (wchar_iterate): Don't cast between different pointer to pointer
10005         types.  Instead, use new pointer local of the type iconv expects.
10006         * target.c (target_read_stralloc, target_fileio_read_stralloc):
10007         Add new local of type char pointer, and use it to get a
10008         char/string view of the byte buffer, instead of casting between
10009         pointer to pointer types.
10010
10011 2013-03-11  Hafiz Abid Qadeer  <abidh@codesourcery.com>
10012
10013         * remote.c (remote_set_trace_buffer_size): Move != operator
10014         to the start of next line to fix an ARI warning.
10015
10016 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10017
10018         * NEWS: Add record changes.
10019
10020 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10021
10022         * record-btrace.c (btrace_insn_history): Omit the pc prefix in
10023         the instruction history disassembly.
10024         * disasm.c (dump_insns): Omit the pc prefix, if requested.
10025         * disasm.h (DISASSEMBLY_OMIT_PC): New.
10026
10027 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10028
10029         * Makefile.in (SFILES): Add record-btrace.c
10030         (COMMON_OBS): Add record-btrace.o
10031         * record-btrace.c: New.
10032         * objfiles.c: Include btrace.h.
10033         (free_objfile): call btrace_free_objfile.
10034
10035 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10036
10037         * target.c (target_call_history, target_call_history_from,
10038         target_call_history_range): New.
10039         * target.h (target_ops) <to_call_history, to_call_history_from,
10040         to_call_history_range>: New fields.
10041         (target_call_history, target_call_history_from,
10042         target_call_history_range): New declaration.
10043         * record.c (get_call_history_modifiers, cmd_record_call_history,
10044         record_call_history_size): New.
10045         (_initialize_record): Add the "record function-call-history" command.
10046         Add "set/show record function-call-history-size" commands.
10047         * record.h (record_print_flag): New.
10048
10049 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10050
10051         * target.h (target_ops) <to_insn_history, to_insn_history_from,
10052         to_insn_history_range>: New fields.
10053         (target_insn_history): New.
10054         (target_insn_history_from): New.
10055         (target_insn_history_range): New.
10056         * target.c (target_insn_history): New.
10057         (target_insn_history_from): New.
10058         (target_insn_history_range): New.
10059         * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
10060         (record_insn_history_size): New.
10061         (get_insn_number): New.
10062         (get_context_size): New.
10063         (no_chunk): New.
10064         (get_insn_history_modifiers): New.
10065         (cmd_record_insn_history): New.
10066         (_initialize_record): Add "set/show record instruction-history-size"
10067         command. Add "record instruction-history" command.
10068
10069 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10070
10071         * record.h (record_disconnect): New.
10072         (record_detach): New.
10073         (record_mourn_inferior): New.
10074         (record_kill): New.
10075         * record-full.c (record_disconnect, record_detach,
10076         record_mourn_inferior, record_kill): Move to...
10077         * record.c: ...here.
10078         (DEBUG): New.
10079         (record_stop): New.
10080         (record_unpush): New.
10081         (cmd_record_stop): Call record_stop. Replace unpush_target
10082         call with record_unpush call.
10083         (record_disconnect, record_detach): Assert that the target
10084         is of record stratum. Call record_unpush, record_stop, and
10085         DEBUG.
10086         (record_mourn_inferior, record_kill): Assert that the target
10087         is of record stratum. Call record_unpush and DEBUG.
10088
10089 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10090
10091         * record-full.h, record-full.c (record_memory_query): Rename
10092         to ...
10093         (record_full_memory_query): ...this. Update all users.
10094         (record_arch_list_add_reg): Rename to ...
10095         (record_full_arch_list_add_reg): ...this. Update all users.
10096         (record_arch_list_add_mem): Rename to ...
10097         (record_full_arch_list_add_mem): ...this. Update all users.
10098         (record_arch_list_add_end): Rename to ...
10099         (record_full_arch_list_add_end): ...this. Update all users.
10100         (record_gdb_operation_disable_set): Rename to ...
10101         (record_full_gdb_operation_disable_set): ...this.
10102         Update all users.
10103
10104 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10105
10106         * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
10107         (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
10108         (RECORD_IS_REPLAY): Renamed to ...
10109         (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
10110         (RECORD_FILE_MAGIC): Renamed to ...
10111         (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
10112         (record_mem_entry): Renamed to ...
10113         (record_full_mem_entry): ... this. Updated all users.
10114         (record_reg_entry): Renamed to ...
10115         (record_full_reg_entry): ... this. Updated all users.
10116         (record_end_entry): Renamed to ...
10117         (record_full_end_entry): ... this. Updated all users.
10118         (record_type) <record_end, record_reg, record_mem>: Renamed
10119         to ...
10120         (record_full_type) <record_full_end, record_full_reg,
10121         record_full_mem>: ... this. Updated all users.
10122         (record_entry): Renamed to ...
10123         (record_full_entry): ... this. Updated all users.
10124         (record_core_buf_entry): Renamed to ...
10125         (record_full_core_buf_entry): ... this. Updated all users.
10126         (record_core_regbuf): Renamed to ...
10127         (record_full_core_regbuf): ... this. Updated all users.
10128         (record_core_start): Renamed to ...
10129         (record_full_core_start): ... this. Updated all users.
10130         (record_core_end): Renamed to ...
10131         (record_full_core_end): ... this. Updated all users.
10132         (record_core_buf_list): Renamed to ...
10133         (record_full_core_buf_list): ... this. Updated all users.
10134         (record_first): Renamed to ...
10135         (record_full_first): ... this. Updated all users.
10136         (record_list): Renamed to ...
10137         (record_full_list): ... this. Updated all users.
10138         (record_arch_list_head): Renamed to ...
10139         (record_full_arch_list_head): ... this. Updated all users.
10140         (record_arch_list_tail): Renamed to ...
10141         (record_full_arch_list_tail): ... this. Updated all users.
10142         (record_stop_at_limit): Renamed to ...
10143         (record_full_stop_at_limit): ... this. Updated all users.
10144         (record_insn_max_num): Renamed to ...
10145         (record_full_insn_max_num): ... this. Updated all users.
10146         (record_insn_num): Renamed to ...
10147         (record_full_insn_num): ... this. Updated all users.
10148         (record_insn_count): Renamed to ...
10149         (record_full_insn_count): ... this. Updated all users.
10150         (record_ops): Renamed to ...
10151         (record_full_ops): ... this. Updated all users.
10152         (record_core_ops): Renamed to ...
10153         (record_full_core_ops): ... this. Updated all users.
10154         (set_record_cmdlist): Renamed to ...
10155         (set_record_full_cmdlist): ... this. Updated all users.
10156         (show_record_cmdlist): Renamed to ...
10157         (show_record_full_cmdlist): ... this. Updated all users.
10158         (record_cmdlist): Renamed to ...
10159         (record_full_cmdlist): ... this. Updated all users.
10160         (record_beneath_to_resume_ops): Renamed to ...
10161         (record_full_beneath_to_resume_ops): ... this. Updated all users.
10162         (record_beneath_to_resume): Renamed to ...
10163         (record_full_beneath_to_resume): ... this. Updated all users.
10164         (record_beneath_to_wait_ops): Renamed to ...
10165         (record_full_beneath_to_wait_ops): ... this. Updated all users.
10166         (record_beneath_to_wait): Renamed to ...
10167         (record_full_beneath_to_wait): ... this. Updated all users.
10168         (record_beneath_to_store_registers_ops): Renamed to ...
10169         (record_full_beneath_to_store_registers_ops): ... this.
10170         Updated all users.
10171         (record_beneath_to_store_registers): Renamed to ...
10172         (record_full_beneath_to_store_registers): ... this.
10173         Updated all users.
10174         (record_beneath_to_xfer_partial_ops): Renamed to ...
10175         (record_full_beneath_to_xfer_partial_ops): ... this.
10176         Updated all users.
10177         (record_beneath_to_xfer_partial): Renamed to ...
10178         (record_full_beneath_to_xfer_partial): ... this.
10179         Updated all users.
10180         (record_beneath_to_insert_breakpoint): Renamed to ...
10181         (record_full_beneath_to_insert_breakpoint): ... this.
10182         Updated all users.
10183         (record_beneath_to_stopped_by_watchpoint): Renamed to ...
10184         (record_full_beneath_to_stopped_by_watchpoint): ... this.
10185         Updated all users.
10186         (record_beneath_to_stopped_data_address): Renamed to ...
10187         (record_full_beneath_to_stopped_data_address): ... this.
10188         Updated all users.
10189         (record_beneath_to_async): Renamed to ...
10190         (record_full_beneath_to_async): ... this. Updated all users.
10191         (record_goto_insn): Renamed to ...
10192         (record_full_goto_insn): ... this. Updated all users.
10193         (record_save): Renamed to ...
10194         (record_full_save): ... this. Updated all users.
10195         (record_reg_alloc): Renamed to ...
10196         (record_full_reg_alloc): ... this. Updated all users.
10197         (record_reg_release): Renamed to ...
10198         (record_full_reg_release): ... this. Updated all users.
10199         (record_mem_alloc): Renamed to ...
10200         (record_full_mem_alloc): ... this. Updated all users.
10201         (record_mem_release): Renamed to ...
10202         (record_full_mem_release): ... this. Updated all users.
10203         (record_end_alloc): Renamed to ...
10204         (record_full_end_alloc): ... this. Updated all users.
10205         (record_end_release): Renamed to ...
10206         (record_full_end_release): ... this. Updated all users.
10207         (record_entry_release): Renamed to ...
10208         (record_full_entry_release): ... this. Updated all users.
10209         (record_list_release): Renamed to ...
10210         (record_full_list_release): ... this. Updated all users.
10211         (record_list_release_following): Renamed to ...
10212         (record_full_list_release_following): ... this.
10213         Updated all users.
10214         (record_list_release_first): Renamed to ...
10215         (record_full_list_release_first): ... this. Updated all users.
10216         (record_arch_list_add): Renamed to ...
10217         (record_full_arch_list_add): ... this. Updated all users.
10218         (record_get_loc): Renamed to ...
10219         (record_full_get_loc): ... this. Updated all users.
10220         (record_check_insn_num): Renamed to ...
10221         (record_full_check_insn_num): ... this. Updated all users.
10222         (record_arch_list_cleanups): Renamed to ...
10223         (record_full_arch_list_cleanups): ... this. Updated all users.
10224         (record_message): Renamed to ...
10225         (record_full_message): ... this. Updated all users.
10226         (record_message_wrapper): Renamed to ...
10227         (record_full_message_wrapper): ... this. Updated all users.
10228         (record_message_wrapper_safe): Renamed to ...
10229         (record_full_message_wrapper_safe): ... this. Updated all users.
10230         (record_gdb_operation_disable): Renamed to ...
10231         (record_full_gdb_operation_disable): ... this. Updated all users.
10232         (record_hw_watchpoint): Renamed to ...
10233         (record_full_hw_watchpoint): ... this. Updated all users.
10234         (record_exec_insn): Renamed to ...
10235         (record_full_exec_insn): ... this. Updated all users.
10236         (record_restore): Renamed to ...
10237         (record_full_restore): ... this. Updated all users.
10238         (record_async_inferior_event_token): Renamed to ...
10239         (record_full_async_inferior_event_token): ... this.
10240         Updated all users.
10241         (record_async_inferior_event_handler): Renamed to ...
10242         (record_full_async_inferior_event_handler): ... this.
10243         Updated all users.
10244         (record_core_open_1): Renamed to ...
10245         (record_full_core_open_1): ... this. Updated all users.
10246         (record_open_1): Renamed to ...
10247         (record_full_open_1): ... this. Updated all users.
10248         (record_open): Renamed to ...
10249         (record_full_open): ... this. Updated all users.
10250         (record_close): Renamed to ...
10251         (record_full_close): ... this. Updated all users.
10252         (record_resume_step): Renamed to ...
10253         (record_full_resume_step): ... this. Updated all users.
10254         (record_resumed): Renamed to ...
10255         (record_full_resumed): ... this. Updated all users.
10256         (record_execution_dir): Renamed to ...
10257         (record_full_execution_dir): ... this. Updated all users.
10258         (record_resume): Renamed to ...
10259         (record_full_resume): ... this. Updated all users.
10260         (record_get_sig): Renamed to ...
10261         (record_full_get_sig): ... this. Updated all users.
10262         (record_sig_handler): Renamed to ...
10263         (record_full_sig_handler): ... this. Updated all users.
10264         (record_wait_cleanups): Renamed to ...
10265         (record_full_wait_cleanups): ... this. Updated all users.
10266         (record_wait_1): Renamed to ...
10267         (record_full_wait_1): ... this. Updated all users.
10268         (record_wait): Renamed to ...
10269         (record_full_wait): ... this. Updated all users.
10270         (record_stopped_by_watchpoint): Renamed to ...
10271         (record_full_stopped_by_watchpoint): ... this. Updated all users.
10272         (record_disconnect): Renamed to ...
10273         (record_full_disconnect): ... this. Updated all users.
10274         (record_detach): Renamed to ...
10275         (record_full_detach): ... this. Updated all users.
10276         (record_mourn_inferior): Renamed to ...
10277         (record_full_mourn_inferior): ... this. Updated all users.
10278         (record_kill): Renamed to ...
10279         (record_full_kill): ... this. Updated all users.
10280         (record_stopped_data_address): Renamed to ...
10281         (record_full_stopped_data_address): ... this. Updated all users.
10282         (record_registers_change): Renamed to ...
10283         (record_full_registers_change): ... this. Updated all users.
10284         (record_store_registers): Renamed to ...
10285         (record_full_store_registers): ... this. Updated all users.
10286         (record_xfer_partial): Renamed to ...
10287         (record_full_xfer_partial): ... this. Updated all users.
10288         (record_breakpoint): Renamed to ...
10289         (record_full_breakpoint): ... this. Updated all users.
10290         (record_breakpoint_p): Renamed to ...
10291         (record_full_breakpoint_p): ... this. Updated all users.
10292         (record_breakpoints): Renamed to ...
10293         (record_full_breakpoints): ... this. Updated all users.
10294         (record_sync_record_breakpoints): Renamed to ...
10295         (record_full_sync_record_breakpoints): ... this.
10296         Updated all users.
10297         (record_init_record_breakpoints): Renamed to ...
10298         (record_full_init_record_breakpoints): ... this.
10299         Updated all users.
10300         (record_insert_breakpoint): Renamed to ...
10301         (record_full_insert_breakpoint): ... this. Updated all users.
10302         (record_remove_breakpoint): Renamed to ...
10303         (record_full_remove_breakpoint): ... this. Updated all users.
10304         (record_can_execute_reverse): Renamed to ...
10305         (record_full_can_execute_reverse): ... this. Updated all users.
10306         (record_get_bookmark): Renamed to ...
10307         (record_full_get_bookmark): ... this. Updated all users.
10308         (record_goto_bookmark): Renamed to ...
10309         (record_full_goto_bookmark): ... this. Updated all users.
10310         (record_async): Renamed to ...
10311         (record_full_async): ... this. Updated all users.
10312         (record_can_async_p): Renamed to ...
10313         (record_full_can_async_p): ... this. Updated all users.
10314         (record_is_async_p): Renamed to ...
10315         (record_full_is_async_p): ... this. Updated all users.
10316         (record_execution_direction): Renamed to ...
10317         (record_full_execution_direction): ... this. Updated all users.
10318         (record_info): Renamed to ...
10319         (record_full_info): ... this. Updated all users.
10320         (record_delete): Renamed to ...
10321         (record_full_delete): ... this. Updated all users.
10322         (record_is_replaying): Renamed to ...
10323         (record_full_is_replaying): ... this. Updated all users.
10324         (record_goto_entry): Renamed to ...
10325         (record_full_goto_entry): ... this. Updated all users.
10326         (record_goto_begin): Renamed to ...
10327         (record_full_goto_begin): ... this. Updated all users.
10328         (record_goto_end): Renamed to ...
10329         (record_full_goto_end): ... this. Updated all users.
10330         (record_goto): Renamed to ...
10331         (record_full_goto): ... this. Updated all users.
10332         (init_record_ops): Renamed to ...
10333         (init_record_full_ops): ... this. Updated all users.
10334         (record_core_resume): Renamed to ...
10335         (record_full_core_resume): ... this. Updated all users.
10336         (record_core_kill): Renamed to ...
10337         (record_full_core_kill): ... this. Updated all users.
10338         (record_core_fetch_registers): Renamed to ...
10339         (record_full_core_fetch_registers): ... this. Updated all users.
10340         (record_core_prepare_to_store): Renamed to ...
10341         (record_full_core_prepare_to_store): ... this. Updated all users.
10342         (record_core_store_registers): Renamed to ...
10343         (record_full_core_store_registers): ... this. Updated all users.
10344         (record_core_xfer_partial): Renamed to ...
10345         (record_full_core_xfer_partial): ... this. Updated all users.
10346         (record_core_insert_breakpoint): Renamed to ...
10347         (record_full_core_insert_breakpoint): ... this. Updated all users.
10348         (record_core_remove_breakpoint): Renamed to ...
10349         (record_full_core_remove_breakpoint): ... this. Updated all users.
10350         (record_core_has_execution): Renamed to ...
10351         (record_full_core_has_execution): ... this. Updated all users.
10352         (init_record_core_ops): Renamed to ...
10353         (init_record_full_core_ops): ... this. Updated all users.
10354         (cmd_record_restore): Renamed to ...
10355         (cmd_record_full_restore): ... this. Updated all users.
10356         (record_save_cleanups): Renamed to ...
10357         (record_full_save_cleanups): ... this. Updated all users.
10358         (cmd_record_start): Renamed to ...
10359         (cmd_record_full_start): ... this. Updated all users.
10360         (set_record_insn_max_num): Renamed to ...
10361         (set_record_full_insn_max_num): ... this. Updated all users.
10362         (set_record_command): Renamed to ...
10363         (set_record_full_command): ... this. Updated all users.
10364         (show_record_command): Renamed to ...
10365         (show_record_full_command): ... this. Updated all users.
10366         (_initialize_record): Renamed to ...
10367         (_initialize_record_full): ... this. Updated all users.
10368
10369 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10370
10371         * record.h: Split into this and ...
10372         * record-full.h: ... this.
10373         * record.c: Split into this and ...
10374         * record-full.c: ... this.
10375         * target.h (target_ops): Add new fields to_info_record,
10376         to_save_record, to_delete_record, to_record_is_replaying,
10377         to_goto_record_begin, to_goto_record_end, to_goto_record.
10378         (target_info_record): New.
10379         (target_save_record): New.
10380         (target_supports_delete_record): New.
10381         (target_delete_record): New.
10382         (target_record_is_replaying): New.
10383         (target_goto_record_begin): New.
10384         (target_goto_record_end): New.
10385         (target_goto_record): New.
10386         * target.c (target_info_record): New.
10387         (target_save_record): New.
10388         (target_supports_delete_record): New.
10389         (target_delete_record): New.
10390         (target_record_is_replaying): New.
10391         (target_goto_record_begin): New.
10392         (target_goto_record_end): New.
10393         (target_goto_record): New.
10394         * record.h: Declare struct cmd_list_element.
10395         (record_cmdlist): New declaration.
10396         (set_record_cmdlist): New declaration.
10397         (show_record_cmdlist): New declaration.
10398         (info_record_cmdlist): New declaration.
10399         (cmd_record_goto): New declaration.
10400         * record.c: Remove unnecessary includes.
10401         Include inferior.h.
10402         (cmd_record_goto): Remove declaration.
10403         (record_cmdlist): Now extern. Initialize.
10404         (set_record_cmdlist): Now extern. Initialize.
10405         (show_record_cmdlist): Now extern. Initialize.
10406         (info_record_cmdlist): Now extern. Initialize.
10407         (find_record_target): New.
10408         (require_record_target): New.
10409         (cmd_record_start): Update.
10410         (cmd_record_delete): Remove target-specific code.
10411         Call target_delete_record.
10412         (cmd_record_stop): Unpush any record target.
10413         (set_record_insn_max_num): Move to record-full.c
10414         (set_record_command): Add comment.
10415         (show_record_command): Add comment.
10416         (info_record_command): Update comment.
10417         Remove target-specific code.
10418         Call the record target's to_info_record.
10419         (cmd_record_start): New.
10420         (cmd_record_goto): Now extern.
10421         Remove target-specific code.
10422         Call target_goto_begin,  target_goto_end, or target_goto.
10423         (_initialize_record): Move record target ops initialization to
10424         record-full.c.
10425         Change "record" command help text.
10426         Move "record restore", "record set", and "record show" commands to
10427         record-full.c.
10428         * Makefile.in (SFILES): Add record-full.c.
10429         (HFILES_NO_SRCDIR): Add record-full.h.
10430         (COMMON_OBS): Add record-full.o.
10431         * amd64-linux-tdep.c: Include record-full.h instead of record.h.
10432         * arm-tdep.c: Include record-full.h.
10433         * i386-linux-tdep.c: Include record-full.h instead of record.h.
10434         * i386-tdep.c: Include record-full.h.
10435         * infrun.c: Include record-full.h.
10436         * linux-record.c: Include record-full.h.
10437         * moxie-tdep.c: Include record-full.h.
10438         * record-full.c: Include record-full.h.
10439         Change module comment.
10440         (set_record_full_cmdlist): New.
10441         (show_record_full_cmdlist): New.
10442         (record_full_cmdlist): New.
10443         (record_goto_insn): New declaration.
10444         (record_save): New declaration.
10445         (record_check_insn_num): Change query string.
10446         (record_info): New.
10447         (record_delete): New.
10448         (record_is_replaying): New.
10449         (record_goto_entry): New.
10450         (record_goto_begin): New.
10451         (record_goto_end): New.
10452         (record_goto): New.
10453         (init_record_ops): Update.
10454         (init_record_core_ops): Update.
10455         (cmd_record_save): Rename to record_save. Remove target and arg checks.
10456         (cmd_record_start): New.
10457         (set_record_insn_max_num): Moved from record.c
10458         (set_record_full_command): New.
10459         (show_record_full_command): New.
10460         (_initialize_record_full): New.
10461
10462 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10463
10464         * target.h (add_deprecated_target_alias): New.
10465         * target.c (add_deprecated_target_alias): New.
10466
10467 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10468
10469         * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
10470         and signal.h.
10471         (linux_supports_btrace): Add kernel and
10472         cpuid check.
10473         (kernel_supports_btrace): New function.
10474         (cpu_supports_btrace): New function.
10475         (intel_supports_btrace): New function.
10476
10477 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10478
10479         * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
10480         * remote.c: Include btrace.h.
10481         (struct btrace_target_info): New struct.
10482         (remote_supports_btrace): New function.
10483         (send_Qbtrace): New function.
10484         (remote_enable_btrace): New function.
10485         (remote_disable_btrace): New function.
10486         (remote_teardown_btrace): New function.
10487         (remote_read_btrace): New function.
10488         (init_remote_ops): Add btrace ops.
10489         (enum <unnamed>): Add btrace packets.
10490         (struct protocol_feature remote_protocol_features[]): Add btrace packets.
10491         (_initialize_remote): Add packet configuration for branch tracing.
10492
10493 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10494
10495         * features/btrace.dtd: New file.
10496         * Makefile.in (XMLFILES): Add btrace.dtd.
10497         * btrace.h (parse_xml_btrace): New declaration.
10498         * btrace.c: Include xml-support.h.
10499         (parse_xml_btrace): New function.
10500         (parse_xml_btrace_block): New function.
10501         (block_attributes): New struct.
10502         (btrace_attributes): New struct.
10503         (btrace_children): New struct.
10504         (btrace_elements): New struct.
10505
10506 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10507
10508         * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
10509         (amd64_linux_enable_btrace): New.
10510         (amd64_linux_disable_btrace): New.
10511         (amd64_linux_teardown_btrace): New.
10512         (_initialize_amd64_linux_nat): Initialize btrace ops.
10513         * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
10514         (i386_linux_enable_btrace): New.
10515         (i386_linux_disable_btrace): New.
10516         (i386_linux_teardown_btrace): New.
10517         (_initialize_i386_linux_nat): Initialize btrace ops.
10518         * config/i386/linux.mh: Add linux-btrace.o.
10519         * config/i386/linux64.mh: Add linux-btrace.o.
10520
10521 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10522
10523         * common/linux_btrace.h: New file.
10524         * common/linux_btrace.c: New file.
10525         * Makefile.in (SFILES): Add btrace.c.
10526         (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
10527         (COMMON_OBS): Add btrace.o.
10528         (linux-btrace.o): New rule.
10529
10530 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10531
10532         * target.h: Include btrace.h.
10533         (struct target_ops) <to_supports_btrace, to_enable_btrace,
10534         to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
10535         * target.c (target_supports_btrace): New function.
10536         (target_enable_btrace): New function.
10537         (target_disable_btrace): New function.
10538         (target_teardown_btrace): New function.
10539         (target_read_btrace): New function.
10540         * btrace.h: New file.
10541         * btrace.c: New file.
10542         * Makefile.in: Add btrace.c.
10543         * gdbthread.h: Include btrace.h.
10544         (struct thread_info): Add btrace field.
10545         * thread.c: Include btrace.h.
10546         (clear_thread_inferior_resources): Call target_teardown_btrace.
10547         * common/btrace-common.h: New file.
10548
10549 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
10550
10551         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
10552         for CHILD, ignore PTRACE_KILL errors, move the inner block variable
10553         kill_status to outer block.
10554
10555 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
10556
10557         Fix entry-values if the callee called a noreturn function.
10558         * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
10559         get_frame_address_in_block.  Add new comment.
10560
10561 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
10562
10563         Fix entry-values in C++ across CUs.
10564         * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
10565         lookup_minimal_symbol.  Add a comment.
10566         * dwarf2read.c
10567         (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
10568         DW_AT_linkage_name.
10569
10570 2013-03-08  Yao Qi  <yao@codesourcery.com>
10571
10572         * tracepoint.c (_initialize_tracepoint): Indent the code.
10573
10574 2013-03-08  Pedro Alves  <palves@redhat.com>
10575
10576         * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
10577         (parse_find_args, find_command): Change type of pattern buffer
10578         locals to 'gdb_byte *'.
10579
10580 2013-03-08  Stan Shebs  <stan@codesourcery.com>
10581             Hafiz Abid Qadeer  <abidh@codesourcery.com>
10582
10583         * NEWS: Mention set and show trace-buffer-size commands.
10584         Mention new packet.
10585         * target.h (struct target_ops): New method
10586         to_set_trace_buffer_size.
10587         (target_set_trace_buffer_size): New macro.
10588         * target.c (update_current_target): Set up new method.
10589         * tracepoint.c (trace_buffer_size): New global.
10590         (start_tracing): Send it to the target.
10591         (set_trace_buffer_size): New function.
10592         (_initialize_tracepoint): Add new setshow for trace-buffer-size.
10593         * remote.c (remote_set_trace_buffer_size): New function.
10594         (_initialize_remote): Use it.
10595         (QTBuffer:size) New remote command.
10596         (PACKET_QTBuffer_size): New enum.
10597         (remote_protocol_features): Add an entry for
10598         PACKET_QTBuffer_size.
10599
10600 2013-03-08  Tom Tromey  <tromey@redhat.com>
10601
10602         * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
10603         variable.
10604
10605 2013-03-07  Pedro Alves  <palves@redhat.com>
10606
10607         * target.c (target_read_stralloc, target_fileio_read_alloc):
10608         *Cast pointer to 'gdb_byte *' in target call.
10609
10610 2013-03-07  Pedro Alves  <palves@redhat.com>
10611
10612         * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
10613         call.
10614
10615 2013-03-07  Keith Seitz  <keiths@redhat.com>
10616
10617         * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
10618         (trace_pass_command): Likewise.
10619         * cli/cli-cmds.c: Include cli/cli-utils.h.
10620         (source_command): Use skip-spaces.
10621         (disassemble_command): Likewise.
10622         * findcmd.c: Include cli/cli-utils.h.
10623         (parse_find_args): Use skip_spaces.
10624         * go32-nat.c: Include cli/cli-utils.h.
10625         (go32_sldt): Use skip_spaces.
10626         (go32_sgdt): Likewise.
10627         (go32_sidt): Likewise.
10628         (go32_pde): Likewise.
10629         (go32_pte): Likewise.
10630         (go32_pte_for_address): Likewise.
10631         * infcmd.c: Include cli/cli-utils.h.
10632         (registers_info): Use skip_spaces.
10633         * linux-tdep.c (read_mapping): Use skip_spaces_const.
10634         (linux_info_proc): Likewise.
10635         * linux-thread-db.c: Include cli/cli-utils.h.
10636         (info_auto_load_libthread_db): Use skip_spaces_const.
10637         * m32r-rom.c: Include cli/cli-utils.h.
10638         (m32r_upload_command): Use skip_spaces.
10639         * maint.c: Include cli/cli-utils.h.
10640         (maintenance_translate_address): Use skip_spaces.
10641         * mi/mi-parse.c: Include cli/cli-utils.h.
10642         (mi_parse_argv): Use skip_spaces.
10643         (mi_parse): Likewise.
10644         * minsyms.c: Include cli/cli-utils.h.
10645         (msymbol_hash_iw): Use skip_spaces_const.
10646         * objc-lang.c: Include cli/cli-utils.h.
10647         (parse_selector): Use skip_spaces.
10648         (parse_method): Likewise.
10649         * python/python.c: Include cli/cli-utils.h.
10650         (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
10651         (python_command)[HAVE_PYTHON]: Likewise.
10652         (python_interactive_command)[!HAVE_PYTHON]: Likewise.
10653         * remote-m32r-sdi.c: Include cli/cli-utils.h.
10654         (m32r_load): Use skip_spaces.
10655         * serial.c: Include cli/cli-utils.h.
10656         (serial_open): Use skip_spaces_const.
10657         * stack.c: Include cli/cli-utils.h.
10658         (parse_frame_specification_1): Use skip_spaces_const.
10659         * symfile.c: Include cli/cli-utils.h.
10660         (set_ext_lang_command): Use skip_spaces.
10661         * symtab.c: Include cli/cli-utils.h.
10662         (rbreak_command): Use skip_spaces.
10663         * thread.c (thread_name_command): Use skip_spaces.
10664         * tracepoint.c (validate_actionline): Use skip_spaces.
10665         (encode_actions_1): Likewise.
10666         (trace_find_range_command): Likewise.
10667         (trace_find_outside_command): Likewise.
10668         (trace_dump_actions): Likewise.
10669
10670 2013-03-07  Pedro Alves  <palves@redhat.com>
10671
10672         * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
10673         * expprint.c (print_subexp_standard): Likewise.
10674         * utils.c (host_char_to_target): Likewise.
10675         * valprint.c (generic_emit_char, generic_printstr): Likewise.
10676         * varobj.c (value_get_print_value): Change type of local to char*.
10677         Cast it gdb_byte * in call to language printer.
10678
10679 2013-03-07  Pedro Alves  <palves@redhat.com>
10680
10681         * charset.c (struct wchar_iterator) <input>: Change type to 'const
10682         gdb_byte *'.
10683         (make_wchar_iterator): Remove cast to char*.
10684         (wchar_iterate): Change type of local.
10685
10686 2013-03-07  Pedro Alves  <palves@redhat.com>
10687
10688         * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
10689         for 'regcache->register_status'.
10690
10691 2013-03-07  Pedro Alves  <palves@redhat.com>
10692
10693         * breakpoint.c (breakpoint_xfer_memory): Change type of local to
10694         int.
10695
10696 2013-03-07  Pedro Alves  <palves@redhat.com>
10697
10698         * stap-probe.c (handle_stap_probe): Add cast to char*.
10699
10700 2013-03-07  Pedro Alves  <palves@redhat.com>
10701
10702         * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
10703         RECORD_MSGRCV>: Pass a signed variable to
10704         regcache_raw_read_signed, instead of an unsigned one.
10705
10706 2013-03-07  Pedro Alves  <palves@redhat.com>
10707
10708         * remote-notif.c (notif_debug): Change type to int.
10709         * remote-notif.h (notif_debug): Likewise.
10710
10711 2013-03-07  Pedro Alves  <palves@redhat.com>
10712
10713         * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
10714
10715 2013-03-07  Pedro Alves  <palves@redhat.com>
10716
10717         * remote.c (hex2bin, bin2hex): Move extern declarations to ...
10718         * remote.h (hex2bin, bin2hex): ... here.
10719         * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
10720
10721 2013-03-07  Eli Zaretskii  <eliz@gnu.org>
10722
10723         * utils.c (initialize_utils): Improve doc strings of "set/show
10724         width", "set/show height", and "set/show pagination".
10725
10726 2013-03-06  Keith Seitz  <keiths@redhat.com>
10727
10728         * ax-gdb.c (gen_printf): Make FORMAT const.
10729         * ax-gdb.h (gen_printf): Likewise.
10730         * ax-general.c (ax_string): Make STR const.
10731         * ax.h (ax_string): Likewise.
10732
10733 2013-03-06  Doug Evans  <dje@google.com>
10734
10735         * elfread.c (elf_symfile_read): Move debugging printf to more
10736         logical location.
10737
10738 2013-03-06  Pedro Alves  <palves@redhat.com>
10739
10740         * python/py-utils.c (target_string_to_unicode): Delete function.
10741         * python/python-internal.h (target_string_to_unicode): Delete
10742         declaration.
10743
10744 2013-03-06  Pierre Muller  <muller@sourceware.org>
10745
10746         * linespec.c (get_current_search_block): ARI fix, use (void)
10747         for empty parameter list.
10748
10749 2013-03-05  Doug Evans  <dje@google.com>
10750
10751         * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
10752         of old ada_lookup_symbol_list.  In !full_search case, don't
10753         search superblocks.
10754         (ada_lookup_symbol_list): Delete arg full_search, all callers
10755         updated.  Call ada_lookup_symbol_list_worker.
10756         (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
10757         * ada-lang.h (ada_lookup_symbol_list): Update.
10758         * language.h (language_defn): Update comment for
10759         la_iterate_over_symbols.
10760         * linespec.c (iterate_over_file_blocks): New function.
10761         (iterate_over_all_matching_symtabs): Call it.
10762         (lookup_prefix_sym): Ditto.
10763         (get_current_search_block): New function.
10764         (get_search_block): Delete.
10765         (find_label_symbols): Call get_current_search_block.
10766         (add_matching_symbols_to_info): Call iterate_over_file_blocks.
10767         * symtab.c (iterate_over_symbols): Don't search superblocks.
10768
10769 2013-03-05  Yao Qi  <yao@codesourcery.com>
10770
10771         * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
10772         parameter VAR's type from "unsigned int" to "int".
10773         * command.h (var_zuinteger_unlimited): Update its comments.
10774         (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
10775
10776 2013-03-05  Corinna Vinschen  <vinschen@redhat.de>
10777
10778         * NEWS: Mention new target x86_64-*-cygwin*.
10779
10780 2013-03-05  Corinna Vinschen  <vinschen@redhat.de>
10781
10782         * configure.host: Add x86_64-*-cygwin* as host.
10783         * configure.tgt: Add x86_64-*-cygwin* as target.
10784         * config/i386/cygwin64.mh: New file.
10785
10786 2013-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
10787
10788         * linespec.c (decode_line_2): Fix duplicate request off by two message.
10789
10790 2013-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
10791
10792         * linespec.c (struct linespec_canonical_name): New.
10793         (struct linespec_state): Change canonical_names type to it.
10794         (add_sal_to_sals): Change variable canonical_name to canonical.  Change
10795         xrealloc element size.  Initialize the different CANONICAL fields.
10796         (canonical_to_fullform): New.
10797         (filter_results): Use it.  Add variables canonical, fullform and
10798         cleanup.
10799         (struct decode_line_2_item, decode_line_2_compare_items): New.
10800         (decode_line_2): Remove variables iter and item_names, add variables
10801         items and items_count.  Modify the code for these new variables.
10802
10803 2013-03-04  Corinna Vinschen  <vinschen@redhat.com>
10804
10805         * coff-pe-read.c (read_pe_exported_syms): Don't return without
10806         calling do_cleanup.
10807
10808 2013-03-04  Luis Machado  <lgustavo@codesourcery.com>
10809
10810         * tracepoint.c (build_traceframe_info): Add code for byte order.
10811
10812 2013-03-02  Kevin Buettner  <kevinb@redhat.com>
10813
10814         * v850-tdep.c: (v850e2_register_name): Revise system register
10815         names to match current V850E2M architecture specifications.
10816         Update register number enum comments too.
10817
10818 2013-03-01  Jiong Wang  <jiwang@tilera.com>
10819             Pedro Alves  <palves@redhat.com>
10820
10821         * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
10822         to END_ADDR.
10823         (tilegx_skip_prologue): Limit prologue analysis to section end.
10824
10825 2013-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
10826
10827         * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
10828         use it.
10829
10830 2013-03-01  Pedro Alves  <palves@redhat.com>
10831
10832         Use gdb_byte for bytes from the program being debugged.
10833
10834         * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
10835         Change type of local 'buf' to gdb_byte.
10836         * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
10837         * bfin-tdep.c (bfin_push_dummy_call): Likewise.
10838         * cris-tdep.c (cris_sigcontext_addr)
10839         (cris_sigtramp_frame_unwind_cache): Likewise.
10840         * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
10841         (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
10842         Likewise.
10843         * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
10844         * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
10845         (hppa32_hpux_search_dummy_call_sequence)
10846         (hppa_hpux_supply_save_state): Likewise.
10847         * hppa-linux-tdep.c (insns_match_pattern)
10848         (hppa_linux_find_global_pointer): Likewise.
10849         * hppa-tdep.c (hppa_in_function_epilogue_p)
10850         (skip_prologue_hard_way, hppa_frame_cache): Likewise.
10851         * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
10852         * i386fbsd-tdep.c (i386fbsd_supply_uthread)
10853         (i386fbsd_collect_uthread): Likewise.
10854         * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
10855         * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
10856         * ia64-tdep.c (examine_prologue, ia64_frame_cache)
10857         (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
10858         (ia64_sigtramp_frame_prev_register, ia64_access_reg)
10859         (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
10860         (ia64_libunwind_frame_prev_register)
10861         (ia64_libunwind_sigtramp_frame_this_id)
10862         (ia64_find_global_pointer_from_dynamic_section)
10863         (find_extant_func_descr, find_func_descr, ia64_dummy_id)
10864         (ia64_unwind_pc): Likewise.
10865         * iq2000-tdep.c (iq2000_store_return_value): Likewise.
10866         * m68hc11-tdep.c (m68hc11_push_dummy_call)
10867         (m68hc11_extract_return_value): Likewise.
10868         * m68klinux-nat.c (fetch_register, store_register): Likewise.
10869         * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
10870         (mep_get_insn, mep_push_dummy_call): Likewise.
10871         * mips-linux-tdep.c (mips_linux_get_longjmp_target)
10872         (mips_linux_in_dynsym_stub): Likewise.
10873         * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
10874         * ppc-linux-nat.c (fetch_register, store_register): Likewise.
10875         * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
10876         to gdb_byte.
10877         * remote-mips.c (mips_set_register): Likewise.
10878         * remote-sim.c (gdbsim_fetch_register): Likewise.
10879         * score-tdep.c (score7_fetch_inst): Change type of parameter
10880         'memblock' and local 'buf' to gdb_byte.
10881         (score7_malloc_and_get_memblock): Change return type to gdb_byte.
10882         Change type of local 'buf' to gdb_byte.  Adjust.
10883         (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
10884         to gdb_byte**.
10885         (score7_analyze_prologue): Change type of 'memblock' and
10886         'memblock_ptr' locals to gdb_byte*.
10887         * sh64-tdep.c (sh64_extract_return_value)
10888         (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
10889         * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
10890         * solib-pa64.c (pa64_solib_create_inferior_hook)
10891         (pa64_open_symbol_file_object): Remove local 'buf'.
10892         * solib-som.c (som_solib_create_inferior_hook, link_map_start)
10893         (som_open_symbol_file_object): Likewise.
10894         * solib-spu.c (spu_current_sos): Likewise.
10895         * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
10896         * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
10897         (spu_store_registers): Likewise.
10898         * target.c (debug_print_register): Likewise.
10899         * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
10900         * xstormy16-tdep.c (xstormy16_store_return_value)
10901         (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
10902         (xstormy16_find_jmp_table_entry): Likewise.
10903
10904 2013-03-01  Jiong Wang  <jiwang@tilera.com>
10905
10906         * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
10907         (tilegx_gdbarch_init): Install it.
10908
10909 2013-02-28  Tom Tromey  <tromey@redhat.com>
10910
10911         * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
10912         PyLong_Check.
10913
10914 2013-02-28  Doug Evans  <dje@google.com>
10915
10916         * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
10917         * python/python.c (gdbpy_find_pc_line): Ditto.
10918
10919 2013-02-28  Tom Tromey  <tromey@redhat.com>
10920
10921         * contrib/excheck.py: New file.
10922         * contrib/exsummary.py: New file.
10923         * contrib/gcc-with-excheck: New file.
10924
10925 2013-02-28  Tom Tromey  <tromey@redhat.com>
10926
10927         * python/python.c (gdbpy_print_stack): Call begin_line and
10928         fprintf_filtered inside TRY_CATCH.
10929
10930 2013-02-28  Tom Tromey  <tromey@redhat.com>
10931
10932         * python/python.c (gdbpy_find_pc_line): Call find_pc_line
10933         inside TRY_CATCH.
10934
10935 2013-02-28  Tom Tromey  <tromey@redhat.com>
10936
10937         * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
10938         frame_object_to_frame_info inside TRY_CATCH.
10939
10940 2013-02-28  Tom Tromey  <tromey@redhat.com>
10941
10942         * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
10943         TRY_CATCH.
10944
10945 2013-02-28  Tom Tromey  <tromey@redhat.com>
10946
10947         * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
10948
10949 2013-02-27  Corinna Vinschen  <vinschen@redhat.com>
10950
10951         * windows-nat.c: Throughout, fix format strings and casts of
10952         printf-like functions to avoid type related warnings on all
10953         platforms.
10954         (handle_output_debug_string): Fetch context information address
10955         from debug string using string_to_core_addr.
10956
10957 2013-02-27  Jiong Wang  <jiwang@tilera.com>
10958
10959         * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
10960         * regformats/reg-tilegx32.dat: New.
10961
10962 2013-02-27  Jiong Wang  <jiwang@tilera.com>
10963
10964         * configure.tgt (tilegx-*-linux*): Enable gdbserver.
10965
10966 2013-02-27  Jiong Wang  <jiwang@tilera.com>
10967
10968         * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
10969
10970 2013-02-27  Yao Qi  <yao@codesourcery.com>
10971             Pedro Alves  <palves@redhat.com>
10972
10973         * tracepoint.c (tfile_trace_find): For tfind
10974         pc/tp/range/outside, look for the next trace frame instead of
10975         always starting from frame 0.
10976
10977 2013-02-26  Anthony Green  <green@moxielogic.com>
10978
10979         * configure.tgt: Add support for moxie-*-rtems* target.
10980
10981 2013-02-25  Pedro Alves  <palves@redhat.com>
10982
10983         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
10984         warning text.
10985
10986 2013-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
10987
10988         * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
10989         if $fp is used as the virtual frame pointer.
10990
10991 2013-02-23  Alan Modra  <amodra@gmail.com>
10992
10993         * elfread.c (elf_symtab_read): Do not use udata.p here to find
10994         symbol size.
10995         * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
10996         * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
10997         * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
10998         * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
10999
11000 2013-02-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
11001
11002         Code cleanup.
11003         * elfread.c (build_id_bfd_get): Make the return type const.
11004         (build_id_verify): Make the check parameter const.
11005         (build_id_to_debug_filename): Make the build_id parameter and variable
11006         data const.
11007         (find_separate_debug_file_by_buildid): Make the variable build_id const.
11008
11009 2013-02-21  Alan Modra  <amodra@gmail.com>
11010
11011         * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
11012
11013 2013-02-20  Siva Chandra Reddy  <sivachandra@google.com>
11014
11015         Add a new method 'disassemble' to gdb.Architecture class.
11016         * python/py-arch.c (archpy_disassmble): Implementation of the
11017         new method gdb.Architecture.disassemble.
11018         (arch_object_methods): Add entry for the new method.
11019
11020 2013-02-20  Jiong Wang  <jiwang@tilera.com>
11021
11022         * MAINTAINERS (Write After Approval): Add myself to the list.
11023
11024 2013-02-19  Pedro Alves  <palves@redhat.com>
11025
11026         Garbage collect 'struct monitor_ops'::load_routine.
11027
11028         * monitor.h (struct monitor_ops) <load_routine>: Remove field.
11029         * monitor.c (monitor_load): No longer call
11030         current_monitor->load_routine.
11031         * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
11032         * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
11033         * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
11034
11035 2013-02-19  Pedro Alves  <palves@redhat.com>
11036
11037         PR gdb/15161
11038
11039         Harmonize with generic_load.
11040
11041         * monitor.c: Include "readline/readline.h".
11042         (monitor_load): Rename parameter 'file' to 'args'.  Use build_argv
11043         instead of sscanf.  Use CORE_ADDR/strtoulst instead of unsigned
11044         long/strtol for the 'load_offset' local.  Error out if no argument
11045         is given or if too many arguments are given.  Tilde expand the
11046         passed in file name.
11047
11048 2013-02-19  Kai Tietz  <ktietz@redhat.com>
11049
11050         PR gdb/15161
11051         * symfile.c (load_section_data): Change type of load_offset
11052         to CORE_ADDR.
11053         (generic_load): User strtoulst instead of strtoul for conversion
11054         of load_offset.
11055
11056 2013-02-19  Jiong Wang  <jiwang@tilera.com>
11057
11058         * tilegx-tdep.c (tilegx_analyze_prologue): add check for
11059          for return address, "lr" register, saved on stack.
11060         * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
11061         after we invoke tilegx_analyze_prologue.
11062
11063 2013-02-19  Jiong Wang  <jiwang@tilera.com>
11064
11065         * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
11066
11067 2013-02-19  Jiong Wang  <jiwang@tilera.com>
11068
11069         * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
11070
11071 2013-02-19  Jiong Wang  <jiwang@tilera.com>
11072
11073         * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
11074         (tilegx_write_pc): New function.
11075         (tilegx_cannot_reference_register): Return zero if REGNO
11076         is TILEGX_FAULTNUM_REGNUM.
11077         (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
11078         (tilegx_register_name): Add handling of "faultnum" register.
11079         * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
11080         * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
11081         handling of TILEGX_FAULTNUM_REGNUM.
11082         * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
11083
11084 2013-02-19  Jiong Wang  <jiwang@tilera.com>
11085
11086         * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
11087         should be aligned to 64bit.
11088
11089 2013-02-19  Kai Tietz  <ktietz@redhat.com>
11090
11091         * windows-nat.c (windows_xfer_memory): Fix debug-output
11092         for LLP64.
11093
11094 2013-02-19  Lei Liu  <lei.liu2@windriver.com>
11095
11096         * mips-linux-nat.c (mips64_linux_regsets_store_registers):
11097         Don't check DSP register number if HAVE_DSP is not set.
11098
11099 2013-02-19  Alan Modra  <amodra@gmail.com>
11100
11101         * elfread.c (struct build_id): Delete.  Use struct elf_build_id
11102         throughout file instead.
11103         (build_id_bfd_get): Update to use new elf_tdata build_id field.
11104         Don't xmalloc return value.
11105         (build_id_verify): Similarly.  Don't xfree.
11106         (build_id_to_debug_filename): Update.
11107         (find_separate_debug_file_by_buildid): Update, don't xfree.
11108
11109 2013-02-18  Tom Tromey  <tromey@redhat.com>
11110
11111         PR gdb/15102:
11112         * dwarf2read.c (read_subrange_type): Use result of
11113         'check_typedef'.
11114
11115 2013-02-16  Yuanhui Zhang  <asmwarrior@gmail.com>
11116
11117         * frame.c: Remove one extra white space after #include
11118         directive.
11119
11120 2013-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
11121
11122         * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
11123
11124 2013-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
11125
11126         * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
11127         and dir commands into an if block.
11128
11129 2013-02-15  Sanimir Agovic  <sanimir.agovic@intel.com>
11130
11131         * python/py-breakpoint (struct pybp_code):  Use int instead of
11132         enum type_code.
11133
11134 2013-02-15  Pedro Alves  <pedro@codesourcery.com>
11135             Hafiz Abid Qadeer  <abidh@codesourcery.com>
11136
11137         * NEWS: Mention new field "trace-file".
11138         * tracepoint.c (trace_status_mi): Output "trace-file" field.
11139         (tfile_open): Record the trace file's filename in the trace
11140         status.
11141         (tfile_files_info): Mention the name of the trace file.
11142         Check the "filename" field explicitely.
11143         (trace_status_command): Explicitely check "filename" field.
11144         (trace_find_command): Ditto.
11145         (trace_find_pc_command): Ditto.
11146         (trace_find_tracepoint_command): Ditto.
11147         (trace_find_line_command): Ditto.
11148         (trace_find_range_command): Ditto.
11149         (trace_find_outside_command): Ditto.
11150         * tracepoint.h (struct trace_status) <from_file>: Rename it
11151         to "filename" and make it hold the trace file's filename
11152         instead of a boolean.
11153         * remote.c (remote_get_trace_status): Initialize "filename"
11154         field with NULL instead of 0.
11155
11156 2013-02-15  Yao Qi  <yao@codesourcery.com>
11157
11158         * remote.c: Fix a typo.
11159
11160 2013-02-14  Pierre Muller  <muller@sourceware.org>
11161
11162         * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
11163
11164 2013-02-14  Pedro Alves  <palves@redhat.com>
11165
11166         * utils.c (savestring): Don't #undef it.  Move function to
11167         common/common-utils.c.
11168         * common/common-utils.c: Include gdb_string.h.
11169         (savestring): Move here from utils.c.
11170         * common/common-utils.h (savestring): Declare.
11171
11172 2013-02-14  Pedro Alves  <palves@redhat.com>
11173
11174         * utils.c (savestring): Rename parameter 'size' to 'len'.
11175
11176 2013-02-14  Pedro Alves  <palves@redhat.com>
11177             Yufeng Zhang  <yufeng.zhang@arm.com>
11178
11179         * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
11180         (aarch64_inferior_data, struct aarch64_inferior_data):
11181         Delete.
11182         (struct aarch64_process_info): New.
11183         (aarch64_process_list): New global.
11184         (aarch64_find_process_pid, aarch64_add_process)
11185         (aarch64_process_info_get): New functions.
11186         (aarch64_inferior_data_get): Delete.
11187         (aarch64_process_info_get): New function.
11188         (aarch64_forget_process): New function.
11189         (aarch64_get_debug_reg_state): New parameter 'pid'.  Reimplement.
11190         (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
11191         aarch64_get_debug_reg_state.
11192         (aarch64_notify_debug_reg_change): Use iterate_over_lwps
11193         instead of linux_nat_iterate_watchpoint_lwps.
11194         (aarch64_linux_new_fork): New function.
11195         (aarch64_linux_child_post_startup_inferior): Use
11196         aarch64_forget_process instead of aarch64_init_debug_reg_state.
11197         (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
11198         (aarch64_linux_remove_hw_breakpoint)
11199         (aarch64_handle_aligned_watchpoint)
11200         (aarch64_handle_unaligned_watchpoint)
11201         (aarch64_linux_insert_watchpoint)
11202         (aarch64_linux_remove_watchpoint)
11203         (aarch64_linux_stopped_data_address): Adjust to pass the current
11204         process id to aarch64_debug_reg_state.
11205         (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
11206         linux_nat_new_fork hook, and aarch64_forget_process as
11207         linux_nat_forget_process hook; remove the call to
11208         register_inferior_data_with_cleanup.
11209
11210 2013-02-14  Pedro Alves  <palves@redhat.com>
11211
11212         * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
11213         EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
11214         lval_memory.
11215
11216 2013-02-14  Pedro Alves  <pedro@codesourcery.com>
11217             Hafiz Abid Qadeer  <abidh@codesourcery.com>
11218
11219         * tracepoint.h (validate_trace_state_variable_name): Declare.
11220         * tracepoint.c (validate_trace_state_variable_name): New.
11221         (trace_variable_command): Parse the trace state variable's name
11222         without using parse_expression.  Do several validations.
11223         * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
11224         trace state variable's name with parse_expression.  Validate it.
11225
11226 2013-02-14  Yao Qi  <yao@codesourcery.com>
11227
11228         * infcmd.c (breakpoint_proceeded): Remove it.
11229
11230 2013-02-14  Yao Qi  <yao@codesourcery.com>
11231
11232         * tracepoint.c (end_actions_pseudocommand): Make it static.
11233         (while_stepping_pseudocommand): Likewise.
11234         * tracepoint.h (end_actions_pseudocommand): Remove the
11235         declaration.
11236         (while_stepping_pseudocommand): Likewise.
11237
11238 2013-02-14  Yao Qi  <yao@codesourcery.com>
11239
11240         * cli/cli-decode.c (help_cmd): Remove the declaration of
11241         "cmdlist".
11242         (help_all): Likewise.
11243
11244 2013-02-13  Pedro Alves  <palves@redhat.com>
11245
11246         * amd64-linux-nat.c (update_debug_registers_callback):
11247         Update comment.
11248         (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
11249         iterate_over_lwps.
11250         (amd64_linux_prepare_to_resume): Pass the lwp's pid to
11251         i386_debug_reg_state.
11252         (amd64_linux_new_fork): New function.
11253         (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
11254         linux_nat_new_fork hook, and i386_forget_process as
11255         linux_nat_forget_process hook.
11256         * i386-linux-nat.c (update_debug_registers_callback):
11257         Update comment.
11258         (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
11259         iterate_over_lwps.
11260         (i386_linux_prepare_to_resume): Pass the lwp's pid to
11261         i386_debug_reg_state.
11262         (i386_linux_new_fork): New function.
11263         (_initialize_i386_linux_nat): Install i386_linux_new_fork as
11264         linux_nat_new_fork hook, and i386_forget_process as
11265         linux_nat_forget_process hook.
11266         * i386-nat.c (i386_init_dregs): Delete.
11267         (i386_inferior_data, struct i386_inferior_data):
11268         Delete.
11269         (struct i386_process_info): New.
11270         (i386_process_list): New global.
11271         (i386_find_process_pid, i386_add_process, i386_process_info_get):
11272         New functions.
11273         (i386_inferior_data_get): Delete.
11274         (i386_process_info_get): New function.
11275         (i386_debug_reg_state): New parameter 'pid'.  Reimplement.
11276         (i386_forget_process): New function.
11277         (i386_cleanup_dregs): Rewrite.
11278         (i386_update_inferior_debug_regs, i386_insert_watchpoint)
11279         (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
11280         (i386_stopped_data_address, i386_insert_hw_breakpoint)
11281         (i386_remove_hw_breakpoint): Adjust to pass the current process id
11282         to i386_debug_reg_state.
11283         (i386_use_watchpoints): Don't register inferior data.
11284         * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
11285         adjust comment.
11286         (i386_forget_process): Declare.
11287         * linux-fork.c (delete_fork): Call linux_nat_forget_process.
11288         * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
11289         New static globals.
11290         (linux_child_follow_fork): Don't call linux_nat_new_thread here.
11291         (add_initial_lwp): New, factored out from ...
11292         (add_lwp): ... this.  Don't check the number of lwps before
11293         calling linux_nat_new_thread.
11294         (linux_nat_iterate_watchpoint_lwps): Delete.
11295         (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
11296         (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
11297         forks and vforks.
11298         (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
11299         initial lwp.
11300         (linux_nat_kill, linux_nat_mourn_inferior): Call
11301         linux_nat_forget_process.
11302         (linux_nat_set_new_fork, linux_nat_set_forget_process)
11303         (linux_nat_forget_process): New functions.
11304         * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
11305         type.
11306         (linux_nat_iterate_watchpoint_lwps): Delete declaration.
11307         (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
11308         types.
11309         (linux_nat_set_new_fork, linux_nat_set_forget_process)
11310         (linux_nat_forget_process): New declarations.
11311
11312         * amd64fbsd-nat.c (super_mourn_inferior): New global.
11313         (amd64fbsd_mourn_inferior): New function.
11314         (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
11315         * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
11316
11317 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11318
11319         * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
11320         Adding _().
11321
11322 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11323
11324         * aarch64-linux-nat.c (debug_reg_change_callback)
11325         (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
11326         %s and phex().
11327
11328 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11329
11330         * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
11331         with LONGEST.
11332
11333 2013-02-13  Pedro Alves  <palves@redhat.com>
11334             Hafiz Abid Qadeer  <abidh@codesourcery.com>
11335
11336         * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
11337
11338 2013-02-12  Tom Tromey  <tromey@redhat.com>
11339
11340         PR symtab/11464:
11341         * c-exp.y (lex_one_token): Initialize other fields of yylval on
11342         NAME return.
11343         (classify_inner_name): Remove 'first_name' argument, add
11344         'context'.  Remove unused variable.
11345         (yylex): Explicitly maintain the context type.  Exit loop earlier
11346         if NAME result is seen.
11347
11348 2013-02-12  Pedro Alves  <palves@redhat.com>
11349
11350         * amd64-darwin-tdep.c: Add (C) after Copyright.
11351         * cli/cli-cmds.h: Ditto.
11352         * cli/cli-decode.c: Ditto.
11353         * cli/cli-decode.h: Ditto.
11354         * cli/cli-dump.c: Ditto.
11355         * cli/cli-dump.h: Ditto.
11356         * cli/cli-interp.c: Ditto.
11357         * cli/cli-logging.c: Ditto.
11358         * cli/cli-script.c: Ditto.
11359         * cli/cli-script.h: Ditto.
11360         * cli/cli-setshow.c: Ditto.
11361         * cli/cli-setshow.h: Ditto.
11362         * cli/cli-utils.c: Ditto.
11363         * cli/cli-utils.h: Ditto.
11364         * config/alpha/nm-osf3.h: Ditto.
11365         * config/djgpp/djconfig.sh: Ditto.
11366         * config/i386/nm-fbsd.h: Ditto.
11367         * config/i386/nm-i386gnu.h: Ditto.
11368         * config/nm-linux.h: Ditto.
11369         * config/nm-nto.h: Ditto.
11370         * config/rs6000/nm-rs6000.h: Ditto.
11371         * config/sparc/nm-sol2.h: Ditto.
11372         * darwin-nat-info.c: Ditto.
11373         * dfp.c: Ditto.
11374         * dfp.h: Ditto.
11375         * gdb-demangle.h: Ditto.
11376         * i386-darwin-nat.c: Ditto.
11377         * i386-darwin-tdep.c: Ditto.
11378         * linux-fork.h: Ditto.
11379         * m32c-tdep.c: Ditto.
11380         * microblaze-linux-tdep.c: Ditto.
11381         * microblaze-rom.c: Ditto.
11382         * microblaze-tdep.c: Ditto.
11383         * microblaze-tdep.h: Ditto.
11384         * mips-linux-tdep.h: Ditto.
11385         * ppc-ravenscar-thread.c: Ditto.
11386         * ppc-ravenscar-thread.h: Ditto.
11387         * prologue-value.c: Ditto.
11388         * prologue-value.h: Ditto.
11389         * ravenscar-thread.c: Ditto.
11390         * ravenscar-thread.h: Ditto.
11391         * sparc-ravenscar-thread.c: Ditto.
11392         * sparc-ravenscar-thread.h: Ditto.
11393         * tilegx-linux-tdep.c: Ditto.
11394         * unwind_stop_reasons.def: Ditto.
11395         * windows-nat.h: Ditto.
11396         * xtensa-linux-tdep.c: Ditto.
11397         * xtensa-xtregs.c: Ditto.
11398         * regformats/regdat.sh: Ditto.
11399         * regformats/regdef.h: Ditto.
11400
11401 2013-02-12  Pedro Alves  <palves@redhat.com>
11402
11403         * break-catch-sig.c: Update copyright years.
11404
11405 2013-02-11  Siva Chandra Reddy  <sivachandra@google.com>
11406
11407         Add support for a destructor for ui_out data and use it to
11408         provide a ui_out destructor.
11409         * ui-out.h: Declare the new ui_out destructor.
11410         (ui_out_impl): Add a field for data destructor in ui_out_impl.
11411         * ui-out.c (default_data_destroy): Add a default data destructor
11412         which does nothing.
11413         (default_ui_out_impl): Set the new data_destroy field to
11414         default_data_destroy
11415         (uo_data_destroy): Local function which invokes the data
11416         destructor if present.
11417         (clear_table): Local function which clears the table data of a
11418         ui_out object.
11419         (ui_out_destroy): Public function which frees a ui_out object.
11420         (ui_out_table_end): Use the new clear_table function.
11421         * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
11422         NULL.
11423         * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
11424         to NULL.
11425
11426 2013-02-11  Doug Evans  <dje@google.com>
11427
11428         * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
11429         (printf_decfloat): New function.  Broken out from ui_printf.
11430         Remove unnecessary code to shift the entire format string down.
11431         (printf_pointer): New function.
11432         (ui_printf): Code to print C strings, wide C strings, decfloats,
11433         and pointers moved to separate functions.
11434
11435 2013-02-11  Sergio Durigan Junior  <sergiodj@redhat.com>
11436
11437         * valops.c (value_assign): Handling bitfield offset in
11438         `lval_internalvar_component' case.
11439
11440 2013-02-08  Doug Evans  <dje@google.com>
11441
11442         * common/format.c (parse_format_string): Fix whitespace.
11443
11444 2013-02-08  Matthew Gretton-Dann  <matthew.gretton-dann@linaro.org>
11445
11446         * stack.c (return_command): Work around uninitialized variable
11447         warning.
11448
11449 2013-02-08  Yufeng Zhang  <yufeng.zhang@arm.com>
11450
11451         * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
11452         number of the registers from 36 to 34.
11453
11454 2013-02-08  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11455
11456         * NEWS: Mention new AArch64 native and target support.
11457
11458 2013-02-08  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11459
11460         * MAINTAINERS (Write After Approval): Add myself.
11461
11462 2013-02-08  Jim MacArthur  <jim.macarthur@arm.com>
11463             Marcus Shawcroft  <marcus.shawcroft@arm.com>
11464             Nigel Stephens  <nigel.stephens@arm.com>
11465             Yufeng Zhang  <yufeng.zhang@arm.com>
11466
11467         * aarch64-linux-nat.c: New file.
11468         * config/aarch64/linux.mh: New file.
11469         * configure.host: Add AArch64.
11470         * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
11471
11472 2013-02-07  Doug Evans  <dje@google.com>
11473
11474         * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
11475         disassemble command.
11476
11477 2013-02-07  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11478
11479         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
11480         set_gdbarch_fetch_tls_load_module_address.
11481
11482 2013-02-06  David S. Miller  <davem@davemloft.net>
11483
11484         * sparc-tdep.c (sparc32_return_value): Handle writing return value when
11485         using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
11486         * value.c (struct_return_convention): New function.
11487         (using_struct_return): Implement in terms of struct_return_convention.
11488         * value.h (struct_return_convention): Declare.
11489         * stack.c (return_command): Allow successful overriding of the return
11490         value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
11491
11492 2013-02-06  Tom Tromey  <tromey@redhat.com>
11493
11494         * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
11495         outside of TRY_CATCH.
11496
11497 2013-02-06  Yao Qi  <yao@codesourcery.com>
11498
11499         * mi/mi-interp.c: Include "tracepoint.h".
11500         (mi_tsv_modified): Declare.
11501         (mi_tsv_created, mi_tsv_deleted): Update declaration.
11502         (mi_interpreter_init): Call observer_attach_tsv_modified.
11503         (mi_tsv_modified): New.
11504         (mi_tsv_created, mi_tsv_deleted): Update.
11505         * tracepoint.c (trace_variable_command): Call
11506         observer_notify_tsv_modified if the initial value of tsv is
11507         changed.
11508         (delete_trace_state_variable): Call
11509         observer_notify_tsv_deleted earlier.
11510         (trace_variable_command): Caller update.
11511         (create_tsv_from_upload): Likewise.
11512         * observer.sh: Declare "struct trace_state_variable".
11513
11514         * NEWS: Mention the new MI notification "=tsv-modified".
11515
11516 2013-02-05  Doug Evans  <dje@google.com>
11517
11518         * completer.c (location_completer): Fix typo in comment.
11519
11520 2013-02-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
11521
11522         * breakpoint.c (add_location_to_breakpoint): Insert the location with
11523         ADDRESS sorted.
11524
11525 2013-02-05  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11526
11527         * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
11528         Refactor if statement to avoid trailing || operator.
11529
11530 2013-02-05  Andreas Tobler  <andreast@fgznet.ch>
11531
11532         * NEWS: Add PowerPC FreeBSD as a new native configuration.
11533
11534 2013-02-04  Andreas Tobler  <andreast@fgznet.ch>
11535
11536         * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
11537         * configure.host: Add powerpc*-*-freebsd* target.
11538         * configure.tgt: Add target info for powerpc*-*-freebsd*.
11539         * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
11540         * config/powerpc/fbsd.mh: New file.
11541
11542 2013-02-04  Sergio Durigan Junior  <sergiodj@redhat.com>
11543             Denys Vlasenko  <dvlasenk@redhat.com>
11544             Pedro Alves  <palves@redhat.com>
11545
11546         * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
11547         (struct elf_internal_linux_prpsinfo): Forward declare.
11548         * gdbarch.h, gdbarch.c: Regenerate.
11549         * linux-tdep.c: Include `cli/cli-utils.h'.
11550         (linux_fill_prpsinfo): New function.
11551         (linux_make_corefile_notes): Use linux_fill_prpsinfo.  If there's
11552         an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
11553         elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
11554         depending on gdbarch pointer bitness.
11555         * ppc-linux-tdep.c: Include elf-bfd.h.
11556         (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
11557         on 32-bit.
11558
11559 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
11560             Marcus Shawcroft  <marcus.shawcroft@arm.com>
11561             Nigel Stephens  <nigel.stephens@arm.com>
11562             Yufeng Zhang  <yufeng.zhang@arm.com>
11563
11564         * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
11565
11566 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
11567             Marcus Shawcroft  <marcus.shawcroft@arm.com>
11568             Nigel Stephens  <nigel.stephens@arm.com>
11569             Yufeng Zhang  <yufeng.zhang@arm.com>
11570
11571         * aarch64-newlib-tdep.c: New file.
11572         * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
11573         aarch64*-*-elf.
11574         * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
11575         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
11576         (ALLDEPFILES): Add aarch64-newlib-tdep.c.
11577         * osabi.c (gdb_osabi_names): Add "Newlib".
11578
11579 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
11580             Marcus Shawcroft  <marcus.shawcroft@arm.com>
11581             Nigel Stephens  <nigel.stephens@arm.com>
11582             Yufeng Zhang  <yufeng.zhang@arm.com>
11583
11584         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
11585         (ALLDEPFILES): Add aarch64-linux-tdep.c.
11586         * aarch64-linux-tdep.c: New file.
11587         * aarch64-linux-tdep.h: New file.
11588         * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
11589         * configure.tgt: Add aarch64-none-linux-gnu.
11590
11591 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
11592             Marcus Shawcroft  <marcus.shawcroft@arm.com>
11593             Nigel Stephens  <nigel.stephens@arm.com>
11594             Yufeng Zhang  <yufeng.zhang@arm.com>
11595
11596         * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
11597         (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
11598         (ALLDEPFILES): Add aarch64-tdep.c.
11599         * aarch64-tdep.c: New file.
11600         * aarch64-tdep.h: New file.
11601         * configure.tgt: Add AArch64.
11602         * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
11603         (aarch64-expedite): New definition.
11604         * features/aarch64-core.xml: New file.
11605         * features/aarch64-fpu.xml: New file.
11606         * features/aarch64-without-fpu.c: New file (generated).
11607         * features/aarch64-without-fpu.xml: New file.
11608         * features/aarch64.c: New file (generated).
11609         * features/aarch64.xml: New file.
11610         * regformats/aarch64-without-fpu.dat: New file (generated).
11611         * regformats/aarch64.dat: New file (generated).
11612
11613 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11614
11615         * contrib/expect-read1.c: New file.
11616         * contrib/expect-read1.sh: New file.
11617
11618 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11619
11620         * dwarf2read.c (file_file_name): New function with code from
11621         file_full_name.
11622         (file_full_name): Move most of the code to file_file_name.
11623         (macro_start_file): Rename variable full_name to file_name and use
11624         file_file_name for it.  Add comp_dir parameter to new_macro_table.
11625         * macrocmd.c (show_pp_source_pos): New variable fullname.  Replace any
11626         macro_source_file->filename access by macro_source_fullname call.
11627         * macroscope.c (_initialize_macroscope): Update the new_macro_table
11628         caller.
11629         * macrotab.c (struct macro_table): New field comp_dir.
11630         (macro_include): New variables link_fullname and source_fullname.
11631         Replace any macro_source_file->filename access by macro_source_fullname
11632         call.
11633         (macro_lookup_inclusion): Remove the partial filenames checking code.
11634         (check_for_redefinition): New variables source_fullname and
11635         found_key_fullname.  Replace any macro_source_file->filename access by
11636         macro_source_fullname call.
11637         (macro_undef): New variables source_fullname and key_fullname.  Replace
11638         any macro_source_file->filename access by macro_source_fullname call.
11639         (macro_lookup_definition): New variables retval and source_fullname.
11640         Replace any macro_source_file->filename access by macro_source_fullname
11641         call.
11642         (foreach_macro): New variable key_fullname.  Replace any
11643         macro_source_file->filename access by macro_source_fullname call.
11644         (foreach_macro_in_scope): New variable datum_fullname.  Replace any
11645         macro_source_file->filename access by macro_source_fullname call.
11646         (new_macro_table): Add parameter comp_dir.  Initialize T with it.
11647         (macro_source_fullname): New function.
11648         * macrotab.h (struct macro_source_file): Extent the filename field
11649         comment.
11650         (new_macro_table): New parameter comp_dir, add a comment for it.
11651         (macro_source_fullname): new declaration.
11652
11653 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11654
11655         * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
11656         this_real_name to outer block.  Use it also for
11657         compare_filenames_for_search.
11658         (dw2_expand_symtabs_matching): New variable this_real_name.  Use it
11659         with dw2_get_real_path for file_matcher, considering also
11660         BASENAMES_MAY_DIFFER.
11661         (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
11662
11663 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11664
11665         * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
11666         to the file_matcher parameter.  Pass 0 to it.
11667         (dwarf2_create_include_psymtab): Copy also DIRNAME.
11668         * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
11669         NULL psymtab_to_fullname result.
11670         (psymtab_to_fullname): Remove variable r.  Never return NULL, assemble
11671         an expected filename instead.
11672         (expand_symtabs_matching_via_partial): Add basenames parameter to the
11673         file_matcher parameter.  Call also psymtab_to_fullname, after newly
11674         considering BASENAMES_MAY_DIFFER.
11675         * source.c (rewrite_source_path): Remove static.
11676         * source.h (rewrite_source_path): New declaration.
11677         * symfile.h (struct quick_symbol_functions): Add basenames parameter to
11678         the expand_symtabs_matching field.  Comment it.
11679         * symtab.c (file_matches): New function comment.  Add parameter
11680         basenames, implement it.
11681         (search_symbols_file_matches): Add basenames parameter.  Update the
11682         file_matches caller.
11683         (search_symbols): Match FILES also against symtab_to_fullname.
11684         Optimize it for BASENAMES_MAY_DIFFER.
11685
11686 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11687
11688         * source.c (print_source_lines_base): Print for TUI also "fullname".
11689         * tui/tui-data.c (init_content_element): Change tui_locator_element
11690         field to full_name.
11691         * tui/tui-data.h (struct tui_locator_element): Likewise.
11692         * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
11693         tui_update_locator_filename calls to tui_update_locator_fullname.
11694         Replace symtab->filename refererence by symtab_to_fullname call.
11695         * tui/tui-out.c (tui_field_string): Check for "fullname" now.
11696         * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
11697         field to full_name.  Replace symtab->filename refererence by
11698         symtab_to_fullname call.
11699         (tui_show_symtab_source): Rename parameter to fullname.  Change
11700         tui_locator_element field to full_name.
11701         * tui/tui-stack.c: Include source.h.
11702         (tui_set_locator_filename): Rename the declaration to ...
11703         (tui_set_locator_fullname): ... here.  Rename its parameter to
11704         fullname, updates its comment.
11705         (tui_set_locator_info): Rename its parameter to fullname.
11706         (tui_set_locator_filename): Rename the definition to ...
11707         (tui_set_locator_fullname): ... here.  Rename its parameter to
11708         fullname, updates its comment.  Change tui_locator_element field to
11709         full_name.
11710         (tui_set_locator_info): Rename its parameter to fullname.
11711         (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
11712         (tui_update_locator_filename): Rename to ...
11713         (tui_update_locator_fullname): ... here. Rename callee to
11714         tui_set_locator_fullname.
11715         (tui_show_frame_info): Replace symtab->filename refererence by
11716         symtab_to_fullname call.
11717         * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
11718         (tui_update_locator_fullname): ... here.
11719         * tui/tui-winsource.c (tui_display_main): Rename the callee to
11720         tui_update_locator_fullname.  Replace symtab->filename refererence by
11721         symtab_to_fullname call.
11722         * tui/tui.c (tui_show_source): Rename its parameter to fullname.
11723         Rename the callee to tui_update_locator_fullname.
11724         * tui/tui.h (tui_show_source): Rename its parameter to fullname.
11725
11726 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11727
11728         * ada-lang.c (user_select_syms): Replace symtab->filename refererences
11729         by symtab_to_filename_for_display calls.
11730         * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
11731         (clear_command): New variable sal_fullname, initialize it.  Replace
11732         compare_filenames_for_search by filename_cmp with sal_fullname.
11733         (say_where, update_static_tracepoint): Replace symtab->filename
11734         refererences by symtab_to_filename_for_display calls.
11735         * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
11736         Likewise.
11737         * dwarf2read.c: Include source.h.
11738         (fixup_go_packaging): Replace symtab->filename refererences by
11739         symtab_to_filename_for_display calls.
11740         * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
11741         Replace symtab->filename refererences by symtab_to_filename_for_display
11742         calls.
11743         (create_sals_line_offset, convert_linespec_to_sals): New variable
11744         fullname, initialize it, replace symtab->filename reference by the
11745         variable.
11746         * linux-fork.c: Include source.h.
11747         (info_checkpoints_command): Replace symtab->filename refererences by
11748         symtab_to_filename_for_display calls.
11749         * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
11750         by symtab_to_filename_for_display calls.
11751         * mdebugread.c: Include source.h.
11752         (psymtab_to_symtab_1): Replace symtab->filename refererences by
11753         symtab_to_filename_for_display calls.
11754         * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
11755         (mi_cmd_file_list_exec_source_files): Likewise.
11756         * printcmd.c: Include source.h.
11757         (build_address_symbolic): Replace symtab->filename refererences by
11758         symtab_to_filename_for_display calls.
11759         * psymtab.c (partial_map_symtabs_matching_filename)
11760         (read_psymtabs_with_fullname): Call compare_filenames_for_search also
11761         with psymtab_to_fullname.
11762         * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
11763         by symtab_to_filename_for_display calls.
11764         (stpy_get_filename): New variable filename, initialize it, use instead
11765         of symtab->filename refererences.
11766         (salpy_str): Make variable filename const char *.  Replace
11767         symtab->filename refererences by symtab_to_filename_for_display calls.
11768         * skip.c: Include source.h and filenames.h.
11769         (skip_file_command): Remove const from the symtab variable.  Replace
11770         symtab->filename refererences by symtab_to_fullname call.
11771         (function_name_is_marked_for_skip): New variables searched_for_fullname
11772         and fullname.  Use them to search also with symtab's fullname.
11773         * source.c (find_source_lines): Replace symtab->filename refererences
11774         by symtab_to_filename_for_display calls.
11775         (print_source_lines_base): New variable filename, use it instead of
11776         symtab->filename.  Replace symtab->filename refererences by
11777         symtab_to_filename_for_display calls.
11778         (line_info, forward_search_command): Replace symtab->filename
11779         refererences by symtab_to_filename_for_display calls.
11780         (reverse_search_command): Replace symtab->filename refererences by
11781         symtab_to_filename_for_display calls.  New variable filename for it.
11782         * stack.c (frame_info): Likewise.
11783         * symmisc.c: Include source.h.
11784         (dump_objfile, dump_symtab_1, maintenance_print_symbols)
11785         (maintenance_info_symtabs): Replace symtab->filename refererences by
11786         symtab_to_filename_for_display calls.
11787         * symtab.c (iterate_over_some_symtabs): Call
11788         compare_filenames_for_search also with symtab_to_fullname.
11789         (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
11790         symtab->filename refererences by symtab_to_filename_for_display calls.
11791         (find_line_symtab): Replace symtab->filename refererences by
11792         symtab_to_filename_for_display calls.
11793         (file_matches): Replace filename_cmp by compare_filenames_for_search.
11794         (print_symbol_info): Make the last parameter const char *.  New
11795         variable s_filename.  Use it in the function.
11796         (symtab_symbol_info): Make the last_filename variable const char *.
11797         Replace symtab->filename refererences by symtab_to_filename_for_display
11798         calls.
11799         (rbreak_command): New variable fullname.  Use it.  Replace
11800         symtab->filename refererence by symtab_to_filename_for_display call.
11801         * tracepoint.c (set_traceframe_context, trace_find_line_command)
11802         (print_one_static_tracepoint_marker): Replace symtab->filename
11803         refererences by symtab_to_filename_for_display calls.
11804         * tui/tui-source.c (tui_set_source_content): New variables filename and
11805         s_filename.  Replace symtab->filename refererences by this variable.
11806         Replace other symtab->filename refererences by
11807         symtab_to_filename_for_display calls.
11808
11809 2013-02-03  Eldar Gaynetdinov <hal9000ed2k@gmail.com>
11810             Jan Kratochvil  <jan.kratochvil@redhat.com>
11811
11812         Add a new variable that controls a way in which filenames are
11813         displayed.
11814         * NEWS (set filename-display): New entry.
11815         * source.c (filename_display_basename, filename_display_relative)
11816         (filename_display_absolute, filename_display_kind_names)
11817         (filename_display_string, show_filename_display_string)
11818         (symtab_to_filename_for_display): New.
11819         (_initialize_source): Added initialization of 'filename-display'
11820         variable.
11821         * source.h (symtab_to_filename_for_display): Added declaration.
11822         * stack.c (print_frame): Added new variable and calling of a new
11823         function and condition with this variable. Changed third argument of
11824         calling of a function.
11825
11826 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11827
11828         * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
11829         Rename field reference filename to fullname.
11830         * tui/tui-data.h (struct tui_source_info): Rename field filename to
11831         fullname.  New comment for it.
11832         * tui/tui-source.c (tui_set_source_content): Rename field reference
11833         filename to fullname.  Initialize field by symtab_to_fullname now.
11834         * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
11835         reference filename to fullname.  Use symtab_to_fullname during
11836         comparison.
11837
11838 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11839
11840         Code cleanup.
11841         * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
11842         (dw2_expand_symtabs_with_fullname): ... here.  Rename parameter
11843         filename to fullname.  Rename variable this_name to this_fullname.
11844         Lowercase FILENAME_CMP call.
11845         (dw2_find_symbol_file): New comment for the returned string.
11846         (dwarf2_gdb_index_functions): Rename the function to
11847         dw2_expand_symtabs_with_fullname.
11848         * psymtab.c (read_psymtabs_with_filename): Rename to ...
11849         (read_psymtabs_with_fullname): ... here.  Rename parameter filename to
11850         fullname.
11851         (psym_functions): Rename the function to read_psymtabs_with_fullname.
11852         * symfile.h (struct quick_symbol_functions): Rename field
11853         expand_symtabs_with_filename to expand_symtabs_with_fullname and its
11854         parameter filename to fullname.  Document returned string meaning for
11855         find_symbol_file.
11856         * symtab.c (find_line_symtab): Rename the called function to
11857         expand_symtabs_with_fullname.
11858
11859 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11860
11861         Code cleanup.
11862         * breakpoint.c (clear_command): Remove variable is_abs, unify the
11863         call of filename_cmp with compare_filenames_for_search.
11864         * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
11865         is_abs, unify the call of FILENAME_CMP with
11866         compare_filenames_for_search.  New gdb_asserts for real_path and name.
11867         Unify the call of compare_filenames_for_search with FILENAME_CMP.
11868         * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
11869         * symfile.h (struct quick_symbol_functions): Extend the comment for
11870         map_symtabs_matching_filename.
11871         * symtab.c (compare_filenames_for_search): Remove the function comment
11872         relative path requirement.  Handle absolute filenames, with a comment.
11873         (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
11874         FILENAME_CMP with compare_filenames_for_search.  New gdb_asserts for
11875         real_path and name.  Unify the call of compare_filenames_for_search
11876         with FILENAME_CMP.
11877         (iterate_over_symtabs): New gdb_assert on REAL_PATH.
11878
11879 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11880
11881         Code cleanup.
11882         * breakpoint.c (print_breakpoint_location): Replace bp_location field
11883         source_file references by symtab field references.  Remove variables
11884         sal and fullname.
11885         (momentary_breakpoint_from_master, add_location_to_breakpoint):
11886         (clear_command, say_where): Replace bp_location field source_file
11887         references by symtab field references.
11888         (bp_location_dtor): Remove the source_file reference.
11889         (update_static_tracepoint): Replace bp_location field source_file
11890         references by symtab field references.
11891         (breakpoint_free_objfile): New function.
11892         * breakpoint.h (struct bp_location): Extend the comment for line_number.
11893         Replace the field source_file by field symtab, extend its comment.
11894         (breakpoint_free_objfile): New declaration.
11895         * objfiles.c (free_objfile): Call breakpoint_free_objfile.
11896         * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
11897         field source_file references by symtab field references.
11898
11899 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11900
11901         Replace xfullpath calls by gdb_realpath calls.
11902         * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
11903         function comment.
11904         * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
11905         Remove it from the iterate_over_some_symtabs call.
11906         (dw2_map_symtabs_matching_filename): Remove parameter full_path.
11907         Remove it from the dw2_map_expand_apply calls, remove a block handling
11908         it.
11909         * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
11910         Remove it from the iterate_over_some_symtabs call.
11911         (partial_map_symtabs_matching_filename): Remove parameter full_path.
11912         Remove it from the partial_map_expand_apply calls, remove a block
11913         handling it.  Drop gdb_realpath call and cleanups from the real_path
11914         handling.
11915         * source.c (openp): Drop the comment part about xfullpath.  Replace
11916         xfullpath calls by gdb_realpath calls.
11917         (find_and_open_source): Replace xfullpath call by gdb_realpath call.
11918         * symfile.h (struct quick_symbol_functions): Remove parameter full_path
11919         from method map_symtabs_matching_filename and its comment.
11920         * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
11921         gdb_realpath call.
11922         * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
11923         remove it also from the function comment, remove a block handling it.
11924         Drop gdb_realpath call and cleanups from the real_path handling.
11925         (iterate_over_symtabs): Drop variable full_path and its use.
11926         * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
11927         * utils.c (xfullpath): Remove.
11928         * utils.h (xfullpath): Remove.
11929
11930 2013-02-01  Andreas Tobler  <andreast@fgznet.ch>
11931
11932         * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
11933         (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
11934         (ALLDEPFILES): Add ppc64-tdep.c.
11935         * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
11936         ppc64-tdep.o to gdb_target_obs.
11937         * ppc64-tdep.h: New file.
11938         * ppc64-tdep.c: New file.
11939         (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
11940         ppc-linux-tdep.c to here.
11941         (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
11942         (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
11943         (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
11944         (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
11945         from ppc-linux-tdep.c to here.
11946         (ppc64_convert_from_func_ptr_addr): Rename from
11947         ppc64_linux_convert_from_func_ptr_addr to
11948         ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
11949         here.
11950         * rs6000-tdep.c:
11951         (read_insn): Move from ppc-linux-tdep.c to here.
11952         (insns_match_pattern, insn_d_field, insn_ds_field): Move
11953         from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
11954         * ppc-linux-tdep.c: Include ppc64-tdep.h.
11955         Removed above functions.
11956         (ppc_linux_init_abi): Adjust.
11957
11958 2013-02-01  Aleksandar Ristovski  <aristovski@qnx.com>
11959
11960         * ada-valprint.c (ada_print_floating): Remove unused 'len'.
11961
11962 2013-02-01  Aleksandar Ristovski  <aristovski@qnx.com>
11963
11964         * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
11965
11966 2013-02-01  Pedro Alves  <palves@redhat.com>
11967
11968         * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
11969         * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
11970
11971 2013-02-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
11972
11973         * elfread.c (elf_symfile_read): Limit separate debug info additions to
11974         files with no separate debug info.
11975         * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
11976         * symfile.c (read_symbols): Call find_separate_debug_file_in_section
11977         only for files with no separate debug info.
11978
11979 2013-01-31  Tom Tromey  <tromey@redhat.com>
11980
11981         * jit.c (jit_program_space_data): Rename from jit_inferior_data;
11982         change type.
11983         (struct jit_program_space_data): Rename from jit_inferior_data.
11984         Update comments.
11985         (get_jit_program_space_data): Rename from get_jit_inferior_data.
11986         Change return type.  Attach data to program space.
11987         (jit_program_space_data_cleanup): Rename from
11988         jit_inferior_data_cleanup; change argument type.
11989         (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
11990         change type.
11991         (jit_register_code): Update.
11992         (jit_update_inferior_cache): Remove.
11993         (jit_breakpoint_deleted): Get jit data from the location's program
11994         space.
11995         (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
11996         'ps_data', change type.
11997         (jit_inferior_init, jit_breakpoint_re_set_internal)
11998         (jit_event_handler): Update.
11999         (free_objfile_data): Get data from objfile's program space.
12000         (_initialize_jit): Update.
12001
12002 2013-01-31  Tom Tromey  <tromey@redhat.com>
12003
12004         PR gdb/13987:
12005         * jit.c (struct jit_inferior_data) <cached_code_address,
12006         jit_breakpoint>: New fields.
12007         (jit_breakpoint_re_set_internal): Fix logging.  Only create
12008         breakpoint if cached address has changed.
12009         (jit_update_inferior_cache, jit_breakpoint_deleted): New
12010         functions.
12011         (_initialize_jit): Register breakpoint deleted observer.
12012
12013 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
12014
12015         * infrun.c (handle_syscall_event): Remove unused gdbarch.
12016         (save_infcall_suspend_state): Ifdef out unused inf.
12017         (restore_infcall_suspend_state): Ifdef out unused inf.
12018         * jit.c (jit_register_code): Remove unused i, b, inf_data.
12019         (jit_frame_sniffer): Remove unused inf_data.
12020
12021 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
12022
12023         * c-exp.y (classify_inner_name): Remove unused type.
12024         * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
12025         in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
12026         need_escape.
12027         (c_get_string): Remove unused kind.
12028         * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
12029
12030 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
12031
12032         * charset.c (intermediate_encoding): Remove unused i.
12033         * completer.c (signal_completer): Remove unused i.
12034         * continuations.c (discard_my_continuations_1): Remove unused
12035         continuation_ptr.
12036         * corelow.c (core_close): Remove unuseD name.
12037         (get_core_siginfo): Remove unused pid.
12038         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
12039         i, cps.
12040         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
12041         (loclist_describe_location): Remove unused first.
12042         * event-top.c (command_line_handler): Remove unused got_eof.
12043         * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
12044         (resize_section_table): Remove unused old_value.
12045         * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
12046         * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
12047         * i386-tdep.c (i386_process_record): Remove unused rex.
12048         * infcmd.c (get_return_value): Remove unused uiout.
12049         * jv-lang.c (type_from_class): Remove unused is_array.
12050         * jv-valprint.c (java_val_print): Remove unused i.
12051         * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
12052         * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
12053         * m2-typeprint.c (m2_print_type): Remove unused code.
12054         * macroexp.c (get_character_constant): Remove unused body_start.
12055         (macro_stringify): Remove unused result.
12056         * objc-lang.c (find_methods): Remove unused gdbarch.
12057         * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
12058         * regcache.c (regcache_cooked_read): Remove unused gdbarch.
12059         * stack.c (print_frame_args): Remove unused summary.
12060         * thread.c (thread_apply_command): Remove unused p.
12061         * valarith.c (value_x_unop): Remove unused mangle_ptr.
12062         * valops.c (search_struct_method): Remove unused skip.
12063         * valprint.c (generic_val_print): Remove unused byte_order.
12064         * varobj.c (varobj_update): Remove unused changed.
12065         * cli/cli-cmds.c (complete_command): Remove unused next_item.
12066         (alias_command): Remove unused c.
12067         * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
12068         * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
12069         format.
12070         (mi_cmd_data_write_memory): Remove unused word_format.
12071         (mi_cmd_data_write_memory_bytes): Remove unused r.
12072         * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
12073         p_start, p_end.
12074         * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
12075         * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
12076         line_width.
12077
12078 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
12079
12080         * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
12081         * symtab.c (iterate_over_symtabs): Remove unused s.
12082         (find_pc_sect_symtab): Remove unused pspAce.
12083         (find_pc_sect_line): Remove unused alt_symtab.
12084         (find_pcs_for_symtab_line): Remove unused ix, previous_function.
12085         (completion_list_add_name): Remove unused newsize.
12086
12087 2013-01-31  Tom Tromey  <tromey@redhat.com>
12088
12089         PR c++/14998:
12090         * dwarf2read.c (read_tag_ptr_to_member_type): Handle
12091         TYPE_CODE_FUNC.
12092
12093 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
12094
12095         * target.c (target_read_string): Remove unused origlen.
12096
12097 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
12098
12099         * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
12100         * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
12101         * ax-general.c (ax_print): Remove unused is_float.
12102         * blockframe.c (block_innermost_frame): Remove unused start, end.
12103         * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
12104
12105 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
12106
12107         * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
12108         (svr4_read_so_list): Remove unused lmo.
12109         * solib-target.c (solib_target_relocate_section_addresses): Remove
12110         unused flags.
12111
12112 2013-01-30  Tom Tromey  <tromey@redhat.com>
12113
12114         * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
12115
12116 2013-01-30  Tom Tromey  <tromey@redhat.com>
12117
12118         * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
12119         * utils.c (gnu_debuglink_crc32): Remove.
12120         * utils.h (gnu_debuglink_crc32): Don't declare.
12121
12122 2013-01-30  Tom Tromey  <tromey@redhat.com>
12123
12124         * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
12125         (read_structure_type, read_enumeration_type): Remove cast.
12126
12127 2013-01-30  Tom Tromey  <tromey@redhat.com>
12128
12129         * dwarf2read.c (read_namespace_type): Remove cast.
12130         (read_typedef): Likewise.
12131
12132 2013-01-29  Tom Tromey  <tromey@redhat.com>
12133
12134         * dwarf2read.c (free_dwo_file): Remove assert.
12135
12136 2013-01-29  Tom Tromey  <tromey@redhat.com>
12137
12138         * value.c (deprecated_set_value_modifiable): Remove.
12139         * value.h (deprecated_set_value_modifiable): Remove.
12140
12141 2013-01-28  Doug Evans  <dje@google.com>
12142
12143         * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
12144         to addresses from dwo files.
12145
12146 2013-01-25  Siva Chandra Reddy  <sivachandra@google.com>
12147
12148         * valops.c (find_overload_match): Remove unused argument 'lax'.
12149         * value.h: Remove unused argument 'lax' from the declaration of
12150         find_overload_match.
12151         * eval.c (value_subexp_standard): Do not pass a 'lax' argument
12152         to find_overload_match.
12153         * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
12154         argument to find_overload_match.
12155
12156 2013-01-25  Tom Tromey  <tromey@redhat.com>
12157
12158         * dwarf2read.c (processing_has_namespace_info): Remove.
12159         (struct dwarf2_cu) <processing_has_namespace_info>: New field.
12160         (process_die, read_func_scope, dwarf2_start_symtab)
12161         (new_symbol_full): Update.
12162
12163 2013-01-25  Tom Tromey  <tromey@redhat.com>
12164
12165         * cp-namespace.c (cp_set_block_scope): Remove.
12166         * cp-support.h (cp_set_block_scope): Remove.
12167         * dbxread.c: Include block.h.
12168         (cp_set_block_scope): New function.
12169         (process_one_symbol): Update.
12170         * dwarf2read.c (read_func_scope): Use block_set_scope.
12171
12172 2013-01-25  Pedro Alves  <palves@redhat.com>
12173
12174         * remote.c (add_current_inferior_and_thread): Tweak comment.
12175
12176 2013-01-25  Tom Tromey  <tromey@redhat.com>
12177
12178         * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
12179         (cp_add_using_directive): Add 'copy_names' argument.
12180         * cp-support.h (cp_add_using_directive): Update.
12181         (struct using_direct) <import_src, import_dest, alias,
12182         declaration>: Now const.
12183         * dwarf2read.c (read_import_statement): Use obconcat.
12184         Don't copy names passed to cp_add_using_directive.
12185
12186 2013-01-25  Tom Tromey  <tromey@redhat.com>
12187
12188         * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
12189
12190 2013-01-25  Pedro Alves  <palves@redhat.com>
12191
12192         * remote.c (stop_reply_extract_thread): New.
12193         (add_current_inferior_and_thread): New parameter 'wait_status'.
12194         Handle it.
12195         (remote_start_remote): Pass wait status to
12196         add_current_inferior_and_thread.
12197         (extended_remote_run): Update comment.
12198         (extended_remote_create_inferior_1): Pass wait status to
12199         add_current_inferior_and_thread.
12200
12201 2013-01-25  Andrew Burgess  <aburgess@broadcom.com>
12202             Ulrich Weigand  <uweigand@de.ibm.com>
12203
12204         * valarith.c (value_vector_widen): New function for replicating a
12205         scalar into a vector.
12206         (value_binop): Use value_vector_widen to widen scalar to vector
12207         rather than casting, this better matches gcc C behaviour.
12208         * valops.c (value_casst): Update logic for casting between vector
12209         types, and for casting from scalar to vector, try to match gcc C
12210         behaviour.
12211         * value.h (value_vector_widen): Declare.
12212         * opencl-lang.c (opencl_value_cast): New opencl specific casting
12213         function, handle special case for casting scalar to vector.
12214         (opencl_relop): Use opencl_value_cast.
12215         (evaluate_subexp_opencl): Use opencl_value_cast instead of
12216         value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
12217         in order to use opencl_value_cast.
12218
12219 2013-01-25  Yao Qi  <yao@codesourcery.com>
12220
12221         * event-loop.c: Include "queue.h".
12222         (gdb_event_p): New typedef.
12223         (DECLARE_QUEUE_P): Use.
12224         (DEFINE_QUEUE_P): Use.
12225         (async_queue_event): Remove.
12226         (gdb_event_xfree): New.
12227         (initialize_event_loop): New.
12228         (process_event): Use QUEUE macros.
12229         (event_queue): Remove.
12230         (gdb_wait_for_event): Caller update.
12231         (check_async_event_handlers): Likewise.
12232         (poll_timers): Likewise.
12233         * event-loop.h (initialize_event_loop): Declare.
12234         * event-loop.c (gdb_event_xfree): New.
12235         * top.c (gdb_init): Call initialize_event_loop.
12236
12237 2013-01-25  Yao Qi  <yao@codesourcery.com>
12238
12239         * event-loop.c (async_queue_event): Remove one parameter
12240         'position'.  Remove code handling 'position' == TAIL.
12241         (gdb_wait_for_event): Caller update.
12242         (check_async_event_handlers): Caller update.
12243         (poll_timers): Caller update.
12244         * event-loop.h (enum queue_position): Remove.
12245
12246 2013-01-25  Maxim Kuvyrkov  <maxim@kugelworks.com>
12247
12248         * MAINTAINERS: Update my email.
12249
12250 2013-01-25  Yao Qi  <yao@codesourcery.com>
12251
12252         * main.c (print_gdb_help): Remove "--epoch" from the help
12253         message.
12254
12255 2013-01-24  Ulrich Weigand  <uweigand@de.ibm.com>
12256
12257         * symtab.c (skip_prologue_using_sal): Consider a file
12258         change the same as an increased line number
12259
12260 2013-01-24  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
12261
12262         * MAINTAINERS (Write After Approval): Add myself to the list.
12263
12264 2013-01-24  Tom Tromey  <tromey@redhat.com>
12265
12266         * ada-lang.h (ada_decode_symbol): Make return type const.
12267         * ada-lang.c (ada_decode_symbol): Likewise.
12268
12269 2013-01-23  Doug Evans  <dje@google.com>
12270
12271         * linespec.c (find_linespec_symbols): Make static.
12272
12273 2013-01-23  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
12274
12275         * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
12276         type on float conversion for complex type.
12277
12278 2013-01-23  Siva Chandra Reddy  <sivachandra@google.com>
12279
12280         Add a new class gdb.Architecture which exposes GDB's
12281         internal representation of architecture via GDB Python API.
12282         * Makefile.in: Add entries corresponding to the new file
12283         python/py-arch.c.
12284         * NEWS (Python Scripting): Add entries for the new class
12285         gdb.Architecture and the new method gdb.Frame.architecture.
12286         * python/py-arch.c: Implement gdb.Architecture class.
12287         * python/py-frame.c (frapy_arch): Implement the method
12288         gdb.Frame.architecture().
12289         (frame_object_methods): Add 'architecture' to the method table.
12290         * python/python-internal.h: Add declarations of new utility
12291         functions.
12292         * python/python.c (_initialize_python): Initialize
12293         gdb.Architecture class.
12294
12295 2013-01-23  Doug Evans  <dje@google.com>
12296
12297         Work around binutils/15021.
12298         * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
12299         type_unit_group out of union s.  All uses updated.
12300         (read_index_from_section): Watch for index version 8.
12301         (follow_die_sig): If using .gdb_index version <= 7, record the TU as
12302         an imported symtab.
12303         (write_psymtabs_to_index): Increment version number to 8.
12304
12305 2013-01-22  Pedro Alves  <palves@redhat.com>
12306
12307         * annotate.c (breakpoint_changed): Skip if breakpoint is not
12308         user-visible.
12309
12310 2013-01-22  Pedro Alves  <palves@redhat.com>
12311
12312         * annotate.c (annotate_breakpoints_changed): Rename to ...
12313         (annotate_breakpoints_invalid): ... this.  Make static.
12314         (breakpoint_changed): Adjust.
12315         (_initialize_annotate): Always install the observers.  Install a
12316         "breakpoint_created" observer.
12317         * annotate.h (annotate_breakpoints_changed): Delete declaration.
12318         * breakpoint.c (set_breakpoint_condition)
12319         (breakpoint_set_commands, do_map_commands_command)
12320         (init_raw_breakpoint, clear_command, set_ignore_count)
12321         (enable_breakpoint_disp): No longer call
12322         annotate_breakpoints_changed.
12323
12324 2013-01-22  Pedro Alves  <palves@redhat.com>
12325
12326         * annotate.c: Include "inferior.h".
12327         (frames_invalid_emitted)
12328         (breakpoints_invalid_emitted): New globals.
12329         (async_background_execution_p): New function.
12330         (annotate_breakpoints_changed, annotate_frames_invalid): Skip
12331         emitting the annotation if it has already been emitted.
12332         (annotate_display_prompt): New function.
12333         * annotate.h (annotate_display_prompt): New declaration.
12334         * event-top.c: Include annotate.h.
12335         (display_gdb_prompt): Call annotate_display_prompt.
12336
12337 2013-01-22  Pedro Alves  <palves@redhat.com>
12338
12339         * annotate.c (ignore_count_changed): Delete.
12340         (annotate_breakpoints_changed): Don't clear ignore_count_changed.
12341         (annotate_ignore_count_change): Delete.
12342         (annotate_stopped): Don't emit a delayed breakpoints-changed
12343         annotation.
12344         * annotate.h (annotate_ignore_count_change): Delete.
12345         * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
12346         annotate_ignore_count_change.
12347
12348 2013-01-22  Tom Tromey  <tromey@redhat.com>
12349
12350         * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
12351         require_rvalue for a register location.
12352
12353 2013-01-21  Marc Khouzam  <marc.khouzam@ericsson.com>
12354
12355         * breakpoint.c (print_one_breakpoint_location): Add MI
12356         field 'thread-groups' when printing a breakpoint.
12357         (output_thread_groups): New function.
12358
12359 2013-01-21  Siva Chandra Reddy  <sivachandra@google.com>
12360
12361         * python/lib/gdb/commands/explore.py
12362         (CompoundExplorer.explore_expr): Correct the name of a method
12363         being invoked.
12364         (ExploreTypeCommand.invoke): Add a missing 'return'.
12365
12366 2013-01-21  Tom Tromey  <tromey@redhat.com>
12367
12368         * gdb_obstack.h (obconcat): Move declaration here, from...
12369         * symfile.h (obconcat): ... here.
12370         * gdb_obstack.c: New file.
12371         (obconcat): Move from...
12372         * symfile.c (obconcat): ... here.
12373         * Makefile.in (SFILES): Add gdb_obstack.c.
12374         (COMMON_OBS): Add gdb_obstack.o.
12375
12376 2013-01-21  Tom Tromey  <tromey@redhat.com>
12377
12378         * symfile.h (obsavestring): Don't declare.
12379         * symfile.c (obsavestring): Remove.
12380         * ada-exp.y: Use obstack_copy0, not obsavestring.
12381         * ada-lang.c: Use obstack_copy0, not obsavestring.
12382         * coffread.c: Use obstack_copy0, not obsavestring.
12383         * cp-namespace.c: Use obstack_copy0, not obsavestring.
12384         * dbxread.c: Use obstack_copy0, not obsavestring.
12385         * dwarf2read.c: Use obstack_copy0, not obsavestring.
12386         * jit.c: Use obstack_copy0, not obsavestring.
12387         * mdebugread.c: Use obstack_copy0, not obsavestring.
12388         * psymtab.c: Use obstack_copy0, not obsavestring.
12389         * stabsread.c: Use obstack_copy0, not obsavestring.
12390         * xcoffread.c: Use obstack_copy0, not obsavestring.
12391
12392 2013-01-21  Tom Tromey  <tromey@redhat.com>
12393
12394         * dwarf2read.c (fixup_go_packaging): Save package name
12395         on objfile obstack.
12396         * gdbtypes.c (init_type): Don't copy name.
12397
12398 2013-01-21  Tom Tromey  <tromey@redhat.com>
12399
12400         * dwarf2read.c (struct partial_die_info) <name, scope>: Now
12401         const.
12402         (struct attribute) <u.str>: Now const.
12403         (struct fnfieldlist) <name>: Now const.
12404         (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
12405         (partial_die_parent_scope): Make return type const.
12406         (partial_die_full_name, add_partial_symbol): Update.
12407         (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
12408         'name' const.
12409         (find_file_and_directory): Make 'name' and 'comp_dir' const.
12410         (read_file_scope, read_func_scope, dwarf2_add_field)
12411         (dwarf2_add_member_fn, read_structure_type)
12412         (process_enumeration_scope, read_array_type, read_module_type)
12413         (read_base_type, read_subrange_type): Update.
12414         (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
12415         (new_symbol_full, guess_full_die_structure_name): Update.
12416         (dwarf2_canonicalize_name): Return const type.  Make 'name' const.
12417         (dwarf2_name): Return const type.
12418         (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
12419         const.
12420
12421 2013-01-21  Tom Tromey  <tromey@redhat.com>
12422
12423         * gdbtypes.c (init_type): Make 'name' const.
12424         * gdbtypes.h (init_type): Update.
12425
12426 2013-01-21  Tom Tromey  <tromey@redhat.com>
12427
12428         * buildsym.c (patch_subfile_names): Use set_last_source_file.
12429         (start_symtab): Make 'name' and 'dirname' const.  Use
12430         set_last_source_file.
12431         (restart_symtab, reset_symtab_globals): Use set_last_source_file.
12432         (last_source_file): Define.  Now static.
12433         (set_last_source_file, get_last_source_file): New functions.
12434         * buildsym.h (last_source_file): Don't declare.
12435         (start_symtab): Update.
12436         (set_last_source_file, get_last_source_file): Declare.
12437         * coffread.c (complete_symtab): Use set_last_source_file.
12438         (coff_end_symtab): Likewise.
12439         (coff_symtab_read): Use set_last_source_file, get_last_source_file.
12440         * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
12441         set_last_source_file.
12442         (process_one_symbol): Use get_last_source_file.
12443         * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
12444         (psymtab_to_symtab_1): Use get_last_source_file.
12445         * xcoffread.c (process_linenos): Use get_last_source_file.
12446         (complete_symtab): Use set_last_source_file.
12447         (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
12448         (scan_xcoff_symtab): Use set_last_source_file.
12449
12450 2013-01-21  Tom Tromey  <tromey@redhat.com>
12451
12452         * symtab.c (struct demangled_name_entry) <mangled>: Now const.
12453         (symbol_set_names): Remove casts.  Handle field const-ness.
12454
12455 2013-01-21  Tom Tromey  <tromey@redhat.com>
12456
12457         * dwarf2read.c (new_symbol_full): Remove cast.
12458         * symtab.c (symbol_set_demangled_name): Make 'name' const.
12459         * symtab.h (symbol_set_demangled_name): Update.
12460
12461 2013-01-21  Tom Tromey  <tromey@redhat.com>
12462
12463         * main.c (captured_main): Call bfd_init.
12464
12465 2013-01-21  Tom Tromey  <tromey@redhat.com>
12466
12467         * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
12468         * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
12469         * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
12470         * NEWS: Update.
12471
12472 2013-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
12473
12474         * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
12475
12476 2013-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
12477
12478         Fix gdb.fortran/common-block.exp crash in PIE mode.
12479         * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
12480         LOC_COMMON_BLOCK.
12481         * f-valprint.c (info_common_command_for_block): Expect
12482         LOC_COMMON_BLOCK in gdb_assert.
12483         * symtab.h (struct general_symbol_info): Update comment for the
12484         common_block member.
12485         (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
12486         (enum address_class): New member LOC_COMMON_BLOCK.
12487
12488 2013-01-18  David Blaikie  <dblaikie@gmail.com>
12489
12490         * MAINTAINERS (Write After Approval): Add "David Blaikie".
12491
12492 2013-01-18  Tom Tromey  <tromey@redhat.com>
12493
12494         PR c++/14999:
12495         * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
12496         Call require_rvalue.
12497
12498 2013-01-18  Yao Qi  <yao@codesourcery.com>
12499
12500         * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
12501         (dbx_read_symtab): New declaration.
12502         (dbx_psymtab_to_symtab): Delete.
12503         (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
12504         Rename parameter PST to SELF.  Exchanged two parameters.
12505         (start_psymtab): Caller update.
12506         * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
12507         (dwarf2_read_symtab): New declaration.
12508         (dwarf2_psymtab_to_symtab): Delete.
12509         (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
12510         Rename parameter PST to SELF.  Exchanged two parameters.
12511         (create_partial_symtab): Caller update.
12512         * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
12513         (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
12514         Rename parameter PST to SELF.  Exchanged two parameters.
12515         (parse_partial_symbols, new_psymtab): Caller update.
12516         * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
12517         two parameters.
12518         * psymtab.c (psymtab_to_symtab): Caller update.
12519         * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
12520         (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
12521         Rename parameter PST to SELF.  Exchanged two parameters.
12522         (xcoff_start_psymtab): Caller update.
12523
12524 2013-01-18  Yao Qi  <yao@codesourcery.com>
12525
12526         * infrun.c (proceed): Rename local variable 'oneproc' to
12527         'force_step'.
12528
12529 2013-01-17  Doug Evans  <dje@google.com>
12530
12531         * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
12532         (dw2_build_type_unit_groups): Delete.  All uses updated.
12533
12534         * symtab.h (struct symbol_search): Add comment.
12535
12536 2013-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
12537
12538         * symtab.c (compare_filenames_for_search): New comment for
12539         HAS_DRIVE_SPEC.
12540
12541 2013-01-17  Tom Tromey  <tromey@redhat.com>
12542
12543         * cp-abi.c (cp_abi_completer): Fix typo in assignment.
12544
12545 2013-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
12546
12547         * symtab.c (iterate_over_some_symtabs): New variable cleanups,
12548         initialize it by existing make_cleanup.  Call new do_cleanups.
12549
12550 2013-01-17  Tom Tromey  <tromey@redhat.com>
12551
12552         * cp-abi.c (cp_abi_completer): New function.
12553         (_initialize_cp_abi): Set completer for "set cp-abi".
12554
12555 2013-01-17  Tom Tromey  <tromey@redhat.com>
12556
12557         * mem-break.c: Remove obsolete comment.
12558         * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
12559
12560 2012-01-17  Sanjoy Das <sanjoy@playingwithpointers.com>
12561
12562         * jit.c (jit_reader_load_command): Interpret the jit reader name
12563         as an absolute path if it begins with a forward slash.
12564
12565 2012-01-17  Sanjoy Das <sanjoy@playingwithpointers.com>
12566
12567         PR gdb/14550
12568
12569         * jit.c (finalize_symtab): Ensure that only the global block has a
12570         NULL superblock.
12571
12572 2013-01-17  Pedro Alves  <palves@redhat.com>
12573
12574         * acinclude.m4: Include ../config/plugins.m4,
12575         ../config/largefile.m4 and ../config/lead-dot.m4.  Add comments.
12576         * Makefile.in (aclocal_m4_deps): Update.
12577         * aclocal.m4: Renegerate.
12578
12579 2013-01-16  Doug Evans  <dje@google.com>
12580
12581         * contrib/cc-with-tweaks.sh: Add references to Fission docs.
12582
12583 2013-01-16  Pedro Alves  <palves@redhat.com>
12584             Tom Tromey  <tromey@redhat.com>
12585
12586         PR cli/7221:
12587         * NEWS: Add "catch signal".
12588         * breakpoint.c (base_breakpoint_ops): No longer static.
12589         (bpstat_explains_signal): New function.
12590         (init_catchpoint): No longer static.
12591         (base_breakpoint_explains_signal): New function.
12592         (base_breakpoint_ops): Initialize new field.
12593         * breakpoint.h (enum bpstat_signal_value): New.
12594         (struct breakpoint_ops) <explains_signal>: New field.
12595         (bpstat_explains_signal): Remove macro, declare as function.
12596         (base_breakpoint_ops, init_catchpoint): Declare.
12597         * break-catch-sig.c: New file.
12598         * inferior.h (signal_catch_update): Declare.
12599         * infrun.c (signal_catch): New global.
12600         (handle_syscall_event): Update for change to
12601         bpstat_explains_signal.
12602         (handle_inferior_event): Likewise.  Always handle random signals
12603         via bpstats.
12604         (signal_cache_update): Check signal_catch.
12605         (signal_catch_update): New function.
12606         (_initialize_infrun): Initialize signal_catch.
12607         * Makefile.in (SFILES): Add break-catch-sig.c.
12608         (COMMON_OBS): Add break-catch-sig.o.
12609
12610 2013-01-16  Tom Tromey  <tromey@redhat.com>
12611
12612         * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
12613         (print_one_catch_solib, print_one_catch_syscall)
12614         (print_one_catch_exec, print_one_exception_catchpoint): Emit
12615         "catch-type".
12616
12617 2013-01-16  Yao Qi  <yao@codesourcery.com>
12618
12619         * printcmd.c (current_display_number): Make it static.
12620
12621 2013-01-16  Yao Qi  <yao@codesourcery.com>
12622
12623         * infcmd.c (step_once): Don't check '!single_inst' as it was
12624         checked before.
12625
12626 2013-01-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
12627
12628         * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
12629
12630 2013-01-14  Tom Tromey  <tromey@redhat.com>
12631
12632         * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
12633         set command.
12634         * command.h (add_setshow_string_noescape_cmd): Update.
12635         * corefile.c (set_gnutarget_command): Remove trailing whitespace.
12636         (complete_set_gnutarget): New function.
12637         (_initialize_core): Set the "set gnutarget" completer.
12638
12639 2013-01-14  Tom Tromey  <tromey@redhat.com>
12640
12641         PR symtab/14442:
12642         * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
12643         (c_type_print_modifier): Likewise.
12644         * dwarf2read.c (read_tag_restrict_type): New function.
12645         (read_type_die_1): Handle DW_TAG_restrict_type.
12646         * gdbtypes.c (make_restrict_type): New function.
12647         (recursive_dump_type): Handle TYPE_RESTRICT.
12648         * gdbtypes.h (enum type_flag_values): Renumber.
12649         (enum type_instance_flag_value): Add
12650         TYPE_INSTANCE_FLAG_RESTRICT.
12651         (TYPE_RESTRICT): New macro.
12652         (make_restrict_type): Declare.
12653
12654 2013-01-14  Tom Tromey  <tromey@redhat.com>
12655
12656         PR symtab/14931:
12657         * psymtab.c (struct psymtab_state): New.
12658         (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
12659         functions.
12660         * psympriv.h (make_cleanup_discard_psymtabs): Declare.
12661         * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
12662
12663 2013-01-14  Richard Sharman  <richard_sharman@mitel.com>
12664             Pedro Alves  <palves@redhat.com>
12665
12666         PR remote/14786
12667
12668         * remote.c (remote_threads_info): Make a copy of the reply from
12669         qfThreadInfo and use that instead of rs->buf.
12670
12671 2013-01-14  Yao Qi  <yao@codesourcery.com>
12672
12673         * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
12674         (dbx_psymtab_to_symtab): Likewise.
12675         * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
12676         * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
12677         * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
12678
12679 2013-01-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
12680
12681         * parse.c (parse_exp_in_context): New variable inner_chain.  Call
12682         make_cleanup_restore_current_language.  Call set_language.  Move
12683         OLD_CHAIN and INNER_CHAIN cleanups.
12684         * utils.c (do_restore_current_language)
12685         (make_cleanup_restore_current_language): New functions.
12686         * utils.h (make_cleanup_restore_current_language): New declaration.
12687
12688 2013-01-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
12689
12690         * source.c (symtab_to_fullname): Apply rewrite_source_path also for
12691         non-existing files.
12692
12693         * source.c (symtab_to_fullname): Do not prepend DIRNAME for
12694         non-existing files if FILENAME is already absolute.
12695
12696 2013-01-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
12697
12698         * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
12699         fputs_filtered.  Append trailing newline.
12700
12701 2013-01-11  Yao Qi  <yao@codesourcery.com>
12702             Stan Shebs  <stan@codesourcery.com>
12703
12704         * psymtab.c (init_psymbol_list): Clarify the comment.
12705
12706 2013-01-11  Yao Qi  <yao@codesourcery.com>
12707
12708         * breakpoint.c (print_one_breakpoint_location): Remove dead code.
12709         (update_dprintf_command_list): Assert that 'printf_line' is
12710         non-null.  Remove condition check.
12711
12712 2013-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
12713
12714         Code cleanup.
12715         * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
12716         type const char *.
12717         * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
12718         const char *.
12719         * tui/tui-source.h (tui_source_is_displayed): Likewise.
12720
12721 2013-01-09  Anthony Green  <green@moxielogic.com>
12722
12723         * cp-abi.c (cplus_print_vtable): Don't return value from void
12724         function.
12725         * ada-lang.c (re_set_catch_assert): Ditto.
12726
12727 2013-01-09  Doug Evans  <dje@google.com>
12728
12729         * symfile.h (quick_symbol_functions): Delete member
12730         pre_expand_symtabs_matching.  All uses removed.
12731         * dwarf2read.c (dw2_lookup_symbol): Implement.
12732         (dw2_do_expand_symtabs_matching): Delete.
12733         (dw2_pre_expand_symtabs_matching): Delete.
12734         (struct dw2_symtab_iterator): New type.
12735         (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
12736         (dw2_expand_symtabs_for_function): Rewrite.
12737         (dwarf2_gdb_index_functions): Update.
12738         * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
12739         (psym_functions): Update.
12740
12741 2013-01-09  Tom Tromey  <tromey@redhat.com>
12742
12743         * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
12744         * configure: Rebuild.
12745         * configure.ac: Add somread.o to the build if BFD has SOM
12746         support.
12747         * somread.c: Include som/aout.h, not syms.h.
12748         (som_symtab_read): Use som_external_symbol_dictionary_record.
12749         Unpack records manually.
12750         (_initialize_somread): Declare.
12751
12752 2012-01-08  Mike Frysinger  <vapier@gentoo.org>
12753
12754         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
12755         Cast return_address to 64bits.
12756
12757 2013-01-08  Hui Zhu  <hui_zhu@mentor.com>
12758
12759         * printcmd.c: Remove define of function output_command.
12760         * tracepoint.c: Remove extern of function output_command.
12761         * valprint.h: (output_command): New extern.
12762
12763 2013-01-07  Tom Tromey  <tromey@redhat.com>
12764
12765         * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
12766         Remove.
12767         (objc_language_defn): Use c_printchar, c_printstr,
12768         c_emit_char.
12769
12770 2013-01-07  Tom Tromey  <tromey@redhat.com>
12771
12772         PR cli/7719:
12773         * NEWS: Update.
12774         * ada-valprint.c (printstr, print_field_values): Remove
12775         "inspect_it" code.
12776         * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
12777         code.
12778         * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
12779         code.
12780         * m2-lang.c (m2_printstr): Remove "inspect_it" code.
12781         * main.c (captured_main): Remove "epoch" argument.
12782         * objc-lang.c (objc_printstr): Remove "inspect_it" code.
12783         * p-lang.c (pascal_printstr): Remove "inspect_it" code.
12784         * p-valprint.c (pascal_object_print_value_fields): Remove
12785         "inspect_it" code.
12786         * printcmd.c (print_command_1): Remove 'inspect' argument.
12787         (print_command, call_command): Update.
12788         (inspect_command): Remove.
12789         (_initialize_printcmd): Make "inspect" an alias for "print".
12790         * top.c (epoch_interface): Remove.
12791         * top.h (epoch_interface): Remove.
12792         * valprint.c (user_print_options): Update.
12793         (print_converted_chars_to_obstack): Remove "inspect_it" code.
12794         * valprint.h (struct value_print_options) <inspect_it>: Remove
12795         field.
12796
12797 2013-01-04  Tom Tromey  <tromey@redhat.com>
12798
12799         * valprint.h (read_string): Add 'extern'.
12800
12801 2013-01-07  Joel Brobecker  <brobecker@adacore.com>
12802
12803         * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
12804         used to decide whether to define darwin_read_dyld_info or not.
12805
12806 2013-01-03  Pierre Muller  <muller@sourceware.org>
12807
12808         * main.c (relocate_gdb_directory): Avoid calling stat function
12809         if DIR is empty.
12810
12811 2013-01-03  Yao Qi  <yao@codesourcery.com>
12812
12813         * psymtab.c (fixup_psymbol_section): Update declaration.
12814         (fixup_psymbol_section): Remove code returning value.
12815
12816 2013-01-03  Yao Qi  <yao@codesourcery.com>
12817
12818         * symtab.h: Remove some out of date comments.
12819          (enum exception_event_kind): Move it ...
12820         * breakpoint.c: ... here.
12821
12822 2013-01-02  Iain Sandoe  <developer@sandoe-acoustics.co.uk>
12823
12824         PR gdb/14405
12825         * darwin-nat.c (darwin_read_dyld_info): Only build if
12826         TASK_DYLD_INFO_COUNT is defined.
12827         (darwin_xfer_partial): Call darwin_read_dyld_info only if
12828         TASK_DYLD_INFO_COUNT is defined.
12829
12830 2013-01-02  Tom Tromey  <tromey@redhat.com>
12831
12832         * symfile.h (struct ecoff_debug_hack): Remove.
12833         * objfiles.c: Don't include mdebugread.h.
12834
12835 2013-01-02  Tom Tromey  <tromey@redhat.com>
12836
12837         * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
12838         * configure.ac: Check for Mach-O support in BFD.  Update
12839         CONFIG_OBS.
12840         * configure: Rebuild.
12841
12842 2013-01-02  Tom Tromey  <tromey@redhat.com>
12843
12844         * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
12845         * configure.ac: Use GDB_AC_CHECK_BFD.
12846         * configure: Rebuild.
12847
12848 2013-01-01  Maxim Kuvyrkov  <maxim.kuvyrkov@gmail.com>
12849
12850         * MAINTAINERS: Update my email.
12851
12852 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
12853
12854         * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
12855
12856 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
12857
12858         * rs6000-nat.c (bss_data_overlap): New function.
12859         (vmap_symtab): Use it to adjust the .bss section's offset.
12860
12861 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
12862
12863         Update year range in copyright notice of all files.
12864
12865 2013-01-01, 13  Joel Brobecker  <brobecker@adacore.com>
12866
12867         * top.c (print_gdb_version): Update copyright year.
12868
12869 For older changes see ChangeLog-2012.
12870 \f
12871 Local Variables:
12872 mode: change-log
12873 left-margin: 8
12874 fill-column: 74
12875 version-control: never
12876 coding: utf-8
12877 End: