cb5dd1536e54a96f3ce4a27b79c26532c3c3af88
[external/binutils.git] / gdb / ChangeLog
1 2013-11-25  Keith Seitz  <keiths@redhat.com>
2
3         PR c++/14819
4         * c-exp.y (classify_inner_name): If no matching symbol was
5         found, try looking up the token as a base class.
6         Likewise if a constructor was found.
7         * cp-namespace.c (find_type_baseclass_by_name): New function.
8         * cp-support.h (find_type_baseclass_by_name): Declare.
9         * valops.c (value_struct_elt_for_reference): If we get
10         a non-static field, try to get a value based on the
11         current instance, if any.
12
13 2013-11-24  Yao Qi  <yao@codesourcery.com>
14
15         * disasm.c (dis_asm_read_memory): Call target_read_code
16         instead of target_read_memory.
17
18 2013-11-24  Yao Qi  <yao@codesourcery.com>
19
20         * NEWS: Add note on new "set code-cache" option.
21         * target-dcache.c (code_cache_enabled_1): New variable.
22         (code_cache_enabled): New variable.
23         (show_code_cache, set_code_cache): New function.
24         (code_cache_enabled_p): New function.
25         (_initialize_target_dcache): Register command.
26         * target-dcache.h (code_cache_enabled_p): Declare.
27         * target.c (memory_xfer_partial_1):Handle
28         TARGET_OBJECT_CODE_MEMORY and code_cache_enabled.
29         (target_read_code): New function.
30         * target.h (enum target_object) <TARGET_OBJECT_CODE_MEMORY>:
31         New.
32         (target_read_code): Declare.
33
34 2013-11-24  Yao Qi  <yao@codesourcery.com>
35
36         * target-dcache.c (stack_cache_enabled_p_1): Rename to ...
37         (stack_cache_enabled_1): ... this.  New variable.
38         (stack_cache_enabled_p): Rename to ...
39         (stack_cache_enabled): ... this.  New variable.
40         (set_stack_cache_enabled_p): Rename to ...
41         (set_stack_cache): ... this.  Update caller.
42         (show_stack_cache_enabled_p): Rename to ...
43         (show_stack_cache): ... this.  Update caller.
44         (stack_cache_enabled): Rename to ...
45         (stack_cache_enabled_p): ... this.  Update caller.
46         (_initialize_target_dcache): Replace "data cache" with
47         "target memory cache".
48         * target-dcache.h (stack_cache_enabled): Remove declaration.
49         (stack_cache_enabled_p): Add declaration.
50
51 2013-11-23  Doug Evans  <xdje42@gmail.com>
52
53         * python/py-frame.c (gdbpy_initialize_frames): Remove FIRST_ERROR,
54         superfluous.
55
56 2013-11-23  Doug Evans  <xdje42@gmail.com>
57
58         * python/py-frame.c (frapy_block): Fix error message text.
59
60 2013-11-23  Doug Evans  <xdje42@gmail.com>
61
62         * cli/cli-script.c (multi_line_command_p): New function.
63         (recurse_read_control_structure, read_command_lines_1): Call it.
64         (execute_control_command): Consistently have a blank line between
65         each case.
66
67 2013-11-22  Sterling Augustine  <saugustine@google.com>
68
69         PR gdb/16196:
70         * valprint.c (read_string): Set new variable fetchlen based on
71         fetchlimit and size.  Use it in call to partial_memory_read.
72         Update comment.
73
74 2013-11-22  Tom Tromey  <tromey@redhat.com>
75
76         PR backtrace/16155:
77         * dwarf2-frame.c (dwarf2_frame_cache): Set undefined_retaddr if
78         the return address column is unspecified.
79
80 2013-11-22  Tom Tromey  <tromey@redhat.com>
81             Pedro Alves  <palves@redhat.com>
82
83         PR backtrace/16155
84         * value.c (value_fetch_lazy): Internal error if
85         get_frame_register_value returns the same register.
86
87 2013-11-22  Pedro Alves  <palves@redhat.com>
88             Tom Tromey  <tromey@redhat.com>
89
90         * frame.c (frame_stash_add): Now returns whether a frame with the
91         same ID was already known.
92         (compute_frame_id): New function, factored out from get_frame_id.
93         (get_frame_id): No longer lazilly compute the frame id here.
94         (get_prev_frame_if_no_cycle): New function.  Detects wider stack
95         cycles.
96         (get_prev_frame_1): Use it instead of get_prev_frame_raw directly,
97         and checking for stack cycles here.
98
99 2013-11-22  Pedro Alves  <palves@redhat.com>
100
101         PR 16155
102         * frame.c (get_prev_frame_1): Do the UNWIND_SAME_ID check between
103         this frame and the new previous frame, not between this frame and
104         the next frame.
105
106 2013-11-22  Pedro Alves  <palves@redhat.com>
107
108         PR 16155
109         * dwarf2-frame.c (struct dwarf2_frame_cache)
110         <checked_tailcall_bottom, entry_cfa_sp_offset,
111         entry_cfa_sp_offset_p>: New fields.
112         (dwarf2_frame_cache): Adjust to use the new cache fields instead
113         of locals.  Don't call dwarf2_tailcall_sniffer_first here.
114         (dwarf2_frame_prev_register): Call it here, but only once.
115
116 2013-11-21  Doug Evans  <xdje42@gmail.com>
117
118         * gdbtypes.c: #include bcache.h, dwarf2loc.h.
119         (type_equality_entry): Move here from python/py-type.c.
120         (type_equality_entry_d): Ditto.
121         (compare_maybe_null_strings, check_types_equal): Ditto.
122         (check_types_worklist, types_deeply_equal): Ditto.
123         * gdbtypes.h (types_deeply_equal): Declare.
124         * python/py-type.c: Remove inclusion of bcache.h, dwarf2loc.h.
125         (typy_richcompare): Update.
126
127 2013-11-20  Joel Brobecker  <brobecker@adacore.com>
128
129         * python/py-value.c (is_intlike): Delete.
130         (valpy_int): Replace use of CHECK_TYPEDEF and is_intlike
131         by use of is_integral_type.
132         (valpy_long): Replace use of CHECK_TYPEDEF and is_intlike
133         by use of is_integral_type and check for TYPE_CODE_PTR.
134
135 2013-11-20  Tom Tromey  <tromey@redhat.com>
136
137         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Remove
138         strerror module.
139         * gnulib/aclocal.m4: Update.
140         * gnulib/config.in: Update.
141         * gnulib/configure: Update.
142         * gnulib/import/Makefile.am: Update.
143         * gnulib/import/Makefile.in: Update.
144         * gnulib/import/errno.in.h: Remove.
145         * gnulib/import/intprops.h: Remove.
146         * gnulib/import/m4/errno_h.m4: Remove.
147         * gnulib/import/m4/gnulib-cache.m4: Update.
148         * gnulib/import/m4/gnulib-comp.m4: Update.
149         * gnulib/import/m4/strerror.m4: Remove.
150         * gnulib/import/m4/sys_socket_h.m4: Remove.
151         * gnulib/import/strerror-override.c: Remove.
152         * gnulib/import/strerror-override.h: Remove.
153         * gnulib/import/strerror.c: Remove.
154         * gnulib/update-gnulib.sh: Update.
155
156 2013-11-20  Yao Qi  <yao@codesourcery.com>
157
158         * target-dcache.c (target_dcache_get_or_init): Call
159         set_address_space_data if 'dcache' is NULL.
160
161 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
162
163         * common/i386-gcc-cpuid.h (bit_MPX): Synchronize with gcc file.
164
165 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
166
167         * python/lib/gdb/command/bound_register.py: New file.
168         * data-directory/Makefile.in: Copy bond_register.py to the right path
169         to be initialized at gdb startup.
170
171 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
172
173         * amd64-linux-nat.c (amd64_linux_gregset32_reg_offset):
174         Add MPX registers.
175         (amd64_linux_read_description): Add initialization for MPX and
176         AVX independently.
177         * amd64-linux-tdep.c: Includes features/i386/amd64-mpx-linux.c.
178         (amd64_linux_gregset_reg_offset): Add MPX registers.
179         (amd64_linux_core_read_description): Add initialization for MPX
180         registers.
181         (_initialize_amd64_linux_tdep): Initialize MPX targets.
182         * amd64-linux-tdep.h (AMD64_LINUX_RAX_REGNUM): Set it to the last
183         register on the list.
184         (tdesc_amd64_mpx_linux) Add new target  for MPX.
185         * amd64-tdep.c: Includes features/i386/amd64-mpx.c.
186         (amd64_mpx_names): MPX register names.
187         (amd64_init_abi): Add MPX register while initializing the ABI.
188         (_initialize_amd64_tdep): Initialize MPX targets.
189         * amd64-tdep.h (amd64_regnum): Add MPX registers.
190         (AMD64_NUM_REGS): Set number of registers taking MPX into account.
191
192 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
193
194         * i386-linux-nat.c (GETXSTATEREGS_SUPPLIES): Add MPX
195         registers on the range of registers to be read from
196         xsave buffer.
197         (i386_linux_read_description): Add case for MPX.
198         * i386-linux-tdep.c: Include features/i386/i386-mpx-linux.c.
199         (i386_linux_gregset_reg_offset): Add MPX registers.
200         (i386_linux_core_read_description): Initialize also MPX.
201         (_initialize_i386_linux_tdep): Add mpx initialization.
202         * i386-tdep.h (gdbarch_tdep): Add fields bnd0r_regnum, bnd0_regnum,
203         mpx_register_names.
204         (i386_regnum): Add MPX registers.
205         (I386_MPX_NUM_REGS): New macro.
206         (i386_bnd_regnum_p): New function.
207         * i386-linux-tdep.h (I386_LINUX_NUM_REGS): Set
208         number of registers to be the number of BNDSTATUS.
209         (tdesc_i386_mpx_linux): Add description for MPX Linux registers.
210         * i386-tdep.c: Include features/i386/i386-mpx.c.
211         (i386_mpx_names): Add MPX register names array.
212         (i386_bnd_names): Add bnd pseudo register names array.
213         (i386_bndr_regnum_p): Lookup register numbers for bnd raw
214         registers.
215         (i386_bndr_regnum_p): Lookup register numbers for bnd raw registers.
216         (386_mpx_ctrl_regnum_p): Lookup register numbers for MPX control
217         registers.
218         (i386_bnd_type): New function.
219         (i386_pseudo_register_type): Use i386_bnd_type for bnd pseudo
220         register types.
221         (i386_pseudo_register_read_into_value): Add bnd case.
222         (i386_pseudo_register_write): Add bnd pseudo registers.
223         (i386_register_reggroup_p): Add MPX register to the group all.
224         (i386_validate_tdesc_p): Add MPX to the target  description
225         validation.
226         (i386_pseudo_register_name): Add bnd pseudo registers.
227         (i386_gdbarch_init): Add MPX for architecture initialization.
228         (_initia_initialize_i386_tdep): Add mpx initialization.
229         * i387-tdep.c (xsave_mpx_offset): New vector for MPX offsets on
230         XSAVE buffer.
231         (XSAVE_MPX_ADDR): New macro.
232         (i387_supply_xsave): Add MPX case.
233         (i387_collect_xsave): Add MPX case.
234         * i387-tdep.h (I387_BND0R_REGNUM): New macro.
235         (I387_BNDCFGU_REGNUM): New macro.
236         (I387_NUM_MPX_REGS): New macro.
237         (I387_NUM_BND_REGS): New macro.
238         (I387_NUM_MPX_CTRL_REGS): New macro.
239         (I387_MPXEND_REGNUM): New macro.
240         * common/i386-xstate.h (I386_XSTATE_BNDREGS): New macro.
241         (I386_XSTATE_BNDCFG): Likewise.
242         (I386_XSTATE_MPX_MASK): Likewise.
243         (I386_XSTATE_ALL_MASK): New macro represents flags for all states.
244         (I386_XSTATE_BNDREGS_SIZE): New macro.
245         (I386_XSTATE_BNDCFG_SIZE): Likewise.
246         (I386_XSTATE_SIZE): Adapt for MPX.
247         (I386_XSTATE_MAX_SIZE): Likewise.
248
249 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
250
251         * features/i386/Makefile: Adapts for using MPX registers.
252         * features/i386/32bit-mpx.xml: New file.
253         * features/i386/64bit-mpx.xml: Likewise.
254         * features/i386/amd64-mpx-linux.c: Likewise.
255         * features/i386/amd64-mpx-linux.xml: Likewise.
256         * features/i386/amd64-mpx.c: Likewise.
257         * features/i386/amd64-mpx.xml: Likewise.
258         * features/i386/i386-mpx-linux.c: Likewise.
259         * features/i386/i386-mpx-linux.xml: Likewise.
260         * features/i386/i386-mpx.c: Likewise.
261         * features/i386/i386-mpx.xml: Likewise.
262         * regformats/i386/amd64-mpx-linux.dat: New file.
263         * regformats/i386/amd64-mpx.dat: Likewise.
264         * regformats/i386/i386-mpx-linux.dat: Likewise.
265         * regformats/i386/i386-mpx.dat: Likewise.
266
267 2013-11-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
268
269         * target-descriptions.c (maint_print_maint_print_c_tdesc_cmd):
270         Modified logic of creating a bitfield to be in sync with
271         tdesc_gdb_type.
272
273 2013-11-20  Will Newton  <will.newton@linaro.org>
274
275         * arm-tdep.c (arm_get_next_pc): Remove "Infinite loop detected"
276         error message.
277
278 2013-11-20  Yao Qi  <yao@codesourcery.com>
279
280         * progspace.h (struct address_space_data): Declare.
281         * target-dcache.c: Include "progspace.h".
282         (target_dache): Remove.
283         (target_dcache_aspace_key): New.
284         (target_dcache_cleanup): New function.
285         (target_dcache_init_p): Get data through
286         target_dcache_aspace_key.
287         (target_dcache_invalidate): Likewise.
288         (target_dcache_get): Likewise.
289         (target_dcache_get_or_init): Likewise.
290         (_initialize_target_dcache): Initialize
291         target_dcache_aspace_key.
292
293 2013-11-20  Yao Qi  <yao@codesourcery.com>
294
295         * progspace.c (struct address_space): Update comments.
296         <REGISTRY_FIELDS>: New fields.
297         DEFINE_REGISTRY for address_space.
298         (new_address_space): Call address_space_alloc_data.
299         (free_address_space): Call address_space_free_data.
300         * progspace.h: Use DECLARE_REGISTRY.
301
302 2013-11-20  Yao Qi  <yao@codesourcery.com>
303
304         * Makefile.in (SFILES):Add target-dcache.c.
305         (HFILES_NO_SRCDIR): Add target-dcache.h.
306         (COMMON_OBS): Add target-dcache.o.
307         * dcache.c: Remove inclusion to "target.h".  Include
308         "target-dcache.h".
309         * memattr.c: Include "target-dcache.h".
310         * top.c: Likewise.
311         * tracepoint.c: Likewise.
312         * target.c: (stack_cache_enabled_p_1): Move to
313         target-dcache.c.
314         (stack_cache_enabled_p): Likewise.
315         (set_stack_cache_enabled_p): Likewise.
316         (show_stack_cache_enabled_p): Likewise.
317         (target_dcache, target_dcache_init_p): Likewise.
318         (target_dcache_invalidate): Likewise.
319         (target_dcache_get, target_dcache_get_or_init): Likewise.
320         (memory_xfer_partial_1): Call function stack_cache_enabled.
321         (initialize_target): Move code to target-dcache.c.
322         * target.h (target_dcache_invalidate): Move to
323         target-dcache.h.
324         (target_dcache_get): Likewise.
325         * target-dcache.c: New.
326         * target-dcache.h: New.
327
328 2013-11-20  Yao Qi  <yao@codesourcery.com>
329
330         * target.c (memory_xfer_partial_1): Update 'target_dcache' if
331         it is initialized.
332
333 2013-11-20  Yao Qi  <yao@codesourcery.com>
334
335         * dcache.c (last_cache): Remove.
336         (dcache_free, dcache_init): Update.
337         (dcache_update):
338         (dcache_print_line): Add parameter 'dcache'.  Replace
339         'target_dcache' with 'dcache'.
340         (dcache_info): Move code to dcache_info_1. Call
341         'dcache_info_1'.
342         (dcache_info_1): New function.
343         (set_dcache_size): Call target_dcache_invalidate.
344         (set_dcache_line_size): Call target_dcache_invalidate.
345         * target.c (target_dcache_init_p): New function.
346         (target_dcache_invalidate): Check target_dcache_init_p first.
347         (target_dcache_get, target_dcache_get_or_init): New function.
348         (memory_xfer_partial_1): Adjust.
349         (initialize_target): Don't initialize 'target_dcache'.
350         * target.h (struct dcache_struct): Declare.
351         (target_dcache_get): Declare.
352
353 2013-11-19  Yao Qi  <yao@codesourcery.com>
354
355         * varobj.c (varobj_get_type): Fix typo.
356
357 2013-11-19  Joel Brobecker  <brobecker@adacore.com>
358
359         * python/py-value.c (is_intlike): Add TYPE_CODE_RANGE handling.
360
361 2013-11-19  Joel Brobecker  <brobecker@adacore.com>
362
363         * contrib/ari/gdb_ari.sh: Remove checks for "dirent.h" and
364         "stat.h".
365
366 2013-11-18  Tom Tromey  <tromey@redhat.com>
367
368         * common/gdb_stat.h: Remove.
369         * ada-lang.c: Use sys/stat.h, not gdb_stat.h.
370         * common/filestuff.c: Use sys/stat.h, not gdb_stat.h.
371         * common/linux-osdata.c: Use sys/stat.h, not gdb_stat.h.
372         * corefile.c: Use sys/stat.h, not gdb_stat.h.
373         * ctf.c: Use sys/stat.h, not gdb_stat.h.
374         * darwin-nat.c: Use sys/stat.h, not gdb_stat.h.
375         * dbxread.c: Use sys/stat.h, not gdb_stat.h.
376         * dwarf2read.c: Use sys/stat.h, not gdb_stat.h.
377         * exec.c: Use sys/stat.h, not gdb_stat.h.
378         * gdbserver/linux-low.c: Use sys/stat.h, not gdb_stat.h.
379         * gdbserver/remote-utils.c: Use sys/stat.h, not gdb_stat.h.
380         * inf-child.c: Use sys/stat.h, not gdb_stat.h.
381         * jit.c: Use sys/stat.h, not gdb_stat.h.
382         * linux-nat.c: Use sys/stat.h, not gdb_stat.h.
383         * m68klinux-nat.c: Use sys/stat.h, not gdb_stat.h.
384         * main.c: Use sys/stat.h, not gdb_stat.h.
385         * mdebugread.c: Use sys/stat.h, not gdb_stat.h.
386         * mi/mi-cmd-env.c: Use sys/stat.h, not gdb_stat.h.
387         * nto-tdep.c: Use sys/stat.h, not gdb_stat.h.
388         * objfiles.c: Use sys/stat.h, not gdb_stat.h.
389         * procfs.c: Use sys/stat.h, not gdb_stat.h.
390         * remote-fileio.c: Use sys/stat.h, not gdb_stat.h.
391         * remote-mips.c: Use sys/stat.h, not gdb_stat.h.
392         * remote.c: Use sys/stat.h, not gdb_stat.h.
393         * rs6000-nat.c: Use sys/stat.h, not gdb_stat.h.
394         * sol-thread.c: Use sys/stat.h, not gdb_stat.h.
395         * solib-spu.c: Use sys/stat.h, not gdb_stat.h.
396         * source.c: Use sys/stat.h, not gdb_stat.h.
397         * symfile.c: Use sys/stat.h, not gdb_stat.h.
398         * symmisc.c: Use sys/stat.h, not gdb_stat.h.
399         * symtab.c: Use sys/stat.h, not gdb_stat.h.
400         * top.c: Use sys/stat.h, not gdb_stat.h.
401         * xcoffread.c: Use sys/stat.h, not gdb_stat.h.
402
403 2013-11-18  Tom Tromey  <tromey@redhat.com>
404
405         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
406         sys_stat.
407         * gnulib/aclocal.m4: Update.
408         * gnulib/config.in: Update.
409         * gnulib/configure: Update.
410         * gnulib/import/Makefile.am: Update.
411         * gnulib/import/Makefile.in: Update.
412         * gnulib/import/m4/gnulib-cache.m4: Update.
413         * gnulib/import/m4/gnulib-comp.m4: Update.
414         * gnulib/import/m4/sys_stat_h.m4: New.
415         * gnulib/import/m4/time_h.m4: New.
416         * gnulib/import/sys_stat.in.h: New.
417         * gnulib/import/time.in.h: New.
418
419 2013-11-18  Tom Tromey  <tromey@redhat.com>
420
421         * configure: Rebuild.
422         * configure.ac: Remove check of HAVE_SYS_TYPES_H.
423
424 2013-11-18  Tom Tromey  <tromey@redhat.com>
425
426         * configure: Rebuild.
427         * configure.ac: Don't check for unistd.h.
428
429 2013-11-18  Tom Tromey  <tromey@redhat.com>
430
431         * configure: Rebuild.
432         * configure.ac: Don't check for stdlib.h
433         * defs.h: Include stdlib.h unconditionally.
434
435 2013-11-18  Tom Tromey  <tromey@redhat.com>
436
437         * config.in: Rebuild.
438         * configure: Rebuild.
439         * configure.ac: Don't check for stddef.h.
440         * defs.h: Unconditionally include stddef.h.  Remove duplicate
441         inclusion.
442
443 2013-11-18  Tom Tromey  <tromey@redhat.com>
444
445         * common/common.m4 (GDB_AC_COMMON): Don't use AC_HEADER_DIRENT.
446         * common/gdb_dirent.h: Remove.
447         * common/filestuff.c: Use dirent.h.
448         * common/linux-osdata.c: Use dirent.h.
449         (NAMELEN): Define.
450         * config.in: Rebuild.
451         * configure: Rebuild.
452         * configure.ac: Don't use AC_HEADER_DIRENT.
453         * linux-fork.c: Use dirent.h
454         * linux-nat.c: Use dirent.h.
455         * nto-procfs.c: Use dirent.h.
456         * procfs.c: Use dirent.h.
457
458 2013-11-18  Tom Tromey  <tromey@redhat.com>
459
460         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add dirent.
461         * gnulib/aclocal.m4: Update.
462         * gnulib/config.in: Update.
463         * gnulib/configure: Update.
464         * gnulib/import/Makefile.am: Update.
465         * gnulib/import/Makefile.in: Update.
466         * gnulib/import/dirent.in.h: New.
467         * gnulib/import/m4/dirent_h.m4: New.
468         * gnulib/import/m4/gnulib-cache.m4: Update.
469         * gnulib/import/m4/gnulib-comp.m4: Update.
470
471 2013-11-18  Tom Tromey  <tromey@redhat.com>
472
473         * configure: Rebuild.
474         * common/common.m4 (GDB_AC_COMMON): Don't check for string.h or
475         strings.h.
476
477 2013-11-18  Tom Tromey  <tromey@redhat.com>
478
479         * common/gdb_string.h: Remove.
480         * aarch64-tdep.c: Use string.h, not gdb_string.h.
481         * ada-exp.y: Use string.h, not gdb_string.h.
482         * ada-lang.c: Use string.h, not gdb_string.h.
483         * ada-lex.l: Use string.h, not gdb_string.h.
484         * ada-typeprint.c: Use string.h, not gdb_string.h.
485         * ada-valprint.c: Use string.h, not gdb_string.h.
486         * aix-thread.c: Use string.h, not gdb_string.h.
487         * alpha-linux-tdep.c: Use string.h, not gdb_string.h.
488         * alpha-mdebug-tdep.c: Use string.h, not gdb_string.h.
489         * alpha-nat.c: Use string.h, not gdb_string.h.
490         * alpha-osf1-tdep.c: Use string.h, not gdb_string.h.
491         * alpha-tdep.c: Use string.h, not gdb_string.h.
492         * alphanbsd-tdep.c: Use string.h, not gdb_string.h.
493         * amd64-dicos-tdep.c: Use string.h, not gdb_string.h.
494         * amd64-linux-nat.c: Use string.h, not gdb_string.h.
495         * amd64-linux-tdep.c: Use string.h, not gdb_string.h.
496         * amd64-nat.c: Use string.h, not gdb_string.h.
497         * amd64-sol2-tdep.c: Use string.h, not gdb_string.h.
498         * amd64fbsd-tdep.c: Use string.h, not gdb_string.h.
499         * amd64obsd-tdep.c: Use string.h, not gdb_string.h.
500         * arch-utils.c: Use string.h, not gdb_string.h.
501         * arm-linux-nat.c: Use string.h, not gdb_string.h.
502         * arm-linux-tdep.c: Use string.h, not gdb_string.h.
503         * arm-tdep.c: Use string.h, not gdb_string.h.
504         * arm-wince-tdep.c: Use string.h, not gdb_string.h.
505         * armbsd-tdep.c: Use string.h, not gdb_string.h.
506         * armnbsd-nat.c: Use string.h, not gdb_string.h.
507         * armnbsd-tdep.c: Use string.h, not gdb_string.h.
508         * armobsd-tdep.c: Use string.h, not gdb_string.h.
509         * avr-tdep.c: Use string.h, not gdb_string.h.
510         * ax-gdb.c: Use string.h, not gdb_string.h.
511         * ax-general.c: Use string.h, not gdb_string.h.
512         * bcache.c: Use string.h, not gdb_string.h.
513         * bfin-tdep.c: Use string.h, not gdb_string.h.
514         * breakpoint.c: Use string.h, not gdb_string.h.
515         * build-id.c: Use string.h, not gdb_string.h.
516         * buildsym.c: Use string.h, not gdb_string.h.
517         * c-exp.y: Use string.h, not gdb_string.h.
518         * c-lang.c: Use string.h, not gdb_string.h.
519         * c-typeprint.c: Use string.h, not gdb_string.h.
520         * c-valprint.c: Use string.h, not gdb_string.h.
521         * charset.c: Use string.h, not gdb_string.h.
522         * cli-out.c: Use string.h, not gdb_string.h.
523         * cli/cli-cmds.c: Use string.h, not gdb_string.h.
524         * cli/cli-decode.c: Use string.h, not gdb_string.h.
525         * cli/cli-dump.c: Use string.h, not gdb_string.h.
526         * cli/cli-interp.c: Use string.h, not gdb_string.h.
527         * cli/cli-logging.c: Use string.h, not gdb_string.h.
528         * cli/cli-script.c: Use string.h, not gdb_string.h.
529         * cli/cli-setshow.c: Use string.h, not gdb_string.h.
530         * cli/cli-utils.c: Use string.h, not gdb_string.h.
531         * coffread.c: Use string.h, not gdb_string.h.
532         * common/common-utils.c: Use string.h, not gdb_string.h.
533         * common/filestuff.c: Use string.h, not gdb_string.h.
534         * common/linux-procfs.c: Use string.h, not gdb_string.h.
535         * common/linux-ptrace.c: Use string.h, not gdb_string.h.
536         * common/signals.c: Use string.h, not gdb_string.h.
537         * common/vec.h: Use string.h, not gdb_string.h.
538         * core-regset.c: Use string.h, not gdb_string.h.
539         * corefile.c: Use string.h, not gdb_string.h.
540         * corelow.c: Use string.h, not gdb_string.h.
541         * cp-abi.c: Use string.h, not gdb_string.h.
542         * cp-support.c: Use string.h, not gdb_string.h.
543         * cp-valprint.c: Use string.h, not gdb_string.h.
544         * cris-tdep.c: Use string.h, not gdb_string.h.
545         * d-lang.c: Use string.h, not gdb_string.h.
546         * dbxread.c: Use string.h, not gdb_string.h.
547         * dcache.c: Use string.h, not gdb_string.h.
548         * demangle.c: Use string.h, not gdb_string.h.
549         * dicos-tdep.c: Use string.h, not gdb_string.h.
550         * disasm.c: Use string.h, not gdb_string.h.
551         * doublest.c: Use string.h, not gdb_string.h.
552         * dsrec.c: Use string.h, not gdb_string.h.
553         * dummy-frame.c: Use string.h, not gdb_string.h.
554         * dwarf2-frame.c: Use string.h, not gdb_string.h.
555         * dwarf2loc.c: Use string.h, not gdb_string.h.
556         * dwarf2read.c: Use string.h, not gdb_string.h.
557         * elfread.c: Use string.h, not gdb_string.h.
558         * environ.c: Use string.h, not gdb_string.h.
559         * eval.c: Use string.h, not gdb_string.h.
560         * event-loop.c: Use string.h, not gdb_string.h.
561         * exceptions.c: Use string.h, not gdb_string.h.
562         * exec.c: Use string.h, not gdb_string.h.
563         * expprint.c: Use string.h, not gdb_string.h.
564         * f-exp.y: Use string.h, not gdb_string.h.
565         * f-lang.c: Use string.h, not gdb_string.h.
566         * f-typeprint.c: Use string.h, not gdb_string.h.
567         * f-valprint.c: Use string.h, not gdb_string.h.
568         * fbsd-nat.c: Use string.h, not gdb_string.h.
569         * findcmd.c: Use string.h, not gdb_string.h.
570         * findvar.c: Use string.h, not gdb_string.h.
571         * fork-child.c: Use string.h, not gdb_string.h.
572         * frame.c: Use string.h, not gdb_string.h.
573         * frv-linux-tdep.c: Use string.h, not gdb_string.h.
574         * frv-tdep.c: Use string.h, not gdb_string.h.
575         * gdb.c: Use string.h, not gdb_string.h.
576         * gdb_bfd.c: Use string.h, not gdb_string.h.
577         * gdbarch.c: Use string.h, not gdb_string.h.
578         * gdbtypes.c: Use string.h, not gdb_string.h.
579         * gnu-nat.c: Use string.h, not gdb_string.h.
580         * gnu-v2-abi.c: Use string.h, not gdb_string.h.
581         * gnu-v3-abi.c: Use string.h, not gdb_string.h.
582         * go-exp.y: Use string.h, not gdb_string.h.
583         * go-lang.c: Use string.h, not gdb_string.h.
584         * go32-nat.c: Use string.h, not gdb_string.h.
585         * hppa-hpux-tdep.c: Use string.h, not gdb_string.h.
586         * hppa-linux-nat.c: Use string.h, not gdb_string.h.
587         * hppanbsd-tdep.c: Use string.h, not gdb_string.h.
588         * hppaobsd-tdep.c: Use string.h, not gdb_string.h.
589         * i386-cygwin-tdep.c: Use string.h, not gdb_string.h.
590         * i386-dicos-tdep.c: Use string.h, not gdb_string.h.
591         * i386-linux-nat.c: Use string.h, not gdb_string.h.
592         * i386-linux-tdep.c: Use string.h, not gdb_string.h.
593         * i386-nto-tdep.c: Use string.h, not gdb_string.h.
594         * i386-sol2-tdep.c: Use string.h, not gdb_string.h.
595         * i386-tdep.c: Use string.h, not gdb_string.h.
596         * i386bsd-tdep.c: Use string.h, not gdb_string.h.
597         * i386gnu-nat.c: Use string.h, not gdb_string.h.
598         * i386nbsd-tdep.c: Use string.h, not gdb_string.h.
599         * i386obsd-tdep.c: Use string.h, not gdb_string.h.
600         * i387-tdep.c: Use string.h, not gdb_string.h.
601         * ia64-libunwind-tdep.c: Use string.h, not gdb_string.h.
602         * ia64-linux-nat.c: Use string.h, not gdb_string.h.
603         * inf-child.c: Use string.h, not gdb_string.h.
604         * inf-ptrace.c: Use string.h, not gdb_string.h.
605         * inf-ttrace.c: Use string.h, not gdb_string.h.
606         * infcall.c: Use string.h, not gdb_string.h.
607         * infcmd.c: Use string.h, not gdb_string.h.
608         * inflow.c: Use string.h, not gdb_string.h.
609         * infrun.c: Use string.h, not gdb_string.h.
610         * interps.c: Use string.h, not gdb_string.h.
611         * iq2000-tdep.c: Use string.h, not gdb_string.h.
612         * irix5-nat.c: Use string.h, not gdb_string.h.
613         * jv-exp.y: Use string.h, not gdb_string.h.
614         * jv-lang.c: Use string.h, not gdb_string.h.
615         * jv-typeprint.c: Use string.h, not gdb_string.h.
616         * jv-valprint.c: Use string.h, not gdb_string.h.
617         * language.c: Use string.h, not gdb_string.h.
618         * linux-fork.c: Use string.h, not gdb_string.h.
619         * linux-nat.c: Use string.h, not gdb_string.h.
620         * lm32-tdep.c: Use string.h, not gdb_string.h.
621         * m2-exp.y: Use string.h, not gdb_string.h.
622         * m2-typeprint.c: Use string.h, not gdb_string.h.
623         * m32c-tdep.c: Use string.h, not gdb_string.h.
624         * m32r-linux-nat.c: Use string.h, not gdb_string.h.
625         * m32r-linux-tdep.c: Use string.h, not gdb_string.h.
626         * m32r-rom.c: Use string.h, not gdb_string.h.
627         * m32r-tdep.c: Use string.h, not gdb_string.h.
628         * m68hc11-tdep.c: Use string.h, not gdb_string.h.
629         * m68k-tdep.c: Use string.h, not gdb_string.h.
630         * m68kbsd-tdep.c: Use string.h, not gdb_string.h.
631         * m68klinux-nat.c: Use string.h, not gdb_string.h.
632         * m68klinux-tdep.c: Use string.h, not gdb_string.h.
633         * m88k-tdep.c: Use string.h, not gdb_string.h.
634         * macrocmd.c: Use string.h, not gdb_string.h.
635         * main.c: Use string.h, not gdb_string.h.
636         * mdebugread.c: Use string.h, not gdb_string.h.
637         * mem-break.c: Use string.h, not gdb_string.h.
638         * memattr.c: Use string.h, not gdb_string.h.
639         * memory-map.c: Use string.h, not gdb_string.h.
640         * mep-tdep.c: Use string.h, not gdb_string.h.
641         * mi/mi-cmd-break.c: Use string.h, not gdb_string.h.
642         * mi/mi-cmd-disas.c: Use string.h, not gdb_string.h.
643         * mi/mi-cmd-env.c: Use string.h, not gdb_string.h.
644         * mi/mi-cmd-stack.c: Use string.h, not gdb_string.h.
645         * mi/mi-cmd-var.c: Use string.h, not gdb_string.h.
646         * mi/mi-cmds.c: Use string.h, not gdb_string.h.
647         * mi/mi-console.c: Use string.h, not gdb_string.h.
648         * mi/mi-getopt.c: Use string.h, not gdb_string.h.
649         * mi/mi-interp.c: Use string.h, not gdb_string.h.
650         * mi/mi-main.c: Use string.h, not gdb_string.h.
651         * mi/mi-parse.c: Use string.h, not gdb_string.h.
652         * microblaze-rom.c: Use string.h, not gdb_string.h.
653         * microblaze-tdep.c: Use string.h, not gdb_string.h.
654         * mingw-hdep.c: Use string.h, not gdb_string.h.
655         * minidebug.c: Use string.h, not gdb_string.h.
656         * minsyms.c: Use string.h, not gdb_string.h.
657         * mips-irix-tdep.c: Use string.h, not gdb_string.h.
658         * mips-linux-tdep.c: Use string.h, not gdb_string.h.
659         * mips-tdep.c: Use string.h, not gdb_string.h.
660         * mips64obsd-tdep.c: Use string.h, not gdb_string.h.
661         * mipsnbsd-tdep.c: Use string.h, not gdb_string.h.
662         * mipsread.c: Use string.h, not gdb_string.h.
663         * mn10300-linux-tdep.c: Use string.h, not gdb_string.h.
664         * mn10300-tdep.c: Use string.h, not gdb_string.h.
665         * monitor.c: Use string.h, not gdb_string.h.
666         * moxie-tdep.c: Use string.h, not gdb_string.h.
667         * mt-tdep.c: Use string.h, not gdb_string.h.
668         * nbsd-tdep.c: Use string.h, not gdb_string.h.
669         * nios2-linux-tdep.c: Use string.h, not gdb_string.h.
670         * nto-procfs.c: Use string.h, not gdb_string.h.
671         * nto-tdep.c: Use string.h, not gdb_string.h.
672         * objc-lang.c: Use string.h, not gdb_string.h.
673         * objfiles.c: Use string.h, not gdb_string.h.
674         * opencl-lang.c: Use string.h, not gdb_string.h.
675         * osabi.c: Use string.h, not gdb_string.h.
676         * osdata.c: Use string.h, not gdb_string.h.
677         * p-exp.y: Use string.h, not gdb_string.h.
678         * p-lang.c: Use string.h, not gdb_string.h.
679         * p-typeprint.c: Use string.h, not gdb_string.h.
680         * parse.c: Use string.h, not gdb_string.h.
681         * posix-hdep.c: Use string.h, not gdb_string.h.
682         * ppc-linux-nat.c: Use string.h, not gdb_string.h.
683         * ppc-sysv-tdep.c: Use string.h, not gdb_string.h.
684         * ppcfbsd-tdep.c: Use string.h, not gdb_string.h.
685         * ppcnbsd-tdep.c: Use string.h, not gdb_string.h.
686         * ppcobsd-tdep.c: Use string.h, not gdb_string.h.
687         * printcmd.c: Use string.h, not gdb_string.h.
688         * procfs.c: Use string.h, not gdb_string.h.
689         * prologue-value.c: Use string.h, not gdb_string.h.
690         * python/py-auto-load.c: Use string.h, not gdb_string.h.
691         * python/py-gdb-readline.c: Use string.h, not gdb_string.h.
692         * ravenscar-thread.c: Use string.h, not gdb_string.h.
693         * regcache.c: Use string.h, not gdb_string.h.
694         * registry.c: Use string.h, not gdb_string.h.
695         * remote-fileio.c: Use string.h, not gdb_string.h.
696         * remote-m32r-sdi.c: Use string.h, not gdb_string.h.
697         * remote-mips.c: Use string.h, not gdb_string.h.
698         * remote-sim.c: Use string.h, not gdb_string.h.
699         * remote.c: Use string.h, not gdb_string.h.
700         * reverse.c: Use string.h, not gdb_string.h.
701         * rs6000-aix-tdep.c: Use string.h, not gdb_string.h.
702         * ser-base.c: Use string.h, not gdb_string.h.
703         * ser-go32.c: Use string.h, not gdb_string.h.
704         * ser-mingw.c: Use string.h, not gdb_string.h.
705         * ser-pipe.c: Use string.h, not gdb_string.h.
706         * ser-tcp.c: Use string.h, not gdb_string.h.
707         * ser-unix.c: Use string.h, not gdb_string.h.
708         * serial.c: Use string.h, not gdb_string.h.
709         * sh-tdep.c: Use string.h, not gdb_string.h.
710         * sh64-tdep.c: Use string.h, not gdb_string.h.
711         * shnbsd-tdep.c: Use string.h, not gdb_string.h.
712         * skip.c: Use string.h, not gdb_string.h.
713         * sol-thread.c: Use string.h, not gdb_string.h.
714         * solib-dsbt.c: Use string.h, not gdb_string.h.
715         * solib-frv.c: Use string.h, not gdb_string.h.
716         * solib-osf.c: Use string.h, not gdb_string.h.
717         * solib-spu.c: Use string.h, not gdb_string.h.
718         * solib-target.c: Use string.h, not gdb_string.h.
719         * solib.c: Use string.h, not gdb_string.h.
720         * somread.c: Use string.h, not gdb_string.h.
721         * source.c: Use string.h, not gdb_string.h.
722         * sparc-nat.c: Use string.h, not gdb_string.h.
723         * sparc-sol2-tdep.c: Use string.h, not gdb_string.h.
724         * sparc-tdep.c: Use string.h, not gdb_string.h.
725         * sparc64-tdep.c: Use string.h, not gdb_string.h.
726         * sparc64fbsd-tdep.c: Use string.h, not gdb_string.h.
727         * sparc64nbsd-tdep.c: Use string.h, not gdb_string.h.
728         * sparcnbsd-tdep.c: Use string.h, not gdb_string.h.
729         * spu-linux-nat.c: Use string.h, not gdb_string.h.
730         * spu-multiarch.c: Use string.h, not gdb_string.h.
731         * spu-tdep.c: Use string.h, not gdb_string.h.
732         * stabsread.c: Use string.h, not gdb_string.h.
733         * stack.c: Use string.h, not gdb_string.h.
734         * std-regs.c: Use string.h, not gdb_string.h.
735         * symfile.c: Use string.h, not gdb_string.h.
736         * symmisc.c: Use string.h, not gdb_string.h.
737         * symtab.c: Use string.h, not gdb_string.h.
738         * target.c: Use string.h, not gdb_string.h.
739         * thread.c: Use string.h, not gdb_string.h.
740         * tilegx-linux-nat.c: Use string.h, not gdb_string.h.
741         * tilegx-tdep.c: Use string.h, not gdb_string.h.
742         * top.c: Use string.h, not gdb_string.h.
743         * tracepoint.c: Use string.h, not gdb_string.h.
744         * tui/tui-command.c: Use string.h, not gdb_string.h.
745         * tui/tui-data.c: Use string.h, not gdb_string.h.
746         * tui/tui-disasm.c: Use string.h, not gdb_string.h.
747         * tui/tui-file.c: Use string.h, not gdb_string.h.
748         * tui/tui-layout.c: Use string.h, not gdb_string.h.
749         * tui/tui-out.c: Use string.h, not gdb_string.h.
750         * tui/tui-regs.c: Use string.h, not gdb_string.h.
751         * tui/tui-source.c: Use string.h, not gdb_string.h.
752         * tui/tui-stack.c: Use string.h, not gdb_string.h.
753         * tui/tui-win.c: Use string.h, not gdb_string.h.
754         * tui/tui-windata.c: Use string.h, not gdb_string.h.
755         * tui/tui-winsource.c: Use string.h, not gdb_string.h.
756         * typeprint.c: Use string.h, not gdb_string.h.
757         * ui-file.c: Use string.h, not gdb_string.h.
758         * ui-out.c: Use string.h, not gdb_string.h.
759         * user-regs.c: Use string.h, not gdb_string.h.
760         * utils.c: Use string.h, not gdb_string.h.
761         * v850-tdep.c: Use string.h, not gdb_string.h.
762         * valarith.c: Use string.h, not gdb_string.h.
763         * valops.c: Use string.h, not gdb_string.h.
764         * valprint.c: Use string.h, not gdb_string.h.
765         * value.c: Use string.h, not gdb_string.h.
766         * varobj.c: Use string.h, not gdb_string.h.
767         * vax-tdep.c: Use string.h, not gdb_string.h.
768         * vaxnbsd-tdep.c: Use string.h, not gdb_string.h.
769         * vaxobsd-tdep.c: Use string.h, not gdb_string.h.
770         * windows-nat.c: Use string.h, not gdb_string.h.
771         * xcoffread.c: Use string.h, not gdb_string.h.
772         * xml-support.c: Use string.h, not gdb_string.h.
773         * xstormy16-tdep.c: Use string.h, not gdb_string.h.
774         * xtensa-linux-nat.c: Use string.h, not gdb_string.h.
775
776 2013-11-18  Tom Tromey  <tromey@redhat.com>
777
778         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add strerror
779         and strstr.
780         * gnulib/aclocal.m4: Update.
781         * gnulib/config.in: Update.
782         * gnulib/configure: Update.
783         * gnulib/import/Makefile.am: Update.
784         * gnulib/import/Makefile.in: Update.
785         * gnulib/import/errno.in.h: New.
786         * gnulib/import/intprops.h: New.
787         * gnulib/import/m4/errno_h.m4: New.
788         * gnulib/import/m4/gnulib-cache.m4: Update.
789         * gnulib/import/m4/gnulib-comp.m4: Update.
790         * gnulib/import/m4/strerror.m4: New.
791         * gnulib/import/m4/strstr.m4: New.
792         * gnulib/import/m4/sys_socket_h.m4: New.
793         * gnulib/import/strerror-override.c: New.
794         * gnulib/import/strerror-override.h: New.
795         * gnulib/import/strerror.c: New.
796         * gnulib/import/strstr.c: New.
797
798 2013-11-18  Tom Tromey  <tromey@redhat.com>
799
800         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Split into
801         multiple lines.
802
803 2013-11-18  Jose E. Marchesi  <jose.marchesi@oracle.com>
804
805         * sparc-tdep.c (sparc_is_annulled_branch_insn): New function.
806         * sparc-tdep.h: And its prototype.
807
808         * sparc64-linux-tdep.c (sparc64_linux_get_longjmp_target): New
809         function.
810         (sparc64_linux_init_abi): Register the get_longjmp_target hook.
811
812 2013-11-18  Pedro Alves  <palves@redhat.com>
813
814         * dwarf2-frame.c (read_addr_from_reg): Remove stale comment and
815         use unpack_pointer.
816
817 2013-11-18  Joel Brobecker  <brobecker@adacore.com>
818
819         * mi/mi-main.c (mi_cmd_list_features): Add "language-options"
820         to -list-features output.
821
822 2013-11-17  Joel Brobecker  <brobecker@adacore.com>
823
824         * dwarf2expr.h (struct dwarf_expr_context_funcs)
825         <read_addr_from_reg>: Renames "read_reg".
826         * dwarf2-frame.c (read_addr_from_reg): Renames "read_reg".
827         Adjust comment.
828         (dwarf2_frame_ctx_funcs, execute_stack_op, dwarf2_frame_cache):
829         Use read_addr_from_reg in place of read_reg.
830         * dwarf2expr.c (execute_stack_op): Use read_addr_from_reg
831         in place of read_reg.
832         * dwarf2loc.c (dwarf_expr_read_addr_from_reg): Renames
833         dwarf_expr_read_reg.
834         (dwarf_expr_ctx_funcs): Replace dwarf_expr_read_reg
835         with dwarf_expr_read_addr_from_reg.
836         (needs_frame_read_addr_from_reg): Renames needs_frame_read_reg.
837         (needs_frame_ctx_funcs): Replace needs_frame_read_reg with
838         needs_frame_read_addr_from_reg.
839
840 2013-11-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
841
842         * NEWS (Changes in GDB 7.5) (New commands) (explore): Fix typo.
843
844 2013-11-15  Andreas Arnez  <arnez@linux.vnet.ibm.com>
845
846         * dwarf2loc.c (chain_candidate): Prevent invoking memcpy with
847         NULL.
848
849 2013-11-15  Tom Tromey  <tromey@redhat.com>
850
851         PR c++/16117:
852         * c-exp.y (lex_one_token): Add "is_quoted_name" argument.
853         (classify_name): Likewise.  Prefer a field of "this" over a
854         filename.
855         (classify_inner_name, yylex): Update.
856
857 2013-11-15  Joel Brobecker  <brobecker@adacore.com>
858
859         * dwarf2expr.h (struct dwarf_expr_context_funcs) <read_reg>:
860         Extend the documentation a bit.
861         <get_reg_value>: New field.
862         * dwarf2loc.c (dwarf_expr_get_reg_value)
863         (needs_frame_get_reg_value): New functions.
864         (dwarf_expr_ctx_funcs, needs_frame_ctx_funcs): Add "get_reg_value"
865         callback.
866         * dwarf2-frame.c (get_reg_value): New function.
867         (dwarf2_frame_ctx_funcs): Add "get_reg_value" callback.
868         * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_regval_type>:
869         Use new callback to compute result_val.
870
871 2013-11-15  Alan Modra  <amodra@gmail.com>
872
873         * ppc64-tdep.c (ppc64_plt_entry_point): Renamed from..
874         (ppc64_desc_entry_point): ..this.  Update comments here and at
875         call points.
876         (ppc64_standard_linkage1, ppc64_standard_linkage2,
877         ppc64_standard_linkage3): Update comments.
878         (ppc64_standard_linkage4, ppc64_standard_linkage5,
879         (ppc64_standard_linkage6, ppc64_standard_linkage7): New insn
880         patterns.
881         (ppc64_standard_linkage4_target): New function.
882         (ppc64_skip_trampoline_code): Skip ELFv2 patterns too.
883         * rs6000-tdep.c (skip_prologue): Skip ELFv2 r2 setup.  Correct
884         nop match.  Fix comment wrap.
885
886 2013-11-14  Pedro Alves  <palves@redhat.com>
887
888         * infrun.c (handle_signal_stop): Move STOP_QUIETLY,
889         STOP_QUIETLY_REMOTE and 'stop_after_trap' handling earlier.
890
891 2013-11-14  Pedro Alves  <palves@redhat.com>
892
893         * infrun.c (struct execution_control_state)
894         <stepped_after_stopped_by_watchpoint>: New field.
895         (get_inferior_stop_soon): New function.
896         (handle_inferior_event): 'stepped_after_stopped_by_watchpoint' was
897         moved to struct execution_control_state -- adjust.  Use
898         get_inferior_stop_soon.  Split TARGET_WAITKIND_STOPPED handling to
899         new function.
900         (handle_signal_stop): New function, factored out from
901         handle_inferior_event.
902
903 2013-11-14  Pedro Alves  <palves@redhat.com>
904
905         * break-catch-sig.c (signal_catchpoint_explains_signal): Adjust to
906         return a boolean.
907         * breakpoint.c (bpstat_explains_signal): Adjust to return a
908         boolean.
909         (explains_signal_watchpoint, base_breakpoint_explains_signal):
910         Adjust to return a boolean.
911         * breakpoint.h (enum bpstat_signal_value): Delete.
912         (struct breakpoint_ops) <explains_signal>: New returns a boolean.
913         (bpstat_explains_signal): Likewise.
914         * infrun.c (handle_inferior_event) <random signal checks>:
915         bpstat_explains_signal now returns a boolean - adjust.  No longer
916         consider hiding signals.
917
918 2013-11-14  Pedro Alves  <palves@redhat.com>
919
920         * breakpoint.c (bpstat_explains_signal) <Moribund locations>:
921         Return BPSTAT_SIGNAL_PASS instead of BPSTAT_SIGNAL_HIDE.
922         (explains_signal_watchpoint): Return BPSTAT_SIGNAL_PASS instead of
923         BPSTAT_SIGNAL_HIDE.
924         (base_breakpoint_explains_signal): Return BPSTAT_SIGNAL_PASS
925         instead of BPSTAT_SIGNAL_HIDE.
926         * infrun.c (handle_inferior_event): Rework random signal checks.
927
928 2013-11-14  Pedro Alves  <palves@redhat.com>
929
930         * infrun.c (struct execution_control_state): Remove
931         'random_signal' field.
932         (handle_syscall_event): Use bpstat_causes_stop instead of
933         bpstat_explains_signal.  Don't set ecs->random_signal.
934         (handle_inferior_event): New 'random_signal' local.
935         <TARGET_WAITKIND_FORKED, TARGET_WAITKIND_VFORKED,
936         TARGET_WAITKIND_EXECD>: Use bpstat_causes_stop instead of
937         bpstat_explains_signal.  Don't set ecs->random_signal.
938         <TARGET_WAITKIND_STOPPED>: Adjust to use local instead of
939         ecs->random_signal.
940
941 2013-11-14  Pedro Alves  <palves@redhat.com>
942
943         * infrun.c (handle_inferior_event): Move comment from the
944         function's body to the function's description, adjusted.
945
946 2013-11-14  Pedro Alves  <palves@redhat.com>
947
948         * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>:
949         Handle STOP_QUIETLY_NO_SIGSTOP and STOP_QUIETLY_REMOTE here.
950         Assert we never fall through out of the TARGET_WAITKIND_LOADED
951         case.
952
953 2013-11-14  Tom Tromey  <tromey@redhat.com>
954
955         * python/py-linetable.c (ltpy_has_line)
956         (ltpy_get_all_source_lines): Fix loop termination condition.
957
958 2013-11-14  Joel Brobecker  <brobecker@adacore.com>
959
960         * mi/mi-parse.h (struct mi_parse) <language>: New field.
961         * mi/mi-main.c (mi_cmd_execute): Temporarily set language to
962         PARSE->LANGUAGE during command execution, if set.
963         * mi/mi-parse.c: Add "language.h" #include.
964         (mi_parse): Add parsing of "--language" command option.
965
966         * NEWS: Add entry mentioning the new "--language" command option.
967
968 2013-11-14  Pedro Alves  <palves@redhat.com>
969             Joel Brobecker  <brobecker@adacore.com>
970
971         * cli/cli-utils.h (extract_arg_const): Add declaration.
972         * cli/cli-utils.c (extract_arg_const): New function.
973         (extract_arg): Reimplement using extract_arg_const.
974
975 2013-11-14  Joel Brobecker  <brobecker@adacore.com>
976
977         * language.h: Add "symtab.h" #include.
978
979 2013-11-13  Doug Evans  <xdje42@gmail.com>
980
981         * breakpoint.c (bpstat_check_breakpoint_conditions): For thread
982         specific breakpoints, don't evaluate breakpoint condition if
983         different thread.
984
985 2013-11-13  Keith Seitz  <keiths@redhat.com>
986
987         PR c++/7935
988         PR c++/10541
989         * cp-support.c (insepct_type): Add support for substituting
990         namespace aliases, too.
991         * dwarf2read.c (scan_partial_symbols): Add a partial symbol
992         for DW_TAG_imported_declaration.
993         (add_partial_symbol): Likewise.
994         (process_die): Handle namespace aliases with
995         read_namespace_alias.
996         (die_needs_namespace): Add DW_TAG_imported_declaration.
997         (read_namespace_alias): New function.
998         (load_partial_dies): Load DW_TAG_imported_declaration, too.
999         (new_symbol_full): Handle DW_TAG_imported_declaration.
1000
1001 2013-11-13  Keith Seitz  <keiths@redhat.com>
1002
1003         * p-exp.y (uptok): Make first parameter const.
1004         (yylex): Make `tokstart' and `tokptr' const.
1005         Don't copy the lexer input to a temporary buffer.
1006         Make `p' const.
1007         Remove const workaround for parse_escape.
1008         Create a temporary buffer for a convenience variable instead
1009         of doing in-place modification of the input.
1010         If a match is found with a different case from the input,
1011         do not change the input at all.
1012         Use `tmp' to construct the resultant stoken instead of
1013         `tokstart'.
1014
1015 2013-11-13  Doug Evans  <xdje42@gmail.com>
1016
1017         * breakpoint.c (breakpoint_cond_eval): Fix and enhance comment.
1018
1019 2013-11-13  Joel Brobecker  <brobecker@adacore.com>
1020
1021         * mi/mi-main.c (mi_cmd_list_features): Replace "info-ada-exceptions"
1022         entry with "ada-exceptions".
1023
1024 2013-11-13  Joel Brobecker  <brobecker@adacore.com>
1025
1026         * symfile.c (reread_symbols): Move call to set_objfile_per_bfd
1027         after re-initialization of OBJFILE's obstack.
1028
1029 2013-11-12  Doug Evans  <xdje42@gmail.com>
1030
1031         * breakpoint.c (bpstat_check_breakpoint_conditions): Assert
1032         bs->stop != 0 on entry.  Update function comment.  Simplify early
1033         exit for frame mismatch.  Reindent rest of function.
1034
1035 2013-11-12  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1036
1037         * objc-lang.c (uniquify_strings): Prevent invoking qsort with
1038         NULL.
1039
1040 2013-11-12  Doug Evans  <dje@google.com>
1041
1042         Work around gold/15646.
1043         * dwarf2read.c (read_index_from_section): Update comment.
1044         (struct dw2_symtab_iterator): New member global_seen.
1045         (dw2_symtab_iter_init): Initialize it.
1046         (dw2_symtab_iter_next): Skip duplicate global symbols.
1047         (dw2_expand_symtabs_matching): Ditto.
1048
1049 2013-11-12  Joel Brobecker  <brobecker@adacore.com>
1050
1051         * mi/mi-cmds.h (mi_cmd_info_ada_exceptions): Add declaration.
1052         * mi/mi-cmds.c (mi_cmds): Add entry for -info-ada-exceptions
1053         command.
1054         * mi/mi-cmd-info.c: #include "ada-lang.c" and "arch-utils.c".
1055         (mi_cmd_info_ada_exceptions): New function.
1056         * mi/mi-main.c (mi_cmd_list_features): Add "info-ada-exceptions".
1057
1058 2013-11-12  Joel Brobecker  <brobecker@adacore.com>
1059
1060         * ada-lang.h: #include "vec.h".
1061         (struct ada_exc_info): New.
1062         (ada_exc_info): New typedef.
1063         (DEF_VEC_O(ada_exc_info)): New vector.
1064         (ada_exceptions_list): Add declaration.
1065         * ada-lang.c (ada_is_exception_sym)
1066         (ada_is_non_standard_exception_sym, compare_ada_exception_info)
1067         (sort_remove_dups_ada_exceptions_list)
1068         (ada_exc_search_name_matches, ada_add_standard_exceptions)
1069         (ada_add_exceptions_from_frame, ada_add_global_exceptions)
1070         (ada_exceptions_list_1, ada_exceptions_list)
1071         (info_exceptions_command): New function.
1072         (_initialize_ada_language): Add "info exception" command.
1073
1074 2013-11-11  Phil Muldoon  <pmuldoon@redhat.com>
1075
1076         PR python/15629
1077         * NEWS: Add linetable feature.
1078         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-linetable entries.
1079         * python/py-linetable.c: New file.
1080         * python/py-symtab.c (stpy_get_linetable): New function.
1081         * python/python-internal.h (symtab_to_linetable_object): Declare.
1082         (gdbpy_initialize_linetable): Ditto.
1083         * python/python.c (_initialize_python): Call
1084         gdbpy_initialize_linetable.
1085
1086 2013-11-11  Joel Brobecker  <brobecker@adacore.com>
1087
1088         * ada-lang.c (create_ada_exception_catchpoint): Enhance
1089         the documentation of fields "except_string" and "condition".
1090         * mi/mi-cmd-catch.c (mi_cmd_catch_assert): Reallocate
1091         CONDITION on the heap before passing it to
1092         create_ada_exception_catchpoint.
1093         (mi_cmd_catch_exception): Likewise for EXCEPTION_NAME and
1094         CONDITION.
1095
1096 2013-11-11  Tom Tromey  <tromey@redhat.com>
1097
1098         * config.in, configure: Rebuild.
1099         * configure.ac (HAVE_TKILL_SYSCALL): Check for "syscall".
1100
1101 2013-11-11  Joel Brobecker  <brobecker@adacore.com>
1102
1103         * remote-sim.c (gdbsim_detach): Break declaration into
1104         shorter lines.  No code change.
1105
1106 2013-11-11  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
1107
1108         * remote-sim.c (gdbsim_detach): Fix prototype.
1109
1110 2013-11-08  Doug Evans  <dje@google.com>
1111
1112         * dwarf2read.c (dwarf2_read_debug): Change to unsigned int.
1113         (create_debug_types_hash_table): Only print debugging messages for
1114         each TU if dwarf2-read >= 2.
1115         (process_queue): Ditto.
1116         (_initialize_dwarf2_read): Make "set debug dwarf2-read" a zuinteger.
1117         Update doc string.
1118
1119 2013-11-08  Tom Tromey  <tromey@redhat.com>
1120
1121         * configure: Rebuild.
1122         * configure.ac: Remove mentions of HAVE_MULTIPLE_PROC_FDS.
1123
1124 2013-11-08  Tom Tromey  <tromey@redhat.com>
1125
1126         * configure, config.in: Rebuild.
1127         * configure.ac: Remove unused configury.
1128
1129 2013-11-08  Tom Tromey  <tromey@redhat.com>
1130
1131         * m32c-tdep.c: Use gdb_string.h.
1132
1133 2013-11-08  Tom Tromey  <tromey@redhat.com>
1134
1135         * configure, config.in: Rebuild.
1136         * configure.ac: Remove all link.h-related checks.
1137
1138 2013-11-08  Tom Tromey  <tromey@redhat.com>
1139
1140         * acinclude.m4: Include common.m4.
1141         * common/common.m4: New file.
1142         * configure, config.in: Rebuild.
1143         * configure.ac: Use GDB_AC_COMMON.
1144
1145 2013-11-08  Doug Evans  <dje@google.com>
1146
1147         * NEWS: Mention that "set debug symtab-create" now accepts a
1148         verbosity level.
1149         * buildsym.c (end_symtab_from_static_block): Call set_symtab_primary
1150         to set the symtab's primary flag.
1151         * jit.c (finalize_symtab): Ditto.
1152         * mdebugread.c (psymtab_to_symtab_1): Ditto.
1153         * symfile.c (allocate_symtab): Only print debugging messages for
1154         symtab_create_debug levels 2 and higher.
1155         * symtab.c (symtab_create_debug): Change type to unsigned int.
1156         (set_symtab_primary): New function.
1157         (_initialize_symtab): Change "set debug symtab-create" to a
1158         zuinteger option.
1159         * symtab.h (set_symtab_primary): Declare.
1160         (symtab_create_debug): Update decl.
1161
1162 2013-11-08  Tom Tromey  <tromey@redhat.com>
1163
1164         * aix-thread.c (aix_thread_detach): Update.
1165         * corelow.c (core_detach): Update.
1166         * darwin-nat.c (darwin_detach): Update.
1167         * dec-thread.c (dec_thread_detach): Update.
1168         * gnu-nat.c (gnu_detach): Update.
1169         * go32-nat.c (go32_detach): Update.
1170         * inf-ptrace.c (inf_ptrace_detach): Update.
1171         * inf-ttrace.c (inf_ttrace_detach): Update.
1172         * linux-fork.c (linux_fork_detach): Update.
1173         * linux-fork.h (linux_fork_detach): Update.
1174         * linux-nat.c (linux_nat_detach): Update.  Introduce "tem"
1175         local for const-correctness.
1176         * linux-thread-db.c (thread_db_detach): Update.
1177         * monitor.c (monitor_detach): Update.
1178         * nto-procfs.c (procfs_detach): Update.
1179         * procfs.c (procfs_detach): Update.
1180         * record.c (record_detach): Update.
1181         * record.h (record_detach): Update.
1182         * remote-m32r-sdi.c (m32r_detach): Update.
1183         * remote-mips.c (mips_detach): Update.
1184         * remote-sim.c (gdbsim_detach): Update.
1185         * remote.c (remote_detach_1, remote_detach)
1186         (extended_remote_detach): Update.
1187         * sol-thread.c (sol_thread_detach): Update.
1188         * target.c (target_detach): Make "args" const.
1189         (init_dummy_target): Update.
1190         * target.h (struct target_ops) <to_detach>: Make argument const.
1191         (target_detach): Likewise.
1192         * windows-nat.c (windows_detach): Update.
1193
1194 2013-11-07  Doug Evans  <dje@google.com>
1195
1196         PR 11786
1197         *  solib-svr4.c (svr4_exec_displacement): Ignore filesz, memsz, flags
1198         and align fields for PT_GNU_RELRO segments.
1199
1200 2013-11-07  Phil Muldoon  <pmuldoon@redhat.com>
1201
1202         PR python/15747
1203         * python/py-cmd.c: Add COMPLETE_EXPRESSION constant.
1204
1205 2013-11-07  Phil Muldoon  <pmuldoon@redhat.com>
1206
1207         * NEWS: Document Python temporary breakpoint support.
1208         * python/py-breakpoint.c (bppy_get_temporary): New function.
1209         (bppy_init): New keyword: temporary. Parse it and set breakpoint
1210         to temporary if True.
1211
1212 2013-11-07  Jose E. Marchesi  <jose.marchesi@oracle.com>
1213
1214         * sparc-tdep.c (sparc_analyze_control_transfer): Assertion
1215         removed to allow analyzing unconditional branch instructions
1216         with PC-relative offsets of zero.
1217
1218 2013-11-07  Yao Qi  <yao@codesourcery.com>
1219
1220         * mi/mi-cmd-var.c: Include "language.h".
1221         (mi_cmd_var_info_expression): Get language name from
1222         language_defn.
1223         * varobj.c (varobj_language_string): Remove.
1224         (variable_language): Remove declaration.
1225         (languages): Remove.
1226         (varobj_get_language): Change the type of return value.
1227         (variable_language): Remove.
1228         * varobj.h (enum varobj_languages): Remove.
1229         (varobj_language_string): Remove declaration.
1230         (varobj_get_language): Update declaration.
1231
1232 2013-11-07  Yao Qi  <yao@codesourcery.com>
1233
1234         * language.h (struct language_defn) <la_natural_name>: New
1235         field.
1236         * ada-lang.c (ada_language_defn): Initialize field
1237         'la_natural_name'.
1238         * c-lang.c (c_language_defn): Likewise.
1239         (cplus_language_defn, asm_language_defn): Likewise.
1240         * d-lang.c (d_language_defn): Likewise.
1241         * f-lang.c (f_language_defn): Likewise.
1242         * go-lang.c (go_language_defn): Likewise.
1243         * jv-lang.c (java_language_defn): Likewise.
1244         * language.c (unknown_language_defn ): Likewise.
1245         (auto_language_defn): Likewise.
1246         * m2-lang.c (m2_language_defn): Likewise.
1247         * objc-lang.c (objc_language_defn): Likewise.
1248         * opencl-lang.c (opencl_language_defn): Likewise.
1249         * p-lang.c (pascal_language_defn): Likewise.
1250
1251 2013-11-07  Yao Qi  <yao@codesourcery.com>
1252
1253         * language.c (language_str): Return const char *.
1254         (add_language): Add const to 'language_names'
1255         * language.h (struct language_defn) <la_name>: Add const.
1256         (language_str: Update declaration.
1257
1258 2013-11-06  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1259
1260         * s390-linux-nat.c (s390_read_description): Consider the TE field
1261         in the HWCAP for determining 'have_regset_tdb'.
1262
1263 2013-11-06  Will Newton  <will.newton@linaro.org>
1264
1265         PR gdb/12866
1266         * dwarf2read.c (skip_one_die): Sanity check DW_AT_sibling
1267         values.  (read_partial_die): Likewise.
1268
1269 2013-11-06  Muhammad Bilal  <mbilal@codesourcery.com>
1270
1271         PR cli/16122
1272         * top.c (command_line_input): Unify interactivity tests to use
1273         input_from_terminal_p.
1274         * event-top.c (command_line_handler): Likewise.
1275
1276 2013-11-06  Yao Qi  <yao@codesourcery.com>
1277
1278         * Makefile.in (check-perf): New target.
1279
1280 2013-11-05  Will Newton  <will.newton@linaro.org>
1281
1282         PR gdb/7670
1283         * arm-tdep.c (print_fpu_flags): Use filtered output routines.
1284         (arm_print_float_info): Likewise.
1285
1286 2013-11-04  Anton Blanchard  <anton@samba.org>
1287
1288         * target.c (memory_xfer_partial): Cap write to 4KB.
1289
1290 2013-11-01  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
1291
1292         * breakpoint.c (create_longjmp_master_breakpoint): Allow libc
1293         probe scan even when the arch provides no get_longjmp_target.
1294
1295 2013-10-31  Pedro Alves  <palves@redhat.com>
1296
1297         * infrun.c (handle_syscall_event): Don't set or clear stop_signal.
1298         (handle_inferior_event) <TARGET_WAITKIND_FORKED,
1299         TARGET_WAITKIND_VFORKED>: Don't set stop_signal to
1300         GDB_SIGNAL_TRAP, or clear it.  Pass GDB_SIGNAL_0 to
1301         bpstat_explains signal, instead of GDB_SIGNAL_TRAP.
1302         <bpstat handling>: If the bpstat chain wants the signal to be
1303         hidden, then set stop_signal to GDB_SIGNAL_0 instead of
1304         GDB_SIGNAL_TRAP.
1305
1306 2013-10-31  Andrew Burgess  <aburgess@broadcom.com>
1307
1308         * breakpoint.c (update_watchpoint): Update error message and add
1309         an additional error message.
1310
1311 2013-10-30  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1312
1313         * s390-tdep.h: Rename to...
1314         * s390-linux-tdep.h: ...here.
1315         * s390-tdep.c: Rename to...
1316         * s390-linux-tdep.c: ...here.  Adjust #include.
1317         * s390-nat.c: Rename to...
1318         * s390-linux-nat.c: ...here.  Adjust #include.
1319         * config/s390/s390.mh: Rename to...
1320         * config/s390/linux.mh: ...here.  Reflect rename s390-nat.o ->
1321         s390-linux-nat.o.
1322         * configure.host: Reflect host rename "s390" -> "linux".
1323         * configure.tgt: Reflect rename s390-tdep.o -> s390-linux-tdep.o.
1324         * Makefile.in (ALL_TARGET_OBS): Likewise.
1325         (HFILES_NO_SRCDIR): Reflect rename s390-tdep.h ->
1326         s390-linux-tdep.h.
1327         (ALLDEPFILES): Reflect rename of .c files.
1328
1329 2013-10-30  Andreas Arnez  <arnez@linux.vnet.ibm.com>
1330
1331         * s390-nat.c: Whitespace cleanup.
1332         * s390-tdep.c: Likewise.
1333         * s390-tdep.h: Remove empty line at end of file.
1334
1335 2013-10-30  Maciej W. Rozycki  <macro@codesourcery.com>
1336
1337         * linux-tdep.c (linux_corefile_thread_callback): Preinitialize
1338         siginfo_size.
1339
1340 2013-10-29  Tom Tromey  <tromey@redhat.com>
1341
1342         * utils.c (reg): Move undefinition...
1343         * gdb_curses.h: ... here.  Update comment to mention AIX.
1344
1345 2013-10-29  Nicolas Blanc  <nicolas.blanc@intel.com>
1346
1347         * exec.h (add_target_sections_of_objfile): New declaration.
1348         * exec.c (add_target_sections_of_objfile): New function.
1349         * symfile.c (add_symbol_file_command): Update current target sections.
1350         (remove_symbol_file_command): New command.
1351         (symfile_free_objfile): New function.
1352         (_initialize_symfile): Register observer for free_objfile events.
1353         * NEWS: Add description of the remove-symbol-file command.
1354         * breakpoint.c (disable_breakpoints_in_freed_objfile): New function.
1355         * objfiles.c (free_objfile): Notify free_objfile.
1356         (is_addr_in_objfile): New function.
1357         * objfiles.h (is_addr_in_objfile): New declaration.
1358         * printcmd.c (clear_dangling_display_expressions): Act upon free_objfile
1359         events instead of solib_unloaded events.
1360         (_initialize_printcmd): Register observer for free_objfile instead
1361         of solib_unloaded notifications.
1362         * solib.c (remove_user_added_objfile): New function.
1363         (_initialize_symfile): Add remove-symbol-file.
1364
1365 2013-10-29  Andrew Burgess  <aburgess@broadcom.com>
1366
1367         * infcmd.c (default_print_one_register_info): Use val_print to
1368         print all values even optimized out or unavailable ones.  Don't
1369         try to print a raw form of optimized out or unavailable values.
1370
1371 2013-10-29  Yao Qi  <yao@codesourcery.com>
1372
1373         * auto-load.c (auto_load_pspace_data_cleanup): Get data from
1374         parameter 'arg' instead of from program_space_data.
1375         * objfiles.c (objfiles_pspace_data_cleanup): Likewise.
1376         * solib-darwin.c (darwin_pspace_data_cleanup): Likewise.
1377         * solib-dsbt.c (dsbt_pspace_data_cleanup): Likewise.
1378         * solib-svr4.c (svr4_pspace_data_cleanup): Likewise.
1379         * inflow.c (inflow_inferior_data_cleanup): Get data from
1380         parameter 'arg' instead of inferior_data.
1381         * registry.h: Add comments.
1382
1383 2013-10-28  Pedro Alves  <palves@redhat.com>
1384
1385         * breakpoint.c (watchpoints_triggered)
1386         <!target_stopped_data_address>: Hardcode return 1.
1387
1388 2013-10-28  Pedro Alves  <palves@redhat.com>
1389
1390         * infrun.c (process_event_stop_test): Remove unnecessary scoping
1391         level and reindent.
1392
1393 2013-10-28  Pedro Alves  <palves@redhat.com>
1394
1395         * infrun.c (process_event_stop_test): New function, factored out
1396         from handle_inferior_event.
1397         (handle_inferior_event): 'process_event_stop_test' is now a
1398         function instead of a goto label -- adjust.
1399
1400 2013-10-28  Pedro Alves  <palves@redhat.com>
1401
1402         * infrun.c (handle_inferior_event): Move process_event_stop_test
1403         goto label to the else branch of the ecs->random_signal check,
1404         along with FRAME and GDBARCH re-fetching.
1405
1406 2013-10-28  Pedro Alves  <palves@redhat.com>
1407
1408         * infrun.c (switch_back_to_stepped_thread): New function, factored
1409         out from handle_inferior_event.
1410         (handle_inferior_event): Adjust to call
1411         switch_back_to_stepped_thread.  Call it also at the tail of the
1412         random signal handling, and return, instead of also handling
1413         random signals just before the stepping tests.
1414
1415 2013-10-28  Pedro Alves  <palves@redhat.com>
1416
1417         * infrun.c (clear_stop_func): Delete.
1418         (handle_inferior_event): Don't call clear_stop_func and don't
1419         clear 'ecs->random_signal'.
1420
1421 2013-10-27  Yao Qi  <yao@codesourcery.com>
1422
1423         * varobj.c (struct varobj_root) <lang>: Rename to 'lang_ops'.
1424         (varobj_create, varobj_get_path_expr): Update.
1425         (varobj_value_has_mutated, varobj_update): Likewise.
1426         (create_child_with_value, new_root_variable): Likewise.
1427         (number_of_children, name_of_variable): Likewise.
1428         (value_of_child, my_value_of_variable): Likewise.
1429         (varobj_value_is_changeable_p): Likewise.
1430
1431 2013-10-25  Yao Qi  <yao@codesourcery.com>
1432
1433         * language.h (struct lang_varobj_ops): Declare.
1434         (struct language_defn) <la_varobj_ops>: New field.
1435         * ada-lang.c: Include "varobj.h"
1436         (defn ada_language_defn): Initialize field 'la_varobj_ops' with
1437         ada_varobj_ops.
1438         * c-lang.c: Include "varobj.h"
1439         (c_language_defn): Initialize field 'la_varobj_ops' with
1440         c_varobj_ops.
1441         (cplus_language_defn): Initialize field 'la_varobj_ops' with
1442         cplus_varobj_ops.
1443         (asm_language_defn): Initialize field 'la_varobj_ops' with
1444         default_varobj_ops.
1445         (minimal_language_defn): Likewise.
1446         * d-lang.c (d_language_defn): Likewise.
1447         * f-lang.c (f_language_defn): Likewise.
1448         * go-lang.c (go_language_defn): Likewise.
1449         * m2-lang.c (m2_language_defn): Likewise.
1450         * objc-lang.c (objc_language_defn): Likewise.
1451         * opencl-lang.c (opencl_language_defn): Likewise.
1452         * p-lang.c (pascal_language_defn): Likewise.
1453         * language.c (unknown_language_defn): Likewise.
1454         (auto_language_defn): Likewise.
1455         (local_language_defn): Likewise.
1456         * jv-lang.c (java_language_defn): Initialize field
1457         'la_varobj_ops' with java_varobj_ops.
1458         * varobj.c (varobj_create): Update.
1459         * varobj.h (default_varobj_ops): Define macro.
1460
1461 2013-10-25  Pedro Alves  <palves@redhat.com>
1462
1463         * cp-valprint.c (cp_print_value_fields): No longer handle a NULL
1464         static field value.
1465         (cp_print_static_field): If the value is entirely optimized out,
1466         print <optimized out> here.
1467         * jv-valprint.c (java_print_value_fields): No longer handle a NULL
1468         static field value.
1469         * p-valprint.c (pascal_object_print_static_field): If the value is
1470         entirely optimized out, print <optimized out> here.
1471         * valops.c (do_search_struct_field)
1472         (value_struct_elt_for_reference): No longer handle a NULL static
1473         field value.
1474         * value.c (value_static_field): Return an optimized out value
1475         instead of NULL.
1476
1477 2013-10-25  Yao Qi  <yao@codesourcery.com>
1478
1479         * remote.c (remote_traceframe_info): Return early if
1480         traceframe is not selected.
1481
1482 2013-10-25  Yao Qi  <yao@codesourcery.com>
1483
1484         * tracepoint.c (traceframe_fun): Remove.
1485         (traceframe_sal): Remove.
1486         (set_traceframe_context): Add local variables.
1487
1488 2013-10-25  Joel Brobecker  <brobecker@adacore.com>
1489
1490         * varobj.h (struct lang_varobj_ops): Remove spaces between '*'
1491         and parameter name.
1492
1493 2013-10-24  Maciej W. Rozycki  <macro@codesourcery.com>
1494
1495         * linux-tdep.c (linux_corefile_thread_callback): Propagate any
1496         failure from register information collection.
1497
1498 2013-10-24  Maciej W. Rozycki  <macro@codesourcery.com>
1499
1500         * linux-tdep.c (linux_corefile_thread_data): Remove `num_notes'
1501         member.
1502         (linux_corefile_thread_callback): Update accordingly.
1503         (linux_make_corefile_notes): Likewise.
1504
1505 2013-10-24  Pedro Alves   <palves@redhat.com>
1506
1507         * NEWS (New options): Mention set/show startup-with-shell.
1508         * config/alpha/nm-osf3.h (START_INFERIOR_TRAPS_EXPECTED): Set to 2
1509         instead of 3.
1510         * fork-child.c (fork_inferior, startup_inferior): Handle 'set
1511         startup-with-shell'.
1512         (show_startup_with_shell): New function.
1513         (_initialize_fork_child): Register the set/show startup-with-shell
1514         commands.
1515         * inf-ptrace.c (inf_ptrace_create_inferior): Remove comment.
1516         * inf-ttrace.c (inf_ttrace_him): Remove comment.
1517         * procfs.c (procfs_init_inferior): Remove comment.
1518         * infcmd.c (startup_with_shell): New global.
1519         * inferior.h (startup_with_shell): Declare global.
1520         (STARTUP_WITH_SHELL): Delete.
1521         (START_INFERIOR_TRAPS_EXPECTED): Set to 1 by default instead of 2.
1522
1523 2013-10-23  Pedro Alves  <palves@redhat.com>
1524
1525         * common/gdb_signals.h (gdb_signal_to_symbol_string): Declare.
1526         * common/signals.c: Include "gdb_assert.h".
1527         (signals): New field 'symbol'.
1528         (SET): Use the 'symbol' parameter.
1529         (gdb_signal_to_symbol_string): New function.
1530         * infrun.c (handle_inferior_event) <random signal>: In debug
1531         output, print the random signal enum as string in addition to its
1532         number.
1533         * target/waitstatus.c (target_waitstatus_to_string): Print the
1534         signal's enum value as string instead of the (POSIX) signal name.
1535
1536 2013-10-23  Gary Benson  <gbenson@redhat.com>
1537
1538         PR 16013
1539         * common/linux-osdata.c (command_from_pid): Reduced size of cmd
1540         from 32 to 18.  Adjusted fscanf format string accordingly.
1541         (Avoids leaving cmd unterminated.)
1542         (print_sockets): Do not parse tlen, inode, sl, timeout, txq, rxq,
1543         trun, retn or extra.  (Avoids leaving extra unterminated.)  Check
1544         that local_address and remote_address will not overflow.
1545         (linux_xfer_osdata_modules): Parse lines using strtok to avoid
1546         leaving dependencies unterminated.  Parse size as "%u" to match
1547         definition.
1548
1549 2013-10-22  Pedro Alves  <palves@redhat.com>
1550
1551         * infrun.c (handle_inferior_event) <thread hop>: Don't clear or
1552         set ecs->random signal.
1553
1554 2013-10-22  Pedro Alves  <palves@redhat.com>
1555
1556         * infrun.c (keep_going): Update comments.
1557
1558 2013-10-22  Pedro Alves  <palves@redhat.com>
1559
1560         * remote.c (remote_parse_stop_reply) <'T'/'S'/'X' replies>: Map
1561         invalid signal numbers to GDB_SIGNAL_UNKNOWN.
1562
1563 2013-10-22  Pedro Alves  <palves@redhat.com>
1564
1565         * include/gdb/signals.def (TARGET_EXC_BAD_ACCESS): Rename to
1566         GDB_EXC_BAD_ACCESS.
1567         (TARGET_EXC_BAD_INSTRUCTION): Rename to GDB_EXC_BAD_INSTRUCTION.
1568         (TARGET_EXC_ARITHMETIC): Rename to GDB_EXC_ARITHMETIC.
1569         (TARGET_EXC_EMULATION): Rename to GDB_EXC_EMULATION.
1570         (TARGET_EXC_SOFTWARE): Rename to GDB_EXC_SOFTWARE.
1571         (TARGET_EXC_BREAKPOINT): Rename to GDB_EXC_BREAKPOINT.
1572         (GDB_SIGNAL_LAST): Change description string.
1573         * common/signals.c (gdb_signal_from_host, do_gdb_signal_to_host):
1574         Adjust to signal renaming.
1575         * darwin-nat.c (darwin_decode_message): Likewise.
1576
1577 2013-10-22  Jose E. Marchesi  <jose.marchesi@oracle.com>
1578
1579         * MAINTAINERS (Write After Approval): Add myself to the list.
1580
1581 2013-10-18  Andrew Burgess  <aburgess@broadcom.com>
1582
1583         * breakpoint.c (update_watchpoint): If hardware watchpoints are
1584         forced off, downgrade them to software watchpoints if possible,
1585         and error out if not possible.
1586         (watch_command_1): Move watchpoint type selection closer to
1587         watchpoint creation, and extend the comments.
1588
1589 2013-10-18  Pedro Alves  <palves@redhat.com>
1590
1591         PR gdb/16062
1592         * infrun.c (handle_inferior_event): Keep going if we got a random
1593         signal we should not stop for, instead of falling through to the
1594         step tests.
1595
1596 2013-10-18  Yao Qi  <yao@codesourcery.com>
1597
1598         * c-varobj.c (cplus_number_of_children): Fix indentation.
1599
1600 2013-10-17  Tom Tromey  <tromey@redhat.com>
1601
1602         PR gdb/15995:
1603         * printcmd.c (printcmd): Call gdb_flush.
1604
1605 2013-10-17  Tom Tromey  <tromey@redhat.com>
1606
1607         * elfread.c (struct elfinfo) <stabindexsect>: Remove.
1608         (elf_locate_sections): Update.
1609
1610 2013-10-17  Yao Qi  <yao@codesourcery.com>
1611
1612         * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
1613         * ada-varobj.c: Remove the include of ada-varobj.h.
1614         (ada_varobj_get_number_of_children): Declare.
1615         (ada_varobj_get_name_of_child): Make it static.
1616         (ada_varobj_get_path_expr_of_child): Likewise.
1617         (ada_varobj_get_value_of_child): Likewise.
1618         (ada_varobj_get_type_of_child): Likewise.
1619         (ada_varobj_get_value_of_array_variable): Likewise.
1620         * ada-varobj.h: Remove.
1621
1622 2013-10-17  Yao Qi  <yao@codesourcery.com>
1623
1624         * Makefile.in (SFILES): Add c-varobj.c and jv-varobj.c.
1625         (COMMON_OBS): Add c-varobj.o and jv-varobj.o.
1626         * ada-varobj.c: Include "varobj.h".
1627         (ada_number_of_children): New.  Moved from varobj.c.
1628         (ada_name_of_variable, ada_name_of_child): Likewise.
1629         (ada_path_expr_of_child, ada_value_of_child): Likewise.
1630         (ada_type_of_child, ada_value_of_variable): Likewise.
1631         (ada_value_is_changeable_p, ada_value_has_mutated): Likewise.
1632         (ada_varobj_ops): New.
1633         * c-varobj.c, jv-varobj.c: New file.  Moved from varobj.c.
1634         * gdbtypes.c (get_target_type): New.  Moved from varobj.c.
1635         * gdbtypes.h (get_target_type): Declare.
1636         * varobj.c: Remove the inclusion of "ada-varobj.h" and
1637         "ada-lang.h".
1638         (ANONYMOUS_STRUCT_NAME): Move it to c-varobj.c.
1639         (ANONYMOUS_UNION_NAME): Likewise.
1640         (get_type, get_value_type, get_target_type): Remove declarations.
1641         (value_get_print_value, varobj_value_get_print_value): Likewise.
1642         (c_number_of_children, c_name_of_variable): Likewise.
1643         (c_name_of_child, c_path_expr_of_child): Likewise.
1644         (c_value_of_child, c_type_of_child): Likewise.
1645         (c_value_of_variable, cplus_number_of_children): Likewise.
1646         (cplus_class_num_children, cplus_name_of_variable): Likewise.
1647         (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
1648         (cplus_value_of_child, cplus_type_of_child): Likewise.
1649         (cplus_value_of_variable, java_number_of_children): Likewise.
1650         (java_name_of_variable, java_name_of_child): Likewise.
1651         (java_path_expr_of_child, java_value_of_child): Likewise.
1652         (java_type_of_child, java_value_of_variable): Likewise.
1653         (ada_number_of_children, ada_name_of_variable): Likewise.
1654         (ada_name_of_child, ada_path_expr_of_child): Likewise.
1655         (ada_value_of_child, ada_type_of_child): Likewise.
1656         (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
1657         (ada_value_has_mutated): Likewise.
1658         (struct language_specific): Move it to varobj.h.
1659         (CPLUS_FAKE_CHILD): Move it to varobj.h.
1660         (restrict_range): Rename it varobj_restrict_range.  Make it extern.
1661         Callers update.
1662         (get_path_expr_parent): Rename it to varobj_get_path_expr_parent.
1663         Make it extern.
1664         (is_anonymous_child): Move it to c-varobj.c and rename to
1665         varobj_is_anonymous_child.  Caller update.
1666         (get_type): Move it to c-varobj.c.
1667         (get_value_type): Rename it varobj_get_value_type.  Make it
1668         extern.
1669         (get_target_type): Move it gdbtypes.c.
1670         (varobj_formatted_print_options): New function.
1671         (value_get_print_value): Rename it to
1672         varobj_value_get_print_value and make it extern.
1673         (varobj_value_is_changeable_p): Make it extern.
1674         (adjust_value_for_child_access): Move it to c-varobj.c.
1675         (default_value_is_changeable_p): Rename it to
1676         varobj_default_value_is_changeable_p.  Make it extern.
1677         (c_number_of_children, c_name_of_variable): Move it to c-varobj.c
1678         (c_name_of_child, c_path_expr_of_child): Likewise.
1679         (c_value_of_child, c_type_of_child): Likewise.
1680         (c_value_of_variable, cplus_number_of_children): Likewise.
1681         (cplus_class_num_children, cplus_name_of_variable): Likewise.
1682         (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
1683         (cplus_value_of_child, cplus_type_of_child): Likewise.
1684         (cplus_value_of_variable): Likewise.
1685         (java_number_of_children, java_name_of_variable): Move it to jv-varobj.c.
1686         (java_name_of_child, java_path_expr_of_child): Likewise.
1687         (java_value_of_child, java_type_of_child): Likewise.
1688         (java_value_of_variable): Likewise.
1689         (ada_number_of_children, ada_name_of_variable): Move it to ada-varobj.c.
1690         (ada_name_of_child, ada_path_expr_of_child): Likewise.
1691         (ada_value_of_child, ada_type_of_child): Likewise.
1692         (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
1693         (ada_value_has_mutated): Likewise.
1694         * varobj.h (CPLUS_FAKE_CHILD): New macro, moved from varobj.c.
1695         (struct lang_varobj_ops): New.  Renamed by 'struct language_specific'.
1696         (c_varobj_ops, cplus_varobj_ops): Declare.
1697         (java_varobj_ops, ada_varobj_ops): Declare.
1698         (varobj_default_value_is_changeable_p): Declare.
1699         (varobj_value_is_changeable_p): Declare.
1700         (varobj_get_value_type, varobj_is_anonymous_child): Declare.
1701         (varobj_get_path_expr_parent): Declare.
1702         (varobj_value_get_print_value): Declare.
1703         (varobj_formatted_print_options): Declare.
1704         (varobj_restrict_range): Declare.
1705
1706 2013-10-17  Luis Machado  <lgustavo@codesourcery.com>
1707
1708         * target/waitstatus.h (target_waitkind): Remove spurious
1709         character from the comments.
1710
1711 2013-10-17  Joel Brobecker  <brobecker@adacore.com>
1712
1713         * gdbarch.sh (get_longjmp_target): Add method documentation.
1714         * gdbarch.h: Regenerate.
1715
1716 2013-10-16  Tom Tromey  <tromey@redhat.com>
1717
1718         * dbxread.c (read_dbx_symtab) <bss_ext_symbol>: Remove unused
1719         label.
1720
1721 2013-10-16  Luis Machado  <lgustavo@codesourcery.com>
1722
1723         * gcore.in: Call GDB using the full path to the gcore script.
1724         Error out if the GDB binary is not found.
1725
1726 2013-10-16  Sergio Durigan Junior  <sergiodj@redhat.com>
1727
1728         PR gdb/16014
1729         * dwarf2read.c (dw2_get_real_path): Remove unnecessary call to
1730         sizeof.
1731
1732 2013-10-16  Sergio Durigan Junior  <sergiodj@redhat.com>
1733
1734         PR gdb/16042
1735         * target.c (target_disable_btrace): Fix invalid return value for
1736         void function.
1737         (target_teardown_btrace): Likewise.
1738
1739 2013-10-14  Yao Qi  <yao@codesourcery.com>
1740
1741         * varobj.c (struct varobj): Move most of the fields to
1742         varobj.h.
1743         (struct varobj_dynamic): New struct.
1744         (varobj_get_display_hint) [HAVE_PYTHON]: Adjust.
1745         (varobj_has_more): Likewise.
1746         (dynamic_varobj_has_child_method): Likewise.
1747         (update_dynamic_varobj_children): Likewise.
1748         (varobj_get_num_children): Likewise.
1749         (varobj_list_children, varobj_pretty_printed_p): Likewise.
1750         (install_new_value_visualizer): Likewise.
1751         (install_new_value_visualizer, install_new_value): Likewise.
1752         (varobj_update, new_variable, free_variable): Likewise.
1753         (my_value_of_variable, value_get_print_value): Likewise.
1754         (install_visualizer): Change the type of parameter 'var' to
1755         'struct varobjd_dynamic *'.  Callers update.
1756         * varobj.h (struct varobj): Moved from varobj.c.
1757         (struct varobj) <dynamic>: New field.
1758
1759 2013-10-13  Sandra Loosemore  <sandra@codesourcery.com>
1760
1761         * nios2-tdep.c (nios2_reg_names): Use "sstatus" rather than "ba"
1762         as the preferred name of r30.
1763         * nios2-linux-tdep.c (reg_offsets): Likewise.
1764         * features/nios2-cpu.xml: Likewise.
1765         * features/nios2-linux.c: Regenerated.
1766         * features/nios2.c: Regenerated.
1767         * regformats/nios2-linux.dat: Regenerated.
1768
1769 2013-10-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
1770
1771         Canonicalize directories for EXEC_FILENAME.
1772         * exec.c (exec_file_attach): Use gdb_realpath_keepfile for
1773         exec_filename.
1774         * utils.c (gdb_realpath_keepfile): New function.
1775         * utils.h (gdb_realpath_keepfile): New declaration.
1776
1777 2013-10-11  Doug Evans  <dje@google.com>
1778
1779         * Makefile.in (GDBFLAGS): New variable.
1780         (run): New rule.
1781
1782 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
1783
1784         * NEWS: Add entry documenting the new "-catch-assert" and
1785         "-catch-exception" GDB/MI commands.
1786
1787 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
1788
1789         * breakpoint.h (init_ada_exception_breakpoint): Add parameter
1790         "enabled".
1791         * breakpoint.c (init_ada_exception_breakpoint): Add parameter
1792         "enabled".  Set B->ENABLE_STATE accordingly.
1793         * ada-lang.h (ada_exception_catchpoint_kind): Move here from
1794         ada-lang.c.
1795         (create_ada_exception_catchpoint): Add declaration.
1796         * ada-lang.c (ada_exception_catchpoint_kind): Move to ada-lang.h.
1797         (create_ada_exception_catchpoint): Make non-static. Add new
1798         parameter "disabled". Use it in call to
1799         init_ada_exception_breakpoint.
1800         (catch_ada_exception_command): Add parameter "enabled" in call
1801         to create_ada_exception_catchpoint.
1802         (catch_assert_command): Likewise.
1803
1804         * mi/mi-cmds.h (mi_cmd_catch_assert, mi_cmd_catch_exception):
1805         Add declarations.
1806         * mi/mi-cmds.c (mi_cmds): Add the "catch-assert" and
1807         "catch-exception" commands.
1808         * mi/mi-cmd-catch.c: Add #include "ada-lang.h".
1809         (mi_cmd_catch_assert, mi_cmd_catch_exception): New functions.
1810
1811 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
1812
1813         * ada-lang.c (enum ada_exception_catchpoint_kind): Renames
1814         "enum exception_catchpoint_kind".  Replace the "ex_" prefix
1815         of all its enumerates with "ada_".  Update the rest of this
1816         file throughout.
1817
1818 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
1819
1820         * ada-lang.c (ada_decode_exception_location): Delete.
1821         (create_ada_exception_catchpoint): Remove arguments "sal",
1822         "addr_string" and "ops".  Add argument "ex_kind" instead.
1823         Adjust implementation accordingly, calling ada_exception_sal
1824         to get the entities it no longer gets passed as arguments.
1825         Document the function's arguments.
1826         (catch_ada_exception_command): Use catch_ada_exception_command_split
1827         instead of ada_decode_exception_location, and update call to
1828         create_ada_exception_catchpoint.
1829         (catch_ada_assert_command_split): Renames
1830         ada_decode_assert_location.  Remove parameters "addr_string" and
1831         "ops", and now returns void.  Adjust implementation accordingly.
1832         Update the function documentation.
1833         (catch_assert_command): Use catch_ada_assert_command_split
1834         instead of ada_decode_assert_location.  Update call to
1835         create_ada_exception_catchpoint.
1836
1837 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
1838
1839         * utils.h (perror_warning_with_name): Add declaration.
1840         * utils.c (perror_warning_with_name): New function.
1841         * cli/cli-cmds.c (source_script_with_search): Add call to
1842         perror_warning_with_name if from_tty is nul.
1843
1844 2013-10-11  Joel Brobecker  <brobecker@adacore.com>
1845
1846         * utils.c (perror_string): New function, extracted out of
1847         throw_perror_with_name.
1848         (throw_perror_with_name): Rework to use perror_string.
1849
1850 2013-10-11  Yao Qi  <yao@codesourcery.com>
1851
1852         * remote.c (discard_pending_stop_replies_in_queue): Update
1853         declaration.
1854         (struct stop_reply) <rs>: New field.
1855         (remove_stop_reply_of_remote_state): New function.
1856         (discard_pending_stop_replies_in_queue): Add parameter 'rs'.
1857         Callers update.  Pass remove_stop_reply_of_remote_state to
1858         QUEUE_iterate.
1859         (remote_parse_stop_reply): Initialize field 'rs'.
1860
1861 2013-10-10  Will Newton  <will.newton@linaro.org>
1862
1863         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
1864         linux_init_abi.
1865
1866 2013-10-10  Joel Brobecker  <brobecker@adacore.com>
1867
1868         * cli/cli-cmds.c (show_baud_rate): Moved to serial.c as
1869         serial_baud_show_cmd.
1870         (_initialize_cli_cmds): Delete the code creating the
1871         "set/show remotebaud" commands.
1872         * serial.c (baud_rate): Move here from top.c.
1873         (serial_baud_show_cmd): Move here from cli/cli-cmds.c.
1874         (_initialize_serial): Create "set/show serial baud" commands.
1875         Add "set/show remotebaud" command aliases.
1876         * top.c (baud_rate): Moved to serial.c.
1877         * NEWS: Document the new "set/show serial baud" commands,
1878         replacing "set/show remotebaud".
1879
1880 2013-10-09  Pedro Alves  <palves@redhat.com>
1881
1882         * breakpoint.c (insert_bp_location): Use memory_error_message to
1883         build the memory error string.
1884         * c-lang.c: Include "gdbcore.h".
1885         (c_get_string): Use memory_error to throw error.
1886         (target_xfer_memory_error): Delete.
1887         (memory_error_message): New, factored out from
1888         target_xfer_memory_error.
1889         (memory_error): Change parameter type to target_xfer_error.
1890         Rewrite.
1891         (read_memory): Use memory_error instead of
1892         target_xfer_memory_error.
1893         * gdbcore.h: Include "target.h".
1894         (memory_error): Change parameter type to target_xfer_error.
1895         (memory_error_message): Declare function.
1896         * target.c (target_read_memory, target_read_stack)
1897         (target_write_memory, target_write_raw_memory): Return
1898         TARGET_XFER_E_IO on error.  Adjust comments.
1899         (get_target_memory): Pass TARGET_XFER_E_IO to memory_error,
1900         instead of EIO.
1901         * target.h (target_read, target_insert_breakpoint)
1902         (target_remove_breakpoint): Adjust comments.
1903         * valprint.c (partial_memory_read): Rename parameter, and adjust
1904         comment.
1905         (val_print_string): Use memory_error_message to build the memory
1906         error string.
1907
1908 2013-10-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
1909
1910         * common/filestuff.c (gdb_fopen_cloexec): Remove initialization of
1911         result variable.  Rename variable fopen_e_ever_failed to
1912         fopen_e_ever_failed_einval.  Retry fopen only for errno EINVAL.
1913
1914 2013-10-09  Pedro Alves  <palves@redhat.com>
1915
1916         * monitor.c (monitor_write_memory, monitor_write_memory_bytes)
1917         (monitor_write_memory_longlongs, monitor_write_memory_block):
1918         Constify 'myaddr' parameter.
1919         (monitor_xfer_memory): Adjust interface as monitor_xfer_partial
1920         helper.
1921         (monitor_xfer_partial): New function.
1922         (init_base_monitor_ops): Don't install a deprecated_xfer_memory
1923         hook.  Install a to_xfer_partial hook.
1924
1925 2013-10-09  Tom Tromey  <tromey@redhat.com>
1926
1927         * dwarf2read.c (dwarf2_get_dwz_file): Update for type change in
1928         bfd_get_alt_debug_link_info.
1929
1930 2013-10-09  Jan Kratochvil  <jan.kratochvil@redhat.com>
1931
1932         New flag OBJF_NOT_FILENAME.
1933         * auto-load.c (auto_load_objfile_script): Check also OBJF_NOT_FILENAME.
1934         * jit.c (jit_object_close_impl): Use OBJF_NOT_FILENAME for
1935         allocate_objfile.
1936         (jit_bfd_try_read_symtab): Use OBJF_NOT_FILENAME for
1937         symbol_file_add_from_bfd.
1938         * jv-lang.c (get_dynamics_objfile): Use OBJF_NOT_FILENAME for
1939         allocate_objfile.
1940         * objfiles.c (allocate_objfile): Assert OBJF_NOT_FILENAME if NAME is
1941         NULL.
1942         * objfiles.h (OBJF_NOT_FILENAME): New.
1943
1944 2013-10-08  Tom Tromey  <tromey@redhat.com>
1945
1946         * Makefile.in (SFILES): Add build-id.c.
1947         (HFILES_NO_SRCDIR): Add build-id.h.
1948         * build-id.c: New file, largely from elfread.c.  Modified
1949         most functions.
1950         * build-id.h: New file.
1951         * dwarf2read.c (dwarf2_get_dwz_file): Update for change to
1952         bfd_get_alt_debug_link_info.  Verify dwz file's build-id.
1953         Search for dwz file using build-id.
1954         * elfread.c (build_id_bfd_get, build_id_verify)
1955         (build_id_to_debug_filename, find_separate_debug_file): Remove.
1956
1957 2013-10-08  Joel Brobecker  <brobecker@adacore.com>
1958
1959         * ada-lang.c (compare_names_with_case): Renamed from
1960         compare_names, adding a new parameter "casing" and its handling.
1961         New function documentation.
1962         (compare_names): New function, implemented using
1963         compare_names_with_case.
1964
1965 2013-10-08  Joel Brobecker  <brobecker@adacore.com>
1966
1967         * ada-lang.c (ada_exception_sal): Remove advance declaration.
1968
1969 2013-10-07  Tom Tromey  <tromey@redhat.com>
1970
1971         * objfiles.c (free_objfile_per_bfd_storage): Delete the
1972         demangled_names_hash.
1973         (free_objfile): Don't delete the demangled_names_hash.
1974         * objfiles.h (struct objfile_per_bfd_storage)
1975         <demangled_names_hash>: New field.
1976         (struct objfile) <demangled_names_hash>: Move to
1977         objfile_per_bfd_storage.
1978         * symfile.c (reread_symbols): Don't delete the
1979         demangled_names_hash.
1980         * symtab.c (create_demangled_names_hash): Update.
1981         (symbol_set_names): Update.
1982
1983 2013-10-07  Tom Tromey  <tromey@redhat.com>
1984
1985         * gdb_bfd.c (struct gdb_bfd_data) <relocation_computed,
1986         needs_relocations>: New fields.
1987         (gdb_bfd_requires_relocations): New function.
1988         * gdb_bfd.h (gdb_bfd_requires_relocations): Declare.
1989         * objfiles.c (get_objfile_bfd_data): Disallow sharing if
1990         the BFD needs relocations applied.
1991
1992 2013-10-07  Pedro Alves  <palves@redhat.com>
1993
1994         PR breakpoints/11568
1995         * breakpoint.c (remove_threaded_breakpoints): Say "no longer in
1996         the thread list" instead of "gone".
1997
1998 2013-10-06  Sergio Durigan Junior  <sergiodj@redhat.com>
1999
2000         * NEWS: Mention new convenience variable $_exitsignal.
2001         * corelow.c (core_open): Reset exit convenience variables.  Set
2002         $_exitsignal to the uncaught signal which generated the corefile.
2003         * infrun.c (handle_inferior_event): Reset exit convenience
2004         variables.  Set $_exitsignal for TARGET_WAITKIND_SIGNALLED.
2005         (clear_exit_convenience_vars): New function.
2006         * inferior.h (clear_exit_convenience_vars): New prototype.
2007
2008 2013-10-06  Yao Qi  <yao@codesourcery.com>
2009
2010         * varobj.h: Add comments to enum varobj_languages.
2011
2012 2013-10-04  Doug Evans  <dje@google.com>
2013
2014         Add support for DWP file format version 2.
2015         * NEWS: Mention support for DWP file format version 2.
2016         * dwarf2read.c (dwarf2_section_info): Convert asection field to a
2017         union of asection, containing_section.  New fields virtual_offset
2018         and is_virtual.  Change type of readin filed from int to char.
2019         (dwo_sections, dwo_file): Tweak comments.
2020         (dwp_v2_section_ids): New enum.
2021         (dwp_sections): New fields abbrev, info, line, loc, macinfo, macro,
2022         str_offsets, types.
2023         (virtual_v1_dwo_sections): Renamed from virtual_dwo_sections.
2024         All uses updated.
2025         (virtual_v2_dwo_sections): New struct.
2026         (dwp_hash_table): New fields version, nr_columns.  Change type of
2027         section_pool field to a union.
2028         (dwp_file): New field version.
2029         (dwarf2_has_info): Check for virtual sections.
2030         (get_containing_section): New function.
2031         (get_section_bfd_owner, get_section_bfd_section): Call it.
2032         (dwarf2_locate_sections): Update.
2033         (dwarf2_section_empty_p): Update.
2034         (dwarf2_read_section): Handle virtual sections.
2035         (locate_dwz_sections): Update.
2036         (create_dwp_hash_table): Document and handle V2 format.
2037         (locate_v1_virtual_dwo_sections): Renamed from
2038         locate_virtual_dwo_sections and update.  All callers updated.
2039         (create_dwo_unit_in_dwp_v1): Renamed from create_dwo_in_dwp.
2040         Delete arg htab.  Rename arg section_index to unit_index.
2041         All callers updated.
2042         (MAX_NR_V1_DWO_SECTIONS): Renamed from MAX_NR_DWO_SECTIONS.
2043         All uses updated.
2044         (create_dwp_v2_section, create_dwo_unit_in_dwp_v2): New functions.
2045         (lookup_dwo_unit_in_dwp): Add V2 support.
2046         (dwarf2_locate_dwo_sections): Update.
2047         (dwarf2_locate_common_dwp_sections): Renamed from
2048         dwarf2_locate_dwp_sections and update.  All callers updated.
2049         (dwarf2_locate_v2_dwp_sections): New function.
2050         (open_and_init_dwp_file): Add V2 support.
2051         (read_str_index): New locals str_section, str_offsets_section.
2052
2053 2013-10-04  Pedro Alves  <palves@redhat.com>
2054
2055         * common/ptid.c (null_ptid, minus_one_ptid, ptid_build)
2056         (pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid)
2057         (ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p): Replace
2058         describing comments with references to ptid.h.
2059         * common/ptid.h: Remove intro description of constructors,
2060         accessors and predicates.
2061         (struct ptid): Reformat.
2062         (minus_one_ptid, ptid_build, pid_to_ptid, ptid_get_pid)
2063         (ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid): Change
2064         describing comments.
2065
2066 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
2067
2068         * aix-thread.c (sync_threadlists): Add missing ')' in call
2069         to ptid_build.
2070
2071 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
2072
2073         * procfs.c (procfs_init_inferior): Fix typo causing the build
2074         to fail.
2075
2076 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
2077
2078         * aix-thread.c (ptrace32): Remove cast to addr_ptr.
2079
2080 2013-10-04  Joel Brobecker  <brobecker@adacore.com>
2081
2082         * mi/mi-main.c (run_one_inferior): Add function description.
2083         Make ARG a pointer to an integer whose value determines whether
2084         we should "run" or "start" the program.
2085         (mi_cmd_exec_run): Add handling of the "--start" option.
2086         Reject all other command-line options.
2087         * NEWS: Add entry for "-exec-run"'s new "--start" option.
2088
2089 2013-10-04  Yao Qi  <yao@codesourcery.com>
2090
2091         * remote-notif.h (REMOTE_NOTIF_ID): New enum.
2092         (struct notif_client) <pending_event>: Moved
2093         to struct remote_notif_state.
2094         <id>: New field.
2095         (struct remote_notif_state) <pending_event>: New field.
2096         (notif_event_xfree): Declare.
2097         * remote-notif.c (handle_notification): Adjust.
2098         (notif_event_xfree): New function.
2099         (do_notif_event_xfree): Call notif_event_xfree.
2100         (remote_notif_state_xfree): Call notif_event_xfree to free
2101         each element in field pending_event.
2102         * remote.c (discard_pending_stop_replies): Remove declaration.
2103         (discard_pending_stop_replies_in_queue): Declare.
2104         (remote_close): Call discard_pending_stop_replies_in_queue
2105         instead of discard_pending_stop_replies.
2106         (remote_start_remote): Adjust.
2107         (stop_reply_xfree): Call notif_event_xfree.
2108         (notif_client_stop): Adjust initialization.
2109         (remote_notif_remove_all): Rename it to ...
2110         (remove_stop_reply_for_inferior): ... this.  Update comments.
2111         Don't check INF is NULL.
2112         (discard_pending_stop_replies): Return early if notif_state is
2113         NULL.  Adjust.  Don't check INF is NULL.
2114         (remote_notif_get_pending_events): Adjust.
2115         (discard_pending_stop_replies_in_queue): New function.
2116         (remote_wait_ns): Likewise.
2117
2118 2013-10-04  Yao Qi  <yao@codesourcery.com>
2119
2120         * remote-notif.c (DECLARE_QUEUE_P): Remove.
2121         (notif_queue): Remove.
2122         (remote_notif_process): Add one parameter 'notif_queue'.
2123         Update comments.  Callers update.
2124         (remote_async_get_pending_events_token): Remove.
2125         (remote_notif_register_async_event_handler): Remove.
2126         (remote_notif_unregister_async_event_handler): Remove.
2127         (handle_notification): Add parameter 'notif_queue'.  Update
2128         comments.  Callers update.
2129         (notif_xfree): Remove.
2130         (remote_notif_state_allocate): New function.
2131         (remote_notif_state_xfree): New function.
2132         (_initialize_notif): Remove code to allocate queue.
2133         * remote-notif.h (DECLARE_QUEUE_P): Moved from remote-notif.c.
2134         (struct remote_notif_state): New.
2135         (handle_notification): Update declaration.
2136         (remote_notif_process): Likewise.
2137         (remote_notif_register_async_event_handler): Remove.
2138         (remote_notif_unregister_async_event_handler): Remove.
2139         (remote_notif_state_allocate): Declare.
2140         (remote_notif_state_xfree): Declare.
2141         * remote.c (struct remote_state) <notif_state>: New field.
2142         (remote_close): Don't call
2143         remote_notif_unregister_async_event_handler.  Call
2144         remote_notif_state_xfree.
2145         (remote_open_1): Don't call
2146         remote_notif_register_async_event_handler.  Call
2147         remote_notif_state_allocate.
2148
2149 2013-10-04  Yao Qi  <yao@codesourcery.com>
2150
2151         * varobj.c (create_child_with_value): Remove 'const' from the
2152         type of parameter 'name'.
2153         (varobj_add_child): Likewise.
2154         (install_dynamic_child): Remove 'const' from the type of
2155         parameter 'name'.
2156         (varobj_add_child): Likewise.
2157         (create_child_with_value): Likewise.  Update comments.  Don't
2158         duplicate 'name'.
2159         (update_dynamic_varobj_children): Duplicate 'name'
2160         and pass it to install_dynamic_child.
2161
2162 2013-10-03  Phil Muldoon  <pmuldoon@redhat.com>
2163
2164         * python/py-value.c (convert_value_from_python): Move PyInt_Check
2165         conversion logic to occur after PyLong_Check.  Comment on order
2166         change significance.
2167         * python/py-arch.c (archpy_disassemble): Comment on order of
2168         conversion for integers and longs.
2169
2170 2013-10-03  Pedro Alves  <palves@redhat.com>
2171
2172         * common/linux-ptrace.c (linux_check_ptrace_features): Factor out
2173         the PTRACE_O_TRACESYSGOOD and PTRACE_O_TRACEFORK to separate
2174         functions.  Always test for PTRACE_O_TRACESYSGOOD even if
2175         PTRACE_O_TRACEFORK is not supported.
2176         (linux_test_for_tracesysgood): New function.
2177         (linux_test_for_tracefork): New function, factored out from
2178         linux_check_ptrace_features, and also don't kill child_pid here.
2179
2180 2013-10-03  Tristan Gingold  <gingold@adacore.com>
2181
2182         * i386-darwin-nat.c (i386_darwin_dr_set): Fix argument type.
2183         Remove verbose error reporting.  Use detected state to
2184         thread_set_state call.
2185         (i386_darwin_dr_get): Fix return type.  Remove verbose error
2186         report.
2187         Remove trailing spaces.
2188
2189 2013-10-02  Pedro Alves  <palves@redhat.com>
2190
2191         * cp-valprint.c (cp_print_value_fields): Adjust calls to
2192         val_print_optimized_out.
2193         * jv-valprint.c (java_print_value_fields): Likewise.
2194         * p-valprint.c (pascal_object_print_value_fields): Likewise.
2195         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full)
2196         <DWARF_VALUE_REGISTER>: If the register was not saved, return a
2197         new optimized out value.
2198         * findvar.c (address_from_register): Likewise.
2199         * frame.c (put_frame_register): Tweak error string to say the
2200         register was not saved, rather than optimized out.
2201         * infcmd.c (default_print_one_register_info): Adjust call to
2202         val_print_optimized_out.  Use value_of_register instead of
2203         get_frame_register_value.
2204         * mi/mi-main.c (output_register): Use value_of_register instead of
2205         get_frame_register_value.
2206         * valprint.c (valprint_check_validity): Likewise.
2207         (val_print_optimized_out): New value parameter.  If the value is
2208         lval_register, print <not saved> instead.
2209         (value_check_printable, val_print_scalar_formatted): Adjust calls
2210         to val_print_optimized_out.
2211         * valprint.h (val_print_optimized_out): New value parameter.
2212         * value.c (struct value) <optimized_out>: Extend comment.
2213         (error_value_optimized_out): New function.
2214         (require_not_optimized_out): Use it.  Use a different string for
2215         lval_register values.
2216         * value.h (error_value_optimized_out): New declaration.
2217         * NEWS: Mention <not saved>.
2218
2219 2013-10-02  Joel Brobecker  <brobecker@adacore.com>
2220
2221         * symtab.c (compare_search_syms): Use FILENAME_CMP instead of
2222         strcmp to compare two symtab filenames.
2223
2224 2013-10-02  Joel Brobecker  <brobecker@adacore.com>
2225
2226         * symtab.c (search_symbols_equal): Delete.
2227         (sort_search_symbols_remove_dups): Replace call to
2228         search_symbols_equal by call to compare_search_syms,
2229         adjusting as necessary.
2230
2231 2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
2232
2233         PR python/15579
2234         * python/python.c: Document gdb.execute command in Python help.
2235
2236 2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
2237
2238         * python/py-frame.c (frame_info_to_frame_object): Use
2239         gdbpy_convert_exception. Clean up Python object on failure.
2240
2241 2013-10-02  Phil Muldoon  <pmuldoon@redhat.com>
2242
2243         * python/lib/gdb/command/frame_filters.py
2244         (InfoFrameFilter.list_frame_filters): Retrieve exception manually.
2245         (ShowFrameFilterPriority.invoke): Ditto.
2246
2247 2013-10-01  Keith Seitz  <keiths@redhat.com>
2248
2249         * linespec.c (struct ls_parser): Make 'saved_arg' const.
2250         (parse_linespec): Make 'argptr' const.
2251         Remove temporary cast of 'argptr' to const char **.
2252         (decode_line_full): Pass const pointer to parse_linespec.
2253         (decode_line_1): Likewise.
2254         (decode_objc): Make local variable 'new_argptr' const.
2255         (find_function_symbols): Remove temporary cast to char *
2256         to find_imps.
2257         * objc-lang.c (find_imps): Make argument 'method' const.
2258         Return const.
2259         * objc-lang.h (find_imps): Likewise.
2260
2261 2013-10-01  Keith Seitz  <keiths@redhat.com>
2262
2263         * completer.c (skip_quoted_chars): Make all arguments const.
2264         Return const.
2265         (skip_quoted): Likewise.
2266         * completer.h (skip_quoted_chars): Likewise.
2267         (skip_quoted): Likewise.
2268         * defs.h (skip_quoted): Remove duplicate declaration.
2269         * jv-exp.y: Include completer.h.
2270         (yylex): Remove unneccessary cast to char * fro skip_quoted.
2271         * p-exp.y: Include completer.h.
2272
2273 2013-10-01  Keith Seitz  <keiths@redhat.com>
2274
2275         * c-exp.y (parse_number): Make first argument const.
2276         Make a copy of the input to manipulate.
2277         (c_parse_escape): Make first argument const.
2278         Make local variable 'tokptr' const.
2279         (parse_string_or_char): Make first two arguments const.
2280         (macro_original_text): Make const.
2281         (lex_one_token): Make local variable 'tokstart' const.
2282         Likewise for local variables named 'p'.
2283         Cast away const for struct stoken (temporary).
2284         * c-lang.h (c_parse_escpae): Make first argument const.
2285         * cli/cli-cmds.c (echo_command): Make local variable 'p'
2286         const.
2287         * cli/cli-setshow.c (do_set_command): Likewise for 'p' in
2288         var_string case.
2289         * f-exp.y (parse_number): Make first argument const.
2290         (match_string_literal): Make local variable 'tokstart'
2291         const.
2292         (yylex): Make local variable 'p' const.
2293         Cast away const for struct stoken (temporary).
2294         * go-exp.y (parse_number): Make first argument const.
2295         (parse_string_or_char): Likewise.
2296         Make local variable 'tokstart' const.
2297         (lex_one_token): Likewise for numerous locals called 'p'.
2298         Cast away const for struct stoken (temporary).
2299         * jv-exp.y (parse_number): Make first argument const.
2300         Make local variables 'tokstart' and 'tokptr' const.
2301         Cast away const for call to skip_quoted (temporary).
2302         (yylex): Make local variable 'p' const.
2303         Cast away const for struct stoken (temporary).
2304         * m2-exp.y (parse_number): Make local variable 'p' const.
2305         (yylex): Likewise for 'tokstart'.
2306         Cast away const for struct stoken (temporary).
2307         Make local variable 'p' const.
2308         * macroexp.c (get_character_constant): Pass a const string
2309         to c_parse_escape.
2310         (get_string_literal): Likewise.
2311         (macro_expand_next): Make first argument const.
2312         Cast away const for init_shared_buffer.
2313         * macroexp.h (macro_expand_next): Make first argument const.
2314         * p-exp.y (yylex): Make a local copy of 'lexptr'.
2315         Pass a const string to c_parse_escape.
2316         Make local variables 'p' and 'namestart' const.
2317         * parse.c (lexptr): Make const.
2318         (prev_lexptr): Likewise.
2319         (find_template_name_end): Return const.
2320         Make argument const, too.
2321         (parse_exp_in_context): Make first argument const.
2322         Remove the entire const_hack.
2323         (parse_exp_in_context_1): Make first argument const.
2324         * parser-defs.h (find_template_name_end): Return const.
2325         Make argument const, too.
2326         (lexptr): Make const.
2327         (prev_lexptr): Likewise.
2328         * utils.c (parse_escape): Make second argument const.
2329         * utils.h (parse_escape): Likewise.
2330
2331 2013-10-01  Keith Seitz  <keiths@redhat.com>
2332
2333         * ada-exp.y (write_object_renaming): Update: struct stoken.ptr
2334         is now const.
2335         (block_lookup): Make 'raw_name' and 'name' const.
2336         * ada-lex.l (processString): Update for struct stoken.ptr.
2337         * c-exp.y (qualified_name : TYPENAME COLONCOLON '~' name): Likewise.
2338         (operator_stoken): Likewise.
2339         (lex_one_token): Remove temporary cast to char * for
2340         'yylval.sval.ptr'.
2341         * f-exp.y (yylex): Likewise.
2342         * gdb-types.c (lookup_struct_elt_type): Make argument 'name' const.
2343         * gdbtypes.h (lookup_struct_elt_type): Likewisee.
2344         * go-exp.y (lex_one_token): Remove temporary cast to char * for
2345         'yylval.sval.ptr'.
2346         * jv-exp.y (QualifiedName): Update for struct stoken.ptr.
2347         (yylex): Remove temporary cast to char * for 'yylval.sval.ptr'.
2348         * linespec.c (struct ls_parser): Make 'stream' const.
2349         (find_parameter_list_end): Make argument 'input' and local
2350         variable 'p' const.
2351         (linespec_lexer_lex_string): Make local variables 'start' and
2352         'p' const.
2353         Use skip_spaces_const instead of skip_spaces.
2354         (linespec_lexer_peek_token): Make local variable 'saved_stream'
2355         const.
2356         (parse_linespec): Temporarily cast 'argptr' to const for
2357         'parser->lexer.stream'.
2358         * m2-exp.y (yylex): Remove temporary cast to char * for
2359         'yylval.sval.ptr'.
2360         * objc-lang.c (add_msglist): Make local variable 'p' const.
2361         * p-exp.y (exp : exp '['): Update for struct stoken.ptr.
2362         (exp : STRING): Make 'sp' const.
2363         (parse_number): Make argument 'p' const.
2364         * parser-defs.h (struct stoken): Make 'ptr' const.
2365
2366 2013-10-01  Doug Evans  <dje@google.com>
2367
2368         * cli/cli-decode.c: Remove unnecessary inclusion of tui/tui.h.
2369
2370 2013-10-01  Yao Qi  <yao@codesourcery.com>
2371
2372         * varobj.c (c_value_of_root): Remove declaration.
2373         (cplus_value_of_root, java_value_of_root): Likewise.
2374         (ada_value_of_root): Likewise.
2375         (struct language_specific) <value_of_root>: Remove.
2376         (languages): Update initialization.
2377         (check_scope): Move earlier.
2378         (c_value_of_root): Move earlier and rename to ...
2379         (value_of_root_1): ... this.
2380         (value_of_root): Caller update.
2381         (cplus_value_of_root, java_value_of_root): Remove.
2382         (ada_value_of_root): Remove.
2383
2384 2013-10-01  Yao Qi  <yao@codesourcery.com>
2385
2386         * varobj.c (varobj_format_string): Remove "unknown".
2387         (languages): Remove the first element.
2388         * varobj.h (enum varobj_languages): Remove vlang_c.
2389
2390 2013-10-01  Yao Qi  <yao@codesourcery.com>
2391
2392         * varobj.c (struct language_specific) <language>: Remove.
2393         (languages): Update the initialization.
2394
2395 2013-10-01  Yao Qi  <yao@codesourcery.com>
2396
2397         * arm-wince-tdep.c: Remove inclusion of "solib.h" and
2398         "solib-target.h".  Include "windows-tdep.h".
2399         (arm_wince_init_abi): Call windows_init_abi.  Remove call to
2400         set_solib_ops and set_gdbarch_has_dos_based_file_system.
2401         * configure.tgt (arm*-wince-pe | arm*-*-mingw32ce*): Append
2402         windows-tdep.o to gdb_target_obs.
2403
2404 2013-10-01  Yao Qi  <yao@codesourcery.com>
2405
2406         * amd64-windows-tdep.c: Remove inclusion of "solib.h" and
2407         "solib-target.h".
2408         (amd64_windows_init_abi): Don't call set_solib_ops and
2409         set_gdbarch_iterate_over_objfiles_in_search_order.  Call
2410         windows_init_abi instead.
2411         * i386-cygwin-tdep.c: Remove inclusion of "solib.h" and
2412         "solib-target.h".
2413         (i386_cygwin_init_abi): Don't call set_solib_ops,
2414         set_gdbarch_has_dos_based_file_system and
2415         set_gdbarch_iterate_over_objfiles_in_search_order.  Call
2416         windows_init_abi instead.
2417         * windows-tdep.c: Include "solib.h" and "solib-target.h".
2418         (windows_init_abi): New function.
2419         (windows_iterate_over_objfiles_in_search_order): Make it
2420         static.
2421         * windows-tdep.h (windows_init_abi): Declare.
2422         (windows_iterate_over_objfiles_in_search_order): Remove
2423         declaration.
2424
2425 2013-10-01  Jerome Guitton  <guitton@adacore.com>
2426
2427         Checked in by Joel Brobecker  <brobecker@adacore.com>
2428         * system-gdbinit/elinos.py (get_elinos_environment): Return an
2429         incomplete dictionnary instead of None in case of missing
2430         environment variables.
2431         (elinos_init): in case of an incomplete environment, best
2432         effort to load system libraries instead of abort.
2433
2434 2013-10-01  Joel Brobecker  <brobecker@adacore.com>
2435
2436         * ada-lang.c (ada_has_this_exception_support): Ignore
2437         mst_solib_trampoline minimal symbols.
2438
2439 2013-09-30  Tristan Gingold  <gingold@adacore.com>
2440
2441         * i386-darwin-nat.c (darwin_complete_target): Install methods for
2442         hardware watchpoint.
2443         (i386_darwin_dr_set): Support 32 and 64 bit states.
2444         (i386_darwin_dr_get): Likewise.
2445         (i386_darwin_dr_set_control): Make static.
2446         (i386_darwin_dr_set_addr, i386_darwin_dr_get_addr)
2447         (i386_darwin_dr_get_status, i386_darwin_dr_get_control): Likewise.
2448
2449 2013-09-30  Luis Machado  <lgustavo@codesourcery.com>
2450
2451         * aarch64-linux-nat.c: Replace PIDGET with ptid_get_pid.
2452         Replace TIDGET with ptid_get_lwp.
2453         Replace GET_LWP with ptid_get_lwp.
2454         * aix-thread.c (BUILD_THREAD, BUILD_LWP): Remove.
2455         Replace BUILD_THREAD with ptid_build.
2456         Replace BUILD_LWP with ptid_build.
2457         Replace PIDGET with ptid_get_pid.
2458         Replace TIDGET with ptid_get_lwp.
2459         * alphabsd-nat.c: Replace PIDGET with ptid_get_pid.
2460         * amd64-linux-nat.c: Replace PIDGET with ptid_get_pid.
2461         Replace TIDGET with ptid_get_lwp.
2462         * amd64bsd-nat.c: Replace PIDGET with ptid_get_pid.
2463         * arm-linux-nat.c: Replace PIDGET with ptid_get_pid.
2464         Replace TIDGET with ptid_get_lwp.
2465         Replace GET_LWP with ptid_get_lwp.
2466         * armnbsd-nat.c: Replace PIDGET with ptid_get_pid.
2467         * auxv.c: Likewise.
2468         * breakpoint.c: Likewise.
2469         * common/ptid.c (ptid_is_pid): Condense check for
2470         null_ptid and minus_one_ptid.
2471         (ptid_lwp_p): New function.
2472         (ptid_tid_p): New function.
2473         * common/ptid.h: Update comments for accessors.
2474         (ptid_lwp_p): New prototype.
2475         (ptid_tid_p): New prototype.
2476         * defs.h (PIDGET, TIDGET, MERGEPID): Do not define.
2477         * gcore.c: Replace PIDGET with ptid_get_pid.
2478         * gdbthread.h: Likewise.
2479         * gnu-nat.c: Likewise.
2480         * hppa-linux-nat.c: Replace PIDGET with ptid_get_pid.
2481         Replace TIDGET with ptid_get_lwp.
2482         * hppabsd-nat.c: Replace PIDGET with ptid_get_pid.
2483         * hppanbsd-nat.c: Likewise.
2484         * i386-linux-nat.c: Replace PIDGET with ptid_get_pid.
2485         Replace TIDGET with ptid_get_lwp.
2486         * i386bsd-nat.c: Replace PIDGET with ptid_get_pid.
2487         * ia64-linux-nat.c: Replace PIDGET with ptid_get_pid.
2488         * infcmd.c: Likewise.
2489         * inferior.h: Likewise.
2490         * inflow.c: Likewise.
2491         * infrun.c: Likewise.
2492         * linux-fork.c: Likewise.
2493         * linux-nat.c: Replace PIDGET with ptid_get_pid.
2494         Replace GET_PID with ptid_get_pid.
2495         Replace is_lwp with ptid_lwp_p.
2496         Replace GET_LWP with ptid_get_lwp.
2497         Replace BUILD_LWP with ptid_build.
2498
2499 2013-09-28  Mike Frysinger  <vapier@gentoo.org>
2500
2501         * common/linux-btrace.c: Move sys/syscall.h out of the
2502         HAVE_LINUX_PERF_EVENT_H check and wrap it in HAVE_SYS_SYSCALL_H.
2503         Also check for SYS_perf_event_open before attempting to buid.
2504
2505 2013-09-27  Doug Evans  <dje@google.com>
2506
2507         * dwarf2read.c (dwarf2_section_info): Add comment.
2508         (dwp_file): Split loaded_cutus into loaded_cus, loaded_tus.
2509         All uses updated.
2510         (dwarf2_section_empty_p): Rename arg from "info" to "section".
2511         (dwarf2_read_section): Delete unused local "header".  Add section
2512         name to error message.
2513         (create_dwo_in_dwp): Tweak comment.
2514         (MAX_NR_DWO_SECTIONS): Combine count of .debug_macro + .debug_macinfo.
2515
2516         * dwarf2read.c (die_reader_specs): Tweak comment.
2517         (get_section_bfd_owner, get_section_bfd_section): New functions.
2518         (get_section_name, get_section_file_name): New functions.
2519         (get_section_id, get_section_flags): New functions.
2520         (*): Use new functions to access section fields.
2521
2522         * dwarf2read.c (struct dwo_file): Add/tweak comments.
2523         (lookup_dwo_unit_in_dwp): Renamed from lookup_dwo_in_dwp.  Remove
2524         arg "htab".  All callers updated.
2525         (create_debug_types_hash_table): Remove redundant copy of
2526         abbrev_section.
2527         (create_dwo_in_dwp): Tweak comments.
2528         (read_str_index): Tweak comment.  Record dwarf form name in static
2529         local.
2530
2531 2013-09-27  Pedro Alves  <palves@redhat.com>
2532
2533         * remote.h (REMOTE_SYSROOT_PREFIX): New define.
2534         (remote_filename_p): Add comment.
2535         * remote.c (remote_filename_p): Adjust to use
2536         REMOTE_SYSROOT_PREFIX.
2537         * solib.c (solib_find): When deciding whether we need to add a
2538         directory separator, check whether the sysroot is "remote:"
2539         instead of checking whether the patch has a drive spec.  Add
2540         comments.
2541
2542 2013-09-27  Pedro Alves  <palves@redhat.com>
2543
2544         * remote.c (struct stop_reply) <solibs_changed, replay_event>:
2545         Delete fields.
2546         (remote_parse_stop_reply): Adjust, setting event->ws.kind
2547         directly.
2548
2549 2013-09-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
2550
2551         Fix set debug frame output.
2552         * frame.c (fprint_frame_type): Add TAILCALL_FRAME entry.  Move
2553         SENTINEL_FRAME entry lower to match enum frame_type order.
2554
2555 2013-09-26  Pierre Muller  <muller@sourceware.org>
2556
2557         Replace constant values 8 to 15 by AMD64_R8_REGNUM to
2558         AMD64_R15_REGNUM when a register index is expected.
2559         * amd64-windows-tdep.c (amd64_windows_dummy_call_integer_regs):
2560         Substitute in array.
2561         * amd64-tdep.c (amd64_dwarf_regmap): Ditto.
2562         (amd64_push_arguments): Substitute in integer_regnum array.
2563
2564 2013-09-25  Doug Evans  <dje@google.com>
2565
2566         * objfiles.c (allocate_objfile): Move comment to better place.
2567
2568         New option "set debug symfile on".
2569         * NEWS: Mention "set debug symfile".
2570         * Makefile.in (SFILES): Add symfile-debug.c.
2571         (COMMON_OBS): Add symfile-debug.o.
2572         * elfread.c (elf_symfile_read): Use objfile_set_sym_fns to set the
2573         objfile's symbol functions.
2574         * objfiles.h (objfile_set_sym_fns): Declare.
2575         * symfile-debug.c: New file.
2576         * symfile.c (syms_from_objfile_1): Use objfile_set_sym_fns to set the
2577         objfile's symbol functions.
2578         (reread_symbols): Ditto.
2579
2580         * symfile.h (struct sym_fns): Delete member "sym_flavour".
2581         All uses updated.
2582         (add_symtab_fns): Update prototype.
2583         * symfile.c (sym_fns_ptr): Delete.  Replace with ...
2584         (registered_sym_fns): ... this.
2585         (symtab_fns): Update.
2586         (add_symtab_fns): New arg "flavour".  All callers updated.
2587         (find_sym_fns): Rewrite to use new sym_fns registry.
2588
2589         * symfile.h (struct sym_fns): Add "objfile" argument to
2590         sym_read_linetable.  All uses updated.
2591
2592         * symtab.c (domain_name, search_domain_name): New functions.
2593         * symtab.h (domain_name, search_domain_name): Declare.
2594
2595         * symfile.h (struct quick_symbol_functions): Reorg arg list of
2596         map_matching_symbols so objfile is first.  All uses updated.
2597         * dwarf2read.c (dw2_map_matching_symbols): Update signature.
2598         * psymtab.c (map_matching_symbols_psymtab): Update signature.
2599
2600 2013-09-25  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2601
2602         PR shlibs/8882
2603         * solib-svr4.c (svr4_read_so_list): Skip the vDSO when reading
2604         link map entries.
2605
2606 2013-09-24  Doug Evans  <dje@google.com>
2607
2608         * objfiles.c (free_objfile): Move comment.
2609
2610 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
2611
2612         * ada-exp.y (string_to_operator): Delete.
2613         (dummy_string_to_ada_operator): Delete.
2614
2615 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
2616
2617         Revert:
2618         * i386-tdep.h (enum amd64_reg_class): New, moved here from
2619         amd64-tdep.c.
2620         (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
2621         call_dummy_integer_regs, and classify.
2622         * amd64-tdep.h (amd64_classify): Add declaration.
2623         * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
2624         (amd64_reg_class): Delete, moved to i386-tdep.h.
2625         (amd64_classify): Make non-static.  Move declaration to amd64-tdep.h.
2626         Replace call to amd64_classify by call to tdep->classify.
2627         (amd64_push_arguments): Get the list of registers to use for
2628         passing integer parameters from the gdbarch tdep structure,
2629         rather than using a hardcoded one.  Replace calls to amd64_classify
2630         by calls to tdep->classify.
2631         (amd64_push_dummy_call): Get the register number used for
2632         the "hidden" argument from tdep->call_dummy_integer_regs.
2633         (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
2634         and tdep->call_dummy_integer_regs.  Set tdep->classify.
2635
2636 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
2637
2638         Revert:
2639         * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
2640         * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
2641         where tdep->memory_args_by_pointer is non-zero.
2642
2643 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
2644
2645         Revert:
2646         * i386-tdep.h (struct gdbarch_tdep): Add new field
2647         integer_param_regs_saved_in_caller_frame.
2648         * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
2649         stack if tdep->integer_param_regs_saved_in_caller_frame is set.
2650
2651 2013-09-24  Joel Brobecker  <brobecker@adacore.com>
2652
2653         * amd64-windows-tdep.c: #include "value.h"
2654         (amd64_windows_classify): Delete.
2655         (amd64_windows_passed_by_integer_register)
2656         (amd64_windows_passed_by_xmm_register)
2657         (amd64_windows_passed_by_pointer)
2658         (amd64_windows_adjust_args_passed_by_pointer)
2659         (amd64_windows_store_arg_in_reg, amd64_windows_push_arguments)
2660         (amd64_windows_push_dummy_call): New functions.
2661         (amd64_windows_init_abi): Remove setting of
2662         tdep->call_dummy_num_integer_regs, tdep->call_dummy_integer_regs,
2663         tdep->classify, tdep->memory_args_by_pointer and
2664         tdep->integer_param_regs_saved_in_caller_frame.
2665         Add call to set_gdbarch_push_dummy_call.
2666
2667 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
2668
2669         * dwarf2read.c (open_and_init_dwp_file): Try open_dwp_file also with
2670         objfile->original_name.
2671
2672 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
2673
2674         Pass down original filename for objfile.
2675         * coffread.c (coff_symfile_read): Update symbol_file_add_separate call.
2676         * elfread.c (elf_symfile_read): Likewise.
2677         * jit.c (jit_object_close_impl): Update allocate_objfile call, no
2678         longer set ORIGINAL_NAME.
2679         (jit_bfd_try_read_symtab): Update symbol_file_add_from_bfd call.
2680         * jv-lang.c (get_dynamics_objfile): Update allocate_objfile call.
2681         * machoread.c (macho_add_oso_symfile): Add parameter name.  Update
2682         symbol_file_add_from_bfd call.
2683         (macho_symfile_read_all_oso): Update two macho_add_oso_symfile calls.
2684         (macho_check_dsym): Add parameter filenamep.  Change function comment.
2685         Set *filenamep.
2686         (macho_symfile_read): New variable dsym_filename.  Update
2687         macho_check_dsym call.  Use it for symbol_file_add_separate.
2688         * objfiles.c (allocate_objfile): Add parameter name.  New comment for
2689         it.  Use it for objfile->original_name.
2690         (objfile_name): Return OBFD's filename, if available.
2691         * objfiles.h (allocate_objfile): Add new parameter name.
2692         * solib.c (solib_read_symbols): Update symbol_file_add_from_bfd call.
2693         * symfile-mem.c (symbol_file_add_from_memory): Update
2694         symbol_file_add_from_bfd call.
2695         * symfile.c (read_symbols): Update symbol_file_add_separate call, new
2696         comment for it.
2697         (symbol_file_add_with_addrs): New parameter name, add function comment
2698         for it.  Remove variable name.  Update allocate_objfile call.
2699         (symbol_file_add_separate): New parameter name, add function comment
2700         for it.  Update symbol_file_add_with_addrs call.
2701         (symbol_file_add_from_bfd): New parameter name.  Update
2702         symbol_file_add_with_addrs call.
2703         (symbol_file_add): Update symbol_file_add_from_bfd call.
2704         (reread_symbols): New variable original_name.  Save
2705         objfile->original_name by it.
2706         * symfile.h (symbol_file_add_from_bfd, symbol_file_add_separate): Add
2707         second parameter.
2708
2709 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
2710
2711         Code cleanup: Add objfile_name accessor function.
2712         * ada-lang.c (is_known_support_routine): Use objfile_name.
2713         * auto-load.c (source_gdb_script_for_objfile)
2714         (auto_load_objfile_script): Likewise.
2715         * coffread.c (coff_symtab_read, read_one_sym): Likewise.
2716         * dbxread.c (dbx_symfile_read): Likewise.
2717         * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
2718         * dwarf2loc.c (locexpr_describe_location_piece): Likewise.
2719         * dwarf2read.c (dwarf2_get_dwz_file, dwarf2_read_index)
2720         (dw2_symtab_iter_next, dw2_expand_symtabs_matching)
2721         (lookup_dwp_signatured_type, lookup_dwo_unit)
2722         (dwarf2_build_psymtabs_hard, scan_partial_symbols, process_queue)
2723         (fixup_go_packaging, process_imported_unit_die, dwarf2_physname)
2724         (read_import_statement, create_dwo_cu, open_and_init_dwp_file)
2725         (lookup_dwo_cutu, read_call_site_scope, dwarf2_ranges_read)
2726         (dwarf2_record_block_ranges, read_common_block, read_typedef)
2727         (read_subrange_type, load_partial_dies, read_partial_die)
2728         (read_addr_index_1, read_str_index, dwarf_decode_lines_1)
2729         (die_containing_type, build_error_marker_type, lookup_die_type)
2730         (follow_die_ref_or_sig, follow_die_ref, dwarf2_fetch_die_loc_sect_off)
2731         (dwarf2_fetch_constant_bytes, follow_die_sig, get_signatured_type)
2732         (get_DW_AT_signature_type, write_psymtabs_to_index)
2733         (save_gdb_index_command): Likewise.
2734         * elfread.c (find_separate_debug_file_by_buildid, elf_symfile_read):
2735         Likewise.
2736         * expprint.c (dump_subexp_body_standard): Likewise.
2737         * gdbtypes.c (type_name_no_tag_or_error): Likewise.
2738         * jit.c (jit_object_close_impl): Use the objfile field name renamed to
2739         original_name.
2740         * linux-thread-db.c (try_thread_db_load_from_pdir_1): New variable
2741         obj_name, use objfile_name for it, use the variable.
2742         (try_thread_db_load_from_pdir, has_libpthread, thread_db_new_objfile):
2743         Use objfile_name.
2744         * machoread.c (macho_symtab_read, macho_check_dsym)
2745         (macho_symfile_relocate): Likewise.
2746         * maint.c (maintenance_translate_address): Likewise.
2747         * minidebug.c (find_separate_debug_file_in_section): Likewise.
2748         * minsyms.c (install_minimal_symbols): Likewise.
2749         * objfiles.c (allocate_objfile): Use the objfile field name renamed to
2750         original_name.
2751         (filter_overlapping_sections): Use objfile_name.
2752         (objfile_name): New function.
2753         * objfiles.h (struct objfile): Rename field name to original_name.
2754         (objfile_name): New prototype.
2755         * printcmd.c (sym_info, address_info): Use objfile_name.
2756         * probe.c (parse_probes, collect_probes, compare_probes)
2757         (info_probes_for_ops): Likewise.
2758         * progspace.c (clone_program_space): Likewise.
2759         * psymtab.c (require_partial_symbols, dump_psymtab, allocate_psymtab)
2760         (maintenance_info_psymtabs): Likewise.
2761         * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
2762         (source_section_scripts): Likewise.
2763         * python/py-objfile.c (objfpy_get_filename): Likewise.
2764         * python/py-progspace.c (pspy_get_filename): Likewise.
2765         * solib-aix.c (solib_aix_get_toc_value): Likewise.
2766         * solib-som.c (match_main, som_solib_section_offsets): Likewise.
2767         * solib.c (solib_read_symbols): Likewise.
2768         * stabsread.c (scan_file_globals): Likewise.
2769         * stap-probe.c (handle_stap_probe): Likewise.
2770         * symfile.c (symbol_file_clear, separate_debug_file_exists)
2771         (find_separate_debug_file_by_debuglink): Likewise.
2772         (reread_symbols): Likewise.  Use the objfile field name renamed to
2773         original_name.
2774         (allocate_symtab): Use objfile_name.
2775         * symmisc.c (print_symbol_bcache_statistics, print_objfile_statistics)
2776         (dump_objfile, dump_msymbols, dump_symtab_1)
2777         (maintenance_print_msymbols, maintenance_print_objfiles)
2778         (maintenance_info_symtabs, maintenance_check_symtabs): Likewise.
2779         * target.c (target_translate_tls_address, target_info): Likewise.
2780         * xcoffread.c (xcoff_initial_scan): Make variable name const.  Use
2781         objfile_name.
2782
2783 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
2784
2785         Code cleanup.
2786         * probe.c (parse_probes): Rename variable objfile_name to
2787         objfile_namestr.
2788
2789 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
2790
2791         Remove solib-sunos.c.
2792         * Makefile.in (ALLDEPFILES): Remove solib-sunos.c.
2793         * config/m68k/obsd.mh (NATDEPFILES): Remove solib-sunos.o.
2794         * objfiles.c (rt_common_objfile): Remove.
2795         (free_objfile): Remove rt_common_objfile comparison.
2796         * objfiles.h (rt_common_objfile): Remove.
2797         * solib-sunos.c: Remove.
2798         * symfile.c (reread_symbols): Remove solib-sunos.c comment.
2799
2800 2013-09-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
2801
2802         Remove a.out NetBSD and OpenBSD hosts.
2803         * NEWS (Removed native configurations): New.
2804         * config/arm/nbsdaout.mh: Remove.
2805         * config/i386/nbsdaout.mh: Remove.
2806         * config/i386/obsdaout.mh: Remove.
2807         * config/m68k/nbsdaout.mh: Remove.
2808         * config/sparc/nbsdaout.mh: Remove.
2809         * config/vax/nbsdaout.mh: Remove.
2810         * configure.host (arm*-*-netbsd*, i[34567]86-*-netbsd*)
2811         (i[34567]86-*-openbsd[0-2].*, i[34567]86-*-openbsd3.[0-3])
2812         (m68*-*-netbsd*, sparc-*-netbsd*, vax-*-netbsd*): Add them to obsolete
2813         error.
2814         (arm*-*-netbsd*, i[34567]86-*-netbsd*, i[34567]86-*-openbsd[0-2].*)
2815         (i[34567]86-*-openbsd3.[0-3], m68*-*-netbsd*, sparc-*-netbsdaout*)
2816         (sparc-*-netbsd*, vax-*-netbsd*): Remove.
2817
2818 2013-09-23  Tom Tromey  <tromey@redhat.com>
2819
2820         * linespec.c (struct minsym_and_objfile): Remove.
2821         (minsym_and_objfile_d): Remove.
2822         (struct linespec, struct collect_info, linespec_parse_basic)
2823         (convert_linespec_to_sals, linespec_parser_delete, decode_objc)
2824         (compare_msymbols, find_method, find_function_symbols)
2825         (find_linespec_symbols, struct collect_minsyms, compare_msyms)
2826         (add_minsym, search_minsyms_for_name): Update.
2827
2828 2013-09-23  Andrew Burgess  <aburgess@broadcom.com>
2829
2830         * regcache.c: Add include of valprint.h.
2831         (dump_endian_bytes): Delete.
2832         (regcache_dump): Use print_hex_chars not dump_endian_bytes.
2833
2834 2013-09-23  Andrew Burgess  <aburgess@broadcom.com>
2835
2836         * sh64-tdep.c (sh64_do_fp_register): Use print_hex_chars.
2837
2838 2013-09-19  Pedro Alves  <palves@redhat.com>
2839
2840         * breakpoint.c (remove_threaded_breakpoints): Skip non-user
2841         breakpoints.
2842
2843 2013-09-19  Pedro Alves  <palves@redhat.com>
2844             Thomas Schwinge  <thomas@codesourcery.com>
2845             Yue Lu  <hacklu.newborn@gmail.com>
2846
2847         * gnu-nat.c (gnu_read_inferior, gnu_write_inferior): Make static.
2848         Take a gdb_byte pointer instead of a char pointer.
2849
2850         * gnu-nat.c (gnu_xfer_memory): Adjust interface as
2851         gnu_xfer_partial helper.
2852         (gnu_xfer_partial): New function.
2853         (gnu_target): Don't install a deprecated_xfer_memory hook.
2854         Install a to_xfer_partial hook.
2855
2856 2013-09-19  Jan Kratochvil  <jan.kratochvil@redhat.com>
2857
2858         Constification.
2859         * main.c (captured_main): Replace catch_command_errors by
2860         catch_command_errors_const.  Twice.
2861         * symfile.c (symbol_file_add_main_1): Make args parameter const.
2862         (symbol_file_add): Make name parameter const.
2863         (symbol_file_add_main, symbol_file_add_main_1): Make args parameter const.
2864         (symfile_bfd_open): Make name parameter const, rename it to cname.  Add
2865         variable name.  Change their usage accordingly.
2866         * symfile.h (symbol_file_add, symfile_bfd_open): Make first parameter
2867         const.
2868         (symbol_file_add_main): Make args parameter const.
2869
2870 2013-09-18  Raunaq Bathija  <raunaq12@in.ibm.com>
2871             Ulrich Weigand  <uweigand@de.ibm.com>
2872
2873         * xcoffread.c (struct coff_symbol): Use CORE_ADDR as type
2874         of c_value member.
2875         (read_xcoff_symtab): Use CORE_ADDR as type of fcn_start_addr.
2876
2877 2013-09-18  Pedro Alves  <palves@redhat.com>
2878             Yue Lu  <hacklu.newborn@gmail.com>
2879
2880         * gnu-nat.c (inf_validate_procs, gnu_wait, gnu_resume)
2881         (gnu_create_inferior)
2882         (gnu_attach, gnu_thread_alive, gnu_pid_to_str, cur_thread)
2883         (set_sig_thread_cmd): Use the lwpid field of ptids to
2884         store/extract thread ids instead of the tid field.
2885         * i386gnu-nat.c (gnu_fetch_registers): Adjust.
2886
2887 2013-09-18  Andrew Burgess  <aburgess@broadcom.com>
2888
2889         * infcmd.c (default_print_one_register_info): Add detection of
2890         optimized out values.
2891         (default_print_registers_info): Switch to using
2892         get_frame_register_value.
2893
2894 2013-09-18  Markus Metzger  <markus.t.metzger@intel.com>
2895
2896         * infrun.c (handle_inferior_event): Check if we know the
2897         function start address before setting a resume breakpoint.
2898
2899 2013-09-18  Pedro Alves  <palves@redhat.com>
2900
2901         * gnu-nat.c (set_sig_thread_cmd): Compare the thread's ptid to
2902         minus_one_ptid instead of looking at the ptid's tid field and
2903         comparing that to -1.
2904
2905 2013-09-18  Andrew Burgess  <aburgess@broadcom.com>
2906
2907         * main.h (get_gdb_program_name): Remove extra whitespace.
2908
2909 2013-09-18  Andrew Burgess  <aburgess@broadcom.com>
2910
2911         * main.h (get_gdb_program_name): Add declaration.
2912         * main.c (get_gdb_program_name): Add definition.
2913
2914 2013-09-17  Doug Evans  <dje@google.com>
2915
2916         * dwarf2read.c: Move definitions of complaint functions to after
2917         forward declarations of local functions.
2918
2919 2013-09-17  Muhammad Waqas <mwaqas@codesourcery.com>
2920             Pedro Alves  <palves@redhat.com>
2921
2922         PR gdb/11568
2923         * breakpoint.c (remove_threaded_breakpoints): New function.
2924         (_initialize_breakpoint): Attach remove_threaded_breakpoints
2925         as thread_exit observer.
2926
2927 2013-09-17  Pedro Alves  <palves@redhat.com>
2928
2929         PR gdb/15911
2930         * ada-tasks.c (task_command_1): Adjust call to print_stack_frame.
2931         * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
2932         * corelow.c (core_open):
2933         * frame.h (print_stack_frame, print_frame_info): New
2934         'set_current_sal' parameter.
2935         * infcmd.c (finish_command, kill_command): Adjust call to
2936         print_stack_frame.
2937         * inferior.c (inferior_command): Likewise.
2938         * infrun.c (normal_stop): Likewise.
2939         * linux-fork.c (linux_fork_context): Likewise.
2940         * record-full.c (record_full_goto_entry, record_full_restore):
2941         Likewise.
2942         * remote-mips.c (common_open): Likewise.
2943         * stack.c (print_stack_frame): New 'set_current_sal' parameter.
2944         Use it.
2945         (print_frame_info): New 'set_current_sal' parameter.  Set the last
2946         displayed sal depending on the new paremeter instead of looking at
2947         print_what.
2948         (backtrace_command_1, select_and_print_frame, frame_command)
2949         (current_frame_command, up_command, down_command): Adjust call to
2950         print_stack_frame.
2951         * thread.c (print_thread_info, restore_selected_frame)
2952         (do_captured_thread_select): Adjust call to print_stack_frame.
2953         * tracepoint.c (tfind_1): Likewise.
2954         * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
2955         (mi_cmd_stack_info_frame): Likewise.
2956         * mi/mi-interp.c (mi_on_normal_stop): Likewise.
2957         * mi/mi-main.c (mi_cmd_exec_return, mi_cmd_trace_find): Likewise.
2958
2959 2013-09-16  Sergio Durigan Junior  <sergiodj@redhat.com>
2960
2961         * value.c (isvoid_internal_fn): Replace "parameter" with
2962         "argument".
2963
2964 2013-09-16  Stan Shebs  <stan@codesourcery.com>
2965
2966         * README: Update references to writing code for GDB.
2967         * configure.ac (build_warnings): Remove obsolete comment.
2968         * configure: Regenerate.
2969         * gdbarch.sh: Remove references to gdbint.texinfo.
2970         * gdbarch.h: Regenerate.
2971         * gdbtypes.c (objfile_type): Remove comments referencing internals
2972         manual and D10V.
2973
2974 2013-09-16  Sergio Durigan Junior  <sergiodj@redhat.com>
2975
2976         * NEWS: Mention new convenience function $_isvoid.
2977         * value.c (isvoid_internal_fn): New function.
2978         (_initialize_values): Add new convenience function $_isvoid.
2979
2980 2013-09-16  Pierre Muller  <muller@sourceware.org>
2981
2982         * arm-linux-tdep.c: Add "elf/common.h" header.
2983         Remove AT_HWCAP macro definintion as it is provided in
2984         added include file.
2985         * s390-tdep.c: Remove system header <elf.h>
2986         Add "elf/common.h" header for AT_HWCAP definition.
2987         (s390_core_read_description): Use correct CORE_ADDR
2988         for hwcap local variable used as third parameter
2989         of function target_auxv_search.
2990
2991 2013-09-14  Pierre Muller  <muller@sourceware.org>
2992             Tom Tromey  <tromey@redhat.com>
2993             Pedro Alves  <palves@redhat.com>
2994
2995         * common/filestuff.c (gdb_fopen_cloexec): Do not try to use "e"
2996         mode if operating system doesn't know O_CLOEXEC.
2997
2998 2013-09-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
2999
3000         Code cleanup.
3001         * symfile.c (reread_symbols): Move variable obfd_filename to a more
3002         inner block.
3003
3004 2013-09-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3005
3006         * NEWS: Mention TDB support.
3007         * features/s390-tdb.xml: New file.
3008         * features/s390-te-linux64.xml: New file.
3009         * features/s390x-te-linux64.xml: New file.
3010         * features/Makefile (WHICH): Add new tdescs above.
3011         (s390-te-linux64-expedite): Set.
3012         (s390x-te-linux64-expedite): Set.
3013         * features/s390-te-linux64.c: New file (generated).
3014         * features/s390x-te-linux64.c: New file (generated).
3015         * regformats/s390-te-linux64.dat: New file (generated).
3016         * regformats/s390x-te-linux64.dat: New file (generated).
3017         * s390-tdep.h (HWCAP_S390_HIGH_GPRS): Define.
3018         (HWCAP_S390_TE): Likewise.
3019         (S390_TDB_DWORD0_REGNUM): Likewise.
3020         (S390_TDB_DWORD0_REGNUM): Likewise.
3021         (S390_TDB_ABORT_CODE_REGNUM): Likewise.
3022         (S390_TDB_CONFLICT_TOKEN_REGNUM): Likewise.
3023         (S390_TDB_ATIA_REGNUM): Likewise.
3024         (S390_TDB_R0_REGNUM): Likewise.
3025         (S390_TDB_R1_REGNUM): Likewise.
3026         (S390_TDB_R2_REGNUM): Likewise.
3027         (S390_TDB_R3_REGNUM): Likewise.
3028         (S390_TDB_R4_REGNUM): Likewise.
3029         (S390_TDB_R5_REGNUM): Likewise.
3030         (S390_TDB_R6_REGNUM): Likewise.
3031         (S390_TDB_R7_REGNUM): Likewise.
3032         (S390_TDB_R8_REGNUM): Likewise.
3033         (S390_TDB_R9_REGNUM): Likewise.
3034         (S390_TDB_R10_REGNUM): Likewise.
3035         (S390_TDB_R11_REGNUM): Likewise.
3036         (S390_TDB_R12_REGNUM): Likewise.
3037         (S390_TDB_R13_REGNUM): Likewise.
3038         (S390_TDB_R14_REGNUM): Likewise.
3039         (S390_TDB_R15_REGNUM): Likewise.
3040         (S390_NUM_REGS): Increase.
3041         (S390_IS_TDBREGSET_REGNUM): New macro.
3042         (s390_regmap_tdb): Declare.
3043         (s390_sizeof_tdbregset): Define.
3044         (tdesc_s390_te_linux64): Declare.
3045         (tdesc_s390x_te_linux64): Likewise.
3046         * s390-tdep.c: Add includes for "auxv.h", <elf.h>,
3047         "features/s390-te-linux64.c", and "features/s390x-te-linux64.c".
3048         (s390_regmap_tdb): New regmap.
3049         (s390_supply_tdb_regset): New function.
3050         (s390_tdb_regset): New regset.
3051         (s390_linux64v2_regset_sections): Add TDB regset to list.
3052         (s390x_linux64v2_regset_sections): Likewise.
3053         (s390_regset_from_core_section): Recognize TDB core note section.
3054         (s390_core_read_description): If HWCAP indicates TE support,
3055         select tdesc_s390_te_linux64 or tdesc_s390_s390x_te_linux64.
3056         (s390_gdbarch_init): Handle TDB regset.
3057         (_initialize_s390_tdep): Initialize new tdescs.
3058         * s390-nat.c (HWCAP_S390_HIGH_GPRS): Remove define.
3059         (have_regset_tdb): New variable.
3060         (s390_native_supply): Support register invalidation.
3061         (fetch_regset): Invalidate registers if ptrace yields ENODATA.
3062         (check_regset): Treat ENODATA as "regset exists".
3063         (s390_linux_fetch_inferior_registers): Add TDB.
3064         (s390_read_description): Check for TDB existence and select
3065         appropriate tdesc.
3066         * gdbserver/Makefile.in (clean): Add removal of new makefile
3067         targets.
3068         (s390-te-linux64.c): New makefile target.
3069         (s390x-te-linux64.c): Likewise.
3070         * gdbserver/configure.srv (srv_regobj): Append new objects
3071         s390-te-linux64.o and s390x-te-linux64.o.
3072         (srv_xmlfiles): Append new files s390-te-linux64.xml,
3073         s390x-te-linux64.xml, and s390-tdb.xml.
3074         * gdbserver/linux-s390-low.c (init_registers_s390_te_linux64): New
3075         declaration.
3076         (tdesc_s390_te_linux64): Likewise.
3077         (init_registers_s390x_te_linux64): Likewise.
3078         (tdesc_s390x_te_linux64): Likewise.
3079         (s390_check_regset): Treat ENODATA as "regset exists".
3080         (s390_arch_setup): Add TDB regset support.
3081         (initialize_low_arch): Initialize registers for new tdescs.
3082
3083 2013-09-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3084
3085         * s390-tdep.h (S390_IS_GREGSET_REGNUM): New macro.
3086         (S390_IS_FPREGSET_REGNUM): New macro.
3087         * s390-tdep.c (s390_dwarf_regmap): Make const.
3088         (regnum_is_gpr_full): New function for replacing repeated code.
3089         (s390_pseudo_register_name): Use it.
3090         (s390_pseudo_register_type): Likewise.
3091         (s390_pseudo_register_read): Likewise.
3092         (s390_pseudo_register_write): Likewise.
3093         (s390_unwind_pseudo_register): Likewise.
3094         (s390_regmap_gregset): New format for regmap.
3095         (s390x_regmap_gregset): Likewise.
3096         (s390_regmap_fpregset): Likewise.
3097         (s390_regmap_upper): Likewise.
3098         (s390_regmap_last_break): Likewise.
3099         (s390_regmap_system_call): Likewise.
3100         (s390_supply_regset): Adjust to new regmap format.
3101         (s390_collect_regset): Likewise.
3102         * s390-nat.c (s390_native_supply): Adjust to new regmap format.
3103         (s390_native_collect): Likewise.
3104         (supply_gregset): Likewise.
3105         (fill_gregset): Likewise.
3106         (supply_fpregset): Likewise.
3107         (fill_fpregset): Likewise.
3108         (fetch_regset): Likewise.
3109         (store_regset): Likewise.
3110         (s390_linux_fetch_inferior_registers): Likewise.
3111         (s390_linux_fetch_inferior_registers): Likewise.
3112
3113 2013-09-12  Andrew Pinski  <apinski@cavium.com>
3114
3115         * aarch64-linux-nat.c (aarch64_linux_set_debug_regs): Zero out regs.
3116
3117 2013-09-10  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3118
3119         * config/s390/s390.mh (NATDEPFILES): Add linux-waitpid.o.
3120
3121 2013-09-09  Andrew Burgess  <aburgess@broadcom.com>
3122
3123         * top.c (quit_confirm): Remove use of deprecated_init_ui_hook.
3124
3125 2013-09-06  Pedro Alves <palves@redhat.com>
3126
3127         * remote-sim.c (dump_mem, gdbsim_fetch_register)
3128         (gdbsim_store_register, gdbsim_kill, gdbsim_load)
3129         (gdbsim_create_inferior, gdbsim_open, gdbsim_close)
3130         (gdbsim_detach, gdbsim_resume_inferior, gdbsim_wait)
3131         (gdbsim_files_info, gdbsim_mourn_inferior): Send debug output to
3132         gdb_stdlog.
3133
3134 2013-09-06  Pedro Alves  <palves@redhat.com>
3135
3136         * remote-sim.c (dump_mem): Constify buf parameter.
3137         gdbsim_xfer_inferior_memory): Rename to ...
3138         (gdbsim_xfer_memory): ... this.  Adjust interface as
3139         target_xfer_partial helper.
3140         (gdbsim_xfer_partial): New function.
3141         (init_gdbsim_ops): Don't install a deprecated_xfer_memory hook.
3142         Install a to_xfer_partial hook.  Send output to gdb_stdlog.
3143
3144 2013-09-06  Pedro Alves  <palves@redhat.com>
3145
3146         * remote-sim.c (gdbsim_xfer_inferior_memory): Use
3147         host_address_to_string, and send debug output to gdb_stdlog.
3148
3149 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
3150
3151         * Makefile.in (ALL_TARGET_OBS): Add cris-linux-tdep.o.
3152         * configure.tgt: Add cris-linux-tdep.o and linux-tdep.o to
3153         gdb_target_obs for cris target.
3154         * cris-tdep.c (struct gdbarch_tdep): Move to cris-tdep.h.
3155         (cris_gdbarch_init): Move calls to
3156         set_gdbarch_fetch_tls_load_module_address and
3157         set_solib_svr4_fetch_link_map_offsets to cris-linux-tdep.c.
3158         Add call to gdbarch_init_osabi.
3159         * cris-linux-tdep.c: New file.
3160         * cris-tdep.h: New file.
3161
3162 2013-09-06  Andrew Burgess  <aburgess@broadcom.com>
3163
3164         * tui/tui-io.c (tui_initialize_io): Remove legacy comment referring
3165         to deprecated_init_ui_hook.
3166
3167 2013-09-06  Andrew Burgess  <aburgess@broadcom.com>
3168
3169         * cli/cli-interp.c (_initialize_cli_interp): Add a
3170         command_loop_proc to interp_procs.
3171         * event-top.c (cli_command_loop): Change signature to match
3172         interp_command_loop_ftype.
3173         * event-top.h (cli_command_loop): Same.
3174         * interps.c (interp_new): Require every interpreter to have a
3175         command_loop_proc.
3176         (current_interp_command_loop): Just call the command_loop_proc on
3177         the current interpreter.
3178         * tui/tui-interp.c (_initialize_tui_interp): Add a
3179         command_loop_proc to interp_procs.
3180
3181 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
3182
3183         * cris-tdep.c (cris_gdbarch_init): Add call to
3184         get_gdbarch_fetch_tls_load_module_address.
3185
3186 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
3187
3188         * cris-tdep.c (cris_elf_greg_t): Rename from elf_greg_t.
3189         (cris_elf_gregset_t): Rename from elf_gregset_t.
3190         (crisv32_elf_gregset_t): Adjust.
3191         (cris_supply_gregset, fetch_core_registers): Adjust.
3192
3193 2013-09-06  Ricard Wanderlof  <ricardw@axis.com>
3194
3195         * cris-tdep.c (elf_greg_t): Change typedef to unsigned char[4]
3196
3197 2013-09-05  Andrew Burgess  <aburgess@broadcom.com>
3198
3199         * defs.h (deprecated_command_loop_hook): Remove, including
3200         references in comments.
3201         * interps.c (current_interp_command_loop): No longer use
3202         deprecated_command_loop_hook.
3203         (clear_interpreter_hooks): Remove deprecated_command_loop_hook
3204         setup.
3205         * top.c (deprecated_command_loop_hook): Remove.
3206
3207 2013-09-05  Pedro Alves  <palves@redhat.com>
3208
3209         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): 'dwarf_regnum'
3210         local is now int instead of ULONGEST.  Print it with %d
3211         instead of paddress.
3212
3213 2013-09-05  Tristan Gingold  <gingold@adacore.com>
3214
3215         * MAINTAINERS: Remove avr maintainership.
3216
3217 2013-09-05  Pedro Alves  <palves@redhat.com>
3218
3219         * findvar.c (value_of_register): Rework in terms of
3220         value_of_register_lazy.
3221
3222 2013-09-05  Muhammad Bilal  <mbilal@codesourcery.com>
3223
3224         * symfile.c (add_symbol_file_command): Remove trailing
3225          whitespaces and blank line after comment.
3226
3227 2013-09-05  Pedro Alves  <palves@redhat.com>
3228
3229         * tui/tui-regs.c (tui_register_format): Don't look at the
3230         register's name here.  Return string representing register
3231         value instead of storing it in the data element.
3232         (tui_get_register): Compare register string representations
3233         instead of register value states and contents.
3234
3235 2013-09-05  Pedro Alves  <palves@redhat.com>
3236
3237         PR tui/15933
3238         * tui/tui-regs.c (tui_show_registers): Show registers of the
3239         selected frame, not the current frame.
3240
3241 2013-09-05  Ricard Wanderlof  <ricardw@axis.com>
3242
3243         * MAINTAINERS (Write After Approval): Add myself to the list.
3244
3245 2013-09-04  Doug Evans  <dje@google.com>
3246
3247         * dwarf2read.c (queue_and_load_all_dwo_tus): New function.
3248         (queue_and_load_dwo_tu): New function.
3249         (lookup_dwo_signatured_type): Set per_cu.tu_read.
3250         (maybe_queue_comp_unit): Rename this_cu argument to dependent_cu.
3251         Make dependent_cu optional.
3252         (dw2_do_instantiate_symtab): If we just loaded a CU from a DWO,
3253         and an older .gdb_index is in use, queue and load all its TUs too.
3254
3255 2013-09-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
3256
3257         Code cleanup: Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH.
3258         * cli/cli-cmds.c (find_and_open_script): Add OPF_RETURN_REALPATH to
3259         variable search_flags.
3260         * defs.h (OPF_DISABLE_REALPATH): Rename to ...
3261         (OPF_RETURN_REALPATH): ... here.
3262         * dwarf2read.c (try_open_dwop_file): Set OPF_RETURN_REALPATH for flags.
3263         * exec.c (exec_file_attach): Remove OPF_DISABLE_REALPATH from openp
3264         call.  Twice.
3265         * nto-tdep.c (nto_find_and_open_solib): Add OPF_RETURN_REALPATH for
3266         openp call.
3267         * solib.c (solib_find): Likewise.  Four times.
3268         * source.c (openp): Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH
3269         in the function comment and for the realpath_fptr variable.
3270         (source_full_path_of): Add OPF_RETURN_REALPATH for openp call.
3271         (find_and_open_source): Likewise.  Twice.
3272         * symfile.c (symfile_bfd_open): Likewise, also twice.
3273
3274 2013-09-04  Doug Evans  <dje@google.com>
3275
3276         * progspace.c (save_current_space_and_thread): Remove unnecessary
3277         call to save_current_inferior.
3278
3279 2013-09-04  Andrew Burgess  <aburgess@broadcom.com>
3280
3281         * sh64-tdep.c (sh64_do_register): Return after printing message
3282         about unavailable register contents.
3283
3284 2013-09-04  Muhammad Bilal  <mbilal@codesourcery.com>
3285             Pedro Alves  <palves@redhat.com>
3286
3287         * symfile.c (add_symbol_file_command): Error out on unknown
3288         option.  Handle EXPECTING_SEC_ADDR/EXPECTING_SEC_NAME before '-'
3289         options and collapse into single conditional branch.
3290
3291 2013-09-03  Luis Machado  <lgustavo@codesourcery.com>
3292
3293         * inf-child.c (inf_child_follow_fork): New parameter
3294         detach_fork.
3295         * inf-ptrace.c (inf_ptrace_follow_fork): Likewise.
3296         * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
3297         * inferior.h (detach_fork): Remove.
3298         * infrun.c (detach_fork): Adjust comment and make it
3299         static.
3300         (follow_fork): Pass detach_fork parameter to
3301         target_follow_fork.
3302         * linux-nat.c (linux_child_follow_fork): New parameter
3303         detach_fork.
3304         * target.c (target_follow_fork): New parameter detach_fork.
3305         Pass detach_fork as parameter and print its value.
3306         * target.h (struct target_ops) <to_follow_fork>: New int
3307         parameter.
3308         (target_follow_fork): New parameter detach_fork.
3309
3310 2013-09-03  Joel Brobecker  <brobecker@adacore.com>
3311
3312         * solib-ia64-hpux.c (ia64_hpux_relocate_section_addresses):
3313         Replace sec->bfd by sec->the_bfd_section->owner.
3314
3315 2013-09-03  Yao Qi  <yao@codesourcery.com>
3316
3317         * linux-tdep.c (linux_is_uclinux): New function.  Code moved
3318         from linux_has_shared_address_space.
3319         (linux_has_shared_address_space): Call linux_is_uclinux.
3320         * linux-tdep.h (linux_is_uclinux): Declare.
3321         * m68klinux-tdep.c (m68k_linux_get_sigtramp_info): Call
3322         linux_is_uclinux.
3323
3324 2013-09-03  Yao Qi  <yao@codesourcery.com>
3325
3326         * config/djgpp/fnchange.lst: Remove entry of
3327         i386-interix-nat.c and i386-interix-tdep.c.
3328         * configure.ac: Remove '*-*-interix*'.
3329         * configure: Re-generated.
3330         * defs.h (enum gdb_osabi): Remove GDB_OSABI_INTERIX.
3331         * i386-cygwin-tdep.c (i386_cygwin_osabi_sniffer): Remove
3332         obsolete comments.
3333         * osabi.c (gdb_osabi_names): Remove "Interix".
3334
3335 2013-09-03  Yao Qi  <yao@codesourcery.com>
3336
3337         * arch-utils.c: Fix typo in the comment to gdbarch_update_p.
3338
3339 2013-09-02  Markus Metzger  <markus.t.metzger@intel.com>
3340
3341         * record.h (record_print_flag) <record_print_src_line,
3342         record_print_insn_range>: Rename into ...
3343         (record_print_flag) <record_print_src_line,
3344         record_print_insn_range>: ... this.  Update all users.
3345
3346 2013-09-02  Pierre Muller  <muller@sourceware.org>
3347
3348         * windows-nat.c (windows_xfer_memory): Handle ERROR_PARTIAL_COPY
3349         error code.
3350
3351 2013-09-02  Pierre Muller  <muller@sourceware.org>
3352
3353         * windows-nat.c (windows_xfer_memory): Fix compilation failure
3354         by use of plongest function.
3355
3356 2013-09-02  Tristan Gingold  <gingold@adacore.com>
3357
3358         * NEWS: Add entry mentioning support for native Windows x64
3359         SEH data.
3360
3361         * amd64-windows-tdep.c: #include "objfiles.h", "frame-unwind.h",
3362         "coff/internal.h", "coff/i386.h", "coff/pe.h" and "libcoff.h".
3363         (struct amd64_windows_frame_cache): New struct.
3364         (amd64_windows_w2gdb_regnum): New global.
3365         (pc_in_range, amd64_windows_frame_decode_epilogue)
3366         (amd64_windows_frame_decode_insns, amd64_windows_find_unwind_info)
3367         (amd64_windows_frame_cache, amd64_windows_frame_prev_register)
3368         (amd64_windows_frame_this_id): New functions.
3369         (amd64_windows_frame_unwind): New static global.
3370         (amd64_windows_skip_prologue): New function.
3371         (amd64_windows_init_abi): Call frame_unwind_prepend_unwinder
3372         with amd64_windows_frame_unwind. Call set_gdbarch_skip_prologue
3373         with amd64_windows_skip_prologue.
3374
3375 2013-08-30  Joel Brobecker  <brobecker@adacore.com>
3376
3377         GDB 7.6.1 released.
3378
3379 2013-08-30  Pedro Alves  <palves@redhat.com>
3380
3381         * mi/mi-main.c (mi_cmd_trace_find): Use LOC_AND_ADDRESS instead of
3382         SRC_AND_LOC.
3383
3384 2013-08-30  Pedro Alves  <palves@redhat.com>
3385
3386         * thread.c (restore_selected_frame): Use SRC_AND_LOC, and change
3387         warning text.
3388
3389 2013-08-30  Pedro Alves  <palves@redhat.com>
3390
3391         * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
3392         Adjust arguments to print_stack_frame.
3393
3394 2013-08-30  Pedro Alves  <palves@redhat.com>
3395
3396         * ada-tasks.c (task_command_1): Write SRC_AND_LOC instead '1'.
3397
3398 2013-08-30  Pedro Alves  <palves@redhat.com>
3399
3400         * frame.h (show_and_print_stack_frame): Delete declaration.
3401
3402 2013-08-30  Phil Muldoon  <pmuldoon@redhat.com>
3403
3404         PR python/15461
3405         * python/py-arch.c (ARCHPY_REQUIRE_VALID): New macro.
3406         (archpy_name): Check for valid architecture.
3407         (archpy_disassemble): Ditto.
3408
3409 2013-08-29  Joel Brobecker  <brobecker@adacore.com>
3410
3411         * rs6000-nat.c (rs6000_ptrace32): Cast "addr" to "uintptr_t"
3412         instead of "long long" in call to ptrace64.
3413
3414 2013-08-29  Andrew Burgess  <aburgess@broadcom.com>
3415
3416         * mi/mi-interp.c (mi_command_loop): Change signature to match
3417         interp_command_loop_ftype.
3418         (mi1_command_loop): Remove.
3419         (mi2_command_loop): Remove.
3420         (mi3_command_loop): Remove.
3421         (mi_interpreter_resume): Remove setting of
3422         deprecated_command_loop_hook.
3423         (_initialize_mi_interp): Set mi_command_loop as the command loop
3424         callback.
3425
3426 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
3427
3428         * valops.c (do_search_struct_field): Pass v2 instead of base_type to
3429         value_type.
3430
3431 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
3432
3433         * value.c (allocate_value_contents): Make static.
3434         * value.h (allocate_value_contents): Remove prototype.
3435
3436 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
3437
3438         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use value_at_lazy instead
3439         of assembling value via allocate_value_lazy and attribute setter.
3440         * findvar.c (default_read_var_value): Use value_at_lazy instead of
3441         assembling value via allocate_value_lazy and attribute setter.
3442         * valops.c (do_search_struct_field): Use value_at_lazy instead of
3443         assembling value via allocate_value_lazy and attribute setter.
3444
3445 2013-08-29  Sanimir Agovic  <sanimir.agovic@intel.com>
3446
3447         * value.c (value_from_contents_and_address): Replace allocate_value and
3448         memcpy with value_from_contents.
3449
3450 2013-08-29  Phil Muldoon  <pmuldoon@redhat.com>
3451
3452         * python/py-framefilter.c (py_print_frame): Remove usage of
3453         PyString_AsString.  Use python_string_to_host_string instead.
3454         Refactor function to work with a string as a new allocation
3455         instead of a pointer.
3456         (py_print_frame): Ditto.
3457         * python/lib/gdb/frames.py (return_list): Cain iterators together
3458         instead of adding them as a list.
3459         (_sort_list): Call return_list, and remove duplicate code.
3460         (execute_frame_filters): Convert iterator to a list with list().
3461         * python/lib/gdb/command/frame_filters.py
3462         (SetFrameFilterPriority._set_filter_priority): Convert priority
3463         attribute to an integer.
3464         * python/lib/gdb/FrameIterator.py (FrameIterator.next): Define
3465         wrapper function __next__.
3466         * python/lib/gdb/FrameDecorator.py: If basestring not defined,
3467         define as "str".
3468
3469 2013-08-29  Phil Muldoon  <pmuldoon@redhat.com>
3470
3471         PR python/15752
3472         * python/py-framefilter.c (apply_frame_filter): Check
3473         gdb_python_initialized.  Exit if the Python frame-filter code
3474         cannot be initialized.
3475
3476 2013-08-29  Phil Muldoon  <pmuldoon@redhat.com>
3477
3478         PR cli/15842
3479         * top.c (print_gdb_version): Remove erroneous newline after help
3480         text.
3481
3482 2013-08-29  Yao Qi  <yao@codesourcery.com>
3483
3484         * varobj.c (install_dynamic_child): Remove trailing space.
3485         Add one blank line after variable declaration.
3486
3487 2013-08-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
3488
3489         PR gdb/15415
3490         * corefile.c (get_exec_file): Use exec_filename.
3491         * defs.h (OPF_DISABLE_REALPATH): New definition.  Add new comment.
3492         * exec.c (exec_close): Free EXEC_FILENAME.
3493         (exec_file_attach): New variable canonical_pathname.  Use
3494         OPF_DISABLE_REALPATH.  Call gdb_realpath explicitly.  Set
3495         EXEC_FILENAME.
3496         * exec.h (exec_filename): New.
3497         * inferior.c (print_inferior, inferior_command): Use
3498         PSPACE_EXEC_FILENAME.
3499         * mi/mi-main.c (print_one_inferior): Likewise.
3500         * progspace.c (clone_program_space, print_program_space): Likewise.
3501         * progspace.h (struct program_space): New field pspace_exec_filename.
3502         * source.c (openp): Describe OPF_DISABLE_REALPATH.  New variable
3503         realpath_fptr, initialize it from OPF_DISABLE_REALPATH, use it.
3504
3505 2013-08-28  Will Newton  <will.newton@linaro.org>
3506
3507         * common/linux-ptrace.c: Include stdint.h unconditionally.
3508
3509 2013-08-28  Jan Kratochvil  <jan.kratochvil@redhat.com>
3510
3511         Code cleanup.
3512         * nto-tdep.c (nto_find_and_open_solib): Use OPF_TRY_CWD_FIRST.
3513
3514 2013-08-28  Yao Qi  <yao@codesourcery.com>
3515             Pedro Alves  <palves@redhat.com>
3516
3517         * event-top.c (gdb_setup_readline): Call stderr_fileopen
3518         instead of stdio_fileopen.
3519         * main.c (captured_main) [__MINGW32__]: Set stderr unbuffered.
3520         .Call stderr_fileopen instead of stdio_fileopen.
3521         * ui-file.c [__MINGW32__] (stderr_file_write): New function.
3522         [__MINGW32__] (stderr_file_fputs): New function.
3523         (stderr_fileopen): New function.
3524         * ui-file.h (stderr_fileopen): Declare.
3525
3526 2013-08-27  Doug Evans  <dje@google.com>
3527
3528         * dwarf2read.c (struct dwarf2_cu): Tweak comment.
3529         (struct dwarf2_per_cu_data): Ditto.
3530         (maybe_queue_comp_unit): Delete forward decl.  Add comment.
3531         (process_imported_unit_die): Ditto.
3532         (follow_die_sig_1): Simplify assert.
3533
3534 2013-08-27  Pedro Alves  <palves@redhat.com>
3535
3536         * windows-nat.c (windows_xfer_memory): Adjust prototype to follow
3537         xfer_partial's interface.  Return TARGET_XFER_E_IO on error.
3538         (windows_xfer_partial): Defer TARGET_OBJECT_MEMORY handling to
3539         windows_xfer_memory directly.
3540         (init_windows_ops): Don't install a deprecated_xfer_memory method.
3541
3542 2013-08-27  Pedro Alves  <palves@redhat.com>
3543
3544         * darwin-nat.c (darwin_xfer_memory): Delete.
3545         (_initialize_darwin_inferior): Don't install a
3546         deprecated_xfer_memory method.
3547
3548 2013-08-27  Pedro Alves  <pedro@codesourcery.com>
3549             Yao Qi  <yao@codesourcery.com>
3550
3551         * mi/mi-cmd-stack.c (list_args_or_locals): Adjust prototype.
3552         (parse_no_frames_option): Remove.
3553         (mi_cmd_stack_list_locals): Handle --skip-unavailable.
3554         (mi_cmd_stack_list_args): Adjust.
3555         (mi_cmd_stack_list_variables): Handle --skip-unavailable.
3556         (list_arg_or_local): Add new parameter 'skip_unavailable'.  Return
3557         early if SKIP_UNAVAILABLE is true and ARG->val is unavailable.
3558         Caller update.
3559         (list_args_or_locals): New parameter 'skip_unavailable'.
3560         Handle it.
3561         * valprint.c (scalar_type_p): Rename to ...
3562         (val_print_scalar_type_p): ... this.  Make extern.
3563         (val_print, value_check_printable): Adjust.
3564         * valprint.h (val_print_scalar_type_p): Declare.
3565         * value.c (value_entirely_unavailable): New function.
3566         * value.h (value_entirely_unavailable): Declare.
3567
3568         * NEWS: Mention the new option "--skip-unavailable" to MI
3569         commands '-stack-list-locals', '-stack-list-arguments' and
3570         '-stack-list-variables'.
3571
3572 2013-08-27  Yao Qi  <yao@codesourcery.com>
3573
3574         * mi/mi-cmd-stack.c (parse_no_frames_option): Remove.
3575         (mi_cmd_stack_list_args): Use mi_getopt_silent to handle
3576         options.
3577         * mi/mi-getopt.c (mi_getopt): Remove.
3578         (mi_getopt_1): Renamed from mi_getopt.  Add one parameter
3579         'error_on_unknown'.
3580         (mi_getopt): Call mi_getopt_1.
3581         (mi_getopt_silent): New.
3582         * mi/mi-getopt.h (mi_getopt_silent): Declare.
3583
3584 2013-08-26  Doug Evans  <dje@google.com>
3585
3586         PR symtab/15885
3587         * dwarf2read.c (dw2_dump): Print some minimal information indicating
3588         .gdb_index is in use.
3589         * symfile.c (reread_symbols): Reset objfile->sf.
3590
3591         * NEWS: Document "mt print objfiles" now takes optional regexp.
3592         * symmisc.c (maintenance_print_objfiles): Argument is now an optional
3593         regexp of objfiles to print.
3594         (_initialize_symmisc): Update doc string for "mt print objfiles".
3595
3596         * dwarf2read.c (write_psymtabs_to_index): Move error checks ahead of
3597         missing debug info checks.
3598
3599 2013-08-26  Raunaq Bathija  <raunaq12@in.ibm.com>
3600             Ulrich Weigand  <uweigand@de.ibm.com>
3601
3602         * xcoffread.c (arrange_linetable): Add fix to correctly handle
3603         line tables generated by XLC compiled binaries.
3604
3605 2013-08-23  Doug Evans  <dje@google.com>
3606
3607         * symmisc.c (dump_symtab): Delete prototype.
3608         (dump_msymbols, dump_objfile): Ditto.
3609         (maintenance_info_symtabs): Mark as dont_repeat.
3610         (_initialize_symmisc): Improve doc string for "mt info symtabs".
3611
3612         * elfread.c (elf_symfile_read): Move "Done reading minimal symbols"
3613         debugging printf to better location.
3614
3615 2013-08-23  Pedro Alves  <palves@redhat.com>
3616
3617         * target.c (target_read_live_memory): Change type of 'ret' local
3618         to LONGEST.
3619
3620 2013-08-23  Pedro Alves  <palves@redhat.com>
3621
3622         * remote.c (remote_write_bytes_aux, remote_write_bytes)
3623         (remote_read_bytes): Change return type to LONGEST, and adjust to
3624         return a target_xfer_error on error.
3625         (remote_xfer_memory): Delete.
3626         (remote_flash_write): Change type of 'ret' local to LONGEST.
3627         (remote_xfer_partial, remote_xfer_partial): Adjust.
3628         (init_remote_ops): Don't install a deprecated_xfer_memory hook.
3629
3630 2013-08-23  Pierre Muller  <muller@sourceware.org>
3631
3632         ARI fix: Push # directives to start of line.
3633         * rs6000-nat.c (rs6000_ptrace32, rs6000_ptrace64): Rule applied.
3634
3635 2013-08-12  Muhammad Waqas  <mwaqas@codesourcery.com>
3636
3637         PR gdb/15501
3638         * breakpoint.c (enable_command, disable_command): Iterate over
3639         all specified breakpoint locations.
3640
3641 2013-08-22  Luis Machado  <lgustavo@codesourcery.com>
3642
3643         * common/linux-ptrace.c (linux_fork_to_function): Push #
3644         directives to the start of the line.
3645         (linux_check_ptrace_features): Fix warning message to use
3646         the "_" markup.
3647
3648 2013-08-22  Luis Machado  <lgustavo@codesourcery.com>
3649
3650         * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-nat.h and
3651         nat/linux-waitpid.h.
3652         (linux-waitpid.o): New object file rule.
3653         * common/linux-ptrace.c: Include nat/linux-waitpid.h.
3654         (current_ptrace_options): Moved from linux-nat.c.
3655         (linux_ptrace_test_ret_to_nx): Use type casts for ptrace
3656         parameters.
3657         (linux_fork_to_function): New function.
3658         (linux_grandchild_function): Likewise.
3659         (linux_child_function): Likewise.
3660         (linux_check_ptrace_features): New function, heavily
3661         based on linux-nat.c:linux_test_for_tracefork.
3662         (linux_enable_event_reporting): New function.
3663         (ptrace_supports_feature): Likewise.
3664         (linux_supports_tracefork): Likewise.
3665         (linux_supports_traceclone): Likewise.
3666         (linux_supports_tracevforkdone): Likewise.
3667         (linux_supports_tracesysgood): Likewise.
3668         * common/linux-ptrace.h (HAS_NOMMU): Moved from
3669         gdbserver/linux-low.c.
3670         (linux_enable_event_reporting): New declaration.
3671         (linux_supports_tracefork): Likewise.
3672         (linux_supports_traceclone): Likewise.
3673         (linux_supports_tracevforkdone): Likewise.
3674         (linux_supports_tracesysgood): Likewise.
3675         * config.in (PTRACE_TYPE_ARG4): Regenerate.
3676         * config/aarch64/linux.mh (NATDEPFILES): Add linux-waitpid.o.
3677         * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
3678         * config/arm/linux.mh (NATDEPFILES): Likewise.
3679         * config/i386/linux.mh (NATDEPFILES): Likewise.
3680         * config/i386/linux64.mh (NATDEPFILES): Likewise.
3681         * config/ia64/linux.mh (NATDEPFILES): Likewise.
3682         * config/m32r/linux.mh (NATDEPFILES): Likewise.
3683         * config/m68k/linux.mh (NATDEPFILES): Likewise.
3684         * config/mips/linux.mh (NATDEPFILES): Likewise.
3685         * config/pa/linux.mh (NATDEPFILES): Likewise..
3686         * config/powerpc/linux.mh (NATDEPFILES): Likewise..
3687         * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
3688         * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
3689         * config/sparc/linux.mh (NATDEPFILES): Likewise.
3690         * config/sparc/linux64.mh (NATDEPFILES): Likewise.
3691         * config/tilegx/linux.mh (NATDEPFILES): Likewise.
3692         * config/xtensa/linux.mh (NATDEPFILES): Likewise.
3693         * configure.ac (AC_CACHE_CHECK): Add void * to the list of
3694         ptrace's 4th argument's types.
3695         Check the type of PTRACE_TYPE_ARG4.
3696         * configure: Regenerate.
3697         * linux-nat.c: Include nat/linux-nat.h and nat/linux-waitpid.h.
3698         (SYSCALL_SIGTRAP): Moved to nat/linux-nat.h.
3699         (linux_supports_tracefork_flag): Remove.
3700         (linux_supports_tracesysgood_flag): Likewise.
3701         (linux_supports_tracevforkdone_flag): Likewise.
3702         (current_ptrace_options): Moved to
3703         common/linux-ptrace.c.
3704         (linux_tracefork_child): Remove.
3705         (my_waitpid): Remove.
3706         (linux_test_for_tracefork): Renamed to
3707         linux_check_ptrace_features and moved to common/linux-ptrace.c.
3708         (linux_test_for_tracesysgood): Remove.
3709         (linux_supports_tracesysgood): Remove.
3710         (linux_supports_tracefork): Remove.
3711         (linux_supports_tracevforkdone): Remove.
3712         (linux_enable_tracesysgood): Remove.
3713         (linux_enable_event_reporting): Remove.
3714         (linux_init_ptrace): New function.
3715         (linux_child_post_attach): Call linux_init_ptrace.
3716         (linux_child_post_startup_inferior): Call linux_init_ptrace.
3717         (linux_child_follow_fork): Call linux_supports_tracefork
3718         and linux_supports_tracevforkdone.
3719         (linux_child_insert_fork_catchpoint): Call
3720         linux_supports_tracefork.
3721         (linux_child_insert_vfork_catchpoint): Likewise.
3722         (linux_child_set_syscall_catchpoint): Call
3723         linux_supports_tracesysgood.
3724         (lin_lwp_attach_lwp): Call linux_supports_tracefork.
3725         * nat/linux-nat.h: New file.
3726         * nat/linux-waitpid.c: New file.
3727         * nat/linux-waitpid.h: New file.
3728
3729 2013-08-22  Samuel Bronson  <naesten@gmail.com>
3730
3731         ARM Linux support for `catch syscall'.
3732         * syscalls/arm-linux.py: New file.
3733         * syscalls/arm-linux.xml: Likewise.
3734         * arm-linux-tdep.c (arm_linux_get_syscall_number): New function.
3735         (arm_linux_init_abi): Register the new function and syscall xml file.
3736         * data-directory/Makefile.in: Install the new syscall xml file.
3737         * NEWS: Brag about this.
3738
3739 2013-08-22  Pedro Alves  <palves@redhat.com>
3740
3741         PR gdb/15871
3742         * corefile.c (target_xfer_memory_error): New function.
3743         (memory_error): Defer EIO to target_memory_error.
3744         (read_memory): Use target_xfer_partial, and handle finer-grained
3745         target xfer errors.
3746         * target.c (target_xfer_error_to_string): New function.
3747         (memory_xfer_partial_1): If memory is known to be
3748         unavailable, return TARGET_XFER_E_UNAVAILABLE instead of -1.
3749         (target_xfer_partial): Make extern.
3750         * target.h (enum target_xfer_error): New enum.
3751         (target_xfer_error_to_string): Declare function.
3752         (target_xfer_partial): Declare function.
3753         (struct target_ops) <xfer_partial>: Adjust describing comment.
3754
3755 2013-08-22  Alan Modra  <amodra@gmail.com>
3756
3757         * configure.host: Support powerpc64le-linux and powerpcle-linux hosts.
3758         * configure.tgt: Likewise as targets.
3759
3760 2013-08-20  Doug Evans  <dje@google.com>
3761
3762         * buildsym.c (subfile_stack): Move here from buildsym.h.
3763         (pending_macros): Ditto.
3764         (get_macro_table): New function.
3765         (buildsym_init): Initialize subfile_stack.
3766         * coffread.c (type_vector,type_vector_length): Moved here from
3767         buildsym.h.
3768         (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
3769         (coff_symtab_read): Use it.
3770         * dbxread.c (read_ofile_symtab): Delete init of subfile_stack.
3771         * dwarf2read.c (macro_start_file): Replace uses of pending_macros
3772         with call to get_macro_table.
3773         * stabsread.c (type_vector,type_vector_length): Moved here from
3774         buildsym.h.
3775         (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
3776         * buildsym.h (get_macro_table): Declare.
3777
3778 2013-08-20  Tom Tromey  <tromey@redhat.com>
3779
3780         * dbxread.c (record_minimal_symbol): Make 'name' argument const.
3781         Update.
3782         (read_dbx_dynamic_symtab): Make 'name' const.  Remove casts.
3783
3784 2013-08-20  Doug Evans  <dje@google.com>
3785
3786         * blockframe.c: Remove #include "psymtab.h".
3787         * cp-support.c: Ditto.
3788         * source.c: Ditto.
3789         * stack.c: Ditto.
3790
3791 2013-08-20  Tom Tromey  <tromey@redhat.com>
3792
3793         PR python/15816:
3794         * exceptions.h (return_mask): Now an enum.
3795         (RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL): Now
3796         enum constants.
3797
3798 2013-08-20  Tom Tromey  <tromey@redhat.com>
3799
3800         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Use
3801         get_objfile_arch.
3802         * elfread.c (elf_rel_plt_read, elf_gnu_ifunc_record_cache)
3803         (elf_gnu_ifunc_resolve_by_got): Use get_objfile_arch.
3804         * jit.c (jit_object_close_impl): Update.
3805         * jv-lang.c (get_dynamics_objfile): Update.
3806         * linespec.c (add_minsym): Use get_dynamics_objfile.
3807         * objfiles.c (get_objfile_bfd_data): Initialize 'gdbarch' field.
3808         (allocate_objfile): Don't initialize 'gdbarch' field.
3809         (get_objfile_arch): Update.
3810         * objfiles.h (struct objfile_per_bfd_storage) <gdbarch>: New field,
3811         moved from...
3812         (struct objfile) <gdbarch>: ... here.  Remove.
3813         * stap-probe.c (stap_can_evaluate_probe_arguments): Use
3814         get_objfile_arch.
3815         * symfile.c (init_entry_point_info): Use get_objfile_arch.
3816
3817 2013-08-20  Alan Modra  <amodra@gmail.com>
3818
3819         * doublest.c (convert_floatformat_to_doublest): Use fmt->split_half
3820         for IBM long double nan and inf.
3821         (floatformat_is_negative, floatformat_classify,
3822         floatformat_mantissa): Similarly.
3823         (floatformat_ieee_single, floatformat_ieee_double,
3824         floatformat_ieee_quad, floatformat_arm_ext,
3825         floatformat_ia64_spill): Delete unused vars.
3826         (_initialize_doublest): Delete unused function.
3827         * gdbtypes.c (floatformats_ibm_long_double): Use new big- and
3828         little-endian variants of floatformat_ibm_long_double.
3829
3830 2013-08-19  Luis Machado  <lgustavo@codesourcery.com>
3831
3832         * Makefile.in (SFILES): Remove common/target-common.c and
3833         add target/waitstatus.c.
3834         (HFILES_NO_SRCDIR): Remove common/target-common.h and add
3835         target/resume.h, target/wait.h and target/waitstatus.h.
3836         (COMMON_OBS): Remove target-common.o and add
3837         waitstatus.o.
3838         (target-common.o): Remove.
3839         (waitstatus.o): New target object file.
3840         * common/target-common.c: Move contents to
3841         target/waitstatus.c and remove.
3842         * common/target-common.h: Move contents to other files and
3843         remove.
3844         (enum resume_kind: Move to target/resume.h.
3845         (TARGET_WNOHANG): Move to target/wait.h.
3846         (enum target_waitkind): Move to target/waitstatus.h.
3847         (struct target_waitstatus): Likewise.
3848         * target.h: Do not include target-common.h and
3849         include target/resume.h, target/wait.h and
3850         target/waitstatus.h.
3851         * target/resume.h: New file.
3852         * target/wait.h: New file.
3853         * target/waitstatus.h: New file.
3854         * target/waitstatus.c: New file.
3855
3856 2013-08-19  Pedro Alves  <palves@redhat.com>
3857
3858         * linux-nat.c (linux_test_for_tracefork)
3859         (linux_test_for_tracesysgood, linux_child_follow_fork)
3860         (lin_lwp_attach_lwp, linux_nat_resume): Don't block child signals.
3861         (linux_nat_wait_1): Extend comment.
3862         (linux_async_pipe): Add comment.
3863
3864 2013-08-15  Kevin Buettner  <kevinb@redhat.com>
3865
3866         * rl78-tdep.c (RL78_RAW_PC_REGNUM): New enum.
3867         (RL78_PC_REGNUM): Move to list of pseudo-register enums.
3868         (rl78_register_type, rl78_register_name, rl78_register_reggroup_p):
3869         Update to account for fact that PC is now a pseudo-register.
3870         (rl78_pseudo_register_write, rl78_pseudo_register_read):  Add
3871         cases for RL78_PC_REGNUM.
3872
3873 2013-08-15  Muhammad Bilal  <mbilal@codesourcery.com>
3874
3875         PR cli/15841
3876         * top.c (quit_force): Skip writing history file
3877         if input is not from terminal.
3878
3879 2013-08-14  Tom Tromey  <tromey@redhat.com>
3880
3881         * remote.c (struct remote_state) <echo_nextthread, nextthread,
3882         resultthreadlist>: New fields.
3883         (OPAQUETHREADBYTES, threadref, MAXTHREADLISTRESULTS): Move earlier.
3884         (remote_get_threadlist, remote_threadlist_iterator): Use
3885         new fields.  Remove static variables.
3886
3887 2013-08-14  Tom Tromey  <tromey@redhat.com>
3888
3889         * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p,
3890         remote_watch_data_address>: New fields.
3891         (remote_stopped_by_watchpoint_p, remote_watch_data_address): Remove.
3892         (process_stop_reply, remote_wait_as)
3893         (remote_check_watch_resources, remote_stopped_data_address): Update.
3894
3895 2013-08-14  Tom Tromey  <tromey@redhat.com>
3896
3897         * remote.c (struct remote_state) <async_client_callback,
3898         async_client_context>: New fields.
3899         (async_client_callback, async_client_context): Remove.
3900         (remote_async_serial_handler, remote_async): Update.
3901
3902 2013-08-14  Tom Tromey  <tromey@redhat.com>
3903
3904         * remote.c (sizeof_pkt): Remove.
3905         (remote_trace_find): Use rs->buf_size, not sizeof_pkt.
3906
3907 2013-08-14  Tom Tromey  <tromey@redhat.com>
3908
3909         * remote.c (struct remote_state) <use_threadinfo_query,
3910         use_threadextra_query>: New fields.
3911         (remote_threads_info, remote_threads_extra_info)
3912         (remote_open_1): Update.
3913
3914 2013-08-14  Tom Tromey  <tromey@redhat.com>
3915
3916         * remote.c (struct remote_state) <finished_object,
3917         finished_annex, finished_offset>: New fields.
3918         (remote_read_qxfer): Use remote_state fields; remove static
3919         variables.
3920
3921 2013-08-14  Tom Tromey  <tromey@redhat.com>
3922
3923         * remote.c (struct remote_state) <last_sent_step>:
3924         New field.
3925         (last_sent_step): Remove.
3926         (remote_resume, remote_wait_as): Update.
3927
3928 2013-08-14  Tom Tromey  <tromey@redhat.com>
3929
3930         * remote.c (struct remote_state) <last_sent_signal>:
3931         New field.
3932         (last_sent_signal): Remove.
3933         (new_remote_state, remote_resume, remote_wait_as): Update.
3934
3935 2013-08-14  Tom Tromey  <tromey@redhat.com>
3936
3937         * remote.c (struct remote_state) <last_program_signals_packet>:
3938         New field.
3939         (last_program_signals_packet): Remove.
3940         (remote_program_signals, remote_open_1): Update.
3941
3942 2013-08-14  Tom Tromey  <tromey@redhat.com>
3943
3944         * remote.c (struct remote_state) <last_pass_packet>:
3945         New field.
3946         (last_pass_packet): Remove.
3947         (remote_pass_signals, remote_open_1): Update.
3948
3949 2013-08-14  Tom Tromey  <tromey@redhat.com>
3950
3951         * remote.c (struct remote_state) <remote_traceframe_number>:
3952         New field.
3953         (remote_traceframe_number): Remove.
3954         (new_remote_state, remote_open_1, set_remote_traceframe)
3955         (remote_trace_find): Update.
3956
3957 2013-08-14  Tom Tromey  <tromey@redhat.com>
3958
3959         * remote.c (struct remote_state) <general_thread, continue_thread>:
3960         New fields.
3961         (general_thread, continue_thread): Remove.
3962         (record_currthread, set_thread, set_general_process)
3963         (remote_open_1, extended_remote_attach_1, remote_wait_as)
3964         (extended_remote_mourn_1): Update.
3965
3966 2013-08-14  Tom Tromey  <tromey@redhat.com>
3967
3968         * remote.c (struct remote_state) <remote_desc>: New field.
3969         (remote_desc): Remove.
3970         (remote_threads_info, remote_threads_extra_info, remote_close)
3971         (send_interrupt_sequence, remote_start_remote, remote_open_1)
3972         (readchar, remote_xfer_partial, remote_rcmd, packet_command)
3973         (remote_hostio_send_command, remote_file_put, remote_file_get)
3974         (remote_file_delete, remote_can_async_p, remote_is_async_p)
3975         (remote_async, remote_new_objfile, set_range_stepping): Update.
3976
3977 2013-08-14  Tom Tromey  <tromey@redhat.com>
3978
3979         * remote.c (remote_state): Now a pointer.
3980         (get_remote_state_raw): Update.
3981         (new_remote_state): New function.
3982         (_initialize_remote): Use new_remote_state.
3983
3984 2013-08-14  Tom Tromey  <tromey@redhat.com>
3985
3986         * remote.c (remote_protocol_features): Now const.
3987
3988 2013-08-14  Tom Tromey  <tromey@redhat.com>
3989
3990         * remote.c (crc32_table, crc32): Remove.
3991         (remote_verify_memory): Use xcrc32.
3992
3993 2013-08-13  Sergio Durigan Junior  <sergiodj@redhat.com>
3994
3995         * value.h (create_internalvar_type_lazy): Adjust prototype
3996         declaration.
3997
3998 2013-08-13  Andrew Burgess  <aburgess@broadcom.com>
3999
4000         * common/format.c (parse_format_string): Don't allow '#' flag for
4001         pointer arguments in format string.
4002
4003 2013-08-13  Pierre Muller  <muller@sourceware.org>
4004
4005         * utils.c (init_page_info): Only call tgetnum function
4006         if rl_get_screen_size did not return useful values.
4007
4008 2013-08-12  Ali Anwar  <ali_anwar@codesourcery.com>
4009
4010         PR breakpoints/15117
4011         * linespec.c (linespec_parse_basic): Check for convenience
4012         variable or history value while parsing.
4013
4014 2013-08-12  Sergio Durigan Junior  <sergiodj@redhat.com>
4015
4016         Revert implementation of gdbarch_gdb_signal_{to,from}_target for
4017         AVR.
4018         * avr-tdep.c: Remove include of "linux-tdep.h".  Remove enum with
4019         different signals between the generic Linux kernel implementation
4020         and AVR's.
4021         (avr_linux_gdb_signal_from_target): Delete.
4022         (avr_linux_gdb_signal_to_target): Delete.
4023         (avr_gdbarch_init): Don't set gdbarch_gdb_signal_{to,from}_target.
4024
4025 2013-08-09  Doug Evans  <dje@google.com>
4026
4027         * dwarf2read.c (create_addrmap_from_index): Ignore bad address table
4028         entries.
4029
4030 2013-08-09  Sergio Durigan Junior  <sergiodj@redhat.com>
4031
4032         * linux-tdep.c: Define enum with generic signal numbers.
4033         (linux_gdb_signal_from_target): New function.
4034         (linux_gdb_signal_to_target): Likewise.
4035         (linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4036         methods to the functions above.
4037         * linux-tdep.h (linux_gdb_signal_from_target): New prototype.
4038         (linux_gdb_signal_to_target): Likewise.
4039         * alpha-linux-tdep.c: Define new enum with signals different
4040         from generic Linux kernel.
4041         (alpha_linux_gdb_signal_from_target): New function.
4042         (alpha_linux_gdb_signal_to_target): Likewise.
4043         (alpha_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4044         with the functions mentioned above.
4045         * avr-tdep.c: Define enum with differences between Linux kernel
4046         and AVR signals.
4047         (avr_linux_gdb_signal_from_target): New function.
4048         (avr_linux_gdb_signal_to_target): Likewise.
4049         (avr_gdbarch_init): Set gdbarch_gdb_signal_{to,from}_target to
4050         the functions mentioned above.
4051         * sparc-linux-tdep.c: Define enum with differences between SPARC
4052         and generic Linux kernel signal numbers.
4053         (sparc32_linux_gdb_signal_from_target): New function.
4054         (sparc32_linux_gdb_signal_to_target): Likewise.
4055         (sparc32_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4056         to the functions defined above.
4057         * xtensa-linux-tdep.c: Define enum with differences between
4058         Xtensa and Linux kernel generic signals.
4059         (xtensa_linux_gdb_signal_from_target): New function.
4060         (xtensa_linux_gdb_signal_to_target): Likewise.
4061         (xtensa_linux_init_abi): Set gdbarch_gdb_signal_to_target
4062         to the functions defined above.
4063         * mips-linux-tdep.c: Define enum with differences between
4064         signals in MIPS and Linux kernel generic ones.
4065         (mips_gdb_signal_to_target): New function.
4066         (mips_gdb_signal_from_target): Redefine to use new enum, handle
4067         only different signals from the Linux kernel generic.
4068         (mips_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4069         the functions defined above.
4070         * mips-linux-tdep.h (enum mips_signals): Remove.
4071
4072 2013-08-09  Pedro Alves  <palves@redhat.com>
4073
4074         * avr-tdep.c (XMALLOC): Delete macro.
4075         * cli/cli-dump.c (XMALLOC): Delete macro.
4076
4077 2013-08-09  Pedro Alves  <palves@redhat.com>
4078
4079         * cli/cli-dump.c: Don't include cli/cli-dump.h.
4080         (scan_expression_with_cleanup, scan_filename_with_cleanup)
4081         (fopen_with_cleanup, add_dump_command): Make static.
4082         * cli/cli-dump.h: Delete file.
4083         * Makefile.in (HFILES_NO_SRCDIR): Remove reference to
4084         cli/cli-dump.h.
4085
4086 2013-08-09  Pedro Alves  <palves@redhat.com>
4087
4088         * tracepoint.c (tfile_start): Show tilde-expanded filename in
4089         error message.
4090
4091 2013-08-09  Pedro Alves  <palves@redhat.com>
4092
4093         * breakpoint.c (save_breakpoints): Show tilde-expanded filename in
4094         error message.
4095
4096 2013-08-09  Pedro Alves  <palves@redhat.com>
4097
4098         * gcore.c (create_gcore_bfd): Don't use tilde_expand here.
4099         (gcore_command): Use tilde_expand here, and when showing the
4100         filename to the user, show the expanded version.
4101
4102 2013-08-09  Yao Qi  <yao@codesourcery.com>
4103
4104         * stack.c (read_frame_arg): Set 'entryval_error' to NULL if
4105         'entryval' is set.
4106
4107 2013-08-08  Azat Khuzhin  <a3at.mail@gmail.com>  (tiny change)
4108
4109         * gcore.c (create_gcore_bfd): Use tilde_expand.
4110
4111 2013-08-08  Yao Qi  <yao@codesourcery.com>
4112
4113         * frame.h (read_frame_local): Declare.
4114         * mi/mi-cmd-stack.c (list_args_or_locals): Call
4115         read_frame_local.
4116         * stack.c (read_frame_local): New.
4117
4118 2013-08-08  Yao Qi  <yao@codesourcery.com>
4119
4120         * mi/mi-cmd-stack.c: Update comments to function
4121         list_args_or_locals.
4122
4123 2013-08-07  Tom Tromey  <tromey@redhat.com>
4124
4125         PR symtab/15028:
4126         * dwarf2read.c (struct process_psymtab_comp_unit_data): New.
4127         (process_psymtab_comp_unit_reader): Use it.
4128         (process_psymtab_comp_unit): Update.  Add "pretend_language"
4129         argument.
4130         (dwarf2_build_psymtabs_hard): Update.
4131         (scan_partial_symbols): Pass CU's language to
4132         process_psymtab_comp_unit.
4133
4134 2013-08-07  Tom Tromey  <tromey@redhat.com>
4135
4136         * dwarf2read.c (dw2_get_primary_filename_reader): Remove.
4137         (dwarf2_gdb_index_functions): Update.
4138         * psymtab.c (find_symbol_file_from_partial): Remove.
4139         (psym_functions): Update.
4140         * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
4141         Remove.
4142
4143 2013-08-07  Tom Tromey  <tromey@redhat.com>
4144
4145         * symfile.c (set_initial_language): Look up "main" symbol
4146         and use its language.
4147         * symtab.c (find_main_filename): Remove.
4148         * symtab.h (find_main_filename): Remove.
4149
4150 2013-08-07  Tom Tromey  <tromey@redhat.com>
4151
4152         * dwarf2read.c (recursively_compute_inclusions): Add
4153         "immediate_parent" argument.  Set symtab's "user" field
4154         if not set.
4155         (compute_symtab_includes): Update.
4156
4157 2013-08-07  Tom Tromey  <tromey@redhat.com>
4158
4159         * linespec.c (convert_linespec_to_sals): Use maybe_add_address
4160         when adding label symbols.
4161
4162 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
4163             Ulrich Weigand  <uweigand@de.ibm.com>
4164
4165         * configure.tgt (powerpc64-*-aix*): Match powerpc64 running aix.
4166         * configure.host (powerpc64-*-aix*): Likewise.
4167
4168 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
4169             Ulrich Weigand  <uweigand@de.ibm.com>
4170
4171         * gdb_ptrace.h: Use ptrace64 instead of ptrace if HAVE_PTRACE64
4172         is defined.
4173         * rs6000-nat.c: Check for __ld_info64_ if compiling 64 BIT gdb.
4174         (rs6000_ptrace32): Call ptrace64 instead of ptrace if present.
4175         (rs6000_ptrace64): Call ptace64 instead of ptracex if present.
4176         * configure.ac: Check for ptrace64.
4177         * configure, config.in: Regenerate.
4178
4179 2013-08-07  Raunaq Bathija  <raunaq12@in.ibm.com>
4180             Ulrich Weigand  <uweigand@de.ibm.com>
4181
4182         * aixthread.c: Call ptrace64 instead of ptracex if defined.
4183         Call ptrace64 instead of ptrace if defined.
4184         Add macro addr_ptr to take care of ptrace address argument.
4185         (pdc_read_regs): Likewise.
4186         (pdc_write_regs): Likewise.
4187         (aix_thread_resume): Likewise.
4188         (fetch_regs_kernel_thread): Likewise.
4189         (store_regs_kernel_thread): Likewise.
4190
4191 2013-08-07  Anton Blanchard  <anton@samba.org>
4192
4193         * MAINTAINERS: Add myself to Write After Approval.
4194
4195 2013-08-05  Tom Tromey  <tromey@redhat.com>
4196
4197         * aix-thread.c (_initialize_aix_thread): Use
4198         complete_target_initialization.
4199         * bsd-uthread.c (_initialize_bsd_uthread): Use
4200         complete_target_initialization.
4201         * dec-thread.c (_initialize_dec_thread): Use
4202         complete_target_initialization.
4203         * ravenscar-thread.c (_initialize_ravenscar): Use
4204         complete_target_initialization.
4205         * sol-thread.c (_initialize_sol_thread): Use
4206         complete_target_initialization.
4207         * spu-multiarch.c (_initialize_spu_multiarch): Use
4208         complete_target_initialization.
4209
4210 2013-08-05  Tom Tromey  <tromey@redhat.com>
4211
4212         * ada-exp.y (write_var_or_type): Use bound_minimal_symbol.
4213         * ada-lang.c (ada_lookup_simple_minsym): Return
4214         bound_minimal_symbol.
4215         * ada-lang.h (ada_lookup_simple_minsym): Update.
4216         * c-exp.y (variable): Use lookup_bound_minimal_symbol.
4217         * f-exp.y (variable): Use lookup_bound_minimal_symbol.
4218         * go-exp.y (variable): Use lookup_bound_minimal_symbol.
4219         * jv-exp.y (push_expression_name): Use lookup_bound_minimal_symbol.
4220         * m2-exp.y (variable): Use lookup_bound_minimal_symbol.
4221         * minsyms.c (msymbol_objfile): Remove.
4222         (lookup_minimal_symbol_internal): New function, from
4223         lookup_minimal_symbol.
4224         (lookup_minimal_symbol): Rewrite using
4225         lookup_minimal_symbol_internal.
4226         (lookup_bound_minimal_symbol): New function.
4227         * minsyms.h (msymbol_objfile): Remove.
4228         (lookup_bound_minimal_symbol): Declare.
4229         * p-exp.y (variable): Use lookup_bound_minimal_symbol.
4230         * parse.c (write_exp_msymbol): Change parameter to a
4231         bound_minimal_symbol.
4232         (write_dollar_variable): Use lookup_bound_minimal_symbol.
4233         * parser-defs.h (write_exp_msymbol): Update.
4234         * printcmd.c (address_info): Use lookup_bound_minimal_symbol.
4235         * symfile.c (simple_read_overlay_table): Use
4236         lookup_bound_minimal_symbol.
4237         * symtab.c (skip_prologue_sal): Don't use msymbol_objfile.
4238         (search_symbols): Likewise.
4239         (print_msymbol_info): Take a bound_minimal_symbol argument.
4240         (symtab_symbol_info, rbreak_command): Update.
4241         * symtab.h (struct symbol_search) <msymbol>: Change type
4242         to bound_minimal_symbol.
4243         * valops.c (find_function_in_inferior): Use
4244         lookup_bound_minimal_symbol.
4245         * value.c (value_fn_field): Use lookup_bound_minimal_symbol.
4246
4247 2013-08-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
4248
4249         Code cleanup.
4250         * remote.c (cleanup_sigint_signal_handler): Rename the declaration
4251         to ...
4252         (async_cleanup_sigint_signal_handler): ... this.
4253         (initialize_sigint_signal_handler): Remove declaration.
4254         (handle_remote_sigint): Rename the declaration to ...
4255         (async_handle_remote_sigint): ... this.
4256         (handle_remote_sigint_twice): Rename the declaration to ...
4257         (async_handle_remote_sigint_twice): ... this.
4258         (async_remote_interrupt, async_remote_interrupt_twice)
4259         (remote_interrupt): Remove the declarations.
4260         (remote_interrupt_twice): Rename the declaration ...
4261         (sync_remote_interrupt_twice): ... this.
4262         (sigint_remote_twice_token): Rename the variable to ...
4263         (async_sigint_remote_twice_token): ... this.
4264         (sigint_remote_token): Rename the variable to ...
4265         (async_sigint_remote_token): ... this.
4266         (initialize_sigint_signal_handler): Rename the function to ...
4267         (async_initialize_sigint_signal_handler): ... this.  Update the name
4268         inside.
4269         (handle_remote_sigint): Rename the function to ...
4270         (async_handle_remote_sigint): ... this.  Update the names inside.
4271         (handle_remote_sigint_twice): Rename the function to ...
4272         (async_handle_remote_sigint_twice): ... this.  Update the names inside.
4273         (cleanup_sigint_signal_handler): Rename the function to ...
4274         (async_cleanup_sigint_signal_handler): ... this.
4275         (remote_interrupt): Rename the function to ...
4276         (sync_remote_interrupt): this.  Update the names inside.
4277         (remote_interrupt_twice): Rename the function to ...
4278         (sync_remote_interrupt_twice): this.  Update the names inside.
4279         (remote_terminal_inferior, remote_terminal_ours, remote_wait_as)
4280         (_initialize_remote): Update the names inside.
4281
4282 2013-08-02  Tom Tromey  <tromey@redhat.com>
4283
4284         PR symtab/15719:
4285         * breakpoint.c (update_watchpoint, watchpoint_check)
4286         (watch_command_1): Update.
4287         * eval.c (fetch_subexp_value): Add "preserve_errors"
4288         parameter.
4289         * ppc-linux-nat.c (check_condition): Update.
4290         * value.h (fetch_subexp_value): Update.
4291
4292 2013-08-02  Andrew Burgess  <aburgess@broadcom.com>
4293
4294         * mi/mi-interp.c (mi_interpreter_resume): Remove call to
4295         add_file_handler.
4296
4297 2013-08-01  Doug Evans  <dje@google.com>
4298
4299         PR symtab/15691
4300         * dwarf2read.c (struct dwarf2_per_cu_data): New member tu_read.
4301         (fill_in_sig_entry_from_dwo_entry): Reorganize asserts.
4302         Add assert of sig_entry->dwo_unit == NULL.
4303         (lookup_dwo_signatured_type): Don't assign TU to a DWO if the TU
4304         had already been read.
4305         (read_signatured_type): Set per_cu.tu_read.
4306
4307         PR symtab/15695
4308         * valops.c (value_struct_elt): Add missing call to check_typedef.
4309         (value_find_oload_method_list): Ditto.
4310
4311         * symtab.c (do_free_search_symbols_cleanup): Change arg to,
4312         effectively, struct symbol_search **.
4313         (make_cleanup_free_search_symbols): Change arg to struct
4314         symbol_search **.  All callers updated.
4315         (compare_search_syms): Compare symtab file name and block as well.
4316         (search_symbols_equal): New function.
4317         (sort_search_symbols_remove_dups): Renamed from sort_search_symbols.
4318         New args new_head, new_tail.  Result is now void.  Remove dups after
4319         sorting the symbols.
4320         (search_symbols): Sort all found symbols once, after all have been
4321         found, and remove duplicates.  Simplify cleanup tracking of result.
4322         * symtab.h (make_cleanup_free_search_symbols): Update prototype.
4323
4324         Further workarounds for binutils/15021.
4325         * dwarf2read.c (recursively_compute_inclusions): Change type of result
4326         parameter to VEC (symtab_ptr) **.  New parameter all_type_symtabs.
4327         Watch for duplicate symtabs coming from type units.
4328         (compute_symtab_includes): Update call to
4329         recursively_compute_inclusions. Build vector of included symtabs
4330         instead of per_cus.
4331         * symtab.h (symtab_ptr): New typedef.
4332         (DEF_VEC_P (symtab_ptr)): New VEC type.
4333         * linespec.c (symtab_p): Delete.  All uses updated to use symtab_ptr
4334         instead.
4335
4336 2013-08-01  Andrew Burgess  <aburgess@broadcom.com>
4337
4338         * cli/cli-script.c (script_from_file): Remove use of
4339         error_pre_print.
4340         * main.c (captured_main): Remove use of error_pre_print and
4341         quit_pre_print.
4342         * utils.c (error_pre_print, quit_pre_print): Remove.
4343         * utils.h (error_pre_print, quit_pre_print): Likewise.
4344
4345 2013-08-01  Yao Qi  <yao@codesourcery.com>
4346
4347         * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Parse argv
4348         with mi_getopt.
4349         (mi_cmd_stack_list_variables): Likewise.
4350
4351 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
4352
4353         * exceptions.c (deprecated_throw_reason): Remove.
4354         * exceptions.h (deprecated_throw_reason): Remove.
4355
4356 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
4357
4358         * remote-mips.c (mips_error): Replace use of
4359         deprecated_throw_reason with throw_verror.  Use the error message
4360         passed to mips_error as the error message for throw_verror.
4361
4362 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
4363
4364         * monitor.c (monitor_interrupt_query): Replace use of
4365         deprecated_throw_reason with quit.
4366         * nto-procfs.c (interrupt_query): Likewise.
4367         * remote-fileio.c (remote_fileio_sig_exit): Likewise.
4368         * remote-mips.c (mips_kill): Likewise.
4369         * remote.c (interrupt_query): Likewise.
4370
4371 2013-07-31  Andrew Burgess  <aburgess@broadcom.com>
4372
4373         * utils.c (internal_verror): Replace use of deprecated_throw_reason
4374         with call to fatal.
4375
4376 2013-07-31  Pedro Alves  <pedro@codesourcery.com>
4377             Yao Qi  <yao@codesourcery.com>
4378
4379         * tracepoint.c (trace_dump_command): Select the current frame.
4380
4381 2013-07-30  Doug Evans  <dje@google.com>
4382
4383         * dwarf2read.c (process_queue): Add type signature to debug output.
4384
4385 2013-07-30  Andrew Burgess  <aburgess@broadcom.com>
4386
4387         * value.c (value_fetch_lazy): Mark optimized out values as such
4388         rather than raising an error.
4389
4390 2013-07-30  Andrew Burgess  <aburgess@broadcom.com>
4391
4392         * value.c (value_fetch_lazy): Ensure parent value is not lazy
4393         before checking which bits of the parent, not the child, value are
4394         valid.
4395
4396 2013-07-30  Muhammad Bilal  <mbilal@codesorcery.com>
4397
4398         PR gdb/15715
4399         * top.c: Include "filenames.h".
4400         (set_history_filename): New function.
4401         (init_main): Install it as set hook of the "set history filename"
4402         command.
4403
4404 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
4405
4406         * dwarf2read.c (dwarf2_get_ref_die_offset): Constify struct
4407         attribute parameter.
4408         (dwarf2_const_value_data): Constify struct attribute parameter.
4409         (dwarf2_const_value): Constify struct attribute parameter.
4410         (dwarf2_const_value_attr): Constify struct attribute parameter.
4411         (lookup_die_type): Constify struct attribute parameter.
4412         (dwarf2_get_attr_constant_value): Constify struct attribute parameter.
4413         (follow_die_ref_or_sig): Constify struct attribute parameter.
4414         (follow_die_ref): Constify struct attribute parameter.
4415         (follow_die_sig): Constify struct attribute parameter.
4416         (get_DW_AT_signature_type): Constify struct attribute parameter.
4417         (get_type_unit_group): Constify struct attribute parameter.
4418         (fill_in_loclist_baton): Constify struct attribute parameter.
4419         (dwarf2_symbol_mark_computed): Constify struct attribute parameter.
4420         (type_unit_group): Constify struct attribute parameter.
4421
4422 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
4423
4424         * dwarf2read.c (attr_form_is_block): Make argument const.
4425         (attr_form_is_section_offset): Make argument const.
4426         (attr_form_is_constant): Make argument const.
4427         (attr_form_is_ref): Make argument const.
4428
4429 2013-07-30  Sanimir Agovic  <sanimir.agovic@intel.com>
4430
4431         * dwarf2read.c (attr_is_ref): Rename to attr_form_is_ref.
4432         All uses updated.
4433         (attr_form_is_ref): Moved below attr_form_is_constant.
4434
4435 2013-07-29  Doug Evans  <dje@google.com>
4436
4437         * main.c (captured_command_loop): Tweak comment.
4438
4439         * target.c (target_async_permitted_1): Fix comment.
4440
4441         * symtab.c (iterate_over_some_symtabs): Add comment.
4442
4443         * symtab.c (iterate_over_some_symtabs): Fix indentation.
4444
4445 2013-07-27  Yao Qi  <yao@codesourcery.com>
4446
4447         * NEWS: Mention that GDBserver now supports hardware
4448         watchpoints on the MIPS GNU/Linux target.
4449
4450 2013-07-27  Yao Qi  <yao@codesourcery.com>
4451
4452         * Makefile.in (HFILES_NO_SRCDIR): Add
4453         common/mips-linux-watch.h.
4454         (mips-linux-watch.o): New rule.
4455         * common/mips-linux-watch.c: New.
4456         * common/mips-linux-watch.h: New.
4457         * config/mips/linux.mh (NATDEPFILES): Add mips-linux-watch.o
4458         * mips-linux-nat.c: Include mips-linux-watch.h.
4459         (W_BIT, R_BIT, I_BIT, W_MASK, R_MASK, I_MASK, IRW_MASK): Move
4460         to common/mips-linux-watch.h.
4461         (MAX_DEBUG_REGISTER): Likewise.
4462         (enum pt_watch_style): Likewise.
4463         (struct mips32_watch_regs): Likewise.
4464         (struct mips64_watch_regs): Likewise.
4465         (struct pt_watch_regs): Likewise.
4466         (struct mips_watchpoint): Likewise.
4467         (mips_linux_watch_get_irw_mask): Move to
4468         common/mips-linux-watch.c.
4469         (get_reg_mask, mips_linux_watch_get_num_valid): Likewise.
4470         (mips_linux_watch_get_watchlo): Likewise.
4471         (mips_linux_watch_set_watchlo): Likewise.
4472         (mips_linux_watch_get_watchhi): Likewise.
4473         (mips_linux_watch_set_watchhi): Likewise.
4474         (mips_linux_read_watch_registers): Likewise.
4475         (mips_linux_watch_type_to_irw): Likewise.
4476         (mips_linux_stopped_data_address, fill_mask): Likewise.
4477         (mips_linux_watch_try_one_watch): Likewise.
4478         (mips_linux_watch_populate_regs): Likewise.
4479
4480 2013-07-27  Yao Qi  <yao@codesourcery.com>
4481
4482         * mips-linux-nat.c (get_irw_mask): Rename to ...
4483         (mips_linux_watch_get_irw_mask): ... this.  Rename parameter
4484         'set' to 'n'.  Update function comment.  All callers changed.
4485         (get_reg_mask): Rename parameter 'set' to 'n'.  Update
4486         function comment.  All callers changed.
4487         (get_num_valid): Rename to ...
4488         (mips_linux_watch_get_num_valid): ... this.  Rename parameter
4489         'set' to 'n'.  Update function comment.  All callers changed.
4490         (get_watchlo): Rename to ...
4491         (mips_linux_watch_get_watchlo): ... this.  Rename parameter
4492         'set' to 'n'.  Update function comment.  All callers changed.
4493         (set_watchlo): Rename to ...
4494         (mips_linux_watch_set_watchlo): ... this.  Rename parameter
4495         'set' to 'n'.  Update function comment.  All callers changed.
4496         (get_watchhi): Rename to ...
4497         (mips_linux_watch_get_watchhi): ... this.  Update function
4498         comment.  All callers changed.
4499         (set_watchhi): Rename to ...
4500         (mips_linux_watch_set_watchhi): ... this.  Update function
4501         comment.  All callers changed.
4502         (mips_linux_read_watch_registers): Update function comment.
4503         Add new parameters 'lwpid', 'watch_readback', and
4504         'watch_readback_valid'.  Update.
4505         (type_to_irw): Rename to ...
4506         (mips_linux_watch_type_to_irw): ... this.  Update function
4507         comment.  All callers changed.
4508         (fill_mask): Update function comment.
4509         (try_one_watch): Rename to ...
4510         (mips_linux_watch_try_one_watch): ... this.  Change the type
4511         of parameter 'irw' from 'unsigned' to 'uint32_t'.
4512         (populate_regs_from_watches): Rename to ...
4513         (mips_linux_watch_populate_regs): ... this.  Add parameter
4514         'current_watches'.  All callers changed.
4515
4516 2013-07-27  Yao Qi  <yao@codesourcery.com>
4517
4518         * mips-linux-nat.c (MAX_DEBUG_REGISTER): Move it earlier in
4519         the code.
4520         (PTRACE_SET_WATCH_REGS, enum pt_watch_style): Remove.
4521         (struct mips32_watch_regs, struct mips64_watch_regs): Remove.
4522         (struct pt_watch_regs): Likewise.
4523         [!PTRACE_GET_WATCH_REGS] (PTRACE_SET_WATCH_REGS): New macro.
4524         [!PTRACE_GET_WATCH_REGS] (enum pt_watch_style): New.
4525         [!PTRACE_GET_WATCH_REGS] (struct mips32_watch_regs): New.
4526         [!PTRACE_GET_WATCH_REGS] (struct mips64_watch_regs): New.
4527         [!PTRACE_GET_WATCH_REGS] (struct pt_watch_regs): New.
4528
4529 2013-07-27  Yao Qi  <yao@codesourcery.com>
4530
4531         * breakpoint.h: Include break-common.h.
4532         (enum target_hw_bp_type): Move to ...
4533         * common/break-common.h: ... here.  New.
4534
4535 2013-07-26  Cyril Nikolaev  <cyril@nichtverstehen.de>
4536
4537         * inflow.c (terminal_init_inferior_with_pgrp): Save inferior
4538         process group regardless of having tty on stdin.
4539
4540 2013-07-25  Doug Evans  <dje@google.com>
4541
4542         * linux-fork.h (detach_fork): Delete.
4543
4544 2013-07-25  Tom Tromey  <tromey@redhat.com>
4545
4546         PR remote/15256, PR remote/15266:
4547         * bfd-target.c (target_bfd_reopen): Initialize to_magic.
4548         * monitor.c (monitor_detach): Use unpush_target.
4549         * remote-m32r-sdi.c (m32r_detach): Use unpush_target.
4550         * remote-mips.c (mips_detach): Use unpush_target.  Don't
4551         call mips_close.
4552         * remote-sim.c (gdbsim_detach): Use unpush_target.
4553         * target.c (pop_target): Remove.
4554         (pop_all_targets_above): Don't call target_close.
4555         (target_close): Assert that the target is unpushed.
4556         * target.h (pop_target): Don't declare.
4557         * tracepoint.c (tfile_open): Use unpush_target.
4558
4559 2013-07-25  Tom Tromey  <tromey@redhat.com>
4560
4561         * linux-thread-db.c (init_thread_db_ops): Call
4562         complete_target_initialization.
4563         (_initialize_thread_db): Don't call add_target.
4564         * target.c (complete_target_initialization): New function.
4565         (add_target_with_completer): Call it.
4566         * target.h (complete_target_initialization): Declare.
4567
4568 2013-07-25  Mark Kettenis  <kettenis@gnu.org>
4569
4570         * hppa-tdep.h (enum hppa_regnum): Add members for all space registers.
4571         * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Add comment.
4572         (HPPANBSD_SIZEOF_GREGS): New define.
4573         (hppaobsd_supply_gregset): Handle additional registers.
4574         * hppabsd-nat.c (hppabsd_gregset_supplies_p): Adjust to indicate
4575         we provide more registers now.
4576         (hppabsd_supply_gregset): Supply additional registers.
4577         (hppabsd_collect_gregset): Collect additional registers.
4578
4579 2013-07-25  Mark Kettenis  <kettenis@gnu.org>
4580
4581         * hppabsd-tdep.c: Include "dwarf2-frame.h".
4582         (hppabsd_dwarf2_frame_init_reg): New function.
4583         (hppabsd_init_abi): Hook in the DWARF CFI frame unwinder.
4584
4585 2013-07-25  Andrew Burgess  <aburgess@broadcom.com>
4586
4587         * mi/mi-main.c (output_register): Make MI 'r' format use standard
4588         'z' format code.  Remove error for optimized out values, standard
4589         code will handle these fine.
4590
4591 2013-07-25  Andrew Burgess  <aburgess@broadcom.com>
4592
4593         * NEWS: Mention new 'z' formatter.
4594         * printcmd.c (print_scalar_formatted): Add new 'z' formatter.
4595         (_initialize_printcmd): Mention 'z' formatter in help text of the
4596         'x' command.
4597
4598 2013-07-24  Maciej W. Rozycki  <macro@codesourcery.com>
4599
4600         * mips-tdep.c (micromips_deal_with_atomic_sequence): Correct
4601         formatting.
4602
4603 2013-07-24  Sergio Durigan Junior  <sergiodj@redhat.com>
4604
4605         * breakpoint.c (create_longjmp_master_breakpoint): Check if probe
4606         interface can evaluate arguments.  Fallback to the old mode if it
4607         cannot.
4608         (create_exception_master_breakpoint): Likewise.
4609         * elfread.c (elf_can_evaluate_probe_arguments): New function.
4610         (struct sym_probe_fns elf_probe_fns): Export function above to the
4611         probe interface.
4612         * probe.c (can_evaluate_probe_arguments): New function.
4613         * probe.h (struct probe_ops) <can_evaluate_probe_arguments>: New
4614         function pointer.
4615         (can_evaluate_probe_arguments): New function prototype.
4616         * solib-svr4.c (svr4_create_solib_event_breakpoints): Check if
4617         probe interface can evaluate arguments.  Fallback to the old mode
4618         if it cannot.
4619         * stap-probe.c (stap_get_probe_argument_count): Check if probe
4620         interface can evaluate arguments.  Warning the user if it cannot.
4621         (stap_can_evaluate_probe_arguments): New function.
4622         (struct probe_ops stap_probe_ops): Export function above to the
4623         probe interface.
4624         * symfile.h (struct sym_probe_fns) <can_evaluate_probe_arguments>:
4625         New function pointer.
4626
4627 2013-07-24  Luis Machado  <lgustavo@codesourcery.com>
4628
4629         * Makefile.in (SFILES): Add common/target-common.c.
4630         Add common/target-common.h to headers.
4631         (COMMON_OBS): Add target-common.o.
4632         (target-common.o): New target.
4633         * linux-nat.h (resume_kind): Move to common/target-common.h.
4634         * target.c (target_waitstatus_to_string): Move to
4635         common/target-common.c.
4636         * target.h: Include target-common.h.
4637         (target_waitkind): Move to common/target-common.h.
4638         (target_waitstatus): Likewise.
4639         (TARGET_WNOHANG): Likewise.
4640         * common/target-common.c: New file.
4641         * common/target-common.h: New file.
4642
4643 2013-07-24  Doug Evans  <dje@google.com>
4644
4645         * dwarf2read.c (lookup_dwo_cutu): Change missing DWO complaint to
4646         a warning.
4647
4648 2013-07-23  Yao Qi  <yao@codesourcery.com>
4649
4650         * i386-tdep.c (i386_in_stack_tramp_p): Remove unused
4651         parameter 'gdbarch'.
4652         (i386_stack_tramp_frame_sniffer): Caller update.
4653         * i386-linux-tdep.c (i386_linux_core_read_xcr0): Remove
4654         parameter 'gdbarch' and 'target'.
4655         (i386_linux_core_read_description): Caller update.
4656         * amd64-linux-tdep.c (amd64_linux_core_read_description):
4657         Likewise.
4658         * i386-linux-tdep.h (i386_linux_core_read_xcr0): Update
4659         declaration.
4660
4661 2013-07-23  Tom Tromey  <tromey@redhat.com>
4662
4663         * dwarf2read.c (init_cutu_and_read_dies): Revert patch from
4664         2013-07-22.
4665
4666 2013-07-22  Doug Evans  <dje@google.com>
4667
4668         * exec.h (remove_target_sections): Delete arg abfd.
4669         * exec.c (exec_close): Update call to remove_target_sections.
4670         (remove_target_sections): Delete arg abfd.
4671         * solib.c (update_solib_list): Ditto.
4672         (reload_shared_libraries_1): Ditto.
4673         (clear_solib): Ditto, and unconditionally call remove_target_sections.
4674         * target.h (struct target_section): Rename key to owner.
4675         All uses updated.
4676
4677 2013-07-22  Tom Tromey  <tromey@redhat.com>
4678
4679         * solib-som.c (som_open_symbol_file_object): Call do_cleanups.
4680
4681 2013-07-22  Tom Tromey  <tromey@redhat.com>
4682
4683         * dwarf2read.c (init_cutu_and_read_dies): Remove 'free_cu_cleanup'.
4684         Simplify cleanup handling.
4685
4686 2013-07-22  Tom Tromey  <tromey@redhat.com>
4687
4688         * dwarf2read.c (dwarf_decode_line_header): Call do_cleanups
4689         on all return paths.
4690
4691 2013-07-22  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
4692
4693         * ppc-linux-nat.c (PPC_DEBUG_FEATURE_DATA_BP_DAWR): New define.
4694         (ppc_linux_region_ok_for_hw_watchpoint): Add checking to use the new
4695         DAWR interface for longer ranges hardware watchpoint (up to 512 bytes).
4696
4697 2013-07-22  Phil Muldoon  <pmuldoon@redhat.com>
4698
4699         * top.c (print_gdb_version): Add help, apropos description and
4700         url to online documentation.
4701
4702 2013-07-19  Hui Zhu  <hui@codesourcery.com>
4703
4704         PR gdb/15692
4705         * mi/mi-cmd-break.c (mi_argv_to_format): Handle double quotes.
4706
4707 2013-07-19  Yao Qi  <yao@codesourcery.com>
4708
4709         * target.c (update_current_target): Change the default action
4710         of 'to_traceframe_info' from tcomplain to return_zero.
4711         * target.h (struct target_ops) <to_traceframe_info>: Add more
4712         comments.
4713         * valops.c (read_value_memory): Call
4714         traceframe_available_memory unconditionally.
4715
4716 2013-07-18  Yao Qi  <yao@codesourcery.com>
4717
4718         * coffread.c (coff_symfile_read): Iterate over minimal symbols,
4719         if the name is prefixed by "__imp_" or "_imp_", look for minimal
4720         symbol without prefix.  If found, set its type to
4721         'mst_solib_trampoline'.
4722
4723 2013-07-17  Doug Evans  <dje@google.com>
4724
4725         * NEWS: Mention "set print raw frame-arguments".
4726         * gdbcmd.h (setprintrawlist, showprintrawlist): Declare.
4727         * stack.c (print_raw_frame_arguments): New static global.
4728         (print_frame_arg): Set opts.raw from print_raw_frame_arguments.
4729         (_initialize_stack): New command "set/show print raw frame-arguments".
4730         * valprint.c (setprintrawlist, showprintrawlist): New globals.
4731         (set_print_raw, show_print_raw): New functions.
4732         (_initialize_valprint): New prefix command "set/show print raw".
4733         * valprint.h (value_print_options): Improve comments.
4734
4735         * cli/cli-cmds.c (init_cmd_lists): Delete unnecessary initialization
4736         of all *list variables.
4737
4738         * gdbcmd.h (togglelist): Delete.
4739         * cli/cli-cmds.c (togglelist): Delete.
4740         (init_cmd_lists): Update.
4741         * cli/cli-cmds.h (togglelist): Delete.
4742
4743 2013-07-17  Tom Tromey  <tromey@redhat.com>
4744
4745         * dwarf2read.c (dwarf2_per_objfile_free): Clear
4746         dwarf2_per_objfile.
4747
4748 2013-07-16  Doug Evans  <dje@google.com>
4749
4750         * nto-tdep.c (nto_relocate_section_addresses): Update,
4751         target_section.bfd deleted.
4752         * ppc64-tdep.c (ppc64_convert_from_func_ptr_addr): Ditto.
4753         * s390-tdep.c (s390_load): Ditto.
4754         * solib-aix.c (solib_aix_relocate_section_addresses): Ditto.
4755
4756 2013-07-16  Andrew Burgess  <aburgess@broadcom.com>
4757
4758         * common/format.c (parse_format_string): Add checks for NULL
4759         character before calling strchr.
4760
4761 2013-07-16  Doug Evans  <dje@google.com>
4762
4763         * solist.h (target_so_ops.find_and_open_solib): Clarify usage of
4764         temp_pathname argument.
4765         * nto-tdep.c (nto_find_and_open_solib): Fix setting of temp_pathname
4766         when opening the file fails.
4767
4768         * target.h (struct target_section): Delete member bfd.
4769         All users updated to use the_bfd_section->owner instead.
4770         * exec.c (add_to_section_table): Assert bfd is expected value.
4771         Remove initialization of target_section.bfd.
4772         (remove_target_sections): Update.
4773         (section_table_available_memory): Update.
4774         (section_table_xfer_memory_partial): Update.
4775         (print_section_info): Update.
4776         (exec_set_section_address): Update.
4777         * record-full.c (record_full_core_xfer_partial): Update.
4778         * solib-svr4.c (svr4_relocate_section_addresses): Update.
4779         * solib-target.c (solib_target_relocate_section_addresses): Update.
4780         * symfile.c (build_section_addr_info_from_section_table): Update.
4781         * target.c (memory_xfer_live_readonly_partial): Update.
4782         (memory_xfer_partial_1): Update.
4783
4784 2013-07-15  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
4785
4786         * ppc-linux-nat.c: Since the new PowerPC specific ptrace interface is
4787         now available for embedded (BookE) and server (BookS) processors,
4788         correct mentions of 'booke' and adjust comments accordingly in order to
4789         avoid confusion. Rename struct 'booke_debug_info' to 'hwdebug_info'.
4790         (have_ptrace_booke_interface): Rename function and variable
4791         'have_ptrace_booke_interface' to 'have_ptrace_hwdebug_interface'.
4792         Rename struct 'booke_debug_info' to 'hwdebug_info'. Update all uses.
4793         (booke_cmp_hw_point): Rename function 'booke_cmp_hw_point' to
4794         'hwdebug_point_cmp'. Update all uses.
4795         (booke_find_thread_points_by_tid): Rename function
4796         'booke_find_thread_points_by_tid' to
4797         'hwdebug_find_thread_points_by_tid'. Update all uses.
4798         (booke_insert_point): Rename function 'booke_insert_point' to
4799         'hwdebug_insert_point'. Update all uses.
4800         (booke_remove_point): Rename function 'booke_remove_point' to
4801         'hwdebug_remove_point'. Update all uses.
4802
4803 2013-07-15  Maciej W. Rozycki  <macro@codesourcery.com>
4804
4805         * mips-tdep.c (mips_gdbarch_init): Replace hardcoded magic
4806         numbers with enum values.
4807
4808 2013-07-15  Ali Anwar  <ali_anwar@codesourcery.com>
4809
4810         PR threads/13217
4811         * thread.c (thread_apply_all_command): Check for valid threads
4812         and thread count.
4813         (thread_array_cleanup): New struct.
4814         (set_thread_refcount): New function.
4815
4816 2013-07-11  Andrew Burgess  <aburgess@broadcom.com>
4817
4818         * infcmd.c (default_print_one_register_info): Reuse function
4819         print_hex_chars.
4820
4821 2013-07-10  Tom Tromey  <tromey@redhat.com>
4822
4823         * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS, ADA_EXP_C): New macros.
4824         (ada-exp.o): New target.
4825
4826 2013-07-10  Sergio Durigan Junior  <sergiodj@redhat.com>
4827
4828         * mt-tdep.c (mt_registers_info): Call
4829         get_no_prettyformat_print_options instead of
4830         get_raw_print_options (regression by last patch from Doug
4831         Evans).
4832
4833 2013-07-09  Pedro Alves  <palves@redhat.com>
4834
4835         Checked in by Joel Brobecker  <brobecker@adacore.com>.
4836         * ada-lang.c (coerce_unspec_val_to_type): Use
4837         value_optimized_out_const.
4838         * value.c (value_optimized_out_const): New function.
4839         * value.h (value_optimized_out_const): New declaration.
4840
4841 2013-07-09  Doug Evans  <dje@google.com>
4842
4843         * defs.h (enum val_prettyformat): Renamed from val_prettyprint.
4844         Enum values rename as well.  All uses updated.
4845         * valprint.h (value_print_options): Rename member pretty to
4846         pretty format.  Rename member prettyprint_arrays to
4847         prettyformat_arrays.  Rename member prettyprint_structs to
4848         prettyformat_structs.  All uses updated.
4849         (get_no_prettyformat_print_options): Renamed from
4850         get_raw_print_options.
4851         * valprint.c (get_no_prettyformat_print_options): Renamed from
4852         get_raw_print_options.  All callers updated.
4853         (show_prettyformat_structs): Renamed from show_prettyprint_structs.
4854         All callers updated.
4855         (show_prettyformat_arrays): Renamed from show_prettyprint_arrays.
4856         All callers updated.
4857         (_initialize_valprint): Improve help text for "set print pretty" and
4858         "set print arrays".
4859
4860 2013-07-09  Andrew Burgess  <aburgess@broadcom.com>
4861
4862         * value.c (value_bits_valid): Revert previous change, and change
4863         by Pedro on 2013-07-04, due to regressions in
4864         gdb.dwarf2/implptr.exp and gdb.dwarf2/pieces.exp.
4865
4866 2013-07-08  Andrew Burgess  <aburgess@broadcom.com>
4867             Pedro Alves  <palves@redhat.com>
4868
4869         * value.c (value_bits_valid): If the value is not lval_computed
4870         or has no check validity handler then the answer is the
4871         optimized_out flag, otherwise defer to the handler.
4872
4873 2013-07-06  Eli Zaretskii  <eliz@gnu.org>
4874
4875         * top.c (print_gdb_configuration): Explain in output of
4876         --configuration what does "relocatable" mean.
4877
4878         * main.c (print_gdb_help): Regroup options in the --help text.
4879         See http://sourceware.org/ml/gdb-patches/2013-04/msg00362.html for
4880         the relevant discussions.
4881
4882 2013-07-06  Yao Qi  <yao@codesourcery.com>
4883
4884         * breakpoint.h (struct breakpoint_ops) <create_breakpoints_sal>:
4885         Remove parameter 'lsal'.
4886         * breakpoint.c (create_breakpoint): Move local variable 'lsal'
4887         to inner block.  Caller update.
4888         (base_breakpoint_create_breakpoints_sal): Update.
4889         (bkpt_create_breakpoints_sal): Likewise.
4890         (tracepoint_create_breakpoints_sal): Likewise.
4891         (strace_marker_create_breakpoints_sal): Get 'lsal' from the
4892         element 0 of vector 'canonical->sals'.
4893
4894 2013-07-05  Luis Machado  <lgustavo@codesourcery.com>
4895
4896         * rs6000-tdep.c (rs6000_stab_reg_to_regnum): Return the real
4897         register number instead of the pseudo register one.
4898         (rs6000_dwarf2_reg_to_regnum): Likewise.
4899
4900 2013-07-04  Pedro Alves  <palves@redhat.com>
4901
4902         * findvar.c (value_of_register): Use allocate_optimized_out_value
4903         if the register has been optimized out, instead of
4904         set_value_optimized_out.
4905         * frame-unwind.c (frame_unwind_got_optimized): Use
4906         allocate_optimized_out_value.
4907
4908 2013-07-04  Pedro Alves  <palves@redhat.com>
4909
4910         * value.c (value_bits_valid): If the value is not lval_computed,
4911         or doesn't have a check_validity hook, assume the value is entirely
4912         valid.
4913
4914 2013-07-04  Andrew Burgess  <aburgess@broadcom.com>
4915
4916         * stack.c (read_frame_arg): No longer fetch lazy values.
4917         * value.c (value_optimized_out): If the value is not already
4918         marked optimized out, and is lazy then fetch it.
4919         (value_primitive_field): Move optimized out check to later in the
4920         function, after we have loaded any lazy values.
4921         (value_fetch_lazy): Use optimized out flag directly rather than
4922         calling optimized_out method.
4923
4924 2013-07-04  Andrew Burgess  <aburgess@broadcom.com>
4925
4926         * valops.c: Don't include "user-regs.h".
4927         (value_fetch_lazy): Moved to value.c.
4928         * value.c: Include "user-regs.h".
4929         (value_fetch_lazy): Moved from valops.c.
4930
4931 2013-07-04  Yao Qi  <yao@codesourcery.com>
4932
4933         Revert:
4934         2013-06-27  Yao Qi  <yao@codesourcery.com>
4935
4936         * common/create-version.sh: Update comments.  Handle the case
4937         that TARGET_ALIAS is empty.
4938
4939 2013-07-03  Pedro Alves  <palves@redhat.com>
4940
4941         * Makefile.in (config.status): Depend on development.sh.
4942         (aclocal_m4_deps): Add libmcheck.m4.
4943         * acinclude.m4: Include libmcheck.m4.
4944         * configure.ac: Source development.sh instead of setting
4945         'development' here.  --enable-libmcheck/--disable-libmcheck code
4946         factored out to GDB_AC_LIBMCHECK.  Run it.
4947         * development.sh: New file.
4948         * libmcheck.m4: New file.
4949         * configure: Regenerate.
4950
4951 2013-07-02  Tom Tromey  <tromey@redhat.com>
4952
4953         * contrib/ari/update-web-ari.sh: Update for version.in change.
4954
4955 2013-07-02  Tom Tromey  <tromey@redhat.com>
4956
4957         * common/ptid.h: Comment fixes.
4958
4959 2013-07-01  Tom Tromey  <tromey@redhat.com>
4960
4961         * dwarf2read.c (dwarf2_get_dwz_file): Return NULL if
4962         .gnu_debugaltlink not found.  Use bfd_get_alt_debug_link_info.
4963         (dwarf2_read_index, create_all_comp_units): Update.
4964
4965 2013-07-01  Tom Tromey  <tromey@redhat.com>
4966
4967         * configure.ac (build_warnings): Add -Wold-style-definition.
4968         * configure: Rebuild.
4969         * machoread.c (_initialize_machoread): Use "(void)".
4970         * macrocmd.c (macro_inform_no_debuginfo): Fix formatting;
4971         use "(void)".
4972
4973 2013-07-01  Tom Tromey  <tromey@redhat.com>
4974
4975         * configure.ac (build_warnings): Add -Wold-style-declaration.
4976         * configure: Rebuild.
4977         * dsrec.c (make_srec): Use "static const", not "const static".
4978         * h8300-tdep.c (h8300_breakpoint_from_pc): Use "static const",
4979         not "const static".
4980         * mi/mi-parse.c (mi_no_values, mi_simple_values, mi_all_values):
4981         Use "static const", not "const static".
4982         * mn10300-tdep.c (mn10300_breakpoint_from_pc): Use "static const",
4983         not "const static".
4984         * moxie-tdep.c (moxie_breakpoint_from_pc): Use "static const",
4985         not "const static".
4986         * rs6000-tdep.c (rs6000_breakpoint_from_pc): Use "static const",
4987         not "const static".
4988         * v850-tdep.c (v850_breakpoint_from_pc): Use "static const",
4989         not "const static".
4990         (v850_dbtrap_breakpoint_from_pc): Likewise.
4991         * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Use "static const",
4992         not "const static".
4993
4994 2013-07-01  Tom Tromey  <tromey@redhat.com>
4995
4996         * configure.ac (build_warnings): Add -Wmissing-parameter-type.
4997         * configure: Rebuild.
4998
4999 2013-07-01  Pedro Alves  <palves@redhat.com>
5000
5001         * defs.h: Include "pathmax.h".
5002         * utils.c: Don't include sys/param.h.
5003         (gdb_realpath): Remove code that checks for MAXPATHLEN.
5004         * solib-ia64-hpux.c (ia64_hpux_handle_load_event): Use PATH_MAX
5005         instead of MAXPATHLEN.
5006         * solib-sunos.c: Don't include sys/param.h.
5007         * xcoffread.c: Don't include sys/param.h.
5008         * bsd-kvm.c: Don't include sys/param.h.
5009         * darwin-nat.c: Don't include sys/param.h.
5010         (darwin_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
5011         * darwin-nat-info.c: Don't include sys/param.h.
5012         * fbsd-nat.c (fbsd_pid_to_exec_file): Use PATH_MAX instead of
5013         MAXPATHLEN.
5014         * i386obsd-nat.c: Don't include sys/param.h.
5015         * inf-child.c: Don't include sys/param.h.
5016         (inf_child_fileio_readlink): Use PATH_MAX instead of MAXPATHLEN.
5017         * linux-fork.c: Don't include sys/param.h.
5018         (fork_save_infrun_state): Use PATH_MAX instead of MAXPATHLEN.
5019         * linux-nat.c: Don't include sys/param.h.
5020         (linux_child_pid_to_exec_file, linux_proc_pending_signals)
5021         (linux_proc_pending_signals): Use PATH_MAX instead of MAXPATHLEN.
5022         * m68klinux-nat.c: Don't include sys/param.h.
5023         * nbsd-nat.c: Don't include sys/param.h.
5024         (nbsd_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
5025         * ppc-linux-nat.c: Don't include sys/param.h.
5026         * rs6000-nat.c: Don't include sys/param.h.
5027         * spu-linux-nat.c. Don't include sys/param.h.
5028         * windows-nat.c: Don't include sys/param.h.
5029         * xtensa-linux-nat.c: Don't include sys/param.h.
5030         * config/i386/nm-fbsd.h: Don't include sys/param.h.
5031
5032 2013-07-01  Pedro Alves  <palves@redhat.com>
5033
5034         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add pathmax.
5035         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/pathmax.m4.
5036         * gnulib/aclocal.m4: Regenerate.
5037         * gnulib/config.in: Regenerate.
5038         * gnulib/configure: Regenerate.
5039         * gnulib/import/pathmax.h: New file.
5040         * gnulib/import/Makefile.am: Regenerate.
5041         * gnulib/import/Makefile.in: Regenerate.
5042         * gnulib/import/m4/gnulib-cache.m4: Regenerate.
5043         * gnulib/import/m4/gnulib-comp.m4: Regenerate.
5044         * gnulib/import/m4/pathmax.m4: New file.
5045
5046 2013-07-01  Pedro Alves  <palves@redhat.com>
5047
5048         * configure.ac (GDBINIT): Define, depending on host.
5049         * go32-nat.c (init_go32_ops): Don't override gdbinit here.
5050         * top.c (PATH_MAX): Delete fallback definition.
5051         (GDBINIT_FILENAME): Delete.
5052         (gdbinit): Reimplement as const char array set to the GDBINIT
5053         string constant.
5054         * top.h (gdbinit): Make const.
5055         * configure, config.in: Regenerate.
5056
5057 2013-07-01  Pedro Alves  <palves@redhat.com>
5058
5059         * cli/cli-cmds.c (source_script): Make 'file' parameter const.
5060         * cli/cli-cmds.h (source_script): Likewise.
5061         * exceptions.c (catch_command_errors_const): New function.
5062         * exceptions.h (catch_command_errors_const): Declare.
5063         * main.c (get_init_files): Make parameters const, and adjust.
5064         (captured_main): Make 'system_gdbinit', 'home_gdbinit' and
5065         'local_gdbinit' locals const.  Adjust to use
5066         catch_command_errors_const.
5067         (print_gdb_help): Make 'system_gdbinit', 'home_gdbinit' and
5068         'local_gdbinit' locals const.
5069
5070 2013-07-01  Pedro Alves  <palves@redhat.com>
5071
5072         * defs.h: Don't check HAVE_UNISTD_H before including <unistd.h>.
5073         (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO): Delete.
5074         * tracepoint.c: Don't check HAVE_UNISTD_H before including
5075         <unistd.h>.
5076
5077 2013-07-01  Pedro Alves  <palves@redhat.com>
5078
5079         Import the "unistd" gnulib module.
5080         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add "unistd".
5081         * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/off_t.m4,
5082         import/m4/ssize_t.m4, import/m4/sys_types_h.m4 and
5083         import/m4/unistd_h.m4.
5084         * gnulib/aclocal.m4: Renenerate.
5085         * gnulib/config.in: Renenerate.
5086         * gnulib/configure: Renenerate.
5087         * gnulib/import/Makefile.am: Renenerate.
5088         * gnulib/import/Makefile.in: Renenerate.
5089         * gnulib/import/m4/gnulib-cache.m4: Renenerate.
5090         * gnulib/import/m4/gnulib-comp.m4: Renenerate.
5091         * gnulib/import/m4/off_t.m4: New file.
5092         * gnulib/import/m4/ssize_t.m4: New file.
5093         * gnulib/import/m4/sys_types_h.m4: New file.
5094         * gnulib/import/m4/unistd_h.m4: New file.
5095         * gnulib/import/sys_types.in.h: New file.
5096         * gnulib/import/unistd.c: New file.
5097         * gnulib/import/unistd.in.h: New file.
5098
5099 2013-07-01  Pedro Alves  <palves@redhat.com>
5100
5101         * utils.c <pathconf/_PC_PATH_MAX use>: Check if _PC_PATH_MAX is
5102         defined instead of checking HAVE_UNISTD_H.
5103
5104 2013-07-01  Pedro Alves  <palves@redhat.com>
5105
5106         Reimport gnulib from scratch.
5107         * gnulib/Makefile.in (aclocal_m4_deps): Remove reference to
5108         import/m4/onceonly.m4.
5109         * gnulib/aclocal.m4: Renegerate.
5110         * gnulib/config.in: Renegerate.
5111         * gnulib/configure: Renegerate.
5112         * gnulib/import/Makefile.in: Renegerate.
5113         * gnulib/import/extra/update-copyright: Renegerate.
5114         * gnulib/import/m4/onceonly.m4: Delete.
5115
5116 2013-07-01  Pedro Alves  <palves@redhat.com>
5117
5118         * tui/tui-regs.c (pagination_enabled): Delete declaration.
5119
5120 2013-06-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
5121
5122         Code cleanup.
5123         * remote.c (async_remote_interrupt_twice): Make it static.
5124         * remote.h (async_remote_interrupt_twice): Remove the declaration.
5125
5126 2013-06-29  Sergio Durigan Junior  <sergiodj@redhat.com>
5127
5128         * ia64-linux-tdep.c: Include <ctype.h>.
5129         (ia64_linux_stap_is_single_operand): New function.
5130         (ia64_linux_init_abi): Initialize SystemTap related attributes.
5131
5132 2013-06-28  Tom Tromey  <tromey@redhat.com>
5133
5134         * Makefile.in (version.c): Use version.in, not
5135         common/version.in.
5136         * common/create-version.sh: Likewise.
5137         * common/version.in: Move...
5138         * version.in: ...here.
5139
5140 2013-06-28  Pedro Alves  <palves@redhat.com>
5141
5142         * infrun.c (set_observer_mode): Don't declare pagination_enabled
5143         here.
5144         * utils.h (pagination_enabled): Declare.
5145
5146 2013-06-28  Pedro Alves  <palves@redhat.com>
5147
5148         * infrun.c (non_stop, non_stop_1, set_non_stop, show_non_stop):
5149         Move higher up in file.
5150
5151 2013-06-28  Tom Tromey  <tromey@redhat.com>
5152
5153         * tracepoint.c (deprecated_readline_begin_hook)
5154         (deprecated_readline_hook, deprecated_readline_end_hook): Don't
5155         declare.
5156
5157 2013-06-28  Pedro Alves  <palves@redhat.com>
5158
5159         PR tui/14880
5160         * tui/tui-regs.c (tui_get_register): Fetch value contents before
5161         checking if they're available.
5162         * value.c (value_available_contents_eq): Change comment.
5163         * value.h (value_available_contents_eq): Expand comment.
5164
5165 2013-06-27  Tom Tromey  <tromey@redhat.com>
5166
5167         * target.c (find_run_target): Remove.
5168         * target.h (find_run_target): Remove.
5169
5170 2013-06-27  Tom Tromey  <tromey@redhat.com>
5171
5172         * corelow.c (core_gdbarch): Now static.
5173
5174 2013-06-27  Tom Tromey  <tromey@redhat.com>
5175
5176         * target.c (target_struct_index): Remove.
5177
5178 2013-06-27  Pedro Alves  <palves@redhat.com>
5179
5180         * infrun.c: Remove comment describing the 'stepping over runtime
5181         loader dynamic symbol resolution code' mechanism; moved to
5182         gdbint.texinfo.
5183
5184 2013-06-27  Pedro Alves  <palves@redhat.com>
5185
5186         * exceptions.c (catch_command_errors): Remove spurious space.
5187         * exceptions.h (catch_command_errors): Second parameter is "arg",
5188         not "command".
5189
5190 2013-06-27  Yao Qi  <yao@codesourcery.com>
5191
5192         * common/create-version.sh: Update comments.  Handle the case
5193         that TARGET_ALIAS is empty.
5194
5195 2013-06-26  Pedro Alves  <palves@redhat.com>
5196
5197         * infrun.c (SOLIB_IN_DYNAMIC_LINKER): Delete macro and describing
5198         comment.
5199
5200 2013-06-26  Pedro Alves  <palves@redhat.com>
5201
5202         * infrun.c: Update comments on stepping over runtime loader
5203         dynamic symbol resolution code.
5204
5205 2013-06-26  Sergio Durigan Junior  <sergiodj@redhat.com>
5206
5207         * ax-gdb.h (union exp_element): Forward declare.
5208         * parser-defs.h: Include expression.h.
5209
5210 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
5211
5212         * mips-tdep.c (fetch_mips_16): Use unmake_compact_addr.
5213
5214 2013-06-26  Dmitry Kozlov <ddk@codesourcery.com>
5215
5216         * tracepoint.c (trace_save): Extend tsave to save starttime, stoptime.
5217
5218 2013-06-26  Dmitry Kozlov <ddk@codesourcery.com>
5219
5220         Fix trace-status to output proper start-time and stop-time.
5221         * tracepoint.c (trace_status_command): Fix type of printf arg to
5222         prevent improper type conversion.
5223         (trace_status_mi): Likewise.
5224
5225 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
5226
5227         * mips-tdep.c (mips_next_pc): Fix a typo.
5228
5229 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
5230
5231         * mips-tdep.c (micromips_scan_prologue): Fix a typo.
5232
5233 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
5234             Yao Qi  <yao@codesourcery.com>
5235
5236         * mi/mi-cmds.c (mi_cmds): Register -trace-frame-collected.
5237         * mi/mi-cmds.h (mi_cmd_trace_frame_collected): Declare.
5238         * mi/mi-main.c (print_variable_or_computed): New function.
5239         (mi_cmd_trace_frame_collected): New function.
5240         * tracepoint.c (find_trace_state_variable_by_number): New.
5241         (struct traceframe_info): Move to tracepoint.h
5242         (struct collection_list): Likewise.
5243         (do_collect_symbol): Include locals and arguments in the
5244         collected variables list.
5245         (clear_collection_list): Clear wholly collected variables list
5246         and computed variables list.
5247         (append_exp): New function.
5248         (encode_actions_1): Include variables in the wholly
5249         collected variables list.  Include memory ranges and
5250         full-fledged expressions in the computed expressions list.
5251         (encode_actions): Move some code to ...
5252         Return the cleanup chain.
5253         (encode_actions_rsp): ... here.  New function.
5254         (get_traceframe_location, get_traceframe_info): Remove static.
5255         * tracepoint.h (struct memrange): Moved from tracepoint.c.
5256         (struct collection_list): Moved from tracepoint.c.  Add two
5257         new fields 'wholly_collected' and 'computed'.
5258         (find_trace_state_variable_by_number): Declare.
5259         (encode_actions): Adjust declaration.
5260         (encode_actions_rsp): Declare.
5261         (get_traceframe_info, get_traceframe_location): Declare.
5262
5263         * NEWS: Mention new MI command -trace-frame-collected.
5264
5265 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
5266             Yao Qi  <yao@codesourcery.com>
5267
5268         * ctf.c (ctf_traceframe_info): Push trace state variables
5269         present in the trace data into the traceframe info object.
5270         * breakpoint.c (DEF_VEC_I): Remove.
5271         * common/filestuff.c (DEF_VEC_I): Likewise.
5272         * dwarf2loc.c (DEF_VEC_I): Likewise.
5273         * mi/mi-main.c (DEF_VEC_I): Likewise.
5274         * common/gdb_vecs.h (DEF_VEC_I): Define vector for int.
5275         * features/traceframe-info.dtd: Add tvar element and its
5276         attributes.
5277         * tracepoint.c (free_traceframe_info): Free vector 'tvars'.
5278         (build_traceframe_info): Push trace state variables present in
5279         the trace data into the traceframe info object.
5280         (traceframe_info_start_tvar): New function.
5281         (tvar_attributes): New.
5282         (traceframe_info_children): Add "tvar" element.
5283         * tracepoint.h (struct traceframe_info) <tvars>: New field.
5284
5285         * NEWS: Mention the change in GDB and GDBserver.
5286
5287 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
5288             Yao Qi  <yao@codesourcery.com>
5289
5290         * tracepoint.c (trace_dump_command): Move code to ...
5291         (get_traceframe_location): ... here.  New.
5292
5293 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
5294             Yao Qi  <yao@codesourcery.com>
5295
5296         * tracepoint.c (trace_dump_command): GDB emits an error
5297          instead of a warning when a traceframe is not selected.
5298
5299 2013-06-26  Pedro Alves  <pedro@codesourcery.com>
5300             Yao Qi  <yao@codesourcery.com>
5301
5302         * tracepoint.c (tracepoint_list, stepping_list): Remove.
5303         (clear_collection_list): Free fields 'aexpre_list' and 'list'
5304         in collection_list.
5305         (do_clear_collection_list, init_collection_list): New.
5306         (encode_actions): Add local variables 'tracepoint_list' and
5307         'stepping_list'.  Call init_collection_list and make cleanup
5308         which calls do_clear_collection_list.  Don't call
5309         clear_collection_list.
5310         (_initialize_tracepoint): Delete references to
5311         'tracepoint_list' and 'stepping_list'.
5312
5313 2013-06-25  Tom Tromey  <tromey@redhat.com>
5314
5315         * common/create-version.sh (date): Use "$", not "$$" in sed
5316         expression.
5317
5318 2013-06-25  Kevin Buettner  <kevinb@redhat.com>
5319
5320         * NEWS (New targets): Add entry for TI MSP430.
5321
5322 2013-06-25  Yao Qi  <yao@codesourcery.com>
5323
5324         * remote.c (remote_start_remote): Move code to upload tsv
5325         earlier.
5326
5327 2013-06-25  Yao Qi  <yao@codesourcery.com>
5328             Hui Zhu  <hui@codesourcery.com>
5329             Pedro Alves  <palves@redhat.com>
5330
5331         PR breakpoints/15075
5332         PR breakpoints/15434
5333         * breakpoint.c (bpstat_stop_status): Call
5334         b->ops->after_condition_true.
5335         (update_dprintf_command_list): Don't append "continue" command
5336         to the command list of dprintf breakpoint.
5337         (base_breakpoint_after_condition_true): New function.
5338         (base_breakpoint_ops): Add base_breakpoint_after_condition_true.
5339         (dprintf_after_condition_true): New function.
5340         (initialize_breakpoint_ops): Set dprintf_after_condition_true.
5341         * breakpoint.h (breakpoint_ops): Add after_condition_true.
5342
5343 2013-06-24  Kevin Buettner  <kevinb@redhat.com>
5344
5345         * Makefile.in (ALL_TARGET_OBS): Add msp430-tdep.o.
5346         (ALLDEPFILES): Add msp430-tdep.c.
5347         * configure.tgt (msp430*-*-elf): New target.
5348         * msp430-tdep.c: New file.
5349
5350 2013-06-24  Maciej W. Rozycki  <macro@codesourcery.com>
5351
5352         * mips-tdep.c (mips_elf_make_msymbol_special): Handle MIPS16 and
5353         microMIPS synthetic symbols.
5354
5355 2013-06-24  Maciej W. Rozycki  <macro@codesourcery.com>
5356
5357         * objfiles.h (pc_in_section): New prototype.
5358         (in_plt_section): Remove name argument, replace prototype with
5359         static inline function.
5360         * mips-tdep.h: Include "objfiles.h".
5361         (in_mips_stubs_section): New function.
5362         * hppa-tdep.h (gdbarch_tdep): Remove name argument of
5363         in_solib_call_trampoline member.
5364         (hppa_in_solib_call_trampoline): Remove name argument.
5365         * objfiles.c (pc_in_section): New function.
5366         (in_plt_section): Remove function.
5367         * mips-linux-tdep.c: Include "objfiles.h".
5368         (mips_linux_in_dynsym_stub): Call in_mips_stubs_section.  Remove
5369         name argument.  Return 1 rather than the low 16-bit halfword of
5370         any instruction examined.
5371         (mips_linux_in_dynsym_resolve_code): Update
5372         mips_linux_in_dynsym_stub call accordingly.
5373         * mips-tdep.c (mips_stub_frame_sniffer): Use in_mips_stubs_section
5374         rather than an equivalent hand-coded sequence.
5375         * hppa-hpux-tdep.c (in_opd_section): Remove function.
5376         (hppa32_hpux_in_solib_call_trampoline): Remove name argument.
5377         (hppa64_hpux_in_solib_call_trampoline): Likewise.
5378         (hppa64_hpux_find_global_pointer): Use pc_in_section rather than
5379         in_opd_section.
5380         * hppa-tdep.c (hppa_stub_unwind_sniffer): Remove name argument
5381         on call to tdep->in_solib_call_trampoline.
5382         (hppa_in_solib_call_trampoline): Remove name argument, update
5383         according to in_plt_section change.
5384         (hppa_skip_trampoline_code): Update according to in_plt_section
5385         change.
5386         * aarch64-tdep.c (aarch64_stub_unwind_sniffer): Likewise.
5387         * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code):
5388         Likewise.
5389         * arm-tdep.c (arm_stub_unwind_sniffer): Likewise.
5390         * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
5391         * hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
5392         * nios2-tdep.c (nios2_stub_frame_sniffer): Likewise.
5393         * nto-tdep.c (nto_relocate_section_addresses): Likewise.
5394         * s390-tdep.c (s390_stub_frame_sniffer): Likewise.
5395         * sh-tdep.c (sh_stub_unwind_sniffer): Likewise.
5396         * solib-dsbt.c (dsbt_in_dynsym_resolve_code): Likewise.
5397         * solib-frv.c (frv_in_dynsym_resolve_code): Likewise.
5398         * solib-svr4.c (svr4_in_dynsym_resolve_code): Likewise.
5399         * solib-target.c (solib_target_in_dynsym_resolve_code): Likewise.
5400         * sparc-tdep.c (sparc_analyze_prologue): Likewise.
5401         * tic6x-tdep.c (tic6x_stub_unwind_sniffer): Likewise.
5402
5403 2013-06-24  Joel Brobecker  <brobecker@adacore.com>
5404
5405         * common/create-version.sh: Fix expansion of $host_alias
5406         and $target_alias in generation of HOST_NAME and TARGET_NAME
5407         (resp.).
5408
5409 2013-06-24  Tom Tromey  <tromey@redhat.com>
5410
5411         * common/create-version.sh: New file.
5412         * Makefile.in (version.c): Use bfd/version.h, common/version.in,
5413         create-version.sh.
5414         (HFILES_NO_SRCDIR): Use common/version.h.
5415         * version.in: Move to ...
5416         * common/version.in: ... here.  Replace date with "DATE".
5417         * version.h: Move to ...
5418         * common/version.h: ... here.
5419
5420 2013-06-21  Joel Brobecker  <brobecker@adacore.com>
5421
5422         * gdb/gnulib/Makefile.in: Update date in copyright header.
5423         * gdb/gnulib/configure.ac: Ditto.
5424         * gdb/gnulib/update-gnulib.sh: Ditto.
5425
5426 2013-06-21  Joel Brobecker  <brobecker@adacore.com>
5427
5428         * copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by
5429         "gdb/gnulib/import".
5430
5431 2013-06-21  Will Newton  <will.newton@linaro.org>
5432
5433         * doublest.c (ldfrexp): Remove function.
5434         (convert_doublest_to_floatformat): Call frexpl instead of
5435         ldfrexp.
5436
5437 2013-06-21  Will Newton  <will.newton@linaro.org>
5438
5439         * gnulib/update-gnulib.sh(IMPORTED_GNULIB_MODULES): Add frexpl.
5440         * gnulib/aclocal.m4: Regenerate.
5441         * gnulib/config.in: Regenerate.
5442         * gnulib/configure: Regenerate.
5443         * gnulib/import/Makefile.am: Update.
5444         * gnulib/import/Makefile.in: Update.
5445         * gnulib/import/m4/gnulib-cache.m4: Update.
5446         * gnulib/import/m4/gnulib-comp.m4: Update.
5447         * gnulib/import/float+.h: Import.
5448         * gnulib/import/float.c: Import.
5449         * gnulib/import/float.in.h: Import.
5450         * gnulib/import/fpucw.h: Import.
5451         * gnulib/import/frexp.c: Import.
5452         * gnulib/import/frexpl.c: Import.
5453         * gnulib/import/isnan.c: Import.
5454         * gnulib/import/isnand-nolibm.h: Import.
5455         * gnulib/import/isnand.c: Import.
5456         * gnulib/import/isnanl-nolibm.h: Import.
5457         * gnulib/import/isnanl.c: Import.
5458         * gnulib/import/itold.c: Import.
5459         * gnulib/import/m4/exponentd.m4: Import.
5460         * gnulib/import/m4/exponentl.m4: Import.
5461         * gnulib/import/m4/float_h.m4: Import.
5462         * gnulib/import/m4/fpieee.m4: Import.
5463         * gnulib/import/m4/frexp.m4: Import.
5464         * gnulib/import/m4/frexpl.m4: Import.
5465         * gnulib/import/m4/isnand.m4: Import.
5466         * gnulib/import/m4/isnanl.m4: Import.
5467         * gnulib/import/m4/math_h.m4: Import.
5468         * gnulib/import/math.c: Import.
5469         * gnulib/import/math.in.h: Import.
5470
5471 2013-06-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
5472
5473         * common/linux-btrace.c (cpu_supports_btrace): Remove variable vendor,
5474         replace strcmp with signature_INTEL_ebx, signature_INTEL_ecx and
5475         signature_INTEL_edx comparisons.
5476
5477 2013-06-20  Doug Evans  <dje@google.com>
5478
5479         symtab/15652
5480         * dwarf2read.c (try_open_dwop_file): New arg search_cwd.
5481         All callers updated.
5482         (open_dwp_file): If we can't find the dwp file, search the basename
5483         in debug-file-directory.
5484
5485         * dwarf2read.c (struct dwp_file): Fix comment.
5486         (open_and_init_dwp_file): Set dwp_file->name to bfd's file name.
5487
5488         * source.c (openp): Document OPF_TRY_CWD_FIRST+OPF_SEARCH_IN_PATH
5489         better.
5490
5491 2013-06-20  Yao Qi  <yao@codesourcery.com>
5492
5493         * breakpoint.c (create_breakpoint): Fix code indentation.
5494
5495 2013-06-20  Yao Qi  <yao@codesourcery.com>
5496
5497         * breakpoint.c (create_breakpoints_sal_default): Remove
5498         parameter 'lsal'.  Update declaration.
5499         (bkpt_create_breakpoints_sal): Caller update.
5500         (tracepoint_create_breakpoints_sal): Likewise.
5501
5502 2013-06-20  Pedro Alves  <pedro@codesourcery.com>
5503             Yao Qi  <yao@codesourcery.com>
5504
5505         * NEWS: Mention the new option '--skip-unavailable' of command
5506         -data-list-register-values.
5507         * mi/mi-main.c (mi_cmd_data_list_register_values): Accept the
5508         --skip-unavailable option.  Adjust to use output_register.
5509         (output_register): Add new 'skip_unavailable' parameter.
5510         Handle it.
5511
5512 2013-06-19  Mike Frysinger  <vapier@gentoo.org>
5513
5514         * Makefile.in (HFILES_NO_SRCDIR): Add common/i386-cpuid.h and
5515         common/i386-gcc-cpuid.h.
5516         * common/i386-cpuid.h: New wrapper header around i386-gcc-cpuid.h.
5517         * common/i386-gcc-cpuid.h: Rename from testsuite/gdb.arch/i386-cpuid.h.
5518         Copy the latest version from upstream gcc.
5519         * common/linux-btrace.c: Include i386-cpuid.h.
5520         (intel_supports_btrace): Delete x86 ifdefs and replace inline asm with
5521         call to i386_cpuid.
5522         (cpu_supports_btrace): Likewise.
5523         * go32-nat.c: Include i386-cpuid.h.
5524         (go32_sysinfo): Add (disabled) calls to i386_cpuid with comments.
5525
5526 2013-06-19  Doug Evans  <dje@google.com>
5527
5528         * symfile.c (symfile_bfd_open): Delete unnecessary declaration.
5529         (get_section_index): Ditto.
5530
5531 2013-06-19  Tom Tromey  <tromey@redhat.com>
5532
5533         * breakpoint.c (_initialize_breakpoint): Remove trailing \n from
5534         "dprintf" help.
5535
5536 2013-06-18  Doug Evans  <dje@google.com>
5537
5538         * dwarf2read.c (dw2_symtab_iter_next): Check value of cu_index
5539         before using it.
5540         (dw2_expand_symtabs_matching): Fix symbol kind validity check.
5541         Move test of cu_index closer to use.  Print complaint if cu_index
5542         is bad.
5543
5544 2013-06-18  Joel Brobecker  <brobecker@adacore.com>
5545
5546         * machoread.c (oso_vector): Delete this global.
5547         (macho_register_oso): Add new parameter "oso_vector_ptr".
5548         Use it instead of the "oso_vector" global.
5549         (macho_symtab_read, macho_symfile_read_all_oso): Likewise.
5550         (macho_symfile_read): Use a local oso_vector, to be free'ed
5551         at the end of this function, in place of the old "oso_vector"
5552         global.  Update various function calls accordingly.  Use one
5553         single cleanup chain for the entire function.
5554
5555 2013-06-18  Joel Brobecker  <brobecker@adacore.com>
5556
5557         * dwarf2read.c (dwarf2_per_objfile_free): Replace uses of
5558         DWARF2_PER_OBJFILE by uses of DATA instead.
5559
5560 2013-06-18  Tom Tromey  <tromey@redhat.com>
5561
5562         * break-catch-sig.c (signal_catchpoint_explains_signal): Add 'sig'
5563         argument.
5564         * breakpoint.c (bpstat_explains_signal): Add 'sig' argument.
5565         Special case signals other than GDB_SIGNAL_TRAP.
5566         (explains_signal_watchpoint): New function.
5567         (base_breakpoint_explains_signal): Add 'sig' argument.
5568         (initialize_breakpoint_ops): Set 'explains_signal' method for
5569         watchpoints.
5570         * breakpoint.h (struct breakpoint_ops) <explains_signal>: Add
5571         signal argument.
5572         (bpstat_explains_signal): Likewise.
5573         * infrun.c (handle_syscall_event, handle_inferior_event): Update.
5574
5575 2013-06-18  Tom Tromey  <tromey@redhat.com>
5576
5577         * python/py-inferior.c (gdbpy_selected_inferior): Don't incref.
5578
5579 2013-06-18  Tom Tromey  <tromey@redhat.com>
5580
5581         * python/python.c (finish_python_initialization): Decref
5582         'pythondir' on failure path as well.
5583
5584 2013-06-18  Tom Tromey  <tromey@redhat.com>
5585
5586         PR symtab/15391:
5587         * dwarf2loc.c (read_pieced_value): Truncate this_size_bits
5588         after taking bits_to_skip into account.  Sign extend byte_offset.
5589         * utils.h (gdb_sign_extend): Declare.
5590         * utils.c (gdb_sign_extend): New function.
5591
5592 2013-06-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
5593
5594         * dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.
5595
5596 2013-06-17  Pierre Muller  <muller@sourceware.org>
5597
5598         * corelow.c (core_open): Print GDB signal name instead of target
5599         signal number.
5600
5601 2013-06-17  Mike Frysinger  <vapier@gentoo.org>
5602
5603         * .gitignore: Add /gcore.
5604
5605 2013-06-13  Doug Evans  <dje@google.com>
5606
5607         * dwarf2read.c (try_open_dwop_file): Work around behaviour of
5608         OPF_TRY_CWD_FIRST to not search path if the file contains a '/'.
5609
5610 2013-06-12  Phil Muldoon  <pmuldoon@redhat.com>
5611
5612         * stack.c (backtrace_command_1): Fix indentation.
5613
5614 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
5615
5616         * window-nat.c (thread_rec): Add missing empty line after
5617         local variable declaration.
5618
5619 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
5620
5621         * windows-nat.c (thread_rec): Revert format used to print
5622         error code returned by SuspendThread from %d back to %u.
5623
5624 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
5625
5626         * windows-nat.c (windows_continue): Add "0x" prefix for thread
5627         ID in debug trace.
5628         (get_windows_debug_event): Likewise, for all debug traces.
5629
5630 2013-06-11  Joel Brobecker  <brobecker@adacore.com>
5631
5632         * window-nat.c (thread_rec): Add thread ID in SuspendThread
5633         warning message.
5634
5635 2013-06-08  Pedro Alves  <pedro@codesourcery.com>
5636             Yao Qi  <yao@codesourcery.com>
5637
5638         * mi/mi-main.c (get_register): Remove declaration.
5639         (output_register): Declare.
5640         (mi_cmd_data_list_register_values): Remove local variable
5641         'tuple_cleanup'.  Move some code into output_register.
5642         (get_register): Renamed to ...
5643         (output_register): ... this.  Output the register's
5644         "number" ui_out tuple here.
5645
5646 2013-06-07  Pedro Alves  <palves@redhat.com>
5647
5648         * darwin-nat.c: Fix formating in copyright header.
5649         * darwin-nat.h: Likewise.
5650         * gnu-nat.c: Likewise.
5651         * machoread.c: Likewise.
5652
5653 2013-06-07  Pedro Alves  <palves@redhat.com>
5654
5655         PR server/14823
5656         * regformats/regdat.sh: Output #include tdesc.h.  Make globals
5657         static.  Output a global target description pointer.
5658         (init_registers_${name}): Adjust to initialize a
5659         target description structure.
5660
5661 2013-06-07  Will Newton  <will.newton@linaro.org>
5662
5663         * printcmd.c (build_address_symbolic): Call
5664         gdbarch_addr_bits_remove for text minimal symbols.
5665
5666 2013-06-07  Will Newton  <will.newton@linaro.org>
5667
5668         * MAINTAINERS: Add myself to Write After Approval.
5669
5670 2013-06-07  Yao Qi  <yao@codesourcery.com>
5671
5672         * tracepoint.c (start_tracing): Move code to ...
5673         (trace_reset_local_state): ... here.  New.
5674         (disconnect_tracing): Don't call set_current_traceframe,
5675         set_tracepoint_num, and set_traceframe_context. Call
5676         trace_reset_local_state instead.
5677         (tfile_close): Call trace_reset_local_state.
5678         * ctf.c (ctf_close): Likewise.
5679         * remote.c (remote_close): Likewise.
5680         * tracepoint.h (trace_reset_local_state): Declare.
5681
5682 2013-06-06  Doug Evans  <dje@google.com>
5683
5684         * dwarf2read.c: Whitespace fixes for DWP file format documentation,
5685         and fix header docs.
5686
5687 2013-06-05  Doug Evans  <dje@google.com>
5688             Keith Seitz  <keiths@redhat.com>
5689
5690         PR 15519
5691         * cp-namespace.c (find_symbol_in_baseclass): Call
5692         cp_lookup_symbol_in_namespace instead of cp_lookup_symbol_namespace.
5693         Check result of call to lookup_symbol_static.
5694         Call lookup_static_symbol_aux unconditionally.
5695         Call check_typedef on base types before accessing them.
5696         (cp_lookup_nested_symbol): Fix comment.
5697
5698 2013-06-05  Luis Machado  <lgustavo@codesourcery.com>
5699
5700         * gnu-v3-abi.c (gnuv3_skip_trampoline): Handle thunk
5701         minimal symbols pointing to function descriptors.
5702
5703 2013-06-05  Tom Tromey  <tromey@redhat.com>
5704
5705         * python/py-utils.c (gdb_pymodule_addobject): Cast away const.
5706
5707 2013-06-04  Sergio Durigan Junior  <sergiodj@redhat.com>
5708             Pedro Alves  <palves@redhat.com>
5709
5710         * remote.c (remote_wait_as): Restore signal handler before returning
5711         when GDB gets a notification.
5712
5713 2013-06-04  Gary Benson  <gbenson@redhat.com>
5714
5715         PR 2328
5716         * breakpoint.h (handle_solib_event): Moved function declaration
5717         to solib.h.
5718         * breakpoint.c (handle_solib_event): Moved function to solib.c.
5719         (bpstat_stop_status): Pass new argument to handle_solib_event.
5720         * solib.h (update_solib_breakpoints): New function declaration.
5721         (handle_solib_event): Moved function declaration from
5722         breakpoint.h.
5723         * solib.c (update_solib_breakpoints): New function.
5724         (handle_solib_event): Moved function from breakpoint.c.
5725         Updated to call solib_ops->handle_event if not NULL.
5726         * solist.h (target_so_ops): New fields "update_breakpoints" and
5727         "handle_event".
5728         * infrun.c (set_stop_on_solib_events): New function.
5729         (_initialize_infrun): Use the above for "set
5730         stop-on-solib-events".
5731         (handle_inferior_event): Pass new argument to handle_solib_event.
5732         * solib-svr4.c (probe.h): New include.
5733         (svr4_free_library_list): New forward declaration.
5734         (probe_action): New enum.
5735         (probe_info): New struct.
5736         (probe_info): New static variable.
5737         (NUM_PROBES): New definition.
5738         (svr4_info): New fields "using_xfer", "probes_table" and
5739         "solib_list".
5740         (free_probes_table): New function.
5741         (free_solib_list): New function.
5742         (svr4_pspace_data_cleanup): Free probes table and solib list.
5743         (svr4_copy_library_list): New function.
5744         (svr4_current_sos_via_xfer_libraries): New parameter "annex".
5745         (svr4_read_so_list): New parameter "prev_lm".
5746         (svr4_current_sos_direct): Renamed from "svr4_current_sos".
5747         (svr4_current_sos): New function.
5748         (probe_and_action): New struct.
5749         (hash_probe_and_action): New function.
5750         (equal_probe_and_action): Likewise.
5751         (register_solib_event_probe): Likewise.
5752         (solib_event_probe_at): Likewise.
5753         (solib_event_probe_action): Likewise.
5754         (solist_update_full): Likewise.
5755         (solist_update_incremental): Likewise.
5756         (disable_probes_interface_cleanup): Likewise.
5757         (svr4_handle_solib_event): Likewise.
5758         (svr4_update_solib_event_breakpoint): Likewise.
5759         (svr4_update_solib_event_breakpoints): Likewise.
5760         (svr4_create_solib_event_breakpoints): Likewise.
5761         (enable_break): Free probes table before creating breakpoints.
5762         Use svr4_create_solib_event_breakpoints to create breakpoints.
5763         (svr4_solib_create_inferior_hook): Free the solib list.
5764         (_initialize_svr4_solib): Initialise
5765         svr4_so_ops.handle_solib_event and svr4_so_ops.update_breakpoints.
5766
5767 2013-06-04  Gary Benson  <gbenson@redhat.com>
5768
5769         * target.h (target_ops): New field
5770         "to_augmented_libraries_svr4_read".
5771         (target_augmented_libraries_svr4_read): New macro.
5772         * target.c (update_current_target): Handle
5773         to_augmented_libraries_svr4_read.
5774         * remote.c (remote_state): New field
5775         "augmented_libraries_svr4_read".
5776         (remote_augmented_libraries_svr4_read_feature): New function.
5777         (remote_protocol_features): Add entry for
5778         "augmented-libraries-svr4-read".
5779         (remote_augmented_libraries_svr4_read): New function.
5780         (init_remote_ops): Initialize
5781         remote_ops.to_augmented_libraries_svr4_read.
5782
5783 2013-06-04  Gary Benson  <gbenson@redhat.com>
5784
5785         * NEWS: Update.
5786
5787 2013-06-04  Gary Benson  <gbenson@redhat.com>
5788
5789         * objfiles.h (inhibit_section_map_updates): New function
5790         declaration.
5791         (resume_section_map_updates): Likewise.
5792         (resume_section_map_updates_cleanup): Likewise.
5793         * objfiles.c (objfile_pspace_info): Removed field
5794         "objfiles_changed_p".  New fields "new_objfiles_available",
5795         "section_map_dirty" and "inhibit_updates".
5796         (allocate_objfile): Set new_objfiles_available.
5797         (free_objfile): Set section_map_dirty.
5798         (objfile_relocate1): Likewise.
5799         (in_plt_section): Likewise.
5800         (find_pc_section): Update the conditions under which the
5801         section map will be updated.
5802         (inhibit_section_map_updates): New function.
5803         (resume_section_map_updates): Likewise.
5804         (resume_section_map_updates_cleanup): Likewise.
5805
5806 2013-06-04  Gary Benson  <gbenson@redhat.com>
5807
5808         * probe.h (get_probe_argument_count): New declaration.
5809         (evaluate_probe_argument): Likewise.
5810         * probe.c (get_probe_argument_count): New function.
5811         (evaluate_probe_argument): Likewise.
5812         (probe_safe_evaluate_at_pc): Use the above new functions.
5813
5814 2013-06-04  Alan Modra  <amodra@gmail.com>
5815
5816         * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
5817         * rs6000-tdep.c (read_insn): Add frame param, don't assume big-endian.
5818         (ppc_insns_match_pattern): Add frame param.  Avoid multiple
5819         target mem reads on optional insns.
5820         * ppc-linux-tdep.c (ppc_skip_trampoline_code): Update
5821         ppc_insns_match_pattern calls.
5822         * ppc64-tdep.c (ppc64_standard_linkage2, ppc64_standard_linkage3):
5823         Add match for power7 thread safety insns, and new order of
5824         std 2,40(1) insn.  Correct code shown for _dl_runtime_resolve
5825         invocation in comment, and update rest of comment.
5826         (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN,
5827         PPC64_STANDARD_LINKAGE3_LEN): Delete.
5828         (ppc64_standard_linkage2_target): Update insn offsets.
5829         (ppc64_skip_trampoline_code): Use a single insn buffer.  Match newer
5830         stubs first.  Update calls.
5831
5832 2013-06-04  Yao Qi  <yao@codesourcery.com>
5833
5834         * solib.c (solib_find): Don't need dir separator if path has
5835         drive spec.
5836
5837 2013-06-03  Joel Brobecker  <brobecker@adacore.com>
5838
5839         Revert (indirectly causes a SIGSEGV):
5840         * machoread.c (macho_symfile_read): Assign first cleanup to
5841         'back_to'.
5842
5843 2013-06-03  Yao Qi  <yao@codesourcery.com>
5844
5845         * mi/mi-cmd-var.c (mi_no_values, mi_simple_values): Move to
5846         mi-parse.c.  Make them static.
5847         (mi_all_values): Likewise.
5848         (mi_parse_values_option): Move to mi-parse.c.  Rename it to
5849         mi_parse_print_values.  Make it external.
5850         * mi/mi-cmds.h (mi_no_values, mi_simple_values, mi_all_values):
5851         Remove the declarations.
5852         * mi/mi-parse.c (mi_parse_print_values): Moved from mi-cmd-var.c.
5853         * mi/mi-parse.h (mi_parse_print_values): Declare.
5854         * mi/mi-cmd-stack.c: Include mi-parse.h.
5855         (parse_print_values): Remove
5856         (mi_cmd_stack_list_locals): Call mi_parse_print_values instead
5857         of parse_print_values.
5858         (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Likewise.
5859
5860 2013-05-31  Pedro Alves  <pedro@codesourcery.com>
5861             Yao Qi  <yao@codesourcery.com>
5862
5863         * tracepoint.c (all_tracepoint_actions_and_cleanup): Declare.
5864         (encode_actions): Move code to ...
5865         (all_tracepoint_actions_and_cleanup): ... here.  New.
5866         (trace_dump_command): Likewise.
5867
5868 2013-05-30  Tom Tromey  <tromey@redhat.com>
5869
5870         * symmisc.c (maintenance_expand_symtabs): Call do_cleanups.
5871
5872 2013-05-30  Tom Tromey  <tromey@redhat.com>
5873
5874         * xml-support.c (gdb_xml_create_parser_and_cleanup): Rename from
5875         gdb_xml_create_parser_and_cleanup_1.  Return a cleanup.  Remove
5876         'old_chain' argument.  Add 'parser_result' argument.
5877         (gdb_xml_create_parser_and_cleanup): Remove old version.
5878         (gdb_xml_parse_quick): Update.
5879         (xml_process_xincludes): Update.
5880         * xml-support.h (gdb_xml_create_parser_and_cleanup): Don't
5881         declare.
5882
5883 2013-05-30  Tom Tromey  <tromey@redhat.com>
5884
5885         * probe.c (collect_probes): Check arguments for NULL before
5886         calling compile_rx_or_error.
5887         * utils.c (compile_rx_or_error): Require 'rx' to be non-NULL.
5888         Remove NULL return.
5889
5890 2013-05-30  Tom Tromey  <tromey@redhat.com>
5891
5892         * infrun.c (adjust_pc_after_break): Introduce an outer null
5893         cleanup.
5894
5895 2013-05-30  Tom Tromey  <tromey@redhat.com>
5896
5897         * mi/mi-cmd-var.c (varobj_update_one): Add an outer null cleanup.
5898
5899 2013-05-30  Tom Tromey  <tromey@redhat.com>
5900
5901         * cli/cli-script.c (read_command_lines_1): Use a null cleanup
5902         for 'old_chain'.  Do not check 'head' before processing
5903         cleanups.
5904
5905 2013-05-30  Tom Tromey  <tromey@redhat.com>
5906
5907         * mi/mi-cmd-stack.c (list_arg_or_local): Remove
5908         "cleanup_tuple".
5909
5910 2013-05-30  Tom Tromey  <tromey@redhat.com>
5911
5912         * dbxread.c (dbx_read_symtab): Declare 'back_to' in a more
5913         inner scope.  Unconditionally call do_cleanups.
5914
5915 2013-05-30  Tom Tromey  <tromey@redhat.com>
5916
5917         * source.c (find_and_open_source): Call do_cleanups.
5918
5919 2013-05-30  Tom Tromey  <tromey@redhat.com>
5920
5921         * linux-thread-db.c (thread_db_load_search): Unconditionally
5922         call do_cleanups.
5923
5924 2013-05-30  Tom Tromey  <tromey@redhat.com>
5925
5926         * solib-aix.c (solib_aix_bfd_open): Don't use a null cleanup
5927         for 'cleanup'; instead use a later one.
5928
5929 2013-05-30  Tom Tromey  <tromey@redhat.com>
5930
5931         * python/py-breakpoint.c (bppy_get_commands): Use
5932         explicit, unconditional return.
5933         * python/py-frame.c (frapy_read_var): Likewise.
5934         * python/python.c (gdbpy_decode_line): Likewise.
5935
5936 2013-05-30  Tom Tromey  <tromey@redhat.com>
5937
5938         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
5939         do_cleanups on all return paths.
5940
5941 2013-05-30  Tom Tromey  <tromey@redhat.com>
5942
5943         * top.c (execute_command): Discard 'cleanup_if_error' cleanups.
5944
5945 2013-05-30  Tom Tromey  <tromey@redhat.com>
5946
5947         * stabsread.c (read_struct_type): Call do_cleanups along
5948         all return paths.
5949
5950 2013-05-30  Maciej W. Rozycki  <macro@codesourcery.com>
5951
5952         * mips-linux-tdep.c: Adjust formatting throughout.
5953
5954 2013-05-30  Tom Tromey  <tromey@redhat.com>
5955
5956         * mipsread.c (read_alphacoff_dynamic_symtab): Call do_cleanups
5957         along all return paths.
5958
5959 2013-05-30  Tom Tromey  <tromey@redhat.com>
5960
5961         * symfile.c (find_separate_debug_file): Call do_cleanups
5962         along all return paths.
5963
5964 2013-05-30  Tom Tromey  <tromey@redhat.com>
5965
5966         * symtab.c (search_symbols): Introduce a null cleanup for
5967         'retval_chain'.
5968
5969 2013-05-30  Tom Tromey  <tromey@redhat.com>
5970
5971         * python/py-value.c (valpy_binop): Call do_cleanups before
5972         exiting loop.
5973
5974 2013-05-30  Tom Tromey  <tromey@redhat.com>
5975
5976         * python/py-prettyprint.c (print_children): Remove extra
5977         do_cleanups call.
5978
5979 2013-05-30  Tom Tromey  <tromey@redhat.com>
5980
5981         * python/py-frame.c (frapy_read_var): Call do_cleanups along
5982         all return paths.
5983
5984 2013-05-30  Tom Tromey  <tromey@redhat.com>
5985
5986         * python/py-breakpoint.c (bppy_get_commands): Call do_cleanups
5987         along all return paths.
5988
5989 2013-05-30  Tom Tromey  <tromey@redhat.com>
5990
5991         * cli/cli-logging.c (set_logging_redirect): Unconditionally
5992         call do_cleanups.
5993
5994 2013-05-30  Tom Tromey  <tromey@redhat.com>
5995
5996         * varobj.c (c_value_of_root): Call do_cleanups along all
5997         return paths.
5998
5999 2013-05-30  Tom Tromey  <tromey@redhat.com>
6000
6001         * tracepoint.c (trace_dump_command): Unconditionally call
6002         do_cleanups.
6003
6004 2013-05-30  Tom Tromey  <tromey@redhat.com>
6005
6006         * breakpoint.c (output_thread_groups, parse_cmd_to_aexpr): Call
6007         do_cleanups earlier.
6008
6009 2013-05-30  Tom Tromey  <tromey@redhat.com>
6010
6011         * machoread.c (macho_symfile_read): Assign first cleanup to
6012         'back_to'.
6013
6014 2013-05-30  Tom Tromey  <tromey@redhat.com>
6015
6016         * m32r-rom.c (m32r_load): Call do_cleanups at all returns.
6017
6018 2013-05-30  Tom Tromey  <tromey@redhat.com>
6019
6020         * mi/mi-main.c (list_available_thread_groups): Call do_cleanups.
6021
6022 2013-05-30  Tom Tromey  <tromey@redhat.com>
6023
6024         * inf-ptrace.c (inf_ptrace_create_inferior): Unconditionally
6025         call discard_cleanups.
6026         (inf_ptrace_attach): Likewise.
6027
6028 2013-05-30  Tom Tromey  <tromey@redhat.com>
6029
6030         * remote-mips.c (mips_exit_debug): Call do_cleanups on all
6031         return paths.
6032         (mips_initialize): Likewise.
6033         (common_open): Call do_cleanups.
6034
6035 2013-05-30  Tom Tromey  <tromey@redhat.com>
6036
6037         * utils.c (internal_vproblem): Call do_cleanups.
6038
6039 2013-05-30  Tom Tromey  <tromey@redhat.com>
6040
6041         * linespec.c (find_linespec_symbols): Don't reassign to 'cleanup'.
6042
6043 2013-05-30  Tom Tromey  <tromey@redhat.com>
6044
6045         * cli/cli-script.c (setup_user_args): Don't return after error.
6046
6047 2013-05-30  Tom Tromey  <tromey@redhat.com>
6048
6049         * somread.c (som_symtab_read): Call do_cleanups.
6050
6051 2013-05-30  Tom Tromey  <tromey@redhat.com>
6052
6053         * printcmd.c (print_command_1): Unconditionally call do_cleanups.
6054
6055 2013-05-30  Tom Tromey  <tromey@redhat.com>
6056
6057         * cli/cli-cmds.c (cd_command, alias_command): Call do_cleanups.
6058         * cli/cli-dump.c (restore_binary_file): Call do_cleanups.
6059         * interps.c (interpreter_exec_cmd): Call do_cleanups.
6060         * source.c (show_substitute_path_command): Call do_cleanups.
6061         (unset_substitute_path_command, set_substitute_path_command):
6062         Likewise.
6063         * symfile.c (load_command): Call do_cleanups.
6064
6065 2013-05-30  Tom Tromey  <tromey@redhat.com>
6066
6067         * contrib/cleanup_check.py: New file.
6068         * contrib/gcc-with-excheck: Add option parsing.
6069
6070 2013-05-30  Joel Brobecker  <brobecker@adacore.com>
6071
6072         * windows-nat.c (windows_delete_thread): Add missing space
6073         in cast expression.
6074
6075 2013-05-30  Hafiz Abid Qadeer  <abidh@codesourcery.com>
6076
6077         * inferior.c (top level): Include tilde.h.
6078         (add_inferior_command): Call tilde_expand on the value of 'exec'
6079         argument.
6080
6081 2013-05-30  Pedro Alves  <pedro@codesourcery.com>
6082             Yao Qi  <yao@codesourcery.com>
6083
6084         * tracepoint.c (encode_actions_1): Remove parameter 't'.
6085         Caller update.
6086         (encode_actions): Likewise.
6087         * remote.c (remote_download_tracepoint): Caller update.
6088         * tracepoint.h (encode_actions): Update declaration.
6089
6090 2013-05-30  Pedro Alves  <palves@redhat.com>
6091
6092         * python/python-internal.h (gdb_Py_DECREF): Cast OP to PyObject
6093         pointer.
6094
6095 2013-05-30  Yao Qi  <yao@codesourcery.com>
6096
6097         * remote.c (remote_check_symbols): Remove unused parameter
6098         'objfile'.
6099         Declaration update.
6100         (remote_start_remote, remote_new_objfile): Caller update.
6101
6102 2013-05-30  Yao Qi  <yao@codesourcery.com>
6103
6104         * mi/mi-cmds.c (mi_cmds): Define MI command
6105         '-exec-arguments' by macro DEF_MI_CMD_CLI_1 instead of
6106         DEF_MI_CMD_CLI.
6107
6108 2013-05-29  Pedro Alves  <palves@redhat.com>
6109
6110         * remote.c (remote_insert_breakpoint, remote_remove_breakpoint)
6111         (remote_insert_watchpoint, remote_remove_watchpoint)
6112         (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
6113         (remote_verify_memory, compare_sections_command)
6114         (remote_search_memory): Set the general process/thread on the
6115         remote side.
6116
6117 2013-05-29  Pedro Alves  <palves@redhat.com>
6118
6119         * aarch64-tdep.c: Don't include "features/aarch64-without-fpu.c".
6120         (_initialize_aarch64_tdep): Don't call
6121         initialize_tdesc_aarch64_without_fpu.
6122         * features/Makefile (WHICH): Remove reference to
6123         aarch64-without-fpu.
6124         * features/aarch64-without-fpu.c: Delete file.
6125         * regformats/aarch64-without-fpu.dat: Delete file.
6126
6127 2013-05-28  Yao Qi  <yao@codesourcery.com>
6128
6129         * tracepoint.c (stringify_collection_list): Remove parameter
6130         'string'.
6131         (encode_actions): Caller update.  Remove local variables.
6132
6133 2013-05-24  Yao Qi  <yao@codesourcery.com>
6134
6135         * tracepoint.c (TFILE_PID): Remove.
6136         (tfile_open): Don't add thread and inferior.
6137         (tfile_close): Don't set 'inferior_ptid'.  Don't call
6138         exit_inferior_silent.
6139         (tfile_thread_alive): Remove.
6140         (init_tfile_ops): Don't set field 'to_thread_alive' of
6141         tfile_ops.
6142
6143 2013-05-23  Doug Evans  <dje@google.com>
6144
6145         * contrib/cc-with-tweaks.sh (-p): Handle no dwo files.
6146
6147 2013-05-23  Pedro Alves  <palves@redhat.com>
6148
6149         * common/filestuff.c [USE_WIN32API]: Define HAVE_SOCKETS.
6150         [HAVE_SYS_SOCKET_H]: Define HAVE_SOCKETS.
6151         (socket_mark_cloexec, gdb_socketpair_cloexec, gdb_socket_cloexec):
6152         Only define if HAVE_SOCKETS is defined.
6153         * configure.ac: Check for sys/socket.h.
6154         * config.in, configure: Regenerate.
6155
6156 2013-05-23  Pedro Alves  <palves@redhat.com>
6157
6158         * dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
6159         (open_and_init_dwp_file): Use %s/pulongest instead of %u for
6160         printing uint32_t variables.
6161
6162 2013-05-23  Pedro Alves  <palves@redhat.com>
6163
6164         * NEWS: Mention GDBserver range stepping support.
6165
6166 2013-05-23  Yao Qi  <yao@codesourcery.com>
6167             Pedro Alves  <palves@redhat.com>
6168
6169         * gdbthread.h (struct thread_control_state) <may_range_step>: New
6170         field.
6171         * infcmd.c (step_once, until_next_command): Enable range stepping.
6172         * infrun.c (displaced_step_prepare): Disable range stepping.
6173         (resume): Disable range stepping if stepping over a breakpoint or
6174         we have software watchpoints.  If range stepping is enabled,
6175         assert the thread is in the stepping range.
6176         (clear_proceed_status_thread): Clear may_range_step.
6177         (handle_inferior_event): Disable range stepping as soon as we know
6178         the thread that hit the event.  Re-enable it whenever we're going
6179         to step with a step range.
6180         * remote.c (struct vCont_action_support) <r>: New field.
6181         (use_range_stepping): New global.
6182         (remote_vcont_probe): Handle 'r' action.
6183         (append_resumption): Append an 'r' action if the thread may range
6184         step.
6185         (show_range_stepping): New function.
6186         (set_range_stepping): New function.
6187         (_initialize_remote): Call add_setshow_boolean_cmd to register the
6188         'set range-stepping' and 'show range-stepping' commands.
6189         * NEWS: Mention range stepping, the new vCont;r action, and the
6190         new "set/show range-stepping" commands.
6191
6192 2013-05-23  Yao Qi  <yao@codesourcery.com>
6193             Pedro Alves  <palves@redhat.com>
6194
6195         * remote.c (struct vCont_action_support): New struct.
6196         (struct remote_state) <support_vCont_t>: Remove field.
6197         <vCont_actions_support>: New field.
6198         (remote_vcont_probe, remote_stop_ns): Update.
6199
6200 2013-05-23  Yao Qi  <yao@codesourcery.com>
6201             Pedro Alves  <palves@redhat.com>
6202
6203         * gdbthread.h (pc_in_thread_step_range): New declaration.
6204         * thread.c (pc_in_thread_step_range): New function.
6205         * infrun.c (handle_inferior_event): Use it.
6206
6207 2013-05-23  Joel Brobecker  <brobecker@adacore.com>
6208
6209         * mi/mi-cmd-break.c (mi_argv_to_format): Use xsnprintf instead
6210         of sprintf.
6211
6212 2013-05-22  Keith Seitz  <keiths@redhat.com>
6213
6214         * ada-lang.c (is_known_support_routine): Add explicit free of
6215         'func_name' from find_frame_funname.
6216         (ada_unhandled_exception_name_addr_from_raise): Add cleanups
6217         for func_name from find_frame_funname.
6218         * python/py-frame.c (frapy_name): Add explicit free of
6219         'name' from find_frame_funname.
6220         * stack.c (find_frame_funname): Add comment explaining that
6221         funcp must be freed by the caller.
6222         Return copy of symbol names instead of pointers.
6223         (print_frame): Add a cleanup for 'funname' from
6224         find_frame_funname.
6225         * stack.h (find_frame_funname): Remove "const" from
6226         'funname' parameter.
6227
6228 2013-05-22  Tom Tromey  <tromey@redhat.com>
6229
6230         PR c++/15401:
6231         * c-valprint.c (c_value_print): Use value_addr for
6232         references.  Convert back to reference type with value_ref.
6233
6234 2013-05-22  Eli Zaretskii  <eliz@gnu.org>
6235
6236         * windows-nat.c (handle_unload_dll): Don't call solib_add for the
6237         unloaded DLL, it will be done by handle_solib_event.  See
6238         http://sourceware.org/ml/gdb-patches/2013-05/msg00713.html for the
6239         details.
6240
6241 2013-05-22  Phil Muldoon  <pmuldoon@redhat.com>
6242
6243         * ui-out.c: Create typedef ui_out_level_p and define vector
6244         operations for that type.
6245         (struct ui_out): Use a vector instead of an array.
6246         (current_level): Return level from a vector.
6247         (push_level): Create a level in a vector.
6248         (pop_level): Delete a level in a vector.
6249         (ui_out_new): Create initial level zero level, and store in a
6250         vector.
6251         (ui_out_destroy): Add vector cleanup.
6252
6253 2013-05-22  Pedro Alves  <palves@redhat.com>
6254
6255         * python/python-internal.h (gdb_Py_DECREF): Tag with
6256         "ARI: editCase function".
6257
6258 2013-05-21  Paul Pluzhnikov  <ppluzhnikov@google.com>
6259
6260         * solib-svr4.c (svr4_free_so): Protect against NULL dereference.
6261
6262 2013-05-21  Pedro Alves  <palves@redhat.com>
6263
6264         * python/py-prettyprint.c (apply_val_pretty_printer): Check
6265         whether PRINTER is NULL before installing a Py_DECREF cleanup.
6266         * python/py-utils.c (py_decref): Don't check for NULL before
6267         calling Py_DECREF.
6268
6269 2013-05-21  Pedro Alves  <palves@redhat.com>
6270
6271         * python/py-utils.c (py_decref): Remove extra braces.
6272         (gdb_pymodule_addobject): Remove extra braces.
6273         * python-internal.h (gdb_Py_DECREF): New static inline function.
6274         (Py_DECREF): Redefine as calling gdb_Py_DECREF.
6275
6276 2013-05-21  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
6277
6278         * breakpoints.c (detach_breakpoints): Do not
6279         detach breakpoints locations with loc_type bp_loc_other.
6280
6281 2013-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
6282
6283         Workaround Python 2.6.
6284         * python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
6285         a block.
6286
6287 2013-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
6288
6289         Code cleanup: constification.
6290         * solib.c (solib_ops): Make return type and ops variable type const.
6291         (set_solib_ops): Make the new_ops parameter and ops variable const.
6292         (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
6293         (solib_add, solib_keep_data_in_core, clear_solib)
6294         (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
6295         (reload_shared_libraries, solib_global_lookup): Make the ops variable
6296         const.
6297         * solib.h (set_solib_ops): Make the new_ops parameter const.
6298
6299 2013-05-21  Joel Brobecker  <brobecker@adacore.com>
6300
6301         * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
6302         variable.
6303         (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
6304         (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
6305         (SYSTEM_GDBINIT_FILES): New variables.
6306         (all): Add stamp-system-gdbinit.
6307         (stamp-system-gdbinit): New rule.
6308         (clean-system-gdbinit, install-system-gdbinit)
6309         (uninstall-system-gdbinit): New rules.  Make them .PHONY.
6310         (install-only): Add dependency on install-system-gdbinit.
6311         (uninstall): Add dependency on uninstall-system-gdbinit.
6312         (clean): Add dependency on clean-system-gdbinit.
6313         * system-gdbinit/elinos.py: New file.
6314         * system-gdbinit/wrs-linux.py: New file.
6315
6316 2013-05-21  Joel Brobecker  <brobecker@adacore.com>
6317
6318         * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
6319
6320 2013-05-21  Hui Zhu  <hui@codesourcery.com>
6321
6322         * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
6323         * breakpoint.h (dprintf_breakpoint_ops): Add extern.
6324         * mi/mi-cmd-break.c (ctype.h): New include.
6325         (gdb_obstack.h): New include.
6326         (mi_argv_to_format, mi_cmd_break_insert_1): New.
6327         (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
6328         (mi_cmd_dprintf_insert): New.
6329         * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
6330         * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
6331
6332 2013-05-20  Tom Tromey  <tromey@redhat.com>
6333
6334         * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
6335
6336 2013-05-20  Tom Tromey  <tromey@redhat.com>
6337
6338         * python/py-value.c (valpy_get_dynamic_type): Simplify
6339         dynamic_type assignment.  Use Py_XINCREF.
6340
6341 2013-05-20  Tom Tromey  <tromey@redhat.com>
6342
6343         * python/py-type.c (typy_fields): Unconditionally decref 'r'.
6344
6345 2013-05-20  Tom Tromey  <tromey@redhat.com>
6346
6347         * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
6348         (gdbpy_selected_frame): Move object-construction code
6349         out of TRY_CATCH.
6350
6351 2013-05-20  Tom Tromey  <tromey@redhat.com>
6352
6353         * python/py-arch.c (gdbpy_initialize_arch): Use
6354         gdb_pymodule_addobject.
6355         * python/py-block.c (gdbpy_initialize_blocks): Use
6356         gdb_pymodule_addobject.
6357         * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
6358         gdb_pymodule_addobject.
6359         * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
6360         gdb_pymodule_addobject.
6361         * python/py-event.c (gdbpy_initialize_event_generic): Use
6362         gdb_pymodule_addobject.
6363         * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
6364         gdb_pymodule_addobject.
6365         * python/py-evts.c (add_new_registry): Use
6366         gdb_pymodule_addobject.
6367         (gdbpy_initialize_py_events): Likewise.
6368         * python/py-finishbreakpoint.c
6369         (gdbpy_initialize_finishbreakpoints): Use
6370         gdb_pymodule_addobject.
6371         * python/py-frame.c (gdbpy_initialize_frames): Use
6372         gdb_pymodule_addobject.
6373         * python/py-function.c (gdbpy_initialize_functions): Use
6374         gdb_pymodule_addobject.
6375         * python/py-inferior.c (gdbpy_initialize_inferior): Use
6376         gdb_pymodule_addobject.
6377         * python/py-infthread.c (gdbpy_initialize_thread): Use
6378         gdb_pymodule_addobject.
6379         * python/py-objfile.c (gdbpy_initialize_objfile): Use
6380         gdb_pymodule_addobject.
6381         * python/py-param.c (gdbpy_initialize_parameters): Use
6382         gdb_pymodule_addobject.
6383         * python/py-progspace.c (gdbpy_initialize_pspace): Use
6384         gdb_pymodule_addobject.
6385         * python/py-symbol.c (gdbpy_initialize_symbols): Use
6386         gdb_pymodule_addobject.
6387         * python/py-symtab.c (gdbpy_initialize_symtabs): Use
6388         gdb_pymodule_addobject.
6389         * python/py-type.c (gdbpy_initialize_types): Use
6390         gdb_pymodule_addobject.
6391         * python/py-utils.c (gdb_pymodule_addobject): New function.
6392         * python/py-value.c (gdbpy_initialize_values): Use
6393         gdb_pymodule_addobject.
6394         * python/python-internal.h (gdb_pymodule_addobject): Declare.
6395         * python/python.c (_initialize_python): Use
6396         gdb_pymodule_addobject.
6397
6398 2013-05-20  Tom Tromey  <tromey@redhat.com>
6399
6400         * python/py-cmd.c (cmdpy_completer): Use explicit decref.
6401         * python/py-param.c (get_set_value, get_show_value): Use
6402         explicit decrefs.
6403         * python/python.c (start_type_printers, apply_type_printers):
6404         Use explicit decrefs.
6405
6406 2013-05-20  Tom Tromey  <tromey@redhat.com>
6407
6408         * python/py-evts.c (gdbpy_initialize_py_events): Don't
6409         incref the module.
6410
6411 2013-05-20  Tom Tromey  <tromey@redhat.com>
6412
6413         * python/python.c (gdbpy_run_events): Decref the result
6414         of PyObject_CallObject.
6415
6416 2013-05-20  Tom Tromey  <tromey@redhat.com>
6417
6418         * python/py-symtab.c (set_sal): Use
6419         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.  Return -1 on error.
6420         (symtab_and_line_to_sal_object): Update.
6421
6422 2013-05-20  Tom Tromey  <tromey@redhat.com>
6423
6424         * python/py-param.c (compute_enum_values): Decref 'item'.
6425
6426 2013-05-20  Tom Tromey  <tromey@redhat.com>
6427
6428         * mi/mi-main.c: Include python-internal.h.
6429         (mi_cmd_list_features): Check gdb_python_initialized.
6430         * python/py-inferior.c (python_on_normal_stop, python_on_resume)
6431         (python_inferior_exit, python_new_objfile, add_thread_object)
6432         (delete_thread_object, py_free_inferior): Check
6433         gdb_python_initialized.
6434         * python/py-prettyprint.c (apply_val_pretty_printer): Check
6435         gdb_python_initialized.
6436         * python/py-type.c (save_objfile_types): Check
6437         gdb_python_initialized.
6438         * python/python-internal.h (gdb_python_initialized): Declare.
6439         * python/python.c (ensure_python_env): Throw exception if
6440         Python not initialized.
6441         (before_prompt_hook, source_python_script_for_objfile)
6442         (start_type_printers, apply_type_printers,
6443         free_type_printers): Check gdb_python_initialized.
6444         * varobj.c (varobj_get_display_hint)
6445         (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
6446         (install_new_value_visualizer, varobj_set_visualizer)
6447         (value_get_print_value): Check gdb_python_initialized.
6448
6449 2013-05-20  Tom Tromey  <tromey@redhat.com>
6450
6451         * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
6452         Check errors.
6453         * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
6454         * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
6455         Check errors.
6456         * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
6457         Check errors.
6458         * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
6459         Check errors.
6460         * python/py-event.c (gdbpy_initialize_event): Return 'int'.
6461         Check errors.
6462         * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
6463         init function to return 'int'.
6464         * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
6465         Return 'int'.  Check errors.
6466         * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
6467         Check errors.
6468         * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
6469         Return 'int'.  Check errors.
6470         * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
6471         Check errors.
6472         * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
6473         Check errors.
6474         * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
6475         Check errors.
6476         * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
6477         Check errors.
6478         * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
6479         Check errors.
6480         * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
6481         Check errors.
6482         * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
6483         Check errors.
6484         * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
6485         Check errors.
6486         * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
6487         Check errors.
6488         * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
6489         Check errors.
6490         * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
6491         Check errors.
6492         * python/py-type.c (gdbpy_initialize_types): Return 'int'.
6493         Check errors.
6494         * python/py-value.c (gdbpy_initialize_values): Return 'int'.
6495         Check errors.
6496         * python/python-internal.h (gdbpy_initialize_auto_load,
6497         gdbpy_initialize_values, gdbpy_initialize_frames,
6498         gdbpy_initialize_symtabs, gdbpy_initialize_commands,
6499         gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
6500         gdbpy_initialize_blocks, gdbpy_initialize_types,
6501         gdbpy_initialize_functions, gdbpy_initialize_pspace,
6502         gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
6503         gdbpy_initialize_finishbreakpoints,
6504         gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
6505         gdbpy_initialize_thread, gdbpy_initialize_inferior,
6506         gdbpy_initialize_eventregistry, gdbpy_initialize_event,
6507         gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
6508         gdbpy_initialize_signal_event,
6509         gdbpy_initialize_breakpoint_event,
6510         gdbpy_initialize_continue_event,
6511         gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
6512         gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
6513         Update.  Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
6514         * python/python.c (gdb_python_initialized): New global.
6515         (gdbpy_initialize_events): Return 'int'.  Check errors.
6516         (_initialize_python): Check errors.  Set
6517         gdb_python_initialized.
6518
6519 2013-05-20  Tom Tromey  <tromey@redhat.com>
6520
6521         * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
6522         Decref the reslut of PyObject_CallMethod.
6523
6524 2013-05-20  Tom Tromey  <tromey@redhat.com>
6525
6526         * python/py-event.c (gdbpy_initialize_event_generic): Return
6527         early if PyType_Ready fails.
6528
6529 2013-05-20  Tom Tromey  <tromey@redhat.com>
6530
6531         * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
6532         as 'default' in the switch.
6533
6534 2013-05-20  Tom Tromey  <tromey@redhat.com>
6535
6536         * python/py-inferior.c (gdbpy_inferiors): Update.  Hoist
6537         get_addr_from_python calls out of TRY_CATCH.
6538         (infpy_write_memory, infpy_search_memory): Likewise.
6539         * python/py-utils.c (get_addr_from_python): Return negative
6540         value on error.  Use TRY_CATCH.
6541         * python/python-internal.h (get_addr_from_python): Use
6542         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
6543
6544 2013-05-20  Tom Tromey  <tromey@redhat.com>
6545
6546         * python/py-event.c (evpy_emit_event): Decref the
6547         result of PyObject_CallFunctionObjArgs.
6548
6549 2013-05-20  Tom Tromey  <tromey@redhat.com>
6550
6551         * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
6552         Correctly decref.
6553
6554 2013-05-20  Tom Tromey  <tromey@redhat.com>
6555
6556         * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
6557
6558 2013-05-20  Tom Tromey  <tromey@redhat.com>
6559
6560         * python/py-event.h (gdbpy_initialize_event_generic): Use
6561         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
6562         * python/py-evts.c (add_new_registry): Use
6563         CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
6564         * python/python-internal.h
6565         (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
6566
6567 2013-05-20  Tom Tromey  <tromey@redhat.com>
6568
6569         * python/py-arch.c (archpy_disassemble): Update.
6570         * python/py-type.c (typy_get_composite, typy_lookup_typename)
6571         (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
6572         * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
6573         * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
6574         macro.
6575         (GDB_PY_HANDLE_EXCEPTION): Update.
6576         (gdbpy_convert_exception): Update.  Use CPYCHECKER_SETS_EXCEPTION.
6577
6578 2013-05-20  Tom Tromey  <tromey@redhat.com>
6579
6580         * python/python-internal.h (events_object_type): Remove.
6581
6582 2013-05-20  Tom Tromey  <tromey@redhat.com>
6583
6584         * python/py-event.h (evpy_emit_event): Use
6585         CPYCHECKER_STEALS_REFERENCE_TO_ARG.
6586         * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
6587         New macro.
6588
6589 2013-05-20  Tom Tromey  <tromey@redhat.com>
6590
6591         * py-evtregistry.c (create_event_object): Decref
6592         eventregistry_object if PyList_New fails.
6593
6594 2013-05-20  Tom Tromey  <tromey@redhat.com>
6595
6596         * py-cmd.c (gdbpy_string_to_argv): Check result of
6597         PyList_New.
6598
6599 2013-05-20  Tom Tromey  <tromey@redhat.com>
6600
6601         * python/python.c (before_prompt_hook): Add cleanup to
6602         decref 'hook'.
6603
6604 2013-05-20  Tom Tromey  <tromey@redhat.com>
6605
6606         * python/py-function.c (fnpy_init): Decref result of
6607         PyObject_GetAttrString.
6608
6609 2013-05-20  Tom Tromey  <tromey@redhat.com>
6610
6611         * python/py-threadevent.c (get_event_thread): Use
6612         CPYCHECKER_RETURNS_BORROWED_REF.
6613         * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
6614         New define.
6615         (pspace_to_pspace_object, objfile_to_objfile_object)
6616         (find_thread_object): Use it.
6617
6618 2013-05-20  Tom Tromey  <tromey@redhat.com>
6619
6620         * python/py-arch.c (arch_object_type): Use
6621         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6622         * python/py-block.c (block_syms_iterator_object_type):
6623         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6624         * python/py-bpevent.c (breakpoint_event_object_type):
6625         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6626         * python/py-cmd.c (cmdpy_object_type): Use
6627         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6628         * python/py-continueevent.c (continue_event_object_type):
6629         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6630         * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
6631         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6632         * python/py-events.h (thread_event_object_type):
6633         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6634         * python/py-evtregistry.c (eventregistry_object_type): Use
6635         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6636         * python/py-exitedevent.c (exited_event_object_type):
6637         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6638         * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
6639         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6640         * python/py-function.c (fnpy_object_type): Use
6641         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6642         * python/py-inferior.c (inferior_object_type, membuf_object_type):
6643         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6644         * python/py-infthread.c (thread_object_type): Use
6645         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6646         * python/py-lazy-string.c (lazy_string_object_type):
6647         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6648         * python/py-newobjfileevent.c (new_objfile_event_object_type):
6649         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6650         * python/py-objfile.c (objfile_object_type): Use
6651         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6652         * python/py-param.c (parmpy_object_type):
6653         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6654         * python/py-progspace.c (pspace_object_type):
6655         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6656         * python/py-signalevent.c (signal_event_object_type):
6657         Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6658         * python/py-symtab.c (symtab_object_type, sal_object_type): Use
6659         CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6660         * python/py-type.c (type_object_type, field_object_type)
6661         (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6662         * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
6663         define.
6664         (value_object_type, block_object_type, symbol_object_type)
6665         (event_object_type, stop_event_object_type, breakpoint_object_type)
6666         (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6667
6668 2013-05-20  Andreas Tobler  <andreas@fgznet.ch>
6669
6670         * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
6671         (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
6672
6673 2013-05-20  Doug Evans  <dje@google.com>
6674
6675         When reading CU, stay in DWO.  Be more tolerent of bad debug info.
6676         For Fission.
6677         * dwarf2read.c (struct dwarf2_per_cu_data): New member
6678         reading_dwo_directly.
6679         (struct signatured_type): New member dwo_unit.
6680         (struct die_reader_specs): New member comp_dir.
6681         (create_signatured_type_table_from_index): Use malloc for
6682         all_type_units instead of objfile's obstack.
6683         (create_all_type_units): Ditto.
6684         (fill_in_sig_entry_from_dwo_entry): New function.
6685         (add_type_unit): New function.
6686         (lookup_dwo_signatured_type): New function.
6687         (lookup_dwp_signatured_type): New function.
6688         (lookup_signatured_type): New arg cu.  All callers updated.
6689         (init_cu_die_reader): Initialize comp_dir.
6690         (read_cutu_die_from_dwo): New arg stub_comp_dir.  All callers updated.
6691         Change assert of matching type signatures to call error on mismatch.
6692         (lookup_dwo_unit): Add assert.
6693         (init_tu_and_read_dwo_dies): New function.
6694         (init_cutu_and_read_dies): Call it.
6695         (build_type_unit_groups): Handle case of no type unit groups created.
6696         (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
6697         (lookup_dwo_cutu): Tweak complaint.
6698         (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
6699         (dwarf2_per_objfile_free): Free all_type_units.
6700
6701 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
6702
6703         * windows-nat.c (handle_unload_dll): Add missing empty line.
6704
6705 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
6706
6707         * dwarf2read.c (prototyped_function_p): New function.
6708         (read_subroutine_type): Use it.
6709
6710 2013-05-20  Joel Brobecker  <brobecker@adacore.com>
6711
6712         * rs6000-aix-tdep.c: De-indent some example code provided
6713         as a comment.
6714
6715 2013-05-17  Edjunior Machado  <emachado@linux.vnet.ibm.com>
6716
6717         * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
6718         region is ok for a hardware watchpoint using the new ptrace interface
6719         on Power servers.
6720
6721 2013-05-17  Doug Evans  <dje@google.com>
6722
6723         * NEWS: Mention new maintenance commands check-symtabs, and
6724         expand-symtabs, and renamed check-psymtabs.
6725         * psymtab.c (maintenance_check_psymtabs): Renamed from
6726         maintenance_check_symtabs.  Only process already-expanded symbol
6727         tables.
6728         (_initialize_psymtab): Update.
6729         * symmisc.c (maintenance_check_symtabs): New function.
6730         (maintenance_expand_name_matcher): New function
6731         (maintenance_expand_file_matcher): New function
6732         (maintenance_expand_symtabs): New function.
6733         (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
6734         commands.
6735
6736 2013-05-17  Tom Tromey  <tromey@redhat.com>
6737
6738         * python/py-inferior.c (infpy_read_memory): Don't call
6739         PyErr_SetString if PyObject_New fails.
6740         * python/py-frame.c (frame_info_to_frame_object): Don't call
6741         PyErr_SetString if PyObject_New fails.
6742
6743 2013-05-17  Pavel Chupin  <pavel.v.chupin@intel.com>
6744
6745         * acinclude.m4: Add check for dlopen in libdl.
6746         * configure.ac: Ditto.
6747         * configure: Regenerate.
6748
6749 2013-05-17  Phil Muldoon  <pmuldoon@redhat.com>
6750
6751         * frame.c (frame_stash): Convert to htab.
6752         (frame_addr_hash): New function.
6753         (frame_addr_hash_eq): New function.
6754         (frame_stash_create): Convert function to create
6755         a hash table.
6756         (frame_stash_add): Convert function to add an entry to a hash
6757         table.
6758         (frame_stash_find): Convert function to search the hash table.
6759         (frame_stash_invalidate): Convert function to empty the hash
6760         table.
6761         (get_frame_id): Only add to stash if a frame_id is created.
6762         (_initialize_frame): Call frame_stash_create.
6763
6764 2013-05-16  Yue Lu  <hacklu.newborn@gmail.com>  (tiny change)
6765
6766         * configure.ac: Ensure MIG is available when building for GNU Hurd
6767         hosts.
6768         * configure: Regenerate.
6769
6770 2013-05-16  Joel Brobecker  <brobecker@adacore.com>
6771
6772         * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
6773
6774 2013-05-16  Joel Brobecker  <brobecker@adacore.com>
6775
6776         * ada-lang.c (ada_make_symbol_completion_list): Make sure
6777         all cleanups are done before returning from this function.
6778
6779 2013-05-15  Joel Brobecker  <brobecker@adacore.com>
6780
6781         * utils.h: #include "exceptions.h".
6782         (enum errors): Remove partial declaration.
6783
6784 2013-05-15  Joel Brobecker  <brobecker@adacore.com>
6785
6786         * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
6787         * gdbarch.h, gdbarch.c: Regenerate.
6788         * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
6789         handling.
6790
6791         * rs6000-aix-tdep.h: New file.
6792         * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
6793         * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
6794         "xml-utils.h".
6795         (struct field_info, struct ld_info_desc): New types.
6796         (ld_info32_desc, ld_info64_desc): New static constants.
6797         (struct ld_info): New type.
6798         (rs6000_aix_extract_ld_info): New function.
6799         (rs6000_aix_shared_library_to_xml): Likewise.
6800         (rs6000_aix_ld_info_to_xml): Likewise.
6801         (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
6802         (rs6000_aix_init_osabi): Add call to
6803         set_gdbarch_core_xfer_shared_libraries_aix.
6804         * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
6805         Remove "xml-utils.h" include.
6806         (LdInfo): Delete typedef.
6807         (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
6808         Delete macros.
6809         (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
6810         Adjust code accordingly.
6811         (rs6000_core_ldinfo): Delete, folded into
6812         rs6000_aix_core_xfer_shared_libraries_aix.
6813         (rs6000_xfer_shared_library): Delete.
6814         (rs6000_xfer_shared_libraries): Reimplement.
6815
6816 2013-05-15  Markus Metzger  <markus.t.metzger@intel.com>
6817
6818         * record.c (record_goto_cmdlist): New.
6819         (cmd_record_goto): Split into this ...
6820         (cmd_record_goto_begin): ... this
6821         (cmd_record_goto_end): ... and this.
6822         (_initialize_record): Change "record goto" to prefix command.
6823         Add commands for "record goto begin" and "record goto end".
6824         Add an alias for "record goto start" to "record goto begin".
6825
6826 2013-05-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
6827
6828         * linespec.c (convert_linespec_to_sals): New comment for
6829         SOURCE_FILENAME assignment.
6830
6831 2013-05-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
6832
6833         * cleanups.c (restore_my_cleanups): Replace gdb_assert by
6834         internal_warning.
6835
6836 2013-05-14  Tom Tromey  <tromey@redhat.com>
6837
6838         * eval.c (parse_and_eval_long): Make 'exp' const.
6839         * value.h (parse_and_eval_long): Update.
6840
6841 2013-05-14  Tom Tromey  <tromey@redhat.com>
6842
6843         * ui-file.c (gdb_fopen): Make arguments const.
6844         * ui-file.h (gdb_fopen): Make arguments const.
6845
6846 2013-05-14  Tom Tromey  <tromey@redhat.com>
6847
6848         * remote.c (remote_set_trace_notes): Make arguments const.
6849         * target.c (update_current_target): Update cast.
6850         * target.h (to_set_trace_notes): Make arguments const.
6851
6852 2013-05-14  Tom Tromey  <tromey@redhat.com>
6853
6854         * go32-nat.c (go32_terminal_info): Make 'args' const.
6855         * inferior.h (child_terminal_info): Update.
6856         * inflow.c (child_terminal_info): Make 'args' const.
6857         * target.c (default_terminal_info): Make 'args' const.
6858         (debug_to_terminal_save_ours): Likewise.
6859         * target.h (struct target_ops) <to_terminal_info>: Make argument
6860         const.
6861
6862 2013-05-13  Tom Tromey  <tromey@redhat.com>
6863
6864         * gcore.c (create_gcore_bfd): Make 'filename' const.
6865         * gcore.h (create_gcore_bfd): Make 'filename' const.
6866         * record-full.c (record_full_save): Make 'recfilename' const.
6867         * target.c (target_save_record): Make 'filename' const.
6868         * target.h (struct target_ops) <to_save_record>: Make 'filename'
6869         const.
6870         (target_save_record): Likewise.
6871
6872 2013-05-13  Tom Tromey  <tromey@redhat.com>
6873
6874         PR gdb/15338:
6875         * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
6876         ranges section has been read.
6877
6878 2013-05-13  Tom Tromey  <tromey@redhat.com>
6879
6880         PR exp/15364:
6881         * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
6882         STRUCTOP_PTR>: Return a not_lval value for
6883         EVAL_AVOID_SIDE_EFFECTS.
6884         * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
6885         for EVAL_AVOID_SIDE_EFFECTS.
6886
6887 2013-05-13  Joel Brobecker  <brobecker@adacore.com>
6888
6889         * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
6890         floating point registers to register type before storing
6891         value.
6892         * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
6893         Likewise.
6894
6895 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
6896             Tom Tromey  <tromey@redhat.com>
6897
6898         * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
6899         New functions.
6900         * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
6901         Declare.
6902         * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
6903         (darwin_ptrace_him): Use unmark_fd_no_cloexec.
6904         * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
6905         (inf_ttrace_prepare): Use mark_fd_no_cloexec.
6906
6907 2013-05-10  Freddie Chopin  <freddie_chopin@op.pl>
6908             Tom Tromey  <tromey@redhat.com>
6909
6910         PR build/15414:
6911         * configure: Rebuild.
6912         * configure.ac (build_warnings): Do not use -Wformat-nonliteral
6913         with -Wno-format.
6914
6915 2013-05-10  Pedro Alves  <palves@redhat.com>
6916
6917         * remote.c (_initialize_remote): Fix spelling of
6918         qXfer:traceframe-info:read packet in packet config command.
6919
6920 2013-05-10  David Taylor  <dtaylor@emc.com>
6921
6922         PR remote/15455
6923
6924         * remote.c (remote_trace_set_readonly_regions): Do not overwrite
6925         "QTro" at start of packet.
6926
6927 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
6928
6929         * solib-aix.c (solib_aix_relocate_section_addresses):
6930         For the .bss section action, apply the same offset as
6931         the .data section.
6932
6933 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
6934
6935         * solib-aix.c (solib_aix_relocate_section_addresses):
6936         Remove FIXME comment.
6937
6938 2013-05-10  Joel Brobecker  <brobecker@adacore.com>
6939
6940         PR tdep/15420:
6941         * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
6942         New functions, directly copied from sparc-sol-thread.c.
6943         * sparc-sol-thread.c: Delete.
6944         * configure.ac: Remove code handling sparc-solaris-thread.c.
6945         * configure: Regenerate.
6946
6947 2013-05-10  Phil Muldoon  <pmuldoon@redhat.com>
6948
6949         * stack.c (backtrace_command_1): Add "no-filters", and Python frame
6950         filter logic.
6951         (backtrace_command): Add "no-filters" option parsing.
6952         (_initialize_stack): Alter help to reflect "no-filters" option.
6953         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
6954         (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
6955         (py-frame.o): Add target
6956         * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
6957         filter files.
6958         * python/python.h: Add new frame filter constants, and flag enum.
6959         (apply_frame_filter): Add definition.
6960         * python/python.c (apply_frame_filter): New non-Python
6961         enabled function.
6962         * python/py-utils.c (py_xdecref): New function.
6963         (make_cleanup_py_xdecref): Ditto.
6964         * python/py-objfile.c: Declare frame_filters dictionary.
6965         (objfpy_dealloc): Add frame_filters dealloc.
6966         (objfpy_new): Initialize frame_filters attribute.
6967         (objfile_to_objfile_object): Ditto.
6968         (objfpy_get_frame_filters): New function.
6969         (objfpy_set_frame_filters): New function.
6970         * python/py-progspace.c: Declare frame_filters dictionary.
6971         (pspy_dealloc): Add frame_filters dealloc.
6972         (pspy_new): Initialize frame_filters attribute.
6973         (pspacee_to_pspace_object): Ditto.
6974         (pspy_get_frame_filters): New function.
6975         (pspy_set_frame_filters): New function.
6976         * python/py-framefilter.c: New file.
6977         * python/lib/gdb/command/frame_filters.py: New file.
6978         * python/lib/gdb/frames.py: New file.
6979         * python/lib/gdb/__init__.py: Initialize global frame_filters
6980         dictionary
6981         * python/lib/gdb/FrameDecorator.py: New file.
6982         * python/lib/gdb/FrameIterator.py: New file.
6983         * mi/mi-cmds.c (mi_cmds): Add frame filters command.
6984         * mi/mi-cmds.h: Declare.
6985         * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
6986         --no-frame-filter logic, and Python frame filter logic.
6987         (stack_enable_frame_filters): New function.
6988         (parse_no_frame_option): Ditto.
6989         (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
6990         filter logic.
6991         (mi_cmd_stack_list_locals): Ditto.
6992         (mi_cmd_stack_list_args): Ditto.
6993         (mi_cmd_stack_list_variables): Ditto.
6994         * NEWS: Add frame filter note.
6995
6996 2013-05-09  Doug Evans  <dje@google.com>
6997
6998         * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
6999         All callers updated.
7000         (syms_from_objfile): Ditto.  Make static.
7001         (symbol_file_add_with_addrs): Renamed from
7002         symbol_file_add_with_addrs_or_offsets.  Delete args offsets,
7003         num_offsets.  All callers updated.
7004         * symfile.h (syms_from_objfile): Delete.
7005
7006         * symfile.c (decrement_reading_symtab): Add assert.
7007         (increment_reading_symtab): Ditto.
7008
7009 2013-05-09  Joel Brobecker  <brobecker@adacore.com>
7010
7011         * source.c (forward_search_command): Replace call to getc
7012         by call to fgetc.
7013         (reverse_search_command): Likewise.
7014
7015 2013-05-08  Doug Evans  <dje@google.com>
7016
7017         * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
7018         matching test.
7019
7020 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
7021
7022         * sol-thread.c (info_cb): Factorize the code a little.
7023
7024 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
7025
7026         * sol-thread.c (info_cb): Rework the output of the "maintenance
7027         info sol-threads" command a bit.
7028
7029 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
7030
7031         * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
7032         Replace ti.ti_startfunc by ti.ti_pc.
7033
7034 2013-05-08  Joel Brobecker  <brobecker@adacore.com>
7035
7036         * solib-aix.c (solib_aix_free_library_list): New function
7037         for the case where HAVE_LIBEXPAT is not defined.
7038
7039 2013-05-07  Sergio Durigan Junior  <sergiodj@redhat.com>
7040
7041         PR breakpoints/15413:
7042         * breakpoint.c (condition_completer): Simplify the code to
7043         disconsider multiple locations of breakpoints when completing the
7044         "condition" command.
7045
7046 2013-05-07  Pierre Muller  <muller@sourceware.org>
7047
7048         * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
7049         instead of <sys/wait.h>.
7050
7051 2013-05-07  Pierre Muller  <muller@sourceware.org>
7052
7053         * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
7054         trailing new line from warning message.
7055
7056 2013-05-07  Pierre Muller  <muller@sourceware.org>
7057
7058         * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
7059         (PC_SOLIB): Change type from ari_deprecate to ari_regression.
7060
7061 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
7062
7063         * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
7064         error message (ARI fix).
7065
7066 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
7067
7068         * features/library-list-aix.dtd: Replace library-list by
7069         library-list-aix.
7070         * rs6000-nat.c: Replace library-list by library-list-aix
7071         throughout.
7072         * solib-aix.c: Likewise.
7073
7074 2013-05-07  Joel Brobecker  <brobecker@adacore.com>
7075
7076         * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
7077         Renames TARGET_OBJECT_AIX_LIBRARIES.
7078         * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
7079         TARGET_OBJECT_LIBRARIES_AIX throughout.
7080         * solib-aix.c: Likwise.
7081
7082 2013-05-07  Yao Qi  <yao@codesourcery.com>
7083
7084         * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
7085         (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
7086
7087 2013-05-07  Yao Qi  <yao@codesourcery.com>
7088
7089         * solib-dsbt.c (enable_break): Declare.
7090         (dsbt_current_sos): Remove call to enable_break2.
7091         (enable_break2): Rename to enable_break.  Set solib breakpoint
7092         on '_dl_debug_state'.
7093         (enable_break): Remove.
7094
7095 2013-05-07  Luis Machado  <lgustavo@codesourcery.com>
7096
7097         * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
7098         debug state prior to replicating existing hardware watchpoints or
7099         breakpoints.
7100
7101 2013-05-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
7102
7103         * gcore.c (gcore_create_callback): Ignore sections with
7104         separate_debug_objfile_backlink != NULL.
7105
7106 2013-05-06  Sandra Loosemore  <sandra@codesourcery.com>
7107             Andrew Jenner  <andrew@codesourcery.com>
7108             Chung-Lin Tang  <cltang@codesourcery.com>
7109             Julian Brown  <julian@codesourcery.com>
7110
7111         Based on the nios2-elf port from Altera Corporation.
7112
7113         * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
7114         nios2-linux-tdep.o.
7115         (HFILES_NO_SRCDIR): Add nios2-tdep.h.
7116         (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
7117         * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
7118         * nios2-tdep.h: New.
7119         * nios2-tdep.c: New.
7120         * nios2-linux-tdep.c: New.
7121         * features/Makefile (WHICH): Add nios2-linux.
7122         (nios2-linux-expedite): Set.
7123         * features/nios2-cpu.xml: New.
7124         * features/nios2.xml: New.
7125         * features/nios2-linux.xml: New.
7126         * features/nios2.c: New (autogenerated).
7127         * features/nios2-linux.c: New (autogenerated).
7128         * regformats/nios2-linux.dat: New (autogenerated).
7129         * NEWS (Changes since GDB 7.6): Add new Nios II targets
7130         and commands.
7131
7132 2013-05-06  Doug Evans  <dje@google.com>
7133
7134         * symfile.c: Whitespace cleanup.
7135
7136         * solist.h (struct target_so_ops): New member clear_so.
7137         * solib-svr4.c (svr4_clear_so): New function.
7138         (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
7139         * solib.c (clear_so): Renamed from free_so_symbols.
7140         All callers updated.  Call target clear_so if it exists.
7141
7142 2013-05-06  Tom Tromey  <tromey@redhat.com>
7143
7144         * ada-lang.c (ada_value_primitive_packed_val): Don't
7145         call value_incref.
7146         * value.c (set_value_parent): Incref the new parent and decref
7147         the old parent.
7148         (value_copy, value_primitive_field): Use set_value_parent.
7149
7150 2013-05-06  Tom Tromey  <tromey@redhat.com>
7151
7152         * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
7153         (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
7154         if needed.
7155         * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
7156         * dwarf2read.c (write_constant_as_bytes)
7157         (dwarf2_fetch_constant_bytes): New functions.
7158
7159 2013-05-06  Tom Tromey  <tromey@redhat.com>
7160
7161         * dwarf2read.c (dwarf2_const_value_data): Remove unused
7162         parameters.
7163         (dwarf2_const_value_attr): Update.
7164
7165 2013-05-06  Tom Tromey  <tromey@redhat.com>
7166
7167         * somread.c (som_symfile_offsets): Add 'const' to addrs.
7168         * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
7169         * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
7170         Remove declaration.
7171
7172 2013-05-06  Tom Tromey  <tromey@redhat.com>
7173
7174         * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
7175         objfile's obstack.
7176
7177 2013-05-06  Doug Evans  <dje@google.com>
7178
7179         * dbxread.c (process_one_symbol): Constify section_offsets parameter.
7180         * stabsread.h (process_one_symbol): Update declaration.
7181         * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
7182         * elfread.c (elf_symfile_relocate_probe): Ditto.
7183         * psymtab.c (relocate_psymtabs): Ditto.
7184         * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
7185         (objfile_relocate): Ditto.
7186         * objfiles.h (objfile_relocate): Update declaration.
7187         * symfile.c (relative_addr_info_to_section_offsets): Constify
7188         addrs parameter.
7189         (default_symfile_offsets): Ditto.
7190         (syms_from_objfile_1): Constify offsets parameter.
7191         (syms_from_objfile): Ditto.
7192         (symbol_file_add_with_addrs_or_offsets): Ditto.
7193         (symfile_map_offsets_to_segments): Constify data parameter.
7194         * symfile.h (struct quick_symbol_functions): Constify new_offsets,
7195         delta parameters of member relocate.
7196         (struct sym_probe_fns): Constify new_offsets,
7197         delta parameters of member sym_relocate_probe.
7198         (struct sym_fns): Constify section_addr_info parameter of member
7199         sym_offsets.
7200         (relative_addr_info_to_section_offsets): Update declaration.
7201         (default_symfile_offsets): Ditto.
7202         (syms_from_objfile): Ditto.
7203         (symfile_map_offsets_to_segments): Ditto.
7204
7205         * symfile.c (syms_from_objfile_1): Use correct section count when
7206         objfile->sf == NULL.
7207
7208 2013-05-06  Mike Frysinger  <vapier@gentoo.org>
7209
7210         * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
7211
7212 2013-05-06  Doug Evans  <dje@google.com>
7213
7214         * psympriv.h (struct partial_symtab): Augment comment for member
7215         section_offsets.
7216
7217 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7218
7219         Reimplement shared library support on ppc-aix...
7220         * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
7221         * features/library-list-aix.dtd: New file.
7222         * solib-aix.h, solib-aix.c: New file.
7223         * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
7224         (rs6000_find_toc_address_hook): Delete.
7225         (rs6000_push_dummy_call): Rewrite code setting the TOC value.
7226         (rs6000_aix_init_osabi): Register solib_aix_so_ops.
7227         * rs6000-nat.c: Remove "xcoffsolib.h" include.  Include
7228         "xml-utils.h".
7229         (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
7230         (vmap_symtab, fixup_breakpoints): Delete.
7231         (rs6000_xfer_shared_libraries): New function.
7232         (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
7233         (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
7234         (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
7235         (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
7236         (rs6000_xfer_shared_library): New function.
7237         (find_toc_address): Delete.
7238         (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
7239         * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
7240         * xcoffread.c (record_minimal_symbol): Reloate symbol address
7241         before creating minimal symbol.  Adjust function description
7242         accordingly.
7243         (scan_xcoff_symtab): Replace call to
7244         prim_record_minimal_symbol_and_info by call to
7245         record_minimal_symbol.
7246         (xcoff_symfile_offsets): Reimplement mostly as a wrapper
7247         around default_symfile_offsets.
7248         * configure.tgt: Add solib-aix.o to gdb_target_obs for
7249         powerpc-aix targets.
7250         * config/rs6000/nm-rs6000.h: Delete.
7251         * config/powerpc/aix.mh (NAT_FILE): Delete.
7252         (NATDEPFILES): Remove xcoffsolib.o.
7253         * Makefile.in (XMLFILES): Add library-list-aix.dtd.
7254         (ALL_TARGET_OBS): Add solib-aix.o.
7255         (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
7256         config/rs6000/nm-rs6000.h.  Add solib-aix.h.
7257         (ALLDEPFILES): Add solib-aix.c.  Remove xcoffsolib.c.
7258         * xcoffsolib.h, xcoffsolib.c: Delete.
7259
7260         * solib.c (reload_shared_libraries): Remove reference to
7261         SOLIB_CREATE_INFERIOR_HOOK.
7262         * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
7263         (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
7264         (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
7265         comment.
7266         * corelow.c (deprecated_core_resize_section_table): Delete.
7267         * exec.c: Remove include of xcoffsolib.h".
7268         (map_vmap, vmap): Delete.
7269         (exec_close_1): Remove references to vmap.
7270         (exec_file_attach): Remove vmap handling code, and reference
7271         to DEPRECATED_IBM6000_TARGET.
7272         (bfdsec_to_vmap): Delete.
7273         (exec_files_info): Remove block of code handling VMAP.
7274         * infcmd.c (post_create_inferior): Remove reference to
7275         SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
7276         * infrun.c (follow_exec): Remove reference to
7277         SOLIB_CREATE_INFERIOR_HOOK.
7278         * stack.c (print_frame): Remove reference to PC_SOLIB.
7279         * solib-dsbt.c (dsbt_current_sos): Adjust comment.
7280         (dsbt_relocate_main_executable): Likewise.
7281         * solib-frv.c (frv_current_sos): Likewise.
7282
7283 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7284
7285         * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
7286         to target_write_memory and target_read_memory.
7287
7288 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7289
7290         * darwin-nat.c (darwin_setup_fake_stop_event): New function.
7291         (darwin_attach): Adjust using darwin_setup_fake_stop_event.
7292
7293 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7294
7295         * darwin-nat.c: Replace all "%x" instances in format strings
7296         into "0x%x" throughout.
7297
7298 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7299
7300         * darwin-nat.c (darwin_mourn_inferior): Replace call to
7301         gdb_assert by call to MACH_CHECK_ERROR.
7302         (darwin_attach_pid): Raise an error rather than a failed
7303         assertion when various system calls failed.  Report a warning
7304         instead of raising a failed assertion when PREV_NOT is not NULL
7305         after call to mach_port_request_notification.
7306         (darwin_ptrace_me): Raise an error rather than a failed
7307         assertion when read returns nonzero.
7308
7309 2013-05-06  Joel Brobecker  <brobecker@adacore.com>
7310
7311         * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
7312
7313 2013-05-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
7314
7315         * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
7316
7317 2013-05-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
7318
7319         * event-top.c (display_gdb_prompt): Call missing do_cleanups.
7320         * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
7321         * symfile.c (symfile_bfd_open): New variable back_to.  Do not leave
7322         a stale cleanup.  Fix double free of NAME.
7323
7324 2013-05-04  Eli Zaretskii  <eliz@gnu.org>
7325
7326         * windows-nat.c (windows_delete_thread): Accept an additional
7327         argument, the thread's exit code, and announce thread death when
7328         print_thread_events is non-zero and we are deleting a thread that
7329         is not the main thread.
7330         (get_windows_debug_event): Pass thread exit code to
7331         windows_delete_thread.
7332
7333 2013-05-03  Kevin Buettner  <kevinb@redhat.com>
7334
7335         * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
7336         (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
7337         (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
7338         (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
7339         (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
7340         (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
7341         (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
7342         (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
7343         (gdbarch_tdep): New struct.
7344         (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
7345         E_NUM_REGS.
7346         (v850e3v5_register_name): New function.
7347         (v850_register_type): v850e3v5 vector registers are 64-bits wide.
7348         (v850_use_struct_convention): Add `gdbarch' parameter.  Add new
7349         code handling the struct return conventions for the RH850 ABI.
7350         Update all callers.
7351         (v850_eight_byte_align_p): New function.
7352         (v850_push_call_dummy): Push structs by value, not by reference
7353         for the RH850 ABI.  Add support for eight byte alignment.
7354         (v850_dbtrap_breakpoint_from_pc): New function.
7355         (v850_gdbarch_init): Add ABI detection code.  Register
7356         v850e3v5_register_name for the v850e3v5 architecture.  Set the
7357         number of registers for v850e3v5.  Register
7358         v850_dbtrap_breakpoint_from_pc as appropriate.
7359         (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
7360
7361 2013-05-03  Doug Evans  <dje@google.com>
7362
7363         * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
7364         of bfd_count_sections.
7365         * solib-target.c (solib_target_relocate_section_addresses): Ditto.
7366         * symfile.c (default_symfile_offsets): Ditto.
7367         (syms_from_objfile_1): Ditto.  Make dummy addrs list an array of
7368         one entry, not bfd_count_sections entries.
7369
7370 2013-05-03  Kevin Buettner  <kevinb@redhat.com>
7371
7372         * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
7373         `save' and `restore' register groups.  Don't include SPL
7374         or SPH in these groups.
7375         (rl78_dwarf_reg_to_regnum):  Adjust mapping for
7376         RL78_PC_REGNUM.  Add mappings for RL78_PSW_REGNUM,
7377         RL78_ES_REGNUM, and RL78_CS_REGNUM.
7378         (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4.  Invoke
7379         dwarf2_append_unwinders().
7380
7381 2013-05-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
7382
7383         * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
7384         ignore SIGINT and SIGTRAP in case these internal signals are
7385         caught explicitely.
7386
7387 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
7388
7389         * darwin-nat.c (darwin_read_write_inferior): Change types
7390         of parameters rdaddr and wraddr to "gdb_byte *". Change type
7391         of copy_count to "mach_msg_type_number_t".
7392         (darwin_read_dyld_info): Change type of parameter
7393         rdaddr to "gdb_byte *".
7394
7395 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
7396
7397         * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
7398         of &info->load_map from "char *" to "gdb_byte *".
7399
7400 2013-05-01  Joel Brobecker  <brobecker@adacore.com>
7401
7402         * ia64-tdep.c (ia64_access_fpreg): Change cast of val
7403         from "char *" to "gdb_byte *".
7404         (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
7405
7406 2013-04-30  Doug Evans  <dje@google.com>
7407
7408         * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
7409         (init_cutu_and_read_dies): Flag a complaint, not error, for bad
7410         DWO stub.  If DWO isn't found, just use stub.
7411         (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
7412
7413         * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
7414         calling init_cutu_and_read_dies.
7415
7416 2013-03-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
7417
7418         * target-descriptions.c (maint_print_c_tdesc_cmd):
7419         Add case to parse structures as register types and
7420         bitfields.
7421
7422 2013-04-30  Walfred Tedeschi  <walfred.tedeschi@intel.com>
7423
7424         * MAINTAINERS (Write After Approval): Add myself to the list.
7425
7426 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
7427
7428         * sol-thread.c (rw_common): Change type of parameter "buf"
7429         to "gdb_byte *".
7430         (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
7431         rw_common to "gdb_byte *" instead of "char *".
7432
7433 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
7434
7435         * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
7436         of local variable msym to const struct bound_minimal_symbol.
7437         Adjust use accordingly.
7438         [ti.ti_state == TD_THR_SLEEP]: Likewise.
7439
7440 2013-04-30  Samuel Thibault  <samuel.thibault@gnu.org>
7441
7442         * i386gnu-nat.c (CREG_OFFSET): New macro.
7443         (creg_offset): New array.
7444         (CREG_ADDR): Use creg_offset instead of reg_offset.
7445
7446 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
7447
7448         * mep-tdep.c (mep_write_pc): Delete.
7449         (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
7450         Add call to set_gdbarch_pc_regnum.
7451
7452 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
7453
7454         * common/filestuff.c: Replace #include <dirent.h> by
7455         #include "gdb_dirent.h".
7456
7457 2013-04-30  Joel Brobecker  <brobecker@adacore.com>
7458
7459         * common/filestuff.c: Replace #include <sys/stat.h> by
7460         #include "gdb_stat.h".
7461
7462 2013-04-29  Pierre Muller  <muller@sourceware.org>
7463
7464         * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
7465         editCase function rule.
7466         (get_DW_AT_signature_type): Likewise.
7467
7468 2013-04-29  Joel Brobecker  <brobecker@adacore.com>
7469
7470         * m32r-tdep.c (m32r_write_pc): Delete.
7471         (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
7472         Add call to set_gdbarch_pc_regnum.
7473
7474 2013-04-29  Pierre Muller  <muller@sourceware.org>
7475
7476         * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
7477
7478 2013-04-29  Joel Brobecker  <brobecker@adacore.com>
7479
7480         * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
7481
7482 2013-04-28  Yao Qi  <yao@codesourcery.com>
7483
7484         * solib-dsbt.c (fetch_loadmap): Re-indent.
7485         (displacement_from_map, enable_break2): Likewise.
7486         (dsbt_relocate_section_addresses): Likewise.
7487
7488 2013-04-26  Joel Brobecker  <brobecker@adacore.com>
7489
7490         GDB 7.6 released.
7491
7492 2013-04-25  Andreas Kaufmann  <Andreas.Kaufmann@synopsys.com>
7493
7494         PR corefiles/14983:
7495         * dwarf2read.c (process_full_comp_unit): Always create a static
7496         block.
7497
7498 2013-04-25  Hui Zhu  <hui@codesourcery.com>
7499
7500         * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
7501         to loc->cmd_bytecode.
7502
7503 2013-04-24  Doug Evans  <dje@google.com>
7504
7505         * dwarf2read.c (setup_type_unit_groups): Fix comment.
7506
7507 2013-04-22  Keith Seitz  <keiths@redhat.com>
7508
7509         * tracepoint.c (trace_save):  Call the writer's start method.
7510
7511 2013-04-24  Muhammad Bilal  <mbilal@codesourcery.com>
7512
7513         PR gdb/10462
7514         * cli/cli-decode.c (lookup_command): Show an error if there is no space
7515         before argument.
7516
7517 2013-04-23  Tom Tromey  <tromey@redhat.com>
7518
7519         * common/filestuff.c: Check USE_WIN32API before including
7520         sys/socket.h.
7521         (HAVE_F_GETFD): New define.
7522         (mark_cloexec): Check HAVE_F_GETFD.
7523         (gdb_open_cloexec): Change 'mode' to unsigned long.
7524         (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
7525         (gdb_pipe_cloexec): Check HAVE_PIPE.
7526         * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
7527         long.
7528
7529 2013-04-23  Hui Zhu  <hui@codesourcery.com>
7530
7531         PR gdb/15293
7532         * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
7533
7534 2013-04-23  Hui Zhu  <hui@codesourcery.com>
7535
7536         PR gdb/15165
7537         * breakpoint.c (dprintf_print_recreate): New.
7538         (save_breakpoints): Let it not save dprintf commands.
7539         (initialize_breakpoint_ops): Set dprintf_print_recreate.
7540
7541 2013-04-22  Tom Tromey  <tromey@redhat.com>
7542
7543         PR gdb/7912:
7544         * Makefile.in (SFILES): Add filestuff.c
7545         (COMMON_OBS): Add filestuff.o.
7546         (filestuff.o): New target.
7547         * auto-load.c (auto_load_objfile_script_1): Use
7548         gdb_fopen_cloexec.
7549         * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
7550         * cli/cli-cmds.c (shell_escape): Call close_most_fds.
7551         * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
7552         * common/agent.c (gdb_connect_sync_socket): Use
7553         gdb_socket_cloexec.
7554         * common/filestuff.c: New file.
7555         * common/filestuff.h: New file.
7556         * common/linux-osdata.c (linux_common_core_of_thread)
7557         (command_from_pid, commandline_from_pid, print_source_lines)
7558         (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
7559         (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
7560         gdb_fopen_cloexec.
7561         * common/linux-procfs.c (linux_proc_get_int)
7562         (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
7563         * config.in, configure: Rebuild.
7564         * configure.ac: Don't check for sys/socket.h.  Check for
7565         fdwalk, pipe2.
7566         * corelow.c (core_open): Use gdb_open_cloexec.
7567         * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
7568         * fork-child.c (fork_inferior): Call close_most_fds.
7569         * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
7570         * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
7571         * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
7572         Use gdb_fopen_cloexec.
7573         (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
7574         gdb_open_cloexec.
7575         (linux_async_pipe): Use gdb_pipe_cloexec.
7576         * remote-fileio.c (remote_fileio_func_open): Use
7577         gdb_open_cloexec.
7578         * remote.c (remote_file_put, remote_file_get): Use
7579         gdb_fopen_cloexec.
7580         * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
7581         close_most_fds.
7582         * ser-tcp.c (net_open): Use gdb_socket_cloexec.
7583         * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
7584         * solib.c (solib_find): Use gdb_open_cloexec.
7585         * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
7586         * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
7587         (tfile_open): Use gdb_open_cloexec.
7588         * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
7589         * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
7590         * xml-support.c (xml_fetch_content_from_file): Use
7591         gdb_fopen_cloexec.
7592         * main.c (captured_main): Call notice_open_fds.
7593
7594 2013-04-22  Edjunior Machado  <emachado@linux.vnet.ibm.com>
7595
7596         * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
7597         'char *' to 'gdb_byte *'.
7598         (gdbsim_store_register): Change the type of 'tmp' from 'char' to
7599         'gdb_byte'.
7600
7601 2013-04-22  Yao Qi  <yao@codesourcery.com>
7602
7603         * infrun.c: Fix typo in comment.
7604
7605 2013-04-22  Andrew Haley  <aph@redhat.com>
7606
7607         * arm-tdep.c (BranchDest): Cast result as "unsigned long",
7608         instead of "long".
7609
7610 2013-04-20  Yao Qi  <yao@codesourcery.com>
7611
7612         * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
7613         'char *' to 'gdb_byte *'.  Cast the return value of
7614         'bt_ctf_get_char_array' to 'gdb_byte *'.
7615
7616 2013-04-19  Pedro Alves  <palves@redhat.com>
7617
7618         * configure.ac (build_warnings): Replace -Wno-pointer-sign with
7619         -Wpointer-sign.
7620         * configure: Regenerate.
7621
7622 2013-04-19  Pedro Alves  <palves@redhat.com>
7623
7624         * ser-tcp.c (net_read_prim): Cast second argument to recv to
7625         'void *'.
7626
7627 2013-04-19  Pedro Alves  <palves@redhat.com>
7628
7629         * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
7630         Change type of 'myaddr' parameter to gdb_byte pointer.
7631         (monitor_write_memory_longlongs): Likewise.  Cast 'myaddr' pointer
7632         to 'long long' pointer instead of to 'unsigned long long'.
7633         (monitor_write_memory_block, monitor_read_memory_single)
7634         (monitor_read_memory): Change type of 'myaddr' parameter to
7635         gdb_byte pointer.
7636
7637 2013-04-19  Pedro Alves  <palves@redhat.com>
7638
7639         * record.c (validate_history_size): Make parameter 'setting'
7640         unsigned.
7641
7642 2013-04-19  Pedro Alves  <palves@redhat.com>
7643
7644         * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
7645         to 'gdb_byte *'.
7646
7647 2013-04-19  Pedro Alves  <palves@redhat.com>
7648
7649         * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
7650         local to int.
7651
7652 2013-04-19  Pedro Alves  <palves@redhat.com>
7653
7654         * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
7655         * ada-tasks.c (read_fat_string_value): Likewise.
7656
7657 2013-04-19  Pedro Alves  <palves@redhat.com>
7658
7659         * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
7660         unsigned.  Pass 'tmp' to safe_read_uleb128 instead of the signed
7661         'offset', and adjust.
7662
7663 2013-04-19  Pedro Alves  <palves@redhat.com>
7664
7665         * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
7666         (read_index_from_section): Add cast to 'char *'.
7667
7668 2013-04-19  Pedro Alves  <palves@redhat.com>
7669
7670         * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
7671
7672 2013-04-19  Pedro Alves  <palves@redhat.com>
7673
7674         * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
7675
7676 2013-04-19  Pedro Alves  <palves@redhat.com>
7677
7678         * record-full.c (record_full_get_bookmark): Change local 'ret'
7679         type to char * and add cast to gdb_byte *.
7680         (record_full_goto_bookmark): Handle 'bookmark' argument as a
7681         string.
7682         * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
7683
7684 2013-04-19  Pedro Alves  <palves@redhat.com>
7685
7686         * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
7687         * python/py-prettyprint.c (print_string_repr): Change type of
7688         'output' local to char *.  Add cast to gdb_byte * in
7689         LA_PRINT_STRING call.
7690         (print_children): Change type of 'output' local to char *.
7691         * python/py-value.c (valpy_string): Add cast to const char * in
7692         PyUnicode_Decode call.
7693
7694 2013-04-19  Pedro Alves  <palves@redhat.com>
7695
7696         * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
7697         and change its type to 'const char *'.  Adjust.
7698         (mips_send_packet): Add cast to 'char *', and remove cast to
7699         'unsigned char *'.
7700         (mips_receive_packet): Remove cast to 'unsigned char *'.
7701         (mips_load_srec): Use bfd_byte.
7702         (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
7703         (pmon_checkset): Make 'value' parameter unsigned.
7704
7705 2013-04-19  Pedro Alves  <palves@redhat.com>
7706
7707         * common/agent.c (agent_run_command): Add cast to gdb_byte *.
7708
7709 2013-04-19  Pedro Alves  <palves@redhat.com>
7710
7711         * remote.c (remote_write_bytes_aux, compare_sections_command)
7712         (remote_read_qxfer)
7713         (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
7714         (remote_hostio_readlink, remote_bfd_iovec_pread)
7715         (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
7716         binary buffer, and char when buffer is used as string.
7717         * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
7718         (trace_save, tfile_open, traceframe_walk_blocks)
7719         (tfile_fetch_registers): Likewise.
7720
7721 2013-04-19  Pedro Alves  <palves@redhat.com>
7722
7723         * ser-base.c (ser_base_write): Change prototype -- take 'void *'
7724         buffer and size_t size.  Adjust.
7725         * ser-base.h (ser_base_write): Adjust.
7726         * ser-go32.c (cnts): Change type to size_t.
7727         (dos_write): Change prototype -- take 'void *'
7728         buffer and size_t size.  Adjust.
7729         (dos_info): Print elements of 'cnts' as unsigned long.
7730         * serial.c (serial_write): Likewise.
7731         * serial.h (serial_write): Adjust.
7732         (struct serial_ops) <write>: Change prototype -- take 'void *'
7733         buffer and size_t size.  Adjust.
7734
7735 2013-04-19  Pedro Alves  <palves@redhat.com>
7736
7737         * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
7738         gdb_byte *.
7739         * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
7740
7741 2013-04-19  Pedro Alves  <palves@redhat.com>
7742
7743         * alpha-tdep.c (alpha_extract_return_value): Use
7744         regcache_cooked_read_unsigned to read 'v0'.
7745
7746 2013-04-19  Pedro Alves  <palves@redhat.com>
7747
7748         * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
7749         parameters 'at', 'as' and 'offset' to uint32_t.
7750
7751 2013-04-19  Pedro Alves  <palves@redhat.com>
7752
7753         * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
7754         'is64' to signed 'int'.
7755
7756 2013-04-19  Pedro Alves  <palves@redhat.com>
7757
7758         * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
7759         parameter to int *.
7760
7761 2013-04-19  Pedro Alves  <palves@redhat.com>
7762
7763         * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
7764         'insnbuf' buffer type to unsigned int[].
7765
7766 2013-04-19  Pedro Alves  <palves@redhat.com>
7767
7768         * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
7769
7770 2013-04-19  Pedro Alves  <palves@redhat.com>
7771
7772         * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
7773         unsigned long *.
7774
7775 2013-04-19  Pedro Alves  <palves@redhat.com>
7776
7777         * alpha-tdep.c (heuristic_fence_post): Change type to int.
7778         (alpha_heuristic_proc_start): Adjust to check -1 instead of
7779         UINT_MAX.
7780         * mips-tdep.c (heuristic_fence_post): Change type to int.
7781         (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
7782
7783 2013-04-19  Pedro Alves  <palves@redhat.com>
7784
7785         * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
7786         (struct gdbarch_tdep) <cris_version>: Make unsigned.
7787         (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
7788
7789 2013-04-19  Pedro Alves  <palves@redhat.com>
7790
7791         * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'.  Use
7792         it to get a string view of the byte buffer.
7793         * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
7794         type to gdb_byte *.  Adjust.
7795         * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
7796         Change local to char *.
7797         * solib-darwin.c (find_program_interpreter): Change return type to
7798         char *.  Adjust.
7799         (darwin_solib_get_all_image_info_addr_at_init): Adjust.
7800         * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
7801         * solib-frv.c (enable_break2): Change local 'buf' to char *.
7802         * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
7803         * solib-svr4.c (find_program_interpreter): Change return type to
7804         char *.  Adjust.
7805         (enable_break): Change local 'interp_name' to char *.
7806         * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
7807         * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
7808         (spu_pseudo_register_write_spu): Use char for string buffer.
7809         Adjust.
7810         (info_spu_event_command, info_spu_signal_command): Add casts to
7811         'char *'.
7812
7813 2013-04-19  Pedro Alves  <palves@redhat.com>
7814
7815         * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
7816         gdb_byte[].
7817         (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
7818         * ada-lang.c (ada_value_assign): Use gdb_byte.
7819         * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
7820         (alphanbsd_sigtramp_offset): Use gdb_byte.
7821         * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
7822         (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
7823         (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
7824         (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
7825         (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
7826         * arm-tdep.c (arm_stub_unwind_sniffer)
7827         (arm_displaced_init_closure): Use gdb_byte.
7828         (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
7829         (arm_default_thumb_le_breakpoint)
7830         (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
7831         * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
7832         thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
7833         * arm-wince-tdep.c (arm_wince_le_breakpoint)
7834         (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
7835         * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
7836         (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
7837         (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
7838         * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
7839         (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
7840         * cris-tdep.c (push_stack_item, cris_push_dummy_call)
7841         (cris_store_return_value, cris_extract_return_value): Use
7842         gdb_byte.
7843         (constraint): Change type of parameter to char * from signed
7844         char*.  Use gdb_byte.
7845         * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
7846         of local buffer to gdb_byte *.
7847         * dwarf2read.c (read_index_from_section): Use gdb_byte.
7848         (create_dwp_hash_table): Change type of locals to gdb_byte *.
7849         (add_address_entry): Change type of local buffer to gdb_byte[].
7850         * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
7851         (frv_push_dummy_call): Use gdb_byte.
7852         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
7853         (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
7854         (hppa_hpux_supply_save_state): Use gdb_byte.
7855         * hppa-tdep.c (hppa32_push_dummy_call)
7856         (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
7857         * ia64-tdep.c (extract_bit_field, replace_bit_field)
7858         (slotN_contents, replace_slotN_contents): Change type of parameter
7859         to gdb_byte *.
7860         (fetch_instruction, ia64_pseudo_register_write)
7861         (ia64_register_to_value, ia64_value_to_register)
7862         (ia64_extract_return_value, ia64_store_return_value)
7863         (ia64_push_dummy_call): Use gdb_byte.
7864         * m32c-tdep.c (m32c_return_value): Remove cast.
7865         * m68hc11-tdep.c (m68hc11_pseudo_register_write)
7866         (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
7867         gdb_byte.
7868         * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
7869         * mn10300-tdep.c (mn10300_store_return_value)
7870         (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
7871         gdb_byte.
7872         * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
7873         (moxie_process_record): Remove casts.
7874         * ppc-ravenscar-thread.c (supply_register_at_address)
7875         (ppc_ravenscar_generic_store_registers): Use gdb_byte.
7876         * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
7877         * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
7878         * remote-mips.c (mips_xfer_memory): Use gdb_byte.
7879         * remote.c (compare_sections_command): Use gdb_byte.
7880         * score-tdep.c (score7_free_memblock): Change type of parameter to
7881         gdb_byte *.
7882         * sh-tdep.c (sh_justify_value_in_reg): Change return type to
7883         gdb_byte *.  Use gdb_byte.
7884         (sh_push_dummy_call_fpu): Use gdb_byte.
7885         (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
7886         (sh_store_return_value_nofpu, sh_store_return_value_fpu)
7887         (sh_register_convert_to_virtual, sh_register_convert_to_raw):
7888         Change parameter type to 'gdb_byte *'.  Use gdb_byte.
7889         (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
7890         * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
7891         (sh64_store_return_value, sh64_register_convert_to_virtual):
7892         Change parameter type to 'gdb_byte *'.  Use gdb_byte.
7893         (sh64_pseudo_register_write): Use gdb_byte.
7894         * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
7895         * solib-irix.c (fetch_lm_info): Likewise.  Use gdb_byte for byte
7896         buffer.
7897         (irix_current_sos): Use gdb_byte.
7898         * solib-som.c (som_current_sos): Use gdb_byte.
7899         * sparc-ravenscar-thread.c (supply_register_at_address)
7900         (sparc_ravenscar_generic_store_registers): Use gdb_byte.
7901         * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
7902         * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
7903         * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
7904         'gdb_byte *'.
7905         * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
7906         'gdb_byte *'.
7907         * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
7908         * xstormy16-tdep.c (xstormy16_extract_return_value)
7909         (xstormy16_store_return_value): Change parameter type to
7910         'gdb_byte *'.  Adjust.
7911         (xstormy16_push_dummy_call): Use gdb_byte.
7912         * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
7913         (call0_analyze_prologue, execute_code): Use gdb_byte.
7914
7915 2013-04-19  Vladimir Kargov <kargov@gmail.com>
7916             Pedro Alves  <palves@redhat.com>
7917
7918         * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
7919         value contents.
7920
7921 2013-04-17  Doug Evans  <dje@google.com>
7922
7923         * dwarf2read.c (struct signatured_type): New member type.
7924         (struct attribute): Replace member signatured_type with signature.
7925         (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
7926         (read_call_site_scope): Call follow_die_ref instead of
7927         follow_die_ref_or_sig.
7928         (read_structure_type): Rewrite handling of signatured types.
7929         (read_enumeration_type): Ditto.
7930         (read_attribute_value): Update.
7931         (build_error_marker_type): New function.
7932         (lookup_die_type): Add assert.  Rewrite handling of signatured types.
7933         Don't call error for bad types, just build an error marker type.
7934         (dump_die_shallow): Update.
7935         (follow_die_sig_1): Renamed from follow_die_sig.
7936         Don't call error for bad types, instead return NULL.
7937         (follow_die_sig): New function.
7938         (get_signatured_type, get_DW_AT_signature_type): New functions.
7939
7940 2013-04-17  Yufeng Zhang  <yufeng.zhang@arm.com>
7941
7942         * aarch64-tdep.c (aarch64_write_pc): Removed.
7943         (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
7944         function.
7945
7946 2013-04-17  Yao Qi  <yao@codesourcery.com>
7947
7948         * top.c (print_gdb_configuration): Print configure-time
7949         parameter on using libbabeltrace or not.
7950
7951 2013-04-16  Pedro Alves  <palves@redhat.com>
7952
7953         * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
7954
7955 2013-04-16  Pedro Alves  <palves@redhat.com>
7956
7957         * common/glibc_thread_db.h: Update from upstream glibc
7958         (git 568035b7874a099087b77f7bba3e36a1173787b0).
7959
7960 2013-04-16  Pedro Alves  <palves@redhat.com>
7961
7962         * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
7963         * common/glibc_thread_db.h: ... this new file ...
7964         * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
7965
7966 2013-04-16  Will Newton  <will.newton@gmail.com>
7967             Pedro Alves  <palves@redhat.com>
7968
7969         PR build/11881
7970
7971         * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
7972         (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
7973         HAVE_THREAD_DB_H.
7974
7975 2013-04-16  Pedro Alves  <palves@redhat.com>
7976             Eli Zaretskii  <eliz@gnu.org>
7977
7978         * NEWS: Mention "set foo unlimited".
7979
7980 2013-04-15  Doug Evans  <dje@google.com>
7981
7982         * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
7983         (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
7984         (create_dwo_cu_reader): Renamed from
7985         create_dwo_debug_info_hash_table_reader.
7986         (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
7987         Remove support for multiple CUs in a DWO file.
7988         (open_and_init_dwo_file, lookup_dwo_cutu): Update.
7989
7990         * dwarf2read.c (create_debug_types_hash_table): Use hex_string
7991         instead of phex.
7992         (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
7993         (create_dwo_in_dwp): Ditto.
7994
7995 2013-04-15  Tom Tromey  <tromey@redhat.com>
7996
7997         * NEWS: Move recent entries into "since 7.6" section.
7998
7999 2013-04-15  Tom Tromey  <tromey@redhat.com>
8000
8001         PR c++/13588:
8002         * NEWS: Update.
8003         * break-catch-throw.c (struct exception_catchpoint)
8004         <exception_rx, pattern>: New fields.
8005         (fetch_probe_arguments, dtor_exception_catchpoint)
8006         (check_status_exception_catchpoint)
8007         (print_one_detail_exception_catchpoint): New functions.
8008         (handle_gnu_v3_exceptions): Add "except_rx" argument.
8009         Compile regular expression if needed.
8010         (extract_exception_regexp): New function.
8011         (catch_exception_command_1): Use extract_exception_regexp.
8012         (compute_exception): Use fetch_probe_arguments.
8013         (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
8014         and check_status fields.
8015         * cp-abi.c (cplus_typename_from_type_info): New function.
8016         * cp-abi.h (cplus_typename_from_type_info): Declare.
8017         (struct cp_abi_ops) <get_typename_from_type_info>: New field.
8018         * gdb_regex.h (compile_rx_or_error): Declare.
8019         * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
8020         comment.
8021         (init_gnuv3_ops): Set get_type_from_type_info field.
8022         * probe.c (compile_rx_or_error): Move...
8023         * utils.c (compile_rx_or_error): ... here.
8024
8025 2013-04-15  Tom Tromey  <tromey@redhat.com>
8026
8027         PR c++/15176:
8028         * NEWS: Update.
8029         * break-catch-throw.c (compute_exception): New function.
8030         (exception_funcs): New global.
8031         (_initialize_break_catch_throw): Create $_exception.
8032         * cp-abi.c (cplus_type_from_type_info): New function.
8033         * cp-abi.h (cplus_type_from_type_info): Declare.
8034         (struct cp_abi_ops) <get_type_from_type_info>: New field.
8035         * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
8036         (gnuv3_get_type_from_type_info): New functions.
8037         (init_gnuv3_ops): Set get_type_from_type_info ABI field.
8038
8039 2013-04-15  Tom Tromey  <tromey@redhat.com>
8040
8041         * break-catch-throw.c (struct exception_names): New.
8042         (exception_functions): Change type.
8043         (re_set_exception_catchpoint): Look for SDT probes.
8044
8045 2013-04-15  Tom Tromey  <tromey@redhat.com>
8046
8047         PR c++/10119:
8048         * break-catch-throw.c (exception_functions): New global.
8049         (gnu_v3_exception_catchpoint_ops): Move earlier.
8050         (struct exception_catchpoint): New.
8051         (classify_exception_breakpoint): Rewrite.
8052         (re_set_exception_catchpoint): New function.
8053         (handle_gnu_v3_exceptions): Return void.  Use init_catchpoint.
8054         Allocate a struct exception_catchpoint.
8055         (catch_exception_command_1): Update.
8056         (initialize_throw_catchpoint_ops): Set 're_set' method.
8057
8058 2013-04-15  Tom Tromey  <tromey@redhat.com>
8059
8060         * Makefile.in (SFILES): Add break-catch-throw.c
8061         (COMMON_OBS): Add break-catch-throw.o.
8062         * break-catch-throw.c: New file.
8063         * breakpoint.c: Move exception-catching code to new file.
8064         (ep_parse_optional_if_clause): No longer static.
8065         * breakpoint.h (ep_parse_optional_if_clause): Declare.
8066
8067 2013-04-15  Tom Tromey  <tromey@redhat.com>
8068
8069         PR c++/9065:
8070         * NEWS: Update.
8071         * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
8072         * c-exp.y (TYPEID): New token.
8073         (exp): Add new TYPEID productions.
8074         (ident_tokens): Add "typeid".
8075         * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
8076         * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
8077         (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
8078         * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
8079         * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
8080         case.
8081         * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
8082         (build_std_type_info_type, gnuv3_get_typeid_type)
8083         (gnuv3_get_typeid): New functions.
8084         (init_gnuv3_ops): Initialize std_type_info_gdbarch_data.  Set
8085         new fields on ABI object.
8086         * parse.c (operator_length_standard) <OP_TYPEID>: New case.
8087         * std-operator.def (OP_TYPEID): New.
8088
8089 2013-04-15  Tom Tromey  <tromey@redhat.com>
8090
8091         * elfread.c (elf_symtab_read): Install versioned symbol under
8092         unversioned name as well.
8093
8094 2013-04-15  Tom Tromey  <tromey@redhat.com>
8095
8096         PR c++/11990:
8097         * c-lang.c (cplus_language_defn): Use gdb_demangle.
8098         * c-typeprint.c (c_type_print_base): Use gdb_demangle.
8099         * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
8100         (gdb_demangle): New function.
8101         * cp-support.h (gdb_demangle): Declare.
8102         * dwarf2read.c (dwarf2_physname, fixup_partial_die)
8103         (dwarf2_name): Use gdb_demangle.
8104         * gdbtypes.c (check_stub_method): Use gdb_demangle.
8105         * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
8106         suffixes from name.
8107         (gnuv3_print_method_ptr): Use gdb_demangle.
8108         * jv-lang.c (java_demangle): Use gdb_demangle.
8109         * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
8110         * language.c (unk_lang_demangle): Use gdb_demangle.
8111         * symtab.c (symbol_find_demangled_name)
8112         (demangle_for_lookup): Use gdb_demangle.
8113
8114 2013-04-15  Tom Tromey  <tromey@redhat.com>
8115
8116         PR c++/12824:
8117         * NEWS: Update.
8118         * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
8119         New constant.
8120         (classify_exception_breakpoint): New function.
8121         (print_it_exception_catchpoint, print_one_exception_catchpoint)
8122         (print_mention_exception_catchpoint)
8123         (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
8124         (catch_exception_command_1): Handle "rethrow" catchpoint.
8125         (catch_rethrow_command): New function.
8126         (_initialize_breakpoint): Add "catch rethrow" command.
8127
8128 2013-04-15  Pierre Muller  <muller@sourceware.org>
8129
8130         * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
8131         set_gdbarch_write_pc as deprecated anymore.
8132
8133 2013-04-15  Joel Brobecker  <brobecker@adacore.com>
8134
8135         * spu-tdep.c (spu_write_pc): Add empty line after local variable
8136         declarations.
8137
8138 2013-04-13  Yao Qi  <yao@codesourcery.com>
8139
8140         * ctf.c (_initialize_ctf): Include "completer.h".
8141         Call add_target_with_completer instead of add_target.
8142
8143 2013-04-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
8144
8145         Fix GDB regression related to PR binutils/14813.
8146         * jit.c (mem_bfd_iovec_close): Return 0 for success.
8147         * minidebug.c (lzma_close): Add return value comment.
8148         * remote.c (remote_bfd_iovec_close): Return 0 for success.
8149         * solib-spu.c (spu_bfd_iovec_close): Likewise.
8150         * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
8151
8152 2013-04-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
8153
8154         * config.in: Regenerate.
8155
8156 2013-04-12  Tom Tromey  <tromey@redhat.com>
8157
8158         * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
8159         const.
8160         * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
8161         (struct die_reader_specs) <buffer>: Likewise.
8162         (die_reader_func_ftype): Make 'info_ptr' const.
8163         (struct line_header) <include_dirs, statement_program_start,
8164         statement_program_end>: Now const.
8165         (struct file_entry) <name>: Likewise.
8166         (struct partial_die_info) <sibling>: Likewise.
8167         (struct dwarf_block) <data>: Likewise.
8168         (dwarf2_read_section): Remove cast.
8169         (dwarf2_get_section_info): Make 'bufp' const.
8170         (read_index_from_section): Constify.
8171         (dw2_get_file_names_reader): Make 'info_ptr' const.
8172         (dw2_get_primary_filename_reader): Likewise.
8173         (read_comp_unit_head): Make 'info_ptr' and return type const.
8174         (read_and_check_comp_unit_head, read_and_check_type_unit_head):
8175         Likewise.
8176         (read_abbrev_offset): Constify.
8177         (dwarf2_create_include_psymtab): Make 'name' const.
8178         (create_debug_types_hash_table): Update.
8179         (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
8180         (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
8181         Constify.
8182         (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
8183         (load_partial_comp_unit_reader): Make 'info_ptr' const.
8184         (read_comp_units_from_section): Constify.
8185         (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
8186         (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
8187         const.
8188         (dwarf2_compute_name, setup_type_unit_groups): Constify.
8189         (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
8190         (create_dwp_hash_table, dwarf2_ranges_read)
8191         (dwarf2_record_block_ranges): Constify.
8192         (read_die_and_children, read_die_and_siblings_1)
8193         (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
8194         const.
8195         (read_full_die_1, read_full_die): Make 'info_ptr' const.
8196         (abbrev_table_read_table): Constify.
8197         (load_partial_dies): Make 'info_ptr' const.
8198         (read_partial_die, read_attribute_value, read_attribute): Make
8199         'info_ptr' and return type const.
8200         (read_address, read_initial_length)
8201         (read_checked_initial_length_and_offset, read_offset)
8202         (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
8203         const.
8204         (read_direct_string): Make 'buf' and return type const.
8205         (read_indirect_string_at_offset, read_indirect_string_from_dwz)
8206         (read_indirect_string): Make return type const.
8207         (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
8208         (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
8209         'info_ptr' const.
8210         (read_str_index): Make return type const.
8211         (add_include_dir): Make 'include_dir' const.
8212         (add_file_name): Make 'name' const.
8213         (dwarf_decode_line_header): Constify.
8214         (psymtab_include_file_name): Make return type const.
8215         (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
8216         (dwarf2_start_subfile): Make 'filename' const.
8217         (dwarf2_const_value_attr): Make 'bytes' const.
8218         (read_signatured_type_reader): Make 'info_ptr' const.
8219         (decode_locdesc): Constify.
8220         (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
8221         const.
8222         (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
8223         'mac_end', and return type const.
8224         (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
8225         (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
8226         type const.
8227         (per_cu_header_read_in): Constify.
8228         * symfile.h (dwarf2_get_section_info): Update.
8229
8230 2013-04-12  Tom Tromey  <tromey@redhat.com>
8231
8232         * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
8233
8234 2013-04-12  Eli Zaretskii  <eliz@gnu.org>
8235
8236         * NEWS: Mention "show configuration", --configuration.
8237         * top.c (print_gdb_configuration): New function, displays the
8238         details about GDB configure-time parameters.
8239         (print_gdb_version): Mention "show configuration".
8240         * cli/cli-cmds.c (show_configuration): New function.
8241         (_initialize_cli_cmds): Add the "show configuration" command.
8242         * main.c (captured_main) <print_configuration>: New static var.
8243         <long_options>: Use it.
8244         If --configuration was given, call print_gdb_configuration.
8245
8246 2013-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8247             Pedro Alves  <palves@redhat.com>
8248
8249         * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
8250         (generated_files): Add gcore.
8251         (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
8252         HAVE_NATIVE_GCORE_HOST.
8253         (gcore): New.
8254         * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
8255         * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
8256         config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
8257         config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
8258         config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
8259         Add HAVE_NATIVE_GCORE_HOST.
8260         * configure: Regenerate.
8261         * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
8262         New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME.  New
8263         AC_CONFIG_FILES for gcore.
8264         * configure.tgt: Add gdb_have_gcore to the initial comment.  Set
8265         gdb_have_gcore.
8266         * gdb_gcore.sh: Rename to ...
8267         * gcore.in: ... here.  Remove gcore.sh comment.  Use GDB_TRANSFORM_NAME
8268         and GCORE_TRANSFORM_NAME substitutions.
8269
8270         Fix parsing tabs in ${gdb_target_obs}.
8271         * configure.tgt (gdb_have_gcore): Replace case with for and if.
8272
8273 2013-04-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
8274
8275         * remote.c (unpush_and_perror): Add output message final dot.
8276
8277 2013-04-11  Yao Qi  <yao@codesourcery.com>
8278
8279         * tracepoint.c (tfile_interp_line): Fit parameters line and
8280         utpp in one line.
8281
8282 2013-04-10  Joel Brobecker  <brobecker@adacore.com>
8283
8284         * solib.c (solib_map_sections): Remove code overwriting
8285         SO->SO_NAME with the bfd's filename.
8286
8287 2013-04-10  Pedro Alves  <palves@redhat.com>
8288
8289         * cli/cli-decode.c (integer_unlimited_completer): New function.
8290         (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
8291         (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
8292         completer.
8293         * cli/cli-setshow.c: Include "cli/cli-utils.h".
8294         (is_unlimited_literal): New function.
8295         (do_set_command): Handle literal "unlimited" arguments.
8296         * frame.c (_initialize_frame) <set backtrace limit>: Document
8297         "unlimited".
8298         * printcmd.c (_initialize_printcmd) <set print
8299         max-symbolic-offset>: Add help text.
8300         * record-full.c (_initialize_record_full) <set record full
8301         insn-number-max>: Likewise.
8302         * record.c (_initialize_record) <set record
8303         instruction-history-size, set record function-call-history-size>:
8304         Add help text.
8305         * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
8306         help text.
8307         * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
8308         Likewise.
8309         * source.c (_initialize_source) <set listsize>: Add help text.
8310         * utils.c (initialize_utils) <set height, set width>: Likewise.
8311         <set pagination>: Mention "set height unlimited".
8312         * valprint.c (_initialize_valprint) <set print elements, set print
8313         repeats>: Document "unlimited".
8314
8315 2013-04-10  Pedro Alves  <palves@redhat.com>
8316
8317         * cli/cli-cmds.c (quit_command): Call query_if_trace_running
8318         instead of disconnect_tracing.
8319         * infcmd.c (detach_command, disconnect_command): Call
8320         query_if_trace_running.  Adjust.
8321         * top.c: Include "tracepoint.h".
8322         (quit_target): Delete.  Contents moved ...
8323         (quit_force): ... here.  Wrap each stage of teardown in
8324         TRY_CATCH.  Call disconnect_tracing before detaching.
8325
8326 2013-04-10  Hui Zhu  <hui@codesourcery.com>
8327             Yao Qi  <yao@codesourcery.com>
8328
8329         * configure.ac: Check libbabeltrace is installed.
8330         * config.in: Regenerate.
8331         * configure: Regenerate.
8332         * Makefile.in (LIBBABELTRACE): New.
8333         (CLIBS): Add LIBBABELTRACE.
8334         * ctf.c: Include "exec.h".
8335         (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
8336         (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
8337         (ctf_save_metadata_header): Define new type aliases in
8338         metadata.
8339         (ctf_write_header): Define event type "tsv_def" and "tp_def"
8340         in metadata.  Start a new faked packet for trace status.
8341         (ctf_write_status): Write trace status to CTF.
8342         (ctf_write_uploaded_tsv): Write TSV to CTF.
8343         (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
8344         (ctf_write_definition_end): End the faked packet.
8345
8346         (ctx, ctf_iter, trace_dirname): New.
8347         (start_pos): New variable.
8348         (ctf_destroy, ctf_open_dir, ctf_open): New.
8349         (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
8350         macros.
8351         (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
8352         (ctf_fetch_registers, ctf_xfer_partial): New.
8353         (ctf_get_trace_state_variable_value): New.
8354         (ctf_get_tpnum_from_frame_event): New.
8355         (ctf_get_traceframe_address): New.
8356         (ctf_trace_find, ctf_has_stack): New.
8357         (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
8358         (ctf_get_trace_status, ctf_read_status): New.
8359         (_initialize_ctf): New.
8360         * tracepoint.c (get_tracepoint_number): New
8361         (get_uploaded_tsv): Remove 'static'.
8362         (struct traceframe_info, trace_regblock_size): Move it to ...
8363         * tracepoint.h: ... here.
8364         (get_tracepoint_number): Declare it.
8365         (get_uploaded_tsv): Declare it.
8366
8367         * NEWS: Mention new configure option.
8368
8369 2013-04-10  Pedro Alves  <palves@redhat.com>
8370             Hui Zhu  <hui@codesourcery.com>
8371
8372         * breakpoint.c (dprintf_re_set): New.
8373         (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
8374         to dprintf_re_set.
8375
8376 2013-04-09  Joel Brobecker  <brobecker@adacore.com>
8377
8378         * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
8379         Remove solib-svr4.o from the list.
8380
8381 2013-04-09  Joel Brobecker  <brobecker@adacore.com>
8382
8383         * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
8384         Use gdb_assert_not_reached instead of invalid boolean expression.
8385
8386 2013-04-09  Pedro Alves  <palves@redhat.com>
8387
8388         * remote.c (unpush_and_perror): New function.
8389         (readchar, remote_serial_write): Use it.
8390
8391 2013-04-09  Markus Metzger  <markus.t.metzger@intel.com>
8392
8393         * NEWS: Mention new btrace RSP packets.
8394
8395 2013-04-08  Tom Tromey  <tromey@redhat.com>
8396
8397         * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
8398         long.
8399
8400 2013-04-08  Tom Tromey  <tromey@redhat.com>
8401
8402         * maint.c (print_bfd_section_info): Print the section index.
8403         * symmisc.c (dump_msymbols): Print the section index.
8404
8405 2013-04-08  Tom Tromey  <tromey@redhat.com>
8406
8407         PR symtab/8424:
8408         * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
8409         SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
8410         * breakpoint.c (resolve_sal_pc): Update.
8411         * elfread.c (elf_gnu_ifunc_record_cache): Update.
8412         * findvar.c (struct minsym_lookup_data) <objfile>: New field.
8413         (minsym_lookup_iterator_cb): Use it.
8414         (default_read_var_value): Update.
8415         * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
8416         Update.
8417         * infcmd.c (jump_command): Update.
8418         * linespec.c (minsym_found): Update.
8419         * maint.c (maintenance_translate_address): Update.
8420         * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
8421         (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
8422         * parse.c (write_exp_msymbol): Update.
8423         * printcmd.c (address_info): Update.
8424         * psymtab.c (find_pc_sect_psymbol): Update.
8425         (fixup_psymbol_section): Check SYMBOL_SECTION, not
8426         SYMBOL_OBJ_SECTION.
8427         (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
8428         Don't initialize SYMBOL_OBJ_SECTION.
8429         * spu-tdep.c (spu_catch_start): Update.
8430         * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
8431         * symmisc.c (dump_msymbols, print_symbol): Update.
8432         * symtab.c (fixup_section): Don't set 'obj_section'.  Change
8433         how fallback section is computed.
8434         (fixup_symbol_section): Update.
8435         (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
8436         Update.
8437         (allocate_symbol, initialize_symbol, allocate_template_symbol):
8438         Initialize SYMBOL_SECTION.
8439         * symtab.h (struct general_symbol_info) <section>: Update comment.
8440         <obj_section>: Remove.
8441         (SYMBOL_OBJ_SECTION): Add 'objfile' argument.  Rewrite.
8442         (SYMBOL_OBJFILE): New macro.
8443
8444 2013-04-08  Tom Tromey  <tromey@redhat.com>
8445
8446         * coffread.c (record_minimal_symbol): Update.
8447         * dbxread.c (record_minimal_symbol): Update.
8448         * elfread.c (record_minimal_symbol): Update.
8449         * machoread.c (macho_symtab_add_minsym): Update.
8450         * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
8451         Update.
8452         * minsyms.c (prim_record_minimal_symbol): Update.
8453         (prim_record_minimal_symbol_full): Remove 'bfd_section'
8454         argument.
8455         (prim_record_minimal_symbol_and_info): Likewise.
8456         * minsyms.h (prim_record_minimal_symbol_full)
8457         (prim_record_minimal_symbol_and_info): Update.
8458         * symtab.c (allocate_symbol, initialize_symbol)
8459         (allocate_template_symbol): Initialize SYMBOL_SECTION.
8460         * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
8461         Update.
8462
8463 2013-04-08  Tom Tromey  <tromey@redhat.com>
8464
8465         PR symtab/8423:
8466         * solib-som.c (som_solib_section_offsets): Use BFD section
8467         indices.  Set offsets for all sections.
8468         * somread.c (som_symtab_read): Compute BFD section for
8469         symbol.  Use prim_record_minimal_symbol_and_info.
8470         (som_symfile_read): Fix comment.
8471         (struct find_section_offset_arg): New.
8472         (find_section_offset, set_section_index): New functions.
8473         (som_symfile_offsets): Use set_section_index to compute
8474         section indices.
8475
8476 2013-04-08  Tom Tromey  <tromey@redhat.com>
8477
8478         * coffread.c (cs_to_section): Use gdb_bfd_section_index.
8479         * elfread.c (record_minimal_symbol, elf_symtab_read): Use
8480         gdb_bfd_section_index.
8481         * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
8482         New functions.
8483         * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
8484         Declare.
8485         * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
8486         Update.
8487         * objfiles.c (add_to_objfile_sections_full): New function.
8488         (add_to_objfile_sections): Use it.
8489         (build_section_table): Rewrite.
8490         (objfile_relocate1): Use gdb_bfd_section_index.  Update.
8491         * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
8492         (struct objfile) <sections>: Update comment.
8493         (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
8494         is NULL.
8495         (ALL_OBJSECTIONS): Use it.
8496         * solib-dsbt.c (dsbt_relocate_main_executable): Update.
8497         * solib-frv.c (frv_relocate_main_executable): Update.
8498         * solib-target.c (solib_target_relocate_section_addresses):
8499         Use gdb_bfd_section_index.
8500         * symfile.c (build_section_addr_info_from_section_table):
8501         Use gdb_bfd_section_index.
8502         (build_section_addr_info_from_bfd, place_section): Likewise.
8503         * symtab.c (fixup_section): Update.
8504         * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
8505
8506 2013-04-08  Tom Tromey  <tromey@redhat.com>
8507
8508         * minsyms.h (struct bound_minimal_symbol): New.
8509         (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
8510         Remove objfile argument.
8511         (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
8512         Return bound_minimal_symbol.
8513         * minsyms.c (lookup_minimal_symbol_by_pc_1)
8514         (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
8515         Return bound_minimal_symbol.
8516         (in_gnu_ifunc_stub): Update.
8517         (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
8518         Remove 'objfile_p' argument.
8519         (lookup_solib_trampoline_symbol_by_pc): Update.
8520         * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
8521         arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
8522         c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
8523         glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
8524         i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
8525         linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
8526         mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
8527         ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
8528         stack.c, symtab.c, tui/tui-disasm.c: Update.
8529
8530 2013-04-08  Tom Tromey  <tromey@redhat.com>
8531
8532         * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
8533         Use symbol's obstack, not an objfile.
8534         * coffread.c (process_coff_symbol): Update.
8535         * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
8536         * jv-lang.c (add_class_symbol): Update.
8537         * mdebugread.c (new_symbol): Update.
8538         * minsyms.c (prim_record_minimal_symbol_full)
8539         (terminate_minimal_symbol_table): Update.
8540         * psymtab.c (add_psymbol_to_bcache): Clear entire symbol.  Update.
8541         * stabsread.c (define_symbol, read_enum_type): Update.
8542         * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
8543         Handle Ada specially.
8544         (symbol_set_language): Add 'obstack' argument.
8545         (symbol_set_names): Update.
8546         (symbol_natural_name, symbol_demangled_name): Always use
8547         ada_decode_symbol.
8548         * symtab.h (struct general_symbol_info)
8549         <language_specific::obstack>: New field.
8550         <ada_mangled>: New field.
8551         (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
8552         (symbol_set_language): Update.
8553
8554 2013-04-08  Tom Tromey  <tromey@redhat.com>
8555
8556         * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
8557         Take an obstack, not an objfile.
8558         (symbol_set_names): Update.
8559         * symtab.h (symbol_set_demangled_name): Update.
8560
8561 2013-04-08  Tom Tromey  <tromey@redhat.com>
8562
8563         * coffread.c (process_coff_symbol, coff_read_enum_type): Call
8564         allocate_symbol.
8565         * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
8566         (read_func_scope): Call allocate_template_symbol.
8567         (new_symbol_full): Call allocate_symbol.
8568         * jit.c (finalize_symtab): Call allocate_symbol.
8569         * jv-lang.c (add_class_symbol): Call allocate_symbol.
8570         * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
8571         * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
8572         (common_block_end): Call allocate_symbol.
8573         * symtab.c (allocate_symbol, initialize_symbol)
8574         (allocate_template_symbol): New functions.
8575         * symtab.c (allocate_symbol, initialize_symbol)
8576         (allocate_template_symbol): Declare.
8577         * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
8578
8579 2013-04-08  Pedro Alves  <palves@redhat.com>
8580             Keith Seitz  <keiths@redhat.com>
8581
8582         * breakpoint.c (create_breakpoint): Rename
8583         "parse_condition_and_thread" parameter to "parse_arg".  Update
8584         describing comment.  If !PARSE_ARG, then error out if ARG is not
8585         the empty string after extracting the location.
8586         * breakpoint.h (create_breakpoint): Rename
8587         "parse_condition_and_thread" parameter to "parse_arg".
8588
8589 2013-04-08  Aleksandar Ristovski  <aristovski@qnx.com
8590
8591         * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
8592
8593 2013-04-07  Yao Qi  <yao@codesourcery.com>
8594
8595         * remote.c (remote_trace_find): Change type of parameters 'addr1'
8596         and 'addr2' to CORE_ADDR.
8597         * target.c (update_current_target): Update.
8598         * target.h (struct target_ops) <to_trace_find>: Change parameter
8599         type to CORE_ADDR.
8600         * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
8601         'addr2' to CORE_ADDR.
8602         (tfile_trace_find): Likewise.
8603         (tfile_get_traceframe_address): Change return type to CORE_ADDR.
8604         Change local variable 'addr' to type CORE_ADDR.
8605         * tracepoint.h (tfind_1): Update declaration.
8606
8607 2013-04-06  Eli Zaretskii  <eliz@gnu.org>
8608
8609         * windows-nat.c (windows_get_absolute_argv0): Move from here...
8610         * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
8611         Include main.h.
8612
8613         * windows-nat.h (windows_get_absolute_argv0): Move prototype from
8614         here...
8615         * main.h (windows_get_absolute_argv0): ...to here.
8616
8617 2013-04-05  Doug Evans  <dje@google.com>
8618
8619         * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
8620         (read_cutu_die_from_dwo): Add comments.
8621         (read_structure_type): Update comment.
8622         (read_enumeration_type, read_namespace_type): Update comment.
8623         (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
8624
8625 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
8626
8627         Convert man pages to texinfo, new gdbinit.5 texinfo page.
8628         * Makefile.in (gdb.z): Remove.
8629         (install-only): Remove $(man1dir) and gdb.1 installation.
8630         * gdb.1: Remove.
8631
8632 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
8633
8634         Fix compatibility with Linux kernel 3.8.3.
8635         * linux-tdep.c (linux_find_memory_regions_full): Move variable number
8636         to more inner block.  Remove parsing of NUMBER from outer block.
8637         Parse NUMBER only if KEYWORD has been identified.
8638
8639 2013-04-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
8640
8641         Fix variable name shadowing.
8642         * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
8643         filename to mapsfilename and update its uses.
8644
8645 2013-04-05  Eli Zaretskii  <eliz@gnu.org>
8646
8647         * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
8648         empty.  See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
8649         and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
8650         details of the problem.
8651
8652 2013-04-04  Pedro Alves  <palves@redhat.com>
8653             Hui Zhu  <hui@codesourcery.com>
8654
8655         * breakpoint.c (validate_commands_for_breakpoint): If validating a
8656         tracepoint, reset its STEP_COUNT and call validate_actionline.
8657
8658 2013-04-03  Doug Evans  <dje@google.com>
8659
8660         * dwarf2read.c (read_die_and_siblings_1): Renamed from
8661         read_die_and_siblings.
8662         (read_die_and_siblings): New function.
8663         (read_cutu_die_from_dwo): Dump die if requested.
8664         (read_die_and_children): Call read_full_die_1 and
8665         read_die_and_siblings_1.
8666         (read_full_die): Dump die if requested.
8667
8668         * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
8669
8670         * dwarf2read.c (struct dwo_file): New member comp_dir.
8671         Rename member name to dwo_name.  All uses updated.
8672         (hash_dwo_file): Include comp_dir in computation.
8673         (eq_dwo_file): Ditto.
8674         (lookup_dwo_file_slot): New arg comp_dir.  All callers updated.
8675         (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
8676
8677         * psymtab.c (read_psymtabs_with_fullname): Don't call
8678         psymtab_to_fullname if the basenames are different.
8679
8680 2013-04-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
8681
8682         * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
8683         New entry about "fullname" presence.
8684
8685 2013-04-03  Pedro Alves  <palves@redhat.com>
8686
8687         * NEWS: Mention x86_64/Cygwin as new native configuration.
8688
8689 2013-04-02  Doug Evans  <dje@google.com>
8690
8691         * dwarf2read.c (read_structure_type): Fix typo in comment.
8692
8693 2013-04-02  Pedro Alves  <palves@redhat.com>
8694
8695         * NEWS: Mention "set/show debug aarch64", "set/show debug
8696         coff-pe-read" and "set/show debug mach-o".
8697
8698 2013-04-02  Pedro Alves  <palves@redhat.com>
8699
8700         * NEWS: Mention "set/show remote trace-buffer-size-packet".
8701
8702 2013-04-02  Eli Zaretskii  <eliz@gnu.org>
8703
8704         * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
8705         gdb_string.h is now in common/.
8706
8707 2013-04-02  Pedro Alves  <palves@redhat.com>
8708
8709         * NEWS: Move "set debug notification" and "set trace-buffer-size"
8710         under "New options".
8711
8712 2013-04-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
8713
8714         Revert this patch:
8715         PR gdb/15275
8716         * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
8717
8718 2013-04-02  Pedro Alves  <palves@redhat.com>
8719
8720         PR gdb/15275
8721
8722         * remote.c (send_interrupt_sequence): Use remote_serial_write.
8723         (remote_serial_write): New function.
8724         (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
8725
8726 2013-04-01  Jiong Wang  <jiwang@tilera.com>
8727
8728         * NEWS: Mention TILE-Gx in "New native configurations" and
8729         "New targets" sections.
8730
8731 2013-04-01  Doug Evans  <dje@google.com>
8732
8733         * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
8734         (process_enumeration_scope): Simplify.
8735
8736         * dwarf2read.c (struct dwarf2_per_cu_data): Move member
8737         type_unit_group ...
8738         (struct signatured_type): ... to here.
8739         (sig_type_ptr): New typedef.
8740         (type_unit_group): Delete member 't.first_cu'.  Move member 'tus'
8741         out of union 't'.  All uses updated.
8742         (dw2_get_file_names_reader): Assert not called for a type unit.
8743         (dw2_get_file_names): Assert not called for a type unit or type
8744         unit group.
8745         (build_type_psymtabs_reader): Assert called for a type unit.
8746         (build_type_psymtab_dependencies): Assert called for a type unit group.
8747
8748         * dwarf2read.c (free_dwo_file): Add comment.
8749         (dwarf2_per_objfile_free): Unref dwp bfd.
8750
8751 2013-04-01  Aleksandar Ristovski  <aristovski@qnx.com>
8752
8753         * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
8754         (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
8755         (read_pe_exported_syms): Remove unused 'exportix'.
8756         (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
8757         'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
8758         'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
8759
8760 2013-04-01  Aleksandar Ristovski  <aristovski@qnx.com>
8761
8762         * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
8763         (print_it_watchpoint): Remove unused 'bl'.
8764         (say_where): Remove unused 'uiout'.
8765         (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
8766         (bkpt_breakpoint_hit): Remove unused 'b'.
8767         (internal_bkpt_print_it): Remove unused 'uiout'.
8768         * buildsym.c (augment_type_symtab): Remove unused 'i'.
8769
8770 2013-03-31  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
8771
8772         * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
8773         (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
8774
8775 2013-03-29  Doug Evans  <dje@google.com>
8776
8777         * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
8778         Delete arg is_dwp.  All callers updated.
8779         (open_dwp_file): New function.
8780         (open_and_init_dwp_file): Call it.
8781         (get_dwp_file): New function.
8782         (lookup_dwo_cutu): Call it.
8783
8784         * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
8785         unnecessary, cleanup.
8786
8787         * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
8788
8789         * dwarf2read.c (read_cutu_die_from_dwo): New function.
8790         (lookup_dwo_unit): New function.
8791         (init_cutu_and_read_dies): Move DWO handling to new functions.
8792
8793         * dwarf2read.c (struct signatured_type): Tweak comment.
8794         (struct dwo_unit): Tweak comment.
8795         (create_debug_types_hash_table): Tweak comment.  Reformat long line.
8796         (create_dwo_debug_info_hash_table): Tweak comment.
8797         (dwarf2_per_cu_offset_and_type): Tweak comment.
8798
8799         * dwarf2read.c (lookup_signatured_type): Remove complaint about
8800         missing .debug_types section.
8801
8802 2013-03-29  Yao Qi  <yao@codesourcery.com>
8803
8804         * corelow.c: Include "completer.h".
8805         (_initialize_corelow): Call add_target_with_completer with
8806         argument 'filename_completer'.
8807         * tracepoint.c: Likewise.
8808         * exec.c (_initialize_exec): Likewise.
8809         * target.c (add_target): Rename to ...
8810         (add_target_with_completer): ... this.  Call set_cmd_completer
8811         if parameter completer is not NULL.
8812         (add_target): New.
8813         * target.h: Include "command.h".
8814         (add_target_with_completer): Declare it.
8815
8816 2013-03-28  Joel Brobecker  <brobecker@adacore.com>
8817
8818         * coffread.c (is_import_fixup_symbol): New function.
8819         (record_minimal_symbol): Use is_import_fixup_symbol to
8820         detect import fixup symbols, and discard them.
8821
8822 2013-03-28  Doug Evans  <dje@google.com>
8823
8824         * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
8825         types hash table until we know we need it.
8826
8827         * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
8828         index numbers.
8829
8830         * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
8831         All callers updated.
8832         (dw2_print_stats): Print #read CUs too.
8833         (dump_die_shallow): Print signatured types better.
8834
8835         * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
8836         info_or_types_section to section.  All uses updated.
8837         (struct dwo_unit): Ditto.
8838
8839 2013-03-28  Pedro Alves  <palves@redhat.com>
8840
8841         * NEWS (New options): New section.
8842         (New options): Mention set/show remote trace-status-packet.
8843         * remote.c (PACKET_qTStatus): New enumeration value.
8844         (remote_get_trace_status): Skip sending qTStatus if the packet is
8845         disabled.  Use packet_ok.
8846         (_initialize_remote): Register a configuration command for
8847         qTStatus packet.
8848
8849 2013-03-28  Doug Evans  <dje@google.com>
8850
8851         * symfile.c (find_separate_debug_file): Add comment.
8852         (terminate_after_last_dir_separator): Tweak comment.
8853
8854         * dwarf2read.c (create_partial_symtab): Add forward decl.
8855         (create_partial_symtab): Move to be closer to other psymtab functions.
8856         (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
8857
8858         * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
8859         (compute_symtab_includes): Remove unnecessary forward declaration.
8860         (die_needs_namespace): Add comment marking group of functions for
8861         dwarf2 name computation.
8862
8863         * typeprint.c (_initialize_typeprint): Improve type help text.
8864
8865         * python/python.c (finish_python_initialization): Provide suggestion
8866         for how to tell gdb to find its python files.
8867
8868 2013-03-28  Pedro Alves  <palves@redhat.com>
8869
8870         PR gdb/15294
8871
8872         * source.c (_initialize_source): Change back "set listsize" to an
8873         integer command.
8874
8875 2013-03-27  Gareth McMullin  <gareth@blacksphere.co.nz>
8876
8877         PR gdb/15275
8878         * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
8879
8880 2013-03-27  Pedro Alves  <palves@redhat.com>
8881
8882         * top.c (history_size): Rename to ...
8883         (history_size_setshow_var): ... this.  Add comment.
8884         (show_commands): Use readline's 'history_length' instead of
8885         computing the history length by calling history_get in a loop.
8886         (set_history_size_command): Error out for sizes over INT_MAX.
8887         Restore previous history size on invalid size.
8888         (init_history): If HISTSIZE is negative, leave the history size as
8889         zero.  Add comments.
8890         (init_main): Adjust.
8891
8892 2013-03-27  Pedro Alves  <palves@redhat.com>
8893
8894         * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
8895         coff_pe_read" command to "set debug coff-pe-read".
8896
8897 2013-03-27  Markus Metzger  <markus.t.metzger@intel.com>
8898
8899         * record.c (command_size_to_target_size): Fix size comparison.
8900         Change parameter type from pointer to integer to integer.
8901         Update all users.
8902
8903 2013-03-27  Pierre Muller  <muller@sourceware.org>
8904
8905         * windows-nat.c (handle_output_debug_string): Avoid typecast
8906         from integer of different size warning.
8907
8908 2013-03-26  Joel Brobecker  <brobecker@adacore.com>
8909
8910         * windows-nat.c (handle_output_debug_string): Add empty line
8911         after local block variable definition.
8912
8913 2013-03-26  Pedro Alves  <palves@redhat.com>
8914
8915         * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
8916         (net_open): Make 'polls' local unsigned.
8917
8918 2013-03-26  Pedro Alves  <palves@redhat.com>
8919
8920         * remote.c (_initialize_remote): Make "set remoteaddresssize"
8921         a zuinteger command instead of uinteger.
8922
8923 2013-03-26  Pedro Alves  <palves@redhat.com>
8924
8925         * record-full.c (record_full_insn_num): Make it unsigned.
8926         (record_full_check_insn_num, record_full_message)
8927         (record_full_registers_change, record_full_xfer_partial): Remove
8928         record_full_insn_max_num check (it's always != 0).
8929         (record_full_info, record_full_restore): Use %u as format string.
8930         (): Use %u as format string.
8931         (set_record_full_insn_max_num): Remove record_full_insn_max_num
8932         check (it's always != 0).
8933
8934 2013-03-26  Pedro Alves  <palves@redhat.com>
8935
8936         * dcache.c (_initialize_dcache): Make the "set dcache line-size"
8937         and "set dcache size" commands zuinteger instead of uinteger.
8938
8939 2013-03-26  Pedro Alves  <palves@redhat.com>
8940
8941         * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
8942         command zuinteger instead of uinteger.
8943
8944 2013-03-26  Pedro Alves  <palves@redhat.com>
8945
8946         * coff-pe-read.c (_initialize_coff_pe_read): Make the command
8947         zuinteger instead of uinteger.
8948
8949 2013-03-26  Pedro Alves  <palves@redhat.com>
8950
8951         * record.c (record_insn_history_size_setshow_var)
8952         (record_call_history_size_setshow_var): New globals.
8953         (command_size_to_target_size): New function.
8954         (cmd_record_insn_history, cmd_record_call_history): Use
8955         command_size_to_target_size instead of cast.
8956         (validate_history_size, set_record_insn_history_size)
8957         (set_record_call_history_size): New functions.
8958         (_initialize_record): Install set_record_insn_history_size and
8959         set_record_call_history_size as "set" hooks of "set record
8960         instruction-history-size" and "set record
8961         function-call-history-size".
8962
8963 2013-03-26  Pedro Alves  <palves@redhat.com>
8964
8965         * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
8966         use with history_max_entries use.  Remove FIXME note.
8967
8968 2013-03-26  Markus Metzger  <markus.t.metzger@intel.com>
8969
8970         * record-btrace.c (record_btrace_close): Call
8971         record_btrace_auto_disable.
8972
8973 2013-03-25  Joel Brobecker  <brobecker@adacore.com>
8974
8975         * rs6000-nat.c (fixup_breakpoints): Delete declaration.
8976
8977 2013-03-25  Doug Evans  <dje@google.com>
8978
8979         * contrib/cc-with-tweaks.sh: Check exit code of dwp.
8980
8981 2013-03-25  Tom Tromey  <tromey@redhat.com>
8982
8983         PR symtab/11462:
8984         * c-exp.y (exp): Add new productions for destructors after '.' and
8985         '->'.
8986         (write_destructor_name): New function.
8987
8988 2013-03-25  Tom Tromey  <tromey@redhat.com>
8989
8990         PR c++/9197:
8991         * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
8992         value_struct_elt, not lookup_struct_elt_type.
8993         * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
8994         STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
8995         * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
8996
8997 2013-03-25  Yao Qi  <yao@codesourcery.com>
8998
8999         * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
9000         instead of '_mkdir'.
9001
9002 2013-03-23  Eli Zaretskii  <eliz@gnu.org>
9003
9004         * windows-nat.c (windows_get_absolute_argv0): New function.
9005         * windows-nat.h: Add its prototype.
9006
9007         * main.c (get_init_files): Use filename_ncmp instead of strncmp.
9008         Use IS_DIR_SEPARATOR instead of looking for a character inside
9009         SLASH_STRING.  Include filenames.h.
9010         (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
9011         relocate_gdb_directory works when passed gdb_program_name.
9012         Include windows-nat.h.
9013
9014 2013-03-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
9015
9016         * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
9017         * remote.c (trace_error): Remove the special handling of '2'.
9018         (readchar) <SERIAL_EOF>
9019         (readchar) <SERIAL_ERROR>
9020         (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
9021         (remote_get_trace_status): Call throw_exception if EX is
9022         TARGET_CLOSE_ERROR.
9023         * utils.c (perror_with_name): Rename to ...
9024         (throw_perror_with_name): ... here.  New parameter errcode, describe it
9025         in the function comment.
9026         (perror_with_name): New function wrapper.
9027         * utils.h (enum errors): New stub declaration.
9028         (throw_perror_with_name): New declaration.
9029
9030 2013-03-22  Pedro Alves  <palves@redhat.com>
9031             Yao Qi  <yao@codesourcery.com>
9032             Mark Kettenis  <kettenis@gnu.org>
9033
9034         * cli/cli-setshow.c (do_set_command) <var_uinteger>:
9035         Don't let the user set the value to UINT_MAX directly.
9036         <var_integer>: Don't let the user set the value to INT_MAX
9037         directly.
9038
9039 2013-03-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
9040
9041         * remote.c (remote_unpush_target): New function.
9042         (remote_open_1): Remove two pop_target calls, update one comment, add
9043         comment to target_preopen call.  Replace pop_target call by
9044         remote_unpush_target call.
9045         (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
9046         pop_target calls by remote_unpush_target calls.
9047
9048 2013-03-22  Pedro Alves  <palves@redhat.com>
9049
9050         * linux-nat.c (linux_child_follow_fork): Don't call
9051         linux_enable_event_reporting.
9052         (linux_handle_extended_wait): Don't call
9053         linux_enable_event_reporting.
9054
9055 2013-03-22  Pedro Alves  <palves@redhat.com>
9056
9057         * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
9058         use it to rewrite the trampoline buffers with type gdb_byte[], and
9059         undefine the macro.  Remove char* cast.
9060
9061 2013-03-21  Doug Evans  <dje@google.com>
9062
9063         New commands "mt set per-command {space,time,symtab} {on,off}".
9064         * NEWS: Add entry.
9065         * event-top.c: #include "maint.h".
9066         * main.c: #include "maint.h".
9067         * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
9068         timeval-utils.h, maint.h, cli/cli-setshow.h.
9069         (per_command_time, per_command_space): New static globals.
9070         (per_command_symtab): New static global.
9071         (per_command_setlist, per_command_showlist): New static globals.
9072         (struct cmd_stats): Move here from utils.c.
9073         (set_per_command_time): Renamed from set_display_time in utils.c
9074         and moved here.  All callers updated.
9075         (set_per_command_space): Renamed from set_display_space in utils.c
9076         and moved here.  All callers updated.
9077         (count_symtabs_and_blocks): New function.
9078         (report_command_stats): Moved here from utils.c.  Add support for
9079         printing symtab stats.  Only print data if enabled before command
9080         executed.
9081         (make_command_stats_cleanup): Ditto.
9082         (sert_per_command_cmd, show_per_command_cmd): New functions.
9083         (_initialize_maint_cmds): Add new commands
9084         mt set per-command {space,time,symtab} {on,off}.
9085         * maint.h: New file.
9086         * top.c: #include "maint.h".
9087         * utils.c (reset_prompt_for_continue_wait_time): New function.
9088         (get_prompt_for_continue_wait_time): New function.
9089         * utils.h (reset_prompt_for_continue_wait_time): Declare
9090         (get_prompt_for_continue_wait_time): Declare.
9091         (make_command_stats_cleanup): Moved to maint.h.
9092         (set_display_time, set_display_space): Moved to maint.h and renamed
9093         to set_per_command_time, set_per_command_space.
9094         * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
9095         parse_binary_operation and made non-static.  Don't call error,
9096         just return an error marker.  All callers updated.
9097         * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
9098
9099 2013-03-21  Tom Tromey  <tromey@redhat.com>
9100
9101         * symfile.c (alloc_section_addr_info): Update header.  Don't set
9102         'num_sections' field.
9103         (build_section_addr_info_from_section_table): Set 'num_sections'.
9104         (build_section_addr_info_from_bfd): Likewise.
9105         (build_section_addr_info_from_objfile): Remove dead loop
9106         condition.
9107         (free_section_addr_info): Unconditionally call xfree.
9108         (relative_addr_info_to_section_offsets, addrs_section_sort)
9109         (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
9110         condition.
9111         (syms_from_objfile_1): Remove dead 'if' condition.  Check
9112         'num_sections'.
9113         (add_symbol_file_command): Set 'num_sections'.
9114         * symfile-mem.c (symbol_file_add_from_memory): Set
9115         'num_sections'.
9116         * somread.c (som_symfile_offsets): Remove dead loop condition.
9117         * machoread.c (macho_symfile_offsets): Remove dead 'if'.
9118         * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
9119
9120 2013-03-21  Tom Tromey  <tromey@redhat.com>
9121
9122         * tracepoint.h (decode_agent_options): Add 'trace_string'
9123         argument.
9124         * tracepoint.c (decode_agent_options): Add 'trace_string'
9125         argument.
9126         (validate_actionline): Update.
9127         (collect_symbol): Add 'trace_string' argument.
9128         (struct add_local_symbols_data) <trace_string>: New field.
9129         (do_collect_symbol): Update.
9130         (add_local_symbols): Add 'trace_string' argument.
9131         (encode_actions_1): Update.
9132         (trace_dump_actions): Update.
9133         * dwarf2loc.c (access_memory): Update.
9134         * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
9135         * ax-general.c (new_agent_expr): Update.
9136         * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
9137         (gen_trace_for_return_address): Add argument.
9138         (trace_kludge, trace_string_kludge): Remove.
9139         * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
9140         (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
9141         (gen_trace_for_var): Add 'trace_string' argument.
9142         (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
9143         (gen_printf, agent_eval_command_one): Update.
9144
9145 2013-03-21  Tom Tromey  <tromey@redhat.com>
9146
9147         PR exp/15109:
9148         * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
9149         Handle FILENAME token.
9150
9151 2013-03-21  Tom Tromey  <tromey@redhat.com>
9152
9153         * c-exp.y (YYPRINT): Define.
9154         (c_print_token): New function.
9155
9156 2013-03-21  Tom Tromey  <tromey@redhat.com>
9157
9158         * c-exp.y (%union) <sym, ivar, ivec>: Remove.
9159
9160 2013-03-21  Yao Qi  <yao@codesourcery.com>
9161
9162         * ctf.c: Include "gdb_stat.h".
9163         [USE_WIN32API]: New macro 'mkdir'.
9164         (ctf_start): Use permission bits macros if they are defined.
9165
9166 2013-03-20  Keith Seitz  <keiths@redhat.com>
9167
9168         * breakpoint.h (struct breakpoint): Add comment to
9169         extra_string indicating that this member is mallod'd.
9170         * breakpoint.c (base_breakpoint_dtor): Free extra_string.
9171
9172 2013-03-20  Pedro Alves  <palves@redhat.com>
9173
9174         PR gdb/15289
9175
9176         * cli/cli-setshow.c (do_set_command)
9177         <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
9178         the result of parsing the command argument.  Throw error if the
9179         value is greater than UINT_MAX.  Print the invalid value with
9180         plongest.
9181         <var_integer, var_zinteger>: Use LONGEST for variable holding the
9182         result of parsing the command argument.  Throw error if the value
9183         is greater than INT_MAX, not greater or equal.  Also throw error
9184         if the value is less than INT_MIN.  Print the invalid value with
9185         plongest.
9186         <var_zuinteger_unlimited>: Throw error if the value is greater
9187         than INT_MAX, not greater or equal.
9188         (do_show_command) <var_integer, var_zinteger,
9189         var_zuinteger_unlimited>: Use %d for printing int, not %u.
9190
9191 2013-03-20  Tom Tromey  <tromey@redhat.com>
9192
9193         * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
9194         if possible.
9195         * dwarf2read.c (read_func_scope): Remove old FIXME.
9196         * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
9197         not LOC_COMPUTED.
9198         * findvar.c (symbol_read_needs_frame, default_read_var_value):
9199         Unconditionally call via computed ops, if possible.
9200         * printcmd.c (address_info): Unconditionally call via computed ops,
9201         if possible.
9202         * stack.c (read_frame_arg): Unconditionally call via computed ops,
9203         if possible.
9204         * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
9205         * tracepoint.c (scope_info): Unconditionally call via computed ops,
9206         if possible.
9207
9208 2013-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
9209             Tom Tromey  <tromey@redhat.com>
9210
9211         PR symtab/8421:
9212         * coffread.c (coff_register_index): New global.
9213         (process_coff_symbol, coff_read_enum_type): Set
9214         SYMBOL_ACLASS_INDEX.
9215         (_initialize_coffread): Initialize new global.
9216         * dwarf2loc.c (locexpr_find_frame_base_location)
9217         (dwarf2_block_frame_base_locexpr_funcs)
9218         (loclist_find_frame_base_location)
9219         (dwarf2_block_frame_base_loclist_funcs): New.
9220         (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
9221         (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
9222         * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
9223         (dwarf2_block_frame_base_loclist_funcs): New.
9224         * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
9225         (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
9226         globals.
9227         (read_func_scope): Update.
9228         (fixup_go_packaging, mark_common_block_symbol_computed)
9229         (var_decode_location, new_symbol_full, dwarf2_const_value):
9230         Set SYMBOL_ACLASS_INDEX.
9231         (dwarf2_symbol_mark_computed): Likewise.  Add 'is_block' argument.
9232         (_initialize_dwarf2_read): Initialize new globals.
9233         * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
9234         * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
9235         * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
9236         globals.
9237         (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
9238         (_initialize_mdebugread): Initialize new globals.
9239         * psympriv.h (struct partial_symbol) <aclass>: Update comment.
9240         * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
9241         (stab_register_index, stab_regparm_index): New globals.
9242         (define_symbol, read_enum_type, common_block_end): Set
9243         SYMBOL_ACLASS_INDEX.
9244         (_initialize_stabsread): Initialize new globals.
9245         * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
9246         globals.
9247         (MAX_SYMBOL_IMPLS): New define.
9248         (register_symbol_computed_impl, register_symbol_block_impl)
9249         (register_symbol_register_impl)
9250         (initialize_ordinary_address_classes): New functions.
9251         (_initialize_symtab): Call initialize_ordinary_address_classes.
9252         * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
9253         (struct symbol_impl): New.
9254         (SYMBOL_ACLASS_BITS): New define.
9255         (struct symbol) <aclass, ops>: Remove fields.
9256         <aclass_index>: New field.
9257         (symbol_impls): Declare.
9258         (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
9259         (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
9260         (register_symbol_computed_impl, register_symbol_block_impl)
9261         (register_symbol_register_impl): Declare.
9262         (struct symbol_computed_ops): Add location_has_loclist.
9263         (struct symbol_block_ops): New.
9264         (SYMBOL_BLOCK_OPS): New.
9265         * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
9266
9267 2013-03-20  Tom Tromey  <tromey@redhat.com>
9268
9269         * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
9270         (print_partial_symbols, recursively_search_psymtabs): Use
9271         PSYMBOL_CLASS.
9272
9273 2013-03-20  Pierre Muller  <muller@sourceware.org>
9274
9275         * contrib/ari/gdb_ari.sh (OP eol rule): Also check
9276         addtion, subtraction, multiplication and division binary operator.
9277
9278 2013-03-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
9279
9280         Code cleanup.
9281         * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
9282         * bsd-kvm.c (bsd_kvm_close): Likewise.
9283         * bsd-uthread.c (bsd_uthread_close): Likewise.
9284         * corelow.c (core_close): Likewise.
9285         (core_close_cleanup): Remove parameter quitting from a caller.
9286         * event-top.c (async_disconnect): Likewise.
9287         * exec.c (exec_close_1): Remove parameter quitting.
9288         * go32-nat.c (go32_close): Likewise.
9289         * linux-nat.c (linux_nat_close): Remove parameter quitting.  Remove
9290         parameter quitting from a caller.
9291         * mips-linux-nat.c (super_close): Remove parameter quitting from the
9292         variable.
9293         (mips_linux_close): Remove parameter quitting.  Remove parameter
9294         quitting from a caller.
9295         * monitor.c (monitor_close): Remove parameter quitting.
9296         * monitor.h (monitor_close): Likewise.
9297         * record-btrace.c (record_btrace_close): Likewise.
9298         * record-full.c (record_full_close): Likewise.
9299         * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
9300         it also from fprintf_unfiltered.
9301         * remote-mips.c (mips_close): Remove parameter quitting.
9302         (mips_detach): Remove parameter quitting from a caller.
9303         * remote-sim.c (gdbsim_close): Remove parameter quitting.
9304         (gdbsim_close): Remove duplicate function comment.  Remove parameter
9305         quitting and remove it also from printf_filtered.
9306         * remote.c (remote_close): Remove parameter quitting.
9307         * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
9308         * target.c (update_current_target): Remove parameter int from to_close
9309         de_fault.
9310         (push_target, unpush_target, pop_target): Remove parameter quitting from
9311         a caller.
9312         (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
9313         Remove parameter quitting from a caller.
9314         (target_preopen): Remove parameter quitting from a caller.
9315         (target_close): Remove parameter quitting.  Remove parameter quitting
9316         from a caller two times.  Remove parameter quitting also from
9317         fprintf_unfiltered.
9318         * target.h (struct target_ops): Remove parameter quitting and as int
9319         from fields to_xclose and to_close.
9320         (extern struct target_ops current_target):
9321         (target_close, pop_all_targets): Remove parameter quitting.  Update the
9322         comment.
9323         (pop_all_targets_above): Remove parameter quitting.
9324         * top.c (quit_target): Remove parameter quitting from a caller.
9325         * tracepoint.c (tfile_close): Remove parameter quitting.
9326         * windows-nat.c (windows_close): Remove parameter quitting.
9327
9328 2013-03-20  Corinna Vinschen  <vinschen@redhat.com>
9329
9330         * windows-nat.c (handle_output_debug_string): Replace call
9331         to string_to_core_addr with call to strtoull.
9332
9333 2013-03-20  Yao Qi  <yao@codesourcery.com>
9334
9335         * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
9336         and write it to CTF metadata.
9337
9338 2013-03-19  Corinna Vinschen  <vinschen@redhat.com>
9339
9340         * windows-nat.c (handle_output_debug_string): Change type of n to
9341         SIZE_T to avoid crash on 64 bit systems.
9342
9343 2013-03-17  Eli Zaretskii  <eliz@gnu.org>
9344
9345         * python/python-internal.h (HAVE_SNPRINTF)
9346         [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
9347         about redefinition of snprintf by pyerrors.h.
9348
9349 2013-03-15  Steve Ellcey  <sellcey@mips.com>
9350
9351         * remote-sim.c (sim_command_completer): Make char arguments const.
9352
9353 2013-03-15  Tom Tromey  <tromey@redhat.com>
9354
9355         PR c++/15116:
9356         * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
9357
9358 2013-03-14  Tom Tromey  <tromey@redhat.com>
9359
9360         * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
9361         New fields.
9362         (get_file_crc): Move from symfile.c.
9363         (gdb_bfd_crc): New function.
9364         * gdb_bfd.h (gdb_bfd_crc): Declare.
9365         * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
9366         * symfile.c (get_file_crc): Move to gdb_bfd.c.
9367         (separate_debug_file_exists): Use gdb_bfd_crc.
9368
9369 2013-03-14  Tom Tromey  <tromey@redhat.com>
9370
9371         * symfile.c (get_debug_link_info): Remove.
9372         (find_separate_debug_file_by_debuglink): Use
9373         bfd_get_debug_link_info.
9374
9375 2013-03-14  Tom Tromey  <tromey@redhat.com>
9376
9377         * symtab.c (error_in_psymtab_expansion): New function.
9378         (lookup_symbol_aux_quick)
9379         (basic_lookup_transparent_type_quick): Remove "last resort"
9380         code.  Use error_in_psymtab_expansion.
9381
9382 2013-03-14  Doug Evans  <dje@google.com>
9383             Jan Kratochvil  <jan.kratochvil@redhat.com>
9384
9385         * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
9386         any successful compare_filenames_for_search or FILENAME_CMP.
9387         * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
9388         * symtab.c (iterate_over_some_symtabs): Likewise.
9389
9390 2013-03-14  Jan Kratochvil  <jan.kratochvil@redhat.com>
9391
9392         * source.c (print_source_lines_base): Make a local copy of
9393         symtab_to_fullname.
9394
9395 2013-03-14  Hui Zhu  <hui_zhu@mentor.com>
9396             Jan Kratochvil  <jan.kratochvil@redhat.com>
9397
9398         * source.c (print_source_lines_base): Suppress "file" for TUI.
9399
9400 2013-03-14  Keith Seitz  <keiths@redhat.com>
9401             Alan Matsuoka  <alanm@redhat.com>
9402
9403         PR c++/15203
9404         PR c++/15210
9405         * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
9406         TYPE_CODE_METHOD.
9407         * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
9408         symbols.
9409
9410 2013-03-14  Yao Qi  <yao@codesourcery.com>
9411
9412         * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
9413         status to tfile if trace is stopped by command 'tstop'.
9414
9415 2013-03-14  Yao Qi  <yao@codesourcery.com>
9416
9417         * tracepoint.c (tfile_write_status): Write trace notes and user
9418         name into tfile if they are not NULL.
9419
9420 2013-03-14  Hui Zhu  <hui@codesourcery.com>
9421             Yao Qi  <yao@codesourcery.com>
9422
9423         * Makefile.in (REMOTE_OBS): Add ctf.o.
9424         (SFILES): Add ctf.c.
9425         (HFILES_NO_SRCDIR): Add ctf.h.
9426         * ctf.c, ctf.h: New files.
9427         * tracepoint.c: Include 'ctf.h'.
9428         (collect_pseudocommand): Remove static.
9429         (trace_save_command): Parse option "-ctf".
9430         Produce different trace file writers per option.
9431         Adjust output message.
9432         (trace_save_tfile, trace_save_ctf): New.
9433         * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
9434         * mi/mi-main.c: Include 'ctf.h'.
9435         (mi_cmd_trace_save): Handle option '-ctf'.  Call either
9436         trace_save_tfile or trace_save_ctf.
9437         * NEWS: Mention these changes.
9438
9439 2013-03-14  Yao Qi  <yao@codesourcery.com>
9440
9441         * tracepoint.c (trace_file_writer_xfree): New.
9442         (struct tfile_writer_data): New.
9443         (tfile_dtor, tfile_can_target_save, tfile_start): New.
9444         (tfile_write_header, tfile_write_regblock_type): New.
9445         (tfile_write_status, tfile_write_uploaded_tsv): New.
9446         (tfile_write_uploaded_tp, tfile_write_definition_end): New.
9447         (tfile_write_raw_data, (tfile_end): New.
9448         (tfile_write_ops): New global variable.
9449         (TRACE_WRITE_R_BLOCK): New macro.
9450         (TRACE_WRITE_M_BLOCK_HEADER): New macro.
9451         (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
9452         (TRACE_WRITE_V_BLOCK): New macro.
9453         (trace_save): Add extra one parameter WRITER.  Make it static.
9454         Use WRITER to writer trace.
9455         (tfile_trace_file_writer_new): New.
9456         (trace_save_command): Caller update.
9457         (trace_save_tfile): Write trace data in TFILE format.
9458         * tracepoint.h (struct trace_frame_write_ops): New.
9459         (struct trace_file_write_ops): New.
9460         (struct trace_file_writer): New.
9461         (trace_save): Remove its declaration.
9462         (trace_save_tfile): Declare it.
9463         * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
9464         instead of trace_save.
9465
9466 2013-03-13  Pedro Alves  <palves@redhat.com>
9467
9468         * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
9469
9470 2013-03-13  Pedro Alves  <palves@redhat.com>
9471
9472         * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
9473         commented out code.
9474         * demangle.c (current_demangling_style_string): Make it const.
9475         (set_demangling_command): Assert the demangling style is known.
9476         Remove all handling of unknown styles.  Set
9477         'current_demangling_style_string' to an element of the
9478         demangling_style_names array.
9479         (set_demangling_style): Delete.
9480         (_initialize_demangler): Set current_demangling_style_string to the
9481         element of the demangling_style_names array that corresponds to
9482         the default demangling style.  Remove FIXME note.  Don't call
9483         set_demangling_style.
9484         * gdb-demangle.h (set_demangling_style): Remove declaration.
9485
9486 2013-03-13  Pedro Alves  <palves@redhat.com>
9487
9488         * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
9489         fields const.
9490         (ada_make_symbol_completion_list): Make "text0" parameter const.
9491         * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
9492         * breakpoint.c (condition_completer): Make "text" and "word"
9493         parameters const.  Adjust.
9494         (check_tracepoint_command): Adjust to validate_actionline
9495         prototype change.
9496         (catch_syscall_completer): Make "text" and "word" parameters
9497         const.
9498         * cli/cli-cmds.c (show_user): Make "comname" local const.
9499         (valid_command_p): Make "command" parameter const.
9500         (alias_command): Make "alias_prefix" and "command_prefix" locals
9501         const.
9502         * cli/cli-decode.c (add_cmd): Make "name" parameter const.
9503         (add_alias_cmd): Make "name" and "oldname" parameters const.
9504         Adjust.  No longer make copy of OLDNAME.
9505         (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
9506         (add_setshow_cmd_full, add_setshow_enum_cmd)
9507         (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
9508         (add_setshow_filename_cmd, add_setshow_string_cmd)
9509         (add_setshow_string_noescape_cmd)
9510         (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
9511         (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
9512         (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
9513         (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
9514         Make "name" parameter const.
9515         (help_cmd): Rename "command" parameter to "arg".  New const local
9516         "command".
9517         (find_cmd): Make "command" parameter const.
9518         (lookup_cmd_1): Make "text" parameter pointer to const.  Adjust to
9519         deprecated_cmd_warning prototype change.
9520         (undef_cmd_error): Make "cmdtype" parameter const.
9521         (lookup_cmd): Make "line" parameter const.
9522         (deprecated_cmd_warning): Change type of "text" parameter to
9523         pointer to const char, from pointer to pointer to char.  Adjust.
9524         (lookup_cmd_composition): Make "text" parameter const.
9525         (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
9526         parameters const.
9527         * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
9528         const.
9529         * cli/cli-script.c (validate_comname): Make "tem" local const.
9530         (define_command): New const local "tem_c".  Use it in calls to
9531         lookup_cmd.
9532         (document_command): Make "tem" and "comfull" locals const.
9533         (show_user_1): Make "prefix" and "name" parameters const.
9534         * cli-script.h (show_user_1): Make "prefix" and "name" parameters
9535         const.
9536         * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
9537         (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
9538         (deprecated_cmd_warning, lookup_cmd_composition, add_com)
9539         (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
9540         (complete_on_enum, add_setshow_enum_cmd)
9541         (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
9542         (add_setshow_filename_cmd, add_setshow_string_cmd)
9543         (add_setshow_string_noescape_cmd)
9544         (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
9545         (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
9546         (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
9547         Change prototypes, constifying strings.
9548         * completer.c (noop_completer, filename_completer): Make "text"
9549         and "prefix" parameters const.
9550         (location_completer, expression_completer)
9551         (complete_line_internal): Make "text" and "prefix" parameters
9552         const and adjust.
9553         (command_completer, signal_completer): Make "text" and "prefix"
9554         parameters const.
9555         * completer.h (noop_completer, filename_completer)
9556         (expression_completer, location_completer, command_completer)
9557         (signal_completer): Change prototypes.
9558         * corefile.c (complete_set_gnutarget): Make "text" and "word"
9559         parameters const.
9560         * cp-abi.c (cp_abi_completer): Likewise.
9561         * expression.h (parse_expression_for_completion): Change
9562         prototype.
9563         * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
9564         parameters const.
9565         * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
9566         * infrun.c (handle_completer): Make "text" and "word" parameters
9567         const.
9568         * interps.c (interpreter_completer): Make "text" and "word"
9569         parameters const.
9570         * language.h (struct language_defn)
9571         <la_make_symbol_completion_list>: Make "text" and "word"
9572         parameters const.
9573         * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
9574         (parse_exp_in_context): Rename to ...
9575         (parse_exp_in_context_1): ... this.
9576         (parse_exp_in_context): Reimplement, with const hack from
9577         parse_exp_1.
9578         (parse_expression_for_completion): Make "string" parameter const.
9579         * printcmd.c (decode_format): Make "string_ptr" parameter pointer
9580         to pointer to const char.  Adjust.
9581         (print_command_1): Make "exp" parameter const.
9582         (output_command): Rename to ...
9583         (output_command_const): ... this.  Make "exp" parameter const.
9584         (output_command): Reimplement.
9585         (x_command): Adjust.
9586         (display_command): Rename "exp" parameter to "arg".  New "exp"
9587         local, const version of "arg".
9588         * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
9589         "cmd_name" local const.
9590         * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
9591         call.
9592         (cmdpy_completer): Make "text" and "word" parameters const.
9593         (gdbpy_parse_command_name): Make "prefix_text2" local const.
9594         * python/py-param.c (add_setshow_generic): Make "tmp_name" local
9595         const.
9596         * remote.c (_initialize_remote): Make "cmd_name" local const.
9597         * symtab.c (language_search_unquoted_string): Make "text" and "p"
9598         parameters const.  Adjust.
9599         (completion_list_add_fields): Make "sym_text", "text" and "word"
9600         parameters const.
9601         (struct add_name_data) <sym_text, text, word>: Make fields const.
9602         (default_make_symbol_completion_list_break_on): Make "text" and
9603         "word" parameters const.  Adjust locals.
9604         (default_make_symbol_completion_list)
9605         (make_symbol_completion_list, make_symbol_completion_type)
9606         (make_symbol_completion_list_fn): Make "text" and "word"
9607         parameters const.
9608         (make_file_symbol_completion_list): Make "text", "word" and
9609         "srcfile" parameters const.  Adjust locals.
9610         (add_filename_to_list): Make "text" and "word" parameters const.
9611         (struct add_partial_filename_data) <text, word>: Make fields
9612         const.
9613         (make_source_files_completion_list): Make "text" and "word"
9614         parameters const.
9615         * symtab.h (default_make_symbol_completion_list_break_on)
9616         (default_make_symbol_completion_list, make_symbol_completion_list)
9617         (make_symbol_completion_type enum type_code)
9618         (make_symbol_completion_list_fn make_file_symbol_completion_list)
9619         (make_source_files_completion_list): Change prototype.
9620         * top.c (execute_command): Adjust to pass pointer to pointer to
9621         const char to lookup_cmd, and to deprecated_cmd_warning prototype
9622         change.
9623         (set_verbose): Make "cmdname" local const.
9624         * tracepoint.c (decode_agent_options): Make "exp" parameter const,
9625         and adjust.
9626         (validate_actionline): Make "line" parameter a pointer to const
9627         char, and adjust.
9628         (encode_actions_1): Make "action_exp" local const, and adjust.
9629         (encode_actions): Adjust.
9630         (replace_comma): Delete.
9631         (trace_dump_actions): Make "action_exp" and "next_comma" locals
9632         const, and adjust.  Don't frob the action string while splitting
9633         it at commas.  Instead, make a copy of each split substring in
9634         turn.
9635         (trace_dump_command): Adjust to validate_actionline prototype
9636         change.
9637         * tracepoint.h (decode_agent_options, decode_agent_options)
9638         (encode_actions, validate_actionline): Change prototypes.
9639         * valprint.h (output_command): Delete declaration.
9640         (output_command_const): Declare.
9641         * value.c (function_destroyer): Cast const away in xfree call.
9642
9643 2013-03-13  Pedro Alves  <palves@redhat.com>
9644
9645         * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
9646         rather than casting 'const char * const *' to 'const char **'.
9647         * ada-lex.l (processInt): Make "trailer" local const.  Remove
9648         'const char **' cast.
9649         * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
9650         locals, and use those as strtol output pointer, instead than doing
9651         invalid casts to from 'const char **' to 'char **'.
9652         (_initialize_demangle): Remove cast.
9653         * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
9654         locals, and use those as strtol output pointer, instead than doing
9655         invalid casts to from 'const char **' to 'char **'.
9656         * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
9657         casts.
9658         * stap-probe.c (stap_parse_register_operand)
9659         (stap_parse_single_operand): Likewise.
9660
9661 2013-03-13  Yao Qi  <yao@codesourcery.com>
9662
9663         * tracepoint.c (tfile_get_trace_state_variable_value): Look for
9664         the last matched 'V' blcok in trace frame.
9665
9666 2013-03-12  Joel Brobecker  <brobecker@adacore.com>
9667
9668         * NEWS: Create a new section for the next release branch.
9669         Rename the section of the current branch, now that it has
9670         been cut.
9671
9672 2013-03-12  Joel Brobecker  <brobecker@adacore.com>
9673
9674         GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
9675         * version.in: Bump version to 7.6.50.20130312-cvs.
9676
9677 2013-03-12  Keith Seitz  <keiths@redhat.com>
9678
9679         * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
9680         * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
9681         Remove temporary copy of input string.
9682         (mi_execute_command_wrapper): Make "cmd" const.
9683         * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
9684         * mi/mi-parse.c (mi_parse_argv): Make "args" const.
9685         Use const strings.
9686         (mi_parse): Make "cmd" const.
9687         Use const strings.
9688         * mi/mi-parse.h (mi_parse): Make "cmd" const.
9689
9690 2013-03-12  Keith Seitz  <keiths@redhat.com>
9691
9692         * ada-lang.c (ada_read_renaming_var_value): Pass const
9693         pointer to expression string to parse_exp_1.
9694         (create_excep_cond_exprs): Likewise.
9695         * ax-gdb.c (agent_eval_command_one): Likewise.
9696         (maint_agent_printf_command): Likewise.
9697         Constify much of the string handling/parsing.
9698         * breakpoint.c (set_breakpoint_condition): Pass const
9699         pointer to expression string to parse_exp_1.
9700         (update_watchpoint): Likewise.
9701         (parse_cmd_to_aexpr): Constify string handling.
9702         Pass const pointer to parse_exp_1.
9703         (init_breakpoint_sal): Pass const pointer to parse_exp_1.
9704         (find_condition_and_thread): Likewise.
9705         Make TOK const.
9706         (watch_command_1): Make "arg" const.
9707         Constify string handling.
9708         Copy the expression string instead of changing the input
9709         string.
9710         (update_breakpoint_location): Pass const pointer to
9711         parse_exp_1.
9712         * eval.c (parse_and_eval_address): Make "exp" const.
9713         (parse_to_comma_and_eval): Make "expp" const.
9714         (parse_and_eval): Make "exp" const.
9715         * expression.h (parse_expression): Make argument const.
9716         (parse_exp_1): Make first argument const.
9717         * findcmd.c (parse_find_args): Treat "args" as const.
9718         * linespec.c (parse_linespec): Pass const pointer to
9719         linespec_expression_to_pc.
9720         (linespec_expression_to_pc): Make "exp_ptr" const.
9721         * parse.c (parse_exp_1): Make "stringptr" const.
9722         Make a copy of the expression to pass to parse_exp_in_context until
9723         this whole interface can be constified.
9724         (parse_expression): Make "string" const.
9725         * printcmd.c (ui_printf): Treat "arg" as const.
9726         Handle const strings.
9727         * tracepoint.c (validate_actionline): Pass const pointer to
9728         all calls to parse_exp_1.
9729         (encode_actions_1): Likewise.
9730         * value.h (parse_to_comma_and_eval): Make argument const.
9731         (parse_and_eval_address): Likewise.
9732         (parse_and_eval): Likewise.
9733         * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
9734         (varobj_set_value): Likewise.
9735         * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
9736         constify string handling.
9737         Pass const pointers to parse_and_eval_address and
9738         parse_to_comman_and_eval.
9739         * cli/cli-utils.c (skip_to_space): Rename to ...
9740         (skip_to_space_const): ... this. Handle const strings.
9741         * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
9742         skip_to_space_const.
9743         (skip_to_space_const): Declare.
9744         * common/format.c (parse_format_string): Make "arg" const.
9745         Handle const strings.
9746         * common/format.h (parse_format_string): Make "arg" const.
9747         * gdbserver/ax.c (ax_printf): Make "format" const.
9748         * python/python.c (gdbpy_parse_and_eval): Do not make a copy
9749         of the expression string.
9750
9751 2013-03-12  Hui Zhu  <hui@codesourcery.com>
9752
9753         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
9754
9755 2013-03-12  Yao Qi  <yao@codesourcery.com>
9756             Hui Zhu  <hui@codesourcery.com>
9757
9758         * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
9759         (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
9760         DW_OP_deref_size.
9761
9762 2013-03-12  Paul Hilfinger  <hilfingr@adacore.com>
9763
9764         * ada-lex.l (rules): Only recognize 'thread' as a
9765         delimiter when followed by numerals, as for c-exp.y.
9766         Use new rewind_to_char function to rewind the input for
9767         expression-delimiting tokens.
9768         (rewind_to_char): New function.
9769
9770 2013-03-11  Pedro Alves  <palves@redhat.com>
9771             Jan Kratochvil  <jan.kratochvil@redhat.com>
9772
9773         * configure: Regenerate.
9774         * configure.ac (check dynamic export flag): Link python test with
9775         $PYTHON_LIBS.
9776
9777 2013-03-11  Doug Evans  <dje@google.com>
9778             Keith Seitz  <keiths@redhat.com>
9779
9780         * linespec.c (find_linespec_symbols): Call find_function_symbols
9781         first, and then call lookup_prefix_sym/find_method.
9782
9783 2013-03-11  Pedro Alves  <palves@redhat.com>
9784
9785         * charset.c (convert_between_encodings): Don't cast between
9786         different pointer to pointer types.  Instead, make the 'inp' local
9787         be of the type iconv expects.
9788         (wchar_iterate): Don't cast between different pointer to pointer
9789         types.  Instead, use new pointer local of the type iconv expects.
9790         * target.c (target_read_stralloc, target_fileio_read_stralloc):
9791         Add new local of type char pointer, and use it to get a
9792         char/string view of the byte buffer, instead of casting between
9793         pointer to pointer types.
9794
9795 2013-03-11  Hafiz Abid Qadeer  <abidh@codesourcery.com>
9796
9797         * remote.c (remote_set_trace_buffer_size): Move != operator
9798         to the start of next line to fix an ARI warning.
9799
9800 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
9801
9802         * NEWS: Add record changes.
9803
9804 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
9805
9806         * record-btrace.c (btrace_insn_history): Omit the pc prefix in
9807         the instruction history disassembly.
9808         * disasm.c (dump_insns): Omit the pc prefix, if requested.
9809         * disasm.h (DISASSEMBLY_OMIT_PC): New.
9810
9811 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
9812
9813         * Makefile.in (SFILES): Add record-btrace.c
9814         (COMMON_OBS): Add record-btrace.o
9815         * record-btrace.c: New.
9816         * objfiles.c: Include btrace.h.
9817         (free_objfile): call btrace_free_objfile.
9818
9819 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
9820
9821         * target.c (target_call_history, target_call_history_from,
9822         target_call_history_range): New.
9823         * target.h (target_ops) <to_call_history, to_call_history_from,
9824         to_call_history_range>: New fields.
9825         (target_call_history, target_call_history_from,
9826         target_call_history_range): New declaration.
9827         * record.c (get_call_history_modifiers, cmd_record_call_history,
9828         record_call_history_size): New.
9829         (_initialize_record): Add the "record function-call-history" command.
9830         Add "set/show record function-call-history-size" commands.
9831         * record.h (record_print_flag): New.
9832
9833 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
9834
9835         * target.h (target_ops) <to_insn_history, to_insn_history_from,
9836         to_insn_history_range>: New fields.
9837         (target_insn_history): New.
9838         (target_insn_history_from): New.
9839         (target_insn_history_range): New.
9840         * target.c (target_insn_history): New.
9841         (target_insn_history_from): New.
9842         (target_insn_history_range): New.
9843         * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
9844         (record_insn_history_size): New.
9845         (get_insn_number): New.
9846         (get_context_size): New.
9847         (no_chunk): New.
9848         (get_insn_history_modifiers): New.
9849         (cmd_record_insn_history): New.
9850         (_initialize_record): Add "set/show record instruction-history-size"
9851         command. Add "record instruction-history" command.
9852
9853 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
9854
9855         * record.h (record_disconnect): New.
9856         (record_detach): New.
9857         (record_mourn_inferior): New.
9858         (record_kill): New.
9859         * record-full.c (record_disconnect, record_detach,
9860         record_mourn_inferior, record_kill): Move to...
9861         * record.c: ...here.
9862         (DEBUG): New.
9863         (record_stop): New.
9864         (record_unpush): New.
9865         (cmd_record_stop): Call record_stop. Replace unpush_target
9866         call with record_unpush call.
9867         (record_disconnect, record_detach): Assert that the target
9868         is of record stratum. Call record_unpush, record_stop, and
9869         DEBUG.
9870         (record_mourn_inferior, record_kill): Assert that the target
9871         is of record stratum. Call record_unpush and DEBUG.
9872
9873 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
9874
9875         * record-full.h, record-full.c (record_memory_query): Rename
9876         to ...
9877         (record_full_memory_query): ...this. Update all users.
9878         (record_arch_list_add_reg): Rename to ...
9879         (record_full_arch_list_add_reg): ...this. Update all users.
9880         (record_arch_list_add_mem): Rename to ...
9881         (record_full_arch_list_add_mem): ...this. Update all users.
9882         (record_arch_list_add_end): Rename to ...
9883         (record_full_arch_list_add_end): ...this. Update all users.
9884         (record_gdb_operation_disable_set): Rename to ...
9885         (record_full_gdb_operation_disable_set): ...this.
9886         Update all users.
9887
9888 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
9889
9890         * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
9891         (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
9892         (RECORD_IS_REPLAY): Renamed to ...
9893         (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
9894         (RECORD_FILE_MAGIC): Renamed to ...
9895         (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
9896         (record_mem_entry): Renamed to ...
9897         (record_full_mem_entry): ... this. Updated all users.
9898         (record_reg_entry): Renamed to ...
9899         (record_full_reg_entry): ... this. Updated all users.
9900         (record_end_entry): Renamed to ...
9901         (record_full_end_entry): ... this. Updated all users.
9902         (record_type) <record_end, record_reg, record_mem>: Renamed
9903         to ...
9904         (record_full_type) <record_full_end, record_full_reg,
9905         record_full_mem>: ... this. Updated all users.
9906         (record_entry): Renamed to ...
9907         (record_full_entry): ... this. Updated all users.
9908         (record_core_buf_entry): Renamed to ...
9909         (record_full_core_buf_entry): ... this. Updated all users.
9910         (record_core_regbuf): Renamed to ...
9911         (record_full_core_regbuf): ... this. Updated all users.
9912         (record_core_start): Renamed to ...
9913         (record_full_core_start): ... this. Updated all users.
9914         (record_core_end): Renamed to ...
9915         (record_full_core_end): ... this. Updated all users.
9916         (record_core_buf_list): Renamed to ...
9917         (record_full_core_buf_list): ... this. Updated all users.
9918         (record_first): Renamed to ...
9919         (record_full_first): ... this. Updated all users.
9920         (record_list): Renamed to ...
9921         (record_full_list): ... this. Updated all users.
9922         (record_arch_list_head): Renamed to ...
9923         (record_full_arch_list_head): ... this. Updated all users.
9924         (record_arch_list_tail): Renamed to ...
9925         (record_full_arch_list_tail): ... this. Updated all users.
9926         (record_stop_at_limit): Renamed to ...
9927         (record_full_stop_at_limit): ... this. Updated all users.
9928         (record_insn_max_num): Renamed to ...
9929         (record_full_insn_max_num): ... this. Updated all users.
9930         (record_insn_num): Renamed to ...
9931         (record_full_insn_num): ... this. Updated all users.
9932         (record_insn_count): Renamed to ...
9933         (record_full_insn_count): ... this. Updated all users.
9934         (record_ops): Renamed to ...
9935         (record_full_ops): ... this. Updated all users.
9936         (record_core_ops): Renamed to ...
9937         (record_full_core_ops): ... this. Updated all users.
9938         (set_record_cmdlist): Renamed to ...
9939         (set_record_full_cmdlist): ... this. Updated all users.
9940         (show_record_cmdlist): Renamed to ...
9941         (show_record_full_cmdlist): ... this. Updated all users.
9942         (record_cmdlist): Renamed to ...
9943         (record_full_cmdlist): ... this. Updated all users.
9944         (record_beneath_to_resume_ops): Renamed to ...
9945         (record_full_beneath_to_resume_ops): ... this. Updated all users.
9946         (record_beneath_to_resume): Renamed to ...
9947         (record_full_beneath_to_resume): ... this. Updated all users.
9948         (record_beneath_to_wait_ops): Renamed to ...
9949         (record_full_beneath_to_wait_ops): ... this. Updated all users.
9950         (record_beneath_to_wait): Renamed to ...
9951         (record_full_beneath_to_wait): ... this. Updated all users.
9952         (record_beneath_to_store_registers_ops): Renamed to ...
9953         (record_full_beneath_to_store_registers_ops): ... this.
9954         Updated all users.
9955         (record_beneath_to_store_registers): Renamed to ...
9956         (record_full_beneath_to_store_registers): ... this.
9957         Updated all users.
9958         (record_beneath_to_xfer_partial_ops): Renamed to ...
9959         (record_full_beneath_to_xfer_partial_ops): ... this.
9960         Updated all users.
9961         (record_beneath_to_xfer_partial): Renamed to ...
9962         (record_full_beneath_to_xfer_partial): ... this.
9963         Updated all users.
9964         (record_beneath_to_insert_breakpoint): Renamed to ...
9965         (record_full_beneath_to_insert_breakpoint): ... this.
9966         Updated all users.
9967         (record_beneath_to_stopped_by_watchpoint): Renamed to ...
9968         (record_full_beneath_to_stopped_by_watchpoint): ... this.
9969         Updated all users.
9970         (record_beneath_to_stopped_data_address): Renamed to ...
9971         (record_full_beneath_to_stopped_data_address): ... this.
9972         Updated all users.
9973         (record_beneath_to_async): Renamed to ...
9974         (record_full_beneath_to_async): ... this. Updated all users.
9975         (record_goto_insn): Renamed to ...
9976         (record_full_goto_insn): ... this. Updated all users.
9977         (record_save): Renamed to ...
9978         (record_full_save): ... this. Updated all users.
9979         (record_reg_alloc): Renamed to ...
9980         (record_full_reg_alloc): ... this. Updated all users.
9981         (record_reg_release): Renamed to ...
9982         (record_full_reg_release): ... this. Updated all users.
9983         (record_mem_alloc): Renamed to ...
9984         (record_full_mem_alloc): ... this. Updated all users.
9985         (record_mem_release): Renamed to ...
9986         (record_full_mem_release): ... this. Updated all users.
9987         (record_end_alloc): Renamed to ...
9988         (record_full_end_alloc): ... this. Updated all users.
9989         (record_end_release): Renamed to ...
9990         (record_full_end_release): ... this. Updated all users.
9991         (record_entry_release): Renamed to ...
9992         (record_full_entry_release): ... this. Updated all users.
9993         (record_list_release): Renamed to ...
9994         (record_full_list_release): ... this. Updated all users.
9995         (record_list_release_following): Renamed to ...
9996         (record_full_list_release_following): ... this.
9997         Updated all users.
9998         (record_list_release_first): Renamed to ...
9999         (record_full_list_release_first): ... this. Updated all users.
10000         (record_arch_list_add): Renamed to ...
10001         (record_full_arch_list_add): ... this. Updated all users.
10002         (record_get_loc): Renamed to ...
10003         (record_full_get_loc): ... this. Updated all users.
10004         (record_check_insn_num): Renamed to ...
10005         (record_full_check_insn_num): ... this. Updated all users.
10006         (record_arch_list_cleanups): Renamed to ...
10007         (record_full_arch_list_cleanups): ... this. Updated all users.
10008         (record_message): Renamed to ...
10009         (record_full_message): ... this. Updated all users.
10010         (record_message_wrapper): Renamed to ...
10011         (record_full_message_wrapper): ... this. Updated all users.
10012         (record_message_wrapper_safe): Renamed to ...
10013         (record_full_message_wrapper_safe): ... this. Updated all users.
10014         (record_gdb_operation_disable): Renamed to ...
10015         (record_full_gdb_operation_disable): ... this. Updated all users.
10016         (record_hw_watchpoint): Renamed to ...
10017         (record_full_hw_watchpoint): ... this. Updated all users.
10018         (record_exec_insn): Renamed to ...
10019         (record_full_exec_insn): ... this. Updated all users.
10020         (record_restore): Renamed to ...
10021         (record_full_restore): ... this. Updated all users.
10022         (record_async_inferior_event_token): Renamed to ...
10023         (record_full_async_inferior_event_token): ... this.
10024         Updated all users.
10025         (record_async_inferior_event_handler): Renamed to ...
10026         (record_full_async_inferior_event_handler): ... this.
10027         Updated all users.
10028         (record_core_open_1): Renamed to ...
10029         (record_full_core_open_1): ... this. Updated all users.
10030         (record_open_1): Renamed to ...
10031         (record_full_open_1): ... this. Updated all users.
10032         (record_open): Renamed to ...
10033         (record_full_open): ... this. Updated all users.
10034         (record_close): Renamed to ...
10035         (record_full_close): ... this. Updated all users.
10036         (record_resume_step): Renamed to ...
10037         (record_full_resume_step): ... this. Updated all users.
10038         (record_resumed): Renamed to ...
10039         (record_full_resumed): ... this. Updated all users.
10040         (record_execution_dir): Renamed to ...
10041         (record_full_execution_dir): ... this. Updated all users.
10042         (record_resume): Renamed to ...
10043         (record_full_resume): ... this. Updated all users.
10044         (record_get_sig): Renamed to ...
10045         (record_full_get_sig): ... this. Updated all users.
10046         (record_sig_handler): Renamed to ...
10047         (record_full_sig_handler): ... this. Updated all users.
10048         (record_wait_cleanups): Renamed to ...
10049         (record_full_wait_cleanups): ... this. Updated all users.
10050         (record_wait_1): Renamed to ...
10051         (record_full_wait_1): ... this. Updated all users.
10052         (record_wait): Renamed to ...
10053         (record_full_wait): ... this. Updated all users.
10054         (record_stopped_by_watchpoint): Renamed to ...
10055         (record_full_stopped_by_watchpoint): ... this. Updated all users.
10056         (record_disconnect): Renamed to ...
10057         (record_full_disconnect): ... this. Updated all users.
10058         (record_detach): Renamed to ...
10059         (record_full_detach): ... this. Updated all users.
10060         (record_mourn_inferior): Renamed to ...
10061         (record_full_mourn_inferior): ... this. Updated all users.
10062         (record_kill): Renamed to ...
10063         (record_full_kill): ... this. Updated all users.
10064         (record_stopped_data_address): Renamed to ...
10065         (record_full_stopped_data_address): ... this. Updated all users.
10066         (record_registers_change): Renamed to ...
10067         (record_full_registers_change): ... this. Updated all users.
10068         (record_store_registers): Renamed to ...
10069         (record_full_store_registers): ... this. Updated all users.
10070         (record_xfer_partial): Renamed to ...
10071         (record_full_xfer_partial): ... this. Updated all users.
10072         (record_breakpoint): Renamed to ...
10073         (record_full_breakpoint): ... this. Updated all users.
10074         (record_breakpoint_p): Renamed to ...
10075         (record_full_breakpoint_p): ... this. Updated all users.
10076         (record_breakpoints): Renamed to ...
10077         (record_full_breakpoints): ... this. Updated all users.
10078         (record_sync_record_breakpoints): Renamed to ...
10079         (record_full_sync_record_breakpoints): ... this.
10080         Updated all users.
10081         (record_init_record_breakpoints): Renamed to ...
10082         (record_full_init_record_breakpoints): ... this.
10083         Updated all users.
10084         (record_insert_breakpoint): Renamed to ...
10085         (record_full_insert_breakpoint): ... this. Updated all users.
10086         (record_remove_breakpoint): Renamed to ...
10087         (record_full_remove_breakpoint): ... this. Updated all users.
10088         (record_can_execute_reverse): Renamed to ...
10089         (record_full_can_execute_reverse): ... this. Updated all users.
10090         (record_get_bookmark): Renamed to ...
10091         (record_full_get_bookmark): ... this. Updated all users.
10092         (record_goto_bookmark): Renamed to ...
10093         (record_full_goto_bookmark): ... this. Updated all users.
10094         (record_async): Renamed to ...
10095         (record_full_async): ... this. Updated all users.
10096         (record_can_async_p): Renamed to ...
10097         (record_full_can_async_p): ... this. Updated all users.
10098         (record_is_async_p): Renamed to ...
10099         (record_full_is_async_p): ... this. Updated all users.
10100         (record_execution_direction): Renamed to ...
10101         (record_full_execution_direction): ... this. Updated all users.
10102         (record_info): Renamed to ...
10103         (record_full_info): ... this. Updated all users.
10104         (record_delete): Renamed to ...
10105         (record_full_delete): ... this. Updated all users.
10106         (record_is_replaying): Renamed to ...
10107         (record_full_is_replaying): ... this. Updated all users.
10108         (record_goto_entry): Renamed to ...
10109         (record_full_goto_entry): ... this. Updated all users.
10110         (record_goto_begin): Renamed to ...
10111         (record_full_goto_begin): ... this. Updated all users.
10112         (record_goto_end): Renamed to ...
10113         (record_full_goto_end): ... this. Updated all users.
10114         (record_goto): Renamed to ...
10115         (record_full_goto): ... this. Updated all users.
10116         (init_record_ops): Renamed to ...
10117         (init_record_full_ops): ... this. Updated all users.
10118         (record_core_resume): Renamed to ...
10119         (record_full_core_resume): ... this. Updated all users.
10120         (record_core_kill): Renamed to ...
10121         (record_full_core_kill): ... this. Updated all users.
10122         (record_core_fetch_registers): Renamed to ...
10123         (record_full_core_fetch_registers): ... this. Updated all users.
10124         (record_core_prepare_to_store): Renamed to ...
10125         (record_full_core_prepare_to_store): ... this. Updated all users.
10126         (record_core_store_registers): Renamed to ...
10127         (record_full_core_store_registers): ... this. Updated all users.
10128         (record_core_xfer_partial): Renamed to ...
10129         (record_full_core_xfer_partial): ... this. Updated all users.
10130         (record_core_insert_breakpoint): Renamed to ...
10131         (record_full_core_insert_breakpoint): ... this. Updated all users.
10132         (record_core_remove_breakpoint): Renamed to ...
10133         (record_full_core_remove_breakpoint): ... this. Updated all users.
10134         (record_core_has_execution): Renamed to ...
10135         (record_full_core_has_execution): ... this. Updated all users.
10136         (init_record_core_ops): Renamed to ...
10137         (init_record_full_core_ops): ... this. Updated all users.
10138         (cmd_record_restore): Renamed to ...
10139         (cmd_record_full_restore): ... this. Updated all users.
10140         (record_save_cleanups): Renamed to ...
10141         (record_full_save_cleanups): ... this. Updated all users.
10142         (cmd_record_start): Renamed to ...
10143         (cmd_record_full_start): ... this. Updated all users.
10144         (set_record_insn_max_num): Renamed to ...
10145         (set_record_full_insn_max_num): ... this. Updated all users.
10146         (set_record_command): Renamed to ...
10147         (set_record_full_command): ... this. Updated all users.
10148         (show_record_command): Renamed to ...
10149         (show_record_full_command): ... this. Updated all users.
10150         (_initialize_record): Renamed to ...
10151         (_initialize_record_full): ... this. Updated all users.
10152
10153 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10154
10155         * record.h: Split into this and ...
10156         * record-full.h: ... this.
10157         * record.c: Split into this and ...
10158         * record-full.c: ... this.
10159         * target.h (target_ops): Add new fields to_info_record,
10160         to_save_record, to_delete_record, to_record_is_replaying,
10161         to_goto_record_begin, to_goto_record_end, to_goto_record.
10162         (target_info_record): New.
10163         (target_save_record): New.
10164         (target_supports_delete_record): New.
10165         (target_delete_record): New.
10166         (target_record_is_replaying): New.
10167         (target_goto_record_begin): New.
10168         (target_goto_record_end): New.
10169         (target_goto_record): New.
10170         * target.c (target_info_record): New.
10171         (target_save_record): New.
10172         (target_supports_delete_record): New.
10173         (target_delete_record): New.
10174         (target_record_is_replaying): New.
10175         (target_goto_record_begin): New.
10176         (target_goto_record_end): New.
10177         (target_goto_record): New.
10178         * record.h: Declare struct cmd_list_element.
10179         (record_cmdlist): New declaration.
10180         (set_record_cmdlist): New declaration.
10181         (show_record_cmdlist): New declaration.
10182         (info_record_cmdlist): New declaration.
10183         (cmd_record_goto): New declaration.
10184         * record.c: Remove unnecessary includes.
10185         Include inferior.h.
10186         (cmd_record_goto): Remove declaration.
10187         (record_cmdlist): Now extern. Initialize.
10188         (set_record_cmdlist): Now extern. Initialize.
10189         (show_record_cmdlist): Now extern. Initialize.
10190         (info_record_cmdlist): Now extern. Initialize.
10191         (find_record_target): New.
10192         (require_record_target): New.
10193         (cmd_record_start): Update.
10194         (cmd_record_delete): Remove target-specific code.
10195         Call target_delete_record.
10196         (cmd_record_stop): Unpush any record target.
10197         (set_record_insn_max_num): Move to record-full.c
10198         (set_record_command): Add comment.
10199         (show_record_command): Add comment.
10200         (info_record_command): Update comment.
10201         Remove target-specific code.
10202         Call the record target's to_info_record.
10203         (cmd_record_start): New.
10204         (cmd_record_goto): Now extern.
10205         Remove target-specific code.
10206         Call target_goto_begin,  target_goto_end, or target_goto.
10207         (_initialize_record): Move record target ops initialization to
10208         record-full.c.
10209         Change "record" command help text.
10210         Move "record restore", "record set", and "record show" commands to
10211         record-full.c.
10212         * Makefile.in (SFILES): Add record-full.c.
10213         (HFILES_NO_SRCDIR): Add record-full.h.
10214         (COMMON_OBS): Add record-full.o.
10215         * amd64-linux-tdep.c: Include record-full.h instead of record.h.
10216         * arm-tdep.c: Include record-full.h.
10217         * i386-linux-tdep.c: Include record-full.h instead of record.h.
10218         * i386-tdep.c: Include record-full.h.
10219         * infrun.c: Include record-full.h.
10220         * linux-record.c: Include record-full.h.
10221         * moxie-tdep.c: Include record-full.h.
10222         * record-full.c: Include record-full.h.
10223         Change module comment.
10224         (set_record_full_cmdlist): New.
10225         (show_record_full_cmdlist): New.
10226         (record_full_cmdlist): New.
10227         (record_goto_insn): New declaration.
10228         (record_save): New declaration.
10229         (record_check_insn_num): Change query string.
10230         (record_info): New.
10231         (record_delete): New.
10232         (record_is_replaying): New.
10233         (record_goto_entry): New.
10234         (record_goto_begin): New.
10235         (record_goto_end): New.
10236         (record_goto): New.
10237         (init_record_ops): Update.
10238         (init_record_core_ops): Update.
10239         (cmd_record_save): Rename to record_save. Remove target and arg checks.
10240         (cmd_record_start): New.
10241         (set_record_insn_max_num): Moved from record.c
10242         (set_record_full_command): New.
10243         (show_record_full_command): New.
10244         (_initialize_record_full): New.
10245
10246 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10247
10248         * target.h (add_deprecated_target_alias): New.
10249         * target.c (add_deprecated_target_alias): New.
10250
10251 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10252
10253         * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
10254         and signal.h.
10255         (linux_supports_btrace): Add kernel and
10256         cpuid check.
10257         (kernel_supports_btrace): New function.
10258         (cpu_supports_btrace): New function.
10259         (intel_supports_btrace): New function.
10260
10261 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10262
10263         * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
10264         * remote.c: Include btrace.h.
10265         (struct btrace_target_info): New struct.
10266         (remote_supports_btrace): New function.
10267         (send_Qbtrace): New function.
10268         (remote_enable_btrace): New function.
10269         (remote_disable_btrace): New function.
10270         (remote_teardown_btrace): New function.
10271         (remote_read_btrace): New function.
10272         (init_remote_ops): Add btrace ops.
10273         (enum <unnamed>): Add btrace packets.
10274         (struct protocol_feature remote_protocol_features[]): Add btrace packets.
10275         (_initialize_remote): Add packet configuration for branch tracing.
10276
10277 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10278
10279         * features/btrace.dtd: New file.
10280         * Makefile.in (XMLFILES): Add btrace.dtd.
10281         * btrace.h (parse_xml_btrace): New declaration.
10282         * btrace.c: Include xml-support.h.
10283         (parse_xml_btrace): New function.
10284         (parse_xml_btrace_block): New function.
10285         (block_attributes): New struct.
10286         (btrace_attributes): New struct.
10287         (btrace_children): New struct.
10288         (btrace_elements): New struct.
10289
10290 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10291
10292         * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
10293         (amd64_linux_enable_btrace): New.
10294         (amd64_linux_disable_btrace): New.
10295         (amd64_linux_teardown_btrace): New.
10296         (_initialize_amd64_linux_nat): Initialize btrace ops.
10297         * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
10298         (i386_linux_enable_btrace): New.
10299         (i386_linux_disable_btrace): New.
10300         (i386_linux_teardown_btrace): New.
10301         (_initialize_i386_linux_nat): Initialize btrace ops.
10302         * config/i386/linux.mh: Add linux-btrace.o.
10303         * config/i386/linux64.mh: Add linux-btrace.o.
10304
10305 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10306
10307         * common/linux_btrace.h: New file.
10308         * common/linux_btrace.c: New file.
10309         * Makefile.in (SFILES): Add btrace.c.
10310         (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
10311         (COMMON_OBS): Add btrace.o.
10312         (linux-btrace.o): New rule.
10313
10314 2013-03-11  Markus Metzger  <markus.t.metzger@intel.com>
10315
10316         * target.h: Include btrace.h.
10317         (struct target_ops) <to_supports_btrace, to_enable_btrace,
10318         to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
10319         * target.c (target_supports_btrace): New function.
10320         (target_enable_btrace): New function.
10321         (target_disable_btrace): New function.
10322         (target_teardown_btrace): New function.
10323         (target_read_btrace): New function.
10324         * btrace.h: New file.
10325         * btrace.c: New file.
10326         * Makefile.in: Add btrace.c.
10327         * gdbthread.h: Include btrace.h.
10328         (struct thread_info): Add btrace field.
10329         * thread.c: Include btrace.h.
10330         (clear_thread_inferior_resources): Call target_teardown_btrace.
10331         * common/btrace-common.h: New file.
10332
10333 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
10334
10335         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
10336         for CHILD, ignore PTRACE_KILL errors, move the inner block variable
10337         kill_status to outer block.
10338
10339 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
10340
10341         Fix entry-values if the callee called a noreturn function.
10342         * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
10343         get_frame_address_in_block.  Add new comment.
10344
10345 2013-03-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
10346
10347         Fix entry-values in C++ across CUs.
10348         * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
10349         lookup_minimal_symbol.  Add a comment.
10350         * dwarf2read.c
10351         (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
10352         DW_AT_linkage_name.
10353
10354 2013-03-08  Yao Qi  <yao@codesourcery.com>
10355
10356         * tracepoint.c (_initialize_tracepoint): Indent the code.
10357
10358 2013-03-08  Pedro Alves  <palves@redhat.com>
10359
10360         * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
10361         (parse_find_args, find_command): Change type of pattern buffer
10362         locals to 'gdb_byte *'.
10363
10364 2013-03-08  Stan Shebs  <stan@codesourcery.com>
10365             Hafiz Abid Qadeer  <abidh@codesourcery.com>
10366
10367         * NEWS: Mention set and show trace-buffer-size commands.
10368         Mention new packet.
10369         * target.h (struct target_ops): New method
10370         to_set_trace_buffer_size.
10371         (target_set_trace_buffer_size): New macro.
10372         * target.c (update_current_target): Set up new method.
10373         * tracepoint.c (trace_buffer_size): New global.
10374         (start_tracing): Send it to the target.
10375         (set_trace_buffer_size): New function.
10376         (_initialize_tracepoint): Add new setshow for trace-buffer-size.
10377         * remote.c (remote_set_trace_buffer_size): New function.
10378         (_initialize_remote): Use it.
10379         (QTBuffer:size) New remote command.
10380         (PACKET_QTBuffer_size): New enum.
10381         (remote_protocol_features): Add an entry for
10382         PACKET_QTBuffer_size.
10383
10384 2013-03-08  Tom Tromey  <tromey@redhat.com>
10385
10386         * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
10387         variable.
10388
10389 2013-03-07  Pedro Alves  <palves@redhat.com>
10390
10391         * target.c (target_read_stralloc, target_fileio_read_alloc):
10392         *Cast pointer to 'gdb_byte *' in target call.
10393
10394 2013-03-07  Pedro Alves  <palves@redhat.com>
10395
10396         * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
10397         call.
10398
10399 2013-03-07  Keith Seitz  <keiths@redhat.com>
10400
10401         * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
10402         (trace_pass_command): Likewise.
10403         * cli/cli-cmds.c: Include cli/cli-utils.h.
10404         (source_command): Use skip-spaces.
10405         (disassemble_command): Likewise.
10406         * findcmd.c: Include cli/cli-utils.h.
10407         (parse_find_args): Use skip_spaces.
10408         * go32-nat.c: Include cli/cli-utils.h.
10409         (go32_sldt): Use skip_spaces.
10410         (go32_sgdt): Likewise.
10411         (go32_sidt): Likewise.
10412         (go32_pde): Likewise.
10413         (go32_pte): Likewise.
10414         (go32_pte_for_address): Likewise.
10415         * infcmd.c: Include cli/cli-utils.h.
10416         (registers_info): Use skip_spaces.
10417         * linux-tdep.c (read_mapping): Use skip_spaces_const.
10418         (linux_info_proc): Likewise.
10419         * linux-thread-db.c: Include cli/cli-utils.h.
10420         (info_auto_load_libthread_db): Use skip_spaces_const.
10421         * m32r-rom.c: Include cli/cli-utils.h.
10422         (m32r_upload_command): Use skip_spaces.
10423         * maint.c: Include cli/cli-utils.h.
10424         (maintenance_translate_address): Use skip_spaces.
10425         * mi/mi-parse.c: Include cli/cli-utils.h.
10426         (mi_parse_argv): Use skip_spaces.
10427         (mi_parse): Likewise.
10428         * minsyms.c: Include cli/cli-utils.h.
10429         (msymbol_hash_iw): Use skip_spaces_const.
10430         * objc-lang.c: Include cli/cli-utils.h.
10431         (parse_selector): Use skip_spaces.
10432         (parse_method): Likewise.
10433         * python/python.c: Include cli/cli-utils.h.
10434         (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
10435         (python_command)[HAVE_PYTHON]: Likewise.
10436         (python_interactive_command)[!HAVE_PYTHON]: Likewise.
10437         * remote-m32r-sdi.c: Include cli/cli-utils.h.
10438         (m32r_load): Use skip_spaces.
10439         * serial.c: Include cli/cli-utils.h.
10440         (serial_open): Use skip_spaces_const.
10441         * stack.c: Include cli/cli-utils.h.
10442         (parse_frame_specification_1): Use skip_spaces_const.
10443         * symfile.c: Include cli/cli-utils.h.
10444         (set_ext_lang_command): Use skip_spaces.
10445         * symtab.c: Include cli/cli-utils.h.
10446         (rbreak_command): Use skip_spaces.
10447         * thread.c (thread_name_command): Use skip_spaces.
10448         * tracepoint.c (validate_actionline): Use skip_spaces.
10449         (encode_actions_1): Likewise.
10450         (trace_find_range_command): Likewise.
10451         (trace_find_outside_command): Likewise.
10452         (trace_dump_actions): Likewise.
10453
10454 2013-03-07  Pedro Alves  <palves@redhat.com>
10455
10456         * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
10457         * expprint.c (print_subexp_standard): Likewise.
10458         * utils.c (host_char_to_target): Likewise.
10459         * valprint.c (generic_emit_char, generic_printstr): Likewise.
10460         * varobj.c (value_get_print_value): Change type of local to char*.
10461         Cast it gdb_byte * in call to language printer.
10462
10463 2013-03-07  Pedro Alves  <palves@redhat.com>
10464
10465         * charset.c (struct wchar_iterator) <input>: Change type to 'const
10466         gdb_byte *'.
10467         (make_wchar_iterator): Remove cast to char*.
10468         (wchar_iterate): Change type of local.
10469
10470 2013-03-07  Pedro Alves  <palves@redhat.com>
10471
10472         * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
10473         for 'regcache->register_status'.
10474
10475 2013-03-07  Pedro Alves  <palves@redhat.com>
10476
10477         * breakpoint.c (breakpoint_xfer_memory): Change type of local to
10478         int.
10479
10480 2013-03-07  Pedro Alves  <palves@redhat.com>
10481
10482         * stap-probe.c (handle_stap_probe): Add cast to char*.
10483
10484 2013-03-07  Pedro Alves  <palves@redhat.com>
10485
10486         * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
10487         RECORD_MSGRCV>: Pass a signed variable to
10488         regcache_raw_read_signed, instead of an unsigned one.
10489
10490 2013-03-07  Pedro Alves  <palves@redhat.com>
10491
10492         * remote-notif.c (notif_debug): Change type to int.
10493         * remote-notif.h (notif_debug): Likewise.
10494
10495 2013-03-07  Pedro Alves  <palves@redhat.com>
10496
10497         * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
10498
10499 2013-03-07  Pedro Alves  <palves@redhat.com>
10500
10501         * remote.c (hex2bin, bin2hex): Move extern declarations to ...
10502         * remote.h (hex2bin, bin2hex): ... here.
10503         * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
10504
10505 2013-03-07  Eli Zaretskii  <eliz@gnu.org>
10506
10507         * utils.c (initialize_utils): Improve doc strings of "set/show
10508         width", "set/show height", and "set/show pagination".
10509
10510 2013-03-06  Keith Seitz  <keiths@redhat.com>
10511
10512         * ax-gdb.c (gen_printf): Make FORMAT const.
10513         * ax-gdb.h (gen_printf): Likewise.
10514         * ax-general.c (ax_string): Make STR const.
10515         * ax.h (ax_string): Likewise.
10516
10517 2013-03-06  Doug Evans  <dje@google.com>
10518
10519         * elfread.c (elf_symfile_read): Move debugging printf to more
10520         logical location.
10521
10522 2013-03-06  Pedro Alves  <palves@redhat.com>
10523
10524         * python/py-utils.c (target_string_to_unicode): Delete function.
10525         * python/python-internal.h (target_string_to_unicode): Delete
10526         declaration.
10527
10528 2013-03-06  Pierre Muller  <muller@sourceware.org>
10529
10530         * linespec.c (get_current_search_block): ARI fix, use (void)
10531         for empty parameter list.
10532
10533 2013-03-05  Doug Evans  <dje@google.com>
10534
10535         * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
10536         of old ada_lookup_symbol_list.  In !full_search case, don't
10537         search superblocks.
10538         (ada_lookup_symbol_list): Delete arg full_search, all callers
10539         updated.  Call ada_lookup_symbol_list_worker.
10540         (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
10541         * ada-lang.h (ada_lookup_symbol_list): Update.
10542         * language.h (language_defn): Update comment for
10543         la_iterate_over_symbols.
10544         * linespec.c (iterate_over_file_blocks): New function.
10545         (iterate_over_all_matching_symtabs): Call it.
10546         (lookup_prefix_sym): Ditto.
10547         (get_current_search_block): New function.
10548         (get_search_block): Delete.
10549         (find_label_symbols): Call get_current_search_block.
10550         (add_matching_symbols_to_info): Call iterate_over_file_blocks.
10551         * symtab.c (iterate_over_symbols): Don't search superblocks.
10552
10553 2013-03-05  Yao Qi  <yao@codesourcery.com>
10554
10555         * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
10556         parameter VAR's type from "unsigned int" to "int".
10557         * command.h (var_zuinteger_unlimited): Update its comments.
10558         (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
10559
10560 2013-03-05  Corinna Vinschen  <vinschen@redhat.de>
10561
10562         * NEWS: Mention new target x86_64-*-cygwin*.
10563
10564 2013-03-05  Corinna Vinschen  <vinschen@redhat.de>
10565
10566         * configure.host: Add x86_64-*-cygwin* as host.
10567         * configure.tgt: Add x86_64-*-cygwin* as target.
10568         * config/i386/cygwin64.mh: New file.
10569
10570 2013-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
10571
10572         * linespec.c (decode_line_2): Fix duplicate request off by two message.
10573
10574 2013-03-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
10575
10576         * linespec.c (struct linespec_canonical_name): New.
10577         (struct linespec_state): Change canonical_names type to it.
10578         (add_sal_to_sals): Change variable canonical_name to canonical.  Change
10579         xrealloc element size.  Initialize the different CANONICAL fields.
10580         (canonical_to_fullform): New.
10581         (filter_results): Use it.  Add variables canonical, fullform and
10582         cleanup.
10583         (struct decode_line_2_item, decode_line_2_compare_items): New.
10584         (decode_line_2): Remove variables iter and item_names, add variables
10585         items and items_count.  Modify the code for these new variables.
10586
10587 2013-03-04  Corinna Vinschen  <vinschen@redhat.com>
10588
10589         * coff-pe-read.c (read_pe_exported_syms): Don't return without
10590         calling do_cleanup.
10591
10592 2013-03-04  Luis Machado  <lgustavo@codesourcery.com>
10593
10594         * tracepoint.c (build_traceframe_info): Add code for byte order.
10595
10596 2013-03-02  Kevin Buettner  <kevinb@redhat.com>
10597
10598         * v850-tdep.c: (v850e2_register_name): Revise system register
10599         names to match current V850E2M architecture specifications.
10600         Update register number enum comments too.
10601
10602 2013-03-01  Jiong Wang  <jiwang@tilera.com>
10603             Pedro Alves  <palves@redhat.com>
10604
10605         * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
10606         to END_ADDR.
10607         (tilegx_skip_prologue): Limit prologue analysis to section end.
10608
10609 2013-03-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
10610
10611         * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
10612         use it.
10613
10614 2013-03-01  Pedro Alves  <palves@redhat.com>
10615
10616         Use gdb_byte for bytes from the program being debugged.
10617
10618         * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
10619         Change type of local 'buf' to gdb_byte.
10620         * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
10621         * bfin-tdep.c (bfin_push_dummy_call): Likewise.
10622         * cris-tdep.c (cris_sigcontext_addr)
10623         (cris_sigtramp_frame_unwind_cache): Likewise.
10624         * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
10625         (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
10626         Likewise.
10627         * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
10628         * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
10629         (hppa32_hpux_search_dummy_call_sequence)
10630         (hppa_hpux_supply_save_state): Likewise.
10631         * hppa-linux-tdep.c (insns_match_pattern)
10632         (hppa_linux_find_global_pointer): Likewise.
10633         * hppa-tdep.c (hppa_in_function_epilogue_p)
10634         (skip_prologue_hard_way, hppa_frame_cache): Likewise.
10635         * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
10636         * i386fbsd-tdep.c (i386fbsd_supply_uthread)
10637         (i386fbsd_collect_uthread): Likewise.
10638         * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
10639         * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
10640         * ia64-tdep.c (examine_prologue, ia64_frame_cache)
10641         (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
10642         (ia64_sigtramp_frame_prev_register, ia64_access_reg)
10643         (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
10644         (ia64_libunwind_frame_prev_register)
10645         (ia64_libunwind_sigtramp_frame_this_id)
10646         (ia64_find_global_pointer_from_dynamic_section)
10647         (find_extant_func_descr, find_func_descr, ia64_dummy_id)
10648         (ia64_unwind_pc): Likewise.
10649         * iq2000-tdep.c (iq2000_store_return_value): Likewise.
10650         * m68hc11-tdep.c (m68hc11_push_dummy_call)
10651         (m68hc11_extract_return_value): Likewise.
10652         * m68klinux-nat.c (fetch_register, store_register): Likewise.
10653         * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
10654         (mep_get_insn, mep_push_dummy_call): Likewise.
10655         * mips-linux-tdep.c (mips_linux_get_longjmp_target)
10656         (mips_linux_in_dynsym_stub): Likewise.
10657         * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
10658         * ppc-linux-nat.c (fetch_register, store_register): Likewise.
10659         * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
10660         to gdb_byte.
10661         * remote-mips.c (mips_set_register): Likewise.
10662         * remote-sim.c (gdbsim_fetch_register): Likewise.
10663         * score-tdep.c (score7_fetch_inst): Change type of parameter
10664         'memblock' and local 'buf' to gdb_byte.
10665         (score7_malloc_and_get_memblock): Change return type to gdb_byte.
10666         Change type of local 'buf' to gdb_byte.  Adjust.
10667         (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
10668         to gdb_byte**.
10669         (score7_analyze_prologue): Change type of 'memblock' and
10670         'memblock_ptr' locals to gdb_byte*.
10671         * sh64-tdep.c (sh64_extract_return_value)
10672         (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
10673         * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
10674         * solib-pa64.c (pa64_solib_create_inferior_hook)
10675         (pa64_open_symbol_file_object): Remove local 'buf'.
10676         * solib-som.c (som_solib_create_inferior_hook, link_map_start)
10677         (som_open_symbol_file_object): Likewise.
10678         * solib-spu.c (spu_current_sos): Likewise.
10679         * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
10680         * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
10681         (spu_store_registers): Likewise.
10682         * target.c (debug_print_register): Likewise.
10683         * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
10684         * xstormy16-tdep.c (xstormy16_store_return_value)
10685         (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
10686         (xstormy16_find_jmp_table_entry): Likewise.
10687
10688 2013-03-01  Jiong Wang  <jiwang@tilera.com>
10689
10690         * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
10691         (tilegx_gdbarch_init): Install it.
10692
10693 2013-02-28  Tom Tromey  <tromey@redhat.com>
10694
10695         * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
10696         PyLong_Check.
10697
10698 2013-02-28  Doug Evans  <dje@google.com>
10699
10700         * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
10701         * python/python.c (gdbpy_find_pc_line): Ditto.
10702
10703 2013-02-28  Tom Tromey  <tromey@redhat.com>
10704
10705         * contrib/excheck.py: New file.
10706         * contrib/exsummary.py: New file.
10707         * contrib/gcc-with-excheck: New file.
10708
10709 2013-02-28  Tom Tromey  <tromey@redhat.com>
10710
10711         * python/python.c (gdbpy_print_stack): Call begin_line and
10712         fprintf_filtered inside TRY_CATCH.
10713
10714 2013-02-28  Tom Tromey  <tromey@redhat.com>
10715
10716         * python/python.c (gdbpy_find_pc_line): Call find_pc_line
10717         inside TRY_CATCH.
10718
10719 2013-02-28  Tom Tromey  <tromey@redhat.com>
10720
10721         * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
10722         frame_object_to_frame_info inside TRY_CATCH.
10723
10724 2013-02-28  Tom Tromey  <tromey@redhat.com>
10725
10726         * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
10727         TRY_CATCH.
10728
10729 2013-02-28  Tom Tromey  <tromey@redhat.com>
10730
10731         * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
10732
10733 2013-02-27  Corinna Vinschen  <vinschen@redhat.com>
10734
10735         * windows-nat.c: Throughout, fix format strings and casts of
10736         printf-like functions to avoid type related warnings on all
10737         platforms.
10738         (handle_output_debug_string): Fetch context information address
10739         from debug string using string_to_core_addr.
10740
10741 2013-02-27  Jiong Wang  <jiwang@tilera.com>
10742
10743         * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
10744         * regformats/reg-tilegx32.dat: New.
10745
10746 2013-02-27  Jiong Wang  <jiwang@tilera.com>
10747
10748         * configure.tgt (tilegx-*-linux*): Enable gdbserver.
10749
10750 2013-02-27  Jiong Wang  <jiwang@tilera.com>
10751
10752         * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
10753
10754 2013-02-27  Yao Qi  <yao@codesourcery.com>
10755             Pedro Alves  <palves@redhat.com>
10756
10757         * tracepoint.c (tfile_trace_find): For tfind
10758         pc/tp/range/outside, look for the next trace frame instead of
10759         always starting from frame 0.
10760
10761 2013-02-26  Anthony Green  <green@moxielogic.com>
10762
10763         * configure.tgt: Add support for moxie-*-rtems* target.
10764
10765 2013-02-25  Pedro Alves  <palves@redhat.com>
10766
10767         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
10768         warning text.
10769
10770 2013-02-24  Maciej W. Rozycki  <macro@codesourcery.com>
10771
10772         * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
10773         if $fp is used as the virtual frame pointer.
10774
10775 2013-02-23  Alan Modra  <amodra@gmail.com>
10776
10777         * elfread.c (elf_symtab_read): Do not use udata.p here to find
10778         symbol size.
10779         * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
10780         * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
10781         * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
10782         * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
10783
10784 2013-02-22  Jan Kratochvil  <jan.kratochvil@redhat.com>
10785
10786         Code cleanup.
10787         * elfread.c (build_id_bfd_get): Make the return type const.
10788         (build_id_verify): Make the check parameter const.
10789         (build_id_to_debug_filename): Make the build_id parameter and variable
10790         data const.
10791         (find_separate_debug_file_by_buildid): Make the variable build_id const.
10792
10793 2013-02-21  Alan Modra  <amodra@gmail.com>
10794
10795         * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
10796
10797 2013-02-20  Siva Chandra Reddy  <sivachandra@google.com>
10798
10799         Add a new method 'disassemble' to gdb.Architecture class.
10800         * python/py-arch.c (archpy_disassmble): Implementation of the
10801         new method gdb.Architecture.disassemble.
10802         (arch_object_methods): Add entry for the new method.
10803
10804 2013-02-20  Jiong Wang  <jiwang@tilera.com>
10805
10806         * MAINTAINERS (Write After Approval): Add myself to the list.
10807
10808 2013-02-19  Pedro Alves  <palves@redhat.com>
10809
10810         Garbage collect 'struct monitor_ops'::load_routine.
10811
10812         * monitor.h (struct monitor_ops) <load_routine>: Remove field.
10813         * monitor.c (monitor_load): No longer call
10814         current_monitor->load_routine.
10815         * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
10816         * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
10817         * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
10818
10819 2013-02-19  Pedro Alves  <palves@redhat.com>
10820
10821         PR gdb/15161
10822
10823         Harmonize with generic_load.
10824
10825         * monitor.c: Include "readline/readline.h".
10826         (monitor_load): Rename parameter 'file' to 'args'.  Use build_argv
10827         instead of sscanf.  Use CORE_ADDR/strtoulst instead of unsigned
10828         long/strtol for the 'load_offset' local.  Error out if no argument
10829         is given or if too many arguments are given.  Tilde expand the
10830         passed in file name.
10831
10832 2013-02-19  Kai Tietz  <ktietz@redhat.com>
10833
10834         PR gdb/15161
10835         * symfile.c (load_section_data): Change type of load_offset
10836         to CORE_ADDR.
10837         (generic_load): User strtoulst instead of strtoul for conversion
10838         of load_offset.
10839
10840 2013-02-19  Jiong Wang  <jiwang@tilera.com>
10841
10842         * tilegx-tdep.c (tilegx_analyze_prologue): add check for
10843          for return address, "lr" register, saved on stack.
10844         * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
10845         after we invoke tilegx_analyze_prologue.
10846
10847 2013-02-19  Jiong Wang  <jiwang@tilera.com>
10848
10849         * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
10850
10851 2013-02-19  Jiong Wang  <jiwang@tilera.com>
10852
10853         * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
10854
10855 2013-02-19  Jiong Wang  <jiwang@tilera.com>
10856
10857         * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
10858         (tilegx_write_pc): New function.
10859         (tilegx_cannot_reference_register): Return zero if REGNO
10860         is TILEGX_FAULTNUM_REGNUM.
10861         (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
10862         (tilegx_register_name): Add handling of "faultnum" register.
10863         * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
10864         * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
10865         handling of TILEGX_FAULTNUM_REGNUM.
10866         * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
10867
10868 2013-02-19  Jiong Wang  <jiwang@tilera.com>
10869
10870         * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
10871         should be aligned to 64bit.
10872
10873 2013-02-19  Kai Tietz  <ktietz@redhat.com>
10874
10875         * windows-nat.c (windows_xfer_memory): Fix debug-output
10876         for LLP64.
10877
10878 2013-02-19  Lei Liu  <lei.liu2@windriver.com>
10879
10880         * mips-linux-nat.c (mips64_linux_regsets_store_registers):
10881         Don't check DSP register number if HAVE_DSP is not set.
10882
10883 2013-02-19  Alan Modra  <amodra@gmail.com>
10884
10885         * elfread.c (struct build_id): Delete.  Use struct elf_build_id
10886         throughout file instead.
10887         (build_id_bfd_get): Update to use new elf_tdata build_id field.
10888         Don't xmalloc return value.
10889         (build_id_verify): Similarly.  Don't xfree.
10890         (build_id_to_debug_filename): Update.
10891         (find_separate_debug_file_by_buildid): Update, don't xfree.
10892
10893 2013-02-18  Tom Tromey  <tromey@redhat.com>
10894
10895         PR gdb/15102:
10896         * dwarf2read.c (read_subrange_type): Use result of
10897         'check_typedef'.
10898
10899 2013-02-16  Yuanhui Zhang  <asmwarrior@gmail.com>
10900
10901         * frame.c: Remove one extra white space after #include
10902         directive.
10903
10904 2013-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
10905
10906         * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
10907
10908 2013-02-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
10909
10910         * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
10911         and dir commands into an if block.
10912
10913 2013-02-15  Sanimir Agovic  <sanimir.agovic@intel.com>
10914
10915         * python/py-breakpoint (struct pybp_code):  Use int instead of
10916         enum type_code.
10917
10918 2013-02-15  Pedro Alves  <pedro@codesourcery.com>
10919             Hafiz Abid Qadeer  <abidh@codesourcery.com>
10920
10921         * NEWS: Mention new field "trace-file".
10922         * tracepoint.c (trace_status_mi): Output "trace-file" field.
10923         (tfile_open): Record the trace file's filename in the trace
10924         status.
10925         (tfile_files_info): Mention the name of the trace file.
10926         Check the "filename" field explicitely.
10927         (trace_status_command): Explicitely check "filename" field.
10928         (trace_find_command): Ditto.
10929         (trace_find_pc_command): Ditto.
10930         (trace_find_tracepoint_command): Ditto.
10931         (trace_find_line_command): Ditto.
10932         (trace_find_range_command): Ditto.
10933         (trace_find_outside_command): Ditto.
10934         * tracepoint.h (struct trace_status) <from_file>: Rename it
10935         to "filename" and make it hold the trace file's filename
10936         instead of a boolean.
10937         * remote.c (remote_get_trace_status): Initialize "filename"
10938         field with NULL instead of 0.
10939
10940 2013-02-15  Yao Qi  <yao@codesourcery.com>
10941
10942         * remote.c: Fix a typo.
10943
10944 2013-02-14  Pierre Muller  <muller@sourceware.org>
10945
10946         * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
10947
10948 2013-02-14  Pedro Alves  <palves@redhat.com>
10949
10950         * utils.c (savestring): Don't #undef it.  Move function to
10951         common/common-utils.c.
10952         * common/common-utils.c: Include gdb_string.h.
10953         (savestring): Move here from utils.c.
10954         * common/common-utils.h (savestring): Declare.
10955
10956 2013-02-14  Pedro Alves  <palves@redhat.com>
10957
10958         * utils.c (savestring): Rename parameter 'size' to 'len'.
10959
10960 2013-02-14  Pedro Alves  <palves@redhat.com>
10961             Yufeng Zhang  <yufeng.zhang@arm.com>
10962
10963         * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
10964         (aarch64_inferior_data, struct aarch64_inferior_data):
10965         Delete.
10966         (struct aarch64_process_info): New.
10967         (aarch64_process_list): New global.
10968         (aarch64_find_process_pid, aarch64_add_process)
10969         (aarch64_process_info_get): New functions.
10970         (aarch64_inferior_data_get): Delete.
10971         (aarch64_process_info_get): New function.
10972         (aarch64_forget_process): New function.
10973         (aarch64_get_debug_reg_state): New parameter 'pid'.  Reimplement.
10974         (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
10975         aarch64_get_debug_reg_state.
10976         (aarch64_notify_debug_reg_change): Use iterate_over_lwps
10977         instead of linux_nat_iterate_watchpoint_lwps.
10978         (aarch64_linux_new_fork): New function.
10979         (aarch64_linux_child_post_startup_inferior): Use
10980         aarch64_forget_process instead of aarch64_init_debug_reg_state.
10981         (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
10982         (aarch64_linux_remove_hw_breakpoint)
10983         (aarch64_handle_aligned_watchpoint)
10984         (aarch64_handle_unaligned_watchpoint)
10985         (aarch64_linux_insert_watchpoint)
10986         (aarch64_linux_remove_watchpoint)
10987         (aarch64_linux_stopped_data_address): Adjust to pass the current
10988         process id to aarch64_debug_reg_state.
10989         (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
10990         linux_nat_new_fork hook, and aarch64_forget_process as
10991         linux_nat_forget_process hook; remove the call to
10992         register_inferior_data_with_cleanup.
10993
10994 2013-02-14  Pedro Alves  <palves@redhat.com>
10995
10996         * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
10997         EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
10998         lval_memory.
10999
11000 2013-02-14  Pedro Alves  <pedro@codesourcery.com>
11001             Hafiz Abid Qadeer  <abidh@codesourcery.com>
11002
11003         * tracepoint.h (validate_trace_state_variable_name): Declare.
11004         * tracepoint.c (validate_trace_state_variable_name): New.
11005         (trace_variable_command): Parse the trace state variable's name
11006         without using parse_expression.  Do several validations.
11007         * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
11008         trace state variable's name with parse_expression.  Validate it.
11009
11010 2013-02-14  Yao Qi  <yao@codesourcery.com>
11011
11012         * infcmd.c (breakpoint_proceeded): Remove it.
11013
11014 2013-02-14  Yao Qi  <yao@codesourcery.com>
11015
11016         * tracepoint.c (end_actions_pseudocommand): Make it static.
11017         (while_stepping_pseudocommand): Likewise.
11018         * tracepoint.h (end_actions_pseudocommand): Remove the
11019         declaration.
11020         (while_stepping_pseudocommand): Likewise.
11021
11022 2013-02-14  Yao Qi  <yao@codesourcery.com>
11023
11024         * cli/cli-decode.c (help_cmd): Remove the declaration of
11025         "cmdlist".
11026         (help_all): Likewise.
11027
11028 2013-02-13  Pedro Alves  <palves@redhat.com>
11029
11030         * amd64-linux-nat.c (update_debug_registers_callback):
11031         Update comment.
11032         (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
11033         iterate_over_lwps.
11034         (amd64_linux_prepare_to_resume): Pass the lwp's pid to
11035         i386_debug_reg_state.
11036         (amd64_linux_new_fork): New function.
11037         (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
11038         linux_nat_new_fork hook, and i386_forget_process as
11039         linux_nat_forget_process hook.
11040         * i386-linux-nat.c (update_debug_registers_callback):
11041         Update comment.
11042         (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
11043         iterate_over_lwps.
11044         (i386_linux_prepare_to_resume): Pass the lwp's pid to
11045         i386_debug_reg_state.
11046         (i386_linux_new_fork): New function.
11047         (_initialize_i386_linux_nat): Install i386_linux_new_fork as
11048         linux_nat_new_fork hook, and i386_forget_process as
11049         linux_nat_forget_process hook.
11050         * i386-nat.c (i386_init_dregs): Delete.
11051         (i386_inferior_data, struct i386_inferior_data):
11052         Delete.
11053         (struct i386_process_info): New.
11054         (i386_process_list): New global.
11055         (i386_find_process_pid, i386_add_process, i386_process_info_get):
11056         New functions.
11057         (i386_inferior_data_get): Delete.
11058         (i386_process_info_get): New function.
11059         (i386_debug_reg_state): New parameter 'pid'.  Reimplement.
11060         (i386_forget_process): New function.
11061         (i386_cleanup_dregs): Rewrite.
11062         (i386_update_inferior_debug_regs, i386_insert_watchpoint)
11063         (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
11064         (i386_stopped_data_address, i386_insert_hw_breakpoint)
11065         (i386_remove_hw_breakpoint): Adjust to pass the current process id
11066         to i386_debug_reg_state.
11067         (i386_use_watchpoints): Don't register inferior data.
11068         * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
11069         adjust comment.
11070         (i386_forget_process): Declare.
11071         * linux-fork.c (delete_fork): Call linux_nat_forget_process.
11072         * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
11073         New static globals.
11074         (linux_child_follow_fork): Don't call linux_nat_new_thread here.
11075         (add_initial_lwp): New, factored out from ...
11076         (add_lwp): ... this.  Don't check the number of lwps before
11077         calling linux_nat_new_thread.
11078         (linux_nat_iterate_watchpoint_lwps): Delete.
11079         (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
11080         (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
11081         forks and vforks.
11082         (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
11083         initial lwp.
11084         (linux_nat_kill, linux_nat_mourn_inferior): Call
11085         linux_nat_forget_process.
11086         (linux_nat_set_new_fork, linux_nat_set_forget_process)
11087         (linux_nat_forget_process): New functions.
11088         * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
11089         type.
11090         (linux_nat_iterate_watchpoint_lwps): Delete declaration.
11091         (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
11092         types.
11093         (linux_nat_set_new_fork, linux_nat_set_forget_process)
11094         (linux_nat_forget_process): New declarations.
11095
11096         * amd64fbsd-nat.c (super_mourn_inferior): New global.
11097         (amd64fbsd_mourn_inferior): New function.
11098         (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
11099         * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
11100
11101 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11102
11103         * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
11104         Adding _().
11105
11106 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11107
11108         * aarch64-linux-nat.c (debug_reg_change_callback)
11109         (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
11110         %s and phex().
11111
11112 2013-02-13  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11113
11114         * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
11115         with LONGEST.
11116
11117 2013-02-13  Pedro Alves  <palves@redhat.com>
11118             Hafiz Abid Qadeer  <abidh@codesourcery.com>
11119
11120         * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
11121
11122 2013-02-12  Tom Tromey  <tromey@redhat.com>
11123
11124         PR symtab/11464:
11125         * c-exp.y (lex_one_token): Initialize other fields of yylval on
11126         NAME return.
11127         (classify_inner_name): Remove 'first_name' argument, add
11128         'context'.  Remove unused variable.
11129         (yylex): Explicitly maintain the context type.  Exit loop earlier
11130         if NAME result is seen.
11131
11132 2013-02-12  Pedro Alves  <palves@redhat.com>
11133
11134         * amd64-darwin-tdep.c: Add (C) after Copyright.
11135         * cli/cli-cmds.h: Ditto.
11136         * cli/cli-decode.c: Ditto.
11137         * cli/cli-decode.h: Ditto.
11138         * cli/cli-dump.c: Ditto.
11139         * cli/cli-dump.h: Ditto.
11140         * cli/cli-interp.c: Ditto.
11141         * cli/cli-logging.c: Ditto.
11142         * cli/cli-script.c: Ditto.
11143         * cli/cli-script.h: Ditto.
11144         * cli/cli-setshow.c: Ditto.
11145         * cli/cli-setshow.h: Ditto.
11146         * cli/cli-utils.c: Ditto.
11147         * cli/cli-utils.h: Ditto.
11148         * config/alpha/nm-osf3.h: Ditto.
11149         * config/djgpp/djconfig.sh: Ditto.
11150         * config/i386/nm-fbsd.h: Ditto.
11151         * config/i386/nm-i386gnu.h: Ditto.
11152         * config/nm-linux.h: Ditto.
11153         * config/nm-nto.h: Ditto.
11154         * config/rs6000/nm-rs6000.h: Ditto.
11155         * config/sparc/nm-sol2.h: Ditto.
11156         * darwin-nat-info.c: Ditto.
11157         * dfp.c: Ditto.
11158         * dfp.h: Ditto.
11159         * gdb-demangle.h: Ditto.
11160         * i386-darwin-nat.c: Ditto.
11161         * i386-darwin-tdep.c: Ditto.
11162         * linux-fork.h: Ditto.
11163         * m32c-tdep.c: Ditto.
11164         * microblaze-linux-tdep.c: Ditto.
11165         * microblaze-rom.c: Ditto.
11166         * microblaze-tdep.c: Ditto.
11167         * microblaze-tdep.h: Ditto.
11168         * mips-linux-tdep.h: Ditto.
11169         * ppc-ravenscar-thread.c: Ditto.
11170         * ppc-ravenscar-thread.h: Ditto.
11171         * prologue-value.c: Ditto.
11172         * prologue-value.h: Ditto.
11173         * ravenscar-thread.c: Ditto.
11174         * ravenscar-thread.h: Ditto.
11175         * sparc-ravenscar-thread.c: Ditto.
11176         * sparc-ravenscar-thread.h: Ditto.
11177         * tilegx-linux-tdep.c: Ditto.
11178         * unwind_stop_reasons.def: Ditto.
11179         * windows-nat.h: Ditto.
11180         * xtensa-linux-tdep.c: Ditto.
11181         * xtensa-xtregs.c: Ditto.
11182         * regformats/regdat.sh: Ditto.
11183         * regformats/regdef.h: Ditto.
11184
11185 2013-02-12  Pedro Alves  <palves@redhat.com>
11186
11187         * break-catch-sig.c: Update copyright years.
11188
11189 2013-02-11  Siva Chandra Reddy  <sivachandra@google.com>
11190
11191         Add support for a destructor for ui_out data and use it to
11192         provide a ui_out destructor.
11193         * ui-out.h: Declare the new ui_out destructor.
11194         (ui_out_impl): Add a field for data destructor in ui_out_impl.
11195         * ui-out.c (default_data_destroy): Add a default data destructor
11196         which does nothing.
11197         (default_ui_out_impl): Set the new data_destroy field to
11198         default_data_destroy
11199         (uo_data_destroy): Local function which invokes the data
11200         destructor if present.
11201         (clear_table): Local function which clears the table data of a
11202         ui_out object.
11203         (ui_out_destroy): Public function which frees a ui_out object.
11204         (ui_out_table_end): Use the new clear_table function.
11205         * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
11206         NULL.
11207         * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
11208         to NULL.
11209
11210 2013-02-11  Doug Evans  <dje@google.com>
11211
11212         * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
11213         (printf_decfloat): New function.  Broken out from ui_printf.
11214         Remove unnecessary code to shift the entire format string down.
11215         (printf_pointer): New function.
11216         (ui_printf): Code to print C strings, wide C strings, decfloats,
11217         and pointers moved to separate functions.
11218
11219 2013-02-11  Sergio Durigan Junior  <sergiodj@redhat.com>
11220
11221         * valops.c (value_assign): Handling bitfield offset in
11222         `lval_internalvar_component' case.
11223
11224 2013-02-08  Doug Evans  <dje@google.com>
11225
11226         * common/format.c (parse_format_string): Fix whitespace.
11227
11228 2013-02-08  Matthew Gretton-Dann  <matthew.gretton-dann@linaro.org>
11229
11230         * stack.c (return_command): Work around uninitialized variable
11231         warning.
11232
11233 2013-02-08  Yufeng Zhang  <yufeng.zhang@arm.com>
11234
11235         * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
11236         number of the registers from 36 to 34.
11237
11238 2013-02-08  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11239
11240         * NEWS: Mention new AArch64 native and target support.
11241
11242 2013-02-08  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11243
11244         * MAINTAINERS (Write After Approval): Add myself.
11245
11246 2013-02-08  Jim MacArthur  <jim.macarthur@arm.com>
11247             Marcus Shawcroft  <marcus.shawcroft@arm.com>
11248             Nigel Stephens  <nigel.stephens@arm.com>
11249             Yufeng Zhang  <yufeng.zhang@arm.com>
11250
11251         * aarch64-linux-nat.c: New file.
11252         * config/aarch64/linux.mh: New file.
11253         * configure.host: Add AArch64.
11254         * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
11255
11256 2013-02-07  Doug Evans  <dje@google.com>
11257
11258         * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
11259         disassemble command.
11260
11261 2013-02-07  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11262
11263         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
11264         set_gdbarch_fetch_tls_load_module_address.
11265
11266 2013-02-06  David S. Miller  <davem@davemloft.net>
11267
11268         * sparc-tdep.c (sparc32_return_value): Handle writing return value when
11269         using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
11270         * value.c (struct_return_convention): New function.
11271         (using_struct_return): Implement in terms of struct_return_convention.
11272         * value.h (struct_return_convention): Declare.
11273         * stack.c (return_command): Allow successful overriding of the return
11274         value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
11275
11276 2013-02-06  Tom Tromey  <tromey@redhat.com>
11277
11278         * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
11279         outside of TRY_CATCH.
11280
11281 2013-02-06  Yao Qi  <yao@codesourcery.com>
11282
11283         * mi/mi-interp.c: Include "tracepoint.h".
11284         (mi_tsv_modified): Declare.
11285         (mi_tsv_created, mi_tsv_deleted): Update declaration.
11286         (mi_interpreter_init): Call observer_attach_tsv_modified.
11287         (mi_tsv_modified): New.
11288         (mi_tsv_created, mi_tsv_deleted): Update.
11289         * tracepoint.c (trace_variable_command): Call
11290         observer_notify_tsv_modified if the initial value of tsv is
11291         changed.
11292         (delete_trace_state_variable): Call
11293         observer_notify_tsv_deleted earlier.
11294         (trace_variable_command): Caller update.
11295         (create_tsv_from_upload): Likewise.
11296         * observer.sh: Declare "struct trace_state_variable".
11297
11298         * NEWS: Mention the new MI notification "=tsv-modified".
11299
11300 2013-02-05  Doug Evans  <dje@google.com>
11301
11302         * completer.c (location_completer): Fix typo in comment.
11303
11304 2013-02-05  Jan Kratochvil  <jan.kratochvil@redhat.com>
11305
11306         * breakpoint.c (add_location_to_breakpoint): Insert the location with
11307         ADDRESS sorted.
11308
11309 2013-02-05  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11310
11311         * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
11312         Refactor if statement to avoid trailing || operator.
11313
11314 2013-02-05  Andreas Tobler  <andreast@fgznet.ch>
11315
11316         * NEWS: Add PowerPC FreeBSD as a new native configuration.
11317
11318 2013-02-04  Andreas Tobler  <andreast@fgznet.ch>
11319
11320         * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
11321         * configure.host: Add powerpc*-*-freebsd* target.
11322         * configure.tgt: Add target info for powerpc*-*-freebsd*.
11323         * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
11324         * config/powerpc/fbsd.mh: New file.
11325
11326 2013-02-04  Sergio Durigan Junior  <sergiodj@redhat.com>
11327             Denys Vlasenko  <dvlasenk@redhat.com>
11328             Pedro Alves  <palves@redhat.com>
11329
11330         * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
11331         (struct elf_internal_linux_prpsinfo): Forward declare.
11332         * gdbarch.h, gdbarch.c: Regenerate.
11333         * linux-tdep.c: Include `cli/cli-utils.h'.
11334         (linux_fill_prpsinfo): New function.
11335         (linux_make_corefile_notes): Use linux_fill_prpsinfo.  If there's
11336         an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
11337         elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
11338         depending on gdbarch pointer bitness.
11339         * ppc-linux-tdep.c: Include elf-bfd.h.
11340         (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
11341         on 32-bit.
11342
11343 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
11344             Marcus Shawcroft  <marcus.shawcroft@arm.com>
11345             Nigel Stephens  <nigel.stephens@arm.com>
11346             Yufeng Zhang  <yufeng.zhang@arm.com>
11347
11348         * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
11349
11350 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
11351             Marcus Shawcroft  <marcus.shawcroft@arm.com>
11352             Nigel Stephens  <nigel.stephens@arm.com>
11353             Yufeng Zhang  <yufeng.zhang@arm.com>
11354
11355         * aarch64-newlib-tdep.c: New file.
11356         * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
11357         aarch64*-*-elf.
11358         * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
11359         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
11360         (ALLDEPFILES): Add aarch64-newlib-tdep.c.
11361         * osabi.c (gdb_osabi_names): Add "Newlib".
11362
11363 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
11364             Marcus Shawcroft  <marcus.shawcroft@arm.com>
11365             Nigel Stephens  <nigel.stephens@arm.com>
11366             Yufeng Zhang  <yufeng.zhang@arm.com>
11367
11368         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
11369         (ALLDEPFILES): Add aarch64-linux-tdep.c.
11370         * aarch64-linux-tdep.c: New file.
11371         * aarch64-linux-tdep.h: New file.
11372         * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
11373         * configure.tgt: Add aarch64-none-linux-gnu.
11374
11375 2013-02-04  Jim MacArthur  <jim.macarthur@arm.com>
11376             Marcus Shawcroft  <marcus.shawcroft@arm.com>
11377             Nigel Stephens  <nigel.stephens@arm.com>
11378             Yufeng Zhang  <yufeng.zhang@arm.com>
11379
11380         * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
11381         (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
11382         (ALLDEPFILES): Add aarch64-tdep.c.
11383         * aarch64-tdep.c: New file.
11384         * aarch64-tdep.h: New file.
11385         * configure.tgt: Add AArch64.
11386         * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
11387         (aarch64-expedite): New definition.
11388         * features/aarch64-core.xml: New file.
11389         * features/aarch64-fpu.xml: New file.
11390         * features/aarch64-without-fpu.c: New file (generated).
11391         * features/aarch64-without-fpu.xml: New file.
11392         * features/aarch64.c: New file (generated).
11393         * features/aarch64.xml: New file.
11394         * regformats/aarch64-without-fpu.dat: New file (generated).
11395         * regformats/aarch64.dat: New file (generated).
11396
11397 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11398
11399         * contrib/expect-read1.c: New file.
11400         * contrib/expect-read1.sh: New file.
11401
11402 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11403
11404         * dwarf2read.c (file_file_name): New function with code from
11405         file_full_name.
11406         (file_full_name): Move most of the code to file_file_name.
11407         (macro_start_file): Rename variable full_name to file_name and use
11408         file_file_name for it.  Add comp_dir parameter to new_macro_table.
11409         * macrocmd.c (show_pp_source_pos): New variable fullname.  Replace any
11410         macro_source_file->filename access by macro_source_fullname call.
11411         * macroscope.c (_initialize_macroscope): Update the new_macro_table
11412         caller.
11413         * macrotab.c (struct macro_table): New field comp_dir.
11414         (macro_include): New variables link_fullname and source_fullname.
11415         Replace any macro_source_file->filename access by macro_source_fullname
11416         call.
11417         (macro_lookup_inclusion): Remove the partial filenames checking code.
11418         (check_for_redefinition): New variables source_fullname and
11419         found_key_fullname.  Replace any macro_source_file->filename access by
11420         macro_source_fullname call.
11421         (macro_undef): New variables source_fullname and key_fullname.  Replace
11422         any macro_source_file->filename access by macro_source_fullname call.
11423         (macro_lookup_definition): New variables retval and source_fullname.
11424         Replace any macro_source_file->filename access by macro_source_fullname
11425         call.
11426         (foreach_macro): New variable key_fullname.  Replace any
11427         macro_source_file->filename access by macro_source_fullname call.
11428         (foreach_macro_in_scope): New variable datum_fullname.  Replace any
11429         macro_source_file->filename access by macro_source_fullname call.
11430         (new_macro_table): Add parameter comp_dir.  Initialize T with it.
11431         (macro_source_fullname): New function.
11432         * macrotab.h (struct macro_source_file): Extent the filename field
11433         comment.
11434         (new_macro_table): New parameter comp_dir, add a comment for it.
11435         (macro_source_fullname): new declaration.
11436
11437 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11438
11439         * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
11440         this_real_name to outer block.  Use it also for
11441         compare_filenames_for_search.
11442         (dw2_expand_symtabs_matching): New variable this_real_name.  Use it
11443         with dw2_get_real_path for file_matcher, considering also
11444         BASENAMES_MAY_DIFFER.
11445         (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
11446
11447 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11448
11449         * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
11450         to the file_matcher parameter.  Pass 0 to it.
11451         (dwarf2_create_include_psymtab): Copy also DIRNAME.
11452         * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
11453         NULL psymtab_to_fullname result.
11454         (psymtab_to_fullname): Remove variable r.  Never return NULL, assemble
11455         an expected filename instead.
11456         (expand_symtabs_matching_via_partial): Add basenames parameter to the
11457         file_matcher parameter.  Call also psymtab_to_fullname, after newly
11458         considering BASENAMES_MAY_DIFFER.
11459         * source.c (rewrite_source_path): Remove static.
11460         * source.h (rewrite_source_path): New declaration.
11461         * symfile.h (struct quick_symbol_functions): Add basenames parameter to
11462         the expand_symtabs_matching field.  Comment it.
11463         * symtab.c (file_matches): New function comment.  Add parameter
11464         basenames, implement it.
11465         (search_symbols_file_matches): Add basenames parameter.  Update the
11466         file_matches caller.
11467         (search_symbols): Match FILES also against symtab_to_fullname.
11468         Optimize it for BASENAMES_MAY_DIFFER.
11469
11470 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11471
11472         * source.c (print_source_lines_base): Print for TUI also "fullname".
11473         * tui/tui-data.c (init_content_element): Change tui_locator_element
11474         field to full_name.
11475         * tui/tui-data.h (struct tui_locator_element): Likewise.
11476         * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
11477         tui_update_locator_filename calls to tui_update_locator_fullname.
11478         Replace symtab->filename refererence by symtab_to_fullname call.
11479         * tui/tui-out.c (tui_field_string): Check for "fullname" now.
11480         * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
11481         field to full_name.  Replace symtab->filename refererence by
11482         symtab_to_fullname call.
11483         (tui_show_symtab_source): Rename parameter to fullname.  Change
11484         tui_locator_element field to full_name.
11485         * tui/tui-stack.c: Include source.h.
11486         (tui_set_locator_filename): Rename the declaration to ...
11487         (tui_set_locator_fullname): ... here.  Rename its parameter to
11488         fullname, updates its comment.
11489         (tui_set_locator_info): Rename its parameter to fullname.
11490         (tui_set_locator_filename): Rename the definition to ...
11491         (tui_set_locator_fullname): ... here.  Rename its parameter to
11492         fullname, updates its comment.  Change tui_locator_element field to
11493         full_name.
11494         (tui_set_locator_info): Rename its parameter to fullname.
11495         (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
11496         (tui_update_locator_filename): Rename to ...
11497         (tui_update_locator_fullname): ... here. Rename callee to
11498         tui_set_locator_fullname.
11499         (tui_show_frame_info): Replace symtab->filename refererence by
11500         symtab_to_fullname call.
11501         * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
11502         (tui_update_locator_fullname): ... here.
11503         * tui/tui-winsource.c (tui_display_main): Rename the callee to
11504         tui_update_locator_fullname.  Replace symtab->filename refererence by
11505         symtab_to_fullname call.
11506         * tui/tui.c (tui_show_source): Rename its parameter to fullname.
11507         Rename the callee to tui_update_locator_fullname.
11508         * tui/tui.h (tui_show_source): Rename its parameter to fullname.
11509
11510 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11511
11512         * ada-lang.c (user_select_syms): Replace symtab->filename refererences
11513         by symtab_to_filename_for_display calls.
11514         * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
11515         (clear_command): New variable sal_fullname, initialize it.  Replace
11516         compare_filenames_for_search by filename_cmp with sal_fullname.
11517         (say_where, update_static_tracepoint): Replace symtab->filename
11518         refererences by symtab_to_filename_for_display calls.
11519         * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
11520         Likewise.
11521         * dwarf2read.c: Include source.h.
11522         (fixup_go_packaging): Replace symtab->filename refererences by
11523         symtab_to_filename_for_display calls.
11524         * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
11525         Replace symtab->filename refererences by symtab_to_filename_for_display
11526         calls.
11527         (create_sals_line_offset, convert_linespec_to_sals): New variable
11528         fullname, initialize it, replace symtab->filename reference by the
11529         variable.
11530         * linux-fork.c: Include source.h.
11531         (info_checkpoints_command): Replace symtab->filename refererences by
11532         symtab_to_filename_for_display calls.
11533         * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
11534         by symtab_to_filename_for_display calls.
11535         * mdebugread.c: Include source.h.
11536         (psymtab_to_symtab_1): Replace symtab->filename refererences by
11537         symtab_to_filename_for_display calls.
11538         * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
11539         (mi_cmd_file_list_exec_source_files): Likewise.
11540         * printcmd.c: Include source.h.
11541         (build_address_symbolic): Replace symtab->filename refererences by
11542         symtab_to_filename_for_display calls.
11543         * psymtab.c (partial_map_symtabs_matching_filename)
11544         (read_psymtabs_with_fullname): Call compare_filenames_for_search also
11545         with psymtab_to_fullname.
11546         * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
11547         by symtab_to_filename_for_display calls.
11548         (stpy_get_filename): New variable filename, initialize it, use instead
11549         of symtab->filename refererences.
11550         (salpy_str): Make variable filename const char *.  Replace
11551         symtab->filename refererences by symtab_to_filename_for_display calls.
11552         * skip.c: Include source.h and filenames.h.
11553         (skip_file_command): Remove const from the symtab variable.  Replace
11554         symtab->filename refererences by symtab_to_fullname call.
11555         (function_name_is_marked_for_skip): New variables searched_for_fullname
11556         and fullname.  Use them to search also with symtab's fullname.
11557         * source.c (find_source_lines): Replace symtab->filename refererences
11558         by symtab_to_filename_for_display calls.
11559         (print_source_lines_base): New variable filename, use it instead of
11560         symtab->filename.  Replace symtab->filename refererences by
11561         symtab_to_filename_for_display calls.
11562         (line_info, forward_search_command): Replace symtab->filename
11563         refererences by symtab_to_filename_for_display calls.
11564         (reverse_search_command): Replace symtab->filename refererences by
11565         symtab_to_filename_for_display calls.  New variable filename for it.
11566         * stack.c (frame_info): Likewise.
11567         * symmisc.c: Include source.h.
11568         (dump_objfile, dump_symtab_1, maintenance_print_symbols)
11569         (maintenance_info_symtabs): Replace symtab->filename refererences by
11570         symtab_to_filename_for_display calls.
11571         * symtab.c (iterate_over_some_symtabs): Call
11572         compare_filenames_for_search also with symtab_to_fullname.
11573         (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
11574         symtab->filename refererences by symtab_to_filename_for_display calls.
11575         (find_line_symtab): Replace symtab->filename refererences by
11576         symtab_to_filename_for_display calls.
11577         (file_matches): Replace filename_cmp by compare_filenames_for_search.
11578         (print_symbol_info): Make the last parameter const char *.  New
11579         variable s_filename.  Use it in the function.
11580         (symtab_symbol_info): Make the last_filename variable const char *.
11581         Replace symtab->filename refererences by symtab_to_filename_for_display
11582         calls.
11583         (rbreak_command): New variable fullname.  Use it.  Replace
11584         symtab->filename refererence by symtab_to_filename_for_display call.
11585         * tracepoint.c (set_traceframe_context, trace_find_line_command)
11586         (print_one_static_tracepoint_marker): Replace symtab->filename
11587         refererences by symtab_to_filename_for_display calls.
11588         * tui/tui-source.c (tui_set_source_content): New variables filename and
11589         s_filename.  Replace symtab->filename refererences by this variable.
11590         Replace other symtab->filename refererences by
11591         symtab_to_filename_for_display calls.
11592
11593 2013-02-03  Eldar Gaynetdinov <hal9000ed2k@gmail.com>
11594             Jan Kratochvil  <jan.kratochvil@redhat.com>
11595
11596         Add a new variable that controls a way in which filenames are
11597         displayed.
11598         * NEWS (set filename-display): New entry.
11599         * source.c (filename_display_basename, filename_display_relative)
11600         (filename_display_absolute, filename_display_kind_names)
11601         (filename_display_string, show_filename_display_string)
11602         (symtab_to_filename_for_display): New.
11603         (_initialize_source): Added initialization of 'filename-display'
11604         variable.
11605         * source.h (symtab_to_filename_for_display): Added declaration.
11606         * stack.c (print_frame): Added new variable and calling of a new
11607         function and condition with this variable. Changed third argument of
11608         calling of a function.
11609
11610 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11611
11612         * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
11613         Rename field reference filename to fullname.
11614         * tui/tui-data.h (struct tui_source_info): Rename field filename to
11615         fullname.  New comment for it.
11616         * tui/tui-source.c (tui_set_source_content): Rename field reference
11617         filename to fullname.  Initialize field by symtab_to_fullname now.
11618         * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
11619         reference filename to fullname.  Use symtab_to_fullname during
11620         comparison.
11621
11622 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11623
11624         Code cleanup.
11625         * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
11626         (dw2_expand_symtabs_with_fullname): ... here.  Rename parameter
11627         filename to fullname.  Rename variable this_name to this_fullname.
11628         Lowercase FILENAME_CMP call.
11629         (dw2_find_symbol_file): New comment for the returned string.
11630         (dwarf2_gdb_index_functions): Rename the function to
11631         dw2_expand_symtabs_with_fullname.
11632         * psymtab.c (read_psymtabs_with_filename): Rename to ...
11633         (read_psymtabs_with_fullname): ... here.  Rename parameter filename to
11634         fullname.
11635         (psym_functions): Rename the function to read_psymtabs_with_fullname.
11636         * symfile.h (struct quick_symbol_functions): Rename field
11637         expand_symtabs_with_filename to expand_symtabs_with_fullname and its
11638         parameter filename to fullname.  Document returned string meaning for
11639         find_symbol_file.
11640         * symtab.c (find_line_symtab): Rename the called function to
11641         expand_symtabs_with_fullname.
11642
11643 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11644
11645         Code cleanup.
11646         * breakpoint.c (clear_command): Remove variable is_abs, unify the
11647         call of filename_cmp with compare_filenames_for_search.
11648         * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
11649         is_abs, unify the call of FILENAME_CMP with
11650         compare_filenames_for_search.  New gdb_asserts for real_path and name.
11651         Unify the call of compare_filenames_for_search with FILENAME_CMP.
11652         * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
11653         * symfile.h (struct quick_symbol_functions): Extend the comment for
11654         map_symtabs_matching_filename.
11655         * symtab.c (compare_filenames_for_search): Remove the function comment
11656         relative path requirement.  Handle absolute filenames, with a comment.
11657         (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
11658         FILENAME_CMP with compare_filenames_for_search.  New gdb_asserts for
11659         real_path and name.  Unify the call of compare_filenames_for_search
11660         with FILENAME_CMP.
11661         (iterate_over_symtabs): New gdb_assert on REAL_PATH.
11662
11663 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11664
11665         Code cleanup.
11666         * breakpoint.c (print_breakpoint_location): Replace bp_location field
11667         source_file references by symtab field references.  Remove variables
11668         sal and fullname.
11669         (momentary_breakpoint_from_master, add_location_to_breakpoint):
11670         (clear_command, say_where): Replace bp_location field source_file
11671         references by symtab field references.
11672         (bp_location_dtor): Remove the source_file reference.
11673         (update_static_tracepoint): Replace bp_location field source_file
11674         references by symtab field references.
11675         (breakpoint_free_objfile): New function.
11676         * breakpoint.h (struct bp_location): Extend the comment for line_number.
11677         Replace the field source_file by field symtab, extend its comment.
11678         (breakpoint_free_objfile): New declaration.
11679         * objfiles.c (free_objfile): Call breakpoint_free_objfile.
11680         * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
11681         field source_file references by symtab field references.
11682
11683 2013-02-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
11684
11685         Replace xfullpath calls by gdb_realpath calls.
11686         * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
11687         function comment.
11688         * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
11689         Remove it from the iterate_over_some_symtabs call.
11690         (dw2_map_symtabs_matching_filename): Remove parameter full_path.
11691         Remove it from the dw2_map_expand_apply calls, remove a block handling
11692         it.
11693         * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
11694         Remove it from the iterate_over_some_symtabs call.
11695         (partial_map_symtabs_matching_filename): Remove parameter full_path.
11696         Remove it from the partial_map_expand_apply calls, remove a block
11697         handling it.  Drop gdb_realpath call and cleanups from the real_path
11698         handling.
11699         * source.c (openp): Drop the comment part about xfullpath.  Replace
11700         xfullpath calls by gdb_realpath calls.
11701         (find_and_open_source): Replace xfullpath call by gdb_realpath call.
11702         * symfile.h (struct quick_symbol_functions): Remove parameter full_path
11703         from method map_symtabs_matching_filename and its comment.
11704         * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
11705         gdb_realpath call.
11706         * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
11707         remove it also from the function comment, remove a block handling it.
11708         Drop gdb_realpath call and cleanups from the real_path handling.
11709         (iterate_over_symtabs): Drop variable full_path and its use.
11710         * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
11711         * utils.c (xfullpath): Remove.
11712         * utils.h (xfullpath): Remove.
11713
11714 2013-02-01  Andreas Tobler  <andreast@fgznet.ch>
11715
11716         * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
11717         (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
11718         (ALLDEPFILES): Add ppc64-tdep.c.
11719         * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
11720         ppc64-tdep.o to gdb_target_obs.
11721         * ppc64-tdep.h: New file.
11722         * ppc64-tdep.c: New file.
11723         (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
11724         ppc-linux-tdep.c to here.
11725         (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
11726         (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
11727         (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
11728         (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
11729         from ppc-linux-tdep.c to here.
11730         (ppc64_convert_from_func_ptr_addr): Rename from
11731         ppc64_linux_convert_from_func_ptr_addr to
11732         ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
11733         here.
11734         * rs6000-tdep.c:
11735         (read_insn): Move from ppc-linux-tdep.c to here.
11736         (insns_match_pattern, insn_d_field, insn_ds_field): Move
11737         from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
11738         * ppc-linux-tdep.c: Include ppc64-tdep.h.
11739         Removed above functions.
11740         (ppc_linux_init_abi): Adjust.
11741
11742 2013-02-01  Aleksandar Ristovski  <aristovski@qnx.com>
11743
11744         * ada-valprint.c (ada_print_floating): Remove unused 'len'.
11745
11746 2013-02-01  Aleksandar Ristovski  <aristovski@qnx.com>
11747
11748         * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
11749
11750 2013-02-01  Pedro Alves  <palves@redhat.com>
11751
11752         * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
11753         * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
11754
11755 2013-02-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
11756
11757         * elfread.c (elf_symfile_read): Limit separate debug info additions to
11758         files with no separate debug info.
11759         * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
11760         * symfile.c (read_symbols): Call find_separate_debug_file_in_section
11761         only for files with no separate debug info.
11762
11763 2013-01-31  Tom Tromey  <tromey@redhat.com>
11764
11765         * jit.c (jit_program_space_data): Rename from jit_inferior_data;
11766         change type.
11767         (struct jit_program_space_data): Rename from jit_inferior_data.
11768         Update comments.
11769         (get_jit_program_space_data): Rename from get_jit_inferior_data.
11770         Change return type.  Attach data to program space.
11771         (jit_program_space_data_cleanup): Rename from
11772         jit_inferior_data_cleanup; change argument type.
11773         (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
11774         change type.
11775         (jit_register_code): Update.
11776         (jit_update_inferior_cache): Remove.
11777         (jit_breakpoint_deleted): Get jit data from the location's program
11778         space.
11779         (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
11780         'ps_data', change type.
11781         (jit_inferior_init, jit_breakpoint_re_set_internal)
11782         (jit_event_handler): Update.
11783         (free_objfile_data): Get data from objfile's program space.
11784         (_initialize_jit): Update.
11785
11786 2013-01-31  Tom Tromey  <tromey@redhat.com>
11787
11788         PR gdb/13987:
11789         * jit.c (struct jit_inferior_data) <cached_code_address,
11790         jit_breakpoint>: New fields.
11791         (jit_breakpoint_re_set_internal): Fix logging.  Only create
11792         breakpoint if cached address has changed.
11793         (jit_update_inferior_cache, jit_breakpoint_deleted): New
11794         functions.
11795         (_initialize_jit): Register breakpoint deleted observer.
11796
11797 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
11798
11799         * infrun.c (handle_syscall_event): Remove unused gdbarch.
11800         (save_infcall_suspend_state): Ifdef out unused inf.
11801         (restore_infcall_suspend_state): Ifdef out unused inf.
11802         * jit.c (jit_register_code): Remove unused i, b, inf_data.
11803         (jit_frame_sniffer): Remove unused inf_data.
11804
11805 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
11806
11807         * c-exp.y (classify_inner_name): Remove unused type.
11808         * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
11809         in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
11810         need_escape.
11811         (c_get_string): Remove unused kind.
11812         * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
11813
11814 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
11815
11816         * charset.c (intermediate_encoding): Remove unused i.
11817         * completer.c (signal_completer): Remove unused i.
11818         * continuations.c (discard_my_continuations_1): Remove unused
11819         continuation_ptr.
11820         * corelow.c (core_close): Remove unuseD name.
11821         (get_core_siginfo): Remove unused pid.
11822         * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
11823         i, cps.
11824         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
11825         (loclist_describe_location): Remove unused first.
11826         * event-top.c (command_line_handler): Remove unused got_eof.
11827         * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
11828         (resize_section_table): Remove unused old_value.
11829         * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
11830         * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
11831         * i386-tdep.c (i386_process_record): Remove unused rex.
11832         * infcmd.c (get_return_value): Remove unused uiout.
11833         * jv-lang.c (type_from_class): Remove unused is_array.
11834         * jv-valprint.c (java_val_print): Remove unused i.
11835         * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
11836         * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
11837         * m2-typeprint.c (m2_print_type): Remove unused code.
11838         * macroexp.c (get_character_constant): Remove unused body_start.
11839         (macro_stringify): Remove unused result.
11840         * objc-lang.c (find_methods): Remove unused gdbarch.
11841         * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
11842         * regcache.c (regcache_cooked_read): Remove unused gdbarch.
11843         * stack.c (print_frame_args): Remove unused summary.
11844         * thread.c (thread_apply_command): Remove unused p.
11845         * valarith.c (value_x_unop): Remove unused mangle_ptr.
11846         * valops.c (search_struct_method): Remove unused skip.
11847         * valprint.c (generic_val_print): Remove unused byte_order.
11848         * varobj.c (varobj_update): Remove unused changed.
11849         * cli/cli-cmds.c (complete_command): Remove unused next_item.
11850         (alias_command): Remove unused c.
11851         * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
11852         * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
11853         format.
11854         (mi_cmd_data_write_memory): Remove unused word_format.
11855         (mi_cmd_data_write_memory_bytes): Remove unused r.
11856         * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
11857         p_start, p_end.
11858         * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
11859         * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
11860         line_width.
11861
11862 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
11863
11864         * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
11865         * symtab.c (iterate_over_symtabs): Remove unused s.
11866         (find_pc_sect_symtab): Remove unused pspAce.
11867         (find_pc_sect_line): Remove unused alt_symtab.
11868         (find_pcs_for_symtab_line): Remove unused ix, previous_function.
11869         (completion_list_add_name): Remove unused newsize.
11870
11871 2013-01-31  Tom Tromey  <tromey@redhat.com>
11872
11873         PR c++/14998:
11874         * dwarf2read.c (read_tag_ptr_to_member_type): Handle
11875         TYPE_CODE_FUNC.
11876
11877 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
11878
11879         * target.c (target_read_string): Remove unused origlen.
11880
11881 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
11882
11883         * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
11884         * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
11885         * ax-general.c (ax_print): Remove unused is_float.
11886         * blockframe.c (block_innermost_frame): Remove unused start, end.
11887         * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
11888
11889 2013-01-31  Aleksandar Ristovski  <aristovski@qnx.com>
11890
11891         * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
11892         (svr4_read_so_list): Remove unused lmo.
11893         * solib-target.c (solib_target_relocate_section_addresses): Remove
11894         unused flags.
11895
11896 2013-01-30  Tom Tromey  <tromey@redhat.com>
11897
11898         * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
11899
11900 2013-01-30  Tom Tromey  <tromey@redhat.com>
11901
11902         * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
11903         * utils.c (gnu_debuglink_crc32): Remove.
11904         * utils.h (gnu_debuglink_crc32): Don't declare.
11905
11906 2013-01-30  Tom Tromey  <tromey@redhat.com>
11907
11908         * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
11909         (read_structure_type, read_enumeration_type): Remove cast.
11910
11911 2013-01-30  Tom Tromey  <tromey@redhat.com>
11912
11913         * dwarf2read.c (read_namespace_type): Remove cast.
11914         (read_typedef): Likewise.
11915
11916 2013-01-29  Tom Tromey  <tromey@redhat.com>
11917
11918         * dwarf2read.c (free_dwo_file): Remove assert.
11919
11920 2013-01-29  Tom Tromey  <tromey@redhat.com>
11921
11922         * value.c (deprecated_set_value_modifiable): Remove.
11923         * value.h (deprecated_set_value_modifiable): Remove.
11924
11925 2013-01-28  Doug Evans  <dje@google.com>
11926
11927         * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
11928         to addresses from dwo files.
11929
11930 2013-01-25  Siva Chandra Reddy  <sivachandra@google.com>
11931
11932         * valops.c (find_overload_match): Remove unused argument 'lax'.
11933         * value.h: Remove unused argument 'lax' from the declaration of
11934         find_overload_match.
11935         * eval.c (value_subexp_standard): Do not pass a 'lax' argument
11936         to find_overload_match.
11937         * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
11938         argument to find_overload_match.
11939
11940 2013-01-25  Tom Tromey  <tromey@redhat.com>
11941
11942         * dwarf2read.c (processing_has_namespace_info): Remove.
11943         (struct dwarf2_cu) <processing_has_namespace_info>: New field.
11944         (process_die, read_func_scope, dwarf2_start_symtab)
11945         (new_symbol_full): Update.
11946
11947 2013-01-25  Tom Tromey  <tromey@redhat.com>
11948
11949         * cp-namespace.c (cp_set_block_scope): Remove.
11950         * cp-support.h (cp_set_block_scope): Remove.
11951         * dbxread.c: Include block.h.
11952         (cp_set_block_scope): New function.
11953         (process_one_symbol): Update.
11954         * dwarf2read.c (read_func_scope): Use block_set_scope.
11955
11956 2013-01-25  Pedro Alves  <palves@redhat.com>
11957
11958         * remote.c (add_current_inferior_and_thread): Tweak comment.
11959
11960 2013-01-25  Tom Tromey  <tromey@redhat.com>
11961
11962         * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
11963         (cp_add_using_directive): Add 'copy_names' argument.
11964         * cp-support.h (cp_add_using_directive): Update.
11965         (struct using_direct) <import_src, import_dest, alias,
11966         declaration>: Now const.
11967         * dwarf2read.c (read_import_statement): Use obconcat.
11968         Don't copy names passed to cp_add_using_directive.
11969
11970 2013-01-25  Tom Tromey  <tromey@redhat.com>
11971
11972         * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
11973
11974 2013-01-25  Pedro Alves  <palves@redhat.com>
11975
11976         * remote.c (stop_reply_extract_thread): New.
11977         (add_current_inferior_and_thread): New parameter 'wait_status'.
11978         Handle it.
11979         (remote_start_remote): Pass wait status to
11980         add_current_inferior_and_thread.
11981         (extended_remote_run): Update comment.
11982         (extended_remote_create_inferior_1): Pass wait status to
11983         add_current_inferior_and_thread.
11984
11985 2013-01-25  Andrew Burgess  <aburgess@broadcom.com>
11986             Ulrich Weigand  <uweigand@de.ibm.com>
11987
11988         * valarith.c (value_vector_widen): New function for replicating a
11989         scalar into a vector.
11990         (value_binop): Use value_vector_widen to widen scalar to vector
11991         rather than casting, this better matches gcc C behaviour.
11992         * valops.c (value_casst): Update logic for casting between vector
11993         types, and for casting from scalar to vector, try to match gcc C
11994         behaviour.
11995         * value.h (value_vector_widen): Declare.
11996         * opencl-lang.c (opencl_value_cast): New opencl specific casting
11997         function, handle special case for casting scalar to vector.
11998         (opencl_relop): Use opencl_value_cast.
11999         (evaluate_subexp_opencl): Use opencl_value_cast instead of
12000         value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
12001         in order to use opencl_value_cast.
12002
12003 2013-01-25  Yao Qi  <yao@codesourcery.com>
12004
12005         * event-loop.c: Include "queue.h".
12006         (gdb_event_p): New typedef.
12007         (DECLARE_QUEUE_P): Use.
12008         (DEFINE_QUEUE_P): Use.
12009         (async_queue_event): Remove.
12010         (gdb_event_xfree): New.
12011         (initialize_event_loop): New.
12012         (process_event): Use QUEUE macros.
12013         (event_queue): Remove.
12014         (gdb_wait_for_event): Caller update.
12015         (check_async_event_handlers): Likewise.
12016         (poll_timers): Likewise.
12017         * event-loop.h (initialize_event_loop): Declare.
12018         * event-loop.c (gdb_event_xfree): New.
12019         * top.c (gdb_init): Call initialize_event_loop.
12020
12021 2013-01-25  Yao Qi  <yao@codesourcery.com>
12022
12023         * event-loop.c (async_queue_event): Remove one parameter
12024         'position'.  Remove code handling 'position' == TAIL.
12025         (gdb_wait_for_event): Caller update.
12026         (check_async_event_handlers): Caller update.
12027         (poll_timers): Caller update.
12028         * event-loop.h (enum queue_position): Remove.
12029
12030 2013-01-25  Maxim Kuvyrkov  <maxim@kugelworks.com>
12031
12032         * MAINTAINERS: Update my email.
12033
12034 2013-01-25  Yao Qi  <yao@codesourcery.com>
12035
12036         * main.c (print_gdb_help): Remove "--epoch" from the help
12037         message.
12038
12039 2013-01-24  Ulrich Weigand  <uweigand@de.ibm.com>
12040
12041         * symtab.c (skip_prologue_using_sal): Consider a file
12042         change the same as an increased line number
12043
12044 2013-01-24  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
12045
12046         * MAINTAINERS (Write After Approval): Add myself to the list.
12047
12048 2013-01-24  Tom Tromey  <tromey@redhat.com>
12049
12050         * ada-lang.h (ada_decode_symbol): Make return type const.
12051         * ada-lang.c (ada_decode_symbol): Likewise.
12052
12053 2013-01-23  Doug Evans  <dje@google.com>
12054
12055         * linespec.c (find_linespec_symbols): Make static.
12056
12057 2013-01-23  Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
12058
12059         * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
12060         type on float conversion for complex type.
12061
12062 2013-01-23  Siva Chandra Reddy  <sivachandra@google.com>
12063
12064         Add a new class gdb.Architecture which exposes GDB's
12065         internal representation of architecture via GDB Python API.
12066         * Makefile.in: Add entries corresponding to the new file
12067         python/py-arch.c.
12068         * NEWS (Python Scripting): Add entries for the new class
12069         gdb.Architecture and the new method gdb.Frame.architecture.
12070         * python/py-arch.c: Implement gdb.Architecture class.
12071         * python/py-frame.c (frapy_arch): Implement the method
12072         gdb.Frame.architecture().
12073         (frame_object_methods): Add 'architecture' to the method table.
12074         * python/python-internal.h: Add declarations of new utility
12075         functions.
12076         * python/python.c (_initialize_python): Initialize
12077         gdb.Architecture class.
12078
12079 2013-01-23  Doug Evans  <dje@google.com>
12080
12081         Work around binutils/15021.
12082         * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
12083         type_unit_group out of union s.  All uses updated.
12084         (read_index_from_section): Watch for index version 8.
12085         (follow_die_sig): If using .gdb_index version <= 7, record the TU as
12086         an imported symtab.
12087         (write_psymtabs_to_index): Increment version number to 8.
12088
12089 2013-01-22  Pedro Alves  <palves@redhat.com>
12090
12091         * annotate.c (breakpoint_changed): Skip if breakpoint is not
12092         user-visible.
12093
12094 2013-01-22  Pedro Alves  <palves@redhat.com>
12095
12096         * annotate.c (annotate_breakpoints_changed): Rename to ...
12097         (annotate_breakpoints_invalid): ... this.  Make static.
12098         (breakpoint_changed): Adjust.
12099         (_initialize_annotate): Always install the observers.  Install a
12100         "breakpoint_created" observer.
12101         * annotate.h (annotate_breakpoints_changed): Delete declaration.
12102         * breakpoint.c (set_breakpoint_condition)
12103         (breakpoint_set_commands, do_map_commands_command)
12104         (init_raw_breakpoint, clear_command, set_ignore_count)
12105         (enable_breakpoint_disp): No longer call
12106         annotate_breakpoints_changed.
12107
12108 2013-01-22  Pedro Alves  <palves@redhat.com>
12109
12110         * annotate.c: Include "inferior.h".
12111         (frames_invalid_emitted)
12112         (breakpoints_invalid_emitted): New globals.
12113         (async_background_execution_p): New function.
12114         (annotate_breakpoints_changed, annotate_frames_invalid): Skip
12115         emitting the annotation if it has already been emitted.
12116         (annotate_display_prompt): New function.
12117         * annotate.h (annotate_display_prompt): New declaration.
12118         * event-top.c: Include annotate.h.
12119         (display_gdb_prompt): Call annotate_display_prompt.
12120
12121 2013-01-22  Pedro Alves  <palves@redhat.com>
12122
12123         * annotate.c (ignore_count_changed): Delete.
12124         (annotate_breakpoints_changed): Don't clear ignore_count_changed.
12125         (annotate_ignore_count_change): Delete.
12126         (annotate_stopped): Don't emit a delayed breakpoints-changed
12127         annotation.
12128         * annotate.h (annotate_ignore_count_change): Delete.
12129         * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
12130         annotate_ignore_count_change.
12131
12132 2013-01-22  Tom Tromey  <tromey@redhat.com>
12133
12134         * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
12135         require_rvalue for a register location.
12136
12137 2013-01-21  Marc Khouzam  <marc.khouzam@ericsson.com>
12138
12139         * breakpoint.c (print_one_breakpoint_location): Add MI
12140         field 'thread-groups' when printing a breakpoint.
12141         (output_thread_groups): New function.
12142
12143 2013-01-21  Siva Chandra Reddy  <sivachandra@google.com>
12144
12145         * python/lib/gdb/commands/explore.py
12146         (CompoundExplorer.explore_expr): Correct the name of a method
12147         being invoked.
12148         (ExploreTypeCommand.invoke): Add a missing 'return'.
12149
12150 2013-01-21  Tom Tromey  <tromey@redhat.com>
12151
12152         * gdb_obstack.h (obconcat): Move declaration here, from...
12153         * symfile.h (obconcat): ... here.
12154         * gdb_obstack.c: New file.
12155         (obconcat): Move from...
12156         * symfile.c (obconcat): ... here.
12157         * Makefile.in (SFILES): Add gdb_obstack.c.
12158         (COMMON_OBS): Add gdb_obstack.o.
12159
12160 2013-01-21  Tom Tromey  <tromey@redhat.com>
12161
12162         * symfile.h (obsavestring): Don't declare.
12163         * symfile.c (obsavestring): Remove.
12164         * ada-exp.y: Use obstack_copy0, not obsavestring.
12165         * ada-lang.c: Use obstack_copy0, not obsavestring.
12166         * coffread.c: Use obstack_copy0, not obsavestring.
12167         * cp-namespace.c: Use obstack_copy0, not obsavestring.
12168         * dbxread.c: Use obstack_copy0, not obsavestring.
12169         * dwarf2read.c: Use obstack_copy0, not obsavestring.
12170         * jit.c: Use obstack_copy0, not obsavestring.
12171         * mdebugread.c: Use obstack_copy0, not obsavestring.
12172         * psymtab.c: Use obstack_copy0, not obsavestring.
12173         * stabsread.c: Use obstack_copy0, not obsavestring.
12174         * xcoffread.c: Use obstack_copy0, not obsavestring.
12175
12176 2013-01-21  Tom Tromey  <tromey@redhat.com>
12177
12178         * dwarf2read.c (fixup_go_packaging): Save package name
12179         on objfile obstack.
12180         * gdbtypes.c (init_type): Don't copy name.
12181
12182 2013-01-21  Tom Tromey  <tromey@redhat.com>
12183
12184         * dwarf2read.c (struct partial_die_info) <name, scope>: Now
12185         const.
12186         (struct attribute) <u.str>: Now const.
12187         (struct fnfieldlist) <name>: Now const.
12188         (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
12189         (partial_die_parent_scope): Make return type const.
12190         (partial_die_full_name, add_partial_symbol): Update.
12191         (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
12192         'name' const.
12193         (find_file_and_directory): Make 'name' and 'comp_dir' const.
12194         (read_file_scope, read_func_scope, dwarf2_add_field)
12195         (dwarf2_add_member_fn, read_structure_type)
12196         (process_enumeration_scope, read_array_type, read_module_type)
12197         (read_base_type, read_subrange_type): Update.
12198         (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
12199         (new_symbol_full, guess_full_die_structure_name): Update.
12200         (dwarf2_canonicalize_name): Return const type.  Make 'name' const.
12201         (dwarf2_name): Return const type.
12202         (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
12203         const.
12204
12205 2013-01-21  Tom Tromey  <tromey@redhat.com>
12206
12207         * gdbtypes.c (init_type): Make 'name' const.
12208         * gdbtypes.h (init_type): Update.
12209
12210 2013-01-21  Tom Tromey  <tromey@redhat.com>
12211
12212         * buildsym.c (patch_subfile_names): Use set_last_source_file.
12213         (start_symtab): Make 'name' and 'dirname' const.  Use
12214         set_last_source_file.
12215         (restart_symtab, reset_symtab_globals): Use set_last_source_file.
12216         (last_source_file): Define.  Now static.
12217         (set_last_source_file, get_last_source_file): New functions.
12218         * buildsym.h (last_source_file): Don't declare.
12219         (start_symtab): Update.
12220         (set_last_source_file, get_last_source_file): Declare.
12221         * coffread.c (complete_symtab): Use set_last_source_file.
12222         (coff_end_symtab): Likewise.
12223         (coff_symtab_read): Use set_last_source_file, get_last_source_file.
12224         * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
12225         set_last_source_file.
12226         (process_one_symbol): Use get_last_source_file.
12227         * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
12228         (psymtab_to_symtab_1): Use get_last_source_file.
12229         * xcoffread.c (process_linenos): Use get_last_source_file.
12230         (complete_symtab): Use set_last_source_file.
12231         (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
12232         (scan_xcoff_symtab): Use set_last_source_file.
12233
12234 2013-01-21  Tom Tromey  <tromey@redhat.com>
12235
12236         * symtab.c (struct demangled_name_entry) <mangled>: Now const.
12237         (symbol_set_names): Remove casts.  Handle field const-ness.
12238
12239 2013-01-21  Tom Tromey  <tromey@redhat.com>
12240
12241         * dwarf2read.c (new_symbol_full): Remove cast.
12242         * symtab.c (symbol_set_demangled_name): Make 'name' const.
12243         * symtab.h (symbol_set_demangled_name): Update.
12244
12245 2013-01-21  Tom Tromey  <tromey@redhat.com>
12246
12247         * main.c (captured_main): Call bfd_init.
12248
12249 2013-01-21  Tom Tromey  <tromey@redhat.com>
12250
12251         * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
12252         * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
12253         * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
12254         * NEWS: Update.
12255
12256 2013-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
12257
12258         * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
12259
12260 2013-01-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
12261
12262         Fix gdb.fortran/common-block.exp crash in PIE mode.
12263         * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
12264         LOC_COMMON_BLOCK.
12265         * f-valprint.c (info_common_command_for_block): Expect
12266         LOC_COMMON_BLOCK in gdb_assert.
12267         * symtab.h (struct general_symbol_info): Update comment for the
12268         common_block member.
12269         (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
12270         (enum address_class): New member LOC_COMMON_BLOCK.
12271
12272 2013-01-18  David Blaikie  <dblaikie@gmail.com>
12273
12274         * MAINTAINERS (Write After Approval): Add "David Blaikie".
12275
12276 2013-01-18  Tom Tromey  <tromey@redhat.com>
12277
12278         PR c++/14999:
12279         * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
12280         Call require_rvalue.
12281
12282 2013-01-18  Yao Qi  <yao@codesourcery.com>
12283
12284         * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
12285         (dbx_read_symtab): New declaration.
12286         (dbx_psymtab_to_symtab): Delete.
12287         (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
12288         Rename parameter PST to SELF.  Exchanged two parameters.
12289         (start_psymtab): Caller update.
12290         * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
12291         (dwarf2_read_symtab): New declaration.
12292         (dwarf2_psymtab_to_symtab): Delete.
12293         (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
12294         Rename parameter PST to SELF.  Exchanged two parameters.
12295         (create_partial_symtab): Caller update.
12296         * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
12297         (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
12298         Rename parameter PST to SELF.  Exchanged two parameters.
12299         (parse_partial_symbols, new_psymtab): Caller update.
12300         * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
12301         two parameters.
12302         * psymtab.c (psymtab_to_symtab): Caller update.
12303         * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
12304         (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
12305         Rename parameter PST to SELF.  Exchanged two parameters.
12306         (xcoff_start_psymtab): Caller update.
12307
12308 2013-01-18  Yao Qi  <yao@codesourcery.com>
12309
12310         * infrun.c (proceed): Rename local variable 'oneproc' to
12311         'force_step'.
12312
12313 2013-01-17  Doug Evans  <dje@google.com>
12314
12315         * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
12316         (dw2_build_type_unit_groups): Delete.  All uses updated.
12317
12318         * symtab.h (struct symbol_search): Add comment.
12319
12320 2013-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
12321
12322         * symtab.c (compare_filenames_for_search): New comment for
12323         HAS_DRIVE_SPEC.
12324
12325 2013-01-17  Tom Tromey  <tromey@redhat.com>
12326
12327         * cp-abi.c (cp_abi_completer): Fix typo in assignment.
12328
12329 2013-01-17  Jan Kratochvil  <jan.kratochvil@redhat.com>
12330
12331         * symtab.c (iterate_over_some_symtabs): New variable cleanups,
12332         initialize it by existing make_cleanup.  Call new do_cleanups.
12333
12334 2013-01-17  Tom Tromey  <tromey@redhat.com>
12335
12336         * cp-abi.c (cp_abi_completer): New function.
12337         (_initialize_cp_abi): Set completer for "set cp-abi".
12338
12339 2013-01-17  Tom Tromey  <tromey@redhat.com>
12340
12341         * mem-break.c: Remove obsolete comment.
12342         * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
12343
12344 2012-01-17  Sanjoy Das <sanjoy@playingwithpointers.com>
12345
12346         * jit.c (jit_reader_load_command): Interpret the jit reader name
12347         as an absolute path if it begins with a forward slash.
12348
12349 2012-01-17  Sanjoy Das <sanjoy@playingwithpointers.com>
12350
12351         PR gdb/14550
12352
12353         * jit.c (finalize_symtab): Ensure that only the global block has a
12354         NULL superblock.
12355
12356 2013-01-17  Pedro Alves  <palves@redhat.com>
12357
12358         * acinclude.m4: Include ../config/plugins.m4,
12359         ../config/largefile.m4 and ../config/lead-dot.m4.  Add comments.
12360         * Makefile.in (aclocal_m4_deps): Update.
12361         * aclocal.m4: Renegerate.
12362
12363 2013-01-16  Doug Evans  <dje@google.com>
12364
12365         * contrib/cc-with-tweaks.sh: Add references to Fission docs.
12366
12367 2013-01-16  Pedro Alves  <palves@redhat.com>
12368             Tom Tromey  <tromey@redhat.com>
12369
12370         PR cli/7221:
12371         * NEWS: Add "catch signal".
12372         * breakpoint.c (base_breakpoint_ops): No longer static.
12373         (bpstat_explains_signal): New function.
12374         (init_catchpoint): No longer static.
12375         (base_breakpoint_explains_signal): New function.
12376         (base_breakpoint_ops): Initialize new field.
12377         * breakpoint.h (enum bpstat_signal_value): New.
12378         (struct breakpoint_ops) <explains_signal>: New field.
12379         (bpstat_explains_signal): Remove macro, declare as function.
12380         (base_breakpoint_ops, init_catchpoint): Declare.
12381         * break-catch-sig.c: New file.
12382         * inferior.h (signal_catch_update): Declare.
12383         * infrun.c (signal_catch): New global.
12384         (handle_syscall_event): Update for change to
12385         bpstat_explains_signal.
12386         (handle_inferior_event): Likewise.  Always handle random signals
12387         via bpstats.
12388         (signal_cache_update): Check signal_catch.
12389         (signal_catch_update): New function.
12390         (_initialize_infrun): Initialize signal_catch.
12391         * Makefile.in (SFILES): Add break-catch-sig.c.
12392         (COMMON_OBS): Add break-catch-sig.o.
12393
12394 2013-01-16  Tom Tromey  <tromey@redhat.com>
12395
12396         * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
12397         (print_one_catch_solib, print_one_catch_syscall)
12398         (print_one_catch_exec, print_one_exception_catchpoint): Emit
12399         "catch-type".
12400
12401 2013-01-16  Yao Qi  <yao@codesourcery.com>
12402
12403         * printcmd.c (current_display_number): Make it static.
12404
12405 2013-01-16  Yao Qi  <yao@codesourcery.com>
12406
12407         * infcmd.c (step_once): Don't check '!single_inst' as it was
12408         checked before.
12409
12410 2013-01-15  Jan Kratochvil  <jan.kratochvil@redhat.com>
12411
12412         * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
12413
12414 2013-01-14  Tom Tromey  <tromey@redhat.com>
12415
12416         * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
12417         set command.
12418         * command.h (add_setshow_string_noescape_cmd): Update.
12419         * corefile.c (set_gnutarget_command): Remove trailing whitespace.
12420         (complete_set_gnutarget): New function.
12421         (_initialize_core): Set the "set gnutarget" completer.
12422
12423 2013-01-14  Tom Tromey  <tromey@redhat.com>
12424
12425         PR symtab/14442:
12426         * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
12427         (c_type_print_modifier): Likewise.
12428         * dwarf2read.c (read_tag_restrict_type): New function.
12429         (read_type_die_1): Handle DW_TAG_restrict_type.
12430         * gdbtypes.c (make_restrict_type): New function.
12431         (recursive_dump_type): Handle TYPE_RESTRICT.
12432         * gdbtypes.h (enum type_flag_values): Renumber.
12433         (enum type_instance_flag_value): Add
12434         TYPE_INSTANCE_FLAG_RESTRICT.
12435         (TYPE_RESTRICT): New macro.
12436         (make_restrict_type): Declare.
12437
12438 2013-01-14  Tom Tromey  <tromey@redhat.com>
12439
12440         PR symtab/14931:
12441         * psymtab.c (struct psymtab_state): New.
12442         (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
12443         functions.
12444         * psympriv.h (make_cleanup_discard_psymtabs): Declare.
12445         * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
12446
12447 2013-01-14  Richard Sharman  <richard_sharman@mitel.com>
12448             Pedro Alves  <palves@redhat.com>
12449
12450         PR remote/14786
12451
12452         * remote.c (remote_threads_info): Make a copy of the reply from
12453         qfThreadInfo and use that instead of rs->buf.
12454
12455 2013-01-14  Yao Qi  <yao@codesourcery.com>
12456
12457         * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
12458         (dbx_psymtab_to_symtab): Likewise.
12459         * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
12460         * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
12461         * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
12462
12463 2013-01-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
12464
12465         * parse.c (parse_exp_in_context): New variable inner_chain.  Call
12466         make_cleanup_restore_current_language.  Call set_language.  Move
12467         OLD_CHAIN and INNER_CHAIN cleanups.
12468         * utils.c (do_restore_current_language)
12469         (make_cleanup_restore_current_language): New functions.
12470         * utils.h (make_cleanup_restore_current_language): New declaration.
12471
12472 2013-01-13  Jan Kratochvil  <jan.kratochvil@redhat.com>
12473
12474         * source.c (symtab_to_fullname): Apply rewrite_source_path also for
12475         non-existing files.
12476
12477         * source.c (symtab_to_fullname): Do not prepend DIRNAME for
12478         non-existing files if FILENAME is already absolute.
12479
12480 2013-01-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
12481
12482         * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
12483         fputs_filtered.  Append trailing newline.
12484
12485 2013-01-11  Yao Qi  <yao@codesourcery.com>
12486             Stan Shebs  <stan@codesourcery.com>
12487
12488         * psymtab.c (init_psymbol_list): Clarify the comment.
12489
12490 2013-01-11  Yao Qi  <yao@codesourcery.com>
12491
12492         * breakpoint.c (print_one_breakpoint_location): Remove dead code.
12493         (update_dprintf_command_list): Assert that 'printf_line' is
12494         non-null.  Remove condition check.
12495
12496 2013-01-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
12497
12498         Code cleanup.
12499         * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
12500         type const char *.
12501         * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
12502         const char *.
12503         * tui/tui-source.h (tui_source_is_displayed): Likewise.
12504
12505 2013-01-09  Anthony Green  <green@moxielogic.com>
12506
12507         * cp-abi.c (cplus_print_vtable): Don't return value from void
12508         function.
12509         * ada-lang.c (re_set_catch_assert): Ditto.
12510
12511 2013-01-09  Doug Evans  <dje@google.com>
12512
12513         * symfile.h (quick_symbol_functions): Delete member
12514         pre_expand_symtabs_matching.  All uses removed.
12515         * dwarf2read.c (dw2_lookup_symbol): Implement.
12516         (dw2_do_expand_symtabs_matching): Delete.
12517         (dw2_pre_expand_symtabs_matching): Delete.
12518         (struct dw2_symtab_iterator): New type.
12519         (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
12520         (dw2_expand_symtabs_for_function): Rewrite.
12521         (dwarf2_gdb_index_functions): Update.
12522         * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
12523         (psym_functions): Update.
12524
12525 2013-01-09  Tom Tromey  <tromey@redhat.com>
12526
12527         * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
12528         * configure: Rebuild.
12529         * configure.ac: Add somread.o to the build if BFD has SOM
12530         support.
12531         * somread.c: Include som/aout.h, not syms.h.
12532         (som_symtab_read): Use som_external_symbol_dictionary_record.
12533         Unpack records manually.
12534         (_initialize_somread): Declare.
12535
12536 2012-01-08  Mike Frysinger  <vapier@gentoo.org>
12537
12538         * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
12539         Cast return_address to 64bits.
12540
12541 2013-01-08  Hui Zhu  <hui_zhu@mentor.com>
12542
12543         * printcmd.c: Remove define of function output_command.
12544         * tracepoint.c: Remove extern of function output_command.
12545         * valprint.h: (output_command): New extern.
12546
12547 2013-01-07  Tom Tromey  <tromey@redhat.com>
12548
12549         * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
12550         Remove.
12551         (objc_language_defn): Use c_printchar, c_printstr,
12552         c_emit_char.
12553
12554 2013-01-07  Tom Tromey  <tromey@redhat.com>
12555
12556         PR cli/7719:
12557         * NEWS: Update.
12558         * ada-valprint.c (printstr, print_field_values): Remove
12559         "inspect_it" code.
12560         * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
12561         code.
12562         * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
12563         code.
12564         * m2-lang.c (m2_printstr): Remove "inspect_it" code.
12565         * main.c (captured_main): Remove "epoch" argument.
12566         * objc-lang.c (objc_printstr): Remove "inspect_it" code.
12567         * p-lang.c (pascal_printstr): Remove "inspect_it" code.
12568         * p-valprint.c (pascal_object_print_value_fields): Remove
12569         "inspect_it" code.
12570         * printcmd.c (print_command_1): Remove 'inspect' argument.
12571         (print_command, call_command): Update.
12572         (inspect_command): Remove.
12573         (_initialize_printcmd): Make "inspect" an alias for "print".
12574         * top.c (epoch_interface): Remove.
12575         * top.h (epoch_interface): Remove.
12576         * valprint.c (user_print_options): Update.
12577         (print_converted_chars_to_obstack): Remove "inspect_it" code.
12578         * valprint.h (struct value_print_options) <inspect_it>: Remove
12579         field.
12580
12581 2013-01-04  Tom Tromey  <tromey@redhat.com>
12582
12583         * valprint.h (read_string): Add 'extern'.
12584
12585 2013-01-07  Joel Brobecker  <brobecker@adacore.com>
12586
12587         * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
12588         used to decide whether to define darwin_read_dyld_info or not.
12589
12590 2013-01-03  Pierre Muller  <muller@sourceware.org>
12591
12592         * main.c (relocate_gdb_directory): Avoid calling stat function
12593         if DIR is empty.
12594
12595 2013-01-03  Yao Qi  <yao@codesourcery.com>
12596
12597         * psymtab.c (fixup_psymbol_section): Update declaration.
12598         (fixup_psymbol_section): Remove code returning value.
12599
12600 2013-01-03  Yao Qi  <yao@codesourcery.com>
12601
12602         * symtab.h: Remove some out of date comments.
12603          (enum exception_event_kind): Move it ...
12604         * breakpoint.c: ... here.
12605
12606 2013-01-02  Iain Sandoe  <developer@sandoe-acoustics.co.uk>
12607
12608         PR gdb/14405
12609         * darwin-nat.c (darwin_read_dyld_info): Only build if
12610         TASK_DYLD_INFO_COUNT is defined.
12611         (darwin_xfer_partial): Call darwin_read_dyld_info only if
12612         TASK_DYLD_INFO_COUNT is defined.
12613
12614 2013-01-02  Tom Tromey  <tromey@redhat.com>
12615
12616         * symfile.h (struct ecoff_debug_hack): Remove.
12617         * objfiles.c: Don't include mdebugread.h.
12618
12619 2013-01-02  Tom Tromey  <tromey@redhat.com>
12620
12621         * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
12622         * configure.ac: Check for Mach-O support in BFD.  Update
12623         CONFIG_OBS.
12624         * configure: Rebuild.
12625
12626 2013-01-02  Tom Tromey  <tromey@redhat.com>
12627
12628         * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
12629         * configure.ac: Use GDB_AC_CHECK_BFD.
12630         * configure: Rebuild.
12631
12632 2013-01-01  Maxim Kuvyrkov  <maxim.kuvyrkov@gmail.com>
12633
12634         * MAINTAINERS: Update my email.
12635
12636 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
12637
12638         * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
12639
12640 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
12641
12642         * rs6000-nat.c (bss_data_overlap): New function.
12643         (vmap_symtab): Use it to adjust the .bss section's offset.
12644
12645 2013-01-01  Joel Brobecker  <brobecker@adacore.com>
12646
12647         Update year range in copyright notice of all files.
12648
12649 2013-01-01, 13  Joel Brobecker  <brobecker@adacore.com>
12650
12651         * top.c (print_gdb_version): Update copyright year.
12652
12653 For older changes see ChangeLog-2012.
12654 \f
12655 Local Variables:
12656 mode: change-log
12657 left-margin: 8
12658 fill-column: 74
12659 version-control: never
12660 coding: utf-8
12661 End: