Plug target side conditions and commands leaks.
[external/binutils.git] / gdb / ChangeLog
1 2013-11-29  Pedro Alves  <palves@redhat.com>
2
3         * breakpoint.c (build_target_condition_list): Release previous
4         conditions.
5         (build_target_command_list): Release previous commands.
6         (bp_location_dtor): Release target conditions and commands.
7         * remote.c (remote_add_target_side_condition): Don't release
8         conditions.
9         (remote_add_target_side_commands): Don't release commands.
10
11 2013-11-29  Yao Qi  <yao@codesourcery.com>
12             Pedro Alves  <palves@redhat.com>
13
14         * dcache.c (dcache_read_line): Use current_target.beneath
15         instead of &current_target.
16         * target.c (memory_xfer_partial_1): Factor code out to ...
17         (raw_memory_xfer_partial): ... it.  New function.
18         (target_xfer_partial): Call raw_memory_xfer_partial if OBJECT
19         is TARGET_OBJECT_RAW_MEMORY.
20
21 2013-11-28  Doug Evans  <xdje42@gmail.com>
22
23         * breakpoint.h (gdbpy_breakpoint_object): Renamed from
24         breakpoint_object.  All uses updated.
25         * python/python-internal.h (gdbpy_breakpoint_object): Renamed from
26         breakpoint_object.  All uses updated.
27         * python.c (*): All uses of breakpoint_object updated.
28         * python.h (*): All uses of breakpoint_object updated.
29         * python/py-breakpoint.c (*): All uses of breakpoint_object updated.
30         * python/py-finishbreakpoint.c (*): Ditto.
31
32 2013-11-28  Doug Evans  <xdje42@gmail.com>
33
34         * configure.ac: Add comments delineating libpython and libmcheck.
35         * configure: Regenerate.
36
37 2013-11-28  Andrew Burgess  <aburgess@broadcom.com>
38             Pedro Alves  <palves@redhat.com>
39
40         * valprint.c (value_check_printable): If the value is entirely
41         unavailable, print a single "<unavailable>" instead of printing
42         all subfields.
43
44 2013-11-28  Pedro Alves  <palves@redhat.com>
45
46         * frame.c (get_prev_frame_1) <stop_reason != UNWIND_NO_REASON>:
47         Add "set debug frame" output.
48         (frame_stop_reason_symbol_string): New function.
49
50 2013-11-28  Pedro Alves  <palves@redhat.com>
51
52         * frame-unwind.c (default_frame_unwind_stop_reason): Return
53         UNWIND_OUTERMOST if the frame's ID is outer_frame_id.
54         * frame.c (get_prev_frame_1): Remove outer_frame_id check.
55
56 2013-11-28  Pedro Alves  <palves@redhat.com>
57
58         * frame.c (get_prev_frame_1): If the frame id is outer_frame_id,
59         set the unwind stop reason to UNWIND_OUTERMOST, not
60         UNWIND_NULL_ID.  Remove explicit check for sentinel frame.
61
62 2013-11-28  Pedro Alves  <palves@redhat.com>
63
64         * frame.c (frame_unwind_register): Say the register was "not
65         saved" instead of "optimized out".
66
67 2013-11-27  Steffen Sledz  <sledz@dresearch-fe.de>
68
69         PR 16152
70         * configure: Rebuild.
71         * configure.ac: Tighten cygwin detection check.
72
73 2013-11-27  Pedro Alves  <palves@redhat.com>
74
75         * frame-unwind.c (frame_unwind_got_optimized): Use the type of the
76         register in the previous frame's arch.
77
78 2013-11-27  Pedro Alves  <palves@redhat.com>
79
80         * frame-unwind.c (frame_unwind_got_optimized): Return
81         an lval_register value instead of a not_lval value.
82
83 2013-11-27  Andrew Burgess  <aburgess@broadcom.com>
84
85         * frame.c: Include "valprint.h".
86         (frame_unwind_register_value): Use value_optimized_out.
87         * value.c (value_fetch_lazy): Likewise.
88
89 2013-11-26  Andrew Burgess  <aburgess@broadcom.com>
90
91         * value.c (allocate_optimized_out_value): Mark value as non-lazy.
92
93 2013-11-26  Tom Tromey  <tromey@redhat.com>
94
95         * dwarf2-frame.c (dwarf2_frame_cache): Revert patch from
96         2013-11-22.
97
98 2013-11-26  Walfred Tedeschi  <walfred.tedeschi@intel.com>
99
100         * i386-xstate.h (I386_XSTATE_MPX): New Macro.
101         (I386_XSTATE_MPX_MASK): Makes use of I386_XSTATE_MPX.
102         (HAS_MPX): New macro.
103         (HAS_AVX): New macro.
104         (I386_XSTATE_SIZE): Uses HAS_MPX and HAS_AVX.
105
106 2013-11-25  Keith Seitz  <keiths@redhat.com>
107
108         PR c++/14819
109         * c-exp.y (classify_inner_name): If no matching symbol was
110         found, try looking up the token as a base class.
111         Likewise if a constructor was found.
112         * cp-namespace.c (find_type_baseclass_by_name): New function.
113         * cp-support.h (find_type_baseclass_by_name): Declare.
114         * valops.c (value_struct_elt_for_reference): If we get
115         a non-static field, try to get a value based on the
116         current instance, if any.
117
118 2013-11-24  Yao Qi  <yao@codesourcery.com>
119
120         * disasm.c (dis_asm_read_memory): Call target_read_code
121         instead of target_read_memory.
122
123 2013-11-24  Yao Qi  <yao@codesourcery.com>
124
125         * NEWS: Add note on new "set code-cache" option.
126         * target-dcache.c (code_cache_enabled_1): New variable.
127         (code_cache_enabled): New variable.
128         (show_code_cache, set_code_cache): New function.
129         (code_cache_enabled_p): New function.
130         (_initialize_target_dcache): Register command.
131         * target-dcache.h (code_cache_enabled_p): Declare.
132         * target.c (memory_xfer_partial_1):Handle
133         TARGET_OBJECT_CODE_MEMORY and code_cache_enabled.
134         (target_read_code): New function.
135         * target.h (enum target_object) <TARGET_OBJECT_CODE_MEMORY>:
136         New.
137         (target_read_code): Declare.
138
139 2013-11-24  Yao Qi  <yao@codesourcery.com>
140
141         * target-dcache.c (stack_cache_enabled_p_1): Rename to ...
142         (stack_cache_enabled_1): ... this.  New variable.
143         (stack_cache_enabled_p): Rename to ...
144         (stack_cache_enabled): ... this.  New variable.
145         (set_stack_cache_enabled_p): Rename to ...
146         (set_stack_cache): ... this.  Update caller.
147         (show_stack_cache_enabled_p): Rename to ...
148         (show_stack_cache): ... this.  Update caller.
149         (stack_cache_enabled): Rename to ...
150         (stack_cache_enabled_p): ... this.  Update caller.
151         (_initialize_target_dcache): Replace "data cache" with
152         "target memory cache".
153         * target-dcache.h (stack_cache_enabled): Remove declaration.
154         (stack_cache_enabled_p): Add declaration.
155
156 2013-11-23  Doug Evans  <xdje42@gmail.com>
157
158         * python/py-frame.c (gdbpy_initialize_frames): Remove FIRST_ERROR,
159         superfluous.
160
161 2013-11-23  Doug Evans  <xdje42@gmail.com>
162
163         * python/py-frame.c (frapy_block): Fix error message text.
164
165 2013-11-23  Doug Evans  <xdje42@gmail.com>
166
167         * cli/cli-script.c (multi_line_command_p): New function.
168         (recurse_read_control_structure, read_command_lines_1): Call it.
169         (execute_control_command): Consistently have a blank line between
170         each case.
171
172 2013-11-22  Sterling Augustine  <saugustine@google.com>
173
174         PR gdb/16196:
175         * valprint.c (read_string): Set new variable fetchlen based on
176         fetchlimit and size.  Use it in call to partial_memory_read.
177         Update comment.
178
179 2013-11-22  Tom Tromey  <tromey@redhat.com>
180
181         PR backtrace/16155:
182         * dwarf2-frame.c (dwarf2_frame_cache): Set undefined_retaddr if
183         the return address column is unspecified.
184
185 2013-11-22  Tom Tromey  <tromey@redhat.com>
186             Pedro Alves  <palves@redhat.com>
187
188         PR backtrace/16155
189         * value.c (value_fetch_lazy): Internal error if
190         get_frame_register_value returns the same register.
191
192 2013-11-22  Pedro Alves  <palves@redhat.com>
193             Tom Tromey  <tromey@redhat.com>
194
195         * frame.c (frame_stash_add): Now returns whether a frame with the
196         same ID was already known.
197         (compute_frame_id): New function, factored out from get_frame_id.
198         (get_frame_id): No longer lazilly compute the frame id here.
199         (get_prev_frame_if_no_cycle): New function.  Detects wider stack
200         cycles.
201         (get_prev_frame_1): Use it instead of get_prev_frame_raw directly,
202         and checking for stack cycles here.
203
204 2013-11-22  Pedro Alves  <palves@redhat.com>
205
206         PR 16155
207         * frame.c (get_prev_frame_1): Do the UNWIND_SAME_ID check between
208         this frame and the new previous frame, not between this frame and
209         the next frame.
210
211 2013-11-22  Pedro Alves  <palves@redhat.com>
212
213         PR 16155
214         * dwarf2-frame.c (struct dwarf2_frame_cache)
215         <checked_tailcall_bottom, entry_cfa_sp_offset,
216         entry_cfa_sp_offset_p>: New fields.
217         (dwarf2_frame_cache): Adjust to use the new cache fields instead
218         of locals.  Don't call dwarf2_tailcall_sniffer_first here.
219         (dwarf2_frame_prev_register): Call it here, but only once.
220
221 2013-11-21  Doug Evans  <xdje42@gmail.com>
222
223         * gdbtypes.c: #include bcache.h, dwarf2loc.h.
224         (type_equality_entry): Move here from python/py-type.c.
225         (type_equality_entry_d): Ditto.
226         (compare_maybe_null_strings, check_types_equal): Ditto.
227         (check_types_worklist, types_deeply_equal): Ditto.
228         * gdbtypes.h (types_deeply_equal): Declare.
229         * python/py-type.c: Remove inclusion of bcache.h, dwarf2loc.h.
230         (typy_richcompare): Update.
231
232 2013-11-20  Joel Brobecker  <brobecker@adacore.com>
233
234         * python/py-value.c (is_intlike): Delete.
235         (valpy_int): Replace use of CHECK_TYPEDEF and is_intlike
236         by use of is_integral_type.
237         (valpy_long): Replace use of CHECK_TYPEDEF and is_intlike
238         by use of is_integral_type and check for TYPE_CODE_PTR.
239
240 2013-11-20  Tom Tromey  <tromey@redhat.com>
241
242         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Remove
243         strerror module.
244         * gnulib/aclocal.m4: Update.
245         * gnulib/config.in: Update.
246         * gnulib/configure: Update.
247         * gnulib/import/Makefile.am: Update.
248         * gnulib/import/Makefile.in: Update.
249         * gnulib/import/errno.in.h: Remove.
250         * gnulib/import/intprops.h: Remove.
251         * gnulib/import/m4/errno_h.m4: Remove.
252         * gnulib/import/m4/gnulib-cache.m4: Update.
253         * gnulib/import/m4/gnulib-comp.m4: Update.
254         * gnulib/import/m4/strerror.m4: Remove.
255         * gnulib/import/m4/sys_socket_h.m4: Remove.
256         * gnulib/import/strerror-override.c: Remove.
257         * gnulib/import/strerror-override.h: Remove.
258         * gnulib/import/strerror.c: Remove.
259         * gnulib/update-gnulib.sh: Update.
260
261 2013-11-20  Yao Qi  <yao@codesourcery.com>
262
263         * target-dcache.c (target_dcache_get_or_init): Call
264         set_address_space_data if 'dcache' is NULL.
265
266 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
267
268         * common/i386-gcc-cpuid.h (bit_MPX): Synchronize with gcc file.
269
270 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
271
272         * python/lib/gdb/command/bound_register.py: New file.
273         * data-directory/Makefile.in: Copy bond_register.py to the right path
274         to be initialized at gdb startup.
275
276 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
277
278         * amd64-linux-nat.c (amd64_linux_gregset32_reg_offset):
279         Add MPX registers.
280         (amd64_linux_read_description): Add initialization for MPX and
281         AVX independently.
282         * amd64-linux-tdep.c: Includes features/i386/amd64-mpx-linux.c.
283         (amd64_linux_gregset_reg_offset): Add MPX registers.
284         (amd64_linux_core_read_description): Add initialization for MPX
285         registers.
286         (_initialize_amd64_linux_tdep): Initialize MPX targets.
287         * amd64-linux-tdep.h (AMD64_LINUX_RAX_REGNUM): Set it to the last
288         register on the list.
289         (tdesc_amd64_mpx_linux) Add new target  for MPX.
290         * amd64-tdep.c: Includes features/i386/amd64-mpx.c.
291         (amd64_mpx_names): MPX register names.
292         (amd64_init_abi): Add MPX register while initializing the ABI.
293         (_initialize_amd64_tdep): Initialize MPX targets.
294         * amd64-tdep.h (amd64_regnum): Add MPX registers.
295         (AMD64_NUM_REGS): Set number of registers taking MPX into account.
296
297 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
298
299         * i386-linux-nat.c (GETXSTATEREGS_SUPPLIES): Add MPX
300         registers on the range of registers to be read from
301         xsave buffer.
302         (i386_linux_read_description): Add case for MPX.
303         * i386-linux-tdep.c: Include features/i386/i386-mpx-linux.c.
304         (i386_linux_gregset_reg_offset): Add MPX registers.
305         (i386_linux_core_read_description): Initialize also MPX.
306         (_initialize_i386_linux_tdep): Add mpx initialization.
307         * i386-tdep.h (gdbarch_tdep): Add fields bnd0r_regnum, bnd0_regnum,
308         mpx_register_names.
309         (i386_regnum): Add MPX registers.
310         (I386_MPX_NUM_REGS): New macro.
311         (i386_bnd_regnum_p): New function.
312         * i386-linux-tdep.h (I386_LINUX_NUM_REGS): Set
313         number of registers to be the number of BNDSTATUS.
314         (tdesc_i386_mpx_linux): Add description for MPX Linux registers.
315         * i386-tdep.c: Include features/i386/i386-mpx.c.
316         (i386_mpx_names): Add MPX register names array.
317         (i386_bnd_names): Add bnd pseudo register names array.
318         (i386_bndr_regnum_p): Lookup register numbers for bnd raw
319         registers.
320         (i386_bndr_regnum_p): Lookup register numbers for bnd raw registers.
321         (386_mpx_ctrl_regnum_p): Lookup register numbers for MPX control
322         registers.
323         (i386_bnd_type): New function.
324         (i386_pseudo_register_type): Use i386_bnd_type for bnd pseudo
325         register types.
326         (i386_pseudo_register_read_into_value): Add bnd case.
327         (i386_pseudo_register_write): Add bnd pseudo registers.
328         (i386_register_reggroup_p): Add MPX register to the group all.
329         (i386_validate_tdesc_p): Add MPX to the target  description
330         validation.
331         (i386_pseudo_register_name): Add bnd pseudo registers.
332         (i386_gdbarch_init): Add MPX for architecture initialization.
333         (_initia_initialize_i386_tdep): Add mpx initialization.
334         * i387-tdep.c (xsave_mpx_offset): New vector for MPX offsets on
335         XSAVE buffer.
336         (XSAVE_MPX_ADDR): New macro.
337         (i387_supply_xsave): Add MPX case.
338         (i387_collect_xsave): Add MPX case.
339         * i387-tdep.h (I387_BND0R_REGNUM): New macro.
340         (I387_BNDCFGU_REGNUM): New macro.
341         (I387_NUM_MPX_REGS): New macro.
342         (I387_NUM_BND_REGS): New macro.
343         (I387_NUM_MPX_CTRL_REGS): New macro.
344         (I387_MPXEND_REGNUM): New macro.
345         * common/i386-xstate.h (I386_XSTATE_BNDREGS): New macro.
346         (I386_XSTATE_BNDCFG): Likewise.
347         (I386_XSTATE_MPX_MASK): Likewise.
348         (I386_XSTATE_ALL_MASK): New macro represents flags for all states.
349         (I386_XSTATE_BNDREGS_SIZE): New macro.
350         (I386_XSTATE_BNDCFG_SIZE): Likewise.
351         (I386_XSTATE_SIZE): Adapt for MPX.
352         (I386_XSTATE_MAX_SIZE): Likewise.
353
354 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
355
356         * features/i386/Makefile: Adapts for using MPX registers.
357         * features/i386/32bit-mpx.xml: New file.
358         * features/i386/64bit-mpx.xml: Likewise.
359         * features/i386/amd64-mpx-linux.c: Likewise.
360         * features/i386/amd64-mpx-linux.xml: Likewise.
361         * features/i386/amd64-mpx.c: Likewise.
362         * features/i386/amd64-mpx.xml: Likewise.
363         * features/i386/i386-mpx-linux.c: Likewise.
364         * features/i386/i386-mpx-linux.xml: Likewise.
365         * features/i386/i386-mpx.c: Likewise.
366         * features/i386/i386-mpx.xml: Likewise.
367         * regformats/i386/amd64-mpx-linux.dat: New file.
368         * regformats/i386/amd64-mpx.dat: Likewise.
369         * regformats/i386/i386-mpx-linux.dat: Likewise.
370         * regformats/i386/i386-mpx.dat: Likewise.
371
372 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
373
374         * target-descriptions.c (maint_print_maint_print_c_tdesc_cmd):
375         Modified logic of creating a bitfield to be in sync with
376         tdesc_gdb_type.
377
378 2013-11-20  Will Newton  <will.newton@linaro.org>
379
380         * arm-tdep.c (arm_get_next_pc): Remove "Infinite loop detected"
381         error message.
382
383 2013-11-20  Yao Qi  <yao@codesourcery.com>
384
385         * progspace.h (struct address_space_data): Declare.
386         * target-dcache.c: Include "progspace.h".
387         (target_dache): Remove.
388         (target_dcache_aspace_key): New.
389         (target_dcache_cleanup): New function.
390         (target_dcache_init_p): Get data through
391         target_dcache_aspace_key.
392         (target_dcache_invalidate): Likewise.
393         (target_dcache_get): Likewise.
394         (target_dcache_get_or_init): Likewise.
395         (_initialize_target_dcache): Initialize
396         target_dcache_aspace_key.
397
398 2013-11-20  Yao Qi  <yao@codesourcery.com>
399
400         * progspace.c (struct address_space): Update comments.
401         <REGISTRY_FIELDS>: New fields.
402         DEFINE_REGISTRY for address_space.
403         (new_address_space): Call address_space_alloc_data.
404         (free_address_space): Call address_space_free_data.
405         * progspace.h: Use DECLARE_REGISTRY.
406
407 2013-11-20  Yao Qi  <yao@codesourcery.com>
408
409         * Makefile.in (SFILES):Add target-dcache.c.
410         (HFILES_NO_SRCDIR): Add target-dcache.h.
411         (COMMON_OBS): Add target-dcache.o.
412         * dcache.c: Remove inclusion to "target.h".  Include
413         "target-dcache.h".
414         * memattr.c: Include "target-dcache.h".
415         * top.c: Likewise.
416         * tracepoint.c: Likewise.
417         * target.c: (stack_cache_enabled_p_1): Move to
418         target-dcache.c.
419         (stack_cache_enabled_p): Likewise.
420         (set_stack_cache_enabled_p): Likewise.
421         (show_stack_cache_enabled_p): Likewise.
422         (target_dcache, target_dcache_init_p): Likewise.
423         (target_dcache_invalidate): Likewise.
424         (target_dcache_get, target_dcache_get_or_init): Likewise.
425         (memory_xfer_partial_1): Call function stack_cache_enabled.
426         (initialize_target): Move code to target-dcache.c.
427         * target.h (target_dcache_invalidate): Move to
428         target-dcache.h.
429         (target_dcache_get): Likewise.
430         * target-dcache.c: New.
431         * target-dcache.h: New.
432
433 2013-11-20  Yao Qi  <yao@codesourcery.com>
434
435         * target.c (memory_xfer_partial_1): Update 'target_dcache' if
436         it is initialized.
437
438 2013-11-20  Yao Qi  <yao@codesourcery.com>
439
440         * dcache.c (last_cache): Remove.
441         (dcache_free, dcache_init): Update.
442         (dcache_update):
443         (dcache_print_line): Add parameter 'dcache'.  Replace
444         'target_dcache' with 'dcache'.
445         (dcache_info): Move code to dcache_info_1. Call
446         'dcache_info_1'.
447         (dcache_info_1): New function.
448         (set_dcache_size): Call target_dcache_invalidate.
449         (set_dcache_line_size): Call target_dcache_invalidate.
450         * target.c (target_dcache_init_p): New function.
451         (target_dcache_invalidate): Check target_dcache_init_p first.
452         (target_dcache_get, target_dcache_get_or_init): New function.
453         (memory_xfer_partial_1): Adjust.
454         (initialize_target): Don't initialize 'target_dcache'.
455         * target.h (struct dcache_struct): Declare.
456         (target_dcache_get): Declare.
457
458 2013-11-19  Yao Qi  <yao@codesourcery.com>
459
460         * varobj.c (varobj_get_type): Fix typo.
461
462 2013-11-19  Joel Brobecker  <brobecker@adacore.com>
463
464         * python/py-value.c (is_intlike): Add TYPE_CODE_RANGE handling.
465
466 2013-11-19  Joel Brobecker  <brobecker@adacore.com>
467
468         * contrib/ari/gdb_ari.sh: Remove checks for "dirent.h" and
469         "stat.h".
470
471 2013-11-18  Tom Tromey  <tromey@redhat.com>
472
473         * common/gdb_stat.h: Remove.
474         * ada-lang.c: Use sys/stat.h, not gdb_stat.h.
475         * common/filestuff.c: Use sys/stat.h, not gdb_stat.h.
476         * common/linux-osdata.c: Use sys/stat.h, not gdb_stat.h.
477         * corefile.c: Use sys/stat.h, not gdb_stat.h.
478         * ctf.c: Use sys/stat.h, not gdb_stat.h.
479         * darwin-nat.c: Use sys/stat.h, not gdb_stat.h.
480         * dbxread.c: Use sys/stat.h, not gdb_stat.h.
481         * dwarf2read.c: Use sys/stat.h, not gdb_stat.h.
482         * exec.c: Use sys/stat.h, not gdb_stat.h.
483         * gdbserver/linux-low.c: Use sys/stat.h, not gdb_stat.h.
484         * gdbserver/remote-utils.c: Use sys/stat.h, not gdb_stat.h.
485         * inf-child.c: Use sys/stat.h, not gdb_stat.h.
486         * jit.c: Use sys/stat.h, not gdb_stat.h.
487         * linux-nat.c: Use sys/stat.h, not gdb_stat.h.
488         * m68klinux-nat.c: Use sys/stat.h, not gdb_stat.h.
489         * main.c: Use sys/stat.h, not gdb_stat.h.
490         * mdebugread.c: Use sys/stat.h, not gdb_stat.h.
491         * mi/mi-cmd-env.c: Use sys/stat.h, not gdb_stat.h.
492         * nto-tdep.c: Use sys/stat.h, not gdb_stat.h.
493         * objfiles.c: Use sys/stat.h, not gdb_stat.h.
494         * procfs.c: Use sys/stat.h, not gdb_stat.h.
495         * remote-fileio.c: Use sys/stat.h, not gdb_stat.h.
496         * remote-mips.c: Use sys/stat.h, not gdb_stat.h.
497         * remote.c: Use sys/stat.h, not gdb_stat.h.
498         * rs6000-nat.c: Use sys/stat.h, not gdb_stat.h.
499         * sol-thread.c: Use sys/stat.h, not gdb_stat.h.
500         * solib-spu.c: Use sys/stat.h, not gdb_stat.h.
501         * source.c: Use sys/stat.h, not gdb_stat.h.
502         * symfile.c: Use sys/stat.h, not gdb_stat.h.
503         * symmisc.c: Use sys/stat.h, not gdb_stat.h.
504         * symtab.c: Use sys/stat.h, not gdb_stat.h.
505         * top.c: Use sys/stat.h, not gdb_stat.h.
506         * xcoffread.c: Use sys/stat.h, not gdb_stat.h.
507
508 2013-11-18  Tom Tromey  <tromey@redhat.com>
509
510         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
511         sys_stat.
512         * gnulib/aclocal.m4: Update.
513         * gnulib/config.in: Update.
514         * gnulib/configure: Update.
515         * gnulib/import/Makefile.am: Update.
516         * gnulib/import/Makefile.in: Update.
517         * gnulib/import/m4/gnulib-cache.m4: Update.
518         * gnulib/import/m4/gnulib-comp.m4: Update.
519         * gnulib/import/m4/sys_stat_h.m4: New.
520         * gnulib/import/m4/time_h.m4: New.
521         * gnulib/import/sys_stat.in.h: New.
522         * gnulib/import/time.in.h: New.
523
524 2013-11-18  Tom Tromey  <tromey@redhat.com>
525
526         * configure: Rebuild.
527         * configure.ac: Remove check of HAVE_SYS_TYPES_H.
528
529 2013-11-18  Tom Tromey  <tromey@redhat.com>
530
531         * configure: Rebuild.
532         * configure.ac: Don't check for unistd.h.
533
534 2013-11-18  Tom Tromey  <tromey@redhat.com>
535
536         * configure: Rebuild.
537         * configure.ac: Don't check for stdlib.h
538         * defs.h: Include stdlib.h unconditionally.
539
540 2013-11-18  Tom Tromey  <tromey@redhat.com>
541
542         * config.in: Rebuild.
543         * configure: Rebuild.
544         * configure.ac: Don't check for stddef.h.
545         * defs.h: Unconditionally include stddef.h.  Remove duplicate
546         inclusion.
547
548 2013-11-18  Tom Tromey  <tromey@redhat.com>
549
550         * common/common.m4 (GDB_AC_COMMON): Don't use AC_HEADER_DIRENT.
551         * common/gdb_dirent.h: Remove.
552         * common/filestuff.c: Use dirent.h.
553         * common/linux-osdata.c: Use dirent.h.
554         (NAMELEN): Define.
555         * config.in: Rebuild.
556         * configure: Rebuild.
557         * configure.ac: Don't use AC_HEADER_DIRENT.
558         * linux-fork.c: Use dirent.h
559         * linux-nat.c: Use dirent.h.
560         * nto-procfs.c: Use dirent.h.
561         * procfs.c: Use dirent.h.
562
563 2013-11-18  Tom Tromey  <tromey@redhat.com>
564
565         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add dirent.
566         * gnulib/aclocal.m4: Update.
567         * gnulib/config.in: Update.
568         * gnulib/configure: Update.
569         * gnulib/import/Makefile.am: Update.
570         * gnulib/import/Makefile.in: Update.
571         * gnulib/import/dirent.in.h: New.
572         * gnulib/import/m4/dirent_h.m4: New.
573         * gnulib/import/m4/gnulib-cache.m4: Update.
574         * gnulib/import/m4/gnulib-comp.m4: Update.
575
576 2013-11-18  Tom Tromey  <tromey@redhat.com>
577
578         * configure: Rebuild.
579         * common/common.m4 (GDB_AC_COMMON): Don't check for string.h or
580         strings.h.
581
582 2013-11-18  Tom Tromey  <tromey@redhat.com>
583
584         * common/gdb_string.h: Remove.
585         * aarch64-tdep.c: Use string.h, not gdb_string.h.
586         * ada-exp.y: Use string.h, not gdb_string.h.
587         * ada-lang.c: Use string.h, not gdb_string.h.
588         * ada-lex.l: Use string.h, not gdb_string.h.
589         * ada-typeprint.c: Use string.h, not gdb_string.h.
590         * ada-valprint.c: Use string.h, not gdb_string.h.
591         * aix-thread.c: Use string.h, not gdb_string.h.
592         * alpha-linux-tdep.c: Use string.h, not gdb_string.h.
593         * alpha-mdebug-tdep.c: Use string.h, not gdb_string.h.
594         * alpha-nat.c: Use string.h, not gdb_string.h.
595         * alpha-osf1-tdep.c: Use string.h, not gdb_string.h.
596         * alpha-tdep.c: Use string.h, not gdb_string.h.
597         * alphanbsd-tdep.c: Use string.h, not gdb_string.h.
598         * amd64-dicos-tdep.c: Use string.h, not gdb_string.h.
599         * amd64-linux-nat.c: Use string.h, not gdb_string.h.
600         * amd64-linux-tdep.c: Use string.h, not gdb_string.h.
601         * amd64-nat.c: Use string.h, not gdb_string.h.
602         * amd64-sol2-tdep.c: Use string.h, not gdb_string.h.
603         * amd64fbsd-tdep.c: Use string.h, not gdb_string.h.
604         * amd64obsd-tdep.c: Use string.h, not gdb_string.h.
605         * arch-utils.c: Use string.h, not gdb_string.h.
606         * arm-linux-nat.c: Use string.h, not gdb_string.h.
607         * arm-linux-tdep.c: Use string.h, not gdb_string.h.
608         * arm-tdep.c: Use string.h, not gdb_string.h.
609         * arm-wince-tdep.c: Use string.h, not gdb_string.h.
610         * armbsd-tdep.c: Use string.h, not gdb_string.h.
611         * armnbsd-nat.c: Use string.h, not gdb_string.h.
612         * armnbsd-tdep.c: Use string.h, not gdb_string.h.
613         * armobsd-tdep.c: Use string.h, not gdb_string.h.
614         * avr-tdep.c: Use string.h, not gdb_string.h.
615         * ax-gdb.c: Use string.h, not gdb_string.h.
616         * ax-general.c: Use string.h, not gdb_string.h.
617         * bcache.c: Use string.h, not gdb_string.h.
618         * bfin-tdep.c: Use string.h, not gdb_string.h.
619         * breakpoint.c: Use string.h, not gdb_string.h.
620         * build-id.c: Use string.h, not gdb_string.h.
621         * buildsym.c: Use string.h, not gdb_string.h.
622         * c-exp.y: Use string.h, not gdb_string.h.
623         * c-lang.c: Use string.h, not gdb_string.h.
624         * c-typeprint.c: Use string.h, not gdb_string.h.
625         * c-valprint.c: Use string.h, not gdb_string.h.
626         * charset.c: Use string.h, not gdb_string.h.
627         * cli-out.c: Use string.h, not gdb_string.h.
628         * cli/cli-cmds.c: Use string.h, not gdb_string.h.
629         * cli/cli-decode.c: Use string.h, not gdb_string.h.
630         * cli/cli-dump.c: Use string.h, not gdb_string.h.
631         * cli/cli-interp.c: Use string.h, not gdb_string.h.
632         * cli/cli-logging.c: Use string.h, not gdb_string.h.
633         * cli/cli-script.c: Use string.h, not gdb_string.h.
634         * cli/cli-setshow.c: Use string.h, not gdb_string.h.
635         * cli/cli-utils.c: Use string.h, not gdb_string.h.
636         * coffread.c: Use string.h, not gdb_string.h.
637         * common/common-utils.c: Use string.h, not gdb_string.h.
638         * common/filestuff.c: Use string.h, not gdb_string.h.
639         * common/linux-procfs.c: Use string.h, not gdb_string.h.
640         * common/linux-ptrace.c: Use string.h, not gdb_string.h.
641         * common/signals.c: Use string.h, not gdb_string.h.
642         * common/vec.h: Use string.h, not gdb_string.h.
643         * core-regset.c: Use string.h, not gdb_string.h.
644         * corefile.c: Use string.h, not gdb_string.h.
645         * corelow.c: Use string.h, not gdb_string.h.
646         * cp-abi.c: Use string.h, not gdb_string.h.
647         * cp-support.c: Use string.h, not gdb_string.h.
648         * cp-valprint.c: Use string.h, not gdb_string.h.
649         * cris-tdep.c: Use string.h, not gdb_string.h.
650         * d-lang.c: Use string.h, not gdb_string.h.
651         * dbxread.c: Use string.h, not gdb_string.h.
652         * dcache.c: Use string.h, not gdb_string.h.
653         * demangle.c: Use string.h, not gdb_string.h.
654         * dicos-tdep.c: Use string.h, not gdb_string.h.
655         * disasm.c: Use string.h, not gdb_string.h.
656         * doublest.c: Use string.h, not gdb_string.h.
657         * dsrec.c: Use string.h, not gdb_string.h.
658         * dummy-frame.c: Use string.h, not gdb_string.h.
659         * dwarf2-frame.c: Use string.h, not gdb_string.h.
660         * dwarf2loc.c: Use string.h, not gdb_string.h.
661         * dwarf2read.c: Use string.h, not gdb_string.h.
662         * elfread.c: Use string.h, not gdb_string.h.
663         * environ.c: Use string.h, not gdb_string.h.
664         * eval.c: Use string.h, not gdb_string.h.
665         * event-loop.c: Use string.h, not gdb_string.h.
666         * exceptions.c: Use string.h, not gdb_string.h.
667         * exec.c: Use string.h, not gdb_string.h.
668         * expprint.c: Use string.h, not gdb_string.h.
669         * f-exp.y: Use string.h, not gdb_string.h.
670         * f-lang.c: Use string.h, not gdb_string.h.
671         * f-typeprint.c: Use string.h, not gdb_string.h.
672         * f-valprint.c: Use string.h, not gdb_string.h.
673         * fbsd-nat.c: Use string.h, not gdb_string.h.
674         * findcmd.c: Use string.h, not gdb_string.h.
675         * findvar.c: Use string.h, not gdb_string.h.
676         * fork-child.c: Use string.h, not gdb_string.h.
677         * frame.c: Use string.h, not gdb_string.h.
678         * frv-linux-tdep.c: Use string.h, not gdb_string.h.
679         * frv-tdep.c: Use string.h, not gdb_string.h.
680         * gdb.c: Use string.h, not gdb_string.h.
681         * gdb_bfd.c: Use string.h, not gdb_string.h.
682         * gdbarch.c: Use string.h, not gdb_string.h.
683         * gdbtypes.c: Use string.h, not gdb_string.h.
684         * gnu-nat.c: Use string.h, not gdb_string.h.
685         * gnu-v2-abi.c: Use string.h, not gdb_string.h.
686         * gnu-v3-abi.c: Use string.h, not gdb_string.h.
687         * go-exp.y: Use string.h, not gdb_string.h.
688         * go-lang.c: Use string.h, not gdb_string.h.
689         * go32-nat.c: Use string.h, not gdb_string.h.
690         * hppa-hpux-tdep.c: Use string.h, not gdb_string.h.
691         * hppa-linux-nat.c: Use string.h, not gdb_string.h.
692         * hppanbsd-tdep.c: Use string.h, not gdb_string.h.
693         * hppaobsd-tdep.c: Use string.h, not gdb_string.h.
694         * i386-cygwin-tdep.c: Use string.h, not gdb_string.h.
695         * i386-dicos-tdep.c: Use string.h, not gdb_string.h.
696         * i386-linux-nat.c: Use string.h, not gdb_string.h.
697         * i386-linux-tdep.c: Use string.h, not gdb_string.h.
698         * i386-nto-tdep.c: Use string.h, not gdb_string.h.
699         * i386-sol2-tdep.c: Use string.h, not gdb_string.h.
700         * i386-tdep.c: Use string.h, not gdb_string.h.
701         * i386bsd-tdep.c: Use string.h, not gdb_string.h.
702         * i386gnu-nat.c: Use string.h, not gdb_string.h.
703         * i386nbsd-tdep.c: Use string.h, not gdb_string.h.
704         * i386obsd-tdep.c: Use string.h, not gdb_string.h.
705         * i387-tdep.c: Use string.h, not gdb_string.h.
706         * ia64-libunwind-tdep.c: Use string.h, not gdb_string.h.
707         * ia64-linux-nat.c: Use string.h, not gdb_string.h.
708         * inf-child.c: Use string.h, not gdb_string.h.
709         * inf-ptrace.c: Use string.h, not gdb_string.h.
710         * inf-ttrace.c: Use string.h, not gdb_string.h.
711         * infcall.c: Use string.h, not gdb_string.h.
712         * infcmd.c: Use string.h, not gdb_string.h.
713         * inflow.c: Use string.h, not gdb_string.h.
714         * infrun.c: Use string.h, not gdb_string.h.
715         * interps.c: Use string.h, not gdb_string.h.
716         * iq2000-tdep.c: Use string.h, not gdb_string.h.
717         * irix5-nat.c: Use string.h, not gdb_string.h.
718         * jv-exp.y: Use string.h, not gdb_string.h.
719         * jv-lang.c: Use string.h, not gdb_string.h.
720         * jv-typeprint.c: Use string.h, not gdb_string.h.
721         * jv-valprint.c: Use string.h, not gdb_string.h.
722         * language.c: Use string.h, not gdb_string.h.
723         * linux-fork.c: Use string.h, not gdb_string.h.
724         * linux-nat.c: Use string.h, not gdb_string.h.
725         * lm32-tdep.c: Use string.h, not gdb_string.h.
726         * m2-exp.y: Use string.h, not gdb_string.h.
727         * m2-typeprint.c: Use string.h, not gdb_string.h.
728         * m32c-tdep.c: Use string.h, not gdb_string.h.
729         * m32r-linux-nat.c: Use string.h, not gdb_string.h.
730         * m32r-linux-tdep.c: Use string.h, not gdb_string.h.
731         * m32r-rom.c: Use string.h, not gdb_string.h.
732         * m32r-tdep.c: Use string.h, not gdb_string.h.
733         * m68hc11-tdep.c: Use string.h, not gdb_string.h.
734         * m68k-tdep.c: Use string.h, not gdb_string.h.
735         * m68kbsd-tdep.c: Use string.h, not gdb_string.h.
736         * m68klinux-nat.c: Use string.h, not gdb_string.h.
737         * m68klinux-tdep.c: Use string.h, not gdb_string.h.
738         * m88k-tdep.c: Use string.h, not gdb_string.h.
739         * macrocmd.c: Use string.h, not gdb_string.h.
740         * main.c: Use string.h, not gdb_string.h.
741         * mdebugread.c: Use string.h, not gdb_string.h.
742         * mem-break.c: Use string.h, not gdb_string.h.
743         * memattr.c: Use string.h, not gdb_string.h.
744         * memory-map.c: Use string.h, not gdb_string.h.
745         * mep-tdep.c: Use string.h, not gdb_string.h.
746         * mi/mi-cmd-break.c: Use string.h, not gdb_string.h.
747         * mi/mi-cmd-disas.c: Use string.h, not gdb_string.h.
748         * mi/mi-cmd-env.c: Use string.h, not gdb_string.h.
749         * mi/mi-cmd-stack.c: Use string.h, not gdb_string.h.
750         * mi/mi-cmd-var.c: Use string.h, not gdb_string.h.
751         * mi/mi-cmds.c: Use string.h, not gdb_string.h.
752         * mi/mi-console.c: Use string.h, not gdb_string.h.
753         * mi/mi-getopt.c: Use string.h, not gdb_string.h.
754         * mi/mi-interp.c: Use string.h, not gdb_string.h.
755         * mi/mi-main.c: Use string.h, not gdb_string.h.
756         * mi/mi-parse.c: Use string.h, not gdb_string.h.
757         * microblaze-rom.c: Use string.h, not gdb_string.h.
758         * microblaze-tdep.c: Use string.h, not gdb_string.h.
759         * mingw-hdep.c: Use string.h, not gdb_string.h.
760         * minidebug.c: Use string.h, not gdb_string.h.
761         * minsyms.c: Use string.h, not gdb_string.h.
762         * mips-irix-tdep.c: Use string.h, not gdb_string.h.
763         * mips-linux-tdep.c: Use string.h, not gdb_string.h.
764         * mips-tdep.c: Use string.h, not gdb_string.h.
765         * mips64obsd-tdep.c: Use string.h, not gdb_string.h.
766         * mipsnbsd-tdep.c: Use string.h, not gdb_string.h.
767         * mipsread.c: Use string.h, not gdb_string.h.
768         * mn10300-linux-tdep.c: Use string.h, not gdb_string.h.
769         * mn10300-tdep.c: Use string.h, not gdb_string.h.
770         * monitor.c: Use string.h, not gdb_string.h.
771         * moxie-tdep.c: Use string.h, not gdb_string.h.
772         * mt-tdep.c: Use string.h, not gdb_string.h.
773         * nbsd-tdep.c: Use string.h, not gdb_string.h.
774         * nios2-linux-tdep.c: Use string.h, not gdb_string.h.
775         * nto-procfs.c: Use string.h, not gdb_string.h.
776         * nto-tdep.c: Use string.h, not gdb_string.h.
777         * objc-lang.c: Use string.h, not gdb_string.h.
778         * objfiles.c: Use string.h, not gdb_string.h.
779         * opencl-lang.c: Use string.h, not gdb_string.h.
780         * osabi.c: Use string.h, not gdb_string.h.
781         * osdata.c: Use string.h, not gdb_string.h.
782         * p-exp.y: Use string.h, not gdb_string.h.
783         * p-lang.c: Use string.h, not gdb_string.h.
784         * p-typeprint.c: Use string.h, not gdb_string.h.
785         * parse.c: Use string.h, not gdb_string.h.
786         * posix-hdep.c: Use string.h, not gdb_string.h.
787         * ppc-linux-nat.c: Use string.h, not gdb_string.h.
788         * ppc-sysv-tdep.c: Use string.h, not gdb_string.h.
789         * ppcfbsd-tdep.c: Use string.h, not gdb_string.h.
790         * ppcnbsd-tdep.c: Use string.h, not gdb_string.h.
791         * ppcobsd-tdep.c: Use string.h, not gdb_string.h.
792         * printcmd.c: Use string.h, not gdb_string.h.
793         * procfs.c: Use string.h, not gdb_string.h.
794         * prologue-value.c: Use string.h, not gdb_string.h.
795         * python/py-auto-load.c: Use string.h, not gdb_string.h.
796         * python/py-gdb-readline.c: Use string.h, not gdb_string.h.
797         * ravenscar-thread.c: Use string.h, not gdb_string.h.
798         * regcache.c: Use string.h, not gdb_string.h.
799         * registry.c: Use string.h, not gdb_string.h.
800         * remote-fileio.c: Use string.h, not gdb_string.h.
801         * remote-m32r-sdi.c: Use string.h, not gdb_string.h.
802         * remote-mips.c: Use string.h, not gdb_string.h.
803         * remote-sim.c: Use string.h, not gdb_string.h.
804         * remote.c: Use string.h, not gdb_string.h.
805         * reverse.c: Use string.h, not gdb_string.h.
806         * rs6000-aix-tdep.c: Use string.h, not gdb_string.h.
807         * ser-base.c: Use string.h, not gdb_string.h.
808         * ser-go32.c: Use string.h, not gdb_string.h.
809         * ser-mingw.c: Use string.h, not gdb_string.h.
810         * ser-pipe.c: Use string.h, not gdb_string.h.
811         * ser-tcp.c: Use string.h, not gdb_string.h.
812         * ser-unix.c: Use string.h, not gdb_string.h.
813         * serial.c: Use string.h, not gdb_string.h.
814         * sh-tdep.c: Use string.h, not gdb_string.h.
815         * sh64-tdep.c: Use string.h, not gdb_string.h.
816         * shnbsd-tdep.c: Use string.h, not gdb_string.h.
817         * skip.c: Use string.h, not gdb_string.h.
818         * sol-thread.c: Use string.h, not gdb_string.h.
819         * solib-dsbt.c: Use string.h, not gdb_string.h.
820         * solib-frv.c: Use string.h, not gdb_string.h.
821         * solib-osf.c: Use string.h, not gdb_string.h.
822         * solib-spu.c: Use string.h, not gdb_string.h.
823         * solib-target.c: Use string.h, not gdb_string.h.
824         * solib.c: Use string.h, not gdb_string.h.
825         * somread.c: Use string.h, not gdb_string.h.
826         * source.c: Use string.h, not gdb_string.h.
827         * sparc-nat.c: Use string.h, not gdb_string.h.
828         * sparc-sol2-tdep.c: Use string.h, not gdb_string.h.
829         * sparc-tdep.c: Use string.h, not gdb_string.h.
830         * sparc64-tdep.c: Use string.h, not gdb_string.h.
831         * sparc64fbsd-tdep.c: Use string.h, not gdb_string.h.
832         * sparc64nbsd-tdep.c: Use string.h, not gdb_string.h.
833         * sparcnbsd-tdep.c: Use string.h, not gdb_string.h.
834         * spu-linux-nat.c: Use string.h, not gdb_string.h.
835         * spu-multiarch.c: Use string.h, not gdb_string.h.
836         * spu-tdep.c: Use string.h, not gdb_string.h.
837         * stabsread.c: Use string.h, not gdb_string.h.
838         * stack.c: Use string.h, not gdb_string.h.
839         * std-regs.c: Use string.h, not gdb_string.h.
840         * symfile.c: Use string.h, not gdb_string.h.
841         * symmisc.c: Use string.h, not gdb_string.h.
842         * symtab.c: Use string.h, not gdb_string.h.
843         * target.c: Use string.h, not gdb_string.h.
844         * thread.c: Use string.h, not gdb_string.h.
845         * tilegx-linux-nat.c: Use string.h, not gdb_string.h.
846         * tilegx-tdep.c: Use string.h, not gdb_string.h.
847         * top.c: Use string.h, not gdb_string.h.
848         * tracepoint.c: Use string.h, not gdb_string.h.
849         * tui/tui-command.c: Use string.h, not gdb_string.h.
850         * tui/tui-data.c: Use string.h, not gdb_string.h.
851         * tui/tui-disasm.c: Use string.h, not gdb_string.h.
852         * tui/tui-file.c: Use string.h, not gdb_string.h.
853         * tui/tui-layout.c: Use string.h, not gdb_string.h.
854         * tui/tui-out.c: Use string.h, not gdb_string.h.
855         * tui/tui-regs.c: Use string.h, not gdb_string.h.
856         * tui/tui-source.c: Use string.h, not gdb_string.h.
857         * tui/tui-stack.c: Use string.h, not gdb_string.h.
858         * tui/tui-win.c: Use string.h, not gdb_string.h.
859         * tui/tui-windata.c: Use string.h, not gdb_string.h.
860         * tui/tui-winsource.c: Use string.h, not gdb_string.h.
861         * typeprint.c: Use string.h, not gdb_string.h.
862         * ui-file.c: Use string.h, not gdb_string.h.
863         * ui-out.c: Use string.h, not gdb_string.h.
864         * user-regs.c: Use string.h, not gdb_string.h.
865         * utils.c: Use string.h, not gdb_string.h.
866         * v850-tdep.c: Use string.h, not gdb_string.h.
867         * valarith.c: Use string.h, not gdb_string.h.
868         * valops.c: Use string.h, not gdb_string.h.
869         * valprint.c: Use string.h, not gdb_string.h.
870         * value.c: Use string.h, not gdb_string.h.
871         * varobj.c: Use string.h, not gdb_string.h.
872         * vax-tdep.c: Use string.h, not gdb_string.h.
873         * vaxnbsd-tdep.c: Use string.h, not gdb_string.h.
874         * vaxobsd-tdep.c: Use string.h, not gdb_string.h.
875         * windows-nat.c: Use string.h, not gdb_string.h.
876         * xcoffread.c: Use string.h, not gdb_string.h.
877         * xml-support.c: Use string.h, not gdb_string.h.
878         * xstormy16-tdep.c: Use string.h, not gdb_string.h.
879         * xtensa-linux-nat.c: Use string.h, not gdb_string.h.
880
881 2013-11-18  Tom Tromey  <tromey@redhat.com>
882
883         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add strerror
884         and strstr.
885         * gnulib/aclocal.m4: Update.
886         * gnulib/config.in: Update.
887         * gnulib/configure: Update.
888         * gnulib/import/Makefile.am: Update.
889         * gnulib/import/Makefile.in: Update.
890         * gnulib/import/errno.in.h: New.
891         * gnulib/import/intprops.h: New.
892         * gnulib/import/m4/errno_h.m4: New.
893         * gnulib/import/m4/gnulib-cache.m4: Update.
894         * gnulib/import/m4/gnulib-comp.m4: Update.
895         * gnulib/import/m4/strerror.m4: New.
896         * gnulib/import/m4/strstr.m4: New.
897         * gnulib/import/m4/sys_socket_h.m4: New.
898         * gnulib/import/strerror-override.c: New.
899         * gnulib/import/strerror-override.h: New.
900         * gnulib/import/strerror.c: New.
901         * gnulib/import/strstr.c: New.
902
903 2013-11-18  Tom Tromey  <tromey@redhat.com>
904
905         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Split into
906         multiple lines.
907
908 2013-11-18  Jose E. Marchesi  <jose.marchesi@oracle.com>
909
910         * sparc-tdep.c (sparc_is_annulled_branch_insn): New function.
911         * sparc-tdep.h: And its prototype.
912
913         * sparc64-linux-tdep.c (sparc64_linux_get_longjmp_target): New
914         function.
915         (sparc64_linux_init_abi): Register the get_longjmp_target hook.
916
917 2013-11-18  Pedro Alves  <palves@redhat.com>
918
919         * dwarf2-frame.c (read_addr_from_reg): Remove stale comment and
920         use unpack_pointer.
921
922 2013-11-18  Joel Brobecker  <brobecker@adacore.com>
923
924         * mi/mi-main.c (mi_cmd_list_features): Add "language-options"
925         to -list-features output.
926
927 2013-11-17  Joel Brobecker  <brobecker@adacore.com>
928
929         * dwarf2expr.h (struct dwarf_expr_context_funcs)
930         <read_addr_from_reg>: Renames "read_reg".
931         * dwarf2-frame.c (read_addr_from_reg): Renames "read_reg".
932         Adjust comment.
933         (dwarf2_frame_ctx_funcs, execute_stack_op, dwarf2_frame_cache):
934         Use read_addr_from_reg in place of read_reg.
935         * dwarf2expr.c (execute_stack_op): Use read_addr_from_reg
936         in place of read_reg.
937         * dwarf2loc.c (dwarf_expr_read_addr_from_reg): Renames
938         dwarf_expr_read_reg.
939         (dwarf_expr_ctx_funcs): Replace dwarf_expr_read_reg
940         with dwarf_expr_read_addr_from_reg.
941         (needs_frame_read_addr_from_reg): Renames needs_frame_read_reg.
942         (needs_frame_ctx_funcs): Replace needs_frame_read_reg with
943         needs_frame_read_addr_from_reg.
944
945 2013-11-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
946
947         * NEWS (Changes in GDB 7.5) (New commands) (explore): Fix typo.
948
949 2013-11-15  Andreas Arnez  <arnez@linux.vnet.ibm.com>
950
951         * dwarf2loc.c (chain_candidate): Prevent invoking memcpy with
952         NULL.
953
954 2013-11-15  Tom Tromey  <tromey@redhat.com>
955
956         PR c++/16117:
957         * c-exp.y (lex_one_token): Add "is_quoted_name" argument.
958         (classify_name): Likewise.  Prefer a field of "this" over a
959         filename.
960         (classify_inner_name, yylex): Update.
961
962 2013-11-15  Joel Brobecker  <brobecker@adacore.com>
963
964         * dwarf2expr.h (struct dwarf_expr_context_funcs) <read_reg>:
965         Extend the documentation a bit.
966         <get_reg_value>: New field.
967         * dwarf2loc.c (dwarf_expr_get_reg_value)
968         (needs_frame_get_reg_value): New functions.
969         (dwarf_expr_ctx_funcs, needs_frame_ctx_funcs): Add "get_reg_value"
970         callback.
971         * dwarf2-frame.c (get_reg_value): New function.
972         (dwarf2_frame_ctx_funcs): Add "get_reg_value" callback.
973         * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_regval_type>:
974         Use new callback to compute result_val.
975
976 2013-11-15  Alan Modra  <amodra@gmail.com>
977
978         * ppc64-tdep.c (ppc64_plt_entry_point): Renamed from..
979         (ppc64_desc_entry_point): ..this.  Update comments here and at
980         call points.
981         (ppc64_standard_linkage1, ppc64_standard_linkage2,
982         ppc64_standard_linkage3): Update comments.
983         (ppc64_standard_linkage4, ppc64_standard_linkage5,
984         (ppc64_standard_linkage6, ppc64_standard_linkage7): New insn
985         patterns.
986         (ppc64_standard_linkage4_target): New function.
987         (ppc64_skip_trampoline_code): Skip ELFv2 patterns too.
988         * rs6000-tdep.c (skip_prologue): Skip ELFv2 r2 setup.  Correct
989         nop match.  Fix comment wrap.
990
991 2013-11-14  Pedro Alves  <palves@redhat.com>
992
993         * infrun.c (handle_signal_stop): Move STOP_QUIETLY,
994         STOP_QUIETLY_REMOTE and 'stop_after_trap' handling earlier.
995
996 2013-11-14  Pedro Alves  <palves@redhat.com>
997
998         * infrun.c (struct execution_control_state)
999         <stepped_after_stopped_by_watchpoint>: New field.
1000         (get_inferior_stop_soon): New function.
1001         (handle_inferior_event): 'stepped_after_stopped_by_watchpoint' was
1002         moved to struct execution_control_state -- adjust.  Use
1003         get_inferior_stop_soon.  Split TARGET_WAITKIND_STOPPED handling to
1004         new function.
1005         (handle_signal_stop): New function, factored out from
1006         handle_inferior_event.
1007
1008 2013-11-14  Pedro Alves  <palves@redhat.com>
1009
1010         * break-catch-sig.c (signal_catchpoint_explains_signal): Adjust to
1011         return a boolean.
1012         * breakpoint.c (bpstat_explains_signal): Adjust to return a
1013         boolean.
1014         (explains_signal_watchpoint, base_breakpoint_explains_signal):
1015         Adjust to return a boolean.
1016         * breakpoint.h (enum bpstat_signal_value): Delete.
1017         (struct breakpoint_ops) <explains_signal>: New returns a boolean.
1018         (bpstat_explains_signal): Likewise.
1019         * infrun.c (handle_inferior_event) <random signal checks>:
1020         bpstat_explains_signal now returns a boolean - adjust.  No longer
1021         consider hiding signals.
1022
1023 2013-11-14  Pedro Alves  <palves@redhat.com>
1024
1025         * breakpoint.c (bpstat_explains_signal) <Moribund locations>:
1026         Return BPSTAT_SIGNAL_PASS instead of BPSTAT_SIGNAL_HIDE.
1027         (explains_signal_watchpoint): Return BPSTAT_SIGNAL_PASS instead of
1028         BPSTAT_SIGNAL_HIDE.
1029         (base_breakpoint_explains_signal): Return BPSTAT_SIGNAL_PASS
1030         instead of BPSTAT_SIGNAL_HIDE.
1031         * infrun.c (handle_inferior_event): Rework random signal checks.
1032
1033 2013-11-14  Pedro Alves  <palves@redhat.com>
1034
1035         * infrun.c (struct execution_control_state): Remove
1036         'random_signal' field.
1037         (handle_syscall_event): Use bpstat_causes_stop instead of
1038         bpstat_explains_signal.  Don't set ecs->random_signal.
1039         (handle_inferior_event): New 'random_signal' local.
1040         <TARGET_WAITKIND_FORKED, TARGET_WAITKIND_VFORKED,
1041         TARGET_WAITKIND_EXECD>: Use bpstat_causes_stop instead of
1042         bpstat_explains_signal.  Don't set ecs->random_signal.
1043         <TARGET_WAITKIND_STOPPED>: Adjust to use local instead of
1044         ecs->random_signal.
1045
1046 2013-11-14  Pedro Alves  <palves@redhat.com>
1047
1048         * infrun.c (handle_inferior_event): Move comment from the
1049         function's body to the function's description, adjusted.
1050
1051 2013-11-14  Pedro Alves  <palves@redhat.com>
1052
1053         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>:
1054         Handle STOP_QUIETLY_NO_SIGSTOP and STOP_QUIETLY_REMOTE here.
1055         Assert we never fall through out of the TARGET_WAITKIND_LOADED
1056         case.
1057
1058 2013-11-14  Tom Tromey  <tromey@redhat.com>
1059
1060         * python/py-linetable.c (ltpy_has_line)
1061         (ltpy_get_all_source_lines): Fix loop termination condition.
1062
1063 2013-11-14  Joel Brobecker  <brobecker@adacore.com>
1064
1065         * mi/mi-parse.h (struct mi_parse) <language>: New field.
1066         * mi/mi-main.c (mi_cmd_execute): Temporarily set language to
1067         PARSE->LANGUAGE during command execution, if set.
1068         * mi/mi-parse.c: Add "language.h" #include.
1069         (mi_parse): Add parsing of "--language" command option.
1070
1071         * NEWS: Add entry mentioning the new "--language" command option.
1072
1073 2013-11-14  Pedro Alves  <palves@redhat.com>
1074             Joel Brobecker  <brobecker@adacore.com>
1075
1076         * cli/cli-utils.h (extract_arg_const): Add declaration.
1077         * cli/cli-utils.c (extract_arg_const): New function.
1078         (extract_arg): Reimplement using extract_arg_const.
1079
1080 2013-11-14  Joel Brobecker  <brobecker@adacore.com>
1081
1082         * language.h: Add "symtab.h" #include.
1083
1084 2013-11-13  Doug Evans  <xdje42@gmail.com>
1085
1086         * breakpoint.c (bpstat_check_breakpoint_conditions): For thread
1087         specific breakpoints, don't evaluate breakpoint condition if
1088         different thread.
1089
1090 2013-11-13  Keith Seitz  <keiths@redhat.com>
1091
1092         PR c++/7935
1093         PR c++/10541
1094         * cp-support.c (insepct_type): Add support for substituting
1095         namespace aliases, too.
1096         * dwarf2read.c (scan_partial_symbols): Add a partial symbol
1097         for DW_TAG_imported_declaration.
1098         (add_partial_symbol): Likewise.
1099         (process_die): Handle namespace aliases with
1100         read_namespace_alias.
1101         (die_needs_namespace): Add DW_TAG_imported_declaration.
1102         (read_namespace_alias): New function.
1103         (load_partial_dies): Load DW_TAG_imported_declaration, too.
1104         (new_symbol_full): Handle DW_TAG_imported_declaration.
1105
1106 2013-11-13  Keith Seitz  <keiths@redhat.com>
1107
1108         * p-exp.y (uptok): Make first parameter const.
1109         (yylex): Make `tokstart' and `tokptr' const.
1110         Don't copy the lexer input to a temporary buffer.
1111         Make `p' const.
1112         Remove const workaround for parse_escape.
1113         Create a temporary buffer for a convenience variable instead
1114         of doing in-place modification of the input.
1115         If a match is found with a different case from the input,
1116         do not change the input at all.
1117         Use `tmp' to construct the resultant stoken instead of
1118         `tokstart'.
1119
1120 2013-11-13  Doug Evans  <xdje42@gmail.com>
1121
1122         * breakpoint.c (breakpoint_cond_eval): Fix and enhance comment.
1123
1124 2013-11-13  Joel Brobecker  <brobecker@adacore.com>
1125
1126         * mi/mi-main.c (mi_cmd_list_features): Replace "info-ada-exceptions"
1127         entry with "ada-exceptions".
1128
1129 2013-11-13  Joel Brobecker  <brobecker@adacore.com>
1130
1131         * symfile.c (reread_symbols): Move call to set_objfile_per_bfd
1132         after re-initialization of OBJFILE's obstack.
1133
1134 2013-11-12  Doug Evans  <xdje42@gmail.com>
1135
1136         * breakpoint.c (bpstat_check_breakpoint_conditions): Assert
1137         bs->stop != 0 on entry.  Update function comment.  Simplify early
1138         exit for frame mismatch.  Reindent rest of function.
1139
1140 2013-11-12  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1141
1142         * objc-lang.c (uniquify_strings): Prevent invoking qsort with
1143         NULL.
1144
1145 2013-11-12  Doug Evans  <dje@google.com>
1146
1147         Work around gold/15646.
1148         * dwarf2read.c (read_index_from_section): Update comment.
1149         (struct dw2_symtab_iterator): New member global_seen.
1150         (dw2_symtab_iter_init): Initialize it.
1151         (dw2_symtab_iter_next): Skip duplicate global symbols.
1152         (dw2_expand_symtabs_matching): Ditto.
1153
1154 2013-11-12  Joel Brobecker  <brobecker@adacore.com>
1155
1156         * mi/mi-cmds.h (mi_cmd_info_ada_exceptions): Add declaration.
1157         * mi/mi-cmds.c (mi_cmds): Add entry for -info-ada-exceptions
1158         command.
1159         * mi/mi-cmd-info.c: #include "ada-lang.c" and "arch-utils.c".
1160         (mi_cmd_info_ada_exceptions): New function.
1161         * mi/mi-main.c (mi_cmd_list_features): Add "info-ada-exceptions".
1162
1163 2013-11-12  Joel Brobecker  <brobecker@adacore.com>
1164
1165         * ada-lang.h: #include "vec.h".
1166         (struct ada_exc_info): New.
1167         (ada_exc_info): New typedef.
1168         (DEF_VEC_O(ada_exc_info)): New vector.
1169         (ada_exceptions_list): Add declaration.
1170         * ada-lang.c (ada_is_exception_sym)
1171         (ada_is_non_standard_exception_sym, compare_ada_exception_info)
1172         (sort_remove_dups_ada_exceptions_list)
1173         (ada_exc_search_name_matches, ada_add_standard_exceptions)
1174         (ada_add_exceptions_from_frame, ada_add_global_exceptions)
1175         (ada_exceptions_list_1, ada_exceptions_list)
1176         (info_exceptions_command): New function.
1177         (_initialize_ada_language): Add "info exception" command.
1178
1179 2013-11-11  Phil Muldoon  <pmuldoon@redhat.com>
1180
1181         PR python/15629
1182         * NEWS: Add linetable feature.
1183         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-linetable entries.
1184         * python/py-linetable.c: New file.
1185         * python/py-symtab.c (stpy_get_linetable): New function.
1186         * python/python-internal.h (symtab_to_linetable_object): Declare.
1187         (gdbpy_initialize_linetable): Ditto.
1188         * python/python.c (_initialize_python): Call
1189         gdbpy_initialize_linetable.
1190
1191 2013-11-11  Joel Brobecker  <brobecker@adacore.com>
1192
1193         * ada-lang.c (create_ada_exception_catchpoint): Enhance
1194         the documentation of fields "except_string" and "condition".
1195         * mi/mi-cmd-catch.c (mi_cmd_catch_assert): Reallocate
1196         CONDITION on the heap before passing it to
1197         create_ada_exception_catchpoint.
1198         (mi_cmd_catch_exception): Likewise for EXCEPTION_NAME and
1199         CONDITION.
1200
1201 2013-11-11  Tom Tromey  <tromey@redhat.com>
1202
1203         * config.in, configure: Rebuild.
1204         * configure.ac (HAVE_TKILL_SYSCALL): Check for "syscall".
1205
1206 2013-11-11  Joel Brobecker  <brobecker@adacore.com>
1207
1208         * remote-sim.c (gdbsim_detach): Break declaration into
1209         shorter lines.  No code change.
1210
1211 2013-11-11  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
1212
1213         * remote-sim.c (gdbsim_detach): Fix prototype.
1214
1215 2013-11-08  Doug Evans  <dje@google.com>
1216
1217         * dwarf2read.c (dwarf2_read_debug): Change to unsigned int.
1218         (create_debug_types_hash_table): Only print debugging messages for
1219         each TU if dwarf2-read >= 2.
1220         (process_queue): Ditto.
1221         (_initialize_dwarf2_read): Make "set debug dwarf2-read" a zuinteger.
1222         Update doc string.
1223
1224 2013-11-08  Tom Tromey  <tromey@redhat.com>
1225
1226         * configure: Rebuild.
1227         * configure.ac: Remove mentions of HAVE_MULTIPLE_PROC_FDS.
1228
1229 2013-11-08  Tom Tromey  <tromey@redhat.com>
1230
1231         * configure, config.in: Rebuild.
1232         * configure.ac: Remove unused configury.
1233
1234 2013-11-08  Tom Tromey  <tromey@redhat.com>
1235
1236         * m32c-tdep.c: Use gdb_string.h.
1237
1238 2013-11-08  Tom Tromey  <tromey@redhat.com>
1239
1240         * configure, config.in: Rebuild.
1241         * configure.ac: Remove all link.h-related checks.
1242
1243 2013-11-08  Tom Tromey  <tromey@redhat.com>
1244
1245         * acinclude.m4: Include common.m4.
1246         * common/common.m4: New file.
1247         * configure, config.in: Rebuild.
1248         * configure.ac: Use GDB_AC_COMMON.
1249
1250 2013-11-08  Doug Evans  <dje@google.com>
1251
1252         * NEWS: Mention that "set debug symtab-create" now accepts a
1253         verbosity level.
1254         * buildsym.c (end_symtab_from_static_block): Call set_symtab_primary
1255         to set the symtab's primary flag.
1256         * jit.c (finalize_symtab): Ditto.
1257         * mdebugread.c (psymtab_to_symtab_1): Ditto.
1258         * symfile.c (allocate_symtab): Only print debugging messages for
1259         symtab_create_debug levels 2 and higher.
1260         * symtab.c (symtab_create_debug): Change type to unsigned int.
1261         (set_symtab_primary): New function.
1262         (_initialize_symtab): Change "set debug symtab-create" to a
1263         zuinteger option.
1264         * symtab.h (set_symtab_primary): Declare.
1265         (symtab_create_debug): Update decl.
1266
1267 2013-11-08  Tom Tromey  <tromey@redhat.com>
1268
1269         * aix-thread.c (aix_thread_detach): Update.
1270         * corelow.c (core_detach): Update.
1271         * darwin-nat.c (darwin_detach): Update.
1272         * dec-thread.c (dec_thread_detach): Update.
1273         * gnu-nat.c (gnu_detach): Update.
1274         * go32-nat.c (go32_detach): Update.
1275         * inf-ptrace.c (inf_ptrace_detach): Update.
1276         * inf-ttrace.c (inf_ttrace_detach): Update.
1277         * linux-fork.c (linux_fork_detach): Update.
1278         * linux-fork.h (linux_fork_detach): Update.
1279         * linux-nat.c (linux_nat_detach): Update.  Introduce "tem"
1280         local for const-correctness.
1281         * linux-thread-db.c (thread_db_detach): Update.
1282         * monitor.c (monitor_detach): Update.
1283         * nto-procfs.c (procfs_detach): Update.
1284         * procfs.c (procfs_detach): Update.
1285         * record.c (record_detach): Update.
1286         * record.h (record_detach): Update.
1287         * remote-m32r-sdi.c (m32r_detach): Update.
1288         * remote-mips.c (mips_detach): Update.
1289         * remote-sim.c (gdbsim_detach): Update.
1290         * remote.c (remote_detach_1, remote_detach)
1291         (extended_remote_detach): Update.
1292         * sol-thread.c (sol_thread_detach): Update.
1293         * target.c (target_detach): Make "args" const.
1294         (init_dummy_target): Update.
1295         * target.h (struct target_ops) <to_detach>: Make argument const.
1296         (target_detach): Likewise.
1297         * windows-nat.c (windows_detach): Update.
1298
1299 2013-11-07  Doug Evans  <dje@google.com>
1300
1301         PR 11786
1302         *  solib-svr4.c (svr4_exec_displacement): Ignore filesz, memsz, flags
1303         and align fields for PT_GNU_RELRO segments.
1304
1305 2013-11-07  Phil Muldoon  <pmuldoon@redhat.com>
1306
1307         PR python/15747
1308         * python/py-cmd.c: Add COMPLETE_EXPRESSION constant.
1309
1310 2013-11-07  Phil Muldoon  <pmuldoon@redhat.com>
1311
1312         * NEWS: Document Python temporary breakpoint support.
1313         * python/py-breakpoint.c (bppy_get_temporary): New function.
1314         (bppy_init): New keyword: temporary. Parse it and set breakpoint
1315         to temporary if True.
1316
1317 2013-11-07  Jose E. Marchesi  <jose.marchesi@oracle.com>
1318
1319         * sparc-tdep.c (sparc_analyze_control_transfer): Assertion
1320         removed to allow analyzing unconditional branch instructions
1321         with PC-relative offsets of zero.
1322
1323 2013-11-07  Yao Qi  <yao@codesourcery.com>
1324
1325         * mi/mi-cmd-var.c: Include "language.h".
1326         (mi_cmd_var_info_expression): Get language name from
1327         language_defn.
1328         * varobj.c (varobj_language_string): Remove.
1329         (variable_language): Remove declaration.
1330         (languages): Remove.
1331         (varobj_get_language): Change the type of return value.
1332         (variable_language): Remove.
1333         * varobj.h (enum varobj_languages): Remove.
1334         (varobj_language_string): Remove declaration.
1335         (varobj_get_language): Update declaration.
1336
1337 2013-11-07  Yao Qi  <yao@codesourcery.com>
1338
1339         * language.h (struct language_defn) <la_natural_name>: New
1340         field.
1341         * ada-lang.c (ada_language_defn): Initialize field
1342         'la_natural_name'.
1343         * c-lang.c (c_language_defn): Likewise.
1344         (cplus_language_defn, asm_language_defn): Likewise.
1345         * d-lang.c (d_language_defn): Likewise.
1346         * f-lang.c (f_language_defn): Likewise.
1347         * go-lang.c (go_language_defn): Likewise.
1348         * jv-lang.c (java_language_defn): Likewise.
1349         * language.c (unknown_language_defn ): Likewise.
1350         (auto_language_defn): Likewise.
1351         * m2-lang.c (m2_language_defn): Likewise.
1352         * objc-lang.c (objc_language_defn): Likewise.
1353         * opencl-lang.c (opencl_language_defn): Likewise.
1354         * p-lang.c (pascal_language_defn): Likewise.
1355
1356 2013-11-07  Yao Qi  <yao@codesourcery.com>
1357
1358         * language.c (language_str): Return const char *.
1359         (add_language): Add const to 'language_names'
1360         * language.h (struct language_defn) <la_name>: Add const.
1361         (language_str: Update declaration.
1362
1363 2013-11-06  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1364
1365         * s390-linux-nat.c (s390_read_description): Consider the TE field
1366         in the HWCAP for determining 'have_regset_tdb'.
1367
1368 2013-11-06  Will Newton  <will.newton@linaro.org>
1369
1370         PR gdb/12866
1371         * dwarf2read.c (skip_one_die): Sanity check DW_AT_sibling
1372         values.  (read_partial_die): Likewise.
1373
1374 2013-11-06  Muhammad Bilal  <mbilal@codesourcery.com>
1375
1376         PR cli/16122
1377         * top.c (command_line_input): Unify interactivity tests to use
1378         input_from_terminal_p.
1379         * event-top.c (command_line_handler): Likewise.
1380
1381 2013-11-06  Yao Qi  <yao@codesourcery.com>
1382
1383         * Makefile.in (check-perf): New target.
1384
1385 2013-11-05  Will Newton  <will.newton@linaro.org>
1386
1387         PR gdb/7670
1388         * arm-tdep.c (print_fpu_flags): Use filtered output routines.
1389         (arm_print_float_info): Likewise.
1390
1391 2013-11-04  Anton Blanchard  <anton@samba.org>
1392
1393         * target.c (memory_xfer_partial): Cap write to 4KB.
1394
1395 2013-11-01  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
1396
1397         * breakpoint.c (create_longjmp_master_breakpoint): Allow libc
1398         probe scan even when the arch provides no get_longjmp_target.
1399
1400 2013-10-31  Pedro Alves  <palves@redhat.com>
1401
1402         * infrun.c (handle_syscall_event): Don't set or clear stop_signal.
1403         (handle_inferior_event) <TARGET_WAITKIND_FORKED,
1404         TARGET_WAITKIND_VFORKED>: Don't set stop_signal to
1405         GDB_SIGNAL_TRAP, or clear it.  Pass GDB_SIGNAL_0 to
1406         bpstat_explains signal, instead of GDB_SIGNAL_TRAP.
1407         <bpstat handling>: If the bpstat chain wants the signal to be
1408         hidden, then set stop_signal to GDB_SIGNAL_0 instead of
1409         GDB_SIGNAL_TRAP.
1410
1411 2013-10-31  Andrew Burgess  <aburgess@broadcom.com>
1412
1413         * breakpoint.c (update_watchpoint): Update error message and add
1414         an additional error message.
1415
1416 2013-10-30  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1417
1418         * s390-tdep.h: Rename to...
1419         * s390-linux-tdep.h: ...here.
1420         * s390-tdep.c: Rename to...
1421         * s390-linux-tdep.c: ...here.  Adjust #include.
1422         * s390-nat.c: Rename to...
1423         * s390-linux-nat.c: ...here.  Adjust #include.
1424         * config/s390/s390.mh: Rename to...
1425         * config/s390/linux.mh: ...here.  Reflect rename s390-nat.o ->
1426         s390-linux-nat.o.
1427         * configure.host: Reflect host rename "s390" -> "linux".
1428         * configure.tgt: Reflect rename s390-tdep.o -> s390-linux-tdep.o.
1429         * Makefile.in (ALL_TARGET_OBS): Likewise.
1430         (HFILES_NO_SRCDIR): Reflect rename s390-tdep.h ->
1431         s390-linux-tdep.h.
1432         (ALLDEPFILES): Reflect rename of .c files.
1433
1434 2013-10-30  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1435
1436         * s390-nat.c: Whitespace cleanup.
1437         * s390-tdep.c: Likewise.
1438         * s390-tdep.h: Remove empty line at end of file.
1439
1440 2013-10-30  Maciej W. Rozycki  <macro@codesourcery.com>
1441
1442         * linux-tdep.c (linux_corefile_thread_callback): Preinitialize
1443         siginfo_size.
1444
1445 2013-10-29  Tom Tromey  <tromey@redhat.com>
1446
1447         * utils.c (reg): Move undefinition...
1448         * gdb_curses.h: ... here.  Update comment to mention AIX.
1449
1450 2013-10-29  Nicolas Blanc  <nicolas.blanc@intel.com>
1451
1452         * exec.h (add_target_sections_of_objfile): New declaration.
1453         * exec.c (add_target_sections_of_objfile): New function.
1454         * symfile.c (add_symbol_file_command): Update current target sections.
1455         (remove_symbol_file_command): New command.
1456         (symfile_free_objfile): New function.
1457         (_initialize_symfile): Register observer for free_objfile events.
1458         * NEWS: Add description of the remove-symbol-file command.
1459         * breakpoint.c (disable_breakpoints_in_freed_objfile): New function.
1460         * objfiles.c (free_objfile): Notify free_objfile.
1461         (is_addr_in_objfile): New function.
1462         * objfiles.h (is_addr_in_objfile): New declaration.
1463         * printcmd.c (clear_dangling_display_expressions): Act upon free_objfile
1464         events instead of solib_unloaded events.
1465         (_initialize_printcmd): Register observer for free_objfile instead
1466         of solib_unloaded notifications.
1467         * solib.c (remove_user_added_objfile): New function.
1468         (_initialize_symfile): Add remove-symbol-file.
1469
1470 2013-10-29  Andrew Burgess  <aburgess@broadcom.com>
1471
1472         * infcmd.c (default_print_one_register_info): Use val_print to
1473         print all values even optimized out or unavailable ones.  Don't
1474         try to print a raw form of optimized out or unavailable values.
1475
1476 2013-10-29  Yao Qi  <yao@codesourcery.com>
1477
1478         * auto-load.c (auto_load_pspace_data_cleanup): Get data from
1479         parameter 'arg' instead of from program_space_data.
1480         * objfiles.c (objfiles_pspace_data_cleanup): Likewise.
1481         * solib-darwin.c (darwin_pspace_data_cleanup): Likewise.
1482         * solib-dsbt.c (dsbt_pspace_data_cleanup): Likewise.
1483         * solib-svr4.c (svr4_pspace_data_cleanup): Likewise.
1484         * inflow.c (inflow_inferior_data_cleanup): Get data from
1485         parameter 'arg' instead of inferior_data.
1486         * registry.h: Add comments.
1487
1488 2013-10-28  Pedro Alves  <palves@redhat.com>
1489
1490         * breakpoint.c (watchpoints_triggered)
1491         <!target_stopped_data_address>: Hardcode return 1.
1492
1493 2013-10-28  Pedro Alves  <palves@redhat.com>
1494
1495         * infrun.c (process_event_stop_test): Remove unnecessary scoping
1496         level and reindent.
1497
1498 2013-10-28  Pedro Alves  <palves@redhat.com>
1499
1500         * infrun.c (process_event_stop_test): New function, factored out
1501         from handle_inferior_event.
1502         (handle_inferior_event): 'process_event_stop_test' is now a
1503         function instead of a goto label -- adjust.
1504
1505 2013-10-28  Pedro Alves  <palves@redhat.com>
1506
1507         * infrun.c (handle_inferior_event): Move process_event_stop_test
1508         goto label to the else branch of the ecs->random_signal check,
1509         along with FRAME and GDBARCH re-fetching.
1510
1511 2013-10-28  Pedro Alves  <palves@redhat.com>
1512
1513         * infrun.c (switch_back_to_stepped_thread): New function, factored
1514         out from handle_inferior_event.
1515         (handle_inferior_event): Adjust to call
1516         switch_back_to_stepped_thread.  Call it also at the tail of the
1517         random signal handling, and return, instead of also handling
1518         random signals just before the stepping tests.
1519
1520 2013-10-28  Pedro Alves  <palves@redhat.com>
1521
1522         * infrun.c (clear_stop_func): Delete.
1523         (handle_inferior_event): Don't call clear_stop_func and don't
1524         clear 'ecs->random_signal'.
1525
1526 2013-10-27  Yao Qi  <yao@codesourcery.com>
1527
1528         * varobj.c (struct varobj_root) <lang>: Rename to 'lang_ops'.
1529         (varobj_create, varobj_get_path_expr): Update.
1530         (varobj_value_has_mutated, varobj_update): Likewise.
1531         (create_child_with_value, new_root_variable): Likewise.
1532         (number_of_children, name_of_variable): Likewise.
1533         (value_of_child, my_value_of_variable): Likewise.
1534         (varobj_value_is_changeable_p): Likewise.
1535
1536 2013-10-25  Yao Qi  <yao@codesourcery.com>
1537
1538         * language.h (struct lang_varobj_ops): Declare.
1539         (struct language_defn) <la_varobj_ops>: New field.
1540         * ada-lang.c: Include "varobj.h"
1541         (defn ada_language_defn): Initialize field 'la_varobj_ops' with
1542         ada_varobj_ops.
1543         * c-lang.c: Include "varobj.h"
1544         (c_language_defn): Initialize field 'la_varobj_ops' with
1545         c_varobj_ops.
1546         (cplus_language_defn): Initialize field 'la_varobj_ops' with
1547         cplus_varobj_ops.
1548         (asm_language_defn): Initialize field 'la_varobj_ops' with
1549         default_varobj_ops.
1550         (minimal_language_defn): Likewise.
1551         * d-lang.c (d_language_defn): Likewise.
1552         * f-lang.c (f_language_defn): Likewise.
1553         * go-lang.c (go_language_defn): Likewise.
1554         * m2-lang.c (m2_language_defn): Likewise.
1555         * objc-lang.c (objc_language_defn): Likewise.
1556         * opencl-lang.c (opencl_language_defn): Likewise.
1557         * p-lang.c (pascal_language_defn): Likewise.
1558         * language.c (unknown_language_defn): Likewise.
1559         (auto_language_defn): Likewise.
1560         (local_language_defn): Likewise.
1561         * jv-lang.c (java_language_defn): Initialize field
1562         'la_varobj_ops' with java_varobj_ops.
1563         * varobj.c (varobj_create): Update.
1564         * varobj.h (default_varobj_ops): Define macro.
1565
1566 2013-10-25  Pedro Alves  <palves@redhat.com>
1567
1568         * cp-valprint.c (cp_print_value_fields): No longer handle a NULL
1569         static field value.
1570         (cp_print_static_field): If the value is entirely optimized out,
1571         print <optimized out> here.
1572         * jv-valprint.c (java_print_value_fields): No longer handle a NULL
1573         static field value.
1574         * p-valprint.c (pascal_object_print_static_field): If the value is
1575         entirely optimized out, print <optimized out> here.
1576         * valops.c (do_search_struct_field)
1577         (value_struct_elt_for_reference): No longer handle a NULL static
1578         field value.
1579         * value.c (value_static_field): Return an optimized out value
1580         instead of NULL.
1581
1582 2013-10-25  Yao Qi  <yao@codesourcery.com>
1583
1584         * remote.c (remote_traceframe_info): Return early if
1585         traceframe is not selected.
1586
1587 2013-10-25  Yao Qi  <yao@codesourcery.com>
1588
1589         * tracepoint.c (traceframe_fun): Remove.
1590         (traceframe_sal): Remove.
1591         (set_traceframe_context): Add local variables.
1592
1593 2013-10-25  Joel Brobecker  <brobecker@adacore.com>
1594
1595         * varobj.h (struct lang_varobj_ops): Remove spaces between '*'
1596         and parameter name.
1597
1598 2013-10-24  Maciej W. Rozycki  <macro@codesourcery.com>
1599
1600         * linux-tdep.c (linux_corefile_thread_callback): Propagate any
1601         failure from register information collection.
1602
1603 2013-10-24  Maciej W. Rozycki  <macro@codesourcery.com>
1604
1605         * linux-tdep.c (linux_corefile_thread_data): Remove `num_notes'
1606         member.
1607         (linux_corefile_thread_callback): Update accordingly.
1608         (linux_make_corefile_notes): Likewise.
1609
1610 2013-10-24  Pedro Alves   <palves@redhat.com>
1611
1612         * NEWS (New options): Mention set/show startup-with-shell.
1613         * config/alpha/nm-osf3.h (START_INFERIOR_TRAPS_EXPECTED): Set to 2
1614         instead of 3.
1615         * fork-child.c (fork_inferior, startup_inferior): Handle 'set
1616         startup-with-shell'.
1617         (show_startup_with_shell): New function.
1618         (_initialize_fork_child): Register the set/show startup-with-shell
1619         commands.
1620         * inf-ptrace.c (inf_ptrace_create_inferior): Remove comment.
1621         * inf-ttrace.c (inf_ttrace_him): Remove comment.
1622         * procfs.c (procfs_init_inferior): Remove comment.
1623         * infcmd.c (startup_with_shell): New global.
1624         * inferior.h (startup_with_shell): Declare global.
1625         (STARTUP_WITH_SHELL): Delete.
1626         (START_INFERIOR_TRAPS_EXPECTED): Set to 1 by default instead of 2.
1627
1628 2013-10-23  Pedro Alves  <palves@redhat.com>
1629
1630         * common/gdb_signals.h (gdb_signal_to_symbol_string): Declare.
1631         * common/signals.c: Include "gdb_assert.h".
1632         (signals): New field 'symbol'.
1633         (SET): Use the 'symbol' parameter.
1634         (gdb_signal_to_symbol_string): New function.
1635         * infrun.c (handle_inferior_event) <random signal>: In debug
1636         output, print the random signal enum as string in addition to its
1637         number.
1638         * target/waitstatus.c (target_waitstatus_to_string): Print the
1639         signal's enum value as string instead of the (POSIX) signal name.
1640
1641 2013-10-23  Gary Benson  <gbenson@redhat.com>
1642
1643         PR 16013
1644         * common/linux-osdata.c (command_from_pid): Reduced size of cmd
1645         from 32 to 18.  Adjusted fscanf format string accordingly.
1646         (Avoids leaving cmd unterminated.)
1647         (print_sockets): Do not parse tlen, inode, sl, timeout, txq, rxq,
1648         trun, retn or extra.  (Avoids leaving extra unterminated.)  Check
1649         that local_address and remote_address will not overflow.
1650         (linux_xfer_osdata_modules): Parse lines using strtok to avoid
1651         leaving dependencies unterminated.  Parse size as "%u" to match
1652         definition.
1653
1654 2013-10-22  Pedro Alves  <palves@redhat.com>
1655
1656         * infrun.c (handle_inferior_event) <thread hop>: Don't clear or
1657         set ecs->random signal.
1658
1659 2013-10-22  Pedro Alves  <palves@redhat.com>
1660
1661         * infrun.c (keep_going): Update comments.
1662
1663 2013-10-22  Pedro Alves  <palves@redhat.com>
1664
1665         * remote.c (remote_parse_stop_reply) <'T'/'S'/'X' replies>: Map
1666         invalid signal numbers to GDB_SIGNAL_UNKNOWN.
1667
1668 2013-10-22  Pedro Alves  <palves@redhat.com>
1669
1670         * include/gdb/signals.def (TARGET_EXC_BAD_ACCESS): Rename to
1671         GDB_EXC_BAD_ACCESS.
1672         (TARGET_EXC_BAD_INSTRUCTION): Rename to GDB_EXC_BAD_INSTRUCTION.
1673         (TARGET_EXC_ARITHMETIC): Rename to GDB_EXC_ARITHMETIC.
1674         (TARGET_EXC_EMULATION): Rename to GDB_EXC_EMULATION.
1675         (TARGET_EXC_SOFTWARE): Rename to GDB_EXC_SOFTWARE.
1676         (TARGET_EXC_BREAKPOINT): Rename to GDB_EXC_BREAKPOINT.
1677         (GDB_SIGNAL_LAST): Change description string.
1678         * common/signals.c (gdb_signal_from_host, do_gdb_signal_to_host):
1679         Adjust to signal renaming.
1680         * darwin-nat.c (darwin_decode_message): Likewise.
1681
1682 2013-10-22  Jose E. Marchesi  <jose.marchesi@oracle.com>
1683
1684         * MAINTAINERS (Write After Approval): Add myself to the list.
1685
1686 2013-10-18  Andrew Burgess  <aburgess@broadcom.com>
1687
1688         * breakpoint.c (update_watchpoint): If hardware watchpoints are
1689         forced off, downgrade them to software watchpoints if possible,
1690         and error out if not possible.
1691         (watch_command_1): Move watchpoint type selection closer to
1692         watchpoint creation, and extend the comments.
1693
1694 2013-10-18  Pedro Alves  <palves@redhat.com>
1695
1696         PR gdb/16062
1697         * infrun.c (handle_inferior_event): Keep going if we got a random
1698         signal we should not stop for, instead of falling through to the
1699         step tests.
1700
1701 2013-10-18  Yao Qi  <yao@codesourcery.com>
1702
1703         * c-varobj.c (cplus_number_of_children): Fix indentation.
1704
1705 2013-10-17  Tom Tromey  <tromey@redhat.com>
1706
1707         PR gdb/15995:
1708         * printcmd.c (printcmd): Call gdb_flush.
1709
1710 2013-10-17  Tom Tromey  <tromey@redhat.com>
1711
1712         * elfread.c (struct elfinfo) <stabindexsect>: Remove.
1713         (elf_locate_sections): Update.
1714
1715 2013-10-17  Yao Qi  <yao@codesourcery.com>
1716
1717         * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
1718         * ada-varobj.c: Remove the include of ada-varobj.h.
1719         (ada_varobj_get_number_of_children): Declare.
1720         (ada_varobj_get_name_of_child): Make it static.
1721         (ada_varobj_get_path_expr_of_child): Likewise.
1722         (ada_varobj_get_value_of_child): Likewise.
1723         (ada_varobj_get_type_of_child): Likewise.
1724         (ada_varobj_get_value_of_array_variable): Likewise.
1725         * ada-varobj.h: Remove.
1726
1727 2013-10-17  Yao Qi  <yao@codesourcery.com>
1728
1729         * Makefile.in (SFILES): Add c-varobj.c and jv-varobj.c.
1730         (COMMON_OBS): Add c-varobj.o and jv-varobj.o.
1731         * ada-varobj.c: Include "varobj.h".
1732         (ada_number_of_children): New.  Moved from varobj.c.
1733         (ada_name_of_variable, ada_name_of_child): Likewise.
1734         (ada_path_expr_of_child, ada_value_of_child): Likewise.
1735         (ada_type_of_child, ada_value_of_variable): Likewise.
1736         (ada_value_is_changeable_p, ada_value_has_mutated): Likewise.
1737         (ada_varobj_ops): New.
1738         * c-varobj.c, jv-varobj.c: New file.  Moved from varobj.c.
1739         * gdbtypes.c (get_target_type): New.  Moved from varobj.c.
1740         * gdbtypes.h (get_target_type): Declare.
1741         * varobj.c: Remove the inclusion of "ada-varobj.h" and
1742         "ada-lang.h".
1743         (ANONYMOUS_STRUCT_NAME): Move it to c-varobj.c.
1744         (ANONYMOUS_UNION_NAME): Likewise.
1745         (get_type, get_value_type, get_target_type): Remove declarations.
1746         (value_get_print_value, varobj_value_get_print_value): Likewise.
1747         (c_number_of_children, c_name_of_variable): Likewise.
1748         (c_name_of_child, c_path_expr_of_child): Likewise.
1749         (c_value_of_child, c_type_of_child): Likewise.
1750         (c_value_of_variable, cplus_number_of_children): Likewise.
1751         (cplus_class_num_children, cplus_name_of_variable): Likewise.
1752         (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
1753         (cplus_value_of_child, cplus_type_of_child): Likewise.
1754         (cplus_value_of_variable, java_number_of_children): Likewise.
1755         (java_name_of_variable, java_name_of_child): Likewise.
1756         (java_path_expr_of_child, java_value_of_child): Likewise.
1757         (java_type_of_child, java_value_of_variable): Likewise.
1758         (ada_number_of_children, ada_name_of_variable): Likewise.
1759         (ada_name_of_child, ada_path_expr_of_child): Likewise.
1760         (ada_value_of_child, ada_type_of_child): Likewise.
1761         (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
1762         (ada_value_has_mutated): Likewise.
1763         (struct language_specific): Move it to varobj.h.
1764         (CPLUS_FAKE_CHILD): Move it to varobj.h.
1765         (restrict_range): Rename it varobj_restrict_range.  Make it extern.
1766         Callers update.
1767         (get_path_expr_parent): Rename it to varobj_get_path_expr_parent.
1768         Make it extern.
1769         (is_anonymous_child): Move it to c-varobj.c and rename to
1770         varobj_is_anonymous_child.  Caller update.
1771         (get_type): Move it to c-varobj.c.
1772         (get_value_type): Rename it varobj_get_value_type.  Make it
1773         extern.
1774         (get_target_type): Move it gdbtypes.c.
1775         (varobj_formatted_print_options): New function.
1776         (value_get_print_value): Rename it to
1777         varobj_value_get_print_value and make it extern.
1778         (varobj_value_is_changeable_p): Make it extern.
1779         (adjust_value_for_child_access): Move it to c-varobj.c.
1780         (default_value_is_changeable_p): Rename it to
1781         varobj_default_value_is_changeable_p.  Make it extern.
1782         (c_number_of_children, c_name_of_variable): Move it to c-varobj.c
1783         (c_name_of_child, c_path_expr_of_child): Likewise.
1784         (c_value_of_child, c_type_of_child): Likewise.
1785         (c_value_of_variable, cplus_number_of_children): Likewise.
1786         (cplus_class_num_children, cplus_name_of_variable): Likewise.
1787         (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
1788         (cplus_value_of_child, cplus_type_of_child): Likewise.
1789         (cplus_value_of_variable): Likewise.
1790         (java_number_of_children, java_name_of_variable): Move it to jv-varobj.c.
1791         (java_name_of_child, java_path_expr_of_child): Likewise.
1792         (java_value_of_child, java_type_of_child): Likewise.
1793         (java_value_of_variable): Likewise.
1794         (ada_number_of_children, ada_name_of_variable): Move it to ada-varobj.c.
1795         (ada_name_of_child, ada_path_expr_of_child): Likewise.
1796         (ada_value_of_child, ada_type_of_child): Likewise.
1797         (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
1798         (ada_value_has_mutated): Likewise.
1799         * varobj.h (CPLUS_FAKE_CHILD): New macro, moved from varobj.c.
1800         (struct lang_varobj_ops): New.  Renamed by 'struct language_specific'.
1801         (c_varobj_ops, cplus_varobj_ops): Declare.
1802         (java_varobj_ops, ada_varobj_ops): Declare.
1803         (varobj_default_value_is_changeable_p): Declare.
1804         (varobj_value_is_changeable_p): Declare.
1805         (varobj_get_value_type, varobj_is_anonymous_child): Declare.
1806         (varobj_get_path_expr_parent): Declare.
1807         (varobj_value_get_print_value): Declare.
1808         (varobj_formatted_print_options): Declare.
1809         (varobj_restrict_range): Declare.
1810
1811 2013-10-17  Luis Machado  <lgustavo@codesourcery.com>
1812
1813         * target/waitstatus.h (target_waitkind): Remove spurious
1814         character from the comments.
1815
1816 2013-10-17  Joel Brobecker  <brobecker@adacore.com>
1817
1818         * gdbarch.sh (get_longjmp_target): Add method documentation.
1819         * gdbarch.h: Regenerate.
1820
1821 2013-10-16  Tom Tromey  <tromey@redhat.com>
1822
1823         * dbxread.c (read_dbx_symtab) <bss_ext_symbol>: Remove unused
1824         label.
1825
1826 2013-10-16  Luis Machado  <lgustavo@codesourcery.com>
1827
1828         * gcore.in: Call GDB using the full path to the gcore script.
1829         Error out if the GDB binary is not found.
1830
1831 2013-10-16  Sergio Durigan Junior  <sergiodj@redhat.com>
1832
1833         PR gdb/16014
1834         * dwarf2read.c (dw2_get_real_path): Remove unnecessary call to
1835         sizeof.
1836
1837 2013-10-16  Sergio Durigan Junior  <sergiodj@redhat.com>
1838
1839         PR gdb/16042
1840         * target.c (target_disable_btrace): Fix invalid return value for
1841         void function.
1842         (target_teardown_btrace): Likewise.
1843
1844 2013-10-14  Yao Qi  <yao@codesourcery.com>
1845
1846         * varobj.c (struct varobj): Move most of the fields to
1847         varobj.h.
1848         (struct varobj_dynamic): New struct.
1849         (varobj_get_display_hint) [HAVE_PYTHON]: Adjust.
1850         (varobj_has_more): Likewise.
1851         (dynamic_varobj_has_child_method): Likewise.
1852         (update_dynamic_varobj_children): Likewise.
1853         (varobj_get_num_children): Likewise.
1854         (varobj_list_children, varobj_pretty_printed_p): Likewise.
1855         (install_new_value_visualizer): Likewise.
1856         (install_new_value_visualizer, install_new_value): Likewise.
1857         (varobj_update, new_variable, free_variable): Likewise.
1858         (my_value_of_variable, value_get_print_value): Likewise.
1859         (install_visualizer): Change the type of parameter 'var' to
1860         'struct varobjd_dynamic *'.  Callers update.
1861         * varobj.h (struct varobj): Moved from varobj.c.
1862         (struct varobj) <dynamic>: New field.
1863
1864 2013-10-13  Sandra Loosemore  <sandra@codesourcery.com>
1865
1866         * nios2-tdep.c (nios2_reg_names): Use "sstatus" rather than "ba"
1867         as the preferred name of r30.
1868         * nios2-linux-tdep.c (reg_offsets): Likewise.
1869         * features/nios2-cpu.xml: Likewise.
1870         * features/nios2-linux.c: Regenerated.
1871         * features/nios2.c: Regenerated.
1872         * regformats/nios2-linux.dat: Regenerated.
1873
1874 2013-10-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
1875
1876         Canonicalize directories for EXEC_FILENAME.
1877         * exec.c (exec_file_attach): Use gdb_realpath_keepfile for
1878         exec_filename.
1879         * utils.c (gdb_realpath_keepfile): New function.
1880         * utils.h (gdb_realpath_keepfile): New declaration.
1881
1882 2013-10-11  Doug Evans  <dje@google.com>
1883
1884         * Makefile.in (GDBFLAGS): New variable.
1885         (run): New rule.
1886
1887 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
1888
1889         * NEWS: Add entry documenting the new "-catch-assert" and
1890         "-catch-exception" GDB/MI commands.
1891
1892 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
1893
1894         * breakpoint.h (init_ada_exception_breakpoint): Add parameter
1895         "enabled".
1896         * breakpoint.c (init_ada_exception_breakpoint): Add parameter
1897         "enabled".  Set B->ENABLE_STATE accordingly.
1898         * ada-lang.h (ada_exception_catchpoint_kind): Move here from
1899         ada-lang.c.
1900         (create_ada_exception_catchpoint): Add declaration.
1901         * ada-lang.c (ada_exception_catchpoint_kind): Move to ada-lang.h.
1902         (create_ada_exception_catchpoint): Make non-static. Add new
1903         parameter "disabled". Use it in call to
1904         init_ada_exception_breakpoint.
1905         (catch_ada_exception_command): Add parameter "enabled" in call
1906         to create_ada_exception_catchpoint.
1907         (catch_assert_command): Likewise.
1908
1909         * mi/mi-cmds.h (mi_cmd_catch_assert, mi_cmd_catch_exception):
1910         Add declarations.
1911         * mi/mi-cmds.c (mi_cmds): Add the "catch-assert" and
1912         "catch-exception" commands.
1913         * mi/mi-cmd-catch.c: Add #include "ada-lang.h".
1914         (mi_cmd_catch_assert, mi_cmd_catch_exception): New functions.
1915
1916 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
1917
1918         * ada-lang.c (enum ada_exception_catchpoint_kind): Renames
1919         "enum exception_catchpoint_kind".  Replace the "ex_" prefix
1920         of all its enumerates with "ada_".  Update the rest of this
1921         file throughout.
1922
1923 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
1924
1925         * ada-lang.c (ada_decode_exception_location): Delete.
1926         (create_ada_exception_catchpoint): Remove arguments "sal",
1927         "addr_string" and "ops".  Add argument "ex_kind" instead.
1928         Adjust implementation accordingly, calling ada_exception_sal
1929         to get the entities it no longer gets passed as arguments.
1930         Document the function's arguments.
1931         (catch_ada_exception_command): Use catch_ada_exception_command_split
1932         instead of ada_decode_exception_location, and update call to
1933         create_ada_exception_catchpoint.
1934         (catch_ada_assert_command_split): Renames
1935         ada_decode_assert_location.  Remove parameters "addr_string" and
1936         "ops", and now returns void.  Adjust implementation accordingly.
1937         Update the function documentation.
1938         (catch_assert_command): Use catch_ada_assert_command_split
1939         instead of ada_decode_assert_location.  Update call to
1940         create_ada_exception_catchpoint.
1941
1942 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
1943
1944         * utils.h (perror_warning_with_name): Add declaration.
1945         * utils.c (perror_warning_with_name): New function.
1946         * cli/cli-cmds.c (source_script_with_search): Add call to
1947         perror_warning_with_name if from_tty is nul.
1948
1949 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
1950
1951         * utils.c (perror_string): New function, extracted out of
1952         throw_perror_with_name.
1953         (throw_perror_with_name): Rework to use perror_string.
1954
1955 2013-10-11  Yao Qi  <yao@codesourcery.com>
1956
1957         * remote.c (discard_pending_stop_replies_in_queue): Update
1958         declaration.
1959         (struct stop_reply) <rs>: New field.
1960         (remove_stop_reply_of_remote_state): New function.
1961         (discard_pending_stop_replies_in_queue): Add parameter 'rs'.
1962         Callers update.  Pass remove_stop_reply_of_remote_state to
1963         QUEUE_iterate.
1964         (remote_parse_stop_reply): Initialize field 'rs'.
1965
1966 2013-10-10  Will Newton  <will.newton@linaro.org>
1967
1968         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
1969         linux_init_abi.
1970
1971 2013-10-10  Joel Brobecker  <brobecker@adacore.com>
1972
1973         * cli/cli-cmds.c (show_baud_rate): Moved to serial.c as
1974         serial_baud_show_cmd.
1975         (_initialize_cli_cmds): Delete the code creating the
1976         "set/show remotebaud" commands.
1977         * serial.c (baud_rate): Move here from top.c.
1978         (serial_baud_show_cmd): Move here from cli/cli-cmds.c.
1979         (_initialize_serial): Create "set/show serial baud" commands.
1980         Add "set/show remotebaud" command aliases.
1981         * top.c (baud_rate): Moved to serial.c.
1982         * NEWS: Document the new "set/show serial baud" commands,
1983         replacing "set/show remotebaud".
1984
1985 2013-10-09  Pedro Alves  <palves@redhat.com>
1986
1987         * breakpoint.c (insert_bp_location): Use memory_error_message to
1988         build the memory error string.
1989         * c-lang.c: Include "gdbcore.h".
1990         (c_get_string): Use memory_error to throw error.
1991         (target_xfer_memory_error): Delete.
1992         (memory_error_message): New, factored out from
1993         target_xfer_memory_error.
1994         (memory_error): Change parameter type to target_xfer_error.
1995         Rewrite.
1996         (read_memory): Use memory_error instead of
1997         target_xfer_memory_error.
1998         * gdbcore.h: Include "target.h".
1999         (memory_error): Change parameter type to target_xfer_error.
2000         (memory_error_message): Declare function.
2001         * target.c (target_read_memory, target_read_stack)
2002         (target_write_memory, target_write_raw_memory): Return
2003         TARGET_XFER_E_IO on error.  Adjust comments.
2004         (get_target_memory): Pass TARGET_XFER_E_IO to memory_error,
2005         instead of EIO.
2006         * target.h (target_read, target_insert_breakpoint)
2007         (target_remove_breakpoint): Adjust comments.
2008         * valprint.c (partial_memory_read): Rename parameter, and adjust
2009         comment.
2010         (val_print_string): Use memory_error_message to build the memory
2011         error string.
2012
2013 2013-10-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
2014
2015         * common/filestuff.c (gdb_fopen_cloexec): Remove initialization of
2016         result variable.  Rename variable fopen_e_ever_failed to
2017         fopen_e_ever_failed_einval.  Retry fopen only for errno EINVAL.
2018
2019 2013-10-09  Pedro Alves  <palves@redhat.com>
2020
2021         * monitor.c (monitor_write_memory, monitor_write_memory_bytes)
2022         (monitor_write_memory_longlongs, monitor_write_memory_block):
2023         Constify 'myaddr' parameter.
2024         (monitor_xfer_memory): Adjust interface as monitor_xfer_partial
2025         helper.
2026         (monitor_xfer_partial): New function.
2027         (init_base_monitor_ops): Don't install a deprecated_xfer_memory
2028         hook.  Install a to_xfer_partial hook.
2029
2030 2013-10-09  Tom Tromey  <tromey@redhat.com>
2031
2032         * dwarf2read.c (dwarf2_get_dwz_file): Update for type change in
2033         bfd_get_alt_debug_link_info.
2034
2035 2013-10-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
2036
2037         New flag OBJF_NOT_FILENAME.
2038         * auto-load.c (auto_load_objfile_script): Check also OBJF_NOT_FILENAME.
2039         * jit.c (jit_object_close_impl): Use OBJF_NOT_FILENAME for
2040         allocate_objfile.
2041         (jit_bfd_try_read_symtab): Use OBJF_NOT_FILENAME for
2042         symbol_file_add_from_bfd.
2043         * jv-lang.c (get_dynamics_objfile): Use OBJF_NOT_FILENAME for
2044         allocate_objfile.
2045         * objfiles.c (allocate_objfile): Assert OBJF_NOT_FILENAME if NAME is
2046         NULL.
2047         * objfiles.h (OBJF_NOT_FILENAME): New.
2048
2049 2013-10-08  Tom Tromey  <tromey@redhat.com>
2050
2051         * Makefile.in (SFILES): Add build-id.c.
2052         (HFILES_NO_SRCDIR): Add build-id.h.
2053         * build-id.c: New file, largely from elfread.c.  Modified
2054         most functions.
2055         * build-id.h: New file.
2056         * dwarf2read.c (dwarf2_get_dwz_file): Update for change to
2057         bfd_get_alt_debug_link_info.  Verify dwz file's build-id.
2058         Search for dwz file using build-id.
2059         * elfread.c (build_id_bfd_get, build_id_verify)
2060         (build_id_to_debug_filename, find_separate_debug_file): Remove.
2061
2062 2013-10-08  Joel Brobecker  <brobecker@adacore.com>
2063
2064         * ada-lang.c (compare_names_with_case): Renamed from
2065         compare_names, adding a new parameter "casing" and its handling.
2066         New function documentation.
2067         (compare_names): New function, implemented using
2068         compare_names_with_case.
2069
2070 2013-10-08  Joel Brobecker  <brobecker@adacore.com>
2071
2072         * ada-lang.c (ada_exception_sal): Remove advance declaration.
2073
2074 2013-10-07  Tom Tromey  <tromey@redhat.com>
2075
2076         * objfiles.c (free_objfile_per_bfd_storage): Delete the
2077         demangled_names_hash.
2078         (free_objfile): Don't delete the demangled_names_hash.
2079         * objfiles.h (struct objfile_per_bfd_storage)
2080         <demangled_names_hash>: New field.
2081         (struct objfile) <demangled_names_hash>: Move to
2082         objfile_per_bfd_storage.
2083         * symfile.c (reread_symbols): Don't delete the
2084         demangled_names_hash.
2085         * symtab.c (create_demangled_names_hash): Update.
2086         (symbol_set_names): Update.
2087
2088 2013-10-07  Tom Tromey  <tromey@redhat.com>
2089
2090         * gdb_bfd.c (struct gdb_bfd_data) <relocation_computed,
2091         needs_relocations>: New fields.
2092         (gdb_bfd_requires_relocations): New function.
2093         * gdb_bfd.h (gdb_bfd_requires_relocations): Declare.
2094         * objfiles.c (get_objfile_bfd_data): Disallow sharing if
2095         the BFD needs relocations applied.
2096
2097 2013-10-07  Pedro Alves  <palves@redhat.com>
2098
2099         PR breakpoints/11568
2100         * breakpoint.c (remove_threaded_breakpoints): Say "no longer in
2101         the thread list" instead of "gone".
2102
2103 2013-10-06  Sergio Durigan Junior  <sergiodj@redhat.com>
2104
2105         * NEWS: Mention new convenience variable $_exitsignal.
2106         * corelow.c (core_open): Reset exit convenience variables.  Set
2107         $_exitsignal to the uncaught signal which generated the corefile.
2108         * infrun.c (handle_inferior_event): Reset exit convenience
2109         variables.  Set $_exitsignal for TARGET_WAITKIND_SIGNALLED.
2110         (clear_exit_convenience_vars): New function.
2111         * inferior.h (clear_exit_convenience_vars): New prototype.
2112
2113 2013-10-06  Yao Qi  <yao@codesourcery.com>
2114
2115         * varobj.h: Add comments to enum varobj_languages.
2116
2117 2013-10-04  Doug Evans  <dje@google.com>
2118
2119         Add support for DWP file format version 2.
2120         * NEWS: Mention support for DWP file format version 2.
2121         * dwarf2read.c (dwarf2_section_info): Convert asection field to a
2122         union of asection, containing_section.  New fields virtual_offset
2123         and is_virtual.  Change type of readin filed from int to char.
2124         (dwo_sections, dwo_file): Tweak comments.
2125         (dwp_v2_section_ids): New enum.
2126         (dwp_sections): New fields abbrev, info, line, loc, macinfo, macro,
2127         str_offsets, types.
2128         (virtual_v1_dwo_sections): Renamed from virtual_dwo_sections.
2129         All uses updated.
2130         (virtual_v2_dwo_sections): New struct.
2131         (dwp_hash_table): New fields version, nr_columns.  Change type of
2132         section_pool field to a union.
2133         (dwp_file): New field version.
2134         (dwarf2_has_info): Check for virtual sections.
2135         (get_containing_section): New function.
2136         (get_section_bfd_owner, get_section_bfd_section): Call it.
2137         (dwarf2_locate_sections): Update.
2138         (dwarf2_section_empty_p): Update.
2139         (dwarf2_read_section): Handle virtual sections.
2140         (locate_dwz_sections): Update.
2141         (create_dwp_hash_table): Document and handle V2 format.
2142         (locate_v1_virtual_dwo_sections): Renamed from
2143         locate_virtual_dwo_sections and update.  All callers updated.
2144         (create_dwo_unit_in_dwp_v1): Renamed from create_dwo_in_dwp.
2145         Delete arg htab.  Rename arg section_index to unit_index.
2146         All callers updated.
2147         (MAX_NR_V1_DWO_SECTIONS): Renamed from MAX_NR_DWO_SECTIONS.
2148         All uses updated.
2149         (create_dwp_v2_section, create_dwo_unit_in_dwp_v2): New functions.
2150         (lookup_dwo_unit_in_dwp): Add V2 support.
2151         (dwarf2_locate_dwo_sections): Update.
2152         (dwarf2_locate_common_dwp_sections): Renamed from
2153         dwarf2_locate_dwp_sections and update.  All callers updated.
2154         (dwarf2_locate_v2_dwp_sections): New function.
2155         (open_and_init_dwp_file): Add V2 support.
2156         (read_str_index): New locals str_section, str_offsets_section.
2157
2158 2013-10-04  Pedro Alves  <palves@redhat.com>
2159
2160         * common/ptid.c (null_ptid, minus_one_ptid, ptid_build)
2161         (pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid)
2162         (ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p): Replace
2163         describing comments with references to ptid.h.
2164         * common/ptid.h: Remove intro description of constructors,
2165         accessors and predicates.
2166         (struct ptid): Reformat.
2167         (minus_one_ptid, ptid_build, pid_to_ptid, ptid_get_pid)
2168         (ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid): Change
2169         describing comments.
2170
2171 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
2172
2173         * aix-thread.c (sync_threadlists): Add missing ')' in call
2174         to ptid_build.
2175
2176 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
2177
2178         * procfs.c (procfs_init_inferior): Fix typo causing the build
2179         to fail.
2180
2181 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
2182
2183         * aix-thread.c (ptrace32): Remove cast to addr_ptr.
2184
2185 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
2186
2187         * mi/mi-main.c (run_one_inferior): Add function description.
2188         Make ARG a pointer to an integer whose value determines whether
2189         we should "run" or "start" the program.
2190         (mi_cmd_exec_run): Add handling of the "--start" option.
2191         Reject all other command-line options.
2192         * NEWS: Add entry for "-exec-run"'s new "--start" option.
2193
2194 2013-10-04  Yao Qi  <yao@codesourcery.com>
2195
2196         * remote-notif.h (REMOTE_NOTIF_ID): New enum.
2197         (struct notif_client) <pending_event>: Moved
2198         to struct remote_notif_state.
2199         <id>: New field.
2200         (struct remote_notif_state) <pending_event>: New field.
2201         (notif_event_xfree): Declare.
2202         * remote-notif.c (handle_notification): Adjust.
2203         (notif_event_xfree): New function.
2204         (do_notif_event_xfree): Call notif_event_xfree.
2205         (remote_notif_state_xfree): Call notif_event_xfree to free
2206         each element in field pending_event.
2207         * remote.c (discard_pending_stop_replies): Remove declaration.
2208         (discard_pending_stop_replies_in_queue): Declare.
2209         (remote_close): Call discard_pending_stop_replies_in_queue
2210         instead of discard_pending_stop_replies.
2211         (remote_start_remote): Adjust.
2212         (stop_reply_xfree): Call notif_event_xfree.
2213         (notif_client_stop): Adjust initialization.
2214         (remote_notif_remove_all): Rename it to ...
2215         (remove_stop_reply_for_inferior): ... this.  Update comments.
2216         Don't check INF is NULL.
2217         (discard_pending_stop_replies): Return early if notif_state is
2218         NULL.  Adjust.  Don't check INF is NULL.
2219         (remote_notif_get_pending_events): Adjust.
2220         (discard_pending_stop_replies_in_queue): New function.
2221         (remote_wait_ns): Likewise.
2222
2223 2013-10-04  Yao Qi  <yao@codesourcery.com>
2224
2225         * remote-notif.c (DECLARE_QUEUE_P): Remove.
2226         (notif_queue): Remove.
2227         (remote_notif_process): Add one parameter 'notif_queue'.
2228         Update comments.  Callers update.
2229         (remote_async_get_pending_events_token): Remove.
2230         (remote_notif_register_async_event_handler): Remove.
2231         (remote_notif_unregister_async_event_handler): Remove.
2232         (handle_notification): Add parameter 'notif_queue'.  Update
2233         comments.  Callers update.
2234         (notif_xfree): Remove.
2235         (remote_notif_state_allocate): New function.
2236         (remote_notif_state_xfree): New function.
2237         (_initialize_notif): Remove code to allocate queue.
2238         * remote-notif.h (DECLARE_QUEUE_P): Moved from remote-notif.c.
2239         (struct remote_notif_state): New.
2240         (handle_notification): Update declaration.
2241         (remote_notif_process): Likewise.
2242         (remote_notif_register_async_event_handler): Remove.
2243         (remote_notif_unregister_async_event_handler): Remove.
2244         (remote_notif_state_allocate): Declare.
2245         (remote_notif_state_xfree): Declare.
2246         * remote.c (struct remote_state) <notif_state>: New field.
2247         (remote_close): Don't call
2248         remote_notif_unregister_async_event_handler.  Call
2249         remote_notif_state_xfree.
2250         (remote_open_1): Don't call
2251         remote_notif_register_async_event_handler.  Call
2252         remote_notif_state_allocate.
2253
2254 2013-10-04  Yao Qi  <yao@codesourcery.com>
2255
2256         * varobj.c (create_child_with_value): Remove 'const' from the
2257         type of parameter 'name'.
2258         (varobj_add_child): Likewise.
2259         (install_dynamic_child): Remove 'const' from the type of
2260         parameter 'name'.
2261         (varobj_add_child): Likewise.
2262         (create_child_with_value): Likewise.  Update comments.  Don't
2263         duplicate 'name'.
2264         (update_dynamic_varobj_children): Duplicate 'name'
2265         and pass it to install_dynamic_child.
2266
2267 2013-10-03  Phil Muldoon  <pmuldoon@redhat.com>
2268
2269         * python/py-value.c (convert_value_from_python): Move PyInt_Check
2270         conversion logic to occur after PyLong_Check.  Comment on order
2271         change significance.
2272         * python/py-arch.c (archpy_disassemble): Comment on order of
2273         conversion for integers and longs.
2274
2275 2013-10-03  Pedro Alves  <palves@redhat.com>
2276
2277         * common/linux-ptrace.c (linux_check_ptrace_features): Factor out
2278         the PTRACE_O_TRACESYSGOOD and PTRACE_O_TRACEFORK to separate
2279         functions.  Always test for PTRACE_O_TRACESYSGOOD even if
2280         PTRACE_O_TRACEFORK is not supported.
2281         (linux_test_for_tracesysgood): New function.
2282         (linux_test_for_tracefork): New function, factored out from
2283         linux_check_ptrace_features, and also don't kill child_pid here.
2284
2285 2013-10-03  Tristan Gingold  <gingold@adacore.com>
2286
2287         * i386-darwin-nat.c (i386_darwin_dr_set): Fix argument type.
2288         Remove verbose error reporting.  Use detected state to
2289         thread_set_state call.
2290         (i386_darwin_dr_get): Fix return type.  Remove verbose error
2291         report.
2292         Remove trailing spaces.
2293
2294 2013-10-02  Pedro Alves  <palves@redhat.com>
2295
2296         * cp-valprint.c (cp_print_value_fields): Adjust calls to
2297         val_print_optimized_out.
2298         * jv-valprint.c (java_print_value_fields): Likewise.
2299         * p-valprint.c (pascal_object_print_value_fields): Likewise.
2300         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full)
2301         <DWARF_VALUE_REGISTER>: If the register was not saved, return a
2302         new optimized out value.
2303         * findvar.c (address_from_register): Likewise.
2304         * frame.c (put_frame_register): Tweak error string to say the
2305         register was not saved, rather than optimized out.
2306         * infcmd.c (default_print_one_register_info): Adjust call to
2307         val_print_optimized_out.  Use value_of_register instead of
2308         get_frame_register_value.
2309         * mi/mi-main.c (output_register): Use value_of_register instead of
2310         get_frame_register_value.
2311         * valprint.c (valprint_check_validity): Likewise.
2312         (val_print_optimized_out): New value parameter.  If the value is
2313         lval_register, print <not saved> instead.
2314         (value_check_printable, val_print_scalar_formatted): Adjust calls
2315         to val_print_optimized_out.
2316         * valprint.h (val_print_optimized_out): New value parameter.
2317         * value.c (struct value) <optimized_out>: Extend comment.
2318         (error_value_optimized_out): New function.
2319         (require_not_optimized_out): Use it.  Use a different string for
2320         lval_register values.
2321         * value.h (error_value_optimized_out): New declaration.
2322         * NEWS: Mention <not saved>.
2323
2324 2013-10-02  Joel Brobecker  <brobecker@adacore.com>
2325
2326         * symtab.c (compare_search_syms): Use FILENAME_CMP instead of
2327         strcmp to compare two symtab filenames.
2328
2329 2013-10-02  Joel Brobecker  <brobecker@adacore.com>
2330
2331         * symtab.c (search_symbols_equal): Delete.
2332         (sort_search_symbols_remove_dups): Replace call to
2333         search_symbols_equal by call to compare_search_syms,
2334         adjusting as necessary.
2335
2336 2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
2337
2338         PR python/15579
2339         * python/python.c: Document gdb.execute command in Python help.
2340
2341 2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
2342
2343         * python/py-frame.c (frame_info_to_frame_object): Use
2344         gdbpy_convert_exception. Clean up Python object on failure.
2345
2346 2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
2347
2348         * python/lib/gdb/command/frame_filters.py
2349         (InfoFrameFilter.list_frame_filters): Retrieve exception manually.
2350         (ShowFrameFilterPriority.invoke): Ditto.
2351
2352 2013-10-01  Keith Seitz  <keiths@redhat.com>
2353
2354         * linespec.c (struct ls_parser): Make 'saved_arg' const.
2355         (parse_linespec): Make 'argptr' const.
2356         Remove temporary cast of 'argptr' to const char **.
2357         (decode_line_full): Pass const pointer to parse_linespec.
2358         (decode_line_1): Likewise.
2359         (decode_objc): Make local variable 'new_argptr' const.
2360         (find_function_symbols): Remove temporary cast to char *
2361         to find_imps.
2362         * objc-lang.c (find_imps): Make argument 'method' const.
2363         Return const.
2364         * objc-lang.h (find_imps): Likewise.
2365
2366 2013-10-01  Keith Seitz  <keiths@redhat.com>
2367
2368         * completer.c (skip_quoted_chars): Make all arguments const.
2369         Return const.
2370         (skip_quoted): Likewise.
2371         * completer.h (skip_quoted_chars): Likewise.
2372         (skip_quoted): Likewise.
2373         * defs.h (skip_quoted): Remove duplicate declaration.
2374         * jv-exp.y: Include completer.h.
2375         (yylex): Remove unneccessary cast to char * fro skip_quoted.
2376         * p-exp.y: Include completer.h.
2377
2378 2013-10-01  Keith Seitz  <keiths@redhat.com>
2379
2380         * c-exp.y (parse_number): Make first argument const.
2381         Make a copy of the input to manipulate.
2382         (c_parse_escape): Make first argument const.
2383         Make local variable 'tokptr' const.
2384         (parse_string_or_char): Make first two arguments const.
2385         (macro_original_text): Make const.
2386         (lex_one_token): Make local variable 'tokstart' const.
2387         Likewise for local variables named 'p'.
2388         Cast away const for struct stoken (temporary).
2389         * c-lang.h (c_parse_escpae): Make first argument const.
2390         * cli/cli-cmds.c (echo_command): Make local variable 'p'
2391         const.
2392         * cli/cli-setshow.c (do_set_command): Likewise for 'p' in
2393         var_string case.
2394         * f-exp.y (parse_number): Make first argument const.
2395         (match_string_literal): Make local variable 'tokstart'
2396         const.
2397         (yylex): Make local variable 'p' const.
2398         Cast away const for struct stoken (temporary).
2399         * go-exp.y (parse_number): Make first argument const.
2400         (parse_string_or_char): Likewise.
2401         Make local variable 'tokstart' const.
2402         (lex_one_token): Likewise for numerous locals called 'p'.
2403         Cast away const for struct stoken (temporary).
2404         * jv-exp.y (parse_number): Make first argument const.
2405         Make local variables 'tokstart' and 'tokptr' const.
2406         Cast away const for call to skip_quoted (temporary).
2407         (yylex): Make local variable 'p' const.
2408         Cast away const for struct stoken (temporary).
2409         * m2-exp.y (parse_number): Make local variable 'p' const.
2410         (yylex): Likewise for 'tokstart'.
2411         Cast away const for struct stoken (temporary).
2412         Make local variable 'p' const.
2413         * macroexp.c (get_character_constant): Pass a const string
2414         to c_parse_escape.
2415         (get_string_literal): Likewise.
2416         (macro_expand_next): Make first argument const.
2417         Cast away const for init_shared_buffer.
2418         * macroexp.h (macro_expand_next): Make first argument const.
2419         * p-exp.y (yylex): Make a local copy of 'lexptr'.
2420         Pass a const string to c_parse_escape.
2421         Make local variables 'p' and 'namestart' const.
2422         * parse.c (lexptr): Make const.
2423         (prev_lexptr): Likewise.
2424         (find_template_name_end): Return const.
2425         Make argument const, too.
2426         (parse_exp_in_context): Make first argument const.
2427         Remove the entire const_hack.
2428         (parse_exp_in_context_1): Make first argument const.
2429         * parser-defs.h (find_template_name_end): Return const.
2430         Make argument const, too.
2431         (lexptr): Make const.
2432         (prev_lexptr): Likewise.
2433         * utils.c (parse_escape): Make second argument const.
2434         * utils.h (parse_escape): Likewise.
2435
2436 2013-10-01  Keith Seitz  <keiths@redhat.com>
2437
2438         * ada-exp.y (write_object_renaming): Update: struct stoken.ptr
2439         is now const.
2440         (block_lookup): Make 'raw_name' and 'name' const.
2441         * ada-lex.l (processString): Update for struct stoken.ptr.
2442         * c-exp.y (qualified_name : TYPENAME COLONCOLON '~' name): Likewise.
2443         (operator_stoken): Likewise.
2444         (lex_one_token): Remove temporary cast to char * for
2445         'yylval.sval.ptr'.
2446         * f-exp.y (yylex): Likewise.
2447         * gdb-types.c (lookup_struct_elt_type): Make argument 'name' const.
2448         * gdbtypes.h (lookup_struct_elt_type): Likewisee.
2449         * go-exp.y (lex_one_token): Remove temporary cast to char * for
2450         'yylval.sval.ptr'.
2451         * jv-exp.y (QualifiedName): Update for struct stoken.ptr.
2452         (yylex): Remove temporary cast to char * for 'yylval.sval.ptr'.
2453         * linespec.c (struct ls_parser): Make 'stream' const.
2454         (find_parameter_list_end): Make argument 'input' and local
2455         variable 'p' const.
2456         (linespec_lexer_lex_string): Make local variables 'start' and
2457         'p' const.
2458         Use skip_spaces_const instead of skip_spaces.
2459         (linespec_lexer_peek_token): Make local variable 'saved_stream'
2460         const.
2461         (parse_linespec): Temporarily cast 'argptr' to const for
2462         'parser->lexer.stream'.
2463         * m2-exp.y (yylex): Remove temporary cast to char * for
2464         'yylval.sval.ptr'.
2465         * objc-lang.c (add_msglist): Make local variable 'p' const.
2466         * p-exp.y (exp : exp '['): Update for struct stoken.ptr.
2467         (exp : STRING): Make 'sp' const.
2468         (parse_number): Make argument 'p' const.
2469         * parser-defs.h (struct stoken): Make 'ptr' const.
2470
2471 2013-10-01  Doug Evans  <dje@google.com>
2472
2473         * cli/cli-decode.c: Remove unnecessary inclusion of tui/tui.h.
2474
2475 2013-10-01  Yao Qi  <yao@codesourcery.com>
2476
2477         * varobj.c (c_value_of_root): Remove declaration.
2478         (cplus_value_of_root, java_value_of_root): Likewise.
2479         (ada_value_of_root): Likewise.
2480         (struct language_specific) <value_of_root>: Remove.
2481         (languages): Update initialization.
2482         (check_scope): Move earlier.
2483         (c_value_of_root): Move earlier and rename to ...
2484         (value_of_root_1): ... this.
2485         (value_of_root): Caller update.
2486         (cplus_value_of_root, java_value_of_root): Remove.
2487         (ada_value_of_root): Remove.
2488
2489 2013-10-01  Yao Qi  <yao@codesourcery.com>
2490
2491         * varobj.c (varobj_format_string): Remove "unknown".
2492         (languages): Remove the first element.
2493         * varobj.h (enum varobj_languages): Remove vlang_c.
2494
2495 2013-10-01  Yao Qi  <yao@codesourcery.com>
2496
2497         * varobj.c (struct language_specific) <language>: Remove.
2498         (languages): Update the initialization.
2499
2500 2013-10-01  Yao Qi  <yao@codesourcery.com>
2501
2502         * arm-wince-tdep.c: Remove inclusion of "solib.h" and
2503         "solib-target.h".  Include "windows-tdep.h".
2504         (arm_wince_init_abi): Call windows_init_abi.  Remove call to
2505         set_solib_ops and set_gdbarch_has_dos_based_file_system.
2506         * configure.tgt (arm*-wince-pe | arm*-*-mingw32ce*): Append
2507         windows-tdep.o to gdb_target_obs.
2508
2509 2013-10-01  Yao Qi  <yao@codesourcery.com>
2510
2511         * amd64-windows-tdep.c: Remove inclusion of "solib.h" and
2512         "solib-target.h".
2513         (amd64_windows_init_abi): Don't call set_solib_ops and
2514         set_gdbarch_iterate_over_objfiles_in_search_order.  Call
2515         windows_init_abi instead.
2516         * i386-cygwin-tdep.c: Remove inclusion of "solib.h" and
2517         "solib-target.h".
2518         (i386_cygwin_init_abi): Don't call set_solib_ops,
2519         set_gdbarch_has_dos_based_file_system and
2520         set_gdbarch_iterate_over_objfiles_in_search_order.  Call
2521         windows_init_abi instead.
2522         * windows-tdep.c: Include "solib.h" and "solib-target.h".
2523         (windows_init_abi): New function.
2524         (windows_iterate_over_objfiles_in_search_order): Make it
2525         static.
2526         * windows-tdep.h (windows_init_abi): Declare.
2527         (windows_iterate_over_objfiles_in_search_order): Remove
2528         declaration.
2529
2530 2013-10-01  Jerome Guitton  <guitton@adacore.com>
2531
2532         Checked in by Joel Brobecker  <brobecker@adacore.com>
2533         * system-gdbinit/elinos.py (get_elinos_environment): Return an
2534         incomplete dictionnary instead of None in case of missing
2535         environment variables.
2536         (elinos_init): in case of an incomplete environment, best
2537         effort to load system libraries instead of abort.
2538
2539 2013-10-01  Joel Brobecker  <brobecker@adacore.com>
2540
2541         * ada-lang.c (ada_has_this_exception_support): Ignore
2542         mst_solib_trampoline minimal symbols.
2543
2544 2013-09-30  Tristan Gingold  <gingold@adacore.com>
2545
2546         * i386-darwin-nat.c (darwin_complete_target): Install methods for
2547         hardware watchpoint.
2548         (i386_darwin_dr_set): Support 32 and 64 bit states.
2549         (i386_darwin_dr_get): Likewise.
2550         (i386_darwin_dr_set_control): Make static.
2551         (i386_darwin_dr_set_addr, i386_darwin_dr_get_addr)
2552         (i386_darwin_dr_get_status, i386_darwin_dr_get_control): Likewise.
2553
2554 2013-09-30  Luis Machado  <lgustavo@codesourcery.com>
2555
2556         * aarch64-linux-nat.c: Replace PIDGET with ptid_get_pid.
2557         Replace TIDGET with ptid_get_lwp.
2558         Replace GET_LWP with ptid_get_lwp.
2559         * aix-thread.c (BUILD_THREAD, BUILD_LWP): Remove.
2560         Replace BUILD_THREAD with ptid_build.
2561         Replace BUILD_LWP with ptid_build.
2562         Replace PIDGET with ptid_get_pid.
2563         Replace TIDGET with ptid_get_lwp.
2564         * alphabsd-nat.c: Replace PIDGET with ptid_get_pid.
2565         * amd64-linux-nat.c: Replace PIDGET with ptid_get_pid.
2566         Replace TIDGET with ptid_get_lwp.
2567         * amd64bsd-nat.c: Replace PIDGET with ptid_get_pid.
2568         * arm-linux-nat.c: Replace PIDGET with ptid_get_pid.
2569         Replace TIDGET with ptid_get_lwp.
2570         Replace GET_LWP with ptid_get_lwp.
2571         * armnbsd-nat.c: Replace PIDGET with ptid_get_pid.
2572         * auxv.c: Likewise.
2573         * breakpoint.c: Likewise.
2574         * common/ptid.c (ptid_is_pid): Condense check for
2575         null_ptid and minus_one_ptid.
2576         (ptid_lwp_p): New function.
2577         (ptid_tid_p): New function.
2578         * common/ptid.h: Update comments for accessors.
2579         (ptid_lwp_p): New prototype.
2580         (ptid_tid_p): New prototype.
2581         * defs.h (PIDGET, TIDGET, MERGEPID): Do not define.
2582         * gcore.c: Replace PIDGET with ptid_get_pid.
2583         * gdbthread.h: Likewise.
2584         * gnu-nat.c: Likewise.
2585         * hppa-linux-nat.c: Replace PIDGET with ptid_get_pid.
2586         Replace TIDGET with ptid_get_lwp.
2587         * hppabsd-nat.c: Replace PIDGET with ptid_get_pid.
2588         * hppanbsd-nat.c: Likewise.
2589         * i386-linux-nat.c: Replace PIDGET with ptid_get_pid.
2590         Replace TIDGET with ptid_get_lwp.
2591         * i386bsd-nat.c: Replace PIDGET with ptid_get_pid.
2592         * ia64-linux-nat.c: Replace PIDGET with ptid_get_pid.
2593         * infcmd.c: Likewise.
2594         * inferior.h: Likewise.
2595         * inflow.c: Likewise.
2596         * infrun.c: Likewise.
2597         * linux-fork.c: Likewise.
2598         * linux-nat.c: Replace PIDGET with ptid_get_pid.
2599         Replace GET_PID with ptid_get_pid.
2600         Replace is_lwp with ptid_lwp_p.
2601         Replace GET_LWP with ptid_get_lwp.
2602         Replace BUILD_LWP with ptid_build.
2603
2604 2013-09-28  Mike Frysinger  <vapier@gentoo.org>
2605
2606         * common/linux-btrace.c: Move sys/syscall.h out of the
2607         HAVE_LINUX_PERF_EVENT_H check and wrap it in HAVE_SYS_SYSCALL_H.
2608         Also check for SYS_perf_event_open before attempting to buid.
2609
2610 2013-09-27  Doug Evans  <dje@google.com>
2611
2612         * dwarf2read.c (dwarf2_section_info): Add comment.
2613         (dwp_file): Split loaded_cutus into loaded_cus, loaded_tus.
2614         All uses updated.
2615         (dwarf2_section_empty_p): Rename arg from "info" to "section".
2616         (dwarf2_read_section): Delete unused local "header".  Add section
2617         name to error message.
2618         (create_dwo_in_dwp): Tweak comment.
2619         (MAX_NR_DWO_SECTIONS): Combine count of .debug_macro + .debug_macinfo.
2620
2621         * dwarf2read.c (die_reader_specs): Tweak comment.
2622         (get_section_bfd_owner, get_section_bfd_section): New functions.
2623         (get_section_name, get_section_file_name): New functions.
2624         (get_section_id, get_section_flags): New functions.
2625         (*): Use new functions to access section fields.
2626
2627         * dwarf2read.c (struct dwo_file): Add/tweak comments.
2628         (lookup_dwo_unit_in_dwp): Renamed from lookup_dwo_in_dwp.  Remove
2629         arg "htab".  All callers updated.
2630         (create_debug_types_hash_table): Remove redundant copy of
2631         abbrev_section.
2632         (create_dwo_in_dwp): Tweak comments.
2633         (read_str_index): Tweak comment.  Record dwarf form name in static
2634         local.
2635
2636 2013-09-27  Pedro Alves  <palves@redhat.com>
2637
2638         * remote.h (REMOTE_SYSROOT_PREFIX): New define.
2639         (remote_filename_p): Add comment.
2640         * remote.c (remote_filename_p): Adjust to use
2641         REMOTE_SYSROOT_PREFIX.
2642         * solib.c (solib_find): When deciding whether we need to add a
2643         directory separator, check whether the sysroot is "remote:"
2644         instead of checking whether the patch has a drive spec.  Add
2645         comments.
2646
2647 2013-09-27  Pedro Alves  <palves@redhat.com>
2648
2649         * remote.c (struct stop_reply) <solibs_changed, replay_event>:
2650         Delete fields.
2651         (remote_parse_stop_reply): Adjust, setting event->ws.kind
2652         directly.
2653
2654 2013-09-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
2655
2656         Fix set debug frame output.
2657         * frame.c (fprint_frame_type): Add TAILCALL_FRAME entry.  Move
2658         SENTINEL_FRAME entry lower to match enum frame_type order.
2659
2660 2013-09-26  Pierre Muller  <muller@sourceware.org>
2661
2662         Replace constant values 8 to 15 by AMD64_R8_REGNUM to
2663         AMD64_R15_REGNUM when a register index is expected.
2664         * amd64-windows-tdep.c (amd64_windows_dummy_call_integer_regs):
2665         Substitute in array.
2666         * amd64-tdep.c (amd64_dwarf_regmap): Ditto.
2667         (amd64_push_arguments): Substitute in integer_regnum array.
2668
2669 2013-09-25  Doug Evans  <dje@google.com>
2670
2671         * objfiles.c (allocate_objfile): Move comment to better place.
2672
2673         New option "set debug symfile on".
2674         * NEWS: Mention "set debug symfile".
2675         * Makefile.in (SFILES): Add symfile-debug.c.
2676         (COMMON_OBS): Add symfile-debug.o.
2677         * elfread.c (elf_symfile_read): Use objfile_set_sym_fns to set the
2678         objfile's symbol functions.
2679         * objfiles.h (objfile_set_sym_fns): Declare.
2680         * symfile-debug.c: New file.
2681         * symfile.c (syms_from_objfile_1): Use objfile_set_sym_fns to set the
2682         objfile's symbol functions.
2683         (reread_symbols): Ditto.
2684
2685         * symfile.h (struct sym_fns): Delete member "sym_flavour".
2686         All uses updated.
2687         (add_symtab_fns): Update prototype.
2688         * symfile.c (sym_fns_ptr): Delete.  Replace with ...
2689         (registered_sym_fns): ... this.
2690         (symtab_fns): Update.
2691         (add_symtab_fns): New arg "flavour".  All callers updated.
2692         (find_sym_fns): Rewrite to use new sym_fns registry.
2693
2694         * symfile.h (struct sym_fns): Add "objfile" argument to
2695         sym_read_linetable.  All uses updated.
2696
2697         * symtab.c (domain_name, search_domain_name): New functions.
2698         * symtab.h (domain_name, search_domain_name): Declare.
2699
2700         * symfile.h (struct quick_symbol_functions): Reorg arg list of
2701         map_matching_symbols so objfile is first.  All uses updated.
2702         * dwarf2read.c (dw2_map_matching_symbols): Update signature.
2703         * psymtab.c (map_matching_symbols_psymtab): Update signature.
2704
2705 2013-09-25  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2706
2707         PR shlibs/8882
2708         * solib-svr4.c (svr4_read_so_list): Skip the vDSO when reading
2709         link map entries.
2710
2711 2013-09-24  Doug Evans  <dje@google.com>
2712
2713         * objfiles.c (free_objfile): Move comment.
2714
2715 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
2716
2717         * ada-exp.y (string_to_operator): Delete.
2718         (dummy_string_to_ada_operator): Delete.
2719
2720 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
2721
2722         Revert:
2723         * i386-tdep.h (enum amd64_reg_class): New, moved here from
2724         amd64-tdep.c.
2725         (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
2726         call_dummy_integer_regs, and classify.
2727         * amd64-tdep.h (amd64_classify): Add declaration.
2728         * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
2729         (amd64_reg_class): Delete, moved to i386-tdep.h.
2730         (amd64_classify): Make non-static.  Move declaration to amd64-tdep.h.
2731         Replace call to amd64_classify by call to tdep->classify.
2732         (amd64_push_arguments): Get the list of registers to use for
2733         passing integer parameters from the gdbarch tdep structure,
2734         rather than using a hardcoded one.  Replace calls to amd64_classify
2735         by calls to tdep->classify.
2736         (amd64_push_dummy_call): Get the register number used for
2737         the "hidden" argument from tdep->call_dummy_integer_regs.
2738         (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
2739         and tdep->call_dummy_integer_regs.  Set tdep->classify.
2740
2741 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
2742
2743         Revert:
2744         * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
2745         * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
2746         where tdep->memory_args_by_pointer is non-zero.
2747
2748 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
2749
2750         Revert:
2751         * i386-tdep.h (struct gdbarch_tdep): Add new field
2752         integer_param_regs_saved_in_caller_frame.
2753         * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
2754         stack if tdep->integer_param_regs_saved_in_caller_frame is set.
2755
2756 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
2757
2758         * amd64-windows-tdep.c: #include "value.h"
2759         (amd64_windows_classify): Delete.
2760         (amd64_windows_passed_by_integer_register)
2761         (amd64_windows_passed_by_xmm_register)
2762         (amd64_windows_passed_by_pointer)
2763         (amd64_windows_adjust_args_passed_by_pointer)
2764         (amd64_windows_store_arg_in_reg, amd64_windows_push_arguments)
2765         (amd64_windows_push_dummy_call): New functions.
2766         (amd64_windows_init_abi): Remove setting of
2767         tdep->call_dummy_num_integer_regs, tdep->call_dummy_integer_regs,
2768         tdep->classify, tdep->memory_args_by_pointer and
2769         tdep->integer_param_regs_saved_in_caller_frame.
2770         Add call to set_gdbarch_push_dummy_call.
2771
2772 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
2773
2774         * dwarf2read.c (open_and_init_dwp_file): Try open_dwp_file also with
2775         objfile->original_name.
2776
2777 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
2778
2779         Pass down original filename for objfile.
2780         * coffread.c (coff_symfile_read): Update symbol_file_add_separate call.
2781         * elfread.c (elf_symfile_read): Likewise.
2782         * jit.c (jit_object_close_impl): Update allocate_objfile call, no
2783         longer set ORIGINAL_NAME.
2784         (jit_bfd_try_read_symtab): Update symbol_file_add_from_bfd call.
2785         * jv-lang.c (get_dynamics_objfile): Update allocate_objfile call.
2786         * machoread.c (macho_add_oso_symfile): Add parameter name.  Update
2787         symbol_file_add_from_bfd call.
2788         (macho_symfile_read_all_oso): Update two macho_add_oso_symfile calls.
2789         (macho_check_dsym): Add parameter filenamep.  Change function comment.
2790         Set *filenamep.
2791         (macho_symfile_read): New variable dsym_filename.  Update
2792         macho_check_dsym call.  Use it for symbol_file_add_separate.
2793         * objfiles.c (allocate_objfile): Add parameter name.  New comment for
2794         it.  Use it for objfile->original_name.
2795         (objfile_name): Return OBFD's filename, if available.
2796         * objfiles.h (allocate_objfile): Add new parameter name.
2797         * solib.c (solib_read_symbols): Update symbol_file_add_from_bfd call.
2798         * symfile-mem.c (symbol_file_add_from_memory): Update
2799         symbol_file_add_from_bfd call.
2800         * symfile.c (read_symbols): Update symbol_file_add_separate call, new
2801         comment for it.
2802         (symbol_file_add_with_addrs): New parameter name, add function comment
2803         for it.  Remove variable name.  Update allocate_objfile call.
2804         (symbol_file_add_separate): New parameter name, add function comment
2805         for it.  Update symbol_file_add_with_addrs call.
2806         (symbol_file_add_from_bfd): New parameter name.  Update
2807         symbol_file_add_with_addrs call.
2808         (symbol_file_add): Update symbol_file_add_from_bfd call.
2809         (reread_symbols): New variable original_name.  Save
2810         objfile->original_name by it.
2811         * symfile.h (symbol_file_add_from_bfd, symbol_file_add_separate): Add
2812         second parameter.
2813
2814 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
2815
2816         Code cleanup: Add objfile_name accessor function.
2817         * ada-lang.c (is_known_support_routine): Use objfile_name.
2818         * auto-load.c (source_gdb_script_for_objfile)
2819         (auto_load_objfile_script): Likewise.
2820         * coffread.c (coff_symtab_read, read_one_sym): Likewise.
2821         * dbxread.c (dbx_symfile_read): Likewise.
2822         * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
2823         * dwarf2loc.c (locexpr_describe_location_piece): Likewise.
2824         * dwarf2read.c (dwarf2_get_dwz_file, dwarf2_read_index)
2825         (dw2_symtab_iter_next, dw2_expand_symtabs_matching)
2826         (lookup_dwp_signatured_type, lookup_dwo_unit)
2827         (dwarf2_build_psymtabs_hard, scan_partial_symbols, process_queue)
2828         (fixup_go_packaging, process_imported_unit_die, dwarf2_physname)
2829         (read_import_statement, create_dwo_cu, open_and_init_dwp_file)
2830         (lookup_dwo_cutu, read_call_site_scope, dwarf2_ranges_read)
2831         (dwarf2_record_block_ranges, read_common_block, read_typedef)
2832         (read_subrange_type, load_partial_dies, read_partial_die)
2833         (read_addr_index_1, read_str_index, dwarf_decode_lines_1)
2834         (die_containing_type, build_error_marker_type, lookup_die_type)
2835         (follow_die_ref_or_sig, follow_die_ref, dwarf2_fetch_die_loc_sect_off)
2836         (dwarf2_fetch_constant_bytes, follow_die_sig, get_signatured_type)
2837         (get_DW_AT_signature_type, write_psymtabs_to_index)
2838         (save_gdb_index_command): Likewise.
2839         * elfread.c (find_separate_debug_file_by_buildid, elf_symfile_read):
2840         Likewise.
2841         * expprint.c (dump_subexp_body_standard): Likewise.
2842         * gdbtypes.c (type_name_no_tag_or_error): Likewise.
2843         * jit.c (jit_object_close_impl): Use the objfile field name renamed to
2844         original_name.
2845         * linux-thread-db.c (try_thread_db_load_from_pdir_1): New variable
2846         obj_name, use objfile_name for it, use the variable.
2847         (try_thread_db_load_from_pdir, has_libpthread, thread_db_new_objfile):
2848         Use objfile_name.
2849         * machoread.c (macho_symtab_read, macho_check_dsym)
2850         (macho_symfile_relocate): Likewise.
2851         * maint.c (maintenance_translate_address): Likewise.
2852         * minidebug.c (find_separate_debug_file_in_section): Likewise.
2853         * minsyms.c (install_minimal_symbols): Likewise.
2854         * objfiles.c (allocate_objfile): Use the objfile field name renamed to
2855         original_name.
2856         (filter_overlapping_sections): Use objfile_name.
2857         (objfile_name): New function.
2858         * objfiles.h (struct objfile): Rename field name to original_name.
2859         (objfile_name): New prototype.
2860         * printcmd.c (sym_info, address_info): Use objfile_name.
2861         * probe.c (parse_probes, collect_probes, compare_probes)
2862         (info_probes_for_ops): Likewise.
2863         * progspace.c (clone_program_space): Likewise.
2864         * psymtab.c (require_partial_symbols, dump_psymtab, allocate_psymtab)
2865         (maintenance_info_psymtabs): Likewise.
2866         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
2867         (source_section_scripts): Likewise.
2868         * python/py-objfile.c (objfpy_get_filename): Likewise.
2869         * python/py-progspace.c (pspy_get_filename): Likewise.
2870         * solib-aix.c (solib_aix_get_toc_value): Likewise.
2871         * solib-som.c (match_main, som_solib_section_offsets): Likewise.
2872         * solib.c (solib_read_symbols): Likewise.
2873         * stabsread.c (scan_file_globals): Likewise.
2874         * stap-probe.c (handle_stap_probe): Likewise.
2875         * symfile.c (symbol_file_clear, separate_debug_file_exists)
2876         (find_separate_debug_file_by_debuglink): Likewise.
2877         (reread_symbols): Likewise.  Use the objfile field name renamed to
2878         original_name.
2879         (allocate_symtab): Use objfile_name.
2880         * symmisc.c (print_symbol_bcache_statistics, print_objfile_statistics)
2881         (dump_objfile, dump_msymbols, dump_symtab_1)
2882         (maintenance_print_msymbols, maintenance_print_objfiles)
2883         (maintenance_info_symtabs, maintenance_check_symtabs): Likewise.
2884         * target.c (target_translate_tls_address, target_info): Likewise.
2885         * xcoffread.c (xcoff_initial_scan): Make variable name const.  Use
2886         objfile_name.
2887
2888 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
2889
2890         Code cleanup.
2891         * probe.c (parse_probes): Rename variable objfile_name to
2892         objfile_namestr.
2893
2894 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
2895
2896         Remove solib-sunos.c.
2897         * Makefile.in (ALLDEPFILES): Remove solib-sunos.c.
2898         * config/m68k/obsd.mh (NATDEPFILES): Remove solib-sunos.o.
2899         * objfiles.c (rt_common_objfile): Remove.
2900         (free_objfile): Remove rt_common_objfile comparison.
2901         * objfiles.h (rt_common_objfile): Remove.
2902         * solib-sunos.c: Remove.
2903         * symfile.c (reread_symbols): Remove solib-sunos.c comment.
2904
2905 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
2906
2907         Remove a.out NetBSD and OpenBSD hosts.
2908         * NEWS (Removed native configurations): New.
2909         * config/arm/nbsdaout.mh: Remove.
2910         * config/i386/nbsdaout.mh: Remove.
2911         * config/i386/obsdaout.mh: Remove.
2912         * config/m68k/nbsdaout.mh: Remove.
2913         * config/sparc/nbsdaout.mh: Remove.
2914         * config/vax/nbsdaout.mh: Remove.
2915         * configure.host (arm*-*-netbsd*, i[34567]86-*-netbsd*)
2916         (i[34567]86-*-openbsd[0-2].*, i[34567]86-*-openbsd3.[0-3])
2917         (m68*-*-netbsd*, sparc-*-netbsd*, vax-*-netbsd*): Add them to obsolete
2918         error.
2919         (arm*-*-netbsd*, i[34567]86-*-netbsd*, i[34567]86-*-openbsd[0-2].*)
2920         (i[34567]86-*-openbsd3.[0-3], m68*-*-netbsd*, sparc-*-netbsdaout*)
2921         (sparc-*-netbsd*, vax-*-netbsd*): Remove.
2922
2923 2013-09-23  Tom Tromey  <tromey@redhat.com>
2924
2925         * linespec.c (struct minsym_and_objfile): Remove.
2926         (minsym_and_objfile_d): Remove.
2927         (struct linespec, struct collect_info, linespec_parse_basic)
2928         (convert_linespec_to_sals, linespec_parser_delete, decode_objc)
2929         (compare_msymbols, find_method, find_function_symbols)
2930         (find_linespec_symbols, struct collect_minsyms, compare_msyms)
2931         (add_minsym, search_minsyms_for_name): Update.
2932
2933 2013-09-23  Andrew Burgess  <aburgess@broadcom.com>
2934
2935         * regcache.c: Add include of valprint.h.
2936         (dump_endian_bytes): Delete.
2937         (regcache_dump): Use print_hex_chars not dump_endian_bytes.
2938
2939 2013-09-23  Andrew Burgess  <aburgess@broadcom.com>
2940
2941         * sh64-tdep.c (sh64_do_fp_register): Use print_hex_chars.
2942
2943 2013-09-19  Pedro Alves  <palves@redhat.com>
2944
2945         * breakpoint.c (remove_threaded_breakpoints): Skip non-user
2946         breakpoints.
2947
2948 2013-09-19  Pedro Alves  <palves@redhat.com>
2949             Thomas Schwinge  <thomas@codesourcery.com>
2950             Yue Lu  <hacklu.newborn@gmail.com>
2951
2952         * gnu-nat.c (gnu_read_inferior, gnu_write_inferior): Make static.
2953         Take a gdb_byte pointer instead of a char pointer.
2954
2955         * gnu-nat.c (gnu_xfer_memory): Adjust interface as
2956         gnu_xfer_partial helper.
2957         (gnu_xfer_partial): New function.
2958         (gnu_target): Don't install a deprecated_xfer_memory hook.
2959         Install a to_xfer_partial hook.
2960
2961 2013-09-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
2962
2963         Constification.
2964         * main.c (captured_main): Replace catch_command_errors by
2965         catch_command_errors_const.  Twice.
2966         * symfile.c (symbol_file_add_main_1): Make args parameter const.
2967         (symbol_file_add): Make name parameter const.
2968         (symbol_file_add_main, symbol_file_add_main_1): Make args parameter const.
2969         (symfile_bfd_open): Make name parameter const, rename it to cname.  Add
2970         variable name.  Change their usage accordingly.
2971         * symfile.h (symbol_file_add, symfile_bfd_open): Make first parameter
2972         const.
2973         (symbol_file_add_main): Make args parameter const.
2974
2975 2013-09-18  Raunaq Bathija  <raunaq12@in.ibm.com>
2976             Ulrich Weigand  <uweigand@de.ibm.com>
2977
2978         * xcoffread.c (struct coff_symbol): Use CORE_ADDR as type
2979         of c_value member.
2980         (read_xcoff_symtab): Use CORE_ADDR as type of fcn_start_addr.
2981
2982 2013-09-18  Pedro Alves  <palves@redhat.com>
2983             Yue Lu  <hacklu.newborn@gmail.com>
2984
2985         * gnu-nat.c (inf_validate_procs, gnu_wait, gnu_resume)
2986         (gnu_create_inferior)
2987         (gnu_attach, gnu_thread_alive, gnu_pid_to_str, cur_thread)
2988         (set_sig_thread_cmd): Use the lwpid field of ptids to
2989         store/extract thread ids instead of the tid field.
2990         * i386gnu-nat.c (gnu_fetch_registers): Adjust.
2991
2992 2013-09-18  Andrew Burgess  <aburgess@broadcom.com>
2993
2994         * infcmd.c (default_print_one_register_info): Add detection of
2995         optimized out values.
2996         (default_print_registers_info): Switch to using
2997         get_frame_register_value.
2998
2999 2013-09-18  Markus Metzger  <markus.t.metzger@intel.com>
3000
3001         * infrun.c (handle_inferior_event): Check if we know the
3002         function start address before setting a resume breakpoint.
3003
3004 2013-09-18  Pedro Alves  <palves@redhat.com>
3005
3006         * gnu-nat.c (set_sig_thread_cmd): Compare the thread's ptid to
3007         minus_one_ptid instead of looking at the ptid's tid field and
3008         comparing that to -1.
3009
3010 2013-09-18  Andrew Burgess  <aburgess@broadcom.com>
3011
3012         * main.h (get_gdb_program_name): Remove extra whitespace.
3013
3014 2013-09-18  Andrew Burgess  <aburgess@broadcom.com>
3015
3016         * main.h (get_gdb_program_name): Add declaration.
3017         * main.c (get_gdb_program_name): Add definition.
3018
3019 2013-09-17  Doug Evans  <dje@google.com>
3020
3021         * dwarf2read.c: Move definitions of complaint functions to after
3022         forward declarations of local functions.
3023
3024 2013-09-17  Muhammad Waqas <mwaqas@codesourcery.com>
3025             Pedro Alves  <palves@redhat.com>
3026
3027         PR gdb/11568
3028         * breakpoint.c (remove_threaded_breakpoints): New function.
3029         (_initialize_breakpoint): Attach remove_threaded_breakpoints
3030         as thread_exit observer.
3031
3032 2013-09-17  Pedro Alves  <palves@redhat.com>
3033
3034         PR gdb/15911
3035         * ada-tasks.c (task_command_1): Adjust call to print_stack_frame.
3036         * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
3037         * corelow.c (core_open):
3038         * frame.h (print_stack_frame, print_frame_info): New
3039         'set_current_sal' parameter.
3040         * infcmd.c (finish_command, kill_command): Adjust call to
3041         print_stack_frame.
3042         * inferior.c (inferior_command): Likewise.
3043         * infrun.c (normal_stop): Likewise.
3044         * linux-fork.c (linux_fork_context): Likewise.
3045         * record-full.c (record_full_goto_entry, record_full_restore):
3046         Likewise.
3047         * remote-mips.c (common_open): Likewise.
3048         * stack.c (print_stack_frame): New 'set_current_sal' parameter.
3049         Use it.
3050         (print_frame_info): New 'set_current_sal' parameter.  Set the last
3051         displayed sal depending on the new paremeter instead of looking at
3052         print_what.
3053         (backtrace_command_1, select_and_print_frame, frame_command)
3054         (current_frame_command, up_command, down_command): Adjust call to
3055         print_stack_frame.
3056         * thread.c (print_thread_info, restore_selected_frame)
3057         (do_captured_thread_select): Adjust call to print_stack_frame.
3058         * tracepoint.c (tfind_1): Likewise.
3059         * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
3060         (mi_cmd_stack_info_frame): Likewise.
3061         * mi/mi-interp.c (mi_on_normal_stop): Likewise.
3062         * mi/mi-main.c (mi_cmd_exec_return, mi_cmd_trace_find): Likewise.
3063
3064 2013-09-16  Sergio Durigan Junior  <sergiodj@redhat.com>
3065
3066         * value.c (isvoid_internal_fn): Replace "parameter" with
3067         "argument".
3068
3069 2013-09-16  Stan Shebs  <stan@codesourcery.com>
3070
3071         * README: Update references to writing code for GDB.
3072         * configure.ac (build_warnings): Remove obsolete comment.
3073         * configure: Regenerate.
3074         * gdbarch.sh: Remove references to gdbint.texinfo.
3075         * gdbarch.h: Regenerate.
3076         * gdbtypes.c (objfile_type): Remove comments referencing internals
3077         manual and D10V.
3078
3079 2013-09-16  Sergio Durigan Junior  <sergiodj@redhat.com>
3080
3081         * NEWS: Mention new convenience function $_isvoid.
3082         * value.c (isvoid_internal_fn): New function.
3083         (_initialize_values): Add new convenience function $_isvoid.
3084
3085 2013-09-16  Pierre Muller  <muller@sourceware.org>
3086
3087         * arm-linux-tdep.c: Add "elf/common.h" header.
3088         Remove AT_HWCAP macro definintion as it is provided in
3089         added include file.
3090         * s390-tdep.c: Remove system header <elf.h>
3091         Add "elf/common.h" header for AT_HWCAP definition.
3092         (s390_core_read_description): Use correct CORE_ADDR
3093         for hwcap local variable used as third parameter
3094         of function target_auxv_search.
3095
3096 2013-09-14  Pierre Muller  <muller@sourceware.org>
3097             Tom Tromey  <tromey@redhat.com>
3098             Pedro Alves  <palves@redhat.com>
3099
3100         * common/filestuff.c (gdb_fopen_cloexec): Do not try to use "e"
3101         mode if operating system doesn't know O_CLOEXEC.
3102
3103 2013-09-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
3104
3105         Code cleanup.
3106         * symfile.c (reread_symbols): Move variable obfd_filename to a more
3107         inner block.
3108
3109 2013-09-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3110
3111         * NEWS: Mention TDB support.
3112         * features/s390-tdb.xml: New file.
3113         * features/s390-te-linux64.xml: New file.
3114         * features/s390x-te-linux64.xml: New file.
3115         * features/Makefile (WHICH): Add new tdescs above.
3116         (s390-te-linux64-expedite): Set.
3117         (s390x-te-linux64-expedite): Set.
3118         * features/s390-te-linux64.c: New file (generated).
3119         * features/s390x-te-linux64.c: New file (generated).
3120         * regformats/s390-te-linux64.dat: New file (generated).
3121         * regformats/s390x-te-linux64.dat: New file (generated).
3122         * s390-tdep.h (HWCAP_S390_HIGH_GPRS): Define.
3123         (HWCAP_S390_TE): Likewise.
3124         (S390_TDB_DWORD0_REGNUM): Likewise.
3125         (S390_TDB_DWORD0_REGNUM): Likewise.
3126         (S390_TDB_ABORT_CODE_REGNUM): Likewise.
3127         (S390_TDB_CONFLICT_TOKEN_REGNUM): Likewise.
3128         (S390_TDB_ATIA_REGNUM): Likewise.
3129         (S390_TDB_R0_REGNUM): Likewise.
3130         (S390_TDB_R1_REGNUM): Likewise.
3131         (S390_TDB_R2_REGNUM): Likewise.
3132         (S390_TDB_R3_REGNUM): Likewise.
3133         (S390_TDB_R4_REGNUM): Likewise.
3134         (S390_TDB_R5_REGNUM): Likewise.
3135         (S390_TDB_R6_REGNUM): Likewise.
3136         (S390_TDB_R7_REGNUM): Likewise.
3137         (S390_TDB_R8_REGNUM): Likewise.
3138         (S390_TDB_R9_REGNUM): Likewise.
3139         (S390_TDB_R10_REGNUM): Likewise.
3140         (S390_TDB_R11_REGNUM): Likewise.
3141         (S390_TDB_R12_REGNUM): Likewise.
3142         (S390_TDB_R13_REGNUM): Likewise.
3143         (S390_TDB_R14_REGNUM): Likewise.
3144         (S390_TDB_R15_REGNUM): Likewise.
3145         (S390_NUM_REGS): Increase.
3146         (S390_IS_TDBREGSET_REGNUM): New macro.
3147         (s390_regmap_tdb): Declare.
3148         (s390_sizeof_tdbregset): Define.
3149         (tdesc_s390_te_linux64): Declare.
3150         (tdesc_s390x_te_linux64): Likewise.
3151         * s390-tdep.c: Add includes for "auxv.h", <elf.h>,
3152         "features/s390-te-linux64.c", and "features/s390x-te-linux64.c".
3153         (s390_regmap_tdb): New regmap.
3154         (s390_supply_tdb_regset): New function.
3155         (s390_tdb_regset): New regset.
3156         (s390_linux64v2_regset_sections): Add TDB regset to list.
3157         (s390x_linux64v2_regset_sections): Likewise.
3158         (s390_regset_from_core_section): Recognize TDB core note section.
3159         (s390_core_read_description): If HWCAP indicates TE support,
3160         select tdesc_s390_te_linux64 or tdesc_s390_s390x_te_linux64.
3161         (s390_gdbarch_init): Handle TDB regset.
3162         (_initialize_s390_tdep): Initialize new tdescs.
3163         * s390-nat.c (HWCAP_S390_HIGH_GPRS): Remove define.
3164         (have_regset_tdb): New variable.
3165         (s390_native_supply): Support register invalidation.
3166         (fetch_regset): Invalidate registers if ptrace yields ENODATA.
3167         (check_regset): Treat ENODATA as "regset exists".
3168         (s390_linux_fetch_inferior_registers): Add TDB.
3169         (s390_read_description): Check for TDB existence and select
3170         appropriate tdesc.
3171         * gdbserver/Makefile.in (clean): Add removal of new makefile
3172         targets.
3173         (s390-te-linux64.c): New makefile target.
3174         (s390x-te-linux64.c): Likewise.
3175         * gdbserver/configure.srv (srv_regobj): Append new objects
3176         s390-te-linux64.o and s390x-te-linux64.o.
3177         (srv_xmlfiles): Append new files s390-te-linux64.xml,
3178         s390x-te-linux64.xml, and s390-tdb.xml.
3179         * gdbserver/linux-s390-low.c (init_registers_s390_te_linux64): New
3180         declaration.
3181         (tdesc_s390_te_linux64): Likewise.
3182         (init_registers_s390x_te_linux64): Likewise.
3183         (tdesc_s390x_te_linux64): Likewise.
3184         (s390_check_regset): Treat ENODATA as "regset exists".
3185         (s390_arch_setup): Add TDB regset support.
3186         (initialize_low_arch): Initialize registers for new tdescs.
3187
3188 2013-09-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3189
3190         * s390-tdep.h (S390_IS_GREGSET_REGNUM): New macro.
3191         (S390_IS_FPREGSET_REGNUM): New macro.
3192         * s390-tdep.c (s390_dwarf_regmap): Make const.
3193         (regnum_is_gpr_full): New function for replacing repeated code.
3194         (s390_pseudo_register_name): Use it.
3195         (s390_pseudo_register_type): Likewise.
3196         (s390_pseudo_register_read): Likewise.
3197         (s390_pseudo_register_write): Likewise.
3198         (s390_unwind_pseudo_register): Likewise.
3199         (s390_regmap_gregset): New format for regmap.
3200         (s390x_regmap_gregset): Likewise.
3201         (s390_regmap_fpregset): Likewise.
3202         (s390_regmap_upper): Likewise.
3203         (s390_regmap_last_break): Likewise.
3204         (s390_regmap_system_call): Likewise.
3205         (s390_supply_regset): Adjust to new regmap format.
3206         (s390_collect_regset): Likewise.
3207         * s390-nat.c (s390_native_supply): Adjust to new regmap format.
3208         (s390_native_collect): Likewise.
3209         (supply_gregset): Likewise.
3210         (fill_gregset): Likewise.
3211         (supply_fpregset): Likewise.
3212         (fill_fpregset): Likewise.
3213         (fetch_regset): Likewise.
3214         (store_regset): Likewise.
3215         (s390_linux_fetch_inferior_registers): Likewise.
3216         (s390_linux_fetch_inferior_registers): Likewise.
3217
3218 2013-09-12  Andrew Pinski  <apinski@cavium.com>
3219
3220         * aarch64-linux-nat.c (aarch64_linux_set_debug_regs): Zero out regs.
3221
3222 2013-09-10  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3223
3224         * config/s390/s390.mh (NATDEPFILES): Add linux-waitpid.o.
3225
3226 2013-09-09  Andrew Burgess  <aburgess@broadcom.com>
3227
3228         * top.c (quit_confirm): Remove use of deprecated_init_ui_hook.
3229
3230 2013-09-06  Pedro Alves <palves@redhat.com>
3231
3232         * remote-sim.c (dump_mem, gdbsim_fetch_register)
3233         (gdbsim_store_register, gdbsim_kill, gdbsim_load)
3234         (gdbsim_create_inferior, gdbsim_open, gdbsim_close)
3235         (gdbsim_detach, gdbsim_resume_inferior, gdbsim_wait)
3236         (gdbsim_files_info, gdbsim_mourn_inferior): Send debug output to
3237         gdb_stdlog.
3238
3239 2013-09-06  Pedro Alves  <palves@redhat.com>
3240
3241         * remote-sim.c (dump_mem): Constify buf parameter.
3242         gdbsim_xfer_inferior_memory): Rename to ...
3243         (gdbsim_xfer_memory): ... this.  Adjust interface as
3244         target_xfer_partial helper.
3245         (gdbsim_xfer_partial): New function.
3246         (init_gdbsim_ops): Don't install a deprecated_xfer_memory hook.
3247         Install a to_xfer_partial hook.  Send output to gdb_stdlog.
3248
3249 2013-09-06  Pedro Alves  <palves@redhat.com>
3250
3251         * remote-sim.c (gdbsim_xfer_inferior_memory): Use
3252         host_address_to_string, and send debug output to gdb_stdlog.
3253
3254 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
3255
3256         * Makefile.in (ALL_TARGET_OBS): Add cris-linux-tdep.o.
3257         * configure.tgt: Add cris-linux-tdep.o and linux-tdep.o to
3258         gdb_target_obs for cris target.
3259         * cris-tdep.c (struct gdbarch_tdep): Move to cris-tdep.h.
3260         (cris_gdbarch_init): Move calls to
3261         set_gdbarch_fetch_tls_load_module_address and
3262         set_solib_svr4_fetch_link_map_offsets to cris-linux-tdep.c.
3263         Add call to gdbarch_init_osabi.
3264         * cris-linux-tdep.c: New file.
3265         * cris-tdep.h: New file.
3266
3267 2013-09-06  Andrew Burgess  <aburgess@broadcom.com>
3268
3269         * tui/tui-io.c (tui_initialize_io): Remove legacy comment referring
3270         to deprecated_init_ui_hook.
3271
3272 2013-09-06  Andrew Burgess  <aburgess@broadcom.com>
3273
3274         * cli/cli-interp.c (_initialize_cli_interp): Add a
3275         command_loop_proc to interp_procs.
3276         * event-top.c (cli_command_loop): Change signature to match
3277         interp_command_loop_ftype.
3278         * event-top.h (cli_command_loop): Same.
3279         * interps.c (interp_new): Require every interpreter to have a
3280         command_loop_proc.
3281         (current_interp_command_loop): Just call the command_loop_proc on
3282         the current interpreter.
3283         * tui/tui-interp.c (_initialize_tui_interp): Add a
3284         command_loop_proc to interp_procs.
3285
3286 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
3287
3288         * cris-tdep.c (cris_gdbarch_init): Add call to
3289         get_gdbarch_fetch_tls_load_module_address.
3290
3291 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
3292
3293         * cris-tdep.c (cris_elf_greg_t): Rename from elf_greg_t.
3294         (cris_elf_gregset_t): Rename from elf_gregset_t.
3295         (crisv32_elf_gregset_t): Adjust.
3296         (cris_supply_gregset, fetch_core_registers): Adjust.
3297
3298 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
3299
3300         * cris-tdep.c (elf_greg_t): Change typedef to unsigned char[4]
3301
3302 2013-09-05  Andrew Burgess  <aburgess@broadcom.com>
3303
3304         * defs.h (deprecated_command_loop_hook): Remove, including
3305         references in comments.
3306         * interps.c (current_interp_command_loop): No longer use
3307         deprecated_command_loop_hook.
3308         (clear_interpreter_hooks): Remove deprecated_command_loop_hook
3309         setup.
3310         * top.c (deprecated_command_loop_hook): Remove.
3311
3312 2013-09-05  Pedro Alves  <palves@redhat.com>
3313
3314         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): 'dwarf_regnum'
3315         local is now int instead of ULONGEST.  Print it with %d
3316         instead of paddress.
3317
3318 2013-09-05  Tristan Gingold  <gingold@adacore.com>
3319
3320         * MAINTAINERS: Remove avr maintainership.
3321
3322 2013-09-05  Pedro Alves  <palves@redhat.com>
3323
3324         * findvar.c (value_of_register): Rework in terms of
3325         value_of_register_lazy.
3326
3327 2013-09-05  Muhammad Bilal  <mbilal@codesourcery.com>
3328
3329         * symfile.c (add_symbol_file_command): Remove trailing
3330          whitespaces and blank line after comment.
3331
3332 2013-09-05  Pedro Alves  <palves@redhat.com>
3333
3334         * tui/tui-regs.c (tui_register_format): Don't look at the
3335         register's name here.  Return string representing register
3336         value instead of storing it in the data element.
3337         (tui_get_register): Compare register string representations
3338         instead of register value states and contents.
3339
3340 2013-09-05  Pedro Alves  <palves@redhat.com>
3341
3342         PR tui/15933
3343         * tui/tui-regs.c (tui_show_registers): Show registers of the
3344         selected frame, not the current frame.
3345
3346 2013-09-05  Ricard Wanderlof  <ricardw@axis.com>
3347
3348         * MAINTAINERS (Write After Approval): Add myself to the list.
3349
3350 2013-09-04  Doug Evans  <dje@google.com>
3351
3352         * dwarf2read.c (queue_and_load_all_dwo_tus): New function.
3353         (queue_and_load_dwo_tu): New function.
3354         (lookup_dwo_signatured_type): Set per_cu.tu_read.
3355         (maybe_queue_comp_unit): Rename this_cu argument to dependent_cu.
3356         Make dependent_cu optional.
3357         (dw2_do_instantiate_symtab): If we just loaded a CU from a DWO,
3358         and an older .gdb_index is in use, queue and load all its TUs too.
3359
3360 2013-09-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
3361
3362         Code cleanup: Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH.
3363         * cli/cli-cmds.c (find_and_open_script): Add OPF_RETURN_REALPATH to
3364         variable search_flags.
3365         * defs.h (OPF_DISABLE_REALPATH): Rename to ...
3366         (OPF_RETURN_REALPATH): ... here.
3367         * dwarf2read.c (try_open_dwop_file): Set OPF_RETURN_REALPATH for flags.
3368         * exec.c (exec_file_attach): Remove OPF_DISABLE_REALPATH from openp
3369         call.  Twice.
3370         * nto-tdep.c (nto_find_and_open_solib): Add OPF_RETURN_REALPATH for
3371         openp call.
3372         * solib.c (solib_find): Likewise.  Four times.
3373         * source.c (openp): Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH
3374         in the function comment and for the realpath_fptr variable.
3375         (source_full_path_of): Add OPF_RETURN_REALPATH for openp call.
3376         (find_and_open_source): Likewise.  Twice.
3377         * symfile.c (symfile_bfd_open): Likewise, also twice.
3378
3379 2013-09-04  Doug Evans  <dje@google.com>
3380
3381         * progspace.c (save_current_space_and_thread): Remove unnecessary
3382         call to save_current_inferior.
3383
3384 2013-09-04  Andrew Burgess  <aburgess@broadcom.com>
3385
3386         * sh64-tdep.c (sh64_do_register): Return after printing message
3387         about unavailable register contents.
3388
3389 2013-09-04  Muhammad Bilal  <mbilal@codesourcery.com>
3390             Pedro Alves  <palves@redhat.com>
3391
3392         * symfile.c (add_symbol_file_command): Error out on unknown
3393         option.  Handle EXPECTING_SEC_ADDR/EXPECTING_SEC_NAME before '-'
3394         options and collapse into single conditional branch.
3395
3396 2013-09-03  Luis Machado  <lgustavo@codesourcery.com>
3397
3398         * inf-child.c (inf_child_follow_fork): New parameter
3399         detach_fork.
3400         * inf-ptrace.c (inf_ptrace_follow_fork): Likewise.
3401         * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
3402         * inferior.h (detach_fork): Remove.
3403         * infrun.c (detach_fork): Adjust comment and make it
3404         static.
3405         (follow_fork): Pass detach_fork parameter to
3406         target_follow_fork.
3407         * linux-nat.c (linux_child_follow_fork): New parameter
3408         detach_fork.
3409         * target.c (target_follow_fork): New parameter detach_fork.
3410         Pass detach_fork as parameter and print its value.
3411         * target.h (struct target_ops) <to_follow_fork>: New int
3412         parameter.
3413         (target_follow_fork): New parameter detach_fork.
3414
3415 2013-09-03  Joel Brobecker  <brobecker@adacore.com>
3416
3417         * solib-ia64-hpux.c (ia64_hpux_relocate_section_addresses):
3418         Replace sec->bfd by sec->the_bfd_section->owner.
3419
3420 2013-09-03  Yao Qi  <yao@codesourcery.com>
3421
3422         * linux-tdep.c (linux_is_uclinux): New function.  Code moved
3423         from linux_has_shared_address_space.
3424         (linux_has_shared_address_space): Call linux_is_uclinux.
3425         * linux-tdep.h (linux_is_uclinux): Declare.
3426         * m68klinux-tdep.c (m68k_linux_get_sigtramp_info): Call
3427         linux_is_uclinux.
3428
3429 2013-09-03  Yao Qi  <yao@codesourcery.com>
3430
3431         * config/djgpp/fnchange.lst: Remove entry of
3432         i386-interix-nat.c and i386-interix-tdep.c.
3433         * configure.ac: Remove '*-*-interix*'.
3434         * configure: Re-generated.
3435         * defs.h (enum gdb_osabi): Remove GDB_OSABI_INTERIX.
3436         * i386-cygwin-tdep.c (i386_cygwin_osabi_sniffer): Remove
3437         obsolete comments.
3438         * osabi.c (gdb_osabi_names): Remove "Interix".
3439
3440 2013-09-03  Yao Qi  <yao@codesourcery.com>
3441
3442         * arch-utils.c: Fix typo in the comment to gdbarch_update_p.
3443
3444 2013-09-02  Markus Metzger  <markus.t.metzger@intel.com>
3445
3446         * record.h (record_print_flag) <record_print_src_line,
3447         record_print_insn_range>: Rename into ...
3448         (record_print_flag) <record_print_src_line,
3449         record_print_insn_range>: ... this.  Update all users.
3450
3451 2013-09-02  Pierre Muller  <muller@sourceware.org>
3452
3453         * windows-nat.c (windows_xfer_memory): Handle ERROR_PARTIAL_COPY
3454         error code.
3455
3456 2013-09-02  Pierre Muller  <muller@sourceware.org>
3457
3458         * windows-nat.c (windows_xfer_memory): Fix compilation failure
3459         by use of plongest function.
3460
3461 2013-09-02  Tristan Gingold  <gingold@adacore.com>
3462
3463         * NEWS: Add entry mentioning support for native Windows x64
3464         SEH data.
3465
3466         * amd64-windows-tdep.c: #include "objfiles.h", "frame-unwind.h",
3467         "coff/internal.h", "coff/i386.h", "coff/pe.h" and "libcoff.h".
3468         (struct amd64_windows_frame_cache): New struct.
3469         (amd64_windows_w2gdb_regnum): New global.
3470         (pc_in_range, amd64_windows_frame_decode_epilogue)
3471         (amd64_windows_frame_decode_insns, amd64_windows_find_unwind_info)
3472         (amd64_windows_frame_cache, amd64_windows_frame_prev_register)
3473         (amd64_windows_frame_this_id): New functions.
3474         (amd64_windows_frame_unwind): New static global.
3475         (amd64_windows_skip_prologue): New function.
3476         (amd64_windows_init_abi): Call frame_unwind_prepend_unwinder
3477         with amd64_windows_frame_unwind. Call set_gdbarch_skip_prologue
3478         with amd64_windows_skip_prologue.
3479
3480 2013-08-30  Joel Brobecker  <brobecker@adacore.com>
3481
3482         GDB 7.6.1 released.
3483
3484 2013-08-30  Pedro Alves  <palves@redhat.com>
3485
3486         * mi/mi-main.c (mi_cmd_trace_find): Use LOC_AND_ADDRESS instead of
3487         SRC_AND_LOC.
3488
3489 2013-08-30  Pedro Alves  <palves@redhat.com>
3490
3491         * thread.c (restore_selected_frame): Use SRC_AND_LOC, and change
3492         warning text.
3493
3494 2013-08-30  Pedro Alves  <palves@redhat.com>
3495
3496         * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
3497         Adjust arguments to print_stack_frame.
3498
3499 2013-08-30  Pedro Alves  <palves@redhat.com>
3500
3501         * ada-tasks.c (task_command_1): Write SRC_AND_LOC instead '1'.
3502
3503 2013-08-30  Pedro Alves  <palves@redhat.com>
3504
3505         * frame.h (show_and_print_stack_frame): Delete declaration.
3506
3507 2013-08-30  Phil Muldoon  <pmuldoon@redhat.com>
3508
3509         PR python/15461
3510         * python/py-arch.c (ARCHPY_REQUIRE_VALID): New macro.
3511         (archpy_name): Check for valid architecture.
3512         (archpy_disassemble): Ditto.
3513
3514 2013-08-29  Joel Brobecker  <brobecker@adacore.com>
3515
3516         * rs6000-nat.c (rs6000_ptrace32): Cast "addr" to "uintptr_t"
3517         instead of "long long" in call to ptrace64.
3518
3519 2013-08-29  Andrew Burgess  <aburgess@broadcom.com>
3520
3521         * mi/mi-interp.c (mi_command_loop): Change signature to match
3522         interp_command_loop_ftype.
3523         (mi1_command_loop): Remove.
3524         (mi2_command_loop): Remove.
3525         (mi3_command_loop): Remove.
3526         (mi_interpreter_resume): Remove setting of
3527         deprecated_command_loop_hook.
3528         (_initialize_mi_interp): Set mi_command_loop as the command loop
3529         callback.
3530
3531 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
3532
3533         * valops.c (do_search_struct_field): Pass v2 instead of base_type to
3534         value_type.
3535
3536 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
3537
3538         * value.c (allocate_value_contents): Make static.
3539         * value.h (allocate_value_contents): Remove prototype.
3540
3541 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
3542
3543         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use value_at_lazy instead
3544         of assembling value via allocate_value_lazy and attribute setter.
3545         * findvar.c (default_read_var_value): Use value_at_lazy instead of
3546         assembling value via allocate_value_lazy and attribute setter.
3547         * valops.c (do_search_struct_field): Use value_at_lazy instead of
3548         assembling value via allocate_value_lazy and attribute setter.
3549
3550 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
3551
3552         * value.c (value_from_contents_and_address): Replace allocate_value and
3553         memcpy with value_from_contents.
3554
3555 2013-08-29  Phil Muldoon  <pmuldoon@redhat.com>
3556
3557         * python/py-framefilter.c (py_print_frame): Remove usage of
3558         PyString_AsString.  Use python_string_to_host_string instead.
3559         Refactor function to work with a string as a new allocation
3560         instead of a pointer.
3561         (py_print_frame): Ditto.
3562         * python/lib/gdb/frames.py (return_list): Cain iterators together
3563         instead of adding them as a list.
3564         (_sort_list): Call return_list, and remove duplicate code.
3565         (execute_frame_filters): Convert iterator to a list with list().
3566         * python/lib/gdb/command/frame_filters.py
3567         (SetFrameFilterPriority._set_filter_priority): Convert priority
3568         attribute to an integer.
3569         * python/lib/gdb/FrameIterator.py (FrameIterator.next): Define
3570         wrapper function __next__.
3571         * python/lib/gdb/FrameDecorator.py: If basestring not defined,
3572         define as "str".
3573
3574 2013-08-29  Phil Muldoon  <pmuldoon@redhat.com>
3575
3576         PR python/15752
3577         * python/py-framefilter.c (apply_frame_filter): Check
3578         gdb_python_initialized.  Exit if the Python frame-filter code
3579         cannot be initialized.
3580
3581 2013-08-29  Phil Muldoon  <pmuldoon@redhat.com>
3582
3583         PR cli/15842
3584         * top.c (print_gdb_version): Remove erroneous newline after help
3585         text.
3586
3587 2013-08-29  Yao Qi  <yao@codesourcery.com>
3588
3589         * varobj.c (install_dynamic_child): Remove trailing space.
3590         Add one blank line after variable declaration.
3591
3592 2013-08-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
3593
3594         PR gdb/15415
3595         * corefile.c (get_exec_file): Use exec_filename.
3596         * defs.h (OPF_DISABLE_REALPATH): New definition.  Add new comment.
3597         * exec.c (exec_close): Free EXEC_FILENAME.
3598         (exec_file_attach): New variable canonical_pathname.  Use
3599         OPF_DISABLE_REALPATH.  Call gdb_realpath explicitly.  Set
3600         EXEC_FILENAME.
3601         * exec.h (exec_filename): New.
3602         * inferior.c (print_inferior, inferior_command): Use
3603         PSPACE_EXEC_FILENAME.
3604         * mi/mi-main.c (print_one_inferior): Likewise.
3605         * progspace.c (clone_program_space, print_program_space): Likewise.
3606         * progspace.h (struct program_space): New field pspace_exec_filename.
3607         * source.c (openp): Describe OPF_DISABLE_REALPATH.  New variable
3608         realpath_fptr, initialize it from OPF_DISABLE_REALPATH, use it.
3609
3610 2013-08-28  Will Newton  <will.newton@linaro.org>
3611
3612         * common/linux-ptrace.c: Include stdint.h unconditionally.
3613
3614 2013-08-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
3615
3616         Code cleanup.
3617         * nto-tdep.c (nto_find_and_open_solib): Use OPF_TRY_CWD_FIRST.
3618
3619 2013-08-28  Yao Qi  <yao@codesourcery.com>
3620             Pedro Alves  <palves@redhat.com>
3621
3622         * event-top.c (gdb_setup_readline): Call stderr_fileopen
3623         instead of stdio_fileopen.
3624         * main.c (captured_main) [__MINGW32__]: Set stderr unbuffered.
3625         .Call stderr_fileopen instead of stdio_fileopen.
3626         * ui-file.c [__MINGW32__] (stderr_file_write): New function.
3627         [__MINGW32__] (stderr_file_fputs): New function.
3628         (stderr_fileopen): New function.
3629         * ui-file.h (stderr_fileopen): Declare.
3630
3631 2013-08-27  Doug Evans  <dje@google.com>
3632
3633         * dwarf2read.c (struct dwarf2_cu): Tweak comment.
3634         (struct dwarf2_per_cu_data): Ditto.
3635         (maybe_queue_comp_unit): Delete forward decl.  Add comment.
3636         (process_imported_unit_die): Ditto.
3637         (follow_die_sig_1): Simplify assert.
3638
3639 2013-08-27  Pedro Alves  <palves@redhat.com>
3640
3641         * windows-nat.c (windows_xfer_memory): Adjust prototype to follow
3642         xfer_partial's interface.  Return TARGET_XFER_E_IO on error.
3643         (windows_xfer_partial): Defer TARGET_OBJECT_MEMORY handling to
3644         windows_xfer_memory directly.
3645         (init_windows_ops): Don't install a deprecated_xfer_memory method.
3646
3647 2013-08-27  Pedro Alves  <palves@redhat.com>
3648
3649         * darwin-nat.c (darwin_xfer_memory): Delete.
3650         (_initialize_darwin_inferior): Don't install a
3651         deprecated_xfer_memory method.
3652
3653 2013-08-27  Pedro Alves  <pedro@codesourcery.com>
3654             Yao Qi  <yao@codesourcery.com>
3655
3656         * mi/mi-cmd-stack.c (list_args_or_locals): Adjust prototype.
3657         (parse_no_frames_option): Remove.
3658         (mi_cmd_stack_list_locals): Handle --skip-unavailable.
3659         (mi_cmd_stack_list_args): Adjust.
3660         (mi_cmd_stack_list_variables): Handle --skip-unavailable.
3661         (list_arg_or_local): Add new parameter 'skip_unavailable'.  Return
3662         early if SKIP_UNAVAILABLE is true and ARG->val is unavailable.
3663         Caller update.
3664         (list_args_or_locals): New parameter 'skip_unavailable'.
3665         Handle it.
3666         * valprint.c (scalar_type_p): Rename to ...
3667         (val_print_scalar_type_p): ... this.  Make extern.
3668         (val_print, value_check_printable): Adjust.
3669         * valprint.h (val_print_scalar_type_p): Declare.
3670         * value.c (value_entirely_unavailable): New function.
3671         * value.h (value_entirely_unavailable): Declare.
3672
3673         * NEWS: Mention the new option "--skip-unavailable" to MI
3674         commands '-stack-list-locals', '-stack-list-arguments' and
3675         '-stack-list-variables'.
3676
3677 2013-08-27  Yao Qi  <yao@codesourcery.com>
3678
3679         * mi/mi-cmd-stack.c (parse_no_frames_option): Remove.
3680         (mi_cmd_stack_list_args): Use mi_getopt_silent to handle
3681         options.
3682         * mi/mi-getopt.c (mi_getopt): Remove.
3683         (mi_getopt_1): Renamed from mi_getopt.  Add one parameter
3684         'error_on_unknown'.
3685         (mi_getopt): Call mi_getopt_1.
3686         (mi_getopt_silent): New.
3687         * mi/mi-getopt.h (mi_getopt_silent): Declare.
3688
3689 2013-08-26  Doug Evans  <dje@google.com>
3690
3691         PR symtab/15885
3692         * dwarf2read.c (dw2_dump): Print some minimal information indicating
3693         .gdb_index is in use.
3694         * symfile.c (reread_symbols): Reset objfile->sf.
3695
3696         * NEWS: Document "mt print objfiles" now takes optional regexp.
3697         * symmisc.c (maintenance_print_objfiles): Argument is now an optional
3698         regexp of objfiles to print.
3699         (_initialize_symmisc): Update doc string for "mt print objfiles".
3700
3701         * dwarf2read.c (write_psymtabs_to_index): Move error checks ahead of
3702         missing debug info checks.
3703
3704 2013-08-26  Raunaq Bathija  <raunaq12@in.ibm.com>
3705             Ulrich Weigand  <uweigand@de.ibm.com>
3706
3707         * xcoffread.c (arrange_linetable): Add fix to correctly handle
3708         line tables generated by XLC compiled binaries.
3709
3710 2013-08-23  Doug Evans  <dje@google.com>
3711
3712         * symmisc.c (dump_symtab): Delete prototype.
3713         (dump_msymbols, dump_objfile): Ditto.
3714         (maintenance_info_symtabs): Mark as dont_repeat.
3715         (_initialize_symmisc): Improve doc string for "mt info symtabs".
3716
3717         * elfread.c (elf_symfile_read): Move "Done reading minimal symbols"
3718         debugging printf to better location.
3719
3720 2013-08-23  Pedro Alves  <palves@redhat.com>
3721
3722         * target.c (target_read_live_memory): Change type of 'ret' local
3723         to LONGEST.
3724
3725 2013-08-23  Pedro Alves  <palves@redhat.com>
3726
3727         * remote.c (remote_write_bytes_aux, remote_write_bytes)
3728         (remote_read_bytes): Change return type to LONGEST, and adjust to
3729         return a target_xfer_error on error.
3730         (remote_xfer_memory): Delete.
3731         (remote_flash_write): Change type of 'ret' local to LONGEST.
3732         (remote_xfer_partial, remote_xfer_partial): Adjust.
3733         (init_remote_ops): Don't install a deprecated_xfer_memory hook.
3734
3735 2013-08-23  Pierre Muller  <muller@sourceware.org>
3736
3737         ARI fix: Push # directives to start of line.
3738         * rs6000-nat.c (rs6000_ptrace32, rs6000_ptrace64): Rule applied.
3739
3740 2013-08-12  Muhammad Waqas  <mwaqas@codesourcery.com>
3741
3742         PR gdb/15501
3743         * breakpoint.c (enable_command, disable_command): Iterate over
3744         all specified breakpoint locations.
3745
3746 2013-08-22  Luis Machado  <lgustavo@codesourcery.com>
3747
3748         * common/linux-ptrace.c (linux_fork_to_function): Push #
3749         directives to the start of the line.
3750         (linux_check_ptrace_features): Fix warning message to use
3751         the "_" markup.
3752
3753 2013-08-22  Luis Machado  <lgustavo@codesourcery.com>
3754
3755         * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-nat.h and
3756         nat/linux-waitpid.h.
3757         (linux-waitpid.o): New object file rule.
3758         * common/linux-ptrace.c: Include nat/linux-waitpid.h.
3759         (current_ptrace_options): Moved from linux-nat.c.
3760         (linux_ptrace_test_ret_to_nx): Use type casts for ptrace
3761         parameters.
3762         (linux_fork_to_function): New function.
3763         (linux_grandchild_function): Likewise.
3764         (linux_child_function): Likewise.
3765         (linux_check_ptrace_features): New function, heavily
3766         based on linux-nat.c:linux_test_for_tracefork.
3767         (linux_enable_event_reporting): New function.
3768         (ptrace_supports_feature): Likewise.
3769         (linux_supports_tracefork): Likewise.
3770         (linux_supports_traceclone): Likewise.
3771         (linux_supports_tracevforkdone): Likewise.
3772         (linux_supports_tracesysgood): Likewise.
3773         * common/linux-ptrace.h (HAS_NOMMU): Moved from
3774         gdbserver/linux-low.c.
3775         (linux_enable_event_reporting): New declaration.
3776         (linux_supports_tracefork): Likewise.
3777         (linux_supports_traceclone): Likewise.
3778         (linux_supports_tracevforkdone): Likewise.
3779         (linux_supports_tracesysgood): Likewise.
3780         * config.in (PTRACE_TYPE_ARG4): Regenerate.
3781         * config/aarch64/linux.mh (NATDEPFILES): Add linux-waitpid.o.
3782         * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
3783         * config/arm/linux.mh (NATDEPFILES): Likewise.
3784         * config/i386/linux.mh (NATDEPFILES): Likewise.
3785         * config/i386/linux64.mh (NATDEPFILES): Likewise.
3786         * config/ia64/linux.mh (NATDEPFILES): Likewise.
3787         * config/m32r/linux.mh (NATDEPFILES): Likewise.
3788         * config/m68k/linux.mh (NATDEPFILES): Likewise.
3789         * config/mips/linux.mh (NATDEPFILES): Likewise.
3790         * config/pa/linux.mh (NATDEPFILES): Likewise..
3791         * config/powerpc/linux.mh (NATDEPFILES): Likewise..
3792         * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
3793         * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
3794         * config/sparc/linux.mh (NATDEPFILES): Likewise.
3795         * config/sparc/linux64.mh (NATDEPFILES): Likewise.
3796         * config/tilegx/linux.mh (NATDEPFILES): Likewise.
3797         * config/xtensa/linux.mh (NATDEPFILES): Likewise.
3798         * configure.ac (AC_CACHE_CHECK): Add void * to the list of
3799         ptrace's 4th argument's types.
3800         Check the type of PTRACE_TYPE_ARG4.
3801         * configure: Regenerate.
3802         * linux-nat.c: Include nat/linux-nat.h and nat/linux-waitpid.h.
3803         (SYSCALL_SIGTRAP): Moved to nat/linux-nat.h.
3804         (linux_supports_tracefork_flag): Remove.
3805         (linux_supports_tracesysgood_flag): Likewise.
3806         (linux_supports_tracevforkdone_flag): Likewise.
3807         (current_ptrace_options): Moved to
3808         common/linux-ptrace.c.
3809         (linux_tracefork_child): Remove.
3810         (my_waitpid): Remove.
3811         (linux_test_for_tracefork): Renamed to
3812         linux_check_ptrace_features and moved to common/linux-ptrace.c.
3813         (linux_test_for_tracesysgood): Remove.
3814         (linux_supports_tracesysgood): Remove.
3815         (linux_supports_tracefork): Remove.
3816         (linux_supports_tracevforkdone): Remove.
3817         (linux_enable_tracesysgood): Remove.
3818         (linux_enable_event_reporting): Remove.
3819         (linux_init_ptrace): New function.
3820         (linux_child_post_attach): Call linux_init_ptrace.
3821         (linux_child_post_startup_inferior): Call linux_init_ptrace.
3822         (linux_child_follow_fork): Call linux_supports_tracefork
3823         and linux_supports_tracevforkdone.
3824         (linux_child_insert_fork_catchpoint): Call
3825         linux_supports_tracefork.
3826         (linux_child_insert_vfork_catchpoint): Likewise.
3827         (linux_child_set_syscall_catchpoint): Call
3828         linux_supports_tracesysgood.
3829         (lin_lwp_attach_lwp): Call linux_supports_tracefork.
3830         * nat/linux-nat.h: New file.
3831         * nat/linux-waitpid.c: New file.
3832         * nat/linux-waitpid.h: New file.
3833
3834 2013-08-22  Samuel Bronson  <naesten@gmail.com>
3835
3836         ARM Linux support for `catch syscall'.
3837         * syscalls/arm-linux.py: New file.
3838         * syscalls/arm-linux.xml: Likewise.
3839         * arm-linux-tdep.c (arm_linux_get_syscall_number): New function.
3840         (arm_linux_init_abi): Register the new function and syscall xml file.
3841         * data-directory/Makefile.in: Install the new syscall xml file.
3842         * NEWS: Brag about this.
3843
3844 2013-08-22  Pedro Alves  <palves@redhat.com>
3845
3846         PR gdb/15871
3847         * corefile.c (target_xfer_memory_error): New function.
3848         (memory_error): Defer EIO to target_memory_error.
3849         (read_memory): Use target_xfer_partial, and handle finer-grained
3850         target xfer errors.
3851         * target.c (target_xfer_error_to_string): New function.
3852         (memory_xfer_partial_1): If memory is known to be
3853         unavailable, return TARGET_XFER_E_UNAVAILABLE instead of -1.
3854         (target_xfer_partial): Make extern.
3855         * target.h (enum target_xfer_error): New enum.
3856         (target_xfer_error_to_string): Declare function.
3857         (target_xfer_partial): Declare function.
3858         (struct target_ops) <xfer_partial>: Adjust describing comment.
3859
3860 2013-08-22  Alan Modra  <amodra@gmail.com>
3861
3862         * configure.host: Support powerpc64le-linux and powerpcle-linux hosts.
3863         * configure.tgt: Likewise as targets.
3864
3865 2013-08-20  Doug Evans  <dje@google.com>
3866
3867         * buildsym.c (subfile_stack): Move here from buildsym.h.
3868         (pending_macros): Ditto.
3869         (get_macro_table): New function.
3870         (buildsym_init): Initialize subfile_stack.
3871         * coffread.c (type_vector,type_vector_length): Moved here from
3872         buildsym.h.
3873         (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
3874         (coff_symtab_read): Use it.
3875         * dbxread.c (read_ofile_symtab): Delete init of subfile_stack.
3876         * dwarf2read.c (macro_start_file): Replace uses of pending_macros
3877         with call to get_macro_table.
3878         * stabsread.c (type_vector,type_vector_length): Moved here from
3879         buildsym.h.
3880         (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
3881         * buildsym.h (get_macro_table): Declare.
3882
3883 2013-08-20  Tom Tromey  <tromey@redhat.com>
3884
3885         * dbxread.c (record_minimal_symbol): Make 'name' argument const.
3886         Update.
3887         (read_dbx_dynamic_symtab): Make 'name' const.  Remove casts.
3888
3889 2013-08-20  Doug Evans  <dje@google.com>
3890
3891         * blockframe.c: Remove #include "psymtab.h".
3892         * cp-support.c: Ditto.
3893         * source.c: Ditto.
3894         * stack.c: Ditto.
3895
3896 2013-08-20  Tom Tromey  <tromey@redhat.com>
3897
3898         PR python/15816:
3899         * exceptions.h (return_mask): Now an enum.
3900         (RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL): Now
3901         enum constants.
3902
3903 2013-08-20  Tom Tromey  <tromey@redhat.com>
3904
3905         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Use
3906         get_objfile_arch.
3907         * elfread.c (elf_rel_plt_read, elf_gnu_ifunc_record_cache)
3908         (elf_gnu_ifunc_resolve_by_got): Use get_objfile_arch.
3909         * jit.c (jit_object_close_impl): Update.
3910         * jv-lang.c (get_dynamics_objfile): Update.
3911         * linespec.c (add_minsym): Use get_dynamics_objfile.
3912         * objfiles.c (get_objfile_bfd_data): Initialize 'gdbarch' field.
3913         (allocate_objfile): Don't initialize 'gdbarch' field.
3914         (get_objfile_arch): Update.
3915         * objfiles.h (struct objfile_per_bfd_storage) <gdbarch>: New field,
3916         moved from...
3917         (struct objfile) <gdbarch>: ... here.  Remove.
3918         * stap-probe.c (stap_can_evaluate_probe_arguments): Use
3919         get_objfile_arch.
3920         * symfile.c (init_entry_point_info): Use get_objfile_arch.
3921
3922 2013-08-20  Alan Modra  <amodra@gmail.com>
3923
3924         * doublest.c (convert_floatformat_to_doublest): Use fmt->split_half
3925         for IBM long double nan and inf.
3926         (floatformat_is_negative, floatformat_classify,
3927         floatformat_mantissa): Similarly.
3928         (floatformat_ieee_single, floatformat_ieee_double,
3929         floatformat_ieee_quad, floatformat_arm_ext,
3930         floatformat_ia64_spill): Delete unused vars.
3931         (_initialize_doublest): Delete unused function.
3932         * gdbtypes.c (floatformats_ibm_long_double): Use new big- and
3933         little-endian variants of floatformat_ibm_long_double.
3934
3935 2013-08-19  Luis Machado  <lgustavo@codesourcery.com>
3936
3937         * Makefile.in (SFILES): Remove common/target-common.c and
3938         add target/waitstatus.c.
3939         (HFILES_NO_SRCDIR): Remove common/target-common.h and add
3940         target/resume.h, target/wait.h and target/waitstatus.h.
3941         (COMMON_OBS): Remove target-common.o and add
3942         waitstatus.o.
3943         (target-common.o): Remove.
3944         (waitstatus.o): New target object file.
3945         * common/target-common.c: Move contents to
3946         target/waitstatus.c and remove.
3947         * common/target-common.h: Move contents to other files and
3948         remove.
3949         (enum resume_kind: Move to target/resume.h.
3950         (TARGET_WNOHANG): Move to target/wait.h.
3951         (enum target_waitkind): Move to target/waitstatus.h.
3952         (struct target_waitstatus): Likewise.
3953         * target.h: Do not include target-common.h and
3954         include target/resume.h, target/wait.h and
3955         target/waitstatus.h.
3956         * target/resume.h: New file.
3957         * target/wait.h: New file.
3958         * target/waitstatus.h: New file.
3959         * target/waitstatus.c: New file.
3960
3961 2013-08-19  Pedro Alves  <palves@redhat.com>
3962
3963         * linux-nat.c (linux_test_for_tracefork)
3964         (linux_test_for_tracesysgood, linux_child_follow_fork)
3965         (lin_lwp_attach_lwp, linux_nat_resume): Don't block child signals.
3966         (linux_nat_wait_1): Extend comment.
3967         (linux_async_pipe): Add comment.
3968
3969 2013-08-15  Kevin Buettner  <kevinb@redhat.com>
3970
3971         * rl78-tdep.c (RL78_RAW_PC_REGNUM): New enum.
3972         (RL78_PC_REGNUM): Move to list of pseudo-register enums.
3973         (rl78_register_type, rl78_register_name, rl78_register_reggroup_p):
3974         Update to account for fact that PC is now a pseudo-register.
3975         (rl78_pseudo_register_write, rl78_pseudo_register_read):  Add
3976         cases for RL78_PC_REGNUM.
3977
3978 2013-08-15  Muhammad Bilal  <mbilal@codesourcery.com>
3979
3980         PR cli/15841
3981         * top.c (quit_force): Skip writing history file
3982         if input is not from terminal.
3983
3984 2013-08-14  Tom Tromey  <tromey@redhat.com>
3985
3986         * remote.c (struct remote_state) <echo_nextthread, nextthread,
3987         resultthreadlist>: New fields.
3988         (OPAQUETHREADBYTES, threadref, MAXTHREADLISTRESULTS): Move earlier.
3989         (remote_get_threadlist, remote_threadlist_iterator): Use
3990         new fields.  Remove static variables.
3991
3992 2013-08-14  Tom Tromey  <tromey@redhat.com>
3993
3994         * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p,
3995         remote_watch_data_address>: New fields.
3996         (remote_stopped_by_watchpoint_p, remote_watch_data_address): Remove.
3997         (process_stop_reply, remote_wait_as)
3998         (remote_check_watch_resources, remote_stopped_data_address): Update.
3999
4000 2013-08-14  Tom Tromey  <tromey@redhat.com>
4001
4002         * remote.c (struct remote_state) <async_client_callback,
4003         async_client_context>: New fields.
4004         (async_client_callback, async_client_context): Remove.
4005         (remote_async_serial_handler, remote_async): Update.
4006
4007 2013-08-14  Tom Tromey  <tromey@redhat.com>
4008
4009         * remote.c (sizeof_pkt): Remove.
4010         (remote_trace_find): Use rs->buf_size, not sizeof_pkt.
4011
4012 2013-08-14  Tom Tromey  <tromey@redhat.com>
4013
4014         * remote.c (struct remote_state) <use_threadinfo_query,
4015         use_threadextra_query>: New fields.
4016         (remote_threads_info, remote_threads_extra_info)
4017         (remote_open_1): Update.
4018
4019 2013-08-14  Tom Tromey  <tromey@redhat.com>
4020
4021         * remote.c (struct remote_state) <finished_object,
4022         finished_annex, finished_offset>: New fields.
4023         (remote_read_qxfer): Use remote_state fields; remove static
4024         variables.
4025
4026 2013-08-14  Tom Tromey  <tromey@redhat.com>
4027
4028         * remote.c (struct remote_state) <last_sent_step>:
4029         New field.
4030         (last_sent_step): Remove.
4031         (remote_resume, remote_wait_as): Update.
4032
4033 2013-08-14  Tom Tromey  <tromey@redhat.com>
4034
4035         * remote.c (struct remote_state) <last_sent_signal>:
4036         New field.
4037         (last_sent_signal): Remove.
4038         (new_remote_state, remote_resume, remote_wait_as): Update.
4039
4040 2013-08-14  Tom Tromey  <tromey@redhat.com>
4041
4042         * remote.c (struct remote_state) <last_program_signals_packet>:
4043         New field.
4044         (last_program_signals_packet): Remove.
4045         (remote_program_signals, remote_open_1): Update.
4046
4047 2013-08-14  Tom Tromey  <tromey@redhat.com>
4048
4049         * remote.c (struct remote_state) <last_pass_packet>:
4050         New field.
4051         (last_pass_packet): Remove.
4052         (remote_pass_signals, remote_open_1): Update.
4053
4054 2013-08-14  Tom Tromey  <tromey@redhat.com>
4055
4056         * remote.c (struct remote_state) <remote_traceframe_number>:
4057         New field.
4058         (remote_traceframe_number): Remove.
4059         (new_remote_state, remote_open_1, set_remote_traceframe)
4060         (remote_trace_find): Update.
4061
4062 2013-08-14  Tom Tromey  <tromey@redhat.com>
4063
4064         * remote.c (struct remote_state) <general_thread, continue_thread>:
4065         New fields.
4066         (general_thread, continue_thread): Remove.
4067         (record_currthread, set_thread, set_general_process)
4068         (remote_open_1, extended_remote_attach_1, remote_wait_as)
4069         (extended_remote_mourn_1): Update.
4070
4071 2013-08-14  Tom Tromey  <tromey@redhat.com>
4072
4073         * remote.c (struct remote_state) <remote_desc>: New field.
4074         (remote_desc): Remove.
4075         (remote_threads_info, remote_threads_extra_info, remote_close)
4076         (send_interrupt_sequence, remote_start_remote, remote_open_1)
4077         (readchar, remote_xfer_partial, remote_rcmd, packet_command)
4078         (remote_hostio_send_command, remote_file_put, remote_file_get)
4079         (remote_file_delete, remote_can_async_p, remote_is_async_p)
4080         (remote_async, remote_new_objfile, set_range_stepping): Update.
4081
4082 2013-08-14  Tom Tromey  <tromey@redhat.com>
4083
4084         * remote.c (remote_state): Now a pointer.
4085         (get_remote_state_raw): Update.
4086         (new_remote_state): New function.
4087         (_initialize_remote): Use new_remote_state.
4088
4089 2013-08-14  Tom Tromey  <tromey@redhat.com>
4090
4091         * remote.c (remote_protocol_features): Now const.
4092
4093 2013-08-14  Tom Tromey  <tromey@redhat.com>
4094
4095         * remote.c (crc32_table, crc32): Remove.
4096         (remote_verify_memory): Use xcrc32.
4097
4098 2013-08-13  Sergio Durigan Junior  <sergiodj@redhat.com>
4099
4100         * value.h (create_internalvar_type_lazy): Adjust prototype
4101         declaration.
4102
4103 2013-08-13  Andrew Burgess  <aburgess@broadcom.com>
4104
4105         * common/format.c (parse_format_string): Don't allow '#' flag for
4106         pointer arguments in format string.
4107
4108 2013-08-13  Pierre Muller  <muller@sourceware.org>
4109
4110         * utils.c (init_page_info): Only call tgetnum function
4111         if rl_get_screen_size did not return useful values.
4112
4113 2013-08-12  Ali Anwar  <ali_anwar@codesourcery.com>
4114
4115         PR breakpoints/15117
4116         * linespec.c (linespec_parse_basic): Check for convenience
4117         variable or history value while parsing.
4118
4119 2013-08-12  Sergio Durigan Junior  <sergiodj@redhat.com>
4120
4121         Revert implementation of gdbarch_gdb_signal_{to,from}_target for
4122         AVR.
4123         * avr-tdep.c: Remove include of "linux-tdep.h".  Remove enum with
4124         different signals between the generic Linux kernel implementation
4125         and AVR's.
4126         (avr_linux_gdb_signal_from_target): Delete.
4127         (avr_linux_gdb_signal_to_target): Delete.
4128         (avr_gdbarch_init): Don't set gdbarch_gdb_signal_{to,from}_target.
4129
4130 2013-08-09  Doug Evans  <dje@google.com>
4131
4132         * dwarf2read.c (create_addrmap_from_index): Ignore bad address table
4133         entries.
4134
4135 2013-08-09  Sergio Durigan Junior  <sergiodj@redhat.com>
4136
4137         * linux-tdep.c: Define enum with generic signal numbers.
4138         (linux_gdb_signal_from_target): New function.
4139         (linux_gdb_signal_to_target): Likewise.
4140         (linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4141         methods to the functions above.
4142         * linux-tdep.h (linux_gdb_signal_from_target): New prototype.
4143         (linux_gdb_signal_to_target): Likewise.
4144         * alpha-linux-tdep.c: Define new enum with signals different
4145         from generic Linux kernel.
4146         (alpha_linux_gdb_signal_from_target): New function.
4147         (alpha_linux_gdb_signal_to_target): Likewise.
4148         (alpha_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4149         with the functions mentioned above.
4150         * avr-tdep.c: Define enum with differences between Linux kernel
4151         and AVR signals.
4152         (avr_linux_gdb_signal_from_target): New function.
4153         (avr_linux_gdb_signal_to_target): Likewise.
4154         (avr_gdbarch_init): Set gdbarch_gdb_signal_{to,from}_target to
4155         the functions mentioned above.
4156         * sparc-linux-tdep.c: Define enum with differences between SPARC
4157         and generic Linux kernel signal numbers.
4158         (sparc32_linux_gdb_signal_from_target): New function.
4159         (sparc32_linux_gdb_signal_to_target): Likewise.
4160         (sparc32_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4161         to the functions defined above.
4162         * xtensa-linux-tdep.c: Define enum with differences between
4163         Xtensa and Linux kernel generic signals.
4164         (xtensa_linux_gdb_signal_from_target): New function.
4165         (xtensa_linux_gdb_signal_to_target): Likewise.
4166         (xtensa_linux_init_abi): Set gdbarch_gdb_signal_to_target
4167         to the functions defined above.
4168         * mips-linux-tdep.c: Define enum with differences between
4169         signals in MIPS and Linux kernel generic ones.
4170         (mips_gdb_signal_to_target): New function.
4171         (mips_gdb_signal_from_target): Redefine to use new enum, handle
4172         only different signals from the Linux kernel generic.
4173         (mips_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4174         the functions defined above.
4175         * mips-linux-tdep.h (enum mips_signals): Remove.
4176
4177 2013-08-09  Pedro Alves  <palves@redhat.com>
4178
4179         * avr-tdep.c (XMALLOC): Delete macro.
4180         * cli/cli-dump.c (XMALLOC): Delete macro.
4181
4182 2013-08-09  Pedro Alves  <palves@redhat.com>
4183
4184         * cli/cli-dump.c: Don't include cli/cli-dump.h.
4185         (scan_expression_with_cleanup, scan_filename_with_cleanup)
4186         (fopen_with_cleanup, add_dump_command): Make static.
4187         * cli/cli-dump.h: Delete file.
4188         * Makefile.in (HFILES_NO_SRCDIR): Remove reference to
4189         cli/cli-dump.h.
4190
4191 2013-08-09  Pedro Alves  <palves@redhat.com>
4192
4193         * tracepoint.c (tfile_start): Show tilde-expanded filename in
4194         error message.
4195
4196 2013-08-09  Pedro Alves  <palves@redhat.com>
4197
4198         * breakpoint.c (save_breakpoints): Show tilde-expanded filename in
4199         error message.
4200
4201 2013-08-09  Pedro Alves  <palves@redhat.com>
4202
4203         * gcore.c (create_gcore_bfd): Don't use tilde_expand here.
4204         (gcore_command): Use tilde_expand here, and when showing the
4205         filename to the user, show the expanded version.
4206
4207 2013-08-09  Yao Qi  <yao@codesourcery.com>
4208
4209         * stack.c (read_frame_arg): Set 'entryval_error' to NULL if
4210         'entryval' is set.
4211
4212 2013-08-08  Azat Khuzhin  <a3at.mail@gmail.com>  (tiny change)
4213
4214         * gcore.c (create_gcore_bfd): Use tilde_expand.
4215
4216 2013-08-08  Yao Qi  <yao@codesourcery.com>
4217
4218         * frame.h (read_frame_local): Declare.
4219         * mi/mi-cmd-stack.c (list_args_or_locals): Call
4220         read_frame_local.
4221         * stack.c (read_frame_local): New.
4222
4223 2013-08-08  Yao Qi  <yao@codesourcery.com>
4224
4225         * mi/mi-cmd-stack.c: Update comments to function
4226         list_args_or_locals.
4227
4228 2013-08-07  Tom Tromey  <tromey@redhat.com>
4229
4230         PR symtab/15028:
4231         * dwarf2read.c (struct process_psymtab_comp_unit_data): New.
4232         (process_psymtab_comp_unit_reader): Use it.
4233         (process_psymtab_comp_unit): Update.  Add "pretend_language"
4234         argument.
4235         (dwarf2_build_psymtabs_hard): Update.
4236         (scan_partial_symbols): Pass CU's language to
4237         process_psymtab_comp_unit.
4238
4239 2013-08-07  Tom Tromey  <tromey@redhat.com>
4240
4241         * dwarf2read.c (dw2_get_primary_filename_reader): Remove.
4242         (dwarf2_gdb_index_functions): Update.
4243         * psymtab.c (find_symbol_file_from_partial): Remove.
4244         (psym_functions): Update.
4245         * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
4246         Remove.
4247
4248 2013-08-07  Tom Tromey  <tromey@redhat.com>
4249
4250         * symfile.c (set_initial_language): Look up "main" symbol
4251         and use its language.
4252         * symtab.c (find_main_filename): Remove.
4253         * symtab.h (find_main_filename): Remove.
4254
4255 2013-08-07  Tom Tromey  <tromey@redhat.com>
4256
4257         * dwarf2read.c (recursively_compute_inclusions): Add
4258         "immediate_parent" argument.  Set symtab's "user" field
4259         if not set.
4260         (compute_symtab_includes): Update.
4261
4262 2013-08-07  Tom Tromey  <tromey@redhat.com>
4263
4264         * linespec.c (convert_linespec_to_sals): Use maybe_add_address
4265         when adding label symbols.
4266
4267 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
4268             Ulrich Weigand  <uweigand@de.ibm.com>
4269
4270         * configure.tgt (powerpc64-*-aix*): Match powerpc64 running aix.
4271         * configure.host (powerpc64-*-aix*): Likewise.
4272
4273 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
4274             Ulrich Weigand  <uweigand@de.ibm.com>
4275
4276         * gdb_ptrace.h: Use ptrace64 instead of ptrace if HAVE_PTRACE64
4277         is defined.
4278         * rs6000-nat.c: Check for __ld_info64_ if compiling 64 BIT gdb.
4279         (rs6000_ptrace32): Call ptrace64 instead of ptrace if present.
4280         (rs6000_ptrace64): Call ptace64 instead of ptracex if present.
4281         * configure.ac: Check for ptrace64.
4282         * configure, config.in: Regenerate.
4283
4284 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
4285             Ulrich Weigand  <uweigand@de.ibm.com>
4286
4287         * aixthread.c: Call ptrace64 instead of ptracex if defined.
4288         Call ptrace64 instead of ptrace if defined.
4289         Add macro addr_ptr to take care of ptrace address argument.
4290         (pdc_read_regs): Likewise.
4291         (pdc_write_regs): Likewise.
4292         (aix_thread_resume): Likewise.
4293         (fetch_regs_kernel_thread): Likewise.
4294         (store_regs_kernel_thread): Likewise.
4295
4296 2013-08-07  Anton Blanchard  <anton@samba.org>
4297
4298         * MAINTAINERS: Add myself to Write After Approval.
4299
4300 2013-08-05  Tom Tromey  <tromey@redhat.com>
4301
4302         * aix-thread.c (_initialize_aix_thread): Use
4303         complete_target_initialization.
4304         * bsd-uthread.c (_initialize_bsd_uthread): Use
4305         complete_target_initialization.
4306         * dec-thread.c (_initialize_dec_thread): Use
4307         complete_target_initialization.
4308         * ravenscar-thread.c (_initialize_ravenscar): Use
4309         complete_target_initialization.
4310         * sol-thread.c (_initialize_sol_thread): Use
4311         complete_target_initialization.
4312         * spu-multiarch.c (_initialize_spu_multiarch): Use
4313         complete_target_initialization.
4314
4315 2013-08-05  Tom Tromey  <tromey@redhat.com>
4316
4317         * ada-exp.y (write_var_or_type): Use bound_minimal_symbol.
4318         * ada-lang.c (ada_lookup_simple_minsym): Return
4319         bound_minimal_symbol.
4320         * ada-lang.h (ada_lookup_simple_minsym): Update.
4321         * c-exp.y (variable): Use lookup_bound_minimal_symbol.
4322         * f-exp.y (variable): Use lookup_bound_minimal_symbol.
4323         * go-exp.y (variable): Use lookup_bound_minimal_symbol.
4324         * jv-exp.y (push_expression_name): Use lookup_bound_minimal_symbol.
4325         * m2-exp.y (variable): Use lookup_bound_minimal_symbol.
4326         * minsyms.c (msymbol_objfile): Remove.
4327         (lookup_minimal_symbol_internal): New function, from
4328         lookup_minimal_symbol.
4329         (lookup_minimal_symbol): Rewrite using
4330         lookup_minimal_symbol_internal.
4331         (lookup_bound_minimal_symbol): New function.
4332         * minsyms.h (msymbol_objfile): Remove.
4333         (lookup_bound_minimal_symbol): Declare.
4334         * p-exp.y (variable): Use lookup_bound_minimal_symbol.
4335         * parse.c (write_exp_msymbol): Change parameter to a
4336         bound_minimal_symbol.
4337         (write_dollar_variable): Use lookup_bound_minimal_symbol.
4338         * parser-defs.h (write_exp_msymbol): Update.
4339         * printcmd.c (address_info): Use lookup_bound_minimal_symbol.
4340         * symfile.c (simple_read_overlay_table): Use
4341         lookup_bound_minimal_symbol.
4342         * symtab.c (skip_prologue_sal): Don't use msymbol_objfile.
4343         (search_symbols): Likewise.
4344         (print_msymbol_info): Take a bound_minimal_symbol argument.
4345         (symtab_symbol_info, rbreak_command): Update.
4346         * symtab.h (struct symbol_search) <msymbol>: Change type
4347         to bound_minimal_symbol.
4348         * valops.c (find_function_in_inferior): Use
4349         lookup_bound_minimal_symbol.
4350         * value.c (value_fn_field): Use lookup_bound_minimal_symbol.
4351
4352 2013-08-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
4353
4354         Code cleanup.
4355         * remote.c (cleanup_sigint_signal_handler): Rename the declaration
4356         to ...
4357         (async_cleanup_sigint_signal_handler): ... this.
4358         (initialize_sigint_signal_handler): Remove declaration.
4359         (handle_remote_sigint): Rename the declaration to ...
4360         (async_handle_remote_sigint): ... this.
4361         (handle_remote_sigint_twice): Rename the declaration to ...
4362         (async_handle_remote_sigint_twice): ... this.
4363         (async_remote_interrupt, async_remote_interrupt_twice)
4364         (remote_interrupt): Remove the declarations.
4365         (remote_interrupt_twice): Rename the declaration ...
4366         (sync_remote_interrupt_twice): ... this.
4367         (sigint_remote_twice_token): Rename the variable to ...
4368         (async_sigint_remote_twice_token): ... this.
4369         (sigint_remote_token): Rename the variable to ...
4370         (async_sigint_remote_token): ... this.
4371         (initialize_sigint_signal_handler): Rename the function to ...
4372         (async_initialize_sigint_signal_handler): ... this.  Update the name
4373         inside.
4374         (handle_remote_sigint): Rename the function to ...
4375         (async_handle_remote_sigint): ... this.  Update the names inside.
4376         (handle_remote_sigint_twice): Rename the function to ...
4377         (async_handle_remote_sigint_twice): ... this.  Update the names inside.
4378         (cleanup_sigint_signal_handler): Rename the function to ...
4379         (async_cleanup_sigint_signal_handler): ... this.
4380         (remote_interrupt): Rename the function to ...
4381         (sync_remote_interrupt): this.  Update the names inside.
4382         (remote_interrupt_twice): Rename the function to ...
4383         (sync_remote_interrupt_twice): this.  Update the names inside.
4384         (remote_terminal_inferior, remote_terminal_ours, remote_wait_as)
4385         (_initialize_remote): Update the names inside.
4386
4387 2013-08-02  Tom Tromey  <tromey@redhat.com>
4388
4389         PR symtab/15719:
4390         * breakpoint.c (update_watchpoint, watchpoint_check)
4391         (watch_command_1): Update.
4392         * eval.c (fetch_subexp_value): Add "preserve_errors"
4393         parameter.
4394         * ppc-linux-nat.c (check_condition): Update.
4395         * value.h (fetch_subexp_value): Update.
4396
4397 2013-08-02  Andrew Burgess  <aburgess@broadcom.com>
4398
4399         * mi/mi-interp.c (mi_interpreter_resume): Remove call to
4400         add_file_handler.
4401
4402 2013-08-01  Doug Evans  <dje@google.com>
4403
4404         PR symtab/15691
4405         * dwarf2read.c (struct dwarf2_per_cu_data): New member tu_read.
4406         (fill_in_sig_entry_from_dwo_entry): Reorganize asserts.
4407         Add assert of sig_entry->dwo_unit == NULL.
4408         (lookup_dwo_signatured_type): Don't assign TU to a DWO if the TU
4409         had already been read.
4410         (read_signatured_type): Set per_cu.tu_read.
4411
4412         PR symtab/15695
4413         * valops.c (value_struct_elt): Add missing call to check_typedef.
4414         (value_find_oload_method_list): Ditto.
4415
4416         * symtab.c (do_free_search_symbols_cleanup): Change arg to,
4417         effectively, struct symbol_search **.
4418         (make_cleanup_free_search_symbols): Change arg to struct
4419         symbol_search **.  All callers updated.
4420         (compare_search_syms): Compare symtab file name and block as well.
4421         (search_symbols_equal): New function.
4422         (sort_search_symbols_remove_dups): Renamed from sort_search_symbols.
4423         New args new_head, new_tail.  Result is now void.  Remove dups after
4424         sorting the symbols.
4425         (search_symbols): Sort all found symbols once, after all have been
4426         found, and remove duplicates.  Simplify cleanup tracking of result.
4427         * symtab.h (make_cleanup_free_search_symbols): Update prototype.
4428
4429         Further workarounds for binutils/15021.
4430         * dwarf2read.c (recursively_compute_inclusions): Change type of result
4431         parameter to VEC (symtab_ptr) **.  New parameter all_type_symtabs.
4432         Watch for duplicate symtabs coming from type units.
4433         (compute_symtab_includes): Update call to
4434         recursively_compute_inclusions. Build vector of included symtabs
4435         instead of per_cus.
4436         * symtab.h (symtab_ptr): New typedef.
4437         (DEF_VEC_P (symtab_ptr)): New VEC type.
4438         * linespec.c (symtab_p): Delete.  All uses updated to use symtab_ptr
4439         instead.
4440
4441 2013-08-01  Andrew Burgess  <aburgess@broadcom.com>
4442
4443         * cli/cli-script.c (script_from_file): Remove use of
4444         error_pre_print.
4445         * main.c (captured_main): Remove use of error_pre_print and
4446         quit_pre_print.
4447         * utils.c (error_pre_print, quit_pre_print): Remove.
4448         * utils.h (error_pre_print, quit_pre_print): Likewise.
4449
4450 2013-08-01  Yao Qi  <yao@codesourcery.com>
4451
4452         * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Parse argv
4453         with mi_getopt.
4454         (mi_cmd_stack_list_variables): Likewise.
4455
4456 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
4457
4458         * exceptions.c (deprecated_throw_reason): Remove.
4459         * exceptions.h (deprecated_throw_reason): Remove.
4460
4461 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
4462
4463         * remote-mips.c (mips_error): Replace use of
4464         deprecated_throw_reason with throw_verror.  Use the error message
4465         passed to mips_error as the error message for throw_verror.
4466
4467 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
4468
4469         * monitor.c (monitor_interrupt_query): Replace use of
4470         deprecated_throw_reason with quit.
4471         * nto-procfs.c (interrupt_query): Likewise.
4472         * remote-fileio.c (remote_fileio_sig_exit): Likewise.
4473         * remote-mips.c (mips_kill): Likewise.
4474         * remote.c (interrupt_query): Likewise.
4475
4476 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
4477
4478         * utils.c (internal_verror): Replace use of deprecated_throw_reason
4479         with call to fatal.
4480
4481 2013-07-31  Pedro Alves  <pedro@codesourcery.com>
4482             Yao Qi  <yao@codesourcery.com>
4483
4484         * tracepoint.c (trace_dump_command): Select the current frame.
4485
4486 2013-07-30  Doug Evans  <dje@google.com>
4487
4488         * dwarf2read.c (process_queue): Add type signature to debug output.
4489
4490 2013-07-30  Andrew Burgess  <aburgess@broadcom.com>
4491
4492         * value.c (value_fetch_lazy): Mark optimized out values as such
4493         rather than raising an error.
4494
4495 2013-07-30  Andrew Burgess  <aburgess@broadcom.com>
4496
4497         * value.c (value_fetch_lazy): Ensure parent value is not lazy
4498         before checking which bits of the parent, not the child, value are
4499         valid.
4500
4501 2013-07-30  Muhammad Bilal  <mbilal@codesorcery.com>
4502
4503         PR gdb/15715
4504         * top.c: Include "filenames.h".
4505         (set_history_filename): New function.
4506         (init_main): Install it as set hook of the "set history filename"
4507         command.
4508
4509 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
4510
4511         * dwarf2read.c (dwarf2_get_ref_die_offset): Constify struct
4512         attribute parameter.
4513         (dwarf2_const_value_data): Constify struct attribute parameter.
4514         (dwarf2_const_value): Constify struct attribute parameter.
4515         (dwarf2_const_value_attr): Constify struct attribute parameter.
4516         (lookup_die_type): Constify struct attribute parameter.
4517         (dwarf2_get_attr_constant_value): Constify struct attribute parameter.
4518         (follow_die_ref_or_sig): Constify struct attribute parameter.
4519         (follow_die_ref): Constify struct attribute parameter.
4520         (follow_die_sig): Constify struct attribute parameter.
4521         (get_DW_AT_signature_type): Constify struct attribute parameter.
4522         (get_type_unit_group): Constify struct attribute parameter.
4523         (fill_in_loclist_baton): Constify struct attribute parameter.
4524         (dwarf2_symbol_mark_computed): Constify struct attribute parameter.
4525         (type_unit_group): Constify struct attribute parameter.
4526
4527 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
4528
4529         * dwarf2read.c (attr_form_is_block): Make argument const.
4530         (attr_form_is_section_offset): Make argument const.
4531         (attr_form_is_constant): Make argument const.
4532         (attr_form_is_ref): Make argument const.
4533
4534 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
4535
4536         * dwarf2read.c (attr_is_ref): Rename to attr_form_is_ref.
4537         All uses updated.
4538         (attr_form_is_ref): Moved below attr_form_is_constant.
4539
4540 2013-07-29  Doug Evans  <dje@google.com>
4541
4542         * main.c (captured_command_loop): Tweak comment.
4543
4544         * target.c (target_async_permitted_1): Fix comment.
4545
4546         * symtab.c (iterate_over_some_symtabs): Add comment.
4547
4548         * symtab.c (iterate_over_some_symtabs): Fix indentation.
4549
4550 2013-07-27  Yao Qi  <yao@codesourcery.com>
4551
4552         * NEWS: Mention that GDBserver now supports hardware
4553         watchpoints on the MIPS GNU/Linux target.
4554
4555 2013-07-27  Yao Qi  <yao@codesourcery.com>
4556
4557         * Makefile.in (HFILES_NO_SRCDIR): Add
4558         common/mips-linux-watch.h.
4559         (mips-linux-watch.o): New rule.
4560         * common/mips-linux-watch.c: New.
4561         * common/mips-linux-watch.h: New.
4562         * config/mips/linux.mh (NATDEPFILES): Add mips-linux-watch.o
4563         * mips-linux-nat.c: Include mips-linux-watch.h.
4564         (W_BIT, R_BIT, I_BIT, W_MASK, R_MASK, I_MASK, IRW_MASK): Move
4565         to common/mips-linux-watch.h.
4566         (MAX_DEBUG_REGISTER): Likewise.
4567         (enum pt_watch_style): Likewise.
4568         (struct mips32_watch_regs): Likewise.
4569         (struct mips64_watch_regs): Likewise.
4570         (struct pt_watch_regs): Likewise.
4571         (struct mips_watchpoint): Likewise.
4572         (mips_linux_watch_get_irw_mask): Move to
4573         common/mips-linux-watch.c.
4574         (get_reg_mask, mips_linux_watch_get_num_valid): Likewise.
4575         (mips_linux_watch_get_watchlo): Likewise.
4576         (mips_linux_watch_set_watchlo): Likewise.
4577         (mips_linux_watch_get_watchhi): Likewise.
4578         (mips_linux_watch_set_watchhi): Likewise.
4579         (mips_linux_read_watch_registers): Likewise.
4580         (mips_linux_watch_type_to_irw): Likewise.
4581         (mips_linux_stopped_data_address, fill_mask): Likewise.
4582         (mips_linux_watch_try_one_watch): Likewise.
4583         (mips_linux_watch_populate_regs): Likewise.
4584
4585 2013-07-27  Yao Qi  <yao@codesourcery.com>
4586
4587         * mips-linux-nat.c (get_irw_mask): Rename to ...
4588         (mips_linux_watch_get_irw_mask): ... this.  Rename parameter
4589         'set' to 'n'.  Update function comment.  All callers changed.
4590         (get_reg_mask): Rename parameter 'set' to 'n'.  Update
4591         function comment.  All callers changed.
4592         (get_num_valid): Rename to ...
4593         (mips_linux_watch_get_num_valid): ... this.  Rename parameter
4594         'set' to 'n'.  Update function comment.  All callers changed.
4595         (get_watchlo): Rename to ...
4596         (mips_linux_watch_get_watchlo): ... this.  Rename parameter
4597         'set' to 'n'.  Update function comment.  All callers changed.
4598         (set_watchlo): Rename to ...
4599         (mips_linux_watch_set_watchlo): ... this.  Rename parameter
4600         'set' to 'n'.  Update function comment.  All callers changed.
4601         (get_watchhi): Rename to ...
4602         (mips_linux_watch_get_watchhi): ... this.  Update function
4603         comment.  All callers changed.
4604         (set_watchhi): Rename to ...
4605         (mips_linux_watch_set_watchhi): ... this.  Update function
4606         comment.  All callers changed.
4607         (mips_linux_read_watch_registers): Update function comment.
4608         Add new parameters 'lwpid', 'watch_readback', and
4609         'watch_readback_valid'.  Update.
4610         (type_to_irw): Rename to ...
4611         (mips_linux_watch_type_to_irw): ... this.  Update function
4612         comment.  All callers changed.
4613         (fill_mask): Update function comment.
4614         (try_one_watch): Rename to ...
4615         (mips_linux_watch_try_one_watch): ... this.  Change the type
4616         of parameter 'irw' from 'unsigned' to 'uint32_t'.
4617         (populate_regs_from_watches): Rename to ...
4618         (mips_linux_watch_populate_regs): ... this.  Add parameter
4619         'current_watches'.  All callers changed.
4620
4621 2013-07-27  Yao Qi  <yao@codesourcery.com>
4622
4623         * mips-linux-nat.c (MAX_DEBUG_REGISTER): Move it earlier in
4624         the code.
4625         (PTRACE_SET_WATCH_REGS, enum pt_watch_style): Remove.
4626         (struct mips32_watch_regs, struct mips64_watch_regs): Remove.
4627         (struct pt_watch_regs): Likewise.
4628         [!PTRACE_GET_WATCH_REGS] (PTRACE_SET_WATCH_REGS): New macro.
4629         [!PTRACE_GET_WATCH_REGS] (enum pt_watch_style): New.
4630         [!PTRACE_GET_WATCH_REGS] (struct mips32_watch_regs): New.
4631         [!PTRACE_GET_WATCH_REGS] (struct mips64_watch_regs): New.
4632         [!PTRACE_GET_WATCH_REGS] (struct pt_watch_regs): New.
4633
4634 2013-07-27  Yao Qi  <yao@codesourcery.com>
4635
4636         * breakpoint.h: Include break-common.h.
4637         (enum target_hw_bp_type): Move to ...
4638         * common/break-common.h: ... here.  New.
4639
4640 2013-07-26  Cyril Nikolaev  <cyril@nichtverstehen.de>
4641
4642         * inflow.c (terminal_init_inferior_with_pgrp): Save inferior
4643         process group regardless of having tty on stdin.
4644
4645 2013-07-25  Doug Evans  <dje@google.com>
4646
4647         * linux-fork.h (detach_fork): Delete.
4648
4649 2013-07-25  Tom Tromey  <tromey@redhat.com>
4650
4651         PR remote/15256, PR remote/15266:
4652         * bfd-target.c (target_bfd_reopen): Initialize to_magic.
4653         * monitor.c (monitor_detach): Use unpush_target.
4654         * remote-m32r-sdi.c (m32r_detach): Use unpush_target.
4655         * remote-mips.c (mips_detach): Use unpush_target.  Don't
4656         call mips_close.
4657         * remote-sim.c (gdbsim_detach): Use unpush_target.
4658         * target.c (pop_target): Remove.
4659         (pop_all_targets_above): Don't call target_close.
4660         (target_close): Assert that the target is unpushed.
4661         * target.h (pop_target): Don't declare.
4662         * tracepoint.c (tfile_open): Use unpush_target.
4663
4664 2013-07-25  Tom Tromey  <tromey@redhat.com>
4665
4666         * linux-thread-db.c (init_thread_db_ops): Call
4667         complete_target_initialization.
4668         (_initialize_thread_db): Don't call add_target.
4669         * target.c (complete_target_initialization): New function.
4670         (add_target_with_completer): Call it.
4671         * target.h (complete_target_initialization): Declare.
4672
4673 2013-07-25  Mark Kettenis  <kettenis@gnu.org>
4674
4675         * hppa-tdep.h (enum hppa_regnum): Add members for all space registers.
4676         * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Add comment.
4677         (HPPANBSD_SIZEOF_GREGS): New define.
4678         (hppaobsd_supply_gregset): Handle additional registers.
4679         * hppabsd-nat.c (hppabsd_gregset_supplies_p): Adjust to indicate
4680         we provide more registers now.
4681         (hppabsd_supply_gregset): Supply additional registers.
4682         (hppabsd_collect_gregset): Collect additional registers.
4683
4684 2013-07-25  Mark Kettenis  <kettenis@gnu.org>
4685
4686         * hppabsd-tdep.c: Include "dwarf2-frame.h".
4687         (hppabsd_dwarf2_frame_init_reg): New function.
4688         (hppabsd_init_abi): Hook in the DWARF CFI frame unwinder.
4689
4690 2013-07-25  Andrew Burgess  <aburgess@broadcom.com>
4691
4692         * mi/mi-main.c (output_register): Make MI 'r' format use standard
4693         'z' format code.  Remove error for optimized out values, standard
4694         code will handle these fine.
4695
4696 2013-07-25  Andrew Burgess  <aburgess@broadcom.com>
4697
4698         * NEWS: Mention new 'z' formatter.
4699         * printcmd.c (print_scalar_formatted): Add new 'z' formatter.
4700         (_initialize_printcmd): Mention 'z' formatter in help text of the
4701         'x' command.
4702
4703 2013-07-24  Maciej W. Rozycki  <macro@codesourcery.com>
4704
4705         * mips-tdep.c (micromips_deal_with_atomic_sequence): Correct
4706         formatting.
4707
4708 2013-07-24  Sergio Durigan Junior  <sergiodj@redhat.com>
4709
4710         * breakpoint.c (create_longjmp_master_breakpoint): Check if probe
4711         interface can evaluate arguments.  Fallback to the old mode if it
4712         cannot.
4713         (create_exception_master_breakpoint): Likewise.
4714         * elfread.c (elf_can_evaluate_probe_arguments): New function.
4715         (struct sym_probe_fns elf_probe_fns): Export function above to the
4716         probe interface.
4717         * probe.c (can_evaluate_probe_arguments): New function.
4718         * probe.h (struct probe_ops) <can_evaluate_probe_arguments>: New
4719         function pointer.
4720         (can_evaluate_probe_arguments): New function prototype.
4721         * solib-svr4.c (svr4_create_solib_event_breakpoints): Check if
4722         probe interface can evaluate arguments.  Fallback to the old mode
4723         if it cannot.
4724         * stap-probe.c (stap_get_probe_argument_count): Check if probe
4725         interface can evaluate arguments.  Warning the user if it cannot.
4726         (stap_can_evaluate_probe_arguments): New function.
4727         (struct probe_ops stap_probe_ops): Export function above to the
4728         probe interface.
4729         * symfile.h (struct sym_probe_fns) <can_evaluate_probe_arguments>:
4730         New function pointer.
4731
4732 2013-07-24  Luis Machado  <lgustavo@codesourcery.com>
4733
4734         * Makefile.in (SFILES): Add common/target-common.c.
4735         Add common/target-common.h to headers.
4736         (COMMON_OBS): Add target-common.o.
4737         (target-common.o): New target.
4738         * linux-nat.h (resume_kind): Move to common/target-common.h.
4739         * target.c (target_waitstatus_to_string): Move to
4740         common/target-common.c.
4741         * target.h: Include target-common.h.
4742         (target_waitkind): Move to common/target-common.h.
4743         (target_waitstatus): Likewise.
4744         (TARGET_WNOHANG): Likewise.
4745         * common/target-common.c: New file.
4746         * common/target-common.h: New file.
4747
4748 2013-07-24  Doug Evans  <dje@google.com>
4749
4750         * dwarf2read.c (lookup_dwo_cutu): Change missing DWO complaint to
4751         a warning.
4752
4753 2013-07-23  Yao Qi  <yao@codesourcery.com>
4754
4755         * i386-tdep.c (i386_in_stack_tramp_p): Remove unused
4756         parameter 'gdbarch'.
4757         (i386_stack_tramp_frame_sniffer): Caller update.
4758         * i386-linux-tdep.c (i386_linux_core_read_xcr0): Remove
4759         parameter 'gdbarch' and 'target'.
4760         (i386_linux_core_read_description): Caller update.
4761         * amd64-linux-tdep.c (amd64_linux_core_read_description):
4762         Likewise.
4763         * i386-linux-tdep.h (i386_linux_core_read_xcr0): Update
4764         declaration.
4765
4766 2013-07-23  Tom Tromey  <tromey@redhat.com>
4767
4768         * dwarf2read.c (init_cutu_and_read_dies): Revert patch from
4769         2013-07-22.
4770
4771 2013-07-22  Doug Evans  <dje@google.com>
4772
4773         * exec.h (remove_target_sections): Delete arg abfd.
4774         * exec.c (exec_close): Update call to remove_target_sections.
4775         (remove_target_sections): Delete arg abfd.
4776         * solib.c (update_solib_list): Ditto.
4777         (reload_shared_libraries_1): Ditto.
4778         (clear_solib): Ditto, and unconditionally call remove_target_sections.
4779         * target.h (struct target_section): Rename key to owner.
4780         All uses updated.
4781
4782 2013-07-22  Tom Tromey  <tromey@redhat.com>
4783
4784         * solib-som.c (som_open_symbol_file_object): Call do_cleanups.
4785
4786 2013-07-22  Tom Tromey  <tromey@redhat.com>
4787
4788         * dwarf2read.c (init_cutu_and_read_dies): Remove 'free_cu_cleanup'.
4789         Simplify cleanup handling.
4790
4791 2013-07-22  Tom Tromey  <tromey@redhat.com>
4792
4793         * dwarf2read.c (dwarf_decode_line_header): Call do_cleanups
4794         on all return paths.
4795
4796 2013-07-22  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
4797
4798         * ppc-linux-nat.c (PPC_DEBUG_FEATURE_DATA_BP_DAWR): New define.
4799         (ppc_linux_region_ok_for_hw_watchpoint): Add checking to use the new
4800         DAWR interface for longer ranges hardware watchpoint (up to 512 bytes).
4801
4802 2013-07-22  Phil Muldoon  <pmuldoon@redhat.com>
4803
4804         * top.c (print_gdb_version): Add help, apropos description and
4805         url to online documentation.
4806
4807 2013-07-19  Hui Zhu  <hui@codesourcery.com>
4808
4809         PR gdb/15692
4810         * mi/mi-cmd-break.c (mi_argv_to_format): Handle double quotes.
4811
4812 2013-07-19  Yao Qi  <yao@codesourcery.com>
4813
4814         * target.c (update_current_target): Change the default action
4815         of 'to_traceframe_info' from tcomplain to return_zero.
4816         * target.h (struct target_ops) <to_traceframe_info>: Add more
4817         comments.
4818         * valops.c (read_value_memory): Call
4819         traceframe_available_memory unconditionally.
4820
4821 2013-07-18  Yao Qi  <yao@codesourcery.com>
4822
4823         * coffread.c (coff_symfile_read): Iterate over minimal symbols,
4824         if the name is prefixed by "__imp_" or "_imp_", look for minimal
4825         symbol without prefix.  If found, set its type to
4826         'mst_solib_trampoline'.
4827
4828 2013-07-17  Doug Evans  <dje@google.com>
4829
4830         * NEWS: Mention "set print raw frame-arguments".
4831         * gdbcmd.h (setprintrawlist, showprintrawlist): Declare.
4832         * stack.c (print_raw_frame_arguments): New static global.
4833         (print_frame_arg): Set opts.raw from print_raw_frame_arguments.
4834         (_initialize_stack): New command "set/show print raw frame-arguments".
4835         * valprint.c (setprintrawlist, showprintrawlist): New globals.
4836         (set_print_raw, show_print_raw): New functions.
4837         (_initialize_valprint): New prefix command "set/show print raw".
4838         * valprint.h (value_print_options): Improve comments.
4839
4840         * cli/cli-cmds.c (init_cmd_lists): Delete unnecessary initialization
4841         of all *list variables.
4842
4843         * gdbcmd.h (togglelist): Delete.
4844         * cli/cli-cmds.c (togglelist): Delete.
4845         (init_cmd_lists): Update.
4846         * cli/cli-cmds.h (togglelist): Delete.
4847
4848 2013-07-17  Tom Tromey  <tromey@redhat.com>
4849
4850         * dwarf2read.c (dwarf2_per_objfile_free): Clear
4851         dwarf2_per_objfile.
4852
4853 2013-07-16  Doug Evans  <dje@google.com>
4854
4855         * nto-tdep.c (nto_relocate_section_addresses): Update,
4856         target_section.bfd deleted.
4857         * ppc64-tdep.c (ppc64_convert_from_func_ptr_addr): Ditto.
4858         * s390-tdep.c (s390_load): Ditto.
4859         * solib-aix.c (solib_aix_relocate_section_addresses): Ditto.
4860
4861 2013-07-16  Andrew Burgess  <aburgess@broadcom.com>
4862
4863         * common/format.c (parse_format_string): Add checks for NULL
4864         character before calling strchr.
4865
4866 2013-07-16  Doug Evans  <dje@google.com>
4867
4868         * solist.h (target_so_ops.find_and_open_solib): Clarify usage of
4869         temp_pathname argument.
4870         * nto-tdep.c (nto_find_and_open_solib): Fix setting of temp_pathname
4871         when opening the file fails.
4872
4873         * target.h (struct target_section): Delete member bfd.
4874         All users updated to use the_bfd_section->owner instead.
4875         * exec.c (add_to_section_table): Assert bfd is expected value.
4876         Remove initialization of target_section.bfd.
4877         (remove_target_sections): Update.
4878         (section_table_available_memory): Update.
4879         (section_table_xfer_memory_partial): Update.
4880         (print_section_info): Update.
4881         (exec_set_section_address): Update.
4882         * record-full.c (record_full_core_xfer_partial): Update.
4883         * solib-svr4.c (svr4_relocate_section_addresses): Update.
4884         * solib-target.c (solib_target_relocate_section_addresses): Update.
4885         * symfile.c (build_section_addr_info_from_section_table): Update.
4886         * target.c (memory_xfer_live_readonly_partial): Update.
4887         (memory_xfer_partial_1): Update.
4888
4889 2013-07-15  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
4890
4891         * ppc-linux-nat.c: Since the new PowerPC specific ptrace interface is
4892         now available for embedded (BookE) and server (BookS) processors,
4893         correct mentions of 'booke' and adjust comments accordingly in order to
4894         avoid confusion. Rename struct 'booke_debug_info' to 'hwdebug_info'.
4895         (have_ptrace_booke_interface): Rename function and variable
4896         'have_ptrace_booke_interface' to 'have_ptrace_hwdebug_interface'.
4897         Rename struct 'booke_debug_info' to 'hwdebug_info'. Update all uses.
4898         (booke_cmp_hw_point): Rename function 'booke_cmp_hw_point' to
4899         'hwdebug_point_cmp'. Update all uses.
4900         (booke_find_thread_points_by_tid): Rename function
4901         'booke_find_thread_points_by_tid' to
4902         'hwdebug_find_thread_points_by_tid'. Update all uses.
4903         (booke_insert_point): Rename function 'booke_insert_point' to
4904         'hwdebug_insert_point'. Update all uses.
4905         (booke_remove_point): Rename function 'booke_remove_point' to
4906         'hwdebug_remove_point'. Update all uses.
4907
4908 2013-07-15  Maciej W. Rozycki  <macro@codesourcery.com>
4909
4910         * mips-tdep.c (mips_gdbarch_init): Replace hardcoded magic
4911         numbers with enum values.
4912
4913 2013-07-15  Ali Anwar  <ali_anwar@codesourcery.com>
4914
4915         PR threads/13217
4916         * thread.c (thread_apply_all_command): Check for valid threads
4917         and thread count.
4918         (thread_array_cleanup): New struct.
4919         (set_thread_refcount): New function.
4920
4921 2013-07-11  Andrew Burgess  <aburgess@broadcom.com>
4922
4923         * infcmd.c (default_print_one_register_info): Reuse function
4924         print_hex_chars.
4925
4926 2013-07-10  Tom Tromey  <tromey@redhat.com>
4927
4928         * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS, ADA_EXP_C): New macros.
4929         (ada-exp.o): New target.
4930
4931 2013-07-10  Sergio Durigan Junior  <sergiodj@redhat.com>
4932
4933         * mt-tdep.c (mt_registers_info): Call
4934         get_no_prettyformat_print_options instead of
4935         get_raw_print_options (regression by last patch from Doug
4936         Evans).
4937
4938 2013-07-09  Pedro Alves  <palves@redhat.com>
4939
4940         Checked in by Joel Brobecker  <brobecker@adacore.com>.
4941         * ada-lang.c (coerce_unspec_val_to_type): Use
4942         value_optimized_out_const.
4943         * value.c (value_optimized_out_const): New function.
4944         * value.h (value_optimized_out_const): New declaration.
4945
4946 2013-07-09  Doug Evans  <dje@google.com>
4947
4948         * defs.h (enum val_prettyformat): Renamed from val_prettyprint.
4949         Enum values rename as well.  All uses updated.
4950         * valprint.h (value_print_options): Rename member pretty to
4951         pretty format.  Rename member prettyprint_arrays to
4952         prettyformat_arrays.  Rename member prettyprint_structs to
4953         prettyformat_structs.  All uses updated.
4954         (get_no_prettyformat_print_options): Renamed from
4955         get_raw_print_options.
4956         * valprint.c (get_no_prettyformat_print_options): Renamed from
4957         get_raw_print_options.  All callers updated.
4958         (show_prettyformat_structs): Renamed from show_prettyprint_structs.
4959         All callers updated.
4960         (show_prettyformat_arrays): Renamed from show_prettyprint_arrays.
4961         All callers updated.
4962         (_initialize_valprint): Improve help text for "set print pretty" and
4963         "set print arrays".
4964
4965 2013-07-09  Andrew Burgess  <aburgess@broadcom.com>
4966
4967         * value.c (value_bits_valid): Revert previous change, and change
4968         by Pedro on 2013-07-04, due to regressions in
4969         gdb.dwarf2/implptr.exp and gdb.dwarf2/pieces.exp.
4970
4971 2013-07-08  Andrew Burgess  <aburgess@broadcom.com>
4972             Pedro Alves  <palves@redhat.com>
4973
4974         * value.c (value_bits_valid): If the value is not lval_computed
4975         or has no check validity handler then the answer is the
4976         optimized_out flag, otherwise defer to the handler.
4977
4978 2013-07-06  Eli Zaretskii  <eliz@gnu.org>
4979
4980         * top.c (print_gdb_configuration): Explain in output of
4981         --configuration what does "relocatable" mean.
4982
4983         * main.c (print_gdb_help): Regroup options in the --help text.
4984         See http://sourceware.org/ml/gdb-patches/2013-04/msg00362.html for
4985         the relevant discussions.
4986
4987 2013-07-06  Yao Qi  <yao@codesourcery.com>
4988
4989         * breakpoint.h (struct breakpoint_ops) <create_breakpoints_sal>:
4990         Remove parameter 'lsal'.
4991         * breakpoint.c (create_breakpoint): Move local variable 'lsal'
4992         to inner block.  Caller update.
4993         (base_breakpoint_create_breakpoints_sal): Update.
4994         (bkpt_create_breakpoints_sal): Likewise.
4995         (tracepoint_create_breakpoints_sal): Likewise.
4996         (strace_marker_create_breakpoints_sal): Get 'lsal' from the
4997         element 0 of vector 'canonical->sals'.
4998
4999 2013-07-05  Luis Machado  <lgustavo@codesourcery.com>
5000
5001         * rs6000-tdep.c (rs6000_stab_reg_to_regnum): Return the real
5002         register number instead of the pseudo register one.
5003         (rs6000_dwarf2_reg_to_regnum): Likewise.
5004
5005 2013-07-04  Pedro Alves  <palves@redhat.com>
5006
5007         * findvar.c (value_of_register): Use allocate_optimized_out_value
5008         if the register has been optimized out, instead of
5009         set_value_optimized_out.
5010         * frame-unwind.c (frame_unwind_got_optimized): Use
5011         allocate_optimized_out_value.
5012
5013 2013-07-04  Pedro Alves  <palves@redhat.com>
5014
5015         * value.c (value_bits_valid): If the value is not lval_computed,
5016         or doesn't have a check_validity hook, assume the value is entirely
5017         valid.
5018
5019 2013-07-04  Andrew Burgess  <aburgess@broadcom.com>
5020
5021         * stack.c (read_frame_arg): No longer fetch lazy values.
5022         * value.c (value_optimized_out): If the value is not already
5023         marked optimized out, and is lazy then fetch it.
5024         (value_primitive_field): Move optimized out check to later in the
5025         function, after we have loaded any lazy values.
5026         (value_fetch_lazy): Use optimized out flag directly rather than
5027         calling optimized_out method.
5028
5029 2013-07-04  Andrew Burgess  <aburgess@broadcom.com>
5030
5031         * valops.c: Don't include "user-regs.h".
5032         (value_fetch_lazy): Moved to value.c.
5033         * value.c: Include "user-regs.h".
5034         (value_fetch_lazy): Moved from valops.c.
5035
5036 2013-07-04  Yao Qi  <yao@codesourcery.com>
5037
5038         Revert:
5039         2013-06-27  Yao Qi  <yao@codesourcery.com>
5040
5041         * common/create-version.sh: Update comments.  Handle the case
5042         that TARGET_ALIAS is empty.
5043
5044 2013-07-03  Pedro Alves  <palves@redhat.com>
5045
5046         * Makefile.in (config.status): Depend on development.sh.
5047         (aclocal_m4_deps): Add libmcheck.m4.
5048         * acinclude.m4: Include libmcheck.m4.
5049         * configure.ac: Source development.sh instead of setting
5050         'development' here.  --enable-libmcheck/--disable-libmcheck code
5051         factored out to GDB_AC_LIBMCHECK.  Run it.
5052         * development.sh: New file.
5053         * libmcheck.m4: New file.
5054         * configure: Regenerate.
5055
5056 2013-07-02  Tom Tromey  <tromey@redhat.com>
5057
5058         * contrib/ari/update-web-ari.sh: Update for version.in change.
5059
5060 2013-07-02  Tom Tromey  <tromey@redhat.com>
5061
5062         * common/ptid.h: Comment fixes.
5063
5064 2013-07-01  Tom Tromey  <tromey@redhat.com>
5065
5066         * dwarf2read.c (dwarf2_get_dwz_file): Return NULL if
5067         .gnu_debugaltlink not found.  Use bfd_get_alt_debug_link_info.
5068         (dwarf2_read_index, create_all_comp_units): Update.
5069
5070 2013-07-01  Tom Tromey  <tromey@redhat.com>
5071
5072         * configure.ac (build_warnings): Add -Wold-style-definition.
5073         * configure: Rebuild.
5074         * machoread.c (_initialize_machoread): Use "(void)".
5075         * macrocmd.c (macro_inform_no_debuginfo): Fix formatting;
5076         use "(void)".
5077
5078 2013-07-01  Tom Tromey  <tromey@redhat.com>
5079
5080         * configure.ac (build_warnings): Add -Wold-style-declaration.
5081         * configure: Rebuild.
5082         * dsrec.c (make_srec): Use "static const", not "const static".
5083         * h8300-tdep.c (h8300_breakpoint_from_pc): Use "static const",
5084         not "const static".
5085         * mi/mi-parse.c (mi_no_values, mi_simple_values, mi_all_values):
5086         Use "static const", not "const static".
5087         * mn10300-tdep.c (mn10300_breakpoint_from_pc): Use "static const",
5088         not "const static".
5089         * moxie-tdep.c (moxie_breakpoint_from_pc): Use "static const",
5090         not "const static".
5091         * rs6000-tdep.c (rs6000_breakpoint_from_pc): Use "static const",
5092         not "const static".
5093         * v850-tdep.c (v850_breakpoint_from_pc): Use "static const",
5094         not "const static".
5095         (v850_dbtrap_breakpoint_from_pc): Likewise.
5096         * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Use "static const",
5097         not "const static".
5098
5099 2013-07-01  Tom Tromey  <tromey@redhat.com>
5100
5101         * configure.ac (build_warnings): Add -Wmissing-parameter-type.
5102         * configure: Rebuild.
5103
5104 2013-07-01  Pedro Alves  <palves@redhat.com>
5105
5106         * defs.h: Include "pathmax.h".
5107         * utils.c: Don't include sys/param.h.
5108         (gdb_realpath): Remove code that checks for MAXPATHLEN.
5109         * solib-ia64-hpux.c (ia64_hpux_handle_load_event): Use PATH_MAX
5110         instead of MAXPATHLEN.
5111         * solib-sunos.c: Don't include sys/param.h.
5112         * xcoffread.c: Don't include sys/param.h.
5113         * bsd-kvm.c: Don't include sys/param.h.
5114         * darwin-nat.c: Don't include sys/param.h.
5115         (darwin_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
5116         * darwin-nat-info.c: Don't include sys/param.h.
5117         * fbsd-nat.c (fbsd_pid_to_exec_file): Use PATH_MAX instead of
5118         MAXPATHLEN.
5119         * i386obsd-nat.c: Don't include sys/param.h.
5120         * inf-child.c: Don't include sys/param.h.
5121         (inf_child_fileio_readlink): Use PATH_MAX instead of MAXPATHLEN.
5122         * linux-fork.c: Don't include sys/param.h.
5123         (fork_save_infrun_state): Use PATH_MAX instead of MAXPATHLEN.
5124         * linux-nat.c: Don't include sys/param.h.
5125         (linux_child_pid_to_exec_file, linux_proc_pending_signals)
5126         (linux_proc_pending_signals): Use PATH_MAX instead of MAXPATHLEN.
5127         * m68klinux-nat.c: Don't include sys/param.h.
5128         * nbsd-nat.c: Don't include sys/param.h.
5129         (nbsd_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
5130         * ppc-linux-nat.c: Don't include sys/param.h.
5131         * rs6000-nat.c: Don't include sys/param.h.
5132         * spu-linux-nat.c. Don't include sys/param.h.
5133         * windows-nat.c: Don't include sys/param.h.
5134         * xtensa-linux-nat.c: Don't include sys/param.h.
5135         * config/i386/nm-fbsd.h: Don't include sys/param.h.
5136
5137 2013-07-01  Pedro Alves  <palves@redhat.com>
5138
5139         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add pathmax.
5140         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/pathmax.m4.
5141         * gnulib/aclocal.m4: Regenerate.
5142         * gnulib/config.in: Regenerate.
5143         * gnulib/configure: Regenerate.
5144         * gnulib/import/pathmax.h: New file.
5145         * gnulib/import/Makefile.am: Regenerate.
5146         * gnulib/import/Makefile.in: Regenerate.
5147         * gnulib/import/m4/gnulib-cache.m4: Regenerate.
5148         * gnulib/import/m4/gnulib-comp.m4: Regenerate.
5149         * gnulib/import/m4/pathmax.m4: New file.
5150
5151 2013-07-01  Pedro Alves  <palves@redhat.com>
5152
5153         * configure.ac (GDBINIT): Define, depending on host.
5154         * go32-nat.c (init_go32_ops): Don't override gdbinit here.
5155         * top.c (PATH_MAX): Delete fallback definition.
5156         (GDBINIT_FILENAME): Delete.
5157         (gdbinit): Reimplement as const char array set to the GDBINIT
5158         string constant.
5159         * top.h (gdbinit): Make const.
5160         * configure, config.in: Regenerate.
5161
5162 2013-07-01  Pedro Alves  <palves@redhat.com>
5163
5164         * cli/cli-cmds.c (source_script): Make 'file' parameter const.
5165         * cli/cli-cmds.h (source_script): Likewise.
5166         * exceptions.c (catch_command_errors_const): New function.
5167         * exceptions.h (catch_command_errors_const): Declare.
5168         * main.c (get_init_files): Make parameters const, and adjust.
5169         (captured_main): Make 'system_gdbinit', 'home_gdbinit' and
5170         'local_gdbinit' locals const.  Adjust to use
5171         catch_command_errors_const.
5172         (print_gdb_help): Make 'system_gdbinit', 'home_gdbinit' and
5173         'local_gdbinit' locals const.
5174
5175 2013-07-01  Pedro Alves  <palves@redhat.com>
5176
5177         * defs.h: Don't check HAVE_UNISTD_H before including <unistd.h>.
5178         (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO): Delete.
5179         * tracepoint.c: Don't check HAVE_UNISTD_H before including
5180         <unistd.h>.
5181
5182 2013-07-01  Pedro Alves  <palves@redhat.com>
5183
5184         Import the "unistd" gnulib module.
5185         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add "unistd".
5186         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/off_t.m4,
5187         import/m4/ssize_t.m4, import/m4/sys_types_h.m4 and
5188         import/m4/unistd_h.m4.
5189         * gnulib/aclocal.m4: Renenerate.
5190         * gnulib/config.in: Renenerate.
5191         * gnulib/configure: Renenerate.
5192         * gnulib/import/Makefile.am: Renenerate.
5193         * gnulib/import/Makefile.in: Renenerate.
5194         * gnulib/import/m4/gnulib-cache.m4: Renenerate.
5195         * gnulib/import/m4/gnulib-comp.m4: Renenerate.
5196         * gnulib/import/m4/off_t.m4: New file.
5197         * gnulib/import/m4/ssize_t.m4: New file.
5198         * gnulib/import/m4/sys_types_h.m4: New file.
5199         * gnulib/import/m4/unistd_h.m4: New file.
5200         * gnulib/import/sys_types.in.h: New file.
5201         * gnulib/import/unistd.c: New file.
5202         * gnulib/import/unistd.in.h: New file.
5203
5204 2013-07-01  Pedro Alves  <palves@redhat.com>
5205
5206         * utils.c <pathconf/_PC_PATH_MAX use>: Check if _PC_PATH_MAX is
5207         defined instead of checking HAVE_UNISTD_H.
5208
5209 2013-07-01  Pedro Alves  <palves@redhat.com>
5210
5211         Reimport gnulib from scratch.
5212         * gnulib/Makefile.in (aclocal_m4_deps): Remove reference to
5213         import/m4/onceonly.m4.
5214         * gnulib/aclocal.m4: Renegerate.
5215         * gnulib/config.in: Renegerate.
5216         * gnulib/configure: Renegerate.
5217         * gnulib/import/Makefile.in: Renegerate.
5218         * gnulib/import/extra/update-copyright: Renegerate.
5219         * gnulib/import/m4/onceonly.m4: Delete.
5220
5221 2013-07-01  Pedro Alves  <palves@redhat.com>
5222
5223         * tui/tui-regs.c (pagination_enabled): Delete declaration.
5224
5225 2013-06-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
5226
5227         Code cleanup.
5228         * remote.c (async_remote_interrupt_twice): Make it static.
5229         * remote.h (async_remote_interrupt_twice): Remove the declaration.
5230
5231 2013-06-29  Sergio Durigan Junior  <sergiodj@redhat.com>
5232
5233         * ia64-linux-tdep.c: Include <ctype.h>.
5234         (ia64_linux_stap_is_single_operand): New function.
5235         (ia64_linux_init_abi): Initialize SystemTap related attributes.
5236
5237 2013-06-28  Tom Tromey  <tromey@redhat.com>
5238
5239         * Makefile.in (version.c): Use version.in, not
5240         common/version.in.
5241         * common/create-version.sh: Likewise.
5242         * common/version.in: Move...
5243         * version.in: ...here.
5244
5245 2013-06-28  Pedro Alves  <palves@redhat.com>
5246
5247         * infrun.c (set_observer_mode): Don't declare pagination_enabled
5248         here.
5249         * utils.h (pagination_enabled): Declare.
5250
5251 2013-06-28  Pedro Alves  <palves@redhat.com>
5252
5253         * infrun.c (non_stop, non_stop_1, set_non_stop, show_non_stop):
5254         Move higher up in file.
5255
5256 2013-06-28  Tom Tromey  <tromey@redhat.com>
5257
5258         * tracepoint.c (deprecated_readline_begin_hook)
5259         (deprecated_readline_hook, deprecated_readline_end_hook): Don't
5260         declare.
5261
5262 2013-06-28  Pedro Alves  <palves@redhat.com>
5263
5264         PR tui/14880
5265         * tui/tui-regs.c (tui_get_register): Fetch value contents before
5266         checking if they're available.
5267         * value.c (value_available_contents_eq): Change comment.
5268         * value.h (value_available_contents_eq): Expand comment.
5269
5270 2013-06-27  Tom Tromey  <tromey@redhat.com>
5271
5272         * target.c (find_run_target): Remove.
5273         * target.h (find_run_target): Remove.
5274
5275 2013-06-27  Tom Tromey  <tromey@redhat.com>
5276
5277         * corelow.c (core_gdbarch): Now static.
5278
5279 2013-06-27  Tom Tromey  <tromey@redhat.com>
5280
5281         * target.c (target_struct_index): Remove.
5282
5283 2013-06-27  Pedro Alves  <palves@redhat.com>
5284
5285         * infrun.c: Remove comment describing the 'stepping over runtime
5286         loader dynamic symbol resolution code' mechanism; moved to
5287         gdbint.texinfo.
5288
5289 2013-06-27  Pedro Alves  <palves@redhat.com>
5290
5291         * exceptions.c (catch_command_errors): Remove spurious space.
5292         * exceptions.h (catch_command_errors): Second parameter is "arg",
5293         not "command".
5294
5295 2013-06-27  Yao Qi  <yao@codesourcery.com>
5296
5297         * common/create-version.sh: Update comments.  Handle the case
5298         that TARGET_ALIAS is empty.
5299
5300 2013-06-26  Pedro Alves  <palves@redhat.com>
5301
5302         * infrun.c (SOLIB_IN_DYNAMIC_LINKER): Delete macro and describing
5303         comment.
5304
5305 2013-06-26  Pedro Alves  <palves@redhat.com>
5306
5307         * infrun.c: Update comments on stepping over runtime loader
5308         dynamic symbol resolution code.
5309
5310 2013-06-26  Sergio Durigan Junior  <sergiodj@redhat.com>
5311
5312         * ax-gdb.h (union exp_element): Forward declare.
5313         * parser-defs.h: Include expression.h.
5314
5315 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
5316
5317         * mips-tdep.c (fetch_mips_16): Use unmake_compact_addr.
5318
5319 2013-06-26  Dmitry Kozlov <ddk@codesourcery.com>
5320
5321         * tracepoint.c (trace_save): Extend tsave to save starttime, stoptime.
5322
5323 2013-06-26  Dmitry Kozlov <ddk@codesourcery.com>
5324
5325         Fix trace-status to output proper start-time and stop-time.
5326         * tracepoint.c (trace_status_command): Fix type of printf arg to
5327         prevent improper type conversion.
5328         (trace_status_mi): Likewise.
5329
5330 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
5331
5332         * mips-tdep.c (mips_next_pc): Fix a typo.
5333
5334 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
5335
5336         * mips-tdep.c (micromips_scan_prologue): Fix a typo.
5337
5338 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
5339             Yao Qi  <yao@codesourcery.com>
5340
5341         * mi/mi-cmds.c (mi_cmds): Register -trace-frame-collected.
5342         * mi/mi-cmds.h (mi_cmd_trace_frame_collected): Declare.
5343         * mi/mi-main.c (print_variable_or_computed): New function.
5344         (mi_cmd_trace_frame_collected): New function.
5345         * tracepoint.c (find_trace_state_variable_by_number): New.
5346         (struct traceframe_info): Move to tracepoint.h
5347         (struct collection_list): Likewise.
5348         (do_collect_symbol): Include locals and arguments in the
5349         collected variables list.
5350         (clear_collection_list): Clear wholly collected variables list
5351         and computed variables list.
5352         (append_exp): New function.
5353         (encode_actions_1): Include variables in the wholly
5354         collected variables list.  Include memory ranges and
5355         full-fledged expressions in the computed expressions list.
5356         (encode_actions): Move some code to ...
5357         Return the cleanup chain.
5358         (encode_actions_rsp): ... here.  New function.
5359         (get_traceframe_location, get_traceframe_info): Remove static.
5360         * tracepoint.h (struct memrange): Moved from tracepoint.c.
5361         (struct collection_list): Moved from tracepoint.c.  Add two
5362         new fields 'wholly_collected' and 'computed'.
5363         (find_trace_state_variable_by_number): Declare.
5364         (encode_actions): Adjust declaration.
5365         (encode_actions_rsp): Declare.
5366         (get_traceframe_info, get_traceframe_location): Declare.
5367
5368         * NEWS: Mention new MI command -trace-frame-collected.
5369
5370 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
5371             Yao Qi  <yao@codesourcery.com>
5372
5373         * ctf.c (ctf_traceframe_info): Push trace state variables
5374         present in the trace data into the traceframe info object.
5375         * breakpoint.c (DEF_VEC_I): Remove.
5376         * common/filestuff.c (DEF_VEC_I): Likewise.
5377         * dwarf2loc.c (DEF_VEC_I): Likewise.
5378         * mi/mi-main.c (DEF_VEC_I): Likewise.
5379         * common/gdb_vecs.h (DEF_VEC_I): Define vector for int.
5380         * features/traceframe-info.dtd: Add tvar element and its
5381         attributes.
5382         * tracepoint.c (free_traceframe_info): Free vector 'tvars'.
5383         (build_traceframe_info): Push trace state variables present in
5384         the trace data into the traceframe info object.
5385         (traceframe_info_start_tvar): New function.
5386         (tvar_attributes): New.
5387         (traceframe_info_children): Add "tvar" element.
5388         * tracepoint.h (struct traceframe_info) <tvars>: New field.
5389
5390         * NEWS: Mention the change in GDB and GDBserver.
5391
5392 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
5393             Yao Qi  <yao@codesourcery.com>
5394
5395         * tracepoint.c (trace_dump_command): Move code to ...
5396         (get_traceframe_location): ... here.  New.
5397
5398 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
5399             Yao Qi  <yao@codesourcery.com>
5400
5401         * tracepoint.c (trace_dump_command): GDB emits an error
5402          instead of a warning when a traceframe is not selected.
5403
5404 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
5405             Yao Qi  <yao@codesourcery.com>
5406
5407         * tracepoint.c (tracepoint_list, stepping_list): Remove.
5408         (clear_collection_list): Free fields 'aexpre_list' and 'list'
5409         in collection_list.
5410         (do_clear_collection_list, init_collection_list): New.
5411         (encode_actions): Add local variables 'tracepoint_list' and
5412         'stepping_list'.  Call init_collection_list and make cleanup
5413         which calls do_clear_collection_list.  Don't call
5414         clear_collection_list.
5415         (_initialize_tracepoint): Delete references to
5416         'tracepoint_list' and 'stepping_list'.
5417
5418 2013-06-25  Tom Tromey  <tromey@redhat.com>
5419
5420         * common/create-version.sh (date): Use "$", not "$$" in sed
5421         expression.
5422
5423 2013-06-25  Kevin Buettner  <kevinb@redhat.com>
5424
5425         * NEWS (New targets): Add entry for TI MSP430.
5426
5427 2013-06-25  Yao Qi  <yao@codesourcery.com>
5428
5429         * remote.c (remote_start_remote): Move code to upload tsv
5430         earlier.
5431
5432 2013-06-25  Yao Qi  <yao@codesourcery.com>
5433             Hui Zhu  <hui@codesourcery.com>
5434             Pedro Alves  <palves@redhat.com>
5435
5436         PR breakpoints/15075
5437         PR breakpoints/15434
5438         * breakpoint.c (bpstat_stop_status): Call
5439         b->ops->after_condition_true.
5440         (update_dprintf_command_list): Don't append "continue" command
5441         to the command list of dprintf breakpoint.
5442         (base_breakpoint_after_condition_true): New function.
5443         (base_breakpoint_ops): Add base_breakpoint_after_condition_true.
5444         (dprintf_after_condition_true): New function.
5445         (initialize_breakpoint_ops): Set dprintf_after_condition_true.
5446         * breakpoint.h (breakpoint_ops): Add after_condition_true.
5447
5448 2013-06-24  Kevin Buettner  <kevinb@redhat.com>
5449
5450         * Makefile.in (ALL_TARGET_OBS): Add msp430-tdep.o.
5451         (ALLDEPFILES): Add msp430-tdep.c.
5452         * configure.tgt (msp430*-*-elf): New target.
5453         * msp430-tdep.c: New file.
5454
5455 2013-06-24  Maciej W. Rozycki  <macro@codesourcery.com>
5456
5457         * mips-tdep.c (mips_elf_make_msymbol_special): Handle MIPS16 and
5458         microMIPS synthetic symbols.
5459
5460 2013-06-24  Maciej W. Rozycki  <macro@codesourcery.com>
5461
5462         * objfiles.h (pc_in_section): New prototype.
5463         (in_plt_section): Remove name argument, replace prototype with
5464         static inline function.
5465         * mips-tdep.h: Include "objfiles.h".
5466         (in_mips_stubs_section): New function.
5467         * hppa-tdep.h (gdbarch_tdep): Remove name argument of
5468         in_solib_call_trampoline member.
5469         (hppa_in_solib_call_trampoline): Remove name argument.
5470         * objfiles.c (pc_in_section): New function.
5471         (in_plt_section): Remove function.
5472         * mips-linux-tdep.c: Include "objfiles.h".
5473         (mips_linux_in_dynsym_stub): Call in_mips_stubs_section.  Remove
5474         name argument.  Return 1 rather than the low 16-bit halfword of
5475         any instruction examined.
5476         (mips_linux_in_dynsym_resolve_code): Update
5477         mips_linux_in_dynsym_stub call accordingly.
5478         * mips-tdep.c (mips_stub_frame_sniffer): Use in_mips_stubs_section
5479         rather than an equivalent hand-coded sequence.
5480         * hppa-hpux-tdep.c (in_opd_section): Remove function.
5481         (hppa32_hpux_in_solib_call_trampoline): Remove name argument.
5482         (hppa64_hpux_in_solib_call_trampoline): Likewise.
5483         (hppa64_hpux_find_global_pointer): Use pc_in_section rather than
5484         in_opd_section.
5485         * hppa-tdep.c (hppa_stub_unwind_sniffer): Remove name argument
5486         on call to tdep->in_solib_call_trampoline.
5487         (hppa_in_solib_call_trampoline): Remove name argument, update
5488         according to in_plt_section change.
5489         (hppa_skip_trampoline_code): Update according to in_plt_section
5490         change.
5491         * aarch64-tdep.c (aarch64_stub_unwind_sniffer): Likewise.
5492         * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code):
5493         Likewise.
5494         * arm-tdep.c (arm_stub_unwind_sniffer): Likewise.
5495         * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
5496         * hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
5497         * nios2-tdep.c (nios2_stub_frame_sniffer): Likewise.
5498         * nto-tdep.c (nto_relocate_section_addresses): Likewise.
5499         * s390-tdep.c (s390_stub_frame_sniffer): Likewise.
5500         * sh-tdep.c (sh_stub_unwind_sniffer): Likewise.
5501         * solib-dsbt.c (dsbt_in_dynsym_resolve_code): Likewise.
5502         * solib-frv.c (frv_in_dynsym_resolve_code): Likewise.
5503         * solib-svr4.c (svr4_in_dynsym_resolve_code): Likewise.
5504         * solib-target.c (solib_target_in_dynsym_resolve_code): Likewise.
5505         * sparc-tdep.c (sparc_analyze_prologue): Likewise.
5506         * tic6x-tdep.c (tic6x_stub_unwind_sniffer): Likewise.
5507
5508 2013-06-24  Joel Brobecker  <brobecker@adacore.com>
5509
5510         * common/create-version.sh: Fix expansion of $host_alias
5511         and $target_alias in generation of HOST_NAME and TARGET_NAME
5512         (resp.).
5513
5514 2013-06-24  Tom Tromey  <tromey@redhat.com>
5515
5516         * common/create-version.sh: New file.
5517         * Makefile.in (version.c): Use bfd/version.h, common/version.in,
5518         create-version.sh.
5519         (HFILES_NO_SRCDIR): Use common/version.h.
5520         * version.in: Move to ...
5521         * common/version.in: ... here.  Replace date with "DATE".
5522         * version.h: Move to ...
5523         * common/version.h: ... here.
5524
5525 2013-06-21  Joel Brobecker  <brobecker@adacore.com>
5526
5527         * gdb/gnulib/Makefile.in: Update date in copyright header.
5528         * gdb/gnulib/configure.ac: Ditto.
5529         * gdb/gnulib/update-gnulib.sh: Ditto.
5530
5531 2013-06-21  Joel Brobecker  <brobecker@adacore.com>
5532
5533         * copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by
5534         "gdb/gnulib/import".
5535
5536 2013-06-21  Will Newton  <will.newton@linaro.org>
5537
5538         * doublest.c (ldfrexp): Remove function.
5539         (convert_doublest_to_floatformat): Call frexpl instead of
5540         ldfrexp.
5541
5542 2013-06-21  Will Newton  <will.newton@linaro.org>
5543
5544         * gnulib/update-gnulib.sh(IMPORTED_GNULIB_MODULES): Add frexpl.
5545         * gnulib/aclocal.m4: Regenerate.
5546         * gnulib/config.in: Regenerate.
5547         * gnulib/configure: Regenerate.
5548         * gnulib/import/Makefile.am: Update.
5549         * gnulib/import/Makefile.in: Update.
5550         * gnulib/import/m4/gnulib-cache.m4: Update.
5551         * gnulib/import/m4/gnulib-comp.m4: Update.
5552         * gnulib/import/float+.h: Import.
5553         * gnulib/import/float.c: Import.
5554         * gnulib/import/float.in.h: Import.
5555         * gnulib/import/fpucw.h: Import.
5556         * gnulib/import/frexp.c: Import.
5557         * gnulib/import/frexpl.c: Import.
5558         * gnulib/import/isnan.c: Import.
5559         * gnulib/import/isnand-nolibm.h: Import.
5560         * gnulib/import/isnand.c: Import.
5561         * gnulib/import/isnanl-nolibm.h: Import.
5562         * gnulib/import/isnanl.c: Import.
5563         * gnulib/import/itold.c: Import.
5564         * gnulib/import/m4/exponentd.m4: Import.
5565         * gnulib/import/m4/exponentl.m4: Import.
5566         * gnulib/import/m4/float_h.m4: Import.
5567         * gnulib/import/m4/fpieee.m4: Import.
5568         * gnulib/import/m4/frexp.m4: Import.
5569         * gnulib/import/m4/frexpl.m4: Import.
5570         * gnulib/import/m4/isnand.m4: Import.
5571         * gnulib/import/m4/isnanl.m4: Import.
5572         * gnulib/import/m4/math_h.m4: Import.
5573         * gnulib/import/math.c: Import.
5574         * gnulib/import/math.in.h: Import.
5575
5576 2013-06-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
5577
5578         * common/linux-btrace.c (cpu_supports_btrace): Remove variable vendor,
5579         replace strcmp with signature_INTEL_ebx, signature_INTEL_ecx and
5580         signature_INTEL_edx comparisons.
5581
5582 2013-06-20  Doug Evans  <dje@google.com>
5583
5584         symtab/15652
5585         * dwarf2read.c (try_open_dwop_file): New arg search_cwd.
5586         All callers updated.
5587         (open_dwp_file): If we can't find the dwp file, search the basename
5588         in debug-file-directory.
5589
5590         * dwarf2read.c (struct dwp_file): Fix comment.
5591         (open_and_init_dwp_file): Set dwp_file->name to bfd's file name.
5592
5593         * source.c (openp): Document OPF_TRY_CWD_FIRST+OPF_SEARCH_IN_PATH
5594         better.
5595
5596 2013-06-20  Yao Qi  <yao@codesourcery.com>
5597
5598         * breakpoint.c (create_breakpoint): Fix code indentation.
5599
5600 2013-06-20  Yao Qi  <yao@codesourcery.com>
5601
5602         * breakpoint.c (create_breakpoints_sal_default): Remove
5603         parameter 'lsal'.  Update declaration.
5604         (bkpt_create_breakpoints_sal): Caller update.
5605         (tracepoint_create_breakpoints_sal): Likewise.
5606
5607 2013-06-20  Pedro Alves  <pedro@codesourcery.com>
5608             Yao Qi  <yao@codesourcery.com>
5609
5610         * NEWS: Mention the new option '--skip-unavailable' of command
5611         -data-list-register-values.
5612         * mi/mi-main.c (mi_cmd_data_list_register_values): Accept the
5613         --skip-unavailable option.  Adjust to use output_register.
5614         (output_register): Add new 'skip_unavailable' parameter.
5615         Handle it.
5616
5617 2013-06-19  Mike Frysinger  <vapier@gentoo.org>
5618
5619         * Makefile.in (HFILES_NO_SRCDIR): Add common/i386-cpuid.h and
5620         common/i386-gcc-cpuid.h.
5621         * common/i386-cpuid.h: New wrapper header around i386-gcc-cpuid.h.
5622         * common/i386-gcc-cpuid.h: Rename from testsuite/gdb.arch/i386-cpuid.h.
5623         Copy the latest version from upstream gcc.
5624         * common/linux-btrace.c: Include i386-cpuid.h.
5625         (intel_supports_btrace): Delete x86 ifdefs and replace inline asm with
5626         call to i386_cpuid.
5627         (cpu_supports_btrace): Likewise.
5628         * go32-nat.c: Include i386-cpuid.h.
5629         (go32_sysinfo): Add (disabled) calls to i386_cpuid with comments.
5630
5631 2013-06-19  Doug Evans  <dje@google.com>
5632
5633         * symfile.c (symfile_bfd_open): Delete unnecessary declaration.
5634         (get_section_index): Ditto.
5635
5636 2013-06-19  Tom Tromey  <tromey@redhat.com>
5637
5638         * breakpoint.c (_initialize_breakpoint): Remove trailing \n from
5639         "dprintf" help.
5640
5641 2013-06-18  Doug Evans  <dje@google.com>
5642
5643         * dwarf2read.c (dw2_symtab_iter_next): Check value of cu_index
5644         before using it.
5645         (dw2_expand_symtabs_matching): Fix symbol kind validity check.
5646         Move test of cu_index closer to use.  Print complaint if cu_index
5647         is bad.
5648
5649 2013-06-18  Joel Brobecker  <brobecker@adacore.com>
5650
5651         * machoread.c (oso_vector): Delete this global.
5652         (macho_register_oso): Add new parameter "oso_vector_ptr".
5653         Use it instead of the "oso_vector" global.
5654         (macho_symtab_read, macho_symfile_read_all_oso): Likewise.
5655         (macho_symfile_read): Use a local oso_vector, to be free'ed
5656         at the end of this function, in place of the old "oso_vector"
5657         global.  Update various function calls accordingly.  Use one
5658         single cleanup chain for the entire function.
5659
5660 2013-06-18  Joel Brobecker  <brobecker@adacore.com>
5661
5662         * dwarf2read.c (dwarf2_per_objfile_free): Replace uses of
5663         DWARF2_PER_OBJFILE by uses of DATA instead.
5664
5665 2013-06-18  Tom Tromey  <tromey@redhat.com>
5666
5667         * break-catch-sig.c (signal_catchpoint_explains_signal): Add 'sig'
5668         argument.
5669         * breakpoint.c (bpstat_explains_signal): Add 'sig' argument.
5670         Special case signals other than GDB_SIGNAL_TRAP.
5671         (explains_signal_watchpoint): New function.
5672         (base_breakpoint_explains_signal): Add 'sig' argument.
5673         (initialize_breakpoint_ops): Set 'explains_signal' method for
5674         watchpoints.
5675         * breakpoint.h (struct breakpoint_ops) <explains_signal>: Add
5676         signal argument.
5677         (bpstat_explains_signal): Likewise.
5678         * infrun.c (handle_syscall_event, handle_inferior_event): Update.
5679
5680 2013-06-18  Tom Tromey  <tromey@redhat.com>
5681
5682         * python/py-inferior.c (gdbpy_selected_inferior): Don't incref.
5683
5684 2013-06-18  Tom Tromey  <tromey@redhat.com>
5685
5686         * python/python.c (finish_python_initialization): Decref
5687         'pythondir' on failure path as well.
5688
5689 2013-06-18  Tom Tromey  <tromey@redhat.com>
5690
5691         PR symtab/15391:
5692         * dwarf2loc.c (read_pieced_value): Truncate this_size_bits
5693         after taking bits_to_skip into account.  Sign extend byte_offset.
5694         * utils.h (gdb_sign_extend): Declare.
5695         * utils.c (gdb_sign_extend): New function.
5696
5697 2013-06-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
5698
5699         * dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.
5700
5701 2013-06-17  Pierre Muller  <muller@sourceware.org>
5702
5703         * corelow.c (core_open): Print GDB signal name instead of target
5704         signal number.
5705
5706 2013-06-17  Mike Frysinger  <vapier@gentoo.org>
5707
5708         * .gitignore: Add /gcore.
5709
5710 2013-06-13  Doug Evans  <dje@google.com>
5711
5712         * dwarf2read.c (try_open_dwop_file): Work around behaviour of
5713         OPF_TRY_CWD_FIRST to not search path if the file contains a '/'.
5714
5715 2013-06-12  Phil Muldoon  <pmuldoon@redhat.com>
5716
5717         * stack.c (backtrace_command_1): Fix indentation.
5718
5719 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
5720
5721         * window-nat.c (thread_rec): Add missing empty line after
5722         local variable declaration.
5723
5724 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
5725
5726         * windows-nat.c (thread_rec): Revert format used to print
5727         error code returned by SuspendThread from %d back to %u.
5728
5729 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
5730
5731         * windows-nat.c (windows_continue): Add "0x" prefix for thread
5732         ID in debug trace.
5733         (get_windows_debug_event): Likewise, for all debug traces.
5734
5735 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
5736
5737         * window-nat.c (thread_rec): Add thread ID in SuspendThread
5738         warning message.
5739
5740 2013-06-08  Pedro Alves  <pedro@codesourcery.com>
5741             Yao Qi  <yao@codesourcery.com>
5742
5743         * mi/mi-main.c (get_register): Remove declaration.
5744         (output_register): Declare.
5745         (mi_cmd_data_list_register_values): Remove local variable
5746         'tuple_cleanup'.  Move some code into output_register.
5747         (get_register): Renamed to ...
5748         (output_register): ... this.  Output the register's
5749         "number" ui_out tuple here.
5750
5751 2013-06-07  Pedro Alves  <palves@redhat.com>
5752
5753         * darwin-nat.c: Fix formating in copyright header.
5754         * darwin-nat.h: Likewise.
5755         * gnu-nat.c: Likewise.
5756         * machoread.c: Likewise.
5757
5758 2013-06-07  Pedro Alves  <palves@redhat.com>
5759
5760         PR server/14823
5761         * regformats/regdat.sh: Output #include tdesc.h.  Make globals
5762         static.  Output a global target description pointer.
5763         (init_registers_${name}): Adjust to initialize a
5764         target description structure.
5765
5766 2013-06-07  Will Newton  <will.newton@linaro.org>
5767
5768         * printcmd.c (build_address_symbolic): Call
5769         gdbarch_addr_bits_remove for text minimal symbols.
5770
5771 2013-06-07  Will Newton  <will.newton@linaro.org>
5772
5773         * MAINTAINERS: Add myself to Write After Approval.
5774
5775 2013-06-07  Yao Qi  <yao@codesourcery.com>
5776
5777         * tracepoint.c (start_tracing): Move code to ...
5778         (trace_reset_local_state): ... here.  New.
5779         (disconnect_tracing): Don't call set_current_traceframe,
5780         set_tracepoint_num, and set_traceframe_context. Call
5781         trace_reset_local_state instead.
5782         (tfile_close): Call trace_reset_local_state.
5783         * ctf.c (ctf_close): Likewise.
5784         * remote.c (remote_close): Likewise.
5785         * tracepoint.h (trace_reset_local_state): Declare.
5786
5787 2013-06-06  Doug Evans  <dje@google.com>
5788
5789         * dwarf2read.c: Whitespace fixes for DWP file format documentation,
5790         and fix header docs.
5791
5792 2013-06-05  Doug Evans  <dje@google.com>
5793             Keith Seitz  <keiths@redhat.com>
5794
5795         PR 15519
5796         * cp-namespace.c (find_symbol_in_baseclass): Call
5797         cp_lookup_symbol_in_namespace instead of cp_lookup_symbol_namespace.
5798         Check result of call to lookup_symbol_static.
5799         Call lookup_static_symbol_aux unconditionally.
5800         Call check_typedef on base types before accessing them.
5801         (cp_lookup_nested_symbol): Fix comment.
5802
5803 2013-06-05  Luis Machado  <lgustavo@codesourcery.com>
5804
5805         * gnu-v3-abi.c (gnuv3_skip_trampoline): Handle thunk
5806         minimal symbols pointing to function descriptors.
5807
5808 2013-06-05  Tom Tromey  <tromey@redhat.com>
5809
5810         * python/py-utils.c (gdb_pymodule_addobject): Cast away const.
5811
5812 2013-06-04  Sergio Durigan Junior  <sergiodj@redhat.com>
5813             Pedro Alves  <palves@redhat.com>
5814
5815         * remote.c (remote_wait_as): Restore signal handler before returning
5816         when GDB gets a notification.
5817
5818 2013-06-04  Gary Benson  <gbenson@redhat.com>
5819
5820         PR 2328
5821         * breakpoint.h (handle_solib_event): Moved function declaration
5822         to solib.h.
5823         * breakpoint.c (handle_solib_event): Moved function to solib.c.
5824         (bpstat_stop_status): Pass new argument to handle_solib_event.
5825         * solib.h (update_solib_breakpoints): New function declaration.
5826         (handle_solib_event): Moved function declaration from
5827         breakpoint.h.
5828         * solib.c (update_solib_breakpoints): New function.
5829         (handle_solib_event): Moved function from breakpoint.c.
5830         Updated to call solib_ops->handle_event if not NULL.
5831         * solist.h (target_so_ops): New fields "update_breakpoints" and
5832         "handle_event".
5833         * infrun.c (set_stop_on_solib_events): New function.
5834         (_initialize_infrun): Use the above for "set
5835         stop-on-solib-events".
5836         (handle_inferior_event): Pass new argument to handle_solib_event.
5837         * solib-svr4.c (probe.h): New include.
5838         (svr4_free_library_list): New forward declaration.
5839         (probe_action): New enum.
5840         (probe_info): New struct.
5841         (probe_info): New static variable.
5842         (NUM_PROBES): New definition.
5843         (svr4_info): New fields "using_xfer", "probes_table" and
5844         "solib_list".
5845         (free_probes_table): New function.
5846         (free_solib_list): New function.
5847         (svr4_pspace_data_cleanup): Free probes table and solib list.
5848         (svr4_copy_library_list): New function.
5849         (svr4_current_sos_via_xfer_libraries): New parameter "annex".
5850         (svr4_read_so_list): New parameter "prev_lm".
5851         (svr4_current_sos_direct): Renamed from "svr4_current_sos".
5852         (svr4_current_sos): New function.
5853         (probe_and_action): New struct.
5854         (hash_probe_and_action): New function.
5855         (equal_probe_and_action): Likewise.
5856         (register_solib_event_probe): Likewise.
5857         (solib_event_probe_at): Likewise.
5858         (solib_event_probe_action): Likewise.
5859         (solist_update_full): Likewise.
5860         (solist_update_incremental): Likewise.
5861         (disable_probes_interface_cleanup): Likewise.
5862         (svr4_handle_solib_event): Likewise.
5863         (svr4_update_solib_event_breakpoint): Likewise.
5864         (svr4_update_solib_event_breakpoints): Likewise.
5865         (svr4_create_solib_event_breakpoints): Likewise.
5866         (enable_break): Free probes table before creating breakpoints.
5867         Use svr4_create_solib_event_breakpoints to create breakpoints.
5868         (svr4_solib_create_inferior_hook): Free the solib list.
5869         (_initialize_svr4_solib): Initialise
5870         svr4_so_ops.handle_solib_event and svr4_so_ops.update_breakpoints.
5871
5872 2013-06-04  Gary Benson  <gbenson@redhat.com>
5873
5874         * target.h (target_ops): New field
5875         "to_augmented_libraries_svr4_read".
5876         (target_augmented_libraries_svr4_read): New macro.
5877         * target.c (update_current_target): Handle
5878         to_augmented_libraries_svr4_read.
5879         * remote.c (remote_state): New field
5880         "augmented_libraries_svr4_read".
5881         (remote_augmented_libraries_svr4_read_feature): New function.
5882         (remote_protocol_features): Add entry for
5883         "augmented-libraries-svr4-read".
5884         (remote_augmented_libraries_svr4_read): New function.
5885         (init_remote_ops): Initialize
5886         remote_ops.to_augmented_libraries_svr4_read.
5887
5888 2013-06-04  Gary Benson  <gbenson@redhat.com>
5889
5890         * NEWS: Update.
5891
5892 2013-06-04  Gary Benson  <gbenson@redhat.com>
5893
5894         * objfiles.h (inhibit_section_map_updates): New function
5895         declaration.
5896         (resume_section_map_updates): Likewise.
5897         (resume_section_map_updates_cleanup): Likewise.
5898         * objfiles.c (objfile_pspace_info): Removed field
5899         "objfiles_changed_p".  New fields "new_objfiles_available",
5900         "section_map_dirty" and "inhibit_updates".
5901         (allocate_objfile): Set new_objfiles_available.
5902         (free_objfile): Set section_map_dirty.
5903         (objfile_relocate1): Likewise.
5904         (in_plt_section): Likewise.
5905         (find_pc_section): Update the conditions under which the
5906         section map will be updated.
5907         (inhibit_section_map_updates): New function.
5908         (resume_section_map_updates): Likewise.
5909         (resume_section_map_updates_cleanup): Likewise.
5910
5911 2013-06-04  Gary Benson  <gbenson@redhat.com>
5912
5913         * probe.h (get_probe_argument_count): New declaration.
5914         (evaluate_probe_argument): Likewise.
5915         * probe.c (get_probe_argument_count): New function.
5916         (evaluate_probe_argument): Likewise.
5917         (probe_safe_evaluate_at_pc): Use the above new functions.
5918
5919 2013-06-04  Alan Modra  <amodra@gmail.com>
5920
5921         * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
5922         * rs6000-tdep.c (read_insn): Add frame param, don't assume big-endian.
5923         (ppc_insns_match_pattern): Add frame param.  Avoid multiple
5924         target mem reads on optional insns.
5925         * ppc-linux-tdep.c (ppc_skip_trampoline_code): Update
5926         ppc_insns_match_pattern calls.
5927         * ppc64-tdep.c (ppc64_standard_linkage2, ppc64_standard_linkage3):
5928         Add match for power7 thread safety insns, and new order of
5929         std 2,40(1) insn.  Correct code shown for _dl_runtime_resolve
5930         invocation in comment, and update rest of comment.
5931         (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN,
5932         PPC64_STANDARD_LINKAGE3_LEN): Delete.
5933         (ppc64_standard_linkage2_target): Update insn offsets.
5934         (ppc64_skip_trampoline_code): Use a single insn buffer.  Match newer
5935         stubs first.  Update calls.
5936
5937 2013-06-04  Yao Qi  <yao@codesourcery.com>
5938
5939         * solib.c (solib_find): Don't need dir separator if path has
5940         drive spec.
5941
5942 2013-06-03  Joel Brobecker  <brobecker@adacore.com>
5943
5944         Revert (indirectly causes a SIGSEGV):
5945         * machoread.c (macho_symfile_read): Assign first cleanup to
5946         'back_to'.
5947
5948 2013-06-03  Yao Qi  <yao@codesourcery.com>
5949
5950         * mi/mi-cmd-var.c (mi_no_values, mi_simple_values): Move to
5951         mi-parse.c.  Make them static.
5952         (mi_all_values): Likewise.
5953         (mi_parse_values_option): Move to mi-parse.c.  Rename it to
5954         mi_parse_print_values.  Make it external.
5955         * mi/mi-cmds.h (mi_no_values, mi_simple_values, mi_all_values):
5956         Remove the declarations.
5957         * mi/mi-parse.c (mi_parse_print_values): Moved from mi-cmd-var.c.
5958         * mi/mi-parse.h (mi_parse_print_values): Declare.
5959         * mi/mi-cmd-stack.c: Include mi-parse.h.
5960         (parse_print_values): Remove
5961         (mi_cmd_stack_list_locals): Call mi_parse_print_values instead
5962         of parse_print_values.
5963         (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Likewise.
5964
5965 2013-05-31  Pedro Alves  <pedro@codesourcery.com>
5966             Yao Qi  <yao@codesourcery.com>
5967
5968         * tracepoint.c (all_tracepoint_actions_and_cleanup): Declare.
5969         (encode_actions): Move code to ...
5970         (all_tracepoint_actions_and_cleanup): ... here.  New.
5971         (trace_dump_command): Likewise.
5972
5973 2013-05-30  Tom Tromey  <tromey@redhat.com>
5974
5975         * symmisc.c (maintenance_expand_symtabs): Call do_cleanups.
5976
5977 2013-05-30  Tom Tromey  <tromey@redhat.com>
5978
5979         * xml-support.c (gdb_xml_create_parser_and_cleanup): Rename from
5980         gdb_xml_create_parser_and_cleanup_1.  Return a cleanup.  Remove
5981         'old_chain' argument.  Add 'parser_result' argument.
5982         (gdb_xml_create_parser_and_cleanup): Remove old version.
5983         (gdb_xml_parse_quick): Update.
5984         (xml_process_xincludes): Update.
5985         * xml-support.h (gdb_xml_create_parser_and_cleanup): Don't
5986         declare.
5987
5988 2013-05-30  Tom Tromey  <tromey@redhat.com>
5989
5990         * probe.c (collect_probes): Check arguments for NULL before
5991         calling compile_rx_or_error.
5992         * utils.c (compile_rx_or_error): Require 'rx' to be non-NULL.
5993         Remove NULL return.
5994
5995 2013-05-30  Tom Tromey  <tromey@redhat.com>
5996
5997         * infrun.c (adjust_pc_after_break): Introduce an outer null
5998         cleanup.
5999
6000 2013-05-30  Tom Tromey  <tromey@redhat.com>
6001
6002         * mi/mi-cmd-var.c (varobj_update_one): Add an outer null cleanup.
6003
6004 2013-05-30  Tom Tromey  <tromey@redhat.com>
6005
6006         * cli/cli-script.c (read_command_lines_1): Use a null cleanup
6007         for 'old_chain'.  Do not check 'head' before processing
6008         cleanups.
6009
6010 2013-05-30  Tom Tromey  <tromey@redhat.com>
6011
6012         * mi/mi-cmd-stack.c (list_arg_or_local): Remove
6013         "cleanup_tuple".
6014
6015 2013-05-30  Tom Tromey  <tromey@redhat.com>
6016
6017         * dbxread.c (dbx_read_symtab): Declare 'back_to' in a more
6018         inner scope.  Unconditionally call do_cleanups.
6019
6020 2013-05-30  Tom Tromey  <tromey@redhat.com>
6021
6022         * source.c (find_and_open_source): Call do_cleanups.
6023
6024 2013-05-30  Tom Tromey  <tromey@redhat.com>
6025
6026         * linux-thread-db.c (thread_db_load_search): Unconditionally
6027         call do_cleanups.
6028
6029 2013-05-30  Tom Tromey  <tromey@redhat.com>
6030
6031         * solib-aix.c (solib_aix_bfd_open): Don't use a null cleanup
6032         for 'cleanup'; instead use a later one.
6033
6034 2013-05-30  Tom Tromey  <tromey@redhat.com>
6035
6036         * python/py-breakpoint.c (bppy_get_commands): Use
6037         explicit, unconditional return.
6038         * python/py-frame.c (frapy_read_var): Likewise.
6039         * python/python.c (gdbpy_decode_line): Likewise.
6040
6041 2013-05-30  Tom Tromey  <tromey@redhat.com>
6042
6043         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
6044         do_cleanups on all return paths.
6045
6046 2013-05-30  Tom Tromey  <tromey@redhat.com>
6047
6048         * top.c (execute_command): Discard 'cleanup_if_error' cleanups.
6049
6050 2013-05-30  Tom Tromey  <tromey@redhat.com>
6051
6052         * stabsread.c (read_struct_type): Call do_cleanups along
6053         all return paths.
6054
6055 2013-05-30  Maciej W. Rozycki  <macro@codesourcery.com>
6056
6057         * mips-linux-tdep.c: Adjust formatting throughout.
6058
6059 2013-05-30  Tom Tromey  <tromey@redhat.com>
6060
6061         * mipsread.c (read_alphacoff_dynamic_symtab): Call do_cleanups
6062         along all return paths.
6063
6064 2013-05-30  Tom Tromey  <tromey@redhat.com>
6065
6066         * symfile.c (find_separate_debug_file): Call do_cleanups
6067         along all return paths.
6068
6069 2013-05-30  Tom Tromey  <tromey@redhat.com>
6070
6071         * symtab.c (search_symbols): Introduce a null cleanup for
6072         'retval_chain'.
6073
6074 2013-05-30  Tom Tromey  <tromey@redhat.com>
6075
6076         * python/py-value.c (valpy_binop): Call do_cleanups before
6077         exiting loop.
6078
6079 2013-05-30  Tom Tromey  <tromey@redhat.com>
6080
6081         * python/py-prettyprint.c (print_children): Remove extra
6082         do_cleanups call.
6083
6084 2013-05-30  Tom Tromey  <tromey@redhat.com>
6085
6086         * python/py-frame.c (frapy_read_var): Call do_cleanups along
6087         all return paths.
6088
6089 2013-05-30  Tom Tromey  <tromey@redhat.com>
6090
6091         * python/py-breakpoint.c (bppy_get_commands): Call do_cleanups
6092         along all return paths.
6093
6094 2013-05-30  Tom Tromey  <tromey@redhat.com>
6095
6096         * cli/cli-logging.c (set_logging_redirect): Unconditionally
6097         call do_cleanups.
6098
6099 2013-05-30  Tom Tromey  <tromey@redhat.com>
6100
6101         * varobj.c (c_value_of_root): Call do_cleanups along all
6102         return paths.
6103
6104 2013-05-30  Tom Tromey  <tromey@redhat.com>
6105
6106         * tracepoint.c (trace_dump_command): Unconditionally call
6107         do_cleanups.
6108
6109 2013-05-30  Tom Tromey  <tromey@redhat.com>
6110
6111         * breakpoint.c (output_thread_groups, parse_cmd_to_aexpr): Call
6112         do_cleanups earlier.
6113
6114 2013-05-30  Tom Tromey  <tromey@redhat.com>
6115
6116         * machoread.c (macho_symfile_read): Assign first cleanup to
6117         'back_to'.
6118
6119 2013-05-30  Tom Tromey  <tromey@redhat.com>
6120
6121         * m32r-rom.c (m32r_load): Call do_cleanups at all returns.
6122
6123 2013-05-30  Tom Tromey  <tromey@redhat.com>
6124
6125         * mi/mi-main.c (list_available_thread_groups): Call do_cleanups.
6126
6127 2013-05-30  Tom Tromey  <tromey@redhat.com>
6128
6129         * inf-ptrace.c (inf_ptrace_create_inferior): Unconditionally
6130         call discard_cleanups.
6131         (inf_ptrace_attach): Likewise.
6132
6133 2013-05-30  Tom Tromey  <tromey@redhat.com>
6134
6135         * remote-mips.c (mips_exit_debug): Call do_cleanups on all
6136         return paths.
6137         (mips_initialize): Likewise.
6138         (common_open): Call do_cleanups.
6139
6140 2013-05-30  Tom Tromey  <tromey@redhat.com>
6141
6142         * utils.c (internal_vproblem): Call do_cleanups.
6143
6144 2013-05-30  Tom Tromey  <tromey@redhat.com>
6145
6146         * linespec.c (find_linespec_symbols): Don't reassign to 'cleanup'.
6147
6148 2013-05-30  Tom Tromey  <tromey@redhat.com>
6149
6150         * cli/cli-script.c (setup_user_args): Don't return after error.
6151
6152 2013-05-30  Tom Tromey  <tromey@redhat.com>
6153
6154         * somread.c (som_symtab_read): Call do_cleanups.
6155
6156 2013-05-30  Tom Tromey  <tromey@redhat.com>
6157
6158         * printcmd.c (print_command_1): Unconditionally call do_cleanups.
6159
6160 2013-05-30  Tom Tromey  <tromey@redhat.com>
6161
6162         * cli/cli-cmds.c (cd_command, alias_command): Call do_cleanups.
6163         * cli/cli-dump.c (restore_binary_file): Call do_cleanups.
6164         * interps.c (interpreter_exec_cmd): Call do_cleanups.
6165         * source.c (show_substitute_path_command): Call do_cleanups.
6166         (unset_substitute_path_command, set_substitute_path_command):
6167         Likewise.
6168         * symfile.c (load_command): Call do_cleanups.
6169
6170 2013-05-30  Tom Tromey  <tromey@redhat.com>
6171
6172         * contrib/cleanup_check.py: New file.
6173         * contrib/gcc-with-excheck: Add option parsing.
6174
6175 2013-05-30  Joel Brobecker  <brobecker@adacore.com>
6176
6177         * windows-nat.c (windows_delete_thread): Add missing space
6178         in cast expression.
6179
6180 2013-05-30  Hafiz Abid Qadeer  <abidh@codesourcery.com>
6181
6182         * inferior.c (top level): Include tilde.h.
6183         (add_inferior_command): Call tilde_expand on the value of 'exec'
6184         argument.
6185
6186 2013-05-30  Pedro Alves  <pedro@codesourcery.com>
6187             Yao Qi  <yao@codesourcery.com>
6188
6189         * tracepoint.c (encode_actions_1): Remove parameter 't'.
6190         Caller update.
6191         (encode_actions): Likewise.
6192         * remote.c (remote_download_tracepoint): Caller update.
6193         * tracepoint.h (encode_actions): Update declaration.
6194
6195 2013-05-30  Pedro Alves  <palves@redhat.com>
6196
6197         * python/python-internal.h (gdb_Py_DECREF): Cast OP to PyObject
6198         pointer.
6199
6200 2013-05-30  Yao Qi  <yao@codesourcery.com>
6201
6202         * remote.c (remote_check_symbols): Remove unused parameter
6203         'objfile'.
6204         Declaration update.
6205         (remote_start_remote, remote_new_objfile): Caller update.
6206
6207 2013-05-30  Yao Qi  <yao@codesourcery.com>
6208
6209         * mi/mi-cmds.c (mi_cmds): Define MI command
6210         '-exec-arguments' by macro DEF_MI_CMD_CLI_1 instead of
6211         DEF_MI_CMD_CLI.
6212
6213 2013-05-29  Pedro Alves  <palves@redhat.com>
6214
6215         * remote.c (remote_insert_breakpoint, remote_remove_breakpoint)
6216         (remote_insert_watchpoint, remote_remove_watchpoint)
6217         (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
6218         (remote_verify_memory, compare_sections_command)
6219         (remote_search_memory): Set the general process/thread on the
6220         remote side.
6221
6222 2013-05-29  Pedro Alves  <palves@redhat.com>
6223
6224         * aarch64-tdep.c: Don't include "features/aarch64-without-fpu.c".
6225         (_initialize_aarch64_tdep): Don't call
6226         initialize_tdesc_aarch64_without_fpu.
6227         * features/Makefile (WHICH): Remove reference to
6228         aarch64-without-fpu.
6229         * features/aarch64-without-fpu.c: Delete file.
6230         * regformats/aarch64-without-fpu.dat: Delete file.
6231
6232 2013-05-28  Yao Qi  <yao@codesourcery.com>
6233
6234         * tracepoint.c (stringify_collection_list): Remove parameter
6235         'string'.
6236         (encode_actions): Caller update.  Remove local variables.
6237
6238 2013-05-24  Yao Qi  <yao@codesourcery.com>
6239
6240         * tracepoint.c (TFILE_PID): Remove.
6241         (tfile_open): Don't add thread and inferior.
6242         (tfile_close): Don't set 'inferior_ptid'.  Don't call
6243         exit_inferior_silent.
6244         (tfile_thread_alive): Remove.
6245         (init_tfile_ops): Don't set field 'to_thread_alive' of
6246         tfile_ops.
6247
6248 2013-05-23  Doug Evans  <dje@google.com>
6249
6250         * contrib/cc-with-tweaks.sh (-p): Handle no dwo files.
6251
6252 2013-05-23  Pedro Alves  <palves@redhat.com>
6253
6254         * common/filestuff.c [USE_WIN32API]: Define HAVE_SOCKETS.
6255         [HAVE_SYS_SOCKET_H]: Define HAVE_SOCKETS.
6256         (socket_mark_cloexec, gdb_socketpair_cloexec, gdb_socket_cloexec):
6257         Only define if HAVE_SOCKETS is defined.
6258         * configure.ac: Check for sys/socket.h.
6259         * config.in, configure: Regenerate.
6260
6261 2013-05-23  Pedro Alves  <palves@redhat.com>
6262
6263         * dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
6264         (open_and_init_dwp_file): Use %s/pulongest instead of %u for
6265         printing uint32_t variables.
6266
6267 2013-05-23  Pedro Alves  <palves@redhat.com>
6268
6269         * NEWS: Mention GDBserver range stepping support.
6270
6271 2013-05-23  Yao Qi  <yao@codesourcery.com>
6272             Pedro Alves  <palves@redhat.com>
6273
6274         * gdbthread.h (struct thread_control_state) <may_range_step>: New
6275         field.
6276         * infcmd.c (step_once, until_next_command): Enable range stepping.
6277         * infrun.c (displaced_step_prepare): Disable range stepping.
6278         (resume): Disable range stepping if stepping over a breakpoint or
6279         we have software watchpoints.  If range stepping is enabled,
6280         assert the thread is in the stepping range.
6281         (clear_proceed_status_thread): Clear may_range_step.
6282         (handle_inferior_event): Disable range stepping as soon as we know
6283         the thread that hit the event.  Re-enable it whenever we're going
6284         to step with a step range.
6285         * remote.c (struct vCont_action_support) <r>: New field.
6286         (use_range_stepping): New global.
6287         (remote_vcont_probe): Handle 'r' action.
6288         (append_resumption): Append an 'r' action if the thread may range
6289         step.
6290         (show_range_stepping): New function.
6291         (set_range_stepping): New function.
6292         (_initialize_remote): Call add_setshow_boolean_cmd to register the
6293         'set range-stepping' and 'show range-stepping' commands.
6294         * NEWS: Mention range stepping, the new vCont;r action, and the
6295         new "set/show range-stepping" commands.
6296
6297 2013-05-23  Yao Qi  <yao@codesourcery.com>
6298             Pedro Alves  <palves@redhat.com>
6299
6300         * remote.c (struct vCont_action_support): New struct.
6301         (struct remote_state) <support_vCont_t>: Remove field.
6302         <vCont_actions_support>: New field.
6303         (remote_vcont_probe, remote_stop_ns): Update.
6304
6305 2013-05-23  Yao Qi  <yao@codesourcery.com>
6306             Pedro Alves  <palves@redhat.com>
6307
6308         * gdbthread.h (pc_in_thread_step_range): New declaration.
6309         * thread.c (pc_in_thread_step_range): New function.
6310         * infrun.c (handle_inferior_event): Use it.
6311
6312 2013-05-23  Joel Brobecker  <brobecker@adacore.com>
6313
6314         * mi/mi-cmd-break.c (mi_argv_to_format): Use xsnprintf instead
6315         of sprintf.
6316
6317 2013-05-22  Keith Seitz  <keiths@redhat.com>
6318
6319         * ada-lang.c (is_known_support_routine): Add explicit free of
6320         'func_name' from find_frame_funname.
6321         (ada_unhandled_exception_name_addr_from_raise): Add cleanups
6322         for func_name from find_frame_funname.
6323         * python/py-frame.c (frapy_name): Add explicit free of
6324         'name' from find_frame_funname.
6325         * stack.c (find_frame_funname): Add comment explaining that
6326         funcp must be freed by the caller.
6327         Return copy of symbol names instead of pointers.
6328         (print_frame): Add a cleanup for 'funname' from
6329         find_frame_funname.
6330         * stack.h (find_frame_funname): Remove "const" from
6331         'funname' parameter.
6332
6333 2013-05-22  Tom Tromey  <tromey@redhat.com>
6334
6335         PR c++/15401:
6336         * c-valprint.c (c_value_print): Use value_addr for
6337         references.  Convert back to reference type with value_ref.
6338
6339 2013-05-22  Eli Zaretskii  <eliz@gnu.org>
6340
6341         * windows-nat.c (handle_unload_dll): Don't call solib_add for the
6342         unloaded DLL, it will be done by handle_solib_event.  See
6343         http://sourceware.org/ml/gdb-patches/2013-05/msg00713.html for the
6344         details.
6345
6346 2013-05-22  Phil Muldoon  <pmuldoon@redhat.com>
6347
6348         * ui-out.c: Create typedef ui_out_level_p and define vector
6349         operations for that type.
6350         (struct ui_out): Use a vector instead of an array.
6351         (current_level): Return level from a vector.
6352         (push_level): Create a level in a vector.
6353         (pop_level): Delete a level in a vector.
6354         (ui_out_new): Create initial level zero level, and store in a
6355         vector.
6356         (ui_out_destroy): Add vector cleanup.
6357
6358 2013-05-22  Pedro Alves  <palves@redhat.com>
6359
6360         * python/python-internal.h (gdb_Py_DECREF): Tag with
6361         "ARI: editCase function".
6362
6363 2013-05-21  Paul Pluzhnikov  <ppluzhnikov@google.com>
6364
6365         * solib-svr4.c (svr4_free_so): Protect against NULL dereference.
6366
6367 2013-05-21  Pedro Alves  <palves@redhat.com>
6368
6369         * python/py-prettyprint.c (apply_val_pretty_printer): Check
6370         whether PRINTER is NULL before installing a Py_DECREF cleanup.
6371         * python/py-utils.c (py_decref): Don't check for NULL before
6372         calling Py_DECREF.
6373
6374 2013-05-21  Pedro Alves  <palves@redhat.com>
6375
6376         * python/py-utils.c (py_decref): Remove extra braces.
6377         (gdb_pymodule_addobject): Remove extra braces.
6378         * python-internal.h (gdb_Py_DECREF): New static inline function.
6379         (Py_DECREF): Redefine as calling gdb_Py_DECREF.
6380
6381 2013-05-21  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
6382
6383         * breakpoints.c (detach_breakpoints): Do not
6384         detach breakpoints locations with loc_type bp_loc_other.
6385
6386 2013-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
6387
6388         Workaround Python 2.6.
6389         * python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
6390         a block.
6391
6392 2013-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
6393
6394         Code cleanup: constification.
6395         * solib.c (solib_ops): Make return type and ops variable type const.
6396         (set_solib_ops): Make the new_ops parameter and ops variable const.
6397         (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
6398         (solib_add, solib_keep_data_in_core, clear_solib)
6399         (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
6400         (reload_shared_libraries, solib_global_lookup): Make the ops variable
6401         const.
6402         * solib.h (set_solib_ops): Make the new_ops parameter const.
6403
6404 2013-05-21  Joel Brobecker  <brobecker@adacore.com>
6405
6406         * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
6407         variable.
6408         (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
6409         (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
6410         (SYSTEM_GDBINIT_FILES): New variables.
6411         (all): Add stamp-system-gdbinit.
6412         (stamp-system-gdbinit): New rule.
6413         (clean-system-gdbinit, install-system-gdbinit)
6414         (uninstall-system-gdbinit): New rules.  Make them .PHONY.
6415         (install-only): Add dependency on install-system-gdbinit.
6416         (uninstall): Add dependency on uninstall-system-gdbinit.
6417         (clean): Add dependency on clean-system-gdbinit.
6418         * system-gdbinit/elinos.py: New file.
6419         * system-gdbinit/wrs-linux.py: New file.
6420
6421 2013-05-21  Joel Brobecker  <brobecker@adacore.com>
6422
6423         * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
6424
6425 2013-05-21  Hui Zhu  <hui@codesourcery.com>
6426
6427         * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
6428         * breakpoint.h (dprintf_breakpoint_ops): Add extern.
6429         * mi/mi-cmd-break.c (ctype.h): New include.
6430         (gdb_obstack.h): New include.
6431         (mi_argv_to_format, mi_cmd_break_insert_1): New.
6432         (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
6433         (mi_cmd_dprintf_insert): New.
6434         * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
6435         * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
6436
6437 2013-05-20  Tom Tromey  <tromey@redhat.com>
6438
6439         * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
6440
6441 2013-05-20  Tom Tromey  <tromey@redhat.com>
6442
6443         * python/py-value.c (valpy_get_dynamic_type): Simplify
6444         dynamic_type assignment.  Use Py_XINCREF.
6445
6446 2013-05-20  Tom Tromey  <tromey@redhat.com>
6447
6448         * python/py-type.c (typy_fields): Unconditionally decref 'r'.
6449
6450 2013-05-20  Tom Tromey  <tromey@redhat.com>
6451
6452         * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
6453         (gdbpy_selected_frame): Move object-construction code
6454         out of TRY_CATCH.
6455
6456 2013-05-20  Tom Tromey  <tromey@redhat.com>
6457
6458         * python/py-arch.c (gdbpy_initialize_arch): Use
6459         gdb_pymodule_addobject.
6460         * python/py-block.c (gdbpy_initialize_blocks): Use
6461         gdb_pymodule_addobject.
6462         * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
6463         gdb_pymodule_addobject.
6464         * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
6465         gdb_pymodule_addobject.
6466         * python/py-event.c (gdbpy_initialize_event_generic): Use
6467         gdb_pymodule_addobject.
6468         * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
6469         gdb_pymodule_addobject.
6470         * python/py-evts.c (add_new_registry): Use
6471         gdb_pymodule_addobject.
6472         (gdbpy_initialize_py_events): Likewise.
6473         * python/py-finishbreakpoint.c
6474         (gdbpy_initialize_finishbreakpoints): Use
6475         gdb_pymodule_addobject.
6476         * python/py-frame.c (gdbpy_initialize_frames): Use
6477         gdb_pymodule_addobject.
6478         * python/py-function.c (gdbpy_initialize_functions): Use
6479         gdb_pymodule_addobject.
6480         * python/py-inferior.c (gdbpy_initialize_inferior): Use
6481         gdb_pymodule_addobject.
6482         * python/py-infthread.c (gdbpy_initialize_thread): Use
6483         gdb_pymodule_addobject.
6484         * python/py-objfile.c (gdbpy_initialize_objfile): Use
6485         gdb_pymodule_addobject.
6486         * python/py-param.c (gdbpy_initialize_parameters): Use
6487         gdb_pymodule_addobject.
6488         * python/py-progspace.c (gdbpy_initialize_pspace): Use
6489         gdb_pymodule_addobject.
6490         * python/py-symbol.c (gdbpy_initialize_symbols): Use
6491         gdb_pymodule_addobject.
6492         * python/py-symtab.c (gdbpy_initialize_symtabs): Use
6493         gdb_pymodule_addobject.
6494         * python/py-type.c (gdbpy_initialize_types): Use
6495         gdb_pymodule_addobject.
6496         * python/py-utils.c (gdb_pymodule_addobject): New function.
6497         * python/py-value.c (gdbpy_initialize_values): Use
6498         gdb_pymodule_addobject.
6499         * python/python-internal.h (gdb_pymodule_addobject): Declare.
6500         * python/python.c (_initialize_python): Use
6501         gdb_pymodule_addobject.
6502
6503 2013-05-20  Tom Tromey  <tromey@redhat.com>
6504
6505         * python/py-cmd.c (cmdpy_completer): Use explicit decref.
6506         * python/py-param.c (get_set_value, get_show_value): Use
6507         explicit decrefs.
6508         * python/python.c (start_type_printers, apply_type_printers):
6509         Use explicit decrefs.
6510
6511 2013-05-20  Tom Tromey  <tromey@redhat.com>
6512
6513         * python/py-evts.c (gdbpy_initialize_py_events): Don't
6514         incref the module.
6515
6516 2013-05-20  Tom Tromey  <tromey@redhat.com>
6517
6518         * python/python.c (gdbpy_run_events): Decref the result
6519         of PyObject_CallObject.
6520
6521 2013-05-20  Tom Tromey  <tromey@redhat.com>
6522
6523         * python/py-symtab.c (set_sal): Use
6524         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.  Return -1 on error.
6525         (symtab_and_line_to_sal_object): Update.
6526
6527 2013-05-20  Tom Tromey  <tromey@redhat.com>
6528
6529         * python/py-param.c (compute_enum_values): Decref 'item'.
6530
6531 2013-05-20  Tom Tromey  <tromey@redhat.com>
6532
6533         * mi/mi-main.c: Include python-internal.h.
6534         (mi_cmd_list_features): Check gdb_python_initialized.
6535         * python/py-inferior.c (python_on_normal_stop, python_on_resume)
6536         (python_inferior_exit, python_new_objfile, add_thread_object)
6537         (delete_thread_object, py_free_inferior): Check
6538         gdb_python_initialized.
6539         * python/py-prettyprint.c (apply_val_pretty_printer): Check
6540         gdb_python_initialized.
6541         * python/py-type.c (save_objfile_types): Check
6542         gdb_python_initialized.
6543         * python/python-internal.h (gdb_python_initialized): Declare.
6544         * python/python.c (ensure_python_env): Throw exception if
6545         Python not initialized.
6546         (before_prompt_hook, source_python_script_for_objfile)
6547         (start_type_printers, apply_type_printers,
6548         free_type_printers): Check gdb_python_initialized.
6549         * varobj.c (varobj_get_display_hint)
6550         (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
6551         (install_new_value_visualizer, varobj_set_visualizer)
6552         (value_get_print_value): Check gdb_python_initialized.
6553
6554 2013-05-20  Tom Tromey  <tromey@redhat.com>
6555
6556         * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
6557         Check errors.
6558         * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
6559         * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
6560         Check errors.
6561         * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
6562         Check errors.
6563         * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
6564         Check errors.
6565         * python/py-event.c (gdbpy_initialize_event): Return 'int'.
6566         Check errors.
6567         * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
6568         init function to return 'int'.
6569         * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
6570         Return 'int'.  Check errors.
6571         * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
6572         Check errors.
6573         * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
6574         Return 'int'.  Check errors.
6575         * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
6576         Check errors.
6577         * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
6578         Check errors.
6579         * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
6580         Check errors.
6581         * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
6582         Check errors.
6583         * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
6584         Check errors.
6585         * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
6586         Check errors.
6587         * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
6588         Check errors.
6589         * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
6590         Check errors.
6591         * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
6592         Check errors.
6593         * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
6594         Check errors.
6595         * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
6596         Check errors.
6597         * python/py-type.c (gdbpy_initialize_types): Return 'int'.
6598         Check errors.
6599         * python/py-value.c (gdbpy_initialize_values): Return 'int'.
6600         Check errors.
6601         * python/python-internal.h (gdbpy_initialize_auto_load,
6602         gdbpy_initialize_values, gdbpy_initialize_frames,
6603         gdbpy_initialize_symtabs, gdbpy_initialize_commands,
6604         gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
6605         gdbpy_initialize_blocks, gdbpy_initialize_types,
6606         gdbpy_initialize_functions, gdbpy_initialize_pspace,
6607         gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
6608         gdbpy_initialize_finishbreakpoints,
6609         gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
6610         gdbpy_initialize_thread, gdbpy_initialize_inferior,
6611         gdbpy_initialize_eventregistry, gdbpy_initialize_event,
6612         gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
6613         gdbpy_initialize_signal_event,
6614         gdbpy_initialize_breakpoint_event,
6615         gdbpy_initialize_continue_event,
6616         gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
6617         gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
6618         Update.  Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
6619         * python/python.c (gdb_python_initialized): New global.
6620         (gdbpy_initialize_events): Return 'int'.  Check errors.
6621         (_initialize_python): Check errors.  Set
6622         gdb_python_initialized.
6623
6624 2013-05-20  Tom Tromey  <tromey@redhat.com>
6625
6626         * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
6627         Decref the reslut of PyObject_CallMethod.
6628
6629 2013-05-20  Tom Tromey  <tromey@redhat.com>
6630
6631         * python/py-event.c (gdbpy_initialize_event_generic): Return
6632         early if PyType_Ready fails.
6633
6634 2013-05-20  Tom Tromey  <tromey@redhat.com>
6635
6636         * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
6637         as 'default' in the switch.
6638
6639 2013-05-20  Tom Tromey  <tromey@redhat.com>
6640
6641         * python/py-inferior.c (gdbpy_inferiors): Update.  Hoist
6642         get_addr_from_python calls out of TRY_CATCH.
6643         (infpy_write_memory, infpy_search_memory): Likewise.
6644         * python/py-utils.c (get_addr_from_python): Return negative
6645         value on error.  Use TRY_CATCH.
6646         * python/python-internal.h (get_addr_from_python): Use
6647         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
6648
6649 2013-05-20  Tom Tromey  <tromey@redhat.com>
6650
6651         * python/py-event.c (evpy_emit_event): Decref the
6652         result of PyObject_CallFunctionObjArgs.
6653
6654 2013-05-20  Tom Tromey  <tromey@redhat.com>
6655
6656         * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
6657         Correctly decref.
6658
6659 2013-05-20  Tom Tromey  <tromey@redhat.com>
6660
6661         * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
6662
6663 2013-05-20  Tom Tromey  <tromey@redhat.com>
6664
6665         * python/py-event.h (gdbpy_initialize_event_generic): Use
6666         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
6667         * python/py-evts.c (add_new_registry): Use
6668         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
6669         * python/python-internal.h
6670         (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
6671
6672 2013-05-20  Tom Tromey  <tromey@redhat.com>
6673
6674         * python/py-arch.c (archpy_disassemble): Update.
6675         * python/py-type.c (typy_get_composite, typy_lookup_typename)
6676         (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
6677         * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
6678         * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
6679         macro.
6680         (GDB_PY_HANDLE_EXCEPTION): Update.
6681         (gdbpy_convert_exception): Update.  Use CPYCHECKER_SETS_EXCEPTION.
6682
6683 2013-05-20  Tom Tromey  <tromey@redhat.com>
6684
6685         * python/python-internal.h (events_object_type): Remove.
6686
6687 2013-05-20  Tom Tromey  <tromey@redhat.com>
6688
6689         * python/py-event.h (evpy_emit_event): Use
6690         CPYCHECKER_STEALS_REFERENCE_TO_ARG.
6691         * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
6692         New macro.
6693
6694 2013-05-20  Tom Tromey  <tromey@redhat.com>
6695
6696         * py-evtregistry.c (create_event_object): Decref
6697         eventregistry_object if PyList_New fails.
6698
6699 2013-05-20  Tom Tromey  <tromey@redhat.com>
6700
6701         * py-cmd.c (gdbpy_string_to_argv): Check result of
6702         PyList_New.
6703
6704 2013-05-20  Tom Tromey  <tromey@redhat.com>
6705
6706         * python/python.c (before_prompt_hook): Add cleanup to
6707         decref 'hook'.
6708
6709 2013-05-20  Tom Tromey  <tromey@redhat.com>
6710
6711         * python/py-function.c (fnpy_init): Decref result of
6712         PyObject_GetAttrString.
6713
6714 2013-05-20  Tom Tromey  <tromey@redhat.com>
6715
6716         * python/py-threadevent.c (get_event_thread): Use
6717         CPYCHECKER_RETURNS_BORROWED_REF.
6718         * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
6719         New define.
6720         (pspace_to_pspace_object, objfile_to_objfile_object)
6721         (find_thread_object): Use it.
6722
6723 2013-05-20  Tom Tromey  <tromey@redhat.com>
6724
6725         * python/py-arch.c (arch_object_type): Use
6726         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6727         * python/py-block.c (block_syms_iterator_object_type):
6728         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6729         * python/py-bpevent.c (breakpoint_event_object_type):
6730         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6731         * python/py-cmd.c (cmdpy_object_type): Use
6732         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6733         * python/py-continueevent.c (continue_event_object_type):
6734         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6735         * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
6736         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6737         * python/py-events.h (thread_event_object_type):
6738         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6739         * python/py-evtregistry.c (eventregistry_object_type): Use
6740         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6741         * python/py-exitedevent.c (exited_event_object_type):
6742         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6743         * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
6744         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6745         * python/py-function.c (fnpy_object_type): Use
6746         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6747         * python/py-inferior.c (inferior_object_type, membuf_object_type):
6748         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6749         * python/py-infthread.c (thread_object_type): Use
6750         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6751         * python/py-lazy-string.c (lazy_string_object_type):
6752         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6753         * python/py-newobjfileevent.c (new_objfile_event_object_type):
6754         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6755         * python/py-objfile.c (objfile_object_type): Use
6756         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6757         * python/py-param.c (parmpy_object_type):
6758         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6759         * python/py-progspace.c (pspace_object_type):
6760         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6761         * python/py-signalevent.c (signal_event_object_type):
6762         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6763         * python/py-symtab.c (symtab_object_type, sal_object_type): Use
6764         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6765         * python/py-type.c (type_object_type, field_object_type)
6766         (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6767         * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
6768         define.
6769         (value_object_type, block_object_type, symbol_object_type)
6770         (event_object_type, stop_event_object_type, breakpoint_object_type)
6771         (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6772
6773 2013-05-20  Andreas Tobler  <andreas@fgznet.ch>
6774
6775         * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
6776         (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
6777
6778 2013-05-20  Doug Evans  <dje@google.com>
6779
6780         When reading CU, stay in DWO.  Be more tolerent of bad debug info.
6781         For Fission.
6782         * dwarf2read.c (struct dwarf2_per_cu_data): New member
6783         reading_dwo_directly.
6784         (struct signatured_type): New member dwo_unit.
6785         (struct die_reader_specs): New member comp_dir.
6786         (create_signatured_type_table_from_index): Use malloc for
6787         all_type_units instead of objfile's obstack.
6788         (create_all_type_units): Ditto.
6789         (fill_in_sig_entry_from_dwo_entry): New function.
6790         (add_type_unit): New function.
6791         (lookup_dwo_signatured_type): New function.
6792         (lookup_dwp_signatured_type): New function.
6793         (lookup_signatured_type): New arg cu.  All callers updated.
6794         (init_cu_die_reader): Initialize comp_dir.
6795         (read_cutu_die_from_dwo): New arg stub_comp_dir.  All callers updated.
6796         Change assert of matching type signatures to call error on mismatch.
6797         (lookup_dwo_unit): Add assert.
6798         (init_tu_and_read_dwo_dies): New function.
6799         (init_cutu_and_read_dies): Call it.
6800         (build_type_unit_groups): Handle case of no type unit groups created.
6801         (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
6802         (lookup_dwo_cutu): Tweak complaint.
6803         (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
6804         (dwarf2_per_objfile_free): Free all_type_units.
6805
6806 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
6807
6808         * windows-nat.c (handle_unload_dll): Add missing empty line.
6809
6810 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
6811
6812         * dwarf2read.c (prototyped_function_p): New function.
6813         (read_subroutine_type): Use it.
6814
6815 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
6816
6817         * rs6000-aix-tdep.c: De-indent some example code provided
6818         as a comment.
6819
6820 2013-05-17  Edjunior Machado  <emachado@linux.vnet.ibm.com>
6821
6822         * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
6823         region is ok for a hardware watchpoint using the new ptrace interface
6824         on Power servers.
6825
6826 2013-05-17  Doug Evans  <dje@google.com>
6827
6828         * NEWS: Mention new maintenance commands check-symtabs, and
6829         expand-symtabs, and renamed check-psymtabs.
6830         * psymtab.c (maintenance_check_psymtabs): Renamed from
6831         maintenance_check_symtabs.  Only process already-expanded symbol
6832         tables.
6833         (_initialize_psymtab): Update.
6834         * symmisc.c (maintenance_check_symtabs): New function.
6835         (maintenance_expand_name_matcher): New function
6836         (maintenance_expand_file_matcher): New function
6837         (maintenance_expand_symtabs): New function.
6838         (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
6839         commands.
6840
6841 2013-05-17  Tom Tromey  <tromey@redhat.com>
6842
6843         * python/py-inferior.c (infpy_read_memory): Don't call
6844         PyErr_SetString if PyObject_New fails.
6845         * python/py-frame.c (frame_info_to_frame_object): Don't call
6846         PyErr_SetString if PyObject_New fails.
6847
6848 2013-05-17  Pavel Chupin  <pavel.v.chupin@intel.com>
6849
6850         * acinclude.m4: Add check for dlopen in libdl.
6851         * configure.ac: Ditto.
6852         * configure: Regenerate.
6853
6854 2013-05-17  Phil Muldoon  <pmuldoon@redhat.com>
6855
6856         * frame.c (frame_stash): Convert to htab.
6857         (frame_addr_hash): New function.
6858         (frame_addr_hash_eq): New function.
6859         (frame_stash_create): Convert function to create
6860         a hash table.
6861         (frame_stash_add): Convert function to add an entry to a hash
6862         table.
6863         (frame_stash_find): Convert function to search the hash table.
6864         (frame_stash_invalidate): Convert function to empty the hash
6865         table.
6866         (get_frame_id): Only add to stash if a frame_id is created.
6867         (_initialize_frame): Call frame_stash_create.
6868
6869 2013-05-16  Yue Lu  <hacklu.newborn@gmail.com>  (tiny change)
6870
6871         * configure.ac: Ensure MIG is available when building for GNU Hurd
6872         hosts.
6873         * configure: Regenerate.
6874
6875 2013-05-16  Joel Brobecker  <brobecker@adacore.com>
6876
6877         * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
6878
6879 2013-05-16  Joel Brobecker  <brobecker@adacore.com>
6880
6881         * ada-lang.c (ada_make_symbol_completion_list): Make sure
6882         all cleanups are done before returning from this function.
6883
6884 2013-05-15  Joel Brobecker  <brobecker@adacore.com>
6885
6886         * utils.h: #include "exceptions.h".
6887         (enum errors): Remove partial declaration.
6888
6889 2013-05-15  Joel Brobecker  <brobecker@adacore.com>
6890
6891         * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
6892         * gdbarch.h, gdbarch.c: Regenerate.
6893         * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
6894         handling.
6895
6896         * rs6000-aix-tdep.h: New file.
6897         * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
6898         * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
6899         "xml-utils.h".
6900         (struct field_info, struct ld_info_desc): New types.
6901         (ld_info32_desc, ld_info64_desc): New static constants.
6902         (struct ld_info): New type.
6903         (rs6000_aix_extract_ld_info): New function.
6904         (rs6000_aix_shared_library_to_xml): Likewise.
6905         (rs6000_aix_ld_info_to_xml): Likewise.
6906         (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
6907         (rs6000_aix_init_osabi): Add call to
6908         set_gdbarch_core_xfer_shared_libraries_aix.
6909         * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
6910         Remove "xml-utils.h" include.
6911         (LdInfo): Delete typedef.
6912         (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
6913         Delete macros.
6914         (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
6915         Adjust code accordingly.
6916         (rs6000_core_ldinfo): Delete, folded into
6917         rs6000_aix_core_xfer_shared_libraries_aix.
6918         (rs6000_xfer_shared_library): Delete.
6919         (rs6000_xfer_shared_libraries): Reimplement.
6920
6921 2013-05-15  Markus Metzger  <markus.t.metzger@intel.com>
6922
6923         * record.c (record_goto_cmdlist): New.
6924         (cmd_record_goto): Split into this ...
6925         (cmd_record_goto_begin): ... this
6926         (cmd_record_goto_end): ... and this.
6927         (_initialize_record): Change "record goto" to prefix command.
6928         Add commands for "record goto begin" and "record goto end".
6929         Add an alias for "record goto start" to "record goto begin".
6930
6931 2013-05-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
6932
6933         * linespec.c (convert_linespec_to_sals): New comment for
6934         SOURCE_FILENAME assignment.
6935
6936 2013-05-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
6937
6938         * cleanups.c (restore_my_cleanups): Replace gdb_assert by
6939         internal_warning.
6940
6941 2013-05-14  Tom Tromey  <tromey@redhat.com>
6942
6943         * eval.c (parse_and_eval_long): Make 'exp' const.
6944         * value.h (parse_and_eval_long): Update.
6945
6946 2013-05-14  Tom Tromey  <tromey@redhat.com>
6947
6948         * ui-file.c (gdb_fopen): Make arguments const.
6949         * ui-file.h (gdb_fopen): Make arguments const.
6950
6951 2013-05-14  Tom Tromey  <tromey@redhat.com>
6952
6953         * remote.c (remote_set_trace_notes): Make arguments const.
6954         * target.c (update_current_target): Update cast.
6955         * target.h (to_set_trace_notes): Make arguments const.
6956
6957 2013-05-14  Tom Tromey  <tromey@redhat.com>
6958
6959         * go32-nat.c (go32_terminal_info): Make 'args' const.
6960         * inferior.h (child_terminal_info): Update.
6961         * inflow.c (child_terminal_info): Make 'args' const.
6962         * target.c (default_terminal_info): Make 'args' const.
6963         (debug_to_terminal_save_ours): Likewise.
6964         * target.h (struct target_ops) <to_terminal_info>: Make argument
6965         const.
6966
6967 2013-05-13  Tom Tromey  <tromey@redhat.com>
6968
6969         * gcore.c (create_gcore_bfd): Make 'filename' const.
6970         * gcore.h (create_gcore_bfd): Make 'filename' const.
6971         * record-full.c (record_full_save): Make 'recfilename' const.
6972         * target.c (target_save_record): Make 'filename' const.
6973         * target.h (struct target_ops) <to_save_record>: Make 'filename'
6974         const.
6975         (target_save_record): Likewise.
6976
6977 2013-05-13  Tom Tromey  <tromey@redhat.com>
6978
6979         PR gdb/15338:
6980         * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
6981         ranges section has been read.
6982
6983 2013-05-13  Tom Tromey  <tromey@redhat.com>
6984
6985         PR exp/15364:
6986         * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
6987         STRUCTOP_PTR>: Return a not_lval value for
6988         EVAL_AVOID_SIDE_EFFECTS.
6989         * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
6990         for EVAL_AVOID_SIDE_EFFECTS.
6991
6992 2013-05-13  Joel Brobecker  <brobecker@adacore.com>
6993
6994         * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
6995         floating point registers to register type before storing
6996         value.
6997         * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
6998         Likewise.
6999
7000 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
7001             Tom Tromey  <tromey@redhat.com>
7002
7003         * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
7004         New functions.
7005         * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
7006         Declare.
7007         * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
7008         (darwin_ptrace_him): Use unmark_fd_no_cloexec.
7009         * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
7010         (inf_ttrace_prepare): Use mark_fd_no_cloexec.
7011
7012 2013-05-10  Freddie Chopin  <freddie_chopin@op.pl>
7013             Tom Tromey  <tromey@redhat.com>
7014
7015         PR build/15414:
7016         * configure: Rebuild.
7017         * configure.ac (build_warnings): Do not use -Wformat-nonliteral
7018         with -Wno-format.
7019
7020 2013-05-10  Pedro Alves  <palves@redhat.com>
7021
7022         * remote.c (_initialize_remote): Fix spelling of
7023         qXfer:traceframe-info:read packet in packet config command.
7024
7025 2013-05-10  David Taylor  <dtaylor@emc.com>
7026
7027         PR remote/15455
7028
7029         * remote.c (remote_trace_set_readonly_regions): Do not overwrite
7030         "QTro" at start of packet.
7031
7032 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
7033
7034         * solib-aix.c (solib_aix_relocate_section_addresses):
7035         For the .bss section action, apply the same offset as
7036         the .data section.
7037
7038 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
7039
7040         * solib-aix.c (solib_aix_relocate_section_addresses):
7041         Remove FIXME comment.
7042
7043 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
7044
7045         PR tdep/15420:
7046         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
7047         New functions, directly copied from sparc-sol-thread.c.
7048         * sparc-sol-thread.c: Delete.
7049         * configure.ac: Remove code handling sparc-solaris-thread.c.
7050         * configure: Regenerate.
7051
7052 2013-05-10  Phil Muldoon  <pmuldoon@redhat.com>
7053
7054         * stack.c (backtrace_command_1): Add "no-filters", and Python frame
7055         filter logic.
7056         (backtrace_command): Add "no-filters" option parsing.
7057         (_initialize_stack): Alter help to reflect "no-filters" option.
7058         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
7059         (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
7060         (py-frame.o): Add target
7061         * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
7062         filter files.
7063         * python/python.h: Add new frame filter constants, and flag enum.
7064         (apply_frame_filter): Add definition.
7065         * python/python.c (apply_frame_filter): New non-Python
7066         enabled function.
7067         * python/py-utils.c (py_xdecref): New function.
7068         (make_cleanup_py_xdecref): Ditto.
7069         * python/py-objfile.c: Declare frame_filters dictionary.
7070         (objfpy_dealloc): Add frame_filters dealloc.
7071         (objfpy_new): Initialize frame_filters attribute.
7072         (objfile_to_objfile_object): Ditto.
7073         (objfpy_get_frame_filters): New function.
7074         (objfpy_set_frame_filters): New function.
7075         * python/py-progspace.c: Declare frame_filters dictionary.
7076         (pspy_dealloc): Add frame_filters dealloc.
7077         (pspy_new): Initialize frame_filters attribute.
7078         (pspacee_to_pspace_object): Ditto.
7079         (pspy_get_frame_filters): New function.
7080         (pspy_set_frame_filters): New function.
7081         * python/py-framefilter.c: New file.
7082         * python/lib/gdb/command/frame_filters.py: New file.
7083         * python/lib/gdb/frames.py: New file.
7084         * python/lib/gdb/__init__.py: Initialize global frame_filters
7085         dictionary
7086         * python/lib/gdb/FrameDecorator.py: New file.
7087         * python/lib/gdb/FrameIterator.py: New file.
7088         * mi/mi-cmds.c (mi_cmds): Add frame filters command.
7089         * mi/mi-cmds.h: Declare.
7090         * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
7091         --no-frame-filter logic, and Python frame filter logic.
7092         (stack_enable_frame_filters): New function.
7093         (parse_no_frame_option): Ditto.
7094         (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
7095         filter logic.
7096         (mi_cmd_stack_list_locals): Ditto.
7097         (mi_cmd_stack_list_args): Ditto.
7098         (mi_cmd_stack_list_variables): Ditto.
7099         * NEWS: Add frame filter note.
7100
7101 2013-05-09  Doug Evans  <dje@google.com>
7102
7103         * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
7104         All callers updated.
7105         (syms_from_objfile): Ditto.  Make static.
7106         (symbol_file_add_with_addrs): Renamed from
7107         symbol_file_add_with_addrs_or_offsets.  Delete args offsets,
7108         num_offsets.  All callers updated.
7109         * symfile.h (syms_from_objfile): Delete.
7110
7111         * symfile.c (decrement_reading_symtab): Add assert.
7112         (increment_reading_symtab): Ditto.
7113
7114 2013-05-09  Joel Brobecker  <brobecker@adacore.com>
7115
7116         * source.c (forward_search_command): Replace call to getc
7117         by call to fgetc.
7118         (reverse_search_command): Likewise.
7119
7120 2013-05-08  Doug Evans  <dje@google.com>
7121
7122         * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
7123         matching test.
7124
7125 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
7126
7127         * sol-thread.c (info_cb): Factorize the code a little.
7128
7129 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
7130
7131         * sol-thread.c (info_cb): Rework the output of the "maintenance
7132         info sol-threads" command a bit.
7133
7134 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
7135
7136         * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
7137         Replace ti.ti_startfunc by ti.ti_pc.
7138
7139 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
7140
7141         * solib-aix.c (solib_aix_free_library_list): New function
7142         for the case where HAVE_LIBEXPAT is not defined.
7143
7144 2013-05-07  Sergio Durigan Junior  <sergiodj@redhat.com>
7145
7146         PR breakpoints/15413:
7147         * breakpoint.c (condition_completer): Simplify the code to
7148         disconsider multiple locations of breakpoints when completing the
7149         "condition" command.
7150
7151 2013-05-07  Pierre Muller  <muller@sourceware.org>
7152
7153         * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
7154         instead of <sys/wait.h>.
7155
7156 2013-05-07  Pierre Muller  <muller@sourceware.org>
7157
7158         * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
7159         trailing new line from warning message.
7160
7161 2013-05-07  Pierre Muller  <muller@sourceware.org>
7162
7163         * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
7164         (PC_SOLIB): Change type from ari_deprecate to ari_regression.
7165
7166 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
7167
7168         * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
7169         error message (ARI fix).
7170
7171 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
7172
7173         * features/library-list-aix.dtd: Replace library-list by
7174         library-list-aix.
7175         * rs6000-nat.c: Replace library-list by library-list-aix
7176         throughout.
7177         * solib-aix.c: Likewise.
7178
7179 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
7180
7181         * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
7182         Renames TARGET_OBJECT_AIX_LIBRARIES.
7183         * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
7184         TARGET_OBJECT_LIBRARIES_AIX throughout.
7185         * solib-aix.c: Likwise.
7186
7187 2013-05-07  Yao Qi  <yao@codesourcery.com>
7188
7189         * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
7190         (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
7191
7192 2013-05-07  Yao Qi  <yao@codesourcery.com>
7193
7194         * solib-dsbt.c (enable_break): Declare.
7195         (dsbt_current_sos): Remove call to enable_break2.
7196         (enable_break2): Rename to enable_break.  Set solib breakpoint
7197         on '_dl_debug_state'.
7198         (enable_break): Remove.
7199
7200 2013-05-07  Luis Machado  <lgustavo@codesourcery.com>
7201
7202         * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
7203         debug state prior to replicating existing hardware watchpoints or
7204         breakpoints.
7205
7206 2013-05-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
7207
7208         * gcore.c (gcore_create_callback): Ignore sections with
7209         separate_debug_objfile_backlink != NULL.
7210
7211 2013-05-06  Sandra Loosemore  <sandra@codesourcery.com>
7212             Andrew Jenner  <andrew@codesourcery.com>
7213             Chung-Lin Tang  <cltang@codesourcery.com>
7214             Julian Brown  <julian@codesourcery.com>
7215
7216         Based on the nios2-elf port from Altera Corporation.
7217
7218         * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
7219         nios2-linux-tdep.o.
7220         (HFILES_NO_SRCDIR): Add nios2-tdep.h.
7221         (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
7222         * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
7223         * nios2-tdep.h: New.
7224         * nios2-tdep.c: New.
7225         * nios2-linux-tdep.c: New.
7226         * features/Makefile (WHICH): Add nios2-linux.
7227         (nios2-linux-expedite): Set.
7228         * features/nios2-cpu.xml: New.
7229         * features/nios2.xml: New.
7230         * features/nios2-linux.xml: New.
7231         * features/nios2.c: New (autogenerated).
7232         * features/nios2-linux.c: New (autogenerated).
7233         * regformats/nios2-linux.dat: New (autogenerated).
7234         * NEWS (Changes since GDB 7.6): Add new Nios II targets
7235         and commands.
7236
7237 2013-05-06  Doug Evans  <dje@google.com>
7238
7239         * symfile.c: Whitespace cleanup.
7240
7241         * solist.h (struct target_so_ops): New member clear_so.
7242         * solib-svr4.c (svr4_clear_so): New function.
7243         (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
7244         * solib.c (clear_so): Renamed from free_so_symbols.
7245         All callers updated.  Call target clear_so if it exists.
7246
7247 2013-05-06  Tom Tromey  <tromey@redhat.com>
7248
7249         * ada-lang.c (ada_value_primitive_packed_val): Don't
7250         call value_incref.
7251         * value.c (set_value_parent): Incref the new parent and decref
7252         the old parent.
7253         (value_copy, value_primitive_field): Use set_value_parent.
7254
7255 2013-05-06  Tom Tromey  <tromey@redhat.com>
7256
7257         * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
7258         (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
7259         if needed.
7260         * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
7261         * dwarf2read.c (write_constant_as_bytes)
7262         (dwarf2_fetch_constant_bytes): New functions.
7263
7264 2013-05-06  Tom Tromey  <tromey@redhat.com>
7265
7266         * dwarf2read.c (dwarf2_const_value_data): Remove unused
7267         parameters.
7268         (dwarf2_const_value_attr): Update.
7269
7270 2013-05-06  Tom Tromey  <tromey@redhat.com>
7271
7272         * somread.c (som_symfile_offsets): Add 'const' to addrs.
7273         * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
7274         * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
7275         Remove declaration.
7276
7277 2013-05-06  Tom Tromey  <tromey@redhat.com>
7278
7279         * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
7280         objfile's obstack.
7281
7282 2013-05-06  Doug Evans  <dje@google.com>
7283
7284         * dbxread.c (process_one_symbol): Constify section_offsets parameter.
7285         * stabsread.h (process_one_symbol): Update declaration.
7286         * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
7287         * elfread.c (elf_symfile_relocate_probe): Ditto.
7288         * psymtab.c (relocate_psymtabs): Ditto.
7289         * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
7290         (objfile_relocate): Ditto.
7291         * objfiles.h (objfile_relocate): Update declaration.
7292         * symfile.c (relative_addr_info_to_section_offsets): Constify
7293         addrs parameter.
7294         (default_symfile_offsets): Ditto.
7295         (syms_from_objfile_1): Constify offsets parameter.
7296         (syms_from_objfile): Ditto.
7297         (symbol_file_add_with_addrs_or_offsets): Ditto.
7298         (symfile_map_offsets_to_segments): Constify data parameter.
7299         * symfile.h (struct quick_symbol_functions): Constify new_offsets,
7300         delta parameters of member relocate.
7301         (struct sym_probe_fns): Constify new_offsets,
7302         delta parameters of member sym_relocate_probe.
7303         (struct sym_fns): Constify section_addr_info parameter of member
7304         sym_offsets.
7305         (relative_addr_info_to_section_offsets): Update declaration.
7306         (default_symfile_offsets): Ditto.
7307         (syms_from_objfile): Ditto.
7308         (symfile_map_offsets_to_segments): Ditto.
7309
7310         * symfile.c (syms_from_objfile_1): Use correct section count when
7311         objfile->sf == NULL.
7312
7313 2013-05-06  Mike Frysinger  <vapier@gentoo.org>
7314
7315         * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
7316
7317 2013-05-06  Doug Evans  <dje@google.com>
7318
7319         * psympriv.h (struct partial_symtab): Augment comment for member
7320         section_offsets.
7321
7322 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7323
7324         Reimplement shared library support on ppc-aix...
7325         * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
7326         * features/library-list-aix.dtd: New file.
7327         * solib-aix.h, solib-aix.c: New file.
7328         * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
7329         (rs6000_find_toc_address_hook): Delete.
7330         (rs6000_push_dummy_call): Rewrite code setting the TOC value.
7331         (rs6000_aix_init_osabi): Register solib_aix_so_ops.
7332         * rs6000-nat.c: Remove "xcoffsolib.h" include.  Include
7333         "xml-utils.h".
7334         (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
7335         (vmap_symtab, fixup_breakpoints): Delete.
7336         (rs6000_xfer_shared_libraries): New function.
7337         (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
7338         (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
7339         (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
7340         (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
7341         (rs6000_xfer_shared_library): New function.
7342         (find_toc_address): Delete.
7343         (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
7344         * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
7345         * xcoffread.c (record_minimal_symbol): Reloate symbol address
7346         before creating minimal symbol.  Adjust function description
7347         accordingly.
7348         (scan_xcoff_symtab): Replace call to
7349         prim_record_minimal_symbol_and_info by call to
7350         record_minimal_symbol.
7351         (xcoff_symfile_offsets): Reimplement mostly as a wrapper
7352         around default_symfile_offsets.
7353         * configure.tgt: Add solib-aix.o to gdb_target_obs for
7354         powerpc-aix targets.
7355         * config/rs6000/nm-rs6000.h: Delete.
7356         * config/powerpc/aix.mh (NAT_FILE): Delete.
7357         (NATDEPFILES): Remove xcoffsolib.o.
7358         * Makefile.in (XMLFILES): Add library-list-aix.dtd.
7359         (ALL_TARGET_OBS): Add solib-aix.o.
7360         (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
7361         config/rs6000/nm-rs6000.h.  Add solib-aix.h.
7362         (ALLDEPFILES): Add solib-aix.c.  Remove xcoffsolib.c.
7363         * xcoffsolib.h, xcoffsolib.c: Delete.
7364
7365         * solib.c (reload_shared_libraries): Remove reference to
7366         SOLIB_CREATE_INFERIOR_HOOK.
7367         * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
7368         (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
7369         (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
7370         comment.
7371         * corelow.c (deprecated_core_resize_section_table): Delete.
7372         * exec.c: Remove include of xcoffsolib.h".
7373         (map_vmap, vmap): Delete.
7374         (exec_close_1): Remove references to vmap.
7375         (exec_file_attach): Remove vmap handling code, and reference
7376         to DEPRECATED_IBM6000_TARGET.
7377         (bfdsec_to_vmap): Delete.
7378         (exec_files_info): Remove block of code handling VMAP.
7379         * infcmd.c (post_create_inferior): Remove reference to
7380         SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
7381         * infrun.c (follow_exec): Remove reference to
7382         SOLIB_CREATE_INFERIOR_HOOK.
7383         * stack.c (print_frame): Remove reference to PC_SOLIB.
7384         * solib-dsbt.c (dsbt_current_sos): Adjust comment.
7385         (dsbt_relocate_main_executable): Likewise.
7386         * solib-frv.c (frv_current_sos): Likewise.
7387
7388 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7389
7390         * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
7391         to target_write_memory and target_read_memory.
7392
7393 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7394
7395         * darwin-nat.c (darwin_setup_fake_stop_event): New function.
7396         (darwin_attach): Adjust using darwin_setup_fake_stop_event.
7397
7398 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7399
7400         * darwin-nat.c: Replace all "%x" instances in format strings
7401         into "0x%x" throughout.
7402
7403 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7404
7405         * darwin-nat.c (darwin_mourn_inferior): Replace call to
7406         gdb_assert by call to MACH_CHECK_ERROR.
7407         (darwin_attach_pid): Raise an error rather than a failed
7408         assertion when various system calls failed.  Report a warning
7409         instead of raising a failed assertion when PREV_NOT is not NULL
7410         after call to mach_port_request_notification.
7411         (darwin_ptrace_me): Raise an error rather than a failed
7412         assertion when read returns nonzero.
7413
7414 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7415
7416         * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
7417
7418 2013-05-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
7419
7420         * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
7421
7422 2013-05-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
7423
7424         * event-top.c (display_gdb_prompt): Call missing do_cleanups.
7425         * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
7426         * symfile.c (symfile_bfd_open): New variable back_to.  Do not leave
7427         a stale cleanup.  Fix double free of NAME.
7428
7429 2013-05-04  Eli Zaretskii  <eliz@gnu.org>
7430
7431         * windows-nat.c (windows_delete_thread): Accept an additional
7432         argument, the thread's exit code, and announce thread death when
7433         print_thread_events is non-zero and we are deleting a thread that
7434         is not the main thread.
7435         (get_windows_debug_event): Pass thread exit code to
7436         windows_delete_thread.
7437
7438 2013-05-03  Kevin Buettner  <kevinb@redhat.com>
7439
7440         * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
7441         (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
7442         (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
7443         (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
7444         (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
7445         (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
7446         (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
7447         (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
7448         (gdbarch_tdep): New struct.
7449         (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
7450         E_NUM_REGS.
7451         (v850e3v5_register_name): New function.
7452         (v850_register_type): v850e3v5 vector registers are 64-bits wide.
7453         (v850_use_struct_convention): Add `gdbarch' parameter.  Add new
7454         code handling the struct return conventions for the RH850 ABI.
7455         Update all callers.
7456         (v850_eight_byte_align_p): New function.
7457         (v850_push_call_dummy): Push structs by value, not by reference
7458         for the RH850 ABI.  Add support for eight byte alignment.
7459         (v850_dbtrap_breakpoint_from_pc): New function.
7460         (v850_gdbarch_init): Add ABI detection code.  Register
7461         v850e3v5_register_name for the v850e3v5 architecture.  Set the
7462         number of registers for v850e3v5.  Register
7463         v850_dbtrap_breakpoint_from_pc as appropriate.
7464         (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
7465
7466 2013-05-03  Doug Evans  <dje@google.com>
7467
7468         * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
7469         of bfd_count_sections.
7470         * solib-target.c (solib_target_relocate_section_addresses): Ditto.
7471         * symfile.c (default_symfile_offsets): Ditto.
7472         (syms_from_objfile_1): Ditto.  Make dummy addrs list an array of
7473         one entry, not bfd_count_sections entries.
7474
7475 2013-05-03  Kevin Buettner  <kevinb@redhat.com>
7476
7477         * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
7478         `save' and `restore' register groups.  Don't include SPL
7479         or SPH in these groups.
7480         (rl78_dwarf_reg_to_regnum):  Adjust mapping for
7481         RL78_PC_REGNUM.  Add mappings for RL78_PSW_REGNUM,
7482         RL78_ES_REGNUM, and RL78_CS_REGNUM.
7483         (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4.  Invoke
7484         dwarf2_append_unwinders().
7485
7486 2013-05-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
7487
7488         * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
7489         ignore SIGINT and SIGTRAP in case these internal signals are
7490         caught explicitely.
7491
7492 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
7493
7494         * darwin-nat.c (darwin_read_write_inferior): Change types
7495         of parameters rdaddr and wraddr to "gdb_byte *". Change type
7496         of copy_count to "mach_msg_type_number_t".
7497         (darwin_read_dyld_info): Change type of parameter
7498         rdaddr to "gdb_byte *".
7499
7500 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
7501
7502         * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
7503         of &info->load_map from "char *" to "gdb_byte *".
7504
7505 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
7506
7507         * ia64-tdep.c (ia64_access_fpreg): Change cast of val
7508         from "char *" to "gdb_byte *".
7509         (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
7510
7511 2013-04-30  Doug Evans  <dje@google.com>
7512
7513         * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
7514         (init_cutu_and_read_dies): Flag a complaint, not error, for bad
7515         DWO stub.  If DWO isn't found, just use stub.
7516         (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
7517
7518         * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
7519         calling init_cutu_and_read_dies.
7520
7521 2013-03-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
7522
7523         * target-descriptions.c (maint_print_c_tdesc_cmd):
7524         Add case to parse structures as register types and
7525         bitfields.
7526
7527 2013-04-30  Walfred Tedeschi  <walfred.tedeschi@intel.com>
7528
7529         * MAINTAINERS (Write After Approval): Add myself to the list.
7530
7531 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
7532
7533         * sol-thread.c (rw_common): Change type of parameter "buf"
7534         to "gdb_byte *".
7535         (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
7536         rw_common to "gdb_byte *" instead of "char *".
7537
7538 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
7539
7540         * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
7541         of local variable msym to const struct bound_minimal_symbol.
7542         Adjust use accordingly.
7543         [ti.ti_state == TD_THR_SLEEP]: Likewise.
7544
7545 2013-04-30  Samuel Thibault  <samuel.thibault@gnu.org>
7546
7547         * i386gnu-nat.c (CREG_OFFSET): New macro.
7548         (creg_offset): New array.
7549         (CREG_ADDR): Use creg_offset instead of reg_offset.
7550
7551 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
7552
7553         * mep-tdep.c (mep_write_pc): Delete.
7554         (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
7555         Add call to set_gdbarch_pc_regnum.
7556
7557 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
7558
7559         * common/filestuff.c: Replace #include <dirent.h> by
7560         #include "gdb_dirent.h".
7561
7562 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
7563
7564         * common/filestuff.c: Replace #include <sys/stat.h> by
7565         #include "gdb_stat.h".
7566
7567 2013-04-29  Pierre Muller  <muller@sourceware.org>
7568
7569         * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
7570         editCase function rule.
7571         (get_DW_AT_signature_type): Likewise.
7572
7573 2013-04-29  Joel Brobecker  <brobecker@adacore.com>
7574
7575         * m32r-tdep.c (m32r_write_pc): Delete.
7576         (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
7577         Add call to set_gdbarch_pc_regnum.
7578
7579 2013-04-29  Pierre Muller  <muller@sourceware.org>
7580
7581         * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
7582
7583 2013-04-29  Joel Brobecker  <brobecker@adacore.com>
7584
7585         * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
7586
7587 2013-04-28  Yao Qi  <yao@codesourcery.com>
7588
7589         * solib-dsbt.c (fetch_loadmap): Re-indent.
7590         (displacement_from_map, enable_break2): Likewise.
7591         (dsbt_relocate_section_addresses): Likewise.
7592
7593 2013-04-26  Joel Brobecker  <brobecker@adacore.com>
7594
7595         GDB 7.6 released.
7596
7597 2013-04-25  Andreas Kaufmann  <Andreas.Kaufmann@synopsys.com>
7598
7599         PR corefiles/14983:
7600         * dwarf2read.c (process_full_comp_unit): Always create a static
7601         block.
7602
7603 2013-04-25  Hui Zhu  <hui@codesourcery.com>
7604
7605         * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
7606         to loc->cmd_bytecode.
7607
7608 2013-04-24  Doug Evans  <dje@google.com>
7609
7610         * dwarf2read.c (setup_type_unit_groups): Fix comment.
7611
7612 2013-04-22  Keith Seitz  <keiths@redhat.com>
7613
7614         * tracepoint.c (trace_save):  Call the writer's start method.
7615
7616 2013-04-24  Muhammad Bilal  <mbilal@codesourcery.com>
7617
7618         PR gdb/10462
7619         * cli/cli-decode.c (lookup_command): Show an error if there is no space
7620         before argument.
7621
7622 2013-04-23  Tom Tromey  <tromey@redhat.com>
7623
7624         * common/filestuff.c: Check USE_WIN32API before including
7625         sys/socket.h.
7626         (HAVE_F_GETFD): New define.
7627         (mark_cloexec): Check HAVE_F_GETFD.
7628         (gdb_open_cloexec): Change 'mode' to unsigned long.
7629         (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
7630         (gdb_pipe_cloexec): Check HAVE_PIPE.
7631         * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
7632         long.
7633
7634 2013-04-23  Hui Zhu  <hui@codesourcery.com>
7635
7636         PR gdb/15293
7637         * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
7638
7639 2013-04-23  Hui Zhu  <hui@codesourcery.com>
7640
7641         PR gdb/15165
7642         * breakpoint.c (dprintf_print_recreate): New.
7643         (save_breakpoints): Let it not save dprintf commands.
7644         (initialize_breakpoint_ops): Set dprintf_print_recreate.
7645
7646 2013-04-22  Tom Tromey  <tromey@redhat.com>
7647
7648         PR gdb/7912:
7649         * Makefile.in (SFILES): Add filestuff.c
7650         (COMMON_OBS): Add filestuff.o.
7651         (filestuff.o): New target.
7652         * auto-load.c (auto_load_objfile_script_1): Use
7653         gdb_fopen_cloexec.
7654         * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
7655         * cli/cli-cmds.c (shell_escape): Call close_most_fds.
7656         * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
7657         * common/agent.c (gdb_connect_sync_socket): Use
7658         gdb_socket_cloexec.
7659         * common/filestuff.c: New file.
7660         * common/filestuff.h: New file.
7661         * common/linux-osdata.c (linux_common_core_of_thread)
7662         (command_from_pid, commandline_from_pid, print_source_lines)
7663         (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
7664         (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
7665         gdb_fopen_cloexec.
7666         * common/linux-procfs.c (linux_proc_get_int)
7667         (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
7668         * config.in, configure: Rebuild.
7669         * configure.ac: Don't check for sys/socket.h.  Check for
7670         fdwalk, pipe2.
7671         * corelow.c (core_open): Use gdb_open_cloexec.
7672         * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
7673         * fork-child.c (fork_inferior): Call close_most_fds.
7674         * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
7675         * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
7676         * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
7677         Use gdb_fopen_cloexec.
7678         (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
7679         gdb_open_cloexec.
7680         (linux_async_pipe): Use gdb_pipe_cloexec.
7681         * remote-fileio.c (remote_fileio_func_open): Use
7682         gdb_open_cloexec.
7683         * remote.c (remote_file_put, remote_file_get): Use
7684         gdb_fopen_cloexec.
7685         * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
7686         close_most_fds.
7687         * ser-tcp.c (net_open): Use gdb_socket_cloexec.
7688         * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
7689         * solib.c (solib_find): Use gdb_open_cloexec.
7690         * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
7691         * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
7692         (tfile_open): Use gdb_open_cloexec.
7693         * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
7694         * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
7695         * xml-support.c (xml_fetch_content_from_file): Use
7696         gdb_fopen_cloexec.
7697         * main.c (captured_main): Call notice_open_fds.
7698
7699 2013-04-22  Edjunior Machado  <emachado@linux.vnet.ibm.com>
7700
7701         * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
7702         'char *' to 'gdb_byte *'.
7703         (gdbsim_store_register): Change the type of 'tmp' from 'char' to
7704         'gdb_byte'.
7705
7706 2013-04-22  Yao Qi  <yao@codesourcery.com>
7707
7708         * infrun.c: Fix typo in comment.
7709
7710 2013-04-22  Andrew Haley  <aph@redhat.com>
7711
7712         * arm-tdep.c (BranchDest): Cast result as "unsigned long",
7713         instead of "long".
7714
7715 2013-04-20  Yao Qi  <yao@codesourcery.com>
7716
7717         * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
7718         'char *' to 'gdb_byte *'.  Cast the return value of
7719         'bt_ctf_get_char_array' to 'gdb_byte *'.
7720
7721 2013-04-19  Pedro Alves  <palves@redhat.com>
7722
7723         * configure.ac (build_warnings): Replace -Wno-pointer-sign with
7724         -Wpointer-sign.
7725         * configure: Regenerate.
7726
7727 2013-04-19  Pedro Alves  <palves@redhat.com>
7728
7729         * ser-tcp.c (net_read_prim): Cast second argument to recv to
7730         'void *'.
7731
7732 2013-04-19  Pedro Alves  <palves@redhat.com>
7733
7734         * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
7735         Change type of 'myaddr' parameter to gdb_byte pointer.
7736         (monitor_write_memory_longlongs): Likewise.  Cast 'myaddr' pointer
7737         to 'long long' pointer instead of to 'unsigned long long'.
7738         (monitor_write_memory_block, monitor_read_memory_single)
7739         (monitor_read_memory): Change type of 'myaddr' parameter to
7740         gdb_byte pointer.
7741
7742 2013-04-19  Pedro Alves  <palves@redhat.com>
7743
7744         * record.c (validate_history_size): Make parameter 'setting'
7745         unsigned.
7746
7747 2013-04-19  Pedro Alves  <palves@redhat.com>
7748
7749         * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
7750         to 'gdb_byte *'.
7751
7752 2013-04-19  Pedro Alves  <palves@redhat.com>
7753
7754         * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
7755         local to int.
7756
7757 2013-04-19  Pedro Alves  <palves@redhat.com>
7758
7759         * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
7760         * ada-tasks.c (read_fat_string_value): Likewise.
7761
7762 2013-04-19  Pedro Alves  <palves@redhat.com>
7763
7764         * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
7765         unsigned.  Pass 'tmp' to safe_read_uleb128 instead of the signed
7766         'offset', and adjust.
7767
7768 2013-04-19  Pedro Alves  <palves@redhat.com>
7769
7770         * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
7771         (read_index_from_section): Add cast to 'char *'.
7772
7773 2013-04-19  Pedro Alves  <palves@redhat.com>
7774
7775         * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
7776
7777 2013-04-19  Pedro Alves  <palves@redhat.com>
7778
7779         * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
7780
7781 2013-04-19  Pedro Alves  <palves@redhat.com>
7782
7783         * record-full.c (record_full_get_bookmark): Change local 'ret'
7784         type to char * and add cast to gdb_byte *.
7785         (record_full_goto_bookmark): Handle 'bookmark' argument as a
7786         string.
7787         * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
7788
7789 2013-04-19  Pedro Alves  <palves@redhat.com>
7790
7791         * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
7792         * python/py-prettyprint.c (print_string_repr): Change type of
7793         'output' local to char *.  Add cast to gdb_byte * in
7794         LA_PRINT_STRING call.
7795         (print_children): Change type of 'output' local to char *.
7796         * python/py-value.c (valpy_string): Add cast to const char * in
7797         PyUnicode_Decode call.
7798
7799 2013-04-19  Pedro Alves  <palves@redhat.com>
7800
7801         * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
7802         and change its type to 'const char *'.  Adjust.
7803         (mips_send_packet): Add cast to 'char *', and remove cast to
7804         'unsigned char *'.
7805         (mips_receive_packet): Remove cast to 'unsigned char *'.
7806         (mips_load_srec): Use bfd_byte.
7807         (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
7808         (pmon_checkset): Make 'value' parameter unsigned.
7809
7810 2013-04-19  Pedro Alves  <palves@redhat.com>
7811
7812         * common/agent.c (agent_run_command): Add cast to gdb_byte *.
7813
7814 2013-04-19  Pedro Alves  <palves@redhat.com>
7815
7816         * remote.c (remote_write_bytes_aux, compare_sections_command)
7817         (remote_read_qxfer)
7818         (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
7819         (remote_hostio_readlink, remote_bfd_iovec_pread)
7820         (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
7821         binary buffer, and char when buffer is used as string.
7822         * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
7823         (trace_save, tfile_open, traceframe_walk_blocks)
7824         (tfile_fetch_registers): Likewise.
7825
7826 2013-04-19  Pedro Alves  <palves@redhat.com>
7827
7828         * ser-base.c (ser_base_write): Change prototype -- take 'void *'
7829         buffer and size_t size.  Adjust.
7830         * ser-base.h (ser_base_write): Adjust.
7831         * ser-go32.c (cnts): Change type to size_t.
7832         (dos_write): Change prototype -- take 'void *'
7833         buffer and size_t size.  Adjust.
7834         (dos_info): Print elements of 'cnts' as unsigned long.
7835         * serial.c (serial_write): Likewise.
7836         * serial.h (serial_write): Adjust.
7837         (struct serial_ops) <write>: Change prototype -- take 'void *'
7838         buffer and size_t size.  Adjust.
7839
7840 2013-04-19  Pedro Alves  <palves@redhat.com>
7841
7842         * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
7843         gdb_byte *.
7844         * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
7845
7846 2013-04-19  Pedro Alves  <palves@redhat.com>
7847
7848         * alpha-tdep.c (alpha_extract_return_value): Use
7849         regcache_cooked_read_unsigned to read 'v0'.
7850
7851 2013-04-19  Pedro Alves  <palves@redhat.com>
7852
7853         * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
7854         parameters 'at', 'as' and 'offset' to uint32_t.
7855
7856 2013-04-19  Pedro Alves  <palves@redhat.com>
7857
7858         * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
7859         'is64' to signed 'int'.
7860
7861 2013-04-19  Pedro Alves  <palves@redhat.com>
7862
7863         * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
7864         parameter to int *.
7865
7866 2013-04-19  Pedro Alves  <palves@redhat.com>
7867
7868         * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
7869         'insnbuf' buffer type to unsigned int[].
7870
7871 2013-04-19  Pedro Alves  <palves@redhat.com>
7872
7873         * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
7874
7875 2013-04-19  Pedro Alves  <palves@redhat.com>
7876
7877         * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
7878         unsigned long *.
7879
7880 2013-04-19  Pedro Alves  <palves@redhat.com>
7881
7882         * alpha-tdep.c (heuristic_fence_post): Change type to int.
7883         (alpha_heuristic_proc_start): Adjust to check -1 instead of
7884         UINT_MAX.
7885         * mips-tdep.c (heuristic_fence_post): Change type to int.
7886         (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
7887
7888 2013-04-19  Pedro Alves  <palves@redhat.com>
7889
7890         * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
7891         (struct gdbarch_tdep) <cris_version>: Make unsigned.
7892         (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
7893
7894 2013-04-19  Pedro Alves  <palves@redhat.com>
7895
7896         * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'.  Use
7897         it to get a string view of the byte buffer.
7898         * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
7899         type to gdb_byte *.  Adjust.
7900         * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
7901         Change local to char *.
7902         * solib-darwin.c (find_program_interpreter): Change return type to
7903         char *.  Adjust.
7904         (darwin_solib_get_all_image_info_addr_at_init): Adjust.
7905         * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
7906         * solib-frv.c (enable_break2): Change local 'buf' to char *.
7907         * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
7908         * solib-svr4.c (find_program_interpreter): Change return type to
7909         char *.  Adjust.
7910         (enable_break): Change local 'interp_name' to char *.
7911         * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
7912         * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
7913         (spu_pseudo_register_write_spu): Use char for string buffer.
7914         Adjust.
7915         (info_spu_event_command, info_spu_signal_command): Add casts to
7916         'char *'.
7917
7918 2013-04-19  Pedro Alves  <palves@redhat.com>
7919
7920         * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
7921         gdb_byte[].
7922         (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
7923         * ada-lang.c (ada_value_assign): Use gdb_byte.
7924         * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
7925         (alphanbsd_sigtramp_offset): Use gdb_byte.
7926         * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
7927         (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
7928         (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
7929         (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
7930         (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
7931         * arm-tdep.c (arm_stub_unwind_sniffer)
7932         (arm_displaced_init_closure): Use gdb_byte.
7933         (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
7934         (arm_default_thumb_le_breakpoint)
7935         (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
7936         * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
7937         thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
7938         * arm-wince-tdep.c (arm_wince_le_breakpoint)
7939         (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
7940         * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
7941         (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
7942         (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
7943         * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
7944         (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
7945         * cris-tdep.c (push_stack_item, cris_push_dummy_call)
7946         (cris_store_return_value, cris_extract_return_value): Use
7947         gdb_byte.
7948         (constraint): Change type of parameter to char * from signed
7949         char*.  Use gdb_byte.
7950         * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
7951         of local buffer to gdb_byte *.
7952         * dwarf2read.c (read_index_from_section): Use gdb_byte.
7953         (create_dwp_hash_table): Change type of locals to gdb_byte *.
7954         (add_address_entry): Change type of local buffer to gdb_byte[].
7955         * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
7956         (frv_push_dummy_call): Use gdb_byte.
7957         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
7958         (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
7959         (hppa_hpux_supply_save_state): Use gdb_byte.
7960         * hppa-tdep.c (hppa32_push_dummy_call)
7961         (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
7962         * ia64-tdep.c (extract_bit_field, replace_bit_field)
7963         (slotN_contents, replace_slotN_contents): Change type of parameter
7964         to gdb_byte *.
7965         (fetch_instruction, ia64_pseudo_register_write)
7966         (ia64_register_to_value, ia64_value_to_register)
7967         (ia64_extract_return_value, ia64_store_return_value)
7968         (ia64_push_dummy_call): Use gdb_byte.
7969         * m32c-tdep.c (m32c_return_value): Remove cast.
7970         * m68hc11-tdep.c (m68hc11_pseudo_register_write)
7971         (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
7972         gdb_byte.
7973         * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
7974         * mn10300-tdep.c (mn10300_store_return_value)
7975         (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
7976         gdb_byte.
7977         * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
7978         (moxie_process_record): Remove casts.
7979         * ppc-ravenscar-thread.c (supply_register_at_address)
7980         (ppc_ravenscar_generic_store_registers): Use gdb_byte.
7981         * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
7982         * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
7983         * remote-mips.c (mips_xfer_memory): Use gdb_byte.
7984         * remote.c (compare_sections_command): Use gdb_byte.
7985         * score-tdep.c (score7_free_memblock): Change type of parameter to
7986         gdb_byte *.
7987         * sh-tdep.c (sh_justify_value_in_reg): Change return type to
7988         gdb_byte *.  Use gdb_byte.
7989         (sh_push_dummy_call_fpu): Use gdb_byte.
7990         (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
7991         (sh_store_return_value_nofpu, sh_store_return_value_fpu)
7992         (sh_register_convert_to_virtual, sh_register_convert_to_raw):
7993         Change parameter type to 'gdb_byte *'.  Use gdb_byte.
7994         (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
7995         * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
7996         (sh64_store_return_value, sh64_register_convert_to_virtual):
7997         Change parameter type to 'gdb_byte *'.  Use gdb_byte.
7998         (sh64_pseudo_register_write): Use gdb_byte.
7999         * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
8000         * solib-irix.c (fetch_lm_info): Likewise.  Use gdb_byte for byte
8001         buffer.
8002         (irix_current_sos): Use gdb_byte.
8003         * solib-som.c (som_current_sos): Use gdb_byte.
8004         * sparc-ravenscar-thread.c (supply_register_at_address)
8005         (sparc_ravenscar_generic_store_registers): Use gdb_byte.
8006         * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
8007         * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
8008         * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
8009         'gdb_byte *'.
8010         * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
8011         'gdb_byte *'.
8012         * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
8013         * xstormy16-tdep.c (xstormy16_extract_return_value)
8014         (xstormy16_store_return_value): Change parameter type to
8015         'gdb_byte *'.  Adjust.
8016         (xstormy16_push_dummy_call): Use gdb_byte.
8017         * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
8018         (call0_analyze_prologue, execute_code): Use gdb_byte.
8019
8020 2013-04-19  Vladimir Kargov <kargov@gmail.com>
8021             Pedro Alves  <palves@redhat.com>
8022
8023         * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
8024         value contents.
8025
8026 2013-04-17  Doug Evans  <dje@google.com>
8027
8028         * dwarf2read.c (struct signatured_type): New member type.
8029         (struct attribute): Replace member signatured_type with signature.
8030         (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
8031         (read_call_site_scope): Call follow_die_ref instead of
8032         follow_die_ref_or_sig.
8033         (read_structure_type): Rewrite handling of signatured types.
8034         (read_enumeration_type): Ditto.
8035         (read_attribute_value): Update.
8036         (build_error_marker_type): New function.
8037         (lookup_die_type): Add assert.  Rewrite handling of signatured types.
8038         Don't call error for bad types, just build an error marker type.
8039         (dump_die_shallow): Update.
8040         (follow_die_sig_1): Renamed from follow_die_sig.
8041         Don't call error for bad types, instead return NULL.
8042         (follow_die_sig): New function.
8043         (get_signatured_type, get_DW_AT_signature_type): New functions.
8044
8045 2013-04-17  Yufeng Zhang  <yufeng.zhang@arm.com>
8046
8047         * aarch64-tdep.c (aarch64_write_pc): Removed.
8048         (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
8049         function.
8050
8051 2013-04-17  Yao Qi  <yao@codesourcery.com>
8052
8053         * top.c (print_gdb_configuration): Print configure-time
8054         parameter on using libbabeltrace or not.
8055
8056 2013-04-16  Pedro Alves  <palves@redhat.com>
8057
8058         * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
8059
8060 2013-04-16  Pedro Alves  <palves@redhat.com>
8061
8062         * common/glibc_thread_db.h: Update from upstream glibc
8063         (git 568035b7874a099087b77f7bba3e36a1173787b0).
8064
8065 2013-04-16  Pedro Alves  <palves@redhat.com>
8066
8067         * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
8068         * common/glibc_thread_db.h: ... this new file ...
8069         * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
8070
8071 2013-04-16  Will Newton  <will.newton@gmail.com>
8072             Pedro Alves  <palves@redhat.com>
8073
8074         PR build/11881
8075
8076         * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
8077         (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
8078         HAVE_THREAD_DB_H.
8079
8080 2013-04-16  Pedro Alves  <palves@redhat.com>
8081             Eli Zaretskii  <eliz@gnu.org>
8082
8083         * NEWS: Mention "set foo unlimited".
8084
8085 2013-04-15  Doug Evans  <dje@google.com>
8086
8087         * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
8088         (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
8089         (create_dwo_cu_reader): Renamed from
8090         create_dwo_debug_info_hash_table_reader.
8091         (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
8092         Remove support for multiple CUs in a DWO file.
8093         (open_and_init_dwo_file, lookup_dwo_cutu): Update.
8094
8095         * dwarf2read.c (create_debug_types_hash_table): Use hex_string
8096         instead of phex.
8097         (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
8098         (create_dwo_in_dwp): Ditto.
8099
8100 2013-04-15  Tom Tromey  <tromey@redhat.com>
8101
8102         * NEWS: Move recent entries into "since 7.6" section.
8103
8104 2013-04-15  Tom Tromey  <tromey@redhat.com>
8105
8106         PR c++/13588:
8107         * NEWS: Update.
8108         * break-catch-throw.c (struct exception_catchpoint)
8109         <exception_rx, pattern>: New fields.
8110         (fetch_probe_arguments, dtor_exception_catchpoint)
8111         (check_status_exception_catchpoint)
8112         (print_one_detail_exception_catchpoint): New functions.
8113         (handle_gnu_v3_exceptions): Add "except_rx" argument.
8114         Compile regular expression if needed.
8115         (extract_exception_regexp): New function.
8116         (catch_exception_command_1): Use extract_exception_regexp.
8117         (compute_exception): Use fetch_probe_arguments.
8118         (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
8119         and check_status fields.
8120         * cp-abi.c (cplus_typename_from_type_info): New function.
8121         * cp-abi.h (cplus_typename_from_type_info): Declare.
8122         (struct cp_abi_ops) <get_typename_from_type_info>: New field.
8123         * gdb_regex.h (compile_rx_or_error): Declare.
8124         * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
8125         comment.
8126         (init_gnuv3_ops): Set get_type_from_type_info field.
8127         * probe.c (compile_rx_or_error): Move...
8128         * utils.c (compile_rx_or_error): ... here.
8129
8130 2013-04-15  Tom Tromey  <tromey@redhat.com>
8131
8132         PR c++/15176:
8133         * NEWS: Update.
8134         * break-catch-throw.c (compute_exception): New function.
8135         (exception_funcs): New global.
8136         (_initialize_break_catch_throw): Create $_exception.
8137         * cp-abi.c (cplus_type_from_type_info): New function.
8138         * cp-abi.h (cplus_type_from_type_info): Declare.
8139         (struct cp_abi_ops) <get_type_from_type_info>: New field.
8140         * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
8141         (gnuv3_get_type_from_type_info): New functions.
8142         (init_gnuv3_ops): Set get_type_from_type_info ABI field.
8143
8144 2013-04-15  Tom Tromey  <tromey@redhat.com>
8145
8146         * break-catch-throw.c (struct exception_names): New.
8147         (exception_functions): Change type.
8148         (re_set_exception_catchpoint): Look for SDT probes.
8149
8150 2013-04-15  Tom Tromey  <tromey@redhat.com>
8151
8152         PR c++/10119:
8153         * break-catch-throw.c (exception_functions): New global.
8154         (gnu_v3_exception_catchpoint_ops): Move earlier.
8155         (struct exception_catchpoint): New.
8156         (classify_exception_breakpoint): Rewrite.
8157         (re_set_exception_catchpoint): New function.
8158         (handle_gnu_v3_exceptions): Return void.  Use init_catchpoint.
8159         Allocate a struct exception_catchpoint.
8160         (catch_exception_command_1): Update.
8161         (initialize_throw_catchpoint_ops): Set 're_set' method.
8162
8163 2013-04-15  Tom Tromey  <tromey@redhat.com>
8164
8165         * Makefile.in (SFILES): Add break-catch-throw.c
8166         (COMMON_OBS): Add break-catch-throw.o.
8167         * break-catch-throw.c: New file.
8168         * breakpoint.c: Move exception-catching code to new file.
8169         (ep_parse_optional_if_clause): No longer static.
8170         * breakpoint.h (ep_parse_optional_if_clause): Declare.
8171
8172 2013-04-15  Tom Tromey  <tromey@redhat.com>
8173
8174         PR c++/9065:
8175         * NEWS: Update.
8176         * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
8177         * c-exp.y (TYPEID): New token.
8178         (exp): Add new TYPEID productions.
8179         (ident_tokens): Add "typeid".
8180         * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
8181         * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
8182         (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
8183         * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
8184         * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
8185         case.
8186         * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
8187         (build_std_type_info_type, gnuv3_get_typeid_type)
8188         (gnuv3_get_typeid): New functions.
8189         (init_gnuv3_ops): Initialize std_type_info_gdbarch_data.  Set
8190         new fields on ABI object.
8191         * parse.c (operator_length_standard) <OP_TYPEID>: New case.
8192         * std-operator.def (OP_TYPEID): New.
8193
8194 2013-04-15  Tom Tromey  <tromey@redhat.com>
8195
8196         * elfread.c (elf_symtab_read): Install versioned symbol under
8197         unversioned name as well.
8198
8199 2013-04-15  Tom Tromey  <tromey@redhat.com>
8200
8201         PR c++/11990:
8202         * c-lang.c (cplus_language_defn): Use gdb_demangle.
8203         * c-typeprint.c (c_type_print_base): Use gdb_demangle.
8204         * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
8205         (gdb_demangle): New function.
8206         * cp-support.h (gdb_demangle): Declare.
8207         * dwarf2read.c (dwarf2_physname, fixup_partial_die)
8208         (dwarf2_name): Use gdb_demangle.
8209         * gdbtypes.c (check_stub_method): Use gdb_demangle.
8210         * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
8211         suffixes from name.
8212         (gnuv3_print_method_ptr): Use gdb_demangle.
8213         * jv-lang.c (java_demangle): Use gdb_demangle.
8214         * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
8215         * language.c (unk_lang_demangle): Use gdb_demangle.
8216         * symtab.c (symbol_find_demangled_name)
8217         (demangle_for_lookup): Use gdb_demangle.
8218
8219 2013-04-15  Tom Tromey  <tromey@redhat.com>
8220
8221         PR c++/12824:
8222         * NEWS: Update.
8223         * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
8224         New constant.
8225         (classify_exception_breakpoint): New function.
8226         (print_it_exception_catchpoint, print_one_exception_catchpoint)
8227         (print_mention_exception_catchpoint)
8228         (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
8229         (catch_exception_command_1): Handle "rethrow" catchpoint.
8230         (catch_rethrow_command): New function.
8231         (_initialize_breakpoint): Add "catch rethrow" command.
8232
8233 2013-04-15  Pierre Muller  <muller@sourceware.org>
8234
8235         * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
8236         set_gdbarch_write_pc as deprecated anymore.
8237
8238 2013-04-15  Joel Brobecker  <brobecker@adacore.com>
8239
8240         * spu-tdep.c (spu_write_pc): Add empty line after local variable
8241         declarations.
8242
8243 2013-04-13  Yao Qi  <yao@codesourcery.com>
8244
8245         * ctf.c (_initialize_ctf): Include "completer.h".
8246         Call add_target_with_completer instead of add_target.
8247
8248 2013-04-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
8249
8250         Fix GDB regression related to PR binutils/14813.
8251         * jit.c (mem_bfd_iovec_close): Return 0 for success.
8252         * minidebug.c (lzma_close): Add return value comment.
8253         * remote.c (remote_bfd_iovec_close): Return 0 for success.
8254         * solib-spu.c (spu_bfd_iovec_close): Likewise.
8255         * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
8256
8257 2013-04-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
8258
8259         * config.in: Regenerate.
8260
8261 2013-04-12  Tom Tromey  <tromey@redhat.com>
8262
8263         * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
8264         const.
8265         * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
8266         (struct die_reader_specs) <buffer>: Likewise.
8267         (die_reader_func_ftype): Make 'info_ptr' const.
8268         (struct line_header) <include_dirs, statement_program_start,
8269         statement_program_end>: Now const.
8270         (struct file_entry) <name>: Likewise.
8271         (struct partial_die_info) <sibling>: Likewise.
8272         (struct dwarf_block) <data>: Likewise.
8273         (dwarf2_read_section): Remove cast.
8274         (dwarf2_get_section_info): Make 'bufp' const.
8275         (read_index_from_section): Constify.
8276         (dw2_get_file_names_reader): Make 'info_ptr' const.
8277         (dw2_get_primary_filename_reader): Likewise.
8278         (read_comp_unit_head): Make 'info_ptr' and return type const.
8279         (read_and_check_comp_unit_head, read_and_check_type_unit_head):
8280         Likewise.
8281         (read_abbrev_offset): Constify.
8282         (dwarf2_create_include_psymtab): Make 'name' const.
8283         (create_debug_types_hash_table): Update.
8284         (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
8285         (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
8286         Constify.
8287         (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
8288         (load_partial_comp_unit_reader): Make 'info_ptr' const.
8289         (read_comp_units_from_section): Constify.
8290         (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
8291         (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
8292         const.
8293         (dwarf2_compute_name, setup_type_unit_groups): Constify.
8294         (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
8295         (create_dwp_hash_table, dwarf2_ranges_read)
8296         (dwarf2_record_block_ranges): Constify.
8297         (read_die_and_children, read_die_and_siblings_1)
8298         (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
8299         const.
8300         (read_full_die_1, read_full_die): Make 'info_ptr' const.
8301         (abbrev_table_read_table): Constify.
8302         (load_partial_dies): Make 'info_ptr' const.
8303         (read_partial_die, read_attribute_value, read_attribute): Make
8304         'info_ptr' and return type const.
8305         (read_address, read_initial_length)
8306         (read_checked_initial_length_and_offset, read_offset)
8307         (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
8308         const.
8309         (read_direct_string): Make 'buf' and return type const.
8310         (read_indirect_string_at_offset, read_indirect_string_from_dwz)
8311         (read_indirect_string): Make return type const.
8312         (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
8313         (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
8314         'info_ptr' const.
8315         (read_str_index): Make return type const.
8316         (add_include_dir): Make 'include_dir' const.
8317         (add_file_name): Make 'name' const.
8318         (dwarf_decode_line_header): Constify.
8319         (psymtab_include_file_name): Make return type const.
8320         (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
8321         (dwarf2_start_subfile): Make 'filename' const.
8322         (dwarf2_const_value_attr): Make 'bytes' const.
8323         (read_signatured_type_reader): Make 'info_ptr' const.
8324         (decode_locdesc): Constify.
8325         (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
8326         const.
8327         (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
8328         'mac_end', and return type const.
8329         (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
8330         (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
8331         type const.
8332         (per_cu_header_read_in): Constify.
8333         * symfile.h (dwarf2_get_section_info): Update.
8334
8335 2013-04-12  Tom Tromey  <tromey@redhat.com>
8336
8337         * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
8338
8339 2013-04-12  Eli Zaretskii  <eliz@gnu.org>
8340
8341         * NEWS: Mention "show configuration", --configuration.
8342         * top.c (print_gdb_configuration): New function, displays the
8343         details about GDB configure-time parameters.
8344         (print_gdb_version): Mention "show configuration".
8345         * cli/cli-cmds.c (show_configuration): New function.
8346         (_initialize_cli_cmds): Add the "show configuration" command.
8347         * main.c (captured_main) <print_configuration>: New static var.
8348         <long_options>: Use it.
8349         If --configuration was given, call print_gdb_configuration.
8350
8351 2013-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8352             Pedro Alves  <palves@redhat.com>
8353
8354         * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
8355         (generated_files): Add gcore.
8356         (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
8357         HAVE_NATIVE_GCORE_HOST.
8358         (gcore): New.
8359         * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
8360         * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
8361         config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
8362         config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
8363         config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
8364         Add HAVE_NATIVE_GCORE_HOST.
8365         * configure: Regenerate.
8366         * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
8367         New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME.  New
8368         AC_CONFIG_FILES for gcore.
8369         * configure.tgt: Add gdb_have_gcore to the initial comment.  Set
8370         gdb_have_gcore.
8371         * gdb_gcore.sh: Rename to ...
8372         * gcore.in: ... here.  Remove gcore.sh comment.  Use GDB_TRANSFORM_NAME
8373         and GCORE_TRANSFORM_NAME substitutions.
8374
8375         Fix parsing tabs in ${gdb_target_obs}.
8376         * configure.tgt (gdb_have_gcore): Replace case with for and if.
8377
8378 2013-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8379
8380         * remote.c (unpush_and_perror): Add output message final dot.
8381
8382 2013-04-11  Yao Qi  <yao@codesourcery.com>
8383
8384         * tracepoint.c (tfile_interp_line): Fit parameters line and
8385         utpp in one line.
8386
8387 2013-04-10  Joel Brobecker  <brobecker@adacore.com>
8388
8389         * solib.c (solib_map_sections): Remove code overwriting
8390         SO->SO_NAME with the bfd's filename.
8391
8392 2013-04-10  Pedro Alves  <palves@redhat.com>
8393
8394         * cli/cli-decode.c (integer_unlimited_completer): New function.
8395         (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
8396         (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
8397         completer.
8398         * cli/cli-setshow.c: Include "cli/cli-utils.h".
8399         (is_unlimited_literal): New function.
8400         (do_set_command): Handle literal "unlimited" arguments.
8401         * frame.c (_initialize_frame) <set backtrace limit>: Document
8402         "unlimited".
8403         * printcmd.c (_initialize_printcmd) <set print
8404         max-symbolic-offset>: Add help text.
8405         * record-full.c (_initialize_record_full) <set record full
8406         insn-number-max>: Likewise.
8407         * record.c (_initialize_record) <set record
8408         instruction-history-size, set record function-call-history-size>:
8409         Add help text.
8410         * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
8411         help text.
8412         * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
8413         Likewise.
8414         * source.c (_initialize_source) <set listsize>: Add help text.
8415         * utils.c (initialize_utils) <set height, set width>: Likewise.
8416         <set pagination>: Mention "set height unlimited".
8417         * valprint.c (_initialize_valprint) <set print elements, set print
8418         repeats>: Document "unlimited".
8419
8420 2013-04-10  Pedro Alves  <palves@redhat.com>
8421
8422         * cli/cli-cmds.c (quit_command): Call query_if_trace_running
8423         instead of disconnect_tracing.
8424         * infcmd.c (detach_command, disconnect_command): Call
8425         query_if_trace_running.  Adjust.
8426         * top.c: Include "tracepoint.h".
8427         (quit_target): Delete.  Contents moved ...
8428         (quit_force): ... here.  Wrap each stage of teardown in
8429         TRY_CATCH.  Call disconnect_tracing before detaching.
8430
8431 2013-04-10  Hui Zhu  <hui@codesourcery.com>
8432             Yao Qi  <yao@codesourcery.com>
8433
8434         * configure.ac: Check libbabeltrace is installed.
8435         * config.in: Regenerate.
8436         * configure: Regenerate.
8437         * Makefile.in (LIBBABELTRACE): New.
8438         (CLIBS): Add LIBBABELTRACE.
8439         * ctf.c: Include "exec.h".
8440         (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
8441         (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
8442         (ctf_save_metadata_header): Define new type aliases in
8443         metadata.
8444         (ctf_write_header): Define event type "tsv_def" and "tp_def"
8445         in metadata.  Start a new faked packet for trace status.
8446         (ctf_write_status): Write trace status to CTF.
8447         (ctf_write_uploaded_tsv): Write TSV to CTF.
8448         (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
8449         (ctf_write_definition_end): End the faked packet.
8450
8451         (ctx, ctf_iter, trace_dirname): New.
8452         (start_pos): New variable.
8453         (ctf_destroy, ctf_open_dir, ctf_open): New.
8454         (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
8455         macros.
8456         (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
8457         (ctf_fetch_registers, ctf_xfer_partial): New.
8458         (ctf_get_trace_state_variable_value): New.
8459         (ctf_get_tpnum_from_frame_event): New.
8460         (ctf_get_traceframe_address): New.
8461         (ctf_trace_find, ctf_has_stack): New.
8462         (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
8463         (ctf_get_trace_status, ctf_read_status): New.
8464         (_initialize_ctf): New.
8465         * tracepoint.c (get_tracepoint_number): New
8466         (get_uploaded_tsv): Remove 'static'.
8467         (struct traceframe_info, trace_regblock_size): Move it to ...
8468         * tracepoint.h: ... here.
8469         (get_tracepoint_number): Declare it.
8470         (get_uploaded_tsv): Declare it.
8471
8472         * NEWS: Mention new configure option.
8473
8474 2013-04-10  Pedro Alves  <palves@redhat.com>
8475             Hui Zhu  <hui@codesourcery.com>
8476
8477         * breakpoint.c (dprintf_re_set): New.
8478         (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
8479         to dprintf_re_set.
8480
8481 2013-04-09  Joel Brobecker  <brobecker@adacore.com>
8482
8483         * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
8484         Remove solib-svr4.o from the list.
8485
8486 2013-04-09  Joel Brobecker  <brobecker@adacore.com>
8487
8488         * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
8489         Use gdb_assert_not_reached instead of invalid boolean expression.
8490
8491 2013-04-09  Pedro Alves  <palves@redhat.com>
8492
8493         * remote.c (unpush_and_perror): New function.
8494         (readchar, remote_serial_write): Use it.
8495
8496 2013-04-09  Markus Metzger  <markus.t.metzger@intel.com>
8497
8498         * NEWS: Mention new btrace RSP packets.
8499
8500 2013-04-08  Tom Tromey  <tromey@redhat.com>
8501
8502         * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
8503         long.
8504
8505 2013-04-08  Tom Tromey  <tromey@redhat.com>
8506
8507         * maint.c (print_bfd_section_info): Print the section index.
8508         * symmisc.c (dump_msymbols): Print the section index.
8509
8510 2013-04-08  Tom Tromey  <tromey@redhat.com>
8511
8512         PR symtab/8424:
8513         * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
8514         SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
8515         * breakpoint.c (resolve_sal_pc): Update.
8516         * elfread.c (elf_gnu_ifunc_record_cache): Update.
8517         * findvar.c (struct minsym_lookup_data) <objfile>: New field.
8518         (minsym_lookup_iterator_cb): Use it.
8519         (default_read_var_value): Update.
8520         * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
8521         Update.
8522         * infcmd.c (jump_command): Update.
8523         * linespec.c (minsym_found): Update.
8524         * maint.c (maintenance_translate_address): Update.
8525         * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
8526         (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
8527         * parse.c (write_exp_msymbol): Update.
8528         * printcmd.c (address_info): Update.
8529         * psymtab.c (find_pc_sect_psymbol): Update.
8530         (fixup_psymbol_section): Check SYMBOL_SECTION, not
8531         SYMBOL_OBJ_SECTION.
8532         (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
8533         Don't initialize SYMBOL_OBJ_SECTION.
8534         * spu-tdep.c (spu_catch_start): Update.
8535         * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
8536         * symmisc.c (dump_msymbols, print_symbol): Update.
8537         * symtab.c (fixup_section): Don't set 'obj_section'.  Change
8538         how fallback section is computed.
8539         (fixup_symbol_section): Update.
8540         (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
8541         Update.
8542         (allocate_symbol, initialize_symbol, allocate_template_symbol):
8543         Initialize SYMBOL_SECTION.
8544         * symtab.h (struct general_symbol_info) <section>: Update comment.
8545         <obj_section>: Remove.
8546         (SYMBOL_OBJ_SECTION): Add 'objfile' argument.  Rewrite.
8547         (SYMBOL_OBJFILE): New macro.
8548
8549 2013-04-08  Tom Tromey  <tromey@redhat.com>
8550
8551         * coffread.c (record_minimal_symbol): Update.
8552         * dbxread.c (record_minimal_symbol): Update.
8553         * elfread.c (record_minimal_symbol): Update.
8554         * machoread.c (macho_symtab_add_minsym): Update.
8555         * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
8556         Update.
8557         * minsyms.c (prim_record_minimal_symbol): Update.
8558         (prim_record_minimal_symbol_full): Remove 'bfd_section'
8559         argument.
8560         (prim_record_minimal_symbol_and_info): Likewise.
8561         * minsyms.h (prim_record_minimal_symbol_full)
8562         (prim_record_minimal_symbol_and_info): Update.
8563         * symtab.c (allocate_symbol, initialize_symbol)
8564         (allocate_template_symbol): Initialize SYMBOL_SECTION.
8565         * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
8566         Update.
8567
8568 2013-04-08  Tom Tromey  <tromey@redhat.com>
8569
8570         PR symtab/8423:
8571         * solib-som.c (som_solib_section_offsets): Use BFD section
8572         indices.  Set offsets for all sections.
8573         * somread.c (som_symtab_read): Compute BFD section for
8574         symbol.  Use prim_record_minimal_symbol_and_info.
8575         (som_symfile_read): Fix comment.
8576         (struct find_section_offset_arg): New.
8577         (find_section_offset, set_section_index): New functions.
8578         (som_symfile_offsets): Use set_section_index to compute
8579         section indices.
8580
8581 2013-04-08  Tom Tromey  <tromey@redhat.com>
8582
8583         * coffread.c (cs_to_section): Use gdb_bfd_section_index.
8584         * elfread.c (record_minimal_symbol, elf_symtab_read): Use
8585         gdb_bfd_section_index.
8586         * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
8587         New functions.
8588         * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
8589         Declare.
8590         * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
8591         Update.
8592         * objfiles.c (add_to_objfile_sections_full): New function.
8593         (add_to_objfile_sections): Use it.
8594         (build_section_table): Rewrite.
8595         (objfile_relocate1): Use gdb_bfd_section_index.  Update.
8596         * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
8597         (struct objfile) <sections>: Update comment.
8598         (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
8599         is NULL.
8600         (ALL_OBJSECTIONS): Use it.
8601         * solib-dsbt.c (dsbt_relocate_main_executable): Update.
8602         * solib-frv.c (frv_relocate_main_executable): Update.
8603         * solib-target.c (solib_target_relocate_section_addresses):
8604         Use gdb_bfd_section_index.
8605         * symfile.c (build_section_addr_info_from_section_table):
8606         Use gdb_bfd_section_index.
8607         (build_section_addr_info_from_bfd, place_section): Likewise.
8608         * symtab.c (fixup_section): Update.
8609         * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
8610
8611 2013-04-08  Tom Tromey  <tromey@redhat.com>
8612
8613         * minsyms.h (struct bound_minimal_symbol): New.
8614         (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
8615         Remove objfile argument.
8616         (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
8617         Return bound_minimal_symbol.
8618         * minsyms.c (lookup_minimal_symbol_by_pc_1)
8619         (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
8620         Return bound_minimal_symbol.
8621         (in_gnu_ifunc_stub): Update.
8622         (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
8623         Remove 'objfile_p' argument.
8624         (lookup_solib_trampoline_symbol_by_pc): Update.
8625         * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
8626         arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
8627         c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
8628         glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
8629         i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
8630         linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
8631         mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
8632         ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
8633         stack.c, symtab.c, tui/tui-disasm.c: Update.
8634
8635 2013-04-08  Tom Tromey  <tromey@redhat.com>
8636
8637         * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
8638         Use symbol's obstack, not an objfile.
8639         * coffread.c (process_coff_symbol): Update.
8640         * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
8641         * jv-lang.c (add_class_symbol): Update.
8642         * mdebugread.c (new_symbol): Update.
8643         * minsyms.c (prim_record_minimal_symbol_full)
8644         (terminate_minimal_symbol_table): Update.
8645         * psymtab.c (add_psymbol_to_bcache): Clear entire symbol.  Update.
8646         * stabsread.c (define_symbol, read_enum_type): Update.
8647         * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
8648         Handle Ada specially.
8649         (symbol_set_language): Add 'obstack' argument.
8650         (symbol_set_names): Update.
8651         (symbol_natural_name, symbol_demangled_name): Always use
8652         ada_decode_symbol.
8653         * symtab.h (struct general_symbol_info)
8654         <language_specific::obstack>: New field.
8655         <ada_mangled>: New field.
8656         (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
8657         (symbol_set_language): Update.
8658
8659 2013-04-08  Tom Tromey  <tromey@redhat.com>
8660
8661         * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
8662         Take an obstack, not an objfile.
8663         (symbol_set_names): Update.
8664         * symtab.h (symbol_set_demangled_name): Update.
8665
8666 2013-04-08  Tom Tromey  <tromey@redhat.com>
8667
8668         * coffread.c (process_coff_symbol, coff_read_enum_type): Call
8669         allocate_symbol.
8670         * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
8671         (read_func_scope): Call allocate_template_symbol.
8672         (new_symbol_full): Call allocate_symbol.
8673         * jit.c (finalize_symtab): Call allocate_symbol.
8674         * jv-lang.c (add_class_symbol): Call allocate_symbol.
8675         * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
8676         * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
8677         (common_block_end): Call allocate_symbol.
8678         * symtab.c (allocate_symbol, initialize_symbol)
8679         (allocate_template_symbol): New functions.
8680         * symtab.c (allocate_symbol, initialize_symbol)
8681         (allocate_template_symbol): Declare.
8682         * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
8683
8684 2013-04-08  Pedro Alves  <palves@redhat.com>
8685             Keith Seitz  <keiths@redhat.com>
8686
8687         * breakpoint.c (create_breakpoint): Rename
8688         "parse_condition_and_thread" parameter to "parse_arg".  Update
8689         describing comment.  If !PARSE_ARG, then error out if ARG is not
8690         the empty string after extracting the location.
8691         * breakpoint.h (create_breakpoint): Rename
8692         "parse_condition_and_thread" parameter to "parse_arg".
8693
8694 2013-04-08  Aleksandar Ristovski  <aristovski@qnx.com
8695
8696         * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
8697
8698 2013-04-07  Yao Qi  <yao@codesourcery.com>
8699
8700         * remote.c (remote_trace_find): Change type of parameters 'addr1'
8701         and 'addr2' to CORE_ADDR.
8702         * target.c (update_current_target): Update.
8703         * target.h (struct target_ops) <to_trace_find>: Change parameter
8704         type to CORE_ADDR.
8705         * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
8706         'addr2' to CORE_ADDR.
8707         (tfile_trace_find): Likewise.
8708         (tfile_get_traceframe_address): Change return type to CORE_ADDR.
8709         Change local variable 'addr' to type CORE_ADDR.
8710         * tracepoint.h (tfind_1): Update declaration.
8711
8712 2013-04-06  Eli Zaretskii  <eliz@gnu.org>
8713
8714         * windows-nat.c (windows_get_absolute_argv0): Move from here...
8715         * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
8716         Include main.h.
8717
8718         * windows-nat.h (windows_get_absolute_argv0): Move prototype from
8719         here...
8720         * main.h (windows_get_absolute_argv0): ...to here.
8721
8722 2013-04-05  Doug Evans  <dje@google.com>
8723
8724         * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
8725         (read_cutu_die_from_dwo): Add comments.
8726         (read_structure_type): Update comment.
8727         (read_enumeration_type, read_namespace_type): Update comment.
8728         (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
8729
8730 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
8731
8732         Convert man pages to texinfo, new gdbinit.5 texinfo page.
8733         * Makefile.in (gdb.z): Remove.
8734         (install-only): Remove $(man1dir) and gdb.1 installation.
8735         * gdb.1: Remove.
8736
8737 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
8738
8739         Fix compatibility with Linux kernel 3.8.3.
8740         * linux-tdep.c (linux_find_memory_regions_full): Move variable number
8741         to more inner block.  Remove parsing of NUMBER from outer block.
8742         Parse NUMBER only if KEYWORD has been identified.
8743
8744 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
8745
8746         Fix variable name shadowing.
8747         * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
8748         filename to mapsfilename and update its uses.
8749
8750 2013-04-05  Eli Zaretskii  <eliz@gnu.org>
8751
8752         * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
8753         empty.  See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
8754         and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
8755         details of the problem.
8756
8757 2013-04-04  Pedro Alves  <palves@redhat.com>
8758             Hui Zhu  <hui@codesourcery.com>
8759
8760         * breakpoint.c (validate_commands_for_breakpoint): If validating a
8761         tracepoint, reset its STEP_COUNT and call validate_actionline.
8762
8763 2013-04-03  Doug Evans  <dje@google.com>
8764
8765         * dwarf2read.c (read_die_and_siblings_1): Renamed from
8766         read_die_and_siblings.
8767         (read_die_and_siblings): New function.
8768         (read_cutu_die_from_dwo): Dump die if requested.
8769         (read_die_and_children): Call read_full_die_1 and
8770         read_die_and_siblings_1.
8771         (read_full_die): Dump die if requested.
8772
8773         * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
8774
8775         * dwarf2read.c (struct dwo_file): New member comp_dir.
8776         Rename member name to dwo_name.  All uses updated.
8777         (hash_dwo_file): Include comp_dir in computation.
8778         (eq_dwo_file): Ditto.
8779         (lookup_dwo_file_slot): New arg comp_dir.  All callers updated.
8780         (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
8781
8782         * psymtab.c (read_psymtabs_with_fullname): Don't call
8783         psymtab_to_fullname if the basenames are different.
8784
8785 2013-04-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
8786
8787         * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
8788         New entry about "fullname" presence.
8789
8790 2013-04-03  Pedro Alves  <palves@redhat.com>
8791
8792         * NEWS: Mention x86_64/Cygwin as new native configuration.
8793
8794 2013-04-02  Doug Evans  <dje@google.com>
8795
8796         * dwarf2read.c (read_structure_type): Fix typo in comment.
8797
8798 2013-04-02  Pedro Alves  <palves@redhat.com>
8799
8800         * NEWS: Mention "set/show debug aarch64", "set/show debug
8801         coff-pe-read" and "set/show debug mach-o".
8802
8803 2013-04-02  Pedro Alves  <palves@redhat.com>
8804
8805         * NEWS: Mention "set/show remote trace-buffer-size-packet".
8806
8807 2013-04-02  Eli Zaretskii  <eliz@gnu.org>
8808
8809         * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
8810         gdb_string.h is now in common/.
8811
8812 2013-04-02  Pedro Alves  <palves@redhat.com>
8813
8814         * NEWS: Move "set debug notification" and "set trace-buffer-size"
8815         under "New options".
8816
8817 2013-04-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
8818
8819         Revert this patch:
8820         PR gdb/15275
8821         * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
8822
8823 2013-04-02  Pedro Alves  <palves@redhat.com>
8824
8825         PR gdb/15275
8826
8827         * remote.c (send_interrupt_sequence): Use remote_serial_write.
8828         (remote_serial_write): New function.
8829         (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
8830
8831 2013-04-01  Jiong Wang  <jiwang@tilera.com>
8832
8833         * NEWS: Mention TILE-Gx in "New native configurations" and
8834         "New targets" sections.
8835
8836 2013-04-01  Doug Evans  <dje@google.com>
8837
8838         * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
8839         (process_enumeration_scope): Simplify.
8840
8841         * dwarf2read.c (struct dwarf2_per_cu_data): Move member
8842         type_unit_group ...
8843         (struct signatured_type): ... to here.
8844         (sig_type_ptr): New typedef.
8845         (type_unit_group): Delete member 't.first_cu'.  Move member 'tus'
8846         out of union 't'.  All uses updated.
8847         (dw2_get_file_names_reader): Assert not called for a type unit.
8848         (dw2_get_file_names): Assert not called for a type unit or type
8849         unit group.
8850         (build_type_psymtabs_reader): Assert called for a type unit.
8851         (build_type_psymtab_dependencies): Assert called for a type unit group.
8852
8853         * dwarf2read.c (free_dwo_file): Add comment.
8854         (dwarf2_per_objfile_free): Unref dwp bfd.
8855
8856 2013-04-01  Aleksandar Ristovski  <aristovski@qnx.com>
8857
8858         * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
8859         (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
8860         (read_pe_exported_syms): Remove unused 'exportix'.
8861         (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
8862         'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
8863         'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
8864
8865 2013-04-01  Aleksandar Ristovski  <aristovski@qnx.com>
8866
8867         * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
8868         (print_it_watchpoint): Remove unused 'bl'.
8869         (say_where): Remove unused 'uiout'.
8870         (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
8871         (bkpt_breakpoint_hit): Remove unused 'b'.
8872         (internal_bkpt_print_it): Remove unused 'uiout'.
8873         * buildsym.c (augment_type_symtab): Remove unused 'i'.
8874
8875 2013-03-31  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
8876
8877         * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
8878         (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
8879
8880 2013-03-29  Doug Evans  <dje@google.com>
8881
8882         * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
8883         Delete arg is_dwp.  All callers updated.
8884         (open_dwp_file): New function.
8885         (open_and_init_dwp_file): Call it.
8886         (get_dwp_file): New function.
8887         (lookup_dwo_cutu): Call it.
8888
8889         * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
8890         unnecessary, cleanup.
8891
8892         * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
8893
8894         * dwarf2read.c (read_cutu_die_from_dwo): New function.
8895         (lookup_dwo_unit): New function.
8896         (init_cutu_and_read_dies): Move DWO handling to new functions.
8897
8898         * dwarf2read.c (struct signatured_type): Tweak comment.
8899         (struct dwo_unit): Tweak comment.
8900         (create_debug_types_hash_table): Tweak comment.  Reformat long line.
8901         (create_dwo_debug_info_hash_table): Tweak comment.
8902         (dwarf2_per_cu_offset_and_type): Tweak comment.
8903
8904         * dwarf2read.c (lookup_signatured_type): Remove complaint about
8905         missing .debug_types section.
8906
8907 2013-03-29  Yao Qi  <yao@codesourcery.com>
8908
8909         * corelow.c: Include "completer.h".
8910         (_initialize_corelow): Call add_target_with_completer with
8911         argument 'filename_completer'.
8912         * tracepoint.c: Likewise.
8913         * exec.c (_initialize_exec): Likewise.
8914         * target.c (add_target): Rename to ...
8915         (add_target_with_completer): ... this.  Call set_cmd_completer
8916         if parameter completer is not NULL.
8917         (add_target): New.
8918         * target.h: Include "command.h".
8919         (add_target_with_completer): Declare it.
8920
8921 2013-03-28  Joel Brobecker  <brobecker@adacore.com>
8922
8923         * coffread.c (is_import_fixup_symbol): New function.
8924         (record_minimal_symbol): Use is_import_fixup_symbol to
8925         detect import fixup symbols, and discard them.
8926
8927 2013-03-28  Doug Evans  <dje@google.com>
8928
8929         * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
8930         types hash table until we know we need it.
8931
8932         * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
8933         index numbers.
8934
8935         * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
8936         All callers updated.
8937         (dw2_print_stats): Print #read CUs too.
8938         (dump_die_shallow): Print signatured types better.
8939
8940         * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
8941         info_or_types_section to section.  All uses updated.
8942         (struct dwo_unit): Ditto.
8943
8944 2013-03-28  Pedro Alves  <palves@redhat.com>
8945
8946         * NEWS (New options): New section.
8947         (New options): Mention set/show remote trace-status-packet.
8948         * remote.c (PACKET_qTStatus): New enumeration value.
8949         (remote_get_trace_status): Skip sending qTStatus if the packet is
8950         disabled.  Use packet_ok.
8951         (_initialize_remote): Register a configuration command for
8952         qTStatus packet.
8953
8954 2013-03-28  Doug Evans  <dje@google.com>
8955
8956         * symfile.c (find_separate_debug_file): Add comment.
8957         (terminate_after_last_dir_separator): Tweak comment.
8958
8959         * dwarf2read.c (create_partial_symtab): Add forward decl.
8960         (create_partial_symtab): Move to be closer to other psymtab functions.
8961         (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
8962
8963         * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
8964         (compute_symtab_includes): Remove unnecessary forward declaration.
8965         (die_needs_namespace): Add comment marking group of functions for
8966         dwarf2 name computation.
8967
8968         * typeprint.c (_initialize_typeprint): Improve type help text.
8969
8970         * python/python.c (finish_python_initialization): Provide suggestion
8971         for how to tell gdb to find its python files.
8972
8973 2013-03-28  Pedro Alves  <palves@redhat.com>
8974
8975         PR gdb/15294
8976
8977         * source.c (_initialize_source): Change back "set listsize" to an
8978         integer command.
8979
8980 2013-03-27  Gareth McMullin  <gareth@blacksphere.co.nz>
8981
8982         PR gdb/15275
8983         * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
8984
8985 2013-03-27  Pedro Alves  <palves@redhat.com>
8986
8987         * top.c (history_size): Rename to ...
8988         (history_size_setshow_var): ... this.  Add comment.
8989         (show_commands): Use readline's 'history_length' instead of
8990         computing the history length by calling history_get in a loop.
8991         (set_history_size_command): Error out for sizes over INT_MAX.
8992         Restore previous history size on invalid size.
8993         (init_history): If HISTSIZE is negative, leave the history size as
8994         zero.  Add comments.
8995         (init_main): Adjust.
8996
8997 2013-03-27  Pedro Alves  <palves@redhat.com>
8998
8999         * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
9000         coff_pe_read" command to "set debug coff-pe-read".
9001
9002 2013-03-27  Markus Metzger  <markus.t.metzger@intel.com>
9003
9004         * record.c (command_size_to_target_size): Fix size comparison.
9005         Change parameter type from pointer to integer to integer.
9006         Update all users.
9007
9008 2013-03-27  Pierre Muller  <muller@sourceware.org>
9009
9010         * windows-nat.c (handle_output_debug_string): Avoid typecast
9011         from integer of different size warning.
9012
9013 2013-03-26  Joel Brobecker  <brobecker@adacore.com>
9014
9015         * windows-nat.c (handle_output_debug_string): Add empty line
9016         after local block variable definition.
9017
9018 2013-03-26  Pedro Alves  <palves@redhat.com>
9019
9020         * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
9021         (net_open): Make 'polls' local unsigned.
9022
9023 2013-03-26  Pedro Alves  <palves@redhat.com>
9024
9025         * remote.c (_initialize_remote): Make "set remoteaddresssize"
9026         a zuinteger command instead of uinteger.
9027
9028 2013-03-26  Pedro Alves  <palves@redhat.com>
9029
9030         * record-full.c (record_full_insn_num): Make it unsigned.
9031         (record_full_check_insn_num, record_full_message)
9032         (record_full_registers_change, record_full_xfer_partial): Remove
9033         record_full_insn_max_num check (it's always != 0).
9034         (record_full_info, record_full_restore): Use %u as format string.
9035         (): Use %u as format string.
9036         (set_record_full_insn_max_num): Remove record_full_insn_max_num
9037         check (it's always != 0).
9038
9039 2013-03-26  Pedro Alves  <palves@redhat.com>
9040
9041         * dcache.c (_initialize_dcache): Make the "set dcache line-size"
9042         and "set dcache size" commands zuinteger instead of uinteger.
9043
9044 2013-03-26  Pedro Alves  <palves@redhat.com>
9045
9046         * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
9047         command zuinteger instead of uinteger.
9048
9049 2013-03-26  Pedro Alves  <palves@redhat.com>
9050
9051         * coff-pe-read.c (_initialize_coff_pe_read): Make the command
9052         zuinteger instead of uinteger.
9053
9054 2013-03-26  Pedro Alves  <palves@redhat.com>
9055
9056         * record.c (record_insn_history_size_setshow_var)
9057         (record_call_history_size_setshow_var): New globals.
9058         (command_size_to_target_size): New function.
9059         (cmd_record_insn_history, cmd_record_call_history): Use
9060         command_size_to_target_size instead of cast.
9061         (validate_history_size, set_record_insn_history_size)
9062         (set_record_call_history_size): New functions.
9063         (_initialize_record): Install set_record_insn_history_size and
9064         set_record_call_history_size as "set" hooks of "set record
9065         instruction-history-size" and "set record
9066         function-call-history-size".
9067
9068 2013-03-26  Pedro Alves  <palves@redhat.com>
9069
9070         * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
9071         use with history_max_entries use.  Remove FIXME note.
9072
9073 2013-03-26  Markus Metzger  <markus.t.metzger@intel.com>
9074
9075         * record-btrace.c (record_btrace_close): Call
9076         record_btrace_auto_disable.
9077
9078 2013-03-25  Joel Brobecker  <brobecker@adacore.com>
9079
9080         * rs6000-nat.c (fixup_breakpoints): Delete declaration.
9081
9082 2013-03-25  Doug Evans  <dje@google.com>
9083
9084         * contrib/cc-with-tweaks.sh: Check exit code of dwp.
9085
9086 2013-03-25  Tom Tromey  <tromey@redhat.com>
9087
9088         PR symtab/11462:
9089         * c-exp.y (exp): Add new productions for destructors after '.' and
9090         '->'.
9091         (write_destructor_name): New function.
9092
9093 2013-03-25  Tom Tromey  <tromey@redhat.com>
9094
9095         PR c++/9197:
9096         * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
9097         value_struct_elt, not lookup_struct_elt_type.
9098         * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
9099         STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
9100         * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
9101
9102 2013-03-25  Yao Qi  <yao@codesourcery.com>
9103
9104         * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
9105         instead of '_mkdir'.
9106
9107 2013-03-23  Eli Zaretskii  <eliz@gnu.org>
9108
9109         * windows-nat.c (windows_get_absolute_argv0): New function.
9110         * windows-nat.h: Add its prototype.
9111
9112         * main.c (get_init_files): Use filename_ncmp instead of strncmp.
9113         Use IS_DIR_SEPARATOR instead of looking for a character inside
9114         SLASH_STRING.  Include filenames.h.
9115         (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
9116         relocate_gdb_directory works when passed gdb_program_name.
9117         Include windows-nat.h.
9118
9119 2013-03-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
9120
9121         * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
9122         * remote.c (trace_error): Remove the special handling of '2'.
9123         (readchar) <SERIAL_EOF>
9124         (readchar) <SERIAL_ERROR>
9125         (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
9126         (remote_get_trace_status): Call throw_exception if EX is
9127         TARGET_CLOSE_ERROR.
9128         * utils.c (perror_with_name): Rename to ...
9129         (throw_perror_with_name): ... here.  New parameter errcode, describe it
9130         in the function comment.
9131         (perror_with_name): New function wrapper.
9132         * utils.h (enum errors): New stub declaration.
9133         (throw_perror_with_name): New declaration.
9134
9135 2013-03-22  Pedro Alves  <palves@redhat.com>
9136             Yao Qi  <yao@codesourcery.com>
9137             Mark Kettenis  <kettenis@gnu.org>
9138
9139         * cli/cli-setshow.c (do_set_command) <var_uinteger>:
9140         Don't let the user set the value to UINT_MAX directly.
9141         <var_integer>: Don't let the user set the value to INT_MAX
9142         directly.
9143
9144 2013-03-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
9145
9146         * remote.c (remote_unpush_target): New function.
9147         (remote_open_1): Remove two pop_target calls, update one comment, add
9148         comment to target_preopen call.  Replace pop_target call by
9149         remote_unpush_target call.
9150         (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
9151         pop_target calls by remote_unpush_target calls.
9152
9153 2013-03-22  Pedro Alves  <palves@redhat.com>
9154
9155         * linux-nat.c (linux_child_follow_fork): Don't call
9156         linux_enable_event_reporting.
9157         (linux_handle_extended_wait): Don't call
9158         linux_enable_event_reporting.
9159
9160 2013-03-22  Pedro Alves  <palves@redhat.com>
9161
9162         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
9163         use it to rewrite the trampoline buffers with type gdb_byte[], and
9164         undefine the macro.  Remove char* cast.
9165
9166 2013-03-21  Doug Evans  <dje@google.com>
9167
9168         New commands "mt set per-command {space,time,symtab} {on,off}".
9169         * NEWS: Add entry.
9170         * event-top.c: #include "maint.h".
9171         * main.c: #include "maint.h".
9172         * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
9173         timeval-utils.h, maint.h, cli/cli-setshow.h.
9174         (per_command_time, per_command_space): New static globals.
9175         (per_command_symtab): New static global.
9176         (per_command_setlist, per_command_showlist): New static globals.
9177         (struct cmd_stats): Move here from utils.c.
9178         (set_per_command_time): Renamed from set_display_time in utils.c
9179         and moved here.  All callers updated.
9180         (set_per_command_space): Renamed from set_display_space in utils.c
9181         and moved here.  All callers updated.
9182         (count_symtabs_and_blocks): New function.
9183         (report_command_stats): Moved here from utils.c.  Add support for
9184         printing symtab stats.  Only print data if enabled before command
9185         executed.
9186         (make_command_stats_cleanup): Ditto.
9187         (sert_per_command_cmd, show_per_command_cmd): New functions.
9188         (_initialize_maint_cmds): Add new commands
9189         mt set per-command {space,time,symtab} {on,off}.
9190         * maint.h: New file.
9191         * top.c: #include "maint.h".
9192         * utils.c (reset_prompt_for_continue_wait_time): New function.
9193         (get_prompt_for_continue_wait_time): New function.
9194         * utils.h (reset_prompt_for_continue_wait_time): Declare
9195         (get_prompt_for_continue_wait_time): Declare.
9196         (make_command_stats_cleanup): Moved to maint.h.
9197         (set_display_time, set_display_space): Moved to maint.h and renamed
9198         to set_per_command_time, set_per_command_space.
9199         * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
9200         parse_binary_operation and made non-static.  Don't call error,
9201         just return an error marker.  All callers updated.
9202         * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
9203
9204 2013-03-21  Tom Tromey  <tromey@redhat.com>
9205
9206         * symfile.c (alloc_section_addr_info): Update header.  Don't set
9207         'num_sections' field.
9208         (build_section_addr_info_from_section_table): Set 'num_sections'.
9209         (build_section_addr_info_from_bfd): Likewise.
9210         (build_section_addr_info_from_objfile): Remove dead loop
9211         condition.
9212         (free_section_addr_info): Unconditionally call xfree.
9213         (relative_addr_info_to_section_offsets, addrs_section_sort)
9214         (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
9215         condition.
9216         (syms_from_objfile_1): Remove dead 'if' condition.  Check
9217         'num_sections'.
9218         (add_symbol_file_command): Set 'num_sections'.
9219         * symfile-mem.c (symbol_file_add_from_memory): Set
9220         'num_sections'.
9221         * somread.c (som_symfile_offsets): Remove dead loop condition.
9222         * machoread.c (macho_symfile_offsets): Remove dead 'if'.
9223         * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
9224
9225 2013-03-21  Tom Tromey  <tromey@redhat.com>
9226
9227         * tracepoint.h (decode_agent_options): Add 'trace_string'
9228         argument.
9229         * tracepoint.c (decode_agent_options): Add 'trace_string'
9230         argument.
9231         (validate_actionline): Update.
9232         (collect_symbol): Add 'trace_string' argument.
9233         (struct add_local_symbols_data) <trace_string>: New field.
9234         (do_collect_symbol): Update.
9235         (add_local_symbols): Add 'trace_string' argument.
9236         (encode_actions_1): Update.
9237         (trace_dump_actions): Update.
9238         * dwarf2loc.c (access_memory): Update.
9239         * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
9240         * ax-general.c (new_agent_expr): Update.
9241         * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
9242         (gen_trace_for_return_address): Add argument.
9243         (trace_kludge, trace_string_kludge): Remove.
9244         * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
9245         (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
9246         (gen_trace_for_var): Add 'trace_string' argument.
9247         (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
9248         (gen_printf, agent_eval_command_one): Update.
9249
9250 2013-03-21  Tom Tromey  <tromey@redhat.com>
9251
9252         PR exp/15109:
9253         * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
9254         Handle FILENAME token.
9255
9256 2013-03-21  Tom Tromey  <tromey@redhat.com>
9257
9258         * c-exp.y (YYPRINT): Define.
9259         (c_print_token): New function.
9260
9261 2013-03-21  Tom Tromey  <tromey@redhat.com>
9262
9263         * c-exp.y (%union) <sym, ivar, ivec>: Remove.
9264
9265 2013-03-21  Yao Qi  <yao@codesourcery.com>
9266
9267         * ctf.c: Include "gdb_stat.h".
9268         [USE_WIN32API]: New macro 'mkdir'.
9269         (ctf_start): Use permission bits macros if they are defined.
9270
9271 2013-03-20  Keith Seitz  <keiths@redhat.com>
9272
9273         * breakpoint.h (struct breakpoint): Add comment to
9274         extra_string indicating that this member is mallod'd.
9275         * breakpoint.c (base_breakpoint_dtor): Free extra_string.
9276
9277 2013-03-20  Pedro Alves  <palves@redhat.com>
9278
9279         PR gdb/15289
9280
9281         * cli/cli-setshow.c (do_set_command)
9282         <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
9283         the result of parsing the command argument.  Throw error if the
9284         value is greater than UINT_MAX.  Print the invalid value with
9285         plongest.
9286         <var_integer, var_zinteger>: Use LONGEST for variable holding the
9287         result of parsing the command argument.  Throw error if the value
9288         is greater than INT_MAX, not greater or equal.  Also throw error
9289         if the value is less than INT_MIN.  Print the invalid value with
9290         plongest.
9291         <var_zuinteger_unlimited>: Throw error if the value is greater
9292         than INT_MAX, not greater or equal.
9293         (do_show_command) <var_integer, var_zinteger,
9294         var_zuinteger_unlimited>: Use %d for printing int, not %u.
9295
9296 2013-03-20  Tom Tromey  <tromey@redhat.com>
9297
9298         * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
9299         if possible.
9300         * dwarf2read.c (read_func_scope): Remove old FIXME.
9301         * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
9302         not LOC_COMPUTED.
9303         * findvar.c (symbol_read_needs_frame, default_read_var_value):
9304         Unconditionally call via computed ops, if possible.
9305         * printcmd.c (address_info): Unconditionally call via computed ops,
9306         if possible.
9307         * stack.c (read_frame_arg): Unconditionally call via computed ops,
9308         if possible.
9309         * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
9310         * tracepoint.c (scope_info): Unconditionally call via computed ops,
9311         if possible.
9312
9313 2013-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
9314             Tom Tromey  <tromey@redhat.com>
9315
9316         PR symtab/8421:
9317         * coffread.c (coff_register_index): New global.
9318         (process_coff_symbol, coff_read_enum_type): Set
9319         SYMBOL_ACLASS_INDEX.
9320         (_initialize_coffread): Initialize new global.
9321         * dwarf2loc.c (locexpr_find_frame_base_location)
9322         (dwarf2_block_frame_base_locexpr_funcs)
9323         (loclist_find_frame_base_location)
9324         (dwarf2_block_frame_base_loclist_funcs): New.
9325         (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
9326         (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
9327         * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
9328         (dwarf2_block_frame_base_loclist_funcs): New.
9329         * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
9330         (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
9331         globals.
9332         (read_func_scope): Update.
9333         (fixup_go_packaging, mark_common_block_symbol_computed)
9334         (var_decode_location, new_symbol_full, dwarf2_const_value):
9335         Set SYMBOL_ACLASS_INDEX.
9336         (dwarf2_symbol_mark_computed): Likewise.  Add 'is_block' argument.
9337         (_initialize_dwarf2_read): Initialize new globals.
9338         * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
9339         * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
9340         * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
9341         globals.
9342         (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
9343         (_initialize_mdebugread): Initialize new globals.
9344         * psympriv.h (struct partial_symbol) <aclass>: Update comment.
9345         * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
9346         (stab_register_index, stab_regparm_index): New globals.
9347         (define_symbol, read_enum_type, common_block_end): Set
9348         SYMBOL_ACLASS_INDEX.
9349         (_initialize_stabsread): Initialize new globals.
9350         * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
9351         globals.
9352         (MAX_SYMBOL_IMPLS): New define.
9353         (register_symbol_computed_impl, register_symbol_block_impl)
9354         (register_symbol_register_impl)
9355         (initialize_ordinary_address_classes): New functions.
9356         (_initialize_symtab): Call initialize_ordinary_address_classes.
9357         * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
9358         (struct symbol_impl): New.
9359         (SYMBOL_ACLASS_BITS): New define.
9360         (struct symbol) <aclass, ops>: Remove fields.
9361         <aclass_index>: New field.
9362         (symbol_impls): Declare.
9363         (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
9364         (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
9365         (register_symbol_computed_impl, register_symbol_block_impl)
9366         (register_symbol_register_impl): Declare.
9367         (struct symbol_computed_ops): Add location_has_loclist.
9368         (struct symbol_block_ops): New.
9369         (SYMBOL_BLOCK_OPS): New.
9370         * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
9371
9372 2013-03-20  Tom Tromey  <tromey@redhat.com>
9373
9374         * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
9375         (print_partial_symbols, recursively_search_psymtabs): Use
9376         PSYMBOL_CLASS.
9377
9378 2013-03-20  Pierre Muller  <muller@sourceware.org>
9379
9380         * contrib/ari/gdb_ari.sh (OP eol rule): Also check
9381         addtion, subtraction, multiplication and division binary operator.
9382
9383 2013-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
9384
9385         Code cleanup.
9386         * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
9387         * bsd-kvm.c (bsd_kvm_close): Likewise.
9388         * bsd-uthread.c (bsd_uthread_close): Likewise.
9389         * corelow.c (core_close): Likewise.
9390         (core_close_cleanup): Remove parameter quitting from a caller.
9391         * event-top.c (async_disconnect): Likewise.
9392         * exec.c (exec_close_1): Remove parameter quitting.
9393         * go32-nat.c (go32_close): Likewise.
9394         * linux-nat.c (linux_nat_close): Remove parameter quitting.  Remove
9395         parameter quitting from a caller.
9396         * mips-linux-nat.c (super_close): Remove parameter quitting from the
9397         variable.
9398         (mips_linux_close): Remove parameter quitting.  Remove parameter
9399         quitting from a caller.
9400         * monitor.c (monitor_close): Remove parameter quitting.
9401         * monitor.h (monitor_close): Likewise.
9402         * record-btrace.c (record_btrace_close): Likewise.
9403         * record-full.c (record_full_close): Likewise.
9404         * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
9405         it also from fprintf_unfiltered.
9406         * remote-mips.c (mips_close): Remove parameter quitting.
9407         (mips_detach): Remove parameter quitting from a caller.
9408         * remote-sim.c (gdbsim_close): Remove parameter quitting.
9409         (gdbsim_close): Remove duplicate function comment.  Remove parameter
9410         quitting and remove it also from printf_filtered.
9411         * remote.c (remote_close): Remove parameter quitting.
9412         * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
9413         * target.c (update_current_target): Remove parameter int from to_close
9414         de_fault.
9415         (push_target, unpush_target, pop_target): Remove parameter quitting from
9416         a caller.
9417         (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
9418         Remove parameter quitting from a caller.
9419         (target_preopen): Remove parameter quitting from a caller.
9420         (target_close): Remove parameter quitting.  Remove parameter quitting
9421         from a caller two times.  Remove parameter quitting also from
9422         fprintf_unfiltered.
9423         * target.h (struct target_ops): Remove parameter quitting and as int
9424         from fields to_xclose and to_close.
9425         (extern struct target_ops current_target):
9426         (target_close, pop_all_targets): Remove parameter quitting.  Update the
9427         comment.
9428         (pop_all_targets_above): Remove parameter quitting.
9429         * top.c (quit_target): Remove parameter quitting from a caller.
9430         * tracepoint.c (tfile_close): Remove parameter quitting.
9431         * windows-nat.c (windows_close): Remove parameter quitting.
9432
9433 2013-03-20  Corinna Vinschen  <vinschen@redhat.com>
9434
9435         * windows-nat.c (handle_output_debug_string): Replace call
9436         to string_to_core_addr with call to strtoull.
9437
9438 2013-03-20  Yao Qi  <yao@codesourcery.com>
9439
9440         * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
9441         and write it to CTF metadata.
9442
9443 2013-03-19  Corinna Vinschen  <vinschen@redhat.com>
9444
9445         * windows-nat.c (handle_output_debug_string): Change type of n to
9446         SIZE_T to avoid crash on 64 bit systems.
9447
9448 2013-03-17  Eli Zaretskii  <eliz@gnu.org>
9449
9450         * python/python-internal.h (HAVE_SNPRINTF)
9451         [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
9452         about redefinition of snprintf by pyerrors.h.
9453
9454 2013-03-15  Steve Ellcey  <sellcey@mips.com>
9455
9456         * remote-sim.c (sim_command_completer): Make char arguments const.
9457
9458 2013-03-15  Tom Tromey  <tromey@redhat.com>
9459
9460         PR c++/15116:
9461         * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
9462
9463 2013-03-14  Tom Tromey  <tromey@redhat.com>
9464
9465         * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
9466         New fields.
9467         (get_file_crc): Move from symfile.c.
9468         (gdb_bfd_crc): New function.
9469         * gdb_bfd.h (gdb_bfd_crc): Declare.
9470         * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
9471         * symfile.c (get_file_crc): Move to gdb_bfd.c.
9472         (separate_debug_file_exists): Use gdb_bfd_crc.
9473
9474 2013-03-14  Tom Tromey  <tromey@redhat.com>
9475
9476         * symfile.c (get_debug_link_info): Remove.
9477         (find_separate_debug_file_by_debuglink): Use
9478         bfd_get_debug_link_info.
9479
9480 2013-03-14  Tom Tromey  <tromey@redhat.com>
9481
9482         * symtab.c (error_in_psymtab_expansion): New function.
9483         (lookup_symbol_aux_quick)
9484         (basic_lookup_transparent_type_quick): Remove "last resort"
9485         code.  Use error_in_psymtab_expansion.
9486
9487 2013-03-14  Doug Evans  <dje@google.com>
9488             Jan Kratochvil  <jan.kratochvil@redhat.com>
9489
9490         * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
9491         any successful compare_filenames_for_search or FILENAME_CMP.
9492         * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
9493         * symtab.c (iterate_over_some_symtabs): Likewise.
9494
9495 2013-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
9496
9497         * source.c (print_source_lines_base): Make a local copy of
9498         symtab_to_fullname.
9499
9500 2013-03-14  Hui Zhu  <hui_zhu@mentor.com>
9501             Jan Kratochvil  <jan.kratochvil@redhat.com>
9502
9503         * source.c (print_source_lines_base): Suppress "file" for TUI.
9504
9505 2013-03-14  Keith Seitz  <keiths@redhat.com>
9506             Alan Matsuoka  <alanm@redhat.com>
9507
9508         PR c++/15203
9509         PR c++/15210
9510         * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
9511         TYPE_CODE_METHOD.
9512         * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
9513         symbols.
9514
9515 2013-03-14  Yao Qi  <yao@codesourcery.com>
9516
9517         * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
9518         status to tfile if trace is stopped by command 'tstop'.
9519
9520 2013-03-14  Yao Qi  <yao@codesourcery.com>
9521
9522         * tracepoint.c (tfile_write_status): Write trace notes and user
9523         name into tfile if they are not NULL.
9524
9525 2013-03-14  Hui Zhu  <hui@codesourcery.com>
9526             Yao Qi  <yao@codesourcery.com>
9527
9528         * Makefile.in (REMOTE_OBS): Add ctf.o.
9529         (SFILES): Add ctf.c.
9530         (HFILES_NO_SRCDIR): Add ctf.h.
9531         * ctf.c, ctf.h: New files.
9532         * tracepoint.c: Include 'ctf.h'.
9533         (collect_pseudocommand): Remove static.
9534         (trace_save_command): Parse option "-ctf".
9535         Produce different trace file writers per option.
9536         Adjust output message.
9537         (trace_save_tfile, trace_save_ctf): New.
9538         * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
9539         * mi/mi-main.c: Include 'ctf.h'.
9540         (mi_cmd_trace_save): Handle option '-ctf'.  Call either
9541         trace_save_tfile or trace_save_ctf.
9542         * NEWS: Mention these changes.
9543
9544 2013-03-14  Yao Qi  <yao@codesourcery.com>
9545
9546         * tracepoint.c (trace_file_writer_xfree): New.
9547         (struct tfile_writer_data): New.
9548         (tfile_dtor, tfile_can_target_save, tfile_start): New.
9549         (tfile_write_header, tfile_write_regblock_type): New.
9550         (tfile_write_status, tfile_write_uploaded_tsv): New.
9551         (tfile_write_uploaded_tp, tfile_write_definition_end): New.
9552         (tfile_write_raw_data, (tfile_end): New.
9553         (tfile_write_ops): New global variable.
9554         (TRACE_WRITE_R_BLOCK): New macro.
9555         (TRACE_WRITE_M_BLOCK_HEADER): New macro.
9556         (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
9557         (TRACE_WRITE_V_BLOCK): New macro.
9558         (trace_save): Add extra one parameter WRITER.  Make it static.
9559         Use WRITER to writer trace.
9560         (tfile_trace_file_writer_new): New.
9561         (trace_save_command): Caller update.
9562         (trace_save_tfile): Write trace data in TFILE format.
9563         * tracepoint.h (struct trace_frame_write_ops): New.
9564         (struct trace_file_write_ops): New.
9565         (struct trace_file_writer): New.
9566         (trace_save): Remove its declaration.
9567         (trace_save_tfile): Declare it.
9568         * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
9569         instead of trace_save.
9570
9571 2013-03-13  Pedro Alves  <palves@redhat.com>
9572
9573         * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
9574
9575 2013-03-13  Pedro Alves  <palves@redhat.com>
9576
9577         * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
9578         commented out code.
9579         * demangle.c (current_demangling_style_string): Make it const.
9580         (set_demangling_command): Assert the demangling style is known.
9581         Remove all handling of unknown styles.  Set
9582         'current_demangling_style_string' to an element of the
9583         demangling_style_names array.
9584         (set_demangling_style): Delete.
9585         (_initialize_demangler): Set current_demangling_style_string to the
9586         element of the demangling_style_names array that corresponds to
9587         the default demangling style.  Remove FIXME note.  Don't call
9588         set_demangling_style.
9589         * gdb-demangle.h (set_demangling_style): Remove declaration.
9590
9591 2013-03-13  Pedro Alves  <palves@redhat.com>
9592
9593         * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
9594         fields const.
9595         (ada_make_symbol_completion_list): Make "text0" parameter const.
9596         * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
9597         * breakpoint.c (condition_completer): Make "text" and "word"
9598         parameters const.  Adjust.
9599         (check_tracepoint_command): Adjust to validate_actionline
9600         prototype change.
9601         (catch_syscall_completer): Make "text" and "word" parameters
9602         const.
9603         * cli/cli-cmds.c (show_user): Make "comname" local const.
9604         (valid_command_p): Make "command" parameter const.
9605         (alias_command): Make "alias_prefix" and "command_prefix" locals
9606         const.
9607         * cli/cli-decode.c (add_cmd): Make "name" parameter const.
9608         (add_alias_cmd): Make "name" and "oldname" parameters const.
9609         Adjust.  No longer make copy of OLDNAME.
9610         (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
9611         (add_setshow_cmd_full, add_setshow_enum_cmd)
9612         (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
9613         (add_setshow_filename_cmd, add_setshow_string_cmd)
9614         (add_setshow_string_noescape_cmd)
9615         (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
9616         (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
9617         (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
9618         (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
9619         Make "name" parameter const.
9620         (help_cmd): Rename "command" parameter to "arg".  New const local
9621         "command".
9622         (find_cmd): Make "command" parameter const.
9623         (lookup_cmd_1): Make "text" parameter pointer to const.  Adjust to
9624         deprecated_cmd_warning prototype change.
9625         (undef_cmd_error): Make "cmdtype" parameter const.
9626         (lookup_cmd): Make "line" parameter const.
9627         (deprecated_cmd_warning): Change type of "text" parameter to
9628         pointer to const char, from pointer to pointer to char.  Adjust.
9629         (lookup_cmd_composition): Make "text" parameter const.
9630         (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
9631         parameters const.
9632         * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
9633         const.
9634         * cli/cli-script.c (validate_comname): Make "tem" local const.
9635         (define_command): New const local "tem_c".  Use it in calls to
9636         lookup_cmd.
9637         (document_command): Make "tem" and "comfull" locals const.
9638         (show_user_1): Make "prefix" and "name" parameters const.
9639         * cli-script.h (show_user_1): Make "prefix" and "name" parameters
9640         const.
9641         * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
9642         (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
9643         (deprecated_cmd_warning, lookup_cmd_composition, add_com)
9644         (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
9645         (complete_on_enum, add_setshow_enum_cmd)
9646         (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
9647         (add_setshow_filename_cmd, add_setshow_string_cmd)
9648         (add_setshow_string_noescape_cmd)
9649         (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
9650         (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
9651         (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
9652         Change prototypes, constifying strings.
9653         * completer.c (noop_completer, filename_completer): Make "text"
9654         and "prefix" parameters const.
9655         (location_completer, expression_completer)
9656         (complete_line_internal): Make "text" and "prefix" parameters
9657         const and adjust.
9658         (command_completer, signal_completer): Make "text" and "prefix"
9659         parameters const.
9660         * completer.h (noop_completer, filename_completer)
9661         (expression_completer, location_completer, command_completer)
9662         (signal_completer): Change prototypes.
9663         * corefile.c (complete_set_gnutarget): Make "text" and "word"
9664         parameters const.
9665         * cp-abi.c (cp_abi_completer): Likewise.
9666         * expression.h (parse_expression_for_completion): Change
9667         prototype.
9668         * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
9669         parameters const.
9670         * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
9671         * infrun.c (handle_completer): Make "text" and "word" parameters
9672         const.
9673         * interps.c (interpreter_completer): Make "text" and "word"
9674         parameters const.
9675         * language.h (struct language_defn)
9676         <la_make_symbol_completion_list>: Make "text" and "word"
9677         parameters const.
9678         * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
9679         (parse_exp_in_context): Rename to ...
9680         (parse_exp_in_context_1): ... this.
9681         (parse_exp_in_context): Reimplement, with const hack from
9682         parse_exp_1.
9683         (parse_expression_for_completion): Make "string" parameter const.
9684         * printcmd.c (decode_format): Make "string_ptr" parameter pointer
9685         to pointer to const char.  Adjust.
9686         (print_command_1): Make "exp" parameter const.
9687         (output_command): Rename to ...
9688         (output_command_const): ... this.  Make "exp" parameter const.
9689         (output_command): Reimplement.
9690         (x_command): Adjust.
9691         (display_command): Rename "exp" parameter to "arg".  New "exp"
9692         local, const version of "arg".
9693         * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
9694         "cmd_name" local const.
9695         * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
9696         call.
9697         (cmdpy_completer): Make "text" and "word" parameters const.
9698         (gdbpy_parse_command_name): Make "prefix_text2" local const.
9699         * python/py-param.c (add_setshow_generic): Make "tmp_name" local
9700         const.
9701         * remote.c (_initialize_remote): Make "cmd_name" local const.
9702         * symtab.c (language_search_unquoted_string): Make "text" and "p"
9703         parameters const.  Adjust.
9704         (completion_list_add_fields): Make "sym_text", "text" and "word"
9705         parameters const.
9706         (struct add_name_data) <sym_text, text, word>: Make fields const.
9707         (default_make_symbol_completion_list_break_on): Make "text" and
9708         "word" parameters const.  Adjust locals.
9709         (default_make_symbol_completion_list)
9710         (make_symbol_completion_list, make_symbol_completion_type)
9711         (make_symbol_completion_list_fn): Make "text" and "word"
9712         parameters const.
9713         (make_file_symbol_completion_list): Make "text", "word" and
9714         "srcfile" parameters const.  Adjust locals.
9715         (add_filename_to_list): Make "text" and "word" parameters const.
9716         (struct add_partial_filename_data) <text, word>: Make fields
9717         const.
9718         (make_source_files_completion_list): Make "text" and "word"
9719         parameters const.
9720         * symtab.h (default_make_symbol_completion_list_break_on)
9721         (default_make_symbol_completion_list, make_symbol_completion_list)
9722         (make_symbol_completion_type enum type_code)
9723         (make_symbol_completion_list_fn make_file_symbol_completion_list)
9724         (make_source_files_completion_list): Change prototype.
9725         * top.c (execute_command): Adjust to pass pointer to pointer to
9726         const char to lookup_cmd, and to deprecated_cmd_warning prototype
9727         change.
9728         (set_verbose): Make "cmdname" local const.
9729         * tracepoint.c (decode_agent_options): Make "exp" parameter const,
9730         and adjust.
9731         (validate_actionline): Make "line" parameter a pointer to const
9732         char, and adjust.
9733         (encode_actions_1): Make "action_exp" local const, and adjust.
9734         (encode_actions): Adjust.
9735         (replace_comma): Delete.
9736         (trace_dump_actions): Make "action_exp" and "next_comma" locals
9737         const, and adjust.  Don't frob the action string while splitting
9738         it at commas.  Instead, make a copy of each split substring in
9739         turn.
9740         (trace_dump_command): Adjust to validate_actionline prototype
9741         change.
9742         * tracepoint.h (decode_agent_options, decode_agent_options)
9743         (encode_actions, validate_actionline): Change prototypes.
9744         * valprint.h (output_command): Delete declaration.
9745         (output_command_const): Declare.
9746         * value.c (function_destroyer): Cast const away in xfree call.
9747
9748 2013-03-13  Pedro Alves  <palves@redhat.com>
9749
9750         * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
9751         rather than casting 'const char * const *' to 'const char **'.
9752         * ada-lex.l (processInt): Make "trailer" local const.  Remove
9753         'const char **' cast.
9754         * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
9755         locals, and use those as strtol output pointer, instead than doing
9756         invalid casts to from 'const char **' to 'char **'.
9757         (_initialize_demangle): Remove cast.
9758         * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
9759         locals, and use those as strtol output pointer, instead than doing
9760         invalid casts to from 'const char **' to 'char **'.
9761         * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
9762         casts.
9763         * stap-probe.c (stap_parse_register_operand)
9764         (stap_parse_single_operand): Likewise.
9765
9766 2013-03-13  Yao Qi  <yao@codesourcery.com>
9767
9768         * tracepoint.c (tfile_get_trace_state_variable_value): Look for
9769         the last matched 'V' blcok in trace frame.
9770
9771 2013-03-12  Joel Brobecker  <brobecker@adacore.com>
9772
9773         * NEWS: Create a new section for the next release branch.
9774         Rename the section of the current branch, now that it has
9775         been cut.
9776
9777 2013-03-12  Joel Brobecker  <brobecker@adacore.com>
9778
9779         GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
9780         * version.in: Bump version to 7.6.50.20130312-cvs.
9781
9782 2013-03-12  Keith Seitz  <keiths@redhat.com>
9783
9784         * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
9785         * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
9786         Remove temporary copy of input string.
9787         (mi_execute_command_wrapper): Make "cmd" const.
9788         * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
9789         * mi/mi-parse.c (mi_parse_argv): Make "args" const.
9790         Use const strings.
9791         (mi_parse): Make "cmd" const.
9792         Use const strings.
9793         * mi/mi-parse.h (mi_parse): Make "cmd" const.
9794
9795 2013-03-12  Keith Seitz  <keiths@redhat.com>
9796
9797         * ada-lang.c (ada_read_renaming_var_value): Pass const
9798         pointer to expression string to parse_exp_1.
9799         (create_excep_cond_exprs): Likewise.
9800         * ax-gdb.c (agent_eval_command_one): Likewise.
9801         (maint_agent_printf_command): Likewise.
9802         Constify much of the string handling/parsing.
9803         * breakpoint.c (set_breakpoint_condition): Pass const
9804         pointer to expression string to parse_exp_1.
9805         (update_watchpoint): Likewise.
9806         (parse_cmd_to_aexpr): Constify string handling.
9807         Pass const pointer to parse_exp_1.
9808         (init_breakpoint_sal): Pass const pointer to parse_exp_1.
9809         (find_condition_and_thread): Likewise.
9810         Make TOK const.
9811         (watch_command_1): Make "arg" const.
9812         Constify string handling.
9813         Copy the expression string instead of changing the input
9814         string.
9815         (update_breakpoint_location): Pass const pointer to
9816         parse_exp_1.
9817         * eval.c (parse_and_eval_address): Make "exp" const.
9818         (parse_to_comma_and_eval): Make "expp" const.
9819         (parse_and_eval): Make "exp" const.
9820         * expression.h (parse_expression): Make argument const.
9821         (parse_exp_1): Make first argument const.
9822         * findcmd.c (parse_find_args): Treat "args" as const.
9823         * linespec.c (parse_linespec): Pass const pointer to
9824         linespec_expression_to_pc.
9825         (linespec_expression_to_pc): Make "exp_ptr" const.
9826         * parse.c (parse_exp_1): Make "stringptr" const.
9827         Make a copy of the expression to pass to parse_exp_in_context until
9828         this whole interface can be constified.
9829         (parse_expression): Make "string" const.
9830         * printcmd.c (ui_printf): Treat "arg" as const.
9831         Handle const strings.
9832         * tracepoint.c (validate_actionline): Pass const pointer to
9833         all calls to parse_exp_1.
9834         (encode_actions_1): Likewise.
9835         * value.h (parse_to_comma_and_eval): Make argument const.
9836         (parse_and_eval_address): Likewise.
9837         (parse_and_eval): Likewise.
9838         * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
9839         (varobj_set_value): Likewise.
9840         * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
9841         constify string handling.
9842         Pass const pointers to parse_and_eval_address and
9843         parse_to_comman_and_eval.
9844         * cli/cli-utils.c (skip_to_space): Rename to ...
9845         (skip_to_space_const): ... this. Handle const strings.
9846         * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
9847         skip_to_space_const.
9848         (skip_to_space_const): Declare.
9849         * common/format.c (parse_format_string): Make "arg" const.
9850         Handle const strings.
9851         * common/format.h (parse_format_string): Make "arg" const.
9852         * gdbserver/ax.c (ax_printf): Make "format" const.
9853         * python/python.c (gdbpy_parse_and_eval): Do not make a copy
9854         of the expression string.
9855
9856 2013-03-12  Hui Zhu  <hui@codesourcery.com>
9857
9858         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
9859
9860 2013-03-12  Yao Qi  <yao@codesourcery.com>
9861             Hui Zhu  <hui@codesourcery.com>
9862
9863         * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
9864         (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
9865         DW_OP_deref_size.
9866
9867 2013-03-12  Paul Hilfinger  <hilfingr@adacore.com>
9868
9869         * ada-lex.l (rules): Only recognize 'thread' as a
9870         delimiter when followed by numerals, as for c-exp.y.
9871         Use new rewind_to_char function to rewind the input for
9872         expression-delimiting tokens.
9873         (rewind_to_char): New function.
9874
9875 2013-03-11  Pedro Alves  <palves@redhat.com>
9876             Jan Kratochvil  <jan.kratochvil@redhat.com>
9877
9878         * configure: Regenerate.
9879         * configure.ac (check dynamic export flag): Link python test with
9880         $PYTHON_LIBS.
9881
9882 2013-03-11  Doug Evans  <dje@google.com>
9883             Keith Seitz  <keiths@redhat.com>
9884
9885         * linespec.c (find_linespec_symbols): Call find_function_symbols
9886         first, and then call lookup_prefix_sym/find_method.
9887
9888 2013-03-11  Pedro Alves  <palves@redhat.com>
9889
9890         * charset.c (convert_between_encodings): Don't cast between
9891         different pointer to pointer types.  Instead, make the 'inp' local
9892         be of the type iconv expects.
9893         (wchar_iterate): Don't cast between different pointer to pointer
9894         types.  Instead, use new pointer local of the type iconv expects.
9895         * target.c (target_read_stralloc, target_fileio_read_stralloc):
9896         Add new local of type char pointer, and use it to get a
9897         char/string view of the byte buffer, instead of casting between
9898         pointer to pointer types.
9899
9900 2013-03-11  Hafiz Abid Qadeer  <abidh@codesourcery.com>
9901
9902         * remote.c (remote_set_trace_buffer_size): Move != operator
9903         to the start of next line to fix an ARI warning.
9904
9905 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
9906
9907         * NEWS: Add record changes.
9908
9909 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
9910
9911         * record-btrace.c (btrace_insn_history): Omit the pc prefix in
9912         the instruction history disassembly.
9913         * disasm.c (dump_insns): Omit the pc prefix, if requested.
9914         * disasm.h (DISASSEMBLY_OMIT_PC): New.
9915
9916 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
9917
9918         * Makefile.in (SFILES): Add record-btrace.c
9919         (COMMON_OBS): Add record-btrace.o
9920         * record-btrace.c: New.
9921         * objfiles.c: Include btrace.h.
9922         (free_objfile): call btrace_free_objfile.
9923
9924 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
9925
9926         * target.c (target_call_history, target_call_history_from,
9927         target_call_history_range): New.
9928         * target.h (target_ops) <to_call_history, to_call_history_from,
9929         to_call_history_range>: New fields.
9930         (target_call_history, target_call_history_from,
9931         target_call_history_range): New declaration.
9932         * record.c (get_call_history_modifiers, cmd_record_call_history,
9933         record_call_history_size): New.
9934         (_initialize_record): Add the "record function-call-history" command.
9935         Add "set/show record function-call-history-size" commands.
9936         * record.h (record_print_flag): New.
9937
9938 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
9939
9940         * target.h (target_ops) <to_insn_history, to_insn_history_from,
9941         to_insn_history_range>: New fields.
9942         (target_insn_history): New.
9943         (target_insn_history_from): New.
9944         (target_insn_history_range): New.
9945         * target.c (target_insn_history): New.
9946         (target_insn_history_from): New.
9947         (target_insn_history_range): New.
9948         * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
9949         (record_insn_history_size): New.
9950         (get_insn_number): New.
9951         (get_context_size): New.
9952         (no_chunk): New.
9953         (get_insn_history_modifiers): New.
9954         (cmd_record_insn_history): New.
9955         (_initialize_record): Add "set/show record instruction-history-size"
9956         command. Add "record instruction-history" command.
9957
9958 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
9959
9960         * record.h (record_disconnect): New.
9961         (record_detach): New.
9962         (record_mourn_inferior): New.
9963         (record_kill): New.
9964         * record-full.c (record_disconnect, record_detach,
9965         record_mourn_inferior, record_kill): Move to...
9966         * record.c: ...here.
9967         (DEBUG): New.
9968         (record_stop): New.
9969         (record_unpush): New.
9970         (cmd_record_stop): Call record_stop. Replace unpush_target
9971         call with record_unpush call.
9972         (record_disconnect, record_detach): Assert that the target
9973         is of record stratum. Call record_unpush, record_stop, and
9974         DEBUG.
9975         (record_mourn_inferior, record_kill): Assert that the target
9976         is of record stratum. Call record_unpush and DEBUG.
9977
9978 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
9979
9980         * record-full.h, record-full.c (record_memory_query): Rename
9981         to ...
9982         (record_full_memory_query): ...this. Update all users.
9983         (record_arch_list_add_reg): Rename to ...
9984         (record_full_arch_list_add_reg): ...this. Update all users.
9985         (record_arch_list_add_mem): Rename to ...
9986         (record_full_arch_list_add_mem): ...this. Update all users.
9987         (record_arch_list_add_end): Rename to ...
9988         (record_full_arch_list_add_end): ...this. Update all users.
9989         (record_gdb_operation_disable_set): Rename to ...
9990         (record_full_gdb_operation_disable_set): ...this.
9991         Update all users.
9992
9993 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
9994
9995         * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
9996         (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
9997         (RECORD_IS_REPLAY): Renamed to ...
9998         (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
9999         (RECORD_FILE_MAGIC): Renamed to ...
10000         (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
10001         (record_mem_entry): Renamed to ...
10002         (record_full_mem_entry): ... this. Updated all users.
10003         (record_reg_entry): Renamed to ...
10004         (record_full_reg_entry): ... this. Updated all users.
10005         (record_end_entry): Renamed to ...
10006         (record_full_end_entry): ... this. Updated all users.
10007         (record_type) <record_end, record_reg, record_mem>: Renamed
10008         to ...
10009         (record_full_type) <record_full_end, record_full_reg,
10010         record_full_mem>: ... this. Updated all users.
10011         (record_entry): Renamed to ...
10012         (record_full_entry): ... this. Updated all users.
10013         (record_core_buf_entry): Renamed to ...
10014         (record_full_core_buf_entry): ... this. Updated all users.
10015         (record_core_regbuf): Renamed to ...
10016         (record_full_core_regbuf): ... this. Updated all users.
10017         (record_core_start): Renamed to ...
10018         (record_full_core_start): ... this. Updated all users.
10019         (record_core_end): Renamed to ...
10020         (record_full_core_end): ... this. Updated all users.
10021         (record_core_buf_list): Renamed to ...
10022         (record_full_core_buf_list): ... this. Updated all users.
10023         (record_first): Renamed to ...
10024         (record_full_first): ... this. Updated all users.
10025         (record_list): Renamed to ...
10026         (record_full_list): ... this. Updated all users.
10027         (record_arch_list_head): Renamed to ...
10028         (record_full_arch_list_head): ... this. Updated all users.
10029         (record_arch_list_tail): Renamed to ...
10030         (record_full_arch_list_tail): ... this. Updated all users.
10031         (record_stop_at_limit): Renamed to ...
10032         (record_full_stop_at_limit): ... this. Updated all users.
10033         (record_insn_max_num): Renamed to ...
10034         (record_full_insn_max_num): ... this. Updated all users.
10035         (record_insn_num): Renamed to ...
10036         (record_full_insn_num): ... this. Updated all users.
10037         (record_insn_count): Renamed to ...
10038         (record_full_insn_count): ... this. Updated all users.
10039         (record_ops): Renamed to ...
10040         (record_full_ops): ... this. Updated all users.
10041         (record_core_ops): Renamed to ...
10042         (record_full_core_ops): ... this. Updated all users.
10043         (set_record_cmdlist): Renamed to ...
10044         (set_record_full_cmdlist): ... this. Updated all users.
10045         (show_record_cmdlist): Renamed to ...
10046         (show_record_full_cmdlist): ... this. Updated all users.
10047         (record_cmdlist): Renamed to ...
10048         (record_full_cmdlist): ... this. Updated all users.
10049         (record_beneath_to_resume_ops): Renamed to ...
10050         (record_full_beneath_to_resume_ops): ... this. Updated all users.
10051         (record_beneath_to_resume): Renamed to ...
10052         (record_full_beneath_to_resume): ... this. Updated all users.
10053         (record_beneath_to_wait_ops): Renamed to ...
10054         (record_full_beneath_to_wait_ops): ... this. Updated all users.
10055         (record_beneath_to_wait): Renamed to ...
10056         (record_full_beneath_to_wait): ... this. Updated all users.
10057         (record_beneath_to_store_registers_ops): Renamed to ...
10058         (record_full_beneath_to_store_registers_ops): ... this.
10059         Updated all users.
10060         (record_beneath_to_store_registers): Renamed to ...
10061         (record_full_beneath_to_store_registers): ... this.
10062         Updated all users.
10063         (record_beneath_to_xfer_partial_ops): Renamed to ...
10064         (record_full_beneath_to_xfer_partial_ops): ... this.
10065         Updated all users.
10066         (record_beneath_to_xfer_partial): Renamed to ...
10067         (record_full_beneath_to_xfer_partial): ... this.
10068         Updated all users.
10069         (record_beneath_to_insert_breakpoint): Renamed to ...
10070         (record_full_beneath_to_insert_breakpoint): ... this.
10071         Updated all users.
10072         (record_beneath_to_stopped_by_watchpoint): Renamed to ...
10073         (record_full_beneath_to_stopped_by_watchpoint): ... this.
10074         Updated all users.
10075         (record_beneath_to_stopped_data_address): Renamed to ...
10076         (record_full_beneath_to_stopped_data_address): ... this.
10077         Updated all users.
10078         (record_beneath_to_async): Renamed to ...
10079         (record_full_beneath_to_async): ... this. Updated all users.
10080         (record_goto_insn): Renamed to ...
10081         (record_full_goto_insn): ... this. Updated all users.
10082         (record_save): Renamed to ...
10083         (record_full_save): ... this. Updated all users.
10084         (record_reg_alloc): Renamed to ...
10085         (record_full_reg_alloc): ... this. Updated all users.
10086         (record_reg_release): Renamed to ...
10087         (record_full_reg_release): ... this. Updated all users.
10088         (record_mem_alloc): Renamed to ...
10089         (record_full_mem_alloc): ... this. Updated all users.
10090         (record_mem_release): Renamed to ...
10091         (record_full_mem_release): ... this. Updated all users.
10092         (record_end_alloc): Renamed to ...
10093         (record_full_end_alloc): ... this. Updated all users.
10094         (record_end_release): Renamed to ...
10095         (record_full_end_release): ... this. Updated all users.
10096         (record_entry_release): Renamed to ...
10097         (record_full_entry_release): ... this. Updated all users.
10098         (record_list_release): Renamed to ...
10099         (record_full_list_release): ... this. Updated all users.
10100         (record_list_release_following): Renamed to ...
10101         (record_full_list_release_following): ... this.
10102         Updated all users.
10103         (record_list_release_first): Renamed to ...
10104         (record_full_list_release_first): ... this. Updated all users.
10105         (record_arch_list_add): Renamed to ...
10106         (record_full_arch_list_add): ... this. Updated all users.
10107         (record_get_loc): Renamed to ...
10108         (record_full_get_loc): ... this. Updated all users.
10109         (record_check_insn_num): Renamed to ...
10110         (record_full_check_insn_num): ... this. Updated all users.
10111         (record_arch_list_cleanups): Renamed to ...
10112         (record_full_arch_list_cleanups): ... this. Updated all users.
10113         (record_message): Renamed to ...
10114         (record_full_message): ... this. Updated all users.
10115         (record_message_wrapper): Renamed to ...
10116         (record_full_message_wrapper): ... this. Updated all users.
10117         (record_message_wrapper_safe): Renamed to ...
10118         (record_full_message_wrapper_safe): ... this. Updated all users.
10119         (record_gdb_operation_disable): Renamed to ...
10120         (record_full_gdb_operation_disable): ... this. Updated all users.
10121         (record_hw_watchpoint): Renamed to ...
10122         (record_full_hw_watchpoint): ... this. Updated all users.
10123         (record_exec_insn): Renamed to ...
10124         (record_full_exec_insn): ... this. Updated all users.
10125         (record_restore): Renamed to ...
10126         (record_full_restore): ... this. Updated all users.
10127         (record_async_inferior_event_token): Renamed to ...
10128         (record_full_async_inferior_event_token): ... this.
10129         Updated all users.
10130         (record_async_inferior_event_handler): Renamed to ...
10131         (record_full_async_inferior_event_handler): ... this.
10132         Updated all users.
10133         (record_core_open_1): Renamed to ...
10134         (record_full_core_open_1): ... this. Updated all users.
10135         (record_open_1): Renamed to ...
10136         (record_full_open_1): ... this. Updated all users.
10137         (record_open): Renamed to ...
10138         (record_full_open): ... this. Updated all users.
10139         (record_close): Renamed to ...
10140         (record_full_close): ... this. Updated all users.
10141         (record_resume_step): Renamed to ...
10142         (record_full_resume_step): ... this. Updated all users.
10143         (record_resumed): Renamed to ...
10144         (record_full_resumed): ... this. Updated all users.
10145         (record_execution_dir): Renamed to ...
10146         (record_full_execution_dir): ... this. Updated all users.
10147         (record_resume): Renamed to ...
10148         (record_full_resume): ... this. Updated all users.
10149         (record_get_sig): Renamed to ...
10150         (record_full_get_sig): ... this. Updated all users.
10151         (record_sig_handler): Renamed to ...
10152         (record_full_sig_handler): ... this. Updated all users.
10153         (record_wait_cleanups): Renamed to ...
10154         (record_full_wait_cleanups): ... this. Updated all users.
10155         (record_wait_1): Renamed to ...
10156         (record_full_wait_1): ... this. Updated all users.
10157         (record_wait): Renamed to ...
10158         (record_full_wait): ... this. Updated all users.
10159         (record_stopped_by_watchpoint): Renamed to ...
10160         (record_full_stopped_by_watchpoint): ... this. Updated all users.
10161         (record_disconnect): Renamed to ...
10162         (record_full_disconnect): ... this. Updated all users.
10163         (record_detach): Renamed to ...
10164         (record_full_detach): ... this. Updated all users.
10165         (record_mourn_inferior): Renamed to ...
10166         (record_full_mourn_inferior): ... this. Updated all users.
10167         (record_kill): Renamed to ...
10168         (record_full_kill): ... this. Updated all users.
10169         (record_stopped_data_address): Renamed to ...
10170         (record_full_stopped_data_address): ... this. Updated all users.
10171         (record_registers_change): Renamed to ...
10172         (record_full_registers_change): ... this. Updated all users.
10173         (record_store_registers): Renamed to ...
10174         (record_full_store_registers): ... this. Updated all users.
10175         (record_xfer_partial): Renamed to ...
10176         (record_full_xfer_partial): ... this. Updated all users.
10177         (record_breakpoint): Renamed to ...
10178         (record_full_breakpoint): ... this. Updated all users.
10179         (record_breakpoint_p): Renamed to ...
10180         (record_full_breakpoint_p): ... this. Updated all users.
10181         (record_breakpoints): Renamed to ...
10182         (record_full_breakpoints): ... this. Updated all users.
10183         (record_sync_record_breakpoints): Renamed to ...
10184         (record_full_sync_record_breakpoints): ... this.
10185         Updated all users.
10186         (record_init_record_breakpoints): Renamed to ...
10187         (record_full_init_record_breakpoints): ... this.
10188         Updated all users.
10189         (record_insert_breakpoint): Renamed to ...
10190         (record_full_insert_breakpoint): ... this. Updated all users.
10191         (record_remove_breakpoint): Renamed to ...
10192         (record_full_remove_breakpoint): ... this. Updated all users.
10193         (record_can_execute_reverse): Renamed to ...
10194         (record_full_can_execute_reverse): ... this. Updated all users.
10195         (record_get_bookmark): Renamed to ...
10196         (record_full_get_bookmark): ... this. Updated all users.
10197         (record_goto_bookmark): Renamed to ...
10198         (record_full_goto_bookmark): ... this. Updated all users.
10199         (record_async): Renamed to ...
10200         (record_full_async): ... this. Updated all users.
10201         (record_can_async_p): Renamed to ...
10202         (record_full_can_async_p): ... this. Updated all users.
10203         (record_is_async_p): Renamed to ...
10204         (record_full_is_async_p): ... this. Updated all users.
10205         (record_execution_direction): Renamed to ...
10206         (record_full_execution_direction): ... this. Updated all users.
10207         (record_info): Renamed to ...
10208         (record_full_info): ... this. Updated all users.
10209         (record_delete): Renamed to ...
10210         (record_full_delete): ... this. Updated all users.
10211         (record_is_replaying): Renamed to ...
10212         (record_full_is_replaying): ... this. Updated all users.
10213         (record_goto_entry): Renamed to ...
10214         (record_full_goto_entry): ... this. Updated all users.
10215         (record_goto_begin): Renamed to ...
10216         (record_full_goto_begin): ... this. Updated all users.
10217         (record_goto_end): Renamed to ...
10218         (record_full_goto_end): ... this. Updated all users.
10219         (record_goto): Renamed to ...
10220         (record_full_goto): ... this. Updated all users.
10221         (init_record_ops): Renamed to ...
10222         (init_record_full_ops): ... this. Updated all users.
10223         (record_core_resume): Renamed to ...
10224         (record_full_core_resume): ... this. Updated all users.
10225         (record_core_kill): Renamed to ...
10226         (record_full_core_kill): ... this. Updated all users.
10227         (record_core_fetch_registers): Renamed to ...
10228         (record_full_core_fetch_registers): ... this. Updated all users.
10229         (record_core_prepare_to_store): Renamed to ...
10230         (record_full_core_prepare_to_store): ... this. Updated all users.
10231         (record_core_store_registers): Renamed to ...
10232         (record_full_core_store_registers): ... this. Updated all users.
10233         (record_core_xfer_partial): Renamed to ...
10234         (record_full_core_xfer_partial): ... this. Updated all users.
10235         (record_core_insert_breakpoint): Renamed to ...
10236         (record_full_core_insert_breakpoint): ... this. Updated all users.
10237         (record_core_remove_breakpoint): Renamed to ...
10238         (record_full_core_remove_breakpoint): ... this. Updated all users.
10239         (record_core_has_execution): Renamed to ...
10240         (record_full_core_has_execution): ... this. Updated all users.
10241         (init_record_core_ops): Renamed to ...
10242         (init_record_full_core_ops): ... this. Updated all users.
10243         (cmd_record_restore): Renamed to ...
10244         (cmd_record_full_restore): ... this. Updated all users.
10245         (record_save_cleanups): Renamed to ...
10246         (record_full_save_cleanups): ... this. Updated all users.
10247         (cmd_record_start): Renamed to ...
10248         (cmd_record_full_start): ... this. Updated all users.
10249         (set_record_insn_max_num): Renamed to ...
10250         (set_record_full_insn_max_num): ... this. Updated all users.
10251         (set_record_command): Renamed to ...
10252         (set_record_full_command): ... this. Updated all users.
10253         (show_record_command): Renamed to ...
10254         (show_record_full_command): ... this. Updated all users.
10255         (_initialize_record): Renamed to ...
10256         (_initialize_record_full): ... this. Updated all users.
10257
10258 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10259
10260         * record.h: Split into this and ...
10261         * record-full.h: ... this.
10262         * record.c: Split into this and ...
10263         * record-full.c: ... this.
10264         * target.h (target_ops): Add new fields to_info_record,
10265         to_save_record, to_delete_record, to_record_is_replaying,
10266         to_goto_record_begin, to_goto_record_end, to_goto_record.
10267         (target_info_record): New.
10268         (target_save_record): New.
10269         (target_supports_delete_record): New.
10270         (target_delete_record): New.
10271         (target_record_is_replaying): New.
10272         (target_goto_record_begin): New.
10273         (target_goto_record_end): New.
10274         (target_goto_record): New.
10275         * target.c (target_info_record): New.
10276         (target_save_record): New.
10277         (target_supports_delete_record): New.
10278         (target_delete_record): New.
10279         (target_record_is_replaying): New.
10280         (target_goto_record_begin): New.
10281         (target_goto_record_end): New.
10282         (target_goto_record): New.
10283         * record.h: Declare struct cmd_list_element.
10284         (record_cmdlist): New declaration.
10285         (set_record_cmdlist): New declaration.
10286         (show_record_cmdlist): New declaration.
10287         (info_record_cmdlist): New declaration.
10288         (cmd_record_goto): New declaration.
10289         * record.c: Remove unnecessary includes.
10290         Include inferior.h.
10291         (cmd_record_goto): Remove declaration.
10292         (record_cmdlist): Now extern. Initialize.
10293         (set_record_cmdlist): Now extern. Initialize.
10294         (show_record_cmdlist): Now extern. Initialize.
10295         (info_record_cmdlist): Now extern. Initialize.
10296         (find_record_target): New.
10297         (require_record_target): New.
10298         (cmd_record_start): Update.
10299         (cmd_record_delete): Remove target-specific code.
10300         Call target_delete_record.
10301         (cmd_record_stop): Unpush any record target.
10302         (set_record_insn_max_num): Move to record-full.c
10303         (set_record_command): Add comment.
10304         (show_record_command): Add comment.
10305         (info_record_command): Update comment.
10306         Remove target-specific code.
10307         Call the record target's to_info_record.
10308         (cmd_record_start): New.
10309         (cmd_record_goto): Now extern.
10310         Remove target-specific code.
10311         Call target_goto_begin,  target_goto_end, or target_goto.
10312         (_initialize_record): Move record target ops initialization to
10313         record-full.c.
10314         Change "record" command help text.
10315         Move "record restore", "record set", and "record show" commands to
10316         record-full.c.
10317         * Makefile.in (SFILES): Add record-full.c.
10318         (HFILES_NO_SRCDIR): Add record-full.h.
10319         (COMMON_OBS): Add record-full.o.
10320         * amd64-linux-tdep.c: Include record-full.h instead of record.h.
10321         * arm-tdep.c: Include record-full.h.
10322         * i386-linux-tdep.c: Include record-full.h instead of record.h.
10323         * i386-tdep.c: Include record-full.h.
10324         * infrun.c: Include record-full.h.
10325         * linux-record.c: Include record-full.h.
10326         * moxie-tdep.c: Include record-full.h.
10327         * record-full.c: Include record-full.h.
10328         Change module comment.
10329         (set_record_full_cmdlist): New.
10330         (show_record_full_cmdlist): New.
10331         (record_full_cmdlist): New.
10332         (record_goto_insn): New declaration.
10333         (record_save): New declaration.
10334         (record_check_insn_num): Change query string.
10335         (record_info): New.
10336         (record_delete): New.
10337         (record_is_replaying): New.
10338         (record_goto_entry): New.
10339         (record_goto_begin): New.
10340         (record_goto_end): New.
10341         (record_goto): New.
10342         (init_record_ops): Update.
10343         (init_record_core_ops): Update.
10344         (cmd_record_save): Rename to record_save. Remove target and arg checks.
10345         (cmd_record_start): New.
10346         (set_record_insn_max_num): Moved from record.c
10347         (set_record_full_command): New.
10348         (show_record_full_command): New.
10349         (_initialize_record_full): New.
10350
10351 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10352
10353         * target.h (add_deprecated_target_alias): New.
10354         * target.c (add_deprecated_target_alias): New.
10355
10356 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10357
10358         * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
10359         and signal.h.
10360         (linux_supports_btrace): Add kernel and
10361         cpuid check.
10362         (kernel_supports_btrace): New function.
10363         (cpu_supports_btrace): New function.
10364         (intel_supports_btrace): New function.
10365
10366 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10367
10368         * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
10369         * remote.c: Include btrace.h.
10370         (struct btrace_target_info): New struct.
10371         (remote_supports_btrace): New function.
10372         (send_Qbtrace): New function.
10373         (remote_enable_btrace): New function.
10374         (remote_disable_btrace): New function.
10375         (remote_teardown_btrace): New function.
10376         (remote_read_btrace): New function.
10377         (init_remote_ops): Add btrace ops.
10378         (enum <unnamed>): Add btrace packets.
10379         (struct protocol_feature remote_protocol_features[]): Add btrace packets.
10380         (_initialize_remote): Add packet configuration for branch tracing.
10381
10382 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10383
10384         * features/btrace.dtd: New file.
10385         * Makefile.in (XMLFILES): Add btrace.dtd.
10386         * btrace.h (parse_xml_btrace): New declaration.
10387         * btrace.c: Include xml-support.h.
10388         (parse_xml_btrace): New function.
10389         (parse_xml_btrace_block): New function.
10390         (block_attributes): New struct.
10391         (btrace_attributes): New struct.
10392         (btrace_children): New struct.
10393         (btrace_elements): New struct.
10394
10395 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10396
10397         * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
10398         (amd64_linux_enable_btrace): New.
10399         (amd64_linux_disable_btrace): New.
10400         (amd64_linux_teardown_btrace): New.
10401         (_initialize_amd64_linux_nat): Initialize btrace ops.
10402         * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
10403         (i386_linux_enable_btrace): New.
10404         (i386_linux_disable_btrace): New.
10405         (i386_linux_teardown_btrace): New.
10406         (_initialize_i386_linux_nat): Initialize btrace ops.
10407         * config/i386/linux.mh: Add linux-btrace.o.
10408         * config/i386/linux64.mh: Add linux-btrace.o.
10409
10410 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10411
10412         * common/linux_btrace.h: New file.
10413         * common/linux_btrace.c: New file.
10414         * Makefile.in (SFILES): Add btrace.c.
10415         (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
10416         (COMMON_OBS): Add btrace.o.
10417         (linux-btrace.o): New rule.
10418
10419 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10420
10421         * target.h: Include btrace.h.
10422         (struct target_ops) <to_supports_btrace, to_enable_btrace,
10423         to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
10424         * target.c (target_supports_btrace): New function.
10425         (target_enable_btrace): New function.
10426         (target_disable_btrace): New function.
10427         (target_teardown_btrace): New function.
10428         (target_read_btrace): New function.
10429         * btrace.h: New file.
10430         * btrace.c: New file.
10431         * Makefile.in: Add btrace.c.
10432         * gdbthread.h: Include btrace.h.
10433         (struct thread_info): Add btrace field.
10434         * thread.c: Include btrace.h.
10435         (clear_thread_inferior_resources): Call target_teardown_btrace.
10436         * common/btrace-common.h: New file.
10437
10438 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
10439
10440         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
10441         for CHILD, ignore PTRACE_KILL errors, move the inner block variable
10442         kill_status to outer block.
10443
10444 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
10445
10446         Fix entry-values if the callee called a noreturn function.
10447         * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
10448         get_frame_address_in_block.  Add new comment.
10449
10450 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
10451
10452         Fix entry-values in C++ across CUs.
10453         * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
10454         lookup_minimal_symbol.  Add a comment.
10455         * dwarf2read.c
10456         (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
10457         DW_AT_linkage_name.
10458
10459 2013-03-08  Yao Qi  <yao@codesourcery.com>
10460
10461         * tracepoint.c (_initialize_tracepoint): Indent the code.
10462
10463 2013-03-08  Pedro Alves  <palves@redhat.com>
10464
10465         * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
10466         (parse_find_args, find_command): Change type of pattern buffer
10467         locals to 'gdb_byte *'.
10468
10469 2013-03-08  Stan Shebs  <stan@codesourcery.com>
10470             Hafiz Abid Qadeer  <abidh@codesourcery.com>
10471
10472         * NEWS: Mention set and show trace-buffer-size commands.
10473         Mention new packet.
10474         * target.h (struct target_ops): New method
10475         to_set_trace_buffer_size.
10476         (target_set_trace_buffer_size): New macro.
10477         * target.c (update_current_target): Set up new method.
10478         * tracepoint.c (trace_buffer_size): New global.
10479         (start_tracing): Send it to the target.
10480         (set_trace_buffer_size): New function.
10481         (_initialize_tracepoint): Add new setshow for trace-buffer-size.
10482         * remote.c (remote_set_trace_buffer_size): New function.
10483         (_initialize_remote): Use it.
10484         (QTBuffer:size) New remote command.
10485         (PACKET_QTBuffer_size): New enum.
10486         (remote_protocol_features): Add an entry for
10487         PACKET_QTBuffer_size.
10488
10489 2013-03-08  Tom Tromey  <tromey@redhat.com>
10490
10491         * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
10492         variable.
10493
10494 2013-03-07  Pedro Alves  <palves@redhat.com>
10495
10496         * target.c (target_read_stralloc, target_fileio_read_alloc):
10497         *Cast pointer to 'gdb_byte *' in target call.
10498
10499 2013-03-07  Pedro Alves  <palves@redhat.com>
10500
10501         * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
10502         call.
10503
10504 2013-03-07  Keith Seitz  <keiths@redhat.com>
10505
10506         * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
10507         (trace_pass_command): Likewise.
10508         * cli/cli-cmds.c: Include cli/cli-utils.h.
10509         (source_command): Use skip-spaces.
10510         (disassemble_command): Likewise.
10511         * findcmd.c: Include cli/cli-utils.h.
10512         (parse_find_args): Use skip_spaces.
10513         * go32-nat.c: Include cli/cli-utils.h.
10514         (go32_sldt): Use skip_spaces.
10515         (go32_sgdt): Likewise.
10516         (go32_sidt): Likewise.
10517         (go32_pde): Likewise.
10518         (go32_pte): Likewise.
10519         (go32_pte_for_address): Likewise.
10520         * infcmd.c: Include cli/cli-utils.h.
10521         (registers_info): Use skip_spaces.
10522         * linux-tdep.c (read_mapping): Use skip_spaces_const.
10523         (linux_info_proc): Likewise.
10524         * linux-thread-db.c: Include cli/cli-utils.h.
10525         (info_auto_load_libthread_db): Use skip_spaces_const.
10526         * m32r-rom.c: Include cli/cli-utils.h.
10527         (m32r_upload_command): Use skip_spaces.
10528         * maint.c: Include cli/cli-utils.h.
10529         (maintenance_translate_address): Use skip_spaces.
10530         * mi/mi-parse.c: Include cli/cli-utils.h.
10531         (mi_parse_argv): Use skip_spaces.
10532         (mi_parse): Likewise.
10533         * minsyms.c: Include cli/cli-utils.h.
10534         (msymbol_hash_iw): Use skip_spaces_const.
10535         * objc-lang.c: Include cli/cli-utils.h.
10536         (parse_selector): Use skip_spaces.
10537         (parse_method): Likewise.
10538         * python/python.c: Include cli/cli-utils.h.
10539         (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
10540         (python_command)[HAVE_PYTHON]: Likewise.
10541         (python_interactive_command)[!HAVE_PYTHON]: Likewise.
10542         * remote-m32r-sdi.c: Include cli/cli-utils.h.
10543         (m32r_load): Use skip_spaces.
10544         * serial.c: Include cli/cli-utils.h.
10545         (serial_open): Use skip_spaces_const.
10546         * stack.c: Include cli/cli-utils.h.
10547         (parse_frame_specification_1): Use skip_spaces_const.
10548         * symfile.c: Include cli/cli-utils.h.
10549         (set_ext_lang_command): Use skip_spaces.
10550         * symtab.c: Include cli/cli-utils.h.
10551         (rbreak_command): Use skip_spaces.
10552         * thread.c (thread_name_command): Use skip_spaces.
10553         * tracepoint.c (validate_actionline): Use skip_spaces.
10554         (encode_actions_1): Likewise.
10555         (trace_find_range_command): Likewise.
10556         (trace_find_outside_command): Likewise.
10557         (trace_dump_actions): Likewise.
10558
10559 2013-03-07  Pedro Alves  <palves@redhat.com>
10560
10561         * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
10562         * expprint.c (print_subexp_standard): Likewise.
10563         * utils.c (host_char_to_target): Likewise.
10564         * valprint.c (generic_emit_char, generic_printstr): Likewise.
10565         * varobj.c (value_get_print_value): Change type of local to char*.
10566         Cast it gdb_byte * in call to language printer.
10567
10568 2013-03-07  Pedro Alves  <palves@redhat.com>
10569
10570         * charset.c (struct wchar_iterator) <input>: Change type to 'const
10571         gdb_byte *'.
10572         (make_wchar_iterator): Remove cast to char*.
10573         (wchar_iterate): Change type of local.
10574
10575 2013-03-07  Pedro Alves  <palves@redhat.com>
10576
10577         * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
10578         for 'regcache->register_status'.
10579
10580 2013-03-07  Pedro Alves  <palves@redhat.com>
10581
10582         * breakpoint.c (breakpoint_xfer_memory): Change type of local to
10583         int.
10584
10585 2013-03-07  Pedro Alves  <palves@redhat.com>
10586
10587         * stap-probe.c (handle_stap_probe): Add cast to char*.
10588
10589 2013-03-07  Pedro Alves  <palves@redhat.com>
10590
10591         * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
10592         RECORD_MSGRCV>: Pass a signed variable to
10593         regcache_raw_read_signed, instead of an unsigned one.
10594
10595 2013-03-07  Pedro Alves  <palves@redhat.com>
10596
10597         * remote-notif.c (notif_debug): Change type to int.
10598         * remote-notif.h (notif_debug): Likewise.
10599
10600 2013-03-07  Pedro Alves  <palves@redhat.com>
10601
10602         * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
10603
10604 2013-03-07  Pedro Alves  <palves@redhat.com>
10605
10606         * remote.c (hex2bin, bin2hex): Move extern declarations to ...
10607         * remote.h (hex2bin, bin2hex): ... here.
10608         * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
10609
10610 2013-03-07  Eli Zaretskii  <eliz@gnu.org>
10611
10612         * utils.c (initialize_utils): Improve doc strings of "set/show
10613         width", "set/show height", and "set/show pagination".
10614
10615 2013-03-06  Keith Seitz  <keiths@redhat.com>
10616
10617         * ax-gdb.c (gen_printf): Make FORMAT const.
10618         * ax-gdb.h (gen_printf): Likewise.
10619         * ax-general.c (ax_string): Make STR const.
10620         * ax.h (ax_string): Likewise.
10621
10622 2013-03-06  Doug Evans  <dje@google.com>
10623
10624         * elfread.c (elf_symfile_read): Move debugging printf to more
10625         logical location.
10626
10627 2013-03-06  Pedro Alves  <palves@redhat.com>
10628
10629         * python/py-utils.c (target_string_to_unicode): Delete function.
10630         * python/python-internal.h (target_string_to_unicode): Delete
10631         declaration.
10632
10633 2013-03-06  Pierre Muller  <muller@sourceware.org>
10634
10635         * linespec.c (get_current_search_block): ARI fix, use (void)
10636         for empty parameter list.
10637
10638 2013-03-05  Doug Evans  <dje@google.com>
10639
10640         * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
10641         of old ada_lookup_symbol_list.  In !full_search case, don't
10642         search superblocks.
10643         (ada_lookup_symbol_list): Delete arg full_search, all callers
10644         updated.  Call ada_lookup_symbol_list_worker.
10645         (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
10646         * ada-lang.h (ada_lookup_symbol_list): Update.
10647         * language.h (language_defn): Update comment for
10648         la_iterate_over_symbols.
10649         * linespec.c (iterate_over_file_blocks): New function.
10650         (iterate_over_all_matching_symtabs): Call it.
10651         (lookup_prefix_sym): Ditto.
10652         (get_current_search_block): New function.
10653         (get_search_block): Delete.
10654         (find_label_symbols): Call get_current_search_block.
10655         (add_matching_symbols_to_info): Call iterate_over_file_blocks.
10656         * symtab.c (iterate_over_symbols): Don't search superblocks.
10657
10658 2013-03-05  Yao Qi  <yao@codesourcery.com>
10659
10660         * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
10661         parameter VAR's type from "unsigned int" to "int".
10662         * command.h (var_zuinteger_unlimited): Update its comments.
10663         (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
10664
10665 2013-03-05  Corinna Vinschen  <vinschen@redhat.de>
10666
10667         * NEWS: Mention new target x86_64-*-cygwin*.
10668
10669 2013-03-05  Corinna Vinschen  <vinschen@redhat.de>
10670
10671         * configure.host: Add x86_64-*-cygwin* as host.
10672         * configure.tgt: Add x86_64-*-cygwin* as target.
10673         * config/i386/cygwin64.mh: New file.
10674
10675 2013-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
10676
10677         * linespec.c (decode_line_2): Fix duplicate request off by two message.
10678
10679 2013-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
10680
10681         * linespec.c (struct linespec_canonical_name): New.
10682         (struct linespec_state): Change canonical_names type to it.
10683         (add_sal_to_sals): Change variable canonical_name to canonical.  Change
10684         xrealloc element size.  Initialize the different CANONICAL fields.
10685         (canonical_to_fullform): New.
10686         (filter_results): Use it.  Add variables canonical, fullform and
10687         cleanup.
10688         (struct decode_line_2_item, decode_line_2_compare_items): New.
10689         (decode_line_2): Remove variables iter and item_names, add variables
10690         items and items_count.  Modify the code for these new variables.
10691
10692 2013-03-04  Corinna Vinschen  <vinschen@redhat.com>
10693
10694         * coff-pe-read.c (read_pe_exported_syms): Don't return without
10695         calling do_cleanup.
10696
10697 2013-03-04  Luis Machado  <lgustavo@codesourcery.com>
10698
10699         * tracepoint.c (build_traceframe_info): Add code for byte order.
10700
10701 2013-03-02  Kevin Buettner  <kevinb@redhat.com>
10702
10703         * v850-tdep.c: (v850e2_register_name): Revise system register
10704         names to match current V850E2M architecture specifications.
10705         Update register number enum comments too.
10706
10707 2013-03-01  Jiong Wang  <jiwang@tilera.com>
10708             Pedro Alves  <palves@redhat.com>
10709
10710         * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
10711         to END_ADDR.
10712         (tilegx_skip_prologue): Limit prologue analysis to section end.
10713
10714 2013-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
10715
10716         * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
10717         use it.
10718
10719 2013-03-01  Pedro Alves  <palves@redhat.com>
10720
10721         Use gdb_byte for bytes from the program being debugged.
10722
10723         * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
10724         Change type of local 'buf' to gdb_byte.
10725         * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
10726         * bfin-tdep.c (bfin_push_dummy_call): Likewise.
10727         * cris-tdep.c (cris_sigcontext_addr)
10728         (cris_sigtramp_frame_unwind_cache): Likewise.
10729         * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
10730         (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
10731         Likewise.
10732         * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
10733         * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
10734         (hppa32_hpux_search_dummy_call_sequence)
10735         (hppa_hpux_supply_save_state): Likewise.
10736         * hppa-linux-tdep.c (insns_match_pattern)
10737         (hppa_linux_find_global_pointer): Likewise.
10738         * hppa-tdep.c (hppa_in_function_epilogue_p)
10739         (skip_prologue_hard_way, hppa_frame_cache): Likewise.
10740         * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
10741         * i386fbsd-tdep.c (i386fbsd_supply_uthread)
10742         (i386fbsd_collect_uthread): Likewise.
10743         * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
10744         * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
10745         * ia64-tdep.c (examine_prologue, ia64_frame_cache)
10746         (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
10747         (ia64_sigtramp_frame_prev_register, ia64_access_reg)
10748         (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
10749         (ia64_libunwind_frame_prev_register)
10750         (ia64_libunwind_sigtramp_frame_this_id)
10751         (ia64_find_global_pointer_from_dynamic_section)
10752         (find_extant_func_descr, find_func_descr, ia64_dummy_id)
10753         (ia64_unwind_pc): Likewise.
10754         * iq2000-tdep.c (iq2000_store_return_value): Likewise.
10755         * m68hc11-tdep.c (m68hc11_push_dummy_call)
10756         (m68hc11_extract_return_value): Likewise.
10757         * m68klinux-nat.c (fetch_register, store_register): Likewise.
10758         * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
10759         (mep_get_insn, mep_push_dummy_call): Likewise.
10760         * mips-linux-tdep.c (mips_linux_get_longjmp_target)
10761         (mips_linux_in_dynsym_stub): Likewise.
10762         * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
10763         * ppc-linux-nat.c (fetch_register, store_register): Likewise.
10764         * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
10765         to gdb_byte.
10766         * remote-mips.c (mips_set_register): Likewise.
10767         * remote-sim.c (gdbsim_fetch_register): Likewise.
10768         * score-tdep.c (score7_fetch_inst): Change type of parameter
10769         'memblock' and local 'buf' to gdb_byte.
10770         (score7_malloc_and_get_memblock): Change return type to gdb_byte.
10771         Change type of local 'buf' to gdb_byte.  Adjust.
10772         (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
10773         to gdb_byte**.
10774         (score7_analyze_prologue): Change type of 'memblock' and
10775         'memblock_ptr' locals to gdb_byte*.
10776         * sh64-tdep.c (sh64_extract_return_value)
10777         (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
10778         * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
10779         * solib-pa64.c (pa64_solib_create_inferior_hook)
10780         (pa64_open_symbol_file_object): Remove local 'buf'.
10781         * solib-som.c (som_solib_create_inferior_hook, link_map_start)
10782         (som_open_symbol_file_object): Likewise.
10783         * solib-spu.c (spu_current_sos): Likewise.
10784         * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
10785         * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
10786         (spu_store_registers): Likewise.
10787         * target.c (debug_print_register): Likewise.
10788         * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
10789         * xstormy16-tdep.c (xstormy16_store_return_value)
10790         (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
10791         (xstormy16_find_jmp_table_entry): Likewise.
10792
10793 2013-03-01  Jiong Wang  <jiwang@tilera.com>
10794
10795         * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
10796         (tilegx_gdbarch_init): Install it.
10797
10798 2013-02-28  Tom Tromey  <tromey@redhat.com>
10799
10800         * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
10801         PyLong_Check.
10802
10803 2013-02-28  Doug Evans  <dje@google.com>
10804
10805         * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
10806         * python/python.c (gdbpy_find_pc_line): Ditto.
10807
10808 2013-02-28  Tom Tromey  <tromey@redhat.com>
10809
10810         * contrib/excheck.py: New file.
10811         * contrib/exsummary.py: New file.
10812         * contrib/gcc-with-excheck: New file.
10813
10814 2013-02-28  Tom Tromey  <tromey@redhat.com>
10815
10816         * python/python.c (gdbpy_print_stack): Call begin_line and
10817         fprintf_filtered inside TRY_CATCH.
10818
10819 2013-02-28  Tom Tromey  <tromey@redhat.com>
10820
10821         * python/python.c (gdbpy_find_pc_line): Call find_pc_line
10822         inside TRY_CATCH.
10823
10824 2013-02-28  Tom Tromey  <tromey@redhat.com>
10825
10826         * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
10827         frame_object_to_frame_info inside TRY_CATCH.
10828
10829 2013-02-28  Tom Tromey  <tromey@redhat.com>
10830
10831         * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
10832         TRY_CATCH.
10833
10834 2013-02-28  Tom Tromey  <tromey@redhat.com>
10835
10836         * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
10837
10838 2013-02-27  Corinna Vinschen  <vinschen@redhat.com>
10839
10840         * windows-nat.c: Throughout, fix format strings and casts of
10841         printf-like functions to avoid type related warnings on all
10842         platforms.
10843         (handle_output_debug_string): Fetch context information address
10844         from debug string using string_to_core_addr.
10845
10846 2013-02-27  Jiong Wang  <jiwang@tilera.com>
10847
10848         * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
10849         * regformats/reg-tilegx32.dat: New.
10850
10851 2013-02-27  Jiong Wang  <jiwang@tilera.com>
10852
10853         * configure.tgt (tilegx-*-linux*): Enable gdbserver.
10854
10855 2013-02-27  Jiong Wang  <jiwang@tilera.com>
10856
10857         * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
10858
10859 2013-02-27  Yao Qi  <yao@codesourcery.com>
10860             Pedro Alves  <palves@redhat.com>
10861
10862         * tracepoint.c (tfile_trace_find): For tfind
10863         pc/tp/range/outside, look for the next trace frame instead of
10864         always starting from frame 0.
10865
10866 2013-02-26  Anthony Green  <green@moxielogic.com>
10867
10868         * configure.tgt: Add support for moxie-*-rtems* target.
10869
10870 2013-02-25  Pedro Alves  <palves@redhat.com>
10871
10872         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
10873         warning text.
10874
10875 2013-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
10876
10877         * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
10878         if $fp is used as the virtual frame pointer.
10879
10880 2013-02-23  Alan Modra  <amodra@gmail.com>
10881
10882         * elfread.c (elf_symtab_read): Do not use udata.p here to find
10883         symbol size.
10884         * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
10885         * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
10886         * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
10887         * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
10888
10889 2013-02-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
10890
10891         Code cleanup.
10892         * elfread.c (build_id_bfd_get): Make the return type const.
10893         (build_id_verify): Make the check parameter const.
10894         (build_id_to_debug_filename): Make the build_id parameter and variable
10895         data const.
10896         (find_separate_debug_file_by_buildid): Make the variable build_id const.
10897
10898 2013-02-21  Alan Modra  <amodra@gmail.com>
10899
10900         * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
10901
10902 2013-02-20  Siva Chandra Reddy  <sivachandra@google.com>
10903
10904         Add a new method 'disassemble' to gdb.Architecture class.
10905         * python/py-arch.c (archpy_disassmble): Implementation of the
10906         new method gdb.Architecture.disassemble.
10907         (arch_object_methods): Add entry for the new method.
10908
10909 2013-02-20  Jiong Wang  <jiwang@tilera.com>
10910
10911         * MAINTAINERS (Write After Approval): Add myself to the list.
10912
10913 2013-02-19  Pedro Alves  <palves@redhat.com>
10914
10915         Garbage collect 'struct monitor_ops'::load_routine.
10916
10917         * monitor.h (struct monitor_ops) <load_routine>: Remove field.
10918         * monitor.c (monitor_load): No longer call
10919         current_monitor->load_routine.
10920         * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
10921         * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
10922         * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
10923
10924 2013-02-19  Pedro Alves  <palves@redhat.com>
10925
10926         PR gdb/15161
10927
10928         Harmonize with generic_load.
10929
10930         * monitor.c: Include "readline/readline.h".
10931         (monitor_load): Rename parameter 'file' to 'args'.  Use build_argv
10932         instead of sscanf.  Use CORE_ADDR/strtoulst instead of unsigned
10933         long/strtol for the 'load_offset' local.  Error out if no argument
10934         is given or if too many arguments are given.  Tilde expand the
10935         passed in file name.
10936
10937 2013-02-19  Kai Tietz  <ktietz@redhat.com>
10938
10939         PR gdb/15161
10940         * symfile.c (load_section_data): Change type of load_offset
10941         to CORE_ADDR.
10942         (generic_load): User strtoulst instead of strtoul for conversion
10943         of load_offset.
10944
10945 2013-02-19  Jiong Wang  <jiwang@tilera.com>
10946
10947         * tilegx-tdep.c (tilegx_analyze_prologue): add check for
10948          for return address, "lr" register, saved on stack.
10949         * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
10950         after we invoke tilegx_analyze_prologue.
10951
10952 2013-02-19  Jiong Wang  <jiwang@tilera.com>
10953
10954         * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
10955
10956 2013-02-19  Jiong Wang  <jiwang@tilera.com>
10957
10958         * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
10959
10960 2013-02-19  Jiong Wang  <jiwang@tilera.com>
10961
10962         * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
10963         (tilegx_write_pc): New function.
10964         (tilegx_cannot_reference_register): Return zero if REGNO
10965         is TILEGX_FAULTNUM_REGNUM.
10966         (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
10967         (tilegx_register_name): Add handling of "faultnum" register.
10968         * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
10969         * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
10970         handling of TILEGX_FAULTNUM_REGNUM.
10971         * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
10972
10973 2013-02-19  Jiong Wang  <jiwang@tilera.com>
10974
10975         * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
10976         should be aligned to 64bit.
10977
10978 2013-02-19  Kai Tietz  <ktietz@redhat.com>
10979
10980         * windows-nat.c (windows_xfer_memory): Fix debug-output
10981         for LLP64.
10982
10983 2013-02-19  Lei Liu  <lei.liu2@windriver.com>
10984
10985         * mips-linux-nat.c (mips64_linux_regsets_store_registers):
10986         Don't check DSP register number if HAVE_DSP is not set.
10987
10988 2013-02-19  Alan Modra  <amodra@gmail.com>
10989
10990         * elfread.c (struct build_id): Delete.  Use struct elf_build_id
10991         throughout file instead.
10992         (build_id_bfd_get): Update to use new elf_tdata build_id field.
10993         Don't xmalloc return value.
10994         (build_id_verify): Similarly.  Don't xfree.
10995         (build_id_to_debug_filename): Update.
10996         (find_separate_debug_file_by_buildid): Update, don't xfree.
10997
10998 2013-02-18  Tom Tromey  <tromey@redhat.com>
10999
11000         PR gdb/15102:
11001         * dwarf2read.c (read_subrange_type): Use result of
11002         'check_typedef'.
11003
11004 2013-02-16  Yuanhui Zhang  <asmwarrior@gmail.com>
11005
11006         * frame.c: Remove one extra white space after #include
11007         directive.
11008
11009 2013-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
11010
11011         * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
11012
11013 2013-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
11014
11015         * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
11016         and dir commands into an if block.
11017
11018 2013-02-15  Sanimir Agovic  <sanimir.agovic@intel.com>
11019
11020         * python/py-breakpoint (struct pybp_code):  Use int instead of
11021         enum type_code.
11022
11023 2013-02-15  Pedro Alves  <pedro@codesourcery.com>
11024             Hafiz Abid Qadeer  <abidh@codesourcery.com>
11025
11026         * NEWS: Mention new field "trace-file".
11027         * tracepoint.c (trace_status_mi): Output "trace-file" field.
11028         (tfile_open): Record the trace file's filename in the trace
11029         status.
11030         (tfile_files_info): Mention the name of the trace file.
11031         Check the "filename" field explicitely.
11032         (trace_status_command): Explicitely check "filename" field.
11033         (trace_find_command): Ditto.
11034         (trace_find_pc_command): Ditto.
11035         (trace_find_tracepoint_command): Ditto.
11036         (trace_find_line_command): Ditto.
11037         (trace_find_range_command): Ditto.
11038         (trace_find_outside_command): Ditto.
11039         * tracepoint.h (struct trace_status) <from_file>: Rename it
11040         to "filename" and make it hold the trace file's filename
11041         instead of a boolean.
11042         * remote.c (remote_get_trace_status): Initialize "filename"
11043         field with NULL instead of 0.
11044
11045 2013-02-15  Yao Qi  <yao@codesourcery.com>
11046
11047         * remote.c: Fix a typo.
11048
11049 2013-02-14  Pierre Muller  <muller@sourceware.org>
11050
11051         * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
11052
11053 2013-02-14  Pedro Alves  <palves@redhat.com>
11054
11055         * utils.c (savestring): Don't #undef it.  Move function to
11056         common/common-utils.c.
11057         * common/common-utils.c: Include gdb_string.h.
11058         (savestring): Move here from utils.c.
11059         * common/common-utils.h (savestring): Declare.
11060
11061 2013-02-14  Pedro Alves  <palves@redhat.com>
11062
11063         * utils.c (savestring): Rename parameter 'size' to 'len'.
11064
11065 2013-02-14  Pedro Alves  <palves@redhat.com>
11066             Yufeng Zhang  <yufeng.zhang@arm.com>
11067
11068         * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
11069         (aarch64_inferior_data, struct aarch64_inferior_data):
11070         Delete.
11071         (struct aarch64_process_info): New.
11072         (aarch64_process_list): New global.
11073         (aarch64_find_process_pid, aarch64_add_process)
11074         (aarch64_process_info_get): New functions.
11075         (aarch64_inferior_data_get): Delete.
11076         (aarch64_process_info_get): New function.
11077         (aarch64_forget_process): New function.
11078         (aarch64_get_debug_reg_state): New parameter 'pid'.  Reimplement.
11079         (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
11080         aarch64_get_debug_reg_state.
11081         (aarch64_notify_debug_reg_change): Use iterate_over_lwps
11082         instead of linux_nat_iterate_watchpoint_lwps.
11083         (aarch64_linux_new_fork): New function.
11084         (aarch64_linux_child_post_startup_inferior): Use
11085         aarch64_forget_process instead of aarch64_init_debug_reg_state.
11086         (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
11087         (aarch64_linux_remove_hw_breakpoint)
11088         (aarch64_handle_aligned_watchpoint)
11089         (aarch64_handle_unaligned_watchpoint)
11090         (aarch64_linux_insert_watchpoint)
11091         (aarch64_linux_remove_watchpoint)
11092         (aarch64_linux_stopped_data_address): Adjust to pass the current
11093         process id to aarch64_debug_reg_state.
11094         (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
11095         linux_nat_new_fork hook, and aarch64_forget_process as
11096         linux_nat_forget_process hook; remove the call to
11097         register_inferior_data_with_cleanup.
11098
11099 2013-02-14  Pedro Alves  <palves@redhat.com>
11100
11101         * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
11102         EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
11103         lval_memory.
11104
11105 2013-02-14  Pedro Alves  <pedro@codesourcery.com>
11106             Hafiz Abid Qadeer  <abidh@codesourcery.com>
11107
11108         * tracepoint.h (validate_trace_state_variable_name): Declare.
11109         * tracepoint.c (validate_trace_state_variable_name): New.
11110         (trace_variable_command): Parse the trace state variable's name
11111         without using parse_expression.  Do several validations.
11112         * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
11113         trace state variable's name with parse_expression.  Validate it.
11114
11115 2013-02-14  Yao Qi  <yao@codesourcery.com>
11116
11117         * infcmd.c (breakpoint_proceeded): Remove it.
11118
11119 2013-02-14  Yao Qi  <yao@codesourcery.com>
11120
11121         * tracepoint.c (end_actions_pseudocommand): Make it static.
11122         (while_stepping_pseudocommand): Likewise.
11123         * tracepoint.h (end_actions_pseudocommand): Remove the
11124         declaration.
11125         (while_stepping_pseudocommand): Likewise.
11126
11127 2013-02-14  Yao Qi  <yao@codesourcery.com>
11128
11129         * cli/cli-decode.c (help_cmd): Remove the declaration of
11130         "cmdlist".
11131         (help_all): Likewise.
11132
11133 2013-02-13  Pedro Alves  <palves@redhat.com>
11134
11135         * amd64-linux-nat.c (update_debug_registers_callback):
11136         Update comment.
11137         (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
11138         iterate_over_lwps.
11139         (amd64_linux_prepare_to_resume): Pass the lwp's pid to
11140         i386_debug_reg_state.
11141         (amd64_linux_new_fork): New function.
11142         (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
11143         linux_nat_new_fork hook, and i386_forget_process as
11144         linux_nat_forget_process hook.
11145         * i386-linux-nat.c (update_debug_registers_callback):
11146         Update comment.
11147         (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
11148         iterate_over_lwps.
11149         (i386_linux_prepare_to_resume): Pass the lwp's pid to
11150         i386_debug_reg_state.
11151         (i386_linux_new_fork): New function.
11152         (_initialize_i386_linux_nat): Install i386_linux_new_fork as
11153         linux_nat_new_fork hook, and i386_forget_process as
11154         linux_nat_forget_process hook.
11155         * i386-nat.c (i386_init_dregs): Delete.
11156         (i386_inferior_data, struct i386_inferior_data):
11157         Delete.
11158         (struct i386_process_info): New.
11159         (i386_process_list): New global.
11160         (i386_find_process_pid, i386_add_process, i386_process_info_get):
11161         New functions.
11162         (i386_inferior_data_get): Delete.
11163         (i386_process_info_get): New function.
11164         (i386_debug_reg_state): New parameter 'pid'.  Reimplement.
11165         (i386_forget_process): New function.
11166         (i386_cleanup_dregs): Rewrite.
11167         (i386_update_inferior_debug_regs, i386_insert_watchpoint)
11168         (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
11169         (i386_stopped_data_address, i386_insert_hw_breakpoint)
11170         (i386_remove_hw_breakpoint): Adjust to pass the current process id
11171         to i386_debug_reg_state.
11172         (i386_use_watchpoints): Don't register inferior data.
11173         * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
11174         adjust comment.
11175         (i386_forget_process): Declare.
11176         * linux-fork.c (delete_fork): Call linux_nat_forget_process.
11177         * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
11178         New static globals.
11179         (linux_child_follow_fork): Don't call linux_nat_new_thread here.
11180         (add_initial_lwp): New, factored out from ...
11181         (add_lwp): ... this.  Don't check the number of lwps before
11182         calling linux_nat_new_thread.
11183         (linux_nat_iterate_watchpoint_lwps): Delete.
11184         (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
11185         (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
11186         forks and vforks.
11187         (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
11188         initial lwp.
11189         (linux_nat_kill, linux_nat_mourn_inferior): Call
11190         linux_nat_forget_process.
11191         (linux_nat_set_new_fork, linux_nat_set_forget_process)
11192         (linux_nat_forget_process): New functions.
11193         * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
11194         type.
11195         (linux_nat_iterate_watchpoint_lwps): Delete declaration.
11196         (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
11197         types.
11198         (linux_nat_set_new_fork, linux_nat_set_forget_process)
11199         (linux_nat_forget_process): New declarations.
11200
11201         * amd64fbsd-nat.c (super_mourn_inferior): New global.
11202         (amd64fbsd_mourn_inferior): New function.
11203         (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
11204         * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
11205
11206 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11207
11208         * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
11209         Adding _().
11210
11211 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11212
11213         * aarch64-linux-nat.c (debug_reg_change_callback)
11214         (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
11215         %s and phex().
11216
11217 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11218
11219         * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
11220         with LONGEST.
11221
11222 2013-02-13  Pedro Alves  <palves@redhat.com>
11223             Hafiz Abid Qadeer  <abidh@codesourcery.com>
11224
11225         * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
11226
11227 2013-02-12  Tom Tromey  <tromey@redhat.com>
11228
11229         PR symtab/11464:
11230         * c-exp.y (lex_one_token): Initialize other fields of yylval on
11231         NAME return.
11232         (classify_inner_name): Remove 'first_name' argument, add
11233         'context'.  Remove unused variable.
11234         (yylex): Explicitly maintain the context type.  Exit loop earlier
11235         if NAME result is seen.
11236
11237 2013-02-12  Pedro Alves  <palves@redhat.com>
11238
11239         * amd64-darwin-tdep.c: Add (C) after Copyright.
11240         * cli/cli-cmds.h: Ditto.
11241         * cli/cli-decode.c: Ditto.
11242         * cli/cli-decode.h: Ditto.
11243         * cli/cli-dump.c: Ditto.
11244         * cli/cli-dump.h: Ditto.
11245         * cli/cli-interp.c: Ditto.
11246         * cli/cli-logging.c: Ditto.
11247         * cli/cli-script.c: Ditto.
11248         * cli/cli-script.h: Ditto.
11249         * cli/cli-setshow.c: Ditto.
11250         * cli/cli-setshow.h: Ditto.
11251         * cli/cli-utils.c: Ditto.
11252         * cli/cli-utils.h: Ditto.
11253         * config/alpha/nm-osf3.h: Ditto.
11254         * config/djgpp/djconfig.sh: Ditto.
11255         * config/i386/nm-fbsd.h: Ditto.
11256         * config/i386/nm-i386gnu.h: Ditto.
11257         * config/nm-linux.h: Ditto.
11258         * config/nm-nto.h: Ditto.
11259         * config/rs6000/nm-rs6000.h: Ditto.
11260         * config/sparc/nm-sol2.h: Ditto.
11261         * darwin-nat-info.c: Ditto.
11262         * dfp.c: Ditto.
11263         * dfp.h: Ditto.
11264         * gdb-demangle.h: Ditto.
11265         * i386-darwin-nat.c: Ditto.
11266         * i386-darwin-tdep.c: Ditto.
11267         * linux-fork.h: Ditto.
11268         * m32c-tdep.c: Ditto.
11269         * microblaze-linux-tdep.c: Ditto.
11270         * microblaze-rom.c: Ditto.
11271         * microblaze-tdep.c: Ditto.
11272         * microblaze-tdep.h: Ditto.
11273         * mips-linux-tdep.h: Ditto.
11274         * ppc-ravenscar-thread.c: Ditto.
11275         * ppc-ravenscar-thread.h: Ditto.
11276         * prologue-value.c: Ditto.
11277         * prologue-value.h: Ditto.
11278         * ravenscar-thread.c: Ditto.
11279         * ravenscar-thread.h: Ditto.
11280         * sparc-ravenscar-thread.c: Ditto.
11281         * sparc-ravenscar-thread.h: Ditto.
11282         * tilegx-linux-tdep.c: Ditto.
11283         * unwind_stop_reasons.def: Ditto.
11284         * windows-nat.h: Ditto.
11285         * xtensa-linux-tdep.c: Ditto.
11286         * xtensa-xtregs.c: Ditto.
11287         * regformats/regdat.sh: Ditto.
11288         * regformats/regdef.h: Ditto.
11289
11290 2013-02-12  Pedro Alves  <palves@redhat.com>
11291
11292         * break-catch-sig.c: Update copyright years.
11293
11294 2013-02-11  Siva Chandra Reddy  <sivachandra@google.com>
11295
11296         Add support for a destructor for ui_out data and use it to
11297         provide a ui_out destructor.
11298         * ui-out.h: Declare the new ui_out destructor.
11299         (ui_out_impl): Add a field for data destructor in ui_out_impl.
11300         * ui-out.c (default_data_destroy): Add a default data destructor
11301         which does nothing.
11302         (default_ui_out_impl): Set the new data_destroy field to
11303         default_data_destroy
11304         (uo_data_destroy): Local function which invokes the data
11305         destructor if present.
11306         (clear_table): Local function which clears the table data of a
11307         ui_out object.
11308         (ui_out_destroy): Public function which frees a ui_out object.
11309         (ui_out_table_end): Use the new clear_table function.
11310         * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
11311         NULL.
11312         * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
11313         to NULL.
11314
11315 2013-02-11  Doug Evans  <dje@google.com>
11316
11317         * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
11318         (printf_decfloat): New function.  Broken out from ui_printf.
11319         Remove unnecessary code to shift the entire format string down.
11320         (printf_pointer): New function.
11321         (ui_printf): Code to print C strings, wide C strings, decfloats,
11322         and pointers moved to separate functions.
11323
11324 2013-02-11  Sergio Durigan Junior  <sergiodj@redhat.com>
11325
11326         * valops.c (value_assign): Handling bitfield offset in
11327         `lval_internalvar_component' case.
11328
11329 2013-02-08  Doug Evans  <dje@google.com>
11330
11331         * common/format.c (parse_format_string): Fix whitespace.
11332
11333 2013-02-08  Matthew Gretton-Dann  <matthew.gretton-dann@linaro.org>
11334
11335         * stack.c (return_command): Work around uninitialized variable
11336         warning.
11337
11338 2013-02-08  Yufeng Zhang  <yufeng.zhang@arm.com>
11339
11340         * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
11341         number of the registers from 36 to 34.
11342
11343 2013-02-08  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11344
11345         * NEWS: Mention new AArch64 native and target support.
11346
11347 2013-02-08  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11348
11349         * MAINTAINERS (Write After Approval): Add myself.
11350
11351 2013-02-08  Jim MacArthur  <jim.macarthur@arm.com>
11352             Marcus Shawcroft  <marcus.shawcroft@arm.com>
11353             Nigel Stephens  <nigel.stephens@arm.com>
11354             Yufeng Zhang  <yufeng.zhang@arm.com>
11355
11356         * aarch64-linux-nat.c: New file.
11357         * config/aarch64/linux.mh: New file.
11358         * configure.host: Add AArch64.
11359         * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
11360
11361 2013-02-07  Doug Evans  <dje@google.com>
11362
11363         * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
11364         disassemble command.
11365
11366 2013-02-07  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11367
11368         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
11369         set_gdbarch_fetch_tls_load_module_address.
11370
11371 2013-02-06  David S. Miller  <davem@davemloft.net>
11372
11373         * sparc-tdep.c (sparc32_return_value): Handle writing return value when
11374         using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
11375         * value.c (struct_return_convention): New function.
11376         (using_struct_return): Implement in terms of struct_return_convention.
11377         * value.h (struct_return_convention): Declare.
11378         * stack.c (return_command): Allow successful overriding of the return
11379         value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
11380
11381 2013-02-06  Tom Tromey  <tromey@redhat.com>
11382
11383         * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
11384         outside of TRY_CATCH.
11385
11386 2013-02-06  Yao Qi  <yao@codesourcery.com>
11387
11388         * mi/mi-interp.c: Include "tracepoint.h".
11389         (mi_tsv_modified): Declare.
11390         (mi_tsv_created, mi_tsv_deleted): Update declaration.
11391         (mi_interpreter_init): Call observer_attach_tsv_modified.
11392         (mi_tsv_modified): New.
11393         (mi_tsv_created, mi_tsv_deleted): Update.
11394         * tracepoint.c (trace_variable_command): Call
11395         observer_notify_tsv_modified if the initial value of tsv is
11396         changed.
11397         (delete_trace_state_variable): Call
11398         observer_notify_tsv_deleted earlier.
11399         (trace_variable_command): Caller update.
11400         (create_tsv_from_upload): Likewise.
11401         * observer.sh: Declare "struct trace_state_variable".
11402
11403         * NEWS: Mention the new MI notification "=tsv-modified".
11404
11405 2013-02-05  Doug Evans  <dje@google.com>
11406
11407         * completer.c (location_completer): Fix typo in comment.
11408
11409 2013-02-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
11410
11411         * breakpoint.c (add_location_to_breakpoint): Insert the location with
11412         ADDRESS sorted.
11413
11414 2013-02-05  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11415
11416         * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
11417         Refactor if statement to avoid trailing || operator.
11418
11419 2013-02-05  Andreas Tobler  <andreast@fgznet.ch>
11420
11421         * NEWS: Add PowerPC FreeBSD as a new native configuration.
11422
11423 2013-02-04  Andreas Tobler  <andreast@fgznet.ch>
11424
11425         * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
11426         * configure.host: Add powerpc*-*-freebsd* target.
11427         * configure.tgt: Add target info for powerpc*-*-freebsd*.
11428         * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
11429         * config/powerpc/fbsd.mh: New file.
11430
11431 2013-02-04  Sergio Durigan Junior  <sergiodj@redhat.com>
11432             Denys Vlasenko  <dvlasenk@redhat.com>
11433             Pedro Alves  <palves@redhat.com>
11434
11435         * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
11436         (struct elf_internal_linux_prpsinfo): Forward declare.
11437         * gdbarch.h, gdbarch.c: Regenerate.
11438         * linux-tdep.c: Include `cli/cli-utils.h'.
11439         (linux_fill_prpsinfo): New function.
11440         (linux_make_corefile_notes): Use linux_fill_prpsinfo.  If there's
11441         an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
11442         elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
11443         depending on gdbarch pointer bitness.
11444         * ppc-linux-tdep.c: Include elf-bfd.h.
11445         (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
11446         on 32-bit.
11447
11448 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
11449             Marcus Shawcroft  <marcus.shawcroft@arm.com>
11450             Nigel Stephens  <nigel.stephens@arm.com>
11451             Yufeng Zhang  <yufeng.zhang@arm.com>
11452
11453         * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
11454
11455 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
11456             Marcus Shawcroft  <marcus.shawcroft@arm.com>
11457             Nigel Stephens  <nigel.stephens@arm.com>
11458             Yufeng Zhang  <yufeng.zhang@arm.com>
11459
11460         * aarch64-newlib-tdep.c: New file.
11461         * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
11462         aarch64*-*-elf.
11463         * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
11464         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
11465         (ALLDEPFILES): Add aarch64-newlib-tdep.c.
11466         * osabi.c (gdb_osabi_names): Add "Newlib".
11467
11468 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
11469             Marcus Shawcroft  <marcus.shawcroft@arm.com>
11470             Nigel Stephens  <nigel.stephens@arm.com>
11471             Yufeng Zhang  <yufeng.zhang@arm.com>
11472
11473         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
11474         (ALLDEPFILES): Add aarch64-linux-tdep.c.
11475         * aarch64-linux-tdep.c: New file.
11476         * aarch64-linux-tdep.h: New file.
11477         * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
11478         * configure.tgt: Add aarch64-none-linux-gnu.
11479
11480 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
11481             Marcus Shawcroft  <marcus.shawcroft@arm.com>
11482             Nigel Stephens  <nigel.stephens@arm.com>
11483             Yufeng Zhang  <yufeng.zhang@arm.com>
11484
11485         * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
11486         (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
11487         (ALLDEPFILES): Add aarch64-tdep.c.
11488         * aarch64-tdep.c: New file.
11489         * aarch64-tdep.h: New file.
11490         * configure.tgt: Add AArch64.
11491         * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
11492         (aarch64-expedite): New definition.
11493         * features/aarch64-core.xml: New file.
11494         * features/aarch64-fpu.xml: New file.
11495         * features/aarch64-without-fpu.c: New file (generated).
11496         * features/aarch64-without-fpu.xml: New file.
11497         * features/aarch64.c: New file (generated).
11498         * features/aarch64.xml: New file.
11499         * regformats/aarch64-without-fpu.dat: New file (generated).
11500         * regformats/aarch64.dat: New file (generated).
11501
11502 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11503
11504         * contrib/expect-read1.c: New file.
11505         * contrib/expect-read1.sh: New file.
11506
11507 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11508
11509         * dwarf2read.c (file_file_name): New function with code from
11510         file_full_name.
11511         (file_full_name): Move most of the code to file_file_name.
11512         (macro_start_file): Rename variable full_name to file_name and use
11513         file_file_name for it.  Add comp_dir parameter to new_macro_table.
11514         * macrocmd.c (show_pp_source_pos): New variable fullname.  Replace any
11515         macro_source_file->filename access by macro_source_fullname call.
11516         * macroscope.c (_initialize_macroscope): Update the new_macro_table
11517         caller.
11518         * macrotab.c (struct macro_table): New field comp_dir.
11519         (macro_include): New variables link_fullname and source_fullname.
11520         Replace any macro_source_file->filename access by macro_source_fullname
11521         call.
11522         (macro_lookup_inclusion): Remove the partial filenames checking code.
11523         (check_for_redefinition): New variables source_fullname and
11524         found_key_fullname.  Replace any macro_source_file->filename access by
11525         macro_source_fullname call.
11526         (macro_undef): New variables source_fullname and key_fullname.  Replace
11527         any macro_source_file->filename access by macro_source_fullname call.
11528         (macro_lookup_definition): New variables retval and source_fullname.
11529         Replace any macro_source_file->filename access by macro_source_fullname
11530         call.
11531         (foreach_macro): New variable key_fullname.  Replace any
11532         macro_source_file->filename access by macro_source_fullname call.
11533         (foreach_macro_in_scope): New variable datum_fullname.  Replace any
11534         macro_source_file->filename access by macro_source_fullname call.
11535         (new_macro_table): Add parameter comp_dir.  Initialize T with it.
11536         (macro_source_fullname): New function.
11537         * macrotab.h (struct macro_source_file): Extent the filename field
11538         comment.
11539         (new_macro_table): New parameter comp_dir, add a comment for it.
11540         (macro_source_fullname): new declaration.
11541
11542 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11543
11544         * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
11545         this_real_name to outer block.  Use it also for
11546         compare_filenames_for_search.
11547         (dw2_expand_symtabs_matching): New variable this_real_name.  Use it
11548         with dw2_get_real_path for file_matcher, considering also
11549         BASENAMES_MAY_DIFFER.
11550         (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
11551
11552 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11553
11554         * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
11555         to the file_matcher parameter.  Pass 0 to it.
11556         (dwarf2_create_include_psymtab): Copy also DIRNAME.
11557         * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
11558         NULL psymtab_to_fullname result.
11559         (psymtab_to_fullname): Remove variable r.  Never return NULL, assemble
11560         an expected filename instead.
11561         (expand_symtabs_matching_via_partial): Add basenames parameter to the
11562         file_matcher parameter.  Call also psymtab_to_fullname, after newly
11563         considering BASENAMES_MAY_DIFFER.
11564         * source.c (rewrite_source_path): Remove static.
11565         * source.h (rewrite_source_path): New declaration.
11566         * symfile.h (struct quick_symbol_functions): Add basenames parameter to
11567         the expand_symtabs_matching field.  Comment it.
11568         * symtab.c (file_matches): New function comment.  Add parameter
11569         basenames, implement it.
11570         (search_symbols_file_matches): Add basenames parameter.  Update the
11571         file_matches caller.
11572         (search_symbols): Match FILES also against symtab_to_fullname.
11573         Optimize it for BASENAMES_MAY_DIFFER.
11574
11575 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11576
11577         * source.c (print_source_lines_base): Print for TUI also "fullname".
11578         * tui/tui-data.c (init_content_element): Change tui_locator_element
11579         field to full_name.
11580         * tui/tui-data.h (struct tui_locator_element): Likewise.
11581         * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
11582         tui_update_locator_filename calls to tui_update_locator_fullname.
11583         Replace symtab->filename refererence by symtab_to_fullname call.
11584         * tui/tui-out.c (tui_field_string): Check for "fullname" now.
11585         * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
11586         field to full_name.  Replace symtab->filename refererence by
11587         symtab_to_fullname call.
11588         (tui_show_symtab_source): Rename parameter to fullname.  Change
11589         tui_locator_element field to full_name.
11590         * tui/tui-stack.c: Include source.h.
11591         (tui_set_locator_filename): Rename the declaration to ...
11592         (tui_set_locator_fullname): ... here.  Rename its parameter to
11593         fullname, updates its comment.
11594         (tui_set_locator_info): Rename its parameter to fullname.
11595         (tui_set_locator_filename): Rename the definition to ...
11596         (tui_set_locator_fullname): ... here.  Rename its parameter to
11597         fullname, updates its comment.  Change tui_locator_element field to
11598         full_name.
11599         (tui_set_locator_info): Rename its parameter to fullname.
11600         (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
11601         (tui_update_locator_filename): Rename to ...
11602         (tui_update_locator_fullname): ... here. Rename callee to
11603         tui_set_locator_fullname.
11604         (tui_show_frame_info): Replace symtab->filename refererence by
11605         symtab_to_fullname call.
11606         * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
11607         (tui_update_locator_fullname): ... here.
11608         * tui/tui-winsource.c (tui_display_main): Rename the callee to
11609         tui_update_locator_fullname.  Replace symtab->filename refererence by
11610         symtab_to_fullname call.
11611         * tui/tui.c (tui_show_source): Rename its parameter to fullname.
11612         Rename the callee to tui_update_locator_fullname.
11613         * tui/tui.h (tui_show_source): Rename its parameter to fullname.
11614
11615 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11616
11617         * ada-lang.c (user_select_syms): Replace symtab->filename refererences
11618         by symtab_to_filename_for_display calls.
11619         * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
11620         (clear_command): New variable sal_fullname, initialize it.  Replace
11621         compare_filenames_for_search by filename_cmp with sal_fullname.
11622         (say_where, update_static_tracepoint): Replace symtab->filename
11623         refererences by symtab_to_filename_for_display calls.
11624         * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
11625         Likewise.
11626         * dwarf2read.c: Include source.h.
11627         (fixup_go_packaging): Replace symtab->filename refererences by
11628         symtab_to_filename_for_display calls.
11629         * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
11630         Replace symtab->filename refererences by symtab_to_filename_for_display
11631         calls.
11632         (create_sals_line_offset, convert_linespec_to_sals): New variable
11633         fullname, initialize it, replace symtab->filename reference by the
11634         variable.
11635         * linux-fork.c: Include source.h.
11636         (info_checkpoints_command): Replace symtab->filename refererences by
11637         symtab_to_filename_for_display calls.
11638         * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
11639         by symtab_to_filename_for_display calls.
11640         * mdebugread.c: Include source.h.
11641         (psymtab_to_symtab_1): Replace symtab->filename refererences by
11642         symtab_to_filename_for_display calls.
11643         * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
11644         (mi_cmd_file_list_exec_source_files): Likewise.
11645         * printcmd.c: Include source.h.
11646         (build_address_symbolic): Replace symtab->filename refererences by
11647         symtab_to_filename_for_display calls.
11648         * psymtab.c (partial_map_symtabs_matching_filename)
11649         (read_psymtabs_with_fullname): Call compare_filenames_for_search also
11650         with psymtab_to_fullname.
11651         * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
11652         by symtab_to_filename_for_display calls.
11653         (stpy_get_filename): New variable filename, initialize it, use instead
11654         of symtab->filename refererences.
11655         (salpy_str): Make variable filename const char *.  Replace
11656         symtab->filename refererences by symtab_to_filename_for_display calls.
11657         * skip.c: Include source.h and filenames.h.
11658         (skip_file_command): Remove const from the symtab variable.  Replace
11659         symtab->filename refererences by symtab_to_fullname call.
11660         (function_name_is_marked_for_skip): New variables searched_for_fullname
11661         and fullname.  Use them to search also with symtab's fullname.
11662         * source.c (find_source_lines): Replace symtab->filename refererences
11663         by symtab_to_filename_for_display calls.
11664         (print_source_lines_base): New variable filename, use it instead of
11665         symtab->filename.  Replace symtab->filename refererences by
11666         symtab_to_filename_for_display calls.
11667         (line_info, forward_search_command): Replace symtab->filename
11668         refererences by symtab_to_filename_for_display calls.
11669         (reverse_search_command): Replace symtab->filename refererences by
11670         symtab_to_filename_for_display calls.  New variable filename for it.
11671         * stack.c (frame_info): Likewise.
11672         * symmisc.c: Include source.h.
11673         (dump_objfile, dump_symtab_1, maintenance_print_symbols)
11674         (maintenance_info_symtabs): Replace symtab->filename refererences by
11675         symtab_to_filename_for_display calls.
11676         * symtab.c (iterate_over_some_symtabs): Call
11677         compare_filenames_for_search also with symtab_to_fullname.
11678         (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
11679         symtab->filename refererences by symtab_to_filename_for_display calls.
11680         (find_line_symtab): Replace symtab->filename refererences by
11681         symtab_to_filename_for_display calls.
11682         (file_matches): Replace filename_cmp by compare_filenames_for_search.
11683         (print_symbol_info): Make the last parameter const char *.  New
11684         variable s_filename.  Use it in the function.
11685         (symtab_symbol_info): Make the last_filename variable const char *.
11686         Replace symtab->filename refererences by symtab_to_filename_for_display
11687         calls.
11688         (rbreak_command): New variable fullname.  Use it.  Replace
11689         symtab->filename refererence by symtab_to_filename_for_display call.
11690         * tracepoint.c (set_traceframe_context, trace_find_line_command)
11691         (print_one_static_tracepoint_marker): Replace symtab->filename
11692         refererences by symtab_to_filename_for_display calls.
11693         * tui/tui-source.c (tui_set_source_content): New variables filename and
11694         s_filename.  Replace symtab->filename refererences by this variable.
11695         Replace other symtab->filename refererences by
11696         symtab_to_filename_for_display calls.
11697
11698 2013-02-03  Eldar Gaynetdinov <hal9000ed2k@gmail.com>
11699             Jan Kratochvil  <jan.kratochvil@redhat.com>
11700
11701         Add a new variable that controls a way in which filenames are
11702         displayed.
11703         * NEWS (set filename-display): New entry.
11704         * source.c (filename_display_basename, filename_display_relative)
11705         (filename_display_absolute, filename_display_kind_names)
11706         (filename_display_string, show_filename_display_string)
11707         (symtab_to_filename_for_display): New.
11708         (_initialize_source): Added initialization of 'filename-display'
11709         variable.
11710         * source.h (symtab_to_filename_for_display): Added declaration.
11711         * stack.c (print_frame): Added new variable and calling of a new
11712         function and condition with this variable. Changed third argument of
11713         calling of a function.
11714
11715 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11716
11717         * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
11718         Rename field reference filename to fullname.
11719         * tui/tui-data.h (struct tui_source_info): Rename field filename to
11720         fullname.  New comment for it.
11721         * tui/tui-source.c (tui_set_source_content): Rename field reference
11722         filename to fullname.  Initialize field by symtab_to_fullname now.
11723         * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
11724         reference filename to fullname.  Use symtab_to_fullname during
11725         comparison.
11726
11727 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11728
11729         Code cleanup.
11730         * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
11731         (dw2_expand_symtabs_with_fullname): ... here.  Rename parameter
11732         filename to fullname.  Rename variable this_name to this_fullname.
11733         Lowercase FILENAME_CMP call.
11734         (dw2_find_symbol_file): New comment for the returned string.
11735         (dwarf2_gdb_index_functions): Rename the function to
11736         dw2_expand_symtabs_with_fullname.
11737         * psymtab.c (read_psymtabs_with_filename): Rename to ...
11738         (read_psymtabs_with_fullname): ... here.  Rename parameter filename to
11739         fullname.
11740         (psym_functions): Rename the function to read_psymtabs_with_fullname.
11741         * symfile.h (struct quick_symbol_functions): Rename field
11742         expand_symtabs_with_filename to expand_symtabs_with_fullname and its
11743         parameter filename to fullname.  Document returned string meaning for
11744         find_symbol_file.
11745         * symtab.c (find_line_symtab): Rename the called function to
11746         expand_symtabs_with_fullname.
11747
11748 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11749
11750         Code cleanup.
11751         * breakpoint.c (clear_command): Remove variable is_abs, unify the
11752         call of filename_cmp with compare_filenames_for_search.
11753         * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
11754         is_abs, unify the call of FILENAME_CMP with
11755         compare_filenames_for_search.  New gdb_asserts for real_path and name.
11756         Unify the call of compare_filenames_for_search with FILENAME_CMP.
11757         * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
11758         * symfile.h (struct quick_symbol_functions): Extend the comment for
11759         map_symtabs_matching_filename.
11760         * symtab.c (compare_filenames_for_search): Remove the function comment
11761         relative path requirement.  Handle absolute filenames, with a comment.
11762         (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
11763         FILENAME_CMP with compare_filenames_for_search.  New gdb_asserts for
11764         real_path and name.  Unify the call of compare_filenames_for_search
11765         with FILENAME_CMP.
11766         (iterate_over_symtabs): New gdb_assert on REAL_PATH.
11767
11768 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11769
11770         Code cleanup.
11771         * breakpoint.c (print_breakpoint_location): Replace bp_location field
11772         source_file references by symtab field references.  Remove variables
11773         sal and fullname.
11774         (momentary_breakpoint_from_master, add_location_to_breakpoint):
11775         (clear_command, say_where): Replace bp_location field source_file
11776         references by symtab field references.
11777         (bp_location_dtor): Remove the source_file reference.
11778         (update_static_tracepoint): Replace bp_location field source_file
11779         references by symtab field references.
11780         (breakpoint_free_objfile): New function.
11781         * breakpoint.h (struct bp_location): Extend the comment for line_number.
11782         Replace the field source_file by field symtab, extend its comment.
11783         (breakpoint_free_objfile): New declaration.
11784         * objfiles.c (free_objfile): Call breakpoint_free_objfile.
11785         * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
11786         field source_file references by symtab field references.
11787
11788 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11789
11790         Replace xfullpath calls by gdb_realpath calls.
11791         * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
11792         function comment.
11793         * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
11794         Remove it from the iterate_over_some_symtabs call.
11795         (dw2_map_symtabs_matching_filename): Remove parameter full_path.
11796         Remove it from the dw2_map_expand_apply calls, remove a block handling
11797         it.
11798         * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
11799         Remove it from the iterate_over_some_symtabs call.
11800         (partial_map_symtabs_matching_filename): Remove parameter full_path.
11801         Remove it from the partial_map_expand_apply calls, remove a block
11802         handling it.  Drop gdb_realpath call and cleanups from the real_path
11803         handling.
11804         * source.c (openp): Drop the comment part about xfullpath.  Replace
11805         xfullpath calls by gdb_realpath calls.
11806         (find_and_open_source): Replace xfullpath call by gdb_realpath call.
11807         * symfile.h (struct quick_symbol_functions): Remove parameter full_path
11808         from method map_symtabs_matching_filename and its comment.
11809         * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
11810         gdb_realpath call.
11811         * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
11812         remove it also from the function comment, remove a block handling it.
11813         Drop gdb_realpath call and cleanups from the real_path handling.
11814         (iterate_over_symtabs): Drop variable full_path and its use.
11815         * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
11816         * utils.c (xfullpath): Remove.
11817         * utils.h (xfullpath): Remove.
11818
11819 2013-02-01  Andreas Tobler  <andreast@fgznet.ch>
11820
11821         * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
11822         (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
11823         (ALLDEPFILES): Add ppc64-tdep.c.
11824         * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
11825         ppc64-tdep.o to gdb_target_obs.
11826         * ppc64-tdep.h: New file.
11827         * ppc64-tdep.c: New file.
11828         (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
11829         ppc-linux-tdep.c to here.
11830         (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
11831         (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
11832         (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
11833         (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
11834         from ppc-linux-tdep.c to here.
11835         (ppc64_convert_from_func_ptr_addr): Rename from
11836         ppc64_linux_convert_from_func_ptr_addr to
11837         ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
11838         here.
11839         * rs6000-tdep.c:
11840         (read_insn): Move from ppc-linux-tdep.c to here.
11841         (insns_match_pattern, insn_d_field, insn_ds_field): Move
11842         from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
11843         * ppc-linux-tdep.c: Include ppc64-tdep.h.
11844         Removed above functions.
11845         (ppc_linux_init_abi): Adjust.
11846
11847 2013-02-01  Aleksandar Ristovski  <aristovski@qnx.com>
11848
11849         * ada-valprint.c (ada_print_floating): Remove unused 'len'.
11850
11851 2013-02-01  Aleksandar Ristovski  <aristovski@qnx.com>
11852
11853         * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
11854
11855 2013-02-01  Pedro Alves  <palves@redhat.com>
11856
11857         * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
11858         * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
11859
11860 2013-02-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
11861
11862         * elfread.c (elf_symfile_read): Limit separate debug info additions to
11863         files with no separate debug info.
11864         * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
11865         * symfile.c (read_symbols): Call find_separate_debug_file_in_section
11866         only for files with no separate debug info.
11867
11868 2013-01-31  Tom Tromey  <tromey@redhat.com>
11869
11870         * jit.c (jit_program_space_data): Rename from jit_inferior_data;
11871         change type.
11872         (struct jit_program_space_data): Rename from jit_inferior_data.
11873         Update comments.
11874         (get_jit_program_space_data): Rename from get_jit_inferior_data.
11875         Change return type.  Attach data to program space.
11876         (jit_program_space_data_cleanup): Rename from
11877         jit_inferior_data_cleanup; change argument type.
11878         (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
11879         change type.
11880         (jit_register_code): Update.
11881         (jit_update_inferior_cache): Remove.
11882         (jit_breakpoint_deleted): Get jit data from the location's program
11883         space.
11884         (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
11885         'ps_data', change type.
11886         (jit_inferior_init, jit_breakpoint_re_set_internal)
11887         (jit_event_handler): Update.
11888         (free_objfile_data): Get data from objfile's program space.
11889         (_initialize_jit): Update.
11890
11891 2013-01-31  Tom Tromey  <tromey@redhat.com>
11892
11893         PR gdb/13987:
11894         * jit.c (struct jit_inferior_data) <cached_code_address,
11895         jit_breakpoint>: New fields.
11896         (jit_breakpoint_re_set_internal): Fix logging.  Only create
11897         breakpoint if cached address has changed.
11898         (jit_update_inferior_cache, jit_breakpoint_deleted): New
11899         functions.
11900         (_initialize_jit): Register breakpoint deleted observer.
11901
11902 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
11903
11904         * infrun.c (handle_syscall_event): Remove unused gdbarch.
11905         (save_infcall_suspend_state): Ifdef out unused inf.
11906         (restore_infcall_suspend_state): Ifdef out unused inf.
11907         * jit.c (jit_register_code): Remove unused i, b, inf_data.
11908         (jit_frame_sniffer): Remove unused inf_data.
11909
11910 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
11911
11912         * c-exp.y (classify_inner_name): Remove unused type.
11913         * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
11914         in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
11915         need_escape.
11916         (c_get_string): Remove unused kind.
11917         * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
11918
11919 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
11920
11921         * charset.c (intermediate_encoding): Remove unused i.
11922         * completer.c (signal_completer): Remove unused i.
11923         * continuations.c (discard_my_continuations_1): Remove unused
11924         continuation_ptr.
11925         * corelow.c (core_close): Remove unuseD name.
11926         (get_core_siginfo): Remove unused pid.
11927         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
11928         i, cps.
11929         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
11930         (loclist_describe_location): Remove unused first.
11931         * event-top.c (command_line_handler): Remove unused got_eof.
11932         * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
11933         (resize_section_table): Remove unused old_value.
11934         * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
11935         * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
11936         * i386-tdep.c (i386_process_record): Remove unused rex.
11937         * infcmd.c (get_return_value): Remove unused uiout.
11938         * jv-lang.c (type_from_class): Remove unused is_array.
11939         * jv-valprint.c (java_val_print): Remove unused i.
11940         * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
11941         * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
11942         * m2-typeprint.c (m2_print_type): Remove unused code.
11943         * macroexp.c (get_character_constant): Remove unused body_start.
11944         (macro_stringify): Remove unused result.
11945         * objc-lang.c (find_methods): Remove unused gdbarch.
11946         * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
11947         * regcache.c (regcache_cooked_read): Remove unused gdbarch.
11948         * stack.c (print_frame_args): Remove unused summary.
11949         * thread.c (thread_apply_command): Remove unused p.
11950         * valarith.c (value_x_unop): Remove unused mangle_ptr.
11951         * valops.c (search_struct_method): Remove unused skip.
11952         * valprint.c (generic_val_print): Remove unused byte_order.
11953         * varobj.c (varobj_update): Remove unused changed.
11954         * cli/cli-cmds.c (complete_command): Remove unused next_item.
11955         (alias_command): Remove unused c.
11956         * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
11957         * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
11958         format.
11959         (mi_cmd_data_write_memory): Remove unused word_format.
11960         (mi_cmd_data_write_memory_bytes): Remove unused r.
11961         * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
11962         p_start, p_end.
11963         * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
11964         * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
11965         line_width.
11966
11967 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
11968
11969         * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
11970         * symtab.c (iterate_over_symtabs): Remove unused s.
11971         (find_pc_sect_symtab): Remove unused pspAce.
11972         (find_pc_sect_line): Remove unused alt_symtab.
11973         (find_pcs_for_symtab_line): Remove unused ix, previous_function.
11974         (completion_list_add_name): Remove unused newsize.
11975
11976 2013-01-31  Tom Tromey  <tromey@redhat.com>
11977
11978         PR c++/14998:
11979         * dwarf2read.c (read_tag_ptr_to_member_type): Handle
11980         TYPE_CODE_FUNC.
11981
11982 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
11983
11984         * target.c (target_read_string): Remove unused origlen.
11985
11986 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
11987
11988         * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
11989         * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
11990         * ax-general.c (ax_print): Remove unused is_float.
11991         * blockframe.c (block_innermost_frame): Remove unused start, end.
11992         * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
11993
11994 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
11995
11996         * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
11997         (svr4_read_so_list): Remove unused lmo.
11998         * solib-target.c (solib_target_relocate_section_addresses): Remove
11999         unused flags.
12000
12001 2013-01-30  Tom Tromey  <tromey@redhat.com>
12002
12003         * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
12004
12005 2013-01-30  Tom Tromey  <tromey@redhat.com>
12006
12007         * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
12008         * utils.c (gnu_debuglink_crc32): Remove.
12009         * utils.h (gnu_debuglink_crc32): Don't declare.
12010
12011 2013-01-30  Tom Tromey  <tromey@redhat.com>
12012
12013         * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
12014         (read_structure_type, read_enumeration_type): Remove cast.
12015
12016 2013-01-30  Tom Tromey  <tromey@redhat.com>
12017
12018         * dwarf2read.c (read_namespace_type): Remove cast.
12019         (read_typedef): Likewise.
12020
12021 2013-01-29  Tom Tromey  <tromey@redhat.com>
12022
12023         * dwarf2read.c (free_dwo_file): Remove assert.
12024
12025 2013-01-29  Tom Tromey  <tromey@redhat.com>
12026
12027         * value.c (deprecated_set_value_modifiable): Remove.
12028         * value.h (deprecated_set_value_modifiable): Remove.
12029
12030 2013-01-28  Doug Evans  <dje@google.com>
12031
12032         * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
12033         to addresses from dwo files.
12034
12035 2013-01-25  Siva Chandra Reddy  <sivachandra@google.com>
12036
12037         * valops.c (find_overload_match): Remove unused argument 'lax'.
12038         * value.h: Remove unused argument 'lax' from the declaration of
12039         find_overload_match.
12040         * eval.c (value_subexp_standard): Do not pass a 'lax' argument
12041         to find_overload_match.
12042         * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
12043         argument to find_overload_match.
12044
12045 2013-01-25  Tom Tromey  <tromey@redhat.com>
12046
12047         * dwarf2read.c (processing_has_namespace_info): Remove.
12048         (struct dwarf2_cu) <processing_has_namespace_info>: New field.
12049         (process_die, read_func_scope, dwarf2_start_symtab)
12050         (new_symbol_full): Update.
12051
12052 2013-01-25  Tom Tromey  <tromey@redhat.com>
12053
12054         * cp-namespace.c (cp_set_block_scope): Remove.
12055         * cp-support.h (cp_set_block_scope): Remove.
12056         * dbxread.c: Include block.h.
12057         (cp_set_block_scope): New function.
12058         (process_one_symbol): Update.
12059         * dwarf2read.c (read_func_scope): Use block_set_scope.
12060
12061 2013-01-25  Pedro Alves  <palves@redhat.com>
12062
12063         * remote.c (add_current_inferior_and_thread): Tweak comment.
12064
12065 2013-01-25  Tom Tromey  <tromey@redhat.com>
12066
12067         * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
12068         (cp_add_using_directive): Add 'copy_names' argument.
12069         * cp-support.h (cp_add_using_directive): Update.
12070         (struct using_direct) <import_src, import_dest, alias,
12071         declaration>: Now const.
12072         * dwarf2read.c (read_import_statement): Use obconcat.
12073         Don't copy names passed to cp_add_using_directive.
12074
12075 2013-01-25  Tom Tromey  <tromey@redhat.com>
12076
12077         * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
12078
12079 2013-01-25  Pedro Alves  <palves@redhat.com>
12080
12081         * remote.c (stop_reply_extract_thread): New.
12082         (add_current_inferior_and_thread): New parameter 'wait_status'.
12083         Handle it.
12084         (remote_start_remote): Pass wait status to
12085         add_current_inferior_and_thread.
12086         (extended_remote_run): Update comment.
12087         (extended_remote_create_inferior_1): Pass wait status to
12088         add_current_inferior_and_thread.
12089
12090 2013-01-25  Andrew Burgess  <aburgess@broadcom.com>
12091             Ulrich Weigand  <uweigand@de.ibm.com>
12092
12093         * valarith.c (value_vector_widen): New function for replicating a
12094         scalar into a vector.
12095         (value_binop): Use value_vector_widen to widen scalar to vector
12096         rather than casting, this better matches gcc C behaviour.
12097         * valops.c (value_casst): Update logic for casting between vector
12098         types, and for casting from scalar to vector, try to match gcc C
12099         behaviour.
12100         * value.h (value_vector_widen): Declare.
12101         * opencl-lang.c (opencl_value_cast): New opencl specific casting
12102         function, handle special case for casting scalar to vector.
12103         (opencl_relop): Use opencl_value_cast.
12104         (evaluate_subexp_opencl): Use opencl_value_cast instead of
12105         value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
12106         in order to use opencl_value_cast.
12107
12108 2013-01-25  Yao Qi  <yao@codesourcery.com>
12109
12110         * event-loop.c: Include "queue.h".
12111         (gdb_event_p): New typedef.
12112         (DECLARE_QUEUE_P): Use.
12113         (DEFINE_QUEUE_P): Use.
12114         (async_queue_event): Remove.
12115         (gdb_event_xfree): New.
12116         (initialize_event_loop): New.
12117         (process_event): Use QUEUE macros.
12118         (event_queue): Remove.
12119         (gdb_wait_for_event): Caller update.
12120         (check_async_event_handlers): Likewise.
12121         (poll_timers): Likewise.
12122         * event-loop.h (initialize_event_loop): Declare.
12123         * event-loop.c (gdb_event_xfree): New.
12124         * top.c (gdb_init): Call initialize_event_loop.
12125
12126 2013-01-25  Yao Qi  <yao@codesourcery.com>
12127
12128         * event-loop.c (async_queue_event): Remove one parameter
12129         'position'.  Remove code handling 'position' == TAIL.
12130         (gdb_wait_for_event): Caller update.
12131         (check_async_event_handlers): Caller update.
12132         (poll_timers): Caller update.
12133         * event-loop.h (enum queue_position): Remove.
12134
12135 2013-01-25  Maxim Kuvyrkov  <maxim@kugelworks.com>
12136
12137         * MAINTAINERS: Update my email.
12138
12139 2013-01-25  Yao Qi  <yao@codesourcery.com>
12140
12141         * main.c (print_gdb_help): Remove "--epoch" from the help
12142         message.
12143
12144 2013-01-24  Ulrich Weigand  <uweigand@de.ibm.com>
12145
12146         * symtab.c (skip_prologue_using_sal): Consider a file
12147         change the same as an increased line number
12148
12149 2013-01-24  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
12150
12151         * MAINTAINERS (Write After Approval): Add myself to the list.
12152
12153 2013-01-24  Tom Tromey  <tromey@redhat.com>
12154
12155         * ada-lang.h (ada_decode_symbol): Make return type const.
12156         * ada-lang.c (ada_decode_symbol): Likewise.
12157
12158 2013-01-23  Doug Evans  <dje@google.com>
12159
12160         * linespec.c (find_linespec_symbols): Make static.
12161
12162 2013-01-23  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
12163
12164         * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
12165         type on float conversion for complex type.
12166
12167 2013-01-23  Siva Chandra Reddy  <sivachandra@google.com>
12168
12169         Add a new class gdb.Architecture which exposes GDB's
12170         internal representation of architecture via GDB Python API.
12171         * Makefile.in: Add entries corresponding to the new file
12172         python/py-arch.c.
12173         * NEWS (Python Scripting): Add entries for the new class
12174         gdb.Architecture and the new method gdb.Frame.architecture.
12175         * python/py-arch.c: Implement gdb.Architecture class.
12176         * python/py-frame.c (frapy_arch): Implement the method
12177         gdb.Frame.architecture().
12178         (frame_object_methods): Add 'architecture' to the method table.
12179         * python/python-internal.h: Add declarations of new utility
12180         functions.
12181         * python/python.c (_initialize_python): Initialize
12182         gdb.Architecture class.
12183
12184 2013-01-23  Doug Evans  <dje@google.com>
12185
12186         Work around binutils/15021.
12187         * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
12188         type_unit_group out of union s.  All uses updated.
12189         (read_index_from_section): Watch for index version 8.
12190         (follow_die_sig): If using .gdb_index version <= 7, record the TU as
12191         an imported symtab.
12192         (write_psymtabs_to_index): Increment version number to 8.
12193
12194 2013-01-22  Pedro Alves  <palves@redhat.com>
12195
12196         * annotate.c (breakpoint_changed): Skip if breakpoint is not
12197         user-visible.
12198
12199 2013-01-22  Pedro Alves  <palves@redhat.com>
12200
12201         * annotate.c (annotate_breakpoints_changed): Rename to ...
12202         (annotate_breakpoints_invalid): ... this.  Make static.
12203         (breakpoint_changed): Adjust.
12204         (_initialize_annotate): Always install the observers.  Install a
12205         "breakpoint_created" observer.
12206         * annotate.h (annotate_breakpoints_changed): Delete declaration.
12207         * breakpoint.c (set_breakpoint_condition)
12208         (breakpoint_set_commands, do_map_commands_command)
12209         (init_raw_breakpoint, clear_command, set_ignore_count)
12210         (enable_breakpoint_disp): No longer call
12211         annotate_breakpoints_changed.
12212
12213 2013-01-22  Pedro Alves  <palves@redhat.com>
12214
12215         * annotate.c: Include "inferior.h".
12216         (frames_invalid_emitted)
12217         (breakpoints_invalid_emitted): New globals.
12218         (async_background_execution_p): New function.
12219         (annotate_breakpoints_changed, annotate_frames_invalid): Skip
12220         emitting the annotation if it has already been emitted.
12221         (annotate_display_prompt): New function.
12222         * annotate.h (annotate_display_prompt): New declaration.
12223         * event-top.c: Include annotate.h.
12224         (display_gdb_prompt): Call annotate_display_prompt.
12225
12226 2013-01-22  Pedro Alves  <palves@redhat.com>
12227
12228         * annotate.c (ignore_count_changed): Delete.
12229         (annotate_breakpoints_changed): Don't clear ignore_count_changed.
12230         (annotate_ignore_count_change): Delete.
12231         (annotate_stopped): Don't emit a delayed breakpoints-changed
12232         annotation.
12233         * annotate.h (annotate_ignore_count_change): Delete.
12234         * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
12235         annotate_ignore_count_change.
12236
12237 2013-01-22  Tom Tromey  <tromey@redhat.com>
12238
12239         * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
12240         require_rvalue for a register location.
12241
12242 2013-01-21  Marc Khouzam  <marc.khouzam@ericsson.com>
12243
12244         * breakpoint.c (print_one_breakpoint_location): Add MI
12245         field 'thread-groups' when printing a breakpoint.
12246         (output_thread_groups): New function.
12247
12248 2013-01-21  Siva Chandra Reddy  <sivachandra@google.com>
12249
12250         * python/lib/gdb/commands/explore.py
12251         (CompoundExplorer.explore_expr): Correct the name of a method
12252         being invoked.
12253         (ExploreTypeCommand.invoke): Add a missing 'return'.
12254
12255 2013-01-21  Tom Tromey  <tromey@redhat.com>
12256
12257         * gdb_obstack.h (obconcat): Move declaration here, from...
12258         * symfile.h (obconcat): ... here.
12259         * gdb_obstack.c: New file.
12260         (obconcat): Move from...
12261         * symfile.c (obconcat): ... here.
12262         * Makefile.in (SFILES): Add gdb_obstack.c.
12263         (COMMON_OBS): Add gdb_obstack.o.
12264
12265 2013-01-21  Tom Tromey  <tromey@redhat.com>
12266
12267         * symfile.h (obsavestring): Don't declare.
12268         * symfile.c (obsavestring): Remove.
12269         * ada-exp.y: Use obstack_copy0, not obsavestring.
12270         * ada-lang.c: Use obstack_copy0, not obsavestring.
12271         * coffread.c: Use obstack_copy0, not obsavestring.
12272         * cp-namespace.c: Use obstack_copy0, not obsavestring.
12273         * dbxread.c: Use obstack_copy0, not obsavestring.
12274         * dwarf2read.c: Use obstack_copy0, not obsavestring.
12275         * jit.c: Use obstack_copy0, not obsavestring.
12276         * mdebugread.c: Use obstack_copy0, not obsavestring.
12277         * psymtab.c: Use obstack_copy0, not obsavestring.
12278         * stabsread.c: Use obstack_copy0, not obsavestring.
12279         * xcoffread.c: Use obstack_copy0, not obsavestring.
12280
12281 2013-01-21  Tom Tromey  <tromey@redhat.com>
12282
12283         * dwarf2read.c (fixup_go_packaging): Save package name
12284         on objfile obstack.
12285         * gdbtypes.c (init_type): Don't copy name.
12286
12287 2013-01-21  Tom Tromey  <tromey@redhat.com>
12288
12289         * dwarf2read.c (struct partial_die_info) <name, scope>: Now
12290         const.
12291         (struct attribute) <u.str>: Now const.
12292         (struct fnfieldlist) <name>: Now const.
12293         (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
12294         (partial_die_parent_scope): Make return type const.
12295         (partial_die_full_name, add_partial_symbol): Update.
12296         (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
12297         'name' const.
12298         (find_file_and_directory): Make 'name' and 'comp_dir' const.
12299         (read_file_scope, read_func_scope, dwarf2_add_field)
12300         (dwarf2_add_member_fn, read_structure_type)
12301         (process_enumeration_scope, read_array_type, read_module_type)
12302         (read_base_type, read_subrange_type): Update.
12303         (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
12304         (new_symbol_full, guess_full_die_structure_name): Update.
12305         (dwarf2_canonicalize_name): Return const type.  Make 'name' const.
12306         (dwarf2_name): Return const type.
12307         (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
12308         const.
12309
12310 2013-01-21  Tom Tromey  <tromey@redhat.com>
12311
12312         * gdbtypes.c (init_type): Make 'name' const.
12313         * gdbtypes.h (init_type): Update.
12314
12315 2013-01-21  Tom Tromey  <tromey@redhat.com>
12316
12317         * buildsym.c (patch_subfile_names): Use set_last_source_file.
12318         (start_symtab): Make 'name' and 'dirname' const.  Use
12319         set_last_source_file.
12320         (restart_symtab, reset_symtab_globals): Use set_last_source_file.
12321         (last_source_file): Define.  Now static.
12322         (set_last_source_file, get_last_source_file): New functions.
12323         * buildsym.h (last_source_file): Don't declare.
12324         (start_symtab): Update.
12325         (set_last_source_file, get_last_source_file): Declare.
12326         * coffread.c (complete_symtab): Use set_last_source_file.
12327         (coff_end_symtab): Likewise.
12328         (coff_symtab_read): Use set_last_source_file, get_last_source_file.
12329         * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
12330         set_last_source_file.
12331         (process_one_symbol): Use get_last_source_file.
12332         * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
12333         (psymtab_to_symtab_1): Use get_last_source_file.
12334         * xcoffread.c (process_linenos): Use get_last_source_file.
12335         (complete_symtab): Use set_last_source_file.
12336         (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
12337         (scan_xcoff_symtab): Use set_last_source_file.
12338
12339 2013-01-21  Tom Tromey  <tromey@redhat.com>
12340
12341         * symtab.c (struct demangled_name_entry) <mangled>: Now const.
12342         (symbol_set_names): Remove casts.  Handle field const-ness.
12343
12344 2013-01-21  Tom Tromey  <tromey@redhat.com>
12345
12346         * dwarf2read.c (new_symbol_full): Remove cast.
12347         * symtab.c (symbol_set_demangled_name): Make 'name' const.
12348         * symtab.h (symbol_set_demangled_name): Update.
12349
12350 2013-01-21  Tom Tromey  <tromey@redhat.com>
12351
12352         * main.c (captured_main): Call bfd_init.
12353
12354 2013-01-21  Tom Tromey  <tromey@redhat.com>
12355
12356         * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
12357         * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
12358         * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
12359         * NEWS: Update.
12360
12361 2013-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
12362
12363         * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
12364
12365 2013-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
12366
12367         Fix gdb.fortran/common-block.exp crash in PIE mode.
12368         * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
12369         LOC_COMMON_BLOCK.
12370         * f-valprint.c (info_common_command_for_block): Expect
12371         LOC_COMMON_BLOCK in gdb_assert.
12372         * symtab.h (struct general_symbol_info): Update comment for the
12373         common_block member.
12374         (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
12375         (enum address_class): New member LOC_COMMON_BLOCK.
12376
12377 2013-01-18  David Blaikie  <dblaikie@gmail.com>
12378
12379         * MAINTAINERS (Write After Approval): Add "David Blaikie".
12380
12381 2013-01-18  Tom Tromey  <tromey@redhat.com>
12382
12383         PR c++/14999:
12384         * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
12385         Call require_rvalue.
12386
12387 2013-01-18  Yao Qi  <yao@codesourcery.com>
12388
12389         * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
12390         (dbx_read_symtab): New declaration.
12391         (dbx_psymtab_to_symtab): Delete.
12392         (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
12393         Rename parameter PST to SELF.  Exchanged two parameters.
12394         (start_psymtab): Caller update.
12395         * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
12396         (dwarf2_read_symtab): New declaration.
12397         (dwarf2_psymtab_to_symtab): Delete.
12398         (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
12399         Rename parameter PST to SELF.  Exchanged two parameters.
12400         (create_partial_symtab): Caller update.
12401         * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
12402         (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
12403         Rename parameter PST to SELF.  Exchanged two parameters.
12404         (parse_partial_symbols, new_psymtab): Caller update.
12405         * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
12406         two parameters.
12407         * psymtab.c (psymtab_to_symtab): Caller update.
12408         * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
12409         (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
12410         Rename parameter PST to SELF.  Exchanged two parameters.
12411         (xcoff_start_psymtab): Caller update.
12412
12413 2013-01-18  Yao Qi  <yao@codesourcery.com>
12414
12415         * infrun.c (proceed): Rename local variable 'oneproc' to
12416         'force_step'.
12417
12418 2013-01-17  Doug Evans  <dje@google.com>
12419
12420         * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
12421         (dw2_build_type_unit_groups): Delete.  All uses updated.
12422
12423         * symtab.h (struct symbol_search): Add comment.
12424
12425 2013-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
12426
12427         * symtab.c (compare_filenames_for_search): New comment for
12428         HAS_DRIVE_SPEC.
12429
12430 2013-01-17  Tom Tromey  <tromey@redhat.com>
12431
12432         * cp-abi.c (cp_abi_completer): Fix typo in assignment.
12433
12434 2013-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
12435
12436         * symtab.c (iterate_over_some_symtabs): New variable cleanups,
12437         initialize it by existing make_cleanup.  Call new do_cleanups.
12438
12439 2013-01-17  Tom Tromey  <tromey@redhat.com>
12440
12441         * cp-abi.c (cp_abi_completer): New function.
12442         (_initialize_cp_abi): Set completer for "set cp-abi".
12443
12444 2013-01-17  Tom Tromey  <tromey@redhat.com>
12445
12446         * mem-break.c: Remove obsolete comment.
12447         * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
12448
12449 2012-01-17  Sanjoy Das <sanjoy@playingwithpointers.com>
12450
12451         * jit.c (jit_reader_load_command): Interpret the jit reader name
12452         as an absolute path if it begins with a forward slash.
12453
12454 2012-01-17  Sanjoy Das <sanjoy@playingwithpointers.com>
12455
12456         PR gdb/14550
12457
12458         * jit.c (finalize_symtab): Ensure that only the global block has a
12459         NULL superblock.
12460
12461 2013-01-17  Pedro Alves  <palves@redhat.com>
12462
12463         * acinclude.m4: Include ../config/plugins.m4,
12464         ../config/largefile.m4 and ../config/lead-dot.m4.  Add comments.
12465         * Makefile.in (aclocal_m4_deps): Update.
12466         * aclocal.m4: Renegerate.
12467
12468 2013-01-16  Doug Evans  <dje@google.com>
12469
12470         * contrib/cc-with-tweaks.sh: Add references to Fission docs.
12471
12472 2013-01-16  Pedro Alves  <palves@redhat.com>
12473             Tom Tromey  <tromey@redhat.com>
12474
12475         PR cli/7221:
12476         * NEWS: Add "catch signal".
12477         * breakpoint.c (base_breakpoint_ops): No longer static.
12478         (bpstat_explains_signal): New function.
12479         (init_catchpoint): No longer static.
12480         (base_breakpoint_explains_signal): New function.
12481         (base_breakpoint_ops): Initialize new field.
12482         * breakpoint.h (enum bpstat_signal_value): New.
12483         (struct breakpoint_ops) <explains_signal>: New field.
12484         (bpstat_explains_signal): Remove macro, declare as function.
12485         (base_breakpoint_ops, init_catchpoint): Declare.
12486         * break-catch-sig.c: New file.
12487         * inferior.h (signal_catch_update): Declare.
12488         * infrun.c (signal_catch): New global.
12489         (handle_syscall_event): Update for change to
12490         bpstat_explains_signal.
12491         (handle_inferior_event): Likewise.  Always handle random signals
12492         via bpstats.
12493         (signal_cache_update): Check signal_catch.
12494         (signal_catch_update): New function.
12495         (_initialize_infrun): Initialize signal_catch.
12496         * Makefile.in (SFILES): Add break-catch-sig.c.
12497         (COMMON_OBS): Add break-catch-sig.o.
12498
12499 2013-01-16  Tom Tromey  <tromey@redhat.com>
12500
12501         * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
12502         (print_one_catch_solib, print_one_catch_syscall)
12503         (print_one_catch_exec, print_one_exception_catchpoint): Emit
12504         "catch-type".
12505
12506 2013-01-16  Yao Qi  <yao@codesourcery.com>
12507
12508         * printcmd.c (current_display_number): Make it static.
12509
12510 2013-01-16  Yao Qi  <yao@codesourcery.com>
12511
12512         * infcmd.c (step_once): Don't check '!single_inst' as it was
12513         checked before.
12514
12515 2013-01-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
12516
12517         * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
12518
12519 2013-01-14  Tom Tromey  <tromey@redhat.com>
12520
12521         * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
12522         set command.
12523         * command.h (add_setshow_string_noescape_cmd): Update.
12524         * corefile.c (set_gnutarget_command): Remove trailing whitespace.
12525         (complete_set_gnutarget): New function.
12526         (_initialize_core): Set the "set gnutarget" completer.
12527
12528 2013-01-14  Tom Tromey  <tromey@redhat.com>
12529
12530         PR symtab/14442:
12531         * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
12532         (c_type_print_modifier): Likewise.
12533         * dwarf2read.c (read_tag_restrict_type): New function.
12534         (read_type_die_1): Handle DW_TAG_restrict_type.
12535         * gdbtypes.c (make_restrict_type): New function.
12536         (recursive_dump_type): Handle TYPE_RESTRICT.
12537         * gdbtypes.h (enum type_flag_values): Renumber.
12538         (enum type_instance_flag_value): Add
12539         TYPE_INSTANCE_FLAG_RESTRICT.
12540         (TYPE_RESTRICT): New macro.
12541         (make_restrict_type): Declare.
12542
12543 2013-01-14  Tom Tromey  <tromey@redhat.com>
12544
12545         PR symtab/14931:
12546         * psymtab.c (struct psymtab_state): New.
12547         (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
12548         functions.
12549         * psympriv.h (make_cleanup_discard_psymtabs): Declare.
12550         * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
12551
12552 2013-01-14  Richard Sharman  <richard_sharman@mitel.com>
12553             Pedro Alves  <palves@redhat.com>
12554
12555         PR remote/14786
12556
12557         * remote.c (remote_threads_info): Make a copy of the reply from
12558         qfThreadInfo and use that instead of rs->buf.
12559
12560 2013-01-14  Yao Qi  <yao@codesourcery.com>
12561
12562         * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
12563         (dbx_psymtab_to_symtab): Likewise.
12564         * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
12565         * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
12566         * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
12567
12568 2013-01-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
12569
12570         * parse.c (parse_exp_in_context): New variable inner_chain.  Call
12571         make_cleanup_restore_current_language.  Call set_language.  Move
12572         OLD_CHAIN and INNER_CHAIN cleanups.
12573         * utils.c (do_restore_current_language)
12574         (make_cleanup_restore_current_language): New functions.
12575         * utils.h (make_cleanup_restore_current_language): New declaration.
12576
12577 2013-01-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
12578
12579         * source.c (symtab_to_fullname): Apply rewrite_source_path also for
12580         non-existing files.
12581
12582         * source.c (symtab_to_fullname): Do not prepend DIRNAME for
12583         non-existing files if FILENAME is already absolute.
12584
12585 2013-01-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
12586
12587         * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
12588         fputs_filtered.  Append trailing newline.
12589
12590 2013-01-11  Yao Qi  <yao@codesourcery.com>
12591             Stan Shebs  <stan@codesourcery.com>
12592
12593         * psymtab.c (init_psymbol_list): Clarify the comment.
12594
12595 2013-01-11  Yao Qi  <yao@codesourcery.com>
12596
12597         * breakpoint.c (print_one_breakpoint_location): Remove dead code.
12598         (update_dprintf_command_list): Assert that 'printf_line' is
12599         non-null.  Remove condition check.
12600
12601 2013-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
12602
12603         Code cleanup.
12604         * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
12605         type const char *.
12606         * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
12607         const char *.
12608         * tui/tui-source.h (tui_source_is_displayed): Likewise.
12609
12610 2013-01-09  Anthony Green  <green@moxielogic.com>
12611
12612         * cp-abi.c (cplus_print_vtable): Don't return value from void
12613         function.
12614         * ada-lang.c (re_set_catch_assert): Ditto.
12615
12616 2013-01-09  Doug Evans  <dje@google.com>
12617
12618         * symfile.h (quick_symbol_functions): Delete member
12619         pre_expand_symtabs_matching.  All uses removed.
12620         * dwarf2read.c (dw2_lookup_symbol): Implement.
12621         (dw2_do_expand_symtabs_matching): Delete.
12622         (dw2_pre_expand_symtabs_matching): Delete.
12623         (struct dw2_symtab_iterator): New type.
12624         (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
12625         (dw2_expand_symtabs_for_function): Rewrite.
12626         (dwarf2_gdb_index_functions): Update.
12627         * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
12628         (psym_functions): Update.
12629
12630 2013-01-09  Tom Tromey  <tromey@redhat.com>
12631
12632         * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
12633         * configure: Rebuild.
12634         * configure.ac: Add somread.o to the build if BFD has SOM
12635         support.
12636         * somread.c: Include som/aout.h, not syms.h.
12637         (som_symtab_read): Use som_external_symbol_dictionary_record.
12638         Unpack records manually.
12639         (_initialize_somread): Declare.
12640
12641 2012-01-08  Mike Frysinger  <vapier@gentoo.org>
12642
12643         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
12644         Cast return_address to 64bits.
12645
12646 2013-01-08  Hui Zhu  <hui_zhu@mentor.com>
12647
12648         * printcmd.c: Remove define of function output_command.
12649         * tracepoint.c: Remove extern of function output_command.
12650         * valprint.h: (output_command): New extern.
12651
12652 2013-01-07  Tom Tromey  <tromey@redhat.com>
12653
12654         * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
12655         Remove.
12656         (objc_language_defn): Use c_printchar, c_printstr,
12657         c_emit_char.
12658
12659 2013-01-07  Tom Tromey  <tromey@redhat.com>
12660
12661         PR cli/7719:
12662         * NEWS: Update.
12663         * ada-valprint.c (printstr, print_field_values): Remove
12664         "inspect_it" code.
12665         * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
12666         code.
12667         * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
12668         code.
12669         * m2-lang.c (m2_printstr): Remove "inspect_it" code.
12670         * main.c (captured_main): Remove "epoch" argument.
12671         * objc-lang.c (objc_printstr): Remove "inspect_it" code.
12672         * p-lang.c (pascal_printstr): Remove "inspect_it" code.
12673         * p-valprint.c (pascal_object_print_value_fields): Remove
12674         "inspect_it" code.
12675         * printcmd.c (print_command_1): Remove 'inspect' argument.
12676         (print_command, call_command): Update.
12677         (inspect_command): Remove.
12678         (_initialize_printcmd): Make "inspect" an alias for "print".
12679         * top.c (epoch_interface): Remove.
12680         * top.h (epoch_interface): Remove.
12681         * valprint.c (user_print_options): Update.
12682         (print_converted_chars_to_obstack): Remove "inspect_it" code.
12683         * valprint.h (struct value_print_options) <inspect_it>: Remove
12684         field.
12685
12686 2013-01-04  Tom Tromey  <tromey@redhat.com>
12687
12688         * valprint.h (read_string): Add 'extern'.
12689
12690 2013-01-07  Joel Brobecker  <brobecker@adacore.com>
12691
12692         * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
12693         used to decide whether to define darwin_read_dyld_info or not.
12694
12695 2013-01-03  Pierre Muller  <muller@sourceware.org>
12696
12697         * main.c (relocate_gdb_directory): Avoid calling stat function
12698         if DIR is empty.
12699
12700 2013-01-03  Yao Qi  <yao@codesourcery.com>
12701
12702         * psymtab.c (fixup_psymbol_section): Update declaration.
12703         (fixup_psymbol_section): Remove code returning value.
12704
12705 2013-01-03  Yao Qi  <yao@codesourcery.com>
12706
12707         * symtab.h: Remove some out of date comments.
12708          (enum exception_event_kind): Move it ...
12709         * breakpoint.c: ... here.
12710
12711 2013-01-02  Iain Sandoe  <developer@sandoe-acoustics.co.uk>
12712
12713         PR gdb/14405
12714         * darwin-nat.c (darwin_read_dyld_info): Only build if
12715         TASK_DYLD_INFO_COUNT is defined.
12716         (darwin_xfer_partial): Call darwin_read_dyld_info only if
12717         TASK_DYLD_INFO_COUNT is defined.
12718
12719 2013-01-02  Tom Tromey  <tromey@redhat.com>
12720
12721         * symfile.h (struct ecoff_debug_hack): Remove.
12722         * objfiles.c: Don't include mdebugread.h.
12723
12724 2013-01-02  Tom Tromey  <tromey@redhat.com>
12725
12726         * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
12727         * configure.ac: Check for Mach-O support in BFD.  Update
12728         CONFIG_OBS.
12729         * configure: Rebuild.
12730
12731 2013-01-02  Tom Tromey  <tromey@redhat.com>
12732
12733         * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
12734         * configure.ac: Use GDB_AC_CHECK_BFD.
12735         * configure: Rebuild.
12736
12737 2013-01-01  Maxim Kuvyrkov  <maxim.kuvyrkov@gmail.com>
12738
12739         * MAINTAINERS: Update my email.
12740
12741 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
12742
12743         * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
12744
12745 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
12746
12747         * rs6000-nat.c (bss_data_overlap): New function.
12748         (vmap_symtab): Use it to adjust the .bss section's offset.
12749
12750 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
12751
12752         Update year range in copyright notice of all files.
12753
12754 2013-01-01, 13  Joel Brobecker  <brobecker@adacore.com>
12755
12756         * top.c (print_gdb_version): Update copyright year.
12757
12758 For older changes see ChangeLog-2012.
12759 \f
12760 Local Variables:
12761 mode: change-log
12762 left-margin: 8
12763 fill-column: 74
12764 version-control: never
12765 coding: utf-8
12766 End: