gdb: fix cygwin check in configure script
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2013-11-27 Steffen Sledz <sledz@dresearch-fe.de>
2
3 * configure: Rebuild.
4 * configure.ac: fix cygwin detection check
5
6 2013-11-27 Pedro Alves <palves@redhat.com>
7
8 * frame-unwind.c (frame_unwind_got_optimized): Use the type of the
9 register in the previous frame's arch.
10
11 2013-11-27 Pedro Alves <palves@redhat.com>
12
13 * frame-unwind.c (frame_unwind_got_optimized): Return
14 an lval_register value instead of a not_lval value.
15
16 2013-11-27 Andrew Burgess <aburgess@broadcom.com>
17
18 * frame.c: Include "valprint.h".
19 (frame_unwind_register_value): Use value_optimized_out.
20 * value.c (value_fetch_lazy): Likewise.
21
22 2013-11-26 Andrew Burgess <aburgess@broadcom.com>
23
24 * value.c (allocate_optimized_out_value): Mark value as non-lazy.
25
26 2013-11-26 Tom Tromey <tromey@redhat.com>
27
28 * dwarf2-frame.c (dwarf2_frame_cache): Revert patch from
29 2013-11-22.
30
31 2013-11-26 Walfred Tedeschi <walfred.tedeschi@intel.com>
32
33 * i386-xstate.h (I386_XSTATE_MPX): New Macro.
34 (I386_XSTATE_MPX_MASK): Makes use of I386_XSTATE_MPX.
35 (HAS_MPX): New macro.
36 (HAS_AVX): New macro.
37 (I386_XSTATE_SIZE): Uses HAS_MPX and HAS_AVX.
38
39 2013-11-25 Keith Seitz <keiths@redhat.com>
40
41 PR c++/14819
42 * c-exp.y (classify_inner_name): If no matching symbol was
43 found, try looking up the token as a base class.
44 Likewise if a constructor was found.
45 * cp-namespace.c (find_type_baseclass_by_name): New function.
46 * cp-support.h (find_type_baseclass_by_name): Declare.
47 * valops.c (value_struct_elt_for_reference): If we get
48 a non-static field, try to get a value based on the
49 current instance, if any.
50
51 2013-11-24 Yao Qi <yao@codesourcery.com>
52
53 * disasm.c (dis_asm_read_memory): Call target_read_code
54 instead of target_read_memory.
55
56 2013-11-24 Yao Qi <yao@codesourcery.com>
57
58 * NEWS: Add note on new "set code-cache" option.
59 * target-dcache.c (code_cache_enabled_1): New variable.
60 (code_cache_enabled): New variable.
61 (show_code_cache, set_code_cache): New function.
62 (code_cache_enabled_p): New function.
63 (_initialize_target_dcache): Register command.
64 * target-dcache.h (code_cache_enabled_p): Declare.
65 * target.c (memory_xfer_partial_1):Handle
66 TARGET_OBJECT_CODE_MEMORY and code_cache_enabled.
67 (target_read_code): New function.
68 * target.h (enum target_object) <TARGET_OBJECT_CODE_MEMORY>:
69 New.
70 (target_read_code): Declare.
71
72 2013-11-24 Yao Qi <yao@codesourcery.com>
73
74 * target-dcache.c (stack_cache_enabled_p_1): Rename to ...
75 (stack_cache_enabled_1): ... this. New variable.
76 (stack_cache_enabled_p): Rename to ...
77 (stack_cache_enabled): ... this. New variable.
78 (set_stack_cache_enabled_p): Rename to ...
79 (set_stack_cache): ... this. Update caller.
80 (show_stack_cache_enabled_p): Rename to ...
81 (show_stack_cache): ... this. Update caller.
82 (stack_cache_enabled): Rename to ...
83 (stack_cache_enabled_p): ... this. Update caller.
84 (_initialize_target_dcache): Replace "data cache" with
85 "target memory cache".
86 * target-dcache.h (stack_cache_enabled): Remove declaration.
87 (stack_cache_enabled_p): Add declaration.
88
89 2013-11-23 Doug Evans <xdje42@gmail.com>
90
91 * python/py-frame.c (gdbpy_initialize_frames): Remove FIRST_ERROR,
92 superfluous.
93
94 2013-11-23 Doug Evans <xdje42@gmail.com>
95
96 * python/py-frame.c (frapy_block): Fix error message text.
97
98 2013-11-23 Doug Evans <xdje42@gmail.com>
99
100 * cli/cli-script.c (multi_line_command_p): New function.
101 (recurse_read_control_structure, read_command_lines_1): Call it.
102 (execute_control_command): Consistently have a blank line between
103 each case.
104
105 2013-11-22 Sterling Augustine <saugustine@google.com>
106
107 PR gdb/16196:
108 * valprint.c (read_string): Set new variable fetchlen based on
109 fetchlimit and size. Use it in call to partial_memory_read.
110 Update comment.
111
112 2013-11-22 Tom Tromey <tromey@redhat.com>
113
114 PR backtrace/16155:
115 * dwarf2-frame.c (dwarf2_frame_cache): Set undefined_retaddr if
116 the return address column is unspecified.
117
118 2013-11-22 Tom Tromey <tromey@redhat.com>
119 Pedro Alves <palves@redhat.com>
120
121 PR backtrace/16155
122 * value.c (value_fetch_lazy): Internal error if
123 get_frame_register_value returns the same register.
124
125 2013-11-22 Pedro Alves <palves@redhat.com>
126 Tom Tromey <tromey@redhat.com>
127
128 * frame.c (frame_stash_add): Now returns whether a frame with the
129 same ID was already known.
130 (compute_frame_id): New function, factored out from get_frame_id.
131 (get_frame_id): No longer lazilly compute the frame id here.
132 (get_prev_frame_if_no_cycle): New function. Detects wider stack
133 cycles.
134 (get_prev_frame_1): Use it instead of get_prev_frame_raw directly,
135 and checking for stack cycles here.
136
137 2013-11-22 Pedro Alves <palves@redhat.com>
138
139 PR 16155
140 * frame.c (get_prev_frame_1): Do the UNWIND_SAME_ID check between
141 this frame and the new previous frame, not between this frame and
142 the next frame.
143
144 2013-11-22 Pedro Alves <palves@redhat.com>
145
146 PR 16155
147 * dwarf2-frame.c (struct dwarf2_frame_cache)
148 <checked_tailcall_bottom, entry_cfa_sp_offset,
149 entry_cfa_sp_offset_p>: New fields.
150 (dwarf2_frame_cache): Adjust to use the new cache fields instead
151 of locals. Don't call dwarf2_tailcall_sniffer_first here.
152 (dwarf2_frame_prev_register): Call it here, but only once.
153
154 2013-11-21 Doug Evans <xdje42@gmail.com>
155
156 * gdbtypes.c: #include bcache.h, dwarf2loc.h.
157 (type_equality_entry): Move here from python/py-type.c.
158 (type_equality_entry_d): Ditto.
159 (compare_maybe_null_strings, check_types_equal): Ditto.
160 (check_types_worklist, types_deeply_equal): Ditto.
161 * gdbtypes.h (types_deeply_equal): Declare.
162 * python/py-type.c: Remove inclusion of bcache.h, dwarf2loc.h.
163 (typy_richcompare): Update.
164
165 2013-11-20 Joel Brobecker <brobecker@adacore.com>
166
167 * python/py-value.c (is_intlike): Delete.
168 (valpy_int): Replace use of CHECK_TYPEDEF and is_intlike
169 by use of is_integral_type.
170 (valpy_long): Replace use of CHECK_TYPEDEF and is_intlike
171 by use of is_integral_type and check for TYPE_CODE_PTR.
172
173 2013-11-20 Tom Tromey <tromey@redhat.com>
174
175 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Remove
176 strerror module.
177 * gnulib/aclocal.m4: Update.
178 * gnulib/config.in: Update.
179 * gnulib/configure: Update.
180 * gnulib/import/Makefile.am: Update.
181 * gnulib/import/Makefile.in: Update.
182 * gnulib/import/errno.in.h: Remove.
183 * gnulib/import/intprops.h: Remove.
184 * gnulib/import/m4/errno_h.m4: Remove.
185 * gnulib/import/m4/gnulib-cache.m4: Update.
186 * gnulib/import/m4/gnulib-comp.m4: Update.
187 * gnulib/import/m4/strerror.m4: Remove.
188 * gnulib/import/m4/sys_socket_h.m4: Remove.
189 * gnulib/import/strerror-override.c: Remove.
190 * gnulib/import/strerror-override.h: Remove.
191 * gnulib/import/strerror.c: Remove.
192 * gnulib/update-gnulib.sh: Update.
193
194 2013-11-20 Yao Qi <yao@codesourcery.com>
195
196 * target-dcache.c (target_dcache_get_or_init): Call
197 set_address_space_data if 'dcache' is NULL.
198
199 2013-11-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
200
201 * common/i386-gcc-cpuid.h (bit_MPX): Synchronize with gcc file.
202
203 2013-11-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
204
205 * python/lib/gdb/command/bound_register.py: New file.
206 * data-directory/Makefile.in: Copy bond_register.py to the right path
207 to be initialized at gdb startup.
208
209 2013-11-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
210
211 * amd64-linux-nat.c (amd64_linux_gregset32_reg_offset):
212 Add MPX registers.
213 (amd64_linux_read_description): Add initialization for MPX and
214 AVX independently.
215 * amd64-linux-tdep.c: Includes features/i386/amd64-mpx-linux.c.
216 (amd64_linux_gregset_reg_offset): Add MPX registers.
217 (amd64_linux_core_read_description): Add initialization for MPX
218 registers.
219 (_initialize_amd64_linux_tdep): Initialize MPX targets.
220 * amd64-linux-tdep.h (AMD64_LINUX_RAX_REGNUM): Set it to the last
221 register on the list.
222 (tdesc_amd64_mpx_linux) Add new target for MPX.
223 * amd64-tdep.c: Includes features/i386/amd64-mpx.c.
224 (amd64_mpx_names): MPX register names.
225 (amd64_init_abi): Add MPX register while initializing the ABI.
226 (_initialize_amd64_tdep): Initialize MPX targets.
227 * amd64-tdep.h (amd64_regnum): Add MPX registers.
228 (AMD64_NUM_REGS): Set number of registers taking MPX into account.
229
230 2013-11-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
231
232 * i386-linux-nat.c (GETXSTATEREGS_SUPPLIES): Add MPX
233 registers on the range of registers to be read from
234 xsave buffer.
235 (i386_linux_read_description): Add case for MPX.
236 * i386-linux-tdep.c: Include features/i386/i386-mpx-linux.c.
237 (i386_linux_gregset_reg_offset): Add MPX registers.
238 (i386_linux_core_read_description): Initialize also MPX.
239 (_initialize_i386_linux_tdep): Add mpx initialization.
240 * i386-tdep.h (gdbarch_tdep): Add fields bnd0r_regnum, bnd0_regnum,
241 mpx_register_names.
242 (i386_regnum): Add MPX registers.
243 (I386_MPX_NUM_REGS): New macro.
244 (i386_bnd_regnum_p): New function.
245 * i386-linux-tdep.h (I386_LINUX_NUM_REGS): Set
246 number of registers to be the number of BNDSTATUS.
247 (tdesc_i386_mpx_linux): Add description for MPX Linux registers.
248 * i386-tdep.c: Include features/i386/i386-mpx.c.
249 (i386_mpx_names): Add MPX register names array.
250 (i386_bnd_names): Add bnd pseudo register names array.
251 (i386_bndr_regnum_p): Lookup register numbers for bnd raw
252 registers.
253 (i386_bndr_regnum_p): Lookup register numbers for bnd raw registers.
254 (386_mpx_ctrl_regnum_p): Lookup register numbers for MPX control
255 registers.
256 (i386_bnd_type): New function.
257 (i386_pseudo_register_type): Use i386_bnd_type for bnd pseudo
258 register types.
259 (i386_pseudo_register_read_into_value): Add bnd case.
260 (i386_pseudo_register_write): Add bnd pseudo registers.
261 (i386_register_reggroup_p): Add MPX register to the group all.
262 (i386_validate_tdesc_p): Add MPX to the target description
263 validation.
264 (i386_pseudo_register_name): Add bnd pseudo registers.
265 (i386_gdbarch_init): Add MPX for architecture initialization.
266 (_initia_initialize_i386_tdep): Add mpx initialization.
267 * i387-tdep.c (xsave_mpx_offset): New vector for MPX offsets on
268 XSAVE buffer.
269 (XSAVE_MPX_ADDR): New macro.
270 (i387_supply_xsave): Add MPX case.
271 (i387_collect_xsave): Add MPX case.
272 * i387-tdep.h (I387_BND0R_REGNUM): New macro.
273 (I387_BNDCFGU_REGNUM): New macro.
274 (I387_NUM_MPX_REGS): New macro.
275 (I387_NUM_BND_REGS): New macro.
276 (I387_NUM_MPX_CTRL_REGS): New macro.
277 (I387_MPXEND_REGNUM): New macro.
278 * common/i386-xstate.h (I386_XSTATE_BNDREGS): New macro.
279 (I386_XSTATE_BNDCFG): Likewise.
280 (I386_XSTATE_MPX_MASK): Likewise.
281 (I386_XSTATE_ALL_MASK): New macro represents flags for all states.
282 (I386_XSTATE_BNDREGS_SIZE): New macro.
283 (I386_XSTATE_BNDCFG_SIZE): Likewise.
284 (I386_XSTATE_SIZE): Adapt for MPX.
285 (I386_XSTATE_MAX_SIZE): Likewise.
286
287 2013-11-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
288
289 * features/i386/Makefile: Adapts for using MPX registers.
290 * features/i386/32bit-mpx.xml: New file.
291 * features/i386/64bit-mpx.xml: Likewise.
292 * features/i386/amd64-mpx-linux.c: Likewise.
293 * features/i386/amd64-mpx-linux.xml: Likewise.
294 * features/i386/amd64-mpx.c: Likewise.
295 * features/i386/amd64-mpx.xml: Likewise.
296 * features/i386/i386-mpx-linux.c: Likewise.
297 * features/i386/i386-mpx-linux.xml: Likewise.
298 * features/i386/i386-mpx.c: Likewise.
299 * features/i386/i386-mpx.xml: Likewise.
300 * regformats/i386/amd64-mpx-linux.dat: New file.
301 * regformats/i386/amd64-mpx.dat: Likewise.
302 * regformats/i386/i386-mpx-linux.dat: Likewise.
303 * regformats/i386/i386-mpx.dat: Likewise.
304
305 2013-11-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
306
307 * target-descriptions.c (maint_print_maint_print_c_tdesc_cmd):
308 Modified logic of creating a bitfield to be in sync with
309 tdesc_gdb_type.
310
311 2013-11-20 Will Newton <will.newton@linaro.org>
312
313 * arm-tdep.c (arm_get_next_pc): Remove "Infinite loop detected"
314 error message.
315
316 2013-11-20 Yao Qi <yao@codesourcery.com>
317
318 * progspace.h (struct address_space_data): Declare.
319 * target-dcache.c: Include "progspace.h".
320 (target_dache): Remove.
321 (target_dcache_aspace_key): New.
322 (target_dcache_cleanup): New function.
323 (target_dcache_init_p): Get data through
324 target_dcache_aspace_key.
325 (target_dcache_invalidate): Likewise.
326 (target_dcache_get): Likewise.
327 (target_dcache_get_or_init): Likewise.
328 (_initialize_target_dcache): Initialize
329 target_dcache_aspace_key.
330
331 2013-11-20 Yao Qi <yao@codesourcery.com>
332
333 * progspace.c (struct address_space): Update comments.
334 <REGISTRY_FIELDS>: New fields.
335 DEFINE_REGISTRY for address_space.
336 (new_address_space): Call address_space_alloc_data.
337 (free_address_space): Call address_space_free_data.
338 * progspace.h: Use DECLARE_REGISTRY.
339
340 2013-11-20 Yao Qi <yao@codesourcery.com>
341
342 * Makefile.in (SFILES):Add target-dcache.c.
343 (HFILES_NO_SRCDIR): Add target-dcache.h.
344 (COMMON_OBS): Add target-dcache.o.
345 * dcache.c: Remove inclusion to "target.h". Include
346 "target-dcache.h".
347 * memattr.c: Include "target-dcache.h".
348 * top.c: Likewise.
349 * tracepoint.c: Likewise.
350 * target.c: (stack_cache_enabled_p_1): Move to
351 target-dcache.c.
352 (stack_cache_enabled_p): Likewise.
353 (set_stack_cache_enabled_p): Likewise.
354 (show_stack_cache_enabled_p): Likewise.
355 (target_dcache, target_dcache_init_p): Likewise.
356 (target_dcache_invalidate): Likewise.
357 (target_dcache_get, target_dcache_get_or_init): Likewise.
358 (memory_xfer_partial_1): Call function stack_cache_enabled.
359 (initialize_target): Move code to target-dcache.c.
360 * target.h (target_dcache_invalidate): Move to
361 target-dcache.h.
362 (target_dcache_get): Likewise.
363 * target-dcache.c: New.
364 * target-dcache.h: New.
365
366 2013-11-20 Yao Qi <yao@codesourcery.com>
367
368 * target.c (memory_xfer_partial_1): Update 'target_dcache' if
369 it is initialized.
370
371 2013-11-20 Yao Qi <yao@codesourcery.com>
372
373 * dcache.c (last_cache): Remove.
374 (dcache_free, dcache_init): Update.
375 (dcache_update):
376 (dcache_print_line): Add parameter 'dcache'. Replace
377 'target_dcache' with 'dcache'.
378 (dcache_info): Move code to dcache_info_1. Call
379 'dcache_info_1'.
380 (dcache_info_1): New function.
381 (set_dcache_size): Call target_dcache_invalidate.
382 (set_dcache_line_size): Call target_dcache_invalidate.
383 * target.c (target_dcache_init_p): New function.
384 (target_dcache_invalidate): Check target_dcache_init_p first.
385 (target_dcache_get, target_dcache_get_or_init): New function.
386 (memory_xfer_partial_1): Adjust.
387 (initialize_target): Don't initialize 'target_dcache'.
388 * target.h (struct dcache_struct): Declare.
389 (target_dcache_get): Declare.
390
391 2013-11-19 Yao Qi <yao@codesourcery.com>
392
393 * varobj.c (varobj_get_type): Fix typo.
394
395 2013-11-19 Joel Brobecker <brobecker@adacore.com>
396
397 * python/py-value.c (is_intlike): Add TYPE_CODE_RANGE handling.
398
399 2013-11-19 Joel Brobecker <brobecker@adacore.com>
400
401 * contrib/ari/gdb_ari.sh: Remove checks for "dirent.h" and
402 "stat.h".
403
404 2013-11-18 Tom Tromey <tromey@redhat.com>
405
406 * common/gdb_stat.h: Remove.
407 * ada-lang.c: Use sys/stat.h, not gdb_stat.h.
408 * common/filestuff.c: Use sys/stat.h, not gdb_stat.h.
409 * common/linux-osdata.c: Use sys/stat.h, not gdb_stat.h.
410 * corefile.c: Use sys/stat.h, not gdb_stat.h.
411 * ctf.c: Use sys/stat.h, not gdb_stat.h.
412 * darwin-nat.c: Use sys/stat.h, not gdb_stat.h.
413 * dbxread.c: Use sys/stat.h, not gdb_stat.h.
414 * dwarf2read.c: Use sys/stat.h, not gdb_stat.h.
415 * exec.c: Use sys/stat.h, not gdb_stat.h.
416 * gdbserver/linux-low.c: Use sys/stat.h, not gdb_stat.h.
417 * gdbserver/remote-utils.c: Use sys/stat.h, not gdb_stat.h.
418 * inf-child.c: Use sys/stat.h, not gdb_stat.h.
419 * jit.c: Use sys/stat.h, not gdb_stat.h.
420 * linux-nat.c: Use sys/stat.h, not gdb_stat.h.
421 * m68klinux-nat.c: Use sys/stat.h, not gdb_stat.h.
422 * main.c: Use sys/stat.h, not gdb_stat.h.
423 * mdebugread.c: Use sys/stat.h, not gdb_stat.h.
424 * mi/mi-cmd-env.c: Use sys/stat.h, not gdb_stat.h.
425 * nto-tdep.c: Use sys/stat.h, not gdb_stat.h.
426 * objfiles.c: Use sys/stat.h, not gdb_stat.h.
427 * procfs.c: Use sys/stat.h, not gdb_stat.h.
428 * remote-fileio.c: Use sys/stat.h, not gdb_stat.h.
429 * remote-mips.c: Use sys/stat.h, not gdb_stat.h.
430 * remote.c: Use sys/stat.h, not gdb_stat.h.
431 * rs6000-nat.c: Use sys/stat.h, not gdb_stat.h.
432 * sol-thread.c: Use sys/stat.h, not gdb_stat.h.
433 * solib-spu.c: Use sys/stat.h, not gdb_stat.h.
434 * source.c: Use sys/stat.h, not gdb_stat.h.
435 * symfile.c: Use sys/stat.h, not gdb_stat.h.
436 * symmisc.c: Use sys/stat.h, not gdb_stat.h.
437 * symtab.c: Use sys/stat.h, not gdb_stat.h.
438 * top.c: Use sys/stat.h, not gdb_stat.h.
439 * xcoffread.c: Use sys/stat.h, not gdb_stat.h.
440
441 2013-11-18 Tom Tromey <tromey@redhat.com>
442
443 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
444 sys_stat.
445 * gnulib/aclocal.m4: Update.
446 * gnulib/config.in: Update.
447 * gnulib/configure: Update.
448 * gnulib/import/Makefile.am: Update.
449 * gnulib/import/Makefile.in: Update.
450 * gnulib/import/m4/gnulib-cache.m4: Update.
451 * gnulib/import/m4/gnulib-comp.m4: Update.
452 * gnulib/import/m4/sys_stat_h.m4: New.
453 * gnulib/import/m4/time_h.m4: New.
454 * gnulib/import/sys_stat.in.h: New.
455 * gnulib/import/time.in.h: New.
456
457 2013-11-18 Tom Tromey <tromey@redhat.com>
458
459 * configure: Rebuild.
460 * configure.ac: Remove check of HAVE_SYS_TYPES_H.
461
462 2013-11-18 Tom Tromey <tromey@redhat.com>
463
464 * configure: Rebuild.
465 * configure.ac: Don't check for unistd.h.
466
467 2013-11-18 Tom Tromey <tromey@redhat.com>
468
469 * configure: Rebuild.
470 * configure.ac: Don't check for stdlib.h
471 * defs.h: Include stdlib.h unconditionally.
472
473 2013-11-18 Tom Tromey <tromey@redhat.com>
474
475 * config.in: Rebuild.
476 * configure: Rebuild.
477 * configure.ac: Don't check for stddef.h.
478 * defs.h: Unconditionally include stddef.h. Remove duplicate
479 inclusion.
480
481 2013-11-18 Tom Tromey <tromey@redhat.com>
482
483 * common/common.m4 (GDB_AC_COMMON): Don't use AC_HEADER_DIRENT.
484 * common/gdb_dirent.h: Remove.
485 * common/filestuff.c: Use dirent.h.
486 * common/linux-osdata.c: Use dirent.h.
487 (NAMELEN): Define.
488 * config.in: Rebuild.
489 * configure: Rebuild.
490 * configure.ac: Don't use AC_HEADER_DIRENT.
491 * linux-fork.c: Use dirent.h
492 * linux-nat.c: Use dirent.h.
493 * nto-procfs.c: Use dirent.h.
494 * procfs.c: Use dirent.h.
495
496 2013-11-18 Tom Tromey <tromey@redhat.com>
497
498 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add dirent.
499 * gnulib/aclocal.m4: Update.
500 * gnulib/config.in: Update.
501 * gnulib/configure: Update.
502 * gnulib/import/Makefile.am: Update.
503 * gnulib/import/Makefile.in: Update.
504 * gnulib/import/dirent.in.h: New.
505 * gnulib/import/m4/dirent_h.m4: New.
506 * gnulib/import/m4/gnulib-cache.m4: Update.
507 * gnulib/import/m4/gnulib-comp.m4: Update.
508
509 2013-11-18 Tom Tromey <tromey@redhat.com>
510
511 * configure: Rebuild.
512 * common/common.m4 (GDB_AC_COMMON): Don't check for string.h or
513 strings.h.
514
515 2013-11-18 Tom Tromey <tromey@redhat.com>
516
517 * common/gdb_string.h: Remove.
518 * aarch64-tdep.c: Use string.h, not gdb_string.h.
519 * ada-exp.y: Use string.h, not gdb_string.h.
520 * ada-lang.c: Use string.h, not gdb_string.h.
521 * ada-lex.l: Use string.h, not gdb_string.h.
522 * ada-typeprint.c: Use string.h, not gdb_string.h.
523 * ada-valprint.c: Use string.h, not gdb_string.h.
524 * aix-thread.c: Use string.h, not gdb_string.h.
525 * alpha-linux-tdep.c: Use string.h, not gdb_string.h.
526 * alpha-mdebug-tdep.c: Use string.h, not gdb_string.h.
527 * alpha-nat.c: Use string.h, not gdb_string.h.
528 * alpha-osf1-tdep.c: Use string.h, not gdb_string.h.
529 * alpha-tdep.c: Use string.h, not gdb_string.h.
530 * alphanbsd-tdep.c: Use string.h, not gdb_string.h.
531 * amd64-dicos-tdep.c: Use string.h, not gdb_string.h.
532 * amd64-linux-nat.c: Use string.h, not gdb_string.h.
533 * amd64-linux-tdep.c: Use string.h, not gdb_string.h.
534 * amd64-nat.c: Use string.h, not gdb_string.h.
535 * amd64-sol2-tdep.c: Use string.h, not gdb_string.h.
536 * amd64fbsd-tdep.c: Use string.h, not gdb_string.h.
537 * amd64obsd-tdep.c: Use string.h, not gdb_string.h.
538 * arch-utils.c: Use string.h, not gdb_string.h.
539 * arm-linux-nat.c: Use string.h, not gdb_string.h.
540 * arm-linux-tdep.c: Use string.h, not gdb_string.h.
541 * arm-tdep.c: Use string.h, not gdb_string.h.
542 * arm-wince-tdep.c: Use string.h, not gdb_string.h.
543 * armbsd-tdep.c: Use string.h, not gdb_string.h.
544 * armnbsd-nat.c: Use string.h, not gdb_string.h.
545 * armnbsd-tdep.c: Use string.h, not gdb_string.h.
546 * armobsd-tdep.c: Use string.h, not gdb_string.h.
547 * avr-tdep.c: Use string.h, not gdb_string.h.
548 * ax-gdb.c: Use string.h, not gdb_string.h.
549 * ax-general.c: Use string.h, not gdb_string.h.
550 * bcache.c: Use string.h, not gdb_string.h.
551 * bfin-tdep.c: Use string.h, not gdb_string.h.
552 * breakpoint.c: Use string.h, not gdb_string.h.
553 * build-id.c: Use string.h, not gdb_string.h.
554 * buildsym.c: Use string.h, not gdb_string.h.
555 * c-exp.y: Use string.h, not gdb_string.h.
556 * c-lang.c: Use string.h, not gdb_string.h.
557 * c-typeprint.c: Use string.h, not gdb_string.h.
558 * c-valprint.c: Use string.h, not gdb_string.h.
559 * charset.c: Use string.h, not gdb_string.h.
560 * cli-out.c: Use string.h, not gdb_string.h.
561 * cli/cli-cmds.c: Use string.h, not gdb_string.h.
562 * cli/cli-decode.c: Use string.h, not gdb_string.h.
563 * cli/cli-dump.c: Use string.h, not gdb_string.h.
564 * cli/cli-interp.c: Use string.h, not gdb_string.h.
565 * cli/cli-logging.c: Use string.h, not gdb_string.h.
566 * cli/cli-script.c: Use string.h, not gdb_string.h.
567 * cli/cli-setshow.c: Use string.h, not gdb_string.h.
568 * cli/cli-utils.c: Use string.h, not gdb_string.h.
569 * coffread.c: Use string.h, not gdb_string.h.
570 * common/common-utils.c: Use string.h, not gdb_string.h.
571 * common/filestuff.c: Use string.h, not gdb_string.h.
572 * common/linux-procfs.c: Use string.h, not gdb_string.h.
573 * common/linux-ptrace.c: Use string.h, not gdb_string.h.
574 * common/signals.c: Use string.h, not gdb_string.h.
575 * common/vec.h: Use string.h, not gdb_string.h.
576 * core-regset.c: Use string.h, not gdb_string.h.
577 * corefile.c: Use string.h, not gdb_string.h.
578 * corelow.c: Use string.h, not gdb_string.h.
579 * cp-abi.c: Use string.h, not gdb_string.h.
580 * cp-support.c: Use string.h, not gdb_string.h.
581 * cp-valprint.c: Use string.h, not gdb_string.h.
582 * cris-tdep.c: Use string.h, not gdb_string.h.
583 * d-lang.c: Use string.h, not gdb_string.h.
584 * dbxread.c: Use string.h, not gdb_string.h.
585 * dcache.c: Use string.h, not gdb_string.h.
586 * demangle.c: Use string.h, not gdb_string.h.
587 * dicos-tdep.c: Use string.h, not gdb_string.h.
588 * disasm.c: Use string.h, not gdb_string.h.
589 * doublest.c: Use string.h, not gdb_string.h.
590 * dsrec.c: Use string.h, not gdb_string.h.
591 * dummy-frame.c: Use string.h, not gdb_string.h.
592 * dwarf2-frame.c: Use string.h, not gdb_string.h.
593 * dwarf2loc.c: Use string.h, not gdb_string.h.
594 * dwarf2read.c: Use string.h, not gdb_string.h.
595 * elfread.c: Use string.h, not gdb_string.h.
596 * environ.c: Use string.h, not gdb_string.h.
597 * eval.c: Use string.h, not gdb_string.h.
598 * event-loop.c: Use string.h, not gdb_string.h.
599 * exceptions.c: Use string.h, not gdb_string.h.
600 * exec.c: Use string.h, not gdb_string.h.
601 * expprint.c: Use string.h, not gdb_string.h.
602 * f-exp.y: Use string.h, not gdb_string.h.
603 * f-lang.c: Use string.h, not gdb_string.h.
604 * f-typeprint.c: Use string.h, not gdb_string.h.
605 * f-valprint.c: Use string.h, not gdb_string.h.
606 * fbsd-nat.c: Use string.h, not gdb_string.h.
607 * findcmd.c: Use string.h, not gdb_string.h.
608 * findvar.c: Use string.h, not gdb_string.h.
609 * fork-child.c: Use string.h, not gdb_string.h.
610 * frame.c: Use string.h, not gdb_string.h.
611 * frv-linux-tdep.c: Use string.h, not gdb_string.h.
612 * frv-tdep.c: Use string.h, not gdb_string.h.
613 * gdb.c: Use string.h, not gdb_string.h.
614 * gdb_bfd.c: Use string.h, not gdb_string.h.
615 * gdbarch.c: Use string.h, not gdb_string.h.
616 * gdbtypes.c: Use string.h, not gdb_string.h.
617 * gnu-nat.c: Use string.h, not gdb_string.h.
618 * gnu-v2-abi.c: Use string.h, not gdb_string.h.
619 * gnu-v3-abi.c: Use string.h, not gdb_string.h.
620 * go-exp.y: Use string.h, not gdb_string.h.
621 * go-lang.c: Use string.h, not gdb_string.h.
622 * go32-nat.c: Use string.h, not gdb_string.h.
623 * hppa-hpux-tdep.c: Use string.h, not gdb_string.h.
624 * hppa-linux-nat.c: Use string.h, not gdb_string.h.
625 * hppanbsd-tdep.c: Use string.h, not gdb_string.h.
626 * hppaobsd-tdep.c: Use string.h, not gdb_string.h.
627 * i386-cygwin-tdep.c: Use string.h, not gdb_string.h.
628 * i386-dicos-tdep.c: Use string.h, not gdb_string.h.
629 * i386-linux-nat.c: Use string.h, not gdb_string.h.
630 * i386-linux-tdep.c: Use string.h, not gdb_string.h.
631 * i386-nto-tdep.c: Use string.h, not gdb_string.h.
632 * i386-sol2-tdep.c: Use string.h, not gdb_string.h.
633 * i386-tdep.c: Use string.h, not gdb_string.h.
634 * i386bsd-tdep.c: Use string.h, not gdb_string.h.
635 * i386gnu-nat.c: Use string.h, not gdb_string.h.
636 * i386nbsd-tdep.c: Use string.h, not gdb_string.h.
637 * i386obsd-tdep.c: Use string.h, not gdb_string.h.
638 * i387-tdep.c: Use string.h, not gdb_string.h.
639 * ia64-libunwind-tdep.c: Use string.h, not gdb_string.h.
640 * ia64-linux-nat.c: Use string.h, not gdb_string.h.
641 * inf-child.c: Use string.h, not gdb_string.h.
642 * inf-ptrace.c: Use string.h, not gdb_string.h.
643 * inf-ttrace.c: Use string.h, not gdb_string.h.
644 * infcall.c: Use string.h, not gdb_string.h.
645 * infcmd.c: Use string.h, not gdb_string.h.
646 * inflow.c: Use string.h, not gdb_string.h.
647 * infrun.c: Use string.h, not gdb_string.h.
648 * interps.c: Use string.h, not gdb_string.h.
649 * iq2000-tdep.c: Use string.h, not gdb_string.h.
650 * irix5-nat.c: Use string.h, not gdb_string.h.
651 * jv-exp.y: Use string.h, not gdb_string.h.
652 * jv-lang.c: Use string.h, not gdb_string.h.
653 * jv-typeprint.c: Use string.h, not gdb_string.h.
654 * jv-valprint.c: Use string.h, not gdb_string.h.
655 * language.c: Use string.h, not gdb_string.h.
656 * linux-fork.c: Use string.h, not gdb_string.h.
657 * linux-nat.c: Use string.h, not gdb_string.h.
658 * lm32-tdep.c: Use string.h, not gdb_string.h.
659 * m2-exp.y: Use string.h, not gdb_string.h.
660 * m2-typeprint.c: Use string.h, not gdb_string.h.
661 * m32c-tdep.c: Use string.h, not gdb_string.h.
662 * m32r-linux-nat.c: Use string.h, not gdb_string.h.
663 * m32r-linux-tdep.c: Use string.h, not gdb_string.h.
664 * m32r-rom.c: Use string.h, not gdb_string.h.
665 * m32r-tdep.c: Use string.h, not gdb_string.h.
666 * m68hc11-tdep.c: Use string.h, not gdb_string.h.
667 * m68k-tdep.c: Use string.h, not gdb_string.h.
668 * m68kbsd-tdep.c: Use string.h, not gdb_string.h.
669 * m68klinux-nat.c: Use string.h, not gdb_string.h.
670 * m68klinux-tdep.c: Use string.h, not gdb_string.h.
671 * m88k-tdep.c: Use string.h, not gdb_string.h.
672 * macrocmd.c: Use string.h, not gdb_string.h.
673 * main.c: Use string.h, not gdb_string.h.
674 * mdebugread.c: Use string.h, not gdb_string.h.
675 * mem-break.c: Use string.h, not gdb_string.h.
676 * memattr.c: Use string.h, not gdb_string.h.
677 * memory-map.c: Use string.h, not gdb_string.h.
678 * mep-tdep.c: Use string.h, not gdb_string.h.
679 * mi/mi-cmd-break.c: Use string.h, not gdb_string.h.
680 * mi/mi-cmd-disas.c: Use string.h, not gdb_string.h.
681 * mi/mi-cmd-env.c: Use string.h, not gdb_string.h.
682 * mi/mi-cmd-stack.c: Use string.h, not gdb_string.h.
683 * mi/mi-cmd-var.c: Use string.h, not gdb_string.h.
684 * mi/mi-cmds.c: Use string.h, not gdb_string.h.
685 * mi/mi-console.c: Use string.h, not gdb_string.h.
686 * mi/mi-getopt.c: Use string.h, not gdb_string.h.
687 * mi/mi-interp.c: Use string.h, not gdb_string.h.
688 * mi/mi-main.c: Use string.h, not gdb_string.h.
689 * mi/mi-parse.c: Use string.h, not gdb_string.h.
690 * microblaze-rom.c: Use string.h, not gdb_string.h.
691 * microblaze-tdep.c: Use string.h, not gdb_string.h.
692 * mingw-hdep.c: Use string.h, not gdb_string.h.
693 * minidebug.c: Use string.h, not gdb_string.h.
694 * minsyms.c: Use string.h, not gdb_string.h.
695 * mips-irix-tdep.c: Use string.h, not gdb_string.h.
696 * mips-linux-tdep.c: Use string.h, not gdb_string.h.
697 * mips-tdep.c: Use string.h, not gdb_string.h.
698 * mips64obsd-tdep.c: Use string.h, not gdb_string.h.
699 * mipsnbsd-tdep.c: Use string.h, not gdb_string.h.
700 * mipsread.c: Use string.h, not gdb_string.h.
701 * mn10300-linux-tdep.c: Use string.h, not gdb_string.h.
702 * mn10300-tdep.c: Use string.h, not gdb_string.h.
703 * monitor.c: Use string.h, not gdb_string.h.
704 * moxie-tdep.c: Use string.h, not gdb_string.h.
705 * mt-tdep.c: Use string.h, not gdb_string.h.
706 * nbsd-tdep.c: Use string.h, not gdb_string.h.
707 * nios2-linux-tdep.c: Use string.h, not gdb_string.h.
708 * nto-procfs.c: Use string.h, not gdb_string.h.
709 * nto-tdep.c: Use string.h, not gdb_string.h.
710 * objc-lang.c: Use string.h, not gdb_string.h.
711 * objfiles.c: Use string.h, not gdb_string.h.
712 * opencl-lang.c: Use string.h, not gdb_string.h.
713 * osabi.c: Use string.h, not gdb_string.h.
714 * osdata.c: Use string.h, not gdb_string.h.
715 * p-exp.y: Use string.h, not gdb_string.h.
716 * p-lang.c: Use string.h, not gdb_string.h.
717 * p-typeprint.c: Use string.h, not gdb_string.h.
718 * parse.c: Use string.h, not gdb_string.h.
719 * posix-hdep.c: Use string.h, not gdb_string.h.
720 * ppc-linux-nat.c: Use string.h, not gdb_string.h.
721 * ppc-sysv-tdep.c: Use string.h, not gdb_string.h.
722 * ppcfbsd-tdep.c: Use string.h, not gdb_string.h.
723 * ppcnbsd-tdep.c: Use string.h, not gdb_string.h.
724 * ppcobsd-tdep.c: Use string.h, not gdb_string.h.
725 * printcmd.c: Use string.h, not gdb_string.h.
726 * procfs.c: Use string.h, not gdb_string.h.
727 * prologue-value.c: Use string.h, not gdb_string.h.
728 * python/py-auto-load.c: Use string.h, not gdb_string.h.
729 * python/py-gdb-readline.c: Use string.h, not gdb_string.h.
730 * ravenscar-thread.c: Use string.h, not gdb_string.h.
731 * regcache.c: Use string.h, not gdb_string.h.
732 * registry.c: Use string.h, not gdb_string.h.
733 * remote-fileio.c: Use string.h, not gdb_string.h.
734 * remote-m32r-sdi.c: Use string.h, not gdb_string.h.
735 * remote-mips.c: Use string.h, not gdb_string.h.
736 * remote-sim.c: Use string.h, not gdb_string.h.
737 * remote.c: Use string.h, not gdb_string.h.
738 * reverse.c: Use string.h, not gdb_string.h.
739 * rs6000-aix-tdep.c: Use string.h, not gdb_string.h.
740 * ser-base.c: Use string.h, not gdb_string.h.
741 * ser-go32.c: Use string.h, not gdb_string.h.
742 * ser-mingw.c: Use string.h, not gdb_string.h.
743 * ser-pipe.c: Use string.h, not gdb_string.h.
744 * ser-tcp.c: Use string.h, not gdb_string.h.
745 * ser-unix.c: Use string.h, not gdb_string.h.
746 * serial.c: Use string.h, not gdb_string.h.
747 * sh-tdep.c: Use string.h, not gdb_string.h.
748 * sh64-tdep.c: Use string.h, not gdb_string.h.
749 * shnbsd-tdep.c: Use string.h, not gdb_string.h.
750 * skip.c: Use string.h, not gdb_string.h.
751 * sol-thread.c: Use string.h, not gdb_string.h.
752 * solib-dsbt.c: Use string.h, not gdb_string.h.
753 * solib-frv.c: Use string.h, not gdb_string.h.
754 * solib-osf.c: Use string.h, not gdb_string.h.
755 * solib-spu.c: Use string.h, not gdb_string.h.
756 * solib-target.c: Use string.h, not gdb_string.h.
757 * solib.c: Use string.h, not gdb_string.h.
758 * somread.c: Use string.h, not gdb_string.h.
759 * source.c: Use string.h, not gdb_string.h.
760 * sparc-nat.c: Use string.h, not gdb_string.h.
761 * sparc-sol2-tdep.c: Use string.h, not gdb_string.h.
762 * sparc-tdep.c: Use string.h, not gdb_string.h.
763 * sparc64-tdep.c: Use string.h, not gdb_string.h.
764 * sparc64fbsd-tdep.c: Use string.h, not gdb_string.h.
765 * sparc64nbsd-tdep.c: Use string.h, not gdb_string.h.
766 * sparcnbsd-tdep.c: Use string.h, not gdb_string.h.
767 * spu-linux-nat.c: Use string.h, not gdb_string.h.
768 * spu-multiarch.c: Use string.h, not gdb_string.h.
769 * spu-tdep.c: Use string.h, not gdb_string.h.
770 * stabsread.c: Use string.h, not gdb_string.h.
771 * stack.c: Use string.h, not gdb_string.h.
772 * std-regs.c: Use string.h, not gdb_string.h.
773 * symfile.c: Use string.h, not gdb_string.h.
774 * symmisc.c: Use string.h, not gdb_string.h.
775 * symtab.c: Use string.h, not gdb_string.h.
776 * target.c: Use string.h, not gdb_string.h.
777 * thread.c: Use string.h, not gdb_string.h.
778 * tilegx-linux-nat.c: Use string.h, not gdb_string.h.
779 * tilegx-tdep.c: Use string.h, not gdb_string.h.
780 * top.c: Use string.h, not gdb_string.h.
781 * tracepoint.c: Use string.h, not gdb_string.h.
782 * tui/tui-command.c: Use string.h, not gdb_string.h.
783 * tui/tui-data.c: Use string.h, not gdb_string.h.
784 * tui/tui-disasm.c: Use string.h, not gdb_string.h.
785 * tui/tui-file.c: Use string.h, not gdb_string.h.
786 * tui/tui-layout.c: Use string.h, not gdb_string.h.
787 * tui/tui-out.c: Use string.h, not gdb_string.h.
788 * tui/tui-regs.c: Use string.h, not gdb_string.h.
789 * tui/tui-source.c: Use string.h, not gdb_string.h.
790 * tui/tui-stack.c: Use string.h, not gdb_string.h.
791 * tui/tui-win.c: Use string.h, not gdb_string.h.
792 * tui/tui-windata.c: Use string.h, not gdb_string.h.
793 * tui/tui-winsource.c: Use string.h, not gdb_string.h.
794 * typeprint.c: Use string.h, not gdb_string.h.
795 * ui-file.c: Use string.h, not gdb_string.h.
796 * ui-out.c: Use string.h, not gdb_string.h.
797 * user-regs.c: Use string.h, not gdb_string.h.
798 * utils.c: Use string.h, not gdb_string.h.
799 * v850-tdep.c: Use string.h, not gdb_string.h.
800 * valarith.c: Use string.h, not gdb_string.h.
801 * valops.c: Use string.h, not gdb_string.h.
802 * valprint.c: Use string.h, not gdb_string.h.
803 * value.c: Use string.h, not gdb_string.h.
804 * varobj.c: Use string.h, not gdb_string.h.
805 * vax-tdep.c: Use string.h, not gdb_string.h.
806 * vaxnbsd-tdep.c: Use string.h, not gdb_string.h.
807 * vaxobsd-tdep.c: Use string.h, not gdb_string.h.
808 * windows-nat.c: Use string.h, not gdb_string.h.
809 * xcoffread.c: Use string.h, not gdb_string.h.
810 * xml-support.c: Use string.h, not gdb_string.h.
811 * xstormy16-tdep.c: Use string.h, not gdb_string.h.
812 * xtensa-linux-nat.c: Use string.h, not gdb_string.h.
813
814 2013-11-18 Tom Tromey <tromey@redhat.com>
815
816 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add strerror
817 and strstr.
818 * gnulib/aclocal.m4: Update.
819 * gnulib/config.in: Update.
820 * gnulib/configure: Update.
821 * gnulib/import/Makefile.am: Update.
822 * gnulib/import/Makefile.in: Update.
823 * gnulib/import/errno.in.h: New.
824 * gnulib/import/intprops.h: New.
825 * gnulib/import/m4/errno_h.m4: New.
826 * gnulib/import/m4/gnulib-cache.m4: Update.
827 * gnulib/import/m4/gnulib-comp.m4: Update.
828 * gnulib/import/m4/strerror.m4: New.
829 * gnulib/import/m4/strstr.m4: New.
830 * gnulib/import/m4/sys_socket_h.m4: New.
831 * gnulib/import/strerror-override.c: New.
832 * gnulib/import/strerror-override.h: New.
833 * gnulib/import/strerror.c: New.
834 * gnulib/import/strstr.c: New.
835
836 2013-11-18 Tom Tromey <tromey@redhat.com>
837
838 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Split into
839 multiple lines.
840
841 2013-11-18 Jose E. Marchesi <jose.marchesi@oracle.com>
842
843 * sparc-tdep.c (sparc_is_annulled_branch_insn): New function.
844 * sparc-tdep.h: And its prototype.
845
846 * sparc64-linux-tdep.c (sparc64_linux_get_longjmp_target): New
847 function.
848 (sparc64_linux_init_abi): Register the get_longjmp_target hook.
849
850 2013-11-18 Pedro Alves <palves@redhat.com>
851
852 * dwarf2-frame.c (read_addr_from_reg): Remove stale comment and
853 use unpack_pointer.
854
855 2013-11-18 Joel Brobecker <brobecker@adacore.com>
856
857 * mi/mi-main.c (mi_cmd_list_features): Add "language-options"
858 to -list-features output.
859
860 2013-11-17 Joel Brobecker <brobecker@adacore.com>
861
862 * dwarf2expr.h (struct dwarf_expr_context_funcs)
863 <read_addr_from_reg>: Renames "read_reg".
864 * dwarf2-frame.c (read_addr_from_reg): Renames "read_reg".
865 Adjust comment.
866 (dwarf2_frame_ctx_funcs, execute_stack_op, dwarf2_frame_cache):
867 Use read_addr_from_reg in place of read_reg.
868 * dwarf2expr.c (execute_stack_op): Use read_addr_from_reg
869 in place of read_reg.
870 * dwarf2loc.c (dwarf_expr_read_addr_from_reg): Renames
871 dwarf_expr_read_reg.
872 (dwarf_expr_ctx_funcs): Replace dwarf_expr_read_reg
873 with dwarf_expr_read_addr_from_reg.
874 (needs_frame_read_addr_from_reg): Renames needs_frame_read_reg.
875 (needs_frame_ctx_funcs): Replace needs_frame_read_reg with
876 needs_frame_read_addr_from_reg.
877
878 2013-11-15 Jan Kratochvil <jan.kratochvil@redhat.com>
879
880 * NEWS (Changes in GDB 7.5) (New commands) (explore): Fix typo.
881
882 2013-11-15 Andreas Arnez <arnez@linux.vnet.ibm.com>
883
884 * dwarf2loc.c (chain_candidate): Prevent invoking memcpy with
885 NULL.
886
887 2013-11-15 Tom Tromey <tromey@redhat.com>
888
889 PR c++/16117:
890 * c-exp.y (lex_one_token): Add "is_quoted_name" argument.
891 (classify_name): Likewise. Prefer a field of "this" over a
892 filename.
893 (classify_inner_name, yylex): Update.
894
895 2013-11-15 Joel Brobecker <brobecker@adacore.com>
896
897 * dwarf2expr.h (struct dwarf_expr_context_funcs) <read_reg>:
898 Extend the documentation a bit.
899 <get_reg_value>: New field.
900 * dwarf2loc.c (dwarf_expr_get_reg_value)
901 (needs_frame_get_reg_value): New functions.
902 (dwarf_expr_ctx_funcs, needs_frame_ctx_funcs): Add "get_reg_value"
903 callback.
904 * dwarf2-frame.c (get_reg_value): New function.
905 (dwarf2_frame_ctx_funcs): Add "get_reg_value" callback.
906 * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_regval_type>:
907 Use new callback to compute result_val.
908
909 2013-11-15 Alan Modra <amodra@gmail.com>
910
911 * ppc64-tdep.c (ppc64_plt_entry_point): Renamed from..
912 (ppc64_desc_entry_point): ..this. Update comments here and at
913 call points.
914 (ppc64_standard_linkage1, ppc64_standard_linkage2,
915 ppc64_standard_linkage3): Update comments.
916 (ppc64_standard_linkage4, ppc64_standard_linkage5,
917 (ppc64_standard_linkage6, ppc64_standard_linkage7): New insn
918 patterns.
919 (ppc64_standard_linkage4_target): New function.
920 (ppc64_skip_trampoline_code): Skip ELFv2 patterns too.
921 * rs6000-tdep.c (skip_prologue): Skip ELFv2 r2 setup. Correct
922 nop match. Fix comment wrap.
923
924 2013-11-14 Pedro Alves <palves@redhat.com>
925
926 * infrun.c (handle_signal_stop): Move STOP_QUIETLY,
927 STOP_QUIETLY_REMOTE and 'stop_after_trap' handling earlier.
928
929 2013-11-14 Pedro Alves <palves@redhat.com>
930
931 * infrun.c (struct execution_control_state)
932 <stepped_after_stopped_by_watchpoint>: New field.
933 (get_inferior_stop_soon): New function.
934 (handle_inferior_event): 'stepped_after_stopped_by_watchpoint' was
935 moved to struct execution_control_state -- adjust. Use
936 get_inferior_stop_soon. Split TARGET_WAITKIND_STOPPED handling to
937 new function.
938 (handle_signal_stop): New function, factored out from
939 handle_inferior_event.
940
941 2013-11-14 Pedro Alves <palves@redhat.com>
942
943 * break-catch-sig.c (signal_catchpoint_explains_signal): Adjust to
944 return a boolean.
945 * breakpoint.c (bpstat_explains_signal): Adjust to return a
946 boolean.
947 (explains_signal_watchpoint, base_breakpoint_explains_signal):
948 Adjust to return a boolean.
949 * breakpoint.h (enum bpstat_signal_value): Delete.
950 (struct breakpoint_ops) <explains_signal>: New returns a boolean.
951 (bpstat_explains_signal): Likewise.
952 * infrun.c (handle_inferior_event) <random signal checks>:
953 bpstat_explains_signal now returns a boolean - adjust. No longer
954 consider hiding signals.
955
956 2013-11-14 Pedro Alves <palves@redhat.com>
957
958 * breakpoint.c (bpstat_explains_signal) <Moribund locations>:
959 Return BPSTAT_SIGNAL_PASS instead of BPSTAT_SIGNAL_HIDE.
960 (explains_signal_watchpoint): Return BPSTAT_SIGNAL_PASS instead of
961 BPSTAT_SIGNAL_HIDE.
962 (base_breakpoint_explains_signal): Return BPSTAT_SIGNAL_PASS
963 instead of BPSTAT_SIGNAL_HIDE.
964 * infrun.c (handle_inferior_event): Rework random signal checks.
965
966 2013-11-14 Pedro Alves <palves@redhat.com>
967
968 * infrun.c (struct execution_control_state): Remove
969 'random_signal' field.
970 (handle_syscall_event): Use bpstat_causes_stop instead of
971 bpstat_explains_signal. Don't set ecs->random_signal.
972 (handle_inferior_event): New 'random_signal' local.
973 <TARGET_WAITKIND_FORKED, TARGET_WAITKIND_VFORKED,
974 TARGET_WAITKIND_EXECD>: Use bpstat_causes_stop instead of
975 bpstat_explains_signal. Don't set ecs->random_signal.
976 <TARGET_WAITKIND_STOPPED>: Adjust to use local instead of
977 ecs->random_signal.
978
979 2013-11-14 Pedro Alves <palves@redhat.com>
980
981 * infrun.c (handle_inferior_event): Move comment from the
982 function's body to the function's description, adjusted.
983
984 2013-11-14 Pedro Alves <palves@redhat.com>
985
986 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>:
987 Handle STOP_QUIETLY_NO_SIGSTOP and STOP_QUIETLY_REMOTE here.
988 Assert we never fall through out of the TARGET_WAITKIND_LOADED
989 case.
990
991 2013-11-14 Tom Tromey <tromey@redhat.com>
992
993 * python/py-linetable.c (ltpy_has_line)
994 (ltpy_get_all_source_lines): Fix loop termination condition.
995
996 2013-11-14 Joel Brobecker <brobecker@adacore.com>
997
998 * mi/mi-parse.h (struct mi_parse) <language>: New field.
999 * mi/mi-main.c (mi_cmd_execute): Temporarily set language to
1000 PARSE->LANGUAGE during command execution, if set.
1001 * mi/mi-parse.c: Add "language.h" #include.
1002 (mi_parse): Add parsing of "--language" command option.
1003
1004 * NEWS: Add entry mentioning the new "--language" command option.
1005
1006 2013-11-14 Pedro Alves <palves@redhat.com>
1007 Joel Brobecker <brobecker@adacore.com>
1008
1009 * cli/cli-utils.h (extract_arg_const): Add declaration.
1010 * cli/cli-utils.c (extract_arg_const): New function.
1011 (extract_arg): Reimplement using extract_arg_const.
1012
1013 2013-11-14 Joel Brobecker <brobecker@adacore.com>
1014
1015 * language.h: Add "symtab.h" #include.
1016
1017 2013-11-13 Doug Evans <xdje42@gmail.com>
1018
1019 * breakpoint.c (bpstat_check_breakpoint_conditions): For thread
1020 specific breakpoints, don't evaluate breakpoint condition if
1021 different thread.
1022
1023 2013-11-13 Keith Seitz <keiths@redhat.com>
1024
1025 PR c++/7935
1026 PR c++/10541
1027 * cp-support.c (insepct_type): Add support for substituting
1028 namespace aliases, too.
1029 * dwarf2read.c (scan_partial_symbols): Add a partial symbol
1030 for DW_TAG_imported_declaration.
1031 (add_partial_symbol): Likewise.
1032 (process_die): Handle namespace aliases with
1033 read_namespace_alias.
1034 (die_needs_namespace): Add DW_TAG_imported_declaration.
1035 (read_namespace_alias): New function.
1036 (load_partial_dies): Load DW_TAG_imported_declaration, too.
1037 (new_symbol_full): Handle DW_TAG_imported_declaration.
1038
1039 2013-11-13 Keith Seitz <keiths@redhat.com>
1040
1041 * p-exp.y (uptok): Make first parameter const.
1042 (yylex): Make `tokstart' and `tokptr' const.
1043 Don't copy the lexer input to a temporary buffer.
1044 Make `p' const.
1045 Remove const workaround for parse_escape.
1046 Create a temporary buffer for a convenience variable instead
1047 of doing in-place modification of the input.
1048 If a match is found with a different case from the input,
1049 do not change the input at all.
1050 Use `tmp' to construct the resultant stoken instead of
1051 `tokstart'.
1052
1053 2013-11-13 Doug Evans <xdje42@gmail.com>
1054
1055 * breakpoint.c (breakpoint_cond_eval): Fix and enhance comment.
1056
1057 2013-11-13 Joel Brobecker <brobecker@adacore.com>
1058
1059 * mi/mi-main.c (mi_cmd_list_features): Replace "info-ada-exceptions"
1060 entry with "ada-exceptions".
1061
1062 2013-11-13 Joel Brobecker <brobecker@adacore.com>
1063
1064 * symfile.c (reread_symbols): Move call to set_objfile_per_bfd
1065 after re-initialization of OBJFILE's obstack.
1066
1067 2013-11-12 Doug Evans <xdje42@gmail.com>
1068
1069 * breakpoint.c (bpstat_check_breakpoint_conditions): Assert
1070 bs->stop != 0 on entry. Update function comment. Simplify early
1071 exit for frame mismatch. Reindent rest of function.
1072
1073 2013-11-12 Andreas Arnez <arnez@linux.vnet.ibm.com>
1074
1075 * objc-lang.c (uniquify_strings): Prevent invoking qsort with
1076 NULL.
1077
1078 2013-11-12 Doug Evans <dje@google.com>
1079
1080 Work around gold/15646.
1081 * dwarf2read.c (read_index_from_section): Update comment.
1082 (struct dw2_symtab_iterator): New member global_seen.
1083 (dw2_symtab_iter_init): Initialize it.
1084 (dw2_symtab_iter_next): Skip duplicate global symbols.
1085 (dw2_expand_symtabs_matching): Ditto.
1086
1087 2013-11-12 Joel Brobecker <brobecker@adacore.com>
1088
1089 * mi/mi-cmds.h (mi_cmd_info_ada_exceptions): Add declaration.
1090 * mi/mi-cmds.c (mi_cmds): Add entry for -info-ada-exceptions
1091 command.
1092 * mi/mi-cmd-info.c: #include "ada-lang.c" and "arch-utils.c".
1093 (mi_cmd_info_ada_exceptions): New function.
1094 * mi/mi-main.c (mi_cmd_list_features): Add "info-ada-exceptions".
1095
1096 2013-11-12 Joel Brobecker <brobecker@adacore.com>
1097
1098 * ada-lang.h: #include "vec.h".
1099 (struct ada_exc_info): New.
1100 (ada_exc_info): New typedef.
1101 (DEF_VEC_O(ada_exc_info)): New vector.
1102 (ada_exceptions_list): Add declaration.
1103 * ada-lang.c (ada_is_exception_sym)
1104 (ada_is_non_standard_exception_sym, compare_ada_exception_info)
1105 (sort_remove_dups_ada_exceptions_list)
1106 (ada_exc_search_name_matches, ada_add_standard_exceptions)
1107 (ada_add_exceptions_from_frame, ada_add_global_exceptions)
1108 (ada_exceptions_list_1, ada_exceptions_list)
1109 (info_exceptions_command): New function.
1110 (_initialize_ada_language): Add "info exception" command.
1111
1112 2013-11-11 Phil Muldoon <pmuldoon@redhat.com>
1113
1114 PR python/15629
1115 * NEWS: Add linetable feature.
1116 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-linetable entries.
1117 * python/py-linetable.c: New file.
1118 * python/py-symtab.c (stpy_get_linetable): New function.
1119 * python/python-internal.h (symtab_to_linetable_object): Declare.
1120 (gdbpy_initialize_linetable): Ditto.
1121 * python/python.c (_initialize_python): Call
1122 gdbpy_initialize_linetable.
1123
1124 2013-11-11 Joel Brobecker <brobecker@adacore.com>
1125
1126 * ada-lang.c (create_ada_exception_catchpoint): Enhance
1127 the documentation of fields "except_string" and "condition".
1128 * mi/mi-cmd-catch.c (mi_cmd_catch_assert): Reallocate
1129 CONDITION on the heap before passing it to
1130 create_ada_exception_catchpoint.
1131 (mi_cmd_catch_exception): Likewise for EXCEPTION_NAME and
1132 CONDITION.
1133
1134 2013-11-11 Tom Tromey <tromey@redhat.com>
1135
1136 * config.in, configure: Rebuild.
1137 * configure.ac (HAVE_TKILL_SYSCALL): Check for "syscall".
1138
1139 2013-11-11 Joel Brobecker <brobecker@adacore.com>
1140
1141 * remote-sim.c (gdbsim_detach): Break declaration into
1142 shorter lines. No code change.
1143
1144 2013-11-11 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
1145
1146 * remote-sim.c (gdbsim_detach): Fix prototype.
1147
1148 2013-11-08 Doug Evans <dje@google.com>
1149
1150 * dwarf2read.c (dwarf2_read_debug): Change to unsigned int.
1151 (create_debug_types_hash_table): Only print debugging messages for
1152 each TU if dwarf2-read >= 2.
1153 (process_queue): Ditto.
1154 (_initialize_dwarf2_read): Make "set debug dwarf2-read" a zuinteger.
1155 Update doc string.
1156
1157 2013-11-08 Tom Tromey <tromey@redhat.com>
1158
1159 * configure: Rebuild.
1160 * configure.ac: Remove mentions of HAVE_MULTIPLE_PROC_FDS.
1161
1162 2013-11-08 Tom Tromey <tromey@redhat.com>
1163
1164 * configure, config.in: Rebuild.
1165 * configure.ac: Remove unused configury.
1166
1167 2013-11-08 Tom Tromey <tromey@redhat.com>
1168
1169 * m32c-tdep.c: Use gdb_string.h.
1170
1171 2013-11-08 Tom Tromey <tromey@redhat.com>
1172
1173 * configure, config.in: Rebuild.
1174 * configure.ac: Remove all link.h-related checks.
1175
1176 2013-11-08 Tom Tromey <tromey@redhat.com>
1177
1178 * acinclude.m4: Include common.m4.
1179 * common/common.m4: New file.
1180 * configure, config.in: Rebuild.
1181 * configure.ac: Use GDB_AC_COMMON.
1182
1183 2013-11-08 Doug Evans <dje@google.com>
1184
1185 * NEWS: Mention that "set debug symtab-create" now accepts a
1186 verbosity level.
1187 * buildsym.c (end_symtab_from_static_block): Call set_symtab_primary
1188 to set the symtab's primary flag.
1189 * jit.c (finalize_symtab): Ditto.
1190 * mdebugread.c (psymtab_to_symtab_1): Ditto.
1191 * symfile.c (allocate_symtab): Only print debugging messages for
1192 symtab_create_debug levels 2 and higher.
1193 * symtab.c (symtab_create_debug): Change type to unsigned int.
1194 (set_symtab_primary): New function.
1195 (_initialize_symtab): Change "set debug symtab-create" to a
1196 zuinteger option.
1197 * symtab.h (set_symtab_primary): Declare.
1198 (symtab_create_debug): Update decl.
1199
1200 2013-11-08 Tom Tromey <tromey@redhat.com>
1201
1202 * aix-thread.c (aix_thread_detach): Update.
1203 * corelow.c (core_detach): Update.
1204 * darwin-nat.c (darwin_detach): Update.
1205 * dec-thread.c (dec_thread_detach): Update.
1206 * gnu-nat.c (gnu_detach): Update.
1207 * go32-nat.c (go32_detach): Update.
1208 * inf-ptrace.c (inf_ptrace_detach): Update.
1209 * inf-ttrace.c (inf_ttrace_detach): Update.
1210 * linux-fork.c (linux_fork_detach): Update.
1211 * linux-fork.h (linux_fork_detach): Update.
1212 * linux-nat.c (linux_nat_detach): Update. Introduce "tem"
1213 local for const-correctness.
1214 * linux-thread-db.c (thread_db_detach): Update.
1215 * monitor.c (monitor_detach): Update.
1216 * nto-procfs.c (procfs_detach): Update.
1217 * procfs.c (procfs_detach): Update.
1218 * record.c (record_detach): Update.
1219 * record.h (record_detach): Update.
1220 * remote-m32r-sdi.c (m32r_detach): Update.
1221 * remote-mips.c (mips_detach): Update.
1222 * remote-sim.c (gdbsim_detach): Update.
1223 * remote.c (remote_detach_1, remote_detach)
1224 (extended_remote_detach): Update.
1225 * sol-thread.c (sol_thread_detach): Update.
1226 * target.c (target_detach): Make "args" const.
1227 (init_dummy_target): Update.
1228 * target.h (struct target_ops) <to_detach>: Make argument const.
1229 (target_detach): Likewise.
1230 * windows-nat.c (windows_detach): Update.
1231
1232 2013-11-07 Doug Evans <dje@google.com>
1233
1234 PR 11786
1235 * solib-svr4.c (svr4_exec_displacement): Ignore filesz, memsz, flags
1236 and align fields for PT_GNU_RELRO segments.
1237
1238 2013-11-07 Phil Muldoon <pmuldoon@redhat.com>
1239
1240 PR python/15747
1241 * python/py-cmd.c: Add COMPLETE_EXPRESSION constant.
1242
1243 2013-11-07 Phil Muldoon <pmuldoon@redhat.com>
1244
1245 * NEWS: Document Python temporary breakpoint support.
1246 * python/py-breakpoint.c (bppy_get_temporary): New function.
1247 (bppy_init): New keyword: temporary. Parse it and set breakpoint
1248 to temporary if True.
1249
1250 2013-11-07 Jose E. Marchesi <jose.marchesi@oracle.com>
1251
1252 * sparc-tdep.c (sparc_analyze_control_transfer): Assertion
1253 removed to allow analyzing unconditional branch instructions
1254 with PC-relative offsets of zero.
1255
1256 2013-11-07 Yao Qi <yao@codesourcery.com>
1257
1258 * mi/mi-cmd-var.c: Include "language.h".
1259 (mi_cmd_var_info_expression): Get language name from
1260 language_defn.
1261 * varobj.c (varobj_language_string): Remove.
1262 (variable_language): Remove declaration.
1263 (languages): Remove.
1264 (varobj_get_language): Change the type of return value.
1265 (variable_language): Remove.
1266 * varobj.h (enum varobj_languages): Remove.
1267 (varobj_language_string): Remove declaration.
1268 (varobj_get_language): Update declaration.
1269
1270 2013-11-07 Yao Qi <yao@codesourcery.com>
1271
1272 * language.h (struct language_defn) <la_natural_name>: New
1273 field.
1274 * ada-lang.c (ada_language_defn): Initialize field
1275 'la_natural_name'.
1276 * c-lang.c (c_language_defn): Likewise.
1277 (cplus_language_defn, asm_language_defn): Likewise.
1278 * d-lang.c (d_language_defn): Likewise.
1279 * f-lang.c (f_language_defn): Likewise.
1280 * go-lang.c (go_language_defn): Likewise.
1281 * jv-lang.c (java_language_defn): Likewise.
1282 * language.c (unknown_language_defn ): Likewise.
1283 (auto_language_defn): Likewise.
1284 * m2-lang.c (m2_language_defn): Likewise.
1285 * objc-lang.c (objc_language_defn): Likewise.
1286 * opencl-lang.c (opencl_language_defn): Likewise.
1287 * p-lang.c (pascal_language_defn): Likewise.
1288
1289 2013-11-07 Yao Qi <yao@codesourcery.com>
1290
1291 * language.c (language_str): Return const char *.
1292 (add_language): Add const to 'language_names'
1293 * language.h (struct language_defn) <la_name>: Add const.
1294 (language_str: Update declaration.
1295
1296 2013-11-06 Andreas Arnez <arnez@linux.vnet.ibm.com>
1297
1298 * s390-linux-nat.c (s390_read_description): Consider the TE field
1299 in the HWCAP for determining 'have_regset_tdb'.
1300
1301 2013-11-06 Will Newton <will.newton@linaro.org>
1302
1303 PR gdb/12866
1304 * dwarf2read.c (skip_one_die): Sanity check DW_AT_sibling
1305 values. (read_partial_die): Likewise.
1306
1307 2013-11-06 Muhammad Bilal <mbilal@codesourcery.com>
1308
1309 PR cli/16122
1310 * top.c (command_line_input): Unify interactivity tests to use
1311 input_from_terminal_p.
1312 * event-top.c (command_line_handler): Likewise.
1313
1314 2013-11-06 Yao Qi <yao@codesourcery.com>
1315
1316 * Makefile.in (check-perf): New target.
1317
1318 2013-11-05 Will Newton <will.newton@linaro.org>
1319
1320 PR gdb/7670
1321 * arm-tdep.c (print_fpu_flags): Use filtered output routines.
1322 (arm_print_float_info): Likewise.
1323
1324 2013-11-04 Anton Blanchard <anton@samba.org>
1325
1326 * target.c (memory_xfer_partial): Cap write to 4KB.
1327
1328 2013-11-01 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
1329
1330 * breakpoint.c (create_longjmp_master_breakpoint): Allow libc
1331 probe scan even when the arch provides no get_longjmp_target.
1332
1333 2013-10-31 Pedro Alves <palves@redhat.com>
1334
1335 * infrun.c (handle_syscall_event): Don't set or clear stop_signal.
1336 (handle_inferior_event) <TARGET_WAITKIND_FORKED,
1337 TARGET_WAITKIND_VFORKED>: Don't set stop_signal to
1338 GDB_SIGNAL_TRAP, or clear it. Pass GDB_SIGNAL_0 to
1339 bpstat_explains signal, instead of GDB_SIGNAL_TRAP.
1340 <bpstat handling>: If the bpstat chain wants the signal to be
1341 hidden, then set stop_signal to GDB_SIGNAL_0 instead of
1342 GDB_SIGNAL_TRAP.
1343
1344 2013-10-31 Andrew Burgess <aburgess@broadcom.com>
1345
1346 * breakpoint.c (update_watchpoint): Update error message and add
1347 an additional error message.
1348
1349 2013-10-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
1350
1351 * s390-tdep.h: Rename to...
1352 * s390-linux-tdep.h: ...here.
1353 * s390-tdep.c: Rename to...
1354 * s390-linux-tdep.c: ...here. Adjust #include.
1355 * s390-nat.c: Rename to...
1356 * s390-linux-nat.c: ...here. Adjust #include.
1357 * config/s390/s390.mh: Rename to...
1358 * config/s390/linux.mh: ...here. Reflect rename s390-nat.o ->
1359 s390-linux-nat.o.
1360 * configure.host: Reflect host rename "s390" -> "linux".
1361 * configure.tgt: Reflect rename s390-tdep.o -> s390-linux-tdep.o.
1362 * Makefile.in (ALL_TARGET_OBS): Likewise.
1363 (HFILES_NO_SRCDIR): Reflect rename s390-tdep.h ->
1364 s390-linux-tdep.h.
1365 (ALLDEPFILES): Reflect rename of .c files.
1366
1367 2013-10-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
1368
1369 * s390-nat.c: Whitespace cleanup.
1370 * s390-tdep.c: Likewise.
1371 * s390-tdep.h: Remove empty line at end of file.
1372
1373 2013-10-30 Maciej W. Rozycki <macro@codesourcery.com>
1374
1375 * linux-tdep.c (linux_corefile_thread_callback): Preinitialize
1376 siginfo_size.
1377
1378 2013-10-29 Tom Tromey <tromey@redhat.com>
1379
1380 * utils.c (reg): Move undefinition...
1381 * gdb_curses.h: ... here. Update comment to mention AIX.
1382
1383 2013-10-29 Nicolas Blanc <nicolas.blanc@intel.com>
1384
1385 * exec.h (add_target_sections_of_objfile): New declaration.
1386 * exec.c (add_target_sections_of_objfile): New function.
1387 * symfile.c (add_symbol_file_command): Update current target sections.
1388 (remove_symbol_file_command): New command.
1389 (symfile_free_objfile): New function.
1390 (_initialize_symfile): Register observer for free_objfile events.
1391 * NEWS: Add description of the remove-symbol-file command.
1392 * breakpoint.c (disable_breakpoints_in_freed_objfile): New function.
1393 * objfiles.c (free_objfile): Notify free_objfile.
1394 (is_addr_in_objfile): New function.
1395 * objfiles.h (is_addr_in_objfile): New declaration.
1396 * printcmd.c (clear_dangling_display_expressions): Act upon free_objfile
1397 events instead of solib_unloaded events.
1398 (_initialize_printcmd): Register observer for free_objfile instead
1399 of solib_unloaded notifications.
1400 * solib.c (remove_user_added_objfile): New function.
1401 (_initialize_symfile): Add remove-symbol-file.
1402
1403 2013-10-29 Andrew Burgess <aburgess@broadcom.com>
1404
1405 * infcmd.c (default_print_one_register_info): Use val_print to
1406 print all values even optimized out or unavailable ones. Don't
1407 try to print a raw form of optimized out or unavailable values.
1408
1409 2013-10-29 Yao Qi <yao@codesourcery.com>
1410
1411 * auto-load.c (auto_load_pspace_data_cleanup): Get data from
1412 parameter 'arg' instead of from program_space_data.
1413 * objfiles.c (objfiles_pspace_data_cleanup): Likewise.
1414 * solib-darwin.c (darwin_pspace_data_cleanup): Likewise.
1415 * solib-dsbt.c (dsbt_pspace_data_cleanup): Likewise.
1416 * solib-svr4.c (svr4_pspace_data_cleanup): Likewise.
1417 * inflow.c (inflow_inferior_data_cleanup): Get data from
1418 parameter 'arg' instead of inferior_data.
1419 * registry.h: Add comments.
1420
1421 2013-10-28 Pedro Alves <palves@redhat.com>
1422
1423 * breakpoint.c (watchpoints_triggered)
1424 <!target_stopped_data_address>: Hardcode return 1.
1425
1426 2013-10-28 Pedro Alves <palves@redhat.com>
1427
1428 * infrun.c (process_event_stop_test): Remove unnecessary scoping
1429 level and reindent.
1430
1431 2013-10-28 Pedro Alves <palves@redhat.com>
1432
1433 * infrun.c (process_event_stop_test): New function, factored out
1434 from handle_inferior_event.
1435 (handle_inferior_event): 'process_event_stop_test' is now a
1436 function instead of a goto label -- adjust.
1437
1438 2013-10-28 Pedro Alves <palves@redhat.com>
1439
1440 * infrun.c (handle_inferior_event): Move process_event_stop_test
1441 goto label to the else branch of the ecs->random_signal check,
1442 along with FRAME and GDBARCH re-fetching.
1443
1444 2013-10-28 Pedro Alves <palves@redhat.com>
1445
1446 * infrun.c (switch_back_to_stepped_thread): New function, factored
1447 out from handle_inferior_event.
1448 (handle_inferior_event): Adjust to call
1449 switch_back_to_stepped_thread. Call it also at the tail of the
1450 random signal handling, and return, instead of also handling
1451 random signals just before the stepping tests.
1452
1453 2013-10-28 Pedro Alves <palves@redhat.com>
1454
1455 * infrun.c (clear_stop_func): Delete.
1456 (handle_inferior_event): Don't call clear_stop_func and don't
1457 clear 'ecs->random_signal'.
1458
1459 2013-10-27 Yao Qi <yao@codesourcery.com>
1460
1461 * varobj.c (struct varobj_root) <lang>: Rename to 'lang_ops'.
1462 (varobj_create, varobj_get_path_expr): Update.
1463 (varobj_value_has_mutated, varobj_update): Likewise.
1464 (create_child_with_value, new_root_variable): Likewise.
1465 (number_of_children, name_of_variable): Likewise.
1466 (value_of_child, my_value_of_variable): Likewise.
1467 (varobj_value_is_changeable_p): Likewise.
1468
1469 2013-10-25 Yao Qi <yao@codesourcery.com>
1470
1471 * language.h (struct lang_varobj_ops): Declare.
1472 (struct language_defn) <la_varobj_ops>: New field.
1473 * ada-lang.c: Include "varobj.h"
1474 (defn ada_language_defn): Initialize field 'la_varobj_ops' with
1475 ada_varobj_ops.
1476 * c-lang.c: Include "varobj.h"
1477 (c_language_defn): Initialize field 'la_varobj_ops' with
1478 c_varobj_ops.
1479 (cplus_language_defn): Initialize field 'la_varobj_ops' with
1480 cplus_varobj_ops.
1481 (asm_language_defn): Initialize field 'la_varobj_ops' with
1482 default_varobj_ops.
1483 (minimal_language_defn): Likewise.
1484 * d-lang.c (d_language_defn): Likewise.
1485 * f-lang.c (f_language_defn): Likewise.
1486 * go-lang.c (go_language_defn): Likewise.
1487 * m2-lang.c (m2_language_defn): Likewise.
1488 * objc-lang.c (objc_language_defn): Likewise.
1489 * opencl-lang.c (opencl_language_defn): Likewise.
1490 * p-lang.c (pascal_language_defn): Likewise.
1491 * language.c (unknown_language_defn): Likewise.
1492 (auto_language_defn): Likewise.
1493 (local_language_defn): Likewise.
1494 * jv-lang.c (java_language_defn): Initialize field
1495 'la_varobj_ops' with java_varobj_ops.
1496 * varobj.c (varobj_create): Update.
1497 * varobj.h (default_varobj_ops): Define macro.
1498
1499 2013-10-25 Pedro Alves <palves@redhat.com>
1500
1501 * cp-valprint.c (cp_print_value_fields): No longer handle a NULL
1502 static field value.
1503 (cp_print_static_field): If the value is entirely optimized out,
1504 print <optimized out> here.
1505 * jv-valprint.c (java_print_value_fields): No longer handle a NULL
1506 static field value.
1507 * p-valprint.c (pascal_object_print_static_field): If the value is
1508 entirely optimized out, print <optimized out> here.
1509 * valops.c (do_search_struct_field)
1510 (value_struct_elt_for_reference): No longer handle a NULL static
1511 field value.
1512 * value.c (value_static_field): Return an optimized out value
1513 instead of NULL.
1514
1515 2013-10-25 Yao Qi <yao@codesourcery.com>
1516
1517 * remote.c (remote_traceframe_info): Return early if
1518 traceframe is not selected.
1519
1520 2013-10-25 Yao Qi <yao@codesourcery.com>
1521
1522 * tracepoint.c (traceframe_fun): Remove.
1523 (traceframe_sal): Remove.
1524 (set_traceframe_context): Add local variables.
1525
1526 2013-10-25 Joel Brobecker <brobecker@adacore.com>
1527
1528 * varobj.h (struct lang_varobj_ops): Remove spaces between '*'
1529 and parameter name.
1530
1531 2013-10-24 Maciej W. Rozycki <macro@codesourcery.com>
1532
1533 * linux-tdep.c (linux_corefile_thread_callback): Propagate any
1534 failure from register information collection.
1535
1536 2013-10-24 Maciej W. Rozycki <macro@codesourcery.com>
1537
1538 * linux-tdep.c (linux_corefile_thread_data): Remove `num_notes'
1539 member.
1540 (linux_corefile_thread_callback): Update accordingly.
1541 (linux_make_corefile_notes): Likewise.
1542
1543 2013-10-24 Pedro Alves <palves@redhat.com>
1544
1545 * NEWS (New options): Mention set/show startup-with-shell.
1546 * config/alpha/nm-osf3.h (START_INFERIOR_TRAPS_EXPECTED): Set to 2
1547 instead of 3.
1548 * fork-child.c (fork_inferior, startup_inferior): Handle 'set
1549 startup-with-shell'.
1550 (show_startup_with_shell): New function.
1551 (_initialize_fork_child): Register the set/show startup-with-shell
1552 commands.
1553 * inf-ptrace.c (inf_ptrace_create_inferior): Remove comment.
1554 * inf-ttrace.c (inf_ttrace_him): Remove comment.
1555 * procfs.c (procfs_init_inferior): Remove comment.
1556 * infcmd.c (startup_with_shell): New global.
1557 * inferior.h (startup_with_shell): Declare global.
1558 (STARTUP_WITH_SHELL): Delete.
1559 (START_INFERIOR_TRAPS_EXPECTED): Set to 1 by default instead of 2.
1560
1561 2013-10-23 Pedro Alves <palves@redhat.com>
1562
1563 * common/gdb_signals.h (gdb_signal_to_symbol_string): Declare.
1564 * common/signals.c: Include "gdb_assert.h".
1565 (signals): New field 'symbol'.
1566 (SET): Use the 'symbol' parameter.
1567 (gdb_signal_to_symbol_string): New function.
1568 * infrun.c (handle_inferior_event) <random signal>: In debug
1569 output, print the random signal enum as string in addition to its
1570 number.
1571 * target/waitstatus.c (target_waitstatus_to_string): Print the
1572 signal's enum value as string instead of the (POSIX) signal name.
1573
1574 2013-10-23 Gary Benson <gbenson@redhat.com>
1575
1576 PR 16013
1577 * common/linux-osdata.c (command_from_pid): Reduced size of cmd
1578 from 32 to 18. Adjusted fscanf format string accordingly.
1579 (Avoids leaving cmd unterminated.)
1580 (print_sockets): Do not parse tlen, inode, sl, timeout, txq, rxq,
1581 trun, retn or extra. (Avoids leaving extra unterminated.) Check
1582 that local_address and remote_address will not overflow.
1583 (linux_xfer_osdata_modules): Parse lines using strtok to avoid
1584 leaving dependencies unterminated. Parse size as "%u" to match
1585 definition.
1586
1587 2013-10-22 Pedro Alves <palves@redhat.com>
1588
1589 * infrun.c (handle_inferior_event) <thread hop>: Don't clear or
1590 set ecs->random signal.
1591
1592 2013-10-22 Pedro Alves <palves@redhat.com>
1593
1594 * infrun.c (keep_going): Update comments.
1595
1596 2013-10-22 Pedro Alves <palves@redhat.com>
1597
1598 * remote.c (remote_parse_stop_reply) <'T'/'S'/'X' replies>: Map
1599 invalid signal numbers to GDB_SIGNAL_UNKNOWN.
1600
1601 2013-10-22 Pedro Alves <palves@redhat.com>
1602
1603 * include/gdb/signals.def (TARGET_EXC_BAD_ACCESS): Rename to
1604 GDB_EXC_BAD_ACCESS.
1605 (TARGET_EXC_BAD_INSTRUCTION): Rename to GDB_EXC_BAD_INSTRUCTION.
1606 (TARGET_EXC_ARITHMETIC): Rename to GDB_EXC_ARITHMETIC.
1607 (TARGET_EXC_EMULATION): Rename to GDB_EXC_EMULATION.
1608 (TARGET_EXC_SOFTWARE): Rename to GDB_EXC_SOFTWARE.
1609 (TARGET_EXC_BREAKPOINT): Rename to GDB_EXC_BREAKPOINT.
1610 (GDB_SIGNAL_LAST): Change description string.
1611 * common/signals.c (gdb_signal_from_host, do_gdb_signal_to_host):
1612 Adjust to signal renaming.
1613 * darwin-nat.c (darwin_decode_message): Likewise.
1614
1615 2013-10-22 Jose E. Marchesi <jose.marchesi@oracle.com>
1616
1617 * MAINTAINERS (Write After Approval): Add myself to the list.
1618
1619 2013-10-18 Andrew Burgess <aburgess@broadcom.com>
1620
1621 * breakpoint.c (update_watchpoint): If hardware watchpoints are
1622 forced off, downgrade them to software watchpoints if possible,
1623 and error out if not possible.
1624 (watch_command_1): Move watchpoint type selection closer to
1625 watchpoint creation, and extend the comments.
1626
1627 2013-10-18 Pedro Alves <palves@redhat.com>
1628
1629 PR gdb/16062
1630 * infrun.c (handle_inferior_event): Keep going if we got a random
1631 signal we should not stop for, instead of falling through to the
1632 step tests.
1633
1634 2013-10-18 Yao Qi <yao@codesourcery.com>
1635
1636 * c-varobj.c (cplus_number_of_children): Fix indentation.
1637
1638 2013-10-17 Tom Tromey <tromey@redhat.com>
1639
1640 PR gdb/15995:
1641 * printcmd.c (printcmd): Call gdb_flush.
1642
1643 2013-10-17 Tom Tromey <tromey@redhat.com>
1644
1645 * elfread.c (struct elfinfo) <stabindexsect>: Remove.
1646 (elf_locate_sections): Update.
1647
1648 2013-10-17 Yao Qi <yao@codesourcery.com>
1649
1650 * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
1651 * ada-varobj.c: Remove the include of ada-varobj.h.
1652 (ada_varobj_get_number_of_children): Declare.
1653 (ada_varobj_get_name_of_child): Make it static.
1654 (ada_varobj_get_path_expr_of_child): Likewise.
1655 (ada_varobj_get_value_of_child): Likewise.
1656 (ada_varobj_get_type_of_child): Likewise.
1657 (ada_varobj_get_value_of_array_variable): Likewise.
1658 * ada-varobj.h: Remove.
1659
1660 2013-10-17 Yao Qi <yao@codesourcery.com>
1661
1662 * Makefile.in (SFILES): Add c-varobj.c and jv-varobj.c.
1663 (COMMON_OBS): Add c-varobj.o and jv-varobj.o.
1664 * ada-varobj.c: Include "varobj.h".
1665 (ada_number_of_children): New. Moved from varobj.c.
1666 (ada_name_of_variable, ada_name_of_child): Likewise.
1667 (ada_path_expr_of_child, ada_value_of_child): Likewise.
1668 (ada_type_of_child, ada_value_of_variable): Likewise.
1669 (ada_value_is_changeable_p, ada_value_has_mutated): Likewise.
1670 (ada_varobj_ops): New.
1671 * c-varobj.c, jv-varobj.c: New file. Moved from varobj.c.
1672 * gdbtypes.c (get_target_type): New. Moved from varobj.c.
1673 * gdbtypes.h (get_target_type): Declare.
1674 * varobj.c: Remove the inclusion of "ada-varobj.h" and
1675 "ada-lang.h".
1676 (ANONYMOUS_STRUCT_NAME): Move it to c-varobj.c.
1677 (ANONYMOUS_UNION_NAME): Likewise.
1678 (get_type, get_value_type, get_target_type): Remove declarations.
1679 (value_get_print_value, varobj_value_get_print_value): Likewise.
1680 (c_number_of_children, c_name_of_variable): Likewise.
1681 (c_name_of_child, c_path_expr_of_child): Likewise.
1682 (c_value_of_child, c_type_of_child): Likewise.
1683 (c_value_of_variable, cplus_number_of_children): Likewise.
1684 (cplus_class_num_children, cplus_name_of_variable): Likewise.
1685 (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
1686 (cplus_value_of_child, cplus_type_of_child): Likewise.
1687 (cplus_value_of_variable, java_number_of_children): Likewise.
1688 (java_name_of_variable, java_name_of_child): Likewise.
1689 (java_path_expr_of_child, java_value_of_child): Likewise.
1690 (java_type_of_child, java_value_of_variable): Likewise.
1691 (ada_number_of_children, ada_name_of_variable): Likewise.
1692 (ada_name_of_child, ada_path_expr_of_child): Likewise.
1693 (ada_value_of_child, ada_type_of_child): Likewise.
1694 (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
1695 (ada_value_has_mutated): Likewise.
1696 (struct language_specific): Move it to varobj.h.
1697 (CPLUS_FAKE_CHILD): Move it to varobj.h.
1698 (restrict_range): Rename it varobj_restrict_range. Make it extern.
1699 Callers update.
1700 (get_path_expr_parent): Rename it to varobj_get_path_expr_parent.
1701 Make it extern.
1702 (is_anonymous_child): Move it to c-varobj.c and rename to
1703 varobj_is_anonymous_child. Caller update.
1704 (get_type): Move it to c-varobj.c.
1705 (get_value_type): Rename it varobj_get_value_type. Make it
1706 extern.
1707 (get_target_type): Move it gdbtypes.c.
1708 (varobj_formatted_print_options): New function.
1709 (value_get_print_value): Rename it to
1710 varobj_value_get_print_value and make it extern.
1711 (varobj_value_is_changeable_p): Make it extern.
1712 (adjust_value_for_child_access): Move it to c-varobj.c.
1713 (default_value_is_changeable_p): Rename it to
1714 varobj_default_value_is_changeable_p. Make it extern.
1715 (c_number_of_children, c_name_of_variable): Move it to c-varobj.c
1716 (c_name_of_child, c_path_expr_of_child): Likewise.
1717 (c_value_of_child, c_type_of_child): Likewise.
1718 (c_value_of_variable, cplus_number_of_children): Likewise.
1719 (cplus_class_num_children, cplus_name_of_variable): Likewise.
1720 (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
1721 (cplus_value_of_child, cplus_type_of_child): Likewise.
1722 (cplus_value_of_variable): Likewise.
1723 (java_number_of_children, java_name_of_variable): Move it to jv-varobj.c.
1724 (java_name_of_child, java_path_expr_of_child): Likewise.
1725 (java_value_of_child, java_type_of_child): Likewise.
1726 (java_value_of_variable): Likewise.
1727 (ada_number_of_children, ada_name_of_variable): Move it to ada-varobj.c.
1728 (ada_name_of_child, ada_path_expr_of_child): Likewise.
1729 (ada_value_of_child, ada_type_of_child): Likewise.
1730 (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
1731 (ada_value_has_mutated): Likewise.
1732 * varobj.h (CPLUS_FAKE_CHILD): New macro, moved from varobj.c.
1733 (struct lang_varobj_ops): New. Renamed by 'struct language_specific'.
1734 (c_varobj_ops, cplus_varobj_ops): Declare.
1735 (java_varobj_ops, ada_varobj_ops): Declare.
1736 (varobj_default_value_is_changeable_p): Declare.
1737 (varobj_value_is_changeable_p): Declare.
1738 (varobj_get_value_type, varobj_is_anonymous_child): Declare.
1739 (varobj_get_path_expr_parent): Declare.
1740 (varobj_value_get_print_value): Declare.
1741 (varobj_formatted_print_options): Declare.
1742 (varobj_restrict_range): Declare.
1743
1744 2013-10-17 Luis Machado <lgustavo@codesourcery.com>
1745
1746 * target/waitstatus.h (target_waitkind): Remove spurious
1747 character from the comments.
1748
1749 2013-10-17 Joel Brobecker <brobecker@adacore.com>
1750
1751 * gdbarch.sh (get_longjmp_target): Add method documentation.
1752 * gdbarch.h: Regenerate.
1753
1754 2013-10-16 Tom Tromey <tromey@redhat.com>
1755
1756 * dbxread.c (read_dbx_symtab) <bss_ext_symbol>: Remove unused
1757 label.
1758
1759 2013-10-16 Luis Machado <lgustavo@codesourcery.com>
1760
1761 * gcore.in: Call GDB using the full path to the gcore script.
1762 Error out if the GDB binary is not found.
1763
1764 2013-10-16 Sergio Durigan Junior <sergiodj@redhat.com>
1765
1766 PR gdb/16014
1767 * dwarf2read.c (dw2_get_real_path): Remove unnecessary call to
1768 sizeof.
1769
1770 2013-10-16 Sergio Durigan Junior <sergiodj@redhat.com>
1771
1772 PR gdb/16042
1773 * target.c (target_disable_btrace): Fix invalid return value for
1774 void function.
1775 (target_teardown_btrace): Likewise.
1776
1777 2013-10-14 Yao Qi <yao@codesourcery.com>
1778
1779 * varobj.c (struct varobj): Move most of the fields to
1780 varobj.h.
1781 (struct varobj_dynamic): New struct.
1782 (varobj_get_display_hint) [HAVE_PYTHON]: Adjust.
1783 (varobj_has_more): Likewise.
1784 (dynamic_varobj_has_child_method): Likewise.
1785 (update_dynamic_varobj_children): Likewise.
1786 (varobj_get_num_children): Likewise.
1787 (varobj_list_children, varobj_pretty_printed_p): Likewise.
1788 (install_new_value_visualizer): Likewise.
1789 (install_new_value_visualizer, install_new_value): Likewise.
1790 (varobj_update, new_variable, free_variable): Likewise.
1791 (my_value_of_variable, value_get_print_value): Likewise.
1792 (install_visualizer): Change the type of parameter 'var' to
1793 'struct varobjd_dynamic *'. Callers update.
1794 * varobj.h (struct varobj): Moved from varobj.c.
1795 (struct varobj) <dynamic>: New field.
1796
1797 2013-10-13 Sandra Loosemore <sandra@codesourcery.com>
1798
1799 * nios2-tdep.c (nios2_reg_names): Use "sstatus" rather than "ba"
1800 as the preferred name of r30.
1801 * nios2-linux-tdep.c (reg_offsets): Likewise.
1802 * features/nios2-cpu.xml: Likewise.
1803 * features/nios2-linux.c: Regenerated.
1804 * features/nios2.c: Regenerated.
1805 * regformats/nios2-linux.dat: Regenerated.
1806
1807 2013-10-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1808
1809 Canonicalize directories for EXEC_FILENAME.
1810 * exec.c (exec_file_attach): Use gdb_realpath_keepfile for
1811 exec_filename.
1812 * utils.c (gdb_realpath_keepfile): New function.
1813 * utils.h (gdb_realpath_keepfile): New declaration.
1814
1815 2013-10-11 Doug Evans <dje@google.com>
1816
1817 * Makefile.in (GDBFLAGS): New variable.
1818 (run): New rule.
1819
1820 2013-10-11 Joel Brobecker <brobecker@adacore.com>
1821
1822 * NEWS: Add entry documenting the new "-catch-assert" and
1823 "-catch-exception" GDB/MI commands.
1824
1825 2013-10-11 Joel Brobecker <brobecker@adacore.com>
1826
1827 * breakpoint.h (init_ada_exception_breakpoint): Add parameter
1828 "enabled".
1829 * breakpoint.c (init_ada_exception_breakpoint): Add parameter
1830 "enabled". Set B->ENABLE_STATE accordingly.
1831 * ada-lang.h (ada_exception_catchpoint_kind): Move here from
1832 ada-lang.c.
1833 (create_ada_exception_catchpoint): Add declaration.
1834 * ada-lang.c (ada_exception_catchpoint_kind): Move to ada-lang.h.
1835 (create_ada_exception_catchpoint): Make non-static. Add new
1836 parameter "disabled". Use it in call to
1837 init_ada_exception_breakpoint.
1838 (catch_ada_exception_command): Add parameter "enabled" in call
1839 to create_ada_exception_catchpoint.
1840 (catch_assert_command): Likewise.
1841
1842 * mi/mi-cmds.h (mi_cmd_catch_assert, mi_cmd_catch_exception):
1843 Add declarations.
1844 * mi/mi-cmds.c (mi_cmds): Add the "catch-assert" and
1845 "catch-exception" commands.
1846 * mi/mi-cmd-catch.c: Add #include "ada-lang.h".
1847 (mi_cmd_catch_assert, mi_cmd_catch_exception): New functions.
1848
1849 2013-10-11 Joel Brobecker <brobecker@adacore.com>
1850
1851 * ada-lang.c (enum ada_exception_catchpoint_kind): Renames
1852 "enum exception_catchpoint_kind". Replace the "ex_" prefix
1853 of all its enumerates with "ada_". Update the rest of this
1854 file throughout.
1855
1856 2013-10-11 Joel Brobecker <brobecker@adacore.com>
1857
1858 * ada-lang.c (ada_decode_exception_location): Delete.
1859 (create_ada_exception_catchpoint): Remove arguments "sal",
1860 "addr_string" and "ops". Add argument "ex_kind" instead.
1861 Adjust implementation accordingly, calling ada_exception_sal
1862 to get the entities it no longer gets passed as arguments.
1863 Document the function's arguments.
1864 (catch_ada_exception_command): Use catch_ada_exception_command_split
1865 instead of ada_decode_exception_location, and update call to
1866 create_ada_exception_catchpoint.
1867 (catch_ada_assert_command_split): Renames
1868 ada_decode_assert_location. Remove parameters "addr_string" and
1869 "ops", and now returns void. Adjust implementation accordingly.
1870 Update the function documentation.
1871 (catch_assert_command): Use catch_ada_assert_command_split
1872 instead of ada_decode_assert_location. Update call to
1873 create_ada_exception_catchpoint.
1874
1875 2013-10-11 Joel Brobecker <brobecker@adacore.com>
1876
1877 * utils.h (perror_warning_with_name): Add declaration.
1878 * utils.c (perror_warning_with_name): New function.
1879 * cli/cli-cmds.c (source_script_with_search): Add call to
1880 perror_warning_with_name if from_tty is nul.
1881
1882 2013-10-11 Joel Brobecker <brobecker@adacore.com>
1883
1884 * utils.c (perror_string): New function, extracted out of
1885 throw_perror_with_name.
1886 (throw_perror_with_name): Rework to use perror_string.
1887
1888 2013-10-11 Yao Qi <yao@codesourcery.com>
1889
1890 * remote.c (discard_pending_stop_replies_in_queue): Update
1891 declaration.
1892 (struct stop_reply) <rs>: New field.
1893 (remove_stop_reply_of_remote_state): New function.
1894 (discard_pending_stop_replies_in_queue): Add parameter 'rs'.
1895 Callers update. Pass remove_stop_reply_of_remote_state to
1896 QUEUE_iterate.
1897 (remote_parse_stop_reply): Initialize field 'rs'.
1898
1899 2013-10-10 Will Newton <will.newton@linaro.org>
1900
1901 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
1902 linux_init_abi.
1903
1904 2013-10-10 Joel Brobecker <brobecker@adacore.com>
1905
1906 * cli/cli-cmds.c (show_baud_rate): Moved to serial.c as
1907 serial_baud_show_cmd.
1908 (_initialize_cli_cmds): Delete the code creating the
1909 "set/show remotebaud" commands.
1910 * serial.c (baud_rate): Move here from top.c.
1911 (serial_baud_show_cmd): Move here from cli/cli-cmds.c.
1912 (_initialize_serial): Create "set/show serial baud" commands.
1913 Add "set/show remotebaud" command aliases.
1914 * top.c (baud_rate): Moved to serial.c.
1915 * NEWS: Document the new "set/show serial baud" commands,
1916 replacing "set/show remotebaud".
1917
1918 2013-10-09 Pedro Alves <palves@redhat.com>
1919
1920 * breakpoint.c (insert_bp_location): Use memory_error_message to
1921 build the memory error string.
1922 * c-lang.c: Include "gdbcore.h".
1923 (c_get_string): Use memory_error to throw error.
1924 (target_xfer_memory_error): Delete.
1925 (memory_error_message): New, factored out from
1926 target_xfer_memory_error.
1927 (memory_error): Change parameter type to target_xfer_error.
1928 Rewrite.
1929 (read_memory): Use memory_error instead of
1930 target_xfer_memory_error.
1931 * gdbcore.h: Include "target.h".
1932 (memory_error): Change parameter type to target_xfer_error.
1933 (memory_error_message): Declare function.
1934 * target.c (target_read_memory, target_read_stack)
1935 (target_write_memory, target_write_raw_memory): Return
1936 TARGET_XFER_E_IO on error. Adjust comments.
1937 (get_target_memory): Pass TARGET_XFER_E_IO to memory_error,
1938 instead of EIO.
1939 * target.h (target_read, target_insert_breakpoint)
1940 (target_remove_breakpoint): Adjust comments.
1941 * valprint.c (partial_memory_read): Rename parameter, and adjust
1942 comment.
1943 (val_print_string): Use memory_error_message to build the memory
1944 error string.
1945
1946 2013-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
1947
1948 * common/filestuff.c (gdb_fopen_cloexec): Remove initialization of
1949 result variable. Rename variable fopen_e_ever_failed to
1950 fopen_e_ever_failed_einval. Retry fopen only for errno EINVAL.
1951
1952 2013-10-09 Pedro Alves <palves@redhat.com>
1953
1954 * monitor.c (monitor_write_memory, monitor_write_memory_bytes)
1955 (monitor_write_memory_longlongs, monitor_write_memory_block):
1956 Constify 'myaddr' parameter.
1957 (monitor_xfer_memory): Adjust interface as monitor_xfer_partial
1958 helper.
1959 (monitor_xfer_partial): New function.
1960 (init_base_monitor_ops): Don't install a deprecated_xfer_memory
1961 hook. Install a to_xfer_partial hook.
1962
1963 2013-10-09 Tom Tromey <tromey@redhat.com>
1964
1965 * dwarf2read.c (dwarf2_get_dwz_file): Update for type change in
1966 bfd_get_alt_debug_link_info.
1967
1968 2013-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
1969
1970 New flag OBJF_NOT_FILENAME.
1971 * auto-load.c (auto_load_objfile_script): Check also OBJF_NOT_FILENAME.
1972 * jit.c (jit_object_close_impl): Use OBJF_NOT_FILENAME for
1973 allocate_objfile.
1974 (jit_bfd_try_read_symtab): Use OBJF_NOT_FILENAME for
1975 symbol_file_add_from_bfd.
1976 * jv-lang.c (get_dynamics_objfile): Use OBJF_NOT_FILENAME for
1977 allocate_objfile.
1978 * objfiles.c (allocate_objfile): Assert OBJF_NOT_FILENAME if NAME is
1979 NULL.
1980 * objfiles.h (OBJF_NOT_FILENAME): New.
1981
1982 2013-10-08 Tom Tromey <tromey@redhat.com>
1983
1984 * Makefile.in (SFILES): Add build-id.c.
1985 (HFILES_NO_SRCDIR): Add build-id.h.
1986 * build-id.c: New file, largely from elfread.c. Modified
1987 most functions.
1988 * build-id.h: New file.
1989 * dwarf2read.c (dwarf2_get_dwz_file): Update for change to
1990 bfd_get_alt_debug_link_info. Verify dwz file's build-id.
1991 Search for dwz file using build-id.
1992 * elfread.c (build_id_bfd_get, build_id_verify)
1993 (build_id_to_debug_filename, find_separate_debug_file): Remove.
1994
1995 2013-10-08 Joel Brobecker <brobecker@adacore.com>
1996
1997 * ada-lang.c (compare_names_with_case): Renamed from
1998 compare_names, adding a new parameter "casing" and its handling.
1999 New function documentation.
2000 (compare_names): New function, implemented using
2001 compare_names_with_case.
2002
2003 2013-10-08 Joel Brobecker <brobecker@adacore.com>
2004
2005 * ada-lang.c (ada_exception_sal): Remove advance declaration.
2006
2007 2013-10-07 Tom Tromey <tromey@redhat.com>
2008
2009 * objfiles.c (free_objfile_per_bfd_storage): Delete the
2010 demangled_names_hash.
2011 (free_objfile): Don't delete the demangled_names_hash.
2012 * objfiles.h (struct objfile_per_bfd_storage)
2013 <demangled_names_hash>: New field.
2014 (struct objfile) <demangled_names_hash>: Move to
2015 objfile_per_bfd_storage.
2016 * symfile.c (reread_symbols): Don't delete the
2017 demangled_names_hash.
2018 * symtab.c (create_demangled_names_hash): Update.
2019 (symbol_set_names): Update.
2020
2021 2013-10-07 Tom Tromey <tromey@redhat.com>
2022
2023 * gdb_bfd.c (struct gdb_bfd_data) <relocation_computed,
2024 needs_relocations>: New fields.
2025 (gdb_bfd_requires_relocations): New function.
2026 * gdb_bfd.h (gdb_bfd_requires_relocations): Declare.
2027 * objfiles.c (get_objfile_bfd_data): Disallow sharing if
2028 the BFD needs relocations applied.
2029
2030 2013-10-07 Pedro Alves <palves@redhat.com>
2031
2032 PR breakpoints/11568
2033 * breakpoint.c (remove_threaded_breakpoints): Say "no longer in
2034 the thread list" instead of "gone".
2035
2036 2013-10-06 Sergio Durigan Junior <sergiodj@redhat.com>
2037
2038 * NEWS: Mention new convenience variable $_exitsignal.
2039 * corelow.c (core_open): Reset exit convenience variables. Set
2040 $_exitsignal to the uncaught signal which generated the corefile.
2041 * infrun.c (handle_inferior_event): Reset exit convenience
2042 variables. Set $_exitsignal for TARGET_WAITKIND_SIGNALLED.
2043 (clear_exit_convenience_vars): New function.
2044 * inferior.h (clear_exit_convenience_vars): New prototype.
2045
2046 2013-10-06 Yao Qi <yao@codesourcery.com>
2047
2048 * varobj.h: Add comments to enum varobj_languages.
2049
2050 2013-10-04 Doug Evans <dje@google.com>
2051
2052 Add support for DWP file format version 2.
2053 * NEWS: Mention support for DWP file format version 2.
2054 * dwarf2read.c (dwarf2_section_info): Convert asection field to a
2055 union of asection, containing_section. New fields virtual_offset
2056 and is_virtual. Change type of readin filed from int to char.
2057 (dwo_sections, dwo_file): Tweak comments.
2058 (dwp_v2_section_ids): New enum.
2059 (dwp_sections): New fields abbrev, info, line, loc, macinfo, macro,
2060 str_offsets, types.
2061 (virtual_v1_dwo_sections): Renamed from virtual_dwo_sections.
2062 All uses updated.
2063 (virtual_v2_dwo_sections): New struct.
2064 (dwp_hash_table): New fields version, nr_columns. Change type of
2065 section_pool field to a union.
2066 (dwp_file): New field version.
2067 (dwarf2_has_info): Check for virtual sections.
2068 (get_containing_section): New function.
2069 (get_section_bfd_owner, get_section_bfd_section): Call it.
2070 (dwarf2_locate_sections): Update.
2071 (dwarf2_section_empty_p): Update.
2072 (dwarf2_read_section): Handle virtual sections.
2073 (locate_dwz_sections): Update.
2074 (create_dwp_hash_table): Document and handle V2 format.
2075 (locate_v1_virtual_dwo_sections): Renamed from
2076 locate_virtual_dwo_sections and update. All callers updated.
2077 (create_dwo_unit_in_dwp_v1): Renamed from create_dwo_in_dwp.
2078 Delete arg htab. Rename arg section_index to unit_index.
2079 All callers updated.
2080 (MAX_NR_V1_DWO_SECTIONS): Renamed from MAX_NR_DWO_SECTIONS.
2081 All uses updated.
2082 (create_dwp_v2_section, create_dwo_unit_in_dwp_v2): New functions.
2083 (lookup_dwo_unit_in_dwp): Add V2 support.
2084 (dwarf2_locate_dwo_sections): Update.
2085 (dwarf2_locate_common_dwp_sections): Renamed from
2086 dwarf2_locate_dwp_sections and update. All callers updated.
2087 (dwarf2_locate_v2_dwp_sections): New function.
2088 (open_and_init_dwp_file): Add V2 support.
2089 (read_str_index): New locals str_section, str_offsets_section.
2090
2091 2013-10-04 Pedro Alves <palves@redhat.com>
2092
2093 * common/ptid.c (null_ptid, minus_one_ptid, ptid_build)
2094 (pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid)
2095 (ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p): Replace
2096 describing comments with references to ptid.h.
2097 * common/ptid.h: Remove intro description of constructors,
2098 accessors and predicates.
2099 (struct ptid): Reformat.
2100 (minus_one_ptid, ptid_build, pid_to_ptid, ptid_get_pid)
2101 (ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid): Change
2102 describing comments.
2103
2104 2013-10-04 Joel Brobecker <brobecker@adacore.com>
2105
2106 * aix-thread.c (sync_threadlists): Add missing ')' in call
2107 to ptid_build.
2108
2109 2013-10-04 Joel Brobecker <brobecker@adacore.com>
2110
2111 * procfs.c (procfs_init_inferior): Fix typo causing the build
2112 to fail.
2113
2114 2013-10-04 Joel Brobecker <brobecker@adacore.com>
2115
2116 * aix-thread.c (ptrace32): Remove cast to addr_ptr.
2117
2118 2013-10-04 Joel Brobecker <brobecker@adacore.com>
2119
2120 * mi/mi-main.c (run_one_inferior): Add function description.
2121 Make ARG a pointer to an integer whose value determines whether
2122 we should "run" or "start" the program.
2123 (mi_cmd_exec_run): Add handling of the "--start" option.
2124 Reject all other command-line options.
2125 * NEWS: Add entry for "-exec-run"'s new "--start" option.
2126
2127 2013-10-04 Yao Qi <yao@codesourcery.com>
2128
2129 * remote-notif.h (REMOTE_NOTIF_ID): New enum.
2130 (struct notif_client) <pending_event>: Moved
2131 to struct remote_notif_state.
2132 <id>: New field.
2133 (struct remote_notif_state) <pending_event>: New field.
2134 (notif_event_xfree): Declare.
2135 * remote-notif.c (handle_notification): Adjust.
2136 (notif_event_xfree): New function.
2137 (do_notif_event_xfree): Call notif_event_xfree.
2138 (remote_notif_state_xfree): Call notif_event_xfree to free
2139 each element in field pending_event.
2140 * remote.c (discard_pending_stop_replies): Remove declaration.
2141 (discard_pending_stop_replies_in_queue): Declare.
2142 (remote_close): Call discard_pending_stop_replies_in_queue
2143 instead of discard_pending_stop_replies.
2144 (remote_start_remote): Adjust.
2145 (stop_reply_xfree): Call notif_event_xfree.
2146 (notif_client_stop): Adjust initialization.
2147 (remote_notif_remove_all): Rename it to ...
2148 (remove_stop_reply_for_inferior): ... this. Update comments.
2149 Don't check INF is NULL.
2150 (discard_pending_stop_replies): Return early if notif_state is
2151 NULL. Adjust. Don't check INF is NULL.
2152 (remote_notif_get_pending_events): Adjust.
2153 (discard_pending_stop_replies_in_queue): New function.
2154 (remote_wait_ns): Likewise.
2155
2156 2013-10-04 Yao Qi <yao@codesourcery.com>
2157
2158 * remote-notif.c (DECLARE_QUEUE_P): Remove.
2159 (notif_queue): Remove.
2160 (remote_notif_process): Add one parameter 'notif_queue'.
2161 Update comments. Callers update.
2162 (remote_async_get_pending_events_token): Remove.
2163 (remote_notif_register_async_event_handler): Remove.
2164 (remote_notif_unregister_async_event_handler): Remove.
2165 (handle_notification): Add parameter 'notif_queue'. Update
2166 comments. Callers update.
2167 (notif_xfree): Remove.
2168 (remote_notif_state_allocate): New function.
2169 (remote_notif_state_xfree): New function.
2170 (_initialize_notif): Remove code to allocate queue.
2171 * remote-notif.h (DECLARE_QUEUE_P): Moved from remote-notif.c.
2172 (struct remote_notif_state): New.
2173 (handle_notification): Update declaration.
2174 (remote_notif_process): Likewise.
2175 (remote_notif_register_async_event_handler): Remove.
2176 (remote_notif_unregister_async_event_handler): Remove.
2177 (remote_notif_state_allocate): Declare.
2178 (remote_notif_state_xfree): Declare.
2179 * remote.c (struct remote_state) <notif_state>: New field.
2180 (remote_close): Don't call
2181 remote_notif_unregister_async_event_handler. Call
2182 remote_notif_state_xfree.
2183 (remote_open_1): Don't call
2184 remote_notif_register_async_event_handler. Call
2185 remote_notif_state_allocate.
2186
2187 2013-10-04 Yao Qi <yao@codesourcery.com>
2188
2189 * varobj.c (create_child_with_value): Remove 'const' from the
2190 type of parameter 'name'.
2191 (varobj_add_child): Likewise.
2192 (install_dynamic_child): Remove 'const' from the type of
2193 parameter 'name'.
2194 (varobj_add_child): Likewise.
2195 (create_child_with_value): Likewise. Update comments. Don't
2196 duplicate 'name'.
2197 (update_dynamic_varobj_children): Duplicate 'name'
2198 and pass it to install_dynamic_child.
2199
2200 2013-10-03 Phil Muldoon <pmuldoon@redhat.com>
2201
2202 * python/py-value.c (convert_value_from_python): Move PyInt_Check
2203 conversion logic to occur after PyLong_Check. Comment on order
2204 change significance.
2205 * python/py-arch.c (archpy_disassemble): Comment on order of
2206 conversion for integers and longs.
2207
2208 2013-10-03 Pedro Alves <palves@redhat.com>
2209
2210 * common/linux-ptrace.c (linux_check_ptrace_features): Factor out
2211 the PTRACE_O_TRACESYSGOOD and PTRACE_O_TRACEFORK to separate
2212 functions. Always test for PTRACE_O_TRACESYSGOOD even if
2213 PTRACE_O_TRACEFORK is not supported.
2214 (linux_test_for_tracesysgood): New function.
2215 (linux_test_for_tracefork): New function, factored out from
2216 linux_check_ptrace_features, and also don't kill child_pid here.
2217
2218 2013-10-03 Tristan Gingold <gingold@adacore.com>
2219
2220 * i386-darwin-nat.c (i386_darwin_dr_set): Fix argument type.
2221 Remove verbose error reporting. Use detected state to
2222 thread_set_state call.
2223 (i386_darwin_dr_get): Fix return type. Remove verbose error
2224 report.
2225 Remove trailing spaces.
2226
2227 2013-10-02 Pedro Alves <palves@redhat.com>
2228
2229 * cp-valprint.c (cp_print_value_fields): Adjust calls to
2230 val_print_optimized_out.
2231 * jv-valprint.c (java_print_value_fields): Likewise.
2232 * p-valprint.c (pascal_object_print_value_fields): Likewise.
2233 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full)
2234 <DWARF_VALUE_REGISTER>: If the register was not saved, return a
2235 new optimized out value.
2236 * findvar.c (address_from_register): Likewise.
2237 * frame.c (put_frame_register): Tweak error string to say the
2238 register was not saved, rather than optimized out.
2239 * infcmd.c (default_print_one_register_info): Adjust call to
2240 val_print_optimized_out. Use value_of_register instead of
2241 get_frame_register_value.
2242 * mi/mi-main.c (output_register): Use value_of_register instead of
2243 get_frame_register_value.
2244 * valprint.c (valprint_check_validity): Likewise.
2245 (val_print_optimized_out): New value parameter. If the value is
2246 lval_register, print <not saved> instead.
2247 (value_check_printable, val_print_scalar_formatted): Adjust calls
2248 to val_print_optimized_out.
2249 * valprint.h (val_print_optimized_out): New value parameter.
2250 * value.c (struct value) <optimized_out>: Extend comment.
2251 (error_value_optimized_out): New function.
2252 (require_not_optimized_out): Use it. Use a different string for
2253 lval_register values.
2254 * value.h (error_value_optimized_out): New declaration.
2255 * NEWS: Mention <not saved>.
2256
2257 2013-10-02 Joel Brobecker <brobecker@adacore.com>
2258
2259 * symtab.c (compare_search_syms): Use FILENAME_CMP instead of
2260 strcmp to compare two symtab filenames.
2261
2262 2013-10-02 Joel Brobecker <brobecker@adacore.com>
2263
2264 * symtab.c (search_symbols_equal): Delete.
2265 (sort_search_symbols_remove_dups): Replace call to
2266 search_symbols_equal by call to compare_search_syms,
2267 adjusting as necessary.
2268
2269 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
2270
2271 PR python/15579
2272 * python/python.c: Document gdb.execute command in Python help.
2273
2274 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
2275
2276 * python/py-frame.c (frame_info_to_frame_object): Use
2277 gdbpy_convert_exception. Clean up Python object on failure.
2278
2279 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
2280
2281 * python/lib/gdb/command/frame_filters.py
2282 (InfoFrameFilter.list_frame_filters): Retrieve exception manually.
2283 (ShowFrameFilterPriority.invoke): Ditto.
2284
2285 2013-10-01 Keith Seitz <keiths@redhat.com>
2286
2287 * linespec.c (struct ls_parser): Make 'saved_arg' const.
2288 (parse_linespec): Make 'argptr' const.
2289 Remove temporary cast of 'argptr' to const char **.
2290 (decode_line_full): Pass const pointer to parse_linespec.
2291 (decode_line_1): Likewise.
2292 (decode_objc): Make local variable 'new_argptr' const.
2293 (find_function_symbols): Remove temporary cast to char *
2294 to find_imps.
2295 * objc-lang.c (find_imps): Make argument 'method' const.
2296 Return const.
2297 * objc-lang.h (find_imps): Likewise.
2298
2299 2013-10-01 Keith Seitz <keiths@redhat.com>
2300
2301 * completer.c (skip_quoted_chars): Make all arguments const.
2302 Return const.
2303 (skip_quoted): Likewise.
2304 * completer.h (skip_quoted_chars): Likewise.
2305 (skip_quoted): Likewise.
2306 * defs.h (skip_quoted): Remove duplicate declaration.
2307 * jv-exp.y: Include completer.h.
2308 (yylex): Remove unneccessary cast to char * fro skip_quoted.
2309 * p-exp.y: Include completer.h.
2310
2311 2013-10-01 Keith Seitz <keiths@redhat.com>
2312
2313 * c-exp.y (parse_number): Make first argument const.
2314 Make a copy of the input to manipulate.
2315 (c_parse_escape): Make first argument const.
2316 Make local variable 'tokptr' const.
2317 (parse_string_or_char): Make first two arguments const.
2318 (macro_original_text): Make const.
2319 (lex_one_token): Make local variable 'tokstart' const.
2320 Likewise for local variables named 'p'.
2321 Cast away const for struct stoken (temporary).
2322 * c-lang.h (c_parse_escpae): Make first argument const.
2323 * cli/cli-cmds.c (echo_command): Make local variable 'p'
2324 const.
2325 * cli/cli-setshow.c (do_set_command): Likewise for 'p' in
2326 var_string case.
2327 * f-exp.y (parse_number): Make first argument const.
2328 (match_string_literal): Make local variable 'tokstart'
2329 const.
2330 (yylex): Make local variable 'p' const.
2331 Cast away const for struct stoken (temporary).
2332 * go-exp.y (parse_number): Make first argument const.
2333 (parse_string_or_char): Likewise.
2334 Make local variable 'tokstart' const.
2335 (lex_one_token): Likewise for numerous locals called 'p'.
2336 Cast away const for struct stoken (temporary).
2337 * jv-exp.y (parse_number): Make first argument const.
2338 Make local variables 'tokstart' and 'tokptr' const.
2339 Cast away const for call to skip_quoted (temporary).
2340 (yylex): Make local variable 'p' const.
2341 Cast away const for struct stoken (temporary).
2342 * m2-exp.y (parse_number): Make local variable 'p' const.
2343 (yylex): Likewise for 'tokstart'.
2344 Cast away const for struct stoken (temporary).
2345 Make local variable 'p' const.
2346 * macroexp.c (get_character_constant): Pass a const string
2347 to c_parse_escape.
2348 (get_string_literal): Likewise.
2349 (macro_expand_next): Make first argument const.
2350 Cast away const for init_shared_buffer.
2351 * macroexp.h (macro_expand_next): Make first argument const.
2352 * p-exp.y (yylex): Make a local copy of 'lexptr'.
2353 Pass a const string to c_parse_escape.
2354 Make local variables 'p' and 'namestart' const.
2355 * parse.c (lexptr): Make const.
2356 (prev_lexptr): Likewise.
2357 (find_template_name_end): Return const.
2358 Make argument const, too.
2359 (parse_exp_in_context): Make first argument const.
2360 Remove the entire const_hack.
2361 (parse_exp_in_context_1): Make first argument const.
2362 * parser-defs.h (find_template_name_end): Return const.
2363 Make argument const, too.
2364 (lexptr): Make const.
2365 (prev_lexptr): Likewise.
2366 * utils.c (parse_escape): Make second argument const.
2367 * utils.h (parse_escape): Likewise.
2368
2369 2013-10-01 Keith Seitz <keiths@redhat.com>
2370
2371 * ada-exp.y (write_object_renaming): Update: struct stoken.ptr
2372 is now const.
2373 (block_lookup): Make 'raw_name' and 'name' const.
2374 * ada-lex.l (processString): Update for struct stoken.ptr.
2375 * c-exp.y (qualified_name : TYPENAME COLONCOLON '~' name): Likewise.
2376 (operator_stoken): Likewise.
2377 (lex_one_token): Remove temporary cast to char * for
2378 'yylval.sval.ptr'.
2379 * f-exp.y (yylex): Likewise.
2380 * gdb-types.c (lookup_struct_elt_type): Make argument 'name' const.
2381 * gdbtypes.h (lookup_struct_elt_type): Likewisee.
2382 * go-exp.y (lex_one_token): Remove temporary cast to char * for
2383 'yylval.sval.ptr'.
2384 * jv-exp.y (QualifiedName): Update for struct stoken.ptr.
2385 (yylex): Remove temporary cast to char * for 'yylval.sval.ptr'.
2386 * linespec.c (struct ls_parser): Make 'stream' const.
2387 (find_parameter_list_end): Make argument 'input' and local
2388 variable 'p' const.
2389 (linespec_lexer_lex_string): Make local variables 'start' and
2390 'p' const.
2391 Use skip_spaces_const instead of skip_spaces.
2392 (linespec_lexer_peek_token): Make local variable 'saved_stream'
2393 const.
2394 (parse_linespec): Temporarily cast 'argptr' to const for
2395 'parser->lexer.stream'.
2396 * m2-exp.y (yylex): Remove temporary cast to char * for
2397 'yylval.sval.ptr'.
2398 * objc-lang.c (add_msglist): Make local variable 'p' const.
2399 * p-exp.y (exp : exp '['): Update for struct stoken.ptr.
2400 (exp : STRING): Make 'sp' const.
2401 (parse_number): Make argument 'p' const.
2402 * parser-defs.h (struct stoken): Make 'ptr' const.
2403
2404 2013-10-01 Doug Evans <dje@google.com>
2405
2406 * cli/cli-decode.c: Remove unnecessary inclusion of tui/tui.h.
2407
2408 2013-10-01 Yao Qi <yao@codesourcery.com>
2409
2410 * varobj.c (c_value_of_root): Remove declaration.
2411 (cplus_value_of_root, java_value_of_root): Likewise.
2412 (ada_value_of_root): Likewise.
2413 (struct language_specific) <value_of_root>: Remove.
2414 (languages): Update initialization.
2415 (check_scope): Move earlier.
2416 (c_value_of_root): Move earlier and rename to ...
2417 (value_of_root_1): ... this.
2418 (value_of_root): Caller update.
2419 (cplus_value_of_root, java_value_of_root): Remove.
2420 (ada_value_of_root): Remove.
2421
2422 2013-10-01 Yao Qi <yao@codesourcery.com>
2423
2424 * varobj.c (varobj_format_string): Remove "unknown".
2425 (languages): Remove the first element.
2426 * varobj.h (enum varobj_languages): Remove vlang_c.
2427
2428 2013-10-01 Yao Qi <yao@codesourcery.com>
2429
2430 * varobj.c (struct language_specific) <language>: Remove.
2431 (languages): Update the initialization.
2432
2433 2013-10-01 Yao Qi <yao@codesourcery.com>
2434
2435 * arm-wince-tdep.c: Remove inclusion of "solib.h" and
2436 "solib-target.h". Include "windows-tdep.h".
2437 (arm_wince_init_abi): Call windows_init_abi. Remove call to
2438 set_solib_ops and set_gdbarch_has_dos_based_file_system.
2439 * configure.tgt (arm*-wince-pe | arm*-*-mingw32ce*): Append
2440 windows-tdep.o to gdb_target_obs.
2441
2442 2013-10-01 Yao Qi <yao@codesourcery.com>
2443
2444 * amd64-windows-tdep.c: Remove inclusion of "solib.h" and
2445 "solib-target.h".
2446 (amd64_windows_init_abi): Don't call set_solib_ops and
2447 set_gdbarch_iterate_over_objfiles_in_search_order. Call
2448 windows_init_abi instead.
2449 * i386-cygwin-tdep.c: Remove inclusion of "solib.h" and
2450 "solib-target.h".
2451 (i386_cygwin_init_abi): Don't call set_solib_ops,
2452 set_gdbarch_has_dos_based_file_system and
2453 set_gdbarch_iterate_over_objfiles_in_search_order. Call
2454 windows_init_abi instead.
2455 * windows-tdep.c: Include "solib.h" and "solib-target.h".
2456 (windows_init_abi): New function.
2457 (windows_iterate_over_objfiles_in_search_order): Make it
2458 static.
2459 * windows-tdep.h (windows_init_abi): Declare.
2460 (windows_iterate_over_objfiles_in_search_order): Remove
2461 declaration.
2462
2463 2013-10-01 Jerome Guitton <guitton@adacore.com>
2464
2465 Checked in by Joel Brobecker <brobecker@adacore.com>
2466 * system-gdbinit/elinos.py (get_elinos_environment): Return an
2467 incomplete dictionnary instead of None in case of missing
2468 environment variables.
2469 (elinos_init): in case of an incomplete environment, best
2470 effort to load system libraries instead of abort.
2471
2472 2013-10-01 Joel Brobecker <brobecker@adacore.com>
2473
2474 * ada-lang.c (ada_has_this_exception_support): Ignore
2475 mst_solib_trampoline minimal symbols.
2476
2477 2013-09-30 Tristan Gingold <gingold@adacore.com>
2478
2479 * i386-darwin-nat.c (darwin_complete_target): Install methods for
2480 hardware watchpoint.
2481 (i386_darwin_dr_set): Support 32 and 64 bit states.
2482 (i386_darwin_dr_get): Likewise.
2483 (i386_darwin_dr_set_control): Make static.
2484 (i386_darwin_dr_set_addr, i386_darwin_dr_get_addr)
2485 (i386_darwin_dr_get_status, i386_darwin_dr_get_control): Likewise.
2486
2487 2013-09-30 Luis Machado <lgustavo@codesourcery.com>
2488
2489 * aarch64-linux-nat.c: Replace PIDGET with ptid_get_pid.
2490 Replace TIDGET with ptid_get_lwp.
2491 Replace GET_LWP with ptid_get_lwp.
2492 * aix-thread.c (BUILD_THREAD, BUILD_LWP): Remove.
2493 Replace BUILD_THREAD with ptid_build.
2494 Replace BUILD_LWP with ptid_build.
2495 Replace PIDGET with ptid_get_pid.
2496 Replace TIDGET with ptid_get_lwp.
2497 * alphabsd-nat.c: Replace PIDGET with ptid_get_pid.
2498 * amd64-linux-nat.c: Replace PIDGET with ptid_get_pid.
2499 Replace TIDGET with ptid_get_lwp.
2500 * amd64bsd-nat.c: Replace PIDGET with ptid_get_pid.
2501 * arm-linux-nat.c: Replace PIDGET with ptid_get_pid.
2502 Replace TIDGET with ptid_get_lwp.
2503 Replace GET_LWP with ptid_get_lwp.
2504 * armnbsd-nat.c: Replace PIDGET with ptid_get_pid.
2505 * auxv.c: Likewise.
2506 * breakpoint.c: Likewise.
2507 * common/ptid.c (ptid_is_pid): Condense check for
2508 null_ptid and minus_one_ptid.
2509 (ptid_lwp_p): New function.
2510 (ptid_tid_p): New function.
2511 * common/ptid.h: Update comments for accessors.
2512 (ptid_lwp_p): New prototype.
2513 (ptid_tid_p): New prototype.
2514 * defs.h (PIDGET, TIDGET, MERGEPID): Do not define.
2515 * gcore.c: Replace PIDGET with ptid_get_pid.
2516 * gdbthread.h: Likewise.
2517 * gnu-nat.c: Likewise.
2518 * hppa-linux-nat.c: Replace PIDGET with ptid_get_pid.
2519 Replace TIDGET with ptid_get_lwp.
2520 * hppabsd-nat.c: Replace PIDGET with ptid_get_pid.
2521 * hppanbsd-nat.c: Likewise.
2522 * i386-linux-nat.c: Replace PIDGET with ptid_get_pid.
2523 Replace TIDGET with ptid_get_lwp.
2524 * i386bsd-nat.c: Replace PIDGET with ptid_get_pid.
2525 * ia64-linux-nat.c: Replace PIDGET with ptid_get_pid.
2526 * infcmd.c: Likewise.
2527 * inferior.h: Likewise.
2528 * inflow.c: Likewise.
2529 * infrun.c: Likewise.
2530 * linux-fork.c: Likewise.
2531 * linux-nat.c: Replace PIDGET with ptid_get_pid.
2532 Replace GET_PID with ptid_get_pid.
2533 Replace is_lwp with ptid_lwp_p.
2534 Replace GET_LWP with ptid_get_lwp.
2535 Replace BUILD_LWP with ptid_build.
2536
2537 2013-09-28 Mike Frysinger <vapier@gentoo.org>
2538
2539 * common/linux-btrace.c: Move sys/syscall.h out of the
2540 HAVE_LINUX_PERF_EVENT_H check and wrap it in HAVE_SYS_SYSCALL_H.
2541 Also check for SYS_perf_event_open before attempting to buid.
2542
2543 2013-09-27 Doug Evans <dje@google.com>
2544
2545 * dwarf2read.c (dwarf2_section_info): Add comment.
2546 (dwp_file): Split loaded_cutus into loaded_cus, loaded_tus.
2547 All uses updated.
2548 (dwarf2_section_empty_p): Rename arg from "info" to "section".
2549 (dwarf2_read_section): Delete unused local "header". Add section
2550 name to error message.
2551 (create_dwo_in_dwp): Tweak comment.
2552 (MAX_NR_DWO_SECTIONS): Combine count of .debug_macro + .debug_macinfo.
2553
2554 * dwarf2read.c (die_reader_specs): Tweak comment.
2555 (get_section_bfd_owner, get_section_bfd_section): New functions.
2556 (get_section_name, get_section_file_name): New functions.
2557 (get_section_id, get_section_flags): New functions.
2558 (*): Use new functions to access section fields.
2559
2560 * dwarf2read.c (struct dwo_file): Add/tweak comments.
2561 (lookup_dwo_unit_in_dwp): Renamed from lookup_dwo_in_dwp. Remove
2562 arg "htab". All callers updated.
2563 (create_debug_types_hash_table): Remove redundant copy of
2564 abbrev_section.
2565 (create_dwo_in_dwp): Tweak comments.
2566 (read_str_index): Tweak comment. Record dwarf form name in static
2567 local.
2568
2569 2013-09-27 Pedro Alves <palves@redhat.com>
2570
2571 * remote.h (REMOTE_SYSROOT_PREFIX): New define.
2572 (remote_filename_p): Add comment.
2573 * remote.c (remote_filename_p): Adjust to use
2574 REMOTE_SYSROOT_PREFIX.
2575 * solib.c (solib_find): When deciding whether we need to add a
2576 directory separator, check whether the sysroot is "remote:"
2577 instead of checking whether the patch has a drive spec. Add
2578 comments.
2579
2580 2013-09-27 Pedro Alves <palves@redhat.com>
2581
2582 * remote.c (struct stop_reply) <solibs_changed, replay_event>:
2583 Delete fields.
2584 (remote_parse_stop_reply): Adjust, setting event->ws.kind
2585 directly.
2586
2587 2013-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
2588
2589 Fix set debug frame output.
2590 * frame.c (fprint_frame_type): Add TAILCALL_FRAME entry. Move
2591 SENTINEL_FRAME entry lower to match enum frame_type order.
2592
2593 2013-09-26 Pierre Muller <muller@sourceware.org>
2594
2595 Replace constant values 8 to 15 by AMD64_R8_REGNUM to
2596 AMD64_R15_REGNUM when a register index is expected.
2597 * amd64-windows-tdep.c (amd64_windows_dummy_call_integer_regs):
2598 Substitute in array.
2599 * amd64-tdep.c (amd64_dwarf_regmap): Ditto.
2600 (amd64_push_arguments): Substitute in integer_regnum array.
2601
2602 2013-09-25 Doug Evans <dje@google.com>
2603
2604 * objfiles.c (allocate_objfile): Move comment to better place.
2605
2606 New option "set debug symfile on".
2607 * NEWS: Mention "set debug symfile".
2608 * Makefile.in (SFILES): Add symfile-debug.c.
2609 (COMMON_OBS): Add symfile-debug.o.
2610 * elfread.c (elf_symfile_read): Use objfile_set_sym_fns to set the
2611 objfile's symbol functions.
2612 * objfiles.h (objfile_set_sym_fns): Declare.
2613 * symfile-debug.c: New file.
2614 * symfile.c (syms_from_objfile_1): Use objfile_set_sym_fns to set the
2615 objfile's symbol functions.
2616 (reread_symbols): Ditto.
2617
2618 * symfile.h (struct sym_fns): Delete member "sym_flavour".
2619 All uses updated.
2620 (add_symtab_fns): Update prototype.
2621 * symfile.c (sym_fns_ptr): Delete. Replace with ...
2622 (registered_sym_fns): ... this.
2623 (symtab_fns): Update.
2624 (add_symtab_fns): New arg "flavour". All callers updated.
2625 (find_sym_fns): Rewrite to use new sym_fns registry.
2626
2627 * symfile.h (struct sym_fns): Add "objfile" argument to
2628 sym_read_linetable. All uses updated.
2629
2630 * symtab.c (domain_name, search_domain_name): New functions.
2631 * symtab.h (domain_name, search_domain_name): Declare.
2632
2633 * symfile.h (struct quick_symbol_functions): Reorg arg list of
2634 map_matching_symbols so objfile is first. All uses updated.
2635 * dwarf2read.c (dw2_map_matching_symbols): Update signature.
2636 * psymtab.c (map_matching_symbols_psymtab): Update signature.
2637
2638 2013-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
2639
2640 PR shlibs/8882
2641 * solib-svr4.c (svr4_read_so_list): Skip the vDSO when reading
2642 link map entries.
2643
2644 2013-09-24 Doug Evans <dje@google.com>
2645
2646 * objfiles.c (free_objfile): Move comment.
2647
2648 2013-09-24 Joel Brobecker <brobecker@adacore.com>
2649
2650 * ada-exp.y (string_to_operator): Delete.
2651 (dummy_string_to_ada_operator): Delete.
2652
2653 2013-09-24 Joel Brobecker <brobecker@adacore.com>
2654
2655 Revert:
2656 * i386-tdep.h (enum amd64_reg_class): New, moved here from
2657 amd64-tdep.c.
2658 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
2659 call_dummy_integer_regs, and classify.
2660 * amd64-tdep.h (amd64_classify): Add declaration.
2661 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
2662 (amd64_reg_class): Delete, moved to i386-tdep.h.
2663 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
2664 Replace call to amd64_classify by call to tdep->classify.
2665 (amd64_push_arguments): Get the list of registers to use for
2666 passing integer parameters from the gdbarch tdep structure,
2667 rather than using a hardcoded one. Replace calls to amd64_classify
2668 by calls to tdep->classify.
2669 (amd64_push_dummy_call): Get the register number used for
2670 the "hidden" argument from tdep->call_dummy_integer_regs.
2671 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
2672 and tdep->call_dummy_integer_regs. Set tdep->classify.
2673
2674 2013-09-24 Joel Brobecker <brobecker@adacore.com>
2675
2676 Revert:
2677 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
2678 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
2679 where tdep->memory_args_by_pointer is non-zero.
2680
2681 2013-09-24 Joel Brobecker <brobecker@adacore.com>
2682
2683 Revert:
2684 * i386-tdep.h (struct gdbarch_tdep): Add new field
2685 integer_param_regs_saved_in_caller_frame.
2686 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
2687 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
2688
2689 2013-09-24 Joel Brobecker <brobecker@adacore.com>
2690
2691 * amd64-windows-tdep.c: #include "value.h"
2692 (amd64_windows_classify): Delete.
2693 (amd64_windows_passed_by_integer_register)
2694 (amd64_windows_passed_by_xmm_register)
2695 (amd64_windows_passed_by_pointer)
2696 (amd64_windows_adjust_args_passed_by_pointer)
2697 (amd64_windows_store_arg_in_reg, amd64_windows_push_arguments)
2698 (amd64_windows_push_dummy_call): New functions.
2699 (amd64_windows_init_abi): Remove setting of
2700 tdep->call_dummy_num_integer_regs, tdep->call_dummy_integer_regs,
2701 tdep->classify, tdep->memory_args_by_pointer and
2702 tdep->integer_param_regs_saved_in_caller_frame.
2703 Add call to set_gdbarch_push_dummy_call.
2704
2705 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2706
2707 * dwarf2read.c (open_and_init_dwp_file): Try open_dwp_file also with
2708 objfile->original_name.
2709
2710 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2711
2712 Pass down original filename for objfile.
2713 * coffread.c (coff_symfile_read): Update symbol_file_add_separate call.
2714 * elfread.c (elf_symfile_read): Likewise.
2715 * jit.c (jit_object_close_impl): Update allocate_objfile call, no
2716 longer set ORIGINAL_NAME.
2717 (jit_bfd_try_read_symtab): Update symbol_file_add_from_bfd call.
2718 * jv-lang.c (get_dynamics_objfile): Update allocate_objfile call.
2719 * machoread.c (macho_add_oso_symfile): Add parameter name. Update
2720 symbol_file_add_from_bfd call.
2721 (macho_symfile_read_all_oso): Update two macho_add_oso_symfile calls.
2722 (macho_check_dsym): Add parameter filenamep. Change function comment.
2723 Set *filenamep.
2724 (macho_symfile_read): New variable dsym_filename. Update
2725 macho_check_dsym call. Use it for symbol_file_add_separate.
2726 * objfiles.c (allocate_objfile): Add parameter name. New comment for
2727 it. Use it for objfile->original_name.
2728 (objfile_name): Return OBFD's filename, if available.
2729 * objfiles.h (allocate_objfile): Add new parameter name.
2730 * solib.c (solib_read_symbols): Update symbol_file_add_from_bfd call.
2731 * symfile-mem.c (symbol_file_add_from_memory): Update
2732 symbol_file_add_from_bfd call.
2733 * symfile.c (read_symbols): Update symbol_file_add_separate call, new
2734 comment for it.
2735 (symbol_file_add_with_addrs): New parameter name, add function comment
2736 for it. Remove variable name. Update allocate_objfile call.
2737 (symbol_file_add_separate): New parameter name, add function comment
2738 for it. Update symbol_file_add_with_addrs call.
2739 (symbol_file_add_from_bfd): New parameter name. Update
2740 symbol_file_add_with_addrs call.
2741 (symbol_file_add): Update symbol_file_add_from_bfd call.
2742 (reread_symbols): New variable original_name. Save
2743 objfile->original_name by it.
2744 * symfile.h (symbol_file_add_from_bfd, symbol_file_add_separate): Add
2745 second parameter.
2746
2747 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2748
2749 Code cleanup: Add objfile_name accessor function.
2750 * ada-lang.c (is_known_support_routine): Use objfile_name.
2751 * auto-load.c (source_gdb_script_for_objfile)
2752 (auto_load_objfile_script): Likewise.
2753 * coffread.c (coff_symtab_read, read_one_sym): Likewise.
2754 * dbxread.c (dbx_symfile_read): Likewise.
2755 * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
2756 * dwarf2loc.c (locexpr_describe_location_piece): Likewise.
2757 * dwarf2read.c (dwarf2_get_dwz_file, dwarf2_read_index)
2758 (dw2_symtab_iter_next, dw2_expand_symtabs_matching)
2759 (lookup_dwp_signatured_type, lookup_dwo_unit)
2760 (dwarf2_build_psymtabs_hard, scan_partial_symbols, process_queue)
2761 (fixup_go_packaging, process_imported_unit_die, dwarf2_physname)
2762 (read_import_statement, create_dwo_cu, open_and_init_dwp_file)
2763 (lookup_dwo_cutu, read_call_site_scope, dwarf2_ranges_read)
2764 (dwarf2_record_block_ranges, read_common_block, read_typedef)
2765 (read_subrange_type, load_partial_dies, read_partial_die)
2766 (read_addr_index_1, read_str_index, dwarf_decode_lines_1)
2767 (die_containing_type, build_error_marker_type, lookup_die_type)
2768 (follow_die_ref_or_sig, follow_die_ref, dwarf2_fetch_die_loc_sect_off)
2769 (dwarf2_fetch_constant_bytes, follow_die_sig, get_signatured_type)
2770 (get_DW_AT_signature_type, write_psymtabs_to_index)
2771 (save_gdb_index_command): Likewise.
2772 * elfread.c (find_separate_debug_file_by_buildid, elf_symfile_read):
2773 Likewise.
2774 * expprint.c (dump_subexp_body_standard): Likewise.
2775 * gdbtypes.c (type_name_no_tag_or_error): Likewise.
2776 * jit.c (jit_object_close_impl): Use the objfile field name renamed to
2777 original_name.
2778 * linux-thread-db.c (try_thread_db_load_from_pdir_1): New variable
2779 obj_name, use objfile_name for it, use the variable.
2780 (try_thread_db_load_from_pdir, has_libpthread, thread_db_new_objfile):
2781 Use objfile_name.
2782 * machoread.c (macho_symtab_read, macho_check_dsym)
2783 (macho_symfile_relocate): Likewise.
2784 * maint.c (maintenance_translate_address): Likewise.
2785 * minidebug.c (find_separate_debug_file_in_section): Likewise.
2786 * minsyms.c (install_minimal_symbols): Likewise.
2787 * objfiles.c (allocate_objfile): Use the objfile field name renamed to
2788 original_name.
2789 (filter_overlapping_sections): Use objfile_name.
2790 (objfile_name): New function.
2791 * objfiles.h (struct objfile): Rename field name to original_name.
2792 (objfile_name): New prototype.
2793 * printcmd.c (sym_info, address_info): Use objfile_name.
2794 * probe.c (parse_probes, collect_probes, compare_probes)
2795 (info_probes_for_ops): Likewise.
2796 * progspace.c (clone_program_space): Likewise.
2797 * psymtab.c (require_partial_symbols, dump_psymtab, allocate_psymtab)
2798 (maintenance_info_psymtabs): Likewise.
2799 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
2800 (source_section_scripts): Likewise.
2801 * python/py-objfile.c (objfpy_get_filename): Likewise.
2802 * python/py-progspace.c (pspy_get_filename): Likewise.
2803 * solib-aix.c (solib_aix_get_toc_value): Likewise.
2804 * solib-som.c (match_main, som_solib_section_offsets): Likewise.
2805 * solib.c (solib_read_symbols): Likewise.
2806 * stabsread.c (scan_file_globals): Likewise.
2807 * stap-probe.c (handle_stap_probe): Likewise.
2808 * symfile.c (symbol_file_clear, separate_debug_file_exists)
2809 (find_separate_debug_file_by_debuglink): Likewise.
2810 (reread_symbols): Likewise. Use the objfile field name renamed to
2811 original_name.
2812 (allocate_symtab): Use objfile_name.
2813 * symmisc.c (print_symbol_bcache_statistics, print_objfile_statistics)
2814 (dump_objfile, dump_msymbols, dump_symtab_1)
2815 (maintenance_print_msymbols, maintenance_print_objfiles)
2816 (maintenance_info_symtabs, maintenance_check_symtabs): Likewise.
2817 * target.c (target_translate_tls_address, target_info): Likewise.
2818 * xcoffread.c (xcoff_initial_scan): Make variable name const. Use
2819 objfile_name.
2820
2821 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2822
2823 Code cleanup.
2824 * probe.c (parse_probes): Rename variable objfile_name to
2825 objfile_namestr.
2826
2827 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2828
2829 Remove solib-sunos.c.
2830 * Makefile.in (ALLDEPFILES): Remove solib-sunos.c.
2831 * config/m68k/obsd.mh (NATDEPFILES): Remove solib-sunos.o.
2832 * objfiles.c (rt_common_objfile): Remove.
2833 (free_objfile): Remove rt_common_objfile comparison.
2834 * objfiles.h (rt_common_objfile): Remove.
2835 * solib-sunos.c: Remove.
2836 * symfile.c (reread_symbols): Remove solib-sunos.c comment.
2837
2838 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2839
2840 Remove a.out NetBSD and OpenBSD hosts.
2841 * NEWS (Removed native configurations): New.
2842 * config/arm/nbsdaout.mh: Remove.
2843 * config/i386/nbsdaout.mh: Remove.
2844 * config/i386/obsdaout.mh: Remove.
2845 * config/m68k/nbsdaout.mh: Remove.
2846 * config/sparc/nbsdaout.mh: Remove.
2847 * config/vax/nbsdaout.mh: Remove.
2848 * configure.host (arm*-*-netbsd*, i[34567]86-*-netbsd*)
2849 (i[34567]86-*-openbsd[0-2].*, i[34567]86-*-openbsd3.[0-3])
2850 (m68*-*-netbsd*, sparc-*-netbsd*, vax-*-netbsd*): Add them to obsolete
2851 error.
2852 (arm*-*-netbsd*, i[34567]86-*-netbsd*, i[34567]86-*-openbsd[0-2].*)
2853 (i[34567]86-*-openbsd3.[0-3], m68*-*-netbsd*, sparc-*-netbsdaout*)
2854 (sparc-*-netbsd*, vax-*-netbsd*): Remove.
2855
2856 2013-09-23 Tom Tromey <tromey@redhat.com>
2857
2858 * linespec.c (struct minsym_and_objfile): Remove.
2859 (minsym_and_objfile_d): Remove.
2860 (struct linespec, struct collect_info, linespec_parse_basic)
2861 (convert_linespec_to_sals, linespec_parser_delete, decode_objc)
2862 (compare_msymbols, find_method, find_function_symbols)
2863 (find_linespec_symbols, struct collect_minsyms, compare_msyms)
2864 (add_minsym, search_minsyms_for_name): Update.
2865
2866 2013-09-23 Andrew Burgess <aburgess@broadcom.com>
2867
2868 * regcache.c: Add include of valprint.h.
2869 (dump_endian_bytes): Delete.
2870 (regcache_dump): Use print_hex_chars not dump_endian_bytes.
2871
2872 2013-09-23 Andrew Burgess <aburgess@broadcom.com>
2873
2874 * sh64-tdep.c (sh64_do_fp_register): Use print_hex_chars.
2875
2876 2013-09-19 Pedro Alves <palves@redhat.com>
2877
2878 * breakpoint.c (remove_threaded_breakpoints): Skip non-user
2879 breakpoints.
2880
2881 2013-09-19 Pedro Alves <palves@redhat.com>
2882 Thomas Schwinge <thomas@codesourcery.com>
2883 Yue Lu <hacklu.newborn@gmail.com>
2884
2885 * gnu-nat.c (gnu_read_inferior, gnu_write_inferior): Make static.
2886 Take a gdb_byte pointer instead of a char pointer.
2887
2888 * gnu-nat.c (gnu_xfer_memory): Adjust interface as
2889 gnu_xfer_partial helper.
2890 (gnu_xfer_partial): New function.
2891 (gnu_target): Don't install a deprecated_xfer_memory hook.
2892 Install a to_xfer_partial hook.
2893
2894 2013-09-19 Jan Kratochvil <jan.kratochvil@redhat.com>
2895
2896 Constification.
2897 * main.c (captured_main): Replace catch_command_errors by
2898 catch_command_errors_const. Twice.
2899 * symfile.c (symbol_file_add_main_1): Make args parameter const.
2900 (symbol_file_add): Make name parameter const.
2901 (symbol_file_add_main, symbol_file_add_main_1): Make args parameter const.
2902 (symfile_bfd_open): Make name parameter const, rename it to cname. Add
2903 variable name. Change their usage accordingly.
2904 * symfile.h (symbol_file_add, symfile_bfd_open): Make first parameter
2905 const.
2906 (symbol_file_add_main): Make args parameter const.
2907
2908 2013-09-18 Raunaq Bathija <raunaq12@in.ibm.com>
2909 Ulrich Weigand <uweigand@de.ibm.com>
2910
2911 * xcoffread.c (struct coff_symbol): Use CORE_ADDR as type
2912 of c_value member.
2913 (read_xcoff_symtab): Use CORE_ADDR as type of fcn_start_addr.
2914
2915 2013-09-18 Pedro Alves <palves@redhat.com>
2916 Yue Lu <hacklu.newborn@gmail.com>
2917
2918 * gnu-nat.c (inf_validate_procs, gnu_wait, gnu_resume)
2919 (gnu_create_inferior)
2920 (gnu_attach, gnu_thread_alive, gnu_pid_to_str, cur_thread)
2921 (set_sig_thread_cmd): Use the lwpid field of ptids to
2922 store/extract thread ids instead of the tid field.
2923 * i386gnu-nat.c (gnu_fetch_registers): Adjust.
2924
2925 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
2926
2927 * infcmd.c (default_print_one_register_info): Add detection of
2928 optimized out values.
2929 (default_print_registers_info): Switch to using
2930 get_frame_register_value.
2931
2932 2013-09-18 Markus Metzger <markus.t.metzger@intel.com>
2933
2934 * infrun.c (handle_inferior_event): Check if we know the
2935 function start address before setting a resume breakpoint.
2936
2937 2013-09-18 Pedro Alves <palves@redhat.com>
2938
2939 * gnu-nat.c (set_sig_thread_cmd): Compare the thread's ptid to
2940 minus_one_ptid instead of looking at the ptid's tid field and
2941 comparing that to -1.
2942
2943 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
2944
2945 * main.h (get_gdb_program_name): Remove extra whitespace.
2946
2947 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
2948
2949 * main.h (get_gdb_program_name): Add declaration.
2950 * main.c (get_gdb_program_name): Add definition.
2951
2952 2013-09-17 Doug Evans <dje@google.com>
2953
2954 * dwarf2read.c: Move definitions of complaint functions to after
2955 forward declarations of local functions.
2956
2957 2013-09-17 Muhammad Waqas <mwaqas@codesourcery.com>
2958 Pedro Alves <palves@redhat.com>
2959
2960 PR gdb/11568
2961 * breakpoint.c (remove_threaded_breakpoints): New function.
2962 (_initialize_breakpoint): Attach remove_threaded_breakpoints
2963 as thread_exit observer.
2964
2965 2013-09-17 Pedro Alves <palves@redhat.com>
2966
2967 PR gdb/15911
2968 * ada-tasks.c (task_command_1): Adjust call to print_stack_frame.
2969 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
2970 * corelow.c (core_open):
2971 * frame.h (print_stack_frame, print_frame_info): New
2972 'set_current_sal' parameter.
2973 * infcmd.c (finish_command, kill_command): Adjust call to
2974 print_stack_frame.
2975 * inferior.c (inferior_command): Likewise.
2976 * infrun.c (normal_stop): Likewise.
2977 * linux-fork.c (linux_fork_context): Likewise.
2978 * record-full.c (record_full_goto_entry, record_full_restore):
2979 Likewise.
2980 * remote-mips.c (common_open): Likewise.
2981 * stack.c (print_stack_frame): New 'set_current_sal' parameter.
2982 Use it.
2983 (print_frame_info): New 'set_current_sal' parameter. Set the last
2984 displayed sal depending on the new paremeter instead of looking at
2985 print_what.
2986 (backtrace_command_1, select_and_print_frame, frame_command)
2987 (current_frame_command, up_command, down_command): Adjust call to
2988 print_stack_frame.
2989 * thread.c (print_thread_info, restore_selected_frame)
2990 (do_captured_thread_select): Adjust call to print_stack_frame.
2991 * tracepoint.c (tfind_1): Likewise.
2992 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
2993 (mi_cmd_stack_info_frame): Likewise.
2994 * mi/mi-interp.c (mi_on_normal_stop): Likewise.
2995 * mi/mi-main.c (mi_cmd_exec_return, mi_cmd_trace_find): Likewise.
2996
2997 2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
2998
2999 * value.c (isvoid_internal_fn): Replace "parameter" with
3000 "argument".
3001
3002 2013-09-16 Stan Shebs <stan@codesourcery.com>
3003
3004 * README: Update references to writing code for GDB.
3005 * configure.ac (build_warnings): Remove obsolete comment.
3006 * configure: Regenerate.
3007 * gdbarch.sh: Remove references to gdbint.texinfo.
3008 * gdbarch.h: Regenerate.
3009 * gdbtypes.c (objfile_type): Remove comments referencing internals
3010 manual and D10V.
3011
3012 2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
3013
3014 * NEWS: Mention new convenience function $_isvoid.
3015 * value.c (isvoid_internal_fn): New function.
3016 (_initialize_values): Add new convenience function $_isvoid.
3017
3018 2013-09-16 Pierre Muller <muller@sourceware.org>
3019
3020 * arm-linux-tdep.c: Add "elf/common.h" header.
3021 Remove AT_HWCAP macro definintion as it is provided in
3022 added include file.
3023 * s390-tdep.c: Remove system header <elf.h>
3024 Add "elf/common.h" header for AT_HWCAP definition.
3025 (s390_core_read_description): Use correct CORE_ADDR
3026 for hwcap local variable used as third parameter
3027 of function target_auxv_search.
3028
3029 2013-09-14 Pierre Muller <muller@sourceware.org>
3030 Tom Tromey <tromey@redhat.com>
3031 Pedro Alves <palves@redhat.com>
3032
3033 * common/filestuff.c (gdb_fopen_cloexec): Do not try to use "e"
3034 mode if operating system doesn't know O_CLOEXEC.
3035
3036 2013-09-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3037
3038 Code cleanup.
3039 * symfile.c (reread_symbols): Move variable obfd_filename to a more
3040 inner block.
3041
3042 2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
3043
3044 * NEWS: Mention TDB support.
3045 * features/s390-tdb.xml: New file.
3046 * features/s390-te-linux64.xml: New file.
3047 * features/s390x-te-linux64.xml: New file.
3048 * features/Makefile (WHICH): Add new tdescs above.
3049 (s390-te-linux64-expedite): Set.
3050 (s390x-te-linux64-expedite): Set.
3051 * features/s390-te-linux64.c: New file (generated).
3052 * features/s390x-te-linux64.c: New file (generated).
3053 * regformats/s390-te-linux64.dat: New file (generated).
3054 * regformats/s390x-te-linux64.dat: New file (generated).
3055 * s390-tdep.h (HWCAP_S390_HIGH_GPRS): Define.
3056 (HWCAP_S390_TE): Likewise.
3057 (S390_TDB_DWORD0_REGNUM): Likewise.
3058 (S390_TDB_DWORD0_REGNUM): Likewise.
3059 (S390_TDB_ABORT_CODE_REGNUM): Likewise.
3060 (S390_TDB_CONFLICT_TOKEN_REGNUM): Likewise.
3061 (S390_TDB_ATIA_REGNUM): Likewise.
3062 (S390_TDB_R0_REGNUM): Likewise.
3063 (S390_TDB_R1_REGNUM): Likewise.
3064 (S390_TDB_R2_REGNUM): Likewise.
3065 (S390_TDB_R3_REGNUM): Likewise.
3066 (S390_TDB_R4_REGNUM): Likewise.
3067 (S390_TDB_R5_REGNUM): Likewise.
3068 (S390_TDB_R6_REGNUM): Likewise.
3069 (S390_TDB_R7_REGNUM): Likewise.
3070 (S390_TDB_R8_REGNUM): Likewise.
3071 (S390_TDB_R9_REGNUM): Likewise.
3072 (S390_TDB_R10_REGNUM): Likewise.
3073 (S390_TDB_R11_REGNUM): Likewise.
3074 (S390_TDB_R12_REGNUM): Likewise.
3075 (S390_TDB_R13_REGNUM): Likewise.
3076 (S390_TDB_R14_REGNUM): Likewise.
3077 (S390_TDB_R15_REGNUM): Likewise.
3078 (S390_NUM_REGS): Increase.
3079 (S390_IS_TDBREGSET_REGNUM): New macro.
3080 (s390_regmap_tdb): Declare.
3081 (s390_sizeof_tdbregset): Define.
3082 (tdesc_s390_te_linux64): Declare.
3083 (tdesc_s390x_te_linux64): Likewise.
3084 * s390-tdep.c: Add includes for "auxv.h", <elf.h>,
3085 "features/s390-te-linux64.c", and "features/s390x-te-linux64.c".
3086 (s390_regmap_tdb): New regmap.
3087 (s390_supply_tdb_regset): New function.
3088 (s390_tdb_regset): New regset.
3089 (s390_linux64v2_regset_sections): Add TDB regset to list.
3090 (s390x_linux64v2_regset_sections): Likewise.
3091 (s390_regset_from_core_section): Recognize TDB core note section.
3092 (s390_core_read_description): If HWCAP indicates TE support,
3093 select tdesc_s390_te_linux64 or tdesc_s390_s390x_te_linux64.
3094 (s390_gdbarch_init): Handle TDB regset.
3095 (_initialize_s390_tdep): Initialize new tdescs.
3096 * s390-nat.c (HWCAP_S390_HIGH_GPRS): Remove define.
3097 (have_regset_tdb): New variable.
3098 (s390_native_supply): Support register invalidation.
3099 (fetch_regset): Invalidate registers if ptrace yields ENODATA.
3100 (check_regset): Treat ENODATA as "regset exists".
3101 (s390_linux_fetch_inferior_registers): Add TDB.
3102 (s390_read_description): Check for TDB existence and select
3103 appropriate tdesc.
3104 * gdbserver/Makefile.in (clean): Add removal of new makefile
3105 targets.
3106 (s390-te-linux64.c): New makefile target.
3107 (s390x-te-linux64.c): Likewise.
3108 * gdbserver/configure.srv (srv_regobj): Append new objects
3109 s390-te-linux64.o and s390x-te-linux64.o.
3110 (srv_xmlfiles): Append new files s390-te-linux64.xml,
3111 s390x-te-linux64.xml, and s390-tdb.xml.
3112 * gdbserver/linux-s390-low.c (init_registers_s390_te_linux64): New
3113 declaration.
3114 (tdesc_s390_te_linux64): Likewise.
3115 (init_registers_s390x_te_linux64): Likewise.
3116 (tdesc_s390x_te_linux64): Likewise.
3117 (s390_check_regset): Treat ENODATA as "regset exists".
3118 (s390_arch_setup): Add TDB regset support.
3119 (initialize_low_arch): Initialize registers for new tdescs.
3120
3121 2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
3122
3123 * s390-tdep.h (S390_IS_GREGSET_REGNUM): New macro.
3124 (S390_IS_FPREGSET_REGNUM): New macro.
3125 * s390-tdep.c (s390_dwarf_regmap): Make const.
3126 (regnum_is_gpr_full): New function for replacing repeated code.
3127 (s390_pseudo_register_name): Use it.
3128 (s390_pseudo_register_type): Likewise.
3129 (s390_pseudo_register_read): Likewise.
3130 (s390_pseudo_register_write): Likewise.
3131 (s390_unwind_pseudo_register): Likewise.
3132 (s390_regmap_gregset): New format for regmap.
3133 (s390x_regmap_gregset): Likewise.
3134 (s390_regmap_fpregset): Likewise.
3135 (s390_regmap_upper): Likewise.
3136 (s390_regmap_last_break): Likewise.
3137 (s390_regmap_system_call): Likewise.
3138 (s390_supply_regset): Adjust to new regmap format.
3139 (s390_collect_regset): Likewise.
3140 * s390-nat.c (s390_native_supply): Adjust to new regmap format.
3141 (s390_native_collect): Likewise.
3142 (supply_gregset): Likewise.
3143 (fill_gregset): Likewise.
3144 (supply_fpregset): Likewise.
3145 (fill_fpregset): Likewise.
3146 (fetch_regset): Likewise.
3147 (store_regset): Likewise.
3148 (s390_linux_fetch_inferior_registers): Likewise.
3149 (s390_linux_fetch_inferior_registers): Likewise.
3150
3151 2013-09-12 Andrew Pinski <apinski@cavium.com>
3152
3153 * aarch64-linux-nat.c (aarch64_linux_set_debug_regs): Zero out regs.
3154
3155 2013-09-10 Andreas Arnez <arnez@linux.vnet.ibm.com>
3156
3157 * config/s390/s390.mh (NATDEPFILES): Add linux-waitpid.o.
3158
3159 2013-09-09 Andrew Burgess <aburgess@broadcom.com>
3160
3161 * top.c (quit_confirm): Remove use of deprecated_init_ui_hook.
3162
3163 2013-09-06 Pedro Alves <palves@redhat.com>
3164
3165 * remote-sim.c (dump_mem, gdbsim_fetch_register)
3166 (gdbsim_store_register, gdbsim_kill, gdbsim_load)
3167 (gdbsim_create_inferior, gdbsim_open, gdbsim_close)
3168 (gdbsim_detach, gdbsim_resume_inferior, gdbsim_wait)
3169 (gdbsim_files_info, gdbsim_mourn_inferior): Send debug output to
3170 gdb_stdlog.
3171
3172 2013-09-06 Pedro Alves <palves@redhat.com>
3173
3174 * remote-sim.c (dump_mem): Constify buf parameter.
3175 gdbsim_xfer_inferior_memory): Rename to ...
3176 (gdbsim_xfer_memory): ... this. Adjust interface as
3177 target_xfer_partial helper.
3178 (gdbsim_xfer_partial): New function.
3179 (init_gdbsim_ops): Don't install a deprecated_xfer_memory hook.
3180 Install a to_xfer_partial hook. Send output to gdb_stdlog.
3181
3182 2013-09-06 Pedro Alves <palves@redhat.com>
3183
3184 * remote-sim.c (gdbsim_xfer_inferior_memory): Use
3185 host_address_to_string, and send debug output to gdb_stdlog.
3186
3187 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
3188
3189 * Makefile.in (ALL_TARGET_OBS): Add cris-linux-tdep.o.
3190 * configure.tgt: Add cris-linux-tdep.o and linux-tdep.o to
3191 gdb_target_obs for cris target.
3192 * cris-tdep.c (struct gdbarch_tdep): Move to cris-tdep.h.
3193 (cris_gdbarch_init): Move calls to
3194 set_gdbarch_fetch_tls_load_module_address and
3195 set_solib_svr4_fetch_link_map_offsets to cris-linux-tdep.c.
3196 Add call to gdbarch_init_osabi.
3197 * cris-linux-tdep.c: New file.
3198 * cris-tdep.h: New file.
3199
3200 2013-09-06 Andrew Burgess <aburgess@broadcom.com>
3201
3202 * tui/tui-io.c (tui_initialize_io): Remove legacy comment referring
3203 to deprecated_init_ui_hook.
3204
3205 2013-09-06 Andrew Burgess <aburgess@broadcom.com>
3206
3207 * cli/cli-interp.c (_initialize_cli_interp): Add a
3208 command_loop_proc to interp_procs.
3209 * event-top.c (cli_command_loop): Change signature to match
3210 interp_command_loop_ftype.
3211 * event-top.h (cli_command_loop): Same.
3212 * interps.c (interp_new): Require every interpreter to have a
3213 command_loop_proc.
3214 (current_interp_command_loop): Just call the command_loop_proc on
3215 the current interpreter.
3216 * tui/tui-interp.c (_initialize_tui_interp): Add a
3217 command_loop_proc to interp_procs.
3218
3219 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
3220
3221 * cris-tdep.c (cris_gdbarch_init): Add call to
3222 get_gdbarch_fetch_tls_load_module_address.
3223
3224 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
3225
3226 * cris-tdep.c (cris_elf_greg_t): Rename from elf_greg_t.
3227 (cris_elf_gregset_t): Rename from elf_gregset_t.
3228 (crisv32_elf_gregset_t): Adjust.
3229 (cris_supply_gregset, fetch_core_registers): Adjust.
3230
3231 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
3232
3233 * cris-tdep.c (elf_greg_t): Change typedef to unsigned char[4]
3234
3235 2013-09-05 Andrew Burgess <aburgess@broadcom.com>
3236
3237 * defs.h (deprecated_command_loop_hook): Remove, including
3238 references in comments.
3239 * interps.c (current_interp_command_loop): No longer use
3240 deprecated_command_loop_hook.
3241 (clear_interpreter_hooks): Remove deprecated_command_loop_hook
3242 setup.
3243 * top.c (deprecated_command_loop_hook): Remove.
3244
3245 2013-09-05 Pedro Alves <palves@redhat.com>
3246
3247 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): 'dwarf_regnum'
3248 local is now int instead of ULONGEST. Print it with %d
3249 instead of paddress.
3250
3251 2013-09-05 Tristan Gingold <gingold@adacore.com>
3252
3253 * MAINTAINERS: Remove avr maintainership.
3254
3255 2013-09-05 Pedro Alves <palves@redhat.com>
3256
3257 * findvar.c (value_of_register): Rework in terms of
3258 value_of_register_lazy.
3259
3260 2013-09-05 Muhammad Bilal <mbilal@codesourcery.com>
3261
3262 * symfile.c (add_symbol_file_command): Remove trailing
3263 whitespaces and blank line after comment.
3264
3265 2013-09-05 Pedro Alves <palves@redhat.com>
3266
3267 * tui/tui-regs.c (tui_register_format): Don't look at the
3268 register's name here. Return string representing register
3269 value instead of storing it in the data element.
3270 (tui_get_register): Compare register string representations
3271 instead of register value states and contents.
3272
3273 2013-09-05 Pedro Alves <palves@redhat.com>
3274
3275 PR tui/15933
3276 * tui/tui-regs.c (tui_show_registers): Show registers of the
3277 selected frame, not the current frame.
3278
3279 2013-09-05 Ricard Wanderlof <ricardw@axis.com>
3280
3281 * MAINTAINERS (Write After Approval): Add myself to the list.
3282
3283 2013-09-04 Doug Evans <dje@google.com>
3284
3285 * dwarf2read.c (queue_and_load_all_dwo_tus): New function.
3286 (queue_and_load_dwo_tu): New function.
3287 (lookup_dwo_signatured_type): Set per_cu.tu_read.
3288 (maybe_queue_comp_unit): Rename this_cu argument to dependent_cu.
3289 Make dependent_cu optional.
3290 (dw2_do_instantiate_symtab): If we just loaded a CU from a DWO,
3291 and an older .gdb_index is in use, queue and load all its TUs too.
3292
3293 2013-09-04 Jan Kratochvil <jan.kratochvil@redhat.com>
3294
3295 Code cleanup: Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH.
3296 * cli/cli-cmds.c (find_and_open_script): Add OPF_RETURN_REALPATH to
3297 variable search_flags.
3298 * defs.h (OPF_DISABLE_REALPATH): Rename to ...
3299 (OPF_RETURN_REALPATH): ... here.
3300 * dwarf2read.c (try_open_dwop_file): Set OPF_RETURN_REALPATH for flags.
3301 * exec.c (exec_file_attach): Remove OPF_DISABLE_REALPATH from openp
3302 call. Twice.
3303 * nto-tdep.c (nto_find_and_open_solib): Add OPF_RETURN_REALPATH for
3304 openp call.
3305 * solib.c (solib_find): Likewise. Four times.
3306 * source.c (openp): Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH
3307 in the function comment and for the realpath_fptr variable.
3308 (source_full_path_of): Add OPF_RETURN_REALPATH for openp call.
3309 (find_and_open_source): Likewise. Twice.
3310 * symfile.c (symfile_bfd_open): Likewise, also twice.
3311
3312 2013-09-04 Doug Evans <dje@google.com>
3313
3314 * progspace.c (save_current_space_and_thread): Remove unnecessary
3315 call to save_current_inferior.
3316
3317 2013-09-04 Andrew Burgess <aburgess@broadcom.com>
3318
3319 * sh64-tdep.c (sh64_do_register): Return after printing message
3320 about unavailable register contents.
3321
3322 2013-09-04 Muhammad Bilal <mbilal@codesourcery.com>
3323 Pedro Alves <palves@redhat.com>
3324
3325 * symfile.c (add_symbol_file_command): Error out on unknown
3326 option. Handle EXPECTING_SEC_ADDR/EXPECTING_SEC_NAME before '-'
3327 options and collapse into single conditional branch.
3328
3329 2013-09-03 Luis Machado <lgustavo@codesourcery.com>
3330
3331 * inf-child.c (inf_child_follow_fork): New parameter
3332 detach_fork.
3333 * inf-ptrace.c (inf_ptrace_follow_fork): Likewise.
3334 * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
3335 * inferior.h (detach_fork): Remove.
3336 * infrun.c (detach_fork): Adjust comment and make it
3337 static.
3338 (follow_fork): Pass detach_fork parameter to
3339 target_follow_fork.
3340 * linux-nat.c (linux_child_follow_fork): New parameter
3341 detach_fork.
3342 * target.c (target_follow_fork): New parameter detach_fork.
3343 Pass detach_fork as parameter and print its value.
3344 * target.h (struct target_ops) <to_follow_fork>: New int
3345 parameter.
3346 (target_follow_fork): New parameter detach_fork.
3347
3348 2013-09-03 Joel Brobecker <brobecker@adacore.com>
3349
3350 * solib-ia64-hpux.c (ia64_hpux_relocate_section_addresses):
3351 Replace sec->bfd by sec->the_bfd_section->owner.
3352
3353 2013-09-03 Yao Qi <yao@codesourcery.com>
3354
3355 * linux-tdep.c (linux_is_uclinux): New function. Code moved
3356 from linux_has_shared_address_space.
3357 (linux_has_shared_address_space): Call linux_is_uclinux.
3358 * linux-tdep.h (linux_is_uclinux): Declare.
3359 * m68klinux-tdep.c (m68k_linux_get_sigtramp_info): Call
3360 linux_is_uclinux.
3361
3362 2013-09-03 Yao Qi <yao@codesourcery.com>
3363
3364 * config/djgpp/fnchange.lst: Remove entry of
3365 i386-interix-nat.c and i386-interix-tdep.c.
3366 * configure.ac: Remove '*-*-interix*'.
3367 * configure: Re-generated.
3368 * defs.h (enum gdb_osabi): Remove GDB_OSABI_INTERIX.
3369 * i386-cygwin-tdep.c (i386_cygwin_osabi_sniffer): Remove
3370 obsolete comments.
3371 * osabi.c (gdb_osabi_names): Remove "Interix".
3372
3373 2013-09-03 Yao Qi <yao@codesourcery.com>
3374
3375 * arch-utils.c: Fix typo in the comment to gdbarch_update_p.
3376
3377 2013-09-02 Markus Metzger <markus.t.metzger@intel.com>
3378
3379 * record.h (record_print_flag) <record_print_src_line,
3380 record_print_insn_range>: Rename into ...
3381 (record_print_flag) <record_print_src_line,
3382 record_print_insn_range>: ... this. Update all users.
3383
3384 2013-09-02 Pierre Muller <muller@sourceware.org>
3385
3386 * windows-nat.c (windows_xfer_memory): Handle ERROR_PARTIAL_COPY
3387 error code.
3388
3389 2013-09-02 Pierre Muller <muller@sourceware.org>
3390
3391 * windows-nat.c (windows_xfer_memory): Fix compilation failure
3392 by use of plongest function.
3393
3394 2013-09-02 Tristan Gingold <gingold@adacore.com>
3395
3396 * NEWS: Add entry mentioning support for native Windows x64
3397 SEH data.
3398
3399 * amd64-windows-tdep.c: #include "objfiles.h", "frame-unwind.h",
3400 "coff/internal.h", "coff/i386.h", "coff/pe.h" and "libcoff.h".
3401 (struct amd64_windows_frame_cache): New struct.
3402 (amd64_windows_w2gdb_regnum): New global.
3403 (pc_in_range, amd64_windows_frame_decode_epilogue)
3404 (amd64_windows_frame_decode_insns, amd64_windows_find_unwind_info)
3405 (amd64_windows_frame_cache, amd64_windows_frame_prev_register)
3406 (amd64_windows_frame_this_id): New functions.
3407 (amd64_windows_frame_unwind): New static global.
3408 (amd64_windows_skip_prologue): New function.
3409 (amd64_windows_init_abi): Call frame_unwind_prepend_unwinder
3410 with amd64_windows_frame_unwind. Call set_gdbarch_skip_prologue
3411 with amd64_windows_skip_prologue.
3412
3413 2013-08-30 Joel Brobecker <brobecker@adacore.com>
3414
3415 GDB 7.6.1 released.
3416
3417 2013-08-30 Pedro Alves <palves@redhat.com>
3418
3419 * mi/mi-main.c (mi_cmd_trace_find): Use LOC_AND_ADDRESS instead of
3420 SRC_AND_LOC.
3421
3422 2013-08-30 Pedro Alves <palves@redhat.com>
3423
3424 * thread.c (restore_selected_frame): Use SRC_AND_LOC, and change
3425 warning text.
3426
3427 2013-08-30 Pedro Alves <palves@redhat.com>
3428
3429 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
3430 Adjust arguments to print_stack_frame.
3431
3432 2013-08-30 Pedro Alves <palves@redhat.com>
3433
3434 * ada-tasks.c (task_command_1): Write SRC_AND_LOC instead '1'.
3435
3436 2013-08-30 Pedro Alves <palves@redhat.com>
3437
3438 * frame.h (show_and_print_stack_frame): Delete declaration.
3439
3440 2013-08-30 Phil Muldoon <pmuldoon@redhat.com>
3441
3442 PR python/15461
3443 * python/py-arch.c (ARCHPY_REQUIRE_VALID): New macro.
3444 (archpy_name): Check for valid architecture.
3445 (archpy_disassemble): Ditto.
3446
3447 2013-08-29 Joel Brobecker <brobecker@adacore.com>
3448
3449 * rs6000-nat.c (rs6000_ptrace32): Cast "addr" to "uintptr_t"
3450 instead of "long long" in call to ptrace64.
3451
3452 2013-08-29 Andrew Burgess <aburgess@broadcom.com>
3453
3454 * mi/mi-interp.c (mi_command_loop): Change signature to match
3455 interp_command_loop_ftype.
3456 (mi1_command_loop): Remove.
3457 (mi2_command_loop): Remove.
3458 (mi3_command_loop): Remove.
3459 (mi_interpreter_resume): Remove setting of
3460 deprecated_command_loop_hook.
3461 (_initialize_mi_interp): Set mi_command_loop as the command loop
3462 callback.
3463
3464 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
3465
3466 * valops.c (do_search_struct_field): Pass v2 instead of base_type to
3467 value_type.
3468
3469 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
3470
3471 * value.c (allocate_value_contents): Make static.
3472 * value.h (allocate_value_contents): Remove prototype.
3473
3474 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
3475
3476 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use value_at_lazy instead
3477 of assembling value via allocate_value_lazy and attribute setter.
3478 * findvar.c (default_read_var_value): Use value_at_lazy instead of
3479 assembling value via allocate_value_lazy and attribute setter.
3480 * valops.c (do_search_struct_field): Use value_at_lazy instead of
3481 assembling value via allocate_value_lazy and attribute setter.
3482
3483 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
3484
3485 * value.c (value_from_contents_and_address): Replace allocate_value and
3486 memcpy with value_from_contents.
3487
3488 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
3489
3490 * python/py-framefilter.c (py_print_frame): Remove usage of
3491 PyString_AsString. Use python_string_to_host_string instead.
3492 Refactor function to work with a string as a new allocation
3493 instead of a pointer.
3494 (py_print_frame): Ditto.
3495 * python/lib/gdb/frames.py (return_list): Cain iterators together
3496 instead of adding them as a list.
3497 (_sort_list): Call return_list, and remove duplicate code.
3498 (execute_frame_filters): Convert iterator to a list with list().
3499 * python/lib/gdb/command/frame_filters.py
3500 (SetFrameFilterPriority._set_filter_priority): Convert priority
3501 attribute to an integer.
3502 * python/lib/gdb/FrameIterator.py (FrameIterator.next): Define
3503 wrapper function __next__.
3504 * python/lib/gdb/FrameDecorator.py: If basestring not defined,
3505 define as "str".
3506
3507 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
3508
3509 PR python/15752
3510 * python/py-framefilter.c (apply_frame_filter): Check
3511 gdb_python_initialized. Exit if the Python frame-filter code
3512 cannot be initialized.
3513
3514 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
3515
3516 PR cli/15842
3517 * top.c (print_gdb_version): Remove erroneous newline after help
3518 text.
3519
3520 2013-08-29 Yao Qi <yao@codesourcery.com>
3521
3522 * varobj.c (install_dynamic_child): Remove trailing space.
3523 Add one blank line after variable declaration.
3524
3525 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3526
3527 PR gdb/15415
3528 * corefile.c (get_exec_file): Use exec_filename.
3529 * defs.h (OPF_DISABLE_REALPATH): New definition. Add new comment.
3530 * exec.c (exec_close): Free EXEC_FILENAME.
3531 (exec_file_attach): New variable canonical_pathname. Use
3532 OPF_DISABLE_REALPATH. Call gdb_realpath explicitly. Set
3533 EXEC_FILENAME.
3534 * exec.h (exec_filename): New.
3535 * inferior.c (print_inferior, inferior_command): Use
3536 PSPACE_EXEC_FILENAME.
3537 * mi/mi-main.c (print_one_inferior): Likewise.
3538 * progspace.c (clone_program_space, print_program_space): Likewise.
3539 * progspace.h (struct program_space): New field pspace_exec_filename.
3540 * source.c (openp): Describe OPF_DISABLE_REALPATH. New variable
3541 realpath_fptr, initialize it from OPF_DISABLE_REALPATH, use it.
3542
3543 2013-08-28 Will Newton <will.newton@linaro.org>
3544
3545 * common/linux-ptrace.c: Include stdint.h unconditionally.
3546
3547 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3548
3549 Code cleanup.
3550 * nto-tdep.c (nto_find_and_open_solib): Use OPF_TRY_CWD_FIRST.
3551
3552 2013-08-28 Yao Qi <yao@codesourcery.com>
3553 Pedro Alves <palves@redhat.com>
3554
3555 * event-top.c (gdb_setup_readline): Call stderr_fileopen
3556 instead of stdio_fileopen.
3557 * main.c (captured_main) [__MINGW32__]: Set stderr unbuffered.
3558 .Call stderr_fileopen instead of stdio_fileopen.
3559 * ui-file.c [__MINGW32__] (stderr_file_write): New function.
3560 [__MINGW32__] (stderr_file_fputs): New function.
3561 (stderr_fileopen): New function.
3562 * ui-file.h (stderr_fileopen): Declare.
3563
3564 2013-08-27 Doug Evans <dje@google.com>
3565
3566 * dwarf2read.c (struct dwarf2_cu): Tweak comment.
3567 (struct dwarf2_per_cu_data): Ditto.
3568 (maybe_queue_comp_unit): Delete forward decl. Add comment.
3569 (process_imported_unit_die): Ditto.
3570 (follow_die_sig_1): Simplify assert.
3571
3572 2013-08-27 Pedro Alves <palves@redhat.com>
3573
3574 * windows-nat.c (windows_xfer_memory): Adjust prototype to follow
3575 xfer_partial's interface. Return TARGET_XFER_E_IO on error.
3576 (windows_xfer_partial): Defer TARGET_OBJECT_MEMORY handling to
3577 windows_xfer_memory directly.
3578 (init_windows_ops): Don't install a deprecated_xfer_memory method.
3579
3580 2013-08-27 Pedro Alves <palves@redhat.com>
3581
3582 * darwin-nat.c (darwin_xfer_memory): Delete.
3583 (_initialize_darwin_inferior): Don't install a
3584 deprecated_xfer_memory method.
3585
3586 2013-08-27 Pedro Alves <pedro@codesourcery.com>
3587 Yao Qi <yao@codesourcery.com>
3588
3589 * mi/mi-cmd-stack.c (list_args_or_locals): Adjust prototype.
3590 (parse_no_frames_option): Remove.
3591 (mi_cmd_stack_list_locals): Handle --skip-unavailable.
3592 (mi_cmd_stack_list_args): Adjust.
3593 (mi_cmd_stack_list_variables): Handle --skip-unavailable.
3594 (list_arg_or_local): Add new parameter 'skip_unavailable'. Return
3595 early if SKIP_UNAVAILABLE is true and ARG->val is unavailable.
3596 Caller update.
3597 (list_args_or_locals): New parameter 'skip_unavailable'.
3598 Handle it.
3599 * valprint.c (scalar_type_p): Rename to ...
3600 (val_print_scalar_type_p): ... this. Make extern.
3601 (val_print, value_check_printable): Adjust.
3602 * valprint.h (val_print_scalar_type_p): Declare.
3603 * value.c (value_entirely_unavailable): New function.
3604 * value.h (value_entirely_unavailable): Declare.
3605
3606 * NEWS: Mention the new option "--skip-unavailable" to MI
3607 commands '-stack-list-locals', '-stack-list-arguments' and
3608 '-stack-list-variables'.
3609
3610 2013-08-27 Yao Qi <yao@codesourcery.com>
3611
3612 * mi/mi-cmd-stack.c (parse_no_frames_option): Remove.
3613 (mi_cmd_stack_list_args): Use mi_getopt_silent to handle
3614 options.
3615 * mi/mi-getopt.c (mi_getopt): Remove.
3616 (mi_getopt_1): Renamed from mi_getopt. Add one parameter
3617 'error_on_unknown'.
3618 (mi_getopt): Call mi_getopt_1.
3619 (mi_getopt_silent): New.
3620 * mi/mi-getopt.h (mi_getopt_silent): Declare.
3621
3622 2013-08-26 Doug Evans <dje@google.com>
3623
3624 PR symtab/15885
3625 * dwarf2read.c (dw2_dump): Print some minimal information indicating
3626 .gdb_index is in use.
3627 * symfile.c (reread_symbols): Reset objfile->sf.
3628
3629 * NEWS: Document "mt print objfiles" now takes optional regexp.
3630 * symmisc.c (maintenance_print_objfiles): Argument is now an optional
3631 regexp of objfiles to print.
3632 (_initialize_symmisc): Update doc string for "mt print objfiles".
3633
3634 * dwarf2read.c (write_psymtabs_to_index): Move error checks ahead of
3635 missing debug info checks.
3636
3637 2013-08-26 Raunaq Bathija <raunaq12@in.ibm.com>
3638 Ulrich Weigand <uweigand@de.ibm.com>
3639
3640 * xcoffread.c (arrange_linetable): Add fix to correctly handle
3641 line tables generated by XLC compiled binaries.
3642
3643 2013-08-23 Doug Evans <dje@google.com>
3644
3645 * symmisc.c (dump_symtab): Delete prototype.
3646 (dump_msymbols, dump_objfile): Ditto.
3647 (maintenance_info_symtabs): Mark as dont_repeat.
3648 (_initialize_symmisc): Improve doc string for "mt info symtabs".
3649
3650 * elfread.c (elf_symfile_read): Move "Done reading minimal symbols"
3651 debugging printf to better location.
3652
3653 2013-08-23 Pedro Alves <palves@redhat.com>
3654
3655 * target.c (target_read_live_memory): Change type of 'ret' local
3656 to LONGEST.
3657
3658 2013-08-23 Pedro Alves <palves@redhat.com>
3659
3660 * remote.c (remote_write_bytes_aux, remote_write_bytes)
3661 (remote_read_bytes): Change return type to LONGEST, and adjust to
3662 return a target_xfer_error on error.
3663 (remote_xfer_memory): Delete.
3664 (remote_flash_write): Change type of 'ret' local to LONGEST.
3665 (remote_xfer_partial, remote_xfer_partial): Adjust.
3666 (init_remote_ops): Don't install a deprecated_xfer_memory hook.
3667
3668 2013-08-23 Pierre Muller <muller@sourceware.org>
3669
3670 ARI fix: Push # directives to start of line.
3671 * rs6000-nat.c (rs6000_ptrace32, rs6000_ptrace64): Rule applied.
3672
3673 2013-08-12 Muhammad Waqas <mwaqas@codesourcery.com>
3674
3675 PR gdb/15501
3676 * breakpoint.c (enable_command, disable_command): Iterate over
3677 all specified breakpoint locations.
3678
3679 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
3680
3681 * common/linux-ptrace.c (linux_fork_to_function): Push #
3682 directives to the start of the line.
3683 (linux_check_ptrace_features): Fix warning message to use
3684 the "_" markup.
3685
3686 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
3687
3688 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-nat.h and
3689 nat/linux-waitpid.h.
3690 (linux-waitpid.o): New object file rule.
3691 * common/linux-ptrace.c: Include nat/linux-waitpid.h.
3692 (current_ptrace_options): Moved from linux-nat.c.
3693 (linux_ptrace_test_ret_to_nx): Use type casts for ptrace
3694 parameters.
3695 (linux_fork_to_function): New function.
3696 (linux_grandchild_function): Likewise.
3697 (linux_child_function): Likewise.
3698 (linux_check_ptrace_features): New function, heavily
3699 based on linux-nat.c:linux_test_for_tracefork.
3700 (linux_enable_event_reporting): New function.
3701 (ptrace_supports_feature): Likewise.
3702 (linux_supports_tracefork): Likewise.
3703 (linux_supports_traceclone): Likewise.
3704 (linux_supports_tracevforkdone): Likewise.
3705 (linux_supports_tracesysgood): Likewise.
3706 * common/linux-ptrace.h (HAS_NOMMU): Moved from
3707 gdbserver/linux-low.c.
3708 (linux_enable_event_reporting): New declaration.
3709 (linux_supports_tracefork): Likewise.
3710 (linux_supports_traceclone): Likewise.
3711 (linux_supports_tracevforkdone): Likewise.
3712 (linux_supports_tracesysgood): Likewise.
3713 * config.in (PTRACE_TYPE_ARG4): Regenerate.
3714 * config/aarch64/linux.mh (NATDEPFILES): Add linux-waitpid.o.
3715 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
3716 * config/arm/linux.mh (NATDEPFILES): Likewise.
3717 * config/i386/linux.mh (NATDEPFILES): Likewise.
3718 * config/i386/linux64.mh (NATDEPFILES): Likewise.
3719 * config/ia64/linux.mh (NATDEPFILES): Likewise.
3720 * config/m32r/linux.mh (NATDEPFILES): Likewise.
3721 * config/m68k/linux.mh (NATDEPFILES): Likewise.
3722 * config/mips/linux.mh (NATDEPFILES): Likewise.
3723 * config/pa/linux.mh (NATDEPFILES): Likewise..
3724 * config/powerpc/linux.mh (NATDEPFILES): Likewise..
3725 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
3726 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
3727 * config/sparc/linux.mh (NATDEPFILES): Likewise.
3728 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
3729 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
3730 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
3731 * configure.ac (AC_CACHE_CHECK): Add void * to the list of
3732 ptrace's 4th argument's types.
3733 Check the type of PTRACE_TYPE_ARG4.
3734 * configure: Regenerate.
3735 * linux-nat.c: Include nat/linux-nat.h and nat/linux-waitpid.h.
3736 (SYSCALL_SIGTRAP): Moved to nat/linux-nat.h.
3737 (linux_supports_tracefork_flag): Remove.
3738 (linux_supports_tracesysgood_flag): Likewise.
3739 (linux_supports_tracevforkdone_flag): Likewise.
3740 (current_ptrace_options): Moved to
3741 common/linux-ptrace.c.
3742 (linux_tracefork_child): Remove.
3743 (my_waitpid): Remove.
3744 (linux_test_for_tracefork): Renamed to
3745 linux_check_ptrace_features and moved to common/linux-ptrace.c.
3746 (linux_test_for_tracesysgood): Remove.
3747 (linux_supports_tracesysgood): Remove.
3748 (linux_supports_tracefork): Remove.
3749 (linux_supports_tracevforkdone): Remove.
3750 (linux_enable_tracesysgood): Remove.
3751 (linux_enable_event_reporting): Remove.
3752 (linux_init_ptrace): New function.
3753 (linux_child_post_attach): Call linux_init_ptrace.
3754 (linux_child_post_startup_inferior): Call linux_init_ptrace.
3755 (linux_child_follow_fork): Call linux_supports_tracefork
3756 and linux_supports_tracevforkdone.
3757 (linux_child_insert_fork_catchpoint): Call
3758 linux_supports_tracefork.
3759 (linux_child_insert_vfork_catchpoint): Likewise.
3760 (linux_child_set_syscall_catchpoint): Call
3761 linux_supports_tracesysgood.
3762 (lin_lwp_attach_lwp): Call linux_supports_tracefork.
3763 * nat/linux-nat.h: New file.
3764 * nat/linux-waitpid.c: New file.
3765 * nat/linux-waitpid.h: New file.
3766
3767 2013-08-22 Samuel Bronson <naesten@gmail.com>
3768
3769 ARM Linux support for `catch syscall'.
3770 * syscalls/arm-linux.py: New file.
3771 * syscalls/arm-linux.xml: Likewise.
3772 * arm-linux-tdep.c (arm_linux_get_syscall_number): New function.
3773 (arm_linux_init_abi): Register the new function and syscall xml file.
3774 * data-directory/Makefile.in: Install the new syscall xml file.
3775 * NEWS: Brag about this.
3776
3777 2013-08-22 Pedro Alves <palves@redhat.com>
3778
3779 PR gdb/15871
3780 * corefile.c (target_xfer_memory_error): New function.
3781 (memory_error): Defer EIO to target_memory_error.
3782 (read_memory): Use target_xfer_partial, and handle finer-grained
3783 target xfer errors.
3784 * target.c (target_xfer_error_to_string): New function.
3785 (memory_xfer_partial_1): If memory is known to be
3786 unavailable, return TARGET_XFER_E_UNAVAILABLE instead of -1.
3787 (target_xfer_partial): Make extern.
3788 * target.h (enum target_xfer_error): New enum.
3789 (target_xfer_error_to_string): Declare function.
3790 (target_xfer_partial): Declare function.
3791 (struct target_ops) <xfer_partial>: Adjust describing comment.
3792
3793 2013-08-22 Alan Modra <amodra@gmail.com>
3794
3795 * configure.host: Support powerpc64le-linux and powerpcle-linux hosts.
3796 * configure.tgt: Likewise as targets.
3797
3798 2013-08-20 Doug Evans <dje@google.com>
3799
3800 * buildsym.c (subfile_stack): Move here from buildsym.h.
3801 (pending_macros): Ditto.
3802 (get_macro_table): New function.
3803 (buildsym_init): Initialize subfile_stack.
3804 * coffread.c (type_vector,type_vector_length): Moved here from
3805 buildsym.h.
3806 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
3807 (coff_symtab_read): Use it.
3808 * dbxread.c (read_ofile_symtab): Delete init of subfile_stack.
3809 * dwarf2read.c (macro_start_file): Replace uses of pending_macros
3810 with call to get_macro_table.
3811 * stabsread.c (type_vector,type_vector_length): Moved here from
3812 buildsym.h.
3813 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
3814 * buildsym.h (get_macro_table): Declare.
3815
3816 2013-08-20 Tom Tromey <tromey@redhat.com>
3817
3818 * dbxread.c (record_minimal_symbol): Make 'name' argument const.
3819 Update.
3820 (read_dbx_dynamic_symtab): Make 'name' const. Remove casts.
3821
3822 2013-08-20 Doug Evans <dje@google.com>
3823
3824 * blockframe.c: Remove #include "psymtab.h".
3825 * cp-support.c: Ditto.
3826 * source.c: Ditto.
3827 * stack.c: Ditto.
3828
3829 2013-08-20 Tom Tromey <tromey@redhat.com>
3830
3831 PR python/15816:
3832 * exceptions.h (return_mask): Now an enum.
3833 (RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL): Now
3834 enum constants.
3835
3836 2013-08-20 Tom Tromey <tromey@redhat.com>
3837
3838 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Use
3839 get_objfile_arch.
3840 * elfread.c (elf_rel_plt_read, elf_gnu_ifunc_record_cache)
3841 (elf_gnu_ifunc_resolve_by_got): Use get_objfile_arch.
3842 * jit.c (jit_object_close_impl): Update.
3843 * jv-lang.c (get_dynamics_objfile): Update.
3844 * linespec.c (add_minsym): Use get_dynamics_objfile.
3845 * objfiles.c (get_objfile_bfd_data): Initialize 'gdbarch' field.
3846 (allocate_objfile): Don't initialize 'gdbarch' field.
3847 (get_objfile_arch): Update.
3848 * objfiles.h (struct objfile_per_bfd_storage) <gdbarch>: New field,
3849 moved from...
3850 (struct objfile) <gdbarch>: ... here. Remove.
3851 * stap-probe.c (stap_can_evaluate_probe_arguments): Use
3852 get_objfile_arch.
3853 * symfile.c (init_entry_point_info): Use get_objfile_arch.
3854
3855 2013-08-20 Alan Modra <amodra@gmail.com>
3856
3857 * doublest.c (convert_floatformat_to_doublest): Use fmt->split_half
3858 for IBM long double nan and inf.
3859 (floatformat_is_negative, floatformat_classify,
3860 floatformat_mantissa): Similarly.
3861 (floatformat_ieee_single, floatformat_ieee_double,
3862 floatformat_ieee_quad, floatformat_arm_ext,
3863 floatformat_ia64_spill): Delete unused vars.
3864 (_initialize_doublest): Delete unused function.
3865 * gdbtypes.c (floatformats_ibm_long_double): Use new big- and
3866 little-endian variants of floatformat_ibm_long_double.
3867
3868 2013-08-19 Luis Machado <lgustavo@codesourcery.com>
3869
3870 * Makefile.in (SFILES): Remove common/target-common.c and
3871 add target/waitstatus.c.
3872 (HFILES_NO_SRCDIR): Remove common/target-common.h and add
3873 target/resume.h, target/wait.h and target/waitstatus.h.
3874 (COMMON_OBS): Remove target-common.o and add
3875 waitstatus.o.
3876 (target-common.o): Remove.
3877 (waitstatus.o): New target object file.
3878 * common/target-common.c: Move contents to
3879 target/waitstatus.c and remove.
3880 * common/target-common.h: Move contents to other files and
3881 remove.
3882 (enum resume_kind: Move to target/resume.h.
3883 (TARGET_WNOHANG): Move to target/wait.h.
3884 (enum target_waitkind): Move to target/waitstatus.h.
3885 (struct target_waitstatus): Likewise.
3886 * target.h: Do not include target-common.h and
3887 include target/resume.h, target/wait.h and
3888 target/waitstatus.h.
3889 * target/resume.h: New file.
3890 * target/wait.h: New file.
3891 * target/waitstatus.h: New file.
3892 * target/waitstatus.c: New file.
3893
3894 2013-08-19 Pedro Alves <palves@redhat.com>
3895
3896 * linux-nat.c (linux_test_for_tracefork)
3897 (linux_test_for_tracesysgood, linux_child_follow_fork)
3898 (lin_lwp_attach_lwp, linux_nat_resume): Don't block child signals.
3899 (linux_nat_wait_1): Extend comment.
3900 (linux_async_pipe): Add comment.
3901
3902 2013-08-15 Kevin Buettner <kevinb@redhat.com>
3903
3904 * rl78-tdep.c (RL78_RAW_PC_REGNUM): New enum.
3905 (RL78_PC_REGNUM): Move to list of pseudo-register enums.
3906 (rl78_register_type, rl78_register_name, rl78_register_reggroup_p):
3907 Update to account for fact that PC is now a pseudo-register.
3908 (rl78_pseudo_register_write, rl78_pseudo_register_read): Add
3909 cases for RL78_PC_REGNUM.
3910
3911 2013-08-15 Muhammad Bilal <mbilal@codesourcery.com>
3912
3913 PR cli/15841
3914 * top.c (quit_force): Skip writing history file
3915 if input is not from terminal.
3916
3917 2013-08-14 Tom Tromey <tromey@redhat.com>
3918
3919 * remote.c (struct remote_state) <echo_nextthread, nextthread,
3920 resultthreadlist>: New fields.
3921 (OPAQUETHREADBYTES, threadref, MAXTHREADLISTRESULTS): Move earlier.
3922 (remote_get_threadlist, remote_threadlist_iterator): Use
3923 new fields. Remove static variables.
3924
3925 2013-08-14 Tom Tromey <tromey@redhat.com>
3926
3927 * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p,
3928 remote_watch_data_address>: New fields.
3929 (remote_stopped_by_watchpoint_p, remote_watch_data_address): Remove.
3930 (process_stop_reply, remote_wait_as)
3931 (remote_check_watch_resources, remote_stopped_data_address): Update.
3932
3933 2013-08-14 Tom Tromey <tromey@redhat.com>
3934
3935 * remote.c (struct remote_state) <async_client_callback,
3936 async_client_context>: New fields.
3937 (async_client_callback, async_client_context): Remove.
3938 (remote_async_serial_handler, remote_async): Update.
3939
3940 2013-08-14 Tom Tromey <tromey@redhat.com>
3941
3942 * remote.c (sizeof_pkt): Remove.
3943 (remote_trace_find): Use rs->buf_size, not sizeof_pkt.
3944
3945 2013-08-14 Tom Tromey <tromey@redhat.com>
3946
3947 * remote.c (struct remote_state) <use_threadinfo_query,
3948 use_threadextra_query>: New fields.
3949 (remote_threads_info, remote_threads_extra_info)
3950 (remote_open_1): Update.
3951
3952 2013-08-14 Tom Tromey <tromey@redhat.com>
3953
3954 * remote.c (struct remote_state) <finished_object,
3955 finished_annex, finished_offset>: New fields.
3956 (remote_read_qxfer): Use remote_state fields; remove static
3957 variables.
3958
3959 2013-08-14 Tom Tromey <tromey@redhat.com>
3960
3961 * remote.c (struct remote_state) <last_sent_step>:
3962 New field.
3963 (last_sent_step): Remove.
3964 (remote_resume, remote_wait_as): Update.
3965
3966 2013-08-14 Tom Tromey <tromey@redhat.com>
3967
3968 * remote.c (struct remote_state) <last_sent_signal>:
3969 New field.
3970 (last_sent_signal): Remove.
3971 (new_remote_state, remote_resume, remote_wait_as): Update.
3972
3973 2013-08-14 Tom Tromey <tromey@redhat.com>
3974
3975 * remote.c (struct remote_state) <last_program_signals_packet>:
3976 New field.
3977 (last_program_signals_packet): Remove.
3978 (remote_program_signals, remote_open_1): Update.
3979
3980 2013-08-14 Tom Tromey <tromey@redhat.com>
3981
3982 * remote.c (struct remote_state) <last_pass_packet>:
3983 New field.
3984 (last_pass_packet): Remove.
3985 (remote_pass_signals, remote_open_1): Update.
3986
3987 2013-08-14 Tom Tromey <tromey@redhat.com>
3988
3989 * remote.c (struct remote_state) <remote_traceframe_number>:
3990 New field.
3991 (remote_traceframe_number): Remove.
3992 (new_remote_state, remote_open_1, set_remote_traceframe)
3993 (remote_trace_find): Update.
3994
3995 2013-08-14 Tom Tromey <tromey@redhat.com>
3996
3997 * remote.c (struct remote_state) <general_thread, continue_thread>:
3998 New fields.
3999 (general_thread, continue_thread): Remove.
4000 (record_currthread, set_thread, set_general_process)
4001 (remote_open_1, extended_remote_attach_1, remote_wait_as)
4002 (extended_remote_mourn_1): Update.
4003
4004 2013-08-14 Tom Tromey <tromey@redhat.com>
4005
4006 * remote.c (struct remote_state) <remote_desc>: New field.
4007 (remote_desc): Remove.
4008 (remote_threads_info, remote_threads_extra_info, remote_close)
4009 (send_interrupt_sequence, remote_start_remote, remote_open_1)
4010 (readchar, remote_xfer_partial, remote_rcmd, packet_command)
4011 (remote_hostio_send_command, remote_file_put, remote_file_get)
4012 (remote_file_delete, remote_can_async_p, remote_is_async_p)
4013 (remote_async, remote_new_objfile, set_range_stepping): Update.
4014
4015 2013-08-14 Tom Tromey <tromey@redhat.com>
4016
4017 * remote.c (remote_state): Now a pointer.
4018 (get_remote_state_raw): Update.
4019 (new_remote_state): New function.
4020 (_initialize_remote): Use new_remote_state.
4021
4022 2013-08-14 Tom Tromey <tromey@redhat.com>
4023
4024 * remote.c (remote_protocol_features): Now const.
4025
4026 2013-08-14 Tom Tromey <tromey@redhat.com>
4027
4028 * remote.c (crc32_table, crc32): Remove.
4029 (remote_verify_memory): Use xcrc32.
4030
4031 2013-08-13 Sergio Durigan Junior <sergiodj@redhat.com>
4032
4033 * value.h (create_internalvar_type_lazy): Adjust prototype
4034 declaration.
4035
4036 2013-08-13 Andrew Burgess <aburgess@broadcom.com>
4037
4038 * common/format.c (parse_format_string): Don't allow '#' flag for
4039 pointer arguments in format string.
4040
4041 2013-08-13 Pierre Muller <muller@sourceware.org>
4042
4043 * utils.c (init_page_info): Only call tgetnum function
4044 if rl_get_screen_size did not return useful values.
4045
4046 2013-08-12 Ali Anwar <ali_anwar@codesourcery.com>
4047
4048 PR breakpoints/15117
4049 * linespec.c (linespec_parse_basic): Check for convenience
4050 variable or history value while parsing.
4051
4052 2013-08-12 Sergio Durigan Junior <sergiodj@redhat.com>
4053
4054 Revert implementation of gdbarch_gdb_signal_{to,from}_target for
4055 AVR.
4056 * avr-tdep.c: Remove include of "linux-tdep.h". Remove enum with
4057 different signals between the generic Linux kernel implementation
4058 and AVR's.
4059 (avr_linux_gdb_signal_from_target): Delete.
4060 (avr_linux_gdb_signal_to_target): Delete.
4061 (avr_gdbarch_init): Don't set gdbarch_gdb_signal_{to,from}_target.
4062
4063 2013-08-09 Doug Evans <dje@google.com>
4064
4065 * dwarf2read.c (create_addrmap_from_index): Ignore bad address table
4066 entries.
4067
4068 2013-08-09 Sergio Durigan Junior <sergiodj@redhat.com>
4069
4070 * linux-tdep.c: Define enum with generic signal numbers.
4071 (linux_gdb_signal_from_target): New function.
4072 (linux_gdb_signal_to_target): Likewise.
4073 (linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4074 methods to the functions above.
4075 * linux-tdep.h (linux_gdb_signal_from_target): New prototype.
4076 (linux_gdb_signal_to_target): Likewise.
4077 * alpha-linux-tdep.c: Define new enum with signals different
4078 from generic Linux kernel.
4079 (alpha_linux_gdb_signal_from_target): New function.
4080 (alpha_linux_gdb_signal_to_target): Likewise.
4081 (alpha_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4082 with the functions mentioned above.
4083 * avr-tdep.c: Define enum with differences between Linux kernel
4084 and AVR signals.
4085 (avr_linux_gdb_signal_from_target): New function.
4086 (avr_linux_gdb_signal_to_target): Likewise.
4087 (avr_gdbarch_init): Set gdbarch_gdb_signal_{to,from}_target to
4088 the functions mentioned above.
4089 * sparc-linux-tdep.c: Define enum with differences between SPARC
4090 and generic Linux kernel signal numbers.
4091 (sparc32_linux_gdb_signal_from_target): New function.
4092 (sparc32_linux_gdb_signal_to_target): Likewise.
4093 (sparc32_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4094 to the functions defined above.
4095 * xtensa-linux-tdep.c: Define enum with differences between
4096 Xtensa and Linux kernel generic signals.
4097 (xtensa_linux_gdb_signal_from_target): New function.
4098 (xtensa_linux_gdb_signal_to_target): Likewise.
4099 (xtensa_linux_init_abi): Set gdbarch_gdb_signal_to_target
4100 to the functions defined above.
4101 * mips-linux-tdep.c: Define enum with differences between
4102 signals in MIPS and Linux kernel generic ones.
4103 (mips_gdb_signal_to_target): New function.
4104 (mips_gdb_signal_from_target): Redefine to use new enum, handle
4105 only different signals from the Linux kernel generic.
4106 (mips_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4107 the functions defined above.
4108 * mips-linux-tdep.h (enum mips_signals): Remove.
4109
4110 2013-08-09 Pedro Alves <palves@redhat.com>
4111
4112 * avr-tdep.c (XMALLOC): Delete macro.
4113 * cli/cli-dump.c (XMALLOC): Delete macro.
4114
4115 2013-08-09 Pedro Alves <palves@redhat.com>
4116
4117 * cli/cli-dump.c: Don't include cli/cli-dump.h.
4118 (scan_expression_with_cleanup, scan_filename_with_cleanup)
4119 (fopen_with_cleanup, add_dump_command): Make static.
4120 * cli/cli-dump.h: Delete file.
4121 * Makefile.in (HFILES_NO_SRCDIR): Remove reference to
4122 cli/cli-dump.h.
4123
4124 2013-08-09 Pedro Alves <palves@redhat.com>
4125
4126 * tracepoint.c (tfile_start): Show tilde-expanded filename in
4127 error message.
4128
4129 2013-08-09 Pedro Alves <palves@redhat.com>
4130
4131 * breakpoint.c (save_breakpoints): Show tilde-expanded filename in
4132 error message.
4133
4134 2013-08-09 Pedro Alves <palves@redhat.com>
4135
4136 * gcore.c (create_gcore_bfd): Don't use tilde_expand here.
4137 (gcore_command): Use tilde_expand here, and when showing the
4138 filename to the user, show the expanded version.
4139
4140 2013-08-09 Yao Qi <yao@codesourcery.com>
4141
4142 * stack.c (read_frame_arg): Set 'entryval_error' to NULL if
4143 'entryval' is set.
4144
4145 2013-08-08 Azat Khuzhin <a3at.mail@gmail.com> (tiny change)
4146
4147 * gcore.c (create_gcore_bfd): Use tilde_expand.
4148
4149 2013-08-08 Yao Qi <yao@codesourcery.com>
4150
4151 * frame.h (read_frame_local): Declare.
4152 * mi/mi-cmd-stack.c (list_args_or_locals): Call
4153 read_frame_local.
4154 * stack.c (read_frame_local): New.
4155
4156 2013-08-08 Yao Qi <yao@codesourcery.com>
4157
4158 * mi/mi-cmd-stack.c: Update comments to function
4159 list_args_or_locals.
4160
4161 2013-08-07 Tom Tromey <tromey@redhat.com>
4162
4163 PR symtab/15028:
4164 * dwarf2read.c (struct process_psymtab_comp_unit_data): New.
4165 (process_psymtab_comp_unit_reader): Use it.
4166 (process_psymtab_comp_unit): Update. Add "pretend_language"
4167 argument.
4168 (dwarf2_build_psymtabs_hard): Update.
4169 (scan_partial_symbols): Pass CU's language to
4170 process_psymtab_comp_unit.
4171
4172 2013-08-07 Tom Tromey <tromey@redhat.com>
4173
4174 * dwarf2read.c (dw2_get_primary_filename_reader): Remove.
4175 (dwarf2_gdb_index_functions): Update.
4176 * psymtab.c (find_symbol_file_from_partial): Remove.
4177 (psym_functions): Update.
4178 * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
4179 Remove.
4180
4181 2013-08-07 Tom Tromey <tromey@redhat.com>
4182
4183 * symfile.c (set_initial_language): Look up "main" symbol
4184 and use its language.
4185 * symtab.c (find_main_filename): Remove.
4186 * symtab.h (find_main_filename): Remove.
4187
4188 2013-08-07 Tom Tromey <tromey@redhat.com>
4189
4190 * dwarf2read.c (recursively_compute_inclusions): Add
4191 "immediate_parent" argument. Set symtab's "user" field
4192 if not set.
4193 (compute_symtab_includes): Update.
4194
4195 2013-08-07 Tom Tromey <tromey@redhat.com>
4196
4197 * linespec.c (convert_linespec_to_sals): Use maybe_add_address
4198 when adding label symbols.
4199
4200 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
4201 Ulrich Weigand <uweigand@de.ibm.com>
4202
4203 * configure.tgt (powerpc64-*-aix*): Match powerpc64 running aix.
4204 * configure.host (powerpc64-*-aix*): Likewise.
4205
4206 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
4207 Ulrich Weigand <uweigand@de.ibm.com>
4208
4209 * gdb_ptrace.h: Use ptrace64 instead of ptrace if HAVE_PTRACE64
4210 is defined.
4211 * rs6000-nat.c: Check for __ld_info64_ if compiling 64 BIT gdb.
4212 (rs6000_ptrace32): Call ptrace64 instead of ptrace if present.
4213 (rs6000_ptrace64): Call ptace64 instead of ptracex if present.
4214 * configure.ac: Check for ptrace64.
4215 * configure, config.in: Regenerate.
4216
4217 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
4218 Ulrich Weigand <uweigand@de.ibm.com>
4219
4220 * aixthread.c: Call ptrace64 instead of ptracex if defined.
4221 Call ptrace64 instead of ptrace if defined.
4222 Add macro addr_ptr to take care of ptrace address argument.
4223 (pdc_read_regs): Likewise.
4224 (pdc_write_regs): Likewise.
4225 (aix_thread_resume): Likewise.
4226 (fetch_regs_kernel_thread): Likewise.
4227 (store_regs_kernel_thread): Likewise.
4228
4229 2013-08-07 Anton Blanchard <anton@samba.org>
4230
4231 * MAINTAINERS: Add myself to Write After Approval.
4232
4233 2013-08-05 Tom Tromey <tromey@redhat.com>
4234
4235 * aix-thread.c (_initialize_aix_thread): Use
4236 complete_target_initialization.
4237 * bsd-uthread.c (_initialize_bsd_uthread): Use
4238 complete_target_initialization.
4239 * dec-thread.c (_initialize_dec_thread): Use
4240 complete_target_initialization.
4241 * ravenscar-thread.c (_initialize_ravenscar): Use
4242 complete_target_initialization.
4243 * sol-thread.c (_initialize_sol_thread): Use
4244 complete_target_initialization.
4245 * spu-multiarch.c (_initialize_spu_multiarch): Use
4246 complete_target_initialization.
4247
4248 2013-08-05 Tom Tromey <tromey@redhat.com>
4249
4250 * ada-exp.y (write_var_or_type): Use bound_minimal_symbol.
4251 * ada-lang.c (ada_lookup_simple_minsym): Return
4252 bound_minimal_symbol.
4253 * ada-lang.h (ada_lookup_simple_minsym): Update.
4254 * c-exp.y (variable): Use lookup_bound_minimal_symbol.
4255 * f-exp.y (variable): Use lookup_bound_minimal_symbol.
4256 * go-exp.y (variable): Use lookup_bound_minimal_symbol.
4257 * jv-exp.y (push_expression_name): Use lookup_bound_minimal_symbol.
4258 * m2-exp.y (variable): Use lookup_bound_minimal_symbol.
4259 * minsyms.c (msymbol_objfile): Remove.
4260 (lookup_minimal_symbol_internal): New function, from
4261 lookup_minimal_symbol.
4262 (lookup_minimal_symbol): Rewrite using
4263 lookup_minimal_symbol_internal.
4264 (lookup_bound_minimal_symbol): New function.
4265 * minsyms.h (msymbol_objfile): Remove.
4266 (lookup_bound_minimal_symbol): Declare.
4267 * p-exp.y (variable): Use lookup_bound_minimal_symbol.
4268 * parse.c (write_exp_msymbol): Change parameter to a
4269 bound_minimal_symbol.
4270 (write_dollar_variable): Use lookup_bound_minimal_symbol.
4271 * parser-defs.h (write_exp_msymbol): Update.
4272 * printcmd.c (address_info): Use lookup_bound_minimal_symbol.
4273 * symfile.c (simple_read_overlay_table): Use
4274 lookup_bound_minimal_symbol.
4275 * symtab.c (skip_prologue_sal): Don't use msymbol_objfile.
4276 (search_symbols): Likewise.
4277 (print_msymbol_info): Take a bound_minimal_symbol argument.
4278 (symtab_symbol_info, rbreak_command): Update.
4279 * symtab.h (struct symbol_search) <msymbol>: Change type
4280 to bound_minimal_symbol.
4281 * valops.c (find_function_in_inferior): Use
4282 lookup_bound_minimal_symbol.
4283 * value.c (value_fn_field): Use lookup_bound_minimal_symbol.
4284
4285 2013-08-05 Jan Kratochvil <jan.kratochvil@redhat.com>
4286
4287 Code cleanup.
4288 * remote.c (cleanup_sigint_signal_handler): Rename the declaration
4289 to ...
4290 (async_cleanup_sigint_signal_handler): ... this.
4291 (initialize_sigint_signal_handler): Remove declaration.
4292 (handle_remote_sigint): Rename the declaration to ...
4293 (async_handle_remote_sigint): ... this.
4294 (handle_remote_sigint_twice): Rename the declaration to ...
4295 (async_handle_remote_sigint_twice): ... this.
4296 (async_remote_interrupt, async_remote_interrupt_twice)
4297 (remote_interrupt): Remove the declarations.
4298 (remote_interrupt_twice): Rename the declaration ...
4299 (sync_remote_interrupt_twice): ... this.
4300 (sigint_remote_twice_token): Rename the variable to ...
4301 (async_sigint_remote_twice_token): ... this.
4302 (sigint_remote_token): Rename the variable to ...
4303 (async_sigint_remote_token): ... this.
4304 (initialize_sigint_signal_handler): Rename the function to ...
4305 (async_initialize_sigint_signal_handler): ... this. Update the name
4306 inside.
4307 (handle_remote_sigint): Rename the function to ...
4308 (async_handle_remote_sigint): ... this. Update the names inside.
4309 (handle_remote_sigint_twice): Rename the function to ...
4310 (async_handle_remote_sigint_twice): ... this. Update the names inside.
4311 (cleanup_sigint_signal_handler): Rename the function to ...
4312 (async_cleanup_sigint_signal_handler): ... this.
4313 (remote_interrupt): Rename the function to ...
4314 (sync_remote_interrupt): this. Update the names inside.
4315 (remote_interrupt_twice): Rename the function to ...
4316 (sync_remote_interrupt_twice): this. Update the names inside.
4317 (remote_terminal_inferior, remote_terminal_ours, remote_wait_as)
4318 (_initialize_remote): Update the names inside.
4319
4320 2013-08-02 Tom Tromey <tromey@redhat.com>
4321
4322 PR symtab/15719:
4323 * breakpoint.c (update_watchpoint, watchpoint_check)
4324 (watch_command_1): Update.
4325 * eval.c (fetch_subexp_value): Add "preserve_errors"
4326 parameter.
4327 * ppc-linux-nat.c (check_condition): Update.
4328 * value.h (fetch_subexp_value): Update.
4329
4330 2013-08-02 Andrew Burgess <aburgess@broadcom.com>
4331
4332 * mi/mi-interp.c (mi_interpreter_resume): Remove call to
4333 add_file_handler.
4334
4335 2013-08-01 Doug Evans <dje@google.com>
4336
4337 PR symtab/15691
4338 * dwarf2read.c (struct dwarf2_per_cu_data): New member tu_read.
4339 (fill_in_sig_entry_from_dwo_entry): Reorganize asserts.
4340 Add assert of sig_entry->dwo_unit == NULL.
4341 (lookup_dwo_signatured_type): Don't assign TU to a DWO if the TU
4342 had already been read.
4343 (read_signatured_type): Set per_cu.tu_read.
4344
4345 PR symtab/15695
4346 * valops.c (value_struct_elt): Add missing call to check_typedef.
4347 (value_find_oload_method_list): Ditto.
4348
4349 * symtab.c (do_free_search_symbols_cleanup): Change arg to,
4350 effectively, struct symbol_search **.
4351 (make_cleanup_free_search_symbols): Change arg to struct
4352 symbol_search **. All callers updated.
4353 (compare_search_syms): Compare symtab file name and block as well.
4354 (search_symbols_equal): New function.
4355 (sort_search_symbols_remove_dups): Renamed from sort_search_symbols.
4356 New args new_head, new_tail. Result is now void. Remove dups after
4357 sorting the symbols.
4358 (search_symbols): Sort all found symbols once, after all have been
4359 found, and remove duplicates. Simplify cleanup tracking of result.
4360 * symtab.h (make_cleanup_free_search_symbols): Update prototype.
4361
4362 Further workarounds for binutils/15021.
4363 * dwarf2read.c (recursively_compute_inclusions): Change type of result
4364 parameter to VEC (symtab_ptr) **. New parameter all_type_symtabs.
4365 Watch for duplicate symtabs coming from type units.
4366 (compute_symtab_includes): Update call to
4367 recursively_compute_inclusions. Build vector of included symtabs
4368 instead of per_cus.
4369 * symtab.h (symtab_ptr): New typedef.
4370 (DEF_VEC_P (symtab_ptr)): New VEC type.
4371 * linespec.c (symtab_p): Delete. All uses updated to use symtab_ptr
4372 instead.
4373
4374 2013-08-01 Andrew Burgess <aburgess@broadcom.com>
4375
4376 * cli/cli-script.c (script_from_file): Remove use of
4377 error_pre_print.
4378 * main.c (captured_main): Remove use of error_pre_print and
4379 quit_pre_print.
4380 * utils.c (error_pre_print, quit_pre_print): Remove.
4381 * utils.h (error_pre_print, quit_pre_print): Likewise.
4382
4383 2013-08-01 Yao Qi <yao@codesourcery.com>
4384
4385 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Parse argv
4386 with mi_getopt.
4387 (mi_cmd_stack_list_variables): Likewise.
4388
4389 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
4390
4391 * exceptions.c (deprecated_throw_reason): Remove.
4392 * exceptions.h (deprecated_throw_reason): Remove.
4393
4394 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
4395
4396 * remote-mips.c (mips_error): Replace use of
4397 deprecated_throw_reason with throw_verror. Use the error message
4398 passed to mips_error as the error message for throw_verror.
4399
4400 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
4401
4402 * monitor.c (monitor_interrupt_query): Replace use of
4403 deprecated_throw_reason with quit.
4404 * nto-procfs.c (interrupt_query): Likewise.
4405 * remote-fileio.c (remote_fileio_sig_exit): Likewise.
4406 * remote-mips.c (mips_kill): Likewise.
4407 * remote.c (interrupt_query): Likewise.
4408
4409 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
4410
4411 * utils.c (internal_verror): Replace use of deprecated_throw_reason
4412 with call to fatal.
4413
4414 2013-07-31 Pedro Alves <pedro@codesourcery.com>
4415 Yao Qi <yao@codesourcery.com>
4416
4417 * tracepoint.c (trace_dump_command): Select the current frame.
4418
4419 2013-07-30 Doug Evans <dje@google.com>
4420
4421 * dwarf2read.c (process_queue): Add type signature to debug output.
4422
4423 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
4424
4425 * value.c (value_fetch_lazy): Mark optimized out values as such
4426 rather than raising an error.
4427
4428 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
4429
4430 * value.c (value_fetch_lazy): Ensure parent value is not lazy
4431 before checking which bits of the parent, not the child, value are
4432 valid.
4433
4434 2013-07-30 Muhammad Bilal <mbilal@codesorcery.com>
4435
4436 PR gdb/15715
4437 * top.c: Include "filenames.h".
4438 (set_history_filename): New function.
4439 (init_main): Install it as set hook of the "set history filename"
4440 command.
4441
4442 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
4443
4444 * dwarf2read.c (dwarf2_get_ref_die_offset): Constify struct
4445 attribute parameter.
4446 (dwarf2_const_value_data): Constify struct attribute parameter.
4447 (dwarf2_const_value): Constify struct attribute parameter.
4448 (dwarf2_const_value_attr): Constify struct attribute parameter.
4449 (lookup_die_type): Constify struct attribute parameter.
4450 (dwarf2_get_attr_constant_value): Constify struct attribute parameter.
4451 (follow_die_ref_or_sig): Constify struct attribute parameter.
4452 (follow_die_ref): Constify struct attribute parameter.
4453 (follow_die_sig): Constify struct attribute parameter.
4454 (get_DW_AT_signature_type): Constify struct attribute parameter.
4455 (get_type_unit_group): Constify struct attribute parameter.
4456 (fill_in_loclist_baton): Constify struct attribute parameter.
4457 (dwarf2_symbol_mark_computed): Constify struct attribute parameter.
4458 (type_unit_group): Constify struct attribute parameter.
4459
4460 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
4461
4462 * dwarf2read.c (attr_form_is_block): Make argument const.
4463 (attr_form_is_section_offset): Make argument const.
4464 (attr_form_is_constant): Make argument const.
4465 (attr_form_is_ref): Make argument const.
4466
4467 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
4468
4469 * dwarf2read.c (attr_is_ref): Rename to attr_form_is_ref.
4470 All uses updated.
4471 (attr_form_is_ref): Moved below attr_form_is_constant.
4472
4473 2013-07-29 Doug Evans <dje@google.com>
4474
4475 * main.c (captured_command_loop): Tweak comment.
4476
4477 * target.c (target_async_permitted_1): Fix comment.
4478
4479 * symtab.c (iterate_over_some_symtabs): Add comment.
4480
4481 * symtab.c (iterate_over_some_symtabs): Fix indentation.
4482
4483 2013-07-27 Yao Qi <yao@codesourcery.com>
4484
4485 * NEWS: Mention that GDBserver now supports hardware
4486 watchpoints on the MIPS GNU/Linux target.
4487
4488 2013-07-27 Yao Qi <yao@codesourcery.com>
4489
4490 * Makefile.in (HFILES_NO_SRCDIR): Add
4491 common/mips-linux-watch.h.
4492 (mips-linux-watch.o): New rule.
4493 * common/mips-linux-watch.c: New.
4494 * common/mips-linux-watch.h: New.
4495 * config/mips/linux.mh (NATDEPFILES): Add mips-linux-watch.o
4496 * mips-linux-nat.c: Include mips-linux-watch.h.
4497 (W_BIT, R_BIT, I_BIT, W_MASK, R_MASK, I_MASK, IRW_MASK): Move
4498 to common/mips-linux-watch.h.
4499 (MAX_DEBUG_REGISTER): Likewise.
4500 (enum pt_watch_style): Likewise.
4501 (struct mips32_watch_regs): Likewise.
4502 (struct mips64_watch_regs): Likewise.
4503 (struct pt_watch_regs): Likewise.
4504 (struct mips_watchpoint): Likewise.
4505 (mips_linux_watch_get_irw_mask): Move to
4506 common/mips-linux-watch.c.
4507 (get_reg_mask, mips_linux_watch_get_num_valid): Likewise.
4508 (mips_linux_watch_get_watchlo): Likewise.
4509 (mips_linux_watch_set_watchlo): Likewise.
4510 (mips_linux_watch_get_watchhi): Likewise.
4511 (mips_linux_watch_set_watchhi): Likewise.
4512 (mips_linux_read_watch_registers): Likewise.
4513 (mips_linux_watch_type_to_irw): Likewise.
4514 (mips_linux_stopped_data_address, fill_mask): Likewise.
4515 (mips_linux_watch_try_one_watch): Likewise.
4516 (mips_linux_watch_populate_regs): Likewise.
4517
4518 2013-07-27 Yao Qi <yao@codesourcery.com>
4519
4520 * mips-linux-nat.c (get_irw_mask): Rename to ...
4521 (mips_linux_watch_get_irw_mask): ... this. Rename parameter
4522 'set' to 'n'. Update function comment. All callers changed.
4523 (get_reg_mask): Rename parameter 'set' to 'n'. Update
4524 function comment. All callers changed.
4525 (get_num_valid): Rename to ...
4526 (mips_linux_watch_get_num_valid): ... this. Rename parameter
4527 'set' to 'n'. Update function comment. All callers changed.
4528 (get_watchlo): Rename to ...
4529 (mips_linux_watch_get_watchlo): ... this. Rename parameter
4530 'set' to 'n'. Update function comment. All callers changed.
4531 (set_watchlo): Rename to ...
4532 (mips_linux_watch_set_watchlo): ... this. Rename parameter
4533 'set' to 'n'. Update function comment. All callers changed.
4534 (get_watchhi): Rename to ...
4535 (mips_linux_watch_get_watchhi): ... this. Update function
4536 comment. All callers changed.
4537 (set_watchhi): Rename to ...
4538 (mips_linux_watch_set_watchhi): ... this. Update function
4539 comment. All callers changed.
4540 (mips_linux_read_watch_registers): Update function comment.
4541 Add new parameters 'lwpid', 'watch_readback', and
4542 'watch_readback_valid'. Update.
4543 (type_to_irw): Rename to ...
4544 (mips_linux_watch_type_to_irw): ... this. Update function
4545 comment. All callers changed.
4546 (fill_mask): Update function comment.
4547 (try_one_watch): Rename to ...
4548 (mips_linux_watch_try_one_watch): ... this. Change the type
4549 of parameter 'irw' from 'unsigned' to 'uint32_t'.
4550 (populate_regs_from_watches): Rename to ...
4551 (mips_linux_watch_populate_regs): ... this. Add parameter
4552 'current_watches'. All callers changed.
4553
4554 2013-07-27 Yao Qi <yao@codesourcery.com>
4555
4556 * mips-linux-nat.c (MAX_DEBUG_REGISTER): Move it earlier in
4557 the code.
4558 (PTRACE_SET_WATCH_REGS, enum pt_watch_style): Remove.
4559 (struct mips32_watch_regs, struct mips64_watch_regs): Remove.
4560 (struct pt_watch_regs): Likewise.
4561 [!PTRACE_GET_WATCH_REGS] (PTRACE_SET_WATCH_REGS): New macro.
4562 [!PTRACE_GET_WATCH_REGS] (enum pt_watch_style): New.
4563 [!PTRACE_GET_WATCH_REGS] (struct mips32_watch_regs): New.
4564 [!PTRACE_GET_WATCH_REGS] (struct mips64_watch_regs): New.
4565 [!PTRACE_GET_WATCH_REGS] (struct pt_watch_regs): New.
4566
4567 2013-07-27 Yao Qi <yao@codesourcery.com>
4568
4569 * breakpoint.h: Include break-common.h.
4570 (enum target_hw_bp_type): Move to ...
4571 * common/break-common.h: ... here. New.
4572
4573 2013-07-26 Cyril Nikolaev <cyril@nichtverstehen.de>
4574
4575 * inflow.c (terminal_init_inferior_with_pgrp): Save inferior
4576 process group regardless of having tty on stdin.
4577
4578 2013-07-25 Doug Evans <dje@google.com>
4579
4580 * linux-fork.h (detach_fork): Delete.
4581
4582 2013-07-25 Tom Tromey <tromey@redhat.com>
4583
4584 PR remote/15256, PR remote/15266:
4585 * bfd-target.c (target_bfd_reopen): Initialize to_magic.
4586 * monitor.c (monitor_detach): Use unpush_target.
4587 * remote-m32r-sdi.c (m32r_detach): Use unpush_target.
4588 * remote-mips.c (mips_detach): Use unpush_target. Don't
4589 call mips_close.
4590 * remote-sim.c (gdbsim_detach): Use unpush_target.
4591 * target.c (pop_target): Remove.
4592 (pop_all_targets_above): Don't call target_close.
4593 (target_close): Assert that the target is unpushed.
4594 * target.h (pop_target): Don't declare.
4595 * tracepoint.c (tfile_open): Use unpush_target.
4596
4597 2013-07-25 Tom Tromey <tromey@redhat.com>
4598
4599 * linux-thread-db.c (init_thread_db_ops): Call
4600 complete_target_initialization.
4601 (_initialize_thread_db): Don't call add_target.
4602 * target.c (complete_target_initialization): New function.
4603 (add_target_with_completer): Call it.
4604 * target.h (complete_target_initialization): Declare.
4605
4606 2013-07-25 Mark Kettenis <kettenis@gnu.org>
4607
4608 * hppa-tdep.h (enum hppa_regnum): Add members for all space registers.
4609 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Add comment.
4610 (HPPANBSD_SIZEOF_GREGS): New define.
4611 (hppaobsd_supply_gregset): Handle additional registers.
4612 * hppabsd-nat.c (hppabsd_gregset_supplies_p): Adjust to indicate
4613 we provide more registers now.
4614 (hppabsd_supply_gregset): Supply additional registers.
4615 (hppabsd_collect_gregset): Collect additional registers.
4616
4617 2013-07-25 Mark Kettenis <kettenis@gnu.org>
4618
4619 * hppabsd-tdep.c: Include "dwarf2-frame.h".
4620 (hppabsd_dwarf2_frame_init_reg): New function.
4621 (hppabsd_init_abi): Hook in the DWARF CFI frame unwinder.
4622
4623 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
4624
4625 * mi/mi-main.c (output_register): Make MI 'r' format use standard
4626 'z' format code. Remove error for optimized out values, standard
4627 code will handle these fine.
4628
4629 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
4630
4631 * NEWS: Mention new 'z' formatter.
4632 * printcmd.c (print_scalar_formatted): Add new 'z' formatter.
4633 (_initialize_printcmd): Mention 'z' formatter in help text of the
4634 'x' command.
4635
4636 2013-07-24 Maciej W. Rozycki <macro@codesourcery.com>
4637
4638 * mips-tdep.c (micromips_deal_with_atomic_sequence): Correct
4639 formatting.
4640
4641 2013-07-24 Sergio Durigan Junior <sergiodj@redhat.com>
4642
4643 * breakpoint.c (create_longjmp_master_breakpoint): Check if probe
4644 interface can evaluate arguments. Fallback to the old mode if it
4645 cannot.
4646 (create_exception_master_breakpoint): Likewise.
4647 * elfread.c (elf_can_evaluate_probe_arguments): New function.
4648 (struct sym_probe_fns elf_probe_fns): Export function above to the
4649 probe interface.
4650 * probe.c (can_evaluate_probe_arguments): New function.
4651 * probe.h (struct probe_ops) <can_evaluate_probe_arguments>: New
4652 function pointer.
4653 (can_evaluate_probe_arguments): New function prototype.
4654 * solib-svr4.c (svr4_create_solib_event_breakpoints): Check if
4655 probe interface can evaluate arguments. Fallback to the old mode
4656 if it cannot.
4657 * stap-probe.c (stap_get_probe_argument_count): Check if probe
4658 interface can evaluate arguments. Warning the user if it cannot.
4659 (stap_can_evaluate_probe_arguments): New function.
4660 (struct probe_ops stap_probe_ops): Export function above to the
4661 probe interface.
4662 * symfile.h (struct sym_probe_fns) <can_evaluate_probe_arguments>:
4663 New function pointer.
4664
4665 2013-07-24 Luis Machado <lgustavo@codesourcery.com>
4666
4667 * Makefile.in (SFILES): Add common/target-common.c.
4668 Add common/target-common.h to headers.
4669 (COMMON_OBS): Add target-common.o.
4670 (target-common.o): New target.
4671 * linux-nat.h (resume_kind): Move to common/target-common.h.
4672 * target.c (target_waitstatus_to_string): Move to
4673 common/target-common.c.
4674 * target.h: Include target-common.h.
4675 (target_waitkind): Move to common/target-common.h.
4676 (target_waitstatus): Likewise.
4677 (TARGET_WNOHANG): Likewise.
4678 * common/target-common.c: New file.
4679 * common/target-common.h: New file.
4680
4681 2013-07-24 Doug Evans <dje@google.com>
4682
4683 * dwarf2read.c (lookup_dwo_cutu): Change missing DWO complaint to
4684 a warning.
4685
4686 2013-07-23 Yao Qi <yao@codesourcery.com>
4687
4688 * i386-tdep.c (i386_in_stack_tramp_p): Remove unused
4689 parameter 'gdbarch'.
4690 (i386_stack_tramp_frame_sniffer): Caller update.
4691 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Remove
4692 parameter 'gdbarch' and 'target'.
4693 (i386_linux_core_read_description): Caller update.
4694 * amd64-linux-tdep.c (amd64_linux_core_read_description):
4695 Likewise.
4696 * i386-linux-tdep.h (i386_linux_core_read_xcr0): Update
4697 declaration.
4698
4699 2013-07-23 Tom Tromey <tromey@redhat.com>
4700
4701 * dwarf2read.c (init_cutu_and_read_dies): Revert patch from
4702 2013-07-22.
4703
4704 2013-07-22 Doug Evans <dje@google.com>
4705
4706 * exec.h (remove_target_sections): Delete arg abfd.
4707 * exec.c (exec_close): Update call to remove_target_sections.
4708 (remove_target_sections): Delete arg abfd.
4709 * solib.c (update_solib_list): Ditto.
4710 (reload_shared_libraries_1): Ditto.
4711 (clear_solib): Ditto, and unconditionally call remove_target_sections.
4712 * target.h (struct target_section): Rename key to owner.
4713 All uses updated.
4714
4715 2013-07-22 Tom Tromey <tromey@redhat.com>
4716
4717 * solib-som.c (som_open_symbol_file_object): Call do_cleanups.
4718
4719 2013-07-22 Tom Tromey <tromey@redhat.com>
4720
4721 * dwarf2read.c (init_cutu_and_read_dies): Remove 'free_cu_cleanup'.
4722 Simplify cleanup handling.
4723
4724 2013-07-22 Tom Tromey <tromey@redhat.com>
4725
4726 * dwarf2read.c (dwarf_decode_line_header): Call do_cleanups
4727 on all return paths.
4728
4729 2013-07-22 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
4730
4731 * ppc-linux-nat.c (PPC_DEBUG_FEATURE_DATA_BP_DAWR): New define.
4732 (ppc_linux_region_ok_for_hw_watchpoint): Add checking to use the new
4733 DAWR interface for longer ranges hardware watchpoint (up to 512 bytes).
4734
4735 2013-07-22 Phil Muldoon <pmuldoon@redhat.com>
4736
4737 * top.c (print_gdb_version): Add help, apropos description and
4738 url to online documentation.
4739
4740 2013-07-19 Hui Zhu <hui@codesourcery.com>
4741
4742 PR gdb/15692
4743 * mi/mi-cmd-break.c (mi_argv_to_format): Handle double quotes.
4744
4745 2013-07-19 Yao Qi <yao@codesourcery.com>
4746
4747 * target.c (update_current_target): Change the default action
4748 of 'to_traceframe_info' from tcomplain to return_zero.
4749 * target.h (struct target_ops) <to_traceframe_info>: Add more
4750 comments.
4751 * valops.c (read_value_memory): Call
4752 traceframe_available_memory unconditionally.
4753
4754 2013-07-18 Yao Qi <yao@codesourcery.com>
4755
4756 * coffread.c (coff_symfile_read): Iterate over minimal symbols,
4757 if the name is prefixed by "__imp_" or "_imp_", look for minimal
4758 symbol without prefix. If found, set its type to
4759 'mst_solib_trampoline'.
4760
4761 2013-07-17 Doug Evans <dje@google.com>
4762
4763 * NEWS: Mention "set print raw frame-arguments".
4764 * gdbcmd.h (setprintrawlist, showprintrawlist): Declare.
4765 * stack.c (print_raw_frame_arguments): New static global.
4766 (print_frame_arg): Set opts.raw from print_raw_frame_arguments.
4767 (_initialize_stack): New command "set/show print raw frame-arguments".
4768 * valprint.c (setprintrawlist, showprintrawlist): New globals.
4769 (set_print_raw, show_print_raw): New functions.
4770 (_initialize_valprint): New prefix command "set/show print raw".
4771 * valprint.h (value_print_options): Improve comments.
4772
4773 * cli/cli-cmds.c (init_cmd_lists): Delete unnecessary initialization
4774 of all *list variables.
4775
4776 * gdbcmd.h (togglelist): Delete.
4777 * cli/cli-cmds.c (togglelist): Delete.
4778 (init_cmd_lists): Update.
4779 * cli/cli-cmds.h (togglelist): Delete.
4780
4781 2013-07-17 Tom Tromey <tromey@redhat.com>
4782
4783 * dwarf2read.c (dwarf2_per_objfile_free): Clear
4784 dwarf2_per_objfile.
4785
4786 2013-07-16 Doug Evans <dje@google.com>
4787
4788 * nto-tdep.c (nto_relocate_section_addresses): Update,
4789 target_section.bfd deleted.
4790 * ppc64-tdep.c (ppc64_convert_from_func_ptr_addr): Ditto.
4791 * s390-tdep.c (s390_load): Ditto.
4792 * solib-aix.c (solib_aix_relocate_section_addresses): Ditto.
4793
4794 2013-07-16 Andrew Burgess <aburgess@broadcom.com>
4795
4796 * common/format.c (parse_format_string): Add checks for NULL
4797 character before calling strchr.
4798
4799 2013-07-16 Doug Evans <dje@google.com>
4800
4801 * solist.h (target_so_ops.find_and_open_solib): Clarify usage of
4802 temp_pathname argument.
4803 * nto-tdep.c (nto_find_and_open_solib): Fix setting of temp_pathname
4804 when opening the file fails.
4805
4806 * target.h (struct target_section): Delete member bfd.
4807 All users updated to use the_bfd_section->owner instead.
4808 * exec.c (add_to_section_table): Assert bfd is expected value.
4809 Remove initialization of target_section.bfd.
4810 (remove_target_sections): Update.
4811 (section_table_available_memory): Update.
4812 (section_table_xfer_memory_partial): Update.
4813 (print_section_info): Update.
4814 (exec_set_section_address): Update.
4815 * record-full.c (record_full_core_xfer_partial): Update.
4816 * solib-svr4.c (svr4_relocate_section_addresses): Update.
4817 * solib-target.c (solib_target_relocate_section_addresses): Update.
4818 * symfile.c (build_section_addr_info_from_section_table): Update.
4819 * target.c (memory_xfer_live_readonly_partial): Update.
4820 (memory_xfer_partial_1): Update.
4821
4822 2013-07-15 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
4823
4824 * ppc-linux-nat.c: Since the new PowerPC specific ptrace interface is
4825 now available for embedded (BookE) and server (BookS) processors,
4826 correct mentions of 'booke' and adjust comments accordingly in order to
4827 avoid confusion. Rename struct 'booke_debug_info' to 'hwdebug_info'.
4828 (have_ptrace_booke_interface): Rename function and variable
4829 'have_ptrace_booke_interface' to 'have_ptrace_hwdebug_interface'.
4830 Rename struct 'booke_debug_info' to 'hwdebug_info'. Update all uses.
4831 (booke_cmp_hw_point): Rename function 'booke_cmp_hw_point' to
4832 'hwdebug_point_cmp'. Update all uses.
4833 (booke_find_thread_points_by_tid): Rename function
4834 'booke_find_thread_points_by_tid' to
4835 'hwdebug_find_thread_points_by_tid'. Update all uses.
4836 (booke_insert_point): Rename function 'booke_insert_point' to
4837 'hwdebug_insert_point'. Update all uses.
4838 (booke_remove_point): Rename function 'booke_remove_point' to
4839 'hwdebug_remove_point'. Update all uses.
4840
4841 2013-07-15 Maciej W. Rozycki <macro@codesourcery.com>
4842
4843 * mips-tdep.c (mips_gdbarch_init): Replace hardcoded magic
4844 numbers with enum values.
4845
4846 2013-07-15 Ali Anwar <ali_anwar@codesourcery.com>
4847
4848 PR threads/13217
4849 * thread.c (thread_apply_all_command): Check for valid threads
4850 and thread count.
4851 (thread_array_cleanup): New struct.
4852 (set_thread_refcount): New function.
4853
4854 2013-07-11 Andrew Burgess <aburgess@broadcom.com>
4855
4856 * infcmd.c (default_print_one_register_info): Reuse function
4857 print_hex_chars.
4858
4859 2013-07-10 Tom Tromey <tromey@redhat.com>
4860
4861 * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS, ADA_EXP_C): New macros.
4862 (ada-exp.o): New target.
4863
4864 2013-07-10 Sergio Durigan Junior <sergiodj@redhat.com>
4865
4866 * mt-tdep.c (mt_registers_info): Call
4867 get_no_prettyformat_print_options instead of
4868 get_raw_print_options (regression by last patch from Doug
4869 Evans).
4870
4871 2013-07-09 Pedro Alves <palves@redhat.com>
4872
4873 Checked in by Joel Brobecker <brobecker@adacore.com>.
4874 * ada-lang.c (coerce_unspec_val_to_type): Use
4875 value_optimized_out_const.
4876 * value.c (value_optimized_out_const): New function.
4877 * value.h (value_optimized_out_const): New declaration.
4878
4879 2013-07-09 Doug Evans <dje@google.com>
4880
4881 * defs.h (enum val_prettyformat): Renamed from val_prettyprint.
4882 Enum values rename as well. All uses updated.
4883 * valprint.h (value_print_options): Rename member pretty to
4884 pretty format. Rename member prettyprint_arrays to
4885 prettyformat_arrays. Rename member prettyprint_structs to
4886 prettyformat_structs. All uses updated.
4887 (get_no_prettyformat_print_options): Renamed from
4888 get_raw_print_options.
4889 * valprint.c (get_no_prettyformat_print_options): Renamed from
4890 get_raw_print_options. All callers updated.
4891 (show_prettyformat_structs): Renamed from show_prettyprint_structs.
4892 All callers updated.
4893 (show_prettyformat_arrays): Renamed from show_prettyprint_arrays.
4894 All callers updated.
4895 (_initialize_valprint): Improve help text for "set print pretty" and
4896 "set print arrays".
4897
4898 2013-07-09 Andrew Burgess <aburgess@broadcom.com>
4899
4900 * value.c (value_bits_valid): Revert previous change, and change
4901 by Pedro on 2013-07-04, due to regressions in
4902 gdb.dwarf2/implptr.exp and gdb.dwarf2/pieces.exp.
4903
4904 2013-07-08 Andrew Burgess <aburgess@broadcom.com>
4905 Pedro Alves <palves@redhat.com>
4906
4907 * value.c (value_bits_valid): If the value is not lval_computed
4908 or has no check validity handler then the answer is the
4909 optimized_out flag, otherwise defer to the handler.
4910
4911 2013-07-06 Eli Zaretskii <eliz@gnu.org>
4912
4913 * top.c (print_gdb_configuration): Explain in output of
4914 --configuration what does "relocatable" mean.
4915
4916 * main.c (print_gdb_help): Regroup options in the --help text.
4917 See http://sourceware.org/ml/gdb-patches/2013-04/msg00362.html for
4918 the relevant discussions.
4919
4920 2013-07-06 Yao Qi <yao@codesourcery.com>
4921
4922 * breakpoint.h (struct breakpoint_ops) <create_breakpoints_sal>:
4923 Remove parameter 'lsal'.
4924 * breakpoint.c (create_breakpoint): Move local variable 'lsal'
4925 to inner block. Caller update.
4926 (base_breakpoint_create_breakpoints_sal): Update.
4927 (bkpt_create_breakpoints_sal): Likewise.
4928 (tracepoint_create_breakpoints_sal): Likewise.
4929 (strace_marker_create_breakpoints_sal): Get 'lsal' from the
4930 element 0 of vector 'canonical->sals'.
4931
4932 2013-07-05 Luis Machado <lgustavo@codesourcery.com>
4933
4934 * rs6000-tdep.c (rs6000_stab_reg_to_regnum): Return the real
4935 register number instead of the pseudo register one.
4936 (rs6000_dwarf2_reg_to_regnum): Likewise.
4937
4938 2013-07-04 Pedro Alves <palves@redhat.com>
4939
4940 * findvar.c (value_of_register): Use allocate_optimized_out_value
4941 if the register has been optimized out, instead of
4942 set_value_optimized_out.
4943 * frame-unwind.c (frame_unwind_got_optimized): Use
4944 allocate_optimized_out_value.
4945
4946 2013-07-04 Pedro Alves <palves@redhat.com>
4947
4948 * value.c (value_bits_valid): If the value is not lval_computed,
4949 or doesn't have a check_validity hook, assume the value is entirely
4950 valid.
4951
4952 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
4953
4954 * stack.c (read_frame_arg): No longer fetch lazy values.
4955 * value.c (value_optimized_out): If the value is not already
4956 marked optimized out, and is lazy then fetch it.
4957 (value_primitive_field): Move optimized out check to later in the
4958 function, after we have loaded any lazy values.
4959 (value_fetch_lazy): Use optimized out flag directly rather than
4960 calling optimized_out method.
4961
4962 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
4963
4964 * valops.c: Don't include "user-regs.h".
4965 (value_fetch_lazy): Moved to value.c.
4966 * value.c: Include "user-regs.h".
4967 (value_fetch_lazy): Moved from valops.c.
4968
4969 2013-07-04 Yao Qi <yao@codesourcery.com>
4970
4971 Revert:
4972 2013-06-27 Yao Qi <yao@codesourcery.com>
4973
4974 * common/create-version.sh: Update comments. Handle the case
4975 that TARGET_ALIAS is empty.
4976
4977 2013-07-03 Pedro Alves <palves@redhat.com>
4978
4979 * Makefile.in (config.status): Depend on development.sh.
4980 (aclocal_m4_deps): Add libmcheck.m4.
4981 * acinclude.m4: Include libmcheck.m4.
4982 * configure.ac: Source development.sh instead of setting
4983 'development' here. --enable-libmcheck/--disable-libmcheck code
4984 factored out to GDB_AC_LIBMCHECK. Run it.
4985 * development.sh: New file.
4986 * libmcheck.m4: New file.
4987 * configure: Regenerate.
4988
4989 2013-07-02 Tom Tromey <tromey@redhat.com>
4990
4991 * contrib/ari/update-web-ari.sh: Update for version.in change.
4992
4993 2013-07-02 Tom Tromey <tromey@redhat.com>
4994
4995 * common/ptid.h: Comment fixes.
4996
4997 2013-07-01 Tom Tromey <tromey@redhat.com>
4998
4999 * dwarf2read.c (dwarf2_get_dwz_file): Return NULL if
5000 .gnu_debugaltlink not found. Use bfd_get_alt_debug_link_info.
5001 (dwarf2_read_index, create_all_comp_units): Update.
5002
5003 2013-07-01 Tom Tromey <tromey@redhat.com>
5004
5005 * configure.ac (build_warnings): Add -Wold-style-definition.
5006 * configure: Rebuild.
5007 * machoread.c (_initialize_machoread): Use "(void)".
5008 * macrocmd.c (macro_inform_no_debuginfo): Fix formatting;
5009 use "(void)".
5010
5011 2013-07-01 Tom Tromey <tromey@redhat.com>
5012
5013 * configure.ac (build_warnings): Add -Wold-style-declaration.
5014 * configure: Rebuild.
5015 * dsrec.c (make_srec): Use "static const", not "const static".
5016 * h8300-tdep.c (h8300_breakpoint_from_pc): Use "static const",
5017 not "const static".
5018 * mi/mi-parse.c (mi_no_values, mi_simple_values, mi_all_values):
5019 Use "static const", not "const static".
5020 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Use "static const",
5021 not "const static".
5022 * moxie-tdep.c (moxie_breakpoint_from_pc): Use "static const",
5023 not "const static".
5024 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Use "static const",
5025 not "const static".
5026 * v850-tdep.c (v850_breakpoint_from_pc): Use "static const",
5027 not "const static".
5028 (v850_dbtrap_breakpoint_from_pc): Likewise.
5029 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Use "static const",
5030 not "const static".
5031
5032 2013-07-01 Tom Tromey <tromey@redhat.com>
5033
5034 * configure.ac (build_warnings): Add -Wmissing-parameter-type.
5035 * configure: Rebuild.
5036
5037 2013-07-01 Pedro Alves <palves@redhat.com>
5038
5039 * defs.h: Include "pathmax.h".
5040 * utils.c: Don't include sys/param.h.
5041 (gdb_realpath): Remove code that checks for MAXPATHLEN.
5042 * solib-ia64-hpux.c (ia64_hpux_handle_load_event): Use PATH_MAX
5043 instead of MAXPATHLEN.
5044 * solib-sunos.c: Don't include sys/param.h.
5045 * xcoffread.c: Don't include sys/param.h.
5046 * bsd-kvm.c: Don't include sys/param.h.
5047 * darwin-nat.c: Don't include sys/param.h.
5048 (darwin_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
5049 * darwin-nat-info.c: Don't include sys/param.h.
5050 * fbsd-nat.c (fbsd_pid_to_exec_file): Use PATH_MAX instead of
5051 MAXPATHLEN.
5052 * i386obsd-nat.c: Don't include sys/param.h.
5053 * inf-child.c: Don't include sys/param.h.
5054 (inf_child_fileio_readlink): Use PATH_MAX instead of MAXPATHLEN.
5055 * linux-fork.c: Don't include sys/param.h.
5056 (fork_save_infrun_state): Use PATH_MAX instead of MAXPATHLEN.
5057 * linux-nat.c: Don't include sys/param.h.
5058 (linux_child_pid_to_exec_file, linux_proc_pending_signals)
5059 (linux_proc_pending_signals): Use PATH_MAX instead of MAXPATHLEN.
5060 * m68klinux-nat.c: Don't include sys/param.h.
5061 * nbsd-nat.c: Don't include sys/param.h.
5062 (nbsd_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
5063 * ppc-linux-nat.c: Don't include sys/param.h.
5064 * rs6000-nat.c: Don't include sys/param.h.
5065 * spu-linux-nat.c. Don't include sys/param.h.
5066 * windows-nat.c: Don't include sys/param.h.
5067 * xtensa-linux-nat.c: Don't include sys/param.h.
5068 * config/i386/nm-fbsd.h: Don't include sys/param.h.
5069
5070 2013-07-01 Pedro Alves <palves@redhat.com>
5071
5072 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add pathmax.
5073 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/pathmax.m4.
5074 * gnulib/aclocal.m4: Regenerate.
5075 * gnulib/config.in: Regenerate.
5076 * gnulib/configure: Regenerate.
5077 * gnulib/import/pathmax.h: New file.
5078 * gnulib/import/Makefile.am: Regenerate.
5079 * gnulib/import/Makefile.in: Regenerate.
5080 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
5081 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
5082 * gnulib/import/m4/pathmax.m4: New file.
5083
5084 2013-07-01 Pedro Alves <palves@redhat.com>
5085
5086 * configure.ac (GDBINIT): Define, depending on host.
5087 * go32-nat.c (init_go32_ops): Don't override gdbinit here.
5088 * top.c (PATH_MAX): Delete fallback definition.
5089 (GDBINIT_FILENAME): Delete.
5090 (gdbinit): Reimplement as const char array set to the GDBINIT
5091 string constant.
5092 * top.h (gdbinit): Make const.
5093 * configure, config.in: Regenerate.
5094
5095 2013-07-01 Pedro Alves <palves@redhat.com>
5096
5097 * cli/cli-cmds.c (source_script): Make 'file' parameter const.
5098 * cli/cli-cmds.h (source_script): Likewise.
5099 * exceptions.c (catch_command_errors_const): New function.
5100 * exceptions.h (catch_command_errors_const): Declare.
5101 * main.c (get_init_files): Make parameters const, and adjust.
5102 (captured_main): Make 'system_gdbinit', 'home_gdbinit' and
5103 'local_gdbinit' locals const. Adjust to use
5104 catch_command_errors_const.
5105 (print_gdb_help): Make 'system_gdbinit', 'home_gdbinit' and
5106 'local_gdbinit' locals const.
5107
5108 2013-07-01 Pedro Alves <palves@redhat.com>
5109
5110 * defs.h: Don't check HAVE_UNISTD_H before including <unistd.h>.
5111 (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO): Delete.
5112 * tracepoint.c: Don't check HAVE_UNISTD_H before including
5113 <unistd.h>.
5114
5115 2013-07-01 Pedro Alves <palves@redhat.com>
5116
5117 Import the "unistd" gnulib module.
5118 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add "unistd".
5119 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/off_t.m4,
5120 import/m4/ssize_t.m4, import/m4/sys_types_h.m4 and
5121 import/m4/unistd_h.m4.
5122 * gnulib/aclocal.m4: Renenerate.
5123 * gnulib/config.in: Renenerate.
5124 * gnulib/configure: Renenerate.
5125 * gnulib/import/Makefile.am: Renenerate.
5126 * gnulib/import/Makefile.in: Renenerate.
5127 * gnulib/import/m4/gnulib-cache.m4: Renenerate.
5128 * gnulib/import/m4/gnulib-comp.m4: Renenerate.
5129 * gnulib/import/m4/off_t.m4: New file.
5130 * gnulib/import/m4/ssize_t.m4: New file.
5131 * gnulib/import/m4/sys_types_h.m4: New file.
5132 * gnulib/import/m4/unistd_h.m4: New file.
5133 * gnulib/import/sys_types.in.h: New file.
5134 * gnulib/import/unistd.c: New file.
5135 * gnulib/import/unistd.in.h: New file.
5136
5137 2013-07-01 Pedro Alves <palves@redhat.com>
5138
5139 * utils.c <pathconf/_PC_PATH_MAX use>: Check if _PC_PATH_MAX is
5140 defined instead of checking HAVE_UNISTD_H.
5141
5142 2013-07-01 Pedro Alves <palves@redhat.com>
5143
5144 Reimport gnulib from scratch.
5145 * gnulib/Makefile.in (aclocal_m4_deps): Remove reference to
5146 import/m4/onceonly.m4.
5147 * gnulib/aclocal.m4: Renegerate.
5148 * gnulib/config.in: Renegerate.
5149 * gnulib/configure: Renegerate.
5150 * gnulib/import/Makefile.in: Renegerate.
5151 * gnulib/import/extra/update-copyright: Renegerate.
5152 * gnulib/import/m4/onceonly.m4: Delete.
5153
5154 2013-07-01 Pedro Alves <palves@redhat.com>
5155
5156 * tui/tui-regs.c (pagination_enabled): Delete declaration.
5157
5158 2013-06-30 Jan Kratochvil <jan.kratochvil@redhat.com>
5159
5160 Code cleanup.
5161 * remote.c (async_remote_interrupt_twice): Make it static.
5162 * remote.h (async_remote_interrupt_twice): Remove the declaration.
5163
5164 2013-06-29 Sergio Durigan Junior <sergiodj@redhat.com>
5165
5166 * ia64-linux-tdep.c: Include <ctype.h>.
5167 (ia64_linux_stap_is_single_operand): New function.
5168 (ia64_linux_init_abi): Initialize SystemTap related attributes.
5169
5170 2013-06-28 Tom Tromey <tromey@redhat.com>
5171
5172 * Makefile.in (version.c): Use version.in, not
5173 common/version.in.
5174 * common/create-version.sh: Likewise.
5175 * common/version.in: Move...
5176 * version.in: ...here.
5177
5178 2013-06-28 Pedro Alves <palves@redhat.com>
5179
5180 * infrun.c (set_observer_mode): Don't declare pagination_enabled
5181 here.
5182 * utils.h (pagination_enabled): Declare.
5183
5184 2013-06-28 Pedro Alves <palves@redhat.com>
5185
5186 * infrun.c (non_stop, non_stop_1, set_non_stop, show_non_stop):
5187 Move higher up in file.
5188
5189 2013-06-28 Tom Tromey <tromey@redhat.com>
5190
5191 * tracepoint.c (deprecated_readline_begin_hook)
5192 (deprecated_readline_hook, deprecated_readline_end_hook): Don't
5193 declare.
5194
5195 2013-06-28 Pedro Alves <palves@redhat.com>
5196
5197 PR tui/14880
5198 * tui/tui-regs.c (tui_get_register): Fetch value contents before
5199 checking if they're available.
5200 * value.c (value_available_contents_eq): Change comment.
5201 * value.h (value_available_contents_eq): Expand comment.
5202
5203 2013-06-27 Tom Tromey <tromey@redhat.com>
5204
5205 * target.c (find_run_target): Remove.
5206 * target.h (find_run_target): Remove.
5207
5208 2013-06-27 Tom Tromey <tromey@redhat.com>
5209
5210 * corelow.c (core_gdbarch): Now static.
5211
5212 2013-06-27 Tom Tromey <tromey@redhat.com>
5213
5214 * target.c (target_struct_index): Remove.
5215
5216 2013-06-27 Pedro Alves <palves@redhat.com>
5217
5218 * infrun.c: Remove comment describing the 'stepping over runtime
5219 loader dynamic symbol resolution code' mechanism; moved to
5220 gdbint.texinfo.
5221
5222 2013-06-27 Pedro Alves <palves@redhat.com>
5223
5224 * exceptions.c (catch_command_errors): Remove spurious space.
5225 * exceptions.h (catch_command_errors): Second parameter is "arg",
5226 not "command".
5227
5228 2013-06-27 Yao Qi <yao@codesourcery.com>
5229
5230 * common/create-version.sh: Update comments. Handle the case
5231 that TARGET_ALIAS is empty.
5232
5233 2013-06-26 Pedro Alves <palves@redhat.com>
5234
5235 * infrun.c (SOLIB_IN_DYNAMIC_LINKER): Delete macro and describing
5236 comment.
5237
5238 2013-06-26 Pedro Alves <palves@redhat.com>
5239
5240 * infrun.c: Update comments on stepping over runtime loader
5241 dynamic symbol resolution code.
5242
5243 2013-06-26 Sergio Durigan Junior <sergiodj@redhat.com>
5244
5245 * ax-gdb.h (union exp_element): Forward declare.
5246 * parser-defs.h: Include expression.h.
5247
5248 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
5249
5250 * mips-tdep.c (fetch_mips_16): Use unmake_compact_addr.
5251
5252 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
5253
5254 * tracepoint.c (trace_save): Extend tsave to save starttime, stoptime.
5255
5256 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
5257
5258 Fix trace-status to output proper start-time and stop-time.
5259 * tracepoint.c (trace_status_command): Fix type of printf arg to
5260 prevent improper type conversion.
5261 (trace_status_mi): Likewise.
5262
5263 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
5264
5265 * mips-tdep.c (mips_next_pc): Fix a typo.
5266
5267 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
5268
5269 * mips-tdep.c (micromips_scan_prologue): Fix a typo.
5270
5271 2013-06-26 Pedro Alves <pedro@codesourcery.com>
5272 Yao Qi <yao@codesourcery.com>
5273
5274 * mi/mi-cmds.c (mi_cmds): Register -trace-frame-collected.
5275 * mi/mi-cmds.h (mi_cmd_trace_frame_collected): Declare.
5276 * mi/mi-main.c (print_variable_or_computed): New function.
5277 (mi_cmd_trace_frame_collected): New function.
5278 * tracepoint.c (find_trace_state_variable_by_number): New.
5279 (struct traceframe_info): Move to tracepoint.h
5280 (struct collection_list): Likewise.
5281 (do_collect_symbol): Include locals and arguments in the
5282 collected variables list.
5283 (clear_collection_list): Clear wholly collected variables list
5284 and computed variables list.
5285 (append_exp): New function.
5286 (encode_actions_1): Include variables in the wholly
5287 collected variables list. Include memory ranges and
5288 full-fledged expressions in the computed expressions list.
5289 (encode_actions): Move some code to ...
5290 Return the cleanup chain.
5291 (encode_actions_rsp): ... here. New function.
5292 (get_traceframe_location, get_traceframe_info): Remove static.
5293 * tracepoint.h (struct memrange): Moved from tracepoint.c.
5294 (struct collection_list): Moved from tracepoint.c. Add two
5295 new fields 'wholly_collected' and 'computed'.
5296 (find_trace_state_variable_by_number): Declare.
5297 (encode_actions): Adjust declaration.
5298 (encode_actions_rsp): Declare.
5299 (get_traceframe_info, get_traceframe_location): Declare.
5300
5301 * NEWS: Mention new MI command -trace-frame-collected.
5302
5303 2013-06-26 Pedro Alves <pedro@codesourcery.com>
5304 Yao Qi <yao@codesourcery.com>
5305
5306 * ctf.c (ctf_traceframe_info): Push trace state variables
5307 present in the trace data into the traceframe info object.
5308 * breakpoint.c (DEF_VEC_I): Remove.
5309 * common/filestuff.c (DEF_VEC_I): Likewise.
5310 * dwarf2loc.c (DEF_VEC_I): Likewise.
5311 * mi/mi-main.c (DEF_VEC_I): Likewise.
5312 * common/gdb_vecs.h (DEF_VEC_I): Define vector for int.
5313 * features/traceframe-info.dtd: Add tvar element and its
5314 attributes.
5315 * tracepoint.c (free_traceframe_info): Free vector 'tvars'.
5316 (build_traceframe_info): Push trace state variables present in
5317 the trace data into the traceframe info object.
5318 (traceframe_info_start_tvar): New function.
5319 (tvar_attributes): New.
5320 (traceframe_info_children): Add "tvar" element.
5321 * tracepoint.h (struct traceframe_info) <tvars>: New field.
5322
5323 * NEWS: Mention the change in GDB and GDBserver.
5324
5325 2013-06-26 Pedro Alves <pedro@codesourcery.com>
5326 Yao Qi <yao@codesourcery.com>
5327
5328 * tracepoint.c (trace_dump_command): Move code to ...
5329 (get_traceframe_location): ... here. New.
5330
5331 2013-06-26 Pedro Alves <pedro@codesourcery.com>
5332 Yao Qi <yao@codesourcery.com>
5333
5334 * tracepoint.c (trace_dump_command): GDB emits an error
5335 instead of a warning when a traceframe is not selected.
5336
5337 2013-06-26 Pedro Alves <pedro@codesourcery.com>
5338 Yao Qi <yao@codesourcery.com>
5339
5340 * tracepoint.c (tracepoint_list, stepping_list): Remove.
5341 (clear_collection_list): Free fields 'aexpre_list' and 'list'
5342 in collection_list.
5343 (do_clear_collection_list, init_collection_list): New.
5344 (encode_actions): Add local variables 'tracepoint_list' and
5345 'stepping_list'. Call init_collection_list and make cleanup
5346 which calls do_clear_collection_list. Don't call
5347 clear_collection_list.
5348 (_initialize_tracepoint): Delete references to
5349 'tracepoint_list' and 'stepping_list'.
5350
5351 2013-06-25 Tom Tromey <tromey@redhat.com>
5352
5353 * common/create-version.sh (date): Use "$", not "$$" in sed
5354 expression.
5355
5356 2013-06-25 Kevin Buettner <kevinb@redhat.com>
5357
5358 * NEWS (New targets): Add entry for TI MSP430.
5359
5360 2013-06-25 Yao Qi <yao@codesourcery.com>
5361
5362 * remote.c (remote_start_remote): Move code to upload tsv
5363 earlier.
5364
5365 2013-06-25 Yao Qi <yao@codesourcery.com>
5366 Hui Zhu <hui@codesourcery.com>
5367 Pedro Alves <palves@redhat.com>
5368
5369 PR breakpoints/15075
5370 PR breakpoints/15434
5371 * breakpoint.c (bpstat_stop_status): Call
5372 b->ops->after_condition_true.
5373 (update_dprintf_command_list): Don't append "continue" command
5374 to the command list of dprintf breakpoint.
5375 (base_breakpoint_after_condition_true): New function.
5376 (base_breakpoint_ops): Add base_breakpoint_after_condition_true.
5377 (dprintf_after_condition_true): New function.
5378 (initialize_breakpoint_ops): Set dprintf_after_condition_true.
5379 * breakpoint.h (breakpoint_ops): Add after_condition_true.
5380
5381 2013-06-24 Kevin Buettner <kevinb@redhat.com>
5382
5383 * Makefile.in (ALL_TARGET_OBS): Add msp430-tdep.o.
5384 (ALLDEPFILES): Add msp430-tdep.c.
5385 * configure.tgt (msp430*-*-elf): New target.
5386 * msp430-tdep.c: New file.
5387
5388 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
5389
5390 * mips-tdep.c (mips_elf_make_msymbol_special): Handle MIPS16 and
5391 microMIPS synthetic symbols.
5392
5393 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
5394
5395 * objfiles.h (pc_in_section): New prototype.
5396 (in_plt_section): Remove name argument, replace prototype with
5397 static inline function.
5398 * mips-tdep.h: Include "objfiles.h".
5399 (in_mips_stubs_section): New function.
5400 * hppa-tdep.h (gdbarch_tdep): Remove name argument of
5401 in_solib_call_trampoline member.
5402 (hppa_in_solib_call_trampoline): Remove name argument.
5403 * objfiles.c (pc_in_section): New function.
5404 (in_plt_section): Remove function.
5405 * mips-linux-tdep.c: Include "objfiles.h".
5406 (mips_linux_in_dynsym_stub): Call in_mips_stubs_section. Remove
5407 name argument. Return 1 rather than the low 16-bit halfword of
5408 any instruction examined.
5409 (mips_linux_in_dynsym_resolve_code): Update
5410 mips_linux_in_dynsym_stub call accordingly.
5411 * mips-tdep.c (mips_stub_frame_sniffer): Use in_mips_stubs_section
5412 rather than an equivalent hand-coded sequence.
5413 * hppa-hpux-tdep.c (in_opd_section): Remove function.
5414 (hppa32_hpux_in_solib_call_trampoline): Remove name argument.
5415 (hppa64_hpux_in_solib_call_trampoline): Likewise.
5416 (hppa64_hpux_find_global_pointer): Use pc_in_section rather than
5417 in_opd_section.
5418 * hppa-tdep.c (hppa_stub_unwind_sniffer): Remove name argument
5419 on call to tdep->in_solib_call_trampoline.
5420 (hppa_in_solib_call_trampoline): Remove name argument, update
5421 according to in_plt_section change.
5422 (hppa_skip_trampoline_code): Update according to in_plt_section
5423 change.
5424 * aarch64-tdep.c (aarch64_stub_unwind_sniffer): Likewise.
5425 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code):
5426 Likewise.
5427 * arm-tdep.c (arm_stub_unwind_sniffer): Likewise.
5428 * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
5429 * hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
5430 * nios2-tdep.c (nios2_stub_frame_sniffer): Likewise.
5431 * nto-tdep.c (nto_relocate_section_addresses): Likewise.
5432 * s390-tdep.c (s390_stub_frame_sniffer): Likewise.
5433 * sh-tdep.c (sh_stub_unwind_sniffer): Likewise.
5434 * solib-dsbt.c (dsbt_in_dynsym_resolve_code): Likewise.
5435 * solib-frv.c (frv_in_dynsym_resolve_code): Likewise.
5436 * solib-svr4.c (svr4_in_dynsym_resolve_code): Likewise.
5437 * solib-target.c (solib_target_in_dynsym_resolve_code): Likewise.
5438 * sparc-tdep.c (sparc_analyze_prologue): Likewise.
5439 * tic6x-tdep.c (tic6x_stub_unwind_sniffer): Likewise.
5440
5441 2013-06-24 Joel Brobecker <brobecker@adacore.com>
5442
5443 * common/create-version.sh: Fix expansion of $host_alias
5444 and $target_alias in generation of HOST_NAME and TARGET_NAME
5445 (resp.).
5446
5447 2013-06-24 Tom Tromey <tromey@redhat.com>
5448
5449 * common/create-version.sh: New file.
5450 * Makefile.in (version.c): Use bfd/version.h, common/version.in,
5451 create-version.sh.
5452 (HFILES_NO_SRCDIR): Use common/version.h.
5453 * version.in: Move to ...
5454 * common/version.in: ... here. Replace date with "DATE".
5455 * version.h: Move to ...
5456 * common/version.h: ... here.
5457
5458 2013-06-21 Joel Brobecker <brobecker@adacore.com>
5459
5460 * gdb/gnulib/Makefile.in: Update date in copyright header.
5461 * gdb/gnulib/configure.ac: Ditto.
5462 * gdb/gnulib/update-gnulib.sh: Ditto.
5463
5464 2013-06-21 Joel Brobecker <brobecker@adacore.com>
5465
5466 * copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by
5467 "gdb/gnulib/import".
5468
5469 2013-06-21 Will Newton <will.newton@linaro.org>
5470
5471 * doublest.c (ldfrexp): Remove function.
5472 (convert_doublest_to_floatformat): Call frexpl instead of
5473 ldfrexp.
5474
5475 2013-06-21 Will Newton <will.newton@linaro.org>
5476
5477 * gnulib/update-gnulib.sh(IMPORTED_GNULIB_MODULES): Add frexpl.
5478 * gnulib/aclocal.m4: Regenerate.
5479 * gnulib/config.in: Regenerate.
5480 * gnulib/configure: Regenerate.
5481 * gnulib/import/Makefile.am: Update.
5482 * gnulib/import/Makefile.in: Update.
5483 * gnulib/import/m4/gnulib-cache.m4: Update.
5484 * gnulib/import/m4/gnulib-comp.m4: Update.
5485 * gnulib/import/float+.h: Import.
5486 * gnulib/import/float.c: Import.
5487 * gnulib/import/float.in.h: Import.
5488 * gnulib/import/fpucw.h: Import.
5489 * gnulib/import/frexp.c: Import.
5490 * gnulib/import/frexpl.c: Import.
5491 * gnulib/import/isnan.c: Import.
5492 * gnulib/import/isnand-nolibm.h: Import.
5493 * gnulib/import/isnand.c: Import.
5494 * gnulib/import/isnanl-nolibm.h: Import.
5495 * gnulib/import/isnanl.c: Import.
5496 * gnulib/import/itold.c: Import.
5497 * gnulib/import/m4/exponentd.m4: Import.
5498 * gnulib/import/m4/exponentl.m4: Import.
5499 * gnulib/import/m4/float_h.m4: Import.
5500 * gnulib/import/m4/fpieee.m4: Import.
5501 * gnulib/import/m4/frexp.m4: Import.
5502 * gnulib/import/m4/frexpl.m4: Import.
5503 * gnulib/import/m4/isnand.m4: Import.
5504 * gnulib/import/m4/isnanl.m4: Import.
5505 * gnulib/import/m4/math_h.m4: Import.
5506 * gnulib/import/math.c: Import.
5507 * gnulib/import/math.in.h: Import.
5508
5509 2013-06-21 Jan Kratochvil <jan.kratochvil@redhat.com>
5510
5511 * common/linux-btrace.c (cpu_supports_btrace): Remove variable vendor,
5512 replace strcmp with signature_INTEL_ebx, signature_INTEL_ecx and
5513 signature_INTEL_edx comparisons.
5514
5515 2013-06-20 Doug Evans <dje@google.com>
5516
5517 symtab/15652
5518 * dwarf2read.c (try_open_dwop_file): New arg search_cwd.
5519 All callers updated.
5520 (open_dwp_file): If we can't find the dwp file, search the basename
5521 in debug-file-directory.
5522
5523 * dwarf2read.c (struct dwp_file): Fix comment.
5524 (open_and_init_dwp_file): Set dwp_file->name to bfd's file name.
5525
5526 * source.c (openp): Document OPF_TRY_CWD_FIRST+OPF_SEARCH_IN_PATH
5527 better.
5528
5529 2013-06-20 Yao Qi <yao@codesourcery.com>
5530
5531 * breakpoint.c (create_breakpoint): Fix code indentation.
5532
5533 2013-06-20 Yao Qi <yao@codesourcery.com>
5534
5535 * breakpoint.c (create_breakpoints_sal_default): Remove
5536 parameter 'lsal'. Update declaration.
5537 (bkpt_create_breakpoints_sal): Caller update.
5538 (tracepoint_create_breakpoints_sal): Likewise.
5539
5540 2013-06-20 Pedro Alves <pedro@codesourcery.com>
5541 Yao Qi <yao@codesourcery.com>
5542
5543 * NEWS: Mention the new option '--skip-unavailable' of command
5544 -data-list-register-values.
5545 * mi/mi-main.c (mi_cmd_data_list_register_values): Accept the
5546 --skip-unavailable option. Adjust to use output_register.
5547 (output_register): Add new 'skip_unavailable' parameter.
5548 Handle it.
5549
5550 2013-06-19 Mike Frysinger <vapier@gentoo.org>
5551
5552 * Makefile.in (HFILES_NO_SRCDIR): Add common/i386-cpuid.h and
5553 common/i386-gcc-cpuid.h.
5554 * common/i386-cpuid.h: New wrapper header around i386-gcc-cpuid.h.
5555 * common/i386-gcc-cpuid.h: Rename from testsuite/gdb.arch/i386-cpuid.h.
5556 Copy the latest version from upstream gcc.
5557 * common/linux-btrace.c: Include i386-cpuid.h.
5558 (intel_supports_btrace): Delete x86 ifdefs and replace inline asm with
5559 call to i386_cpuid.
5560 (cpu_supports_btrace): Likewise.
5561 * go32-nat.c: Include i386-cpuid.h.
5562 (go32_sysinfo): Add (disabled) calls to i386_cpuid with comments.
5563
5564 2013-06-19 Doug Evans <dje@google.com>
5565
5566 * symfile.c (symfile_bfd_open): Delete unnecessary declaration.
5567 (get_section_index): Ditto.
5568
5569 2013-06-19 Tom Tromey <tromey@redhat.com>
5570
5571 * breakpoint.c (_initialize_breakpoint): Remove trailing \n from
5572 "dprintf" help.
5573
5574 2013-06-18 Doug Evans <dje@google.com>
5575
5576 * dwarf2read.c (dw2_symtab_iter_next): Check value of cu_index
5577 before using it.
5578 (dw2_expand_symtabs_matching): Fix symbol kind validity check.
5579 Move test of cu_index closer to use. Print complaint if cu_index
5580 is bad.
5581
5582 2013-06-18 Joel Brobecker <brobecker@adacore.com>
5583
5584 * machoread.c (oso_vector): Delete this global.
5585 (macho_register_oso): Add new parameter "oso_vector_ptr".
5586 Use it instead of the "oso_vector" global.
5587 (macho_symtab_read, macho_symfile_read_all_oso): Likewise.
5588 (macho_symfile_read): Use a local oso_vector, to be free'ed
5589 at the end of this function, in place of the old "oso_vector"
5590 global. Update various function calls accordingly. Use one
5591 single cleanup chain for the entire function.
5592
5593 2013-06-18 Joel Brobecker <brobecker@adacore.com>
5594
5595 * dwarf2read.c (dwarf2_per_objfile_free): Replace uses of
5596 DWARF2_PER_OBJFILE by uses of DATA instead.
5597
5598 2013-06-18 Tom Tromey <tromey@redhat.com>
5599
5600 * break-catch-sig.c (signal_catchpoint_explains_signal): Add 'sig'
5601 argument.
5602 * breakpoint.c (bpstat_explains_signal): Add 'sig' argument.
5603 Special case signals other than GDB_SIGNAL_TRAP.
5604 (explains_signal_watchpoint): New function.
5605 (base_breakpoint_explains_signal): Add 'sig' argument.
5606 (initialize_breakpoint_ops): Set 'explains_signal' method for
5607 watchpoints.
5608 * breakpoint.h (struct breakpoint_ops) <explains_signal>: Add
5609 signal argument.
5610 (bpstat_explains_signal): Likewise.
5611 * infrun.c (handle_syscall_event, handle_inferior_event): Update.
5612
5613 2013-06-18 Tom Tromey <tromey@redhat.com>
5614
5615 * python/py-inferior.c (gdbpy_selected_inferior): Don't incref.
5616
5617 2013-06-18 Tom Tromey <tromey@redhat.com>
5618
5619 * python/python.c (finish_python_initialization): Decref
5620 'pythondir' on failure path as well.
5621
5622 2013-06-18 Tom Tromey <tromey@redhat.com>
5623
5624 PR symtab/15391:
5625 * dwarf2loc.c (read_pieced_value): Truncate this_size_bits
5626 after taking bits_to_skip into account. Sign extend byte_offset.
5627 * utils.h (gdb_sign_extend): Declare.
5628 * utils.c (gdb_sign_extend): New function.
5629
5630 2013-06-18 Jan Kratochvil <jan.kratochvil@redhat.com>
5631
5632 * dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.
5633
5634 2013-06-17 Pierre Muller <muller@sourceware.org>
5635
5636 * corelow.c (core_open): Print GDB signal name instead of target
5637 signal number.
5638
5639 2013-06-17 Mike Frysinger <vapier@gentoo.org>
5640
5641 * .gitignore: Add /gcore.
5642
5643 2013-06-13 Doug Evans <dje@google.com>
5644
5645 * dwarf2read.c (try_open_dwop_file): Work around behaviour of
5646 OPF_TRY_CWD_FIRST to not search path if the file contains a '/'.
5647
5648 2013-06-12 Phil Muldoon <pmuldoon@redhat.com>
5649
5650 * stack.c (backtrace_command_1): Fix indentation.
5651
5652 2013-06-11 Joel Brobecker <brobecker@adacore.com>
5653
5654 * window-nat.c (thread_rec): Add missing empty line after
5655 local variable declaration.
5656
5657 2013-06-11 Joel Brobecker <brobecker@adacore.com>
5658
5659 * windows-nat.c (thread_rec): Revert format used to print
5660 error code returned by SuspendThread from %d back to %u.
5661
5662 2013-06-11 Joel Brobecker <brobecker@adacore.com>
5663
5664 * windows-nat.c (windows_continue): Add "0x" prefix for thread
5665 ID in debug trace.
5666 (get_windows_debug_event): Likewise, for all debug traces.
5667
5668 2013-06-11 Joel Brobecker <brobecker@adacore.com>
5669
5670 * window-nat.c (thread_rec): Add thread ID in SuspendThread
5671 warning message.
5672
5673 2013-06-08 Pedro Alves <pedro@codesourcery.com>
5674 Yao Qi <yao@codesourcery.com>
5675
5676 * mi/mi-main.c (get_register): Remove declaration.
5677 (output_register): Declare.
5678 (mi_cmd_data_list_register_values): Remove local variable
5679 'tuple_cleanup'. Move some code into output_register.
5680 (get_register): Renamed to ...
5681 (output_register): ... this. Output the register's
5682 "number" ui_out tuple here.
5683
5684 2013-06-07 Pedro Alves <palves@redhat.com>
5685
5686 * darwin-nat.c: Fix formating in copyright header.
5687 * darwin-nat.h: Likewise.
5688 * gnu-nat.c: Likewise.
5689 * machoread.c: Likewise.
5690
5691 2013-06-07 Pedro Alves <palves@redhat.com>
5692
5693 PR server/14823
5694 * regformats/regdat.sh: Output #include tdesc.h. Make globals
5695 static. Output a global target description pointer.
5696 (init_registers_${name}): Adjust to initialize a
5697 target description structure.
5698
5699 2013-06-07 Will Newton <will.newton@linaro.org>
5700
5701 * printcmd.c (build_address_symbolic): Call
5702 gdbarch_addr_bits_remove for text minimal symbols.
5703
5704 2013-06-07 Will Newton <will.newton@linaro.org>
5705
5706 * MAINTAINERS: Add myself to Write After Approval.
5707
5708 2013-06-07 Yao Qi <yao@codesourcery.com>
5709
5710 * tracepoint.c (start_tracing): Move code to ...
5711 (trace_reset_local_state): ... here. New.
5712 (disconnect_tracing): Don't call set_current_traceframe,
5713 set_tracepoint_num, and set_traceframe_context. Call
5714 trace_reset_local_state instead.
5715 (tfile_close): Call trace_reset_local_state.
5716 * ctf.c (ctf_close): Likewise.
5717 * remote.c (remote_close): Likewise.
5718 * tracepoint.h (trace_reset_local_state): Declare.
5719
5720 2013-06-06 Doug Evans <dje@google.com>
5721
5722 * dwarf2read.c: Whitespace fixes for DWP file format documentation,
5723 and fix header docs.
5724
5725 2013-06-05 Doug Evans <dje@google.com>
5726 Keith Seitz <keiths@redhat.com>
5727
5728 PR 15519
5729 * cp-namespace.c (find_symbol_in_baseclass): Call
5730 cp_lookup_symbol_in_namespace instead of cp_lookup_symbol_namespace.
5731 Check result of call to lookup_symbol_static.
5732 Call lookup_static_symbol_aux unconditionally.
5733 Call check_typedef on base types before accessing them.
5734 (cp_lookup_nested_symbol): Fix comment.
5735
5736 2013-06-05 Luis Machado <lgustavo@codesourcery.com>
5737
5738 * gnu-v3-abi.c (gnuv3_skip_trampoline): Handle thunk
5739 minimal symbols pointing to function descriptors.
5740
5741 2013-06-05 Tom Tromey <tromey@redhat.com>
5742
5743 * python/py-utils.c (gdb_pymodule_addobject): Cast away const.
5744
5745 2013-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
5746 Pedro Alves <palves@redhat.com>
5747
5748 * remote.c (remote_wait_as): Restore signal handler before returning
5749 when GDB gets a notification.
5750
5751 2013-06-04 Gary Benson <gbenson@redhat.com>
5752
5753 PR 2328
5754 * breakpoint.h (handle_solib_event): Moved function declaration
5755 to solib.h.
5756 * breakpoint.c (handle_solib_event): Moved function to solib.c.
5757 (bpstat_stop_status): Pass new argument to handle_solib_event.
5758 * solib.h (update_solib_breakpoints): New function declaration.
5759 (handle_solib_event): Moved function declaration from
5760 breakpoint.h.
5761 * solib.c (update_solib_breakpoints): New function.
5762 (handle_solib_event): Moved function from breakpoint.c.
5763 Updated to call solib_ops->handle_event if not NULL.
5764 * solist.h (target_so_ops): New fields "update_breakpoints" and
5765 "handle_event".
5766 * infrun.c (set_stop_on_solib_events): New function.
5767 (_initialize_infrun): Use the above for "set
5768 stop-on-solib-events".
5769 (handle_inferior_event): Pass new argument to handle_solib_event.
5770 * solib-svr4.c (probe.h): New include.
5771 (svr4_free_library_list): New forward declaration.
5772 (probe_action): New enum.
5773 (probe_info): New struct.
5774 (probe_info): New static variable.
5775 (NUM_PROBES): New definition.
5776 (svr4_info): New fields "using_xfer", "probes_table" and
5777 "solib_list".
5778 (free_probes_table): New function.
5779 (free_solib_list): New function.
5780 (svr4_pspace_data_cleanup): Free probes table and solib list.
5781 (svr4_copy_library_list): New function.
5782 (svr4_current_sos_via_xfer_libraries): New parameter "annex".
5783 (svr4_read_so_list): New parameter "prev_lm".
5784 (svr4_current_sos_direct): Renamed from "svr4_current_sos".
5785 (svr4_current_sos): New function.
5786 (probe_and_action): New struct.
5787 (hash_probe_and_action): New function.
5788 (equal_probe_and_action): Likewise.
5789 (register_solib_event_probe): Likewise.
5790 (solib_event_probe_at): Likewise.
5791 (solib_event_probe_action): Likewise.
5792 (solist_update_full): Likewise.
5793 (solist_update_incremental): Likewise.
5794 (disable_probes_interface_cleanup): Likewise.
5795 (svr4_handle_solib_event): Likewise.
5796 (svr4_update_solib_event_breakpoint): Likewise.
5797 (svr4_update_solib_event_breakpoints): Likewise.
5798 (svr4_create_solib_event_breakpoints): Likewise.
5799 (enable_break): Free probes table before creating breakpoints.
5800 Use svr4_create_solib_event_breakpoints to create breakpoints.
5801 (svr4_solib_create_inferior_hook): Free the solib list.
5802 (_initialize_svr4_solib): Initialise
5803 svr4_so_ops.handle_solib_event and svr4_so_ops.update_breakpoints.
5804
5805 2013-06-04 Gary Benson <gbenson@redhat.com>
5806
5807 * target.h (target_ops): New field
5808 "to_augmented_libraries_svr4_read".
5809 (target_augmented_libraries_svr4_read): New macro.
5810 * target.c (update_current_target): Handle
5811 to_augmented_libraries_svr4_read.
5812 * remote.c (remote_state): New field
5813 "augmented_libraries_svr4_read".
5814 (remote_augmented_libraries_svr4_read_feature): New function.
5815 (remote_protocol_features): Add entry for
5816 "augmented-libraries-svr4-read".
5817 (remote_augmented_libraries_svr4_read): New function.
5818 (init_remote_ops): Initialize
5819 remote_ops.to_augmented_libraries_svr4_read.
5820
5821 2013-06-04 Gary Benson <gbenson@redhat.com>
5822
5823 * NEWS: Update.
5824
5825 2013-06-04 Gary Benson <gbenson@redhat.com>
5826
5827 * objfiles.h (inhibit_section_map_updates): New function
5828 declaration.
5829 (resume_section_map_updates): Likewise.
5830 (resume_section_map_updates_cleanup): Likewise.
5831 * objfiles.c (objfile_pspace_info): Removed field
5832 "objfiles_changed_p". New fields "new_objfiles_available",
5833 "section_map_dirty" and "inhibit_updates".
5834 (allocate_objfile): Set new_objfiles_available.
5835 (free_objfile): Set section_map_dirty.
5836 (objfile_relocate1): Likewise.
5837 (in_plt_section): Likewise.
5838 (find_pc_section): Update the conditions under which the
5839 section map will be updated.
5840 (inhibit_section_map_updates): New function.
5841 (resume_section_map_updates): Likewise.
5842 (resume_section_map_updates_cleanup): Likewise.
5843
5844 2013-06-04 Gary Benson <gbenson@redhat.com>
5845
5846 * probe.h (get_probe_argument_count): New declaration.
5847 (evaluate_probe_argument): Likewise.
5848 * probe.c (get_probe_argument_count): New function.
5849 (evaluate_probe_argument): Likewise.
5850 (probe_safe_evaluate_at_pc): Use the above new functions.
5851
5852 2013-06-04 Alan Modra <amodra@gmail.com>
5853
5854 * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
5855 * rs6000-tdep.c (read_insn): Add frame param, don't assume big-endian.
5856 (ppc_insns_match_pattern): Add frame param. Avoid multiple
5857 target mem reads on optional insns.
5858 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Update
5859 ppc_insns_match_pattern calls.
5860 * ppc64-tdep.c (ppc64_standard_linkage2, ppc64_standard_linkage3):
5861 Add match for power7 thread safety insns, and new order of
5862 std 2,40(1) insn. Correct code shown for _dl_runtime_resolve
5863 invocation in comment, and update rest of comment.
5864 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN,
5865 PPC64_STANDARD_LINKAGE3_LEN): Delete.
5866 (ppc64_standard_linkage2_target): Update insn offsets.
5867 (ppc64_skip_trampoline_code): Use a single insn buffer. Match newer
5868 stubs first. Update calls.
5869
5870 2013-06-04 Yao Qi <yao@codesourcery.com>
5871
5872 * solib.c (solib_find): Don't need dir separator if path has
5873 drive spec.
5874
5875 2013-06-03 Joel Brobecker <brobecker@adacore.com>
5876
5877 Revert (indirectly causes a SIGSEGV):
5878 * machoread.c (macho_symfile_read): Assign first cleanup to
5879 'back_to'.
5880
5881 2013-06-03 Yao Qi <yao@codesourcery.com>
5882
5883 * mi/mi-cmd-var.c (mi_no_values, mi_simple_values): Move to
5884 mi-parse.c. Make them static.
5885 (mi_all_values): Likewise.
5886 (mi_parse_values_option): Move to mi-parse.c. Rename it to
5887 mi_parse_print_values. Make it external.
5888 * mi/mi-cmds.h (mi_no_values, mi_simple_values, mi_all_values):
5889 Remove the declarations.
5890 * mi/mi-parse.c (mi_parse_print_values): Moved from mi-cmd-var.c.
5891 * mi/mi-parse.h (mi_parse_print_values): Declare.
5892 * mi/mi-cmd-stack.c: Include mi-parse.h.
5893 (parse_print_values): Remove
5894 (mi_cmd_stack_list_locals): Call mi_parse_print_values instead
5895 of parse_print_values.
5896 (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Likewise.
5897
5898 2013-05-31 Pedro Alves <pedro@codesourcery.com>
5899 Yao Qi <yao@codesourcery.com>
5900
5901 * tracepoint.c (all_tracepoint_actions_and_cleanup): Declare.
5902 (encode_actions): Move code to ...
5903 (all_tracepoint_actions_and_cleanup): ... here. New.
5904 (trace_dump_command): Likewise.
5905
5906 2013-05-30 Tom Tromey <tromey@redhat.com>
5907
5908 * symmisc.c (maintenance_expand_symtabs): Call do_cleanups.
5909
5910 2013-05-30 Tom Tromey <tromey@redhat.com>
5911
5912 * xml-support.c (gdb_xml_create_parser_and_cleanup): Rename from
5913 gdb_xml_create_parser_and_cleanup_1. Return a cleanup. Remove
5914 'old_chain' argument. Add 'parser_result' argument.
5915 (gdb_xml_create_parser_and_cleanup): Remove old version.
5916 (gdb_xml_parse_quick): Update.
5917 (xml_process_xincludes): Update.
5918 * xml-support.h (gdb_xml_create_parser_and_cleanup): Don't
5919 declare.
5920
5921 2013-05-30 Tom Tromey <tromey@redhat.com>
5922
5923 * probe.c (collect_probes): Check arguments for NULL before
5924 calling compile_rx_or_error.
5925 * utils.c (compile_rx_or_error): Require 'rx' to be non-NULL.
5926 Remove NULL return.
5927
5928 2013-05-30 Tom Tromey <tromey@redhat.com>
5929
5930 * infrun.c (adjust_pc_after_break): Introduce an outer null
5931 cleanup.
5932
5933 2013-05-30 Tom Tromey <tromey@redhat.com>
5934
5935 * mi/mi-cmd-var.c (varobj_update_one): Add an outer null cleanup.
5936
5937 2013-05-30 Tom Tromey <tromey@redhat.com>
5938
5939 * cli/cli-script.c (read_command_lines_1): Use a null cleanup
5940 for 'old_chain'. Do not check 'head' before processing
5941 cleanups.
5942
5943 2013-05-30 Tom Tromey <tromey@redhat.com>
5944
5945 * mi/mi-cmd-stack.c (list_arg_or_local): Remove
5946 "cleanup_tuple".
5947
5948 2013-05-30 Tom Tromey <tromey@redhat.com>
5949
5950 * dbxread.c (dbx_read_symtab): Declare 'back_to' in a more
5951 inner scope. Unconditionally call do_cleanups.
5952
5953 2013-05-30 Tom Tromey <tromey@redhat.com>
5954
5955 * source.c (find_and_open_source): Call do_cleanups.
5956
5957 2013-05-30 Tom Tromey <tromey@redhat.com>
5958
5959 * linux-thread-db.c (thread_db_load_search): Unconditionally
5960 call do_cleanups.
5961
5962 2013-05-30 Tom Tromey <tromey@redhat.com>
5963
5964 * solib-aix.c (solib_aix_bfd_open): Don't use a null cleanup
5965 for 'cleanup'; instead use a later one.
5966
5967 2013-05-30 Tom Tromey <tromey@redhat.com>
5968
5969 * python/py-breakpoint.c (bppy_get_commands): Use
5970 explicit, unconditional return.
5971 * python/py-frame.c (frapy_read_var): Likewise.
5972 * python/python.c (gdbpy_decode_line): Likewise.
5973
5974 2013-05-30 Tom Tromey <tromey@redhat.com>
5975
5976 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
5977 do_cleanups on all return paths.
5978
5979 2013-05-30 Tom Tromey <tromey@redhat.com>
5980
5981 * top.c (execute_command): Discard 'cleanup_if_error' cleanups.
5982
5983 2013-05-30 Tom Tromey <tromey@redhat.com>
5984
5985 * stabsread.c (read_struct_type): Call do_cleanups along
5986 all return paths.
5987
5988 2013-05-30 Maciej W. Rozycki <macro@codesourcery.com>
5989
5990 * mips-linux-tdep.c: Adjust formatting throughout.
5991
5992 2013-05-30 Tom Tromey <tromey@redhat.com>
5993
5994 * mipsread.c (read_alphacoff_dynamic_symtab): Call do_cleanups
5995 along all return paths.
5996
5997 2013-05-30 Tom Tromey <tromey@redhat.com>
5998
5999 * symfile.c (find_separate_debug_file): Call do_cleanups
6000 along all return paths.
6001
6002 2013-05-30 Tom Tromey <tromey@redhat.com>
6003
6004 * symtab.c (search_symbols): Introduce a null cleanup for
6005 'retval_chain'.
6006
6007 2013-05-30 Tom Tromey <tromey@redhat.com>
6008
6009 * python/py-value.c (valpy_binop): Call do_cleanups before
6010 exiting loop.
6011
6012 2013-05-30 Tom Tromey <tromey@redhat.com>
6013
6014 * python/py-prettyprint.c (print_children): Remove extra
6015 do_cleanups call.
6016
6017 2013-05-30 Tom Tromey <tromey@redhat.com>
6018
6019 * python/py-frame.c (frapy_read_var): Call do_cleanups along
6020 all return paths.
6021
6022 2013-05-30 Tom Tromey <tromey@redhat.com>
6023
6024 * python/py-breakpoint.c (bppy_get_commands): Call do_cleanups
6025 along all return paths.
6026
6027 2013-05-30 Tom Tromey <tromey@redhat.com>
6028
6029 * cli/cli-logging.c (set_logging_redirect): Unconditionally
6030 call do_cleanups.
6031
6032 2013-05-30 Tom Tromey <tromey@redhat.com>
6033
6034 * varobj.c (c_value_of_root): Call do_cleanups along all
6035 return paths.
6036
6037 2013-05-30 Tom Tromey <tromey@redhat.com>
6038
6039 * tracepoint.c (trace_dump_command): Unconditionally call
6040 do_cleanups.
6041
6042 2013-05-30 Tom Tromey <tromey@redhat.com>
6043
6044 * breakpoint.c (output_thread_groups, parse_cmd_to_aexpr): Call
6045 do_cleanups earlier.
6046
6047 2013-05-30 Tom Tromey <tromey@redhat.com>
6048
6049 * machoread.c (macho_symfile_read): Assign first cleanup to
6050 'back_to'.
6051
6052 2013-05-30 Tom Tromey <tromey@redhat.com>
6053
6054 * m32r-rom.c (m32r_load): Call do_cleanups at all returns.
6055
6056 2013-05-30 Tom Tromey <tromey@redhat.com>
6057
6058 * mi/mi-main.c (list_available_thread_groups): Call do_cleanups.
6059
6060 2013-05-30 Tom Tromey <tromey@redhat.com>
6061
6062 * inf-ptrace.c (inf_ptrace_create_inferior): Unconditionally
6063 call discard_cleanups.
6064 (inf_ptrace_attach): Likewise.
6065
6066 2013-05-30 Tom Tromey <tromey@redhat.com>
6067
6068 * remote-mips.c (mips_exit_debug): Call do_cleanups on all
6069 return paths.
6070 (mips_initialize): Likewise.
6071 (common_open): Call do_cleanups.
6072
6073 2013-05-30 Tom Tromey <tromey@redhat.com>
6074
6075 * utils.c (internal_vproblem): Call do_cleanups.
6076
6077 2013-05-30 Tom Tromey <tromey@redhat.com>
6078
6079 * linespec.c (find_linespec_symbols): Don't reassign to 'cleanup'.
6080
6081 2013-05-30 Tom Tromey <tromey@redhat.com>
6082
6083 * cli/cli-script.c (setup_user_args): Don't return after error.
6084
6085 2013-05-30 Tom Tromey <tromey@redhat.com>
6086
6087 * somread.c (som_symtab_read): Call do_cleanups.
6088
6089 2013-05-30 Tom Tromey <tromey@redhat.com>
6090
6091 * printcmd.c (print_command_1): Unconditionally call do_cleanups.
6092
6093 2013-05-30 Tom Tromey <tromey@redhat.com>
6094
6095 * cli/cli-cmds.c (cd_command, alias_command): Call do_cleanups.
6096 * cli/cli-dump.c (restore_binary_file): Call do_cleanups.
6097 * interps.c (interpreter_exec_cmd): Call do_cleanups.
6098 * source.c (show_substitute_path_command): Call do_cleanups.
6099 (unset_substitute_path_command, set_substitute_path_command):
6100 Likewise.
6101 * symfile.c (load_command): Call do_cleanups.
6102
6103 2013-05-30 Tom Tromey <tromey@redhat.com>
6104
6105 * contrib/cleanup_check.py: New file.
6106 * contrib/gcc-with-excheck: Add option parsing.
6107
6108 2013-05-30 Joel Brobecker <brobecker@adacore.com>
6109
6110 * windows-nat.c (windows_delete_thread): Add missing space
6111 in cast expression.
6112
6113 2013-05-30 Hafiz Abid Qadeer <abidh@codesourcery.com>
6114
6115 * inferior.c (top level): Include tilde.h.
6116 (add_inferior_command): Call tilde_expand on the value of 'exec'
6117 argument.
6118
6119 2013-05-30 Pedro Alves <pedro@codesourcery.com>
6120 Yao Qi <yao@codesourcery.com>
6121
6122 * tracepoint.c (encode_actions_1): Remove parameter 't'.
6123 Caller update.
6124 (encode_actions): Likewise.
6125 * remote.c (remote_download_tracepoint): Caller update.
6126 * tracepoint.h (encode_actions): Update declaration.
6127
6128 2013-05-30 Pedro Alves <palves@redhat.com>
6129
6130 * python/python-internal.h (gdb_Py_DECREF): Cast OP to PyObject
6131 pointer.
6132
6133 2013-05-30 Yao Qi <yao@codesourcery.com>
6134
6135 * remote.c (remote_check_symbols): Remove unused parameter
6136 'objfile'.
6137 Declaration update.
6138 (remote_start_remote, remote_new_objfile): Caller update.
6139
6140 2013-05-30 Yao Qi <yao@codesourcery.com>
6141
6142 * mi/mi-cmds.c (mi_cmds): Define MI command
6143 '-exec-arguments' by macro DEF_MI_CMD_CLI_1 instead of
6144 DEF_MI_CMD_CLI.
6145
6146 2013-05-29 Pedro Alves <palves@redhat.com>
6147
6148 * remote.c (remote_insert_breakpoint, remote_remove_breakpoint)
6149 (remote_insert_watchpoint, remote_remove_watchpoint)
6150 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
6151 (remote_verify_memory, compare_sections_command)
6152 (remote_search_memory): Set the general process/thread on the
6153 remote side.
6154
6155 2013-05-29 Pedro Alves <palves@redhat.com>
6156
6157 * aarch64-tdep.c: Don't include "features/aarch64-without-fpu.c".
6158 (_initialize_aarch64_tdep): Don't call
6159 initialize_tdesc_aarch64_without_fpu.
6160 * features/Makefile (WHICH): Remove reference to
6161 aarch64-without-fpu.
6162 * features/aarch64-without-fpu.c: Delete file.
6163 * regformats/aarch64-without-fpu.dat: Delete file.
6164
6165 2013-05-28 Yao Qi <yao@codesourcery.com>
6166
6167 * tracepoint.c (stringify_collection_list): Remove parameter
6168 'string'.
6169 (encode_actions): Caller update. Remove local variables.
6170
6171 2013-05-24 Yao Qi <yao@codesourcery.com>
6172
6173 * tracepoint.c (TFILE_PID): Remove.
6174 (tfile_open): Don't add thread and inferior.
6175 (tfile_close): Don't set 'inferior_ptid'. Don't call
6176 exit_inferior_silent.
6177 (tfile_thread_alive): Remove.
6178 (init_tfile_ops): Don't set field 'to_thread_alive' of
6179 tfile_ops.
6180
6181 2013-05-23 Doug Evans <dje@google.com>
6182
6183 * contrib/cc-with-tweaks.sh (-p): Handle no dwo files.
6184
6185 2013-05-23 Pedro Alves <palves@redhat.com>
6186
6187 * common/filestuff.c [USE_WIN32API]: Define HAVE_SOCKETS.
6188 [HAVE_SYS_SOCKET_H]: Define HAVE_SOCKETS.
6189 (socket_mark_cloexec, gdb_socketpair_cloexec, gdb_socket_cloexec):
6190 Only define if HAVE_SOCKETS is defined.
6191 * configure.ac: Check for sys/socket.h.
6192 * config.in, configure: Regenerate.
6193
6194 2013-05-23 Pedro Alves <palves@redhat.com>
6195
6196 * dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
6197 (open_and_init_dwp_file): Use %s/pulongest instead of %u for
6198 printing uint32_t variables.
6199
6200 2013-05-23 Pedro Alves <palves@redhat.com>
6201
6202 * NEWS: Mention GDBserver range stepping support.
6203
6204 2013-05-23 Yao Qi <yao@codesourcery.com>
6205 Pedro Alves <palves@redhat.com>
6206
6207 * gdbthread.h (struct thread_control_state) <may_range_step>: New
6208 field.
6209 * infcmd.c (step_once, until_next_command): Enable range stepping.
6210 * infrun.c (displaced_step_prepare): Disable range stepping.
6211 (resume): Disable range stepping if stepping over a breakpoint or
6212 we have software watchpoints. If range stepping is enabled,
6213 assert the thread is in the stepping range.
6214 (clear_proceed_status_thread): Clear may_range_step.
6215 (handle_inferior_event): Disable range stepping as soon as we know
6216 the thread that hit the event. Re-enable it whenever we're going
6217 to step with a step range.
6218 * remote.c (struct vCont_action_support) <r>: New field.
6219 (use_range_stepping): New global.
6220 (remote_vcont_probe): Handle 'r' action.
6221 (append_resumption): Append an 'r' action if the thread may range
6222 step.
6223 (show_range_stepping): New function.
6224 (set_range_stepping): New function.
6225 (_initialize_remote): Call add_setshow_boolean_cmd to register the
6226 'set range-stepping' and 'show range-stepping' commands.
6227 * NEWS: Mention range stepping, the new vCont;r action, and the
6228 new "set/show range-stepping" commands.
6229
6230 2013-05-23 Yao Qi <yao@codesourcery.com>
6231 Pedro Alves <palves@redhat.com>
6232
6233 * remote.c (struct vCont_action_support): New struct.
6234 (struct remote_state) <support_vCont_t>: Remove field.
6235 <vCont_actions_support>: New field.
6236 (remote_vcont_probe, remote_stop_ns): Update.
6237
6238 2013-05-23 Yao Qi <yao@codesourcery.com>
6239 Pedro Alves <palves@redhat.com>
6240
6241 * gdbthread.h (pc_in_thread_step_range): New declaration.
6242 * thread.c (pc_in_thread_step_range): New function.
6243 * infrun.c (handle_inferior_event): Use it.
6244
6245 2013-05-23 Joel Brobecker <brobecker@adacore.com>
6246
6247 * mi/mi-cmd-break.c (mi_argv_to_format): Use xsnprintf instead
6248 of sprintf.
6249
6250 2013-05-22 Keith Seitz <keiths@redhat.com>
6251
6252 * ada-lang.c (is_known_support_routine): Add explicit free of
6253 'func_name' from find_frame_funname.
6254 (ada_unhandled_exception_name_addr_from_raise): Add cleanups
6255 for func_name from find_frame_funname.
6256 * python/py-frame.c (frapy_name): Add explicit free of
6257 'name' from find_frame_funname.
6258 * stack.c (find_frame_funname): Add comment explaining that
6259 funcp must be freed by the caller.
6260 Return copy of symbol names instead of pointers.
6261 (print_frame): Add a cleanup for 'funname' from
6262 find_frame_funname.
6263 * stack.h (find_frame_funname): Remove "const" from
6264 'funname' parameter.
6265
6266 2013-05-22 Tom Tromey <tromey@redhat.com>
6267
6268 PR c++/15401:
6269 * c-valprint.c (c_value_print): Use value_addr for
6270 references. Convert back to reference type with value_ref.
6271
6272 2013-05-22 Eli Zaretskii <eliz@gnu.org>
6273
6274 * windows-nat.c (handle_unload_dll): Don't call solib_add for the
6275 unloaded DLL, it will be done by handle_solib_event. See
6276 http://sourceware.org/ml/gdb-patches/2013-05/msg00713.html for the
6277 details.
6278
6279 2013-05-22 Phil Muldoon <pmuldoon@redhat.com>
6280
6281 * ui-out.c: Create typedef ui_out_level_p and define vector
6282 operations for that type.
6283 (struct ui_out): Use a vector instead of an array.
6284 (current_level): Return level from a vector.
6285 (push_level): Create a level in a vector.
6286 (pop_level): Delete a level in a vector.
6287 (ui_out_new): Create initial level zero level, and store in a
6288 vector.
6289 (ui_out_destroy): Add vector cleanup.
6290
6291 2013-05-22 Pedro Alves <palves@redhat.com>
6292
6293 * python/python-internal.h (gdb_Py_DECREF): Tag with
6294 "ARI: editCase function".
6295
6296 2013-05-21 Paul Pluzhnikov <ppluzhnikov@google.com>
6297
6298 * solib-svr4.c (svr4_free_so): Protect against NULL dereference.
6299
6300 2013-05-21 Pedro Alves <palves@redhat.com>
6301
6302 * python/py-prettyprint.c (apply_val_pretty_printer): Check
6303 whether PRINTER is NULL before installing a Py_DECREF cleanup.
6304 * python/py-utils.c (py_decref): Don't check for NULL before
6305 calling Py_DECREF.
6306
6307 2013-05-21 Pedro Alves <palves@redhat.com>
6308
6309 * python/py-utils.c (py_decref): Remove extra braces.
6310 (gdb_pymodule_addobject): Remove extra braces.
6311 * python-internal.h (gdb_Py_DECREF): New static inline function.
6312 (Py_DECREF): Redefine as calling gdb_Py_DECREF.
6313
6314 2013-05-21 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6315
6316 * breakpoints.c (detach_breakpoints): Do not
6317 detach breakpoints locations with loc_type bp_loc_other.
6318
6319 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
6320
6321 Workaround Python 2.6.
6322 * python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
6323 a block.
6324
6325 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
6326
6327 Code cleanup: constification.
6328 * solib.c (solib_ops): Make return type and ops variable type const.
6329 (set_solib_ops): Make the new_ops parameter and ops variable const.
6330 (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
6331 (solib_add, solib_keep_data_in_core, clear_solib)
6332 (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
6333 (reload_shared_libraries, solib_global_lookup): Make the ops variable
6334 const.
6335 * solib.h (set_solib_ops): Make the new_ops parameter const.
6336
6337 2013-05-21 Joel Brobecker <brobecker@adacore.com>
6338
6339 * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
6340 variable.
6341 (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
6342 (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
6343 (SYSTEM_GDBINIT_FILES): New variables.
6344 (all): Add stamp-system-gdbinit.
6345 (stamp-system-gdbinit): New rule.
6346 (clean-system-gdbinit, install-system-gdbinit)
6347 (uninstall-system-gdbinit): New rules. Make them .PHONY.
6348 (install-only): Add dependency on install-system-gdbinit.
6349 (uninstall): Add dependency on uninstall-system-gdbinit.
6350 (clean): Add dependency on clean-system-gdbinit.
6351 * system-gdbinit/elinos.py: New file.
6352 * system-gdbinit/wrs-linux.py: New file.
6353
6354 2013-05-21 Joel Brobecker <brobecker@adacore.com>
6355
6356 * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
6357
6358 2013-05-21 Hui Zhu <hui@codesourcery.com>
6359
6360 * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
6361 * breakpoint.h (dprintf_breakpoint_ops): Add extern.
6362 * mi/mi-cmd-break.c (ctype.h): New include.
6363 (gdb_obstack.h): New include.
6364 (mi_argv_to_format, mi_cmd_break_insert_1): New.
6365 (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
6366 (mi_cmd_dprintf_insert): New.
6367 * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
6368 * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
6369
6370 2013-05-20 Tom Tromey <tromey@redhat.com>
6371
6372 * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
6373
6374 2013-05-20 Tom Tromey <tromey@redhat.com>
6375
6376 * python/py-value.c (valpy_get_dynamic_type): Simplify
6377 dynamic_type assignment. Use Py_XINCREF.
6378
6379 2013-05-20 Tom Tromey <tromey@redhat.com>
6380
6381 * python/py-type.c (typy_fields): Unconditionally decref 'r'.
6382
6383 2013-05-20 Tom Tromey <tromey@redhat.com>
6384
6385 * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
6386 (gdbpy_selected_frame): Move object-construction code
6387 out of TRY_CATCH.
6388
6389 2013-05-20 Tom Tromey <tromey@redhat.com>
6390
6391 * python/py-arch.c (gdbpy_initialize_arch): Use
6392 gdb_pymodule_addobject.
6393 * python/py-block.c (gdbpy_initialize_blocks): Use
6394 gdb_pymodule_addobject.
6395 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
6396 gdb_pymodule_addobject.
6397 * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
6398 gdb_pymodule_addobject.
6399 * python/py-event.c (gdbpy_initialize_event_generic): Use
6400 gdb_pymodule_addobject.
6401 * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
6402 gdb_pymodule_addobject.
6403 * python/py-evts.c (add_new_registry): Use
6404 gdb_pymodule_addobject.
6405 (gdbpy_initialize_py_events): Likewise.
6406 * python/py-finishbreakpoint.c
6407 (gdbpy_initialize_finishbreakpoints): Use
6408 gdb_pymodule_addobject.
6409 * python/py-frame.c (gdbpy_initialize_frames): Use
6410 gdb_pymodule_addobject.
6411 * python/py-function.c (gdbpy_initialize_functions): Use
6412 gdb_pymodule_addobject.
6413 * python/py-inferior.c (gdbpy_initialize_inferior): Use
6414 gdb_pymodule_addobject.
6415 * python/py-infthread.c (gdbpy_initialize_thread): Use
6416 gdb_pymodule_addobject.
6417 * python/py-objfile.c (gdbpy_initialize_objfile): Use
6418 gdb_pymodule_addobject.
6419 * python/py-param.c (gdbpy_initialize_parameters): Use
6420 gdb_pymodule_addobject.
6421 * python/py-progspace.c (gdbpy_initialize_pspace): Use
6422 gdb_pymodule_addobject.
6423 * python/py-symbol.c (gdbpy_initialize_symbols): Use
6424 gdb_pymodule_addobject.
6425 * python/py-symtab.c (gdbpy_initialize_symtabs): Use
6426 gdb_pymodule_addobject.
6427 * python/py-type.c (gdbpy_initialize_types): Use
6428 gdb_pymodule_addobject.
6429 * python/py-utils.c (gdb_pymodule_addobject): New function.
6430 * python/py-value.c (gdbpy_initialize_values): Use
6431 gdb_pymodule_addobject.
6432 * python/python-internal.h (gdb_pymodule_addobject): Declare.
6433 * python/python.c (_initialize_python): Use
6434 gdb_pymodule_addobject.
6435
6436 2013-05-20 Tom Tromey <tromey@redhat.com>
6437
6438 * python/py-cmd.c (cmdpy_completer): Use explicit decref.
6439 * python/py-param.c (get_set_value, get_show_value): Use
6440 explicit decrefs.
6441 * python/python.c (start_type_printers, apply_type_printers):
6442 Use explicit decrefs.
6443
6444 2013-05-20 Tom Tromey <tromey@redhat.com>
6445
6446 * python/py-evts.c (gdbpy_initialize_py_events): Don't
6447 incref the module.
6448
6449 2013-05-20 Tom Tromey <tromey@redhat.com>
6450
6451 * python/python.c (gdbpy_run_events): Decref the result
6452 of PyObject_CallObject.
6453
6454 2013-05-20 Tom Tromey <tromey@redhat.com>
6455
6456 * python/py-symtab.c (set_sal): Use
6457 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION. Return -1 on error.
6458 (symtab_and_line_to_sal_object): Update.
6459
6460 2013-05-20 Tom Tromey <tromey@redhat.com>
6461
6462 * python/py-param.c (compute_enum_values): Decref 'item'.
6463
6464 2013-05-20 Tom Tromey <tromey@redhat.com>
6465
6466 * mi/mi-main.c: Include python-internal.h.
6467 (mi_cmd_list_features): Check gdb_python_initialized.
6468 * python/py-inferior.c (python_on_normal_stop, python_on_resume)
6469 (python_inferior_exit, python_new_objfile, add_thread_object)
6470 (delete_thread_object, py_free_inferior): Check
6471 gdb_python_initialized.
6472 * python/py-prettyprint.c (apply_val_pretty_printer): Check
6473 gdb_python_initialized.
6474 * python/py-type.c (save_objfile_types): Check
6475 gdb_python_initialized.
6476 * python/python-internal.h (gdb_python_initialized): Declare.
6477 * python/python.c (ensure_python_env): Throw exception if
6478 Python not initialized.
6479 (before_prompt_hook, source_python_script_for_objfile)
6480 (start_type_printers, apply_type_printers,
6481 free_type_printers): Check gdb_python_initialized.
6482 * varobj.c (varobj_get_display_hint)
6483 (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
6484 (install_new_value_visualizer, varobj_set_visualizer)
6485 (value_get_print_value): Check gdb_python_initialized.
6486
6487 2013-05-20 Tom Tromey <tromey@redhat.com>
6488
6489 * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
6490 Check errors.
6491 * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
6492 * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
6493 Check errors.
6494 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
6495 Check errors.
6496 * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
6497 Check errors.
6498 * python/py-event.c (gdbpy_initialize_event): Return 'int'.
6499 Check errors.
6500 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
6501 init function to return 'int'.
6502 * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
6503 Return 'int'. Check errors.
6504 * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
6505 Check errors.
6506 * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
6507 Return 'int'. Check errors.
6508 * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
6509 Check errors.
6510 * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
6511 Check errors.
6512 * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
6513 Check errors.
6514 * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
6515 Check errors.
6516 * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
6517 Check errors.
6518 * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
6519 Check errors.
6520 * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
6521 Check errors.
6522 * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
6523 Check errors.
6524 * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
6525 Check errors.
6526 * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
6527 Check errors.
6528 * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
6529 Check errors.
6530 * python/py-type.c (gdbpy_initialize_types): Return 'int'.
6531 Check errors.
6532 * python/py-value.c (gdbpy_initialize_values): Return 'int'.
6533 Check errors.
6534 * python/python-internal.h (gdbpy_initialize_auto_load,
6535 gdbpy_initialize_values, gdbpy_initialize_frames,
6536 gdbpy_initialize_symtabs, gdbpy_initialize_commands,
6537 gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
6538 gdbpy_initialize_blocks, gdbpy_initialize_types,
6539 gdbpy_initialize_functions, gdbpy_initialize_pspace,
6540 gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
6541 gdbpy_initialize_finishbreakpoints,
6542 gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
6543 gdbpy_initialize_thread, gdbpy_initialize_inferior,
6544 gdbpy_initialize_eventregistry, gdbpy_initialize_event,
6545 gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
6546 gdbpy_initialize_signal_event,
6547 gdbpy_initialize_breakpoint_event,
6548 gdbpy_initialize_continue_event,
6549 gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
6550 gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
6551 Update. Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
6552 * python/python.c (gdb_python_initialized): New global.
6553 (gdbpy_initialize_events): Return 'int'. Check errors.
6554 (_initialize_python): Check errors. Set
6555 gdb_python_initialized.
6556
6557 2013-05-20 Tom Tromey <tromey@redhat.com>
6558
6559 * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
6560 Decref the reslut of PyObject_CallMethod.
6561
6562 2013-05-20 Tom Tromey <tromey@redhat.com>
6563
6564 * python/py-event.c (gdbpy_initialize_event_generic): Return
6565 early if PyType_Ready fails.
6566
6567 2013-05-20 Tom Tromey <tromey@redhat.com>
6568
6569 * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
6570 as 'default' in the switch.
6571
6572 2013-05-20 Tom Tromey <tromey@redhat.com>
6573
6574 * python/py-inferior.c (gdbpy_inferiors): Update. Hoist
6575 get_addr_from_python calls out of TRY_CATCH.
6576 (infpy_write_memory, infpy_search_memory): Likewise.
6577 * python/py-utils.c (get_addr_from_python): Return negative
6578 value on error. Use TRY_CATCH.
6579 * python/python-internal.h (get_addr_from_python): Use
6580 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
6581
6582 2013-05-20 Tom Tromey <tromey@redhat.com>
6583
6584 * python/py-event.c (evpy_emit_event): Decref the
6585 result of PyObject_CallFunctionObjArgs.
6586
6587 2013-05-20 Tom Tromey <tromey@redhat.com>
6588
6589 * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
6590 Correctly decref.
6591
6592 2013-05-20 Tom Tromey <tromey@redhat.com>
6593
6594 * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
6595
6596 2013-05-20 Tom Tromey <tromey@redhat.com>
6597
6598 * python/py-event.h (gdbpy_initialize_event_generic): Use
6599 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
6600 * python/py-evts.c (add_new_registry): Use
6601 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
6602 * python/python-internal.h
6603 (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
6604
6605 2013-05-20 Tom Tromey <tromey@redhat.com>
6606
6607 * python/py-arch.c (archpy_disassemble): Update.
6608 * python/py-type.c (typy_get_composite, typy_lookup_typename)
6609 (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
6610 * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
6611 * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
6612 macro.
6613 (GDB_PY_HANDLE_EXCEPTION): Update.
6614 (gdbpy_convert_exception): Update. Use CPYCHECKER_SETS_EXCEPTION.
6615
6616 2013-05-20 Tom Tromey <tromey@redhat.com>
6617
6618 * python/python-internal.h (events_object_type): Remove.
6619
6620 2013-05-20 Tom Tromey <tromey@redhat.com>
6621
6622 * python/py-event.h (evpy_emit_event): Use
6623 CPYCHECKER_STEALS_REFERENCE_TO_ARG.
6624 * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
6625 New macro.
6626
6627 2013-05-20 Tom Tromey <tromey@redhat.com>
6628
6629 * py-evtregistry.c (create_event_object): Decref
6630 eventregistry_object if PyList_New fails.
6631
6632 2013-05-20 Tom Tromey <tromey@redhat.com>
6633
6634 * py-cmd.c (gdbpy_string_to_argv): Check result of
6635 PyList_New.
6636
6637 2013-05-20 Tom Tromey <tromey@redhat.com>
6638
6639 * python/python.c (before_prompt_hook): Add cleanup to
6640 decref 'hook'.
6641
6642 2013-05-20 Tom Tromey <tromey@redhat.com>
6643
6644 * python/py-function.c (fnpy_init): Decref result of
6645 PyObject_GetAttrString.
6646
6647 2013-05-20 Tom Tromey <tromey@redhat.com>
6648
6649 * python/py-threadevent.c (get_event_thread): Use
6650 CPYCHECKER_RETURNS_BORROWED_REF.
6651 * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
6652 New define.
6653 (pspace_to_pspace_object, objfile_to_objfile_object)
6654 (find_thread_object): Use it.
6655
6656 2013-05-20 Tom Tromey <tromey@redhat.com>
6657
6658 * python/py-arch.c (arch_object_type): Use
6659 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6660 * python/py-block.c (block_syms_iterator_object_type):
6661 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6662 * python/py-bpevent.c (breakpoint_event_object_type):
6663 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6664 * python/py-cmd.c (cmdpy_object_type): Use
6665 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6666 * python/py-continueevent.c (continue_event_object_type):
6667 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6668 * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
6669 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6670 * python/py-events.h (thread_event_object_type):
6671 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6672 * python/py-evtregistry.c (eventregistry_object_type): Use
6673 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6674 * python/py-exitedevent.c (exited_event_object_type):
6675 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6676 * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
6677 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6678 * python/py-function.c (fnpy_object_type): Use
6679 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6680 * python/py-inferior.c (inferior_object_type, membuf_object_type):
6681 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6682 * python/py-infthread.c (thread_object_type): Use
6683 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6684 * python/py-lazy-string.c (lazy_string_object_type):
6685 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6686 * python/py-newobjfileevent.c (new_objfile_event_object_type):
6687 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6688 * python/py-objfile.c (objfile_object_type): Use
6689 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6690 * python/py-param.c (parmpy_object_type):
6691 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6692 * python/py-progspace.c (pspace_object_type):
6693 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6694 * python/py-signalevent.c (signal_event_object_type):
6695 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6696 * python/py-symtab.c (symtab_object_type, sal_object_type): Use
6697 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6698 * python/py-type.c (type_object_type, field_object_type)
6699 (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6700 * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
6701 define.
6702 (value_object_type, block_object_type, symbol_object_type)
6703 (event_object_type, stop_event_object_type, breakpoint_object_type)
6704 (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6705
6706 2013-05-20 Andreas Tobler <andreas@fgznet.ch>
6707
6708 * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
6709 (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
6710
6711 2013-05-20 Doug Evans <dje@google.com>
6712
6713 When reading CU, stay in DWO. Be more tolerent of bad debug info.
6714 For Fission.
6715 * dwarf2read.c (struct dwarf2_per_cu_data): New member
6716 reading_dwo_directly.
6717 (struct signatured_type): New member dwo_unit.
6718 (struct die_reader_specs): New member comp_dir.
6719 (create_signatured_type_table_from_index): Use malloc for
6720 all_type_units instead of objfile's obstack.
6721 (create_all_type_units): Ditto.
6722 (fill_in_sig_entry_from_dwo_entry): New function.
6723 (add_type_unit): New function.
6724 (lookup_dwo_signatured_type): New function.
6725 (lookup_dwp_signatured_type): New function.
6726 (lookup_signatured_type): New arg cu. All callers updated.
6727 (init_cu_die_reader): Initialize comp_dir.
6728 (read_cutu_die_from_dwo): New arg stub_comp_dir. All callers updated.
6729 Change assert of matching type signatures to call error on mismatch.
6730 (lookup_dwo_unit): Add assert.
6731 (init_tu_and_read_dwo_dies): New function.
6732 (init_cutu_and_read_dies): Call it.
6733 (build_type_unit_groups): Handle case of no type unit groups created.
6734 (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
6735 (lookup_dwo_cutu): Tweak complaint.
6736 (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
6737 (dwarf2_per_objfile_free): Free all_type_units.
6738
6739 2013-05-20 Joel Brobecker <brobecker@adacore.com>
6740
6741 * windows-nat.c (handle_unload_dll): Add missing empty line.
6742
6743 2013-05-20 Joel Brobecker <brobecker@adacore.com>
6744
6745 * dwarf2read.c (prototyped_function_p): New function.
6746 (read_subroutine_type): Use it.
6747
6748 2013-05-20 Joel Brobecker <brobecker@adacore.com>
6749
6750 * rs6000-aix-tdep.c: De-indent some example code provided
6751 as a comment.
6752
6753 2013-05-17 Edjunior Machado <emachado@linux.vnet.ibm.com>
6754
6755 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
6756 region is ok for a hardware watchpoint using the new ptrace interface
6757 on Power servers.
6758
6759 2013-05-17 Doug Evans <dje@google.com>
6760
6761 * NEWS: Mention new maintenance commands check-symtabs, and
6762 expand-symtabs, and renamed check-psymtabs.
6763 * psymtab.c (maintenance_check_psymtabs): Renamed from
6764 maintenance_check_symtabs. Only process already-expanded symbol
6765 tables.
6766 (_initialize_psymtab): Update.
6767 * symmisc.c (maintenance_check_symtabs): New function.
6768 (maintenance_expand_name_matcher): New function
6769 (maintenance_expand_file_matcher): New function
6770 (maintenance_expand_symtabs): New function.
6771 (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
6772 commands.
6773
6774 2013-05-17 Tom Tromey <tromey@redhat.com>
6775
6776 * python/py-inferior.c (infpy_read_memory): Don't call
6777 PyErr_SetString if PyObject_New fails.
6778 * python/py-frame.c (frame_info_to_frame_object): Don't call
6779 PyErr_SetString if PyObject_New fails.
6780
6781 2013-05-17 Pavel Chupin <pavel.v.chupin@intel.com>
6782
6783 * acinclude.m4: Add check for dlopen in libdl.
6784 * configure.ac: Ditto.
6785 * configure: Regenerate.
6786
6787 2013-05-17 Phil Muldoon <pmuldoon@redhat.com>
6788
6789 * frame.c (frame_stash): Convert to htab.
6790 (frame_addr_hash): New function.
6791 (frame_addr_hash_eq): New function.
6792 (frame_stash_create): Convert function to create
6793 a hash table.
6794 (frame_stash_add): Convert function to add an entry to a hash
6795 table.
6796 (frame_stash_find): Convert function to search the hash table.
6797 (frame_stash_invalidate): Convert function to empty the hash
6798 table.
6799 (get_frame_id): Only add to stash if a frame_id is created.
6800 (_initialize_frame): Call frame_stash_create.
6801
6802 2013-05-16 Yue Lu <hacklu.newborn@gmail.com> (tiny change)
6803
6804 * configure.ac: Ensure MIG is available when building for GNU Hurd
6805 hosts.
6806 * configure: Regenerate.
6807
6808 2013-05-16 Joel Brobecker <brobecker@adacore.com>
6809
6810 * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
6811
6812 2013-05-16 Joel Brobecker <brobecker@adacore.com>
6813
6814 * ada-lang.c (ada_make_symbol_completion_list): Make sure
6815 all cleanups are done before returning from this function.
6816
6817 2013-05-15 Joel Brobecker <brobecker@adacore.com>
6818
6819 * utils.h: #include "exceptions.h".
6820 (enum errors): Remove partial declaration.
6821
6822 2013-05-15 Joel Brobecker <brobecker@adacore.com>
6823
6824 * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
6825 * gdbarch.h, gdbarch.c: Regenerate.
6826 * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
6827 handling.
6828
6829 * rs6000-aix-tdep.h: New file.
6830 * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
6831 * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
6832 "xml-utils.h".
6833 (struct field_info, struct ld_info_desc): New types.
6834 (ld_info32_desc, ld_info64_desc): New static constants.
6835 (struct ld_info): New type.
6836 (rs6000_aix_extract_ld_info): New function.
6837 (rs6000_aix_shared_library_to_xml): Likewise.
6838 (rs6000_aix_ld_info_to_xml): Likewise.
6839 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
6840 (rs6000_aix_init_osabi): Add call to
6841 set_gdbarch_core_xfer_shared_libraries_aix.
6842 * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
6843 Remove "xml-utils.h" include.
6844 (LdInfo): Delete typedef.
6845 (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
6846 Delete macros.
6847 (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
6848 Adjust code accordingly.
6849 (rs6000_core_ldinfo): Delete, folded into
6850 rs6000_aix_core_xfer_shared_libraries_aix.
6851 (rs6000_xfer_shared_library): Delete.
6852 (rs6000_xfer_shared_libraries): Reimplement.
6853
6854 2013-05-15 Markus Metzger <markus.t.metzger@intel.com>
6855
6856 * record.c (record_goto_cmdlist): New.
6857 (cmd_record_goto): Split into this ...
6858 (cmd_record_goto_begin): ... this
6859 (cmd_record_goto_end): ... and this.
6860 (_initialize_record): Change "record goto" to prefix command.
6861 Add commands for "record goto begin" and "record goto end".
6862 Add an alias for "record goto start" to "record goto begin".
6863
6864 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6865
6866 * linespec.c (convert_linespec_to_sals): New comment for
6867 SOURCE_FILENAME assignment.
6868
6869 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6870
6871 * cleanups.c (restore_my_cleanups): Replace gdb_assert by
6872 internal_warning.
6873
6874 2013-05-14 Tom Tromey <tromey@redhat.com>
6875
6876 * eval.c (parse_and_eval_long): Make 'exp' const.
6877 * value.h (parse_and_eval_long): Update.
6878
6879 2013-05-14 Tom Tromey <tromey@redhat.com>
6880
6881 * ui-file.c (gdb_fopen): Make arguments const.
6882 * ui-file.h (gdb_fopen): Make arguments const.
6883
6884 2013-05-14 Tom Tromey <tromey@redhat.com>
6885
6886 * remote.c (remote_set_trace_notes): Make arguments const.
6887 * target.c (update_current_target): Update cast.
6888 * target.h (to_set_trace_notes): Make arguments const.
6889
6890 2013-05-14 Tom Tromey <tromey@redhat.com>
6891
6892 * go32-nat.c (go32_terminal_info): Make 'args' const.
6893 * inferior.h (child_terminal_info): Update.
6894 * inflow.c (child_terminal_info): Make 'args' const.
6895 * target.c (default_terminal_info): Make 'args' const.
6896 (debug_to_terminal_save_ours): Likewise.
6897 * target.h (struct target_ops) <to_terminal_info>: Make argument
6898 const.
6899
6900 2013-05-13 Tom Tromey <tromey@redhat.com>
6901
6902 * gcore.c (create_gcore_bfd): Make 'filename' const.
6903 * gcore.h (create_gcore_bfd): Make 'filename' const.
6904 * record-full.c (record_full_save): Make 'recfilename' const.
6905 * target.c (target_save_record): Make 'filename' const.
6906 * target.h (struct target_ops) <to_save_record>: Make 'filename'
6907 const.
6908 (target_save_record): Likewise.
6909
6910 2013-05-13 Tom Tromey <tromey@redhat.com>
6911
6912 PR gdb/15338:
6913 * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
6914 ranges section has been read.
6915
6916 2013-05-13 Tom Tromey <tromey@redhat.com>
6917
6918 PR exp/15364:
6919 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
6920 STRUCTOP_PTR>: Return a not_lval value for
6921 EVAL_AVOID_SIDE_EFFECTS.
6922 * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
6923 for EVAL_AVOID_SIDE_EFFECTS.
6924
6925 2013-05-13 Joel Brobecker <brobecker@adacore.com>
6926
6927 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
6928 floating point registers to register type before storing
6929 value.
6930 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
6931 Likewise.
6932
6933 2013-05-10 Joel Brobecker <brobecker@adacore.com>
6934 Tom Tromey <tromey@redhat.com>
6935
6936 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
6937 New functions.
6938 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
6939 Declare.
6940 * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
6941 (darwin_ptrace_him): Use unmark_fd_no_cloexec.
6942 * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
6943 (inf_ttrace_prepare): Use mark_fd_no_cloexec.
6944
6945 2013-05-10 Freddie Chopin <freddie_chopin@op.pl>
6946 Tom Tromey <tromey@redhat.com>
6947
6948 PR build/15414:
6949 * configure: Rebuild.
6950 * configure.ac (build_warnings): Do not use -Wformat-nonliteral
6951 with -Wno-format.
6952
6953 2013-05-10 Pedro Alves <palves@redhat.com>
6954
6955 * remote.c (_initialize_remote): Fix spelling of
6956 qXfer:traceframe-info:read packet in packet config command.
6957
6958 2013-05-10 David Taylor <dtaylor@emc.com>
6959
6960 PR remote/15455
6961
6962 * remote.c (remote_trace_set_readonly_regions): Do not overwrite
6963 "QTro" at start of packet.
6964
6965 2013-05-10 Joel Brobecker <brobecker@adacore.com>
6966
6967 * solib-aix.c (solib_aix_relocate_section_addresses):
6968 For the .bss section action, apply the same offset as
6969 the .data section.
6970
6971 2013-05-10 Joel Brobecker <brobecker@adacore.com>
6972
6973 * solib-aix.c (solib_aix_relocate_section_addresses):
6974 Remove FIXME comment.
6975
6976 2013-05-10 Joel Brobecker <brobecker@adacore.com>
6977
6978 PR tdep/15420:
6979 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
6980 New functions, directly copied from sparc-sol-thread.c.
6981 * sparc-sol-thread.c: Delete.
6982 * configure.ac: Remove code handling sparc-solaris-thread.c.
6983 * configure: Regenerate.
6984
6985 2013-05-10 Phil Muldoon <pmuldoon@redhat.com>
6986
6987 * stack.c (backtrace_command_1): Add "no-filters", and Python frame
6988 filter logic.
6989 (backtrace_command): Add "no-filters" option parsing.
6990 (_initialize_stack): Alter help to reflect "no-filters" option.
6991 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
6992 (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
6993 (py-frame.o): Add target
6994 * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
6995 filter files.
6996 * python/python.h: Add new frame filter constants, and flag enum.
6997 (apply_frame_filter): Add definition.
6998 * python/python.c (apply_frame_filter): New non-Python
6999 enabled function.
7000 * python/py-utils.c (py_xdecref): New function.
7001 (make_cleanup_py_xdecref): Ditto.
7002 * python/py-objfile.c: Declare frame_filters dictionary.
7003 (objfpy_dealloc): Add frame_filters dealloc.
7004 (objfpy_new): Initialize frame_filters attribute.
7005 (objfile_to_objfile_object): Ditto.
7006 (objfpy_get_frame_filters): New function.
7007 (objfpy_set_frame_filters): New function.
7008 * python/py-progspace.c: Declare frame_filters dictionary.
7009 (pspy_dealloc): Add frame_filters dealloc.
7010 (pspy_new): Initialize frame_filters attribute.
7011 (pspacee_to_pspace_object): Ditto.
7012 (pspy_get_frame_filters): New function.
7013 (pspy_set_frame_filters): New function.
7014 * python/py-framefilter.c: New file.
7015 * python/lib/gdb/command/frame_filters.py: New file.
7016 * python/lib/gdb/frames.py: New file.
7017 * python/lib/gdb/__init__.py: Initialize global frame_filters
7018 dictionary
7019 * python/lib/gdb/FrameDecorator.py: New file.
7020 * python/lib/gdb/FrameIterator.py: New file.
7021 * mi/mi-cmds.c (mi_cmds): Add frame filters command.
7022 * mi/mi-cmds.h: Declare.
7023 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
7024 --no-frame-filter logic, and Python frame filter logic.
7025 (stack_enable_frame_filters): New function.
7026 (parse_no_frame_option): Ditto.
7027 (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
7028 filter logic.
7029 (mi_cmd_stack_list_locals): Ditto.
7030 (mi_cmd_stack_list_args): Ditto.
7031 (mi_cmd_stack_list_variables): Ditto.
7032 * NEWS: Add frame filter note.
7033
7034 2013-05-09 Doug Evans <dje@google.com>
7035
7036 * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
7037 All callers updated.
7038 (syms_from_objfile): Ditto. Make static.
7039 (symbol_file_add_with_addrs): Renamed from
7040 symbol_file_add_with_addrs_or_offsets. Delete args offsets,
7041 num_offsets. All callers updated.
7042 * symfile.h (syms_from_objfile): Delete.
7043
7044 * symfile.c (decrement_reading_symtab): Add assert.
7045 (increment_reading_symtab): Ditto.
7046
7047 2013-05-09 Joel Brobecker <brobecker@adacore.com>
7048
7049 * source.c (forward_search_command): Replace call to getc
7050 by call to fgetc.
7051 (reverse_search_command): Likewise.
7052
7053 2013-05-08 Doug Evans <dje@google.com>
7054
7055 * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
7056 matching test.
7057
7058 2013-05-08 Joel Brobecker <brobecker@adacore.com>
7059
7060 * sol-thread.c (info_cb): Factorize the code a little.
7061
7062 2013-05-08 Joel Brobecker <brobecker@adacore.com>
7063
7064 * sol-thread.c (info_cb): Rework the output of the "maintenance
7065 info sol-threads" command a bit.
7066
7067 2013-05-08 Joel Brobecker <brobecker@adacore.com>
7068
7069 * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
7070 Replace ti.ti_startfunc by ti.ti_pc.
7071
7072 2013-05-08 Joel Brobecker <brobecker@adacore.com>
7073
7074 * solib-aix.c (solib_aix_free_library_list): New function
7075 for the case where HAVE_LIBEXPAT is not defined.
7076
7077 2013-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
7078
7079 PR breakpoints/15413:
7080 * breakpoint.c (condition_completer): Simplify the code to
7081 disconsider multiple locations of breakpoints when completing the
7082 "condition" command.
7083
7084 2013-05-07 Pierre Muller <muller@sourceware.org>
7085
7086 * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
7087 instead of <sys/wait.h>.
7088
7089 2013-05-07 Pierre Muller <muller@sourceware.org>
7090
7091 * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
7092 trailing new line from warning message.
7093
7094 2013-05-07 Pierre Muller <muller@sourceware.org>
7095
7096 * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
7097 (PC_SOLIB): Change type from ari_deprecate to ari_regression.
7098
7099 2013-05-07 Joel Brobecker <brobecker@adacore.com>
7100
7101 * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
7102 error message (ARI fix).
7103
7104 2013-05-07 Joel Brobecker <brobecker@adacore.com>
7105
7106 * features/library-list-aix.dtd: Replace library-list by
7107 library-list-aix.
7108 * rs6000-nat.c: Replace library-list by library-list-aix
7109 throughout.
7110 * solib-aix.c: Likewise.
7111
7112 2013-05-07 Joel Brobecker <brobecker@adacore.com>
7113
7114 * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
7115 Renames TARGET_OBJECT_AIX_LIBRARIES.
7116 * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
7117 TARGET_OBJECT_LIBRARIES_AIX throughout.
7118 * solib-aix.c: Likwise.
7119
7120 2013-05-07 Yao Qi <yao@codesourcery.com>
7121
7122 * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
7123 (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
7124
7125 2013-05-07 Yao Qi <yao@codesourcery.com>
7126
7127 * solib-dsbt.c (enable_break): Declare.
7128 (dsbt_current_sos): Remove call to enable_break2.
7129 (enable_break2): Rename to enable_break. Set solib breakpoint
7130 on '_dl_debug_state'.
7131 (enable_break): Remove.
7132
7133 2013-05-07 Luis Machado <lgustavo@codesourcery.com>
7134
7135 * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
7136 debug state prior to replicating existing hardware watchpoints or
7137 breakpoints.
7138
7139 2013-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
7140
7141 * gcore.c (gcore_create_callback): Ignore sections with
7142 separate_debug_objfile_backlink != NULL.
7143
7144 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
7145 Andrew Jenner <andrew@codesourcery.com>
7146 Chung-Lin Tang <cltang@codesourcery.com>
7147 Julian Brown <julian@codesourcery.com>
7148
7149 Based on the nios2-elf port from Altera Corporation.
7150
7151 * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
7152 nios2-linux-tdep.o.
7153 (HFILES_NO_SRCDIR): Add nios2-tdep.h.
7154 (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
7155 * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
7156 * nios2-tdep.h: New.
7157 * nios2-tdep.c: New.
7158 * nios2-linux-tdep.c: New.
7159 * features/Makefile (WHICH): Add nios2-linux.
7160 (nios2-linux-expedite): Set.
7161 * features/nios2-cpu.xml: New.
7162 * features/nios2.xml: New.
7163 * features/nios2-linux.xml: New.
7164 * features/nios2.c: New (autogenerated).
7165 * features/nios2-linux.c: New (autogenerated).
7166 * regformats/nios2-linux.dat: New (autogenerated).
7167 * NEWS (Changes since GDB 7.6): Add new Nios II targets
7168 and commands.
7169
7170 2013-05-06 Doug Evans <dje@google.com>
7171
7172 * symfile.c: Whitespace cleanup.
7173
7174 * solist.h (struct target_so_ops): New member clear_so.
7175 * solib-svr4.c (svr4_clear_so): New function.
7176 (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
7177 * solib.c (clear_so): Renamed from free_so_symbols.
7178 All callers updated. Call target clear_so if it exists.
7179
7180 2013-05-06 Tom Tromey <tromey@redhat.com>
7181
7182 * ada-lang.c (ada_value_primitive_packed_val): Don't
7183 call value_incref.
7184 * value.c (set_value_parent): Incref the new parent and decref
7185 the old parent.
7186 (value_copy, value_primitive_field): Use set_value_parent.
7187
7188 2013-05-06 Tom Tromey <tromey@redhat.com>
7189
7190 * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
7191 (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
7192 if needed.
7193 * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
7194 * dwarf2read.c (write_constant_as_bytes)
7195 (dwarf2_fetch_constant_bytes): New functions.
7196
7197 2013-05-06 Tom Tromey <tromey@redhat.com>
7198
7199 * dwarf2read.c (dwarf2_const_value_data): Remove unused
7200 parameters.
7201 (dwarf2_const_value_attr): Update.
7202
7203 2013-05-06 Tom Tromey <tromey@redhat.com>
7204
7205 * somread.c (som_symfile_offsets): Add 'const' to addrs.
7206 * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
7207 * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
7208 Remove declaration.
7209
7210 2013-05-06 Tom Tromey <tromey@redhat.com>
7211
7212 * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
7213 objfile's obstack.
7214
7215 2013-05-06 Doug Evans <dje@google.com>
7216
7217 * dbxread.c (process_one_symbol): Constify section_offsets parameter.
7218 * stabsread.h (process_one_symbol): Update declaration.
7219 * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
7220 * elfread.c (elf_symfile_relocate_probe): Ditto.
7221 * psymtab.c (relocate_psymtabs): Ditto.
7222 * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
7223 (objfile_relocate): Ditto.
7224 * objfiles.h (objfile_relocate): Update declaration.
7225 * symfile.c (relative_addr_info_to_section_offsets): Constify
7226 addrs parameter.
7227 (default_symfile_offsets): Ditto.
7228 (syms_from_objfile_1): Constify offsets parameter.
7229 (syms_from_objfile): Ditto.
7230 (symbol_file_add_with_addrs_or_offsets): Ditto.
7231 (symfile_map_offsets_to_segments): Constify data parameter.
7232 * symfile.h (struct quick_symbol_functions): Constify new_offsets,
7233 delta parameters of member relocate.
7234 (struct sym_probe_fns): Constify new_offsets,
7235 delta parameters of member sym_relocate_probe.
7236 (struct sym_fns): Constify section_addr_info parameter of member
7237 sym_offsets.
7238 (relative_addr_info_to_section_offsets): Update declaration.
7239 (default_symfile_offsets): Ditto.
7240 (syms_from_objfile): Ditto.
7241 (symfile_map_offsets_to_segments): Ditto.
7242
7243 * symfile.c (syms_from_objfile_1): Use correct section count when
7244 objfile->sf == NULL.
7245
7246 2013-05-06 Mike Frysinger <vapier@gentoo.org>
7247
7248 * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
7249
7250 2013-05-06 Doug Evans <dje@google.com>
7251
7252 * psympriv.h (struct partial_symtab): Augment comment for member
7253 section_offsets.
7254
7255 2013-05-06 Joel Brobecker <brobecker@adacore.com>
7256
7257 Reimplement shared library support on ppc-aix...
7258 * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
7259 * features/library-list-aix.dtd: New file.
7260 * solib-aix.h, solib-aix.c: New file.
7261 * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
7262 (rs6000_find_toc_address_hook): Delete.
7263 (rs6000_push_dummy_call): Rewrite code setting the TOC value.
7264 (rs6000_aix_init_osabi): Register solib_aix_so_ops.
7265 * rs6000-nat.c: Remove "xcoffsolib.h" include. Include
7266 "xml-utils.h".
7267 (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
7268 (vmap_symtab, fixup_breakpoints): Delete.
7269 (rs6000_xfer_shared_libraries): New function.
7270 (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
7271 (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
7272 (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
7273 (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
7274 (rs6000_xfer_shared_library): New function.
7275 (find_toc_address): Delete.
7276 (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
7277 * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
7278 * xcoffread.c (record_minimal_symbol): Reloate symbol address
7279 before creating minimal symbol. Adjust function description
7280 accordingly.
7281 (scan_xcoff_symtab): Replace call to
7282 prim_record_minimal_symbol_and_info by call to
7283 record_minimal_symbol.
7284 (xcoff_symfile_offsets): Reimplement mostly as a wrapper
7285 around default_symfile_offsets.
7286 * configure.tgt: Add solib-aix.o to gdb_target_obs for
7287 powerpc-aix targets.
7288 * config/rs6000/nm-rs6000.h: Delete.
7289 * config/powerpc/aix.mh (NAT_FILE): Delete.
7290 (NATDEPFILES): Remove xcoffsolib.o.
7291 * Makefile.in (XMLFILES): Add library-list-aix.dtd.
7292 (ALL_TARGET_OBS): Add solib-aix.o.
7293 (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
7294 config/rs6000/nm-rs6000.h. Add solib-aix.h.
7295 (ALLDEPFILES): Add solib-aix.c. Remove xcoffsolib.c.
7296 * xcoffsolib.h, xcoffsolib.c: Delete.
7297
7298 * solib.c (reload_shared_libraries): Remove reference to
7299 SOLIB_CREATE_INFERIOR_HOOK.
7300 * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
7301 (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
7302 (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
7303 comment.
7304 * corelow.c (deprecated_core_resize_section_table): Delete.
7305 * exec.c: Remove include of xcoffsolib.h".
7306 (map_vmap, vmap): Delete.
7307 (exec_close_1): Remove references to vmap.
7308 (exec_file_attach): Remove vmap handling code, and reference
7309 to DEPRECATED_IBM6000_TARGET.
7310 (bfdsec_to_vmap): Delete.
7311 (exec_files_info): Remove block of code handling VMAP.
7312 * infcmd.c (post_create_inferior): Remove reference to
7313 SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
7314 * infrun.c (follow_exec): Remove reference to
7315 SOLIB_CREATE_INFERIOR_HOOK.
7316 * stack.c (print_frame): Remove reference to PC_SOLIB.
7317 * solib-dsbt.c (dsbt_current_sos): Adjust comment.
7318 (dsbt_relocate_main_executable): Likewise.
7319 * solib-frv.c (frv_current_sos): Likewise.
7320
7321 2013-05-06 Joel Brobecker <brobecker@adacore.com>
7322
7323 * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
7324 to target_write_memory and target_read_memory.
7325
7326 2013-05-06 Joel Brobecker <brobecker@adacore.com>
7327
7328 * darwin-nat.c (darwin_setup_fake_stop_event): New function.
7329 (darwin_attach): Adjust using darwin_setup_fake_stop_event.
7330
7331 2013-05-06 Joel Brobecker <brobecker@adacore.com>
7332
7333 * darwin-nat.c: Replace all "%x" instances in format strings
7334 into "0x%x" throughout.
7335
7336 2013-05-06 Joel Brobecker <brobecker@adacore.com>
7337
7338 * darwin-nat.c (darwin_mourn_inferior): Replace call to
7339 gdb_assert by call to MACH_CHECK_ERROR.
7340 (darwin_attach_pid): Raise an error rather than a failed
7341 assertion when various system calls failed. Report a warning
7342 instead of raising a failed assertion when PREV_NOT is not NULL
7343 after call to mach_port_request_notification.
7344 (darwin_ptrace_me): Raise an error rather than a failed
7345 assertion when read returns nonzero.
7346
7347 2013-05-06 Joel Brobecker <brobecker@adacore.com>
7348
7349 * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
7350
7351 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7352
7353 * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
7354
7355 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7356
7357 * event-top.c (display_gdb_prompt): Call missing do_cleanups.
7358 * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
7359 * symfile.c (symfile_bfd_open): New variable back_to. Do not leave
7360 a stale cleanup. Fix double free of NAME.
7361
7362 2013-05-04 Eli Zaretskii <eliz@gnu.org>
7363
7364 * windows-nat.c (windows_delete_thread): Accept an additional
7365 argument, the thread's exit code, and announce thread death when
7366 print_thread_events is non-zero and we are deleting a thread that
7367 is not the main thread.
7368 (get_windows_debug_event): Pass thread exit code to
7369 windows_delete_thread.
7370
7371 2013-05-03 Kevin Buettner <kevinb@redhat.com>
7372
7373 * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
7374 (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
7375 (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
7376 (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
7377 (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
7378 (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
7379 (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
7380 (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
7381 (gdbarch_tdep): New struct.
7382 (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
7383 E_NUM_REGS.
7384 (v850e3v5_register_name): New function.
7385 (v850_register_type): v850e3v5 vector registers are 64-bits wide.
7386 (v850_use_struct_convention): Add `gdbarch' parameter. Add new
7387 code handling the struct return conventions for the RH850 ABI.
7388 Update all callers.
7389 (v850_eight_byte_align_p): New function.
7390 (v850_push_call_dummy): Push structs by value, not by reference
7391 for the RH850 ABI. Add support for eight byte alignment.
7392 (v850_dbtrap_breakpoint_from_pc): New function.
7393 (v850_gdbarch_init): Add ABI detection code. Register
7394 v850e3v5_register_name for the v850e3v5 architecture. Set the
7395 number of registers for v850e3v5. Register
7396 v850_dbtrap_breakpoint_from_pc as appropriate.
7397 (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
7398
7399 2013-05-03 Doug Evans <dje@google.com>
7400
7401 * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
7402 of bfd_count_sections.
7403 * solib-target.c (solib_target_relocate_section_addresses): Ditto.
7404 * symfile.c (default_symfile_offsets): Ditto.
7405 (syms_from_objfile_1): Ditto. Make dummy addrs list an array of
7406 one entry, not bfd_count_sections entries.
7407
7408 2013-05-03 Kevin Buettner <kevinb@redhat.com>
7409
7410 * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
7411 `save' and `restore' register groups. Don't include SPL
7412 or SPH in these groups.
7413 (rl78_dwarf_reg_to_regnum): Adjust mapping for
7414 RL78_PC_REGNUM. Add mappings for RL78_PSW_REGNUM,
7415 RL78_ES_REGNUM, and RL78_CS_REGNUM.
7416 (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4. Invoke
7417 dwarf2_append_unwinders().
7418
7419 2013-05-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7420
7421 * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
7422 ignore SIGINT and SIGTRAP in case these internal signals are
7423 caught explicitely.
7424
7425 2013-05-01 Joel Brobecker <brobecker@adacore.com>
7426
7427 * darwin-nat.c (darwin_read_write_inferior): Change types
7428 of parameters rdaddr and wraddr to "gdb_byte *". Change type
7429 of copy_count to "mach_msg_type_number_t".
7430 (darwin_read_dyld_info): Change type of parameter
7431 rdaddr to "gdb_byte *".
7432
7433 2013-05-01 Joel Brobecker <brobecker@adacore.com>
7434
7435 * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
7436 of &info->load_map from "char *" to "gdb_byte *".
7437
7438 2013-05-01 Joel Brobecker <brobecker@adacore.com>
7439
7440 * ia64-tdep.c (ia64_access_fpreg): Change cast of val
7441 from "char *" to "gdb_byte *".
7442 (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
7443
7444 2013-04-30 Doug Evans <dje@google.com>
7445
7446 * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
7447 (init_cutu_and_read_dies): Flag a complaint, not error, for bad
7448 DWO stub. If DWO isn't found, just use stub.
7449 (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
7450
7451 * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
7452 calling init_cutu_and_read_dies.
7453
7454 2013-03-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
7455
7456 * target-descriptions.c (maint_print_c_tdesc_cmd):
7457 Add case to parse structures as register types and
7458 bitfields.
7459
7460 2013-04-30 Walfred Tedeschi <walfred.tedeschi@intel.com>
7461
7462 * MAINTAINERS (Write After Approval): Add myself to the list.
7463
7464 2013-04-30 Joel Brobecker <brobecker@adacore.com>
7465
7466 * sol-thread.c (rw_common): Change type of parameter "buf"
7467 to "gdb_byte *".
7468 (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
7469 rw_common to "gdb_byte *" instead of "char *".
7470
7471 2013-04-30 Joel Brobecker <brobecker@adacore.com>
7472
7473 * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
7474 of local variable msym to const struct bound_minimal_symbol.
7475 Adjust use accordingly.
7476 [ti.ti_state == TD_THR_SLEEP]: Likewise.
7477
7478 2013-04-30 Samuel Thibault <samuel.thibault@gnu.org>
7479
7480 * i386gnu-nat.c (CREG_OFFSET): New macro.
7481 (creg_offset): New array.
7482 (CREG_ADDR): Use creg_offset instead of reg_offset.
7483
7484 2013-04-30 Joel Brobecker <brobecker@adacore.com>
7485
7486 * mep-tdep.c (mep_write_pc): Delete.
7487 (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
7488 Add call to set_gdbarch_pc_regnum.
7489
7490 2013-04-30 Joel Brobecker <brobecker@adacore.com>
7491
7492 * common/filestuff.c: Replace #include <dirent.h> by
7493 #include "gdb_dirent.h".
7494
7495 2013-04-30 Joel Brobecker <brobecker@adacore.com>
7496
7497 * common/filestuff.c: Replace #include <sys/stat.h> by
7498 #include "gdb_stat.h".
7499
7500 2013-04-29 Pierre Muller <muller@sourceware.org>
7501
7502 * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
7503 editCase function rule.
7504 (get_DW_AT_signature_type): Likewise.
7505
7506 2013-04-29 Joel Brobecker <brobecker@adacore.com>
7507
7508 * m32r-tdep.c (m32r_write_pc): Delete.
7509 (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
7510 Add call to set_gdbarch_pc_regnum.
7511
7512 2013-04-29 Pierre Muller <muller@sourceware.org>
7513
7514 * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
7515
7516 2013-04-29 Joel Brobecker <brobecker@adacore.com>
7517
7518 * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
7519
7520 2013-04-28 Yao Qi <yao@codesourcery.com>
7521
7522 * solib-dsbt.c (fetch_loadmap): Re-indent.
7523 (displacement_from_map, enable_break2): Likewise.
7524 (dsbt_relocate_section_addresses): Likewise.
7525
7526 2013-04-26 Joel Brobecker <brobecker@adacore.com>
7527
7528 GDB 7.6 released.
7529
7530 2013-04-25 Andreas Kaufmann <Andreas.Kaufmann@synopsys.com>
7531
7532 PR corefiles/14983:
7533 * dwarf2read.c (process_full_comp_unit): Always create a static
7534 block.
7535
7536 2013-04-25 Hui Zhu <hui@codesourcery.com>
7537
7538 * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
7539 to loc->cmd_bytecode.
7540
7541 2013-04-24 Doug Evans <dje@google.com>
7542
7543 * dwarf2read.c (setup_type_unit_groups): Fix comment.
7544
7545 2013-04-22 Keith Seitz <keiths@redhat.com>
7546
7547 * tracepoint.c (trace_save): Call the writer's start method.
7548
7549 2013-04-24 Muhammad Bilal <mbilal@codesourcery.com>
7550
7551 PR gdb/10462
7552 * cli/cli-decode.c (lookup_command): Show an error if there is no space
7553 before argument.
7554
7555 2013-04-23 Tom Tromey <tromey@redhat.com>
7556
7557 * common/filestuff.c: Check USE_WIN32API before including
7558 sys/socket.h.
7559 (HAVE_F_GETFD): New define.
7560 (mark_cloexec): Check HAVE_F_GETFD.
7561 (gdb_open_cloexec): Change 'mode' to unsigned long.
7562 (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
7563 (gdb_pipe_cloexec): Check HAVE_PIPE.
7564 * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
7565 long.
7566
7567 2013-04-23 Hui Zhu <hui@codesourcery.com>
7568
7569 PR gdb/15293
7570 * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
7571
7572 2013-04-23 Hui Zhu <hui@codesourcery.com>
7573
7574 PR gdb/15165
7575 * breakpoint.c (dprintf_print_recreate): New.
7576 (save_breakpoints): Let it not save dprintf commands.
7577 (initialize_breakpoint_ops): Set dprintf_print_recreate.
7578
7579 2013-04-22 Tom Tromey <tromey@redhat.com>
7580
7581 PR gdb/7912:
7582 * Makefile.in (SFILES): Add filestuff.c
7583 (COMMON_OBS): Add filestuff.o.
7584 (filestuff.o): New target.
7585 * auto-load.c (auto_load_objfile_script_1): Use
7586 gdb_fopen_cloexec.
7587 * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
7588 * cli/cli-cmds.c (shell_escape): Call close_most_fds.
7589 * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
7590 * common/agent.c (gdb_connect_sync_socket): Use
7591 gdb_socket_cloexec.
7592 * common/filestuff.c: New file.
7593 * common/filestuff.h: New file.
7594 * common/linux-osdata.c (linux_common_core_of_thread)
7595 (command_from_pid, commandline_from_pid, print_source_lines)
7596 (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
7597 (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
7598 gdb_fopen_cloexec.
7599 * common/linux-procfs.c (linux_proc_get_int)
7600 (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
7601 * config.in, configure: Rebuild.
7602 * configure.ac: Don't check for sys/socket.h. Check for
7603 fdwalk, pipe2.
7604 * corelow.c (core_open): Use gdb_open_cloexec.
7605 * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
7606 * fork-child.c (fork_inferior): Call close_most_fds.
7607 * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
7608 * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
7609 * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
7610 Use gdb_fopen_cloexec.
7611 (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
7612 gdb_open_cloexec.
7613 (linux_async_pipe): Use gdb_pipe_cloexec.
7614 * remote-fileio.c (remote_fileio_func_open): Use
7615 gdb_open_cloexec.
7616 * remote.c (remote_file_put, remote_file_get): Use
7617 gdb_fopen_cloexec.
7618 * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
7619 close_most_fds.
7620 * ser-tcp.c (net_open): Use gdb_socket_cloexec.
7621 * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
7622 * solib.c (solib_find): Use gdb_open_cloexec.
7623 * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
7624 * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
7625 (tfile_open): Use gdb_open_cloexec.
7626 * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
7627 * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
7628 * xml-support.c (xml_fetch_content_from_file): Use
7629 gdb_fopen_cloexec.
7630 * main.c (captured_main): Call notice_open_fds.
7631
7632 2013-04-22 Edjunior Machado <emachado@linux.vnet.ibm.com>
7633
7634 * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
7635 'char *' to 'gdb_byte *'.
7636 (gdbsim_store_register): Change the type of 'tmp' from 'char' to
7637 'gdb_byte'.
7638
7639 2013-04-22 Yao Qi <yao@codesourcery.com>
7640
7641 * infrun.c: Fix typo in comment.
7642
7643 2013-04-22 Andrew Haley <aph@redhat.com>
7644
7645 * arm-tdep.c (BranchDest): Cast result as "unsigned long",
7646 instead of "long".
7647
7648 2013-04-20 Yao Qi <yao@codesourcery.com>
7649
7650 * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
7651 'char *' to 'gdb_byte *'. Cast the return value of
7652 'bt_ctf_get_char_array' to 'gdb_byte *'.
7653
7654 2013-04-19 Pedro Alves <palves@redhat.com>
7655
7656 * configure.ac (build_warnings): Replace -Wno-pointer-sign with
7657 -Wpointer-sign.
7658 * configure: Regenerate.
7659
7660 2013-04-19 Pedro Alves <palves@redhat.com>
7661
7662 * ser-tcp.c (net_read_prim): Cast second argument to recv to
7663 'void *'.
7664
7665 2013-04-19 Pedro Alves <palves@redhat.com>
7666
7667 * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
7668 Change type of 'myaddr' parameter to gdb_byte pointer.
7669 (monitor_write_memory_longlongs): Likewise. Cast 'myaddr' pointer
7670 to 'long long' pointer instead of to 'unsigned long long'.
7671 (monitor_write_memory_block, monitor_read_memory_single)
7672 (monitor_read_memory): Change type of 'myaddr' parameter to
7673 gdb_byte pointer.
7674
7675 2013-04-19 Pedro Alves <palves@redhat.com>
7676
7677 * record.c (validate_history_size): Make parameter 'setting'
7678 unsigned.
7679
7680 2013-04-19 Pedro Alves <palves@redhat.com>
7681
7682 * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
7683 to 'gdb_byte *'.
7684
7685 2013-04-19 Pedro Alves <palves@redhat.com>
7686
7687 * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
7688 local to int.
7689
7690 2013-04-19 Pedro Alves <palves@redhat.com>
7691
7692 * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
7693 * ada-tasks.c (read_fat_string_value): Likewise.
7694
7695 2013-04-19 Pedro Alves <palves@redhat.com>
7696
7697 * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
7698 unsigned. Pass 'tmp' to safe_read_uleb128 instead of the signed
7699 'offset', and adjust.
7700
7701 2013-04-19 Pedro Alves <palves@redhat.com>
7702
7703 * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
7704 (read_index_from_section): Add cast to 'char *'.
7705
7706 2013-04-19 Pedro Alves <palves@redhat.com>
7707
7708 * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
7709
7710 2013-04-19 Pedro Alves <palves@redhat.com>
7711
7712 * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
7713
7714 2013-04-19 Pedro Alves <palves@redhat.com>
7715
7716 * record-full.c (record_full_get_bookmark): Change local 'ret'
7717 type to char * and add cast to gdb_byte *.
7718 (record_full_goto_bookmark): Handle 'bookmark' argument as a
7719 string.
7720 * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
7721
7722 2013-04-19 Pedro Alves <palves@redhat.com>
7723
7724 * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
7725 * python/py-prettyprint.c (print_string_repr): Change type of
7726 'output' local to char *. Add cast to gdb_byte * in
7727 LA_PRINT_STRING call.
7728 (print_children): Change type of 'output' local to char *.
7729 * python/py-value.c (valpy_string): Add cast to const char * in
7730 PyUnicode_Decode call.
7731
7732 2013-04-19 Pedro Alves <palves@redhat.com>
7733
7734 * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
7735 and change its type to 'const char *'. Adjust.
7736 (mips_send_packet): Add cast to 'char *', and remove cast to
7737 'unsigned char *'.
7738 (mips_receive_packet): Remove cast to 'unsigned char *'.
7739 (mips_load_srec): Use bfd_byte.
7740 (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
7741 (pmon_checkset): Make 'value' parameter unsigned.
7742
7743 2013-04-19 Pedro Alves <palves@redhat.com>
7744
7745 * common/agent.c (agent_run_command): Add cast to gdb_byte *.
7746
7747 2013-04-19 Pedro Alves <palves@redhat.com>
7748
7749 * remote.c (remote_write_bytes_aux, compare_sections_command)
7750 (remote_read_qxfer)
7751 (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
7752 (remote_hostio_readlink, remote_bfd_iovec_pread)
7753 (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
7754 binary buffer, and char when buffer is used as string.
7755 * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
7756 (trace_save, tfile_open, traceframe_walk_blocks)
7757 (tfile_fetch_registers): Likewise.
7758
7759 2013-04-19 Pedro Alves <palves@redhat.com>
7760
7761 * ser-base.c (ser_base_write): Change prototype -- take 'void *'
7762 buffer and size_t size. Adjust.
7763 * ser-base.h (ser_base_write): Adjust.
7764 * ser-go32.c (cnts): Change type to size_t.
7765 (dos_write): Change prototype -- take 'void *'
7766 buffer and size_t size. Adjust.
7767 (dos_info): Print elements of 'cnts' as unsigned long.
7768 * serial.c (serial_write): Likewise.
7769 * serial.h (serial_write): Adjust.
7770 (struct serial_ops) <write>: Change prototype -- take 'void *'
7771 buffer and size_t size. Adjust.
7772
7773 2013-04-19 Pedro Alves <palves@redhat.com>
7774
7775 * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
7776 gdb_byte *.
7777 * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
7778
7779 2013-04-19 Pedro Alves <palves@redhat.com>
7780
7781 * alpha-tdep.c (alpha_extract_return_value): Use
7782 regcache_cooked_read_unsigned to read 'v0'.
7783
7784 2013-04-19 Pedro Alves <palves@redhat.com>
7785
7786 * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
7787 parameters 'at', 'as' and 'offset' to uint32_t.
7788
7789 2013-04-19 Pedro Alves <palves@redhat.com>
7790
7791 * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
7792 'is64' to signed 'int'.
7793
7794 2013-04-19 Pedro Alves <palves@redhat.com>
7795
7796 * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
7797 parameter to int *.
7798
7799 2013-04-19 Pedro Alves <palves@redhat.com>
7800
7801 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
7802 'insnbuf' buffer type to unsigned int[].
7803
7804 2013-04-19 Pedro Alves <palves@redhat.com>
7805
7806 * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
7807
7808 2013-04-19 Pedro Alves <palves@redhat.com>
7809
7810 * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
7811 unsigned long *.
7812
7813 2013-04-19 Pedro Alves <palves@redhat.com>
7814
7815 * alpha-tdep.c (heuristic_fence_post): Change type to int.
7816 (alpha_heuristic_proc_start): Adjust to check -1 instead of
7817 UINT_MAX.
7818 * mips-tdep.c (heuristic_fence_post): Change type to int.
7819 (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
7820
7821 2013-04-19 Pedro Alves <palves@redhat.com>
7822
7823 * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
7824 (struct gdbarch_tdep) <cris_version>: Make unsigned.
7825 (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
7826
7827 2013-04-19 Pedro Alves <palves@redhat.com>
7828
7829 * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'. Use
7830 it to get a string view of the byte buffer.
7831 * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
7832 type to gdb_byte *. Adjust.
7833 * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
7834 Change local to char *.
7835 * solib-darwin.c (find_program_interpreter): Change return type to
7836 char *. Adjust.
7837 (darwin_solib_get_all_image_info_addr_at_init): Adjust.
7838 * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
7839 * solib-frv.c (enable_break2): Change local 'buf' to char *.
7840 * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
7841 * solib-svr4.c (find_program_interpreter): Change return type to
7842 char *. Adjust.
7843 (enable_break): Change local 'interp_name' to char *.
7844 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
7845 * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
7846 (spu_pseudo_register_write_spu): Use char for string buffer.
7847 Adjust.
7848 (info_spu_event_command, info_spu_signal_command): Add casts to
7849 'char *'.
7850
7851 2013-04-19 Pedro Alves <palves@redhat.com>
7852
7853 * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
7854 gdb_byte[].
7855 (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
7856 * ada-lang.c (ada_value_assign): Use gdb_byte.
7857 * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
7858 (alphanbsd_sigtramp_offset): Use gdb_byte.
7859 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
7860 (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
7861 (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
7862 (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
7863 (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
7864 * arm-tdep.c (arm_stub_unwind_sniffer)
7865 (arm_displaced_init_closure): Use gdb_byte.
7866 (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
7867 (arm_default_thumb_le_breakpoint)
7868 (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
7869 * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
7870 thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
7871 * arm-wince-tdep.c (arm_wince_le_breakpoint)
7872 (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
7873 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
7874 (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
7875 (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
7876 * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
7877 (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
7878 * cris-tdep.c (push_stack_item, cris_push_dummy_call)
7879 (cris_store_return_value, cris_extract_return_value): Use
7880 gdb_byte.
7881 (constraint): Change type of parameter to char * from signed
7882 char*. Use gdb_byte.
7883 * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
7884 of local buffer to gdb_byte *.
7885 * dwarf2read.c (read_index_from_section): Use gdb_byte.
7886 (create_dwp_hash_table): Change type of locals to gdb_byte *.
7887 (add_address_entry): Change type of local buffer to gdb_byte[].
7888 * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
7889 (frv_push_dummy_call): Use gdb_byte.
7890 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
7891 (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
7892 (hppa_hpux_supply_save_state): Use gdb_byte.
7893 * hppa-tdep.c (hppa32_push_dummy_call)
7894 (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
7895 * ia64-tdep.c (extract_bit_field, replace_bit_field)
7896 (slotN_contents, replace_slotN_contents): Change type of parameter
7897 to gdb_byte *.
7898 (fetch_instruction, ia64_pseudo_register_write)
7899 (ia64_register_to_value, ia64_value_to_register)
7900 (ia64_extract_return_value, ia64_store_return_value)
7901 (ia64_push_dummy_call): Use gdb_byte.
7902 * m32c-tdep.c (m32c_return_value): Remove cast.
7903 * m68hc11-tdep.c (m68hc11_pseudo_register_write)
7904 (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
7905 gdb_byte.
7906 * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
7907 * mn10300-tdep.c (mn10300_store_return_value)
7908 (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
7909 gdb_byte.
7910 * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
7911 (moxie_process_record): Remove casts.
7912 * ppc-ravenscar-thread.c (supply_register_at_address)
7913 (ppc_ravenscar_generic_store_registers): Use gdb_byte.
7914 * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
7915 * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
7916 * remote-mips.c (mips_xfer_memory): Use gdb_byte.
7917 * remote.c (compare_sections_command): Use gdb_byte.
7918 * score-tdep.c (score7_free_memblock): Change type of parameter to
7919 gdb_byte *.
7920 * sh-tdep.c (sh_justify_value_in_reg): Change return type to
7921 gdb_byte *. Use gdb_byte.
7922 (sh_push_dummy_call_fpu): Use gdb_byte.
7923 (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
7924 (sh_store_return_value_nofpu, sh_store_return_value_fpu)
7925 (sh_register_convert_to_virtual, sh_register_convert_to_raw):
7926 Change parameter type to 'gdb_byte *'. Use gdb_byte.
7927 (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
7928 * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
7929 (sh64_store_return_value, sh64_register_convert_to_virtual):
7930 Change parameter type to 'gdb_byte *'. Use gdb_byte.
7931 (sh64_pseudo_register_write): Use gdb_byte.
7932 * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
7933 * solib-irix.c (fetch_lm_info): Likewise. Use gdb_byte for byte
7934 buffer.
7935 (irix_current_sos): Use gdb_byte.
7936 * solib-som.c (som_current_sos): Use gdb_byte.
7937 * sparc-ravenscar-thread.c (supply_register_at_address)
7938 (sparc_ravenscar_generic_store_registers): Use gdb_byte.
7939 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
7940 * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
7941 * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
7942 'gdb_byte *'.
7943 * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
7944 'gdb_byte *'.
7945 * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
7946 * xstormy16-tdep.c (xstormy16_extract_return_value)
7947 (xstormy16_store_return_value): Change parameter type to
7948 'gdb_byte *'. Adjust.
7949 (xstormy16_push_dummy_call): Use gdb_byte.
7950 * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
7951 (call0_analyze_prologue, execute_code): Use gdb_byte.
7952
7953 2013-04-19 Vladimir Kargov <kargov@gmail.com>
7954 Pedro Alves <palves@redhat.com>
7955
7956 * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
7957 value contents.
7958
7959 2013-04-17 Doug Evans <dje@google.com>
7960
7961 * dwarf2read.c (struct signatured_type): New member type.
7962 (struct attribute): Replace member signatured_type with signature.
7963 (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
7964 (read_call_site_scope): Call follow_die_ref instead of
7965 follow_die_ref_or_sig.
7966 (read_structure_type): Rewrite handling of signatured types.
7967 (read_enumeration_type): Ditto.
7968 (read_attribute_value): Update.
7969 (build_error_marker_type): New function.
7970 (lookup_die_type): Add assert. Rewrite handling of signatured types.
7971 Don't call error for bad types, just build an error marker type.
7972 (dump_die_shallow): Update.
7973 (follow_die_sig_1): Renamed from follow_die_sig.
7974 Don't call error for bad types, instead return NULL.
7975 (follow_die_sig): New function.
7976 (get_signatured_type, get_DW_AT_signature_type): New functions.
7977
7978 2013-04-17 Yufeng Zhang <yufeng.zhang@arm.com>
7979
7980 * aarch64-tdep.c (aarch64_write_pc): Removed.
7981 (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
7982 function.
7983
7984 2013-04-17 Yao Qi <yao@codesourcery.com>
7985
7986 * top.c (print_gdb_configuration): Print configure-time
7987 parameter on using libbabeltrace or not.
7988
7989 2013-04-16 Pedro Alves <palves@redhat.com>
7990
7991 * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
7992
7993 2013-04-16 Pedro Alves <palves@redhat.com>
7994
7995 * common/glibc_thread_db.h: Update from upstream glibc
7996 (git 568035b7874a099087b77f7bba3e36a1173787b0).
7997
7998 2013-04-16 Pedro Alves <palves@redhat.com>
7999
8000 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
8001 * common/glibc_thread_db.h: ... this new file ...
8002 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
8003
8004 2013-04-16 Will Newton <will.newton@gmail.com>
8005 Pedro Alves <palves@redhat.com>
8006
8007 PR build/11881
8008
8009 * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
8010 (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
8011 HAVE_THREAD_DB_H.
8012
8013 2013-04-16 Pedro Alves <palves@redhat.com>
8014 Eli Zaretskii <eliz@gnu.org>
8015
8016 * NEWS: Mention "set foo unlimited".
8017
8018 2013-04-15 Doug Evans <dje@google.com>
8019
8020 * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
8021 (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
8022 (create_dwo_cu_reader): Renamed from
8023 create_dwo_debug_info_hash_table_reader.
8024 (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
8025 Remove support for multiple CUs in a DWO file.
8026 (open_and_init_dwo_file, lookup_dwo_cutu): Update.
8027
8028 * dwarf2read.c (create_debug_types_hash_table): Use hex_string
8029 instead of phex.
8030 (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
8031 (create_dwo_in_dwp): Ditto.
8032
8033 2013-04-15 Tom Tromey <tromey@redhat.com>
8034
8035 * NEWS: Move recent entries into "since 7.6" section.
8036
8037 2013-04-15 Tom Tromey <tromey@redhat.com>
8038
8039 PR c++/13588:
8040 * NEWS: Update.
8041 * break-catch-throw.c (struct exception_catchpoint)
8042 <exception_rx, pattern>: New fields.
8043 (fetch_probe_arguments, dtor_exception_catchpoint)
8044 (check_status_exception_catchpoint)
8045 (print_one_detail_exception_catchpoint): New functions.
8046 (handle_gnu_v3_exceptions): Add "except_rx" argument.
8047 Compile regular expression if needed.
8048 (extract_exception_regexp): New function.
8049 (catch_exception_command_1): Use extract_exception_regexp.
8050 (compute_exception): Use fetch_probe_arguments.
8051 (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
8052 and check_status fields.
8053 * cp-abi.c (cplus_typename_from_type_info): New function.
8054 * cp-abi.h (cplus_typename_from_type_info): Declare.
8055 (struct cp_abi_ops) <get_typename_from_type_info>: New field.
8056 * gdb_regex.h (compile_rx_or_error): Declare.
8057 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
8058 comment.
8059 (init_gnuv3_ops): Set get_type_from_type_info field.
8060 * probe.c (compile_rx_or_error): Move...
8061 * utils.c (compile_rx_or_error): ... here.
8062
8063 2013-04-15 Tom Tromey <tromey@redhat.com>
8064
8065 PR c++/15176:
8066 * NEWS: Update.
8067 * break-catch-throw.c (compute_exception): New function.
8068 (exception_funcs): New global.
8069 (_initialize_break_catch_throw): Create $_exception.
8070 * cp-abi.c (cplus_type_from_type_info): New function.
8071 * cp-abi.h (cplus_type_from_type_info): Declare.
8072 (struct cp_abi_ops) <get_type_from_type_info>: New field.
8073 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
8074 (gnuv3_get_type_from_type_info): New functions.
8075 (init_gnuv3_ops): Set get_type_from_type_info ABI field.
8076
8077 2013-04-15 Tom Tromey <tromey@redhat.com>
8078
8079 * break-catch-throw.c (struct exception_names): New.
8080 (exception_functions): Change type.
8081 (re_set_exception_catchpoint): Look for SDT probes.
8082
8083 2013-04-15 Tom Tromey <tromey@redhat.com>
8084
8085 PR c++/10119:
8086 * break-catch-throw.c (exception_functions): New global.
8087 (gnu_v3_exception_catchpoint_ops): Move earlier.
8088 (struct exception_catchpoint): New.
8089 (classify_exception_breakpoint): Rewrite.
8090 (re_set_exception_catchpoint): New function.
8091 (handle_gnu_v3_exceptions): Return void. Use init_catchpoint.
8092 Allocate a struct exception_catchpoint.
8093 (catch_exception_command_1): Update.
8094 (initialize_throw_catchpoint_ops): Set 're_set' method.
8095
8096 2013-04-15 Tom Tromey <tromey@redhat.com>
8097
8098 * Makefile.in (SFILES): Add break-catch-throw.c
8099 (COMMON_OBS): Add break-catch-throw.o.
8100 * break-catch-throw.c: New file.
8101 * breakpoint.c: Move exception-catching code to new file.
8102 (ep_parse_optional_if_clause): No longer static.
8103 * breakpoint.h (ep_parse_optional_if_clause): Declare.
8104
8105 2013-04-15 Tom Tromey <tromey@redhat.com>
8106
8107 PR c++/9065:
8108 * NEWS: Update.
8109 * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
8110 * c-exp.y (TYPEID): New token.
8111 (exp): Add new TYPEID productions.
8112 (ident_tokens): Add "typeid".
8113 * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
8114 * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
8115 (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
8116 * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
8117 * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
8118 case.
8119 * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
8120 (build_std_type_info_type, gnuv3_get_typeid_type)
8121 (gnuv3_get_typeid): New functions.
8122 (init_gnuv3_ops): Initialize std_type_info_gdbarch_data. Set
8123 new fields on ABI object.
8124 * parse.c (operator_length_standard) <OP_TYPEID>: New case.
8125 * std-operator.def (OP_TYPEID): New.
8126
8127 2013-04-15 Tom Tromey <tromey@redhat.com>
8128
8129 * elfread.c (elf_symtab_read): Install versioned symbol under
8130 unversioned name as well.
8131
8132 2013-04-15 Tom Tromey <tromey@redhat.com>
8133
8134 PR c++/11990:
8135 * c-lang.c (cplus_language_defn): Use gdb_demangle.
8136 * c-typeprint.c (c_type_print_base): Use gdb_demangle.
8137 * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
8138 (gdb_demangle): New function.
8139 * cp-support.h (gdb_demangle): Declare.
8140 * dwarf2read.c (dwarf2_physname, fixup_partial_die)
8141 (dwarf2_name): Use gdb_demangle.
8142 * gdbtypes.c (check_stub_method): Use gdb_demangle.
8143 * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
8144 suffixes from name.
8145 (gnuv3_print_method_ptr): Use gdb_demangle.
8146 * jv-lang.c (java_demangle): Use gdb_demangle.
8147 * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
8148 * language.c (unk_lang_demangle): Use gdb_demangle.
8149 * symtab.c (symbol_find_demangled_name)
8150 (demangle_for_lookup): Use gdb_demangle.
8151
8152 2013-04-15 Tom Tromey <tromey@redhat.com>
8153
8154 PR c++/12824:
8155 * NEWS: Update.
8156 * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
8157 New constant.
8158 (classify_exception_breakpoint): New function.
8159 (print_it_exception_catchpoint, print_one_exception_catchpoint)
8160 (print_mention_exception_catchpoint)
8161 (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
8162 (catch_exception_command_1): Handle "rethrow" catchpoint.
8163 (catch_rethrow_command): New function.
8164 (_initialize_breakpoint): Add "catch rethrow" command.
8165
8166 2013-04-15 Pierre Muller <muller@sourceware.org>
8167
8168 * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
8169 set_gdbarch_write_pc as deprecated anymore.
8170
8171 2013-04-15 Joel Brobecker <brobecker@adacore.com>
8172
8173 * spu-tdep.c (spu_write_pc): Add empty line after local variable
8174 declarations.
8175
8176 2013-04-13 Yao Qi <yao@codesourcery.com>
8177
8178 * ctf.c (_initialize_ctf): Include "completer.h".
8179 Call add_target_with_completer instead of add_target.
8180
8181 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
8182
8183 Fix GDB regression related to PR binutils/14813.
8184 * jit.c (mem_bfd_iovec_close): Return 0 for success.
8185 * minidebug.c (lzma_close): Add return value comment.
8186 * remote.c (remote_bfd_iovec_close): Return 0 for success.
8187 * solib-spu.c (spu_bfd_iovec_close): Likewise.
8188 * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
8189
8190 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
8191
8192 * config.in: Regenerate.
8193
8194 2013-04-12 Tom Tromey <tromey@redhat.com>
8195
8196 * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
8197 const.
8198 * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
8199 (struct die_reader_specs) <buffer>: Likewise.
8200 (die_reader_func_ftype): Make 'info_ptr' const.
8201 (struct line_header) <include_dirs, statement_program_start,
8202 statement_program_end>: Now const.
8203 (struct file_entry) <name>: Likewise.
8204 (struct partial_die_info) <sibling>: Likewise.
8205 (struct dwarf_block) <data>: Likewise.
8206 (dwarf2_read_section): Remove cast.
8207 (dwarf2_get_section_info): Make 'bufp' const.
8208 (read_index_from_section): Constify.
8209 (dw2_get_file_names_reader): Make 'info_ptr' const.
8210 (dw2_get_primary_filename_reader): Likewise.
8211 (read_comp_unit_head): Make 'info_ptr' and return type const.
8212 (read_and_check_comp_unit_head, read_and_check_type_unit_head):
8213 Likewise.
8214 (read_abbrev_offset): Constify.
8215 (dwarf2_create_include_psymtab): Make 'name' const.
8216 (create_debug_types_hash_table): Update.
8217 (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
8218 (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
8219 Constify.
8220 (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
8221 (load_partial_comp_unit_reader): Make 'info_ptr' const.
8222 (read_comp_units_from_section): Constify.
8223 (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
8224 (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
8225 const.
8226 (dwarf2_compute_name, setup_type_unit_groups): Constify.
8227 (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
8228 (create_dwp_hash_table, dwarf2_ranges_read)
8229 (dwarf2_record_block_ranges): Constify.
8230 (read_die_and_children, read_die_and_siblings_1)
8231 (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
8232 const.
8233 (read_full_die_1, read_full_die): Make 'info_ptr' const.
8234 (abbrev_table_read_table): Constify.
8235 (load_partial_dies): Make 'info_ptr' const.
8236 (read_partial_die, read_attribute_value, read_attribute): Make
8237 'info_ptr' and return type const.
8238 (read_address, read_initial_length)
8239 (read_checked_initial_length_and_offset, read_offset)
8240 (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
8241 const.
8242 (read_direct_string): Make 'buf' and return type const.
8243 (read_indirect_string_at_offset, read_indirect_string_from_dwz)
8244 (read_indirect_string): Make return type const.
8245 (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
8246 (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
8247 'info_ptr' const.
8248 (read_str_index): Make return type const.
8249 (add_include_dir): Make 'include_dir' const.
8250 (add_file_name): Make 'name' const.
8251 (dwarf_decode_line_header): Constify.
8252 (psymtab_include_file_name): Make return type const.
8253 (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
8254 (dwarf2_start_subfile): Make 'filename' const.
8255 (dwarf2_const_value_attr): Make 'bytes' const.
8256 (read_signatured_type_reader): Make 'info_ptr' const.
8257 (decode_locdesc): Constify.
8258 (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
8259 const.
8260 (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
8261 'mac_end', and return type const.
8262 (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
8263 (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
8264 type const.
8265 (per_cu_header_read_in): Constify.
8266 * symfile.h (dwarf2_get_section_info): Update.
8267
8268 2013-04-12 Tom Tromey <tromey@redhat.com>
8269
8270 * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
8271
8272 2013-04-12 Eli Zaretskii <eliz@gnu.org>
8273
8274 * NEWS: Mention "show configuration", --configuration.
8275 * top.c (print_gdb_configuration): New function, displays the
8276 details about GDB configure-time parameters.
8277 (print_gdb_version): Mention "show configuration".
8278 * cli/cli-cmds.c (show_configuration): New function.
8279 (_initialize_cli_cmds): Add the "show configuration" command.
8280 * main.c (captured_main) <print_configuration>: New static var.
8281 <long_options>: Use it.
8282 If --configuration was given, call print_gdb_configuration.
8283
8284 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8285 Pedro Alves <palves@redhat.com>
8286
8287 * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
8288 (generated_files): Add gcore.
8289 (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
8290 HAVE_NATIVE_GCORE_HOST.
8291 (gcore): New.
8292 * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
8293 * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
8294 config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
8295 config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
8296 config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
8297 Add HAVE_NATIVE_GCORE_HOST.
8298 * configure: Regenerate.
8299 * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
8300 New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME. New
8301 AC_CONFIG_FILES for gcore.
8302 * configure.tgt: Add gdb_have_gcore to the initial comment. Set
8303 gdb_have_gcore.
8304 * gdb_gcore.sh: Rename to ...
8305 * gcore.in: ... here. Remove gcore.sh comment. Use GDB_TRANSFORM_NAME
8306 and GCORE_TRANSFORM_NAME substitutions.
8307
8308 Fix parsing tabs in ${gdb_target_obs}.
8309 * configure.tgt (gdb_have_gcore): Replace case with for and if.
8310
8311 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8312
8313 * remote.c (unpush_and_perror): Add output message final dot.
8314
8315 2013-04-11 Yao Qi <yao@codesourcery.com>
8316
8317 * tracepoint.c (tfile_interp_line): Fit parameters line and
8318 utpp in one line.
8319
8320 2013-04-10 Joel Brobecker <brobecker@adacore.com>
8321
8322 * solib.c (solib_map_sections): Remove code overwriting
8323 SO->SO_NAME with the bfd's filename.
8324
8325 2013-04-10 Pedro Alves <palves@redhat.com>
8326
8327 * cli/cli-decode.c (integer_unlimited_completer): New function.
8328 (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
8329 (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
8330 completer.
8331 * cli/cli-setshow.c: Include "cli/cli-utils.h".
8332 (is_unlimited_literal): New function.
8333 (do_set_command): Handle literal "unlimited" arguments.
8334 * frame.c (_initialize_frame) <set backtrace limit>: Document
8335 "unlimited".
8336 * printcmd.c (_initialize_printcmd) <set print
8337 max-symbolic-offset>: Add help text.
8338 * record-full.c (_initialize_record_full) <set record full
8339 insn-number-max>: Likewise.
8340 * record.c (_initialize_record) <set record
8341 instruction-history-size, set record function-call-history-size>:
8342 Add help text.
8343 * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
8344 help text.
8345 * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
8346 Likewise.
8347 * source.c (_initialize_source) <set listsize>: Add help text.
8348 * utils.c (initialize_utils) <set height, set width>: Likewise.
8349 <set pagination>: Mention "set height unlimited".
8350 * valprint.c (_initialize_valprint) <set print elements, set print
8351 repeats>: Document "unlimited".
8352
8353 2013-04-10 Pedro Alves <palves@redhat.com>
8354
8355 * cli/cli-cmds.c (quit_command): Call query_if_trace_running
8356 instead of disconnect_tracing.
8357 * infcmd.c (detach_command, disconnect_command): Call
8358 query_if_trace_running. Adjust.
8359 * top.c: Include "tracepoint.h".
8360 (quit_target): Delete. Contents moved ...
8361 (quit_force): ... here. Wrap each stage of teardown in
8362 TRY_CATCH. Call disconnect_tracing before detaching.
8363
8364 2013-04-10 Hui Zhu <hui@codesourcery.com>
8365 Yao Qi <yao@codesourcery.com>
8366
8367 * configure.ac: Check libbabeltrace is installed.
8368 * config.in: Regenerate.
8369 * configure: Regenerate.
8370 * Makefile.in (LIBBABELTRACE): New.
8371 (CLIBS): Add LIBBABELTRACE.
8372 * ctf.c: Include "exec.h".
8373 (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
8374 (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
8375 (ctf_save_metadata_header): Define new type aliases in
8376 metadata.
8377 (ctf_write_header): Define event type "tsv_def" and "tp_def"
8378 in metadata. Start a new faked packet for trace status.
8379 (ctf_write_status): Write trace status to CTF.
8380 (ctf_write_uploaded_tsv): Write TSV to CTF.
8381 (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
8382 (ctf_write_definition_end): End the faked packet.
8383
8384 (ctx, ctf_iter, trace_dirname): New.
8385 (start_pos): New variable.
8386 (ctf_destroy, ctf_open_dir, ctf_open): New.
8387 (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
8388 macros.
8389 (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
8390 (ctf_fetch_registers, ctf_xfer_partial): New.
8391 (ctf_get_trace_state_variable_value): New.
8392 (ctf_get_tpnum_from_frame_event): New.
8393 (ctf_get_traceframe_address): New.
8394 (ctf_trace_find, ctf_has_stack): New.
8395 (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
8396 (ctf_get_trace_status, ctf_read_status): New.
8397 (_initialize_ctf): New.
8398 * tracepoint.c (get_tracepoint_number): New
8399 (get_uploaded_tsv): Remove 'static'.
8400 (struct traceframe_info, trace_regblock_size): Move it to ...
8401 * tracepoint.h: ... here.
8402 (get_tracepoint_number): Declare it.
8403 (get_uploaded_tsv): Declare it.
8404
8405 * NEWS: Mention new configure option.
8406
8407 2013-04-10 Pedro Alves <palves@redhat.com>
8408 Hui Zhu <hui@codesourcery.com>
8409
8410 * breakpoint.c (dprintf_re_set): New.
8411 (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
8412 to dprintf_re_set.
8413
8414 2013-04-09 Joel Brobecker <brobecker@adacore.com>
8415
8416 * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
8417 Remove solib-svr4.o from the list.
8418
8419 2013-04-09 Joel Brobecker <brobecker@adacore.com>
8420
8421 * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
8422 Use gdb_assert_not_reached instead of invalid boolean expression.
8423
8424 2013-04-09 Pedro Alves <palves@redhat.com>
8425
8426 * remote.c (unpush_and_perror): New function.
8427 (readchar, remote_serial_write): Use it.
8428
8429 2013-04-09 Markus Metzger <markus.t.metzger@intel.com>
8430
8431 * NEWS: Mention new btrace RSP packets.
8432
8433 2013-04-08 Tom Tromey <tromey@redhat.com>
8434
8435 * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
8436 long.
8437
8438 2013-04-08 Tom Tromey <tromey@redhat.com>
8439
8440 * maint.c (print_bfd_section_info): Print the section index.
8441 * symmisc.c (dump_msymbols): Print the section index.
8442
8443 2013-04-08 Tom Tromey <tromey@redhat.com>
8444
8445 PR symtab/8424:
8446 * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
8447 SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
8448 * breakpoint.c (resolve_sal_pc): Update.
8449 * elfread.c (elf_gnu_ifunc_record_cache): Update.
8450 * findvar.c (struct minsym_lookup_data) <objfile>: New field.
8451 (minsym_lookup_iterator_cb): Use it.
8452 (default_read_var_value): Update.
8453 * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
8454 Update.
8455 * infcmd.c (jump_command): Update.
8456 * linespec.c (minsym_found): Update.
8457 * maint.c (maintenance_translate_address): Update.
8458 * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
8459 (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
8460 * parse.c (write_exp_msymbol): Update.
8461 * printcmd.c (address_info): Update.
8462 * psymtab.c (find_pc_sect_psymbol): Update.
8463 (fixup_psymbol_section): Check SYMBOL_SECTION, not
8464 SYMBOL_OBJ_SECTION.
8465 (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
8466 Don't initialize SYMBOL_OBJ_SECTION.
8467 * spu-tdep.c (spu_catch_start): Update.
8468 * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
8469 * symmisc.c (dump_msymbols, print_symbol): Update.
8470 * symtab.c (fixup_section): Don't set 'obj_section'. Change
8471 how fallback section is computed.
8472 (fixup_symbol_section): Update.
8473 (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
8474 Update.
8475 (allocate_symbol, initialize_symbol, allocate_template_symbol):
8476 Initialize SYMBOL_SECTION.
8477 * symtab.h (struct general_symbol_info) <section>: Update comment.
8478 <obj_section>: Remove.
8479 (SYMBOL_OBJ_SECTION): Add 'objfile' argument. Rewrite.
8480 (SYMBOL_OBJFILE): New macro.
8481
8482 2013-04-08 Tom Tromey <tromey@redhat.com>
8483
8484 * coffread.c (record_minimal_symbol): Update.
8485 * dbxread.c (record_minimal_symbol): Update.
8486 * elfread.c (record_minimal_symbol): Update.
8487 * machoread.c (macho_symtab_add_minsym): Update.
8488 * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
8489 Update.
8490 * minsyms.c (prim_record_minimal_symbol): Update.
8491 (prim_record_minimal_symbol_full): Remove 'bfd_section'
8492 argument.
8493 (prim_record_minimal_symbol_and_info): Likewise.
8494 * minsyms.h (prim_record_minimal_symbol_full)
8495 (prim_record_minimal_symbol_and_info): Update.
8496 * symtab.c (allocate_symbol, initialize_symbol)
8497 (allocate_template_symbol): Initialize SYMBOL_SECTION.
8498 * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
8499 Update.
8500
8501 2013-04-08 Tom Tromey <tromey@redhat.com>
8502
8503 PR symtab/8423:
8504 * solib-som.c (som_solib_section_offsets): Use BFD section
8505 indices. Set offsets for all sections.
8506 * somread.c (som_symtab_read): Compute BFD section for
8507 symbol. Use prim_record_minimal_symbol_and_info.
8508 (som_symfile_read): Fix comment.
8509 (struct find_section_offset_arg): New.
8510 (find_section_offset, set_section_index): New functions.
8511 (som_symfile_offsets): Use set_section_index to compute
8512 section indices.
8513
8514 2013-04-08 Tom Tromey <tromey@redhat.com>
8515
8516 * coffread.c (cs_to_section): Use gdb_bfd_section_index.
8517 * elfread.c (record_minimal_symbol, elf_symtab_read): Use
8518 gdb_bfd_section_index.
8519 * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
8520 New functions.
8521 * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
8522 Declare.
8523 * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
8524 Update.
8525 * objfiles.c (add_to_objfile_sections_full): New function.
8526 (add_to_objfile_sections): Use it.
8527 (build_section_table): Rewrite.
8528 (objfile_relocate1): Use gdb_bfd_section_index. Update.
8529 * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
8530 (struct objfile) <sections>: Update comment.
8531 (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
8532 is NULL.
8533 (ALL_OBJSECTIONS): Use it.
8534 * solib-dsbt.c (dsbt_relocate_main_executable): Update.
8535 * solib-frv.c (frv_relocate_main_executable): Update.
8536 * solib-target.c (solib_target_relocate_section_addresses):
8537 Use gdb_bfd_section_index.
8538 * symfile.c (build_section_addr_info_from_section_table):
8539 Use gdb_bfd_section_index.
8540 (build_section_addr_info_from_bfd, place_section): Likewise.
8541 * symtab.c (fixup_section): Update.
8542 * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
8543
8544 2013-04-08 Tom Tromey <tromey@redhat.com>
8545
8546 * minsyms.h (struct bound_minimal_symbol): New.
8547 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
8548 Remove objfile argument.
8549 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
8550 Return bound_minimal_symbol.
8551 * minsyms.c (lookup_minimal_symbol_by_pc_1)
8552 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
8553 Return bound_minimal_symbol.
8554 (in_gnu_ifunc_stub): Update.
8555 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
8556 Remove 'objfile_p' argument.
8557 (lookup_solib_trampoline_symbol_by_pc): Update.
8558 * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
8559 arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
8560 c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
8561 glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
8562 i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
8563 linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
8564 mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
8565 ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
8566 stack.c, symtab.c, tui/tui-disasm.c: Update.
8567
8568 2013-04-08 Tom Tromey <tromey@redhat.com>
8569
8570 * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
8571 Use symbol's obstack, not an objfile.
8572 * coffread.c (process_coff_symbol): Update.
8573 * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
8574 * jv-lang.c (add_class_symbol): Update.
8575 * mdebugread.c (new_symbol): Update.
8576 * minsyms.c (prim_record_minimal_symbol_full)
8577 (terminate_minimal_symbol_table): Update.
8578 * psymtab.c (add_psymbol_to_bcache): Clear entire symbol. Update.
8579 * stabsread.c (define_symbol, read_enum_type): Update.
8580 * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
8581 Handle Ada specially.
8582 (symbol_set_language): Add 'obstack' argument.
8583 (symbol_set_names): Update.
8584 (symbol_natural_name, symbol_demangled_name): Always use
8585 ada_decode_symbol.
8586 * symtab.h (struct general_symbol_info)
8587 <language_specific::obstack>: New field.
8588 <ada_mangled>: New field.
8589 (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
8590 (symbol_set_language): Update.
8591
8592 2013-04-08 Tom Tromey <tromey@redhat.com>
8593
8594 * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
8595 Take an obstack, not an objfile.
8596 (symbol_set_names): Update.
8597 * symtab.h (symbol_set_demangled_name): Update.
8598
8599 2013-04-08 Tom Tromey <tromey@redhat.com>
8600
8601 * coffread.c (process_coff_symbol, coff_read_enum_type): Call
8602 allocate_symbol.
8603 * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
8604 (read_func_scope): Call allocate_template_symbol.
8605 (new_symbol_full): Call allocate_symbol.
8606 * jit.c (finalize_symtab): Call allocate_symbol.
8607 * jv-lang.c (add_class_symbol): Call allocate_symbol.
8608 * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
8609 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
8610 (common_block_end): Call allocate_symbol.
8611 * symtab.c (allocate_symbol, initialize_symbol)
8612 (allocate_template_symbol): New functions.
8613 * symtab.c (allocate_symbol, initialize_symbol)
8614 (allocate_template_symbol): Declare.
8615 * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
8616
8617 2013-04-08 Pedro Alves <palves@redhat.com>
8618 Keith Seitz <keiths@redhat.com>
8619
8620 * breakpoint.c (create_breakpoint): Rename
8621 "parse_condition_and_thread" parameter to "parse_arg". Update
8622 describing comment. If !PARSE_ARG, then error out if ARG is not
8623 the empty string after extracting the location.
8624 * breakpoint.h (create_breakpoint): Rename
8625 "parse_condition_and_thread" parameter to "parse_arg".
8626
8627 2013-04-08 Aleksandar Ristovski <aristovski@qnx.com
8628
8629 * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
8630
8631 2013-04-07 Yao Qi <yao@codesourcery.com>
8632
8633 * remote.c (remote_trace_find): Change type of parameters 'addr1'
8634 and 'addr2' to CORE_ADDR.
8635 * target.c (update_current_target): Update.
8636 * target.h (struct target_ops) <to_trace_find>: Change parameter
8637 type to CORE_ADDR.
8638 * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
8639 'addr2' to CORE_ADDR.
8640 (tfile_trace_find): Likewise.
8641 (tfile_get_traceframe_address): Change return type to CORE_ADDR.
8642 Change local variable 'addr' to type CORE_ADDR.
8643 * tracepoint.h (tfind_1): Update declaration.
8644
8645 2013-04-06 Eli Zaretskii <eliz@gnu.org>
8646
8647 * windows-nat.c (windows_get_absolute_argv0): Move from here...
8648 * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
8649 Include main.h.
8650
8651 * windows-nat.h (windows_get_absolute_argv0): Move prototype from
8652 here...
8653 * main.h (windows_get_absolute_argv0): ...to here.
8654
8655 2013-04-05 Doug Evans <dje@google.com>
8656
8657 * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
8658 (read_cutu_die_from_dwo): Add comments.
8659 (read_structure_type): Update comment.
8660 (read_enumeration_type, read_namespace_type): Update comment.
8661 (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
8662
8663 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
8664
8665 Convert man pages to texinfo, new gdbinit.5 texinfo page.
8666 * Makefile.in (gdb.z): Remove.
8667 (install-only): Remove $(man1dir) and gdb.1 installation.
8668 * gdb.1: Remove.
8669
8670 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
8671
8672 Fix compatibility with Linux kernel 3.8.3.
8673 * linux-tdep.c (linux_find_memory_regions_full): Move variable number
8674 to more inner block. Remove parsing of NUMBER from outer block.
8675 Parse NUMBER only if KEYWORD has been identified.
8676
8677 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
8678
8679 Fix variable name shadowing.
8680 * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
8681 filename to mapsfilename and update its uses.
8682
8683 2013-04-05 Eli Zaretskii <eliz@gnu.org>
8684
8685 * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
8686 empty. See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
8687 and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
8688 details of the problem.
8689
8690 2013-04-04 Pedro Alves <palves@redhat.com>
8691 Hui Zhu <hui@codesourcery.com>
8692
8693 * breakpoint.c (validate_commands_for_breakpoint): If validating a
8694 tracepoint, reset its STEP_COUNT and call validate_actionline.
8695
8696 2013-04-03 Doug Evans <dje@google.com>
8697
8698 * dwarf2read.c (read_die_and_siblings_1): Renamed from
8699 read_die_and_siblings.
8700 (read_die_and_siblings): New function.
8701 (read_cutu_die_from_dwo): Dump die if requested.
8702 (read_die_and_children): Call read_full_die_1 and
8703 read_die_and_siblings_1.
8704 (read_full_die): Dump die if requested.
8705
8706 * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
8707
8708 * dwarf2read.c (struct dwo_file): New member comp_dir.
8709 Rename member name to dwo_name. All uses updated.
8710 (hash_dwo_file): Include comp_dir in computation.
8711 (eq_dwo_file): Ditto.
8712 (lookup_dwo_file_slot): New arg comp_dir. All callers updated.
8713 (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
8714
8715 * psymtab.c (read_psymtabs_with_fullname): Don't call
8716 psymtab_to_fullname if the basenames are different.
8717
8718 2013-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8719
8720 * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
8721 New entry about "fullname" presence.
8722
8723 2013-04-03 Pedro Alves <palves@redhat.com>
8724
8725 * NEWS: Mention x86_64/Cygwin as new native configuration.
8726
8727 2013-04-02 Doug Evans <dje@google.com>
8728
8729 * dwarf2read.c (read_structure_type): Fix typo in comment.
8730
8731 2013-04-02 Pedro Alves <palves@redhat.com>
8732
8733 * NEWS: Mention "set/show debug aarch64", "set/show debug
8734 coff-pe-read" and "set/show debug mach-o".
8735
8736 2013-04-02 Pedro Alves <palves@redhat.com>
8737
8738 * NEWS: Mention "set/show remote trace-buffer-size-packet".
8739
8740 2013-04-02 Eli Zaretskii <eliz@gnu.org>
8741
8742 * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
8743 gdb_string.h is now in common/.
8744
8745 2013-04-02 Pedro Alves <palves@redhat.com>
8746
8747 * NEWS: Move "set debug notification" and "set trace-buffer-size"
8748 under "New options".
8749
8750 2013-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
8751
8752 Revert this patch:
8753 PR gdb/15275
8754 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
8755
8756 2013-04-02 Pedro Alves <palves@redhat.com>
8757
8758 PR gdb/15275
8759
8760 * remote.c (send_interrupt_sequence): Use remote_serial_write.
8761 (remote_serial_write): New function.
8762 (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
8763
8764 2013-04-01 Jiong Wang <jiwang@tilera.com>
8765
8766 * NEWS: Mention TILE-Gx in "New native configurations" and
8767 "New targets" sections.
8768
8769 2013-04-01 Doug Evans <dje@google.com>
8770
8771 * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
8772 (process_enumeration_scope): Simplify.
8773
8774 * dwarf2read.c (struct dwarf2_per_cu_data): Move member
8775 type_unit_group ...
8776 (struct signatured_type): ... to here.
8777 (sig_type_ptr): New typedef.
8778 (type_unit_group): Delete member 't.first_cu'. Move member 'tus'
8779 out of union 't'. All uses updated.
8780 (dw2_get_file_names_reader): Assert not called for a type unit.
8781 (dw2_get_file_names): Assert not called for a type unit or type
8782 unit group.
8783 (build_type_psymtabs_reader): Assert called for a type unit.
8784 (build_type_psymtab_dependencies): Assert called for a type unit group.
8785
8786 * dwarf2read.c (free_dwo_file): Add comment.
8787 (dwarf2_per_objfile_free): Unref dwp bfd.
8788
8789 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
8790
8791 * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
8792 (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
8793 (read_pe_exported_syms): Remove unused 'exportix'.
8794 (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
8795 'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
8796 'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
8797
8798 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
8799
8800 * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
8801 (print_it_watchpoint): Remove unused 'bl'.
8802 (say_where): Remove unused 'uiout'.
8803 (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
8804 (bkpt_breakpoint_hit): Remove unused 'b'.
8805 (internal_bkpt_print_it): Remove unused 'uiout'.
8806 * buildsym.c (augment_type_symtab): Remove unused 'i'.
8807
8808 2013-03-31 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
8809
8810 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
8811 (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
8812
8813 2013-03-29 Doug Evans <dje@google.com>
8814
8815 * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
8816 Delete arg is_dwp. All callers updated.
8817 (open_dwp_file): New function.
8818 (open_and_init_dwp_file): Call it.
8819 (get_dwp_file): New function.
8820 (lookup_dwo_cutu): Call it.
8821
8822 * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
8823 unnecessary, cleanup.
8824
8825 * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
8826
8827 * dwarf2read.c (read_cutu_die_from_dwo): New function.
8828 (lookup_dwo_unit): New function.
8829 (init_cutu_and_read_dies): Move DWO handling to new functions.
8830
8831 * dwarf2read.c (struct signatured_type): Tweak comment.
8832 (struct dwo_unit): Tweak comment.
8833 (create_debug_types_hash_table): Tweak comment. Reformat long line.
8834 (create_dwo_debug_info_hash_table): Tweak comment.
8835 (dwarf2_per_cu_offset_and_type): Tweak comment.
8836
8837 * dwarf2read.c (lookup_signatured_type): Remove complaint about
8838 missing .debug_types section.
8839
8840 2013-03-29 Yao Qi <yao@codesourcery.com>
8841
8842 * corelow.c: Include "completer.h".
8843 (_initialize_corelow): Call add_target_with_completer with
8844 argument 'filename_completer'.
8845 * tracepoint.c: Likewise.
8846 * exec.c (_initialize_exec): Likewise.
8847 * target.c (add_target): Rename to ...
8848 (add_target_with_completer): ... this. Call set_cmd_completer
8849 if parameter completer is not NULL.
8850 (add_target): New.
8851 * target.h: Include "command.h".
8852 (add_target_with_completer): Declare it.
8853
8854 2013-03-28 Joel Brobecker <brobecker@adacore.com>
8855
8856 * coffread.c (is_import_fixup_symbol): New function.
8857 (record_minimal_symbol): Use is_import_fixup_symbol to
8858 detect import fixup symbols, and discard them.
8859
8860 2013-03-28 Doug Evans <dje@google.com>
8861
8862 * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
8863 types hash table until we know we need it.
8864
8865 * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
8866 index numbers.
8867
8868 * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
8869 All callers updated.
8870 (dw2_print_stats): Print #read CUs too.
8871 (dump_die_shallow): Print signatured types better.
8872
8873 * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
8874 info_or_types_section to section. All uses updated.
8875 (struct dwo_unit): Ditto.
8876
8877 2013-03-28 Pedro Alves <palves@redhat.com>
8878
8879 * NEWS (New options): New section.
8880 (New options): Mention set/show remote trace-status-packet.
8881 * remote.c (PACKET_qTStatus): New enumeration value.
8882 (remote_get_trace_status): Skip sending qTStatus if the packet is
8883 disabled. Use packet_ok.
8884 (_initialize_remote): Register a configuration command for
8885 qTStatus packet.
8886
8887 2013-03-28 Doug Evans <dje@google.com>
8888
8889 * symfile.c (find_separate_debug_file): Add comment.
8890 (terminate_after_last_dir_separator): Tweak comment.
8891
8892 * dwarf2read.c (create_partial_symtab): Add forward decl.
8893 (create_partial_symtab): Move to be closer to other psymtab functions.
8894 (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
8895
8896 * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
8897 (compute_symtab_includes): Remove unnecessary forward declaration.
8898 (die_needs_namespace): Add comment marking group of functions for
8899 dwarf2 name computation.
8900
8901 * typeprint.c (_initialize_typeprint): Improve type help text.
8902
8903 * python/python.c (finish_python_initialization): Provide suggestion
8904 for how to tell gdb to find its python files.
8905
8906 2013-03-28 Pedro Alves <palves@redhat.com>
8907
8908 PR gdb/15294
8909
8910 * source.c (_initialize_source): Change back "set listsize" to an
8911 integer command.
8912
8913 2013-03-27 Gareth McMullin <gareth@blacksphere.co.nz>
8914
8915 PR gdb/15275
8916 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
8917
8918 2013-03-27 Pedro Alves <palves@redhat.com>
8919
8920 * top.c (history_size): Rename to ...
8921 (history_size_setshow_var): ... this. Add comment.
8922 (show_commands): Use readline's 'history_length' instead of
8923 computing the history length by calling history_get in a loop.
8924 (set_history_size_command): Error out for sizes over INT_MAX.
8925 Restore previous history size on invalid size.
8926 (init_history): If HISTSIZE is negative, leave the history size as
8927 zero. Add comments.
8928 (init_main): Adjust.
8929
8930 2013-03-27 Pedro Alves <palves@redhat.com>
8931
8932 * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
8933 coff_pe_read" command to "set debug coff-pe-read".
8934
8935 2013-03-27 Markus Metzger <markus.t.metzger@intel.com>
8936
8937 * record.c (command_size_to_target_size): Fix size comparison.
8938 Change parameter type from pointer to integer to integer.
8939 Update all users.
8940
8941 2013-03-27 Pierre Muller <muller@sourceware.org>
8942
8943 * windows-nat.c (handle_output_debug_string): Avoid typecast
8944 from integer of different size warning.
8945
8946 2013-03-26 Joel Brobecker <brobecker@adacore.com>
8947
8948 * windows-nat.c (handle_output_debug_string): Add empty line
8949 after local block variable definition.
8950
8951 2013-03-26 Pedro Alves <palves@redhat.com>
8952
8953 * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
8954 (net_open): Make 'polls' local unsigned.
8955
8956 2013-03-26 Pedro Alves <palves@redhat.com>
8957
8958 * remote.c (_initialize_remote): Make "set remoteaddresssize"
8959 a zuinteger command instead of uinteger.
8960
8961 2013-03-26 Pedro Alves <palves@redhat.com>
8962
8963 * record-full.c (record_full_insn_num): Make it unsigned.
8964 (record_full_check_insn_num, record_full_message)
8965 (record_full_registers_change, record_full_xfer_partial): Remove
8966 record_full_insn_max_num check (it's always != 0).
8967 (record_full_info, record_full_restore): Use %u as format string.
8968 (): Use %u as format string.
8969 (set_record_full_insn_max_num): Remove record_full_insn_max_num
8970 check (it's always != 0).
8971
8972 2013-03-26 Pedro Alves <palves@redhat.com>
8973
8974 * dcache.c (_initialize_dcache): Make the "set dcache line-size"
8975 and "set dcache size" commands zuinteger instead of uinteger.
8976
8977 2013-03-26 Pedro Alves <palves@redhat.com>
8978
8979 * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
8980 command zuinteger instead of uinteger.
8981
8982 2013-03-26 Pedro Alves <palves@redhat.com>
8983
8984 * coff-pe-read.c (_initialize_coff_pe_read): Make the command
8985 zuinteger instead of uinteger.
8986
8987 2013-03-26 Pedro Alves <palves@redhat.com>
8988
8989 * record.c (record_insn_history_size_setshow_var)
8990 (record_call_history_size_setshow_var): New globals.
8991 (command_size_to_target_size): New function.
8992 (cmd_record_insn_history, cmd_record_call_history): Use
8993 command_size_to_target_size instead of cast.
8994 (validate_history_size, set_record_insn_history_size)
8995 (set_record_call_history_size): New functions.
8996 (_initialize_record): Install set_record_insn_history_size and
8997 set_record_call_history_size as "set" hooks of "set record
8998 instruction-history-size" and "set record
8999 function-call-history-size".
9000
9001 2013-03-26 Pedro Alves <palves@redhat.com>
9002
9003 * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
9004 use with history_max_entries use. Remove FIXME note.
9005
9006 2013-03-26 Markus Metzger <markus.t.metzger@intel.com>
9007
9008 * record-btrace.c (record_btrace_close): Call
9009 record_btrace_auto_disable.
9010
9011 2013-03-25 Joel Brobecker <brobecker@adacore.com>
9012
9013 * rs6000-nat.c (fixup_breakpoints): Delete declaration.
9014
9015 2013-03-25 Doug Evans <dje@google.com>
9016
9017 * contrib/cc-with-tweaks.sh: Check exit code of dwp.
9018
9019 2013-03-25 Tom Tromey <tromey@redhat.com>
9020
9021 PR symtab/11462:
9022 * c-exp.y (exp): Add new productions for destructors after '.' and
9023 '->'.
9024 (write_destructor_name): New function.
9025
9026 2013-03-25 Tom Tromey <tromey@redhat.com>
9027
9028 PR c++/9197:
9029 * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
9030 value_struct_elt, not lookup_struct_elt_type.
9031 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
9032 STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
9033 * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
9034
9035 2013-03-25 Yao Qi <yao@codesourcery.com>
9036
9037 * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
9038 instead of '_mkdir'.
9039
9040 2013-03-23 Eli Zaretskii <eliz@gnu.org>
9041
9042 * windows-nat.c (windows_get_absolute_argv0): New function.
9043 * windows-nat.h: Add its prototype.
9044
9045 * main.c (get_init_files): Use filename_ncmp instead of strncmp.
9046 Use IS_DIR_SEPARATOR instead of looking for a character inside
9047 SLASH_STRING. Include filenames.h.
9048 (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
9049 relocate_gdb_directory works when passed gdb_program_name.
9050 Include windows-nat.h.
9051
9052 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
9053
9054 * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
9055 * remote.c (trace_error): Remove the special handling of '2'.
9056 (readchar) <SERIAL_EOF>
9057 (readchar) <SERIAL_ERROR>
9058 (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
9059 (remote_get_trace_status): Call throw_exception if EX is
9060 TARGET_CLOSE_ERROR.
9061 * utils.c (perror_with_name): Rename to ...
9062 (throw_perror_with_name): ... here. New parameter errcode, describe it
9063 in the function comment.
9064 (perror_with_name): New function wrapper.
9065 * utils.h (enum errors): New stub declaration.
9066 (throw_perror_with_name): New declaration.
9067
9068 2013-03-22 Pedro Alves <palves@redhat.com>
9069 Yao Qi <yao@codesourcery.com>
9070 Mark Kettenis <kettenis@gnu.org>
9071
9072 * cli/cli-setshow.c (do_set_command) <var_uinteger>:
9073 Don't let the user set the value to UINT_MAX directly.
9074 <var_integer>: Don't let the user set the value to INT_MAX
9075 directly.
9076
9077 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
9078
9079 * remote.c (remote_unpush_target): New function.
9080 (remote_open_1): Remove two pop_target calls, update one comment, add
9081 comment to target_preopen call. Replace pop_target call by
9082 remote_unpush_target call.
9083 (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
9084 pop_target calls by remote_unpush_target calls.
9085
9086 2013-03-22 Pedro Alves <palves@redhat.com>
9087
9088 * linux-nat.c (linux_child_follow_fork): Don't call
9089 linux_enable_event_reporting.
9090 (linux_handle_extended_wait): Don't call
9091 linux_enable_event_reporting.
9092
9093 2013-03-22 Pedro Alves <palves@redhat.com>
9094
9095 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
9096 use it to rewrite the trampoline buffers with type gdb_byte[], and
9097 undefine the macro. Remove char* cast.
9098
9099 2013-03-21 Doug Evans <dje@google.com>
9100
9101 New commands "mt set per-command {space,time,symtab} {on,off}".
9102 * NEWS: Add entry.
9103 * event-top.c: #include "maint.h".
9104 * main.c: #include "maint.h".
9105 * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
9106 timeval-utils.h, maint.h, cli/cli-setshow.h.
9107 (per_command_time, per_command_space): New static globals.
9108 (per_command_symtab): New static global.
9109 (per_command_setlist, per_command_showlist): New static globals.
9110 (struct cmd_stats): Move here from utils.c.
9111 (set_per_command_time): Renamed from set_display_time in utils.c
9112 and moved here. All callers updated.
9113 (set_per_command_space): Renamed from set_display_space in utils.c
9114 and moved here. All callers updated.
9115 (count_symtabs_and_blocks): New function.
9116 (report_command_stats): Moved here from utils.c. Add support for
9117 printing symtab stats. Only print data if enabled before command
9118 executed.
9119 (make_command_stats_cleanup): Ditto.
9120 (sert_per_command_cmd, show_per_command_cmd): New functions.
9121 (_initialize_maint_cmds): Add new commands
9122 mt set per-command {space,time,symtab} {on,off}.
9123 * maint.h: New file.
9124 * top.c: #include "maint.h".
9125 * utils.c (reset_prompt_for_continue_wait_time): New function.
9126 (get_prompt_for_continue_wait_time): New function.
9127 * utils.h (reset_prompt_for_continue_wait_time): Declare
9128 (get_prompt_for_continue_wait_time): Declare.
9129 (make_command_stats_cleanup): Moved to maint.h.
9130 (set_display_time, set_display_space): Moved to maint.h and renamed
9131 to set_per_command_time, set_per_command_space.
9132 * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
9133 parse_binary_operation and made non-static. Don't call error,
9134 just return an error marker. All callers updated.
9135 * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
9136
9137 2013-03-21 Tom Tromey <tromey@redhat.com>
9138
9139 * symfile.c (alloc_section_addr_info): Update header. Don't set
9140 'num_sections' field.
9141 (build_section_addr_info_from_section_table): Set 'num_sections'.
9142 (build_section_addr_info_from_bfd): Likewise.
9143 (build_section_addr_info_from_objfile): Remove dead loop
9144 condition.
9145 (free_section_addr_info): Unconditionally call xfree.
9146 (relative_addr_info_to_section_offsets, addrs_section_sort)
9147 (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
9148 condition.
9149 (syms_from_objfile_1): Remove dead 'if' condition. Check
9150 'num_sections'.
9151 (add_symbol_file_command): Set 'num_sections'.
9152 * symfile-mem.c (symbol_file_add_from_memory): Set
9153 'num_sections'.
9154 * somread.c (som_symfile_offsets): Remove dead loop condition.
9155 * machoread.c (macho_symfile_offsets): Remove dead 'if'.
9156 * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
9157
9158 2013-03-21 Tom Tromey <tromey@redhat.com>
9159
9160 * tracepoint.h (decode_agent_options): Add 'trace_string'
9161 argument.
9162 * tracepoint.c (decode_agent_options): Add 'trace_string'
9163 argument.
9164 (validate_actionline): Update.
9165 (collect_symbol): Add 'trace_string' argument.
9166 (struct add_local_symbols_data) <trace_string>: New field.
9167 (do_collect_symbol): Update.
9168 (add_local_symbols): Add 'trace_string' argument.
9169 (encode_actions_1): Update.
9170 (trace_dump_actions): Update.
9171 * dwarf2loc.c (access_memory): Update.
9172 * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
9173 * ax-general.c (new_agent_expr): Update.
9174 * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
9175 (gen_trace_for_return_address): Add argument.
9176 (trace_kludge, trace_string_kludge): Remove.
9177 * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
9178 (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
9179 (gen_trace_for_var): Add 'trace_string' argument.
9180 (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
9181 (gen_printf, agent_eval_command_one): Update.
9182
9183 2013-03-21 Tom Tromey <tromey@redhat.com>
9184
9185 PR exp/15109:
9186 * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
9187 Handle FILENAME token.
9188
9189 2013-03-21 Tom Tromey <tromey@redhat.com>
9190
9191 * c-exp.y (YYPRINT): Define.
9192 (c_print_token): New function.
9193
9194 2013-03-21 Tom Tromey <tromey@redhat.com>
9195
9196 * c-exp.y (%union) <sym, ivar, ivec>: Remove.
9197
9198 2013-03-21 Yao Qi <yao@codesourcery.com>
9199
9200 * ctf.c: Include "gdb_stat.h".
9201 [USE_WIN32API]: New macro 'mkdir'.
9202 (ctf_start): Use permission bits macros if they are defined.
9203
9204 2013-03-20 Keith Seitz <keiths@redhat.com>
9205
9206 * breakpoint.h (struct breakpoint): Add comment to
9207 extra_string indicating that this member is mallod'd.
9208 * breakpoint.c (base_breakpoint_dtor): Free extra_string.
9209
9210 2013-03-20 Pedro Alves <palves@redhat.com>
9211
9212 PR gdb/15289
9213
9214 * cli/cli-setshow.c (do_set_command)
9215 <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
9216 the result of parsing the command argument. Throw error if the
9217 value is greater than UINT_MAX. Print the invalid value with
9218 plongest.
9219 <var_integer, var_zinteger>: Use LONGEST for variable holding the
9220 result of parsing the command argument. Throw error if the value
9221 is greater than INT_MAX, not greater or equal. Also throw error
9222 if the value is less than INT_MIN. Print the invalid value with
9223 plongest.
9224 <var_zuinteger_unlimited>: Throw error if the value is greater
9225 than INT_MAX, not greater or equal.
9226 (do_show_command) <var_integer, var_zinteger,
9227 var_zuinteger_unlimited>: Use %d for printing int, not %u.
9228
9229 2013-03-20 Tom Tromey <tromey@redhat.com>
9230
9231 * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
9232 if possible.
9233 * dwarf2read.c (read_func_scope): Remove old FIXME.
9234 * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
9235 not LOC_COMPUTED.
9236 * findvar.c (symbol_read_needs_frame, default_read_var_value):
9237 Unconditionally call via computed ops, if possible.
9238 * printcmd.c (address_info): Unconditionally call via computed ops,
9239 if possible.
9240 * stack.c (read_frame_arg): Unconditionally call via computed ops,
9241 if possible.
9242 * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
9243 * tracepoint.c (scope_info): Unconditionally call via computed ops,
9244 if possible.
9245
9246 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
9247 Tom Tromey <tromey@redhat.com>
9248
9249 PR symtab/8421:
9250 * coffread.c (coff_register_index): New global.
9251 (process_coff_symbol, coff_read_enum_type): Set
9252 SYMBOL_ACLASS_INDEX.
9253 (_initialize_coffread): Initialize new global.
9254 * dwarf2loc.c (locexpr_find_frame_base_location)
9255 (dwarf2_block_frame_base_locexpr_funcs)
9256 (loclist_find_frame_base_location)
9257 (dwarf2_block_frame_base_loclist_funcs): New.
9258 (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
9259 (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
9260 * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
9261 (dwarf2_block_frame_base_loclist_funcs): New.
9262 * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
9263 (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
9264 globals.
9265 (read_func_scope): Update.
9266 (fixup_go_packaging, mark_common_block_symbol_computed)
9267 (var_decode_location, new_symbol_full, dwarf2_const_value):
9268 Set SYMBOL_ACLASS_INDEX.
9269 (dwarf2_symbol_mark_computed): Likewise. Add 'is_block' argument.
9270 (_initialize_dwarf2_read): Initialize new globals.
9271 * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
9272 * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
9273 * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
9274 globals.
9275 (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
9276 (_initialize_mdebugread): Initialize new globals.
9277 * psympriv.h (struct partial_symbol) <aclass>: Update comment.
9278 * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
9279 (stab_register_index, stab_regparm_index): New globals.
9280 (define_symbol, read_enum_type, common_block_end): Set
9281 SYMBOL_ACLASS_INDEX.
9282 (_initialize_stabsread): Initialize new globals.
9283 * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
9284 globals.
9285 (MAX_SYMBOL_IMPLS): New define.
9286 (register_symbol_computed_impl, register_symbol_block_impl)
9287 (register_symbol_register_impl)
9288 (initialize_ordinary_address_classes): New functions.
9289 (_initialize_symtab): Call initialize_ordinary_address_classes.
9290 * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
9291 (struct symbol_impl): New.
9292 (SYMBOL_ACLASS_BITS): New define.
9293 (struct symbol) <aclass, ops>: Remove fields.
9294 <aclass_index>: New field.
9295 (symbol_impls): Declare.
9296 (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
9297 (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
9298 (register_symbol_computed_impl, register_symbol_block_impl)
9299 (register_symbol_register_impl): Declare.
9300 (struct symbol_computed_ops): Add location_has_loclist.
9301 (struct symbol_block_ops): New.
9302 (SYMBOL_BLOCK_OPS): New.
9303 * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
9304
9305 2013-03-20 Tom Tromey <tromey@redhat.com>
9306
9307 * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
9308 (print_partial_symbols, recursively_search_psymtabs): Use
9309 PSYMBOL_CLASS.
9310
9311 2013-03-20 Pierre Muller <muller@sourceware.org>
9312
9313 * contrib/ari/gdb_ari.sh (OP eol rule): Also check
9314 addtion, subtraction, multiplication and division binary operator.
9315
9316 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
9317
9318 Code cleanup.
9319 * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
9320 * bsd-kvm.c (bsd_kvm_close): Likewise.
9321 * bsd-uthread.c (bsd_uthread_close): Likewise.
9322 * corelow.c (core_close): Likewise.
9323 (core_close_cleanup): Remove parameter quitting from a caller.
9324 * event-top.c (async_disconnect): Likewise.
9325 * exec.c (exec_close_1): Remove parameter quitting.
9326 * go32-nat.c (go32_close): Likewise.
9327 * linux-nat.c (linux_nat_close): Remove parameter quitting. Remove
9328 parameter quitting from a caller.
9329 * mips-linux-nat.c (super_close): Remove parameter quitting from the
9330 variable.
9331 (mips_linux_close): Remove parameter quitting. Remove parameter
9332 quitting from a caller.
9333 * monitor.c (monitor_close): Remove parameter quitting.
9334 * monitor.h (monitor_close): Likewise.
9335 * record-btrace.c (record_btrace_close): Likewise.
9336 * record-full.c (record_full_close): Likewise.
9337 * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
9338 it also from fprintf_unfiltered.
9339 * remote-mips.c (mips_close): Remove parameter quitting.
9340 (mips_detach): Remove parameter quitting from a caller.
9341 * remote-sim.c (gdbsim_close): Remove parameter quitting.
9342 (gdbsim_close): Remove duplicate function comment. Remove parameter
9343 quitting and remove it also from printf_filtered.
9344 * remote.c (remote_close): Remove parameter quitting.
9345 * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
9346 * target.c (update_current_target): Remove parameter int from to_close
9347 de_fault.
9348 (push_target, unpush_target, pop_target): Remove parameter quitting from
9349 a caller.
9350 (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
9351 Remove parameter quitting from a caller.
9352 (target_preopen): Remove parameter quitting from a caller.
9353 (target_close): Remove parameter quitting. Remove parameter quitting
9354 from a caller two times. Remove parameter quitting also from
9355 fprintf_unfiltered.
9356 * target.h (struct target_ops): Remove parameter quitting and as int
9357 from fields to_xclose and to_close.
9358 (extern struct target_ops current_target):
9359 (target_close, pop_all_targets): Remove parameter quitting. Update the
9360 comment.
9361 (pop_all_targets_above): Remove parameter quitting.
9362 * top.c (quit_target): Remove parameter quitting from a caller.
9363 * tracepoint.c (tfile_close): Remove parameter quitting.
9364 * windows-nat.c (windows_close): Remove parameter quitting.
9365
9366 2013-03-20 Corinna Vinschen <vinschen@redhat.com>
9367
9368 * windows-nat.c (handle_output_debug_string): Replace call
9369 to string_to_core_addr with call to strtoull.
9370
9371 2013-03-20 Yao Qi <yao@codesourcery.com>
9372
9373 * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
9374 and write it to CTF metadata.
9375
9376 2013-03-19 Corinna Vinschen <vinschen@redhat.com>
9377
9378 * windows-nat.c (handle_output_debug_string): Change type of n to
9379 SIZE_T to avoid crash on 64 bit systems.
9380
9381 2013-03-17 Eli Zaretskii <eliz@gnu.org>
9382
9383 * python/python-internal.h (HAVE_SNPRINTF)
9384 [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
9385 about redefinition of snprintf by pyerrors.h.
9386
9387 2013-03-15 Steve Ellcey <sellcey@mips.com>
9388
9389 * remote-sim.c (sim_command_completer): Make char arguments const.
9390
9391 2013-03-15 Tom Tromey <tromey@redhat.com>
9392
9393 PR c++/15116:
9394 * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
9395
9396 2013-03-14 Tom Tromey <tromey@redhat.com>
9397
9398 * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
9399 New fields.
9400 (get_file_crc): Move from symfile.c.
9401 (gdb_bfd_crc): New function.
9402 * gdb_bfd.h (gdb_bfd_crc): Declare.
9403 * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
9404 * symfile.c (get_file_crc): Move to gdb_bfd.c.
9405 (separate_debug_file_exists): Use gdb_bfd_crc.
9406
9407 2013-03-14 Tom Tromey <tromey@redhat.com>
9408
9409 * symfile.c (get_debug_link_info): Remove.
9410 (find_separate_debug_file_by_debuglink): Use
9411 bfd_get_debug_link_info.
9412
9413 2013-03-14 Tom Tromey <tromey@redhat.com>
9414
9415 * symtab.c (error_in_psymtab_expansion): New function.
9416 (lookup_symbol_aux_quick)
9417 (basic_lookup_transparent_type_quick): Remove "last resort"
9418 code. Use error_in_psymtab_expansion.
9419
9420 2013-03-14 Doug Evans <dje@google.com>
9421 Jan Kratochvil <jan.kratochvil@redhat.com>
9422
9423 * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
9424 any successful compare_filenames_for_search or FILENAME_CMP.
9425 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
9426 * symtab.c (iterate_over_some_symtabs): Likewise.
9427
9428 2013-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9429
9430 * source.c (print_source_lines_base): Make a local copy of
9431 symtab_to_fullname.
9432
9433 2013-03-14 Hui Zhu <hui_zhu@mentor.com>
9434 Jan Kratochvil <jan.kratochvil@redhat.com>
9435
9436 * source.c (print_source_lines_base): Suppress "file" for TUI.
9437
9438 2013-03-14 Keith Seitz <keiths@redhat.com>
9439 Alan Matsuoka <alanm@redhat.com>
9440
9441 PR c++/15203
9442 PR c++/15210
9443 * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
9444 TYPE_CODE_METHOD.
9445 * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
9446 symbols.
9447
9448 2013-03-14 Yao Qi <yao@codesourcery.com>
9449
9450 * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
9451 status to tfile if trace is stopped by command 'tstop'.
9452
9453 2013-03-14 Yao Qi <yao@codesourcery.com>
9454
9455 * tracepoint.c (tfile_write_status): Write trace notes and user
9456 name into tfile if they are not NULL.
9457
9458 2013-03-14 Hui Zhu <hui@codesourcery.com>
9459 Yao Qi <yao@codesourcery.com>
9460
9461 * Makefile.in (REMOTE_OBS): Add ctf.o.
9462 (SFILES): Add ctf.c.
9463 (HFILES_NO_SRCDIR): Add ctf.h.
9464 * ctf.c, ctf.h: New files.
9465 * tracepoint.c: Include 'ctf.h'.
9466 (collect_pseudocommand): Remove static.
9467 (trace_save_command): Parse option "-ctf".
9468 Produce different trace file writers per option.
9469 Adjust output message.
9470 (trace_save_tfile, trace_save_ctf): New.
9471 * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
9472 * mi/mi-main.c: Include 'ctf.h'.
9473 (mi_cmd_trace_save): Handle option '-ctf'. Call either
9474 trace_save_tfile or trace_save_ctf.
9475 * NEWS: Mention these changes.
9476
9477 2013-03-14 Yao Qi <yao@codesourcery.com>
9478
9479 * tracepoint.c (trace_file_writer_xfree): New.
9480 (struct tfile_writer_data): New.
9481 (tfile_dtor, tfile_can_target_save, tfile_start): New.
9482 (tfile_write_header, tfile_write_regblock_type): New.
9483 (tfile_write_status, tfile_write_uploaded_tsv): New.
9484 (tfile_write_uploaded_tp, tfile_write_definition_end): New.
9485 (tfile_write_raw_data, (tfile_end): New.
9486 (tfile_write_ops): New global variable.
9487 (TRACE_WRITE_R_BLOCK): New macro.
9488 (TRACE_WRITE_M_BLOCK_HEADER): New macro.
9489 (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
9490 (TRACE_WRITE_V_BLOCK): New macro.
9491 (trace_save): Add extra one parameter WRITER. Make it static.
9492 Use WRITER to writer trace.
9493 (tfile_trace_file_writer_new): New.
9494 (trace_save_command): Caller update.
9495 (trace_save_tfile): Write trace data in TFILE format.
9496 * tracepoint.h (struct trace_frame_write_ops): New.
9497 (struct trace_file_write_ops): New.
9498 (struct trace_file_writer): New.
9499 (trace_save): Remove its declaration.
9500 (trace_save_tfile): Declare it.
9501 * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
9502 instead of trace_save.
9503
9504 2013-03-13 Pedro Alves <palves@redhat.com>
9505
9506 * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
9507
9508 2013-03-13 Pedro Alves <palves@redhat.com>
9509
9510 * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
9511 commented out code.
9512 * demangle.c (current_demangling_style_string): Make it const.
9513 (set_demangling_command): Assert the demangling style is known.
9514 Remove all handling of unknown styles. Set
9515 'current_demangling_style_string' to an element of the
9516 demangling_style_names array.
9517 (set_demangling_style): Delete.
9518 (_initialize_demangler): Set current_demangling_style_string to the
9519 element of the demangling_style_names array that corresponds to
9520 the default demangling style. Remove FIXME note. Don't call
9521 set_demangling_style.
9522 * gdb-demangle.h (set_demangling_style): Remove declaration.
9523
9524 2013-03-13 Pedro Alves <palves@redhat.com>
9525
9526 * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
9527 fields const.
9528 (ada_make_symbol_completion_list): Make "text0" parameter const.
9529 * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
9530 * breakpoint.c (condition_completer): Make "text" and "word"
9531 parameters const. Adjust.
9532 (check_tracepoint_command): Adjust to validate_actionline
9533 prototype change.
9534 (catch_syscall_completer): Make "text" and "word" parameters
9535 const.
9536 * cli/cli-cmds.c (show_user): Make "comname" local const.
9537 (valid_command_p): Make "command" parameter const.
9538 (alias_command): Make "alias_prefix" and "command_prefix" locals
9539 const.
9540 * cli/cli-decode.c (add_cmd): Make "name" parameter const.
9541 (add_alias_cmd): Make "name" and "oldname" parameters const.
9542 Adjust. No longer make copy of OLDNAME.
9543 (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
9544 (add_setshow_cmd_full, add_setshow_enum_cmd)
9545 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
9546 (add_setshow_filename_cmd, add_setshow_string_cmd)
9547 (add_setshow_string_noescape_cmd)
9548 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
9549 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
9550 (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
9551 (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
9552 Make "name" parameter const.
9553 (help_cmd): Rename "command" parameter to "arg". New const local
9554 "command".
9555 (find_cmd): Make "command" parameter const.
9556 (lookup_cmd_1): Make "text" parameter pointer to const. Adjust to
9557 deprecated_cmd_warning prototype change.
9558 (undef_cmd_error): Make "cmdtype" parameter const.
9559 (lookup_cmd): Make "line" parameter const.
9560 (deprecated_cmd_warning): Change type of "text" parameter to
9561 pointer to const char, from pointer to pointer to char. Adjust.
9562 (lookup_cmd_composition): Make "text" parameter const.
9563 (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
9564 parameters const.
9565 * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
9566 const.
9567 * cli/cli-script.c (validate_comname): Make "tem" local const.
9568 (define_command): New const local "tem_c". Use it in calls to
9569 lookup_cmd.
9570 (document_command): Make "tem" and "comfull" locals const.
9571 (show_user_1): Make "prefix" and "name" parameters const.
9572 * cli-script.h (show_user_1): Make "prefix" and "name" parameters
9573 const.
9574 * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
9575 (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
9576 (deprecated_cmd_warning, lookup_cmd_composition, add_com)
9577 (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
9578 (complete_on_enum, add_setshow_enum_cmd)
9579 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
9580 (add_setshow_filename_cmd, add_setshow_string_cmd)
9581 (add_setshow_string_noescape_cmd)
9582 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
9583 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
9584 (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
9585 Change prototypes, constifying strings.
9586 * completer.c (noop_completer, filename_completer): Make "text"
9587 and "prefix" parameters const.
9588 (location_completer, expression_completer)
9589 (complete_line_internal): Make "text" and "prefix" parameters
9590 const and adjust.
9591 (command_completer, signal_completer): Make "text" and "prefix"
9592 parameters const.
9593 * completer.h (noop_completer, filename_completer)
9594 (expression_completer, location_completer, command_completer)
9595 (signal_completer): Change prototypes.
9596 * corefile.c (complete_set_gnutarget): Make "text" and "word"
9597 parameters const.
9598 * cp-abi.c (cp_abi_completer): Likewise.
9599 * expression.h (parse_expression_for_completion): Change
9600 prototype.
9601 * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
9602 parameters const.
9603 * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
9604 * infrun.c (handle_completer): Make "text" and "word" parameters
9605 const.
9606 * interps.c (interpreter_completer): Make "text" and "word"
9607 parameters const.
9608 * language.h (struct language_defn)
9609 <la_make_symbol_completion_list>: Make "text" and "word"
9610 parameters const.
9611 * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
9612 (parse_exp_in_context): Rename to ...
9613 (parse_exp_in_context_1): ... this.
9614 (parse_exp_in_context): Reimplement, with const hack from
9615 parse_exp_1.
9616 (parse_expression_for_completion): Make "string" parameter const.
9617 * printcmd.c (decode_format): Make "string_ptr" parameter pointer
9618 to pointer to const char. Adjust.
9619 (print_command_1): Make "exp" parameter const.
9620 (output_command): Rename to ...
9621 (output_command_const): ... this. Make "exp" parameter const.
9622 (output_command): Reimplement.
9623 (x_command): Adjust.
9624 (display_command): Rename "exp" parameter to "arg". New "exp"
9625 local, const version of "arg".
9626 * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
9627 "cmd_name" local const.
9628 * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
9629 call.
9630 (cmdpy_completer): Make "text" and "word" parameters const.
9631 (gdbpy_parse_command_name): Make "prefix_text2" local const.
9632 * python/py-param.c (add_setshow_generic): Make "tmp_name" local
9633 const.
9634 * remote.c (_initialize_remote): Make "cmd_name" local const.
9635 * symtab.c (language_search_unquoted_string): Make "text" and "p"
9636 parameters const. Adjust.
9637 (completion_list_add_fields): Make "sym_text", "text" and "word"
9638 parameters const.
9639 (struct add_name_data) <sym_text, text, word>: Make fields const.
9640 (default_make_symbol_completion_list_break_on): Make "text" and
9641 "word" parameters const. Adjust locals.
9642 (default_make_symbol_completion_list)
9643 (make_symbol_completion_list, make_symbol_completion_type)
9644 (make_symbol_completion_list_fn): Make "text" and "word"
9645 parameters const.
9646 (make_file_symbol_completion_list): Make "text", "word" and
9647 "srcfile" parameters const. Adjust locals.
9648 (add_filename_to_list): Make "text" and "word" parameters const.
9649 (struct add_partial_filename_data) <text, word>: Make fields
9650 const.
9651 (make_source_files_completion_list): Make "text" and "word"
9652 parameters const.
9653 * symtab.h (default_make_symbol_completion_list_break_on)
9654 (default_make_symbol_completion_list, make_symbol_completion_list)
9655 (make_symbol_completion_type enum type_code)
9656 (make_symbol_completion_list_fn make_file_symbol_completion_list)
9657 (make_source_files_completion_list): Change prototype.
9658 * top.c (execute_command): Adjust to pass pointer to pointer to
9659 const char to lookup_cmd, and to deprecated_cmd_warning prototype
9660 change.
9661 (set_verbose): Make "cmdname" local const.
9662 * tracepoint.c (decode_agent_options): Make "exp" parameter const,
9663 and adjust.
9664 (validate_actionline): Make "line" parameter a pointer to const
9665 char, and adjust.
9666 (encode_actions_1): Make "action_exp" local const, and adjust.
9667 (encode_actions): Adjust.
9668 (replace_comma): Delete.
9669 (trace_dump_actions): Make "action_exp" and "next_comma" locals
9670 const, and adjust. Don't frob the action string while splitting
9671 it at commas. Instead, make a copy of each split substring in
9672 turn.
9673 (trace_dump_command): Adjust to validate_actionline prototype
9674 change.
9675 * tracepoint.h (decode_agent_options, decode_agent_options)
9676 (encode_actions, validate_actionline): Change prototypes.
9677 * valprint.h (output_command): Delete declaration.
9678 (output_command_const): Declare.
9679 * value.c (function_destroyer): Cast const away in xfree call.
9680
9681 2013-03-13 Pedro Alves <palves@redhat.com>
9682
9683 * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
9684 rather than casting 'const char * const *' to 'const char **'.
9685 * ada-lex.l (processInt): Make "trailer" local const. Remove
9686 'const char **' cast.
9687 * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
9688 locals, and use those as strtol output pointer, instead than doing
9689 invalid casts to from 'const char **' to 'char **'.
9690 (_initialize_demangle): Remove cast.
9691 * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
9692 locals, and use those as strtol output pointer, instead than doing
9693 invalid casts to from 'const char **' to 'char **'.
9694 * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
9695 casts.
9696 * stap-probe.c (stap_parse_register_operand)
9697 (stap_parse_single_operand): Likewise.
9698
9699 2013-03-13 Yao Qi <yao@codesourcery.com>
9700
9701 * tracepoint.c (tfile_get_trace_state_variable_value): Look for
9702 the last matched 'V' blcok in trace frame.
9703
9704 2013-03-12 Joel Brobecker <brobecker@adacore.com>
9705
9706 * NEWS: Create a new section for the next release branch.
9707 Rename the section of the current branch, now that it has
9708 been cut.
9709
9710 2013-03-12 Joel Brobecker <brobecker@adacore.com>
9711
9712 GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
9713 * version.in: Bump version to 7.6.50.20130312-cvs.
9714
9715 2013-03-12 Keith Seitz <keiths@redhat.com>
9716
9717 * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
9718 * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
9719 Remove temporary copy of input string.
9720 (mi_execute_command_wrapper): Make "cmd" const.
9721 * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
9722 * mi/mi-parse.c (mi_parse_argv): Make "args" const.
9723 Use const strings.
9724 (mi_parse): Make "cmd" const.
9725 Use const strings.
9726 * mi/mi-parse.h (mi_parse): Make "cmd" const.
9727
9728 2013-03-12 Keith Seitz <keiths@redhat.com>
9729
9730 * ada-lang.c (ada_read_renaming_var_value): Pass const
9731 pointer to expression string to parse_exp_1.
9732 (create_excep_cond_exprs): Likewise.
9733 * ax-gdb.c (agent_eval_command_one): Likewise.
9734 (maint_agent_printf_command): Likewise.
9735 Constify much of the string handling/parsing.
9736 * breakpoint.c (set_breakpoint_condition): Pass const
9737 pointer to expression string to parse_exp_1.
9738 (update_watchpoint): Likewise.
9739 (parse_cmd_to_aexpr): Constify string handling.
9740 Pass const pointer to parse_exp_1.
9741 (init_breakpoint_sal): Pass const pointer to parse_exp_1.
9742 (find_condition_and_thread): Likewise.
9743 Make TOK const.
9744 (watch_command_1): Make "arg" const.
9745 Constify string handling.
9746 Copy the expression string instead of changing the input
9747 string.
9748 (update_breakpoint_location): Pass const pointer to
9749 parse_exp_1.
9750 * eval.c (parse_and_eval_address): Make "exp" const.
9751 (parse_to_comma_and_eval): Make "expp" const.
9752 (parse_and_eval): Make "exp" const.
9753 * expression.h (parse_expression): Make argument const.
9754 (parse_exp_1): Make first argument const.
9755 * findcmd.c (parse_find_args): Treat "args" as const.
9756 * linespec.c (parse_linespec): Pass const pointer to
9757 linespec_expression_to_pc.
9758 (linespec_expression_to_pc): Make "exp_ptr" const.
9759 * parse.c (parse_exp_1): Make "stringptr" const.
9760 Make a copy of the expression to pass to parse_exp_in_context until
9761 this whole interface can be constified.
9762 (parse_expression): Make "string" const.
9763 * printcmd.c (ui_printf): Treat "arg" as const.
9764 Handle const strings.
9765 * tracepoint.c (validate_actionline): Pass const pointer to
9766 all calls to parse_exp_1.
9767 (encode_actions_1): Likewise.
9768 * value.h (parse_to_comma_and_eval): Make argument const.
9769 (parse_and_eval_address): Likewise.
9770 (parse_and_eval): Likewise.
9771 * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
9772 (varobj_set_value): Likewise.
9773 * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
9774 constify string handling.
9775 Pass const pointers to parse_and_eval_address and
9776 parse_to_comman_and_eval.
9777 * cli/cli-utils.c (skip_to_space): Rename to ...
9778 (skip_to_space_const): ... this. Handle const strings.
9779 * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
9780 skip_to_space_const.
9781 (skip_to_space_const): Declare.
9782 * common/format.c (parse_format_string): Make "arg" const.
9783 Handle const strings.
9784 * common/format.h (parse_format_string): Make "arg" const.
9785 * gdbserver/ax.c (ax_printf): Make "format" const.
9786 * python/python.c (gdbpy_parse_and_eval): Do not make a copy
9787 of the expression string.
9788
9789 2013-03-12 Hui Zhu <hui@codesourcery.com>
9790
9791 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
9792
9793 2013-03-12 Yao Qi <yao@codesourcery.com>
9794 Hui Zhu <hui@codesourcery.com>
9795
9796 * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
9797 (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
9798 DW_OP_deref_size.
9799
9800 2013-03-12 Paul Hilfinger <hilfingr@adacore.com>
9801
9802 * ada-lex.l (rules): Only recognize 'thread' as a
9803 delimiter when followed by numerals, as for c-exp.y.
9804 Use new rewind_to_char function to rewind the input for
9805 expression-delimiting tokens.
9806 (rewind_to_char): New function.
9807
9808 2013-03-11 Pedro Alves <palves@redhat.com>
9809 Jan Kratochvil <jan.kratochvil@redhat.com>
9810
9811 * configure: Regenerate.
9812 * configure.ac (check dynamic export flag): Link python test with
9813 $PYTHON_LIBS.
9814
9815 2013-03-11 Doug Evans <dje@google.com>
9816 Keith Seitz <keiths@redhat.com>
9817
9818 * linespec.c (find_linespec_symbols): Call find_function_symbols
9819 first, and then call lookup_prefix_sym/find_method.
9820
9821 2013-03-11 Pedro Alves <palves@redhat.com>
9822
9823 * charset.c (convert_between_encodings): Don't cast between
9824 different pointer to pointer types. Instead, make the 'inp' local
9825 be of the type iconv expects.
9826 (wchar_iterate): Don't cast between different pointer to pointer
9827 types. Instead, use new pointer local of the type iconv expects.
9828 * target.c (target_read_stralloc, target_fileio_read_stralloc):
9829 Add new local of type char pointer, and use it to get a
9830 char/string view of the byte buffer, instead of casting between
9831 pointer to pointer types.
9832
9833 2013-03-11 Hafiz Abid Qadeer <abidh@codesourcery.com>
9834
9835 * remote.c (remote_set_trace_buffer_size): Move != operator
9836 to the start of next line to fix an ARI warning.
9837
9838 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9839
9840 * NEWS: Add record changes.
9841
9842 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9843
9844 * record-btrace.c (btrace_insn_history): Omit the pc prefix in
9845 the instruction history disassembly.
9846 * disasm.c (dump_insns): Omit the pc prefix, if requested.
9847 * disasm.h (DISASSEMBLY_OMIT_PC): New.
9848
9849 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9850
9851 * Makefile.in (SFILES): Add record-btrace.c
9852 (COMMON_OBS): Add record-btrace.o
9853 * record-btrace.c: New.
9854 * objfiles.c: Include btrace.h.
9855 (free_objfile): call btrace_free_objfile.
9856
9857 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9858
9859 * target.c (target_call_history, target_call_history_from,
9860 target_call_history_range): New.
9861 * target.h (target_ops) <to_call_history, to_call_history_from,
9862 to_call_history_range>: New fields.
9863 (target_call_history, target_call_history_from,
9864 target_call_history_range): New declaration.
9865 * record.c (get_call_history_modifiers, cmd_record_call_history,
9866 record_call_history_size): New.
9867 (_initialize_record): Add the "record function-call-history" command.
9868 Add "set/show record function-call-history-size" commands.
9869 * record.h (record_print_flag): New.
9870
9871 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9872
9873 * target.h (target_ops) <to_insn_history, to_insn_history_from,
9874 to_insn_history_range>: New fields.
9875 (target_insn_history): New.
9876 (target_insn_history_from): New.
9877 (target_insn_history_range): New.
9878 * target.c (target_insn_history): New.
9879 (target_insn_history_from): New.
9880 (target_insn_history_range): New.
9881 * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
9882 (record_insn_history_size): New.
9883 (get_insn_number): New.
9884 (get_context_size): New.
9885 (no_chunk): New.
9886 (get_insn_history_modifiers): New.
9887 (cmd_record_insn_history): New.
9888 (_initialize_record): Add "set/show record instruction-history-size"
9889 command. Add "record instruction-history" command.
9890
9891 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9892
9893 * record.h (record_disconnect): New.
9894 (record_detach): New.
9895 (record_mourn_inferior): New.
9896 (record_kill): New.
9897 * record-full.c (record_disconnect, record_detach,
9898 record_mourn_inferior, record_kill): Move to...
9899 * record.c: ...here.
9900 (DEBUG): New.
9901 (record_stop): New.
9902 (record_unpush): New.
9903 (cmd_record_stop): Call record_stop. Replace unpush_target
9904 call with record_unpush call.
9905 (record_disconnect, record_detach): Assert that the target
9906 is of record stratum. Call record_unpush, record_stop, and
9907 DEBUG.
9908 (record_mourn_inferior, record_kill): Assert that the target
9909 is of record stratum. Call record_unpush and DEBUG.
9910
9911 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9912
9913 * record-full.h, record-full.c (record_memory_query): Rename
9914 to ...
9915 (record_full_memory_query): ...this. Update all users.
9916 (record_arch_list_add_reg): Rename to ...
9917 (record_full_arch_list_add_reg): ...this. Update all users.
9918 (record_arch_list_add_mem): Rename to ...
9919 (record_full_arch_list_add_mem): ...this. Update all users.
9920 (record_arch_list_add_end): Rename to ...
9921 (record_full_arch_list_add_end): ...this. Update all users.
9922 (record_gdb_operation_disable_set): Rename to ...
9923 (record_full_gdb_operation_disable_set): ...this.
9924 Update all users.
9925
9926 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9927
9928 * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
9929 (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
9930 (RECORD_IS_REPLAY): Renamed to ...
9931 (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
9932 (RECORD_FILE_MAGIC): Renamed to ...
9933 (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
9934 (record_mem_entry): Renamed to ...
9935 (record_full_mem_entry): ... this. Updated all users.
9936 (record_reg_entry): Renamed to ...
9937 (record_full_reg_entry): ... this. Updated all users.
9938 (record_end_entry): Renamed to ...
9939 (record_full_end_entry): ... this. Updated all users.
9940 (record_type) <record_end, record_reg, record_mem>: Renamed
9941 to ...
9942 (record_full_type) <record_full_end, record_full_reg,
9943 record_full_mem>: ... this. Updated all users.
9944 (record_entry): Renamed to ...
9945 (record_full_entry): ... this. Updated all users.
9946 (record_core_buf_entry): Renamed to ...
9947 (record_full_core_buf_entry): ... this. Updated all users.
9948 (record_core_regbuf): Renamed to ...
9949 (record_full_core_regbuf): ... this. Updated all users.
9950 (record_core_start): Renamed to ...
9951 (record_full_core_start): ... this. Updated all users.
9952 (record_core_end): Renamed to ...
9953 (record_full_core_end): ... this. Updated all users.
9954 (record_core_buf_list): Renamed to ...
9955 (record_full_core_buf_list): ... this. Updated all users.
9956 (record_first): Renamed to ...
9957 (record_full_first): ... this. Updated all users.
9958 (record_list): Renamed to ...
9959 (record_full_list): ... this. Updated all users.
9960 (record_arch_list_head): Renamed to ...
9961 (record_full_arch_list_head): ... this. Updated all users.
9962 (record_arch_list_tail): Renamed to ...
9963 (record_full_arch_list_tail): ... this. Updated all users.
9964 (record_stop_at_limit): Renamed to ...
9965 (record_full_stop_at_limit): ... this. Updated all users.
9966 (record_insn_max_num): Renamed to ...
9967 (record_full_insn_max_num): ... this. Updated all users.
9968 (record_insn_num): Renamed to ...
9969 (record_full_insn_num): ... this. Updated all users.
9970 (record_insn_count): Renamed to ...
9971 (record_full_insn_count): ... this. Updated all users.
9972 (record_ops): Renamed to ...
9973 (record_full_ops): ... this. Updated all users.
9974 (record_core_ops): Renamed to ...
9975 (record_full_core_ops): ... this. Updated all users.
9976 (set_record_cmdlist): Renamed to ...
9977 (set_record_full_cmdlist): ... this. Updated all users.
9978 (show_record_cmdlist): Renamed to ...
9979 (show_record_full_cmdlist): ... this. Updated all users.
9980 (record_cmdlist): Renamed to ...
9981 (record_full_cmdlist): ... this. Updated all users.
9982 (record_beneath_to_resume_ops): Renamed to ...
9983 (record_full_beneath_to_resume_ops): ... this. Updated all users.
9984 (record_beneath_to_resume): Renamed to ...
9985 (record_full_beneath_to_resume): ... this. Updated all users.
9986 (record_beneath_to_wait_ops): Renamed to ...
9987 (record_full_beneath_to_wait_ops): ... this. Updated all users.
9988 (record_beneath_to_wait): Renamed to ...
9989 (record_full_beneath_to_wait): ... this. Updated all users.
9990 (record_beneath_to_store_registers_ops): Renamed to ...
9991 (record_full_beneath_to_store_registers_ops): ... this.
9992 Updated all users.
9993 (record_beneath_to_store_registers): Renamed to ...
9994 (record_full_beneath_to_store_registers): ... this.
9995 Updated all users.
9996 (record_beneath_to_xfer_partial_ops): Renamed to ...
9997 (record_full_beneath_to_xfer_partial_ops): ... this.
9998 Updated all users.
9999 (record_beneath_to_xfer_partial): Renamed to ...
10000 (record_full_beneath_to_xfer_partial): ... this.
10001 Updated all users.
10002 (record_beneath_to_insert_breakpoint): Renamed to ...
10003 (record_full_beneath_to_insert_breakpoint): ... this.
10004 Updated all users.
10005 (record_beneath_to_stopped_by_watchpoint): Renamed to ...
10006 (record_full_beneath_to_stopped_by_watchpoint): ... this.
10007 Updated all users.
10008 (record_beneath_to_stopped_data_address): Renamed to ...
10009 (record_full_beneath_to_stopped_data_address): ... this.
10010 Updated all users.
10011 (record_beneath_to_async): Renamed to ...
10012 (record_full_beneath_to_async): ... this. Updated all users.
10013 (record_goto_insn): Renamed to ...
10014 (record_full_goto_insn): ... this. Updated all users.
10015 (record_save): Renamed to ...
10016 (record_full_save): ... this. Updated all users.
10017 (record_reg_alloc): Renamed to ...
10018 (record_full_reg_alloc): ... this. Updated all users.
10019 (record_reg_release): Renamed to ...
10020 (record_full_reg_release): ... this. Updated all users.
10021 (record_mem_alloc): Renamed to ...
10022 (record_full_mem_alloc): ... this. Updated all users.
10023 (record_mem_release): Renamed to ...
10024 (record_full_mem_release): ... this. Updated all users.
10025 (record_end_alloc): Renamed to ...
10026 (record_full_end_alloc): ... this. Updated all users.
10027 (record_end_release): Renamed to ...
10028 (record_full_end_release): ... this. Updated all users.
10029 (record_entry_release): Renamed to ...
10030 (record_full_entry_release): ... this. Updated all users.
10031 (record_list_release): Renamed to ...
10032 (record_full_list_release): ... this. Updated all users.
10033 (record_list_release_following): Renamed to ...
10034 (record_full_list_release_following): ... this.
10035 Updated all users.
10036 (record_list_release_first): Renamed to ...
10037 (record_full_list_release_first): ... this. Updated all users.
10038 (record_arch_list_add): Renamed to ...
10039 (record_full_arch_list_add): ... this. Updated all users.
10040 (record_get_loc): Renamed to ...
10041 (record_full_get_loc): ... this. Updated all users.
10042 (record_check_insn_num): Renamed to ...
10043 (record_full_check_insn_num): ... this. Updated all users.
10044 (record_arch_list_cleanups): Renamed to ...
10045 (record_full_arch_list_cleanups): ... this. Updated all users.
10046 (record_message): Renamed to ...
10047 (record_full_message): ... this. Updated all users.
10048 (record_message_wrapper): Renamed to ...
10049 (record_full_message_wrapper): ... this. Updated all users.
10050 (record_message_wrapper_safe): Renamed to ...
10051 (record_full_message_wrapper_safe): ... this. Updated all users.
10052 (record_gdb_operation_disable): Renamed to ...
10053 (record_full_gdb_operation_disable): ... this. Updated all users.
10054 (record_hw_watchpoint): Renamed to ...
10055 (record_full_hw_watchpoint): ... this. Updated all users.
10056 (record_exec_insn): Renamed to ...
10057 (record_full_exec_insn): ... this. Updated all users.
10058 (record_restore): Renamed to ...
10059 (record_full_restore): ... this. Updated all users.
10060 (record_async_inferior_event_token): Renamed to ...
10061 (record_full_async_inferior_event_token): ... this.
10062 Updated all users.
10063 (record_async_inferior_event_handler): Renamed to ...
10064 (record_full_async_inferior_event_handler): ... this.
10065 Updated all users.
10066 (record_core_open_1): Renamed to ...
10067 (record_full_core_open_1): ... this. Updated all users.
10068 (record_open_1): Renamed to ...
10069 (record_full_open_1): ... this. Updated all users.
10070 (record_open): Renamed to ...
10071 (record_full_open): ... this. Updated all users.
10072 (record_close): Renamed to ...
10073 (record_full_close): ... this. Updated all users.
10074 (record_resume_step): Renamed to ...
10075 (record_full_resume_step): ... this. Updated all users.
10076 (record_resumed): Renamed to ...
10077 (record_full_resumed): ... this. Updated all users.
10078 (record_execution_dir): Renamed to ...
10079 (record_full_execution_dir): ... this. Updated all users.
10080 (record_resume): Renamed to ...
10081 (record_full_resume): ... this. Updated all users.
10082 (record_get_sig): Renamed to ...
10083 (record_full_get_sig): ... this. Updated all users.
10084 (record_sig_handler): Renamed to ...
10085 (record_full_sig_handler): ... this. Updated all users.
10086 (record_wait_cleanups): Renamed to ...
10087 (record_full_wait_cleanups): ... this. Updated all users.
10088 (record_wait_1): Renamed to ...
10089 (record_full_wait_1): ... this. Updated all users.
10090 (record_wait): Renamed to ...
10091 (record_full_wait): ... this. Updated all users.
10092 (record_stopped_by_watchpoint): Renamed to ...
10093 (record_full_stopped_by_watchpoint): ... this. Updated all users.
10094 (record_disconnect): Renamed to ...
10095 (record_full_disconnect): ... this. Updated all users.
10096 (record_detach): Renamed to ...
10097 (record_full_detach): ... this. Updated all users.
10098 (record_mourn_inferior): Renamed to ...
10099 (record_full_mourn_inferior): ... this. Updated all users.
10100 (record_kill): Renamed to ...
10101 (record_full_kill): ... this. Updated all users.
10102 (record_stopped_data_address): Renamed to ...
10103 (record_full_stopped_data_address): ... this. Updated all users.
10104 (record_registers_change): Renamed to ...
10105 (record_full_registers_change): ... this. Updated all users.
10106 (record_store_registers): Renamed to ...
10107 (record_full_store_registers): ... this. Updated all users.
10108 (record_xfer_partial): Renamed to ...
10109 (record_full_xfer_partial): ... this. Updated all users.
10110 (record_breakpoint): Renamed to ...
10111 (record_full_breakpoint): ... this. Updated all users.
10112 (record_breakpoint_p): Renamed to ...
10113 (record_full_breakpoint_p): ... this. Updated all users.
10114 (record_breakpoints): Renamed to ...
10115 (record_full_breakpoints): ... this. Updated all users.
10116 (record_sync_record_breakpoints): Renamed to ...
10117 (record_full_sync_record_breakpoints): ... this.
10118 Updated all users.
10119 (record_init_record_breakpoints): Renamed to ...
10120 (record_full_init_record_breakpoints): ... this.
10121 Updated all users.
10122 (record_insert_breakpoint): Renamed to ...
10123 (record_full_insert_breakpoint): ... this. Updated all users.
10124 (record_remove_breakpoint): Renamed to ...
10125 (record_full_remove_breakpoint): ... this. Updated all users.
10126 (record_can_execute_reverse): Renamed to ...
10127 (record_full_can_execute_reverse): ... this. Updated all users.
10128 (record_get_bookmark): Renamed to ...
10129 (record_full_get_bookmark): ... this. Updated all users.
10130 (record_goto_bookmark): Renamed to ...
10131 (record_full_goto_bookmark): ... this. Updated all users.
10132 (record_async): Renamed to ...
10133 (record_full_async): ... this. Updated all users.
10134 (record_can_async_p): Renamed to ...
10135 (record_full_can_async_p): ... this. Updated all users.
10136 (record_is_async_p): Renamed to ...
10137 (record_full_is_async_p): ... this. Updated all users.
10138 (record_execution_direction): Renamed to ...
10139 (record_full_execution_direction): ... this. Updated all users.
10140 (record_info): Renamed to ...
10141 (record_full_info): ... this. Updated all users.
10142 (record_delete): Renamed to ...
10143 (record_full_delete): ... this. Updated all users.
10144 (record_is_replaying): Renamed to ...
10145 (record_full_is_replaying): ... this. Updated all users.
10146 (record_goto_entry): Renamed to ...
10147 (record_full_goto_entry): ... this. Updated all users.
10148 (record_goto_begin): Renamed to ...
10149 (record_full_goto_begin): ... this. Updated all users.
10150 (record_goto_end): Renamed to ...
10151 (record_full_goto_end): ... this. Updated all users.
10152 (record_goto): Renamed to ...
10153 (record_full_goto): ... this. Updated all users.
10154 (init_record_ops): Renamed to ...
10155 (init_record_full_ops): ... this. Updated all users.
10156 (record_core_resume): Renamed to ...
10157 (record_full_core_resume): ... this. Updated all users.
10158 (record_core_kill): Renamed to ...
10159 (record_full_core_kill): ... this. Updated all users.
10160 (record_core_fetch_registers): Renamed to ...
10161 (record_full_core_fetch_registers): ... this. Updated all users.
10162 (record_core_prepare_to_store): Renamed to ...
10163 (record_full_core_prepare_to_store): ... this. Updated all users.
10164 (record_core_store_registers): Renamed to ...
10165 (record_full_core_store_registers): ... this. Updated all users.
10166 (record_core_xfer_partial): Renamed to ...
10167 (record_full_core_xfer_partial): ... this. Updated all users.
10168 (record_core_insert_breakpoint): Renamed to ...
10169 (record_full_core_insert_breakpoint): ... this. Updated all users.
10170 (record_core_remove_breakpoint): Renamed to ...
10171 (record_full_core_remove_breakpoint): ... this. Updated all users.
10172 (record_core_has_execution): Renamed to ...
10173 (record_full_core_has_execution): ... this. Updated all users.
10174 (init_record_core_ops): Renamed to ...
10175 (init_record_full_core_ops): ... this. Updated all users.
10176 (cmd_record_restore): Renamed to ...
10177 (cmd_record_full_restore): ... this. Updated all users.
10178 (record_save_cleanups): Renamed to ...
10179 (record_full_save_cleanups): ... this. Updated all users.
10180 (cmd_record_start): Renamed to ...
10181 (cmd_record_full_start): ... this. Updated all users.
10182 (set_record_insn_max_num): Renamed to ...
10183 (set_record_full_insn_max_num): ... this. Updated all users.
10184 (set_record_command): Renamed to ...
10185 (set_record_full_command): ... this. Updated all users.
10186 (show_record_command): Renamed to ...
10187 (show_record_full_command): ... this. Updated all users.
10188 (_initialize_record): Renamed to ...
10189 (_initialize_record_full): ... this. Updated all users.
10190
10191 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10192
10193 * record.h: Split into this and ...
10194 * record-full.h: ... this.
10195 * record.c: Split into this and ...
10196 * record-full.c: ... this.
10197 * target.h (target_ops): Add new fields to_info_record,
10198 to_save_record, to_delete_record, to_record_is_replaying,
10199 to_goto_record_begin, to_goto_record_end, to_goto_record.
10200 (target_info_record): New.
10201 (target_save_record): New.
10202 (target_supports_delete_record): New.
10203 (target_delete_record): New.
10204 (target_record_is_replaying): New.
10205 (target_goto_record_begin): New.
10206 (target_goto_record_end): New.
10207 (target_goto_record): New.
10208 * target.c (target_info_record): New.
10209 (target_save_record): New.
10210 (target_supports_delete_record): New.
10211 (target_delete_record): New.
10212 (target_record_is_replaying): New.
10213 (target_goto_record_begin): New.
10214 (target_goto_record_end): New.
10215 (target_goto_record): New.
10216 * record.h: Declare struct cmd_list_element.
10217 (record_cmdlist): New declaration.
10218 (set_record_cmdlist): New declaration.
10219 (show_record_cmdlist): New declaration.
10220 (info_record_cmdlist): New declaration.
10221 (cmd_record_goto): New declaration.
10222 * record.c: Remove unnecessary includes.
10223 Include inferior.h.
10224 (cmd_record_goto): Remove declaration.
10225 (record_cmdlist): Now extern. Initialize.
10226 (set_record_cmdlist): Now extern. Initialize.
10227 (show_record_cmdlist): Now extern. Initialize.
10228 (info_record_cmdlist): Now extern. Initialize.
10229 (find_record_target): New.
10230 (require_record_target): New.
10231 (cmd_record_start): Update.
10232 (cmd_record_delete): Remove target-specific code.
10233 Call target_delete_record.
10234 (cmd_record_stop): Unpush any record target.
10235 (set_record_insn_max_num): Move to record-full.c
10236 (set_record_command): Add comment.
10237 (show_record_command): Add comment.
10238 (info_record_command): Update comment.
10239 Remove target-specific code.
10240 Call the record target's to_info_record.
10241 (cmd_record_start): New.
10242 (cmd_record_goto): Now extern.
10243 Remove target-specific code.
10244 Call target_goto_begin, target_goto_end, or target_goto.
10245 (_initialize_record): Move record target ops initialization to
10246 record-full.c.
10247 Change "record" command help text.
10248 Move "record restore", "record set", and "record show" commands to
10249 record-full.c.
10250 * Makefile.in (SFILES): Add record-full.c.
10251 (HFILES_NO_SRCDIR): Add record-full.h.
10252 (COMMON_OBS): Add record-full.o.
10253 * amd64-linux-tdep.c: Include record-full.h instead of record.h.
10254 * arm-tdep.c: Include record-full.h.
10255 * i386-linux-tdep.c: Include record-full.h instead of record.h.
10256 * i386-tdep.c: Include record-full.h.
10257 * infrun.c: Include record-full.h.
10258 * linux-record.c: Include record-full.h.
10259 * moxie-tdep.c: Include record-full.h.
10260 * record-full.c: Include record-full.h.
10261 Change module comment.
10262 (set_record_full_cmdlist): New.
10263 (show_record_full_cmdlist): New.
10264 (record_full_cmdlist): New.
10265 (record_goto_insn): New declaration.
10266 (record_save): New declaration.
10267 (record_check_insn_num): Change query string.
10268 (record_info): New.
10269 (record_delete): New.
10270 (record_is_replaying): New.
10271 (record_goto_entry): New.
10272 (record_goto_begin): New.
10273 (record_goto_end): New.
10274 (record_goto): New.
10275 (init_record_ops): Update.
10276 (init_record_core_ops): Update.
10277 (cmd_record_save): Rename to record_save. Remove target and arg checks.
10278 (cmd_record_start): New.
10279 (set_record_insn_max_num): Moved from record.c
10280 (set_record_full_command): New.
10281 (show_record_full_command): New.
10282 (_initialize_record_full): New.
10283
10284 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10285
10286 * target.h (add_deprecated_target_alias): New.
10287 * target.c (add_deprecated_target_alias): New.
10288
10289 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10290
10291 * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
10292 and signal.h.
10293 (linux_supports_btrace): Add kernel and
10294 cpuid check.
10295 (kernel_supports_btrace): New function.
10296 (cpu_supports_btrace): New function.
10297 (intel_supports_btrace): New function.
10298
10299 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10300
10301 * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
10302 * remote.c: Include btrace.h.
10303 (struct btrace_target_info): New struct.
10304 (remote_supports_btrace): New function.
10305 (send_Qbtrace): New function.
10306 (remote_enable_btrace): New function.
10307 (remote_disable_btrace): New function.
10308 (remote_teardown_btrace): New function.
10309 (remote_read_btrace): New function.
10310 (init_remote_ops): Add btrace ops.
10311 (enum <unnamed>): Add btrace packets.
10312 (struct protocol_feature remote_protocol_features[]): Add btrace packets.
10313 (_initialize_remote): Add packet configuration for branch tracing.
10314
10315 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10316
10317 * features/btrace.dtd: New file.
10318 * Makefile.in (XMLFILES): Add btrace.dtd.
10319 * btrace.h (parse_xml_btrace): New declaration.
10320 * btrace.c: Include xml-support.h.
10321 (parse_xml_btrace): New function.
10322 (parse_xml_btrace_block): New function.
10323 (block_attributes): New struct.
10324 (btrace_attributes): New struct.
10325 (btrace_children): New struct.
10326 (btrace_elements): New struct.
10327
10328 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10329
10330 * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
10331 (amd64_linux_enable_btrace): New.
10332 (amd64_linux_disable_btrace): New.
10333 (amd64_linux_teardown_btrace): New.
10334 (_initialize_amd64_linux_nat): Initialize btrace ops.
10335 * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
10336 (i386_linux_enable_btrace): New.
10337 (i386_linux_disable_btrace): New.
10338 (i386_linux_teardown_btrace): New.
10339 (_initialize_i386_linux_nat): Initialize btrace ops.
10340 * config/i386/linux.mh: Add linux-btrace.o.
10341 * config/i386/linux64.mh: Add linux-btrace.o.
10342
10343 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10344
10345 * common/linux_btrace.h: New file.
10346 * common/linux_btrace.c: New file.
10347 * Makefile.in (SFILES): Add btrace.c.
10348 (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
10349 (COMMON_OBS): Add btrace.o.
10350 (linux-btrace.o): New rule.
10351
10352 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10353
10354 * target.h: Include btrace.h.
10355 (struct target_ops) <to_supports_btrace, to_enable_btrace,
10356 to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
10357 * target.c (target_supports_btrace): New function.
10358 (target_enable_btrace): New function.
10359 (target_disable_btrace): New function.
10360 (target_teardown_btrace): New function.
10361 (target_read_btrace): New function.
10362 * btrace.h: New file.
10363 * btrace.c: New file.
10364 * Makefile.in: Add btrace.c.
10365 * gdbthread.h: Include btrace.h.
10366 (struct thread_info): Add btrace field.
10367 * thread.c: Include btrace.h.
10368 (clear_thread_inferior_resources): Call target_teardown_btrace.
10369 * common/btrace-common.h: New file.
10370
10371 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
10372
10373 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
10374 for CHILD, ignore PTRACE_KILL errors, move the inner block variable
10375 kill_status to outer block.
10376
10377 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
10378
10379 Fix entry-values if the callee called a noreturn function.
10380 * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
10381 get_frame_address_in_block. Add new comment.
10382
10383 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
10384
10385 Fix entry-values in C++ across CUs.
10386 * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
10387 lookup_minimal_symbol. Add a comment.
10388 * dwarf2read.c
10389 (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
10390 DW_AT_linkage_name.
10391
10392 2013-03-08 Yao Qi <yao@codesourcery.com>
10393
10394 * tracepoint.c (_initialize_tracepoint): Indent the code.
10395
10396 2013-03-08 Pedro Alves <palves@redhat.com>
10397
10398 * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
10399 (parse_find_args, find_command): Change type of pattern buffer
10400 locals to 'gdb_byte *'.
10401
10402 2013-03-08 Stan Shebs <stan@codesourcery.com>
10403 Hafiz Abid Qadeer <abidh@codesourcery.com>
10404
10405 * NEWS: Mention set and show trace-buffer-size commands.
10406 Mention new packet.
10407 * target.h (struct target_ops): New method
10408 to_set_trace_buffer_size.
10409 (target_set_trace_buffer_size): New macro.
10410 * target.c (update_current_target): Set up new method.
10411 * tracepoint.c (trace_buffer_size): New global.
10412 (start_tracing): Send it to the target.
10413 (set_trace_buffer_size): New function.
10414 (_initialize_tracepoint): Add new setshow for trace-buffer-size.
10415 * remote.c (remote_set_trace_buffer_size): New function.
10416 (_initialize_remote): Use it.
10417 (QTBuffer:size) New remote command.
10418 (PACKET_QTBuffer_size): New enum.
10419 (remote_protocol_features): Add an entry for
10420 PACKET_QTBuffer_size.
10421
10422 2013-03-08 Tom Tromey <tromey@redhat.com>
10423
10424 * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
10425 variable.
10426
10427 2013-03-07 Pedro Alves <palves@redhat.com>
10428
10429 * target.c (target_read_stralloc, target_fileio_read_alloc):
10430 *Cast pointer to 'gdb_byte *' in target call.
10431
10432 2013-03-07 Pedro Alves <palves@redhat.com>
10433
10434 * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
10435 call.
10436
10437 2013-03-07 Keith Seitz <keiths@redhat.com>
10438
10439 * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
10440 (trace_pass_command): Likewise.
10441 * cli/cli-cmds.c: Include cli/cli-utils.h.
10442 (source_command): Use skip-spaces.
10443 (disassemble_command): Likewise.
10444 * findcmd.c: Include cli/cli-utils.h.
10445 (parse_find_args): Use skip_spaces.
10446 * go32-nat.c: Include cli/cli-utils.h.
10447 (go32_sldt): Use skip_spaces.
10448 (go32_sgdt): Likewise.
10449 (go32_sidt): Likewise.
10450 (go32_pde): Likewise.
10451 (go32_pte): Likewise.
10452 (go32_pte_for_address): Likewise.
10453 * infcmd.c: Include cli/cli-utils.h.
10454 (registers_info): Use skip_spaces.
10455 * linux-tdep.c (read_mapping): Use skip_spaces_const.
10456 (linux_info_proc): Likewise.
10457 * linux-thread-db.c: Include cli/cli-utils.h.
10458 (info_auto_load_libthread_db): Use skip_spaces_const.
10459 * m32r-rom.c: Include cli/cli-utils.h.
10460 (m32r_upload_command): Use skip_spaces.
10461 * maint.c: Include cli/cli-utils.h.
10462 (maintenance_translate_address): Use skip_spaces.
10463 * mi/mi-parse.c: Include cli/cli-utils.h.
10464 (mi_parse_argv): Use skip_spaces.
10465 (mi_parse): Likewise.
10466 * minsyms.c: Include cli/cli-utils.h.
10467 (msymbol_hash_iw): Use skip_spaces_const.
10468 * objc-lang.c: Include cli/cli-utils.h.
10469 (parse_selector): Use skip_spaces.
10470 (parse_method): Likewise.
10471 * python/python.c: Include cli/cli-utils.h.
10472 (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
10473 (python_command)[HAVE_PYTHON]: Likewise.
10474 (python_interactive_command)[!HAVE_PYTHON]: Likewise.
10475 * remote-m32r-sdi.c: Include cli/cli-utils.h.
10476 (m32r_load): Use skip_spaces.
10477 * serial.c: Include cli/cli-utils.h.
10478 (serial_open): Use skip_spaces_const.
10479 * stack.c: Include cli/cli-utils.h.
10480 (parse_frame_specification_1): Use skip_spaces_const.
10481 * symfile.c: Include cli/cli-utils.h.
10482 (set_ext_lang_command): Use skip_spaces.
10483 * symtab.c: Include cli/cli-utils.h.
10484 (rbreak_command): Use skip_spaces.
10485 * thread.c (thread_name_command): Use skip_spaces.
10486 * tracepoint.c (validate_actionline): Use skip_spaces.
10487 (encode_actions_1): Likewise.
10488 (trace_find_range_command): Likewise.
10489 (trace_find_outside_command): Likewise.
10490 (trace_dump_actions): Likewise.
10491
10492 2013-03-07 Pedro Alves <palves@redhat.com>
10493
10494 * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
10495 * expprint.c (print_subexp_standard): Likewise.
10496 * utils.c (host_char_to_target): Likewise.
10497 * valprint.c (generic_emit_char, generic_printstr): Likewise.
10498 * varobj.c (value_get_print_value): Change type of local to char*.
10499 Cast it gdb_byte * in call to language printer.
10500
10501 2013-03-07 Pedro Alves <palves@redhat.com>
10502
10503 * charset.c (struct wchar_iterator) <input>: Change type to 'const
10504 gdb_byte *'.
10505 (make_wchar_iterator): Remove cast to char*.
10506 (wchar_iterate): Change type of local.
10507
10508 2013-03-07 Pedro Alves <palves@redhat.com>
10509
10510 * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
10511 for 'regcache->register_status'.
10512
10513 2013-03-07 Pedro Alves <palves@redhat.com>
10514
10515 * breakpoint.c (breakpoint_xfer_memory): Change type of local to
10516 int.
10517
10518 2013-03-07 Pedro Alves <palves@redhat.com>
10519
10520 * stap-probe.c (handle_stap_probe): Add cast to char*.
10521
10522 2013-03-07 Pedro Alves <palves@redhat.com>
10523
10524 * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
10525 RECORD_MSGRCV>: Pass a signed variable to
10526 regcache_raw_read_signed, instead of an unsigned one.
10527
10528 2013-03-07 Pedro Alves <palves@redhat.com>
10529
10530 * remote-notif.c (notif_debug): Change type to int.
10531 * remote-notif.h (notif_debug): Likewise.
10532
10533 2013-03-07 Pedro Alves <palves@redhat.com>
10534
10535 * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
10536
10537 2013-03-07 Pedro Alves <palves@redhat.com>
10538
10539 * remote.c (hex2bin, bin2hex): Move extern declarations to ...
10540 * remote.h (hex2bin, bin2hex): ... here.
10541 * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
10542
10543 2013-03-07 Eli Zaretskii <eliz@gnu.org>
10544
10545 * utils.c (initialize_utils): Improve doc strings of "set/show
10546 width", "set/show height", and "set/show pagination".
10547
10548 2013-03-06 Keith Seitz <keiths@redhat.com>
10549
10550 * ax-gdb.c (gen_printf): Make FORMAT const.
10551 * ax-gdb.h (gen_printf): Likewise.
10552 * ax-general.c (ax_string): Make STR const.
10553 * ax.h (ax_string): Likewise.
10554
10555 2013-03-06 Doug Evans <dje@google.com>
10556
10557 * elfread.c (elf_symfile_read): Move debugging printf to more
10558 logical location.
10559
10560 2013-03-06 Pedro Alves <palves@redhat.com>
10561
10562 * python/py-utils.c (target_string_to_unicode): Delete function.
10563 * python/python-internal.h (target_string_to_unicode): Delete
10564 declaration.
10565
10566 2013-03-06 Pierre Muller <muller@sourceware.org>
10567
10568 * linespec.c (get_current_search_block): ARI fix, use (void)
10569 for empty parameter list.
10570
10571 2013-03-05 Doug Evans <dje@google.com>
10572
10573 * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
10574 of old ada_lookup_symbol_list. In !full_search case, don't
10575 search superblocks.
10576 (ada_lookup_symbol_list): Delete arg full_search, all callers
10577 updated. Call ada_lookup_symbol_list_worker.
10578 (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
10579 * ada-lang.h (ada_lookup_symbol_list): Update.
10580 * language.h (language_defn): Update comment for
10581 la_iterate_over_symbols.
10582 * linespec.c (iterate_over_file_blocks): New function.
10583 (iterate_over_all_matching_symtabs): Call it.
10584 (lookup_prefix_sym): Ditto.
10585 (get_current_search_block): New function.
10586 (get_search_block): Delete.
10587 (find_label_symbols): Call get_current_search_block.
10588 (add_matching_symbols_to_info): Call iterate_over_file_blocks.
10589 * symtab.c (iterate_over_symbols): Don't search superblocks.
10590
10591 2013-03-05 Yao Qi <yao@codesourcery.com>
10592
10593 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
10594 parameter VAR's type from "unsigned int" to "int".
10595 * command.h (var_zuinteger_unlimited): Update its comments.
10596 (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
10597
10598 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
10599
10600 * NEWS: Mention new target x86_64-*-cygwin*.
10601
10602 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
10603
10604 * configure.host: Add x86_64-*-cygwin* as host.
10605 * configure.tgt: Add x86_64-*-cygwin* as target.
10606 * config/i386/cygwin64.mh: New file.
10607
10608 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
10609
10610 * linespec.c (decode_line_2): Fix duplicate request off by two message.
10611
10612 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
10613
10614 * linespec.c (struct linespec_canonical_name): New.
10615 (struct linespec_state): Change canonical_names type to it.
10616 (add_sal_to_sals): Change variable canonical_name to canonical. Change
10617 xrealloc element size. Initialize the different CANONICAL fields.
10618 (canonical_to_fullform): New.
10619 (filter_results): Use it. Add variables canonical, fullform and
10620 cleanup.
10621 (struct decode_line_2_item, decode_line_2_compare_items): New.
10622 (decode_line_2): Remove variables iter and item_names, add variables
10623 items and items_count. Modify the code for these new variables.
10624
10625 2013-03-04 Corinna Vinschen <vinschen@redhat.com>
10626
10627 * coff-pe-read.c (read_pe_exported_syms): Don't return without
10628 calling do_cleanup.
10629
10630 2013-03-04 Luis Machado <lgustavo@codesourcery.com>
10631
10632 * tracepoint.c (build_traceframe_info): Add code for byte order.
10633
10634 2013-03-02 Kevin Buettner <kevinb@redhat.com>
10635
10636 * v850-tdep.c: (v850e2_register_name): Revise system register
10637 names to match current V850E2M architecture specifications.
10638 Update register number enum comments too.
10639
10640 2013-03-01 Jiong Wang <jiwang@tilera.com>
10641 Pedro Alves <palves@redhat.com>
10642
10643 * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
10644 to END_ADDR.
10645 (tilegx_skip_prologue): Limit prologue analysis to section end.
10646
10647 2013-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10648
10649 * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
10650 use it.
10651
10652 2013-03-01 Pedro Alves <palves@redhat.com>
10653
10654 Use gdb_byte for bytes from the program being debugged.
10655
10656 * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
10657 Change type of local 'buf' to gdb_byte.
10658 * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
10659 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
10660 * cris-tdep.c (cris_sigcontext_addr)
10661 (cris_sigtramp_frame_unwind_cache): Likewise.
10662 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
10663 (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
10664 Likewise.
10665 * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
10666 * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
10667 (hppa32_hpux_search_dummy_call_sequence)
10668 (hppa_hpux_supply_save_state): Likewise.
10669 * hppa-linux-tdep.c (insns_match_pattern)
10670 (hppa_linux_find_global_pointer): Likewise.
10671 * hppa-tdep.c (hppa_in_function_epilogue_p)
10672 (skip_prologue_hard_way, hppa_frame_cache): Likewise.
10673 * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
10674 * i386fbsd-tdep.c (i386fbsd_supply_uthread)
10675 (i386fbsd_collect_uthread): Likewise.
10676 * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
10677 * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
10678 * ia64-tdep.c (examine_prologue, ia64_frame_cache)
10679 (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
10680 (ia64_sigtramp_frame_prev_register, ia64_access_reg)
10681 (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
10682 (ia64_libunwind_frame_prev_register)
10683 (ia64_libunwind_sigtramp_frame_this_id)
10684 (ia64_find_global_pointer_from_dynamic_section)
10685 (find_extant_func_descr, find_func_descr, ia64_dummy_id)
10686 (ia64_unwind_pc): Likewise.
10687 * iq2000-tdep.c (iq2000_store_return_value): Likewise.
10688 * m68hc11-tdep.c (m68hc11_push_dummy_call)
10689 (m68hc11_extract_return_value): Likewise.
10690 * m68klinux-nat.c (fetch_register, store_register): Likewise.
10691 * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
10692 (mep_get_insn, mep_push_dummy_call): Likewise.
10693 * mips-linux-tdep.c (mips_linux_get_longjmp_target)
10694 (mips_linux_in_dynsym_stub): Likewise.
10695 * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
10696 * ppc-linux-nat.c (fetch_register, store_register): Likewise.
10697 * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
10698 to gdb_byte.
10699 * remote-mips.c (mips_set_register): Likewise.
10700 * remote-sim.c (gdbsim_fetch_register): Likewise.
10701 * score-tdep.c (score7_fetch_inst): Change type of parameter
10702 'memblock' and local 'buf' to gdb_byte.
10703 (score7_malloc_and_get_memblock): Change return type to gdb_byte.
10704 Change type of local 'buf' to gdb_byte. Adjust.
10705 (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
10706 to gdb_byte**.
10707 (score7_analyze_prologue): Change type of 'memblock' and
10708 'memblock_ptr' locals to gdb_byte*.
10709 * sh64-tdep.c (sh64_extract_return_value)
10710 (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
10711 * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
10712 * solib-pa64.c (pa64_solib_create_inferior_hook)
10713 (pa64_open_symbol_file_object): Remove local 'buf'.
10714 * solib-som.c (som_solib_create_inferior_hook, link_map_start)
10715 (som_open_symbol_file_object): Likewise.
10716 * solib-spu.c (spu_current_sos): Likewise.
10717 * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
10718 * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
10719 (spu_store_registers): Likewise.
10720 * target.c (debug_print_register): Likewise.
10721 * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
10722 * xstormy16-tdep.c (xstormy16_store_return_value)
10723 (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
10724 (xstormy16_find_jmp_table_entry): Likewise.
10725
10726 2013-03-01 Jiong Wang <jiwang@tilera.com>
10727
10728 * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
10729 (tilegx_gdbarch_init): Install it.
10730
10731 2013-02-28 Tom Tromey <tromey@redhat.com>
10732
10733 * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
10734 PyLong_Check.
10735
10736 2013-02-28 Doug Evans <dje@google.com>
10737
10738 * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
10739 * python/python.c (gdbpy_find_pc_line): Ditto.
10740
10741 2013-02-28 Tom Tromey <tromey@redhat.com>
10742
10743 * contrib/excheck.py: New file.
10744 * contrib/exsummary.py: New file.
10745 * contrib/gcc-with-excheck: New file.
10746
10747 2013-02-28 Tom Tromey <tromey@redhat.com>
10748
10749 * python/python.c (gdbpy_print_stack): Call begin_line and
10750 fprintf_filtered inside TRY_CATCH.
10751
10752 2013-02-28 Tom Tromey <tromey@redhat.com>
10753
10754 * python/python.c (gdbpy_find_pc_line): Call find_pc_line
10755 inside TRY_CATCH.
10756
10757 2013-02-28 Tom Tromey <tromey@redhat.com>
10758
10759 * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
10760 frame_object_to_frame_info inside TRY_CATCH.
10761
10762 2013-02-28 Tom Tromey <tromey@redhat.com>
10763
10764 * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
10765 TRY_CATCH.
10766
10767 2013-02-28 Tom Tromey <tromey@redhat.com>
10768
10769 * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
10770
10771 2013-02-27 Corinna Vinschen <vinschen@redhat.com>
10772
10773 * windows-nat.c: Throughout, fix format strings and casts of
10774 printf-like functions to avoid type related warnings on all
10775 platforms.
10776 (handle_output_debug_string): Fetch context information address
10777 from debug string using string_to_core_addr.
10778
10779 2013-02-27 Jiong Wang <jiwang@tilera.com>
10780
10781 * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
10782 * regformats/reg-tilegx32.dat: New.
10783
10784 2013-02-27 Jiong Wang <jiwang@tilera.com>
10785
10786 * configure.tgt (tilegx-*-linux*): Enable gdbserver.
10787
10788 2013-02-27 Jiong Wang <jiwang@tilera.com>
10789
10790 * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
10791
10792 2013-02-27 Yao Qi <yao@codesourcery.com>
10793 Pedro Alves <palves@redhat.com>
10794
10795 * tracepoint.c (tfile_trace_find): For tfind
10796 pc/tp/range/outside, look for the next trace frame instead of
10797 always starting from frame 0.
10798
10799 2013-02-26 Anthony Green <green@moxielogic.com>
10800
10801 * configure.tgt: Add support for moxie-*-rtems* target.
10802
10803 2013-02-25 Pedro Alves <palves@redhat.com>
10804
10805 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
10806 warning text.
10807
10808 2013-02-24 Maciej W. Rozycki <macro@codesourcery.com>
10809
10810 * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
10811 if $fp is used as the virtual frame pointer.
10812
10813 2013-02-23 Alan Modra <amodra@gmail.com>
10814
10815 * elfread.c (elf_symtab_read): Do not use udata.p here to find
10816 symbol size.
10817 * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
10818 * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
10819 * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
10820 * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
10821
10822 2013-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
10823
10824 Code cleanup.
10825 * elfread.c (build_id_bfd_get): Make the return type const.
10826 (build_id_verify): Make the check parameter const.
10827 (build_id_to_debug_filename): Make the build_id parameter and variable
10828 data const.
10829 (find_separate_debug_file_by_buildid): Make the variable build_id const.
10830
10831 2013-02-21 Alan Modra <amodra@gmail.com>
10832
10833 * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
10834
10835 2013-02-20 Siva Chandra Reddy <sivachandra@google.com>
10836
10837 Add a new method 'disassemble' to gdb.Architecture class.
10838 * python/py-arch.c (archpy_disassmble): Implementation of the
10839 new method gdb.Architecture.disassemble.
10840 (arch_object_methods): Add entry for the new method.
10841
10842 2013-02-20 Jiong Wang <jiwang@tilera.com>
10843
10844 * MAINTAINERS (Write After Approval): Add myself to the list.
10845
10846 2013-02-19 Pedro Alves <palves@redhat.com>
10847
10848 Garbage collect 'struct monitor_ops'::load_routine.
10849
10850 * monitor.h (struct monitor_ops) <load_routine>: Remove field.
10851 * monitor.c (monitor_load): No longer call
10852 current_monitor->load_routine.
10853 * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
10854 * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
10855 * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
10856
10857 2013-02-19 Pedro Alves <palves@redhat.com>
10858
10859 PR gdb/15161
10860
10861 Harmonize with generic_load.
10862
10863 * monitor.c: Include "readline/readline.h".
10864 (monitor_load): Rename parameter 'file' to 'args'. Use build_argv
10865 instead of sscanf. Use CORE_ADDR/strtoulst instead of unsigned
10866 long/strtol for the 'load_offset' local. Error out if no argument
10867 is given or if too many arguments are given. Tilde expand the
10868 passed in file name.
10869
10870 2013-02-19 Kai Tietz <ktietz@redhat.com>
10871
10872 PR gdb/15161
10873 * symfile.c (load_section_data): Change type of load_offset
10874 to CORE_ADDR.
10875 (generic_load): User strtoulst instead of strtoul for conversion
10876 of load_offset.
10877
10878 2013-02-19 Jiong Wang <jiwang@tilera.com>
10879
10880 * tilegx-tdep.c (tilegx_analyze_prologue): add check for
10881 for return address, "lr" register, saved on stack.
10882 * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
10883 after we invoke tilegx_analyze_prologue.
10884
10885 2013-02-19 Jiong Wang <jiwang@tilera.com>
10886
10887 * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
10888
10889 2013-02-19 Jiong Wang <jiwang@tilera.com>
10890
10891 * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
10892
10893 2013-02-19 Jiong Wang <jiwang@tilera.com>
10894
10895 * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
10896 (tilegx_write_pc): New function.
10897 (tilegx_cannot_reference_register): Return zero if REGNO
10898 is TILEGX_FAULTNUM_REGNUM.
10899 (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
10900 (tilegx_register_name): Add handling of "faultnum" register.
10901 * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
10902 * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
10903 handling of TILEGX_FAULTNUM_REGNUM.
10904 * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
10905
10906 2013-02-19 Jiong Wang <jiwang@tilera.com>
10907
10908 * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
10909 should be aligned to 64bit.
10910
10911 2013-02-19 Kai Tietz <ktietz@redhat.com>
10912
10913 * windows-nat.c (windows_xfer_memory): Fix debug-output
10914 for LLP64.
10915
10916 2013-02-19 Lei Liu <lei.liu2@windriver.com>
10917
10918 * mips-linux-nat.c (mips64_linux_regsets_store_registers):
10919 Don't check DSP register number if HAVE_DSP is not set.
10920
10921 2013-02-19 Alan Modra <amodra@gmail.com>
10922
10923 * elfread.c (struct build_id): Delete. Use struct elf_build_id
10924 throughout file instead.
10925 (build_id_bfd_get): Update to use new elf_tdata build_id field.
10926 Don't xmalloc return value.
10927 (build_id_verify): Similarly. Don't xfree.
10928 (build_id_to_debug_filename): Update.
10929 (find_separate_debug_file_by_buildid): Update, don't xfree.
10930
10931 2013-02-18 Tom Tromey <tromey@redhat.com>
10932
10933 PR gdb/15102:
10934 * dwarf2read.c (read_subrange_type): Use result of
10935 'check_typedef'.
10936
10937 2013-02-16 Yuanhui Zhang <asmwarrior@gmail.com>
10938
10939 * frame.c: Remove one extra white space after #include
10940 directive.
10941
10942 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
10943
10944 * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
10945
10946 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
10947
10948 * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
10949 and dir commands into an if block.
10950
10951 2013-02-15 Sanimir Agovic <sanimir.agovic@intel.com>
10952
10953 * python/py-breakpoint (struct pybp_code): Use int instead of
10954 enum type_code.
10955
10956 2013-02-15 Pedro Alves <pedro@codesourcery.com>
10957 Hafiz Abid Qadeer <abidh@codesourcery.com>
10958
10959 * NEWS: Mention new field "trace-file".
10960 * tracepoint.c (trace_status_mi): Output "trace-file" field.
10961 (tfile_open): Record the trace file's filename in the trace
10962 status.
10963 (tfile_files_info): Mention the name of the trace file.
10964 Check the "filename" field explicitely.
10965 (trace_status_command): Explicitely check "filename" field.
10966 (trace_find_command): Ditto.
10967 (trace_find_pc_command): Ditto.
10968 (trace_find_tracepoint_command): Ditto.
10969 (trace_find_line_command): Ditto.
10970 (trace_find_range_command): Ditto.
10971 (trace_find_outside_command): Ditto.
10972 * tracepoint.h (struct trace_status) <from_file>: Rename it
10973 to "filename" and make it hold the trace file's filename
10974 instead of a boolean.
10975 * remote.c (remote_get_trace_status): Initialize "filename"
10976 field with NULL instead of 0.
10977
10978 2013-02-15 Yao Qi <yao@codesourcery.com>
10979
10980 * remote.c: Fix a typo.
10981
10982 2013-02-14 Pierre Muller <muller@sourceware.org>
10983
10984 * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
10985
10986 2013-02-14 Pedro Alves <palves@redhat.com>
10987
10988 * utils.c (savestring): Don't #undef it. Move function to
10989 common/common-utils.c.
10990 * common/common-utils.c: Include gdb_string.h.
10991 (savestring): Move here from utils.c.
10992 * common/common-utils.h (savestring): Declare.
10993
10994 2013-02-14 Pedro Alves <palves@redhat.com>
10995
10996 * utils.c (savestring): Rename parameter 'size' to 'len'.
10997
10998 2013-02-14 Pedro Alves <palves@redhat.com>
10999 Yufeng Zhang <yufeng.zhang@arm.com>
11000
11001 * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
11002 (aarch64_inferior_data, struct aarch64_inferior_data):
11003 Delete.
11004 (struct aarch64_process_info): New.
11005 (aarch64_process_list): New global.
11006 (aarch64_find_process_pid, aarch64_add_process)
11007 (aarch64_process_info_get): New functions.
11008 (aarch64_inferior_data_get): Delete.
11009 (aarch64_process_info_get): New function.
11010 (aarch64_forget_process): New function.
11011 (aarch64_get_debug_reg_state): New parameter 'pid'. Reimplement.
11012 (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
11013 aarch64_get_debug_reg_state.
11014 (aarch64_notify_debug_reg_change): Use iterate_over_lwps
11015 instead of linux_nat_iterate_watchpoint_lwps.
11016 (aarch64_linux_new_fork): New function.
11017 (aarch64_linux_child_post_startup_inferior): Use
11018 aarch64_forget_process instead of aarch64_init_debug_reg_state.
11019 (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
11020 (aarch64_linux_remove_hw_breakpoint)
11021 (aarch64_handle_aligned_watchpoint)
11022 (aarch64_handle_unaligned_watchpoint)
11023 (aarch64_linux_insert_watchpoint)
11024 (aarch64_linux_remove_watchpoint)
11025 (aarch64_linux_stopped_data_address): Adjust to pass the current
11026 process id to aarch64_debug_reg_state.
11027 (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
11028 linux_nat_new_fork hook, and aarch64_forget_process as
11029 linux_nat_forget_process hook; remove the call to
11030 register_inferior_data_with_cleanup.
11031
11032 2013-02-14 Pedro Alves <palves@redhat.com>
11033
11034 * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
11035 EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
11036 lval_memory.
11037
11038 2013-02-14 Pedro Alves <pedro@codesourcery.com>
11039 Hafiz Abid Qadeer <abidh@codesourcery.com>
11040
11041 * tracepoint.h (validate_trace_state_variable_name): Declare.
11042 * tracepoint.c (validate_trace_state_variable_name): New.
11043 (trace_variable_command): Parse the trace state variable's name
11044 without using parse_expression. Do several validations.
11045 * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
11046 trace state variable's name with parse_expression. Validate it.
11047
11048 2013-02-14 Yao Qi <yao@codesourcery.com>
11049
11050 * infcmd.c (breakpoint_proceeded): Remove it.
11051
11052 2013-02-14 Yao Qi <yao@codesourcery.com>
11053
11054 * tracepoint.c (end_actions_pseudocommand): Make it static.
11055 (while_stepping_pseudocommand): Likewise.
11056 * tracepoint.h (end_actions_pseudocommand): Remove the
11057 declaration.
11058 (while_stepping_pseudocommand): Likewise.
11059
11060 2013-02-14 Yao Qi <yao@codesourcery.com>
11061
11062 * cli/cli-decode.c (help_cmd): Remove the declaration of
11063 "cmdlist".
11064 (help_all): Likewise.
11065
11066 2013-02-13 Pedro Alves <palves@redhat.com>
11067
11068 * amd64-linux-nat.c (update_debug_registers_callback):
11069 Update comment.
11070 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
11071 iterate_over_lwps.
11072 (amd64_linux_prepare_to_resume): Pass the lwp's pid to
11073 i386_debug_reg_state.
11074 (amd64_linux_new_fork): New function.
11075 (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
11076 linux_nat_new_fork hook, and i386_forget_process as
11077 linux_nat_forget_process hook.
11078 * i386-linux-nat.c (update_debug_registers_callback):
11079 Update comment.
11080 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
11081 iterate_over_lwps.
11082 (i386_linux_prepare_to_resume): Pass the lwp's pid to
11083 i386_debug_reg_state.
11084 (i386_linux_new_fork): New function.
11085 (_initialize_i386_linux_nat): Install i386_linux_new_fork as
11086 linux_nat_new_fork hook, and i386_forget_process as
11087 linux_nat_forget_process hook.
11088 * i386-nat.c (i386_init_dregs): Delete.
11089 (i386_inferior_data, struct i386_inferior_data):
11090 Delete.
11091 (struct i386_process_info): New.
11092 (i386_process_list): New global.
11093 (i386_find_process_pid, i386_add_process, i386_process_info_get):
11094 New functions.
11095 (i386_inferior_data_get): Delete.
11096 (i386_process_info_get): New function.
11097 (i386_debug_reg_state): New parameter 'pid'. Reimplement.
11098 (i386_forget_process): New function.
11099 (i386_cleanup_dregs): Rewrite.
11100 (i386_update_inferior_debug_regs, i386_insert_watchpoint)
11101 (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
11102 (i386_stopped_data_address, i386_insert_hw_breakpoint)
11103 (i386_remove_hw_breakpoint): Adjust to pass the current process id
11104 to i386_debug_reg_state.
11105 (i386_use_watchpoints): Don't register inferior data.
11106 * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
11107 adjust comment.
11108 (i386_forget_process): Declare.
11109 * linux-fork.c (delete_fork): Call linux_nat_forget_process.
11110 * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
11111 New static globals.
11112 (linux_child_follow_fork): Don't call linux_nat_new_thread here.
11113 (add_initial_lwp): New, factored out from ...
11114 (add_lwp): ... this. Don't check the number of lwps before
11115 calling linux_nat_new_thread.
11116 (linux_nat_iterate_watchpoint_lwps): Delete.
11117 (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
11118 (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
11119 forks and vforks.
11120 (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
11121 initial lwp.
11122 (linux_nat_kill, linux_nat_mourn_inferior): Call
11123 linux_nat_forget_process.
11124 (linux_nat_set_new_fork, linux_nat_set_forget_process)
11125 (linux_nat_forget_process): New functions.
11126 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
11127 type.
11128 (linux_nat_iterate_watchpoint_lwps): Delete declaration.
11129 (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
11130 types.
11131 (linux_nat_set_new_fork, linux_nat_set_forget_process)
11132 (linux_nat_forget_process): New declarations.
11133
11134 * amd64fbsd-nat.c (super_mourn_inferior): New global.
11135 (amd64fbsd_mourn_inferior): New function.
11136 (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
11137 * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
11138
11139 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
11140
11141 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
11142 Adding _().
11143
11144 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
11145
11146 * aarch64-linux-nat.c (debug_reg_change_callback)
11147 (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
11148 %s and phex().
11149
11150 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
11151
11152 * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
11153 with LONGEST.
11154
11155 2013-02-13 Pedro Alves <palves@redhat.com>
11156 Hafiz Abid Qadeer <abidh@codesourcery.com>
11157
11158 * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
11159
11160 2013-02-12 Tom Tromey <tromey@redhat.com>
11161
11162 PR symtab/11464:
11163 * c-exp.y (lex_one_token): Initialize other fields of yylval on
11164 NAME return.
11165 (classify_inner_name): Remove 'first_name' argument, add
11166 'context'. Remove unused variable.
11167 (yylex): Explicitly maintain the context type. Exit loop earlier
11168 if NAME result is seen.
11169
11170 2013-02-12 Pedro Alves <palves@redhat.com>
11171
11172 * amd64-darwin-tdep.c: Add (C) after Copyright.
11173 * cli/cli-cmds.h: Ditto.
11174 * cli/cli-decode.c: Ditto.
11175 * cli/cli-decode.h: Ditto.
11176 * cli/cli-dump.c: Ditto.
11177 * cli/cli-dump.h: Ditto.
11178 * cli/cli-interp.c: Ditto.
11179 * cli/cli-logging.c: Ditto.
11180 * cli/cli-script.c: Ditto.
11181 * cli/cli-script.h: Ditto.
11182 * cli/cli-setshow.c: Ditto.
11183 * cli/cli-setshow.h: Ditto.
11184 * cli/cli-utils.c: Ditto.
11185 * cli/cli-utils.h: Ditto.
11186 * config/alpha/nm-osf3.h: Ditto.
11187 * config/djgpp/djconfig.sh: Ditto.
11188 * config/i386/nm-fbsd.h: Ditto.
11189 * config/i386/nm-i386gnu.h: Ditto.
11190 * config/nm-linux.h: Ditto.
11191 * config/nm-nto.h: Ditto.
11192 * config/rs6000/nm-rs6000.h: Ditto.
11193 * config/sparc/nm-sol2.h: Ditto.
11194 * darwin-nat-info.c: Ditto.
11195 * dfp.c: Ditto.
11196 * dfp.h: Ditto.
11197 * gdb-demangle.h: Ditto.
11198 * i386-darwin-nat.c: Ditto.
11199 * i386-darwin-tdep.c: Ditto.
11200 * linux-fork.h: Ditto.
11201 * m32c-tdep.c: Ditto.
11202 * microblaze-linux-tdep.c: Ditto.
11203 * microblaze-rom.c: Ditto.
11204 * microblaze-tdep.c: Ditto.
11205 * microblaze-tdep.h: Ditto.
11206 * mips-linux-tdep.h: Ditto.
11207 * ppc-ravenscar-thread.c: Ditto.
11208 * ppc-ravenscar-thread.h: Ditto.
11209 * prologue-value.c: Ditto.
11210 * prologue-value.h: Ditto.
11211 * ravenscar-thread.c: Ditto.
11212 * ravenscar-thread.h: Ditto.
11213 * sparc-ravenscar-thread.c: Ditto.
11214 * sparc-ravenscar-thread.h: Ditto.
11215 * tilegx-linux-tdep.c: Ditto.
11216 * unwind_stop_reasons.def: Ditto.
11217 * windows-nat.h: Ditto.
11218 * xtensa-linux-tdep.c: Ditto.
11219 * xtensa-xtregs.c: Ditto.
11220 * regformats/regdat.sh: Ditto.
11221 * regformats/regdef.h: Ditto.
11222
11223 2013-02-12 Pedro Alves <palves@redhat.com>
11224
11225 * break-catch-sig.c: Update copyright years.
11226
11227 2013-02-11 Siva Chandra Reddy <sivachandra@google.com>
11228
11229 Add support for a destructor for ui_out data and use it to
11230 provide a ui_out destructor.
11231 * ui-out.h: Declare the new ui_out destructor.
11232 (ui_out_impl): Add a field for data destructor in ui_out_impl.
11233 * ui-out.c (default_data_destroy): Add a default data destructor
11234 which does nothing.
11235 (default_ui_out_impl): Set the new data_destroy field to
11236 default_data_destroy
11237 (uo_data_destroy): Local function which invokes the data
11238 destructor if present.
11239 (clear_table): Local function which clears the table data of a
11240 ui_out object.
11241 (ui_out_destroy): Public function which frees a ui_out object.
11242 (ui_out_table_end): Use the new clear_table function.
11243 * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
11244 NULL.
11245 * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
11246 to NULL.
11247
11248 2013-02-11 Doug Evans <dje@google.com>
11249
11250 * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
11251 (printf_decfloat): New function. Broken out from ui_printf.
11252 Remove unnecessary code to shift the entire format string down.
11253 (printf_pointer): New function.
11254 (ui_printf): Code to print C strings, wide C strings, decfloats,
11255 and pointers moved to separate functions.
11256
11257 2013-02-11 Sergio Durigan Junior <sergiodj@redhat.com>
11258
11259 * valops.c (value_assign): Handling bitfield offset in
11260 `lval_internalvar_component' case.
11261
11262 2013-02-08 Doug Evans <dje@google.com>
11263
11264 * common/format.c (parse_format_string): Fix whitespace.
11265
11266 2013-02-08 Matthew Gretton-Dann <matthew.gretton-dann@linaro.org>
11267
11268 * stack.c (return_command): Work around uninitialized variable
11269 warning.
11270
11271 2013-02-08 Yufeng Zhang <yufeng.zhang@arm.com>
11272
11273 * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
11274 number of the registers from 36 to 34.
11275
11276 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
11277
11278 * NEWS: Mention new AArch64 native and target support.
11279
11280 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
11281
11282 * MAINTAINERS (Write After Approval): Add myself.
11283
11284 2013-02-08 Jim MacArthur <jim.macarthur@arm.com>
11285 Marcus Shawcroft <marcus.shawcroft@arm.com>
11286 Nigel Stephens <nigel.stephens@arm.com>
11287 Yufeng Zhang <yufeng.zhang@arm.com>
11288
11289 * aarch64-linux-nat.c: New file.
11290 * config/aarch64/linux.mh: New file.
11291 * configure.host: Add AArch64.
11292 * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
11293
11294 2013-02-07 Doug Evans <dje@google.com>
11295
11296 * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
11297 disassemble command.
11298
11299 2013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
11300
11301 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
11302 set_gdbarch_fetch_tls_load_module_address.
11303
11304 2013-02-06 David S. Miller <davem@davemloft.net>
11305
11306 * sparc-tdep.c (sparc32_return_value): Handle writing return value when
11307 using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
11308 * value.c (struct_return_convention): New function.
11309 (using_struct_return): Implement in terms of struct_return_convention.
11310 * value.h (struct_return_convention): Declare.
11311 * stack.c (return_command): Allow successful overriding of the return
11312 value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
11313
11314 2013-02-06 Tom Tromey <tromey@redhat.com>
11315
11316 * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
11317 outside of TRY_CATCH.
11318
11319 2013-02-06 Yao Qi <yao@codesourcery.com>
11320
11321 * mi/mi-interp.c: Include "tracepoint.h".
11322 (mi_tsv_modified): Declare.
11323 (mi_tsv_created, mi_tsv_deleted): Update declaration.
11324 (mi_interpreter_init): Call observer_attach_tsv_modified.
11325 (mi_tsv_modified): New.
11326 (mi_tsv_created, mi_tsv_deleted): Update.
11327 * tracepoint.c (trace_variable_command): Call
11328 observer_notify_tsv_modified if the initial value of tsv is
11329 changed.
11330 (delete_trace_state_variable): Call
11331 observer_notify_tsv_deleted earlier.
11332 (trace_variable_command): Caller update.
11333 (create_tsv_from_upload): Likewise.
11334 * observer.sh: Declare "struct trace_state_variable".
11335
11336 * NEWS: Mention the new MI notification "=tsv-modified".
11337
11338 2013-02-05 Doug Evans <dje@google.com>
11339
11340 * completer.c (location_completer): Fix typo in comment.
11341
11342 2013-02-05 Jan Kratochvil <jan.kratochvil@redhat.com>
11343
11344 * breakpoint.c (add_location_to_breakpoint): Insert the location with
11345 ADDRESS sorted.
11346
11347 2013-02-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
11348
11349 * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
11350 Refactor if statement to avoid trailing || operator.
11351
11352 2013-02-05 Andreas Tobler <andreast@fgznet.ch>
11353
11354 * NEWS: Add PowerPC FreeBSD as a new native configuration.
11355
11356 2013-02-04 Andreas Tobler <andreast@fgznet.ch>
11357
11358 * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
11359 * configure.host: Add powerpc*-*-freebsd* target.
11360 * configure.tgt: Add target info for powerpc*-*-freebsd*.
11361 * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
11362 * config/powerpc/fbsd.mh: New file.
11363
11364 2013-02-04 Sergio Durigan Junior <sergiodj@redhat.com>
11365 Denys Vlasenko <dvlasenk@redhat.com>
11366 Pedro Alves <palves@redhat.com>
11367
11368 * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
11369 (struct elf_internal_linux_prpsinfo): Forward declare.
11370 * gdbarch.h, gdbarch.c: Regenerate.
11371 * linux-tdep.c: Include `cli/cli-utils.h'.
11372 (linux_fill_prpsinfo): New function.
11373 (linux_make_corefile_notes): Use linux_fill_prpsinfo. If there's
11374 an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
11375 elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
11376 depending on gdbarch pointer bitness.
11377 * ppc-linux-tdep.c: Include elf-bfd.h.
11378 (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
11379 on 32-bit.
11380
11381 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
11382 Marcus Shawcroft <marcus.shawcroft@arm.com>
11383 Nigel Stephens <nigel.stephens@arm.com>
11384 Yufeng Zhang <yufeng.zhang@arm.com>
11385
11386 * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
11387
11388 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
11389 Marcus Shawcroft <marcus.shawcroft@arm.com>
11390 Nigel Stephens <nigel.stephens@arm.com>
11391 Yufeng Zhang <yufeng.zhang@arm.com>
11392
11393 * aarch64-newlib-tdep.c: New file.
11394 * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
11395 aarch64*-*-elf.
11396 * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
11397 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
11398 (ALLDEPFILES): Add aarch64-newlib-tdep.c.
11399 * osabi.c (gdb_osabi_names): Add "Newlib".
11400
11401 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
11402 Marcus Shawcroft <marcus.shawcroft@arm.com>
11403 Nigel Stephens <nigel.stephens@arm.com>
11404 Yufeng Zhang <yufeng.zhang@arm.com>
11405
11406 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
11407 (ALLDEPFILES): Add aarch64-linux-tdep.c.
11408 * aarch64-linux-tdep.c: New file.
11409 * aarch64-linux-tdep.h: New file.
11410 * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
11411 * configure.tgt: Add aarch64-none-linux-gnu.
11412
11413 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
11414 Marcus Shawcroft <marcus.shawcroft@arm.com>
11415 Nigel Stephens <nigel.stephens@arm.com>
11416 Yufeng Zhang <yufeng.zhang@arm.com>
11417
11418 * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
11419 (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
11420 (ALLDEPFILES): Add aarch64-tdep.c.
11421 * aarch64-tdep.c: New file.
11422 * aarch64-tdep.h: New file.
11423 * configure.tgt: Add AArch64.
11424 * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
11425 (aarch64-expedite): New definition.
11426 * features/aarch64-core.xml: New file.
11427 * features/aarch64-fpu.xml: New file.
11428 * features/aarch64-without-fpu.c: New file (generated).
11429 * features/aarch64-without-fpu.xml: New file.
11430 * features/aarch64.c: New file (generated).
11431 * features/aarch64.xml: New file.
11432 * regformats/aarch64-without-fpu.dat: New file (generated).
11433 * regformats/aarch64.dat: New file (generated).
11434
11435 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11436
11437 * contrib/expect-read1.c: New file.
11438 * contrib/expect-read1.sh: New file.
11439
11440 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11441
11442 * dwarf2read.c (file_file_name): New function with code from
11443 file_full_name.
11444 (file_full_name): Move most of the code to file_file_name.
11445 (macro_start_file): Rename variable full_name to file_name and use
11446 file_file_name for it. Add comp_dir parameter to new_macro_table.
11447 * macrocmd.c (show_pp_source_pos): New variable fullname. Replace any
11448 macro_source_file->filename access by macro_source_fullname call.
11449 * macroscope.c (_initialize_macroscope): Update the new_macro_table
11450 caller.
11451 * macrotab.c (struct macro_table): New field comp_dir.
11452 (macro_include): New variables link_fullname and source_fullname.
11453 Replace any macro_source_file->filename access by macro_source_fullname
11454 call.
11455 (macro_lookup_inclusion): Remove the partial filenames checking code.
11456 (check_for_redefinition): New variables source_fullname and
11457 found_key_fullname. Replace any macro_source_file->filename access by
11458 macro_source_fullname call.
11459 (macro_undef): New variables source_fullname and key_fullname. Replace
11460 any macro_source_file->filename access by macro_source_fullname call.
11461 (macro_lookup_definition): New variables retval and source_fullname.
11462 Replace any macro_source_file->filename access by macro_source_fullname
11463 call.
11464 (foreach_macro): New variable key_fullname. Replace any
11465 macro_source_file->filename access by macro_source_fullname call.
11466 (foreach_macro_in_scope): New variable datum_fullname. Replace any
11467 macro_source_file->filename access by macro_source_fullname call.
11468 (new_macro_table): Add parameter comp_dir. Initialize T with it.
11469 (macro_source_fullname): New function.
11470 * macrotab.h (struct macro_source_file): Extent the filename field
11471 comment.
11472 (new_macro_table): New parameter comp_dir, add a comment for it.
11473 (macro_source_fullname): new declaration.
11474
11475 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11476
11477 * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
11478 this_real_name to outer block. Use it also for
11479 compare_filenames_for_search.
11480 (dw2_expand_symtabs_matching): New variable this_real_name. Use it
11481 with dw2_get_real_path for file_matcher, considering also
11482 BASENAMES_MAY_DIFFER.
11483 (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
11484
11485 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11486
11487 * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
11488 to the file_matcher parameter. Pass 0 to it.
11489 (dwarf2_create_include_psymtab): Copy also DIRNAME.
11490 * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
11491 NULL psymtab_to_fullname result.
11492 (psymtab_to_fullname): Remove variable r. Never return NULL, assemble
11493 an expected filename instead.
11494 (expand_symtabs_matching_via_partial): Add basenames parameter to the
11495 file_matcher parameter. Call also psymtab_to_fullname, after newly
11496 considering BASENAMES_MAY_DIFFER.
11497 * source.c (rewrite_source_path): Remove static.
11498 * source.h (rewrite_source_path): New declaration.
11499 * symfile.h (struct quick_symbol_functions): Add basenames parameter to
11500 the expand_symtabs_matching field. Comment it.
11501 * symtab.c (file_matches): New function comment. Add parameter
11502 basenames, implement it.
11503 (search_symbols_file_matches): Add basenames parameter. Update the
11504 file_matches caller.
11505 (search_symbols): Match FILES also against symtab_to_fullname.
11506 Optimize it for BASENAMES_MAY_DIFFER.
11507
11508 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11509
11510 * source.c (print_source_lines_base): Print for TUI also "fullname".
11511 * tui/tui-data.c (init_content_element): Change tui_locator_element
11512 field to full_name.
11513 * tui/tui-data.h (struct tui_locator_element): Likewise.
11514 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
11515 tui_update_locator_filename calls to tui_update_locator_fullname.
11516 Replace symtab->filename refererence by symtab_to_fullname call.
11517 * tui/tui-out.c (tui_field_string): Check for "fullname" now.
11518 * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
11519 field to full_name. Replace symtab->filename refererence by
11520 symtab_to_fullname call.
11521 (tui_show_symtab_source): Rename parameter to fullname. Change
11522 tui_locator_element field to full_name.
11523 * tui/tui-stack.c: Include source.h.
11524 (tui_set_locator_filename): Rename the declaration to ...
11525 (tui_set_locator_fullname): ... here. Rename its parameter to
11526 fullname, updates its comment.
11527 (tui_set_locator_info): Rename its parameter to fullname.
11528 (tui_set_locator_filename): Rename the definition to ...
11529 (tui_set_locator_fullname): ... here. Rename its parameter to
11530 fullname, updates its comment. Change tui_locator_element field to
11531 full_name.
11532 (tui_set_locator_info): Rename its parameter to fullname.
11533 (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
11534 (tui_update_locator_filename): Rename to ...
11535 (tui_update_locator_fullname): ... here. Rename callee to
11536 tui_set_locator_fullname.
11537 (tui_show_frame_info): Replace symtab->filename refererence by
11538 symtab_to_fullname call.
11539 * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
11540 (tui_update_locator_fullname): ... here.
11541 * tui/tui-winsource.c (tui_display_main): Rename the callee to
11542 tui_update_locator_fullname. Replace symtab->filename refererence by
11543 symtab_to_fullname call.
11544 * tui/tui.c (tui_show_source): Rename its parameter to fullname.
11545 Rename the callee to tui_update_locator_fullname.
11546 * tui/tui.h (tui_show_source): Rename its parameter to fullname.
11547
11548 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11549
11550 * ada-lang.c (user_select_syms): Replace symtab->filename refererences
11551 by symtab_to_filename_for_display calls.
11552 * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
11553 (clear_command): New variable sal_fullname, initialize it. Replace
11554 compare_filenames_for_search by filename_cmp with sal_fullname.
11555 (say_where, update_static_tracepoint): Replace symtab->filename
11556 refererences by symtab_to_filename_for_display calls.
11557 * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
11558 Likewise.
11559 * dwarf2read.c: Include source.h.
11560 (fixup_go_packaging): Replace symtab->filename refererences by
11561 symtab_to_filename_for_display calls.
11562 * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
11563 Replace symtab->filename refererences by symtab_to_filename_for_display
11564 calls.
11565 (create_sals_line_offset, convert_linespec_to_sals): New variable
11566 fullname, initialize it, replace symtab->filename reference by the
11567 variable.
11568 * linux-fork.c: Include source.h.
11569 (info_checkpoints_command): Replace symtab->filename refererences by
11570 symtab_to_filename_for_display calls.
11571 * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
11572 by symtab_to_filename_for_display calls.
11573 * mdebugread.c: Include source.h.
11574 (psymtab_to_symtab_1): Replace symtab->filename refererences by
11575 symtab_to_filename_for_display calls.
11576 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
11577 (mi_cmd_file_list_exec_source_files): Likewise.
11578 * printcmd.c: Include source.h.
11579 (build_address_symbolic): Replace symtab->filename refererences by
11580 symtab_to_filename_for_display calls.
11581 * psymtab.c (partial_map_symtabs_matching_filename)
11582 (read_psymtabs_with_fullname): Call compare_filenames_for_search also
11583 with psymtab_to_fullname.
11584 * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
11585 by symtab_to_filename_for_display calls.
11586 (stpy_get_filename): New variable filename, initialize it, use instead
11587 of symtab->filename refererences.
11588 (salpy_str): Make variable filename const char *. Replace
11589 symtab->filename refererences by symtab_to_filename_for_display calls.
11590 * skip.c: Include source.h and filenames.h.
11591 (skip_file_command): Remove const from the symtab variable. Replace
11592 symtab->filename refererences by symtab_to_fullname call.
11593 (function_name_is_marked_for_skip): New variables searched_for_fullname
11594 and fullname. Use them to search also with symtab's fullname.
11595 * source.c (find_source_lines): Replace symtab->filename refererences
11596 by symtab_to_filename_for_display calls.
11597 (print_source_lines_base): New variable filename, use it instead of
11598 symtab->filename. Replace symtab->filename refererences by
11599 symtab_to_filename_for_display calls.
11600 (line_info, forward_search_command): Replace symtab->filename
11601 refererences by symtab_to_filename_for_display calls.
11602 (reverse_search_command): Replace symtab->filename refererences by
11603 symtab_to_filename_for_display calls. New variable filename for it.
11604 * stack.c (frame_info): Likewise.
11605 * symmisc.c: Include source.h.
11606 (dump_objfile, dump_symtab_1, maintenance_print_symbols)
11607 (maintenance_info_symtabs): Replace symtab->filename refererences by
11608 symtab_to_filename_for_display calls.
11609 * symtab.c (iterate_over_some_symtabs): Call
11610 compare_filenames_for_search also with symtab_to_fullname.
11611 (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
11612 symtab->filename refererences by symtab_to_filename_for_display calls.
11613 (find_line_symtab): Replace symtab->filename refererences by
11614 symtab_to_filename_for_display calls.
11615 (file_matches): Replace filename_cmp by compare_filenames_for_search.
11616 (print_symbol_info): Make the last parameter const char *. New
11617 variable s_filename. Use it in the function.
11618 (symtab_symbol_info): Make the last_filename variable const char *.
11619 Replace symtab->filename refererences by symtab_to_filename_for_display
11620 calls.
11621 (rbreak_command): New variable fullname. Use it. Replace
11622 symtab->filename refererence by symtab_to_filename_for_display call.
11623 * tracepoint.c (set_traceframe_context, trace_find_line_command)
11624 (print_one_static_tracepoint_marker): Replace symtab->filename
11625 refererences by symtab_to_filename_for_display calls.
11626 * tui/tui-source.c (tui_set_source_content): New variables filename and
11627 s_filename. Replace symtab->filename refererences by this variable.
11628 Replace other symtab->filename refererences by
11629 symtab_to_filename_for_display calls.
11630
11631 2013-02-03 Eldar Gaynetdinov <hal9000ed2k@gmail.com>
11632 Jan Kratochvil <jan.kratochvil@redhat.com>
11633
11634 Add a new variable that controls a way in which filenames are
11635 displayed.
11636 * NEWS (set filename-display): New entry.
11637 * source.c (filename_display_basename, filename_display_relative)
11638 (filename_display_absolute, filename_display_kind_names)
11639 (filename_display_string, show_filename_display_string)
11640 (symtab_to_filename_for_display): New.
11641 (_initialize_source): Added initialization of 'filename-display'
11642 variable.
11643 * source.h (symtab_to_filename_for_display): Added declaration.
11644 * stack.c (print_frame): Added new variable and calling of a new
11645 function and condition with this variable. Changed third argument of
11646 calling of a function.
11647
11648 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11649
11650 * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
11651 Rename field reference filename to fullname.
11652 * tui/tui-data.h (struct tui_source_info): Rename field filename to
11653 fullname. New comment for it.
11654 * tui/tui-source.c (tui_set_source_content): Rename field reference
11655 filename to fullname. Initialize field by symtab_to_fullname now.
11656 * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
11657 reference filename to fullname. Use symtab_to_fullname during
11658 comparison.
11659
11660 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11661
11662 Code cleanup.
11663 * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
11664 (dw2_expand_symtabs_with_fullname): ... here. Rename parameter
11665 filename to fullname. Rename variable this_name to this_fullname.
11666 Lowercase FILENAME_CMP call.
11667 (dw2_find_symbol_file): New comment for the returned string.
11668 (dwarf2_gdb_index_functions): Rename the function to
11669 dw2_expand_symtabs_with_fullname.
11670 * psymtab.c (read_psymtabs_with_filename): Rename to ...
11671 (read_psymtabs_with_fullname): ... here. Rename parameter filename to
11672 fullname.
11673 (psym_functions): Rename the function to read_psymtabs_with_fullname.
11674 * symfile.h (struct quick_symbol_functions): Rename field
11675 expand_symtabs_with_filename to expand_symtabs_with_fullname and its
11676 parameter filename to fullname. Document returned string meaning for
11677 find_symbol_file.
11678 * symtab.c (find_line_symtab): Rename the called function to
11679 expand_symtabs_with_fullname.
11680
11681 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11682
11683 Code cleanup.
11684 * breakpoint.c (clear_command): Remove variable is_abs, unify the
11685 call of filename_cmp with compare_filenames_for_search.
11686 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
11687 is_abs, unify the call of FILENAME_CMP with
11688 compare_filenames_for_search. New gdb_asserts for real_path and name.
11689 Unify the call of compare_filenames_for_search with FILENAME_CMP.
11690 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
11691 * symfile.h (struct quick_symbol_functions): Extend the comment for
11692 map_symtabs_matching_filename.
11693 * symtab.c (compare_filenames_for_search): Remove the function comment
11694 relative path requirement. Handle absolute filenames, with a comment.
11695 (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
11696 FILENAME_CMP with compare_filenames_for_search. New gdb_asserts for
11697 real_path and name. Unify the call of compare_filenames_for_search
11698 with FILENAME_CMP.
11699 (iterate_over_symtabs): New gdb_assert on REAL_PATH.
11700
11701 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11702
11703 Code cleanup.
11704 * breakpoint.c (print_breakpoint_location): Replace bp_location field
11705 source_file references by symtab field references. Remove variables
11706 sal and fullname.
11707 (momentary_breakpoint_from_master, add_location_to_breakpoint):
11708 (clear_command, say_where): Replace bp_location field source_file
11709 references by symtab field references.
11710 (bp_location_dtor): Remove the source_file reference.
11711 (update_static_tracepoint): Replace bp_location field source_file
11712 references by symtab field references.
11713 (breakpoint_free_objfile): New function.
11714 * breakpoint.h (struct bp_location): Extend the comment for line_number.
11715 Replace the field source_file by field symtab, extend its comment.
11716 (breakpoint_free_objfile): New declaration.
11717 * objfiles.c (free_objfile): Call breakpoint_free_objfile.
11718 * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
11719 field source_file references by symtab field references.
11720
11721 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11722
11723 Replace xfullpath calls by gdb_realpath calls.
11724 * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
11725 function comment.
11726 * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
11727 Remove it from the iterate_over_some_symtabs call.
11728 (dw2_map_symtabs_matching_filename): Remove parameter full_path.
11729 Remove it from the dw2_map_expand_apply calls, remove a block handling
11730 it.
11731 * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
11732 Remove it from the iterate_over_some_symtabs call.
11733 (partial_map_symtabs_matching_filename): Remove parameter full_path.
11734 Remove it from the partial_map_expand_apply calls, remove a block
11735 handling it. Drop gdb_realpath call and cleanups from the real_path
11736 handling.
11737 * source.c (openp): Drop the comment part about xfullpath. Replace
11738 xfullpath calls by gdb_realpath calls.
11739 (find_and_open_source): Replace xfullpath call by gdb_realpath call.
11740 * symfile.h (struct quick_symbol_functions): Remove parameter full_path
11741 from method map_symtabs_matching_filename and its comment.
11742 * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
11743 gdb_realpath call.
11744 * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
11745 remove it also from the function comment, remove a block handling it.
11746 Drop gdb_realpath call and cleanups from the real_path handling.
11747 (iterate_over_symtabs): Drop variable full_path and its use.
11748 * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
11749 * utils.c (xfullpath): Remove.
11750 * utils.h (xfullpath): Remove.
11751
11752 2013-02-01 Andreas Tobler <andreast@fgznet.ch>
11753
11754 * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
11755 (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
11756 (ALLDEPFILES): Add ppc64-tdep.c.
11757 * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
11758 ppc64-tdep.o to gdb_target_obs.
11759 * ppc64-tdep.h: New file.
11760 * ppc64-tdep.c: New file.
11761 (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
11762 ppc-linux-tdep.c to here.
11763 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
11764 (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
11765 (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
11766 (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
11767 from ppc-linux-tdep.c to here.
11768 (ppc64_convert_from_func_ptr_addr): Rename from
11769 ppc64_linux_convert_from_func_ptr_addr to
11770 ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
11771 here.
11772 * rs6000-tdep.c:
11773 (read_insn): Move from ppc-linux-tdep.c to here.
11774 (insns_match_pattern, insn_d_field, insn_ds_field): Move
11775 from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
11776 * ppc-linux-tdep.c: Include ppc64-tdep.h.
11777 Removed above functions.
11778 (ppc_linux_init_abi): Adjust.
11779
11780 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
11781
11782 * ada-valprint.c (ada_print_floating): Remove unused 'len'.
11783
11784 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
11785
11786 * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
11787
11788 2013-02-01 Pedro Alves <palves@redhat.com>
11789
11790 * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
11791 * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
11792
11793 2013-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
11794
11795 * elfread.c (elf_symfile_read): Limit separate debug info additions to
11796 files with no separate debug info.
11797 * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
11798 * symfile.c (read_symbols): Call find_separate_debug_file_in_section
11799 only for files with no separate debug info.
11800
11801 2013-01-31 Tom Tromey <tromey@redhat.com>
11802
11803 * jit.c (jit_program_space_data): Rename from jit_inferior_data;
11804 change type.
11805 (struct jit_program_space_data): Rename from jit_inferior_data.
11806 Update comments.
11807 (get_jit_program_space_data): Rename from get_jit_inferior_data.
11808 Change return type. Attach data to program space.
11809 (jit_program_space_data_cleanup): Rename from
11810 jit_inferior_data_cleanup; change argument type.
11811 (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
11812 change type.
11813 (jit_register_code): Update.
11814 (jit_update_inferior_cache): Remove.
11815 (jit_breakpoint_deleted): Get jit data from the location's program
11816 space.
11817 (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
11818 'ps_data', change type.
11819 (jit_inferior_init, jit_breakpoint_re_set_internal)
11820 (jit_event_handler): Update.
11821 (free_objfile_data): Get data from objfile's program space.
11822 (_initialize_jit): Update.
11823
11824 2013-01-31 Tom Tromey <tromey@redhat.com>
11825
11826 PR gdb/13987:
11827 * jit.c (struct jit_inferior_data) <cached_code_address,
11828 jit_breakpoint>: New fields.
11829 (jit_breakpoint_re_set_internal): Fix logging. Only create
11830 breakpoint if cached address has changed.
11831 (jit_update_inferior_cache, jit_breakpoint_deleted): New
11832 functions.
11833 (_initialize_jit): Register breakpoint deleted observer.
11834
11835 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
11836
11837 * infrun.c (handle_syscall_event): Remove unused gdbarch.
11838 (save_infcall_suspend_state): Ifdef out unused inf.
11839 (restore_infcall_suspend_state): Ifdef out unused inf.
11840 * jit.c (jit_register_code): Remove unused i, b, inf_data.
11841 (jit_frame_sniffer): Remove unused inf_data.
11842
11843 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
11844
11845 * c-exp.y (classify_inner_name): Remove unused type.
11846 * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
11847 in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
11848 need_escape.
11849 (c_get_string): Remove unused kind.
11850 * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
11851
11852 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
11853
11854 * charset.c (intermediate_encoding): Remove unused i.
11855 * completer.c (signal_completer): Remove unused i.
11856 * continuations.c (discard_my_continuations_1): Remove unused
11857 continuation_ptr.
11858 * corelow.c (core_close): Remove unuseD name.
11859 (get_core_siginfo): Remove unused pid.
11860 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
11861 i, cps.
11862 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
11863 (loclist_describe_location): Remove unused first.
11864 * event-top.c (command_line_handler): Remove unused got_eof.
11865 * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
11866 (resize_section_table): Remove unused old_value.
11867 * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
11868 * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
11869 * i386-tdep.c (i386_process_record): Remove unused rex.
11870 * infcmd.c (get_return_value): Remove unused uiout.
11871 * jv-lang.c (type_from_class): Remove unused is_array.
11872 * jv-valprint.c (java_val_print): Remove unused i.
11873 * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
11874 * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
11875 * m2-typeprint.c (m2_print_type): Remove unused code.
11876 * macroexp.c (get_character_constant): Remove unused body_start.
11877 (macro_stringify): Remove unused result.
11878 * objc-lang.c (find_methods): Remove unused gdbarch.
11879 * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
11880 * regcache.c (regcache_cooked_read): Remove unused gdbarch.
11881 * stack.c (print_frame_args): Remove unused summary.
11882 * thread.c (thread_apply_command): Remove unused p.
11883 * valarith.c (value_x_unop): Remove unused mangle_ptr.
11884 * valops.c (search_struct_method): Remove unused skip.
11885 * valprint.c (generic_val_print): Remove unused byte_order.
11886 * varobj.c (varobj_update): Remove unused changed.
11887 * cli/cli-cmds.c (complete_command): Remove unused next_item.
11888 (alias_command): Remove unused c.
11889 * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
11890 * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
11891 format.
11892 (mi_cmd_data_write_memory): Remove unused word_format.
11893 (mi_cmd_data_write_memory_bytes): Remove unused r.
11894 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
11895 p_start, p_end.
11896 * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
11897 * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
11898 line_width.
11899
11900 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
11901
11902 * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
11903 * symtab.c (iterate_over_symtabs): Remove unused s.
11904 (find_pc_sect_symtab): Remove unused pspAce.
11905 (find_pc_sect_line): Remove unused alt_symtab.
11906 (find_pcs_for_symtab_line): Remove unused ix, previous_function.
11907 (completion_list_add_name): Remove unused newsize.
11908
11909 2013-01-31 Tom Tromey <tromey@redhat.com>
11910
11911 PR c++/14998:
11912 * dwarf2read.c (read_tag_ptr_to_member_type): Handle
11913 TYPE_CODE_FUNC.
11914
11915 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
11916
11917 * target.c (target_read_string): Remove unused origlen.
11918
11919 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
11920
11921 * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
11922 * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
11923 * ax-general.c (ax_print): Remove unused is_float.
11924 * blockframe.c (block_innermost_frame): Remove unused start, end.
11925 * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
11926
11927 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
11928
11929 * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
11930 (svr4_read_so_list): Remove unused lmo.
11931 * solib-target.c (solib_target_relocate_section_addresses): Remove
11932 unused flags.
11933
11934 2013-01-30 Tom Tromey <tromey@redhat.com>
11935
11936 * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
11937
11938 2013-01-30 Tom Tromey <tromey@redhat.com>
11939
11940 * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
11941 * utils.c (gnu_debuglink_crc32): Remove.
11942 * utils.h (gnu_debuglink_crc32): Don't declare.
11943
11944 2013-01-30 Tom Tromey <tromey@redhat.com>
11945
11946 * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
11947 (read_structure_type, read_enumeration_type): Remove cast.
11948
11949 2013-01-30 Tom Tromey <tromey@redhat.com>
11950
11951 * dwarf2read.c (read_namespace_type): Remove cast.
11952 (read_typedef): Likewise.
11953
11954 2013-01-29 Tom Tromey <tromey@redhat.com>
11955
11956 * dwarf2read.c (free_dwo_file): Remove assert.
11957
11958 2013-01-29 Tom Tromey <tromey@redhat.com>
11959
11960 * value.c (deprecated_set_value_modifiable): Remove.
11961 * value.h (deprecated_set_value_modifiable): Remove.
11962
11963 2013-01-28 Doug Evans <dje@google.com>
11964
11965 * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
11966 to addresses from dwo files.
11967
11968 2013-01-25 Siva Chandra Reddy <sivachandra@google.com>
11969
11970 * valops.c (find_overload_match): Remove unused argument 'lax'.
11971 * value.h: Remove unused argument 'lax' from the declaration of
11972 find_overload_match.
11973 * eval.c (value_subexp_standard): Do not pass a 'lax' argument
11974 to find_overload_match.
11975 * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
11976 argument to find_overload_match.
11977
11978 2013-01-25 Tom Tromey <tromey@redhat.com>
11979
11980 * dwarf2read.c (processing_has_namespace_info): Remove.
11981 (struct dwarf2_cu) <processing_has_namespace_info>: New field.
11982 (process_die, read_func_scope, dwarf2_start_symtab)
11983 (new_symbol_full): Update.
11984
11985 2013-01-25 Tom Tromey <tromey@redhat.com>
11986
11987 * cp-namespace.c (cp_set_block_scope): Remove.
11988 * cp-support.h (cp_set_block_scope): Remove.
11989 * dbxread.c: Include block.h.
11990 (cp_set_block_scope): New function.
11991 (process_one_symbol): Update.
11992 * dwarf2read.c (read_func_scope): Use block_set_scope.
11993
11994 2013-01-25 Pedro Alves <palves@redhat.com>
11995
11996 * remote.c (add_current_inferior_and_thread): Tweak comment.
11997
11998 2013-01-25 Tom Tromey <tromey@redhat.com>
11999
12000 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
12001 (cp_add_using_directive): Add 'copy_names' argument.
12002 * cp-support.h (cp_add_using_directive): Update.
12003 (struct using_direct) <import_src, import_dest, alias,
12004 declaration>: Now const.
12005 * dwarf2read.c (read_import_statement): Use obconcat.
12006 Don't copy names passed to cp_add_using_directive.
12007
12008 2013-01-25 Tom Tromey <tromey@redhat.com>
12009
12010 * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
12011
12012 2013-01-25 Pedro Alves <palves@redhat.com>
12013
12014 * remote.c (stop_reply_extract_thread): New.
12015 (add_current_inferior_and_thread): New parameter 'wait_status'.
12016 Handle it.
12017 (remote_start_remote): Pass wait status to
12018 add_current_inferior_and_thread.
12019 (extended_remote_run): Update comment.
12020 (extended_remote_create_inferior_1): Pass wait status to
12021 add_current_inferior_and_thread.
12022
12023 2013-01-25 Andrew Burgess <aburgess@broadcom.com>
12024 Ulrich Weigand <uweigand@de.ibm.com>
12025
12026 * valarith.c (value_vector_widen): New function for replicating a
12027 scalar into a vector.
12028 (value_binop): Use value_vector_widen to widen scalar to vector
12029 rather than casting, this better matches gcc C behaviour.
12030 * valops.c (value_casst): Update logic for casting between vector
12031 types, and for casting from scalar to vector, try to match gcc C
12032 behaviour.
12033 * value.h (value_vector_widen): Declare.
12034 * opencl-lang.c (opencl_value_cast): New opencl specific casting
12035 function, handle special case for casting scalar to vector.
12036 (opencl_relop): Use opencl_value_cast.
12037 (evaluate_subexp_opencl): Use opencl_value_cast instead of
12038 value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
12039 in order to use opencl_value_cast.
12040
12041 2013-01-25 Yao Qi <yao@codesourcery.com>
12042
12043 * event-loop.c: Include "queue.h".
12044 (gdb_event_p): New typedef.
12045 (DECLARE_QUEUE_P): Use.
12046 (DEFINE_QUEUE_P): Use.
12047 (async_queue_event): Remove.
12048 (gdb_event_xfree): New.
12049 (initialize_event_loop): New.
12050 (process_event): Use QUEUE macros.
12051 (event_queue): Remove.
12052 (gdb_wait_for_event): Caller update.
12053 (check_async_event_handlers): Likewise.
12054 (poll_timers): Likewise.
12055 * event-loop.h (initialize_event_loop): Declare.
12056 * event-loop.c (gdb_event_xfree): New.
12057 * top.c (gdb_init): Call initialize_event_loop.
12058
12059 2013-01-25 Yao Qi <yao@codesourcery.com>
12060
12061 * event-loop.c (async_queue_event): Remove one parameter
12062 'position'. Remove code handling 'position' == TAIL.
12063 (gdb_wait_for_event): Caller update.
12064 (check_async_event_handlers): Caller update.
12065 (poll_timers): Caller update.
12066 * event-loop.h (enum queue_position): Remove.
12067
12068 2013-01-25 Maxim Kuvyrkov <maxim@kugelworks.com>
12069
12070 * MAINTAINERS: Update my email.
12071
12072 2013-01-25 Yao Qi <yao@codesourcery.com>
12073
12074 * main.c (print_gdb_help): Remove "--epoch" from the help
12075 message.
12076
12077 2013-01-24 Ulrich Weigand  <uweigand@de.ibm.com>
12078
12079 * symtab.c (skip_prologue_using_sal): Consider a file
12080 change the same as an increased line number
12081
12082 2013-01-24 Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
12083
12084 * MAINTAINERS (Write After Approval): Add myself to the list.
12085
12086 2013-01-24 Tom Tromey <tromey@redhat.com>
12087
12088 * ada-lang.h (ada_decode_symbol): Make return type const.
12089 * ada-lang.c (ada_decode_symbol): Likewise.
12090
12091 2013-01-23 Doug Evans <dje@google.com>
12092
12093 * linespec.c (find_linespec_symbols): Make static.
12094
12095 2013-01-23 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
12096
12097 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
12098 type on float conversion for complex type.
12099
12100 2013-01-23 Siva Chandra Reddy <sivachandra@google.com>
12101
12102 Add a new class gdb.Architecture which exposes GDB's
12103 internal representation of architecture via GDB Python API.
12104 * Makefile.in: Add entries corresponding to the new file
12105 python/py-arch.c.
12106 * NEWS (Python Scripting): Add entries for the new class
12107 gdb.Architecture and the new method gdb.Frame.architecture.
12108 * python/py-arch.c: Implement gdb.Architecture class.
12109 * python/py-frame.c (frapy_arch): Implement the method
12110 gdb.Frame.architecture().
12111 (frame_object_methods): Add 'architecture' to the method table.
12112 * python/python-internal.h: Add declarations of new utility
12113 functions.
12114 * python/python.c (_initialize_python): Initialize
12115 gdb.Architecture class.
12116
12117 2013-01-23 Doug Evans <dje@google.com>
12118
12119 Work around binutils/15021.
12120 * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
12121 type_unit_group out of union s. All uses updated.
12122 (read_index_from_section): Watch for index version 8.
12123 (follow_die_sig): If using .gdb_index version <= 7, record the TU as
12124 an imported symtab.
12125 (write_psymtabs_to_index): Increment version number to 8.
12126
12127 2013-01-22 Pedro Alves <palves@redhat.com>
12128
12129 * annotate.c (breakpoint_changed): Skip if breakpoint is not
12130 user-visible.
12131
12132 2013-01-22 Pedro Alves <palves@redhat.com>
12133
12134 * annotate.c (annotate_breakpoints_changed): Rename to ...
12135 (annotate_breakpoints_invalid): ... this. Make static.
12136 (breakpoint_changed): Adjust.
12137 (_initialize_annotate): Always install the observers. Install a
12138 "breakpoint_created" observer.
12139 * annotate.h (annotate_breakpoints_changed): Delete declaration.
12140 * breakpoint.c (set_breakpoint_condition)
12141 (breakpoint_set_commands, do_map_commands_command)
12142 (init_raw_breakpoint, clear_command, set_ignore_count)
12143 (enable_breakpoint_disp): No longer call
12144 annotate_breakpoints_changed.
12145
12146 2013-01-22 Pedro Alves <palves@redhat.com>
12147
12148 * annotate.c: Include "inferior.h".
12149 (frames_invalid_emitted)
12150 (breakpoints_invalid_emitted): New globals.
12151 (async_background_execution_p): New function.
12152 (annotate_breakpoints_changed, annotate_frames_invalid): Skip
12153 emitting the annotation if it has already been emitted.
12154 (annotate_display_prompt): New function.
12155 * annotate.h (annotate_display_prompt): New declaration.
12156 * event-top.c: Include annotate.h.
12157 (display_gdb_prompt): Call annotate_display_prompt.
12158
12159 2013-01-22 Pedro Alves <palves@redhat.com>
12160
12161 * annotate.c (ignore_count_changed): Delete.
12162 (annotate_breakpoints_changed): Don't clear ignore_count_changed.
12163 (annotate_ignore_count_change): Delete.
12164 (annotate_stopped): Don't emit a delayed breakpoints-changed
12165 annotation.
12166 * annotate.h (annotate_ignore_count_change): Delete.
12167 * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
12168 annotate_ignore_count_change.
12169
12170 2013-01-22 Tom Tromey <tromey@redhat.com>
12171
12172 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
12173 require_rvalue for a register location.
12174
12175 2013-01-21 Marc Khouzam <marc.khouzam@ericsson.com>
12176
12177 * breakpoint.c (print_one_breakpoint_location): Add MI
12178 field 'thread-groups' when printing a breakpoint.
12179 (output_thread_groups): New function.
12180
12181 2013-01-21 Siva Chandra Reddy <sivachandra@google.com>
12182
12183 * python/lib/gdb/commands/explore.py
12184 (CompoundExplorer.explore_expr): Correct the name of a method
12185 being invoked.
12186 (ExploreTypeCommand.invoke): Add a missing 'return'.
12187
12188 2013-01-21 Tom Tromey <tromey@redhat.com>
12189
12190 * gdb_obstack.h (obconcat): Move declaration here, from...
12191 * symfile.h (obconcat): ... here.
12192 * gdb_obstack.c: New file.
12193 (obconcat): Move from...
12194 * symfile.c (obconcat): ... here.
12195 * Makefile.in (SFILES): Add gdb_obstack.c.
12196 (COMMON_OBS): Add gdb_obstack.o.
12197
12198 2013-01-21 Tom Tromey <tromey@redhat.com>
12199
12200 * symfile.h (obsavestring): Don't declare.
12201 * symfile.c (obsavestring): Remove.
12202 * ada-exp.y: Use obstack_copy0, not obsavestring.
12203 * ada-lang.c: Use obstack_copy0, not obsavestring.
12204 * coffread.c: Use obstack_copy0, not obsavestring.
12205 * cp-namespace.c: Use obstack_copy0, not obsavestring.
12206 * dbxread.c: Use obstack_copy0, not obsavestring.
12207 * dwarf2read.c: Use obstack_copy0, not obsavestring.
12208 * jit.c: Use obstack_copy0, not obsavestring.
12209 * mdebugread.c: Use obstack_copy0, not obsavestring.
12210 * psymtab.c: Use obstack_copy0, not obsavestring.
12211 * stabsread.c: Use obstack_copy0, not obsavestring.
12212 * xcoffread.c: Use obstack_copy0, not obsavestring.
12213
12214 2013-01-21 Tom Tromey <tromey@redhat.com>
12215
12216 * dwarf2read.c (fixup_go_packaging): Save package name
12217 on objfile obstack.
12218 * gdbtypes.c (init_type): Don't copy name.
12219
12220 2013-01-21 Tom Tromey <tromey@redhat.com>
12221
12222 * dwarf2read.c (struct partial_die_info) <name, scope>: Now
12223 const.
12224 (struct attribute) <u.str>: Now const.
12225 (struct fnfieldlist) <name>: Now const.
12226 (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
12227 (partial_die_parent_scope): Make return type const.
12228 (partial_die_full_name, add_partial_symbol): Update.
12229 (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
12230 'name' const.
12231 (find_file_and_directory): Make 'name' and 'comp_dir' const.
12232 (read_file_scope, read_func_scope, dwarf2_add_field)
12233 (dwarf2_add_member_fn, read_structure_type)
12234 (process_enumeration_scope, read_array_type, read_module_type)
12235 (read_base_type, read_subrange_type): Update.
12236 (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
12237 (new_symbol_full, guess_full_die_structure_name): Update.
12238 (dwarf2_canonicalize_name): Return const type. Make 'name' const.
12239 (dwarf2_name): Return const type.
12240 (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
12241 const.
12242
12243 2013-01-21 Tom Tromey <tromey@redhat.com>
12244
12245 * gdbtypes.c (init_type): Make 'name' const.
12246 * gdbtypes.h (init_type): Update.
12247
12248 2013-01-21 Tom Tromey <tromey@redhat.com>
12249
12250 * buildsym.c (patch_subfile_names): Use set_last_source_file.
12251 (start_symtab): Make 'name' and 'dirname' const. Use
12252 set_last_source_file.
12253 (restart_symtab, reset_symtab_globals): Use set_last_source_file.
12254 (last_source_file): Define. Now static.
12255 (set_last_source_file, get_last_source_file): New functions.
12256 * buildsym.h (last_source_file): Don't declare.
12257 (start_symtab): Update.
12258 (set_last_source_file, get_last_source_file): Declare.
12259 * coffread.c (complete_symtab): Use set_last_source_file.
12260 (coff_end_symtab): Likewise.
12261 (coff_symtab_read): Use set_last_source_file, get_last_source_file.
12262 * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
12263 set_last_source_file.
12264 (process_one_symbol): Use get_last_source_file.
12265 * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
12266 (psymtab_to_symtab_1): Use get_last_source_file.
12267 * xcoffread.c (process_linenos): Use get_last_source_file.
12268 (complete_symtab): Use set_last_source_file.
12269 (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
12270 (scan_xcoff_symtab): Use set_last_source_file.
12271
12272 2013-01-21 Tom Tromey <tromey@redhat.com>
12273
12274 * symtab.c (struct demangled_name_entry) <mangled>: Now const.
12275 (symbol_set_names): Remove casts. Handle field const-ness.
12276
12277 2013-01-21 Tom Tromey <tromey@redhat.com>
12278
12279 * dwarf2read.c (new_symbol_full): Remove cast.
12280 * symtab.c (symbol_set_demangled_name): Make 'name' const.
12281 * symtab.h (symbol_set_demangled_name): Update.
12282
12283 2013-01-21 Tom Tromey <tromey@redhat.com>
12284
12285 * main.c (captured_main): Call bfd_init.
12286
12287 2013-01-21 Tom Tromey <tromey@redhat.com>
12288
12289 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
12290 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
12291 * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
12292 * NEWS: Update.
12293
12294 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
12295
12296 * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
12297
12298 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
12299
12300 Fix gdb.fortran/common-block.exp crash in PIE mode.
12301 * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
12302 LOC_COMMON_BLOCK.
12303 * f-valprint.c (info_common_command_for_block): Expect
12304 LOC_COMMON_BLOCK in gdb_assert.
12305 * symtab.h (struct general_symbol_info): Update comment for the
12306 common_block member.
12307 (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
12308 (enum address_class): New member LOC_COMMON_BLOCK.
12309
12310 2013-01-18 David Blaikie <dblaikie@gmail.com>
12311
12312 * MAINTAINERS (Write After Approval): Add "David Blaikie".
12313
12314 2013-01-18 Tom Tromey <tromey@redhat.com>
12315
12316 PR c++/14999:
12317 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
12318 Call require_rvalue.
12319
12320 2013-01-18 Yao Qi <yao@codesourcery.com>
12321
12322 * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
12323 (dbx_read_symtab): New declaration.
12324 (dbx_psymtab_to_symtab): Delete.
12325 (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
12326 Rename parameter PST to SELF. Exchanged two parameters.
12327 (start_psymtab): Caller update.
12328 * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
12329 (dwarf2_read_symtab): New declaration.
12330 (dwarf2_psymtab_to_symtab): Delete.
12331 (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
12332 Rename parameter PST to SELF. Exchanged two parameters.
12333 (create_partial_symtab): Caller update.
12334 * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
12335 (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
12336 Rename parameter PST to SELF. Exchanged two parameters.
12337 (parse_partial_symbols, new_psymtab): Caller update.
12338 * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
12339 two parameters.
12340 * psymtab.c (psymtab_to_symtab): Caller update.
12341 * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
12342 (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
12343 Rename parameter PST to SELF. Exchanged two parameters.
12344 (xcoff_start_psymtab): Caller update.
12345
12346 2013-01-18 Yao Qi <yao@codesourcery.com>
12347
12348 * infrun.c (proceed): Rename local variable 'oneproc' to
12349 'force_step'.
12350
12351 2013-01-17 Doug Evans <dje@google.com>
12352
12353 * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
12354 (dw2_build_type_unit_groups): Delete. All uses updated.
12355
12356 * symtab.h (struct symbol_search): Add comment.
12357
12358 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
12359
12360 * symtab.c (compare_filenames_for_search): New comment for
12361 HAS_DRIVE_SPEC.
12362
12363 2013-01-17 Tom Tromey <tromey@redhat.com>
12364
12365 * cp-abi.c (cp_abi_completer): Fix typo in assignment.
12366
12367 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
12368
12369 * symtab.c (iterate_over_some_symtabs): New variable cleanups,
12370 initialize it by existing make_cleanup. Call new do_cleanups.
12371
12372 2013-01-17 Tom Tromey <tromey@redhat.com>
12373
12374 * cp-abi.c (cp_abi_completer): New function.
12375 (_initialize_cp_abi): Set completer for "set cp-abi".
12376
12377 2013-01-17 Tom Tromey <tromey@redhat.com>
12378
12379 * mem-break.c: Remove obsolete comment.
12380 * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
12381
12382 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
12383
12384 * jit.c (jit_reader_load_command): Interpret the jit reader name
12385 as an absolute path if it begins with a forward slash.
12386
12387 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
12388
12389 PR gdb/14550
12390
12391 * jit.c (finalize_symtab): Ensure that only the global block has a
12392 NULL superblock.
12393
12394 2013-01-17 Pedro Alves <palves@redhat.com>
12395
12396 * acinclude.m4: Include ../config/plugins.m4,
12397 ../config/largefile.m4 and ../config/lead-dot.m4. Add comments.
12398 * Makefile.in (aclocal_m4_deps): Update.
12399 * aclocal.m4: Renegerate.
12400
12401 2013-01-16 Doug Evans <dje@google.com>
12402
12403 * contrib/cc-with-tweaks.sh: Add references to Fission docs.
12404
12405 2013-01-16 Pedro Alves <palves@redhat.com>
12406 Tom Tromey <tromey@redhat.com>
12407
12408 PR cli/7221:
12409 * NEWS: Add "catch signal".
12410 * breakpoint.c (base_breakpoint_ops): No longer static.
12411 (bpstat_explains_signal): New function.
12412 (init_catchpoint): No longer static.
12413 (base_breakpoint_explains_signal): New function.
12414 (base_breakpoint_ops): Initialize new field.
12415 * breakpoint.h (enum bpstat_signal_value): New.
12416 (struct breakpoint_ops) <explains_signal>: New field.
12417 (bpstat_explains_signal): Remove macro, declare as function.
12418 (base_breakpoint_ops, init_catchpoint): Declare.
12419 * break-catch-sig.c: New file.
12420 * inferior.h (signal_catch_update): Declare.
12421 * infrun.c (signal_catch): New global.
12422 (handle_syscall_event): Update for change to
12423 bpstat_explains_signal.
12424 (handle_inferior_event): Likewise. Always handle random signals
12425 via bpstats.
12426 (signal_cache_update): Check signal_catch.
12427 (signal_catch_update): New function.
12428 (_initialize_infrun): Initialize signal_catch.
12429 * Makefile.in (SFILES): Add break-catch-sig.c.
12430 (COMMON_OBS): Add break-catch-sig.o.
12431
12432 2013-01-16 Tom Tromey <tromey@redhat.com>
12433
12434 * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
12435 (print_one_catch_solib, print_one_catch_syscall)
12436 (print_one_catch_exec, print_one_exception_catchpoint): Emit
12437 "catch-type".
12438
12439 2013-01-16 Yao Qi <yao@codesourcery.com>
12440
12441 * printcmd.c (current_display_number): Make it static.
12442
12443 2013-01-16 Yao Qi <yao@codesourcery.com>
12444
12445 * infcmd.c (step_once): Don't check '!single_inst' as it was
12446 checked before.
12447
12448 2013-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
12449
12450 * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
12451
12452 2013-01-14 Tom Tromey <tromey@redhat.com>
12453
12454 * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
12455 set command.
12456 * command.h (add_setshow_string_noescape_cmd): Update.
12457 * corefile.c (set_gnutarget_command): Remove trailing whitespace.
12458 (complete_set_gnutarget): New function.
12459 (_initialize_core): Set the "set gnutarget" completer.
12460
12461 2013-01-14 Tom Tromey <tromey@redhat.com>
12462
12463 PR symtab/14442:
12464 * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
12465 (c_type_print_modifier): Likewise.
12466 * dwarf2read.c (read_tag_restrict_type): New function.
12467 (read_type_die_1): Handle DW_TAG_restrict_type.
12468 * gdbtypes.c (make_restrict_type): New function.
12469 (recursive_dump_type): Handle TYPE_RESTRICT.
12470 * gdbtypes.h (enum type_flag_values): Renumber.
12471 (enum type_instance_flag_value): Add
12472 TYPE_INSTANCE_FLAG_RESTRICT.
12473 (TYPE_RESTRICT): New macro.
12474 (make_restrict_type): Declare.
12475
12476 2013-01-14 Tom Tromey <tromey@redhat.com>
12477
12478 PR symtab/14931:
12479 * psymtab.c (struct psymtab_state): New.
12480 (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
12481 functions.
12482 * psympriv.h (make_cleanup_discard_psymtabs): Declare.
12483 * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
12484
12485 2013-01-14 Richard Sharman <richard_sharman@mitel.com>
12486 Pedro Alves <palves@redhat.com>
12487
12488 PR remote/14786
12489
12490 * remote.c (remote_threads_info): Make a copy of the reply from
12491 qfThreadInfo and use that instead of rs->buf.
12492
12493 2013-01-14 Yao Qi <yao@codesourcery.com>
12494
12495 * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
12496 (dbx_psymtab_to_symtab): Likewise.
12497 * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
12498 * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
12499 * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
12500
12501 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
12502
12503 * parse.c (parse_exp_in_context): New variable inner_chain. Call
12504 make_cleanup_restore_current_language. Call set_language. Move
12505 OLD_CHAIN and INNER_CHAIN cleanups.
12506 * utils.c (do_restore_current_language)
12507 (make_cleanup_restore_current_language): New functions.
12508 * utils.h (make_cleanup_restore_current_language): New declaration.
12509
12510 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
12511
12512 * source.c (symtab_to_fullname): Apply rewrite_source_path also for
12513 non-existing files.
12514
12515 * source.c (symtab_to_fullname): Do not prepend DIRNAME for
12516 non-existing files if FILENAME is already absolute.
12517
12518 2013-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
12519
12520 * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
12521 fputs_filtered. Append trailing newline.
12522
12523 2013-01-11 Yao Qi <yao@codesourcery.com>
12524 Stan Shebs <stan@codesourcery.com>
12525
12526 * psymtab.c (init_psymbol_list): Clarify the comment.
12527
12528 2013-01-11 Yao Qi <yao@codesourcery.com>
12529
12530 * breakpoint.c (print_one_breakpoint_location): Remove dead code.
12531 (update_dprintf_command_list): Assert that 'printf_line' is
12532 non-null. Remove condition check.
12533
12534 2013-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
12535
12536 Code cleanup.
12537 * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
12538 type const char *.
12539 * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
12540 const char *.
12541 * tui/tui-source.h (tui_source_is_displayed): Likewise.
12542
12543 2013-01-09 Anthony Green <green@moxielogic.com>
12544
12545 * cp-abi.c (cplus_print_vtable): Don't return value from void
12546 function.
12547 * ada-lang.c (re_set_catch_assert): Ditto.
12548
12549 2013-01-09 Doug Evans <dje@google.com>
12550
12551 * symfile.h (quick_symbol_functions): Delete member
12552 pre_expand_symtabs_matching. All uses removed.
12553 * dwarf2read.c (dw2_lookup_symbol): Implement.
12554 (dw2_do_expand_symtabs_matching): Delete.
12555 (dw2_pre_expand_symtabs_matching): Delete.
12556 (struct dw2_symtab_iterator): New type.
12557 (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
12558 (dw2_expand_symtabs_for_function): Rewrite.
12559 (dwarf2_gdb_index_functions): Update.
12560 * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
12561 (psym_functions): Update.
12562
12563 2013-01-09 Tom Tromey <tromey@redhat.com>
12564
12565 * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
12566 * configure: Rebuild.
12567 * configure.ac: Add somread.o to the build if BFD has SOM
12568 support.
12569 * somread.c: Include som/aout.h, not syms.h.
12570 (som_symtab_read): Use som_external_symbol_dictionary_record.
12571 Unpack records manually.
12572 (_initialize_somread): Declare.
12573
12574 2012-01-08 Mike Frysinger <vapier@gentoo.org>
12575
12576 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
12577 Cast return_address to 64bits.
12578
12579 2013-01-08 Hui Zhu <hui_zhu@mentor.com>
12580
12581 * printcmd.c: Remove define of function output_command.
12582 * tracepoint.c: Remove extern of function output_command.
12583 * valprint.h: (output_command): New extern.
12584
12585 2013-01-07 Tom Tromey <tromey@redhat.com>
12586
12587 * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
12588 Remove.
12589 (objc_language_defn): Use c_printchar, c_printstr,
12590 c_emit_char.
12591
12592 2013-01-07 Tom Tromey <tromey@redhat.com>
12593
12594 PR cli/7719:
12595 * NEWS: Update.
12596 * ada-valprint.c (printstr, print_field_values): Remove
12597 "inspect_it" code.
12598 * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
12599 code.
12600 * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
12601 code.
12602 * m2-lang.c (m2_printstr): Remove "inspect_it" code.
12603 * main.c (captured_main): Remove "epoch" argument.
12604 * objc-lang.c (objc_printstr): Remove "inspect_it" code.
12605 * p-lang.c (pascal_printstr): Remove "inspect_it" code.
12606 * p-valprint.c (pascal_object_print_value_fields): Remove
12607 "inspect_it" code.
12608 * printcmd.c (print_command_1): Remove 'inspect' argument.
12609 (print_command, call_command): Update.
12610 (inspect_command): Remove.
12611 (_initialize_printcmd): Make "inspect" an alias for "print".
12612 * top.c (epoch_interface): Remove.
12613 * top.h (epoch_interface): Remove.
12614 * valprint.c (user_print_options): Update.
12615 (print_converted_chars_to_obstack): Remove "inspect_it" code.
12616 * valprint.h (struct value_print_options) <inspect_it>: Remove
12617 field.
12618
12619 2013-01-04 Tom Tromey <tromey@redhat.com>
12620
12621 * valprint.h (read_string): Add 'extern'.
12622
12623 2013-01-07 Joel Brobecker <brobecker@adacore.com>
12624
12625 * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
12626 used to decide whether to define darwin_read_dyld_info or not.
12627
12628 2013-01-03 Pierre Muller <muller@sourceware.org>
12629
12630 * main.c (relocate_gdb_directory): Avoid calling stat function
12631 if DIR is empty.
12632
12633 2013-01-03 Yao Qi <yao@codesourcery.com>
12634
12635 * psymtab.c (fixup_psymbol_section): Update declaration.
12636 (fixup_psymbol_section): Remove code returning value.
12637
12638 2013-01-03 Yao Qi <yao@codesourcery.com>
12639
12640 * symtab.h: Remove some out of date comments.
12641 (enum exception_event_kind): Move it ...
12642 * breakpoint.c: ... here.
12643
12644 2013-01-02 Iain Sandoe <developer@sandoe-acoustics.co.uk>
12645
12646 PR gdb/14405
12647 * darwin-nat.c (darwin_read_dyld_info): Only build if
12648 TASK_DYLD_INFO_COUNT is defined.
12649 (darwin_xfer_partial): Call darwin_read_dyld_info only if
12650 TASK_DYLD_INFO_COUNT is defined.
12651
12652 2013-01-02 Tom Tromey <tromey@redhat.com>
12653
12654 * symfile.h (struct ecoff_debug_hack): Remove.
12655 * objfiles.c: Don't include mdebugread.h.
12656
12657 2013-01-02 Tom Tromey <tromey@redhat.com>
12658
12659 * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
12660 * configure.ac: Check for Mach-O support in BFD. Update
12661 CONFIG_OBS.
12662 * configure: Rebuild.
12663
12664 2013-01-02 Tom Tromey <tromey@redhat.com>
12665
12666 * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
12667 * configure.ac: Use GDB_AC_CHECK_BFD.
12668 * configure: Rebuild.
12669
12670 2013-01-01 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
12671
12672 * MAINTAINERS: Update my email.
12673
12674 2013-01-01 Joel Brobecker <brobecker@adacore.com>
12675
12676 * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
12677
12678 2013-01-01 Joel Brobecker <brobecker@adacore.com>
12679
12680 * rs6000-nat.c (bss_data_overlap): New function.
12681 (vmap_symtab): Use it to adjust the .bss section's offset.
12682
12683 2013-01-01 Joel Brobecker <brobecker@adacore.com>
12684
12685 Update year range in copyright notice of all files.
12686
12687 2013-01-01, 13 Joel Brobecker <brobecker@adacore.com>
12688
12689 * top.c (print_gdb_version): Update copyright year.
12690
12691 For older changes see ChangeLog-2012.
12692 \f
12693 Local Variables:
12694 mode: change-log
12695 left-margin: 8
12696 fill-column: 74
12697 version-control: never
12698 coding: utf-8
12699 End:
This page took 0.461572 seconds and 5 git commands to generate.