Make "set debug frame 1" use the standard print routine for optimized out values.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2013-11-27 Andrew Burgess <aburgess@broadcom.com>
2
3 * frame.c: Include "valprint.h".
4 (frame_unwind_register_value): Use value_optimized_out.
5 * value.c (value_fetch_lazy): Likewise.
6
7 2013-11-26 Andrew Burgess <aburgess@broadcom.com>
8
9 * value.c (allocate_optimized_out_value): Mark value as non-lazy.
10
11 2013-11-26 Tom Tromey <tromey@redhat.com>
12
13 * dwarf2-frame.c (dwarf2_frame_cache): Revert patch from
14 2013-11-22.
15
16 2013-11-26 Walfred Tedeschi <walfred.tedeschi@intel.com>
17
18 * i386-xstate.h (I386_XSTATE_MPX): New Macro.
19 (I386_XSTATE_MPX_MASK): Makes use of I386_XSTATE_MPX.
20 (HAS_MPX): New macro.
21 (HAS_AVX): New macro.
22 (I386_XSTATE_SIZE): Uses HAS_MPX and HAS_AVX.
23
24 2013-11-25 Keith Seitz <keiths@redhat.com>
25
26 PR c++/14819
27 * c-exp.y (classify_inner_name): If no matching symbol was
28 found, try looking up the token as a base class.
29 Likewise if a constructor was found.
30 * cp-namespace.c (find_type_baseclass_by_name): New function.
31 * cp-support.h (find_type_baseclass_by_name): Declare.
32 * valops.c (value_struct_elt_for_reference): If we get
33 a non-static field, try to get a value based on the
34 current instance, if any.
35
36 2013-11-24 Yao Qi <yao@codesourcery.com>
37
38 * disasm.c (dis_asm_read_memory): Call target_read_code
39 instead of target_read_memory.
40
41 2013-11-24 Yao Qi <yao@codesourcery.com>
42
43 * NEWS: Add note on new "set code-cache" option.
44 * target-dcache.c (code_cache_enabled_1): New variable.
45 (code_cache_enabled): New variable.
46 (show_code_cache, set_code_cache): New function.
47 (code_cache_enabled_p): New function.
48 (_initialize_target_dcache): Register command.
49 * target-dcache.h (code_cache_enabled_p): Declare.
50 * target.c (memory_xfer_partial_1):Handle
51 TARGET_OBJECT_CODE_MEMORY and code_cache_enabled.
52 (target_read_code): New function.
53 * target.h (enum target_object) <TARGET_OBJECT_CODE_MEMORY>:
54 New.
55 (target_read_code): Declare.
56
57 2013-11-24 Yao Qi <yao@codesourcery.com>
58
59 * target-dcache.c (stack_cache_enabled_p_1): Rename to ...
60 (stack_cache_enabled_1): ... this. New variable.
61 (stack_cache_enabled_p): Rename to ...
62 (stack_cache_enabled): ... this. New variable.
63 (set_stack_cache_enabled_p): Rename to ...
64 (set_stack_cache): ... this. Update caller.
65 (show_stack_cache_enabled_p): Rename to ...
66 (show_stack_cache): ... this. Update caller.
67 (stack_cache_enabled): Rename to ...
68 (stack_cache_enabled_p): ... this. Update caller.
69 (_initialize_target_dcache): Replace "data cache" with
70 "target memory cache".
71 * target-dcache.h (stack_cache_enabled): Remove declaration.
72 (stack_cache_enabled_p): Add declaration.
73
74 2013-11-23 Doug Evans <xdje42@gmail.com>
75
76 * python/py-frame.c (gdbpy_initialize_frames): Remove FIRST_ERROR,
77 superfluous.
78
79 2013-11-23 Doug Evans <xdje42@gmail.com>
80
81 * python/py-frame.c (frapy_block): Fix error message text.
82
83 2013-11-23 Doug Evans <xdje42@gmail.com>
84
85 * cli/cli-script.c (multi_line_command_p): New function.
86 (recurse_read_control_structure, read_command_lines_1): Call it.
87 (execute_control_command): Consistently have a blank line between
88 each case.
89
90 2013-11-22 Sterling Augustine <saugustine@google.com>
91
92 PR gdb/16196:
93 * valprint.c (read_string): Set new variable fetchlen based on
94 fetchlimit and size. Use it in call to partial_memory_read.
95 Update comment.
96
97 2013-11-22 Tom Tromey <tromey@redhat.com>
98
99 PR backtrace/16155:
100 * dwarf2-frame.c (dwarf2_frame_cache): Set undefined_retaddr if
101 the return address column is unspecified.
102
103 2013-11-22 Tom Tromey <tromey@redhat.com>
104 Pedro Alves <palves@redhat.com>
105
106 PR backtrace/16155
107 * value.c (value_fetch_lazy): Internal error if
108 get_frame_register_value returns the same register.
109
110 2013-11-22 Pedro Alves <palves@redhat.com>
111 Tom Tromey <tromey@redhat.com>
112
113 * frame.c (frame_stash_add): Now returns whether a frame with the
114 same ID was already known.
115 (compute_frame_id): New function, factored out from get_frame_id.
116 (get_frame_id): No longer lazilly compute the frame id here.
117 (get_prev_frame_if_no_cycle): New function. Detects wider stack
118 cycles.
119 (get_prev_frame_1): Use it instead of get_prev_frame_raw directly,
120 and checking for stack cycles here.
121
122 2013-11-22 Pedro Alves <palves@redhat.com>
123
124 PR 16155
125 * frame.c (get_prev_frame_1): Do the UNWIND_SAME_ID check between
126 this frame and the new previous frame, not between this frame and
127 the next frame.
128
129 2013-11-22 Pedro Alves <palves@redhat.com>
130
131 PR 16155
132 * dwarf2-frame.c (struct dwarf2_frame_cache)
133 <checked_tailcall_bottom, entry_cfa_sp_offset,
134 entry_cfa_sp_offset_p>: New fields.
135 (dwarf2_frame_cache): Adjust to use the new cache fields instead
136 of locals. Don't call dwarf2_tailcall_sniffer_first here.
137 (dwarf2_frame_prev_register): Call it here, but only once.
138
139 2013-11-21 Doug Evans <xdje42@gmail.com>
140
141 * gdbtypes.c: #include bcache.h, dwarf2loc.h.
142 (type_equality_entry): Move here from python/py-type.c.
143 (type_equality_entry_d): Ditto.
144 (compare_maybe_null_strings, check_types_equal): Ditto.
145 (check_types_worklist, types_deeply_equal): Ditto.
146 * gdbtypes.h (types_deeply_equal): Declare.
147 * python/py-type.c: Remove inclusion of bcache.h, dwarf2loc.h.
148 (typy_richcompare): Update.
149
150 2013-11-20 Joel Brobecker <brobecker@adacore.com>
151
152 * python/py-value.c (is_intlike): Delete.
153 (valpy_int): Replace use of CHECK_TYPEDEF and is_intlike
154 by use of is_integral_type.
155 (valpy_long): Replace use of CHECK_TYPEDEF and is_intlike
156 by use of is_integral_type and check for TYPE_CODE_PTR.
157
158 2013-11-20 Tom Tromey <tromey@redhat.com>
159
160 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Remove
161 strerror module.
162 * gnulib/aclocal.m4: Update.
163 * gnulib/config.in: Update.
164 * gnulib/configure: Update.
165 * gnulib/import/Makefile.am: Update.
166 * gnulib/import/Makefile.in: Update.
167 * gnulib/import/errno.in.h: Remove.
168 * gnulib/import/intprops.h: Remove.
169 * gnulib/import/m4/errno_h.m4: Remove.
170 * gnulib/import/m4/gnulib-cache.m4: Update.
171 * gnulib/import/m4/gnulib-comp.m4: Update.
172 * gnulib/import/m4/strerror.m4: Remove.
173 * gnulib/import/m4/sys_socket_h.m4: Remove.
174 * gnulib/import/strerror-override.c: Remove.
175 * gnulib/import/strerror-override.h: Remove.
176 * gnulib/import/strerror.c: Remove.
177 * gnulib/update-gnulib.sh: Update.
178
179 2013-11-20 Yao Qi <yao@codesourcery.com>
180
181 * target-dcache.c (target_dcache_get_or_init): Call
182 set_address_space_data if 'dcache' is NULL.
183
184 2013-11-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
185
186 * common/i386-gcc-cpuid.h (bit_MPX): Synchronize with gcc file.
187
188 2013-11-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
189
190 * python/lib/gdb/command/bound_register.py: New file.
191 * data-directory/Makefile.in: Copy bond_register.py to the right path
192 to be initialized at gdb startup.
193
194 2013-11-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
195
196 * amd64-linux-nat.c (amd64_linux_gregset32_reg_offset):
197 Add MPX registers.
198 (amd64_linux_read_description): Add initialization for MPX and
199 AVX independently.
200 * amd64-linux-tdep.c: Includes features/i386/amd64-mpx-linux.c.
201 (amd64_linux_gregset_reg_offset): Add MPX registers.
202 (amd64_linux_core_read_description): Add initialization for MPX
203 registers.
204 (_initialize_amd64_linux_tdep): Initialize MPX targets.
205 * amd64-linux-tdep.h (AMD64_LINUX_RAX_REGNUM): Set it to the last
206 register on the list.
207 (tdesc_amd64_mpx_linux) Add new target for MPX.
208 * amd64-tdep.c: Includes features/i386/amd64-mpx.c.
209 (amd64_mpx_names): MPX register names.
210 (amd64_init_abi): Add MPX register while initializing the ABI.
211 (_initialize_amd64_tdep): Initialize MPX targets.
212 * amd64-tdep.h (amd64_regnum): Add MPX registers.
213 (AMD64_NUM_REGS): Set number of registers taking MPX into account.
214
215 2013-11-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
216
217 * i386-linux-nat.c (GETXSTATEREGS_SUPPLIES): Add MPX
218 registers on the range of registers to be read from
219 xsave buffer.
220 (i386_linux_read_description): Add case for MPX.
221 * i386-linux-tdep.c: Include features/i386/i386-mpx-linux.c.
222 (i386_linux_gregset_reg_offset): Add MPX registers.
223 (i386_linux_core_read_description): Initialize also MPX.
224 (_initialize_i386_linux_tdep): Add mpx initialization.
225 * i386-tdep.h (gdbarch_tdep): Add fields bnd0r_regnum, bnd0_regnum,
226 mpx_register_names.
227 (i386_regnum): Add MPX registers.
228 (I386_MPX_NUM_REGS): New macro.
229 (i386_bnd_regnum_p): New function.
230 * i386-linux-tdep.h (I386_LINUX_NUM_REGS): Set
231 number of registers to be the number of BNDSTATUS.
232 (tdesc_i386_mpx_linux): Add description for MPX Linux registers.
233 * i386-tdep.c: Include features/i386/i386-mpx.c.
234 (i386_mpx_names): Add MPX register names array.
235 (i386_bnd_names): Add bnd pseudo register names array.
236 (i386_bndr_regnum_p): Lookup register numbers for bnd raw
237 registers.
238 (i386_bndr_regnum_p): Lookup register numbers for bnd raw registers.
239 (386_mpx_ctrl_regnum_p): Lookup register numbers for MPX control
240 registers.
241 (i386_bnd_type): New function.
242 (i386_pseudo_register_type): Use i386_bnd_type for bnd pseudo
243 register types.
244 (i386_pseudo_register_read_into_value): Add bnd case.
245 (i386_pseudo_register_write): Add bnd pseudo registers.
246 (i386_register_reggroup_p): Add MPX register to the group all.
247 (i386_validate_tdesc_p): Add MPX to the target description
248 validation.
249 (i386_pseudo_register_name): Add bnd pseudo registers.
250 (i386_gdbarch_init): Add MPX for architecture initialization.
251 (_initia_initialize_i386_tdep): Add mpx initialization.
252 * i387-tdep.c (xsave_mpx_offset): New vector for MPX offsets on
253 XSAVE buffer.
254 (XSAVE_MPX_ADDR): New macro.
255 (i387_supply_xsave): Add MPX case.
256 (i387_collect_xsave): Add MPX case.
257 * i387-tdep.h (I387_BND0R_REGNUM): New macro.
258 (I387_BNDCFGU_REGNUM): New macro.
259 (I387_NUM_MPX_REGS): New macro.
260 (I387_NUM_BND_REGS): New macro.
261 (I387_NUM_MPX_CTRL_REGS): New macro.
262 (I387_MPXEND_REGNUM): New macro.
263 * common/i386-xstate.h (I386_XSTATE_BNDREGS): New macro.
264 (I386_XSTATE_BNDCFG): Likewise.
265 (I386_XSTATE_MPX_MASK): Likewise.
266 (I386_XSTATE_ALL_MASK): New macro represents flags for all states.
267 (I386_XSTATE_BNDREGS_SIZE): New macro.
268 (I386_XSTATE_BNDCFG_SIZE): Likewise.
269 (I386_XSTATE_SIZE): Adapt for MPX.
270 (I386_XSTATE_MAX_SIZE): Likewise.
271
272 2013-11-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
273
274 * features/i386/Makefile: Adapts for using MPX registers.
275 * features/i386/32bit-mpx.xml: New file.
276 * features/i386/64bit-mpx.xml: Likewise.
277 * features/i386/amd64-mpx-linux.c: Likewise.
278 * features/i386/amd64-mpx-linux.xml: Likewise.
279 * features/i386/amd64-mpx.c: Likewise.
280 * features/i386/amd64-mpx.xml: Likewise.
281 * features/i386/i386-mpx-linux.c: Likewise.
282 * features/i386/i386-mpx-linux.xml: Likewise.
283 * features/i386/i386-mpx.c: Likewise.
284 * features/i386/i386-mpx.xml: Likewise.
285 * regformats/i386/amd64-mpx-linux.dat: New file.
286 * regformats/i386/amd64-mpx.dat: Likewise.
287 * regformats/i386/i386-mpx-linux.dat: Likewise.
288 * regformats/i386/i386-mpx.dat: Likewise.
289
290 2013-11-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
291
292 * target-descriptions.c (maint_print_maint_print_c_tdesc_cmd):
293 Modified logic of creating a bitfield to be in sync with
294 tdesc_gdb_type.
295
296 2013-11-20 Will Newton <will.newton@linaro.org>
297
298 * arm-tdep.c (arm_get_next_pc): Remove "Infinite loop detected"
299 error message.
300
301 2013-11-20 Yao Qi <yao@codesourcery.com>
302
303 * progspace.h (struct address_space_data): Declare.
304 * target-dcache.c: Include "progspace.h".
305 (target_dache): Remove.
306 (target_dcache_aspace_key): New.
307 (target_dcache_cleanup): New function.
308 (target_dcache_init_p): Get data through
309 target_dcache_aspace_key.
310 (target_dcache_invalidate): Likewise.
311 (target_dcache_get): Likewise.
312 (target_dcache_get_or_init): Likewise.
313 (_initialize_target_dcache): Initialize
314 target_dcache_aspace_key.
315
316 2013-11-20 Yao Qi <yao@codesourcery.com>
317
318 * progspace.c (struct address_space): Update comments.
319 <REGISTRY_FIELDS>: New fields.
320 DEFINE_REGISTRY for address_space.
321 (new_address_space): Call address_space_alloc_data.
322 (free_address_space): Call address_space_free_data.
323 * progspace.h: Use DECLARE_REGISTRY.
324
325 2013-11-20 Yao Qi <yao@codesourcery.com>
326
327 * Makefile.in (SFILES):Add target-dcache.c.
328 (HFILES_NO_SRCDIR): Add target-dcache.h.
329 (COMMON_OBS): Add target-dcache.o.
330 * dcache.c: Remove inclusion to "target.h". Include
331 "target-dcache.h".
332 * memattr.c: Include "target-dcache.h".
333 * top.c: Likewise.
334 * tracepoint.c: Likewise.
335 * target.c: (stack_cache_enabled_p_1): Move to
336 target-dcache.c.
337 (stack_cache_enabled_p): Likewise.
338 (set_stack_cache_enabled_p): Likewise.
339 (show_stack_cache_enabled_p): Likewise.
340 (target_dcache, target_dcache_init_p): Likewise.
341 (target_dcache_invalidate): Likewise.
342 (target_dcache_get, target_dcache_get_or_init): Likewise.
343 (memory_xfer_partial_1): Call function stack_cache_enabled.
344 (initialize_target): Move code to target-dcache.c.
345 * target.h (target_dcache_invalidate): Move to
346 target-dcache.h.
347 (target_dcache_get): Likewise.
348 * target-dcache.c: New.
349 * target-dcache.h: New.
350
351 2013-11-20 Yao Qi <yao@codesourcery.com>
352
353 * target.c (memory_xfer_partial_1): Update 'target_dcache' if
354 it is initialized.
355
356 2013-11-20 Yao Qi <yao@codesourcery.com>
357
358 * dcache.c (last_cache): Remove.
359 (dcache_free, dcache_init): Update.
360 (dcache_update):
361 (dcache_print_line): Add parameter 'dcache'. Replace
362 'target_dcache' with 'dcache'.
363 (dcache_info): Move code to dcache_info_1. Call
364 'dcache_info_1'.
365 (dcache_info_1): New function.
366 (set_dcache_size): Call target_dcache_invalidate.
367 (set_dcache_line_size): Call target_dcache_invalidate.
368 * target.c (target_dcache_init_p): New function.
369 (target_dcache_invalidate): Check target_dcache_init_p first.
370 (target_dcache_get, target_dcache_get_or_init): New function.
371 (memory_xfer_partial_1): Adjust.
372 (initialize_target): Don't initialize 'target_dcache'.
373 * target.h (struct dcache_struct): Declare.
374 (target_dcache_get): Declare.
375
376 2013-11-19 Yao Qi <yao@codesourcery.com>
377
378 * varobj.c (varobj_get_type): Fix typo.
379
380 2013-11-19 Joel Brobecker <brobecker@adacore.com>
381
382 * python/py-value.c (is_intlike): Add TYPE_CODE_RANGE handling.
383
384 2013-11-19 Joel Brobecker <brobecker@adacore.com>
385
386 * contrib/ari/gdb_ari.sh: Remove checks for "dirent.h" and
387 "stat.h".
388
389 2013-11-18 Tom Tromey <tromey@redhat.com>
390
391 * common/gdb_stat.h: Remove.
392 * ada-lang.c: Use sys/stat.h, not gdb_stat.h.
393 * common/filestuff.c: Use sys/stat.h, not gdb_stat.h.
394 * common/linux-osdata.c: Use sys/stat.h, not gdb_stat.h.
395 * corefile.c: Use sys/stat.h, not gdb_stat.h.
396 * ctf.c: Use sys/stat.h, not gdb_stat.h.
397 * darwin-nat.c: Use sys/stat.h, not gdb_stat.h.
398 * dbxread.c: Use sys/stat.h, not gdb_stat.h.
399 * dwarf2read.c: Use sys/stat.h, not gdb_stat.h.
400 * exec.c: Use sys/stat.h, not gdb_stat.h.
401 * gdbserver/linux-low.c: Use sys/stat.h, not gdb_stat.h.
402 * gdbserver/remote-utils.c: Use sys/stat.h, not gdb_stat.h.
403 * inf-child.c: Use sys/stat.h, not gdb_stat.h.
404 * jit.c: Use sys/stat.h, not gdb_stat.h.
405 * linux-nat.c: Use sys/stat.h, not gdb_stat.h.
406 * m68klinux-nat.c: Use sys/stat.h, not gdb_stat.h.
407 * main.c: Use sys/stat.h, not gdb_stat.h.
408 * mdebugread.c: Use sys/stat.h, not gdb_stat.h.
409 * mi/mi-cmd-env.c: Use sys/stat.h, not gdb_stat.h.
410 * nto-tdep.c: Use sys/stat.h, not gdb_stat.h.
411 * objfiles.c: Use sys/stat.h, not gdb_stat.h.
412 * procfs.c: Use sys/stat.h, not gdb_stat.h.
413 * remote-fileio.c: Use sys/stat.h, not gdb_stat.h.
414 * remote-mips.c: Use sys/stat.h, not gdb_stat.h.
415 * remote.c: Use sys/stat.h, not gdb_stat.h.
416 * rs6000-nat.c: Use sys/stat.h, not gdb_stat.h.
417 * sol-thread.c: Use sys/stat.h, not gdb_stat.h.
418 * solib-spu.c: Use sys/stat.h, not gdb_stat.h.
419 * source.c: Use sys/stat.h, not gdb_stat.h.
420 * symfile.c: Use sys/stat.h, not gdb_stat.h.
421 * symmisc.c: Use sys/stat.h, not gdb_stat.h.
422 * symtab.c: Use sys/stat.h, not gdb_stat.h.
423 * top.c: Use sys/stat.h, not gdb_stat.h.
424 * xcoffread.c: Use sys/stat.h, not gdb_stat.h.
425
426 2013-11-18 Tom Tromey <tromey@redhat.com>
427
428 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
429 sys_stat.
430 * gnulib/aclocal.m4: Update.
431 * gnulib/config.in: Update.
432 * gnulib/configure: Update.
433 * gnulib/import/Makefile.am: Update.
434 * gnulib/import/Makefile.in: Update.
435 * gnulib/import/m4/gnulib-cache.m4: Update.
436 * gnulib/import/m4/gnulib-comp.m4: Update.
437 * gnulib/import/m4/sys_stat_h.m4: New.
438 * gnulib/import/m4/time_h.m4: New.
439 * gnulib/import/sys_stat.in.h: New.
440 * gnulib/import/time.in.h: New.
441
442 2013-11-18 Tom Tromey <tromey@redhat.com>
443
444 * configure: Rebuild.
445 * configure.ac: Remove check of HAVE_SYS_TYPES_H.
446
447 2013-11-18 Tom Tromey <tromey@redhat.com>
448
449 * configure: Rebuild.
450 * configure.ac: Don't check for unistd.h.
451
452 2013-11-18 Tom Tromey <tromey@redhat.com>
453
454 * configure: Rebuild.
455 * configure.ac: Don't check for stdlib.h
456 * defs.h: Include stdlib.h unconditionally.
457
458 2013-11-18 Tom Tromey <tromey@redhat.com>
459
460 * config.in: Rebuild.
461 * configure: Rebuild.
462 * configure.ac: Don't check for stddef.h.
463 * defs.h: Unconditionally include stddef.h. Remove duplicate
464 inclusion.
465
466 2013-11-18 Tom Tromey <tromey@redhat.com>
467
468 * common/common.m4 (GDB_AC_COMMON): Don't use AC_HEADER_DIRENT.
469 * common/gdb_dirent.h: Remove.
470 * common/filestuff.c: Use dirent.h.
471 * common/linux-osdata.c: Use dirent.h.
472 (NAMELEN): Define.
473 * config.in: Rebuild.
474 * configure: Rebuild.
475 * configure.ac: Don't use AC_HEADER_DIRENT.
476 * linux-fork.c: Use dirent.h
477 * linux-nat.c: Use dirent.h.
478 * nto-procfs.c: Use dirent.h.
479 * procfs.c: Use dirent.h.
480
481 2013-11-18 Tom Tromey <tromey@redhat.com>
482
483 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add dirent.
484 * gnulib/aclocal.m4: Update.
485 * gnulib/config.in: Update.
486 * gnulib/configure: Update.
487 * gnulib/import/Makefile.am: Update.
488 * gnulib/import/Makefile.in: Update.
489 * gnulib/import/dirent.in.h: New.
490 * gnulib/import/m4/dirent_h.m4: New.
491 * gnulib/import/m4/gnulib-cache.m4: Update.
492 * gnulib/import/m4/gnulib-comp.m4: Update.
493
494 2013-11-18 Tom Tromey <tromey@redhat.com>
495
496 * configure: Rebuild.
497 * common/common.m4 (GDB_AC_COMMON): Don't check for string.h or
498 strings.h.
499
500 2013-11-18 Tom Tromey <tromey@redhat.com>
501
502 * common/gdb_string.h: Remove.
503 * aarch64-tdep.c: Use string.h, not gdb_string.h.
504 * ada-exp.y: Use string.h, not gdb_string.h.
505 * ada-lang.c: Use string.h, not gdb_string.h.
506 * ada-lex.l: Use string.h, not gdb_string.h.
507 * ada-typeprint.c: Use string.h, not gdb_string.h.
508 * ada-valprint.c: Use string.h, not gdb_string.h.
509 * aix-thread.c: Use string.h, not gdb_string.h.
510 * alpha-linux-tdep.c: Use string.h, not gdb_string.h.
511 * alpha-mdebug-tdep.c: Use string.h, not gdb_string.h.
512 * alpha-nat.c: Use string.h, not gdb_string.h.
513 * alpha-osf1-tdep.c: Use string.h, not gdb_string.h.
514 * alpha-tdep.c: Use string.h, not gdb_string.h.
515 * alphanbsd-tdep.c: Use string.h, not gdb_string.h.
516 * amd64-dicos-tdep.c: Use string.h, not gdb_string.h.
517 * amd64-linux-nat.c: Use string.h, not gdb_string.h.
518 * amd64-linux-tdep.c: Use string.h, not gdb_string.h.
519 * amd64-nat.c: Use string.h, not gdb_string.h.
520 * amd64-sol2-tdep.c: Use string.h, not gdb_string.h.
521 * amd64fbsd-tdep.c: Use string.h, not gdb_string.h.
522 * amd64obsd-tdep.c: Use string.h, not gdb_string.h.
523 * arch-utils.c: Use string.h, not gdb_string.h.
524 * arm-linux-nat.c: Use string.h, not gdb_string.h.
525 * arm-linux-tdep.c: Use string.h, not gdb_string.h.
526 * arm-tdep.c: Use string.h, not gdb_string.h.
527 * arm-wince-tdep.c: Use string.h, not gdb_string.h.
528 * armbsd-tdep.c: Use string.h, not gdb_string.h.
529 * armnbsd-nat.c: Use string.h, not gdb_string.h.
530 * armnbsd-tdep.c: Use string.h, not gdb_string.h.
531 * armobsd-tdep.c: Use string.h, not gdb_string.h.
532 * avr-tdep.c: Use string.h, not gdb_string.h.
533 * ax-gdb.c: Use string.h, not gdb_string.h.
534 * ax-general.c: Use string.h, not gdb_string.h.
535 * bcache.c: Use string.h, not gdb_string.h.
536 * bfin-tdep.c: Use string.h, not gdb_string.h.
537 * breakpoint.c: Use string.h, not gdb_string.h.
538 * build-id.c: Use string.h, not gdb_string.h.
539 * buildsym.c: Use string.h, not gdb_string.h.
540 * c-exp.y: Use string.h, not gdb_string.h.
541 * c-lang.c: Use string.h, not gdb_string.h.
542 * c-typeprint.c: Use string.h, not gdb_string.h.
543 * c-valprint.c: Use string.h, not gdb_string.h.
544 * charset.c: Use string.h, not gdb_string.h.
545 * cli-out.c: Use string.h, not gdb_string.h.
546 * cli/cli-cmds.c: Use string.h, not gdb_string.h.
547 * cli/cli-decode.c: Use string.h, not gdb_string.h.
548 * cli/cli-dump.c: Use string.h, not gdb_string.h.
549 * cli/cli-interp.c: Use string.h, not gdb_string.h.
550 * cli/cli-logging.c: Use string.h, not gdb_string.h.
551 * cli/cli-script.c: Use string.h, not gdb_string.h.
552 * cli/cli-setshow.c: Use string.h, not gdb_string.h.
553 * cli/cli-utils.c: Use string.h, not gdb_string.h.
554 * coffread.c: Use string.h, not gdb_string.h.
555 * common/common-utils.c: Use string.h, not gdb_string.h.
556 * common/filestuff.c: Use string.h, not gdb_string.h.
557 * common/linux-procfs.c: Use string.h, not gdb_string.h.
558 * common/linux-ptrace.c: Use string.h, not gdb_string.h.
559 * common/signals.c: Use string.h, not gdb_string.h.
560 * common/vec.h: Use string.h, not gdb_string.h.
561 * core-regset.c: Use string.h, not gdb_string.h.
562 * corefile.c: Use string.h, not gdb_string.h.
563 * corelow.c: Use string.h, not gdb_string.h.
564 * cp-abi.c: Use string.h, not gdb_string.h.
565 * cp-support.c: Use string.h, not gdb_string.h.
566 * cp-valprint.c: Use string.h, not gdb_string.h.
567 * cris-tdep.c: Use string.h, not gdb_string.h.
568 * d-lang.c: Use string.h, not gdb_string.h.
569 * dbxread.c: Use string.h, not gdb_string.h.
570 * dcache.c: Use string.h, not gdb_string.h.
571 * demangle.c: Use string.h, not gdb_string.h.
572 * dicos-tdep.c: Use string.h, not gdb_string.h.
573 * disasm.c: Use string.h, not gdb_string.h.
574 * doublest.c: Use string.h, not gdb_string.h.
575 * dsrec.c: Use string.h, not gdb_string.h.
576 * dummy-frame.c: Use string.h, not gdb_string.h.
577 * dwarf2-frame.c: Use string.h, not gdb_string.h.
578 * dwarf2loc.c: Use string.h, not gdb_string.h.
579 * dwarf2read.c: Use string.h, not gdb_string.h.
580 * elfread.c: Use string.h, not gdb_string.h.
581 * environ.c: Use string.h, not gdb_string.h.
582 * eval.c: Use string.h, not gdb_string.h.
583 * event-loop.c: Use string.h, not gdb_string.h.
584 * exceptions.c: Use string.h, not gdb_string.h.
585 * exec.c: Use string.h, not gdb_string.h.
586 * expprint.c: Use string.h, not gdb_string.h.
587 * f-exp.y: Use string.h, not gdb_string.h.
588 * f-lang.c: Use string.h, not gdb_string.h.
589 * f-typeprint.c: Use string.h, not gdb_string.h.
590 * f-valprint.c: Use string.h, not gdb_string.h.
591 * fbsd-nat.c: Use string.h, not gdb_string.h.
592 * findcmd.c: Use string.h, not gdb_string.h.
593 * findvar.c: Use string.h, not gdb_string.h.
594 * fork-child.c: Use string.h, not gdb_string.h.
595 * frame.c: Use string.h, not gdb_string.h.
596 * frv-linux-tdep.c: Use string.h, not gdb_string.h.
597 * frv-tdep.c: Use string.h, not gdb_string.h.
598 * gdb.c: Use string.h, not gdb_string.h.
599 * gdb_bfd.c: Use string.h, not gdb_string.h.
600 * gdbarch.c: Use string.h, not gdb_string.h.
601 * gdbtypes.c: Use string.h, not gdb_string.h.
602 * gnu-nat.c: Use string.h, not gdb_string.h.
603 * gnu-v2-abi.c: Use string.h, not gdb_string.h.
604 * gnu-v3-abi.c: Use string.h, not gdb_string.h.
605 * go-exp.y: Use string.h, not gdb_string.h.
606 * go-lang.c: Use string.h, not gdb_string.h.
607 * go32-nat.c: Use string.h, not gdb_string.h.
608 * hppa-hpux-tdep.c: Use string.h, not gdb_string.h.
609 * hppa-linux-nat.c: Use string.h, not gdb_string.h.
610 * hppanbsd-tdep.c: Use string.h, not gdb_string.h.
611 * hppaobsd-tdep.c: Use string.h, not gdb_string.h.
612 * i386-cygwin-tdep.c: Use string.h, not gdb_string.h.
613 * i386-dicos-tdep.c: Use string.h, not gdb_string.h.
614 * i386-linux-nat.c: Use string.h, not gdb_string.h.
615 * i386-linux-tdep.c: Use string.h, not gdb_string.h.
616 * i386-nto-tdep.c: Use string.h, not gdb_string.h.
617 * i386-sol2-tdep.c: Use string.h, not gdb_string.h.
618 * i386-tdep.c: Use string.h, not gdb_string.h.
619 * i386bsd-tdep.c: Use string.h, not gdb_string.h.
620 * i386gnu-nat.c: Use string.h, not gdb_string.h.
621 * i386nbsd-tdep.c: Use string.h, not gdb_string.h.
622 * i386obsd-tdep.c: Use string.h, not gdb_string.h.
623 * i387-tdep.c: Use string.h, not gdb_string.h.
624 * ia64-libunwind-tdep.c: Use string.h, not gdb_string.h.
625 * ia64-linux-nat.c: Use string.h, not gdb_string.h.
626 * inf-child.c: Use string.h, not gdb_string.h.
627 * inf-ptrace.c: Use string.h, not gdb_string.h.
628 * inf-ttrace.c: Use string.h, not gdb_string.h.
629 * infcall.c: Use string.h, not gdb_string.h.
630 * infcmd.c: Use string.h, not gdb_string.h.
631 * inflow.c: Use string.h, not gdb_string.h.
632 * infrun.c: Use string.h, not gdb_string.h.
633 * interps.c: Use string.h, not gdb_string.h.
634 * iq2000-tdep.c: Use string.h, not gdb_string.h.
635 * irix5-nat.c: Use string.h, not gdb_string.h.
636 * jv-exp.y: Use string.h, not gdb_string.h.
637 * jv-lang.c: Use string.h, not gdb_string.h.
638 * jv-typeprint.c: Use string.h, not gdb_string.h.
639 * jv-valprint.c: Use string.h, not gdb_string.h.
640 * language.c: Use string.h, not gdb_string.h.
641 * linux-fork.c: Use string.h, not gdb_string.h.
642 * linux-nat.c: Use string.h, not gdb_string.h.
643 * lm32-tdep.c: Use string.h, not gdb_string.h.
644 * m2-exp.y: Use string.h, not gdb_string.h.
645 * m2-typeprint.c: Use string.h, not gdb_string.h.
646 * m32c-tdep.c: Use string.h, not gdb_string.h.
647 * m32r-linux-nat.c: Use string.h, not gdb_string.h.
648 * m32r-linux-tdep.c: Use string.h, not gdb_string.h.
649 * m32r-rom.c: Use string.h, not gdb_string.h.
650 * m32r-tdep.c: Use string.h, not gdb_string.h.
651 * m68hc11-tdep.c: Use string.h, not gdb_string.h.
652 * m68k-tdep.c: Use string.h, not gdb_string.h.
653 * m68kbsd-tdep.c: Use string.h, not gdb_string.h.
654 * m68klinux-nat.c: Use string.h, not gdb_string.h.
655 * m68klinux-tdep.c: Use string.h, not gdb_string.h.
656 * m88k-tdep.c: Use string.h, not gdb_string.h.
657 * macrocmd.c: Use string.h, not gdb_string.h.
658 * main.c: Use string.h, not gdb_string.h.
659 * mdebugread.c: Use string.h, not gdb_string.h.
660 * mem-break.c: Use string.h, not gdb_string.h.
661 * memattr.c: Use string.h, not gdb_string.h.
662 * memory-map.c: Use string.h, not gdb_string.h.
663 * mep-tdep.c: Use string.h, not gdb_string.h.
664 * mi/mi-cmd-break.c: Use string.h, not gdb_string.h.
665 * mi/mi-cmd-disas.c: Use string.h, not gdb_string.h.
666 * mi/mi-cmd-env.c: Use string.h, not gdb_string.h.
667 * mi/mi-cmd-stack.c: Use string.h, not gdb_string.h.
668 * mi/mi-cmd-var.c: Use string.h, not gdb_string.h.
669 * mi/mi-cmds.c: Use string.h, not gdb_string.h.
670 * mi/mi-console.c: Use string.h, not gdb_string.h.
671 * mi/mi-getopt.c: Use string.h, not gdb_string.h.
672 * mi/mi-interp.c: Use string.h, not gdb_string.h.
673 * mi/mi-main.c: Use string.h, not gdb_string.h.
674 * mi/mi-parse.c: Use string.h, not gdb_string.h.
675 * microblaze-rom.c: Use string.h, not gdb_string.h.
676 * microblaze-tdep.c: Use string.h, not gdb_string.h.
677 * mingw-hdep.c: Use string.h, not gdb_string.h.
678 * minidebug.c: Use string.h, not gdb_string.h.
679 * minsyms.c: Use string.h, not gdb_string.h.
680 * mips-irix-tdep.c: Use string.h, not gdb_string.h.
681 * mips-linux-tdep.c: Use string.h, not gdb_string.h.
682 * mips-tdep.c: Use string.h, not gdb_string.h.
683 * mips64obsd-tdep.c: Use string.h, not gdb_string.h.
684 * mipsnbsd-tdep.c: Use string.h, not gdb_string.h.
685 * mipsread.c: Use string.h, not gdb_string.h.
686 * mn10300-linux-tdep.c: Use string.h, not gdb_string.h.
687 * mn10300-tdep.c: Use string.h, not gdb_string.h.
688 * monitor.c: Use string.h, not gdb_string.h.
689 * moxie-tdep.c: Use string.h, not gdb_string.h.
690 * mt-tdep.c: Use string.h, not gdb_string.h.
691 * nbsd-tdep.c: Use string.h, not gdb_string.h.
692 * nios2-linux-tdep.c: Use string.h, not gdb_string.h.
693 * nto-procfs.c: Use string.h, not gdb_string.h.
694 * nto-tdep.c: Use string.h, not gdb_string.h.
695 * objc-lang.c: Use string.h, not gdb_string.h.
696 * objfiles.c: Use string.h, not gdb_string.h.
697 * opencl-lang.c: Use string.h, not gdb_string.h.
698 * osabi.c: Use string.h, not gdb_string.h.
699 * osdata.c: Use string.h, not gdb_string.h.
700 * p-exp.y: Use string.h, not gdb_string.h.
701 * p-lang.c: Use string.h, not gdb_string.h.
702 * p-typeprint.c: Use string.h, not gdb_string.h.
703 * parse.c: Use string.h, not gdb_string.h.
704 * posix-hdep.c: Use string.h, not gdb_string.h.
705 * ppc-linux-nat.c: Use string.h, not gdb_string.h.
706 * ppc-sysv-tdep.c: Use string.h, not gdb_string.h.
707 * ppcfbsd-tdep.c: Use string.h, not gdb_string.h.
708 * ppcnbsd-tdep.c: Use string.h, not gdb_string.h.
709 * ppcobsd-tdep.c: Use string.h, not gdb_string.h.
710 * printcmd.c: Use string.h, not gdb_string.h.
711 * procfs.c: Use string.h, not gdb_string.h.
712 * prologue-value.c: Use string.h, not gdb_string.h.
713 * python/py-auto-load.c: Use string.h, not gdb_string.h.
714 * python/py-gdb-readline.c: Use string.h, not gdb_string.h.
715 * ravenscar-thread.c: Use string.h, not gdb_string.h.
716 * regcache.c: Use string.h, not gdb_string.h.
717 * registry.c: Use string.h, not gdb_string.h.
718 * remote-fileio.c: Use string.h, not gdb_string.h.
719 * remote-m32r-sdi.c: Use string.h, not gdb_string.h.
720 * remote-mips.c: Use string.h, not gdb_string.h.
721 * remote-sim.c: Use string.h, not gdb_string.h.
722 * remote.c: Use string.h, not gdb_string.h.
723 * reverse.c: Use string.h, not gdb_string.h.
724 * rs6000-aix-tdep.c: Use string.h, not gdb_string.h.
725 * ser-base.c: Use string.h, not gdb_string.h.
726 * ser-go32.c: Use string.h, not gdb_string.h.
727 * ser-mingw.c: Use string.h, not gdb_string.h.
728 * ser-pipe.c: Use string.h, not gdb_string.h.
729 * ser-tcp.c: Use string.h, not gdb_string.h.
730 * ser-unix.c: Use string.h, not gdb_string.h.
731 * serial.c: Use string.h, not gdb_string.h.
732 * sh-tdep.c: Use string.h, not gdb_string.h.
733 * sh64-tdep.c: Use string.h, not gdb_string.h.
734 * shnbsd-tdep.c: Use string.h, not gdb_string.h.
735 * skip.c: Use string.h, not gdb_string.h.
736 * sol-thread.c: Use string.h, not gdb_string.h.
737 * solib-dsbt.c: Use string.h, not gdb_string.h.
738 * solib-frv.c: Use string.h, not gdb_string.h.
739 * solib-osf.c: Use string.h, not gdb_string.h.
740 * solib-spu.c: Use string.h, not gdb_string.h.
741 * solib-target.c: Use string.h, not gdb_string.h.
742 * solib.c: Use string.h, not gdb_string.h.
743 * somread.c: Use string.h, not gdb_string.h.
744 * source.c: Use string.h, not gdb_string.h.
745 * sparc-nat.c: Use string.h, not gdb_string.h.
746 * sparc-sol2-tdep.c: Use string.h, not gdb_string.h.
747 * sparc-tdep.c: Use string.h, not gdb_string.h.
748 * sparc64-tdep.c: Use string.h, not gdb_string.h.
749 * sparc64fbsd-tdep.c: Use string.h, not gdb_string.h.
750 * sparc64nbsd-tdep.c: Use string.h, not gdb_string.h.
751 * sparcnbsd-tdep.c: Use string.h, not gdb_string.h.
752 * spu-linux-nat.c: Use string.h, not gdb_string.h.
753 * spu-multiarch.c: Use string.h, not gdb_string.h.
754 * spu-tdep.c: Use string.h, not gdb_string.h.
755 * stabsread.c: Use string.h, not gdb_string.h.
756 * stack.c: Use string.h, not gdb_string.h.
757 * std-regs.c: Use string.h, not gdb_string.h.
758 * symfile.c: Use string.h, not gdb_string.h.
759 * symmisc.c: Use string.h, not gdb_string.h.
760 * symtab.c: Use string.h, not gdb_string.h.
761 * target.c: Use string.h, not gdb_string.h.
762 * thread.c: Use string.h, not gdb_string.h.
763 * tilegx-linux-nat.c: Use string.h, not gdb_string.h.
764 * tilegx-tdep.c: Use string.h, not gdb_string.h.
765 * top.c: Use string.h, not gdb_string.h.
766 * tracepoint.c: Use string.h, not gdb_string.h.
767 * tui/tui-command.c: Use string.h, not gdb_string.h.
768 * tui/tui-data.c: Use string.h, not gdb_string.h.
769 * tui/tui-disasm.c: Use string.h, not gdb_string.h.
770 * tui/tui-file.c: Use string.h, not gdb_string.h.
771 * tui/tui-layout.c: Use string.h, not gdb_string.h.
772 * tui/tui-out.c: Use string.h, not gdb_string.h.
773 * tui/tui-regs.c: Use string.h, not gdb_string.h.
774 * tui/tui-source.c: Use string.h, not gdb_string.h.
775 * tui/tui-stack.c: Use string.h, not gdb_string.h.
776 * tui/tui-win.c: Use string.h, not gdb_string.h.
777 * tui/tui-windata.c: Use string.h, not gdb_string.h.
778 * tui/tui-winsource.c: Use string.h, not gdb_string.h.
779 * typeprint.c: Use string.h, not gdb_string.h.
780 * ui-file.c: Use string.h, not gdb_string.h.
781 * ui-out.c: Use string.h, not gdb_string.h.
782 * user-regs.c: Use string.h, not gdb_string.h.
783 * utils.c: Use string.h, not gdb_string.h.
784 * v850-tdep.c: Use string.h, not gdb_string.h.
785 * valarith.c: Use string.h, not gdb_string.h.
786 * valops.c: Use string.h, not gdb_string.h.
787 * valprint.c: Use string.h, not gdb_string.h.
788 * value.c: Use string.h, not gdb_string.h.
789 * varobj.c: Use string.h, not gdb_string.h.
790 * vax-tdep.c: Use string.h, not gdb_string.h.
791 * vaxnbsd-tdep.c: Use string.h, not gdb_string.h.
792 * vaxobsd-tdep.c: Use string.h, not gdb_string.h.
793 * windows-nat.c: Use string.h, not gdb_string.h.
794 * xcoffread.c: Use string.h, not gdb_string.h.
795 * xml-support.c: Use string.h, not gdb_string.h.
796 * xstormy16-tdep.c: Use string.h, not gdb_string.h.
797 * xtensa-linux-nat.c: Use string.h, not gdb_string.h.
798
799 2013-11-18 Tom Tromey <tromey@redhat.com>
800
801 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add strerror
802 and strstr.
803 * gnulib/aclocal.m4: Update.
804 * gnulib/config.in: Update.
805 * gnulib/configure: Update.
806 * gnulib/import/Makefile.am: Update.
807 * gnulib/import/Makefile.in: Update.
808 * gnulib/import/errno.in.h: New.
809 * gnulib/import/intprops.h: New.
810 * gnulib/import/m4/errno_h.m4: New.
811 * gnulib/import/m4/gnulib-cache.m4: Update.
812 * gnulib/import/m4/gnulib-comp.m4: Update.
813 * gnulib/import/m4/strerror.m4: New.
814 * gnulib/import/m4/strstr.m4: New.
815 * gnulib/import/m4/sys_socket_h.m4: New.
816 * gnulib/import/strerror-override.c: New.
817 * gnulib/import/strerror-override.h: New.
818 * gnulib/import/strerror.c: New.
819 * gnulib/import/strstr.c: New.
820
821 2013-11-18 Tom Tromey <tromey@redhat.com>
822
823 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Split into
824 multiple lines.
825
826 2013-11-18 Jose E. Marchesi <jose.marchesi@oracle.com>
827
828 * sparc-tdep.c (sparc_is_annulled_branch_insn): New function.
829 * sparc-tdep.h: And its prototype.
830
831 * sparc64-linux-tdep.c (sparc64_linux_get_longjmp_target): New
832 function.
833 (sparc64_linux_init_abi): Register the get_longjmp_target hook.
834
835 2013-11-18 Pedro Alves <palves@redhat.com>
836
837 * dwarf2-frame.c (read_addr_from_reg): Remove stale comment and
838 use unpack_pointer.
839
840 2013-11-18 Joel Brobecker <brobecker@adacore.com>
841
842 * mi/mi-main.c (mi_cmd_list_features): Add "language-options"
843 to -list-features output.
844
845 2013-11-17 Joel Brobecker <brobecker@adacore.com>
846
847 * dwarf2expr.h (struct dwarf_expr_context_funcs)
848 <read_addr_from_reg>: Renames "read_reg".
849 * dwarf2-frame.c (read_addr_from_reg): Renames "read_reg".
850 Adjust comment.
851 (dwarf2_frame_ctx_funcs, execute_stack_op, dwarf2_frame_cache):
852 Use read_addr_from_reg in place of read_reg.
853 * dwarf2expr.c (execute_stack_op): Use read_addr_from_reg
854 in place of read_reg.
855 * dwarf2loc.c (dwarf_expr_read_addr_from_reg): Renames
856 dwarf_expr_read_reg.
857 (dwarf_expr_ctx_funcs): Replace dwarf_expr_read_reg
858 with dwarf_expr_read_addr_from_reg.
859 (needs_frame_read_addr_from_reg): Renames needs_frame_read_reg.
860 (needs_frame_ctx_funcs): Replace needs_frame_read_reg with
861 needs_frame_read_addr_from_reg.
862
863 2013-11-15 Jan Kratochvil <jan.kratochvil@redhat.com>
864
865 * NEWS (Changes in GDB 7.5) (New commands) (explore): Fix typo.
866
867 2013-11-15 Andreas Arnez <arnez@linux.vnet.ibm.com>
868
869 * dwarf2loc.c (chain_candidate): Prevent invoking memcpy with
870 NULL.
871
872 2013-11-15 Tom Tromey <tromey@redhat.com>
873
874 PR c++/16117:
875 * c-exp.y (lex_one_token): Add "is_quoted_name" argument.
876 (classify_name): Likewise. Prefer a field of "this" over a
877 filename.
878 (classify_inner_name, yylex): Update.
879
880 2013-11-15 Joel Brobecker <brobecker@adacore.com>
881
882 * dwarf2expr.h (struct dwarf_expr_context_funcs) <read_reg>:
883 Extend the documentation a bit.
884 <get_reg_value>: New field.
885 * dwarf2loc.c (dwarf_expr_get_reg_value)
886 (needs_frame_get_reg_value): New functions.
887 (dwarf_expr_ctx_funcs, needs_frame_ctx_funcs): Add "get_reg_value"
888 callback.
889 * dwarf2-frame.c (get_reg_value): New function.
890 (dwarf2_frame_ctx_funcs): Add "get_reg_value" callback.
891 * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_regval_type>:
892 Use new callback to compute result_val.
893
894 2013-11-15 Alan Modra <amodra@gmail.com>
895
896 * ppc64-tdep.c (ppc64_plt_entry_point): Renamed from..
897 (ppc64_desc_entry_point): ..this. Update comments here and at
898 call points.
899 (ppc64_standard_linkage1, ppc64_standard_linkage2,
900 ppc64_standard_linkage3): Update comments.
901 (ppc64_standard_linkage4, ppc64_standard_linkage5,
902 (ppc64_standard_linkage6, ppc64_standard_linkage7): New insn
903 patterns.
904 (ppc64_standard_linkage4_target): New function.
905 (ppc64_skip_trampoline_code): Skip ELFv2 patterns too.
906 * rs6000-tdep.c (skip_prologue): Skip ELFv2 r2 setup. Correct
907 nop match. Fix comment wrap.
908
909 2013-11-14 Pedro Alves <palves@redhat.com>
910
911 * infrun.c (handle_signal_stop): Move STOP_QUIETLY,
912 STOP_QUIETLY_REMOTE and 'stop_after_trap' handling earlier.
913
914 2013-11-14 Pedro Alves <palves@redhat.com>
915
916 * infrun.c (struct execution_control_state)
917 <stepped_after_stopped_by_watchpoint>: New field.
918 (get_inferior_stop_soon): New function.
919 (handle_inferior_event): 'stepped_after_stopped_by_watchpoint' was
920 moved to struct execution_control_state -- adjust. Use
921 get_inferior_stop_soon. Split TARGET_WAITKIND_STOPPED handling to
922 new function.
923 (handle_signal_stop): New function, factored out from
924 handle_inferior_event.
925
926 2013-11-14 Pedro Alves <palves@redhat.com>
927
928 * break-catch-sig.c (signal_catchpoint_explains_signal): Adjust to
929 return a boolean.
930 * breakpoint.c (bpstat_explains_signal): Adjust to return a
931 boolean.
932 (explains_signal_watchpoint, base_breakpoint_explains_signal):
933 Adjust to return a boolean.
934 * breakpoint.h (enum bpstat_signal_value): Delete.
935 (struct breakpoint_ops) <explains_signal>: New returns a boolean.
936 (bpstat_explains_signal): Likewise.
937 * infrun.c (handle_inferior_event) <random signal checks>:
938 bpstat_explains_signal now returns a boolean - adjust. No longer
939 consider hiding signals.
940
941 2013-11-14 Pedro Alves <palves@redhat.com>
942
943 * breakpoint.c (bpstat_explains_signal) <Moribund locations>:
944 Return BPSTAT_SIGNAL_PASS instead of BPSTAT_SIGNAL_HIDE.
945 (explains_signal_watchpoint): Return BPSTAT_SIGNAL_PASS instead of
946 BPSTAT_SIGNAL_HIDE.
947 (base_breakpoint_explains_signal): Return BPSTAT_SIGNAL_PASS
948 instead of BPSTAT_SIGNAL_HIDE.
949 * infrun.c (handle_inferior_event): Rework random signal checks.
950
951 2013-11-14 Pedro Alves <palves@redhat.com>
952
953 * infrun.c (struct execution_control_state): Remove
954 'random_signal' field.
955 (handle_syscall_event): Use bpstat_causes_stop instead of
956 bpstat_explains_signal. Don't set ecs->random_signal.
957 (handle_inferior_event): New 'random_signal' local.
958 <TARGET_WAITKIND_FORKED, TARGET_WAITKIND_VFORKED,
959 TARGET_WAITKIND_EXECD>: Use bpstat_causes_stop instead of
960 bpstat_explains_signal. Don't set ecs->random_signal.
961 <TARGET_WAITKIND_STOPPED>: Adjust to use local instead of
962 ecs->random_signal.
963
964 2013-11-14 Pedro Alves <palves@redhat.com>
965
966 * infrun.c (handle_inferior_event): Move comment from the
967 function's body to the function's description, adjusted.
968
969 2013-11-14 Pedro Alves <palves@redhat.com>
970
971 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>:
972 Handle STOP_QUIETLY_NO_SIGSTOP and STOP_QUIETLY_REMOTE here.
973 Assert we never fall through out of the TARGET_WAITKIND_LOADED
974 case.
975
976 2013-11-14 Tom Tromey <tromey@redhat.com>
977
978 * python/py-linetable.c (ltpy_has_line)
979 (ltpy_get_all_source_lines): Fix loop termination condition.
980
981 2013-11-14 Joel Brobecker <brobecker@adacore.com>
982
983 * mi/mi-parse.h (struct mi_parse) <language>: New field.
984 * mi/mi-main.c (mi_cmd_execute): Temporarily set language to
985 PARSE->LANGUAGE during command execution, if set.
986 * mi/mi-parse.c: Add "language.h" #include.
987 (mi_parse): Add parsing of "--language" command option.
988
989 * NEWS: Add entry mentioning the new "--language" command option.
990
991 2013-11-14 Pedro Alves <palves@redhat.com>
992 Joel Brobecker <brobecker@adacore.com>
993
994 * cli/cli-utils.h (extract_arg_const): Add declaration.
995 * cli/cli-utils.c (extract_arg_const): New function.
996 (extract_arg): Reimplement using extract_arg_const.
997
998 2013-11-14 Joel Brobecker <brobecker@adacore.com>
999
1000 * language.h: Add "symtab.h" #include.
1001
1002 2013-11-13 Doug Evans <xdje42@gmail.com>
1003
1004 * breakpoint.c (bpstat_check_breakpoint_conditions): For thread
1005 specific breakpoints, don't evaluate breakpoint condition if
1006 different thread.
1007
1008 2013-11-13 Keith Seitz <keiths@redhat.com>
1009
1010 PR c++/7935
1011 PR c++/10541
1012 * cp-support.c (insepct_type): Add support for substituting
1013 namespace aliases, too.
1014 * dwarf2read.c (scan_partial_symbols): Add a partial symbol
1015 for DW_TAG_imported_declaration.
1016 (add_partial_symbol): Likewise.
1017 (process_die): Handle namespace aliases with
1018 read_namespace_alias.
1019 (die_needs_namespace): Add DW_TAG_imported_declaration.
1020 (read_namespace_alias): New function.
1021 (load_partial_dies): Load DW_TAG_imported_declaration, too.
1022 (new_symbol_full): Handle DW_TAG_imported_declaration.
1023
1024 2013-11-13 Keith Seitz <keiths@redhat.com>
1025
1026 * p-exp.y (uptok): Make first parameter const.
1027 (yylex): Make `tokstart' and `tokptr' const.
1028 Don't copy the lexer input to a temporary buffer.
1029 Make `p' const.
1030 Remove const workaround for parse_escape.
1031 Create a temporary buffer for a convenience variable instead
1032 of doing in-place modification of the input.
1033 If a match is found with a different case from the input,
1034 do not change the input at all.
1035 Use `tmp' to construct the resultant stoken instead of
1036 `tokstart'.
1037
1038 2013-11-13 Doug Evans <xdje42@gmail.com>
1039
1040 * breakpoint.c (breakpoint_cond_eval): Fix and enhance comment.
1041
1042 2013-11-13 Joel Brobecker <brobecker@adacore.com>
1043
1044 * mi/mi-main.c (mi_cmd_list_features): Replace "info-ada-exceptions"
1045 entry with "ada-exceptions".
1046
1047 2013-11-13 Joel Brobecker <brobecker@adacore.com>
1048
1049 * symfile.c (reread_symbols): Move call to set_objfile_per_bfd
1050 after re-initialization of OBJFILE's obstack.
1051
1052 2013-11-12 Doug Evans <xdje42@gmail.com>
1053
1054 * breakpoint.c (bpstat_check_breakpoint_conditions): Assert
1055 bs->stop != 0 on entry. Update function comment. Simplify early
1056 exit for frame mismatch. Reindent rest of function.
1057
1058 2013-11-12 Andreas Arnez <arnez@linux.vnet.ibm.com>
1059
1060 * objc-lang.c (uniquify_strings): Prevent invoking qsort with
1061 NULL.
1062
1063 2013-11-12 Doug Evans <dje@google.com>
1064
1065 Work around gold/15646.
1066 * dwarf2read.c (read_index_from_section): Update comment.
1067 (struct dw2_symtab_iterator): New member global_seen.
1068 (dw2_symtab_iter_init): Initialize it.
1069 (dw2_symtab_iter_next): Skip duplicate global symbols.
1070 (dw2_expand_symtabs_matching): Ditto.
1071
1072 2013-11-12 Joel Brobecker <brobecker@adacore.com>
1073
1074 * mi/mi-cmds.h (mi_cmd_info_ada_exceptions): Add declaration.
1075 * mi/mi-cmds.c (mi_cmds): Add entry for -info-ada-exceptions
1076 command.
1077 * mi/mi-cmd-info.c: #include "ada-lang.c" and "arch-utils.c".
1078 (mi_cmd_info_ada_exceptions): New function.
1079 * mi/mi-main.c (mi_cmd_list_features): Add "info-ada-exceptions".
1080
1081 2013-11-12 Joel Brobecker <brobecker@adacore.com>
1082
1083 * ada-lang.h: #include "vec.h".
1084 (struct ada_exc_info): New.
1085 (ada_exc_info): New typedef.
1086 (DEF_VEC_O(ada_exc_info)): New vector.
1087 (ada_exceptions_list): Add declaration.
1088 * ada-lang.c (ada_is_exception_sym)
1089 (ada_is_non_standard_exception_sym, compare_ada_exception_info)
1090 (sort_remove_dups_ada_exceptions_list)
1091 (ada_exc_search_name_matches, ada_add_standard_exceptions)
1092 (ada_add_exceptions_from_frame, ada_add_global_exceptions)
1093 (ada_exceptions_list_1, ada_exceptions_list)
1094 (info_exceptions_command): New function.
1095 (_initialize_ada_language): Add "info exception" command.
1096
1097 2013-11-11 Phil Muldoon <pmuldoon@redhat.com>
1098
1099 PR python/15629
1100 * NEWS: Add linetable feature.
1101 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-linetable entries.
1102 * python/py-linetable.c: New file.
1103 * python/py-symtab.c (stpy_get_linetable): New function.
1104 * python/python-internal.h (symtab_to_linetable_object): Declare.
1105 (gdbpy_initialize_linetable): Ditto.
1106 * python/python.c (_initialize_python): Call
1107 gdbpy_initialize_linetable.
1108
1109 2013-11-11 Joel Brobecker <brobecker@adacore.com>
1110
1111 * ada-lang.c (create_ada_exception_catchpoint): Enhance
1112 the documentation of fields "except_string" and "condition".
1113 * mi/mi-cmd-catch.c (mi_cmd_catch_assert): Reallocate
1114 CONDITION on the heap before passing it to
1115 create_ada_exception_catchpoint.
1116 (mi_cmd_catch_exception): Likewise for EXCEPTION_NAME and
1117 CONDITION.
1118
1119 2013-11-11 Tom Tromey <tromey@redhat.com>
1120
1121 * config.in, configure: Rebuild.
1122 * configure.ac (HAVE_TKILL_SYSCALL): Check for "syscall".
1123
1124 2013-11-11 Joel Brobecker <brobecker@adacore.com>
1125
1126 * remote-sim.c (gdbsim_detach): Break declaration into
1127 shorter lines. No code change.
1128
1129 2013-11-11 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
1130
1131 * remote-sim.c (gdbsim_detach): Fix prototype.
1132
1133 2013-11-08 Doug Evans <dje@google.com>
1134
1135 * dwarf2read.c (dwarf2_read_debug): Change to unsigned int.
1136 (create_debug_types_hash_table): Only print debugging messages for
1137 each TU if dwarf2-read >= 2.
1138 (process_queue): Ditto.
1139 (_initialize_dwarf2_read): Make "set debug dwarf2-read" a zuinteger.
1140 Update doc string.
1141
1142 2013-11-08 Tom Tromey <tromey@redhat.com>
1143
1144 * configure: Rebuild.
1145 * configure.ac: Remove mentions of HAVE_MULTIPLE_PROC_FDS.
1146
1147 2013-11-08 Tom Tromey <tromey@redhat.com>
1148
1149 * configure, config.in: Rebuild.
1150 * configure.ac: Remove unused configury.
1151
1152 2013-11-08 Tom Tromey <tromey@redhat.com>
1153
1154 * m32c-tdep.c: Use gdb_string.h.
1155
1156 2013-11-08 Tom Tromey <tromey@redhat.com>
1157
1158 * configure, config.in: Rebuild.
1159 * configure.ac: Remove all link.h-related checks.
1160
1161 2013-11-08 Tom Tromey <tromey@redhat.com>
1162
1163 * acinclude.m4: Include common.m4.
1164 * common/common.m4: New file.
1165 * configure, config.in: Rebuild.
1166 * configure.ac: Use GDB_AC_COMMON.
1167
1168 2013-11-08 Doug Evans <dje@google.com>
1169
1170 * NEWS: Mention that "set debug symtab-create" now accepts a
1171 verbosity level.
1172 * buildsym.c (end_symtab_from_static_block): Call set_symtab_primary
1173 to set the symtab's primary flag.
1174 * jit.c (finalize_symtab): Ditto.
1175 * mdebugread.c (psymtab_to_symtab_1): Ditto.
1176 * symfile.c (allocate_symtab): Only print debugging messages for
1177 symtab_create_debug levels 2 and higher.
1178 * symtab.c (symtab_create_debug): Change type to unsigned int.
1179 (set_symtab_primary): New function.
1180 (_initialize_symtab): Change "set debug symtab-create" to a
1181 zuinteger option.
1182 * symtab.h (set_symtab_primary): Declare.
1183 (symtab_create_debug): Update decl.
1184
1185 2013-11-08 Tom Tromey <tromey@redhat.com>
1186
1187 * aix-thread.c (aix_thread_detach): Update.
1188 * corelow.c (core_detach): Update.
1189 * darwin-nat.c (darwin_detach): Update.
1190 * dec-thread.c (dec_thread_detach): Update.
1191 * gnu-nat.c (gnu_detach): Update.
1192 * go32-nat.c (go32_detach): Update.
1193 * inf-ptrace.c (inf_ptrace_detach): Update.
1194 * inf-ttrace.c (inf_ttrace_detach): Update.
1195 * linux-fork.c (linux_fork_detach): Update.
1196 * linux-fork.h (linux_fork_detach): Update.
1197 * linux-nat.c (linux_nat_detach): Update. Introduce "tem"
1198 local for const-correctness.
1199 * linux-thread-db.c (thread_db_detach): Update.
1200 * monitor.c (monitor_detach): Update.
1201 * nto-procfs.c (procfs_detach): Update.
1202 * procfs.c (procfs_detach): Update.
1203 * record.c (record_detach): Update.
1204 * record.h (record_detach): Update.
1205 * remote-m32r-sdi.c (m32r_detach): Update.
1206 * remote-mips.c (mips_detach): Update.
1207 * remote-sim.c (gdbsim_detach): Update.
1208 * remote.c (remote_detach_1, remote_detach)
1209 (extended_remote_detach): Update.
1210 * sol-thread.c (sol_thread_detach): Update.
1211 * target.c (target_detach): Make "args" const.
1212 (init_dummy_target): Update.
1213 * target.h (struct target_ops) <to_detach>: Make argument const.
1214 (target_detach): Likewise.
1215 * windows-nat.c (windows_detach): Update.
1216
1217 2013-11-07 Doug Evans <dje@google.com>
1218
1219 PR 11786
1220 * solib-svr4.c (svr4_exec_displacement): Ignore filesz, memsz, flags
1221 and align fields for PT_GNU_RELRO segments.
1222
1223 2013-11-07 Phil Muldoon <pmuldoon@redhat.com>
1224
1225 PR python/15747
1226 * python/py-cmd.c: Add COMPLETE_EXPRESSION constant.
1227
1228 2013-11-07 Phil Muldoon <pmuldoon@redhat.com>
1229
1230 * NEWS: Document Python temporary breakpoint support.
1231 * python/py-breakpoint.c (bppy_get_temporary): New function.
1232 (bppy_init): New keyword: temporary. Parse it and set breakpoint
1233 to temporary if True.
1234
1235 2013-11-07 Jose E. Marchesi <jose.marchesi@oracle.com>
1236
1237 * sparc-tdep.c (sparc_analyze_control_transfer): Assertion
1238 removed to allow analyzing unconditional branch instructions
1239 with PC-relative offsets of zero.
1240
1241 2013-11-07 Yao Qi <yao@codesourcery.com>
1242
1243 * mi/mi-cmd-var.c: Include "language.h".
1244 (mi_cmd_var_info_expression): Get language name from
1245 language_defn.
1246 * varobj.c (varobj_language_string): Remove.
1247 (variable_language): Remove declaration.
1248 (languages): Remove.
1249 (varobj_get_language): Change the type of return value.
1250 (variable_language): Remove.
1251 * varobj.h (enum varobj_languages): Remove.
1252 (varobj_language_string): Remove declaration.
1253 (varobj_get_language): Update declaration.
1254
1255 2013-11-07 Yao Qi <yao@codesourcery.com>
1256
1257 * language.h (struct language_defn) <la_natural_name>: New
1258 field.
1259 * ada-lang.c (ada_language_defn): Initialize field
1260 'la_natural_name'.
1261 * c-lang.c (c_language_defn): Likewise.
1262 (cplus_language_defn, asm_language_defn): Likewise.
1263 * d-lang.c (d_language_defn): Likewise.
1264 * f-lang.c (f_language_defn): Likewise.
1265 * go-lang.c (go_language_defn): Likewise.
1266 * jv-lang.c (java_language_defn): Likewise.
1267 * language.c (unknown_language_defn ): Likewise.
1268 (auto_language_defn): Likewise.
1269 * m2-lang.c (m2_language_defn): Likewise.
1270 * objc-lang.c (objc_language_defn): Likewise.
1271 * opencl-lang.c (opencl_language_defn): Likewise.
1272 * p-lang.c (pascal_language_defn): Likewise.
1273
1274 2013-11-07 Yao Qi <yao@codesourcery.com>
1275
1276 * language.c (language_str): Return const char *.
1277 (add_language): Add const to 'language_names'
1278 * language.h (struct language_defn) <la_name>: Add const.
1279 (language_str: Update declaration.
1280
1281 2013-11-06 Andreas Arnez <arnez@linux.vnet.ibm.com>
1282
1283 * s390-linux-nat.c (s390_read_description): Consider the TE field
1284 in the HWCAP for determining 'have_regset_tdb'.
1285
1286 2013-11-06 Will Newton <will.newton@linaro.org>
1287
1288 PR gdb/12866
1289 * dwarf2read.c (skip_one_die): Sanity check DW_AT_sibling
1290 values. (read_partial_die): Likewise.
1291
1292 2013-11-06 Muhammad Bilal <mbilal@codesourcery.com>
1293
1294 PR cli/16122
1295 * top.c (command_line_input): Unify interactivity tests to use
1296 input_from_terminal_p.
1297 * event-top.c (command_line_handler): Likewise.
1298
1299 2013-11-06 Yao Qi <yao@codesourcery.com>
1300
1301 * Makefile.in (check-perf): New target.
1302
1303 2013-11-05 Will Newton <will.newton@linaro.org>
1304
1305 PR gdb/7670
1306 * arm-tdep.c (print_fpu_flags): Use filtered output routines.
1307 (arm_print_float_info): Likewise.
1308
1309 2013-11-04 Anton Blanchard <anton@samba.org>
1310
1311 * target.c (memory_xfer_partial): Cap write to 4KB.
1312
1313 2013-11-01 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
1314
1315 * breakpoint.c (create_longjmp_master_breakpoint): Allow libc
1316 probe scan even when the arch provides no get_longjmp_target.
1317
1318 2013-10-31 Pedro Alves <palves@redhat.com>
1319
1320 * infrun.c (handle_syscall_event): Don't set or clear stop_signal.
1321 (handle_inferior_event) <TARGET_WAITKIND_FORKED,
1322 TARGET_WAITKIND_VFORKED>: Don't set stop_signal to
1323 GDB_SIGNAL_TRAP, or clear it. Pass GDB_SIGNAL_0 to
1324 bpstat_explains signal, instead of GDB_SIGNAL_TRAP.
1325 <bpstat handling>: If the bpstat chain wants the signal to be
1326 hidden, then set stop_signal to GDB_SIGNAL_0 instead of
1327 GDB_SIGNAL_TRAP.
1328
1329 2013-10-31 Andrew Burgess <aburgess@broadcom.com>
1330
1331 * breakpoint.c (update_watchpoint): Update error message and add
1332 an additional error message.
1333
1334 2013-10-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
1335
1336 * s390-tdep.h: Rename to...
1337 * s390-linux-tdep.h: ...here.
1338 * s390-tdep.c: Rename to...
1339 * s390-linux-tdep.c: ...here. Adjust #include.
1340 * s390-nat.c: Rename to...
1341 * s390-linux-nat.c: ...here. Adjust #include.
1342 * config/s390/s390.mh: Rename to...
1343 * config/s390/linux.mh: ...here. Reflect rename s390-nat.o ->
1344 s390-linux-nat.o.
1345 * configure.host: Reflect host rename "s390" -> "linux".
1346 * configure.tgt: Reflect rename s390-tdep.o -> s390-linux-tdep.o.
1347 * Makefile.in (ALL_TARGET_OBS): Likewise.
1348 (HFILES_NO_SRCDIR): Reflect rename s390-tdep.h ->
1349 s390-linux-tdep.h.
1350 (ALLDEPFILES): Reflect rename of .c files.
1351
1352 2013-10-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
1353
1354 * s390-nat.c: Whitespace cleanup.
1355 * s390-tdep.c: Likewise.
1356 * s390-tdep.h: Remove empty line at end of file.
1357
1358 2013-10-30 Maciej W. Rozycki <macro@codesourcery.com>
1359
1360 * linux-tdep.c (linux_corefile_thread_callback): Preinitialize
1361 siginfo_size.
1362
1363 2013-10-29 Tom Tromey <tromey@redhat.com>
1364
1365 * utils.c (reg): Move undefinition...
1366 * gdb_curses.h: ... here. Update comment to mention AIX.
1367
1368 2013-10-29 Nicolas Blanc <nicolas.blanc@intel.com>
1369
1370 * exec.h (add_target_sections_of_objfile): New declaration.
1371 * exec.c (add_target_sections_of_objfile): New function.
1372 * symfile.c (add_symbol_file_command): Update current target sections.
1373 (remove_symbol_file_command): New command.
1374 (symfile_free_objfile): New function.
1375 (_initialize_symfile): Register observer for free_objfile events.
1376 * NEWS: Add description of the remove-symbol-file command.
1377 * breakpoint.c (disable_breakpoints_in_freed_objfile): New function.
1378 * objfiles.c (free_objfile): Notify free_objfile.
1379 (is_addr_in_objfile): New function.
1380 * objfiles.h (is_addr_in_objfile): New declaration.
1381 * printcmd.c (clear_dangling_display_expressions): Act upon free_objfile
1382 events instead of solib_unloaded events.
1383 (_initialize_printcmd): Register observer for free_objfile instead
1384 of solib_unloaded notifications.
1385 * solib.c (remove_user_added_objfile): New function.
1386 (_initialize_symfile): Add remove-symbol-file.
1387
1388 2013-10-29 Andrew Burgess <aburgess@broadcom.com>
1389
1390 * infcmd.c (default_print_one_register_info): Use val_print to
1391 print all values even optimized out or unavailable ones. Don't
1392 try to print a raw form of optimized out or unavailable values.
1393
1394 2013-10-29 Yao Qi <yao@codesourcery.com>
1395
1396 * auto-load.c (auto_load_pspace_data_cleanup): Get data from
1397 parameter 'arg' instead of from program_space_data.
1398 * objfiles.c (objfiles_pspace_data_cleanup): Likewise.
1399 * solib-darwin.c (darwin_pspace_data_cleanup): Likewise.
1400 * solib-dsbt.c (dsbt_pspace_data_cleanup): Likewise.
1401 * solib-svr4.c (svr4_pspace_data_cleanup): Likewise.
1402 * inflow.c (inflow_inferior_data_cleanup): Get data from
1403 parameter 'arg' instead of inferior_data.
1404 * registry.h: Add comments.
1405
1406 2013-10-28 Pedro Alves <palves@redhat.com>
1407
1408 * breakpoint.c (watchpoints_triggered)
1409 <!target_stopped_data_address>: Hardcode return 1.
1410
1411 2013-10-28 Pedro Alves <palves@redhat.com>
1412
1413 * infrun.c (process_event_stop_test): Remove unnecessary scoping
1414 level and reindent.
1415
1416 2013-10-28 Pedro Alves <palves@redhat.com>
1417
1418 * infrun.c (process_event_stop_test): New function, factored out
1419 from handle_inferior_event.
1420 (handle_inferior_event): 'process_event_stop_test' is now a
1421 function instead of a goto label -- adjust.
1422
1423 2013-10-28 Pedro Alves <palves@redhat.com>
1424
1425 * infrun.c (handle_inferior_event): Move process_event_stop_test
1426 goto label to the else branch of the ecs->random_signal check,
1427 along with FRAME and GDBARCH re-fetching.
1428
1429 2013-10-28 Pedro Alves <palves@redhat.com>
1430
1431 * infrun.c (switch_back_to_stepped_thread): New function, factored
1432 out from handle_inferior_event.
1433 (handle_inferior_event): Adjust to call
1434 switch_back_to_stepped_thread. Call it also at the tail of the
1435 random signal handling, and return, instead of also handling
1436 random signals just before the stepping tests.
1437
1438 2013-10-28 Pedro Alves <palves@redhat.com>
1439
1440 * infrun.c (clear_stop_func): Delete.
1441 (handle_inferior_event): Don't call clear_stop_func and don't
1442 clear 'ecs->random_signal'.
1443
1444 2013-10-27 Yao Qi <yao@codesourcery.com>
1445
1446 * varobj.c (struct varobj_root) <lang>: Rename to 'lang_ops'.
1447 (varobj_create, varobj_get_path_expr): Update.
1448 (varobj_value_has_mutated, varobj_update): Likewise.
1449 (create_child_with_value, new_root_variable): Likewise.
1450 (number_of_children, name_of_variable): Likewise.
1451 (value_of_child, my_value_of_variable): Likewise.
1452 (varobj_value_is_changeable_p): Likewise.
1453
1454 2013-10-25 Yao Qi <yao@codesourcery.com>
1455
1456 * language.h (struct lang_varobj_ops): Declare.
1457 (struct language_defn) <la_varobj_ops>: New field.
1458 * ada-lang.c: Include "varobj.h"
1459 (defn ada_language_defn): Initialize field 'la_varobj_ops' with
1460 ada_varobj_ops.
1461 * c-lang.c: Include "varobj.h"
1462 (c_language_defn): Initialize field 'la_varobj_ops' with
1463 c_varobj_ops.
1464 (cplus_language_defn): Initialize field 'la_varobj_ops' with
1465 cplus_varobj_ops.
1466 (asm_language_defn): Initialize field 'la_varobj_ops' with
1467 default_varobj_ops.
1468 (minimal_language_defn): Likewise.
1469 * d-lang.c (d_language_defn): Likewise.
1470 * f-lang.c (f_language_defn): Likewise.
1471 * go-lang.c (go_language_defn): Likewise.
1472 * m2-lang.c (m2_language_defn): Likewise.
1473 * objc-lang.c (objc_language_defn): Likewise.
1474 * opencl-lang.c (opencl_language_defn): Likewise.
1475 * p-lang.c (pascal_language_defn): Likewise.
1476 * language.c (unknown_language_defn): Likewise.
1477 (auto_language_defn): Likewise.
1478 (local_language_defn): Likewise.
1479 * jv-lang.c (java_language_defn): Initialize field
1480 'la_varobj_ops' with java_varobj_ops.
1481 * varobj.c (varobj_create): Update.
1482 * varobj.h (default_varobj_ops): Define macro.
1483
1484 2013-10-25 Pedro Alves <palves@redhat.com>
1485
1486 * cp-valprint.c (cp_print_value_fields): No longer handle a NULL
1487 static field value.
1488 (cp_print_static_field): If the value is entirely optimized out,
1489 print <optimized out> here.
1490 * jv-valprint.c (java_print_value_fields): No longer handle a NULL
1491 static field value.
1492 * p-valprint.c (pascal_object_print_static_field): If the value is
1493 entirely optimized out, print <optimized out> here.
1494 * valops.c (do_search_struct_field)
1495 (value_struct_elt_for_reference): No longer handle a NULL static
1496 field value.
1497 * value.c (value_static_field): Return an optimized out value
1498 instead of NULL.
1499
1500 2013-10-25 Yao Qi <yao@codesourcery.com>
1501
1502 * remote.c (remote_traceframe_info): Return early if
1503 traceframe is not selected.
1504
1505 2013-10-25 Yao Qi <yao@codesourcery.com>
1506
1507 * tracepoint.c (traceframe_fun): Remove.
1508 (traceframe_sal): Remove.
1509 (set_traceframe_context): Add local variables.
1510
1511 2013-10-25 Joel Brobecker <brobecker@adacore.com>
1512
1513 * varobj.h (struct lang_varobj_ops): Remove spaces between '*'
1514 and parameter name.
1515
1516 2013-10-24 Maciej W. Rozycki <macro@codesourcery.com>
1517
1518 * linux-tdep.c (linux_corefile_thread_callback): Propagate any
1519 failure from register information collection.
1520
1521 2013-10-24 Maciej W. Rozycki <macro@codesourcery.com>
1522
1523 * linux-tdep.c (linux_corefile_thread_data): Remove `num_notes'
1524 member.
1525 (linux_corefile_thread_callback): Update accordingly.
1526 (linux_make_corefile_notes): Likewise.
1527
1528 2013-10-24 Pedro Alves <palves@redhat.com>
1529
1530 * NEWS (New options): Mention set/show startup-with-shell.
1531 * config/alpha/nm-osf3.h (START_INFERIOR_TRAPS_EXPECTED): Set to 2
1532 instead of 3.
1533 * fork-child.c (fork_inferior, startup_inferior): Handle 'set
1534 startup-with-shell'.
1535 (show_startup_with_shell): New function.
1536 (_initialize_fork_child): Register the set/show startup-with-shell
1537 commands.
1538 * inf-ptrace.c (inf_ptrace_create_inferior): Remove comment.
1539 * inf-ttrace.c (inf_ttrace_him): Remove comment.
1540 * procfs.c (procfs_init_inferior): Remove comment.
1541 * infcmd.c (startup_with_shell): New global.
1542 * inferior.h (startup_with_shell): Declare global.
1543 (STARTUP_WITH_SHELL): Delete.
1544 (START_INFERIOR_TRAPS_EXPECTED): Set to 1 by default instead of 2.
1545
1546 2013-10-23 Pedro Alves <palves@redhat.com>
1547
1548 * common/gdb_signals.h (gdb_signal_to_symbol_string): Declare.
1549 * common/signals.c: Include "gdb_assert.h".
1550 (signals): New field 'symbol'.
1551 (SET): Use the 'symbol' parameter.
1552 (gdb_signal_to_symbol_string): New function.
1553 * infrun.c (handle_inferior_event) <random signal>: In debug
1554 output, print the random signal enum as string in addition to its
1555 number.
1556 * target/waitstatus.c (target_waitstatus_to_string): Print the
1557 signal's enum value as string instead of the (POSIX) signal name.
1558
1559 2013-10-23 Gary Benson <gbenson@redhat.com>
1560
1561 PR 16013
1562 * common/linux-osdata.c (command_from_pid): Reduced size of cmd
1563 from 32 to 18. Adjusted fscanf format string accordingly.
1564 (Avoids leaving cmd unterminated.)
1565 (print_sockets): Do not parse tlen, inode, sl, timeout, txq, rxq,
1566 trun, retn or extra. (Avoids leaving extra unterminated.) Check
1567 that local_address and remote_address will not overflow.
1568 (linux_xfer_osdata_modules): Parse lines using strtok to avoid
1569 leaving dependencies unterminated. Parse size as "%u" to match
1570 definition.
1571
1572 2013-10-22 Pedro Alves <palves@redhat.com>
1573
1574 * infrun.c (handle_inferior_event) <thread hop>: Don't clear or
1575 set ecs->random signal.
1576
1577 2013-10-22 Pedro Alves <palves@redhat.com>
1578
1579 * infrun.c (keep_going): Update comments.
1580
1581 2013-10-22 Pedro Alves <palves@redhat.com>
1582
1583 * remote.c (remote_parse_stop_reply) <'T'/'S'/'X' replies>: Map
1584 invalid signal numbers to GDB_SIGNAL_UNKNOWN.
1585
1586 2013-10-22 Pedro Alves <palves@redhat.com>
1587
1588 * include/gdb/signals.def (TARGET_EXC_BAD_ACCESS): Rename to
1589 GDB_EXC_BAD_ACCESS.
1590 (TARGET_EXC_BAD_INSTRUCTION): Rename to GDB_EXC_BAD_INSTRUCTION.
1591 (TARGET_EXC_ARITHMETIC): Rename to GDB_EXC_ARITHMETIC.
1592 (TARGET_EXC_EMULATION): Rename to GDB_EXC_EMULATION.
1593 (TARGET_EXC_SOFTWARE): Rename to GDB_EXC_SOFTWARE.
1594 (TARGET_EXC_BREAKPOINT): Rename to GDB_EXC_BREAKPOINT.
1595 (GDB_SIGNAL_LAST): Change description string.
1596 * common/signals.c (gdb_signal_from_host, do_gdb_signal_to_host):
1597 Adjust to signal renaming.
1598 * darwin-nat.c (darwin_decode_message): Likewise.
1599
1600 2013-10-22 Jose E. Marchesi <jose.marchesi@oracle.com>
1601
1602 * MAINTAINERS (Write After Approval): Add myself to the list.
1603
1604 2013-10-18 Andrew Burgess <aburgess@broadcom.com>
1605
1606 * breakpoint.c (update_watchpoint): If hardware watchpoints are
1607 forced off, downgrade them to software watchpoints if possible,
1608 and error out if not possible.
1609 (watch_command_1): Move watchpoint type selection closer to
1610 watchpoint creation, and extend the comments.
1611
1612 2013-10-18 Pedro Alves <palves@redhat.com>
1613
1614 PR gdb/16062
1615 * infrun.c (handle_inferior_event): Keep going if we got a random
1616 signal we should not stop for, instead of falling through to the
1617 step tests.
1618
1619 2013-10-18 Yao Qi <yao@codesourcery.com>
1620
1621 * c-varobj.c (cplus_number_of_children): Fix indentation.
1622
1623 2013-10-17 Tom Tromey <tromey@redhat.com>
1624
1625 PR gdb/15995:
1626 * printcmd.c (printcmd): Call gdb_flush.
1627
1628 2013-10-17 Tom Tromey <tromey@redhat.com>
1629
1630 * elfread.c (struct elfinfo) <stabindexsect>: Remove.
1631 (elf_locate_sections): Update.
1632
1633 2013-10-17 Yao Qi <yao@codesourcery.com>
1634
1635 * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
1636 * ada-varobj.c: Remove the include of ada-varobj.h.
1637 (ada_varobj_get_number_of_children): Declare.
1638 (ada_varobj_get_name_of_child): Make it static.
1639 (ada_varobj_get_path_expr_of_child): Likewise.
1640 (ada_varobj_get_value_of_child): Likewise.
1641 (ada_varobj_get_type_of_child): Likewise.
1642 (ada_varobj_get_value_of_array_variable): Likewise.
1643 * ada-varobj.h: Remove.
1644
1645 2013-10-17 Yao Qi <yao@codesourcery.com>
1646
1647 * Makefile.in (SFILES): Add c-varobj.c and jv-varobj.c.
1648 (COMMON_OBS): Add c-varobj.o and jv-varobj.o.
1649 * ada-varobj.c: Include "varobj.h".
1650 (ada_number_of_children): New. Moved from varobj.c.
1651 (ada_name_of_variable, ada_name_of_child): Likewise.
1652 (ada_path_expr_of_child, ada_value_of_child): Likewise.
1653 (ada_type_of_child, ada_value_of_variable): Likewise.
1654 (ada_value_is_changeable_p, ada_value_has_mutated): Likewise.
1655 (ada_varobj_ops): New.
1656 * c-varobj.c, jv-varobj.c: New file. Moved from varobj.c.
1657 * gdbtypes.c (get_target_type): New. Moved from varobj.c.
1658 * gdbtypes.h (get_target_type): Declare.
1659 * varobj.c: Remove the inclusion of "ada-varobj.h" and
1660 "ada-lang.h".
1661 (ANONYMOUS_STRUCT_NAME): Move it to c-varobj.c.
1662 (ANONYMOUS_UNION_NAME): Likewise.
1663 (get_type, get_value_type, get_target_type): Remove declarations.
1664 (value_get_print_value, varobj_value_get_print_value): Likewise.
1665 (c_number_of_children, c_name_of_variable): Likewise.
1666 (c_name_of_child, c_path_expr_of_child): Likewise.
1667 (c_value_of_child, c_type_of_child): Likewise.
1668 (c_value_of_variable, cplus_number_of_children): Likewise.
1669 (cplus_class_num_children, cplus_name_of_variable): Likewise.
1670 (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
1671 (cplus_value_of_child, cplus_type_of_child): Likewise.
1672 (cplus_value_of_variable, java_number_of_children): Likewise.
1673 (java_name_of_variable, java_name_of_child): Likewise.
1674 (java_path_expr_of_child, java_value_of_child): Likewise.
1675 (java_type_of_child, java_value_of_variable): Likewise.
1676 (ada_number_of_children, ada_name_of_variable): Likewise.
1677 (ada_name_of_child, ada_path_expr_of_child): Likewise.
1678 (ada_value_of_child, ada_type_of_child): Likewise.
1679 (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
1680 (ada_value_has_mutated): Likewise.
1681 (struct language_specific): Move it to varobj.h.
1682 (CPLUS_FAKE_CHILD): Move it to varobj.h.
1683 (restrict_range): Rename it varobj_restrict_range. Make it extern.
1684 Callers update.
1685 (get_path_expr_parent): Rename it to varobj_get_path_expr_parent.
1686 Make it extern.
1687 (is_anonymous_child): Move it to c-varobj.c and rename to
1688 varobj_is_anonymous_child. Caller update.
1689 (get_type): Move it to c-varobj.c.
1690 (get_value_type): Rename it varobj_get_value_type. Make it
1691 extern.
1692 (get_target_type): Move it gdbtypes.c.
1693 (varobj_formatted_print_options): New function.
1694 (value_get_print_value): Rename it to
1695 varobj_value_get_print_value and make it extern.
1696 (varobj_value_is_changeable_p): Make it extern.
1697 (adjust_value_for_child_access): Move it to c-varobj.c.
1698 (default_value_is_changeable_p): Rename it to
1699 varobj_default_value_is_changeable_p. Make it extern.
1700 (c_number_of_children, c_name_of_variable): Move it to c-varobj.c
1701 (c_name_of_child, c_path_expr_of_child): Likewise.
1702 (c_value_of_child, c_type_of_child): Likewise.
1703 (c_value_of_variable, cplus_number_of_children): Likewise.
1704 (cplus_class_num_children, cplus_name_of_variable): Likewise.
1705 (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
1706 (cplus_value_of_child, cplus_type_of_child): Likewise.
1707 (cplus_value_of_variable): Likewise.
1708 (java_number_of_children, java_name_of_variable): Move it to jv-varobj.c.
1709 (java_name_of_child, java_path_expr_of_child): Likewise.
1710 (java_value_of_child, java_type_of_child): Likewise.
1711 (java_value_of_variable): Likewise.
1712 (ada_number_of_children, ada_name_of_variable): Move it to ada-varobj.c.
1713 (ada_name_of_child, ada_path_expr_of_child): Likewise.
1714 (ada_value_of_child, ada_type_of_child): Likewise.
1715 (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
1716 (ada_value_has_mutated): Likewise.
1717 * varobj.h (CPLUS_FAKE_CHILD): New macro, moved from varobj.c.
1718 (struct lang_varobj_ops): New. Renamed by 'struct language_specific'.
1719 (c_varobj_ops, cplus_varobj_ops): Declare.
1720 (java_varobj_ops, ada_varobj_ops): Declare.
1721 (varobj_default_value_is_changeable_p): Declare.
1722 (varobj_value_is_changeable_p): Declare.
1723 (varobj_get_value_type, varobj_is_anonymous_child): Declare.
1724 (varobj_get_path_expr_parent): Declare.
1725 (varobj_value_get_print_value): Declare.
1726 (varobj_formatted_print_options): Declare.
1727 (varobj_restrict_range): Declare.
1728
1729 2013-10-17 Luis Machado <lgustavo@codesourcery.com>
1730
1731 * target/waitstatus.h (target_waitkind): Remove spurious
1732 character from the comments.
1733
1734 2013-10-17 Joel Brobecker <brobecker@adacore.com>
1735
1736 * gdbarch.sh (get_longjmp_target): Add method documentation.
1737 * gdbarch.h: Regenerate.
1738
1739 2013-10-16 Tom Tromey <tromey@redhat.com>
1740
1741 * dbxread.c (read_dbx_symtab) <bss_ext_symbol>: Remove unused
1742 label.
1743
1744 2013-10-16 Luis Machado <lgustavo@codesourcery.com>
1745
1746 * gcore.in: Call GDB using the full path to the gcore script.
1747 Error out if the GDB binary is not found.
1748
1749 2013-10-16 Sergio Durigan Junior <sergiodj@redhat.com>
1750
1751 PR gdb/16014
1752 * dwarf2read.c (dw2_get_real_path): Remove unnecessary call to
1753 sizeof.
1754
1755 2013-10-16 Sergio Durigan Junior <sergiodj@redhat.com>
1756
1757 PR gdb/16042
1758 * target.c (target_disable_btrace): Fix invalid return value for
1759 void function.
1760 (target_teardown_btrace): Likewise.
1761
1762 2013-10-14 Yao Qi <yao@codesourcery.com>
1763
1764 * varobj.c (struct varobj): Move most of the fields to
1765 varobj.h.
1766 (struct varobj_dynamic): New struct.
1767 (varobj_get_display_hint) [HAVE_PYTHON]: Adjust.
1768 (varobj_has_more): Likewise.
1769 (dynamic_varobj_has_child_method): Likewise.
1770 (update_dynamic_varobj_children): Likewise.
1771 (varobj_get_num_children): Likewise.
1772 (varobj_list_children, varobj_pretty_printed_p): Likewise.
1773 (install_new_value_visualizer): Likewise.
1774 (install_new_value_visualizer, install_new_value): Likewise.
1775 (varobj_update, new_variable, free_variable): Likewise.
1776 (my_value_of_variable, value_get_print_value): Likewise.
1777 (install_visualizer): Change the type of parameter 'var' to
1778 'struct varobjd_dynamic *'. Callers update.
1779 * varobj.h (struct varobj): Moved from varobj.c.
1780 (struct varobj) <dynamic>: New field.
1781
1782 2013-10-13 Sandra Loosemore <sandra@codesourcery.com>
1783
1784 * nios2-tdep.c (nios2_reg_names): Use "sstatus" rather than "ba"
1785 as the preferred name of r30.
1786 * nios2-linux-tdep.c (reg_offsets): Likewise.
1787 * features/nios2-cpu.xml: Likewise.
1788 * features/nios2-linux.c: Regenerated.
1789 * features/nios2.c: Regenerated.
1790 * regformats/nios2-linux.dat: Regenerated.
1791
1792 2013-10-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1793
1794 Canonicalize directories for EXEC_FILENAME.
1795 * exec.c (exec_file_attach): Use gdb_realpath_keepfile for
1796 exec_filename.
1797 * utils.c (gdb_realpath_keepfile): New function.
1798 * utils.h (gdb_realpath_keepfile): New declaration.
1799
1800 2013-10-11 Doug Evans <dje@google.com>
1801
1802 * Makefile.in (GDBFLAGS): New variable.
1803 (run): New rule.
1804
1805 2013-10-11 Joel Brobecker <brobecker@adacore.com>
1806
1807 * NEWS: Add entry documenting the new "-catch-assert" and
1808 "-catch-exception" GDB/MI commands.
1809
1810 2013-10-11 Joel Brobecker <brobecker@adacore.com>
1811
1812 * breakpoint.h (init_ada_exception_breakpoint): Add parameter
1813 "enabled".
1814 * breakpoint.c (init_ada_exception_breakpoint): Add parameter
1815 "enabled". Set B->ENABLE_STATE accordingly.
1816 * ada-lang.h (ada_exception_catchpoint_kind): Move here from
1817 ada-lang.c.
1818 (create_ada_exception_catchpoint): Add declaration.
1819 * ada-lang.c (ada_exception_catchpoint_kind): Move to ada-lang.h.
1820 (create_ada_exception_catchpoint): Make non-static. Add new
1821 parameter "disabled". Use it in call to
1822 init_ada_exception_breakpoint.
1823 (catch_ada_exception_command): Add parameter "enabled" in call
1824 to create_ada_exception_catchpoint.
1825 (catch_assert_command): Likewise.
1826
1827 * mi/mi-cmds.h (mi_cmd_catch_assert, mi_cmd_catch_exception):
1828 Add declarations.
1829 * mi/mi-cmds.c (mi_cmds): Add the "catch-assert" and
1830 "catch-exception" commands.
1831 * mi/mi-cmd-catch.c: Add #include "ada-lang.h".
1832 (mi_cmd_catch_assert, mi_cmd_catch_exception): New functions.
1833
1834 2013-10-11 Joel Brobecker <brobecker@adacore.com>
1835
1836 * ada-lang.c (enum ada_exception_catchpoint_kind): Renames
1837 "enum exception_catchpoint_kind". Replace the "ex_" prefix
1838 of all its enumerates with "ada_". Update the rest of this
1839 file throughout.
1840
1841 2013-10-11 Joel Brobecker <brobecker@adacore.com>
1842
1843 * ada-lang.c (ada_decode_exception_location): Delete.
1844 (create_ada_exception_catchpoint): Remove arguments "sal",
1845 "addr_string" and "ops". Add argument "ex_kind" instead.
1846 Adjust implementation accordingly, calling ada_exception_sal
1847 to get the entities it no longer gets passed as arguments.
1848 Document the function's arguments.
1849 (catch_ada_exception_command): Use catch_ada_exception_command_split
1850 instead of ada_decode_exception_location, and update call to
1851 create_ada_exception_catchpoint.
1852 (catch_ada_assert_command_split): Renames
1853 ada_decode_assert_location. Remove parameters "addr_string" and
1854 "ops", and now returns void. Adjust implementation accordingly.
1855 Update the function documentation.
1856 (catch_assert_command): Use catch_ada_assert_command_split
1857 instead of ada_decode_assert_location. Update call to
1858 create_ada_exception_catchpoint.
1859
1860 2013-10-11 Joel Brobecker <brobecker@adacore.com>
1861
1862 * utils.h (perror_warning_with_name): Add declaration.
1863 * utils.c (perror_warning_with_name): New function.
1864 * cli/cli-cmds.c (source_script_with_search): Add call to
1865 perror_warning_with_name if from_tty is nul.
1866
1867 2013-10-11 Joel Brobecker <brobecker@adacore.com>
1868
1869 * utils.c (perror_string): New function, extracted out of
1870 throw_perror_with_name.
1871 (throw_perror_with_name): Rework to use perror_string.
1872
1873 2013-10-11 Yao Qi <yao@codesourcery.com>
1874
1875 * remote.c (discard_pending_stop_replies_in_queue): Update
1876 declaration.
1877 (struct stop_reply) <rs>: New field.
1878 (remove_stop_reply_of_remote_state): New function.
1879 (discard_pending_stop_replies_in_queue): Add parameter 'rs'.
1880 Callers update. Pass remove_stop_reply_of_remote_state to
1881 QUEUE_iterate.
1882 (remote_parse_stop_reply): Initialize field 'rs'.
1883
1884 2013-10-10 Will Newton <will.newton@linaro.org>
1885
1886 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
1887 linux_init_abi.
1888
1889 2013-10-10 Joel Brobecker <brobecker@adacore.com>
1890
1891 * cli/cli-cmds.c (show_baud_rate): Moved to serial.c as
1892 serial_baud_show_cmd.
1893 (_initialize_cli_cmds): Delete the code creating the
1894 "set/show remotebaud" commands.
1895 * serial.c (baud_rate): Move here from top.c.
1896 (serial_baud_show_cmd): Move here from cli/cli-cmds.c.
1897 (_initialize_serial): Create "set/show serial baud" commands.
1898 Add "set/show remotebaud" command aliases.
1899 * top.c (baud_rate): Moved to serial.c.
1900 * NEWS: Document the new "set/show serial baud" commands,
1901 replacing "set/show remotebaud".
1902
1903 2013-10-09 Pedro Alves <palves@redhat.com>
1904
1905 * breakpoint.c (insert_bp_location): Use memory_error_message to
1906 build the memory error string.
1907 * c-lang.c: Include "gdbcore.h".
1908 (c_get_string): Use memory_error to throw error.
1909 (target_xfer_memory_error): Delete.
1910 (memory_error_message): New, factored out from
1911 target_xfer_memory_error.
1912 (memory_error): Change parameter type to target_xfer_error.
1913 Rewrite.
1914 (read_memory): Use memory_error instead of
1915 target_xfer_memory_error.
1916 * gdbcore.h: Include "target.h".
1917 (memory_error): Change parameter type to target_xfer_error.
1918 (memory_error_message): Declare function.
1919 * target.c (target_read_memory, target_read_stack)
1920 (target_write_memory, target_write_raw_memory): Return
1921 TARGET_XFER_E_IO on error. Adjust comments.
1922 (get_target_memory): Pass TARGET_XFER_E_IO to memory_error,
1923 instead of EIO.
1924 * target.h (target_read, target_insert_breakpoint)
1925 (target_remove_breakpoint): Adjust comments.
1926 * valprint.c (partial_memory_read): Rename parameter, and adjust
1927 comment.
1928 (val_print_string): Use memory_error_message to build the memory
1929 error string.
1930
1931 2013-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
1932
1933 * common/filestuff.c (gdb_fopen_cloexec): Remove initialization of
1934 result variable. Rename variable fopen_e_ever_failed to
1935 fopen_e_ever_failed_einval. Retry fopen only for errno EINVAL.
1936
1937 2013-10-09 Pedro Alves <palves@redhat.com>
1938
1939 * monitor.c (monitor_write_memory, monitor_write_memory_bytes)
1940 (monitor_write_memory_longlongs, monitor_write_memory_block):
1941 Constify 'myaddr' parameter.
1942 (monitor_xfer_memory): Adjust interface as monitor_xfer_partial
1943 helper.
1944 (monitor_xfer_partial): New function.
1945 (init_base_monitor_ops): Don't install a deprecated_xfer_memory
1946 hook. Install a to_xfer_partial hook.
1947
1948 2013-10-09 Tom Tromey <tromey@redhat.com>
1949
1950 * dwarf2read.c (dwarf2_get_dwz_file): Update for type change in
1951 bfd_get_alt_debug_link_info.
1952
1953 2013-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
1954
1955 New flag OBJF_NOT_FILENAME.
1956 * auto-load.c (auto_load_objfile_script): Check also OBJF_NOT_FILENAME.
1957 * jit.c (jit_object_close_impl): Use OBJF_NOT_FILENAME for
1958 allocate_objfile.
1959 (jit_bfd_try_read_symtab): Use OBJF_NOT_FILENAME for
1960 symbol_file_add_from_bfd.
1961 * jv-lang.c (get_dynamics_objfile): Use OBJF_NOT_FILENAME for
1962 allocate_objfile.
1963 * objfiles.c (allocate_objfile): Assert OBJF_NOT_FILENAME if NAME is
1964 NULL.
1965 * objfiles.h (OBJF_NOT_FILENAME): New.
1966
1967 2013-10-08 Tom Tromey <tromey@redhat.com>
1968
1969 * Makefile.in (SFILES): Add build-id.c.
1970 (HFILES_NO_SRCDIR): Add build-id.h.
1971 * build-id.c: New file, largely from elfread.c. Modified
1972 most functions.
1973 * build-id.h: New file.
1974 * dwarf2read.c (dwarf2_get_dwz_file): Update for change to
1975 bfd_get_alt_debug_link_info. Verify dwz file's build-id.
1976 Search for dwz file using build-id.
1977 * elfread.c (build_id_bfd_get, build_id_verify)
1978 (build_id_to_debug_filename, find_separate_debug_file): Remove.
1979
1980 2013-10-08 Joel Brobecker <brobecker@adacore.com>
1981
1982 * ada-lang.c (compare_names_with_case): Renamed from
1983 compare_names, adding a new parameter "casing" and its handling.
1984 New function documentation.
1985 (compare_names): New function, implemented using
1986 compare_names_with_case.
1987
1988 2013-10-08 Joel Brobecker <brobecker@adacore.com>
1989
1990 * ada-lang.c (ada_exception_sal): Remove advance declaration.
1991
1992 2013-10-07 Tom Tromey <tromey@redhat.com>
1993
1994 * objfiles.c (free_objfile_per_bfd_storage): Delete the
1995 demangled_names_hash.
1996 (free_objfile): Don't delete the demangled_names_hash.
1997 * objfiles.h (struct objfile_per_bfd_storage)
1998 <demangled_names_hash>: New field.
1999 (struct objfile) <demangled_names_hash>: Move to
2000 objfile_per_bfd_storage.
2001 * symfile.c (reread_symbols): Don't delete the
2002 demangled_names_hash.
2003 * symtab.c (create_demangled_names_hash): Update.
2004 (symbol_set_names): Update.
2005
2006 2013-10-07 Tom Tromey <tromey@redhat.com>
2007
2008 * gdb_bfd.c (struct gdb_bfd_data) <relocation_computed,
2009 needs_relocations>: New fields.
2010 (gdb_bfd_requires_relocations): New function.
2011 * gdb_bfd.h (gdb_bfd_requires_relocations): Declare.
2012 * objfiles.c (get_objfile_bfd_data): Disallow sharing if
2013 the BFD needs relocations applied.
2014
2015 2013-10-07 Pedro Alves <palves@redhat.com>
2016
2017 PR breakpoints/11568
2018 * breakpoint.c (remove_threaded_breakpoints): Say "no longer in
2019 the thread list" instead of "gone".
2020
2021 2013-10-06 Sergio Durigan Junior <sergiodj@redhat.com>
2022
2023 * NEWS: Mention new convenience variable $_exitsignal.
2024 * corelow.c (core_open): Reset exit convenience variables. Set
2025 $_exitsignal to the uncaught signal which generated the corefile.
2026 * infrun.c (handle_inferior_event): Reset exit convenience
2027 variables. Set $_exitsignal for TARGET_WAITKIND_SIGNALLED.
2028 (clear_exit_convenience_vars): New function.
2029 * inferior.h (clear_exit_convenience_vars): New prototype.
2030
2031 2013-10-06 Yao Qi <yao@codesourcery.com>
2032
2033 * varobj.h: Add comments to enum varobj_languages.
2034
2035 2013-10-04 Doug Evans <dje@google.com>
2036
2037 Add support for DWP file format version 2.
2038 * NEWS: Mention support for DWP file format version 2.
2039 * dwarf2read.c (dwarf2_section_info): Convert asection field to a
2040 union of asection, containing_section. New fields virtual_offset
2041 and is_virtual. Change type of readin filed from int to char.
2042 (dwo_sections, dwo_file): Tweak comments.
2043 (dwp_v2_section_ids): New enum.
2044 (dwp_sections): New fields abbrev, info, line, loc, macinfo, macro,
2045 str_offsets, types.
2046 (virtual_v1_dwo_sections): Renamed from virtual_dwo_sections.
2047 All uses updated.
2048 (virtual_v2_dwo_sections): New struct.
2049 (dwp_hash_table): New fields version, nr_columns. Change type of
2050 section_pool field to a union.
2051 (dwp_file): New field version.
2052 (dwarf2_has_info): Check for virtual sections.
2053 (get_containing_section): New function.
2054 (get_section_bfd_owner, get_section_bfd_section): Call it.
2055 (dwarf2_locate_sections): Update.
2056 (dwarf2_section_empty_p): Update.
2057 (dwarf2_read_section): Handle virtual sections.
2058 (locate_dwz_sections): Update.
2059 (create_dwp_hash_table): Document and handle V2 format.
2060 (locate_v1_virtual_dwo_sections): Renamed from
2061 locate_virtual_dwo_sections and update. All callers updated.
2062 (create_dwo_unit_in_dwp_v1): Renamed from create_dwo_in_dwp.
2063 Delete arg htab. Rename arg section_index to unit_index.
2064 All callers updated.
2065 (MAX_NR_V1_DWO_SECTIONS): Renamed from MAX_NR_DWO_SECTIONS.
2066 All uses updated.
2067 (create_dwp_v2_section, create_dwo_unit_in_dwp_v2): New functions.
2068 (lookup_dwo_unit_in_dwp): Add V2 support.
2069 (dwarf2_locate_dwo_sections): Update.
2070 (dwarf2_locate_common_dwp_sections): Renamed from
2071 dwarf2_locate_dwp_sections and update. All callers updated.
2072 (dwarf2_locate_v2_dwp_sections): New function.
2073 (open_and_init_dwp_file): Add V2 support.
2074 (read_str_index): New locals str_section, str_offsets_section.
2075
2076 2013-10-04 Pedro Alves <palves@redhat.com>
2077
2078 * common/ptid.c (null_ptid, minus_one_ptid, ptid_build)
2079 (pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid)
2080 (ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p): Replace
2081 describing comments with references to ptid.h.
2082 * common/ptid.h: Remove intro description of constructors,
2083 accessors and predicates.
2084 (struct ptid): Reformat.
2085 (minus_one_ptid, ptid_build, pid_to_ptid, ptid_get_pid)
2086 (ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid): Change
2087 describing comments.
2088
2089 2013-10-04 Joel Brobecker <brobecker@adacore.com>
2090
2091 * aix-thread.c (sync_threadlists): Add missing ')' in call
2092 to ptid_build.
2093
2094 2013-10-04 Joel Brobecker <brobecker@adacore.com>
2095
2096 * procfs.c (procfs_init_inferior): Fix typo causing the build
2097 to fail.
2098
2099 2013-10-04 Joel Brobecker <brobecker@adacore.com>
2100
2101 * aix-thread.c (ptrace32): Remove cast to addr_ptr.
2102
2103 2013-10-04 Joel Brobecker <brobecker@adacore.com>
2104
2105 * mi/mi-main.c (run_one_inferior): Add function description.
2106 Make ARG a pointer to an integer whose value determines whether
2107 we should "run" or "start" the program.
2108 (mi_cmd_exec_run): Add handling of the "--start" option.
2109 Reject all other command-line options.
2110 * NEWS: Add entry for "-exec-run"'s new "--start" option.
2111
2112 2013-10-04 Yao Qi <yao@codesourcery.com>
2113
2114 * remote-notif.h (REMOTE_NOTIF_ID): New enum.
2115 (struct notif_client) <pending_event>: Moved
2116 to struct remote_notif_state.
2117 <id>: New field.
2118 (struct remote_notif_state) <pending_event>: New field.
2119 (notif_event_xfree): Declare.
2120 * remote-notif.c (handle_notification): Adjust.
2121 (notif_event_xfree): New function.
2122 (do_notif_event_xfree): Call notif_event_xfree.
2123 (remote_notif_state_xfree): Call notif_event_xfree to free
2124 each element in field pending_event.
2125 * remote.c (discard_pending_stop_replies): Remove declaration.
2126 (discard_pending_stop_replies_in_queue): Declare.
2127 (remote_close): Call discard_pending_stop_replies_in_queue
2128 instead of discard_pending_stop_replies.
2129 (remote_start_remote): Adjust.
2130 (stop_reply_xfree): Call notif_event_xfree.
2131 (notif_client_stop): Adjust initialization.
2132 (remote_notif_remove_all): Rename it to ...
2133 (remove_stop_reply_for_inferior): ... this. Update comments.
2134 Don't check INF is NULL.
2135 (discard_pending_stop_replies): Return early if notif_state is
2136 NULL. Adjust. Don't check INF is NULL.
2137 (remote_notif_get_pending_events): Adjust.
2138 (discard_pending_stop_replies_in_queue): New function.
2139 (remote_wait_ns): Likewise.
2140
2141 2013-10-04 Yao Qi <yao@codesourcery.com>
2142
2143 * remote-notif.c (DECLARE_QUEUE_P): Remove.
2144 (notif_queue): Remove.
2145 (remote_notif_process): Add one parameter 'notif_queue'.
2146 Update comments. Callers update.
2147 (remote_async_get_pending_events_token): Remove.
2148 (remote_notif_register_async_event_handler): Remove.
2149 (remote_notif_unregister_async_event_handler): Remove.
2150 (handle_notification): Add parameter 'notif_queue'. Update
2151 comments. Callers update.
2152 (notif_xfree): Remove.
2153 (remote_notif_state_allocate): New function.
2154 (remote_notif_state_xfree): New function.
2155 (_initialize_notif): Remove code to allocate queue.
2156 * remote-notif.h (DECLARE_QUEUE_P): Moved from remote-notif.c.
2157 (struct remote_notif_state): New.
2158 (handle_notification): Update declaration.
2159 (remote_notif_process): Likewise.
2160 (remote_notif_register_async_event_handler): Remove.
2161 (remote_notif_unregister_async_event_handler): Remove.
2162 (remote_notif_state_allocate): Declare.
2163 (remote_notif_state_xfree): Declare.
2164 * remote.c (struct remote_state) <notif_state>: New field.
2165 (remote_close): Don't call
2166 remote_notif_unregister_async_event_handler. Call
2167 remote_notif_state_xfree.
2168 (remote_open_1): Don't call
2169 remote_notif_register_async_event_handler. Call
2170 remote_notif_state_allocate.
2171
2172 2013-10-04 Yao Qi <yao@codesourcery.com>
2173
2174 * varobj.c (create_child_with_value): Remove 'const' from the
2175 type of parameter 'name'.
2176 (varobj_add_child): Likewise.
2177 (install_dynamic_child): Remove 'const' from the type of
2178 parameter 'name'.
2179 (varobj_add_child): Likewise.
2180 (create_child_with_value): Likewise. Update comments. Don't
2181 duplicate 'name'.
2182 (update_dynamic_varobj_children): Duplicate 'name'
2183 and pass it to install_dynamic_child.
2184
2185 2013-10-03 Phil Muldoon <pmuldoon@redhat.com>
2186
2187 * python/py-value.c (convert_value_from_python): Move PyInt_Check
2188 conversion logic to occur after PyLong_Check. Comment on order
2189 change significance.
2190 * python/py-arch.c (archpy_disassemble): Comment on order of
2191 conversion for integers and longs.
2192
2193 2013-10-03 Pedro Alves <palves@redhat.com>
2194
2195 * common/linux-ptrace.c (linux_check_ptrace_features): Factor out
2196 the PTRACE_O_TRACESYSGOOD and PTRACE_O_TRACEFORK to separate
2197 functions. Always test for PTRACE_O_TRACESYSGOOD even if
2198 PTRACE_O_TRACEFORK is not supported.
2199 (linux_test_for_tracesysgood): New function.
2200 (linux_test_for_tracefork): New function, factored out from
2201 linux_check_ptrace_features, and also don't kill child_pid here.
2202
2203 2013-10-03 Tristan Gingold <gingold@adacore.com>
2204
2205 * i386-darwin-nat.c (i386_darwin_dr_set): Fix argument type.
2206 Remove verbose error reporting. Use detected state to
2207 thread_set_state call.
2208 (i386_darwin_dr_get): Fix return type. Remove verbose error
2209 report.
2210 Remove trailing spaces.
2211
2212 2013-10-02 Pedro Alves <palves@redhat.com>
2213
2214 * cp-valprint.c (cp_print_value_fields): Adjust calls to
2215 val_print_optimized_out.
2216 * jv-valprint.c (java_print_value_fields): Likewise.
2217 * p-valprint.c (pascal_object_print_value_fields): Likewise.
2218 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full)
2219 <DWARF_VALUE_REGISTER>: If the register was not saved, return a
2220 new optimized out value.
2221 * findvar.c (address_from_register): Likewise.
2222 * frame.c (put_frame_register): Tweak error string to say the
2223 register was not saved, rather than optimized out.
2224 * infcmd.c (default_print_one_register_info): Adjust call to
2225 val_print_optimized_out. Use value_of_register instead of
2226 get_frame_register_value.
2227 * mi/mi-main.c (output_register): Use value_of_register instead of
2228 get_frame_register_value.
2229 * valprint.c (valprint_check_validity): Likewise.
2230 (val_print_optimized_out): New value parameter. If the value is
2231 lval_register, print <not saved> instead.
2232 (value_check_printable, val_print_scalar_formatted): Adjust calls
2233 to val_print_optimized_out.
2234 * valprint.h (val_print_optimized_out): New value parameter.
2235 * value.c (struct value) <optimized_out>: Extend comment.
2236 (error_value_optimized_out): New function.
2237 (require_not_optimized_out): Use it. Use a different string for
2238 lval_register values.
2239 * value.h (error_value_optimized_out): New declaration.
2240 * NEWS: Mention <not saved>.
2241
2242 2013-10-02 Joel Brobecker <brobecker@adacore.com>
2243
2244 * symtab.c (compare_search_syms): Use FILENAME_CMP instead of
2245 strcmp to compare two symtab filenames.
2246
2247 2013-10-02 Joel Brobecker <brobecker@adacore.com>
2248
2249 * symtab.c (search_symbols_equal): Delete.
2250 (sort_search_symbols_remove_dups): Replace call to
2251 search_symbols_equal by call to compare_search_syms,
2252 adjusting as necessary.
2253
2254 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
2255
2256 PR python/15579
2257 * python/python.c: Document gdb.execute command in Python help.
2258
2259 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
2260
2261 * python/py-frame.c (frame_info_to_frame_object): Use
2262 gdbpy_convert_exception. Clean up Python object on failure.
2263
2264 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
2265
2266 * python/lib/gdb/command/frame_filters.py
2267 (InfoFrameFilter.list_frame_filters): Retrieve exception manually.
2268 (ShowFrameFilterPriority.invoke): Ditto.
2269
2270 2013-10-01 Keith Seitz <keiths@redhat.com>
2271
2272 * linespec.c (struct ls_parser): Make 'saved_arg' const.
2273 (parse_linespec): Make 'argptr' const.
2274 Remove temporary cast of 'argptr' to const char **.
2275 (decode_line_full): Pass const pointer to parse_linespec.
2276 (decode_line_1): Likewise.
2277 (decode_objc): Make local variable 'new_argptr' const.
2278 (find_function_symbols): Remove temporary cast to char *
2279 to find_imps.
2280 * objc-lang.c (find_imps): Make argument 'method' const.
2281 Return const.
2282 * objc-lang.h (find_imps): Likewise.
2283
2284 2013-10-01 Keith Seitz <keiths@redhat.com>
2285
2286 * completer.c (skip_quoted_chars): Make all arguments const.
2287 Return const.
2288 (skip_quoted): Likewise.
2289 * completer.h (skip_quoted_chars): Likewise.
2290 (skip_quoted): Likewise.
2291 * defs.h (skip_quoted): Remove duplicate declaration.
2292 * jv-exp.y: Include completer.h.
2293 (yylex): Remove unneccessary cast to char * fro skip_quoted.
2294 * p-exp.y: Include completer.h.
2295
2296 2013-10-01 Keith Seitz <keiths@redhat.com>
2297
2298 * c-exp.y (parse_number): Make first argument const.
2299 Make a copy of the input to manipulate.
2300 (c_parse_escape): Make first argument const.
2301 Make local variable 'tokptr' const.
2302 (parse_string_or_char): Make first two arguments const.
2303 (macro_original_text): Make const.
2304 (lex_one_token): Make local variable 'tokstart' const.
2305 Likewise for local variables named 'p'.
2306 Cast away const for struct stoken (temporary).
2307 * c-lang.h (c_parse_escpae): Make first argument const.
2308 * cli/cli-cmds.c (echo_command): Make local variable 'p'
2309 const.
2310 * cli/cli-setshow.c (do_set_command): Likewise for 'p' in
2311 var_string case.
2312 * f-exp.y (parse_number): Make first argument const.
2313 (match_string_literal): Make local variable 'tokstart'
2314 const.
2315 (yylex): Make local variable 'p' const.
2316 Cast away const for struct stoken (temporary).
2317 * go-exp.y (parse_number): Make first argument const.
2318 (parse_string_or_char): Likewise.
2319 Make local variable 'tokstart' const.
2320 (lex_one_token): Likewise for numerous locals called 'p'.
2321 Cast away const for struct stoken (temporary).
2322 * jv-exp.y (parse_number): Make first argument const.
2323 Make local variables 'tokstart' and 'tokptr' const.
2324 Cast away const for call to skip_quoted (temporary).
2325 (yylex): Make local variable 'p' const.
2326 Cast away const for struct stoken (temporary).
2327 * m2-exp.y (parse_number): Make local variable 'p' const.
2328 (yylex): Likewise for 'tokstart'.
2329 Cast away const for struct stoken (temporary).
2330 Make local variable 'p' const.
2331 * macroexp.c (get_character_constant): Pass a const string
2332 to c_parse_escape.
2333 (get_string_literal): Likewise.
2334 (macro_expand_next): Make first argument const.
2335 Cast away const for init_shared_buffer.
2336 * macroexp.h (macro_expand_next): Make first argument const.
2337 * p-exp.y (yylex): Make a local copy of 'lexptr'.
2338 Pass a const string to c_parse_escape.
2339 Make local variables 'p' and 'namestart' const.
2340 * parse.c (lexptr): Make const.
2341 (prev_lexptr): Likewise.
2342 (find_template_name_end): Return const.
2343 Make argument const, too.
2344 (parse_exp_in_context): Make first argument const.
2345 Remove the entire const_hack.
2346 (parse_exp_in_context_1): Make first argument const.
2347 * parser-defs.h (find_template_name_end): Return const.
2348 Make argument const, too.
2349 (lexptr): Make const.
2350 (prev_lexptr): Likewise.
2351 * utils.c (parse_escape): Make second argument const.
2352 * utils.h (parse_escape): Likewise.
2353
2354 2013-10-01 Keith Seitz <keiths@redhat.com>
2355
2356 * ada-exp.y (write_object_renaming): Update: struct stoken.ptr
2357 is now const.
2358 (block_lookup): Make 'raw_name' and 'name' const.
2359 * ada-lex.l (processString): Update for struct stoken.ptr.
2360 * c-exp.y (qualified_name : TYPENAME COLONCOLON '~' name): Likewise.
2361 (operator_stoken): Likewise.
2362 (lex_one_token): Remove temporary cast to char * for
2363 'yylval.sval.ptr'.
2364 * f-exp.y (yylex): Likewise.
2365 * gdb-types.c (lookup_struct_elt_type): Make argument 'name' const.
2366 * gdbtypes.h (lookup_struct_elt_type): Likewisee.
2367 * go-exp.y (lex_one_token): Remove temporary cast to char * for
2368 'yylval.sval.ptr'.
2369 * jv-exp.y (QualifiedName): Update for struct stoken.ptr.
2370 (yylex): Remove temporary cast to char * for 'yylval.sval.ptr'.
2371 * linespec.c (struct ls_parser): Make 'stream' const.
2372 (find_parameter_list_end): Make argument 'input' and local
2373 variable 'p' const.
2374 (linespec_lexer_lex_string): Make local variables 'start' and
2375 'p' const.
2376 Use skip_spaces_const instead of skip_spaces.
2377 (linespec_lexer_peek_token): Make local variable 'saved_stream'
2378 const.
2379 (parse_linespec): Temporarily cast 'argptr' to const for
2380 'parser->lexer.stream'.
2381 * m2-exp.y (yylex): Remove temporary cast to char * for
2382 'yylval.sval.ptr'.
2383 * objc-lang.c (add_msglist): Make local variable 'p' const.
2384 * p-exp.y (exp : exp '['): Update for struct stoken.ptr.
2385 (exp : STRING): Make 'sp' const.
2386 (parse_number): Make argument 'p' const.
2387 * parser-defs.h (struct stoken): Make 'ptr' const.
2388
2389 2013-10-01 Doug Evans <dje@google.com>
2390
2391 * cli/cli-decode.c: Remove unnecessary inclusion of tui/tui.h.
2392
2393 2013-10-01 Yao Qi <yao@codesourcery.com>
2394
2395 * varobj.c (c_value_of_root): Remove declaration.
2396 (cplus_value_of_root, java_value_of_root): Likewise.
2397 (ada_value_of_root): Likewise.
2398 (struct language_specific) <value_of_root>: Remove.
2399 (languages): Update initialization.
2400 (check_scope): Move earlier.
2401 (c_value_of_root): Move earlier and rename to ...
2402 (value_of_root_1): ... this.
2403 (value_of_root): Caller update.
2404 (cplus_value_of_root, java_value_of_root): Remove.
2405 (ada_value_of_root): Remove.
2406
2407 2013-10-01 Yao Qi <yao@codesourcery.com>
2408
2409 * varobj.c (varobj_format_string): Remove "unknown".
2410 (languages): Remove the first element.
2411 * varobj.h (enum varobj_languages): Remove vlang_c.
2412
2413 2013-10-01 Yao Qi <yao@codesourcery.com>
2414
2415 * varobj.c (struct language_specific) <language>: Remove.
2416 (languages): Update the initialization.
2417
2418 2013-10-01 Yao Qi <yao@codesourcery.com>
2419
2420 * arm-wince-tdep.c: Remove inclusion of "solib.h" and
2421 "solib-target.h". Include "windows-tdep.h".
2422 (arm_wince_init_abi): Call windows_init_abi. Remove call to
2423 set_solib_ops and set_gdbarch_has_dos_based_file_system.
2424 * configure.tgt (arm*-wince-pe | arm*-*-mingw32ce*): Append
2425 windows-tdep.o to gdb_target_obs.
2426
2427 2013-10-01 Yao Qi <yao@codesourcery.com>
2428
2429 * amd64-windows-tdep.c: Remove inclusion of "solib.h" and
2430 "solib-target.h".
2431 (amd64_windows_init_abi): Don't call set_solib_ops and
2432 set_gdbarch_iterate_over_objfiles_in_search_order. Call
2433 windows_init_abi instead.
2434 * i386-cygwin-tdep.c: Remove inclusion of "solib.h" and
2435 "solib-target.h".
2436 (i386_cygwin_init_abi): Don't call set_solib_ops,
2437 set_gdbarch_has_dos_based_file_system and
2438 set_gdbarch_iterate_over_objfiles_in_search_order. Call
2439 windows_init_abi instead.
2440 * windows-tdep.c: Include "solib.h" and "solib-target.h".
2441 (windows_init_abi): New function.
2442 (windows_iterate_over_objfiles_in_search_order): Make it
2443 static.
2444 * windows-tdep.h (windows_init_abi): Declare.
2445 (windows_iterate_over_objfiles_in_search_order): Remove
2446 declaration.
2447
2448 2013-10-01 Jerome Guitton <guitton@adacore.com>
2449
2450 Checked in by Joel Brobecker <brobecker@adacore.com>
2451 * system-gdbinit/elinos.py (get_elinos_environment): Return an
2452 incomplete dictionnary instead of None in case of missing
2453 environment variables.
2454 (elinos_init): in case of an incomplete environment, best
2455 effort to load system libraries instead of abort.
2456
2457 2013-10-01 Joel Brobecker <brobecker@adacore.com>
2458
2459 * ada-lang.c (ada_has_this_exception_support): Ignore
2460 mst_solib_trampoline minimal symbols.
2461
2462 2013-09-30 Tristan Gingold <gingold@adacore.com>
2463
2464 * i386-darwin-nat.c (darwin_complete_target): Install methods for
2465 hardware watchpoint.
2466 (i386_darwin_dr_set): Support 32 and 64 bit states.
2467 (i386_darwin_dr_get): Likewise.
2468 (i386_darwin_dr_set_control): Make static.
2469 (i386_darwin_dr_set_addr, i386_darwin_dr_get_addr)
2470 (i386_darwin_dr_get_status, i386_darwin_dr_get_control): Likewise.
2471
2472 2013-09-30 Luis Machado <lgustavo@codesourcery.com>
2473
2474 * aarch64-linux-nat.c: Replace PIDGET with ptid_get_pid.
2475 Replace TIDGET with ptid_get_lwp.
2476 Replace GET_LWP with ptid_get_lwp.
2477 * aix-thread.c (BUILD_THREAD, BUILD_LWP): Remove.
2478 Replace BUILD_THREAD with ptid_build.
2479 Replace BUILD_LWP with ptid_build.
2480 Replace PIDGET with ptid_get_pid.
2481 Replace TIDGET with ptid_get_lwp.
2482 * alphabsd-nat.c: Replace PIDGET with ptid_get_pid.
2483 * amd64-linux-nat.c: Replace PIDGET with ptid_get_pid.
2484 Replace TIDGET with ptid_get_lwp.
2485 * amd64bsd-nat.c: Replace PIDGET with ptid_get_pid.
2486 * arm-linux-nat.c: Replace PIDGET with ptid_get_pid.
2487 Replace TIDGET with ptid_get_lwp.
2488 Replace GET_LWP with ptid_get_lwp.
2489 * armnbsd-nat.c: Replace PIDGET with ptid_get_pid.
2490 * auxv.c: Likewise.
2491 * breakpoint.c: Likewise.
2492 * common/ptid.c (ptid_is_pid): Condense check for
2493 null_ptid and minus_one_ptid.
2494 (ptid_lwp_p): New function.
2495 (ptid_tid_p): New function.
2496 * common/ptid.h: Update comments for accessors.
2497 (ptid_lwp_p): New prototype.
2498 (ptid_tid_p): New prototype.
2499 * defs.h (PIDGET, TIDGET, MERGEPID): Do not define.
2500 * gcore.c: Replace PIDGET with ptid_get_pid.
2501 * gdbthread.h: Likewise.
2502 * gnu-nat.c: Likewise.
2503 * hppa-linux-nat.c: Replace PIDGET with ptid_get_pid.
2504 Replace TIDGET with ptid_get_lwp.
2505 * hppabsd-nat.c: Replace PIDGET with ptid_get_pid.
2506 * hppanbsd-nat.c: Likewise.
2507 * i386-linux-nat.c: Replace PIDGET with ptid_get_pid.
2508 Replace TIDGET with ptid_get_lwp.
2509 * i386bsd-nat.c: Replace PIDGET with ptid_get_pid.
2510 * ia64-linux-nat.c: Replace PIDGET with ptid_get_pid.
2511 * infcmd.c: Likewise.
2512 * inferior.h: Likewise.
2513 * inflow.c: Likewise.
2514 * infrun.c: Likewise.
2515 * linux-fork.c: Likewise.
2516 * linux-nat.c: Replace PIDGET with ptid_get_pid.
2517 Replace GET_PID with ptid_get_pid.
2518 Replace is_lwp with ptid_lwp_p.
2519 Replace GET_LWP with ptid_get_lwp.
2520 Replace BUILD_LWP with ptid_build.
2521
2522 2013-09-28 Mike Frysinger <vapier@gentoo.org>
2523
2524 * common/linux-btrace.c: Move sys/syscall.h out of the
2525 HAVE_LINUX_PERF_EVENT_H check and wrap it in HAVE_SYS_SYSCALL_H.
2526 Also check for SYS_perf_event_open before attempting to buid.
2527
2528 2013-09-27 Doug Evans <dje@google.com>
2529
2530 * dwarf2read.c (dwarf2_section_info): Add comment.
2531 (dwp_file): Split loaded_cutus into loaded_cus, loaded_tus.
2532 All uses updated.
2533 (dwarf2_section_empty_p): Rename arg from "info" to "section".
2534 (dwarf2_read_section): Delete unused local "header". Add section
2535 name to error message.
2536 (create_dwo_in_dwp): Tweak comment.
2537 (MAX_NR_DWO_SECTIONS): Combine count of .debug_macro + .debug_macinfo.
2538
2539 * dwarf2read.c (die_reader_specs): Tweak comment.
2540 (get_section_bfd_owner, get_section_bfd_section): New functions.
2541 (get_section_name, get_section_file_name): New functions.
2542 (get_section_id, get_section_flags): New functions.
2543 (*): Use new functions to access section fields.
2544
2545 * dwarf2read.c (struct dwo_file): Add/tweak comments.
2546 (lookup_dwo_unit_in_dwp): Renamed from lookup_dwo_in_dwp. Remove
2547 arg "htab". All callers updated.
2548 (create_debug_types_hash_table): Remove redundant copy of
2549 abbrev_section.
2550 (create_dwo_in_dwp): Tweak comments.
2551 (read_str_index): Tweak comment. Record dwarf form name in static
2552 local.
2553
2554 2013-09-27 Pedro Alves <palves@redhat.com>
2555
2556 * remote.h (REMOTE_SYSROOT_PREFIX): New define.
2557 (remote_filename_p): Add comment.
2558 * remote.c (remote_filename_p): Adjust to use
2559 REMOTE_SYSROOT_PREFIX.
2560 * solib.c (solib_find): When deciding whether we need to add a
2561 directory separator, check whether the sysroot is "remote:"
2562 instead of checking whether the patch has a drive spec. Add
2563 comments.
2564
2565 2013-09-27 Pedro Alves <palves@redhat.com>
2566
2567 * remote.c (struct stop_reply) <solibs_changed, replay_event>:
2568 Delete fields.
2569 (remote_parse_stop_reply): Adjust, setting event->ws.kind
2570 directly.
2571
2572 2013-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
2573
2574 Fix set debug frame output.
2575 * frame.c (fprint_frame_type): Add TAILCALL_FRAME entry. Move
2576 SENTINEL_FRAME entry lower to match enum frame_type order.
2577
2578 2013-09-26 Pierre Muller <muller@sourceware.org>
2579
2580 Replace constant values 8 to 15 by AMD64_R8_REGNUM to
2581 AMD64_R15_REGNUM when a register index is expected.
2582 * amd64-windows-tdep.c (amd64_windows_dummy_call_integer_regs):
2583 Substitute in array.
2584 * amd64-tdep.c (amd64_dwarf_regmap): Ditto.
2585 (amd64_push_arguments): Substitute in integer_regnum array.
2586
2587 2013-09-25 Doug Evans <dje@google.com>
2588
2589 * objfiles.c (allocate_objfile): Move comment to better place.
2590
2591 New option "set debug symfile on".
2592 * NEWS: Mention "set debug symfile".
2593 * Makefile.in (SFILES): Add symfile-debug.c.
2594 (COMMON_OBS): Add symfile-debug.o.
2595 * elfread.c (elf_symfile_read): Use objfile_set_sym_fns to set the
2596 objfile's symbol functions.
2597 * objfiles.h (objfile_set_sym_fns): Declare.
2598 * symfile-debug.c: New file.
2599 * symfile.c (syms_from_objfile_1): Use objfile_set_sym_fns to set the
2600 objfile's symbol functions.
2601 (reread_symbols): Ditto.
2602
2603 * symfile.h (struct sym_fns): Delete member "sym_flavour".
2604 All uses updated.
2605 (add_symtab_fns): Update prototype.
2606 * symfile.c (sym_fns_ptr): Delete. Replace with ...
2607 (registered_sym_fns): ... this.
2608 (symtab_fns): Update.
2609 (add_symtab_fns): New arg "flavour". All callers updated.
2610 (find_sym_fns): Rewrite to use new sym_fns registry.
2611
2612 * symfile.h (struct sym_fns): Add "objfile" argument to
2613 sym_read_linetable. All uses updated.
2614
2615 * symtab.c (domain_name, search_domain_name): New functions.
2616 * symtab.h (domain_name, search_domain_name): Declare.
2617
2618 * symfile.h (struct quick_symbol_functions): Reorg arg list of
2619 map_matching_symbols so objfile is first. All uses updated.
2620 * dwarf2read.c (dw2_map_matching_symbols): Update signature.
2621 * psymtab.c (map_matching_symbols_psymtab): Update signature.
2622
2623 2013-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
2624
2625 PR shlibs/8882
2626 * solib-svr4.c (svr4_read_so_list): Skip the vDSO when reading
2627 link map entries.
2628
2629 2013-09-24 Doug Evans <dje@google.com>
2630
2631 * objfiles.c (free_objfile): Move comment.
2632
2633 2013-09-24 Joel Brobecker <brobecker@adacore.com>
2634
2635 * ada-exp.y (string_to_operator): Delete.
2636 (dummy_string_to_ada_operator): Delete.
2637
2638 2013-09-24 Joel Brobecker <brobecker@adacore.com>
2639
2640 Revert:
2641 * i386-tdep.h (enum amd64_reg_class): New, moved here from
2642 amd64-tdep.c.
2643 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
2644 call_dummy_integer_regs, and classify.
2645 * amd64-tdep.h (amd64_classify): Add declaration.
2646 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
2647 (amd64_reg_class): Delete, moved to i386-tdep.h.
2648 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
2649 Replace call to amd64_classify by call to tdep->classify.
2650 (amd64_push_arguments): Get the list of registers to use for
2651 passing integer parameters from the gdbarch tdep structure,
2652 rather than using a hardcoded one. Replace calls to amd64_classify
2653 by calls to tdep->classify.
2654 (amd64_push_dummy_call): Get the register number used for
2655 the "hidden" argument from tdep->call_dummy_integer_regs.
2656 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
2657 and tdep->call_dummy_integer_regs. Set tdep->classify.
2658
2659 2013-09-24 Joel Brobecker <brobecker@adacore.com>
2660
2661 Revert:
2662 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
2663 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
2664 where tdep->memory_args_by_pointer is non-zero.
2665
2666 2013-09-24 Joel Brobecker <brobecker@adacore.com>
2667
2668 Revert:
2669 * i386-tdep.h (struct gdbarch_tdep): Add new field
2670 integer_param_regs_saved_in_caller_frame.
2671 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
2672 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
2673
2674 2013-09-24 Joel Brobecker <brobecker@adacore.com>
2675
2676 * amd64-windows-tdep.c: #include "value.h"
2677 (amd64_windows_classify): Delete.
2678 (amd64_windows_passed_by_integer_register)
2679 (amd64_windows_passed_by_xmm_register)
2680 (amd64_windows_passed_by_pointer)
2681 (amd64_windows_adjust_args_passed_by_pointer)
2682 (amd64_windows_store_arg_in_reg, amd64_windows_push_arguments)
2683 (amd64_windows_push_dummy_call): New functions.
2684 (amd64_windows_init_abi): Remove setting of
2685 tdep->call_dummy_num_integer_regs, tdep->call_dummy_integer_regs,
2686 tdep->classify, tdep->memory_args_by_pointer and
2687 tdep->integer_param_regs_saved_in_caller_frame.
2688 Add call to set_gdbarch_push_dummy_call.
2689
2690 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2691
2692 * dwarf2read.c (open_and_init_dwp_file): Try open_dwp_file also with
2693 objfile->original_name.
2694
2695 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2696
2697 Pass down original filename for objfile.
2698 * coffread.c (coff_symfile_read): Update symbol_file_add_separate call.
2699 * elfread.c (elf_symfile_read): Likewise.
2700 * jit.c (jit_object_close_impl): Update allocate_objfile call, no
2701 longer set ORIGINAL_NAME.
2702 (jit_bfd_try_read_symtab): Update symbol_file_add_from_bfd call.
2703 * jv-lang.c (get_dynamics_objfile): Update allocate_objfile call.
2704 * machoread.c (macho_add_oso_symfile): Add parameter name. Update
2705 symbol_file_add_from_bfd call.
2706 (macho_symfile_read_all_oso): Update two macho_add_oso_symfile calls.
2707 (macho_check_dsym): Add parameter filenamep. Change function comment.
2708 Set *filenamep.
2709 (macho_symfile_read): New variable dsym_filename. Update
2710 macho_check_dsym call. Use it for symbol_file_add_separate.
2711 * objfiles.c (allocate_objfile): Add parameter name. New comment for
2712 it. Use it for objfile->original_name.
2713 (objfile_name): Return OBFD's filename, if available.
2714 * objfiles.h (allocate_objfile): Add new parameter name.
2715 * solib.c (solib_read_symbols): Update symbol_file_add_from_bfd call.
2716 * symfile-mem.c (symbol_file_add_from_memory): Update
2717 symbol_file_add_from_bfd call.
2718 * symfile.c (read_symbols): Update symbol_file_add_separate call, new
2719 comment for it.
2720 (symbol_file_add_with_addrs): New parameter name, add function comment
2721 for it. Remove variable name. Update allocate_objfile call.
2722 (symbol_file_add_separate): New parameter name, add function comment
2723 for it. Update symbol_file_add_with_addrs call.
2724 (symbol_file_add_from_bfd): New parameter name. Update
2725 symbol_file_add_with_addrs call.
2726 (symbol_file_add): Update symbol_file_add_from_bfd call.
2727 (reread_symbols): New variable original_name. Save
2728 objfile->original_name by it.
2729 * symfile.h (symbol_file_add_from_bfd, symbol_file_add_separate): Add
2730 second parameter.
2731
2732 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2733
2734 Code cleanup: Add objfile_name accessor function.
2735 * ada-lang.c (is_known_support_routine): Use objfile_name.
2736 * auto-load.c (source_gdb_script_for_objfile)
2737 (auto_load_objfile_script): Likewise.
2738 * coffread.c (coff_symtab_read, read_one_sym): Likewise.
2739 * dbxread.c (dbx_symfile_read): Likewise.
2740 * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
2741 * dwarf2loc.c (locexpr_describe_location_piece): Likewise.
2742 * dwarf2read.c (dwarf2_get_dwz_file, dwarf2_read_index)
2743 (dw2_symtab_iter_next, dw2_expand_symtabs_matching)
2744 (lookup_dwp_signatured_type, lookup_dwo_unit)
2745 (dwarf2_build_psymtabs_hard, scan_partial_symbols, process_queue)
2746 (fixup_go_packaging, process_imported_unit_die, dwarf2_physname)
2747 (read_import_statement, create_dwo_cu, open_and_init_dwp_file)
2748 (lookup_dwo_cutu, read_call_site_scope, dwarf2_ranges_read)
2749 (dwarf2_record_block_ranges, read_common_block, read_typedef)
2750 (read_subrange_type, load_partial_dies, read_partial_die)
2751 (read_addr_index_1, read_str_index, dwarf_decode_lines_1)
2752 (die_containing_type, build_error_marker_type, lookup_die_type)
2753 (follow_die_ref_or_sig, follow_die_ref, dwarf2_fetch_die_loc_sect_off)
2754 (dwarf2_fetch_constant_bytes, follow_die_sig, get_signatured_type)
2755 (get_DW_AT_signature_type, write_psymtabs_to_index)
2756 (save_gdb_index_command): Likewise.
2757 * elfread.c (find_separate_debug_file_by_buildid, elf_symfile_read):
2758 Likewise.
2759 * expprint.c (dump_subexp_body_standard): Likewise.
2760 * gdbtypes.c (type_name_no_tag_or_error): Likewise.
2761 * jit.c (jit_object_close_impl): Use the objfile field name renamed to
2762 original_name.
2763 * linux-thread-db.c (try_thread_db_load_from_pdir_1): New variable
2764 obj_name, use objfile_name for it, use the variable.
2765 (try_thread_db_load_from_pdir, has_libpthread, thread_db_new_objfile):
2766 Use objfile_name.
2767 * machoread.c (macho_symtab_read, macho_check_dsym)
2768 (macho_symfile_relocate): Likewise.
2769 * maint.c (maintenance_translate_address): Likewise.
2770 * minidebug.c (find_separate_debug_file_in_section): Likewise.
2771 * minsyms.c (install_minimal_symbols): Likewise.
2772 * objfiles.c (allocate_objfile): Use the objfile field name renamed to
2773 original_name.
2774 (filter_overlapping_sections): Use objfile_name.
2775 (objfile_name): New function.
2776 * objfiles.h (struct objfile): Rename field name to original_name.
2777 (objfile_name): New prototype.
2778 * printcmd.c (sym_info, address_info): Use objfile_name.
2779 * probe.c (parse_probes, collect_probes, compare_probes)
2780 (info_probes_for_ops): Likewise.
2781 * progspace.c (clone_program_space): Likewise.
2782 * psymtab.c (require_partial_symbols, dump_psymtab, allocate_psymtab)
2783 (maintenance_info_psymtabs): Likewise.
2784 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
2785 (source_section_scripts): Likewise.
2786 * python/py-objfile.c (objfpy_get_filename): Likewise.
2787 * python/py-progspace.c (pspy_get_filename): Likewise.
2788 * solib-aix.c (solib_aix_get_toc_value): Likewise.
2789 * solib-som.c (match_main, som_solib_section_offsets): Likewise.
2790 * solib.c (solib_read_symbols): Likewise.
2791 * stabsread.c (scan_file_globals): Likewise.
2792 * stap-probe.c (handle_stap_probe): Likewise.
2793 * symfile.c (symbol_file_clear, separate_debug_file_exists)
2794 (find_separate_debug_file_by_debuglink): Likewise.
2795 (reread_symbols): Likewise. Use the objfile field name renamed to
2796 original_name.
2797 (allocate_symtab): Use objfile_name.
2798 * symmisc.c (print_symbol_bcache_statistics, print_objfile_statistics)
2799 (dump_objfile, dump_msymbols, dump_symtab_1)
2800 (maintenance_print_msymbols, maintenance_print_objfiles)
2801 (maintenance_info_symtabs, maintenance_check_symtabs): Likewise.
2802 * target.c (target_translate_tls_address, target_info): Likewise.
2803 * xcoffread.c (xcoff_initial_scan): Make variable name const. Use
2804 objfile_name.
2805
2806 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2807
2808 Code cleanup.
2809 * probe.c (parse_probes): Rename variable objfile_name to
2810 objfile_namestr.
2811
2812 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2813
2814 Remove solib-sunos.c.
2815 * Makefile.in (ALLDEPFILES): Remove solib-sunos.c.
2816 * config/m68k/obsd.mh (NATDEPFILES): Remove solib-sunos.o.
2817 * objfiles.c (rt_common_objfile): Remove.
2818 (free_objfile): Remove rt_common_objfile comparison.
2819 * objfiles.h (rt_common_objfile): Remove.
2820 * solib-sunos.c: Remove.
2821 * symfile.c (reread_symbols): Remove solib-sunos.c comment.
2822
2823 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2824
2825 Remove a.out NetBSD and OpenBSD hosts.
2826 * NEWS (Removed native configurations): New.
2827 * config/arm/nbsdaout.mh: Remove.
2828 * config/i386/nbsdaout.mh: Remove.
2829 * config/i386/obsdaout.mh: Remove.
2830 * config/m68k/nbsdaout.mh: Remove.
2831 * config/sparc/nbsdaout.mh: Remove.
2832 * config/vax/nbsdaout.mh: Remove.
2833 * configure.host (arm*-*-netbsd*, i[34567]86-*-netbsd*)
2834 (i[34567]86-*-openbsd[0-2].*, i[34567]86-*-openbsd3.[0-3])
2835 (m68*-*-netbsd*, sparc-*-netbsd*, vax-*-netbsd*): Add them to obsolete
2836 error.
2837 (arm*-*-netbsd*, i[34567]86-*-netbsd*, i[34567]86-*-openbsd[0-2].*)
2838 (i[34567]86-*-openbsd3.[0-3], m68*-*-netbsd*, sparc-*-netbsdaout*)
2839 (sparc-*-netbsd*, vax-*-netbsd*): Remove.
2840
2841 2013-09-23 Tom Tromey <tromey@redhat.com>
2842
2843 * linespec.c (struct minsym_and_objfile): Remove.
2844 (minsym_and_objfile_d): Remove.
2845 (struct linespec, struct collect_info, linespec_parse_basic)
2846 (convert_linespec_to_sals, linespec_parser_delete, decode_objc)
2847 (compare_msymbols, find_method, find_function_symbols)
2848 (find_linespec_symbols, struct collect_minsyms, compare_msyms)
2849 (add_minsym, search_minsyms_for_name): Update.
2850
2851 2013-09-23 Andrew Burgess <aburgess@broadcom.com>
2852
2853 * regcache.c: Add include of valprint.h.
2854 (dump_endian_bytes): Delete.
2855 (regcache_dump): Use print_hex_chars not dump_endian_bytes.
2856
2857 2013-09-23 Andrew Burgess <aburgess@broadcom.com>
2858
2859 * sh64-tdep.c (sh64_do_fp_register): Use print_hex_chars.
2860
2861 2013-09-19 Pedro Alves <palves@redhat.com>
2862
2863 * breakpoint.c (remove_threaded_breakpoints): Skip non-user
2864 breakpoints.
2865
2866 2013-09-19 Pedro Alves <palves@redhat.com>
2867 Thomas Schwinge <thomas@codesourcery.com>
2868 Yue Lu <hacklu.newborn@gmail.com>
2869
2870 * gnu-nat.c (gnu_read_inferior, gnu_write_inferior): Make static.
2871 Take a gdb_byte pointer instead of a char pointer.
2872
2873 * gnu-nat.c (gnu_xfer_memory): Adjust interface as
2874 gnu_xfer_partial helper.
2875 (gnu_xfer_partial): New function.
2876 (gnu_target): Don't install a deprecated_xfer_memory hook.
2877 Install a to_xfer_partial hook.
2878
2879 2013-09-19 Jan Kratochvil <jan.kratochvil@redhat.com>
2880
2881 Constification.
2882 * main.c (captured_main): Replace catch_command_errors by
2883 catch_command_errors_const. Twice.
2884 * symfile.c (symbol_file_add_main_1): Make args parameter const.
2885 (symbol_file_add): Make name parameter const.
2886 (symbol_file_add_main, symbol_file_add_main_1): Make args parameter const.
2887 (symfile_bfd_open): Make name parameter const, rename it to cname. Add
2888 variable name. Change their usage accordingly.
2889 * symfile.h (symbol_file_add, symfile_bfd_open): Make first parameter
2890 const.
2891 (symbol_file_add_main): Make args parameter const.
2892
2893 2013-09-18 Raunaq Bathija <raunaq12@in.ibm.com>
2894 Ulrich Weigand <uweigand@de.ibm.com>
2895
2896 * xcoffread.c (struct coff_symbol): Use CORE_ADDR as type
2897 of c_value member.
2898 (read_xcoff_symtab): Use CORE_ADDR as type of fcn_start_addr.
2899
2900 2013-09-18 Pedro Alves <palves@redhat.com>
2901 Yue Lu <hacklu.newborn@gmail.com>
2902
2903 * gnu-nat.c (inf_validate_procs, gnu_wait, gnu_resume)
2904 (gnu_create_inferior)
2905 (gnu_attach, gnu_thread_alive, gnu_pid_to_str, cur_thread)
2906 (set_sig_thread_cmd): Use the lwpid field of ptids to
2907 store/extract thread ids instead of the tid field.
2908 * i386gnu-nat.c (gnu_fetch_registers): Adjust.
2909
2910 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
2911
2912 * infcmd.c (default_print_one_register_info): Add detection of
2913 optimized out values.
2914 (default_print_registers_info): Switch to using
2915 get_frame_register_value.
2916
2917 2013-09-18 Markus Metzger <markus.t.metzger@intel.com>
2918
2919 * infrun.c (handle_inferior_event): Check if we know the
2920 function start address before setting a resume breakpoint.
2921
2922 2013-09-18 Pedro Alves <palves@redhat.com>
2923
2924 * gnu-nat.c (set_sig_thread_cmd): Compare the thread's ptid to
2925 minus_one_ptid instead of looking at the ptid's tid field and
2926 comparing that to -1.
2927
2928 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
2929
2930 * main.h (get_gdb_program_name): Remove extra whitespace.
2931
2932 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
2933
2934 * main.h (get_gdb_program_name): Add declaration.
2935 * main.c (get_gdb_program_name): Add definition.
2936
2937 2013-09-17 Doug Evans <dje@google.com>
2938
2939 * dwarf2read.c: Move definitions of complaint functions to after
2940 forward declarations of local functions.
2941
2942 2013-09-17 Muhammad Waqas <mwaqas@codesourcery.com>
2943 Pedro Alves <palves@redhat.com>
2944
2945 PR gdb/11568
2946 * breakpoint.c (remove_threaded_breakpoints): New function.
2947 (_initialize_breakpoint): Attach remove_threaded_breakpoints
2948 as thread_exit observer.
2949
2950 2013-09-17 Pedro Alves <palves@redhat.com>
2951
2952 PR gdb/15911
2953 * ada-tasks.c (task_command_1): Adjust call to print_stack_frame.
2954 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
2955 * corelow.c (core_open):
2956 * frame.h (print_stack_frame, print_frame_info): New
2957 'set_current_sal' parameter.
2958 * infcmd.c (finish_command, kill_command): Adjust call to
2959 print_stack_frame.
2960 * inferior.c (inferior_command): Likewise.
2961 * infrun.c (normal_stop): Likewise.
2962 * linux-fork.c (linux_fork_context): Likewise.
2963 * record-full.c (record_full_goto_entry, record_full_restore):
2964 Likewise.
2965 * remote-mips.c (common_open): Likewise.
2966 * stack.c (print_stack_frame): New 'set_current_sal' parameter.
2967 Use it.
2968 (print_frame_info): New 'set_current_sal' parameter. Set the last
2969 displayed sal depending on the new paremeter instead of looking at
2970 print_what.
2971 (backtrace_command_1, select_and_print_frame, frame_command)
2972 (current_frame_command, up_command, down_command): Adjust call to
2973 print_stack_frame.
2974 * thread.c (print_thread_info, restore_selected_frame)
2975 (do_captured_thread_select): Adjust call to print_stack_frame.
2976 * tracepoint.c (tfind_1): Likewise.
2977 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
2978 (mi_cmd_stack_info_frame): Likewise.
2979 * mi/mi-interp.c (mi_on_normal_stop): Likewise.
2980 * mi/mi-main.c (mi_cmd_exec_return, mi_cmd_trace_find): Likewise.
2981
2982 2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
2983
2984 * value.c (isvoid_internal_fn): Replace "parameter" with
2985 "argument".
2986
2987 2013-09-16 Stan Shebs <stan@codesourcery.com>
2988
2989 * README: Update references to writing code for GDB.
2990 * configure.ac (build_warnings): Remove obsolete comment.
2991 * configure: Regenerate.
2992 * gdbarch.sh: Remove references to gdbint.texinfo.
2993 * gdbarch.h: Regenerate.
2994 * gdbtypes.c (objfile_type): Remove comments referencing internals
2995 manual and D10V.
2996
2997 2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
2998
2999 * NEWS: Mention new convenience function $_isvoid.
3000 * value.c (isvoid_internal_fn): New function.
3001 (_initialize_values): Add new convenience function $_isvoid.
3002
3003 2013-09-16 Pierre Muller <muller@sourceware.org>
3004
3005 * arm-linux-tdep.c: Add "elf/common.h" header.
3006 Remove AT_HWCAP macro definintion as it is provided in
3007 added include file.
3008 * s390-tdep.c: Remove system header <elf.h>
3009 Add "elf/common.h" header for AT_HWCAP definition.
3010 (s390_core_read_description): Use correct CORE_ADDR
3011 for hwcap local variable used as third parameter
3012 of function target_auxv_search.
3013
3014 2013-09-14 Pierre Muller <muller@sourceware.org>
3015 Tom Tromey <tromey@redhat.com>
3016 Pedro Alves <palves@redhat.com>
3017
3018 * common/filestuff.c (gdb_fopen_cloexec): Do not try to use "e"
3019 mode if operating system doesn't know O_CLOEXEC.
3020
3021 2013-09-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3022
3023 Code cleanup.
3024 * symfile.c (reread_symbols): Move variable obfd_filename to a more
3025 inner block.
3026
3027 2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
3028
3029 * NEWS: Mention TDB support.
3030 * features/s390-tdb.xml: New file.
3031 * features/s390-te-linux64.xml: New file.
3032 * features/s390x-te-linux64.xml: New file.
3033 * features/Makefile (WHICH): Add new tdescs above.
3034 (s390-te-linux64-expedite): Set.
3035 (s390x-te-linux64-expedite): Set.
3036 * features/s390-te-linux64.c: New file (generated).
3037 * features/s390x-te-linux64.c: New file (generated).
3038 * regformats/s390-te-linux64.dat: New file (generated).
3039 * regformats/s390x-te-linux64.dat: New file (generated).
3040 * s390-tdep.h (HWCAP_S390_HIGH_GPRS): Define.
3041 (HWCAP_S390_TE): Likewise.
3042 (S390_TDB_DWORD0_REGNUM): Likewise.
3043 (S390_TDB_DWORD0_REGNUM): Likewise.
3044 (S390_TDB_ABORT_CODE_REGNUM): Likewise.
3045 (S390_TDB_CONFLICT_TOKEN_REGNUM): Likewise.
3046 (S390_TDB_ATIA_REGNUM): Likewise.
3047 (S390_TDB_R0_REGNUM): Likewise.
3048 (S390_TDB_R1_REGNUM): Likewise.
3049 (S390_TDB_R2_REGNUM): Likewise.
3050 (S390_TDB_R3_REGNUM): Likewise.
3051 (S390_TDB_R4_REGNUM): Likewise.
3052 (S390_TDB_R5_REGNUM): Likewise.
3053 (S390_TDB_R6_REGNUM): Likewise.
3054 (S390_TDB_R7_REGNUM): Likewise.
3055 (S390_TDB_R8_REGNUM): Likewise.
3056 (S390_TDB_R9_REGNUM): Likewise.
3057 (S390_TDB_R10_REGNUM): Likewise.
3058 (S390_TDB_R11_REGNUM): Likewise.
3059 (S390_TDB_R12_REGNUM): Likewise.
3060 (S390_TDB_R13_REGNUM): Likewise.
3061 (S390_TDB_R14_REGNUM): Likewise.
3062 (S390_TDB_R15_REGNUM): Likewise.
3063 (S390_NUM_REGS): Increase.
3064 (S390_IS_TDBREGSET_REGNUM): New macro.
3065 (s390_regmap_tdb): Declare.
3066 (s390_sizeof_tdbregset): Define.
3067 (tdesc_s390_te_linux64): Declare.
3068 (tdesc_s390x_te_linux64): Likewise.
3069 * s390-tdep.c: Add includes for "auxv.h", <elf.h>,
3070 "features/s390-te-linux64.c", and "features/s390x-te-linux64.c".
3071 (s390_regmap_tdb): New regmap.
3072 (s390_supply_tdb_regset): New function.
3073 (s390_tdb_regset): New regset.
3074 (s390_linux64v2_regset_sections): Add TDB regset to list.
3075 (s390x_linux64v2_regset_sections): Likewise.
3076 (s390_regset_from_core_section): Recognize TDB core note section.
3077 (s390_core_read_description): If HWCAP indicates TE support,
3078 select tdesc_s390_te_linux64 or tdesc_s390_s390x_te_linux64.
3079 (s390_gdbarch_init): Handle TDB regset.
3080 (_initialize_s390_tdep): Initialize new tdescs.
3081 * s390-nat.c (HWCAP_S390_HIGH_GPRS): Remove define.
3082 (have_regset_tdb): New variable.
3083 (s390_native_supply): Support register invalidation.
3084 (fetch_regset): Invalidate registers if ptrace yields ENODATA.
3085 (check_regset): Treat ENODATA as "regset exists".
3086 (s390_linux_fetch_inferior_registers): Add TDB.
3087 (s390_read_description): Check for TDB existence and select
3088 appropriate tdesc.
3089 * gdbserver/Makefile.in (clean): Add removal of new makefile
3090 targets.
3091 (s390-te-linux64.c): New makefile target.
3092 (s390x-te-linux64.c): Likewise.
3093 * gdbserver/configure.srv (srv_regobj): Append new objects
3094 s390-te-linux64.o and s390x-te-linux64.o.
3095 (srv_xmlfiles): Append new files s390-te-linux64.xml,
3096 s390x-te-linux64.xml, and s390-tdb.xml.
3097 * gdbserver/linux-s390-low.c (init_registers_s390_te_linux64): New
3098 declaration.
3099 (tdesc_s390_te_linux64): Likewise.
3100 (init_registers_s390x_te_linux64): Likewise.
3101 (tdesc_s390x_te_linux64): Likewise.
3102 (s390_check_regset): Treat ENODATA as "regset exists".
3103 (s390_arch_setup): Add TDB regset support.
3104 (initialize_low_arch): Initialize registers for new tdescs.
3105
3106 2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
3107
3108 * s390-tdep.h (S390_IS_GREGSET_REGNUM): New macro.
3109 (S390_IS_FPREGSET_REGNUM): New macro.
3110 * s390-tdep.c (s390_dwarf_regmap): Make const.
3111 (regnum_is_gpr_full): New function for replacing repeated code.
3112 (s390_pseudo_register_name): Use it.
3113 (s390_pseudo_register_type): Likewise.
3114 (s390_pseudo_register_read): Likewise.
3115 (s390_pseudo_register_write): Likewise.
3116 (s390_unwind_pseudo_register): Likewise.
3117 (s390_regmap_gregset): New format for regmap.
3118 (s390x_regmap_gregset): Likewise.
3119 (s390_regmap_fpregset): Likewise.
3120 (s390_regmap_upper): Likewise.
3121 (s390_regmap_last_break): Likewise.
3122 (s390_regmap_system_call): Likewise.
3123 (s390_supply_regset): Adjust to new regmap format.
3124 (s390_collect_regset): Likewise.
3125 * s390-nat.c (s390_native_supply): Adjust to new regmap format.
3126 (s390_native_collect): Likewise.
3127 (supply_gregset): Likewise.
3128 (fill_gregset): Likewise.
3129 (supply_fpregset): Likewise.
3130 (fill_fpregset): Likewise.
3131 (fetch_regset): Likewise.
3132 (store_regset): Likewise.
3133 (s390_linux_fetch_inferior_registers): Likewise.
3134 (s390_linux_fetch_inferior_registers): Likewise.
3135
3136 2013-09-12 Andrew Pinski <apinski@cavium.com>
3137
3138 * aarch64-linux-nat.c (aarch64_linux_set_debug_regs): Zero out regs.
3139
3140 2013-09-10 Andreas Arnez <arnez@linux.vnet.ibm.com>
3141
3142 * config/s390/s390.mh (NATDEPFILES): Add linux-waitpid.o.
3143
3144 2013-09-09 Andrew Burgess <aburgess@broadcom.com>
3145
3146 * top.c (quit_confirm): Remove use of deprecated_init_ui_hook.
3147
3148 2013-09-06 Pedro Alves <palves@redhat.com>
3149
3150 * remote-sim.c (dump_mem, gdbsim_fetch_register)
3151 (gdbsim_store_register, gdbsim_kill, gdbsim_load)
3152 (gdbsim_create_inferior, gdbsim_open, gdbsim_close)
3153 (gdbsim_detach, gdbsim_resume_inferior, gdbsim_wait)
3154 (gdbsim_files_info, gdbsim_mourn_inferior): Send debug output to
3155 gdb_stdlog.
3156
3157 2013-09-06 Pedro Alves <palves@redhat.com>
3158
3159 * remote-sim.c (dump_mem): Constify buf parameter.
3160 gdbsim_xfer_inferior_memory): Rename to ...
3161 (gdbsim_xfer_memory): ... this. Adjust interface as
3162 target_xfer_partial helper.
3163 (gdbsim_xfer_partial): New function.
3164 (init_gdbsim_ops): Don't install a deprecated_xfer_memory hook.
3165 Install a to_xfer_partial hook. Send output to gdb_stdlog.
3166
3167 2013-09-06 Pedro Alves <palves@redhat.com>
3168
3169 * remote-sim.c (gdbsim_xfer_inferior_memory): Use
3170 host_address_to_string, and send debug output to gdb_stdlog.
3171
3172 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
3173
3174 * Makefile.in (ALL_TARGET_OBS): Add cris-linux-tdep.o.
3175 * configure.tgt: Add cris-linux-tdep.o and linux-tdep.o to
3176 gdb_target_obs for cris target.
3177 * cris-tdep.c (struct gdbarch_tdep): Move to cris-tdep.h.
3178 (cris_gdbarch_init): Move calls to
3179 set_gdbarch_fetch_tls_load_module_address and
3180 set_solib_svr4_fetch_link_map_offsets to cris-linux-tdep.c.
3181 Add call to gdbarch_init_osabi.
3182 * cris-linux-tdep.c: New file.
3183 * cris-tdep.h: New file.
3184
3185 2013-09-06 Andrew Burgess <aburgess@broadcom.com>
3186
3187 * tui/tui-io.c (tui_initialize_io): Remove legacy comment referring
3188 to deprecated_init_ui_hook.
3189
3190 2013-09-06 Andrew Burgess <aburgess@broadcom.com>
3191
3192 * cli/cli-interp.c (_initialize_cli_interp): Add a
3193 command_loop_proc to interp_procs.
3194 * event-top.c (cli_command_loop): Change signature to match
3195 interp_command_loop_ftype.
3196 * event-top.h (cli_command_loop): Same.
3197 * interps.c (interp_new): Require every interpreter to have a
3198 command_loop_proc.
3199 (current_interp_command_loop): Just call the command_loop_proc on
3200 the current interpreter.
3201 * tui/tui-interp.c (_initialize_tui_interp): Add a
3202 command_loop_proc to interp_procs.
3203
3204 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
3205
3206 * cris-tdep.c (cris_gdbarch_init): Add call to
3207 get_gdbarch_fetch_tls_load_module_address.
3208
3209 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
3210
3211 * cris-tdep.c (cris_elf_greg_t): Rename from elf_greg_t.
3212 (cris_elf_gregset_t): Rename from elf_gregset_t.
3213 (crisv32_elf_gregset_t): Adjust.
3214 (cris_supply_gregset, fetch_core_registers): Adjust.
3215
3216 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
3217
3218 * cris-tdep.c (elf_greg_t): Change typedef to unsigned char[4]
3219
3220 2013-09-05 Andrew Burgess <aburgess@broadcom.com>
3221
3222 * defs.h (deprecated_command_loop_hook): Remove, including
3223 references in comments.
3224 * interps.c (current_interp_command_loop): No longer use
3225 deprecated_command_loop_hook.
3226 (clear_interpreter_hooks): Remove deprecated_command_loop_hook
3227 setup.
3228 * top.c (deprecated_command_loop_hook): Remove.
3229
3230 2013-09-05 Pedro Alves <palves@redhat.com>
3231
3232 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): 'dwarf_regnum'
3233 local is now int instead of ULONGEST. Print it with %d
3234 instead of paddress.
3235
3236 2013-09-05 Tristan Gingold <gingold@adacore.com>
3237
3238 * MAINTAINERS: Remove avr maintainership.
3239
3240 2013-09-05 Pedro Alves <palves@redhat.com>
3241
3242 * findvar.c (value_of_register): Rework in terms of
3243 value_of_register_lazy.
3244
3245 2013-09-05 Muhammad Bilal <mbilal@codesourcery.com>
3246
3247 * symfile.c (add_symbol_file_command): Remove trailing
3248 whitespaces and blank line after comment.
3249
3250 2013-09-05 Pedro Alves <palves@redhat.com>
3251
3252 * tui/tui-regs.c (tui_register_format): Don't look at the
3253 register's name here. Return string representing register
3254 value instead of storing it in the data element.
3255 (tui_get_register): Compare register string representations
3256 instead of register value states and contents.
3257
3258 2013-09-05 Pedro Alves <palves@redhat.com>
3259
3260 PR tui/15933
3261 * tui/tui-regs.c (tui_show_registers): Show registers of the
3262 selected frame, not the current frame.
3263
3264 2013-09-05 Ricard Wanderlof <ricardw@axis.com>
3265
3266 * MAINTAINERS (Write After Approval): Add myself to the list.
3267
3268 2013-09-04 Doug Evans <dje@google.com>
3269
3270 * dwarf2read.c (queue_and_load_all_dwo_tus): New function.
3271 (queue_and_load_dwo_tu): New function.
3272 (lookup_dwo_signatured_type): Set per_cu.tu_read.
3273 (maybe_queue_comp_unit): Rename this_cu argument to dependent_cu.
3274 Make dependent_cu optional.
3275 (dw2_do_instantiate_symtab): If we just loaded a CU from a DWO,
3276 and an older .gdb_index is in use, queue and load all its TUs too.
3277
3278 2013-09-04 Jan Kratochvil <jan.kratochvil@redhat.com>
3279
3280 Code cleanup: Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH.
3281 * cli/cli-cmds.c (find_and_open_script): Add OPF_RETURN_REALPATH to
3282 variable search_flags.
3283 * defs.h (OPF_DISABLE_REALPATH): Rename to ...
3284 (OPF_RETURN_REALPATH): ... here.
3285 * dwarf2read.c (try_open_dwop_file): Set OPF_RETURN_REALPATH for flags.
3286 * exec.c (exec_file_attach): Remove OPF_DISABLE_REALPATH from openp
3287 call. Twice.
3288 * nto-tdep.c (nto_find_and_open_solib): Add OPF_RETURN_REALPATH for
3289 openp call.
3290 * solib.c (solib_find): Likewise. Four times.
3291 * source.c (openp): Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH
3292 in the function comment and for the realpath_fptr variable.
3293 (source_full_path_of): Add OPF_RETURN_REALPATH for openp call.
3294 (find_and_open_source): Likewise. Twice.
3295 * symfile.c (symfile_bfd_open): Likewise, also twice.
3296
3297 2013-09-04 Doug Evans <dje@google.com>
3298
3299 * progspace.c (save_current_space_and_thread): Remove unnecessary
3300 call to save_current_inferior.
3301
3302 2013-09-04 Andrew Burgess <aburgess@broadcom.com>
3303
3304 * sh64-tdep.c (sh64_do_register): Return after printing message
3305 about unavailable register contents.
3306
3307 2013-09-04 Muhammad Bilal <mbilal@codesourcery.com>
3308 Pedro Alves <palves@redhat.com>
3309
3310 * symfile.c (add_symbol_file_command): Error out on unknown
3311 option. Handle EXPECTING_SEC_ADDR/EXPECTING_SEC_NAME before '-'
3312 options and collapse into single conditional branch.
3313
3314 2013-09-03 Luis Machado <lgustavo@codesourcery.com>
3315
3316 * inf-child.c (inf_child_follow_fork): New parameter
3317 detach_fork.
3318 * inf-ptrace.c (inf_ptrace_follow_fork): Likewise.
3319 * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
3320 * inferior.h (detach_fork): Remove.
3321 * infrun.c (detach_fork): Adjust comment and make it
3322 static.
3323 (follow_fork): Pass detach_fork parameter to
3324 target_follow_fork.
3325 * linux-nat.c (linux_child_follow_fork): New parameter
3326 detach_fork.
3327 * target.c (target_follow_fork): New parameter detach_fork.
3328 Pass detach_fork as parameter and print its value.
3329 * target.h (struct target_ops) <to_follow_fork>: New int
3330 parameter.
3331 (target_follow_fork): New parameter detach_fork.
3332
3333 2013-09-03 Joel Brobecker <brobecker@adacore.com>
3334
3335 * solib-ia64-hpux.c (ia64_hpux_relocate_section_addresses):
3336 Replace sec->bfd by sec->the_bfd_section->owner.
3337
3338 2013-09-03 Yao Qi <yao@codesourcery.com>
3339
3340 * linux-tdep.c (linux_is_uclinux): New function. Code moved
3341 from linux_has_shared_address_space.
3342 (linux_has_shared_address_space): Call linux_is_uclinux.
3343 * linux-tdep.h (linux_is_uclinux): Declare.
3344 * m68klinux-tdep.c (m68k_linux_get_sigtramp_info): Call
3345 linux_is_uclinux.
3346
3347 2013-09-03 Yao Qi <yao@codesourcery.com>
3348
3349 * config/djgpp/fnchange.lst: Remove entry of
3350 i386-interix-nat.c and i386-interix-tdep.c.
3351 * configure.ac: Remove '*-*-interix*'.
3352 * configure: Re-generated.
3353 * defs.h (enum gdb_osabi): Remove GDB_OSABI_INTERIX.
3354 * i386-cygwin-tdep.c (i386_cygwin_osabi_sniffer): Remove
3355 obsolete comments.
3356 * osabi.c (gdb_osabi_names): Remove "Interix".
3357
3358 2013-09-03 Yao Qi <yao@codesourcery.com>
3359
3360 * arch-utils.c: Fix typo in the comment to gdbarch_update_p.
3361
3362 2013-09-02 Markus Metzger <markus.t.metzger@intel.com>
3363
3364 * record.h (record_print_flag) <record_print_src_line,
3365 record_print_insn_range>: Rename into ...
3366 (record_print_flag) <record_print_src_line,
3367 record_print_insn_range>: ... this. Update all users.
3368
3369 2013-09-02 Pierre Muller <muller@sourceware.org>
3370
3371 * windows-nat.c (windows_xfer_memory): Handle ERROR_PARTIAL_COPY
3372 error code.
3373
3374 2013-09-02 Pierre Muller <muller@sourceware.org>
3375
3376 * windows-nat.c (windows_xfer_memory): Fix compilation failure
3377 by use of plongest function.
3378
3379 2013-09-02 Tristan Gingold <gingold@adacore.com>
3380
3381 * NEWS: Add entry mentioning support for native Windows x64
3382 SEH data.
3383
3384 * amd64-windows-tdep.c: #include "objfiles.h", "frame-unwind.h",
3385 "coff/internal.h", "coff/i386.h", "coff/pe.h" and "libcoff.h".
3386 (struct amd64_windows_frame_cache): New struct.
3387 (amd64_windows_w2gdb_regnum): New global.
3388 (pc_in_range, amd64_windows_frame_decode_epilogue)
3389 (amd64_windows_frame_decode_insns, amd64_windows_find_unwind_info)
3390 (amd64_windows_frame_cache, amd64_windows_frame_prev_register)
3391 (amd64_windows_frame_this_id): New functions.
3392 (amd64_windows_frame_unwind): New static global.
3393 (amd64_windows_skip_prologue): New function.
3394 (amd64_windows_init_abi): Call frame_unwind_prepend_unwinder
3395 with amd64_windows_frame_unwind. Call set_gdbarch_skip_prologue
3396 with amd64_windows_skip_prologue.
3397
3398 2013-08-30 Joel Brobecker <brobecker@adacore.com>
3399
3400 GDB 7.6.1 released.
3401
3402 2013-08-30 Pedro Alves <palves@redhat.com>
3403
3404 * mi/mi-main.c (mi_cmd_trace_find): Use LOC_AND_ADDRESS instead of
3405 SRC_AND_LOC.
3406
3407 2013-08-30 Pedro Alves <palves@redhat.com>
3408
3409 * thread.c (restore_selected_frame): Use SRC_AND_LOC, and change
3410 warning text.
3411
3412 2013-08-30 Pedro Alves <palves@redhat.com>
3413
3414 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
3415 Adjust arguments to print_stack_frame.
3416
3417 2013-08-30 Pedro Alves <palves@redhat.com>
3418
3419 * ada-tasks.c (task_command_1): Write SRC_AND_LOC instead '1'.
3420
3421 2013-08-30 Pedro Alves <palves@redhat.com>
3422
3423 * frame.h (show_and_print_stack_frame): Delete declaration.
3424
3425 2013-08-30 Phil Muldoon <pmuldoon@redhat.com>
3426
3427 PR python/15461
3428 * python/py-arch.c (ARCHPY_REQUIRE_VALID): New macro.
3429 (archpy_name): Check for valid architecture.
3430 (archpy_disassemble): Ditto.
3431
3432 2013-08-29 Joel Brobecker <brobecker@adacore.com>
3433
3434 * rs6000-nat.c (rs6000_ptrace32): Cast "addr" to "uintptr_t"
3435 instead of "long long" in call to ptrace64.
3436
3437 2013-08-29 Andrew Burgess <aburgess@broadcom.com>
3438
3439 * mi/mi-interp.c (mi_command_loop): Change signature to match
3440 interp_command_loop_ftype.
3441 (mi1_command_loop): Remove.
3442 (mi2_command_loop): Remove.
3443 (mi3_command_loop): Remove.
3444 (mi_interpreter_resume): Remove setting of
3445 deprecated_command_loop_hook.
3446 (_initialize_mi_interp): Set mi_command_loop as the command loop
3447 callback.
3448
3449 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
3450
3451 * valops.c (do_search_struct_field): Pass v2 instead of base_type to
3452 value_type.
3453
3454 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
3455
3456 * value.c (allocate_value_contents): Make static.
3457 * value.h (allocate_value_contents): Remove prototype.
3458
3459 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
3460
3461 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use value_at_lazy instead
3462 of assembling value via allocate_value_lazy and attribute setter.
3463 * findvar.c (default_read_var_value): Use value_at_lazy instead of
3464 assembling value via allocate_value_lazy and attribute setter.
3465 * valops.c (do_search_struct_field): Use value_at_lazy instead of
3466 assembling value via allocate_value_lazy and attribute setter.
3467
3468 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
3469
3470 * value.c (value_from_contents_and_address): Replace allocate_value and
3471 memcpy with value_from_contents.
3472
3473 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
3474
3475 * python/py-framefilter.c (py_print_frame): Remove usage of
3476 PyString_AsString. Use python_string_to_host_string instead.
3477 Refactor function to work with a string as a new allocation
3478 instead of a pointer.
3479 (py_print_frame): Ditto.
3480 * python/lib/gdb/frames.py (return_list): Cain iterators together
3481 instead of adding them as a list.
3482 (_sort_list): Call return_list, and remove duplicate code.
3483 (execute_frame_filters): Convert iterator to a list with list().
3484 * python/lib/gdb/command/frame_filters.py
3485 (SetFrameFilterPriority._set_filter_priority): Convert priority
3486 attribute to an integer.
3487 * python/lib/gdb/FrameIterator.py (FrameIterator.next): Define
3488 wrapper function __next__.
3489 * python/lib/gdb/FrameDecorator.py: If basestring not defined,
3490 define as "str".
3491
3492 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
3493
3494 PR python/15752
3495 * python/py-framefilter.c (apply_frame_filter): Check
3496 gdb_python_initialized. Exit if the Python frame-filter code
3497 cannot be initialized.
3498
3499 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
3500
3501 PR cli/15842
3502 * top.c (print_gdb_version): Remove erroneous newline after help
3503 text.
3504
3505 2013-08-29 Yao Qi <yao@codesourcery.com>
3506
3507 * varobj.c (install_dynamic_child): Remove trailing space.
3508 Add one blank line after variable declaration.
3509
3510 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3511
3512 PR gdb/15415
3513 * corefile.c (get_exec_file): Use exec_filename.
3514 * defs.h (OPF_DISABLE_REALPATH): New definition. Add new comment.
3515 * exec.c (exec_close): Free EXEC_FILENAME.
3516 (exec_file_attach): New variable canonical_pathname. Use
3517 OPF_DISABLE_REALPATH. Call gdb_realpath explicitly. Set
3518 EXEC_FILENAME.
3519 * exec.h (exec_filename): New.
3520 * inferior.c (print_inferior, inferior_command): Use
3521 PSPACE_EXEC_FILENAME.
3522 * mi/mi-main.c (print_one_inferior): Likewise.
3523 * progspace.c (clone_program_space, print_program_space): Likewise.
3524 * progspace.h (struct program_space): New field pspace_exec_filename.
3525 * source.c (openp): Describe OPF_DISABLE_REALPATH. New variable
3526 realpath_fptr, initialize it from OPF_DISABLE_REALPATH, use it.
3527
3528 2013-08-28 Will Newton <will.newton@linaro.org>
3529
3530 * common/linux-ptrace.c: Include stdint.h unconditionally.
3531
3532 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3533
3534 Code cleanup.
3535 * nto-tdep.c (nto_find_and_open_solib): Use OPF_TRY_CWD_FIRST.
3536
3537 2013-08-28 Yao Qi <yao@codesourcery.com>
3538 Pedro Alves <palves@redhat.com>
3539
3540 * event-top.c (gdb_setup_readline): Call stderr_fileopen
3541 instead of stdio_fileopen.
3542 * main.c (captured_main) [__MINGW32__]: Set stderr unbuffered.
3543 .Call stderr_fileopen instead of stdio_fileopen.
3544 * ui-file.c [__MINGW32__] (stderr_file_write): New function.
3545 [__MINGW32__] (stderr_file_fputs): New function.
3546 (stderr_fileopen): New function.
3547 * ui-file.h (stderr_fileopen): Declare.
3548
3549 2013-08-27 Doug Evans <dje@google.com>
3550
3551 * dwarf2read.c (struct dwarf2_cu): Tweak comment.
3552 (struct dwarf2_per_cu_data): Ditto.
3553 (maybe_queue_comp_unit): Delete forward decl. Add comment.
3554 (process_imported_unit_die): Ditto.
3555 (follow_die_sig_1): Simplify assert.
3556
3557 2013-08-27 Pedro Alves <palves@redhat.com>
3558
3559 * windows-nat.c (windows_xfer_memory): Adjust prototype to follow
3560 xfer_partial's interface. Return TARGET_XFER_E_IO on error.
3561 (windows_xfer_partial): Defer TARGET_OBJECT_MEMORY handling to
3562 windows_xfer_memory directly.
3563 (init_windows_ops): Don't install a deprecated_xfer_memory method.
3564
3565 2013-08-27 Pedro Alves <palves@redhat.com>
3566
3567 * darwin-nat.c (darwin_xfer_memory): Delete.
3568 (_initialize_darwin_inferior): Don't install a
3569 deprecated_xfer_memory method.
3570
3571 2013-08-27 Pedro Alves <pedro@codesourcery.com>
3572 Yao Qi <yao@codesourcery.com>
3573
3574 * mi/mi-cmd-stack.c (list_args_or_locals): Adjust prototype.
3575 (parse_no_frames_option): Remove.
3576 (mi_cmd_stack_list_locals): Handle --skip-unavailable.
3577 (mi_cmd_stack_list_args): Adjust.
3578 (mi_cmd_stack_list_variables): Handle --skip-unavailable.
3579 (list_arg_or_local): Add new parameter 'skip_unavailable'. Return
3580 early if SKIP_UNAVAILABLE is true and ARG->val is unavailable.
3581 Caller update.
3582 (list_args_or_locals): New parameter 'skip_unavailable'.
3583 Handle it.
3584 * valprint.c (scalar_type_p): Rename to ...
3585 (val_print_scalar_type_p): ... this. Make extern.
3586 (val_print, value_check_printable): Adjust.
3587 * valprint.h (val_print_scalar_type_p): Declare.
3588 * value.c (value_entirely_unavailable): New function.
3589 * value.h (value_entirely_unavailable): Declare.
3590
3591 * NEWS: Mention the new option "--skip-unavailable" to MI
3592 commands '-stack-list-locals', '-stack-list-arguments' and
3593 '-stack-list-variables'.
3594
3595 2013-08-27 Yao Qi <yao@codesourcery.com>
3596
3597 * mi/mi-cmd-stack.c (parse_no_frames_option): Remove.
3598 (mi_cmd_stack_list_args): Use mi_getopt_silent to handle
3599 options.
3600 * mi/mi-getopt.c (mi_getopt): Remove.
3601 (mi_getopt_1): Renamed from mi_getopt. Add one parameter
3602 'error_on_unknown'.
3603 (mi_getopt): Call mi_getopt_1.
3604 (mi_getopt_silent): New.
3605 * mi/mi-getopt.h (mi_getopt_silent): Declare.
3606
3607 2013-08-26 Doug Evans <dje@google.com>
3608
3609 PR symtab/15885
3610 * dwarf2read.c (dw2_dump): Print some minimal information indicating
3611 .gdb_index is in use.
3612 * symfile.c (reread_symbols): Reset objfile->sf.
3613
3614 * NEWS: Document "mt print objfiles" now takes optional regexp.
3615 * symmisc.c (maintenance_print_objfiles): Argument is now an optional
3616 regexp of objfiles to print.
3617 (_initialize_symmisc): Update doc string for "mt print objfiles".
3618
3619 * dwarf2read.c (write_psymtabs_to_index): Move error checks ahead of
3620 missing debug info checks.
3621
3622 2013-08-26 Raunaq Bathija <raunaq12@in.ibm.com>
3623 Ulrich Weigand <uweigand@de.ibm.com>
3624
3625 * xcoffread.c (arrange_linetable): Add fix to correctly handle
3626 line tables generated by XLC compiled binaries.
3627
3628 2013-08-23 Doug Evans <dje@google.com>
3629
3630 * symmisc.c (dump_symtab): Delete prototype.
3631 (dump_msymbols, dump_objfile): Ditto.
3632 (maintenance_info_symtabs): Mark as dont_repeat.
3633 (_initialize_symmisc): Improve doc string for "mt info symtabs".
3634
3635 * elfread.c (elf_symfile_read): Move "Done reading minimal symbols"
3636 debugging printf to better location.
3637
3638 2013-08-23 Pedro Alves <palves@redhat.com>
3639
3640 * target.c (target_read_live_memory): Change type of 'ret' local
3641 to LONGEST.
3642
3643 2013-08-23 Pedro Alves <palves@redhat.com>
3644
3645 * remote.c (remote_write_bytes_aux, remote_write_bytes)
3646 (remote_read_bytes): Change return type to LONGEST, and adjust to
3647 return a target_xfer_error on error.
3648 (remote_xfer_memory): Delete.
3649 (remote_flash_write): Change type of 'ret' local to LONGEST.
3650 (remote_xfer_partial, remote_xfer_partial): Adjust.
3651 (init_remote_ops): Don't install a deprecated_xfer_memory hook.
3652
3653 2013-08-23 Pierre Muller <muller@sourceware.org>
3654
3655 ARI fix: Push # directives to start of line.
3656 * rs6000-nat.c (rs6000_ptrace32, rs6000_ptrace64): Rule applied.
3657
3658 2013-08-12 Muhammad Waqas <mwaqas@codesourcery.com>
3659
3660 PR gdb/15501
3661 * breakpoint.c (enable_command, disable_command): Iterate over
3662 all specified breakpoint locations.
3663
3664 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
3665
3666 * common/linux-ptrace.c (linux_fork_to_function): Push #
3667 directives to the start of the line.
3668 (linux_check_ptrace_features): Fix warning message to use
3669 the "_" markup.
3670
3671 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
3672
3673 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-nat.h and
3674 nat/linux-waitpid.h.
3675 (linux-waitpid.o): New object file rule.
3676 * common/linux-ptrace.c: Include nat/linux-waitpid.h.
3677 (current_ptrace_options): Moved from linux-nat.c.
3678 (linux_ptrace_test_ret_to_nx): Use type casts for ptrace
3679 parameters.
3680 (linux_fork_to_function): New function.
3681 (linux_grandchild_function): Likewise.
3682 (linux_child_function): Likewise.
3683 (linux_check_ptrace_features): New function, heavily
3684 based on linux-nat.c:linux_test_for_tracefork.
3685 (linux_enable_event_reporting): New function.
3686 (ptrace_supports_feature): Likewise.
3687 (linux_supports_tracefork): Likewise.
3688 (linux_supports_traceclone): Likewise.
3689 (linux_supports_tracevforkdone): Likewise.
3690 (linux_supports_tracesysgood): Likewise.
3691 * common/linux-ptrace.h (HAS_NOMMU): Moved from
3692 gdbserver/linux-low.c.
3693 (linux_enable_event_reporting): New declaration.
3694 (linux_supports_tracefork): Likewise.
3695 (linux_supports_traceclone): Likewise.
3696 (linux_supports_tracevforkdone): Likewise.
3697 (linux_supports_tracesysgood): Likewise.
3698 * config.in (PTRACE_TYPE_ARG4): Regenerate.
3699 * config/aarch64/linux.mh (NATDEPFILES): Add linux-waitpid.o.
3700 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
3701 * config/arm/linux.mh (NATDEPFILES): Likewise.
3702 * config/i386/linux.mh (NATDEPFILES): Likewise.
3703 * config/i386/linux64.mh (NATDEPFILES): Likewise.
3704 * config/ia64/linux.mh (NATDEPFILES): Likewise.
3705 * config/m32r/linux.mh (NATDEPFILES): Likewise.
3706 * config/m68k/linux.mh (NATDEPFILES): Likewise.
3707 * config/mips/linux.mh (NATDEPFILES): Likewise.
3708 * config/pa/linux.mh (NATDEPFILES): Likewise..
3709 * config/powerpc/linux.mh (NATDEPFILES): Likewise..
3710 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
3711 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
3712 * config/sparc/linux.mh (NATDEPFILES): Likewise.
3713 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
3714 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
3715 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
3716 * configure.ac (AC_CACHE_CHECK): Add void * to the list of
3717 ptrace's 4th argument's types.
3718 Check the type of PTRACE_TYPE_ARG4.
3719 * configure: Regenerate.
3720 * linux-nat.c: Include nat/linux-nat.h and nat/linux-waitpid.h.
3721 (SYSCALL_SIGTRAP): Moved to nat/linux-nat.h.
3722 (linux_supports_tracefork_flag): Remove.
3723 (linux_supports_tracesysgood_flag): Likewise.
3724 (linux_supports_tracevforkdone_flag): Likewise.
3725 (current_ptrace_options): Moved to
3726 common/linux-ptrace.c.
3727 (linux_tracefork_child): Remove.
3728 (my_waitpid): Remove.
3729 (linux_test_for_tracefork): Renamed to
3730 linux_check_ptrace_features and moved to common/linux-ptrace.c.
3731 (linux_test_for_tracesysgood): Remove.
3732 (linux_supports_tracesysgood): Remove.
3733 (linux_supports_tracefork): Remove.
3734 (linux_supports_tracevforkdone): Remove.
3735 (linux_enable_tracesysgood): Remove.
3736 (linux_enable_event_reporting): Remove.
3737 (linux_init_ptrace): New function.
3738 (linux_child_post_attach): Call linux_init_ptrace.
3739 (linux_child_post_startup_inferior): Call linux_init_ptrace.
3740 (linux_child_follow_fork): Call linux_supports_tracefork
3741 and linux_supports_tracevforkdone.
3742 (linux_child_insert_fork_catchpoint): Call
3743 linux_supports_tracefork.
3744 (linux_child_insert_vfork_catchpoint): Likewise.
3745 (linux_child_set_syscall_catchpoint): Call
3746 linux_supports_tracesysgood.
3747 (lin_lwp_attach_lwp): Call linux_supports_tracefork.
3748 * nat/linux-nat.h: New file.
3749 * nat/linux-waitpid.c: New file.
3750 * nat/linux-waitpid.h: New file.
3751
3752 2013-08-22 Samuel Bronson <naesten@gmail.com>
3753
3754 ARM Linux support for `catch syscall'.
3755 * syscalls/arm-linux.py: New file.
3756 * syscalls/arm-linux.xml: Likewise.
3757 * arm-linux-tdep.c (arm_linux_get_syscall_number): New function.
3758 (arm_linux_init_abi): Register the new function and syscall xml file.
3759 * data-directory/Makefile.in: Install the new syscall xml file.
3760 * NEWS: Brag about this.
3761
3762 2013-08-22 Pedro Alves <palves@redhat.com>
3763
3764 PR gdb/15871
3765 * corefile.c (target_xfer_memory_error): New function.
3766 (memory_error): Defer EIO to target_memory_error.
3767 (read_memory): Use target_xfer_partial, and handle finer-grained
3768 target xfer errors.
3769 * target.c (target_xfer_error_to_string): New function.
3770 (memory_xfer_partial_1): If memory is known to be
3771 unavailable, return TARGET_XFER_E_UNAVAILABLE instead of -1.
3772 (target_xfer_partial): Make extern.
3773 * target.h (enum target_xfer_error): New enum.
3774 (target_xfer_error_to_string): Declare function.
3775 (target_xfer_partial): Declare function.
3776 (struct target_ops) <xfer_partial>: Adjust describing comment.
3777
3778 2013-08-22 Alan Modra <amodra@gmail.com>
3779
3780 * configure.host: Support powerpc64le-linux and powerpcle-linux hosts.
3781 * configure.tgt: Likewise as targets.
3782
3783 2013-08-20 Doug Evans <dje@google.com>
3784
3785 * buildsym.c (subfile_stack): Move here from buildsym.h.
3786 (pending_macros): Ditto.
3787 (get_macro_table): New function.
3788 (buildsym_init): Initialize subfile_stack.
3789 * coffread.c (type_vector,type_vector_length): Moved here from
3790 buildsym.h.
3791 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
3792 (coff_symtab_read): Use it.
3793 * dbxread.c (read_ofile_symtab): Delete init of subfile_stack.
3794 * dwarf2read.c (macro_start_file): Replace uses of pending_macros
3795 with call to get_macro_table.
3796 * stabsread.c (type_vector,type_vector_length): Moved here from
3797 buildsym.h.
3798 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
3799 * buildsym.h (get_macro_table): Declare.
3800
3801 2013-08-20 Tom Tromey <tromey@redhat.com>
3802
3803 * dbxread.c (record_minimal_symbol): Make 'name' argument const.
3804 Update.
3805 (read_dbx_dynamic_symtab): Make 'name' const. Remove casts.
3806
3807 2013-08-20 Doug Evans <dje@google.com>
3808
3809 * blockframe.c: Remove #include "psymtab.h".
3810 * cp-support.c: Ditto.
3811 * source.c: Ditto.
3812 * stack.c: Ditto.
3813
3814 2013-08-20 Tom Tromey <tromey@redhat.com>
3815
3816 PR python/15816:
3817 * exceptions.h (return_mask): Now an enum.
3818 (RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL): Now
3819 enum constants.
3820
3821 2013-08-20 Tom Tromey <tromey@redhat.com>
3822
3823 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Use
3824 get_objfile_arch.
3825 * elfread.c (elf_rel_plt_read, elf_gnu_ifunc_record_cache)
3826 (elf_gnu_ifunc_resolve_by_got): Use get_objfile_arch.
3827 * jit.c (jit_object_close_impl): Update.
3828 * jv-lang.c (get_dynamics_objfile): Update.
3829 * linespec.c (add_minsym): Use get_dynamics_objfile.
3830 * objfiles.c (get_objfile_bfd_data): Initialize 'gdbarch' field.
3831 (allocate_objfile): Don't initialize 'gdbarch' field.
3832 (get_objfile_arch): Update.
3833 * objfiles.h (struct objfile_per_bfd_storage) <gdbarch>: New field,
3834 moved from...
3835 (struct objfile) <gdbarch>: ... here. Remove.
3836 * stap-probe.c (stap_can_evaluate_probe_arguments): Use
3837 get_objfile_arch.
3838 * symfile.c (init_entry_point_info): Use get_objfile_arch.
3839
3840 2013-08-20 Alan Modra <amodra@gmail.com>
3841
3842 * doublest.c (convert_floatformat_to_doublest): Use fmt->split_half
3843 for IBM long double nan and inf.
3844 (floatformat_is_negative, floatformat_classify,
3845 floatformat_mantissa): Similarly.
3846 (floatformat_ieee_single, floatformat_ieee_double,
3847 floatformat_ieee_quad, floatformat_arm_ext,
3848 floatformat_ia64_spill): Delete unused vars.
3849 (_initialize_doublest): Delete unused function.
3850 * gdbtypes.c (floatformats_ibm_long_double): Use new big- and
3851 little-endian variants of floatformat_ibm_long_double.
3852
3853 2013-08-19 Luis Machado <lgustavo@codesourcery.com>
3854
3855 * Makefile.in (SFILES): Remove common/target-common.c and
3856 add target/waitstatus.c.
3857 (HFILES_NO_SRCDIR): Remove common/target-common.h and add
3858 target/resume.h, target/wait.h and target/waitstatus.h.
3859 (COMMON_OBS): Remove target-common.o and add
3860 waitstatus.o.
3861 (target-common.o): Remove.
3862 (waitstatus.o): New target object file.
3863 * common/target-common.c: Move contents to
3864 target/waitstatus.c and remove.
3865 * common/target-common.h: Move contents to other files and
3866 remove.
3867 (enum resume_kind: Move to target/resume.h.
3868 (TARGET_WNOHANG): Move to target/wait.h.
3869 (enum target_waitkind): Move to target/waitstatus.h.
3870 (struct target_waitstatus): Likewise.
3871 * target.h: Do not include target-common.h and
3872 include target/resume.h, target/wait.h and
3873 target/waitstatus.h.
3874 * target/resume.h: New file.
3875 * target/wait.h: New file.
3876 * target/waitstatus.h: New file.
3877 * target/waitstatus.c: New file.
3878
3879 2013-08-19 Pedro Alves <palves@redhat.com>
3880
3881 * linux-nat.c (linux_test_for_tracefork)
3882 (linux_test_for_tracesysgood, linux_child_follow_fork)
3883 (lin_lwp_attach_lwp, linux_nat_resume): Don't block child signals.
3884 (linux_nat_wait_1): Extend comment.
3885 (linux_async_pipe): Add comment.
3886
3887 2013-08-15 Kevin Buettner <kevinb@redhat.com>
3888
3889 * rl78-tdep.c (RL78_RAW_PC_REGNUM): New enum.
3890 (RL78_PC_REGNUM): Move to list of pseudo-register enums.
3891 (rl78_register_type, rl78_register_name, rl78_register_reggroup_p):
3892 Update to account for fact that PC is now a pseudo-register.
3893 (rl78_pseudo_register_write, rl78_pseudo_register_read): Add
3894 cases for RL78_PC_REGNUM.
3895
3896 2013-08-15 Muhammad Bilal <mbilal@codesourcery.com>
3897
3898 PR cli/15841
3899 * top.c (quit_force): Skip writing history file
3900 if input is not from terminal.
3901
3902 2013-08-14 Tom Tromey <tromey@redhat.com>
3903
3904 * remote.c (struct remote_state) <echo_nextthread, nextthread,
3905 resultthreadlist>: New fields.
3906 (OPAQUETHREADBYTES, threadref, MAXTHREADLISTRESULTS): Move earlier.
3907 (remote_get_threadlist, remote_threadlist_iterator): Use
3908 new fields. Remove static variables.
3909
3910 2013-08-14 Tom Tromey <tromey@redhat.com>
3911
3912 * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p,
3913 remote_watch_data_address>: New fields.
3914 (remote_stopped_by_watchpoint_p, remote_watch_data_address): Remove.
3915 (process_stop_reply, remote_wait_as)
3916 (remote_check_watch_resources, remote_stopped_data_address): Update.
3917
3918 2013-08-14 Tom Tromey <tromey@redhat.com>
3919
3920 * remote.c (struct remote_state) <async_client_callback,
3921 async_client_context>: New fields.
3922 (async_client_callback, async_client_context): Remove.
3923 (remote_async_serial_handler, remote_async): Update.
3924
3925 2013-08-14 Tom Tromey <tromey@redhat.com>
3926
3927 * remote.c (sizeof_pkt): Remove.
3928 (remote_trace_find): Use rs->buf_size, not sizeof_pkt.
3929
3930 2013-08-14 Tom Tromey <tromey@redhat.com>
3931
3932 * remote.c (struct remote_state) <use_threadinfo_query,
3933 use_threadextra_query>: New fields.
3934 (remote_threads_info, remote_threads_extra_info)
3935 (remote_open_1): Update.
3936
3937 2013-08-14 Tom Tromey <tromey@redhat.com>
3938
3939 * remote.c (struct remote_state) <finished_object,
3940 finished_annex, finished_offset>: New fields.
3941 (remote_read_qxfer): Use remote_state fields; remove static
3942 variables.
3943
3944 2013-08-14 Tom Tromey <tromey@redhat.com>
3945
3946 * remote.c (struct remote_state) <last_sent_step>:
3947 New field.
3948 (last_sent_step): Remove.
3949 (remote_resume, remote_wait_as): Update.
3950
3951 2013-08-14 Tom Tromey <tromey@redhat.com>
3952
3953 * remote.c (struct remote_state) <last_sent_signal>:
3954 New field.
3955 (last_sent_signal): Remove.
3956 (new_remote_state, remote_resume, remote_wait_as): Update.
3957
3958 2013-08-14 Tom Tromey <tromey@redhat.com>
3959
3960 * remote.c (struct remote_state) <last_program_signals_packet>:
3961 New field.
3962 (last_program_signals_packet): Remove.
3963 (remote_program_signals, remote_open_1): Update.
3964
3965 2013-08-14 Tom Tromey <tromey@redhat.com>
3966
3967 * remote.c (struct remote_state) <last_pass_packet>:
3968 New field.
3969 (last_pass_packet): Remove.
3970 (remote_pass_signals, remote_open_1): Update.
3971
3972 2013-08-14 Tom Tromey <tromey@redhat.com>
3973
3974 * remote.c (struct remote_state) <remote_traceframe_number>:
3975 New field.
3976 (remote_traceframe_number): Remove.
3977 (new_remote_state, remote_open_1, set_remote_traceframe)
3978 (remote_trace_find): Update.
3979
3980 2013-08-14 Tom Tromey <tromey@redhat.com>
3981
3982 * remote.c (struct remote_state) <general_thread, continue_thread>:
3983 New fields.
3984 (general_thread, continue_thread): Remove.
3985 (record_currthread, set_thread, set_general_process)
3986 (remote_open_1, extended_remote_attach_1, remote_wait_as)
3987 (extended_remote_mourn_1): Update.
3988
3989 2013-08-14 Tom Tromey <tromey@redhat.com>
3990
3991 * remote.c (struct remote_state) <remote_desc>: New field.
3992 (remote_desc): Remove.
3993 (remote_threads_info, remote_threads_extra_info, remote_close)
3994 (send_interrupt_sequence, remote_start_remote, remote_open_1)
3995 (readchar, remote_xfer_partial, remote_rcmd, packet_command)
3996 (remote_hostio_send_command, remote_file_put, remote_file_get)
3997 (remote_file_delete, remote_can_async_p, remote_is_async_p)
3998 (remote_async, remote_new_objfile, set_range_stepping): Update.
3999
4000 2013-08-14 Tom Tromey <tromey@redhat.com>
4001
4002 * remote.c (remote_state): Now a pointer.
4003 (get_remote_state_raw): Update.
4004 (new_remote_state): New function.
4005 (_initialize_remote): Use new_remote_state.
4006
4007 2013-08-14 Tom Tromey <tromey@redhat.com>
4008
4009 * remote.c (remote_protocol_features): Now const.
4010
4011 2013-08-14 Tom Tromey <tromey@redhat.com>
4012
4013 * remote.c (crc32_table, crc32): Remove.
4014 (remote_verify_memory): Use xcrc32.
4015
4016 2013-08-13 Sergio Durigan Junior <sergiodj@redhat.com>
4017
4018 * value.h (create_internalvar_type_lazy): Adjust prototype
4019 declaration.
4020
4021 2013-08-13 Andrew Burgess <aburgess@broadcom.com>
4022
4023 * common/format.c (parse_format_string): Don't allow '#' flag for
4024 pointer arguments in format string.
4025
4026 2013-08-13 Pierre Muller <muller@sourceware.org>
4027
4028 * utils.c (init_page_info): Only call tgetnum function
4029 if rl_get_screen_size did not return useful values.
4030
4031 2013-08-12 Ali Anwar <ali_anwar@codesourcery.com>
4032
4033 PR breakpoints/15117
4034 * linespec.c (linespec_parse_basic): Check for convenience
4035 variable or history value while parsing.
4036
4037 2013-08-12 Sergio Durigan Junior <sergiodj@redhat.com>
4038
4039 Revert implementation of gdbarch_gdb_signal_{to,from}_target for
4040 AVR.
4041 * avr-tdep.c: Remove include of "linux-tdep.h". Remove enum with
4042 different signals between the generic Linux kernel implementation
4043 and AVR's.
4044 (avr_linux_gdb_signal_from_target): Delete.
4045 (avr_linux_gdb_signal_to_target): Delete.
4046 (avr_gdbarch_init): Don't set gdbarch_gdb_signal_{to,from}_target.
4047
4048 2013-08-09 Doug Evans <dje@google.com>
4049
4050 * dwarf2read.c (create_addrmap_from_index): Ignore bad address table
4051 entries.
4052
4053 2013-08-09 Sergio Durigan Junior <sergiodj@redhat.com>
4054
4055 * linux-tdep.c: Define enum with generic signal numbers.
4056 (linux_gdb_signal_from_target): New function.
4057 (linux_gdb_signal_to_target): Likewise.
4058 (linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4059 methods to the functions above.
4060 * linux-tdep.h (linux_gdb_signal_from_target): New prototype.
4061 (linux_gdb_signal_to_target): Likewise.
4062 * alpha-linux-tdep.c: Define new enum with signals different
4063 from generic Linux kernel.
4064 (alpha_linux_gdb_signal_from_target): New function.
4065 (alpha_linux_gdb_signal_to_target): Likewise.
4066 (alpha_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4067 with the functions mentioned above.
4068 * avr-tdep.c: Define enum with differences between Linux kernel
4069 and AVR signals.
4070 (avr_linux_gdb_signal_from_target): New function.
4071 (avr_linux_gdb_signal_to_target): Likewise.
4072 (avr_gdbarch_init): Set gdbarch_gdb_signal_{to,from}_target to
4073 the functions mentioned above.
4074 * sparc-linux-tdep.c: Define enum with differences between SPARC
4075 and generic Linux kernel signal numbers.
4076 (sparc32_linux_gdb_signal_from_target): New function.
4077 (sparc32_linux_gdb_signal_to_target): Likewise.
4078 (sparc32_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4079 to the functions defined above.
4080 * xtensa-linux-tdep.c: Define enum with differences between
4081 Xtensa and Linux kernel generic signals.
4082 (xtensa_linux_gdb_signal_from_target): New function.
4083 (xtensa_linux_gdb_signal_to_target): Likewise.
4084 (xtensa_linux_init_abi): Set gdbarch_gdb_signal_to_target
4085 to the functions defined above.
4086 * mips-linux-tdep.c: Define enum with differences between
4087 signals in MIPS and Linux kernel generic ones.
4088 (mips_gdb_signal_to_target): New function.
4089 (mips_gdb_signal_from_target): Redefine to use new enum, handle
4090 only different signals from the Linux kernel generic.
4091 (mips_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4092 the functions defined above.
4093 * mips-linux-tdep.h (enum mips_signals): Remove.
4094
4095 2013-08-09 Pedro Alves <palves@redhat.com>
4096
4097 * avr-tdep.c (XMALLOC): Delete macro.
4098 * cli/cli-dump.c (XMALLOC): Delete macro.
4099
4100 2013-08-09 Pedro Alves <palves@redhat.com>
4101
4102 * cli/cli-dump.c: Don't include cli/cli-dump.h.
4103 (scan_expression_with_cleanup, scan_filename_with_cleanup)
4104 (fopen_with_cleanup, add_dump_command): Make static.
4105 * cli/cli-dump.h: Delete file.
4106 * Makefile.in (HFILES_NO_SRCDIR): Remove reference to
4107 cli/cli-dump.h.
4108
4109 2013-08-09 Pedro Alves <palves@redhat.com>
4110
4111 * tracepoint.c (tfile_start): Show tilde-expanded filename in
4112 error message.
4113
4114 2013-08-09 Pedro Alves <palves@redhat.com>
4115
4116 * breakpoint.c (save_breakpoints): Show tilde-expanded filename in
4117 error message.
4118
4119 2013-08-09 Pedro Alves <palves@redhat.com>
4120
4121 * gcore.c (create_gcore_bfd): Don't use tilde_expand here.
4122 (gcore_command): Use tilde_expand here, and when showing the
4123 filename to the user, show the expanded version.
4124
4125 2013-08-09 Yao Qi <yao@codesourcery.com>
4126
4127 * stack.c (read_frame_arg): Set 'entryval_error' to NULL if
4128 'entryval' is set.
4129
4130 2013-08-08 Azat Khuzhin <a3at.mail@gmail.com> (tiny change)
4131
4132 * gcore.c (create_gcore_bfd): Use tilde_expand.
4133
4134 2013-08-08 Yao Qi <yao@codesourcery.com>
4135
4136 * frame.h (read_frame_local): Declare.
4137 * mi/mi-cmd-stack.c (list_args_or_locals): Call
4138 read_frame_local.
4139 * stack.c (read_frame_local): New.
4140
4141 2013-08-08 Yao Qi <yao@codesourcery.com>
4142
4143 * mi/mi-cmd-stack.c: Update comments to function
4144 list_args_or_locals.
4145
4146 2013-08-07 Tom Tromey <tromey@redhat.com>
4147
4148 PR symtab/15028:
4149 * dwarf2read.c (struct process_psymtab_comp_unit_data): New.
4150 (process_psymtab_comp_unit_reader): Use it.
4151 (process_psymtab_comp_unit): Update. Add "pretend_language"
4152 argument.
4153 (dwarf2_build_psymtabs_hard): Update.
4154 (scan_partial_symbols): Pass CU's language to
4155 process_psymtab_comp_unit.
4156
4157 2013-08-07 Tom Tromey <tromey@redhat.com>
4158
4159 * dwarf2read.c (dw2_get_primary_filename_reader): Remove.
4160 (dwarf2_gdb_index_functions): Update.
4161 * psymtab.c (find_symbol_file_from_partial): Remove.
4162 (psym_functions): Update.
4163 * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
4164 Remove.
4165
4166 2013-08-07 Tom Tromey <tromey@redhat.com>
4167
4168 * symfile.c (set_initial_language): Look up "main" symbol
4169 and use its language.
4170 * symtab.c (find_main_filename): Remove.
4171 * symtab.h (find_main_filename): Remove.
4172
4173 2013-08-07 Tom Tromey <tromey@redhat.com>
4174
4175 * dwarf2read.c (recursively_compute_inclusions): Add
4176 "immediate_parent" argument. Set symtab's "user" field
4177 if not set.
4178 (compute_symtab_includes): Update.
4179
4180 2013-08-07 Tom Tromey <tromey@redhat.com>
4181
4182 * linespec.c (convert_linespec_to_sals): Use maybe_add_address
4183 when adding label symbols.
4184
4185 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
4186 Ulrich Weigand <uweigand@de.ibm.com>
4187
4188 * configure.tgt (powerpc64-*-aix*): Match powerpc64 running aix.
4189 * configure.host (powerpc64-*-aix*): Likewise.
4190
4191 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
4192 Ulrich Weigand <uweigand@de.ibm.com>
4193
4194 * gdb_ptrace.h: Use ptrace64 instead of ptrace if HAVE_PTRACE64
4195 is defined.
4196 * rs6000-nat.c: Check for __ld_info64_ if compiling 64 BIT gdb.
4197 (rs6000_ptrace32): Call ptrace64 instead of ptrace if present.
4198 (rs6000_ptrace64): Call ptace64 instead of ptracex if present.
4199 * configure.ac: Check for ptrace64.
4200 * configure, config.in: Regenerate.
4201
4202 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
4203 Ulrich Weigand <uweigand@de.ibm.com>
4204
4205 * aixthread.c: Call ptrace64 instead of ptracex if defined.
4206 Call ptrace64 instead of ptrace if defined.
4207 Add macro addr_ptr to take care of ptrace address argument.
4208 (pdc_read_regs): Likewise.
4209 (pdc_write_regs): Likewise.
4210 (aix_thread_resume): Likewise.
4211 (fetch_regs_kernel_thread): Likewise.
4212 (store_regs_kernel_thread): Likewise.
4213
4214 2013-08-07 Anton Blanchard <anton@samba.org>
4215
4216 * MAINTAINERS: Add myself to Write After Approval.
4217
4218 2013-08-05 Tom Tromey <tromey@redhat.com>
4219
4220 * aix-thread.c (_initialize_aix_thread): Use
4221 complete_target_initialization.
4222 * bsd-uthread.c (_initialize_bsd_uthread): Use
4223 complete_target_initialization.
4224 * dec-thread.c (_initialize_dec_thread): Use
4225 complete_target_initialization.
4226 * ravenscar-thread.c (_initialize_ravenscar): Use
4227 complete_target_initialization.
4228 * sol-thread.c (_initialize_sol_thread): Use
4229 complete_target_initialization.
4230 * spu-multiarch.c (_initialize_spu_multiarch): Use
4231 complete_target_initialization.
4232
4233 2013-08-05 Tom Tromey <tromey@redhat.com>
4234
4235 * ada-exp.y (write_var_or_type): Use bound_minimal_symbol.
4236 * ada-lang.c (ada_lookup_simple_minsym): Return
4237 bound_minimal_symbol.
4238 * ada-lang.h (ada_lookup_simple_minsym): Update.
4239 * c-exp.y (variable): Use lookup_bound_minimal_symbol.
4240 * f-exp.y (variable): Use lookup_bound_minimal_symbol.
4241 * go-exp.y (variable): Use lookup_bound_minimal_symbol.
4242 * jv-exp.y (push_expression_name): Use lookup_bound_minimal_symbol.
4243 * m2-exp.y (variable): Use lookup_bound_minimal_symbol.
4244 * minsyms.c (msymbol_objfile): Remove.
4245 (lookup_minimal_symbol_internal): New function, from
4246 lookup_minimal_symbol.
4247 (lookup_minimal_symbol): Rewrite using
4248 lookup_minimal_symbol_internal.
4249 (lookup_bound_minimal_symbol): New function.
4250 * minsyms.h (msymbol_objfile): Remove.
4251 (lookup_bound_minimal_symbol): Declare.
4252 * p-exp.y (variable): Use lookup_bound_minimal_symbol.
4253 * parse.c (write_exp_msymbol): Change parameter to a
4254 bound_minimal_symbol.
4255 (write_dollar_variable): Use lookup_bound_minimal_symbol.
4256 * parser-defs.h (write_exp_msymbol): Update.
4257 * printcmd.c (address_info): Use lookup_bound_minimal_symbol.
4258 * symfile.c (simple_read_overlay_table): Use
4259 lookup_bound_minimal_symbol.
4260 * symtab.c (skip_prologue_sal): Don't use msymbol_objfile.
4261 (search_symbols): Likewise.
4262 (print_msymbol_info): Take a bound_minimal_symbol argument.
4263 (symtab_symbol_info, rbreak_command): Update.
4264 * symtab.h (struct symbol_search) <msymbol>: Change type
4265 to bound_minimal_symbol.
4266 * valops.c (find_function_in_inferior): Use
4267 lookup_bound_minimal_symbol.
4268 * value.c (value_fn_field): Use lookup_bound_minimal_symbol.
4269
4270 2013-08-05 Jan Kratochvil <jan.kratochvil@redhat.com>
4271
4272 Code cleanup.
4273 * remote.c (cleanup_sigint_signal_handler): Rename the declaration
4274 to ...
4275 (async_cleanup_sigint_signal_handler): ... this.
4276 (initialize_sigint_signal_handler): Remove declaration.
4277 (handle_remote_sigint): Rename the declaration to ...
4278 (async_handle_remote_sigint): ... this.
4279 (handle_remote_sigint_twice): Rename the declaration to ...
4280 (async_handle_remote_sigint_twice): ... this.
4281 (async_remote_interrupt, async_remote_interrupt_twice)
4282 (remote_interrupt): Remove the declarations.
4283 (remote_interrupt_twice): Rename the declaration ...
4284 (sync_remote_interrupt_twice): ... this.
4285 (sigint_remote_twice_token): Rename the variable to ...
4286 (async_sigint_remote_twice_token): ... this.
4287 (sigint_remote_token): Rename the variable to ...
4288 (async_sigint_remote_token): ... this.
4289 (initialize_sigint_signal_handler): Rename the function to ...
4290 (async_initialize_sigint_signal_handler): ... this. Update the name
4291 inside.
4292 (handle_remote_sigint): Rename the function to ...
4293 (async_handle_remote_sigint): ... this. Update the names inside.
4294 (handle_remote_sigint_twice): Rename the function to ...
4295 (async_handle_remote_sigint_twice): ... this. Update the names inside.
4296 (cleanup_sigint_signal_handler): Rename the function to ...
4297 (async_cleanup_sigint_signal_handler): ... this.
4298 (remote_interrupt): Rename the function to ...
4299 (sync_remote_interrupt): this. Update the names inside.
4300 (remote_interrupt_twice): Rename the function to ...
4301 (sync_remote_interrupt_twice): this. Update the names inside.
4302 (remote_terminal_inferior, remote_terminal_ours, remote_wait_as)
4303 (_initialize_remote): Update the names inside.
4304
4305 2013-08-02 Tom Tromey <tromey@redhat.com>
4306
4307 PR symtab/15719:
4308 * breakpoint.c (update_watchpoint, watchpoint_check)
4309 (watch_command_1): Update.
4310 * eval.c (fetch_subexp_value): Add "preserve_errors"
4311 parameter.
4312 * ppc-linux-nat.c (check_condition): Update.
4313 * value.h (fetch_subexp_value): Update.
4314
4315 2013-08-02 Andrew Burgess <aburgess@broadcom.com>
4316
4317 * mi/mi-interp.c (mi_interpreter_resume): Remove call to
4318 add_file_handler.
4319
4320 2013-08-01 Doug Evans <dje@google.com>
4321
4322 PR symtab/15691
4323 * dwarf2read.c (struct dwarf2_per_cu_data): New member tu_read.
4324 (fill_in_sig_entry_from_dwo_entry): Reorganize asserts.
4325 Add assert of sig_entry->dwo_unit == NULL.
4326 (lookup_dwo_signatured_type): Don't assign TU to a DWO if the TU
4327 had already been read.
4328 (read_signatured_type): Set per_cu.tu_read.
4329
4330 PR symtab/15695
4331 * valops.c (value_struct_elt): Add missing call to check_typedef.
4332 (value_find_oload_method_list): Ditto.
4333
4334 * symtab.c (do_free_search_symbols_cleanup): Change arg to,
4335 effectively, struct symbol_search **.
4336 (make_cleanup_free_search_symbols): Change arg to struct
4337 symbol_search **. All callers updated.
4338 (compare_search_syms): Compare symtab file name and block as well.
4339 (search_symbols_equal): New function.
4340 (sort_search_symbols_remove_dups): Renamed from sort_search_symbols.
4341 New args new_head, new_tail. Result is now void. Remove dups after
4342 sorting the symbols.
4343 (search_symbols): Sort all found symbols once, after all have been
4344 found, and remove duplicates. Simplify cleanup tracking of result.
4345 * symtab.h (make_cleanup_free_search_symbols): Update prototype.
4346
4347 Further workarounds for binutils/15021.
4348 * dwarf2read.c (recursively_compute_inclusions): Change type of result
4349 parameter to VEC (symtab_ptr) **. New parameter all_type_symtabs.
4350 Watch for duplicate symtabs coming from type units.
4351 (compute_symtab_includes): Update call to
4352 recursively_compute_inclusions. Build vector of included symtabs
4353 instead of per_cus.
4354 * symtab.h (symtab_ptr): New typedef.
4355 (DEF_VEC_P (symtab_ptr)): New VEC type.
4356 * linespec.c (symtab_p): Delete. All uses updated to use symtab_ptr
4357 instead.
4358
4359 2013-08-01 Andrew Burgess <aburgess@broadcom.com>
4360
4361 * cli/cli-script.c (script_from_file): Remove use of
4362 error_pre_print.
4363 * main.c (captured_main): Remove use of error_pre_print and
4364 quit_pre_print.
4365 * utils.c (error_pre_print, quit_pre_print): Remove.
4366 * utils.h (error_pre_print, quit_pre_print): Likewise.
4367
4368 2013-08-01 Yao Qi <yao@codesourcery.com>
4369
4370 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Parse argv
4371 with mi_getopt.
4372 (mi_cmd_stack_list_variables): Likewise.
4373
4374 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
4375
4376 * exceptions.c (deprecated_throw_reason): Remove.
4377 * exceptions.h (deprecated_throw_reason): Remove.
4378
4379 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
4380
4381 * remote-mips.c (mips_error): Replace use of
4382 deprecated_throw_reason with throw_verror. Use the error message
4383 passed to mips_error as the error message for throw_verror.
4384
4385 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
4386
4387 * monitor.c (monitor_interrupt_query): Replace use of
4388 deprecated_throw_reason with quit.
4389 * nto-procfs.c (interrupt_query): Likewise.
4390 * remote-fileio.c (remote_fileio_sig_exit): Likewise.
4391 * remote-mips.c (mips_kill): Likewise.
4392 * remote.c (interrupt_query): Likewise.
4393
4394 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
4395
4396 * utils.c (internal_verror): Replace use of deprecated_throw_reason
4397 with call to fatal.
4398
4399 2013-07-31 Pedro Alves <pedro@codesourcery.com>
4400 Yao Qi <yao@codesourcery.com>
4401
4402 * tracepoint.c (trace_dump_command): Select the current frame.
4403
4404 2013-07-30 Doug Evans <dje@google.com>
4405
4406 * dwarf2read.c (process_queue): Add type signature to debug output.
4407
4408 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
4409
4410 * value.c (value_fetch_lazy): Mark optimized out values as such
4411 rather than raising an error.
4412
4413 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
4414
4415 * value.c (value_fetch_lazy): Ensure parent value is not lazy
4416 before checking which bits of the parent, not the child, value are
4417 valid.
4418
4419 2013-07-30 Muhammad Bilal <mbilal@codesorcery.com>
4420
4421 PR gdb/15715
4422 * top.c: Include "filenames.h".
4423 (set_history_filename): New function.
4424 (init_main): Install it as set hook of the "set history filename"
4425 command.
4426
4427 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
4428
4429 * dwarf2read.c (dwarf2_get_ref_die_offset): Constify struct
4430 attribute parameter.
4431 (dwarf2_const_value_data): Constify struct attribute parameter.
4432 (dwarf2_const_value): Constify struct attribute parameter.
4433 (dwarf2_const_value_attr): Constify struct attribute parameter.
4434 (lookup_die_type): Constify struct attribute parameter.
4435 (dwarf2_get_attr_constant_value): Constify struct attribute parameter.
4436 (follow_die_ref_or_sig): Constify struct attribute parameter.
4437 (follow_die_ref): Constify struct attribute parameter.
4438 (follow_die_sig): Constify struct attribute parameter.
4439 (get_DW_AT_signature_type): Constify struct attribute parameter.
4440 (get_type_unit_group): Constify struct attribute parameter.
4441 (fill_in_loclist_baton): Constify struct attribute parameter.
4442 (dwarf2_symbol_mark_computed): Constify struct attribute parameter.
4443 (type_unit_group): Constify struct attribute parameter.
4444
4445 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
4446
4447 * dwarf2read.c (attr_form_is_block): Make argument const.
4448 (attr_form_is_section_offset): Make argument const.
4449 (attr_form_is_constant): Make argument const.
4450 (attr_form_is_ref): Make argument const.
4451
4452 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
4453
4454 * dwarf2read.c (attr_is_ref): Rename to attr_form_is_ref.
4455 All uses updated.
4456 (attr_form_is_ref): Moved below attr_form_is_constant.
4457
4458 2013-07-29 Doug Evans <dje@google.com>
4459
4460 * main.c (captured_command_loop): Tweak comment.
4461
4462 * target.c (target_async_permitted_1): Fix comment.
4463
4464 * symtab.c (iterate_over_some_symtabs): Add comment.
4465
4466 * symtab.c (iterate_over_some_symtabs): Fix indentation.
4467
4468 2013-07-27 Yao Qi <yao@codesourcery.com>
4469
4470 * NEWS: Mention that GDBserver now supports hardware
4471 watchpoints on the MIPS GNU/Linux target.
4472
4473 2013-07-27 Yao Qi <yao@codesourcery.com>
4474
4475 * Makefile.in (HFILES_NO_SRCDIR): Add
4476 common/mips-linux-watch.h.
4477 (mips-linux-watch.o): New rule.
4478 * common/mips-linux-watch.c: New.
4479 * common/mips-linux-watch.h: New.
4480 * config/mips/linux.mh (NATDEPFILES): Add mips-linux-watch.o
4481 * mips-linux-nat.c: Include mips-linux-watch.h.
4482 (W_BIT, R_BIT, I_BIT, W_MASK, R_MASK, I_MASK, IRW_MASK): Move
4483 to common/mips-linux-watch.h.
4484 (MAX_DEBUG_REGISTER): Likewise.
4485 (enum pt_watch_style): Likewise.
4486 (struct mips32_watch_regs): Likewise.
4487 (struct mips64_watch_regs): Likewise.
4488 (struct pt_watch_regs): Likewise.
4489 (struct mips_watchpoint): Likewise.
4490 (mips_linux_watch_get_irw_mask): Move to
4491 common/mips-linux-watch.c.
4492 (get_reg_mask, mips_linux_watch_get_num_valid): Likewise.
4493 (mips_linux_watch_get_watchlo): Likewise.
4494 (mips_linux_watch_set_watchlo): Likewise.
4495 (mips_linux_watch_get_watchhi): Likewise.
4496 (mips_linux_watch_set_watchhi): Likewise.
4497 (mips_linux_read_watch_registers): Likewise.
4498 (mips_linux_watch_type_to_irw): Likewise.
4499 (mips_linux_stopped_data_address, fill_mask): Likewise.
4500 (mips_linux_watch_try_one_watch): Likewise.
4501 (mips_linux_watch_populate_regs): Likewise.
4502
4503 2013-07-27 Yao Qi <yao@codesourcery.com>
4504
4505 * mips-linux-nat.c (get_irw_mask): Rename to ...
4506 (mips_linux_watch_get_irw_mask): ... this. Rename parameter
4507 'set' to 'n'. Update function comment. All callers changed.
4508 (get_reg_mask): Rename parameter 'set' to 'n'. Update
4509 function comment. All callers changed.
4510 (get_num_valid): Rename to ...
4511 (mips_linux_watch_get_num_valid): ... this. Rename parameter
4512 'set' to 'n'. Update function comment. All callers changed.
4513 (get_watchlo): Rename to ...
4514 (mips_linux_watch_get_watchlo): ... this. Rename parameter
4515 'set' to 'n'. Update function comment. All callers changed.
4516 (set_watchlo): Rename to ...
4517 (mips_linux_watch_set_watchlo): ... this. Rename parameter
4518 'set' to 'n'. Update function comment. All callers changed.
4519 (get_watchhi): Rename to ...
4520 (mips_linux_watch_get_watchhi): ... this. Update function
4521 comment. All callers changed.
4522 (set_watchhi): Rename to ...
4523 (mips_linux_watch_set_watchhi): ... this. Update function
4524 comment. All callers changed.
4525 (mips_linux_read_watch_registers): Update function comment.
4526 Add new parameters 'lwpid', 'watch_readback', and
4527 'watch_readback_valid'. Update.
4528 (type_to_irw): Rename to ...
4529 (mips_linux_watch_type_to_irw): ... this. Update function
4530 comment. All callers changed.
4531 (fill_mask): Update function comment.
4532 (try_one_watch): Rename to ...
4533 (mips_linux_watch_try_one_watch): ... this. Change the type
4534 of parameter 'irw' from 'unsigned' to 'uint32_t'.
4535 (populate_regs_from_watches): Rename to ...
4536 (mips_linux_watch_populate_regs): ... this. Add parameter
4537 'current_watches'. All callers changed.
4538
4539 2013-07-27 Yao Qi <yao@codesourcery.com>
4540
4541 * mips-linux-nat.c (MAX_DEBUG_REGISTER): Move it earlier in
4542 the code.
4543 (PTRACE_SET_WATCH_REGS, enum pt_watch_style): Remove.
4544 (struct mips32_watch_regs, struct mips64_watch_regs): Remove.
4545 (struct pt_watch_regs): Likewise.
4546 [!PTRACE_GET_WATCH_REGS] (PTRACE_SET_WATCH_REGS): New macro.
4547 [!PTRACE_GET_WATCH_REGS] (enum pt_watch_style): New.
4548 [!PTRACE_GET_WATCH_REGS] (struct mips32_watch_regs): New.
4549 [!PTRACE_GET_WATCH_REGS] (struct mips64_watch_regs): New.
4550 [!PTRACE_GET_WATCH_REGS] (struct pt_watch_regs): New.
4551
4552 2013-07-27 Yao Qi <yao@codesourcery.com>
4553
4554 * breakpoint.h: Include break-common.h.
4555 (enum target_hw_bp_type): Move to ...
4556 * common/break-common.h: ... here. New.
4557
4558 2013-07-26 Cyril Nikolaev <cyril@nichtverstehen.de>
4559
4560 * inflow.c (terminal_init_inferior_with_pgrp): Save inferior
4561 process group regardless of having tty on stdin.
4562
4563 2013-07-25 Doug Evans <dje@google.com>
4564
4565 * linux-fork.h (detach_fork): Delete.
4566
4567 2013-07-25 Tom Tromey <tromey@redhat.com>
4568
4569 PR remote/15256, PR remote/15266:
4570 * bfd-target.c (target_bfd_reopen): Initialize to_magic.
4571 * monitor.c (monitor_detach): Use unpush_target.
4572 * remote-m32r-sdi.c (m32r_detach): Use unpush_target.
4573 * remote-mips.c (mips_detach): Use unpush_target. Don't
4574 call mips_close.
4575 * remote-sim.c (gdbsim_detach): Use unpush_target.
4576 * target.c (pop_target): Remove.
4577 (pop_all_targets_above): Don't call target_close.
4578 (target_close): Assert that the target is unpushed.
4579 * target.h (pop_target): Don't declare.
4580 * tracepoint.c (tfile_open): Use unpush_target.
4581
4582 2013-07-25 Tom Tromey <tromey@redhat.com>
4583
4584 * linux-thread-db.c (init_thread_db_ops): Call
4585 complete_target_initialization.
4586 (_initialize_thread_db): Don't call add_target.
4587 * target.c (complete_target_initialization): New function.
4588 (add_target_with_completer): Call it.
4589 * target.h (complete_target_initialization): Declare.
4590
4591 2013-07-25 Mark Kettenis <kettenis@gnu.org>
4592
4593 * hppa-tdep.h (enum hppa_regnum): Add members for all space registers.
4594 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Add comment.
4595 (HPPANBSD_SIZEOF_GREGS): New define.
4596 (hppaobsd_supply_gregset): Handle additional registers.
4597 * hppabsd-nat.c (hppabsd_gregset_supplies_p): Adjust to indicate
4598 we provide more registers now.
4599 (hppabsd_supply_gregset): Supply additional registers.
4600 (hppabsd_collect_gregset): Collect additional registers.
4601
4602 2013-07-25 Mark Kettenis <kettenis@gnu.org>
4603
4604 * hppabsd-tdep.c: Include "dwarf2-frame.h".
4605 (hppabsd_dwarf2_frame_init_reg): New function.
4606 (hppabsd_init_abi): Hook in the DWARF CFI frame unwinder.
4607
4608 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
4609
4610 * mi/mi-main.c (output_register): Make MI 'r' format use standard
4611 'z' format code. Remove error for optimized out values, standard
4612 code will handle these fine.
4613
4614 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
4615
4616 * NEWS: Mention new 'z' formatter.
4617 * printcmd.c (print_scalar_formatted): Add new 'z' formatter.
4618 (_initialize_printcmd): Mention 'z' formatter in help text of the
4619 'x' command.
4620
4621 2013-07-24 Maciej W. Rozycki <macro@codesourcery.com>
4622
4623 * mips-tdep.c (micromips_deal_with_atomic_sequence): Correct
4624 formatting.
4625
4626 2013-07-24 Sergio Durigan Junior <sergiodj@redhat.com>
4627
4628 * breakpoint.c (create_longjmp_master_breakpoint): Check if probe
4629 interface can evaluate arguments. Fallback to the old mode if it
4630 cannot.
4631 (create_exception_master_breakpoint): Likewise.
4632 * elfread.c (elf_can_evaluate_probe_arguments): New function.
4633 (struct sym_probe_fns elf_probe_fns): Export function above to the
4634 probe interface.
4635 * probe.c (can_evaluate_probe_arguments): New function.
4636 * probe.h (struct probe_ops) <can_evaluate_probe_arguments>: New
4637 function pointer.
4638 (can_evaluate_probe_arguments): New function prototype.
4639 * solib-svr4.c (svr4_create_solib_event_breakpoints): Check if
4640 probe interface can evaluate arguments. Fallback to the old mode
4641 if it cannot.
4642 * stap-probe.c (stap_get_probe_argument_count): Check if probe
4643 interface can evaluate arguments. Warning the user if it cannot.
4644 (stap_can_evaluate_probe_arguments): New function.
4645 (struct probe_ops stap_probe_ops): Export function above to the
4646 probe interface.
4647 * symfile.h (struct sym_probe_fns) <can_evaluate_probe_arguments>:
4648 New function pointer.
4649
4650 2013-07-24 Luis Machado <lgustavo@codesourcery.com>
4651
4652 * Makefile.in (SFILES): Add common/target-common.c.
4653 Add common/target-common.h to headers.
4654 (COMMON_OBS): Add target-common.o.
4655 (target-common.o): New target.
4656 * linux-nat.h (resume_kind): Move to common/target-common.h.
4657 * target.c (target_waitstatus_to_string): Move to
4658 common/target-common.c.
4659 * target.h: Include target-common.h.
4660 (target_waitkind): Move to common/target-common.h.
4661 (target_waitstatus): Likewise.
4662 (TARGET_WNOHANG): Likewise.
4663 * common/target-common.c: New file.
4664 * common/target-common.h: New file.
4665
4666 2013-07-24 Doug Evans <dje@google.com>
4667
4668 * dwarf2read.c (lookup_dwo_cutu): Change missing DWO complaint to
4669 a warning.
4670
4671 2013-07-23 Yao Qi <yao@codesourcery.com>
4672
4673 * i386-tdep.c (i386_in_stack_tramp_p): Remove unused
4674 parameter 'gdbarch'.
4675 (i386_stack_tramp_frame_sniffer): Caller update.
4676 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Remove
4677 parameter 'gdbarch' and 'target'.
4678 (i386_linux_core_read_description): Caller update.
4679 * amd64-linux-tdep.c (amd64_linux_core_read_description):
4680 Likewise.
4681 * i386-linux-tdep.h (i386_linux_core_read_xcr0): Update
4682 declaration.
4683
4684 2013-07-23 Tom Tromey <tromey@redhat.com>
4685
4686 * dwarf2read.c (init_cutu_and_read_dies): Revert patch from
4687 2013-07-22.
4688
4689 2013-07-22 Doug Evans <dje@google.com>
4690
4691 * exec.h (remove_target_sections): Delete arg abfd.
4692 * exec.c (exec_close): Update call to remove_target_sections.
4693 (remove_target_sections): Delete arg abfd.
4694 * solib.c (update_solib_list): Ditto.
4695 (reload_shared_libraries_1): Ditto.
4696 (clear_solib): Ditto, and unconditionally call remove_target_sections.
4697 * target.h (struct target_section): Rename key to owner.
4698 All uses updated.
4699
4700 2013-07-22 Tom Tromey <tromey@redhat.com>
4701
4702 * solib-som.c (som_open_symbol_file_object): Call do_cleanups.
4703
4704 2013-07-22 Tom Tromey <tromey@redhat.com>
4705
4706 * dwarf2read.c (init_cutu_and_read_dies): Remove 'free_cu_cleanup'.
4707 Simplify cleanup handling.
4708
4709 2013-07-22 Tom Tromey <tromey@redhat.com>
4710
4711 * dwarf2read.c (dwarf_decode_line_header): Call do_cleanups
4712 on all return paths.
4713
4714 2013-07-22 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
4715
4716 * ppc-linux-nat.c (PPC_DEBUG_FEATURE_DATA_BP_DAWR): New define.
4717 (ppc_linux_region_ok_for_hw_watchpoint): Add checking to use the new
4718 DAWR interface for longer ranges hardware watchpoint (up to 512 bytes).
4719
4720 2013-07-22 Phil Muldoon <pmuldoon@redhat.com>
4721
4722 * top.c (print_gdb_version): Add help, apropos description and
4723 url to online documentation.
4724
4725 2013-07-19 Hui Zhu <hui@codesourcery.com>
4726
4727 PR gdb/15692
4728 * mi/mi-cmd-break.c (mi_argv_to_format): Handle double quotes.
4729
4730 2013-07-19 Yao Qi <yao@codesourcery.com>
4731
4732 * target.c (update_current_target): Change the default action
4733 of 'to_traceframe_info' from tcomplain to return_zero.
4734 * target.h (struct target_ops) <to_traceframe_info>: Add more
4735 comments.
4736 * valops.c (read_value_memory): Call
4737 traceframe_available_memory unconditionally.
4738
4739 2013-07-18 Yao Qi <yao@codesourcery.com>
4740
4741 * coffread.c (coff_symfile_read): Iterate over minimal symbols,
4742 if the name is prefixed by "__imp_" or "_imp_", look for minimal
4743 symbol without prefix. If found, set its type to
4744 'mst_solib_trampoline'.
4745
4746 2013-07-17 Doug Evans <dje@google.com>
4747
4748 * NEWS: Mention "set print raw frame-arguments".
4749 * gdbcmd.h (setprintrawlist, showprintrawlist): Declare.
4750 * stack.c (print_raw_frame_arguments): New static global.
4751 (print_frame_arg): Set opts.raw from print_raw_frame_arguments.
4752 (_initialize_stack): New command "set/show print raw frame-arguments".
4753 * valprint.c (setprintrawlist, showprintrawlist): New globals.
4754 (set_print_raw, show_print_raw): New functions.
4755 (_initialize_valprint): New prefix command "set/show print raw".
4756 * valprint.h (value_print_options): Improve comments.
4757
4758 * cli/cli-cmds.c (init_cmd_lists): Delete unnecessary initialization
4759 of all *list variables.
4760
4761 * gdbcmd.h (togglelist): Delete.
4762 * cli/cli-cmds.c (togglelist): Delete.
4763 (init_cmd_lists): Update.
4764 * cli/cli-cmds.h (togglelist): Delete.
4765
4766 2013-07-17 Tom Tromey <tromey@redhat.com>
4767
4768 * dwarf2read.c (dwarf2_per_objfile_free): Clear
4769 dwarf2_per_objfile.
4770
4771 2013-07-16 Doug Evans <dje@google.com>
4772
4773 * nto-tdep.c (nto_relocate_section_addresses): Update,
4774 target_section.bfd deleted.
4775 * ppc64-tdep.c (ppc64_convert_from_func_ptr_addr): Ditto.
4776 * s390-tdep.c (s390_load): Ditto.
4777 * solib-aix.c (solib_aix_relocate_section_addresses): Ditto.
4778
4779 2013-07-16 Andrew Burgess <aburgess@broadcom.com>
4780
4781 * common/format.c (parse_format_string): Add checks for NULL
4782 character before calling strchr.
4783
4784 2013-07-16 Doug Evans <dje@google.com>
4785
4786 * solist.h (target_so_ops.find_and_open_solib): Clarify usage of
4787 temp_pathname argument.
4788 * nto-tdep.c (nto_find_and_open_solib): Fix setting of temp_pathname
4789 when opening the file fails.
4790
4791 * target.h (struct target_section): Delete member bfd.
4792 All users updated to use the_bfd_section->owner instead.
4793 * exec.c (add_to_section_table): Assert bfd is expected value.
4794 Remove initialization of target_section.bfd.
4795 (remove_target_sections): Update.
4796 (section_table_available_memory): Update.
4797 (section_table_xfer_memory_partial): Update.
4798 (print_section_info): Update.
4799 (exec_set_section_address): Update.
4800 * record-full.c (record_full_core_xfer_partial): Update.
4801 * solib-svr4.c (svr4_relocate_section_addresses): Update.
4802 * solib-target.c (solib_target_relocate_section_addresses): Update.
4803 * symfile.c (build_section_addr_info_from_section_table): Update.
4804 * target.c (memory_xfer_live_readonly_partial): Update.
4805 (memory_xfer_partial_1): Update.
4806
4807 2013-07-15 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
4808
4809 * ppc-linux-nat.c: Since the new PowerPC specific ptrace interface is
4810 now available for embedded (BookE) and server (BookS) processors,
4811 correct mentions of 'booke' and adjust comments accordingly in order to
4812 avoid confusion. Rename struct 'booke_debug_info' to 'hwdebug_info'.
4813 (have_ptrace_booke_interface): Rename function and variable
4814 'have_ptrace_booke_interface' to 'have_ptrace_hwdebug_interface'.
4815 Rename struct 'booke_debug_info' to 'hwdebug_info'. Update all uses.
4816 (booke_cmp_hw_point): Rename function 'booke_cmp_hw_point' to
4817 'hwdebug_point_cmp'. Update all uses.
4818 (booke_find_thread_points_by_tid): Rename function
4819 'booke_find_thread_points_by_tid' to
4820 'hwdebug_find_thread_points_by_tid'. Update all uses.
4821 (booke_insert_point): Rename function 'booke_insert_point' to
4822 'hwdebug_insert_point'. Update all uses.
4823 (booke_remove_point): Rename function 'booke_remove_point' to
4824 'hwdebug_remove_point'. Update all uses.
4825
4826 2013-07-15 Maciej W. Rozycki <macro@codesourcery.com>
4827
4828 * mips-tdep.c (mips_gdbarch_init): Replace hardcoded magic
4829 numbers with enum values.
4830
4831 2013-07-15 Ali Anwar <ali_anwar@codesourcery.com>
4832
4833 PR threads/13217
4834 * thread.c (thread_apply_all_command): Check for valid threads
4835 and thread count.
4836 (thread_array_cleanup): New struct.
4837 (set_thread_refcount): New function.
4838
4839 2013-07-11 Andrew Burgess <aburgess@broadcom.com>
4840
4841 * infcmd.c (default_print_one_register_info): Reuse function
4842 print_hex_chars.
4843
4844 2013-07-10 Tom Tromey <tromey@redhat.com>
4845
4846 * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS, ADA_EXP_C): New macros.
4847 (ada-exp.o): New target.
4848
4849 2013-07-10 Sergio Durigan Junior <sergiodj@redhat.com>
4850
4851 * mt-tdep.c (mt_registers_info): Call
4852 get_no_prettyformat_print_options instead of
4853 get_raw_print_options (regression by last patch from Doug
4854 Evans).
4855
4856 2013-07-09 Pedro Alves <palves@redhat.com>
4857
4858 Checked in by Joel Brobecker <brobecker@adacore.com>.
4859 * ada-lang.c (coerce_unspec_val_to_type): Use
4860 value_optimized_out_const.
4861 * value.c (value_optimized_out_const): New function.
4862 * value.h (value_optimized_out_const): New declaration.
4863
4864 2013-07-09 Doug Evans <dje@google.com>
4865
4866 * defs.h (enum val_prettyformat): Renamed from val_prettyprint.
4867 Enum values rename as well. All uses updated.
4868 * valprint.h (value_print_options): Rename member pretty to
4869 pretty format. Rename member prettyprint_arrays to
4870 prettyformat_arrays. Rename member prettyprint_structs to
4871 prettyformat_structs. All uses updated.
4872 (get_no_prettyformat_print_options): Renamed from
4873 get_raw_print_options.
4874 * valprint.c (get_no_prettyformat_print_options): Renamed from
4875 get_raw_print_options. All callers updated.
4876 (show_prettyformat_structs): Renamed from show_prettyprint_structs.
4877 All callers updated.
4878 (show_prettyformat_arrays): Renamed from show_prettyprint_arrays.
4879 All callers updated.
4880 (_initialize_valprint): Improve help text for "set print pretty" and
4881 "set print arrays".
4882
4883 2013-07-09 Andrew Burgess <aburgess@broadcom.com>
4884
4885 * value.c (value_bits_valid): Revert previous change, and change
4886 by Pedro on 2013-07-04, due to regressions in
4887 gdb.dwarf2/implptr.exp and gdb.dwarf2/pieces.exp.
4888
4889 2013-07-08 Andrew Burgess <aburgess@broadcom.com>
4890 Pedro Alves <palves@redhat.com>
4891
4892 * value.c (value_bits_valid): If the value is not lval_computed
4893 or has no check validity handler then the answer is the
4894 optimized_out flag, otherwise defer to the handler.
4895
4896 2013-07-06 Eli Zaretskii <eliz@gnu.org>
4897
4898 * top.c (print_gdb_configuration): Explain in output of
4899 --configuration what does "relocatable" mean.
4900
4901 * main.c (print_gdb_help): Regroup options in the --help text.
4902 See http://sourceware.org/ml/gdb-patches/2013-04/msg00362.html for
4903 the relevant discussions.
4904
4905 2013-07-06 Yao Qi <yao@codesourcery.com>
4906
4907 * breakpoint.h (struct breakpoint_ops) <create_breakpoints_sal>:
4908 Remove parameter 'lsal'.
4909 * breakpoint.c (create_breakpoint): Move local variable 'lsal'
4910 to inner block. Caller update.
4911 (base_breakpoint_create_breakpoints_sal): Update.
4912 (bkpt_create_breakpoints_sal): Likewise.
4913 (tracepoint_create_breakpoints_sal): Likewise.
4914 (strace_marker_create_breakpoints_sal): Get 'lsal' from the
4915 element 0 of vector 'canonical->sals'.
4916
4917 2013-07-05 Luis Machado <lgustavo@codesourcery.com>
4918
4919 * rs6000-tdep.c (rs6000_stab_reg_to_regnum): Return the real
4920 register number instead of the pseudo register one.
4921 (rs6000_dwarf2_reg_to_regnum): Likewise.
4922
4923 2013-07-04 Pedro Alves <palves@redhat.com>
4924
4925 * findvar.c (value_of_register): Use allocate_optimized_out_value
4926 if the register has been optimized out, instead of
4927 set_value_optimized_out.
4928 * frame-unwind.c (frame_unwind_got_optimized): Use
4929 allocate_optimized_out_value.
4930
4931 2013-07-04 Pedro Alves <palves@redhat.com>
4932
4933 * value.c (value_bits_valid): If the value is not lval_computed,
4934 or doesn't have a check_validity hook, assume the value is entirely
4935 valid.
4936
4937 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
4938
4939 * stack.c (read_frame_arg): No longer fetch lazy values.
4940 * value.c (value_optimized_out): If the value is not already
4941 marked optimized out, and is lazy then fetch it.
4942 (value_primitive_field): Move optimized out check to later in the
4943 function, after we have loaded any lazy values.
4944 (value_fetch_lazy): Use optimized out flag directly rather than
4945 calling optimized_out method.
4946
4947 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
4948
4949 * valops.c: Don't include "user-regs.h".
4950 (value_fetch_lazy): Moved to value.c.
4951 * value.c: Include "user-regs.h".
4952 (value_fetch_lazy): Moved from valops.c.
4953
4954 2013-07-04 Yao Qi <yao@codesourcery.com>
4955
4956 Revert:
4957 2013-06-27 Yao Qi <yao@codesourcery.com>
4958
4959 * common/create-version.sh: Update comments. Handle the case
4960 that TARGET_ALIAS is empty.
4961
4962 2013-07-03 Pedro Alves <palves@redhat.com>
4963
4964 * Makefile.in (config.status): Depend on development.sh.
4965 (aclocal_m4_deps): Add libmcheck.m4.
4966 * acinclude.m4: Include libmcheck.m4.
4967 * configure.ac: Source development.sh instead of setting
4968 'development' here. --enable-libmcheck/--disable-libmcheck code
4969 factored out to GDB_AC_LIBMCHECK. Run it.
4970 * development.sh: New file.
4971 * libmcheck.m4: New file.
4972 * configure: Regenerate.
4973
4974 2013-07-02 Tom Tromey <tromey@redhat.com>
4975
4976 * contrib/ari/update-web-ari.sh: Update for version.in change.
4977
4978 2013-07-02 Tom Tromey <tromey@redhat.com>
4979
4980 * common/ptid.h: Comment fixes.
4981
4982 2013-07-01 Tom Tromey <tromey@redhat.com>
4983
4984 * dwarf2read.c (dwarf2_get_dwz_file): Return NULL if
4985 .gnu_debugaltlink not found. Use bfd_get_alt_debug_link_info.
4986 (dwarf2_read_index, create_all_comp_units): Update.
4987
4988 2013-07-01 Tom Tromey <tromey@redhat.com>
4989
4990 * configure.ac (build_warnings): Add -Wold-style-definition.
4991 * configure: Rebuild.
4992 * machoread.c (_initialize_machoread): Use "(void)".
4993 * macrocmd.c (macro_inform_no_debuginfo): Fix formatting;
4994 use "(void)".
4995
4996 2013-07-01 Tom Tromey <tromey@redhat.com>
4997
4998 * configure.ac (build_warnings): Add -Wold-style-declaration.
4999 * configure: Rebuild.
5000 * dsrec.c (make_srec): Use "static const", not "const static".
5001 * h8300-tdep.c (h8300_breakpoint_from_pc): Use "static const",
5002 not "const static".
5003 * mi/mi-parse.c (mi_no_values, mi_simple_values, mi_all_values):
5004 Use "static const", not "const static".
5005 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Use "static const",
5006 not "const static".
5007 * moxie-tdep.c (moxie_breakpoint_from_pc): Use "static const",
5008 not "const static".
5009 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Use "static const",
5010 not "const static".
5011 * v850-tdep.c (v850_breakpoint_from_pc): Use "static const",
5012 not "const static".
5013 (v850_dbtrap_breakpoint_from_pc): Likewise.
5014 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Use "static const",
5015 not "const static".
5016
5017 2013-07-01 Tom Tromey <tromey@redhat.com>
5018
5019 * configure.ac (build_warnings): Add -Wmissing-parameter-type.
5020 * configure: Rebuild.
5021
5022 2013-07-01 Pedro Alves <palves@redhat.com>
5023
5024 * defs.h: Include "pathmax.h".
5025 * utils.c: Don't include sys/param.h.
5026 (gdb_realpath): Remove code that checks for MAXPATHLEN.
5027 * solib-ia64-hpux.c (ia64_hpux_handle_load_event): Use PATH_MAX
5028 instead of MAXPATHLEN.
5029 * solib-sunos.c: Don't include sys/param.h.
5030 * xcoffread.c: Don't include sys/param.h.
5031 * bsd-kvm.c: Don't include sys/param.h.
5032 * darwin-nat.c: Don't include sys/param.h.
5033 (darwin_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
5034 * darwin-nat-info.c: Don't include sys/param.h.
5035 * fbsd-nat.c (fbsd_pid_to_exec_file): Use PATH_MAX instead of
5036 MAXPATHLEN.
5037 * i386obsd-nat.c: Don't include sys/param.h.
5038 * inf-child.c: Don't include sys/param.h.
5039 (inf_child_fileio_readlink): Use PATH_MAX instead of MAXPATHLEN.
5040 * linux-fork.c: Don't include sys/param.h.
5041 (fork_save_infrun_state): Use PATH_MAX instead of MAXPATHLEN.
5042 * linux-nat.c: Don't include sys/param.h.
5043 (linux_child_pid_to_exec_file, linux_proc_pending_signals)
5044 (linux_proc_pending_signals): Use PATH_MAX instead of MAXPATHLEN.
5045 * m68klinux-nat.c: Don't include sys/param.h.
5046 * nbsd-nat.c: Don't include sys/param.h.
5047 (nbsd_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
5048 * ppc-linux-nat.c: Don't include sys/param.h.
5049 * rs6000-nat.c: Don't include sys/param.h.
5050 * spu-linux-nat.c. Don't include sys/param.h.
5051 * windows-nat.c: Don't include sys/param.h.
5052 * xtensa-linux-nat.c: Don't include sys/param.h.
5053 * config/i386/nm-fbsd.h: Don't include sys/param.h.
5054
5055 2013-07-01 Pedro Alves <palves@redhat.com>
5056
5057 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add pathmax.
5058 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/pathmax.m4.
5059 * gnulib/aclocal.m4: Regenerate.
5060 * gnulib/config.in: Regenerate.
5061 * gnulib/configure: Regenerate.
5062 * gnulib/import/pathmax.h: New file.
5063 * gnulib/import/Makefile.am: Regenerate.
5064 * gnulib/import/Makefile.in: Regenerate.
5065 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
5066 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
5067 * gnulib/import/m4/pathmax.m4: New file.
5068
5069 2013-07-01 Pedro Alves <palves@redhat.com>
5070
5071 * configure.ac (GDBINIT): Define, depending on host.
5072 * go32-nat.c (init_go32_ops): Don't override gdbinit here.
5073 * top.c (PATH_MAX): Delete fallback definition.
5074 (GDBINIT_FILENAME): Delete.
5075 (gdbinit): Reimplement as const char array set to the GDBINIT
5076 string constant.
5077 * top.h (gdbinit): Make const.
5078 * configure, config.in: Regenerate.
5079
5080 2013-07-01 Pedro Alves <palves@redhat.com>
5081
5082 * cli/cli-cmds.c (source_script): Make 'file' parameter const.
5083 * cli/cli-cmds.h (source_script): Likewise.
5084 * exceptions.c (catch_command_errors_const): New function.
5085 * exceptions.h (catch_command_errors_const): Declare.
5086 * main.c (get_init_files): Make parameters const, and adjust.
5087 (captured_main): Make 'system_gdbinit', 'home_gdbinit' and
5088 'local_gdbinit' locals const. Adjust to use
5089 catch_command_errors_const.
5090 (print_gdb_help): Make 'system_gdbinit', 'home_gdbinit' and
5091 'local_gdbinit' locals const.
5092
5093 2013-07-01 Pedro Alves <palves@redhat.com>
5094
5095 * defs.h: Don't check HAVE_UNISTD_H before including <unistd.h>.
5096 (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO): Delete.
5097 * tracepoint.c: Don't check HAVE_UNISTD_H before including
5098 <unistd.h>.
5099
5100 2013-07-01 Pedro Alves <palves@redhat.com>
5101
5102 Import the "unistd" gnulib module.
5103 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add "unistd".
5104 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/off_t.m4,
5105 import/m4/ssize_t.m4, import/m4/sys_types_h.m4 and
5106 import/m4/unistd_h.m4.
5107 * gnulib/aclocal.m4: Renenerate.
5108 * gnulib/config.in: Renenerate.
5109 * gnulib/configure: Renenerate.
5110 * gnulib/import/Makefile.am: Renenerate.
5111 * gnulib/import/Makefile.in: Renenerate.
5112 * gnulib/import/m4/gnulib-cache.m4: Renenerate.
5113 * gnulib/import/m4/gnulib-comp.m4: Renenerate.
5114 * gnulib/import/m4/off_t.m4: New file.
5115 * gnulib/import/m4/ssize_t.m4: New file.
5116 * gnulib/import/m4/sys_types_h.m4: New file.
5117 * gnulib/import/m4/unistd_h.m4: New file.
5118 * gnulib/import/sys_types.in.h: New file.
5119 * gnulib/import/unistd.c: New file.
5120 * gnulib/import/unistd.in.h: New file.
5121
5122 2013-07-01 Pedro Alves <palves@redhat.com>
5123
5124 * utils.c <pathconf/_PC_PATH_MAX use>: Check if _PC_PATH_MAX is
5125 defined instead of checking HAVE_UNISTD_H.
5126
5127 2013-07-01 Pedro Alves <palves@redhat.com>
5128
5129 Reimport gnulib from scratch.
5130 * gnulib/Makefile.in (aclocal_m4_deps): Remove reference to
5131 import/m4/onceonly.m4.
5132 * gnulib/aclocal.m4: Renegerate.
5133 * gnulib/config.in: Renegerate.
5134 * gnulib/configure: Renegerate.
5135 * gnulib/import/Makefile.in: Renegerate.
5136 * gnulib/import/extra/update-copyright: Renegerate.
5137 * gnulib/import/m4/onceonly.m4: Delete.
5138
5139 2013-07-01 Pedro Alves <palves@redhat.com>
5140
5141 * tui/tui-regs.c (pagination_enabled): Delete declaration.
5142
5143 2013-06-30 Jan Kratochvil <jan.kratochvil@redhat.com>
5144
5145 Code cleanup.
5146 * remote.c (async_remote_interrupt_twice): Make it static.
5147 * remote.h (async_remote_interrupt_twice): Remove the declaration.
5148
5149 2013-06-29 Sergio Durigan Junior <sergiodj@redhat.com>
5150
5151 * ia64-linux-tdep.c: Include <ctype.h>.
5152 (ia64_linux_stap_is_single_operand): New function.
5153 (ia64_linux_init_abi): Initialize SystemTap related attributes.
5154
5155 2013-06-28 Tom Tromey <tromey@redhat.com>
5156
5157 * Makefile.in (version.c): Use version.in, not
5158 common/version.in.
5159 * common/create-version.sh: Likewise.
5160 * common/version.in: Move...
5161 * version.in: ...here.
5162
5163 2013-06-28 Pedro Alves <palves@redhat.com>
5164
5165 * infrun.c (set_observer_mode): Don't declare pagination_enabled
5166 here.
5167 * utils.h (pagination_enabled): Declare.
5168
5169 2013-06-28 Pedro Alves <palves@redhat.com>
5170
5171 * infrun.c (non_stop, non_stop_1, set_non_stop, show_non_stop):
5172 Move higher up in file.
5173
5174 2013-06-28 Tom Tromey <tromey@redhat.com>
5175
5176 * tracepoint.c (deprecated_readline_begin_hook)
5177 (deprecated_readline_hook, deprecated_readline_end_hook): Don't
5178 declare.
5179
5180 2013-06-28 Pedro Alves <palves@redhat.com>
5181
5182 PR tui/14880
5183 * tui/tui-regs.c (tui_get_register): Fetch value contents before
5184 checking if they're available.
5185 * value.c (value_available_contents_eq): Change comment.
5186 * value.h (value_available_contents_eq): Expand comment.
5187
5188 2013-06-27 Tom Tromey <tromey@redhat.com>
5189
5190 * target.c (find_run_target): Remove.
5191 * target.h (find_run_target): Remove.
5192
5193 2013-06-27 Tom Tromey <tromey@redhat.com>
5194
5195 * corelow.c (core_gdbarch): Now static.
5196
5197 2013-06-27 Tom Tromey <tromey@redhat.com>
5198
5199 * target.c (target_struct_index): Remove.
5200
5201 2013-06-27 Pedro Alves <palves@redhat.com>
5202
5203 * infrun.c: Remove comment describing the 'stepping over runtime
5204 loader dynamic symbol resolution code' mechanism; moved to
5205 gdbint.texinfo.
5206
5207 2013-06-27 Pedro Alves <palves@redhat.com>
5208
5209 * exceptions.c (catch_command_errors): Remove spurious space.
5210 * exceptions.h (catch_command_errors): Second parameter is "arg",
5211 not "command".
5212
5213 2013-06-27 Yao Qi <yao@codesourcery.com>
5214
5215 * common/create-version.sh: Update comments. Handle the case
5216 that TARGET_ALIAS is empty.
5217
5218 2013-06-26 Pedro Alves <palves@redhat.com>
5219
5220 * infrun.c (SOLIB_IN_DYNAMIC_LINKER): Delete macro and describing
5221 comment.
5222
5223 2013-06-26 Pedro Alves <palves@redhat.com>
5224
5225 * infrun.c: Update comments on stepping over runtime loader
5226 dynamic symbol resolution code.
5227
5228 2013-06-26 Sergio Durigan Junior <sergiodj@redhat.com>
5229
5230 * ax-gdb.h (union exp_element): Forward declare.
5231 * parser-defs.h: Include expression.h.
5232
5233 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
5234
5235 * mips-tdep.c (fetch_mips_16): Use unmake_compact_addr.
5236
5237 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
5238
5239 * tracepoint.c (trace_save): Extend tsave to save starttime, stoptime.
5240
5241 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
5242
5243 Fix trace-status to output proper start-time and stop-time.
5244 * tracepoint.c (trace_status_command): Fix type of printf arg to
5245 prevent improper type conversion.
5246 (trace_status_mi): Likewise.
5247
5248 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
5249
5250 * mips-tdep.c (mips_next_pc): Fix a typo.
5251
5252 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
5253
5254 * mips-tdep.c (micromips_scan_prologue): Fix a typo.
5255
5256 2013-06-26 Pedro Alves <pedro@codesourcery.com>
5257 Yao Qi <yao@codesourcery.com>
5258
5259 * mi/mi-cmds.c (mi_cmds): Register -trace-frame-collected.
5260 * mi/mi-cmds.h (mi_cmd_trace_frame_collected): Declare.
5261 * mi/mi-main.c (print_variable_or_computed): New function.
5262 (mi_cmd_trace_frame_collected): New function.
5263 * tracepoint.c (find_trace_state_variable_by_number): New.
5264 (struct traceframe_info): Move to tracepoint.h
5265 (struct collection_list): Likewise.
5266 (do_collect_symbol): Include locals and arguments in the
5267 collected variables list.
5268 (clear_collection_list): Clear wholly collected variables list
5269 and computed variables list.
5270 (append_exp): New function.
5271 (encode_actions_1): Include variables in the wholly
5272 collected variables list. Include memory ranges and
5273 full-fledged expressions in the computed expressions list.
5274 (encode_actions): Move some code to ...
5275 Return the cleanup chain.
5276 (encode_actions_rsp): ... here. New function.
5277 (get_traceframe_location, get_traceframe_info): Remove static.
5278 * tracepoint.h (struct memrange): Moved from tracepoint.c.
5279 (struct collection_list): Moved from tracepoint.c. Add two
5280 new fields 'wholly_collected' and 'computed'.
5281 (find_trace_state_variable_by_number): Declare.
5282 (encode_actions): Adjust declaration.
5283 (encode_actions_rsp): Declare.
5284 (get_traceframe_info, get_traceframe_location): Declare.
5285
5286 * NEWS: Mention new MI command -trace-frame-collected.
5287
5288 2013-06-26 Pedro Alves <pedro@codesourcery.com>
5289 Yao Qi <yao@codesourcery.com>
5290
5291 * ctf.c (ctf_traceframe_info): Push trace state variables
5292 present in the trace data into the traceframe info object.
5293 * breakpoint.c (DEF_VEC_I): Remove.
5294 * common/filestuff.c (DEF_VEC_I): Likewise.
5295 * dwarf2loc.c (DEF_VEC_I): Likewise.
5296 * mi/mi-main.c (DEF_VEC_I): Likewise.
5297 * common/gdb_vecs.h (DEF_VEC_I): Define vector for int.
5298 * features/traceframe-info.dtd: Add tvar element and its
5299 attributes.
5300 * tracepoint.c (free_traceframe_info): Free vector 'tvars'.
5301 (build_traceframe_info): Push trace state variables present in
5302 the trace data into the traceframe info object.
5303 (traceframe_info_start_tvar): New function.
5304 (tvar_attributes): New.
5305 (traceframe_info_children): Add "tvar" element.
5306 * tracepoint.h (struct traceframe_info) <tvars>: New field.
5307
5308 * NEWS: Mention the change in GDB and GDBserver.
5309
5310 2013-06-26 Pedro Alves <pedro@codesourcery.com>
5311 Yao Qi <yao@codesourcery.com>
5312
5313 * tracepoint.c (trace_dump_command): Move code to ...
5314 (get_traceframe_location): ... here. New.
5315
5316 2013-06-26 Pedro Alves <pedro@codesourcery.com>
5317 Yao Qi <yao@codesourcery.com>
5318
5319 * tracepoint.c (trace_dump_command): GDB emits an error
5320 instead of a warning when a traceframe is not selected.
5321
5322 2013-06-26 Pedro Alves <pedro@codesourcery.com>
5323 Yao Qi <yao@codesourcery.com>
5324
5325 * tracepoint.c (tracepoint_list, stepping_list): Remove.
5326 (clear_collection_list): Free fields 'aexpre_list' and 'list'
5327 in collection_list.
5328 (do_clear_collection_list, init_collection_list): New.
5329 (encode_actions): Add local variables 'tracepoint_list' and
5330 'stepping_list'. Call init_collection_list and make cleanup
5331 which calls do_clear_collection_list. Don't call
5332 clear_collection_list.
5333 (_initialize_tracepoint): Delete references to
5334 'tracepoint_list' and 'stepping_list'.
5335
5336 2013-06-25 Tom Tromey <tromey@redhat.com>
5337
5338 * common/create-version.sh (date): Use "$", not "$$" in sed
5339 expression.
5340
5341 2013-06-25 Kevin Buettner <kevinb@redhat.com>
5342
5343 * NEWS (New targets): Add entry for TI MSP430.
5344
5345 2013-06-25 Yao Qi <yao@codesourcery.com>
5346
5347 * remote.c (remote_start_remote): Move code to upload tsv
5348 earlier.
5349
5350 2013-06-25 Yao Qi <yao@codesourcery.com>
5351 Hui Zhu <hui@codesourcery.com>
5352 Pedro Alves <palves@redhat.com>
5353
5354 PR breakpoints/15075
5355 PR breakpoints/15434
5356 * breakpoint.c (bpstat_stop_status): Call
5357 b->ops->after_condition_true.
5358 (update_dprintf_command_list): Don't append "continue" command
5359 to the command list of dprintf breakpoint.
5360 (base_breakpoint_after_condition_true): New function.
5361 (base_breakpoint_ops): Add base_breakpoint_after_condition_true.
5362 (dprintf_after_condition_true): New function.
5363 (initialize_breakpoint_ops): Set dprintf_after_condition_true.
5364 * breakpoint.h (breakpoint_ops): Add after_condition_true.
5365
5366 2013-06-24 Kevin Buettner <kevinb@redhat.com>
5367
5368 * Makefile.in (ALL_TARGET_OBS): Add msp430-tdep.o.
5369 (ALLDEPFILES): Add msp430-tdep.c.
5370 * configure.tgt (msp430*-*-elf): New target.
5371 * msp430-tdep.c: New file.
5372
5373 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
5374
5375 * mips-tdep.c (mips_elf_make_msymbol_special): Handle MIPS16 and
5376 microMIPS synthetic symbols.
5377
5378 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
5379
5380 * objfiles.h (pc_in_section): New prototype.
5381 (in_plt_section): Remove name argument, replace prototype with
5382 static inline function.
5383 * mips-tdep.h: Include "objfiles.h".
5384 (in_mips_stubs_section): New function.
5385 * hppa-tdep.h (gdbarch_tdep): Remove name argument of
5386 in_solib_call_trampoline member.
5387 (hppa_in_solib_call_trampoline): Remove name argument.
5388 * objfiles.c (pc_in_section): New function.
5389 (in_plt_section): Remove function.
5390 * mips-linux-tdep.c: Include "objfiles.h".
5391 (mips_linux_in_dynsym_stub): Call in_mips_stubs_section. Remove
5392 name argument. Return 1 rather than the low 16-bit halfword of
5393 any instruction examined.
5394 (mips_linux_in_dynsym_resolve_code): Update
5395 mips_linux_in_dynsym_stub call accordingly.
5396 * mips-tdep.c (mips_stub_frame_sniffer): Use in_mips_stubs_section
5397 rather than an equivalent hand-coded sequence.
5398 * hppa-hpux-tdep.c (in_opd_section): Remove function.
5399 (hppa32_hpux_in_solib_call_trampoline): Remove name argument.
5400 (hppa64_hpux_in_solib_call_trampoline): Likewise.
5401 (hppa64_hpux_find_global_pointer): Use pc_in_section rather than
5402 in_opd_section.
5403 * hppa-tdep.c (hppa_stub_unwind_sniffer): Remove name argument
5404 on call to tdep->in_solib_call_trampoline.
5405 (hppa_in_solib_call_trampoline): Remove name argument, update
5406 according to in_plt_section change.
5407 (hppa_skip_trampoline_code): Update according to in_plt_section
5408 change.
5409 * aarch64-tdep.c (aarch64_stub_unwind_sniffer): Likewise.
5410 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code):
5411 Likewise.
5412 * arm-tdep.c (arm_stub_unwind_sniffer): Likewise.
5413 * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
5414 * hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
5415 * nios2-tdep.c (nios2_stub_frame_sniffer): Likewise.
5416 * nto-tdep.c (nto_relocate_section_addresses): Likewise.
5417 * s390-tdep.c (s390_stub_frame_sniffer): Likewise.
5418 * sh-tdep.c (sh_stub_unwind_sniffer): Likewise.
5419 * solib-dsbt.c (dsbt_in_dynsym_resolve_code): Likewise.
5420 * solib-frv.c (frv_in_dynsym_resolve_code): Likewise.
5421 * solib-svr4.c (svr4_in_dynsym_resolve_code): Likewise.
5422 * solib-target.c (solib_target_in_dynsym_resolve_code): Likewise.
5423 * sparc-tdep.c (sparc_analyze_prologue): Likewise.
5424 * tic6x-tdep.c (tic6x_stub_unwind_sniffer): Likewise.
5425
5426 2013-06-24 Joel Brobecker <brobecker@adacore.com>
5427
5428 * common/create-version.sh: Fix expansion of $host_alias
5429 and $target_alias in generation of HOST_NAME and TARGET_NAME
5430 (resp.).
5431
5432 2013-06-24 Tom Tromey <tromey@redhat.com>
5433
5434 * common/create-version.sh: New file.
5435 * Makefile.in (version.c): Use bfd/version.h, common/version.in,
5436 create-version.sh.
5437 (HFILES_NO_SRCDIR): Use common/version.h.
5438 * version.in: Move to ...
5439 * common/version.in: ... here. Replace date with "DATE".
5440 * version.h: Move to ...
5441 * common/version.h: ... here.
5442
5443 2013-06-21 Joel Brobecker <brobecker@adacore.com>
5444
5445 * gdb/gnulib/Makefile.in: Update date in copyright header.
5446 * gdb/gnulib/configure.ac: Ditto.
5447 * gdb/gnulib/update-gnulib.sh: Ditto.
5448
5449 2013-06-21 Joel Brobecker <brobecker@adacore.com>
5450
5451 * copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by
5452 "gdb/gnulib/import".
5453
5454 2013-06-21 Will Newton <will.newton@linaro.org>
5455
5456 * doublest.c (ldfrexp): Remove function.
5457 (convert_doublest_to_floatformat): Call frexpl instead of
5458 ldfrexp.
5459
5460 2013-06-21 Will Newton <will.newton@linaro.org>
5461
5462 * gnulib/update-gnulib.sh(IMPORTED_GNULIB_MODULES): Add frexpl.
5463 * gnulib/aclocal.m4: Regenerate.
5464 * gnulib/config.in: Regenerate.
5465 * gnulib/configure: Regenerate.
5466 * gnulib/import/Makefile.am: Update.
5467 * gnulib/import/Makefile.in: Update.
5468 * gnulib/import/m4/gnulib-cache.m4: Update.
5469 * gnulib/import/m4/gnulib-comp.m4: Update.
5470 * gnulib/import/float+.h: Import.
5471 * gnulib/import/float.c: Import.
5472 * gnulib/import/float.in.h: Import.
5473 * gnulib/import/fpucw.h: Import.
5474 * gnulib/import/frexp.c: Import.
5475 * gnulib/import/frexpl.c: Import.
5476 * gnulib/import/isnan.c: Import.
5477 * gnulib/import/isnand-nolibm.h: Import.
5478 * gnulib/import/isnand.c: Import.
5479 * gnulib/import/isnanl-nolibm.h: Import.
5480 * gnulib/import/isnanl.c: Import.
5481 * gnulib/import/itold.c: Import.
5482 * gnulib/import/m4/exponentd.m4: Import.
5483 * gnulib/import/m4/exponentl.m4: Import.
5484 * gnulib/import/m4/float_h.m4: Import.
5485 * gnulib/import/m4/fpieee.m4: Import.
5486 * gnulib/import/m4/frexp.m4: Import.
5487 * gnulib/import/m4/frexpl.m4: Import.
5488 * gnulib/import/m4/isnand.m4: Import.
5489 * gnulib/import/m4/isnanl.m4: Import.
5490 * gnulib/import/m4/math_h.m4: Import.
5491 * gnulib/import/math.c: Import.
5492 * gnulib/import/math.in.h: Import.
5493
5494 2013-06-21 Jan Kratochvil <jan.kratochvil@redhat.com>
5495
5496 * common/linux-btrace.c (cpu_supports_btrace): Remove variable vendor,
5497 replace strcmp with signature_INTEL_ebx, signature_INTEL_ecx and
5498 signature_INTEL_edx comparisons.
5499
5500 2013-06-20 Doug Evans <dje@google.com>
5501
5502 symtab/15652
5503 * dwarf2read.c (try_open_dwop_file): New arg search_cwd.
5504 All callers updated.
5505 (open_dwp_file): If we can't find the dwp file, search the basename
5506 in debug-file-directory.
5507
5508 * dwarf2read.c (struct dwp_file): Fix comment.
5509 (open_and_init_dwp_file): Set dwp_file->name to bfd's file name.
5510
5511 * source.c (openp): Document OPF_TRY_CWD_FIRST+OPF_SEARCH_IN_PATH
5512 better.
5513
5514 2013-06-20 Yao Qi <yao@codesourcery.com>
5515
5516 * breakpoint.c (create_breakpoint): Fix code indentation.
5517
5518 2013-06-20 Yao Qi <yao@codesourcery.com>
5519
5520 * breakpoint.c (create_breakpoints_sal_default): Remove
5521 parameter 'lsal'. Update declaration.
5522 (bkpt_create_breakpoints_sal): Caller update.
5523 (tracepoint_create_breakpoints_sal): Likewise.
5524
5525 2013-06-20 Pedro Alves <pedro@codesourcery.com>
5526 Yao Qi <yao@codesourcery.com>
5527
5528 * NEWS: Mention the new option '--skip-unavailable' of command
5529 -data-list-register-values.
5530 * mi/mi-main.c (mi_cmd_data_list_register_values): Accept the
5531 --skip-unavailable option. Adjust to use output_register.
5532 (output_register): Add new 'skip_unavailable' parameter.
5533 Handle it.
5534
5535 2013-06-19 Mike Frysinger <vapier@gentoo.org>
5536
5537 * Makefile.in (HFILES_NO_SRCDIR): Add common/i386-cpuid.h and
5538 common/i386-gcc-cpuid.h.
5539 * common/i386-cpuid.h: New wrapper header around i386-gcc-cpuid.h.
5540 * common/i386-gcc-cpuid.h: Rename from testsuite/gdb.arch/i386-cpuid.h.
5541 Copy the latest version from upstream gcc.
5542 * common/linux-btrace.c: Include i386-cpuid.h.
5543 (intel_supports_btrace): Delete x86 ifdefs and replace inline asm with
5544 call to i386_cpuid.
5545 (cpu_supports_btrace): Likewise.
5546 * go32-nat.c: Include i386-cpuid.h.
5547 (go32_sysinfo): Add (disabled) calls to i386_cpuid with comments.
5548
5549 2013-06-19 Doug Evans <dje@google.com>
5550
5551 * symfile.c (symfile_bfd_open): Delete unnecessary declaration.
5552 (get_section_index): Ditto.
5553
5554 2013-06-19 Tom Tromey <tromey@redhat.com>
5555
5556 * breakpoint.c (_initialize_breakpoint): Remove trailing \n from
5557 "dprintf" help.
5558
5559 2013-06-18 Doug Evans <dje@google.com>
5560
5561 * dwarf2read.c (dw2_symtab_iter_next): Check value of cu_index
5562 before using it.
5563 (dw2_expand_symtabs_matching): Fix symbol kind validity check.
5564 Move test of cu_index closer to use. Print complaint if cu_index
5565 is bad.
5566
5567 2013-06-18 Joel Brobecker <brobecker@adacore.com>
5568
5569 * machoread.c (oso_vector): Delete this global.
5570 (macho_register_oso): Add new parameter "oso_vector_ptr".
5571 Use it instead of the "oso_vector" global.
5572 (macho_symtab_read, macho_symfile_read_all_oso): Likewise.
5573 (macho_symfile_read): Use a local oso_vector, to be free'ed
5574 at the end of this function, in place of the old "oso_vector"
5575 global. Update various function calls accordingly. Use one
5576 single cleanup chain for the entire function.
5577
5578 2013-06-18 Joel Brobecker <brobecker@adacore.com>
5579
5580 * dwarf2read.c (dwarf2_per_objfile_free): Replace uses of
5581 DWARF2_PER_OBJFILE by uses of DATA instead.
5582
5583 2013-06-18 Tom Tromey <tromey@redhat.com>
5584
5585 * break-catch-sig.c (signal_catchpoint_explains_signal): Add 'sig'
5586 argument.
5587 * breakpoint.c (bpstat_explains_signal): Add 'sig' argument.
5588 Special case signals other than GDB_SIGNAL_TRAP.
5589 (explains_signal_watchpoint): New function.
5590 (base_breakpoint_explains_signal): Add 'sig' argument.
5591 (initialize_breakpoint_ops): Set 'explains_signal' method for
5592 watchpoints.
5593 * breakpoint.h (struct breakpoint_ops) <explains_signal>: Add
5594 signal argument.
5595 (bpstat_explains_signal): Likewise.
5596 * infrun.c (handle_syscall_event, handle_inferior_event): Update.
5597
5598 2013-06-18 Tom Tromey <tromey@redhat.com>
5599
5600 * python/py-inferior.c (gdbpy_selected_inferior): Don't incref.
5601
5602 2013-06-18 Tom Tromey <tromey@redhat.com>
5603
5604 * python/python.c (finish_python_initialization): Decref
5605 'pythondir' on failure path as well.
5606
5607 2013-06-18 Tom Tromey <tromey@redhat.com>
5608
5609 PR symtab/15391:
5610 * dwarf2loc.c (read_pieced_value): Truncate this_size_bits
5611 after taking bits_to_skip into account. Sign extend byte_offset.
5612 * utils.h (gdb_sign_extend): Declare.
5613 * utils.c (gdb_sign_extend): New function.
5614
5615 2013-06-18 Jan Kratochvil <jan.kratochvil@redhat.com>
5616
5617 * dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.
5618
5619 2013-06-17 Pierre Muller <muller@sourceware.org>
5620
5621 * corelow.c (core_open): Print GDB signal name instead of target
5622 signal number.
5623
5624 2013-06-17 Mike Frysinger <vapier@gentoo.org>
5625
5626 * .gitignore: Add /gcore.
5627
5628 2013-06-13 Doug Evans <dje@google.com>
5629
5630 * dwarf2read.c (try_open_dwop_file): Work around behaviour of
5631 OPF_TRY_CWD_FIRST to not search path if the file contains a '/'.
5632
5633 2013-06-12 Phil Muldoon <pmuldoon@redhat.com>
5634
5635 * stack.c (backtrace_command_1): Fix indentation.
5636
5637 2013-06-11 Joel Brobecker <brobecker@adacore.com>
5638
5639 * window-nat.c (thread_rec): Add missing empty line after
5640 local variable declaration.
5641
5642 2013-06-11 Joel Brobecker <brobecker@adacore.com>
5643
5644 * windows-nat.c (thread_rec): Revert format used to print
5645 error code returned by SuspendThread from %d back to %u.
5646
5647 2013-06-11 Joel Brobecker <brobecker@adacore.com>
5648
5649 * windows-nat.c (windows_continue): Add "0x" prefix for thread
5650 ID in debug trace.
5651 (get_windows_debug_event): Likewise, for all debug traces.
5652
5653 2013-06-11 Joel Brobecker <brobecker@adacore.com>
5654
5655 * window-nat.c (thread_rec): Add thread ID in SuspendThread
5656 warning message.
5657
5658 2013-06-08 Pedro Alves <pedro@codesourcery.com>
5659 Yao Qi <yao@codesourcery.com>
5660
5661 * mi/mi-main.c (get_register): Remove declaration.
5662 (output_register): Declare.
5663 (mi_cmd_data_list_register_values): Remove local variable
5664 'tuple_cleanup'. Move some code into output_register.
5665 (get_register): Renamed to ...
5666 (output_register): ... this. Output the register's
5667 "number" ui_out tuple here.
5668
5669 2013-06-07 Pedro Alves <palves@redhat.com>
5670
5671 * darwin-nat.c: Fix formating in copyright header.
5672 * darwin-nat.h: Likewise.
5673 * gnu-nat.c: Likewise.
5674 * machoread.c: Likewise.
5675
5676 2013-06-07 Pedro Alves <palves@redhat.com>
5677
5678 PR server/14823
5679 * regformats/regdat.sh: Output #include tdesc.h. Make globals
5680 static. Output a global target description pointer.
5681 (init_registers_${name}): Adjust to initialize a
5682 target description structure.
5683
5684 2013-06-07 Will Newton <will.newton@linaro.org>
5685
5686 * printcmd.c (build_address_symbolic): Call
5687 gdbarch_addr_bits_remove for text minimal symbols.
5688
5689 2013-06-07 Will Newton <will.newton@linaro.org>
5690
5691 * MAINTAINERS: Add myself to Write After Approval.
5692
5693 2013-06-07 Yao Qi <yao@codesourcery.com>
5694
5695 * tracepoint.c (start_tracing): Move code to ...
5696 (trace_reset_local_state): ... here. New.
5697 (disconnect_tracing): Don't call set_current_traceframe,
5698 set_tracepoint_num, and set_traceframe_context. Call
5699 trace_reset_local_state instead.
5700 (tfile_close): Call trace_reset_local_state.
5701 * ctf.c (ctf_close): Likewise.
5702 * remote.c (remote_close): Likewise.
5703 * tracepoint.h (trace_reset_local_state): Declare.
5704
5705 2013-06-06 Doug Evans <dje@google.com>
5706
5707 * dwarf2read.c: Whitespace fixes for DWP file format documentation,
5708 and fix header docs.
5709
5710 2013-06-05 Doug Evans <dje@google.com>
5711 Keith Seitz <keiths@redhat.com>
5712
5713 PR 15519
5714 * cp-namespace.c (find_symbol_in_baseclass): Call
5715 cp_lookup_symbol_in_namespace instead of cp_lookup_symbol_namespace.
5716 Check result of call to lookup_symbol_static.
5717 Call lookup_static_symbol_aux unconditionally.
5718 Call check_typedef on base types before accessing them.
5719 (cp_lookup_nested_symbol): Fix comment.
5720
5721 2013-06-05 Luis Machado <lgustavo@codesourcery.com>
5722
5723 * gnu-v3-abi.c (gnuv3_skip_trampoline): Handle thunk
5724 minimal symbols pointing to function descriptors.
5725
5726 2013-06-05 Tom Tromey <tromey@redhat.com>
5727
5728 * python/py-utils.c (gdb_pymodule_addobject): Cast away const.
5729
5730 2013-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
5731 Pedro Alves <palves@redhat.com>
5732
5733 * remote.c (remote_wait_as): Restore signal handler before returning
5734 when GDB gets a notification.
5735
5736 2013-06-04 Gary Benson <gbenson@redhat.com>
5737
5738 PR 2328
5739 * breakpoint.h (handle_solib_event): Moved function declaration
5740 to solib.h.
5741 * breakpoint.c (handle_solib_event): Moved function to solib.c.
5742 (bpstat_stop_status): Pass new argument to handle_solib_event.
5743 * solib.h (update_solib_breakpoints): New function declaration.
5744 (handle_solib_event): Moved function declaration from
5745 breakpoint.h.
5746 * solib.c (update_solib_breakpoints): New function.
5747 (handle_solib_event): Moved function from breakpoint.c.
5748 Updated to call solib_ops->handle_event if not NULL.
5749 * solist.h (target_so_ops): New fields "update_breakpoints" and
5750 "handle_event".
5751 * infrun.c (set_stop_on_solib_events): New function.
5752 (_initialize_infrun): Use the above for "set
5753 stop-on-solib-events".
5754 (handle_inferior_event): Pass new argument to handle_solib_event.
5755 * solib-svr4.c (probe.h): New include.
5756 (svr4_free_library_list): New forward declaration.
5757 (probe_action): New enum.
5758 (probe_info): New struct.
5759 (probe_info): New static variable.
5760 (NUM_PROBES): New definition.
5761 (svr4_info): New fields "using_xfer", "probes_table" and
5762 "solib_list".
5763 (free_probes_table): New function.
5764 (free_solib_list): New function.
5765 (svr4_pspace_data_cleanup): Free probes table and solib list.
5766 (svr4_copy_library_list): New function.
5767 (svr4_current_sos_via_xfer_libraries): New parameter "annex".
5768 (svr4_read_so_list): New parameter "prev_lm".
5769 (svr4_current_sos_direct): Renamed from "svr4_current_sos".
5770 (svr4_current_sos): New function.
5771 (probe_and_action): New struct.
5772 (hash_probe_and_action): New function.
5773 (equal_probe_and_action): Likewise.
5774 (register_solib_event_probe): Likewise.
5775 (solib_event_probe_at): Likewise.
5776 (solib_event_probe_action): Likewise.
5777 (solist_update_full): Likewise.
5778 (solist_update_incremental): Likewise.
5779 (disable_probes_interface_cleanup): Likewise.
5780 (svr4_handle_solib_event): Likewise.
5781 (svr4_update_solib_event_breakpoint): Likewise.
5782 (svr4_update_solib_event_breakpoints): Likewise.
5783 (svr4_create_solib_event_breakpoints): Likewise.
5784 (enable_break): Free probes table before creating breakpoints.
5785 Use svr4_create_solib_event_breakpoints to create breakpoints.
5786 (svr4_solib_create_inferior_hook): Free the solib list.
5787 (_initialize_svr4_solib): Initialise
5788 svr4_so_ops.handle_solib_event and svr4_so_ops.update_breakpoints.
5789
5790 2013-06-04 Gary Benson <gbenson@redhat.com>
5791
5792 * target.h (target_ops): New field
5793 "to_augmented_libraries_svr4_read".
5794 (target_augmented_libraries_svr4_read): New macro.
5795 * target.c (update_current_target): Handle
5796 to_augmented_libraries_svr4_read.
5797 * remote.c (remote_state): New field
5798 "augmented_libraries_svr4_read".
5799 (remote_augmented_libraries_svr4_read_feature): New function.
5800 (remote_protocol_features): Add entry for
5801 "augmented-libraries-svr4-read".
5802 (remote_augmented_libraries_svr4_read): New function.
5803 (init_remote_ops): Initialize
5804 remote_ops.to_augmented_libraries_svr4_read.
5805
5806 2013-06-04 Gary Benson <gbenson@redhat.com>
5807
5808 * NEWS: Update.
5809
5810 2013-06-04 Gary Benson <gbenson@redhat.com>
5811
5812 * objfiles.h (inhibit_section_map_updates): New function
5813 declaration.
5814 (resume_section_map_updates): Likewise.
5815 (resume_section_map_updates_cleanup): Likewise.
5816 * objfiles.c (objfile_pspace_info): Removed field
5817 "objfiles_changed_p". New fields "new_objfiles_available",
5818 "section_map_dirty" and "inhibit_updates".
5819 (allocate_objfile): Set new_objfiles_available.
5820 (free_objfile): Set section_map_dirty.
5821 (objfile_relocate1): Likewise.
5822 (in_plt_section): Likewise.
5823 (find_pc_section): Update the conditions under which the
5824 section map will be updated.
5825 (inhibit_section_map_updates): New function.
5826 (resume_section_map_updates): Likewise.
5827 (resume_section_map_updates_cleanup): Likewise.
5828
5829 2013-06-04 Gary Benson <gbenson@redhat.com>
5830
5831 * probe.h (get_probe_argument_count): New declaration.
5832 (evaluate_probe_argument): Likewise.
5833 * probe.c (get_probe_argument_count): New function.
5834 (evaluate_probe_argument): Likewise.
5835 (probe_safe_evaluate_at_pc): Use the above new functions.
5836
5837 2013-06-04 Alan Modra <amodra@gmail.com>
5838
5839 * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
5840 * rs6000-tdep.c (read_insn): Add frame param, don't assume big-endian.
5841 (ppc_insns_match_pattern): Add frame param. Avoid multiple
5842 target mem reads on optional insns.
5843 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Update
5844 ppc_insns_match_pattern calls.
5845 * ppc64-tdep.c (ppc64_standard_linkage2, ppc64_standard_linkage3):
5846 Add match for power7 thread safety insns, and new order of
5847 std 2,40(1) insn. Correct code shown for _dl_runtime_resolve
5848 invocation in comment, and update rest of comment.
5849 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN,
5850 PPC64_STANDARD_LINKAGE3_LEN): Delete.
5851 (ppc64_standard_linkage2_target): Update insn offsets.
5852 (ppc64_skip_trampoline_code): Use a single insn buffer. Match newer
5853 stubs first. Update calls.
5854
5855 2013-06-04 Yao Qi <yao@codesourcery.com>
5856
5857 * solib.c (solib_find): Don't need dir separator if path has
5858 drive spec.
5859
5860 2013-06-03 Joel Brobecker <brobecker@adacore.com>
5861
5862 Revert (indirectly causes a SIGSEGV):
5863 * machoread.c (macho_symfile_read): Assign first cleanup to
5864 'back_to'.
5865
5866 2013-06-03 Yao Qi <yao@codesourcery.com>
5867
5868 * mi/mi-cmd-var.c (mi_no_values, mi_simple_values): Move to
5869 mi-parse.c. Make them static.
5870 (mi_all_values): Likewise.
5871 (mi_parse_values_option): Move to mi-parse.c. Rename it to
5872 mi_parse_print_values. Make it external.
5873 * mi/mi-cmds.h (mi_no_values, mi_simple_values, mi_all_values):
5874 Remove the declarations.
5875 * mi/mi-parse.c (mi_parse_print_values): Moved from mi-cmd-var.c.
5876 * mi/mi-parse.h (mi_parse_print_values): Declare.
5877 * mi/mi-cmd-stack.c: Include mi-parse.h.
5878 (parse_print_values): Remove
5879 (mi_cmd_stack_list_locals): Call mi_parse_print_values instead
5880 of parse_print_values.
5881 (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Likewise.
5882
5883 2013-05-31 Pedro Alves <pedro@codesourcery.com>
5884 Yao Qi <yao@codesourcery.com>
5885
5886 * tracepoint.c (all_tracepoint_actions_and_cleanup): Declare.
5887 (encode_actions): Move code to ...
5888 (all_tracepoint_actions_and_cleanup): ... here. New.
5889 (trace_dump_command): Likewise.
5890
5891 2013-05-30 Tom Tromey <tromey@redhat.com>
5892
5893 * symmisc.c (maintenance_expand_symtabs): Call do_cleanups.
5894
5895 2013-05-30 Tom Tromey <tromey@redhat.com>
5896
5897 * xml-support.c (gdb_xml_create_parser_and_cleanup): Rename from
5898 gdb_xml_create_parser_and_cleanup_1. Return a cleanup. Remove
5899 'old_chain' argument. Add 'parser_result' argument.
5900 (gdb_xml_create_parser_and_cleanup): Remove old version.
5901 (gdb_xml_parse_quick): Update.
5902 (xml_process_xincludes): Update.
5903 * xml-support.h (gdb_xml_create_parser_and_cleanup): Don't
5904 declare.
5905
5906 2013-05-30 Tom Tromey <tromey@redhat.com>
5907
5908 * probe.c (collect_probes): Check arguments for NULL before
5909 calling compile_rx_or_error.
5910 * utils.c (compile_rx_or_error): Require 'rx' to be non-NULL.
5911 Remove NULL return.
5912
5913 2013-05-30 Tom Tromey <tromey@redhat.com>
5914
5915 * infrun.c (adjust_pc_after_break): Introduce an outer null
5916 cleanup.
5917
5918 2013-05-30 Tom Tromey <tromey@redhat.com>
5919
5920 * mi/mi-cmd-var.c (varobj_update_one): Add an outer null cleanup.
5921
5922 2013-05-30 Tom Tromey <tromey@redhat.com>
5923
5924 * cli/cli-script.c (read_command_lines_1): Use a null cleanup
5925 for 'old_chain'. Do not check 'head' before processing
5926 cleanups.
5927
5928 2013-05-30 Tom Tromey <tromey@redhat.com>
5929
5930 * mi/mi-cmd-stack.c (list_arg_or_local): Remove
5931 "cleanup_tuple".
5932
5933 2013-05-30 Tom Tromey <tromey@redhat.com>
5934
5935 * dbxread.c (dbx_read_symtab): Declare 'back_to' in a more
5936 inner scope. Unconditionally call do_cleanups.
5937
5938 2013-05-30 Tom Tromey <tromey@redhat.com>
5939
5940 * source.c (find_and_open_source): Call do_cleanups.
5941
5942 2013-05-30 Tom Tromey <tromey@redhat.com>
5943
5944 * linux-thread-db.c (thread_db_load_search): Unconditionally
5945 call do_cleanups.
5946
5947 2013-05-30 Tom Tromey <tromey@redhat.com>
5948
5949 * solib-aix.c (solib_aix_bfd_open): Don't use a null cleanup
5950 for 'cleanup'; instead use a later one.
5951
5952 2013-05-30 Tom Tromey <tromey@redhat.com>
5953
5954 * python/py-breakpoint.c (bppy_get_commands): Use
5955 explicit, unconditional return.
5956 * python/py-frame.c (frapy_read_var): Likewise.
5957 * python/python.c (gdbpy_decode_line): Likewise.
5958
5959 2013-05-30 Tom Tromey <tromey@redhat.com>
5960
5961 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
5962 do_cleanups on all return paths.
5963
5964 2013-05-30 Tom Tromey <tromey@redhat.com>
5965
5966 * top.c (execute_command): Discard 'cleanup_if_error' cleanups.
5967
5968 2013-05-30 Tom Tromey <tromey@redhat.com>
5969
5970 * stabsread.c (read_struct_type): Call do_cleanups along
5971 all return paths.
5972
5973 2013-05-30 Maciej W. Rozycki <macro@codesourcery.com>
5974
5975 * mips-linux-tdep.c: Adjust formatting throughout.
5976
5977 2013-05-30 Tom Tromey <tromey@redhat.com>
5978
5979 * mipsread.c (read_alphacoff_dynamic_symtab): Call do_cleanups
5980 along all return paths.
5981
5982 2013-05-30 Tom Tromey <tromey@redhat.com>
5983
5984 * symfile.c (find_separate_debug_file): Call do_cleanups
5985 along all return paths.
5986
5987 2013-05-30 Tom Tromey <tromey@redhat.com>
5988
5989 * symtab.c (search_symbols): Introduce a null cleanup for
5990 'retval_chain'.
5991
5992 2013-05-30 Tom Tromey <tromey@redhat.com>
5993
5994 * python/py-value.c (valpy_binop): Call do_cleanups before
5995 exiting loop.
5996
5997 2013-05-30 Tom Tromey <tromey@redhat.com>
5998
5999 * python/py-prettyprint.c (print_children): Remove extra
6000 do_cleanups call.
6001
6002 2013-05-30 Tom Tromey <tromey@redhat.com>
6003
6004 * python/py-frame.c (frapy_read_var): Call do_cleanups along
6005 all return paths.
6006
6007 2013-05-30 Tom Tromey <tromey@redhat.com>
6008
6009 * python/py-breakpoint.c (bppy_get_commands): Call do_cleanups
6010 along all return paths.
6011
6012 2013-05-30 Tom Tromey <tromey@redhat.com>
6013
6014 * cli/cli-logging.c (set_logging_redirect): Unconditionally
6015 call do_cleanups.
6016
6017 2013-05-30 Tom Tromey <tromey@redhat.com>
6018
6019 * varobj.c (c_value_of_root): Call do_cleanups along all
6020 return paths.
6021
6022 2013-05-30 Tom Tromey <tromey@redhat.com>
6023
6024 * tracepoint.c (trace_dump_command): Unconditionally call
6025 do_cleanups.
6026
6027 2013-05-30 Tom Tromey <tromey@redhat.com>
6028
6029 * breakpoint.c (output_thread_groups, parse_cmd_to_aexpr): Call
6030 do_cleanups earlier.
6031
6032 2013-05-30 Tom Tromey <tromey@redhat.com>
6033
6034 * machoread.c (macho_symfile_read): Assign first cleanup to
6035 'back_to'.
6036
6037 2013-05-30 Tom Tromey <tromey@redhat.com>
6038
6039 * m32r-rom.c (m32r_load): Call do_cleanups at all returns.
6040
6041 2013-05-30 Tom Tromey <tromey@redhat.com>
6042
6043 * mi/mi-main.c (list_available_thread_groups): Call do_cleanups.
6044
6045 2013-05-30 Tom Tromey <tromey@redhat.com>
6046
6047 * inf-ptrace.c (inf_ptrace_create_inferior): Unconditionally
6048 call discard_cleanups.
6049 (inf_ptrace_attach): Likewise.
6050
6051 2013-05-30 Tom Tromey <tromey@redhat.com>
6052
6053 * remote-mips.c (mips_exit_debug): Call do_cleanups on all
6054 return paths.
6055 (mips_initialize): Likewise.
6056 (common_open): Call do_cleanups.
6057
6058 2013-05-30 Tom Tromey <tromey@redhat.com>
6059
6060 * utils.c (internal_vproblem): Call do_cleanups.
6061
6062 2013-05-30 Tom Tromey <tromey@redhat.com>
6063
6064 * linespec.c (find_linespec_symbols): Don't reassign to 'cleanup'.
6065
6066 2013-05-30 Tom Tromey <tromey@redhat.com>
6067
6068 * cli/cli-script.c (setup_user_args): Don't return after error.
6069
6070 2013-05-30 Tom Tromey <tromey@redhat.com>
6071
6072 * somread.c (som_symtab_read): Call do_cleanups.
6073
6074 2013-05-30 Tom Tromey <tromey@redhat.com>
6075
6076 * printcmd.c (print_command_1): Unconditionally call do_cleanups.
6077
6078 2013-05-30 Tom Tromey <tromey@redhat.com>
6079
6080 * cli/cli-cmds.c (cd_command, alias_command): Call do_cleanups.
6081 * cli/cli-dump.c (restore_binary_file): Call do_cleanups.
6082 * interps.c (interpreter_exec_cmd): Call do_cleanups.
6083 * source.c (show_substitute_path_command): Call do_cleanups.
6084 (unset_substitute_path_command, set_substitute_path_command):
6085 Likewise.
6086 * symfile.c (load_command): Call do_cleanups.
6087
6088 2013-05-30 Tom Tromey <tromey@redhat.com>
6089
6090 * contrib/cleanup_check.py: New file.
6091 * contrib/gcc-with-excheck: Add option parsing.
6092
6093 2013-05-30 Joel Brobecker <brobecker@adacore.com>
6094
6095 * windows-nat.c (windows_delete_thread): Add missing space
6096 in cast expression.
6097
6098 2013-05-30 Hafiz Abid Qadeer <abidh@codesourcery.com>
6099
6100 * inferior.c (top level): Include tilde.h.
6101 (add_inferior_command): Call tilde_expand on the value of 'exec'
6102 argument.
6103
6104 2013-05-30 Pedro Alves <pedro@codesourcery.com>
6105 Yao Qi <yao@codesourcery.com>
6106
6107 * tracepoint.c (encode_actions_1): Remove parameter 't'.
6108 Caller update.
6109 (encode_actions): Likewise.
6110 * remote.c (remote_download_tracepoint): Caller update.
6111 * tracepoint.h (encode_actions): Update declaration.
6112
6113 2013-05-30 Pedro Alves <palves@redhat.com>
6114
6115 * python/python-internal.h (gdb_Py_DECREF): Cast OP to PyObject
6116 pointer.
6117
6118 2013-05-30 Yao Qi <yao@codesourcery.com>
6119
6120 * remote.c (remote_check_symbols): Remove unused parameter
6121 'objfile'.
6122 Declaration update.
6123 (remote_start_remote, remote_new_objfile): Caller update.
6124
6125 2013-05-30 Yao Qi <yao@codesourcery.com>
6126
6127 * mi/mi-cmds.c (mi_cmds): Define MI command
6128 '-exec-arguments' by macro DEF_MI_CMD_CLI_1 instead of
6129 DEF_MI_CMD_CLI.
6130
6131 2013-05-29 Pedro Alves <palves@redhat.com>
6132
6133 * remote.c (remote_insert_breakpoint, remote_remove_breakpoint)
6134 (remote_insert_watchpoint, remote_remove_watchpoint)
6135 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
6136 (remote_verify_memory, compare_sections_command)
6137 (remote_search_memory): Set the general process/thread on the
6138 remote side.
6139
6140 2013-05-29 Pedro Alves <palves@redhat.com>
6141
6142 * aarch64-tdep.c: Don't include "features/aarch64-without-fpu.c".
6143 (_initialize_aarch64_tdep): Don't call
6144 initialize_tdesc_aarch64_without_fpu.
6145 * features/Makefile (WHICH): Remove reference to
6146 aarch64-without-fpu.
6147 * features/aarch64-without-fpu.c: Delete file.
6148 * regformats/aarch64-without-fpu.dat: Delete file.
6149
6150 2013-05-28 Yao Qi <yao@codesourcery.com>
6151
6152 * tracepoint.c (stringify_collection_list): Remove parameter
6153 'string'.
6154 (encode_actions): Caller update. Remove local variables.
6155
6156 2013-05-24 Yao Qi <yao@codesourcery.com>
6157
6158 * tracepoint.c (TFILE_PID): Remove.
6159 (tfile_open): Don't add thread and inferior.
6160 (tfile_close): Don't set 'inferior_ptid'. Don't call
6161 exit_inferior_silent.
6162 (tfile_thread_alive): Remove.
6163 (init_tfile_ops): Don't set field 'to_thread_alive' of
6164 tfile_ops.
6165
6166 2013-05-23 Doug Evans <dje@google.com>
6167
6168 * contrib/cc-with-tweaks.sh (-p): Handle no dwo files.
6169
6170 2013-05-23 Pedro Alves <palves@redhat.com>
6171
6172 * common/filestuff.c [USE_WIN32API]: Define HAVE_SOCKETS.
6173 [HAVE_SYS_SOCKET_H]: Define HAVE_SOCKETS.
6174 (socket_mark_cloexec, gdb_socketpair_cloexec, gdb_socket_cloexec):
6175 Only define if HAVE_SOCKETS is defined.
6176 * configure.ac: Check for sys/socket.h.
6177 * config.in, configure: Regenerate.
6178
6179 2013-05-23 Pedro Alves <palves@redhat.com>
6180
6181 * dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
6182 (open_and_init_dwp_file): Use %s/pulongest instead of %u for
6183 printing uint32_t variables.
6184
6185 2013-05-23 Pedro Alves <palves@redhat.com>
6186
6187 * NEWS: Mention GDBserver range stepping support.
6188
6189 2013-05-23 Yao Qi <yao@codesourcery.com>
6190 Pedro Alves <palves@redhat.com>
6191
6192 * gdbthread.h (struct thread_control_state) <may_range_step>: New
6193 field.
6194 * infcmd.c (step_once, until_next_command): Enable range stepping.
6195 * infrun.c (displaced_step_prepare): Disable range stepping.
6196 (resume): Disable range stepping if stepping over a breakpoint or
6197 we have software watchpoints. If range stepping is enabled,
6198 assert the thread is in the stepping range.
6199 (clear_proceed_status_thread): Clear may_range_step.
6200 (handle_inferior_event): Disable range stepping as soon as we know
6201 the thread that hit the event. Re-enable it whenever we're going
6202 to step with a step range.
6203 * remote.c (struct vCont_action_support) <r>: New field.
6204 (use_range_stepping): New global.
6205 (remote_vcont_probe): Handle 'r' action.
6206 (append_resumption): Append an 'r' action if the thread may range
6207 step.
6208 (show_range_stepping): New function.
6209 (set_range_stepping): New function.
6210 (_initialize_remote): Call add_setshow_boolean_cmd to register the
6211 'set range-stepping' and 'show range-stepping' commands.
6212 * NEWS: Mention range stepping, the new vCont;r action, and the
6213 new "set/show range-stepping" commands.
6214
6215 2013-05-23 Yao Qi <yao@codesourcery.com>
6216 Pedro Alves <palves@redhat.com>
6217
6218 * remote.c (struct vCont_action_support): New struct.
6219 (struct remote_state) <support_vCont_t>: Remove field.
6220 <vCont_actions_support>: New field.
6221 (remote_vcont_probe, remote_stop_ns): Update.
6222
6223 2013-05-23 Yao Qi <yao@codesourcery.com>
6224 Pedro Alves <palves@redhat.com>
6225
6226 * gdbthread.h (pc_in_thread_step_range): New declaration.
6227 * thread.c (pc_in_thread_step_range): New function.
6228 * infrun.c (handle_inferior_event): Use it.
6229
6230 2013-05-23 Joel Brobecker <brobecker@adacore.com>
6231
6232 * mi/mi-cmd-break.c (mi_argv_to_format): Use xsnprintf instead
6233 of sprintf.
6234
6235 2013-05-22 Keith Seitz <keiths@redhat.com>
6236
6237 * ada-lang.c (is_known_support_routine): Add explicit free of
6238 'func_name' from find_frame_funname.
6239 (ada_unhandled_exception_name_addr_from_raise): Add cleanups
6240 for func_name from find_frame_funname.
6241 * python/py-frame.c (frapy_name): Add explicit free of
6242 'name' from find_frame_funname.
6243 * stack.c (find_frame_funname): Add comment explaining that
6244 funcp must be freed by the caller.
6245 Return copy of symbol names instead of pointers.
6246 (print_frame): Add a cleanup for 'funname' from
6247 find_frame_funname.
6248 * stack.h (find_frame_funname): Remove "const" from
6249 'funname' parameter.
6250
6251 2013-05-22 Tom Tromey <tromey@redhat.com>
6252
6253 PR c++/15401:
6254 * c-valprint.c (c_value_print): Use value_addr for
6255 references. Convert back to reference type with value_ref.
6256
6257 2013-05-22 Eli Zaretskii <eliz@gnu.org>
6258
6259 * windows-nat.c (handle_unload_dll): Don't call solib_add for the
6260 unloaded DLL, it will be done by handle_solib_event. See
6261 http://sourceware.org/ml/gdb-patches/2013-05/msg00713.html for the
6262 details.
6263
6264 2013-05-22 Phil Muldoon <pmuldoon@redhat.com>
6265
6266 * ui-out.c: Create typedef ui_out_level_p and define vector
6267 operations for that type.
6268 (struct ui_out): Use a vector instead of an array.
6269 (current_level): Return level from a vector.
6270 (push_level): Create a level in a vector.
6271 (pop_level): Delete a level in a vector.
6272 (ui_out_new): Create initial level zero level, and store in a
6273 vector.
6274 (ui_out_destroy): Add vector cleanup.
6275
6276 2013-05-22 Pedro Alves <palves@redhat.com>
6277
6278 * python/python-internal.h (gdb_Py_DECREF): Tag with
6279 "ARI: editCase function".
6280
6281 2013-05-21 Paul Pluzhnikov <ppluzhnikov@google.com>
6282
6283 * solib-svr4.c (svr4_free_so): Protect against NULL dereference.
6284
6285 2013-05-21 Pedro Alves <palves@redhat.com>
6286
6287 * python/py-prettyprint.c (apply_val_pretty_printer): Check
6288 whether PRINTER is NULL before installing a Py_DECREF cleanup.
6289 * python/py-utils.c (py_decref): Don't check for NULL before
6290 calling Py_DECREF.
6291
6292 2013-05-21 Pedro Alves <palves@redhat.com>
6293
6294 * python/py-utils.c (py_decref): Remove extra braces.
6295 (gdb_pymodule_addobject): Remove extra braces.
6296 * python-internal.h (gdb_Py_DECREF): New static inline function.
6297 (Py_DECREF): Redefine as calling gdb_Py_DECREF.
6298
6299 2013-05-21 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6300
6301 * breakpoints.c (detach_breakpoints): Do not
6302 detach breakpoints locations with loc_type bp_loc_other.
6303
6304 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
6305
6306 Workaround Python 2.6.
6307 * python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
6308 a block.
6309
6310 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
6311
6312 Code cleanup: constification.
6313 * solib.c (solib_ops): Make return type and ops variable type const.
6314 (set_solib_ops): Make the new_ops parameter and ops variable const.
6315 (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
6316 (solib_add, solib_keep_data_in_core, clear_solib)
6317 (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
6318 (reload_shared_libraries, solib_global_lookup): Make the ops variable
6319 const.
6320 * solib.h (set_solib_ops): Make the new_ops parameter const.
6321
6322 2013-05-21 Joel Brobecker <brobecker@adacore.com>
6323
6324 * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
6325 variable.
6326 (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
6327 (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
6328 (SYSTEM_GDBINIT_FILES): New variables.
6329 (all): Add stamp-system-gdbinit.
6330 (stamp-system-gdbinit): New rule.
6331 (clean-system-gdbinit, install-system-gdbinit)
6332 (uninstall-system-gdbinit): New rules. Make them .PHONY.
6333 (install-only): Add dependency on install-system-gdbinit.
6334 (uninstall): Add dependency on uninstall-system-gdbinit.
6335 (clean): Add dependency on clean-system-gdbinit.
6336 * system-gdbinit/elinos.py: New file.
6337 * system-gdbinit/wrs-linux.py: New file.
6338
6339 2013-05-21 Joel Brobecker <brobecker@adacore.com>
6340
6341 * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
6342
6343 2013-05-21 Hui Zhu <hui@codesourcery.com>
6344
6345 * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
6346 * breakpoint.h (dprintf_breakpoint_ops): Add extern.
6347 * mi/mi-cmd-break.c (ctype.h): New include.
6348 (gdb_obstack.h): New include.
6349 (mi_argv_to_format, mi_cmd_break_insert_1): New.
6350 (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
6351 (mi_cmd_dprintf_insert): New.
6352 * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
6353 * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
6354
6355 2013-05-20 Tom Tromey <tromey@redhat.com>
6356
6357 * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
6358
6359 2013-05-20 Tom Tromey <tromey@redhat.com>
6360
6361 * python/py-value.c (valpy_get_dynamic_type): Simplify
6362 dynamic_type assignment. Use Py_XINCREF.
6363
6364 2013-05-20 Tom Tromey <tromey@redhat.com>
6365
6366 * python/py-type.c (typy_fields): Unconditionally decref 'r'.
6367
6368 2013-05-20 Tom Tromey <tromey@redhat.com>
6369
6370 * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
6371 (gdbpy_selected_frame): Move object-construction code
6372 out of TRY_CATCH.
6373
6374 2013-05-20 Tom Tromey <tromey@redhat.com>
6375
6376 * python/py-arch.c (gdbpy_initialize_arch): Use
6377 gdb_pymodule_addobject.
6378 * python/py-block.c (gdbpy_initialize_blocks): Use
6379 gdb_pymodule_addobject.
6380 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
6381 gdb_pymodule_addobject.
6382 * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
6383 gdb_pymodule_addobject.
6384 * python/py-event.c (gdbpy_initialize_event_generic): Use
6385 gdb_pymodule_addobject.
6386 * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
6387 gdb_pymodule_addobject.
6388 * python/py-evts.c (add_new_registry): Use
6389 gdb_pymodule_addobject.
6390 (gdbpy_initialize_py_events): Likewise.
6391 * python/py-finishbreakpoint.c
6392 (gdbpy_initialize_finishbreakpoints): Use
6393 gdb_pymodule_addobject.
6394 * python/py-frame.c (gdbpy_initialize_frames): Use
6395 gdb_pymodule_addobject.
6396 * python/py-function.c (gdbpy_initialize_functions): Use
6397 gdb_pymodule_addobject.
6398 * python/py-inferior.c (gdbpy_initialize_inferior): Use
6399 gdb_pymodule_addobject.
6400 * python/py-infthread.c (gdbpy_initialize_thread): Use
6401 gdb_pymodule_addobject.
6402 * python/py-objfile.c (gdbpy_initialize_objfile): Use
6403 gdb_pymodule_addobject.
6404 * python/py-param.c (gdbpy_initialize_parameters): Use
6405 gdb_pymodule_addobject.
6406 * python/py-progspace.c (gdbpy_initialize_pspace): Use
6407 gdb_pymodule_addobject.
6408 * python/py-symbol.c (gdbpy_initialize_symbols): Use
6409 gdb_pymodule_addobject.
6410 * python/py-symtab.c (gdbpy_initialize_symtabs): Use
6411 gdb_pymodule_addobject.
6412 * python/py-type.c (gdbpy_initialize_types): Use
6413 gdb_pymodule_addobject.
6414 * python/py-utils.c (gdb_pymodule_addobject): New function.
6415 * python/py-value.c (gdbpy_initialize_values): Use
6416 gdb_pymodule_addobject.
6417 * python/python-internal.h (gdb_pymodule_addobject): Declare.
6418 * python/python.c (_initialize_python): Use
6419 gdb_pymodule_addobject.
6420
6421 2013-05-20 Tom Tromey <tromey@redhat.com>
6422
6423 * python/py-cmd.c (cmdpy_completer): Use explicit decref.
6424 * python/py-param.c (get_set_value, get_show_value): Use
6425 explicit decrefs.
6426 * python/python.c (start_type_printers, apply_type_printers):
6427 Use explicit decrefs.
6428
6429 2013-05-20 Tom Tromey <tromey@redhat.com>
6430
6431 * python/py-evts.c (gdbpy_initialize_py_events): Don't
6432 incref the module.
6433
6434 2013-05-20 Tom Tromey <tromey@redhat.com>
6435
6436 * python/python.c (gdbpy_run_events): Decref the result
6437 of PyObject_CallObject.
6438
6439 2013-05-20 Tom Tromey <tromey@redhat.com>
6440
6441 * python/py-symtab.c (set_sal): Use
6442 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION. Return -1 on error.
6443 (symtab_and_line_to_sal_object): Update.
6444
6445 2013-05-20 Tom Tromey <tromey@redhat.com>
6446
6447 * python/py-param.c (compute_enum_values): Decref 'item'.
6448
6449 2013-05-20 Tom Tromey <tromey@redhat.com>
6450
6451 * mi/mi-main.c: Include python-internal.h.
6452 (mi_cmd_list_features): Check gdb_python_initialized.
6453 * python/py-inferior.c (python_on_normal_stop, python_on_resume)
6454 (python_inferior_exit, python_new_objfile, add_thread_object)
6455 (delete_thread_object, py_free_inferior): Check
6456 gdb_python_initialized.
6457 * python/py-prettyprint.c (apply_val_pretty_printer): Check
6458 gdb_python_initialized.
6459 * python/py-type.c (save_objfile_types): Check
6460 gdb_python_initialized.
6461 * python/python-internal.h (gdb_python_initialized): Declare.
6462 * python/python.c (ensure_python_env): Throw exception if
6463 Python not initialized.
6464 (before_prompt_hook, source_python_script_for_objfile)
6465 (start_type_printers, apply_type_printers,
6466 free_type_printers): Check gdb_python_initialized.
6467 * varobj.c (varobj_get_display_hint)
6468 (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
6469 (install_new_value_visualizer, varobj_set_visualizer)
6470 (value_get_print_value): Check gdb_python_initialized.
6471
6472 2013-05-20 Tom Tromey <tromey@redhat.com>
6473
6474 * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
6475 Check errors.
6476 * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
6477 * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
6478 Check errors.
6479 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
6480 Check errors.
6481 * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
6482 Check errors.
6483 * python/py-event.c (gdbpy_initialize_event): Return 'int'.
6484 Check errors.
6485 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
6486 init function to return 'int'.
6487 * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
6488 Return 'int'. Check errors.
6489 * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
6490 Check errors.
6491 * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
6492 Return 'int'. Check errors.
6493 * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
6494 Check errors.
6495 * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
6496 Check errors.
6497 * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
6498 Check errors.
6499 * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
6500 Check errors.
6501 * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
6502 Check errors.
6503 * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
6504 Check errors.
6505 * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
6506 Check errors.
6507 * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
6508 Check errors.
6509 * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
6510 Check errors.
6511 * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
6512 Check errors.
6513 * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
6514 Check errors.
6515 * python/py-type.c (gdbpy_initialize_types): Return 'int'.
6516 Check errors.
6517 * python/py-value.c (gdbpy_initialize_values): Return 'int'.
6518 Check errors.
6519 * python/python-internal.h (gdbpy_initialize_auto_load,
6520 gdbpy_initialize_values, gdbpy_initialize_frames,
6521 gdbpy_initialize_symtabs, gdbpy_initialize_commands,
6522 gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
6523 gdbpy_initialize_blocks, gdbpy_initialize_types,
6524 gdbpy_initialize_functions, gdbpy_initialize_pspace,
6525 gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
6526 gdbpy_initialize_finishbreakpoints,
6527 gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
6528 gdbpy_initialize_thread, gdbpy_initialize_inferior,
6529 gdbpy_initialize_eventregistry, gdbpy_initialize_event,
6530 gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
6531 gdbpy_initialize_signal_event,
6532 gdbpy_initialize_breakpoint_event,
6533 gdbpy_initialize_continue_event,
6534 gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
6535 gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
6536 Update. Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
6537 * python/python.c (gdb_python_initialized): New global.
6538 (gdbpy_initialize_events): Return 'int'. Check errors.
6539 (_initialize_python): Check errors. Set
6540 gdb_python_initialized.
6541
6542 2013-05-20 Tom Tromey <tromey@redhat.com>
6543
6544 * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
6545 Decref the reslut of PyObject_CallMethod.
6546
6547 2013-05-20 Tom Tromey <tromey@redhat.com>
6548
6549 * python/py-event.c (gdbpy_initialize_event_generic): Return
6550 early if PyType_Ready fails.
6551
6552 2013-05-20 Tom Tromey <tromey@redhat.com>
6553
6554 * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
6555 as 'default' in the switch.
6556
6557 2013-05-20 Tom Tromey <tromey@redhat.com>
6558
6559 * python/py-inferior.c (gdbpy_inferiors): Update. Hoist
6560 get_addr_from_python calls out of TRY_CATCH.
6561 (infpy_write_memory, infpy_search_memory): Likewise.
6562 * python/py-utils.c (get_addr_from_python): Return negative
6563 value on error. Use TRY_CATCH.
6564 * python/python-internal.h (get_addr_from_python): Use
6565 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
6566
6567 2013-05-20 Tom Tromey <tromey@redhat.com>
6568
6569 * python/py-event.c (evpy_emit_event): Decref the
6570 result of PyObject_CallFunctionObjArgs.
6571
6572 2013-05-20 Tom Tromey <tromey@redhat.com>
6573
6574 * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
6575 Correctly decref.
6576
6577 2013-05-20 Tom Tromey <tromey@redhat.com>
6578
6579 * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
6580
6581 2013-05-20 Tom Tromey <tromey@redhat.com>
6582
6583 * python/py-event.h (gdbpy_initialize_event_generic): Use
6584 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
6585 * python/py-evts.c (add_new_registry): Use
6586 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
6587 * python/python-internal.h
6588 (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
6589
6590 2013-05-20 Tom Tromey <tromey@redhat.com>
6591
6592 * python/py-arch.c (archpy_disassemble): Update.
6593 * python/py-type.c (typy_get_composite, typy_lookup_typename)
6594 (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
6595 * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
6596 * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
6597 macro.
6598 (GDB_PY_HANDLE_EXCEPTION): Update.
6599 (gdbpy_convert_exception): Update. Use CPYCHECKER_SETS_EXCEPTION.
6600
6601 2013-05-20 Tom Tromey <tromey@redhat.com>
6602
6603 * python/python-internal.h (events_object_type): Remove.
6604
6605 2013-05-20 Tom Tromey <tromey@redhat.com>
6606
6607 * python/py-event.h (evpy_emit_event): Use
6608 CPYCHECKER_STEALS_REFERENCE_TO_ARG.
6609 * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
6610 New macro.
6611
6612 2013-05-20 Tom Tromey <tromey@redhat.com>
6613
6614 * py-evtregistry.c (create_event_object): Decref
6615 eventregistry_object if PyList_New fails.
6616
6617 2013-05-20 Tom Tromey <tromey@redhat.com>
6618
6619 * py-cmd.c (gdbpy_string_to_argv): Check result of
6620 PyList_New.
6621
6622 2013-05-20 Tom Tromey <tromey@redhat.com>
6623
6624 * python/python.c (before_prompt_hook): Add cleanup to
6625 decref 'hook'.
6626
6627 2013-05-20 Tom Tromey <tromey@redhat.com>
6628
6629 * python/py-function.c (fnpy_init): Decref result of
6630 PyObject_GetAttrString.
6631
6632 2013-05-20 Tom Tromey <tromey@redhat.com>
6633
6634 * python/py-threadevent.c (get_event_thread): Use
6635 CPYCHECKER_RETURNS_BORROWED_REF.
6636 * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
6637 New define.
6638 (pspace_to_pspace_object, objfile_to_objfile_object)
6639 (find_thread_object): Use it.
6640
6641 2013-05-20 Tom Tromey <tromey@redhat.com>
6642
6643 * python/py-arch.c (arch_object_type): Use
6644 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6645 * python/py-block.c (block_syms_iterator_object_type):
6646 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6647 * python/py-bpevent.c (breakpoint_event_object_type):
6648 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6649 * python/py-cmd.c (cmdpy_object_type): Use
6650 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6651 * python/py-continueevent.c (continue_event_object_type):
6652 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6653 * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
6654 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6655 * python/py-events.h (thread_event_object_type):
6656 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6657 * python/py-evtregistry.c (eventregistry_object_type): Use
6658 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6659 * python/py-exitedevent.c (exited_event_object_type):
6660 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6661 * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
6662 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6663 * python/py-function.c (fnpy_object_type): Use
6664 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6665 * python/py-inferior.c (inferior_object_type, membuf_object_type):
6666 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6667 * python/py-infthread.c (thread_object_type): Use
6668 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6669 * python/py-lazy-string.c (lazy_string_object_type):
6670 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6671 * python/py-newobjfileevent.c (new_objfile_event_object_type):
6672 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6673 * python/py-objfile.c (objfile_object_type): Use
6674 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6675 * python/py-param.c (parmpy_object_type):
6676 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6677 * python/py-progspace.c (pspace_object_type):
6678 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6679 * python/py-signalevent.c (signal_event_object_type):
6680 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6681 * python/py-symtab.c (symtab_object_type, sal_object_type): Use
6682 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6683 * python/py-type.c (type_object_type, field_object_type)
6684 (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6685 * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
6686 define.
6687 (value_object_type, block_object_type, symbol_object_type)
6688 (event_object_type, stop_event_object_type, breakpoint_object_type)
6689 (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
6690
6691 2013-05-20 Andreas Tobler <andreas@fgznet.ch>
6692
6693 * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
6694 (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
6695
6696 2013-05-20 Doug Evans <dje@google.com>
6697
6698 When reading CU, stay in DWO. Be more tolerent of bad debug info.
6699 For Fission.
6700 * dwarf2read.c (struct dwarf2_per_cu_data): New member
6701 reading_dwo_directly.
6702 (struct signatured_type): New member dwo_unit.
6703 (struct die_reader_specs): New member comp_dir.
6704 (create_signatured_type_table_from_index): Use malloc for
6705 all_type_units instead of objfile's obstack.
6706 (create_all_type_units): Ditto.
6707 (fill_in_sig_entry_from_dwo_entry): New function.
6708 (add_type_unit): New function.
6709 (lookup_dwo_signatured_type): New function.
6710 (lookup_dwp_signatured_type): New function.
6711 (lookup_signatured_type): New arg cu. All callers updated.
6712 (init_cu_die_reader): Initialize comp_dir.
6713 (read_cutu_die_from_dwo): New arg stub_comp_dir. All callers updated.
6714 Change assert of matching type signatures to call error on mismatch.
6715 (lookup_dwo_unit): Add assert.
6716 (init_tu_and_read_dwo_dies): New function.
6717 (init_cutu_and_read_dies): Call it.
6718 (build_type_unit_groups): Handle case of no type unit groups created.
6719 (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
6720 (lookup_dwo_cutu): Tweak complaint.
6721 (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
6722 (dwarf2_per_objfile_free): Free all_type_units.
6723
6724 2013-05-20 Joel Brobecker <brobecker@adacore.com>
6725
6726 * windows-nat.c (handle_unload_dll): Add missing empty line.
6727
6728 2013-05-20 Joel Brobecker <brobecker@adacore.com>
6729
6730 * dwarf2read.c (prototyped_function_p): New function.
6731 (read_subroutine_type): Use it.
6732
6733 2013-05-20 Joel Brobecker <brobecker@adacore.com>
6734
6735 * rs6000-aix-tdep.c: De-indent some example code provided
6736 as a comment.
6737
6738 2013-05-17 Edjunior Machado <emachado@linux.vnet.ibm.com>
6739
6740 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
6741 region is ok for a hardware watchpoint using the new ptrace interface
6742 on Power servers.
6743
6744 2013-05-17 Doug Evans <dje@google.com>
6745
6746 * NEWS: Mention new maintenance commands check-symtabs, and
6747 expand-symtabs, and renamed check-psymtabs.
6748 * psymtab.c (maintenance_check_psymtabs): Renamed from
6749 maintenance_check_symtabs. Only process already-expanded symbol
6750 tables.
6751 (_initialize_psymtab): Update.
6752 * symmisc.c (maintenance_check_symtabs): New function.
6753 (maintenance_expand_name_matcher): New function
6754 (maintenance_expand_file_matcher): New function
6755 (maintenance_expand_symtabs): New function.
6756 (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
6757 commands.
6758
6759 2013-05-17 Tom Tromey <tromey@redhat.com>
6760
6761 * python/py-inferior.c (infpy_read_memory): Don't call
6762 PyErr_SetString if PyObject_New fails.
6763 * python/py-frame.c (frame_info_to_frame_object): Don't call
6764 PyErr_SetString if PyObject_New fails.
6765
6766 2013-05-17 Pavel Chupin <pavel.v.chupin@intel.com>
6767
6768 * acinclude.m4: Add check for dlopen in libdl.
6769 * configure.ac: Ditto.
6770 * configure: Regenerate.
6771
6772 2013-05-17 Phil Muldoon <pmuldoon@redhat.com>
6773
6774 * frame.c (frame_stash): Convert to htab.
6775 (frame_addr_hash): New function.
6776 (frame_addr_hash_eq): New function.
6777 (frame_stash_create): Convert function to create
6778 a hash table.
6779 (frame_stash_add): Convert function to add an entry to a hash
6780 table.
6781 (frame_stash_find): Convert function to search the hash table.
6782 (frame_stash_invalidate): Convert function to empty the hash
6783 table.
6784 (get_frame_id): Only add to stash if a frame_id is created.
6785 (_initialize_frame): Call frame_stash_create.
6786
6787 2013-05-16 Yue Lu <hacklu.newborn@gmail.com> (tiny change)
6788
6789 * configure.ac: Ensure MIG is available when building for GNU Hurd
6790 hosts.
6791 * configure: Regenerate.
6792
6793 2013-05-16 Joel Brobecker <brobecker@adacore.com>
6794
6795 * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
6796
6797 2013-05-16 Joel Brobecker <brobecker@adacore.com>
6798
6799 * ada-lang.c (ada_make_symbol_completion_list): Make sure
6800 all cleanups are done before returning from this function.
6801
6802 2013-05-15 Joel Brobecker <brobecker@adacore.com>
6803
6804 * utils.h: #include "exceptions.h".
6805 (enum errors): Remove partial declaration.
6806
6807 2013-05-15 Joel Brobecker <brobecker@adacore.com>
6808
6809 * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
6810 * gdbarch.h, gdbarch.c: Regenerate.
6811 * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
6812 handling.
6813
6814 * rs6000-aix-tdep.h: New file.
6815 * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
6816 * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
6817 "xml-utils.h".
6818 (struct field_info, struct ld_info_desc): New types.
6819 (ld_info32_desc, ld_info64_desc): New static constants.
6820 (struct ld_info): New type.
6821 (rs6000_aix_extract_ld_info): New function.
6822 (rs6000_aix_shared_library_to_xml): Likewise.
6823 (rs6000_aix_ld_info_to_xml): Likewise.
6824 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
6825 (rs6000_aix_init_osabi): Add call to
6826 set_gdbarch_core_xfer_shared_libraries_aix.
6827 * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
6828 Remove "xml-utils.h" include.
6829 (LdInfo): Delete typedef.
6830 (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
6831 Delete macros.
6832 (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
6833 Adjust code accordingly.
6834 (rs6000_core_ldinfo): Delete, folded into
6835 rs6000_aix_core_xfer_shared_libraries_aix.
6836 (rs6000_xfer_shared_library): Delete.
6837 (rs6000_xfer_shared_libraries): Reimplement.
6838
6839 2013-05-15 Markus Metzger <markus.t.metzger@intel.com>
6840
6841 * record.c (record_goto_cmdlist): New.
6842 (cmd_record_goto): Split into this ...
6843 (cmd_record_goto_begin): ... this
6844 (cmd_record_goto_end): ... and this.
6845 (_initialize_record): Change "record goto" to prefix command.
6846 Add commands for "record goto begin" and "record goto end".
6847 Add an alias for "record goto start" to "record goto begin".
6848
6849 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6850
6851 * linespec.c (convert_linespec_to_sals): New comment for
6852 SOURCE_FILENAME assignment.
6853
6854 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6855
6856 * cleanups.c (restore_my_cleanups): Replace gdb_assert by
6857 internal_warning.
6858
6859 2013-05-14 Tom Tromey <tromey@redhat.com>
6860
6861 * eval.c (parse_and_eval_long): Make 'exp' const.
6862 * value.h (parse_and_eval_long): Update.
6863
6864 2013-05-14 Tom Tromey <tromey@redhat.com>
6865
6866 * ui-file.c (gdb_fopen): Make arguments const.
6867 * ui-file.h (gdb_fopen): Make arguments const.
6868
6869 2013-05-14 Tom Tromey <tromey@redhat.com>
6870
6871 * remote.c (remote_set_trace_notes): Make arguments const.
6872 * target.c (update_current_target): Update cast.
6873 * target.h (to_set_trace_notes): Make arguments const.
6874
6875 2013-05-14 Tom Tromey <tromey@redhat.com>
6876
6877 * go32-nat.c (go32_terminal_info): Make 'args' const.
6878 * inferior.h (child_terminal_info): Update.
6879 * inflow.c (child_terminal_info): Make 'args' const.
6880 * target.c (default_terminal_info): Make 'args' const.
6881 (debug_to_terminal_save_ours): Likewise.
6882 * target.h (struct target_ops) <to_terminal_info>: Make argument
6883 const.
6884
6885 2013-05-13 Tom Tromey <tromey@redhat.com>
6886
6887 * gcore.c (create_gcore_bfd): Make 'filename' const.
6888 * gcore.h (create_gcore_bfd): Make 'filename' const.
6889 * record-full.c (record_full_save): Make 'recfilename' const.
6890 * target.c (target_save_record): Make 'filename' const.
6891 * target.h (struct target_ops) <to_save_record>: Make 'filename'
6892 const.
6893 (target_save_record): Likewise.
6894
6895 2013-05-13 Tom Tromey <tromey@redhat.com>
6896
6897 PR gdb/15338:
6898 * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
6899 ranges section has been read.
6900
6901 2013-05-13 Tom Tromey <tromey@redhat.com>
6902
6903 PR exp/15364:
6904 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
6905 STRUCTOP_PTR>: Return a not_lval value for
6906 EVAL_AVOID_SIDE_EFFECTS.
6907 * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
6908 for EVAL_AVOID_SIDE_EFFECTS.
6909
6910 2013-05-13 Joel Brobecker <brobecker@adacore.com>
6911
6912 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
6913 floating point registers to register type before storing
6914 value.
6915 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
6916 Likewise.
6917
6918 2013-05-10 Joel Brobecker <brobecker@adacore.com>
6919 Tom Tromey <tromey@redhat.com>
6920
6921 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
6922 New functions.
6923 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
6924 Declare.
6925 * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
6926 (darwin_ptrace_him): Use unmark_fd_no_cloexec.
6927 * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
6928 (inf_ttrace_prepare): Use mark_fd_no_cloexec.
6929
6930 2013-05-10 Freddie Chopin <freddie_chopin@op.pl>
6931 Tom Tromey <tromey@redhat.com>
6932
6933 PR build/15414:
6934 * configure: Rebuild.
6935 * configure.ac (build_warnings): Do not use -Wformat-nonliteral
6936 with -Wno-format.
6937
6938 2013-05-10 Pedro Alves <palves@redhat.com>
6939
6940 * remote.c (_initialize_remote): Fix spelling of
6941 qXfer:traceframe-info:read packet in packet config command.
6942
6943 2013-05-10 David Taylor <dtaylor@emc.com>
6944
6945 PR remote/15455
6946
6947 * remote.c (remote_trace_set_readonly_regions): Do not overwrite
6948 "QTro" at start of packet.
6949
6950 2013-05-10 Joel Brobecker <brobecker@adacore.com>
6951
6952 * solib-aix.c (solib_aix_relocate_section_addresses):
6953 For the .bss section action, apply the same offset as
6954 the .data section.
6955
6956 2013-05-10 Joel Brobecker <brobecker@adacore.com>
6957
6958 * solib-aix.c (solib_aix_relocate_section_addresses):
6959 Remove FIXME comment.
6960
6961 2013-05-10 Joel Brobecker <brobecker@adacore.com>
6962
6963 PR tdep/15420:
6964 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
6965 New functions, directly copied from sparc-sol-thread.c.
6966 * sparc-sol-thread.c: Delete.
6967 * configure.ac: Remove code handling sparc-solaris-thread.c.
6968 * configure: Regenerate.
6969
6970 2013-05-10 Phil Muldoon <pmuldoon@redhat.com>
6971
6972 * stack.c (backtrace_command_1): Add "no-filters", and Python frame
6973 filter logic.
6974 (backtrace_command): Add "no-filters" option parsing.
6975 (_initialize_stack): Alter help to reflect "no-filters" option.
6976 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
6977 (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
6978 (py-frame.o): Add target
6979 * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
6980 filter files.
6981 * python/python.h: Add new frame filter constants, and flag enum.
6982 (apply_frame_filter): Add definition.
6983 * python/python.c (apply_frame_filter): New non-Python
6984 enabled function.
6985 * python/py-utils.c (py_xdecref): New function.
6986 (make_cleanup_py_xdecref): Ditto.
6987 * python/py-objfile.c: Declare frame_filters dictionary.
6988 (objfpy_dealloc): Add frame_filters dealloc.
6989 (objfpy_new): Initialize frame_filters attribute.
6990 (objfile_to_objfile_object): Ditto.
6991 (objfpy_get_frame_filters): New function.
6992 (objfpy_set_frame_filters): New function.
6993 * python/py-progspace.c: Declare frame_filters dictionary.
6994 (pspy_dealloc): Add frame_filters dealloc.
6995 (pspy_new): Initialize frame_filters attribute.
6996 (pspacee_to_pspace_object): Ditto.
6997 (pspy_get_frame_filters): New function.
6998 (pspy_set_frame_filters): New function.
6999 * python/py-framefilter.c: New file.
7000 * python/lib/gdb/command/frame_filters.py: New file.
7001 * python/lib/gdb/frames.py: New file.
7002 * python/lib/gdb/__init__.py: Initialize global frame_filters
7003 dictionary
7004 * python/lib/gdb/FrameDecorator.py: New file.
7005 * python/lib/gdb/FrameIterator.py: New file.
7006 * mi/mi-cmds.c (mi_cmds): Add frame filters command.
7007 * mi/mi-cmds.h: Declare.
7008 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
7009 --no-frame-filter logic, and Python frame filter logic.
7010 (stack_enable_frame_filters): New function.
7011 (parse_no_frame_option): Ditto.
7012 (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
7013 filter logic.
7014 (mi_cmd_stack_list_locals): Ditto.
7015 (mi_cmd_stack_list_args): Ditto.
7016 (mi_cmd_stack_list_variables): Ditto.
7017 * NEWS: Add frame filter note.
7018
7019 2013-05-09 Doug Evans <dje@google.com>
7020
7021 * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
7022 All callers updated.
7023 (syms_from_objfile): Ditto. Make static.
7024 (symbol_file_add_with_addrs): Renamed from
7025 symbol_file_add_with_addrs_or_offsets. Delete args offsets,
7026 num_offsets. All callers updated.
7027 * symfile.h (syms_from_objfile): Delete.
7028
7029 * symfile.c (decrement_reading_symtab): Add assert.
7030 (increment_reading_symtab): Ditto.
7031
7032 2013-05-09 Joel Brobecker <brobecker@adacore.com>
7033
7034 * source.c (forward_search_command): Replace call to getc
7035 by call to fgetc.
7036 (reverse_search_command): Likewise.
7037
7038 2013-05-08 Doug Evans <dje@google.com>
7039
7040 * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
7041 matching test.
7042
7043 2013-05-08 Joel Brobecker <brobecker@adacore.com>
7044
7045 * sol-thread.c (info_cb): Factorize the code a little.
7046
7047 2013-05-08 Joel Brobecker <brobecker@adacore.com>
7048
7049 * sol-thread.c (info_cb): Rework the output of the "maintenance
7050 info sol-threads" command a bit.
7051
7052 2013-05-08 Joel Brobecker <brobecker@adacore.com>
7053
7054 * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
7055 Replace ti.ti_startfunc by ti.ti_pc.
7056
7057 2013-05-08 Joel Brobecker <brobecker@adacore.com>
7058
7059 * solib-aix.c (solib_aix_free_library_list): New function
7060 for the case where HAVE_LIBEXPAT is not defined.
7061
7062 2013-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
7063
7064 PR breakpoints/15413:
7065 * breakpoint.c (condition_completer): Simplify the code to
7066 disconsider multiple locations of breakpoints when completing the
7067 "condition" command.
7068
7069 2013-05-07 Pierre Muller <muller@sourceware.org>
7070
7071 * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
7072 instead of <sys/wait.h>.
7073
7074 2013-05-07 Pierre Muller <muller@sourceware.org>
7075
7076 * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
7077 trailing new line from warning message.
7078
7079 2013-05-07 Pierre Muller <muller@sourceware.org>
7080
7081 * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
7082 (PC_SOLIB): Change type from ari_deprecate to ari_regression.
7083
7084 2013-05-07 Joel Brobecker <brobecker@adacore.com>
7085
7086 * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
7087 error message (ARI fix).
7088
7089 2013-05-07 Joel Brobecker <brobecker@adacore.com>
7090
7091 * features/library-list-aix.dtd: Replace library-list by
7092 library-list-aix.
7093 * rs6000-nat.c: Replace library-list by library-list-aix
7094 throughout.
7095 * solib-aix.c: Likewise.
7096
7097 2013-05-07 Joel Brobecker <brobecker@adacore.com>
7098
7099 * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
7100 Renames TARGET_OBJECT_AIX_LIBRARIES.
7101 * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
7102 TARGET_OBJECT_LIBRARIES_AIX throughout.
7103 * solib-aix.c: Likwise.
7104
7105 2013-05-07 Yao Qi <yao@codesourcery.com>
7106
7107 * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
7108 (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
7109
7110 2013-05-07 Yao Qi <yao@codesourcery.com>
7111
7112 * solib-dsbt.c (enable_break): Declare.
7113 (dsbt_current_sos): Remove call to enable_break2.
7114 (enable_break2): Rename to enable_break. Set solib breakpoint
7115 on '_dl_debug_state'.
7116 (enable_break): Remove.
7117
7118 2013-05-07 Luis Machado <lgustavo@codesourcery.com>
7119
7120 * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
7121 debug state prior to replicating existing hardware watchpoints or
7122 breakpoints.
7123
7124 2013-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
7125
7126 * gcore.c (gcore_create_callback): Ignore sections with
7127 separate_debug_objfile_backlink != NULL.
7128
7129 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
7130 Andrew Jenner <andrew@codesourcery.com>
7131 Chung-Lin Tang <cltang@codesourcery.com>
7132 Julian Brown <julian@codesourcery.com>
7133
7134 Based on the nios2-elf port from Altera Corporation.
7135
7136 * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
7137 nios2-linux-tdep.o.
7138 (HFILES_NO_SRCDIR): Add nios2-tdep.h.
7139 (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
7140 * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
7141 * nios2-tdep.h: New.
7142 * nios2-tdep.c: New.
7143 * nios2-linux-tdep.c: New.
7144 * features/Makefile (WHICH): Add nios2-linux.
7145 (nios2-linux-expedite): Set.
7146 * features/nios2-cpu.xml: New.
7147 * features/nios2.xml: New.
7148 * features/nios2-linux.xml: New.
7149 * features/nios2.c: New (autogenerated).
7150 * features/nios2-linux.c: New (autogenerated).
7151 * regformats/nios2-linux.dat: New (autogenerated).
7152 * NEWS (Changes since GDB 7.6): Add new Nios II targets
7153 and commands.
7154
7155 2013-05-06 Doug Evans <dje@google.com>
7156
7157 * symfile.c: Whitespace cleanup.
7158
7159 * solist.h (struct target_so_ops): New member clear_so.
7160 * solib-svr4.c (svr4_clear_so): New function.
7161 (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
7162 * solib.c (clear_so): Renamed from free_so_symbols.
7163 All callers updated. Call target clear_so if it exists.
7164
7165 2013-05-06 Tom Tromey <tromey@redhat.com>
7166
7167 * ada-lang.c (ada_value_primitive_packed_val): Don't
7168 call value_incref.
7169 * value.c (set_value_parent): Incref the new parent and decref
7170 the old parent.
7171 (value_copy, value_primitive_field): Use set_value_parent.
7172
7173 2013-05-06 Tom Tromey <tromey@redhat.com>
7174
7175 * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
7176 (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
7177 if needed.
7178 * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
7179 * dwarf2read.c (write_constant_as_bytes)
7180 (dwarf2_fetch_constant_bytes): New functions.
7181
7182 2013-05-06 Tom Tromey <tromey@redhat.com>
7183
7184 * dwarf2read.c (dwarf2_const_value_data): Remove unused
7185 parameters.
7186 (dwarf2_const_value_attr): Update.
7187
7188 2013-05-06 Tom Tromey <tromey@redhat.com>
7189
7190 * somread.c (som_symfile_offsets): Add 'const' to addrs.
7191 * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
7192 * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
7193 Remove declaration.
7194
7195 2013-05-06 Tom Tromey <tromey@redhat.com>
7196
7197 * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
7198 objfile's obstack.
7199
7200 2013-05-06 Doug Evans <dje@google.com>
7201
7202 * dbxread.c (process_one_symbol): Constify section_offsets parameter.
7203 * stabsread.h (process_one_symbol): Update declaration.
7204 * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
7205 * elfread.c (elf_symfile_relocate_probe): Ditto.
7206 * psymtab.c (relocate_psymtabs): Ditto.
7207 * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
7208 (objfile_relocate): Ditto.
7209 * objfiles.h (objfile_relocate): Update declaration.
7210 * symfile.c (relative_addr_info_to_section_offsets): Constify
7211 addrs parameter.
7212 (default_symfile_offsets): Ditto.
7213 (syms_from_objfile_1): Constify offsets parameter.
7214 (syms_from_objfile): Ditto.
7215 (symbol_file_add_with_addrs_or_offsets): Ditto.
7216 (symfile_map_offsets_to_segments): Constify data parameter.
7217 * symfile.h (struct quick_symbol_functions): Constify new_offsets,
7218 delta parameters of member relocate.
7219 (struct sym_probe_fns): Constify new_offsets,
7220 delta parameters of member sym_relocate_probe.
7221 (struct sym_fns): Constify section_addr_info parameter of member
7222 sym_offsets.
7223 (relative_addr_info_to_section_offsets): Update declaration.
7224 (default_symfile_offsets): Ditto.
7225 (syms_from_objfile): Ditto.
7226 (symfile_map_offsets_to_segments): Ditto.
7227
7228 * symfile.c (syms_from_objfile_1): Use correct section count when
7229 objfile->sf == NULL.
7230
7231 2013-05-06 Mike Frysinger <vapier@gentoo.org>
7232
7233 * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
7234
7235 2013-05-06 Doug Evans <dje@google.com>
7236
7237 * psympriv.h (struct partial_symtab): Augment comment for member
7238 section_offsets.
7239
7240 2013-05-06 Joel Brobecker <brobecker@adacore.com>
7241
7242 Reimplement shared library support on ppc-aix...
7243 * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
7244 * features/library-list-aix.dtd: New file.
7245 * solib-aix.h, solib-aix.c: New file.
7246 * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
7247 (rs6000_find_toc_address_hook): Delete.
7248 (rs6000_push_dummy_call): Rewrite code setting the TOC value.
7249 (rs6000_aix_init_osabi): Register solib_aix_so_ops.
7250 * rs6000-nat.c: Remove "xcoffsolib.h" include. Include
7251 "xml-utils.h".
7252 (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
7253 (vmap_symtab, fixup_breakpoints): Delete.
7254 (rs6000_xfer_shared_libraries): New function.
7255 (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
7256 (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
7257 (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
7258 (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
7259 (rs6000_xfer_shared_library): New function.
7260 (find_toc_address): Delete.
7261 (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
7262 * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
7263 * xcoffread.c (record_minimal_symbol): Reloate symbol address
7264 before creating minimal symbol. Adjust function description
7265 accordingly.
7266 (scan_xcoff_symtab): Replace call to
7267 prim_record_minimal_symbol_and_info by call to
7268 record_minimal_symbol.
7269 (xcoff_symfile_offsets): Reimplement mostly as a wrapper
7270 around default_symfile_offsets.
7271 * configure.tgt: Add solib-aix.o to gdb_target_obs for
7272 powerpc-aix targets.
7273 * config/rs6000/nm-rs6000.h: Delete.
7274 * config/powerpc/aix.mh (NAT_FILE): Delete.
7275 (NATDEPFILES): Remove xcoffsolib.o.
7276 * Makefile.in (XMLFILES): Add library-list-aix.dtd.
7277 (ALL_TARGET_OBS): Add solib-aix.o.
7278 (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
7279 config/rs6000/nm-rs6000.h. Add solib-aix.h.
7280 (ALLDEPFILES): Add solib-aix.c. Remove xcoffsolib.c.
7281 * xcoffsolib.h, xcoffsolib.c: Delete.
7282
7283 * solib.c (reload_shared_libraries): Remove reference to
7284 SOLIB_CREATE_INFERIOR_HOOK.
7285 * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
7286 (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
7287 (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
7288 comment.
7289 * corelow.c (deprecated_core_resize_section_table): Delete.
7290 * exec.c: Remove include of xcoffsolib.h".
7291 (map_vmap, vmap): Delete.
7292 (exec_close_1): Remove references to vmap.
7293 (exec_file_attach): Remove vmap handling code, and reference
7294 to DEPRECATED_IBM6000_TARGET.
7295 (bfdsec_to_vmap): Delete.
7296 (exec_files_info): Remove block of code handling VMAP.
7297 * infcmd.c (post_create_inferior): Remove reference to
7298 SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
7299 * infrun.c (follow_exec): Remove reference to
7300 SOLIB_CREATE_INFERIOR_HOOK.
7301 * stack.c (print_frame): Remove reference to PC_SOLIB.
7302 * solib-dsbt.c (dsbt_current_sos): Adjust comment.
7303 (dsbt_relocate_main_executable): Likewise.
7304 * solib-frv.c (frv_current_sos): Likewise.
7305
7306 2013-05-06 Joel Brobecker <brobecker@adacore.com>
7307
7308 * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
7309 to target_write_memory and target_read_memory.
7310
7311 2013-05-06 Joel Brobecker <brobecker@adacore.com>
7312
7313 * darwin-nat.c (darwin_setup_fake_stop_event): New function.
7314 (darwin_attach): Adjust using darwin_setup_fake_stop_event.
7315
7316 2013-05-06 Joel Brobecker <brobecker@adacore.com>
7317
7318 * darwin-nat.c: Replace all "%x" instances in format strings
7319 into "0x%x" throughout.
7320
7321 2013-05-06 Joel Brobecker <brobecker@adacore.com>
7322
7323 * darwin-nat.c (darwin_mourn_inferior): Replace call to
7324 gdb_assert by call to MACH_CHECK_ERROR.
7325 (darwin_attach_pid): Raise an error rather than a failed
7326 assertion when various system calls failed. Report a warning
7327 instead of raising a failed assertion when PREV_NOT is not NULL
7328 after call to mach_port_request_notification.
7329 (darwin_ptrace_me): Raise an error rather than a failed
7330 assertion when read returns nonzero.
7331
7332 2013-05-06 Joel Brobecker <brobecker@adacore.com>
7333
7334 * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
7335
7336 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7337
7338 * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
7339
7340 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7341
7342 * event-top.c (display_gdb_prompt): Call missing do_cleanups.
7343 * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
7344 * symfile.c (symfile_bfd_open): New variable back_to. Do not leave
7345 a stale cleanup. Fix double free of NAME.
7346
7347 2013-05-04 Eli Zaretskii <eliz@gnu.org>
7348
7349 * windows-nat.c (windows_delete_thread): Accept an additional
7350 argument, the thread's exit code, and announce thread death when
7351 print_thread_events is non-zero and we are deleting a thread that
7352 is not the main thread.
7353 (get_windows_debug_event): Pass thread exit code to
7354 windows_delete_thread.
7355
7356 2013-05-03 Kevin Buettner <kevinb@redhat.com>
7357
7358 * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
7359 (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
7360 (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
7361 (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
7362 (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
7363 (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
7364 (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
7365 (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
7366 (gdbarch_tdep): New struct.
7367 (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
7368 E_NUM_REGS.
7369 (v850e3v5_register_name): New function.
7370 (v850_register_type): v850e3v5 vector registers are 64-bits wide.
7371 (v850_use_struct_convention): Add `gdbarch' parameter. Add new
7372 code handling the struct return conventions for the RH850 ABI.
7373 Update all callers.
7374 (v850_eight_byte_align_p): New function.
7375 (v850_push_call_dummy): Push structs by value, not by reference
7376 for the RH850 ABI. Add support for eight byte alignment.
7377 (v850_dbtrap_breakpoint_from_pc): New function.
7378 (v850_gdbarch_init): Add ABI detection code. Register
7379 v850e3v5_register_name for the v850e3v5 architecture. Set the
7380 number of registers for v850e3v5. Register
7381 v850_dbtrap_breakpoint_from_pc as appropriate.
7382 (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
7383
7384 2013-05-03 Doug Evans <dje@google.com>
7385
7386 * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
7387 of bfd_count_sections.
7388 * solib-target.c (solib_target_relocate_section_addresses): Ditto.
7389 * symfile.c (default_symfile_offsets): Ditto.
7390 (syms_from_objfile_1): Ditto. Make dummy addrs list an array of
7391 one entry, not bfd_count_sections entries.
7392
7393 2013-05-03 Kevin Buettner <kevinb@redhat.com>
7394
7395 * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
7396 `save' and `restore' register groups. Don't include SPL
7397 or SPH in these groups.
7398 (rl78_dwarf_reg_to_regnum): Adjust mapping for
7399 RL78_PC_REGNUM. Add mappings for RL78_PSW_REGNUM,
7400 RL78_ES_REGNUM, and RL78_CS_REGNUM.
7401 (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4. Invoke
7402 dwarf2_append_unwinders().
7403
7404 2013-05-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
7405
7406 * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
7407 ignore SIGINT and SIGTRAP in case these internal signals are
7408 caught explicitely.
7409
7410 2013-05-01 Joel Brobecker <brobecker@adacore.com>
7411
7412 * darwin-nat.c (darwin_read_write_inferior): Change types
7413 of parameters rdaddr and wraddr to "gdb_byte *". Change type
7414 of copy_count to "mach_msg_type_number_t".
7415 (darwin_read_dyld_info): Change type of parameter
7416 rdaddr to "gdb_byte *".
7417
7418 2013-05-01 Joel Brobecker <brobecker@adacore.com>
7419
7420 * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
7421 of &info->load_map from "char *" to "gdb_byte *".
7422
7423 2013-05-01 Joel Brobecker <brobecker@adacore.com>
7424
7425 * ia64-tdep.c (ia64_access_fpreg): Change cast of val
7426 from "char *" to "gdb_byte *".
7427 (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
7428
7429 2013-04-30 Doug Evans <dje@google.com>
7430
7431 * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
7432 (init_cutu_and_read_dies): Flag a complaint, not error, for bad
7433 DWO stub. If DWO isn't found, just use stub.
7434 (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
7435
7436 * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
7437 calling init_cutu_and_read_dies.
7438
7439 2013-03-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
7440
7441 * target-descriptions.c (maint_print_c_tdesc_cmd):
7442 Add case to parse structures as register types and
7443 bitfields.
7444
7445 2013-04-30 Walfred Tedeschi <walfred.tedeschi@intel.com>
7446
7447 * MAINTAINERS (Write After Approval): Add myself to the list.
7448
7449 2013-04-30 Joel Brobecker <brobecker@adacore.com>
7450
7451 * sol-thread.c (rw_common): Change type of parameter "buf"
7452 to "gdb_byte *".
7453 (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
7454 rw_common to "gdb_byte *" instead of "char *".
7455
7456 2013-04-30 Joel Brobecker <brobecker@adacore.com>
7457
7458 * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
7459 of local variable msym to const struct bound_minimal_symbol.
7460 Adjust use accordingly.
7461 [ti.ti_state == TD_THR_SLEEP]: Likewise.
7462
7463 2013-04-30 Samuel Thibault <samuel.thibault@gnu.org>
7464
7465 * i386gnu-nat.c (CREG_OFFSET): New macro.
7466 (creg_offset): New array.
7467 (CREG_ADDR): Use creg_offset instead of reg_offset.
7468
7469 2013-04-30 Joel Brobecker <brobecker@adacore.com>
7470
7471 * mep-tdep.c (mep_write_pc): Delete.
7472 (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
7473 Add call to set_gdbarch_pc_regnum.
7474
7475 2013-04-30 Joel Brobecker <brobecker@adacore.com>
7476
7477 * common/filestuff.c: Replace #include <dirent.h> by
7478 #include "gdb_dirent.h".
7479
7480 2013-04-30 Joel Brobecker <brobecker@adacore.com>
7481
7482 * common/filestuff.c: Replace #include <sys/stat.h> by
7483 #include "gdb_stat.h".
7484
7485 2013-04-29 Pierre Muller <muller@sourceware.org>
7486
7487 * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
7488 editCase function rule.
7489 (get_DW_AT_signature_type): Likewise.
7490
7491 2013-04-29 Joel Brobecker <brobecker@adacore.com>
7492
7493 * m32r-tdep.c (m32r_write_pc): Delete.
7494 (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
7495 Add call to set_gdbarch_pc_regnum.
7496
7497 2013-04-29 Pierre Muller <muller@sourceware.org>
7498
7499 * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
7500
7501 2013-04-29 Joel Brobecker <brobecker@adacore.com>
7502
7503 * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
7504
7505 2013-04-28 Yao Qi <yao@codesourcery.com>
7506
7507 * solib-dsbt.c (fetch_loadmap): Re-indent.
7508 (displacement_from_map, enable_break2): Likewise.
7509 (dsbt_relocate_section_addresses): Likewise.
7510
7511 2013-04-26 Joel Brobecker <brobecker@adacore.com>
7512
7513 GDB 7.6 released.
7514
7515 2013-04-25 Andreas Kaufmann <Andreas.Kaufmann@synopsys.com>
7516
7517 PR corefiles/14983:
7518 * dwarf2read.c (process_full_comp_unit): Always create a static
7519 block.
7520
7521 2013-04-25 Hui Zhu <hui@codesourcery.com>
7522
7523 * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
7524 to loc->cmd_bytecode.
7525
7526 2013-04-24 Doug Evans <dje@google.com>
7527
7528 * dwarf2read.c (setup_type_unit_groups): Fix comment.
7529
7530 2013-04-22 Keith Seitz <keiths@redhat.com>
7531
7532 * tracepoint.c (trace_save): Call the writer's start method.
7533
7534 2013-04-24 Muhammad Bilal <mbilal@codesourcery.com>
7535
7536 PR gdb/10462
7537 * cli/cli-decode.c (lookup_command): Show an error if there is no space
7538 before argument.
7539
7540 2013-04-23 Tom Tromey <tromey@redhat.com>
7541
7542 * common/filestuff.c: Check USE_WIN32API before including
7543 sys/socket.h.
7544 (HAVE_F_GETFD): New define.
7545 (mark_cloexec): Check HAVE_F_GETFD.
7546 (gdb_open_cloexec): Change 'mode' to unsigned long.
7547 (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
7548 (gdb_pipe_cloexec): Check HAVE_PIPE.
7549 * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
7550 long.
7551
7552 2013-04-23 Hui Zhu <hui@codesourcery.com>
7553
7554 PR gdb/15293
7555 * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
7556
7557 2013-04-23 Hui Zhu <hui@codesourcery.com>
7558
7559 PR gdb/15165
7560 * breakpoint.c (dprintf_print_recreate): New.
7561 (save_breakpoints): Let it not save dprintf commands.
7562 (initialize_breakpoint_ops): Set dprintf_print_recreate.
7563
7564 2013-04-22 Tom Tromey <tromey@redhat.com>
7565
7566 PR gdb/7912:
7567 * Makefile.in (SFILES): Add filestuff.c
7568 (COMMON_OBS): Add filestuff.o.
7569 (filestuff.o): New target.
7570 * auto-load.c (auto_load_objfile_script_1): Use
7571 gdb_fopen_cloexec.
7572 * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
7573 * cli/cli-cmds.c (shell_escape): Call close_most_fds.
7574 * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
7575 * common/agent.c (gdb_connect_sync_socket): Use
7576 gdb_socket_cloexec.
7577 * common/filestuff.c: New file.
7578 * common/filestuff.h: New file.
7579 * common/linux-osdata.c (linux_common_core_of_thread)
7580 (command_from_pid, commandline_from_pid, print_source_lines)
7581 (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
7582 (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
7583 gdb_fopen_cloexec.
7584 * common/linux-procfs.c (linux_proc_get_int)
7585 (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
7586 * config.in, configure: Rebuild.
7587 * configure.ac: Don't check for sys/socket.h. Check for
7588 fdwalk, pipe2.
7589 * corelow.c (core_open): Use gdb_open_cloexec.
7590 * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
7591 * fork-child.c (fork_inferior): Call close_most_fds.
7592 * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
7593 * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
7594 * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
7595 Use gdb_fopen_cloexec.
7596 (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
7597 gdb_open_cloexec.
7598 (linux_async_pipe): Use gdb_pipe_cloexec.
7599 * remote-fileio.c (remote_fileio_func_open): Use
7600 gdb_open_cloexec.
7601 * remote.c (remote_file_put, remote_file_get): Use
7602 gdb_fopen_cloexec.
7603 * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
7604 close_most_fds.
7605 * ser-tcp.c (net_open): Use gdb_socket_cloexec.
7606 * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
7607 * solib.c (solib_find): Use gdb_open_cloexec.
7608 * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
7609 * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
7610 (tfile_open): Use gdb_open_cloexec.
7611 * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
7612 * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
7613 * xml-support.c (xml_fetch_content_from_file): Use
7614 gdb_fopen_cloexec.
7615 * main.c (captured_main): Call notice_open_fds.
7616
7617 2013-04-22 Edjunior Machado <emachado@linux.vnet.ibm.com>
7618
7619 * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
7620 'char *' to 'gdb_byte *'.
7621 (gdbsim_store_register): Change the type of 'tmp' from 'char' to
7622 'gdb_byte'.
7623
7624 2013-04-22 Yao Qi <yao@codesourcery.com>
7625
7626 * infrun.c: Fix typo in comment.
7627
7628 2013-04-22 Andrew Haley <aph@redhat.com>
7629
7630 * arm-tdep.c (BranchDest): Cast result as "unsigned long",
7631 instead of "long".
7632
7633 2013-04-20 Yao Qi <yao@codesourcery.com>
7634
7635 * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
7636 'char *' to 'gdb_byte *'. Cast the return value of
7637 'bt_ctf_get_char_array' to 'gdb_byte *'.
7638
7639 2013-04-19 Pedro Alves <palves@redhat.com>
7640
7641 * configure.ac (build_warnings): Replace -Wno-pointer-sign with
7642 -Wpointer-sign.
7643 * configure: Regenerate.
7644
7645 2013-04-19 Pedro Alves <palves@redhat.com>
7646
7647 * ser-tcp.c (net_read_prim): Cast second argument to recv to
7648 'void *'.
7649
7650 2013-04-19 Pedro Alves <palves@redhat.com>
7651
7652 * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
7653 Change type of 'myaddr' parameter to gdb_byte pointer.
7654 (monitor_write_memory_longlongs): Likewise. Cast 'myaddr' pointer
7655 to 'long long' pointer instead of to 'unsigned long long'.
7656 (monitor_write_memory_block, monitor_read_memory_single)
7657 (monitor_read_memory): Change type of 'myaddr' parameter to
7658 gdb_byte pointer.
7659
7660 2013-04-19 Pedro Alves <palves@redhat.com>
7661
7662 * record.c (validate_history_size): Make parameter 'setting'
7663 unsigned.
7664
7665 2013-04-19 Pedro Alves <palves@redhat.com>
7666
7667 * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
7668 to 'gdb_byte *'.
7669
7670 2013-04-19 Pedro Alves <palves@redhat.com>
7671
7672 * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
7673 local to int.
7674
7675 2013-04-19 Pedro Alves <palves@redhat.com>
7676
7677 * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
7678 * ada-tasks.c (read_fat_string_value): Likewise.
7679
7680 2013-04-19 Pedro Alves <palves@redhat.com>
7681
7682 * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
7683 unsigned. Pass 'tmp' to safe_read_uleb128 instead of the signed
7684 'offset', and adjust.
7685
7686 2013-04-19 Pedro Alves <palves@redhat.com>
7687
7688 * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
7689 (read_index_from_section): Add cast to 'char *'.
7690
7691 2013-04-19 Pedro Alves <palves@redhat.com>
7692
7693 * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
7694
7695 2013-04-19 Pedro Alves <palves@redhat.com>
7696
7697 * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
7698
7699 2013-04-19 Pedro Alves <palves@redhat.com>
7700
7701 * record-full.c (record_full_get_bookmark): Change local 'ret'
7702 type to char * and add cast to gdb_byte *.
7703 (record_full_goto_bookmark): Handle 'bookmark' argument as a
7704 string.
7705 * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
7706
7707 2013-04-19 Pedro Alves <palves@redhat.com>
7708
7709 * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
7710 * python/py-prettyprint.c (print_string_repr): Change type of
7711 'output' local to char *. Add cast to gdb_byte * in
7712 LA_PRINT_STRING call.
7713 (print_children): Change type of 'output' local to char *.
7714 * python/py-value.c (valpy_string): Add cast to const char * in
7715 PyUnicode_Decode call.
7716
7717 2013-04-19 Pedro Alves <palves@redhat.com>
7718
7719 * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
7720 and change its type to 'const char *'. Adjust.
7721 (mips_send_packet): Add cast to 'char *', and remove cast to
7722 'unsigned char *'.
7723 (mips_receive_packet): Remove cast to 'unsigned char *'.
7724 (mips_load_srec): Use bfd_byte.
7725 (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
7726 (pmon_checkset): Make 'value' parameter unsigned.
7727
7728 2013-04-19 Pedro Alves <palves@redhat.com>
7729
7730 * common/agent.c (agent_run_command): Add cast to gdb_byte *.
7731
7732 2013-04-19 Pedro Alves <palves@redhat.com>
7733
7734 * remote.c (remote_write_bytes_aux, compare_sections_command)
7735 (remote_read_qxfer)
7736 (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
7737 (remote_hostio_readlink, remote_bfd_iovec_pread)
7738 (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
7739 binary buffer, and char when buffer is used as string.
7740 * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
7741 (trace_save, tfile_open, traceframe_walk_blocks)
7742 (tfile_fetch_registers): Likewise.
7743
7744 2013-04-19 Pedro Alves <palves@redhat.com>
7745
7746 * ser-base.c (ser_base_write): Change prototype -- take 'void *'
7747 buffer and size_t size. Adjust.
7748 * ser-base.h (ser_base_write): Adjust.
7749 * ser-go32.c (cnts): Change type to size_t.
7750 (dos_write): Change prototype -- take 'void *'
7751 buffer and size_t size. Adjust.
7752 (dos_info): Print elements of 'cnts' as unsigned long.
7753 * serial.c (serial_write): Likewise.
7754 * serial.h (serial_write): Adjust.
7755 (struct serial_ops) <write>: Change prototype -- take 'void *'
7756 buffer and size_t size. Adjust.
7757
7758 2013-04-19 Pedro Alves <palves@redhat.com>
7759
7760 * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
7761 gdb_byte *.
7762 * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
7763
7764 2013-04-19 Pedro Alves <palves@redhat.com>
7765
7766 * alpha-tdep.c (alpha_extract_return_value): Use
7767 regcache_cooked_read_unsigned to read 'v0'.
7768
7769 2013-04-19 Pedro Alves <palves@redhat.com>
7770
7771 * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
7772 parameters 'at', 'as' and 'offset' to uint32_t.
7773
7774 2013-04-19 Pedro Alves <palves@redhat.com>
7775
7776 * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
7777 'is64' to signed 'int'.
7778
7779 2013-04-19 Pedro Alves <palves@redhat.com>
7780
7781 * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
7782 parameter to int *.
7783
7784 2013-04-19 Pedro Alves <palves@redhat.com>
7785
7786 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
7787 'insnbuf' buffer type to unsigned int[].
7788
7789 2013-04-19 Pedro Alves <palves@redhat.com>
7790
7791 * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
7792
7793 2013-04-19 Pedro Alves <palves@redhat.com>
7794
7795 * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
7796 unsigned long *.
7797
7798 2013-04-19 Pedro Alves <palves@redhat.com>
7799
7800 * alpha-tdep.c (heuristic_fence_post): Change type to int.
7801 (alpha_heuristic_proc_start): Adjust to check -1 instead of
7802 UINT_MAX.
7803 * mips-tdep.c (heuristic_fence_post): Change type to int.
7804 (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
7805
7806 2013-04-19 Pedro Alves <palves@redhat.com>
7807
7808 * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
7809 (struct gdbarch_tdep) <cris_version>: Make unsigned.
7810 (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
7811
7812 2013-04-19 Pedro Alves <palves@redhat.com>
7813
7814 * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'. Use
7815 it to get a string view of the byte buffer.
7816 * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
7817 type to gdb_byte *. Adjust.
7818 * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
7819 Change local to char *.
7820 * solib-darwin.c (find_program_interpreter): Change return type to
7821 char *. Adjust.
7822 (darwin_solib_get_all_image_info_addr_at_init): Adjust.
7823 * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
7824 * solib-frv.c (enable_break2): Change local 'buf' to char *.
7825 * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
7826 * solib-svr4.c (find_program_interpreter): Change return type to
7827 char *. Adjust.
7828 (enable_break): Change local 'interp_name' to char *.
7829 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
7830 * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
7831 (spu_pseudo_register_write_spu): Use char for string buffer.
7832 Adjust.
7833 (info_spu_event_command, info_spu_signal_command): Add casts to
7834 'char *'.
7835
7836 2013-04-19 Pedro Alves <palves@redhat.com>
7837
7838 * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
7839 gdb_byte[].
7840 (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
7841 * ada-lang.c (ada_value_assign): Use gdb_byte.
7842 * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
7843 (alphanbsd_sigtramp_offset): Use gdb_byte.
7844 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
7845 (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
7846 (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
7847 (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
7848 (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
7849 * arm-tdep.c (arm_stub_unwind_sniffer)
7850 (arm_displaced_init_closure): Use gdb_byte.
7851 (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
7852 (arm_default_thumb_le_breakpoint)
7853 (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
7854 * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
7855 thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
7856 * arm-wince-tdep.c (arm_wince_le_breakpoint)
7857 (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
7858 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
7859 (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
7860 (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
7861 * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
7862 (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
7863 * cris-tdep.c (push_stack_item, cris_push_dummy_call)
7864 (cris_store_return_value, cris_extract_return_value): Use
7865 gdb_byte.
7866 (constraint): Change type of parameter to char * from signed
7867 char*. Use gdb_byte.
7868 * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
7869 of local buffer to gdb_byte *.
7870 * dwarf2read.c (read_index_from_section): Use gdb_byte.
7871 (create_dwp_hash_table): Change type of locals to gdb_byte *.
7872 (add_address_entry): Change type of local buffer to gdb_byte[].
7873 * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
7874 (frv_push_dummy_call): Use gdb_byte.
7875 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
7876 (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
7877 (hppa_hpux_supply_save_state): Use gdb_byte.
7878 * hppa-tdep.c (hppa32_push_dummy_call)
7879 (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
7880 * ia64-tdep.c (extract_bit_field, replace_bit_field)
7881 (slotN_contents, replace_slotN_contents): Change type of parameter
7882 to gdb_byte *.
7883 (fetch_instruction, ia64_pseudo_register_write)
7884 (ia64_register_to_value, ia64_value_to_register)
7885 (ia64_extract_return_value, ia64_store_return_value)
7886 (ia64_push_dummy_call): Use gdb_byte.
7887 * m32c-tdep.c (m32c_return_value): Remove cast.
7888 * m68hc11-tdep.c (m68hc11_pseudo_register_write)
7889 (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
7890 gdb_byte.
7891 * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
7892 * mn10300-tdep.c (mn10300_store_return_value)
7893 (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
7894 gdb_byte.
7895 * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
7896 (moxie_process_record): Remove casts.
7897 * ppc-ravenscar-thread.c (supply_register_at_address)
7898 (ppc_ravenscar_generic_store_registers): Use gdb_byte.
7899 * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
7900 * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
7901 * remote-mips.c (mips_xfer_memory): Use gdb_byte.
7902 * remote.c (compare_sections_command): Use gdb_byte.
7903 * score-tdep.c (score7_free_memblock): Change type of parameter to
7904 gdb_byte *.
7905 * sh-tdep.c (sh_justify_value_in_reg): Change return type to
7906 gdb_byte *. Use gdb_byte.
7907 (sh_push_dummy_call_fpu): Use gdb_byte.
7908 (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
7909 (sh_store_return_value_nofpu, sh_store_return_value_fpu)
7910 (sh_register_convert_to_virtual, sh_register_convert_to_raw):
7911 Change parameter type to 'gdb_byte *'. Use gdb_byte.
7912 (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
7913 * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
7914 (sh64_store_return_value, sh64_register_convert_to_virtual):
7915 Change parameter type to 'gdb_byte *'. Use gdb_byte.
7916 (sh64_pseudo_register_write): Use gdb_byte.
7917 * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
7918 * solib-irix.c (fetch_lm_info): Likewise. Use gdb_byte for byte
7919 buffer.
7920 (irix_current_sos): Use gdb_byte.
7921 * solib-som.c (som_current_sos): Use gdb_byte.
7922 * sparc-ravenscar-thread.c (supply_register_at_address)
7923 (sparc_ravenscar_generic_store_registers): Use gdb_byte.
7924 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
7925 * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
7926 * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
7927 'gdb_byte *'.
7928 * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
7929 'gdb_byte *'.
7930 * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
7931 * xstormy16-tdep.c (xstormy16_extract_return_value)
7932 (xstormy16_store_return_value): Change parameter type to
7933 'gdb_byte *'. Adjust.
7934 (xstormy16_push_dummy_call): Use gdb_byte.
7935 * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
7936 (call0_analyze_prologue, execute_code): Use gdb_byte.
7937
7938 2013-04-19 Vladimir Kargov <kargov@gmail.com>
7939 Pedro Alves <palves@redhat.com>
7940
7941 * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
7942 value contents.
7943
7944 2013-04-17 Doug Evans <dje@google.com>
7945
7946 * dwarf2read.c (struct signatured_type): New member type.
7947 (struct attribute): Replace member signatured_type with signature.
7948 (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
7949 (read_call_site_scope): Call follow_die_ref instead of
7950 follow_die_ref_or_sig.
7951 (read_structure_type): Rewrite handling of signatured types.
7952 (read_enumeration_type): Ditto.
7953 (read_attribute_value): Update.
7954 (build_error_marker_type): New function.
7955 (lookup_die_type): Add assert. Rewrite handling of signatured types.
7956 Don't call error for bad types, just build an error marker type.
7957 (dump_die_shallow): Update.
7958 (follow_die_sig_1): Renamed from follow_die_sig.
7959 Don't call error for bad types, instead return NULL.
7960 (follow_die_sig): New function.
7961 (get_signatured_type, get_DW_AT_signature_type): New functions.
7962
7963 2013-04-17 Yufeng Zhang <yufeng.zhang@arm.com>
7964
7965 * aarch64-tdep.c (aarch64_write_pc): Removed.
7966 (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
7967 function.
7968
7969 2013-04-17 Yao Qi <yao@codesourcery.com>
7970
7971 * top.c (print_gdb_configuration): Print configure-time
7972 parameter on using libbabeltrace or not.
7973
7974 2013-04-16 Pedro Alves <palves@redhat.com>
7975
7976 * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
7977
7978 2013-04-16 Pedro Alves <palves@redhat.com>
7979
7980 * common/glibc_thread_db.h: Update from upstream glibc
7981 (git 568035b7874a099087b77f7bba3e36a1173787b0).
7982
7983 2013-04-16 Pedro Alves <palves@redhat.com>
7984
7985 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
7986 * common/glibc_thread_db.h: ... this new file ...
7987 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
7988
7989 2013-04-16 Will Newton <will.newton@gmail.com>
7990 Pedro Alves <palves@redhat.com>
7991
7992 PR build/11881
7993
7994 * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
7995 (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
7996 HAVE_THREAD_DB_H.
7997
7998 2013-04-16 Pedro Alves <palves@redhat.com>
7999 Eli Zaretskii <eliz@gnu.org>
8000
8001 * NEWS: Mention "set foo unlimited".
8002
8003 2013-04-15 Doug Evans <dje@google.com>
8004
8005 * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
8006 (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
8007 (create_dwo_cu_reader): Renamed from
8008 create_dwo_debug_info_hash_table_reader.
8009 (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
8010 Remove support for multiple CUs in a DWO file.
8011 (open_and_init_dwo_file, lookup_dwo_cutu): Update.
8012
8013 * dwarf2read.c (create_debug_types_hash_table): Use hex_string
8014 instead of phex.
8015 (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
8016 (create_dwo_in_dwp): Ditto.
8017
8018 2013-04-15 Tom Tromey <tromey@redhat.com>
8019
8020 * NEWS: Move recent entries into "since 7.6" section.
8021
8022 2013-04-15 Tom Tromey <tromey@redhat.com>
8023
8024 PR c++/13588:
8025 * NEWS: Update.
8026 * break-catch-throw.c (struct exception_catchpoint)
8027 <exception_rx, pattern>: New fields.
8028 (fetch_probe_arguments, dtor_exception_catchpoint)
8029 (check_status_exception_catchpoint)
8030 (print_one_detail_exception_catchpoint): New functions.
8031 (handle_gnu_v3_exceptions): Add "except_rx" argument.
8032 Compile regular expression if needed.
8033 (extract_exception_regexp): New function.
8034 (catch_exception_command_1): Use extract_exception_regexp.
8035 (compute_exception): Use fetch_probe_arguments.
8036 (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
8037 and check_status fields.
8038 * cp-abi.c (cplus_typename_from_type_info): New function.
8039 * cp-abi.h (cplus_typename_from_type_info): Declare.
8040 (struct cp_abi_ops) <get_typename_from_type_info>: New field.
8041 * gdb_regex.h (compile_rx_or_error): Declare.
8042 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
8043 comment.
8044 (init_gnuv3_ops): Set get_type_from_type_info field.
8045 * probe.c (compile_rx_or_error): Move...
8046 * utils.c (compile_rx_or_error): ... here.
8047
8048 2013-04-15 Tom Tromey <tromey@redhat.com>
8049
8050 PR c++/15176:
8051 * NEWS: Update.
8052 * break-catch-throw.c (compute_exception): New function.
8053 (exception_funcs): New global.
8054 (_initialize_break_catch_throw): Create $_exception.
8055 * cp-abi.c (cplus_type_from_type_info): New function.
8056 * cp-abi.h (cplus_type_from_type_info): Declare.
8057 (struct cp_abi_ops) <get_type_from_type_info>: New field.
8058 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
8059 (gnuv3_get_type_from_type_info): New functions.
8060 (init_gnuv3_ops): Set get_type_from_type_info ABI field.
8061
8062 2013-04-15 Tom Tromey <tromey@redhat.com>
8063
8064 * break-catch-throw.c (struct exception_names): New.
8065 (exception_functions): Change type.
8066 (re_set_exception_catchpoint): Look for SDT probes.
8067
8068 2013-04-15 Tom Tromey <tromey@redhat.com>
8069
8070 PR c++/10119:
8071 * break-catch-throw.c (exception_functions): New global.
8072 (gnu_v3_exception_catchpoint_ops): Move earlier.
8073 (struct exception_catchpoint): New.
8074 (classify_exception_breakpoint): Rewrite.
8075 (re_set_exception_catchpoint): New function.
8076 (handle_gnu_v3_exceptions): Return void. Use init_catchpoint.
8077 Allocate a struct exception_catchpoint.
8078 (catch_exception_command_1): Update.
8079 (initialize_throw_catchpoint_ops): Set 're_set' method.
8080
8081 2013-04-15 Tom Tromey <tromey@redhat.com>
8082
8083 * Makefile.in (SFILES): Add break-catch-throw.c
8084 (COMMON_OBS): Add break-catch-throw.o.
8085 * break-catch-throw.c: New file.
8086 * breakpoint.c: Move exception-catching code to new file.
8087 (ep_parse_optional_if_clause): No longer static.
8088 * breakpoint.h (ep_parse_optional_if_clause): Declare.
8089
8090 2013-04-15 Tom Tromey <tromey@redhat.com>
8091
8092 PR c++/9065:
8093 * NEWS: Update.
8094 * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
8095 * c-exp.y (TYPEID): New token.
8096 (exp): Add new TYPEID productions.
8097 (ident_tokens): Add "typeid".
8098 * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
8099 * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
8100 (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
8101 * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
8102 * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
8103 case.
8104 * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
8105 (build_std_type_info_type, gnuv3_get_typeid_type)
8106 (gnuv3_get_typeid): New functions.
8107 (init_gnuv3_ops): Initialize std_type_info_gdbarch_data. Set
8108 new fields on ABI object.
8109 * parse.c (operator_length_standard) <OP_TYPEID>: New case.
8110 * std-operator.def (OP_TYPEID): New.
8111
8112 2013-04-15 Tom Tromey <tromey@redhat.com>
8113
8114 * elfread.c (elf_symtab_read): Install versioned symbol under
8115 unversioned name as well.
8116
8117 2013-04-15 Tom Tromey <tromey@redhat.com>
8118
8119 PR c++/11990:
8120 * c-lang.c (cplus_language_defn): Use gdb_demangle.
8121 * c-typeprint.c (c_type_print_base): Use gdb_demangle.
8122 * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
8123 (gdb_demangle): New function.
8124 * cp-support.h (gdb_demangle): Declare.
8125 * dwarf2read.c (dwarf2_physname, fixup_partial_die)
8126 (dwarf2_name): Use gdb_demangle.
8127 * gdbtypes.c (check_stub_method): Use gdb_demangle.
8128 * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
8129 suffixes from name.
8130 (gnuv3_print_method_ptr): Use gdb_demangle.
8131 * jv-lang.c (java_demangle): Use gdb_demangle.
8132 * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
8133 * language.c (unk_lang_demangle): Use gdb_demangle.
8134 * symtab.c (symbol_find_demangled_name)
8135 (demangle_for_lookup): Use gdb_demangle.
8136
8137 2013-04-15 Tom Tromey <tromey@redhat.com>
8138
8139 PR c++/12824:
8140 * NEWS: Update.
8141 * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
8142 New constant.
8143 (classify_exception_breakpoint): New function.
8144 (print_it_exception_catchpoint, print_one_exception_catchpoint)
8145 (print_mention_exception_catchpoint)
8146 (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
8147 (catch_exception_command_1): Handle "rethrow" catchpoint.
8148 (catch_rethrow_command): New function.
8149 (_initialize_breakpoint): Add "catch rethrow" command.
8150
8151 2013-04-15 Pierre Muller <muller@sourceware.org>
8152
8153 * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
8154 set_gdbarch_write_pc as deprecated anymore.
8155
8156 2013-04-15 Joel Brobecker <brobecker@adacore.com>
8157
8158 * spu-tdep.c (spu_write_pc): Add empty line after local variable
8159 declarations.
8160
8161 2013-04-13 Yao Qi <yao@codesourcery.com>
8162
8163 * ctf.c (_initialize_ctf): Include "completer.h".
8164 Call add_target_with_completer instead of add_target.
8165
8166 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
8167
8168 Fix GDB regression related to PR binutils/14813.
8169 * jit.c (mem_bfd_iovec_close): Return 0 for success.
8170 * minidebug.c (lzma_close): Add return value comment.
8171 * remote.c (remote_bfd_iovec_close): Return 0 for success.
8172 * solib-spu.c (spu_bfd_iovec_close): Likewise.
8173 * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
8174
8175 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
8176
8177 * config.in: Regenerate.
8178
8179 2013-04-12 Tom Tromey <tromey@redhat.com>
8180
8181 * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
8182 const.
8183 * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
8184 (struct die_reader_specs) <buffer>: Likewise.
8185 (die_reader_func_ftype): Make 'info_ptr' const.
8186 (struct line_header) <include_dirs, statement_program_start,
8187 statement_program_end>: Now const.
8188 (struct file_entry) <name>: Likewise.
8189 (struct partial_die_info) <sibling>: Likewise.
8190 (struct dwarf_block) <data>: Likewise.
8191 (dwarf2_read_section): Remove cast.
8192 (dwarf2_get_section_info): Make 'bufp' const.
8193 (read_index_from_section): Constify.
8194 (dw2_get_file_names_reader): Make 'info_ptr' const.
8195 (dw2_get_primary_filename_reader): Likewise.
8196 (read_comp_unit_head): Make 'info_ptr' and return type const.
8197 (read_and_check_comp_unit_head, read_and_check_type_unit_head):
8198 Likewise.
8199 (read_abbrev_offset): Constify.
8200 (dwarf2_create_include_psymtab): Make 'name' const.
8201 (create_debug_types_hash_table): Update.
8202 (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
8203 (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
8204 Constify.
8205 (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
8206 (load_partial_comp_unit_reader): Make 'info_ptr' const.
8207 (read_comp_units_from_section): Constify.
8208 (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
8209 (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
8210 const.
8211 (dwarf2_compute_name, setup_type_unit_groups): Constify.
8212 (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
8213 (create_dwp_hash_table, dwarf2_ranges_read)
8214 (dwarf2_record_block_ranges): Constify.
8215 (read_die_and_children, read_die_and_siblings_1)
8216 (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
8217 const.
8218 (read_full_die_1, read_full_die): Make 'info_ptr' const.
8219 (abbrev_table_read_table): Constify.
8220 (load_partial_dies): Make 'info_ptr' const.
8221 (read_partial_die, read_attribute_value, read_attribute): Make
8222 'info_ptr' and return type const.
8223 (read_address, read_initial_length)
8224 (read_checked_initial_length_and_offset, read_offset)
8225 (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
8226 const.
8227 (read_direct_string): Make 'buf' and return type const.
8228 (read_indirect_string_at_offset, read_indirect_string_from_dwz)
8229 (read_indirect_string): Make return type const.
8230 (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
8231 (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
8232 'info_ptr' const.
8233 (read_str_index): Make return type const.
8234 (add_include_dir): Make 'include_dir' const.
8235 (add_file_name): Make 'name' const.
8236 (dwarf_decode_line_header): Constify.
8237 (psymtab_include_file_name): Make return type const.
8238 (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
8239 (dwarf2_start_subfile): Make 'filename' const.
8240 (dwarf2_const_value_attr): Make 'bytes' const.
8241 (read_signatured_type_reader): Make 'info_ptr' const.
8242 (decode_locdesc): Constify.
8243 (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
8244 const.
8245 (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
8246 'mac_end', and return type const.
8247 (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
8248 (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
8249 type const.
8250 (per_cu_header_read_in): Constify.
8251 * symfile.h (dwarf2_get_section_info): Update.
8252
8253 2013-04-12 Tom Tromey <tromey@redhat.com>
8254
8255 * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
8256
8257 2013-04-12 Eli Zaretskii <eliz@gnu.org>
8258
8259 * NEWS: Mention "show configuration", --configuration.
8260 * top.c (print_gdb_configuration): New function, displays the
8261 details about GDB configure-time parameters.
8262 (print_gdb_version): Mention "show configuration".
8263 * cli/cli-cmds.c (show_configuration): New function.
8264 (_initialize_cli_cmds): Add the "show configuration" command.
8265 * main.c (captured_main) <print_configuration>: New static var.
8266 <long_options>: Use it.
8267 If --configuration was given, call print_gdb_configuration.
8268
8269 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8270 Pedro Alves <palves@redhat.com>
8271
8272 * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
8273 (generated_files): Add gcore.
8274 (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
8275 HAVE_NATIVE_GCORE_HOST.
8276 (gcore): New.
8277 * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
8278 * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
8279 config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
8280 config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
8281 config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
8282 Add HAVE_NATIVE_GCORE_HOST.
8283 * configure: Regenerate.
8284 * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
8285 New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME. New
8286 AC_CONFIG_FILES for gcore.
8287 * configure.tgt: Add gdb_have_gcore to the initial comment. Set
8288 gdb_have_gcore.
8289 * gdb_gcore.sh: Rename to ...
8290 * gcore.in: ... here. Remove gcore.sh comment. Use GDB_TRANSFORM_NAME
8291 and GCORE_TRANSFORM_NAME substitutions.
8292
8293 Fix parsing tabs in ${gdb_target_obs}.
8294 * configure.tgt (gdb_have_gcore): Replace case with for and if.
8295
8296 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8297
8298 * remote.c (unpush_and_perror): Add output message final dot.
8299
8300 2013-04-11 Yao Qi <yao@codesourcery.com>
8301
8302 * tracepoint.c (tfile_interp_line): Fit parameters line and
8303 utpp in one line.
8304
8305 2013-04-10 Joel Brobecker <brobecker@adacore.com>
8306
8307 * solib.c (solib_map_sections): Remove code overwriting
8308 SO->SO_NAME with the bfd's filename.
8309
8310 2013-04-10 Pedro Alves <palves@redhat.com>
8311
8312 * cli/cli-decode.c (integer_unlimited_completer): New function.
8313 (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
8314 (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
8315 completer.
8316 * cli/cli-setshow.c: Include "cli/cli-utils.h".
8317 (is_unlimited_literal): New function.
8318 (do_set_command): Handle literal "unlimited" arguments.
8319 * frame.c (_initialize_frame) <set backtrace limit>: Document
8320 "unlimited".
8321 * printcmd.c (_initialize_printcmd) <set print
8322 max-symbolic-offset>: Add help text.
8323 * record-full.c (_initialize_record_full) <set record full
8324 insn-number-max>: Likewise.
8325 * record.c (_initialize_record) <set record
8326 instruction-history-size, set record function-call-history-size>:
8327 Add help text.
8328 * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
8329 help text.
8330 * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
8331 Likewise.
8332 * source.c (_initialize_source) <set listsize>: Add help text.
8333 * utils.c (initialize_utils) <set height, set width>: Likewise.
8334 <set pagination>: Mention "set height unlimited".
8335 * valprint.c (_initialize_valprint) <set print elements, set print
8336 repeats>: Document "unlimited".
8337
8338 2013-04-10 Pedro Alves <palves@redhat.com>
8339
8340 * cli/cli-cmds.c (quit_command): Call query_if_trace_running
8341 instead of disconnect_tracing.
8342 * infcmd.c (detach_command, disconnect_command): Call
8343 query_if_trace_running. Adjust.
8344 * top.c: Include "tracepoint.h".
8345 (quit_target): Delete. Contents moved ...
8346 (quit_force): ... here. Wrap each stage of teardown in
8347 TRY_CATCH. Call disconnect_tracing before detaching.
8348
8349 2013-04-10 Hui Zhu <hui@codesourcery.com>
8350 Yao Qi <yao@codesourcery.com>
8351
8352 * configure.ac: Check libbabeltrace is installed.
8353 * config.in: Regenerate.
8354 * configure: Regenerate.
8355 * Makefile.in (LIBBABELTRACE): New.
8356 (CLIBS): Add LIBBABELTRACE.
8357 * ctf.c: Include "exec.h".
8358 (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
8359 (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
8360 (ctf_save_metadata_header): Define new type aliases in
8361 metadata.
8362 (ctf_write_header): Define event type "tsv_def" and "tp_def"
8363 in metadata. Start a new faked packet for trace status.
8364 (ctf_write_status): Write trace status to CTF.
8365 (ctf_write_uploaded_tsv): Write TSV to CTF.
8366 (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
8367 (ctf_write_definition_end): End the faked packet.
8368
8369 (ctx, ctf_iter, trace_dirname): New.
8370 (start_pos): New variable.
8371 (ctf_destroy, ctf_open_dir, ctf_open): New.
8372 (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
8373 macros.
8374 (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
8375 (ctf_fetch_registers, ctf_xfer_partial): New.
8376 (ctf_get_trace_state_variable_value): New.
8377 (ctf_get_tpnum_from_frame_event): New.
8378 (ctf_get_traceframe_address): New.
8379 (ctf_trace_find, ctf_has_stack): New.
8380 (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
8381 (ctf_get_trace_status, ctf_read_status): New.
8382 (_initialize_ctf): New.
8383 * tracepoint.c (get_tracepoint_number): New
8384 (get_uploaded_tsv): Remove 'static'.
8385 (struct traceframe_info, trace_regblock_size): Move it to ...
8386 * tracepoint.h: ... here.
8387 (get_tracepoint_number): Declare it.
8388 (get_uploaded_tsv): Declare it.
8389
8390 * NEWS: Mention new configure option.
8391
8392 2013-04-10 Pedro Alves <palves@redhat.com>
8393 Hui Zhu <hui@codesourcery.com>
8394
8395 * breakpoint.c (dprintf_re_set): New.
8396 (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
8397 to dprintf_re_set.
8398
8399 2013-04-09 Joel Brobecker <brobecker@adacore.com>
8400
8401 * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
8402 Remove solib-svr4.o from the list.
8403
8404 2013-04-09 Joel Brobecker <brobecker@adacore.com>
8405
8406 * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
8407 Use gdb_assert_not_reached instead of invalid boolean expression.
8408
8409 2013-04-09 Pedro Alves <palves@redhat.com>
8410
8411 * remote.c (unpush_and_perror): New function.
8412 (readchar, remote_serial_write): Use it.
8413
8414 2013-04-09 Markus Metzger <markus.t.metzger@intel.com>
8415
8416 * NEWS: Mention new btrace RSP packets.
8417
8418 2013-04-08 Tom Tromey <tromey@redhat.com>
8419
8420 * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
8421 long.
8422
8423 2013-04-08 Tom Tromey <tromey@redhat.com>
8424
8425 * maint.c (print_bfd_section_info): Print the section index.
8426 * symmisc.c (dump_msymbols): Print the section index.
8427
8428 2013-04-08 Tom Tromey <tromey@redhat.com>
8429
8430 PR symtab/8424:
8431 * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
8432 SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
8433 * breakpoint.c (resolve_sal_pc): Update.
8434 * elfread.c (elf_gnu_ifunc_record_cache): Update.
8435 * findvar.c (struct minsym_lookup_data) <objfile>: New field.
8436 (minsym_lookup_iterator_cb): Use it.
8437 (default_read_var_value): Update.
8438 * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
8439 Update.
8440 * infcmd.c (jump_command): Update.
8441 * linespec.c (minsym_found): Update.
8442 * maint.c (maintenance_translate_address): Update.
8443 * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
8444 (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
8445 * parse.c (write_exp_msymbol): Update.
8446 * printcmd.c (address_info): Update.
8447 * psymtab.c (find_pc_sect_psymbol): Update.
8448 (fixup_psymbol_section): Check SYMBOL_SECTION, not
8449 SYMBOL_OBJ_SECTION.
8450 (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
8451 Don't initialize SYMBOL_OBJ_SECTION.
8452 * spu-tdep.c (spu_catch_start): Update.
8453 * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
8454 * symmisc.c (dump_msymbols, print_symbol): Update.
8455 * symtab.c (fixup_section): Don't set 'obj_section'. Change
8456 how fallback section is computed.
8457 (fixup_symbol_section): Update.
8458 (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
8459 Update.
8460 (allocate_symbol, initialize_symbol, allocate_template_symbol):
8461 Initialize SYMBOL_SECTION.
8462 * symtab.h (struct general_symbol_info) <section>: Update comment.
8463 <obj_section>: Remove.
8464 (SYMBOL_OBJ_SECTION): Add 'objfile' argument. Rewrite.
8465 (SYMBOL_OBJFILE): New macro.
8466
8467 2013-04-08 Tom Tromey <tromey@redhat.com>
8468
8469 * coffread.c (record_minimal_symbol): Update.
8470 * dbxread.c (record_minimal_symbol): Update.
8471 * elfread.c (record_minimal_symbol): Update.
8472 * machoread.c (macho_symtab_add_minsym): Update.
8473 * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
8474 Update.
8475 * minsyms.c (prim_record_minimal_symbol): Update.
8476 (prim_record_minimal_symbol_full): Remove 'bfd_section'
8477 argument.
8478 (prim_record_minimal_symbol_and_info): Likewise.
8479 * minsyms.h (prim_record_minimal_symbol_full)
8480 (prim_record_minimal_symbol_and_info): Update.
8481 * symtab.c (allocate_symbol, initialize_symbol)
8482 (allocate_template_symbol): Initialize SYMBOL_SECTION.
8483 * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
8484 Update.
8485
8486 2013-04-08 Tom Tromey <tromey@redhat.com>
8487
8488 PR symtab/8423:
8489 * solib-som.c (som_solib_section_offsets): Use BFD section
8490 indices. Set offsets for all sections.
8491 * somread.c (som_symtab_read): Compute BFD section for
8492 symbol. Use prim_record_minimal_symbol_and_info.
8493 (som_symfile_read): Fix comment.
8494 (struct find_section_offset_arg): New.
8495 (find_section_offset, set_section_index): New functions.
8496 (som_symfile_offsets): Use set_section_index to compute
8497 section indices.
8498
8499 2013-04-08 Tom Tromey <tromey@redhat.com>
8500
8501 * coffread.c (cs_to_section): Use gdb_bfd_section_index.
8502 * elfread.c (record_minimal_symbol, elf_symtab_read): Use
8503 gdb_bfd_section_index.
8504 * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
8505 New functions.
8506 * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
8507 Declare.
8508 * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
8509 Update.
8510 * objfiles.c (add_to_objfile_sections_full): New function.
8511 (add_to_objfile_sections): Use it.
8512 (build_section_table): Rewrite.
8513 (objfile_relocate1): Use gdb_bfd_section_index. Update.
8514 * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
8515 (struct objfile) <sections>: Update comment.
8516 (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
8517 is NULL.
8518 (ALL_OBJSECTIONS): Use it.
8519 * solib-dsbt.c (dsbt_relocate_main_executable): Update.
8520 * solib-frv.c (frv_relocate_main_executable): Update.
8521 * solib-target.c (solib_target_relocate_section_addresses):
8522 Use gdb_bfd_section_index.
8523 * symfile.c (build_section_addr_info_from_section_table):
8524 Use gdb_bfd_section_index.
8525 (build_section_addr_info_from_bfd, place_section): Likewise.
8526 * symtab.c (fixup_section): Update.
8527 * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
8528
8529 2013-04-08 Tom Tromey <tromey@redhat.com>
8530
8531 * minsyms.h (struct bound_minimal_symbol): New.
8532 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
8533 Remove objfile argument.
8534 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
8535 Return bound_minimal_symbol.
8536 * minsyms.c (lookup_minimal_symbol_by_pc_1)
8537 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
8538 Return bound_minimal_symbol.
8539 (in_gnu_ifunc_stub): Update.
8540 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
8541 Remove 'objfile_p' argument.
8542 (lookup_solib_trampoline_symbol_by_pc): Update.
8543 * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
8544 arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
8545 c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
8546 glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
8547 i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
8548 linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
8549 mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
8550 ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
8551 stack.c, symtab.c, tui/tui-disasm.c: Update.
8552
8553 2013-04-08 Tom Tromey <tromey@redhat.com>
8554
8555 * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
8556 Use symbol's obstack, not an objfile.
8557 * coffread.c (process_coff_symbol): Update.
8558 * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
8559 * jv-lang.c (add_class_symbol): Update.
8560 * mdebugread.c (new_symbol): Update.
8561 * minsyms.c (prim_record_minimal_symbol_full)
8562 (terminate_minimal_symbol_table): Update.
8563 * psymtab.c (add_psymbol_to_bcache): Clear entire symbol. Update.
8564 * stabsread.c (define_symbol, read_enum_type): Update.
8565 * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
8566 Handle Ada specially.
8567 (symbol_set_language): Add 'obstack' argument.
8568 (symbol_set_names): Update.
8569 (symbol_natural_name, symbol_demangled_name): Always use
8570 ada_decode_symbol.
8571 * symtab.h (struct general_symbol_info)
8572 <language_specific::obstack>: New field.
8573 <ada_mangled>: New field.
8574 (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
8575 (symbol_set_language): Update.
8576
8577 2013-04-08 Tom Tromey <tromey@redhat.com>
8578
8579 * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
8580 Take an obstack, not an objfile.
8581 (symbol_set_names): Update.
8582 * symtab.h (symbol_set_demangled_name): Update.
8583
8584 2013-04-08 Tom Tromey <tromey@redhat.com>
8585
8586 * coffread.c (process_coff_symbol, coff_read_enum_type): Call
8587 allocate_symbol.
8588 * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
8589 (read_func_scope): Call allocate_template_symbol.
8590 (new_symbol_full): Call allocate_symbol.
8591 * jit.c (finalize_symtab): Call allocate_symbol.
8592 * jv-lang.c (add_class_symbol): Call allocate_symbol.
8593 * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
8594 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
8595 (common_block_end): Call allocate_symbol.
8596 * symtab.c (allocate_symbol, initialize_symbol)
8597 (allocate_template_symbol): New functions.
8598 * symtab.c (allocate_symbol, initialize_symbol)
8599 (allocate_template_symbol): Declare.
8600 * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
8601
8602 2013-04-08 Pedro Alves <palves@redhat.com>
8603 Keith Seitz <keiths@redhat.com>
8604
8605 * breakpoint.c (create_breakpoint): Rename
8606 "parse_condition_and_thread" parameter to "parse_arg". Update
8607 describing comment. If !PARSE_ARG, then error out if ARG is not
8608 the empty string after extracting the location.
8609 * breakpoint.h (create_breakpoint): Rename
8610 "parse_condition_and_thread" parameter to "parse_arg".
8611
8612 2013-04-08 Aleksandar Ristovski <aristovski@qnx.com
8613
8614 * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
8615
8616 2013-04-07 Yao Qi <yao@codesourcery.com>
8617
8618 * remote.c (remote_trace_find): Change type of parameters 'addr1'
8619 and 'addr2' to CORE_ADDR.
8620 * target.c (update_current_target): Update.
8621 * target.h (struct target_ops) <to_trace_find>: Change parameter
8622 type to CORE_ADDR.
8623 * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
8624 'addr2' to CORE_ADDR.
8625 (tfile_trace_find): Likewise.
8626 (tfile_get_traceframe_address): Change return type to CORE_ADDR.
8627 Change local variable 'addr' to type CORE_ADDR.
8628 * tracepoint.h (tfind_1): Update declaration.
8629
8630 2013-04-06 Eli Zaretskii <eliz@gnu.org>
8631
8632 * windows-nat.c (windows_get_absolute_argv0): Move from here...
8633 * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
8634 Include main.h.
8635
8636 * windows-nat.h (windows_get_absolute_argv0): Move prototype from
8637 here...
8638 * main.h (windows_get_absolute_argv0): ...to here.
8639
8640 2013-04-05 Doug Evans <dje@google.com>
8641
8642 * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
8643 (read_cutu_die_from_dwo): Add comments.
8644 (read_structure_type): Update comment.
8645 (read_enumeration_type, read_namespace_type): Update comment.
8646 (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
8647
8648 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
8649
8650 Convert man pages to texinfo, new gdbinit.5 texinfo page.
8651 * Makefile.in (gdb.z): Remove.
8652 (install-only): Remove $(man1dir) and gdb.1 installation.
8653 * gdb.1: Remove.
8654
8655 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
8656
8657 Fix compatibility with Linux kernel 3.8.3.
8658 * linux-tdep.c (linux_find_memory_regions_full): Move variable number
8659 to more inner block. Remove parsing of NUMBER from outer block.
8660 Parse NUMBER only if KEYWORD has been identified.
8661
8662 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
8663
8664 Fix variable name shadowing.
8665 * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
8666 filename to mapsfilename and update its uses.
8667
8668 2013-04-05 Eli Zaretskii <eliz@gnu.org>
8669
8670 * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
8671 empty. See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
8672 and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
8673 details of the problem.
8674
8675 2013-04-04 Pedro Alves <palves@redhat.com>
8676 Hui Zhu <hui@codesourcery.com>
8677
8678 * breakpoint.c (validate_commands_for_breakpoint): If validating a
8679 tracepoint, reset its STEP_COUNT and call validate_actionline.
8680
8681 2013-04-03 Doug Evans <dje@google.com>
8682
8683 * dwarf2read.c (read_die_and_siblings_1): Renamed from
8684 read_die_and_siblings.
8685 (read_die_and_siblings): New function.
8686 (read_cutu_die_from_dwo): Dump die if requested.
8687 (read_die_and_children): Call read_full_die_1 and
8688 read_die_and_siblings_1.
8689 (read_full_die): Dump die if requested.
8690
8691 * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
8692
8693 * dwarf2read.c (struct dwo_file): New member comp_dir.
8694 Rename member name to dwo_name. All uses updated.
8695 (hash_dwo_file): Include comp_dir in computation.
8696 (eq_dwo_file): Ditto.
8697 (lookup_dwo_file_slot): New arg comp_dir. All callers updated.
8698 (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
8699
8700 * psymtab.c (read_psymtabs_with_fullname): Don't call
8701 psymtab_to_fullname if the basenames are different.
8702
8703 2013-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8704
8705 * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
8706 New entry about "fullname" presence.
8707
8708 2013-04-03 Pedro Alves <palves@redhat.com>
8709
8710 * NEWS: Mention x86_64/Cygwin as new native configuration.
8711
8712 2013-04-02 Doug Evans <dje@google.com>
8713
8714 * dwarf2read.c (read_structure_type): Fix typo in comment.
8715
8716 2013-04-02 Pedro Alves <palves@redhat.com>
8717
8718 * NEWS: Mention "set/show debug aarch64", "set/show debug
8719 coff-pe-read" and "set/show debug mach-o".
8720
8721 2013-04-02 Pedro Alves <palves@redhat.com>
8722
8723 * NEWS: Mention "set/show remote trace-buffer-size-packet".
8724
8725 2013-04-02 Eli Zaretskii <eliz@gnu.org>
8726
8727 * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
8728 gdb_string.h is now in common/.
8729
8730 2013-04-02 Pedro Alves <palves@redhat.com>
8731
8732 * NEWS: Move "set debug notification" and "set trace-buffer-size"
8733 under "New options".
8734
8735 2013-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
8736
8737 Revert this patch:
8738 PR gdb/15275
8739 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
8740
8741 2013-04-02 Pedro Alves <palves@redhat.com>
8742
8743 PR gdb/15275
8744
8745 * remote.c (send_interrupt_sequence): Use remote_serial_write.
8746 (remote_serial_write): New function.
8747 (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
8748
8749 2013-04-01 Jiong Wang <jiwang@tilera.com>
8750
8751 * NEWS: Mention TILE-Gx in "New native configurations" and
8752 "New targets" sections.
8753
8754 2013-04-01 Doug Evans <dje@google.com>
8755
8756 * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
8757 (process_enumeration_scope): Simplify.
8758
8759 * dwarf2read.c (struct dwarf2_per_cu_data): Move member
8760 type_unit_group ...
8761 (struct signatured_type): ... to here.
8762 (sig_type_ptr): New typedef.
8763 (type_unit_group): Delete member 't.first_cu'. Move member 'tus'
8764 out of union 't'. All uses updated.
8765 (dw2_get_file_names_reader): Assert not called for a type unit.
8766 (dw2_get_file_names): Assert not called for a type unit or type
8767 unit group.
8768 (build_type_psymtabs_reader): Assert called for a type unit.
8769 (build_type_psymtab_dependencies): Assert called for a type unit group.
8770
8771 * dwarf2read.c (free_dwo_file): Add comment.
8772 (dwarf2_per_objfile_free): Unref dwp bfd.
8773
8774 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
8775
8776 * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
8777 (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
8778 (read_pe_exported_syms): Remove unused 'exportix'.
8779 (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
8780 'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
8781 'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
8782
8783 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
8784
8785 * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
8786 (print_it_watchpoint): Remove unused 'bl'.
8787 (say_where): Remove unused 'uiout'.
8788 (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
8789 (bkpt_breakpoint_hit): Remove unused 'b'.
8790 (internal_bkpt_print_it): Remove unused 'uiout'.
8791 * buildsym.c (augment_type_symtab): Remove unused 'i'.
8792
8793 2013-03-31 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
8794
8795 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
8796 (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
8797
8798 2013-03-29 Doug Evans <dje@google.com>
8799
8800 * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
8801 Delete arg is_dwp. All callers updated.
8802 (open_dwp_file): New function.
8803 (open_and_init_dwp_file): Call it.
8804 (get_dwp_file): New function.
8805 (lookup_dwo_cutu): Call it.
8806
8807 * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
8808 unnecessary, cleanup.
8809
8810 * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
8811
8812 * dwarf2read.c (read_cutu_die_from_dwo): New function.
8813 (lookup_dwo_unit): New function.
8814 (init_cutu_and_read_dies): Move DWO handling to new functions.
8815
8816 * dwarf2read.c (struct signatured_type): Tweak comment.
8817 (struct dwo_unit): Tweak comment.
8818 (create_debug_types_hash_table): Tweak comment. Reformat long line.
8819 (create_dwo_debug_info_hash_table): Tweak comment.
8820 (dwarf2_per_cu_offset_and_type): Tweak comment.
8821
8822 * dwarf2read.c (lookup_signatured_type): Remove complaint about
8823 missing .debug_types section.
8824
8825 2013-03-29 Yao Qi <yao@codesourcery.com>
8826
8827 * corelow.c: Include "completer.h".
8828 (_initialize_corelow): Call add_target_with_completer with
8829 argument 'filename_completer'.
8830 * tracepoint.c: Likewise.
8831 * exec.c (_initialize_exec): Likewise.
8832 * target.c (add_target): Rename to ...
8833 (add_target_with_completer): ... this. Call set_cmd_completer
8834 if parameter completer is not NULL.
8835 (add_target): New.
8836 * target.h: Include "command.h".
8837 (add_target_with_completer): Declare it.
8838
8839 2013-03-28 Joel Brobecker <brobecker@adacore.com>
8840
8841 * coffread.c (is_import_fixup_symbol): New function.
8842 (record_minimal_symbol): Use is_import_fixup_symbol to
8843 detect import fixup symbols, and discard them.
8844
8845 2013-03-28 Doug Evans <dje@google.com>
8846
8847 * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
8848 types hash table until we know we need it.
8849
8850 * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
8851 index numbers.
8852
8853 * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
8854 All callers updated.
8855 (dw2_print_stats): Print #read CUs too.
8856 (dump_die_shallow): Print signatured types better.
8857
8858 * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
8859 info_or_types_section to section. All uses updated.
8860 (struct dwo_unit): Ditto.
8861
8862 2013-03-28 Pedro Alves <palves@redhat.com>
8863
8864 * NEWS (New options): New section.
8865 (New options): Mention set/show remote trace-status-packet.
8866 * remote.c (PACKET_qTStatus): New enumeration value.
8867 (remote_get_trace_status): Skip sending qTStatus if the packet is
8868 disabled. Use packet_ok.
8869 (_initialize_remote): Register a configuration command for
8870 qTStatus packet.
8871
8872 2013-03-28 Doug Evans <dje@google.com>
8873
8874 * symfile.c (find_separate_debug_file): Add comment.
8875 (terminate_after_last_dir_separator): Tweak comment.
8876
8877 * dwarf2read.c (create_partial_symtab): Add forward decl.
8878 (create_partial_symtab): Move to be closer to other psymtab functions.
8879 (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
8880
8881 * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
8882 (compute_symtab_includes): Remove unnecessary forward declaration.
8883 (die_needs_namespace): Add comment marking group of functions for
8884 dwarf2 name computation.
8885
8886 * typeprint.c (_initialize_typeprint): Improve type help text.
8887
8888 * python/python.c (finish_python_initialization): Provide suggestion
8889 for how to tell gdb to find its python files.
8890
8891 2013-03-28 Pedro Alves <palves@redhat.com>
8892
8893 PR gdb/15294
8894
8895 * source.c (_initialize_source): Change back "set listsize" to an
8896 integer command.
8897
8898 2013-03-27 Gareth McMullin <gareth@blacksphere.co.nz>
8899
8900 PR gdb/15275
8901 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
8902
8903 2013-03-27 Pedro Alves <palves@redhat.com>
8904
8905 * top.c (history_size): Rename to ...
8906 (history_size_setshow_var): ... this. Add comment.
8907 (show_commands): Use readline's 'history_length' instead of
8908 computing the history length by calling history_get in a loop.
8909 (set_history_size_command): Error out for sizes over INT_MAX.
8910 Restore previous history size on invalid size.
8911 (init_history): If HISTSIZE is negative, leave the history size as
8912 zero. Add comments.
8913 (init_main): Adjust.
8914
8915 2013-03-27 Pedro Alves <palves@redhat.com>
8916
8917 * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
8918 coff_pe_read" command to "set debug coff-pe-read".
8919
8920 2013-03-27 Markus Metzger <markus.t.metzger@intel.com>
8921
8922 * record.c (command_size_to_target_size): Fix size comparison.
8923 Change parameter type from pointer to integer to integer.
8924 Update all users.
8925
8926 2013-03-27 Pierre Muller <muller@sourceware.org>
8927
8928 * windows-nat.c (handle_output_debug_string): Avoid typecast
8929 from integer of different size warning.
8930
8931 2013-03-26 Joel Brobecker <brobecker@adacore.com>
8932
8933 * windows-nat.c (handle_output_debug_string): Add empty line
8934 after local block variable definition.
8935
8936 2013-03-26 Pedro Alves <palves@redhat.com>
8937
8938 * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
8939 (net_open): Make 'polls' local unsigned.
8940
8941 2013-03-26 Pedro Alves <palves@redhat.com>
8942
8943 * remote.c (_initialize_remote): Make "set remoteaddresssize"
8944 a zuinteger command instead of uinteger.
8945
8946 2013-03-26 Pedro Alves <palves@redhat.com>
8947
8948 * record-full.c (record_full_insn_num): Make it unsigned.
8949 (record_full_check_insn_num, record_full_message)
8950 (record_full_registers_change, record_full_xfer_partial): Remove
8951 record_full_insn_max_num check (it's always != 0).
8952 (record_full_info, record_full_restore): Use %u as format string.
8953 (): Use %u as format string.
8954 (set_record_full_insn_max_num): Remove record_full_insn_max_num
8955 check (it's always != 0).
8956
8957 2013-03-26 Pedro Alves <palves@redhat.com>
8958
8959 * dcache.c (_initialize_dcache): Make the "set dcache line-size"
8960 and "set dcache size" commands zuinteger instead of uinteger.
8961
8962 2013-03-26 Pedro Alves <palves@redhat.com>
8963
8964 * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
8965 command zuinteger instead of uinteger.
8966
8967 2013-03-26 Pedro Alves <palves@redhat.com>
8968
8969 * coff-pe-read.c (_initialize_coff_pe_read): Make the command
8970 zuinteger instead of uinteger.
8971
8972 2013-03-26 Pedro Alves <palves@redhat.com>
8973
8974 * record.c (record_insn_history_size_setshow_var)
8975 (record_call_history_size_setshow_var): New globals.
8976 (command_size_to_target_size): New function.
8977 (cmd_record_insn_history, cmd_record_call_history): Use
8978 command_size_to_target_size instead of cast.
8979 (validate_history_size, set_record_insn_history_size)
8980 (set_record_call_history_size): New functions.
8981 (_initialize_record): Install set_record_insn_history_size and
8982 set_record_call_history_size as "set" hooks of "set record
8983 instruction-history-size" and "set record
8984 function-call-history-size".
8985
8986 2013-03-26 Pedro Alves <palves@redhat.com>
8987
8988 * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
8989 use with history_max_entries use. Remove FIXME note.
8990
8991 2013-03-26 Markus Metzger <markus.t.metzger@intel.com>
8992
8993 * record-btrace.c (record_btrace_close): Call
8994 record_btrace_auto_disable.
8995
8996 2013-03-25 Joel Brobecker <brobecker@adacore.com>
8997
8998 * rs6000-nat.c (fixup_breakpoints): Delete declaration.
8999
9000 2013-03-25 Doug Evans <dje@google.com>
9001
9002 * contrib/cc-with-tweaks.sh: Check exit code of dwp.
9003
9004 2013-03-25 Tom Tromey <tromey@redhat.com>
9005
9006 PR symtab/11462:
9007 * c-exp.y (exp): Add new productions for destructors after '.' and
9008 '->'.
9009 (write_destructor_name): New function.
9010
9011 2013-03-25 Tom Tromey <tromey@redhat.com>
9012
9013 PR c++/9197:
9014 * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
9015 value_struct_elt, not lookup_struct_elt_type.
9016 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
9017 STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
9018 * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
9019
9020 2013-03-25 Yao Qi <yao@codesourcery.com>
9021
9022 * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
9023 instead of '_mkdir'.
9024
9025 2013-03-23 Eli Zaretskii <eliz@gnu.org>
9026
9027 * windows-nat.c (windows_get_absolute_argv0): New function.
9028 * windows-nat.h: Add its prototype.
9029
9030 * main.c (get_init_files): Use filename_ncmp instead of strncmp.
9031 Use IS_DIR_SEPARATOR instead of looking for a character inside
9032 SLASH_STRING. Include filenames.h.
9033 (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
9034 relocate_gdb_directory works when passed gdb_program_name.
9035 Include windows-nat.h.
9036
9037 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
9038
9039 * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
9040 * remote.c (trace_error): Remove the special handling of '2'.
9041 (readchar) <SERIAL_EOF>
9042 (readchar) <SERIAL_ERROR>
9043 (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
9044 (remote_get_trace_status): Call throw_exception if EX is
9045 TARGET_CLOSE_ERROR.
9046 * utils.c (perror_with_name): Rename to ...
9047 (throw_perror_with_name): ... here. New parameter errcode, describe it
9048 in the function comment.
9049 (perror_with_name): New function wrapper.
9050 * utils.h (enum errors): New stub declaration.
9051 (throw_perror_with_name): New declaration.
9052
9053 2013-03-22 Pedro Alves <palves@redhat.com>
9054 Yao Qi <yao@codesourcery.com>
9055 Mark Kettenis <kettenis@gnu.org>
9056
9057 * cli/cli-setshow.c (do_set_command) <var_uinteger>:
9058 Don't let the user set the value to UINT_MAX directly.
9059 <var_integer>: Don't let the user set the value to INT_MAX
9060 directly.
9061
9062 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
9063
9064 * remote.c (remote_unpush_target): New function.
9065 (remote_open_1): Remove two pop_target calls, update one comment, add
9066 comment to target_preopen call. Replace pop_target call by
9067 remote_unpush_target call.
9068 (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
9069 pop_target calls by remote_unpush_target calls.
9070
9071 2013-03-22 Pedro Alves <palves@redhat.com>
9072
9073 * linux-nat.c (linux_child_follow_fork): Don't call
9074 linux_enable_event_reporting.
9075 (linux_handle_extended_wait): Don't call
9076 linux_enable_event_reporting.
9077
9078 2013-03-22 Pedro Alves <palves@redhat.com>
9079
9080 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
9081 use it to rewrite the trampoline buffers with type gdb_byte[], and
9082 undefine the macro. Remove char* cast.
9083
9084 2013-03-21 Doug Evans <dje@google.com>
9085
9086 New commands "mt set per-command {space,time,symtab} {on,off}".
9087 * NEWS: Add entry.
9088 * event-top.c: #include "maint.h".
9089 * main.c: #include "maint.h".
9090 * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
9091 timeval-utils.h, maint.h, cli/cli-setshow.h.
9092 (per_command_time, per_command_space): New static globals.
9093 (per_command_symtab): New static global.
9094 (per_command_setlist, per_command_showlist): New static globals.
9095 (struct cmd_stats): Move here from utils.c.
9096 (set_per_command_time): Renamed from set_display_time in utils.c
9097 and moved here. All callers updated.
9098 (set_per_command_space): Renamed from set_display_space in utils.c
9099 and moved here. All callers updated.
9100 (count_symtabs_and_blocks): New function.
9101 (report_command_stats): Moved here from utils.c. Add support for
9102 printing symtab stats. Only print data if enabled before command
9103 executed.
9104 (make_command_stats_cleanup): Ditto.
9105 (sert_per_command_cmd, show_per_command_cmd): New functions.
9106 (_initialize_maint_cmds): Add new commands
9107 mt set per-command {space,time,symtab} {on,off}.
9108 * maint.h: New file.
9109 * top.c: #include "maint.h".
9110 * utils.c (reset_prompt_for_continue_wait_time): New function.
9111 (get_prompt_for_continue_wait_time): New function.
9112 * utils.h (reset_prompt_for_continue_wait_time): Declare
9113 (get_prompt_for_continue_wait_time): Declare.
9114 (make_command_stats_cleanup): Moved to maint.h.
9115 (set_display_time, set_display_space): Moved to maint.h and renamed
9116 to set_per_command_time, set_per_command_space.
9117 * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
9118 parse_binary_operation and made non-static. Don't call error,
9119 just return an error marker. All callers updated.
9120 * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
9121
9122 2013-03-21 Tom Tromey <tromey@redhat.com>
9123
9124 * symfile.c (alloc_section_addr_info): Update header. Don't set
9125 'num_sections' field.
9126 (build_section_addr_info_from_section_table): Set 'num_sections'.
9127 (build_section_addr_info_from_bfd): Likewise.
9128 (build_section_addr_info_from_objfile): Remove dead loop
9129 condition.
9130 (free_section_addr_info): Unconditionally call xfree.
9131 (relative_addr_info_to_section_offsets, addrs_section_sort)
9132 (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
9133 condition.
9134 (syms_from_objfile_1): Remove dead 'if' condition. Check
9135 'num_sections'.
9136 (add_symbol_file_command): Set 'num_sections'.
9137 * symfile-mem.c (symbol_file_add_from_memory): Set
9138 'num_sections'.
9139 * somread.c (som_symfile_offsets): Remove dead loop condition.
9140 * machoread.c (macho_symfile_offsets): Remove dead 'if'.
9141 * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
9142
9143 2013-03-21 Tom Tromey <tromey@redhat.com>
9144
9145 * tracepoint.h (decode_agent_options): Add 'trace_string'
9146 argument.
9147 * tracepoint.c (decode_agent_options): Add 'trace_string'
9148 argument.
9149 (validate_actionline): Update.
9150 (collect_symbol): Add 'trace_string' argument.
9151 (struct add_local_symbols_data) <trace_string>: New field.
9152 (do_collect_symbol): Update.
9153 (add_local_symbols): Add 'trace_string' argument.
9154 (encode_actions_1): Update.
9155 (trace_dump_actions): Update.
9156 * dwarf2loc.c (access_memory): Update.
9157 * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
9158 * ax-general.c (new_agent_expr): Update.
9159 * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
9160 (gen_trace_for_return_address): Add argument.
9161 (trace_kludge, trace_string_kludge): Remove.
9162 * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
9163 (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
9164 (gen_trace_for_var): Add 'trace_string' argument.
9165 (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
9166 (gen_printf, agent_eval_command_one): Update.
9167
9168 2013-03-21 Tom Tromey <tromey@redhat.com>
9169
9170 PR exp/15109:
9171 * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
9172 Handle FILENAME token.
9173
9174 2013-03-21 Tom Tromey <tromey@redhat.com>
9175
9176 * c-exp.y (YYPRINT): Define.
9177 (c_print_token): New function.
9178
9179 2013-03-21 Tom Tromey <tromey@redhat.com>
9180
9181 * c-exp.y (%union) <sym, ivar, ivec>: Remove.
9182
9183 2013-03-21 Yao Qi <yao@codesourcery.com>
9184
9185 * ctf.c: Include "gdb_stat.h".
9186 [USE_WIN32API]: New macro 'mkdir'.
9187 (ctf_start): Use permission bits macros if they are defined.
9188
9189 2013-03-20 Keith Seitz <keiths@redhat.com>
9190
9191 * breakpoint.h (struct breakpoint): Add comment to
9192 extra_string indicating that this member is mallod'd.
9193 * breakpoint.c (base_breakpoint_dtor): Free extra_string.
9194
9195 2013-03-20 Pedro Alves <palves@redhat.com>
9196
9197 PR gdb/15289
9198
9199 * cli/cli-setshow.c (do_set_command)
9200 <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
9201 the result of parsing the command argument. Throw error if the
9202 value is greater than UINT_MAX. Print the invalid value with
9203 plongest.
9204 <var_integer, var_zinteger>: Use LONGEST for variable holding the
9205 result of parsing the command argument. Throw error if the value
9206 is greater than INT_MAX, not greater or equal. Also throw error
9207 if the value is less than INT_MIN. Print the invalid value with
9208 plongest.
9209 <var_zuinteger_unlimited>: Throw error if the value is greater
9210 than INT_MAX, not greater or equal.
9211 (do_show_command) <var_integer, var_zinteger,
9212 var_zuinteger_unlimited>: Use %d for printing int, not %u.
9213
9214 2013-03-20 Tom Tromey <tromey@redhat.com>
9215
9216 * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
9217 if possible.
9218 * dwarf2read.c (read_func_scope): Remove old FIXME.
9219 * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
9220 not LOC_COMPUTED.
9221 * findvar.c (symbol_read_needs_frame, default_read_var_value):
9222 Unconditionally call via computed ops, if possible.
9223 * printcmd.c (address_info): Unconditionally call via computed ops,
9224 if possible.
9225 * stack.c (read_frame_arg): Unconditionally call via computed ops,
9226 if possible.
9227 * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
9228 * tracepoint.c (scope_info): Unconditionally call via computed ops,
9229 if possible.
9230
9231 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
9232 Tom Tromey <tromey@redhat.com>
9233
9234 PR symtab/8421:
9235 * coffread.c (coff_register_index): New global.
9236 (process_coff_symbol, coff_read_enum_type): Set
9237 SYMBOL_ACLASS_INDEX.
9238 (_initialize_coffread): Initialize new global.
9239 * dwarf2loc.c (locexpr_find_frame_base_location)
9240 (dwarf2_block_frame_base_locexpr_funcs)
9241 (loclist_find_frame_base_location)
9242 (dwarf2_block_frame_base_loclist_funcs): New.
9243 (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
9244 (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
9245 * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
9246 (dwarf2_block_frame_base_loclist_funcs): New.
9247 * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
9248 (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
9249 globals.
9250 (read_func_scope): Update.
9251 (fixup_go_packaging, mark_common_block_symbol_computed)
9252 (var_decode_location, new_symbol_full, dwarf2_const_value):
9253 Set SYMBOL_ACLASS_INDEX.
9254 (dwarf2_symbol_mark_computed): Likewise. Add 'is_block' argument.
9255 (_initialize_dwarf2_read): Initialize new globals.
9256 * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
9257 * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
9258 * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
9259 globals.
9260 (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
9261 (_initialize_mdebugread): Initialize new globals.
9262 * psympriv.h (struct partial_symbol) <aclass>: Update comment.
9263 * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
9264 (stab_register_index, stab_regparm_index): New globals.
9265 (define_symbol, read_enum_type, common_block_end): Set
9266 SYMBOL_ACLASS_INDEX.
9267 (_initialize_stabsread): Initialize new globals.
9268 * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
9269 globals.
9270 (MAX_SYMBOL_IMPLS): New define.
9271 (register_symbol_computed_impl, register_symbol_block_impl)
9272 (register_symbol_register_impl)
9273 (initialize_ordinary_address_classes): New functions.
9274 (_initialize_symtab): Call initialize_ordinary_address_classes.
9275 * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
9276 (struct symbol_impl): New.
9277 (SYMBOL_ACLASS_BITS): New define.
9278 (struct symbol) <aclass, ops>: Remove fields.
9279 <aclass_index>: New field.
9280 (symbol_impls): Declare.
9281 (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
9282 (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
9283 (register_symbol_computed_impl, register_symbol_block_impl)
9284 (register_symbol_register_impl): Declare.
9285 (struct symbol_computed_ops): Add location_has_loclist.
9286 (struct symbol_block_ops): New.
9287 (SYMBOL_BLOCK_OPS): New.
9288 * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
9289
9290 2013-03-20 Tom Tromey <tromey@redhat.com>
9291
9292 * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
9293 (print_partial_symbols, recursively_search_psymtabs): Use
9294 PSYMBOL_CLASS.
9295
9296 2013-03-20 Pierre Muller <muller@sourceware.org>
9297
9298 * contrib/ari/gdb_ari.sh (OP eol rule): Also check
9299 addtion, subtraction, multiplication and division binary operator.
9300
9301 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
9302
9303 Code cleanup.
9304 * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
9305 * bsd-kvm.c (bsd_kvm_close): Likewise.
9306 * bsd-uthread.c (bsd_uthread_close): Likewise.
9307 * corelow.c (core_close): Likewise.
9308 (core_close_cleanup): Remove parameter quitting from a caller.
9309 * event-top.c (async_disconnect): Likewise.
9310 * exec.c (exec_close_1): Remove parameter quitting.
9311 * go32-nat.c (go32_close): Likewise.
9312 * linux-nat.c (linux_nat_close): Remove parameter quitting. Remove
9313 parameter quitting from a caller.
9314 * mips-linux-nat.c (super_close): Remove parameter quitting from the
9315 variable.
9316 (mips_linux_close): Remove parameter quitting. Remove parameter
9317 quitting from a caller.
9318 * monitor.c (monitor_close): Remove parameter quitting.
9319 * monitor.h (monitor_close): Likewise.
9320 * record-btrace.c (record_btrace_close): Likewise.
9321 * record-full.c (record_full_close): Likewise.
9322 * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
9323 it also from fprintf_unfiltered.
9324 * remote-mips.c (mips_close): Remove parameter quitting.
9325 (mips_detach): Remove parameter quitting from a caller.
9326 * remote-sim.c (gdbsim_close): Remove parameter quitting.
9327 (gdbsim_close): Remove duplicate function comment. Remove parameter
9328 quitting and remove it also from printf_filtered.
9329 * remote.c (remote_close): Remove parameter quitting.
9330 * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
9331 * target.c (update_current_target): Remove parameter int from to_close
9332 de_fault.
9333 (push_target, unpush_target, pop_target): Remove parameter quitting from
9334 a caller.
9335 (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
9336 Remove parameter quitting from a caller.
9337 (target_preopen): Remove parameter quitting from a caller.
9338 (target_close): Remove parameter quitting. Remove parameter quitting
9339 from a caller two times. Remove parameter quitting also from
9340 fprintf_unfiltered.
9341 * target.h (struct target_ops): Remove parameter quitting and as int
9342 from fields to_xclose and to_close.
9343 (extern struct target_ops current_target):
9344 (target_close, pop_all_targets): Remove parameter quitting. Update the
9345 comment.
9346 (pop_all_targets_above): Remove parameter quitting.
9347 * top.c (quit_target): Remove parameter quitting from a caller.
9348 * tracepoint.c (tfile_close): Remove parameter quitting.
9349 * windows-nat.c (windows_close): Remove parameter quitting.
9350
9351 2013-03-20 Corinna Vinschen <vinschen@redhat.com>
9352
9353 * windows-nat.c (handle_output_debug_string): Replace call
9354 to string_to_core_addr with call to strtoull.
9355
9356 2013-03-20 Yao Qi <yao@codesourcery.com>
9357
9358 * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
9359 and write it to CTF metadata.
9360
9361 2013-03-19 Corinna Vinschen <vinschen@redhat.com>
9362
9363 * windows-nat.c (handle_output_debug_string): Change type of n to
9364 SIZE_T to avoid crash on 64 bit systems.
9365
9366 2013-03-17 Eli Zaretskii <eliz@gnu.org>
9367
9368 * python/python-internal.h (HAVE_SNPRINTF)
9369 [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
9370 about redefinition of snprintf by pyerrors.h.
9371
9372 2013-03-15 Steve Ellcey <sellcey@mips.com>
9373
9374 * remote-sim.c (sim_command_completer): Make char arguments const.
9375
9376 2013-03-15 Tom Tromey <tromey@redhat.com>
9377
9378 PR c++/15116:
9379 * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
9380
9381 2013-03-14 Tom Tromey <tromey@redhat.com>
9382
9383 * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
9384 New fields.
9385 (get_file_crc): Move from symfile.c.
9386 (gdb_bfd_crc): New function.
9387 * gdb_bfd.h (gdb_bfd_crc): Declare.
9388 * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
9389 * symfile.c (get_file_crc): Move to gdb_bfd.c.
9390 (separate_debug_file_exists): Use gdb_bfd_crc.
9391
9392 2013-03-14 Tom Tromey <tromey@redhat.com>
9393
9394 * symfile.c (get_debug_link_info): Remove.
9395 (find_separate_debug_file_by_debuglink): Use
9396 bfd_get_debug_link_info.
9397
9398 2013-03-14 Tom Tromey <tromey@redhat.com>
9399
9400 * symtab.c (error_in_psymtab_expansion): New function.
9401 (lookup_symbol_aux_quick)
9402 (basic_lookup_transparent_type_quick): Remove "last resort"
9403 code. Use error_in_psymtab_expansion.
9404
9405 2013-03-14 Doug Evans <dje@google.com>
9406 Jan Kratochvil <jan.kratochvil@redhat.com>
9407
9408 * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
9409 any successful compare_filenames_for_search or FILENAME_CMP.
9410 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
9411 * symtab.c (iterate_over_some_symtabs): Likewise.
9412
9413 2013-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9414
9415 * source.c (print_source_lines_base): Make a local copy of
9416 symtab_to_fullname.
9417
9418 2013-03-14 Hui Zhu <hui_zhu@mentor.com>
9419 Jan Kratochvil <jan.kratochvil@redhat.com>
9420
9421 * source.c (print_source_lines_base): Suppress "file" for TUI.
9422
9423 2013-03-14 Keith Seitz <keiths@redhat.com>
9424 Alan Matsuoka <alanm@redhat.com>
9425
9426 PR c++/15203
9427 PR c++/15210
9428 * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
9429 TYPE_CODE_METHOD.
9430 * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
9431 symbols.
9432
9433 2013-03-14 Yao Qi <yao@codesourcery.com>
9434
9435 * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
9436 status to tfile if trace is stopped by command 'tstop'.
9437
9438 2013-03-14 Yao Qi <yao@codesourcery.com>
9439
9440 * tracepoint.c (tfile_write_status): Write trace notes and user
9441 name into tfile if they are not NULL.
9442
9443 2013-03-14 Hui Zhu <hui@codesourcery.com>
9444 Yao Qi <yao@codesourcery.com>
9445
9446 * Makefile.in (REMOTE_OBS): Add ctf.o.
9447 (SFILES): Add ctf.c.
9448 (HFILES_NO_SRCDIR): Add ctf.h.
9449 * ctf.c, ctf.h: New files.
9450 * tracepoint.c: Include 'ctf.h'.
9451 (collect_pseudocommand): Remove static.
9452 (trace_save_command): Parse option "-ctf".
9453 Produce different trace file writers per option.
9454 Adjust output message.
9455 (trace_save_tfile, trace_save_ctf): New.
9456 * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
9457 * mi/mi-main.c: Include 'ctf.h'.
9458 (mi_cmd_trace_save): Handle option '-ctf'. Call either
9459 trace_save_tfile or trace_save_ctf.
9460 * NEWS: Mention these changes.
9461
9462 2013-03-14 Yao Qi <yao@codesourcery.com>
9463
9464 * tracepoint.c (trace_file_writer_xfree): New.
9465 (struct tfile_writer_data): New.
9466 (tfile_dtor, tfile_can_target_save, tfile_start): New.
9467 (tfile_write_header, tfile_write_regblock_type): New.
9468 (tfile_write_status, tfile_write_uploaded_tsv): New.
9469 (tfile_write_uploaded_tp, tfile_write_definition_end): New.
9470 (tfile_write_raw_data, (tfile_end): New.
9471 (tfile_write_ops): New global variable.
9472 (TRACE_WRITE_R_BLOCK): New macro.
9473 (TRACE_WRITE_M_BLOCK_HEADER): New macro.
9474 (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
9475 (TRACE_WRITE_V_BLOCK): New macro.
9476 (trace_save): Add extra one parameter WRITER. Make it static.
9477 Use WRITER to writer trace.
9478 (tfile_trace_file_writer_new): New.
9479 (trace_save_command): Caller update.
9480 (trace_save_tfile): Write trace data in TFILE format.
9481 * tracepoint.h (struct trace_frame_write_ops): New.
9482 (struct trace_file_write_ops): New.
9483 (struct trace_file_writer): New.
9484 (trace_save): Remove its declaration.
9485 (trace_save_tfile): Declare it.
9486 * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
9487 instead of trace_save.
9488
9489 2013-03-13 Pedro Alves <palves@redhat.com>
9490
9491 * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
9492
9493 2013-03-13 Pedro Alves <palves@redhat.com>
9494
9495 * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
9496 commented out code.
9497 * demangle.c (current_demangling_style_string): Make it const.
9498 (set_demangling_command): Assert the demangling style is known.
9499 Remove all handling of unknown styles. Set
9500 'current_demangling_style_string' to an element of the
9501 demangling_style_names array.
9502 (set_demangling_style): Delete.
9503 (_initialize_demangler): Set current_demangling_style_string to the
9504 element of the demangling_style_names array that corresponds to
9505 the default demangling style. Remove FIXME note. Don't call
9506 set_demangling_style.
9507 * gdb-demangle.h (set_demangling_style): Remove declaration.
9508
9509 2013-03-13 Pedro Alves <palves@redhat.com>
9510
9511 * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
9512 fields const.
9513 (ada_make_symbol_completion_list): Make "text0" parameter const.
9514 * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
9515 * breakpoint.c (condition_completer): Make "text" and "word"
9516 parameters const. Adjust.
9517 (check_tracepoint_command): Adjust to validate_actionline
9518 prototype change.
9519 (catch_syscall_completer): Make "text" and "word" parameters
9520 const.
9521 * cli/cli-cmds.c (show_user): Make "comname" local const.
9522 (valid_command_p): Make "command" parameter const.
9523 (alias_command): Make "alias_prefix" and "command_prefix" locals
9524 const.
9525 * cli/cli-decode.c (add_cmd): Make "name" parameter const.
9526 (add_alias_cmd): Make "name" and "oldname" parameters const.
9527 Adjust. No longer make copy of OLDNAME.
9528 (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
9529 (add_setshow_cmd_full, add_setshow_enum_cmd)
9530 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
9531 (add_setshow_filename_cmd, add_setshow_string_cmd)
9532 (add_setshow_string_noescape_cmd)
9533 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
9534 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
9535 (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
9536 (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
9537 Make "name" parameter const.
9538 (help_cmd): Rename "command" parameter to "arg". New const local
9539 "command".
9540 (find_cmd): Make "command" parameter const.
9541 (lookup_cmd_1): Make "text" parameter pointer to const. Adjust to
9542 deprecated_cmd_warning prototype change.
9543 (undef_cmd_error): Make "cmdtype" parameter const.
9544 (lookup_cmd): Make "line" parameter const.
9545 (deprecated_cmd_warning): Change type of "text" parameter to
9546 pointer to const char, from pointer to pointer to char. Adjust.
9547 (lookup_cmd_composition): Make "text" parameter const.
9548 (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
9549 parameters const.
9550 * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
9551 const.
9552 * cli/cli-script.c (validate_comname): Make "tem" local const.
9553 (define_command): New const local "tem_c". Use it in calls to
9554 lookup_cmd.
9555 (document_command): Make "tem" and "comfull" locals const.
9556 (show_user_1): Make "prefix" and "name" parameters const.
9557 * cli-script.h (show_user_1): Make "prefix" and "name" parameters
9558 const.
9559 * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
9560 (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
9561 (deprecated_cmd_warning, lookup_cmd_composition, add_com)
9562 (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
9563 (complete_on_enum, add_setshow_enum_cmd)
9564 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
9565 (add_setshow_filename_cmd, add_setshow_string_cmd)
9566 (add_setshow_string_noescape_cmd)
9567 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
9568 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
9569 (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
9570 Change prototypes, constifying strings.
9571 * completer.c (noop_completer, filename_completer): Make "text"
9572 and "prefix" parameters const.
9573 (location_completer, expression_completer)
9574 (complete_line_internal): Make "text" and "prefix" parameters
9575 const and adjust.
9576 (command_completer, signal_completer): Make "text" and "prefix"
9577 parameters const.
9578 * completer.h (noop_completer, filename_completer)
9579 (expression_completer, location_completer, command_completer)
9580 (signal_completer): Change prototypes.
9581 * corefile.c (complete_set_gnutarget): Make "text" and "word"
9582 parameters const.
9583 * cp-abi.c (cp_abi_completer): Likewise.
9584 * expression.h (parse_expression_for_completion): Change
9585 prototype.
9586 * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
9587 parameters const.
9588 * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
9589 * infrun.c (handle_completer): Make "text" and "word" parameters
9590 const.
9591 * interps.c (interpreter_completer): Make "text" and "word"
9592 parameters const.
9593 * language.h (struct language_defn)
9594 <la_make_symbol_completion_list>: Make "text" and "word"
9595 parameters const.
9596 * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
9597 (parse_exp_in_context): Rename to ...
9598 (parse_exp_in_context_1): ... this.
9599 (parse_exp_in_context): Reimplement, with const hack from
9600 parse_exp_1.
9601 (parse_expression_for_completion): Make "string" parameter const.
9602 * printcmd.c (decode_format): Make "string_ptr" parameter pointer
9603 to pointer to const char. Adjust.
9604 (print_command_1): Make "exp" parameter const.
9605 (output_command): Rename to ...
9606 (output_command_const): ... this. Make "exp" parameter const.
9607 (output_command): Reimplement.
9608 (x_command): Adjust.
9609 (display_command): Rename "exp" parameter to "arg". New "exp"
9610 local, const version of "arg".
9611 * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
9612 "cmd_name" local const.
9613 * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
9614 call.
9615 (cmdpy_completer): Make "text" and "word" parameters const.
9616 (gdbpy_parse_command_name): Make "prefix_text2" local const.
9617 * python/py-param.c (add_setshow_generic): Make "tmp_name" local
9618 const.
9619 * remote.c (_initialize_remote): Make "cmd_name" local const.
9620 * symtab.c (language_search_unquoted_string): Make "text" and "p"
9621 parameters const. Adjust.
9622 (completion_list_add_fields): Make "sym_text", "text" and "word"
9623 parameters const.
9624 (struct add_name_data) <sym_text, text, word>: Make fields const.
9625 (default_make_symbol_completion_list_break_on): Make "text" and
9626 "word" parameters const. Adjust locals.
9627 (default_make_symbol_completion_list)
9628 (make_symbol_completion_list, make_symbol_completion_type)
9629 (make_symbol_completion_list_fn): Make "text" and "word"
9630 parameters const.
9631 (make_file_symbol_completion_list): Make "text", "word" and
9632 "srcfile" parameters const. Adjust locals.
9633 (add_filename_to_list): Make "text" and "word" parameters const.
9634 (struct add_partial_filename_data) <text, word>: Make fields
9635 const.
9636 (make_source_files_completion_list): Make "text" and "word"
9637 parameters const.
9638 * symtab.h (default_make_symbol_completion_list_break_on)
9639 (default_make_symbol_completion_list, make_symbol_completion_list)
9640 (make_symbol_completion_type enum type_code)
9641 (make_symbol_completion_list_fn make_file_symbol_completion_list)
9642 (make_source_files_completion_list): Change prototype.
9643 * top.c (execute_command): Adjust to pass pointer to pointer to
9644 const char to lookup_cmd, and to deprecated_cmd_warning prototype
9645 change.
9646 (set_verbose): Make "cmdname" local const.
9647 * tracepoint.c (decode_agent_options): Make "exp" parameter const,
9648 and adjust.
9649 (validate_actionline): Make "line" parameter a pointer to const
9650 char, and adjust.
9651 (encode_actions_1): Make "action_exp" local const, and adjust.
9652 (encode_actions): Adjust.
9653 (replace_comma): Delete.
9654 (trace_dump_actions): Make "action_exp" and "next_comma" locals
9655 const, and adjust. Don't frob the action string while splitting
9656 it at commas. Instead, make a copy of each split substring in
9657 turn.
9658 (trace_dump_command): Adjust to validate_actionline prototype
9659 change.
9660 * tracepoint.h (decode_agent_options, decode_agent_options)
9661 (encode_actions, validate_actionline): Change prototypes.
9662 * valprint.h (output_command): Delete declaration.
9663 (output_command_const): Declare.
9664 * value.c (function_destroyer): Cast const away in xfree call.
9665
9666 2013-03-13 Pedro Alves <palves@redhat.com>
9667
9668 * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
9669 rather than casting 'const char * const *' to 'const char **'.
9670 * ada-lex.l (processInt): Make "trailer" local const. Remove
9671 'const char **' cast.
9672 * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
9673 locals, and use those as strtol output pointer, instead than doing
9674 invalid casts to from 'const char **' to 'char **'.
9675 (_initialize_demangle): Remove cast.
9676 * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
9677 locals, and use those as strtol output pointer, instead than doing
9678 invalid casts to from 'const char **' to 'char **'.
9679 * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
9680 casts.
9681 * stap-probe.c (stap_parse_register_operand)
9682 (stap_parse_single_operand): Likewise.
9683
9684 2013-03-13 Yao Qi <yao@codesourcery.com>
9685
9686 * tracepoint.c (tfile_get_trace_state_variable_value): Look for
9687 the last matched 'V' blcok in trace frame.
9688
9689 2013-03-12 Joel Brobecker <brobecker@adacore.com>
9690
9691 * NEWS: Create a new section for the next release branch.
9692 Rename the section of the current branch, now that it has
9693 been cut.
9694
9695 2013-03-12 Joel Brobecker <brobecker@adacore.com>
9696
9697 GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
9698 * version.in: Bump version to 7.6.50.20130312-cvs.
9699
9700 2013-03-12 Keith Seitz <keiths@redhat.com>
9701
9702 * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
9703 * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
9704 Remove temporary copy of input string.
9705 (mi_execute_command_wrapper): Make "cmd" const.
9706 * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
9707 * mi/mi-parse.c (mi_parse_argv): Make "args" const.
9708 Use const strings.
9709 (mi_parse): Make "cmd" const.
9710 Use const strings.
9711 * mi/mi-parse.h (mi_parse): Make "cmd" const.
9712
9713 2013-03-12 Keith Seitz <keiths@redhat.com>
9714
9715 * ada-lang.c (ada_read_renaming_var_value): Pass const
9716 pointer to expression string to parse_exp_1.
9717 (create_excep_cond_exprs): Likewise.
9718 * ax-gdb.c (agent_eval_command_one): Likewise.
9719 (maint_agent_printf_command): Likewise.
9720 Constify much of the string handling/parsing.
9721 * breakpoint.c (set_breakpoint_condition): Pass const
9722 pointer to expression string to parse_exp_1.
9723 (update_watchpoint): Likewise.
9724 (parse_cmd_to_aexpr): Constify string handling.
9725 Pass const pointer to parse_exp_1.
9726 (init_breakpoint_sal): Pass const pointer to parse_exp_1.
9727 (find_condition_and_thread): Likewise.
9728 Make TOK const.
9729 (watch_command_1): Make "arg" const.
9730 Constify string handling.
9731 Copy the expression string instead of changing the input
9732 string.
9733 (update_breakpoint_location): Pass const pointer to
9734 parse_exp_1.
9735 * eval.c (parse_and_eval_address): Make "exp" const.
9736 (parse_to_comma_and_eval): Make "expp" const.
9737 (parse_and_eval): Make "exp" const.
9738 * expression.h (parse_expression): Make argument const.
9739 (parse_exp_1): Make first argument const.
9740 * findcmd.c (parse_find_args): Treat "args" as const.
9741 * linespec.c (parse_linespec): Pass const pointer to
9742 linespec_expression_to_pc.
9743 (linespec_expression_to_pc): Make "exp_ptr" const.
9744 * parse.c (parse_exp_1): Make "stringptr" const.
9745 Make a copy of the expression to pass to parse_exp_in_context until
9746 this whole interface can be constified.
9747 (parse_expression): Make "string" const.
9748 * printcmd.c (ui_printf): Treat "arg" as const.
9749 Handle const strings.
9750 * tracepoint.c (validate_actionline): Pass const pointer to
9751 all calls to parse_exp_1.
9752 (encode_actions_1): Likewise.
9753 * value.h (parse_to_comma_and_eval): Make argument const.
9754 (parse_and_eval_address): Likewise.
9755 (parse_and_eval): Likewise.
9756 * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
9757 (varobj_set_value): Likewise.
9758 * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
9759 constify string handling.
9760 Pass const pointers to parse_and_eval_address and
9761 parse_to_comman_and_eval.
9762 * cli/cli-utils.c (skip_to_space): Rename to ...
9763 (skip_to_space_const): ... this. Handle const strings.
9764 * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
9765 skip_to_space_const.
9766 (skip_to_space_const): Declare.
9767 * common/format.c (parse_format_string): Make "arg" const.
9768 Handle const strings.
9769 * common/format.h (parse_format_string): Make "arg" const.
9770 * gdbserver/ax.c (ax_printf): Make "format" const.
9771 * python/python.c (gdbpy_parse_and_eval): Do not make a copy
9772 of the expression string.
9773
9774 2013-03-12 Hui Zhu <hui@codesourcery.com>
9775
9776 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
9777
9778 2013-03-12 Yao Qi <yao@codesourcery.com>
9779 Hui Zhu <hui@codesourcery.com>
9780
9781 * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
9782 (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
9783 DW_OP_deref_size.
9784
9785 2013-03-12 Paul Hilfinger <hilfingr@adacore.com>
9786
9787 * ada-lex.l (rules): Only recognize 'thread' as a
9788 delimiter when followed by numerals, as for c-exp.y.
9789 Use new rewind_to_char function to rewind the input for
9790 expression-delimiting tokens.
9791 (rewind_to_char): New function.
9792
9793 2013-03-11 Pedro Alves <palves@redhat.com>
9794 Jan Kratochvil <jan.kratochvil@redhat.com>
9795
9796 * configure: Regenerate.
9797 * configure.ac (check dynamic export flag): Link python test with
9798 $PYTHON_LIBS.
9799
9800 2013-03-11 Doug Evans <dje@google.com>
9801 Keith Seitz <keiths@redhat.com>
9802
9803 * linespec.c (find_linespec_symbols): Call find_function_symbols
9804 first, and then call lookup_prefix_sym/find_method.
9805
9806 2013-03-11 Pedro Alves <palves@redhat.com>
9807
9808 * charset.c (convert_between_encodings): Don't cast between
9809 different pointer to pointer types. Instead, make the 'inp' local
9810 be of the type iconv expects.
9811 (wchar_iterate): Don't cast between different pointer to pointer
9812 types. Instead, use new pointer local of the type iconv expects.
9813 * target.c (target_read_stralloc, target_fileio_read_stralloc):
9814 Add new local of type char pointer, and use it to get a
9815 char/string view of the byte buffer, instead of casting between
9816 pointer to pointer types.
9817
9818 2013-03-11 Hafiz Abid Qadeer <abidh@codesourcery.com>
9819
9820 * remote.c (remote_set_trace_buffer_size): Move != operator
9821 to the start of next line to fix an ARI warning.
9822
9823 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9824
9825 * NEWS: Add record changes.
9826
9827 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9828
9829 * record-btrace.c (btrace_insn_history): Omit the pc prefix in
9830 the instruction history disassembly.
9831 * disasm.c (dump_insns): Omit the pc prefix, if requested.
9832 * disasm.h (DISASSEMBLY_OMIT_PC): New.
9833
9834 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9835
9836 * Makefile.in (SFILES): Add record-btrace.c
9837 (COMMON_OBS): Add record-btrace.o
9838 * record-btrace.c: New.
9839 * objfiles.c: Include btrace.h.
9840 (free_objfile): call btrace_free_objfile.
9841
9842 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9843
9844 * target.c (target_call_history, target_call_history_from,
9845 target_call_history_range): New.
9846 * target.h (target_ops) <to_call_history, to_call_history_from,
9847 to_call_history_range>: New fields.
9848 (target_call_history, target_call_history_from,
9849 target_call_history_range): New declaration.
9850 * record.c (get_call_history_modifiers, cmd_record_call_history,
9851 record_call_history_size): New.
9852 (_initialize_record): Add the "record function-call-history" command.
9853 Add "set/show record function-call-history-size" commands.
9854 * record.h (record_print_flag): New.
9855
9856 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9857
9858 * target.h (target_ops) <to_insn_history, to_insn_history_from,
9859 to_insn_history_range>: New fields.
9860 (target_insn_history): New.
9861 (target_insn_history_from): New.
9862 (target_insn_history_range): New.
9863 * target.c (target_insn_history): New.
9864 (target_insn_history_from): New.
9865 (target_insn_history_range): New.
9866 * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
9867 (record_insn_history_size): New.
9868 (get_insn_number): New.
9869 (get_context_size): New.
9870 (no_chunk): New.
9871 (get_insn_history_modifiers): New.
9872 (cmd_record_insn_history): New.
9873 (_initialize_record): Add "set/show record instruction-history-size"
9874 command. Add "record instruction-history" command.
9875
9876 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9877
9878 * record.h (record_disconnect): New.
9879 (record_detach): New.
9880 (record_mourn_inferior): New.
9881 (record_kill): New.
9882 * record-full.c (record_disconnect, record_detach,
9883 record_mourn_inferior, record_kill): Move to...
9884 * record.c: ...here.
9885 (DEBUG): New.
9886 (record_stop): New.
9887 (record_unpush): New.
9888 (cmd_record_stop): Call record_stop. Replace unpush_target
9889 call with record_unpush call.
9890 (record_disconnect, record_detach): Assert that the target
9891 is of record stratum. Call record_unpush, record_stop, and
9892 DEBUG.
9893 (record_mourn_inferior, record_kill): Assert that the target
9894 is of record stratum. Call record_unpush and DEBUG.
9895
9896 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9897
9898 * record-full.h, record-full.c (record_memory_query): Rename
9899 to ...
9900 (record_full_memory_query): ...this. Update all users.
9901 (record_arch_list_add_reg): Rename to ...
9902 (record_full_arch_list_add_reg): ...this. Update all users.
9903 (record_arch_list_add_mem): Rename to ...
9904 (record_full_arch_list_add_mem): ...this. Update all users.
9905 (record_arch_list_add_end): Rename to ...
9906 (record_full_arch_list_add_end): ...this. Update all users.
9907 (record_gdb_operation_disable_set): Rename to ...
9908 (record_full_gdb_operation_disable_set): ...this.
9909 Update all users.
9910
9911 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9912
9913 * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
9914 (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
9915 (RECORD_IS_REPLAY): Renamed to ...
9916 (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
9917 (RECORD_FILE_MAGIC): Renamed to ...
9918 (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
9919 (record_mem_entry): Renamed to ...
9920 (record_full_mem_entry): ... this. Updated all users.
9921 (record_reg_entry): Renamed to ...
9922 (record_full_reg_entry): ... this. Updated all users.
9923 (record_end_entry): Renamed to ...
9924 (record_full_end_entry): ... this. Updated all users.
9925 (record_type) <record_end, record_reg, record_mem>: Renamed
9926 to ...
9927 (record_full_type) <record_full_end, record_full_reg,
9928 record_full_mem>: ... this. Updated all users.
9929 (record_entry): Renamed to ...
9930 (record_full_entry): ... this. Updated all users.
9931 (record_core_buf_entry): Renamed to ...
9932 (record_full_core_buf_entry): ... this. Updated all users.
9933 (record_core_regbuf): Renamed to ...
9934 (record_full_core_regbuf): ... this. Updated all users.
9935 (record_core_start): Renamed to ...
9936 (record_full_core_start): ... this. Updated all users.
9937 (record_core_end): Renamed to ...
9938 (record_full_core_end): ... this. Updated all users.
9939 (record_core_buf_list): Renamed to ...
9940 (record_full_core_buf_list): ... this. Updated all users.
9941 (record_first): Renamed to ...
9942 (record_full_first): ... this. Updated all users.
9943 (record_list): Renamed to ...
9944 (record_full_list): ... this. Updated all users.
9945 (record_arch_list_head): Renamed to ...
9946 (record_full_arch_list_head): ... this. Updated all users.
9947 (record_arch_list_tail): Renamed to ...
9948 (record_full_arch_list_tail): ... this. Updated all users.
9949 (record_stop_at_limit): Renamed to ...
9950 (record_full_stop_at_limit): ... this. Updated all users.
9951 (record_insn_max_num): Renamed to ...
9952 (record_full_insn_max_num): ... this. Updated all users.
9953 (record_insn_num): Renamed to ...
9954 (record_full_insn_num): ... this. Updated all users.
9955 (record_insn_count): Renamed to ...
9956 (record_full_insn_count): ... this. Updated all users.
9957 (record_ops): Renamed to ...
9958 (record_full_ops): ... this. Updated all users.
9959 (record_core_ops): Renamed to ...
9960 (record_full_core_ops): ... this. Updated all users.
9961 (set_record_cmdlist): Renamed to ...
9962 (set_record_full_cmdlist): ... this. Updated all users.
9963 (show_record_cmdlist): Renamed to ...
9964 (show_record_full_cmdlist): ... this. Updated all users.
9965 (record_cmdlist): Renamed to ...
9966 (record_full_cmdlist): ... this. Updated all users.
9967 (record_beneath_to_resume_ops): Renamed to ...
9968 (record_full_beneath_to_resume_ops): ... this. Updated all users.
9969 (record_beneath_to_resume): Renamed to ...
9970 (record_full_beneath_to_resume): ... this. Updated all users.
9971 (record_beneath_to_wait_ops): Renamed to ...
9972 (record_full_beneath_to_wait_ops): ... this. Updated all users.
9973 (record_beneath_to_wait): Renamed to ...
9974 (record_full_beneath_to_wait): ... this. Updated all users.
9975 (record_beneath_to_store_registers_ops): Renamed to ...
9976 (record_full_beneath_to_store_registers_ops): ... this.
9977 Updated all users.
9978 (record_beneath_to_store_registers): Renamed to ...
9979 (record_full_beneath_to_store_registers): ... this.
9980 Updated all users.
9981 (record_beneath_to_xfer_partial_ops): Renamed to ...
9982 (record_full_beneath_to_xfer_partial_ops): ... this.
9983 Updated all users.
9984 (record_beneath_to_xfer_partial): Renamed to ...
9985 (record_full_beneath_to_xfer_partial): ... this.
9986 Updated all users.
9987 (record_beneath_to_insert_breakpoint): Renamed to ...
9988 (record_full_beneath_to_insert_breakpoint): ... this.
9989 Updated all users.
9990 (record_beneath_to_stopped_by_watchpoint): Renamed to ...
9991 (record_full_beneath_to_stopped_by_watchpoint): ... this.
9992 Updated all users.
9993 (record_beneath_to_stopped_data_address): Renamed to ...
9994 (record_full_beneath_to_stopped_data_address): ... this.
9995 Updated all users.
9996 (record_beneath_to_async): Renamed to ...
9997 (record_full_beneath_to_async): ... this. Updated all users.
9998 (record_goto_insn): Renamed to ...
9999 (record_full_goto_insn): ... this. Updated all users.
10000 (record_save): Renamed to ...
10001 (record_full_save): ... this. Updated all users.
10002 (record_reg_alloc): Renamed to ...
10003 (record_full_reg_alloc): ... this. Updated all users.
10004 (record_reg_release): Renamed to ...
10005 (record_full_reg_release): ... this. Updated all users.
10006 (record_mem_alloc): Renamed to ...
10007 (record_full_mem_alloc): ... this. Updated all users.
10008 (record_mem_release): Renamed to ...
10009 (record_full_mem_release): ... this. Updated all users.
10010 (record_end_alloc): Renamed to ...
10011 (record_full_end_alloc): ... this. Updated all users.
10012 (record_end_release): Renamed to ...
10013 (record_full_end_release): ... this. Updated all users.
10014 (record_entry_release): Renamed to ...
10015 (record_full_entry_release): ... this. Updated all users.
10016 (record_list_release): Renamed to ...
10017 (record_full_list_release): ... this. Updated all users.
10018 (record_list_release_following): Renamed to ...
10019 (record_full_list_release_following): ... this.
10020 Updated all users.
10021 (record_list_release_first): Renamed to ...
10022 (record_full_list_release_first): ... this. Updated all users.
10023 (record_arch_list_add): Renamed to ...
10024 (record_full_arch_list_add): ... this. Updated all users.
10025 (record_get_loc): Renamed to ...
10026 (record_full_get_loc): ... this. Updated all users.
10027 (record_check_insn_num): Renamed to ...
10028 (record_full_check_insn_num): ... this. Updated all users.
10029 (record_arch_list_cleanups): Renamed to ...
10030 (record_full_arch_list_cleanups): ... this. Updated all users.
10031 (record_message): Renamed to ...
10032 (record_full_message): ... this. Updated all users.
10033 (record_message_wrapper): Renamed to ...
10034 (record_full_message_wrapper): ... this. Updated all users.
10035 (record_message_wrapper_safe): Renamed to ...
10036 (record_full_message_wrapper_safe): ... this. Updated all users.
10037 (record_gdb_operation_disable): Renamed to ...
10038 (record_full_gdb_operation_disable): ... this. Updated all users.
10039 (record_hw_watchpoint): Renamed to ...
10040 (record_full_hw_watchpoint): ... this. Updated all users.
10041 (record_exec_insn): Renamed to ...
10042 (record_full_exec_insn): ... this. Updated all users.
10043 (record_restore): Renamed to ...
10044 (record_full_restore): ... this. Updated all users.
10045 (record_async_inferior_event_token): Renamed to ...
10046 (record_full_async_inferior_event_token): ... this.
10047 Updated all users.
10048 (record_async_inferior_event_handler): Renamed to ...
10049 (record_full_async_inferior_event_handler): ... this.
10050 Updated all users.
10051 (record_core_open_1): Renamed to ...
10052 (record_full_core_open_1): ... this. Updated all users.
10053 (record_open_1): Renamed to ...
10054 (record_full_open_1): ... this. Updated all users.
10055 (record_open): Renamed to ...
10056 (record_full_open): ... this. Updated all users.
10057 (record_close): Renamed to ...
10058 (record_full_close): ... this. Updated all users.
10059 (record_resume_step): Renamed to ...
10060 (record_full_resume_step): ... this. Updated all users.
10061 (record_resumed): Renamed to ...
10062 (record_full_resumed): ... this. Updated all users.
10063 (record_execution_dir): Renamed to ...
10064 (record_full_execution_dir): ... this. Updated all users.
10065 (record_resume): Renamed to ...
10066 (record_full_resume): ... this. Updated all users.
10067 (record_get_sig): Renamed to ...
10068 (record_full_get_sig): ... this. Updated all users.
10069 (record_sig_handler): Renamed to ...
10070 (record_full_sig_handler): ... this. Updated all users.
10071 (record_wait_cleanups): Renamed to ...
10072 (record_full_wait_cleanups): ... this. Updated all users.
10073 (record_wait_1): Renamed to ...
10074 (record_full_wait_1): ... this. Updated all users.
10075 (record_wait): Renamed to ...
10076 (record_full_wait): ... this. Updated all users.
10077 (record_stopped_by_watchpoint): Renamed to ...
10078 (record_full_stopped_by_watchpoint): ... this. Updated all users.
10079 (record_disconnect): Renamed to ...
10080 (record_full_disconnect): ... this. Updated all users.
10081 (record_detach): Renamed to ...
10082 (record_full_detach): ... this. Updated all users.
10083 (record_mourn_inferior): Renamed to ...
10084 (record_full_mourn_inferior): ... this. Updated all users.
10085 (record_kill): Renamed to ...
10086 (record_full_kill): ... this. Updated all users.
10087 (record_stopped_data_address): Renamed to ...
10088 (record_full_stopped_data_address): ... this. Updated all users.
10089 (record_registers_change): Renamed to ...
10090 (record_full_registers_change): ... this. Updated all users.
10091 (record_store_registers): Renamed to ...
10092 (record_full_store_registers): ... this. Updated all users.
10093 (record_xfer_partial): Renamed to ...
10094 (record_full_xfer_partial): ... this. Updated all users.
10095 (record_breakpoint): Renamed to ...
10096 (record_full_breakpoint): ... this. Updated all users.
10097 (record_breakpoint_p): Renamed to ...
10098 (record_full_breakpoint_p): ... this. Updated all users.
10099 (record_breakpoints): Renamed to ...
10100 (record_full_breakpoints): ... this. Updated all users.
10101 (record_sync_record_breakpoints): Renamed to ...
10102 (record_full_sync_record_breakpoints): ... this.
10103 Updated all users.
10104 (record_init_record_breakpoints): Renamed to ...
10105 (record_full_init_record_breakpoints): ... this.
10106 Updated all users.
10107 (record_insert_breakpoint): Renamed to ...
10108 (record_full_insert_breakpoint): ... this. Updated all users.
10109 (record_remove_breakpoint): Renamed to ...
10110 (record_full_remove_breakpoint): ... this. Updated all users.
10111 (record_can_execute_reverse): Renamed to ...
10112 (record_full_can_execute_reverse): ... this. Updated all users.
10113 (record_get_bookmark): Renamed to ...
10114 (record_full_get_bookmark): ... this. Updated all users.
10115 (record_goto_bookmark): Renamed to ...
10116 (record_full_goto_bookmark): ... this. Updated all users.
10117 (record_async): Renamed to ...
10118 (record_full_async): ... this. Updated all users.
10119 (record_can_async_p): Renamed to ...
10120 (record_full_can_async_p): ... this. Updated all users.
10121 (record_is_async_p): Renamed to ...
10122 (record_full_is_async_p): ... this. Updated all users.
10123 (record_execution_direction): Renamed to ...
10124 (record_full_execution_direction): ... this. Updated all users.
10125 (record_info): Renamed to ...
10126 (record_full_info): ... this. Updated all users.
10127 (record_delete): Renamed to ...
10128 (record_full_delete): ... this. Updated all users.
10129 (record_is_replaying): Renamed to ...
10130 (record_full_is_replaying): ... this. Updated all users.
10131 (record_goto_entry): Renamed to ...
10132 (record_full_goto_entry): ... this. Updated all users.
10133 (record_goto_begin): Renamed to ...
10134 (record_full_goto_begin): ... this. Updated all users.
10135 (record_goto_end): Renamed to ...
10136 (record_full_goto_end): ... this. Updated all users.
10137 (record_goto): Renamed to ...
10138 (record_full_goto): ... this. Updated all users.
10139 (init_record_ops): Renamed to ...
10140 (init_record_full_ops): ... this. Updated all users.
10141 (record_core_resume): Renamed to ...
10142 (record_full_core_resume): ... this. Updated all users.
10143 (record_core_kill): Renamed to ...
10144 (record_full_core_kill): ... this. Updated all users.
10145 (record_core_fetch_registers): Renamed to ...
10146 (record_full_core_fetch_registers): ... this. Updated all users.
10147 (record_core_prepare_to_store): Renamed to ...
10148 (record_full_core_prepare_to_store): ... this. Updated all users.
10149 (record_core_store_registers): Renamed to ...
10150 (record_full_core_store_registers): ... this. Updated all users.
10151 (record_core_xfer_partial): Renamed to ...
10152 (record_full_core_xfer_partial): ... this. Updated all users.
10153 (record_core_insert_breakpoint): Renamed to ...
10154 (record_full_core_insert_breakpoint): ... this. Updated all users.
10155 (record_core_remove_breakpoint): Renamed to ...
10156 (record_full_core_remove_breakpoint): ... this. Updated all users.
10157 (record_core_has_execution): Renamed to ...
10158 (record_full_core_has_execution): ... this. Updated all users.
10159 (init_record_core_ops): Renamed to ...
10160 (init_record_full_core_ops): ... this. Updated all users.
10161 (cmd_record_restore): Renamed to ...
10162 (cmd_record_full_restore): ... this. Updated all users.
10163 (record_save_cleanups): Renamed to ...
10164 (record_full_save_cleanups): ... this. Updated all users.
10165 (cmd_record_start): Renamed to ...
10166 (cmd_record_full_start): ... this. Updated all users.
10167 (set_record_insn_max_num): Renamed to ...
10168 (set_record_full_insn_max_num): ... this. Updated all users.
10169 (set_record_command): Renamed to ...
10170 (set_record_full_command): ... this. Updated all users.
10171 (show_record_command): Renamed to ...
10172 (show_record_full_command): ... this. Updated all users.
10173 (_initialize_record): Renamed to ...
10174 (_initialize_record_full): ... this. Updated all users.
10175
10176 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10177
10178 * record.h: Split into this and ...
10179 * record-full.h: ... this.
10180 * record.c: Split into this and ...
10181 * record-full.c: ... this.
10182 * target.h (target_ops): Add new fields to_info_record,
10183 to_save_record, to_delete_record, to_record_is_replaying,
10184 to_goto_record_begin, to_goto_record_end, to_goto_record.
10185 (target_info_record): New.
10186 (target_save_record): New.
10187 (target_supports_delete_record): New.
10188 (target_delete_record): New.
10189 (target_record_is_replaying): New.
10190 (target_goto_record_begin): New.
10191 (target_goto_record_end): New.
10192 (target_goto_record): New.
10193 * target.c (target_info_record): New.
10194 (target_save_record): New.
10195 (target_supports_delete_record): New.
10196 (target_delete_record): New.
10197 (target_record_is_replaying): New.
10198 (target_goto_record_begin): New.
10199 (target_goto_record_end): New.
10200 (target_goto_record): New.
10201 * record.h: Declare struct cmd_list_element.
10202 (record_cmdlist): New declaration.
10203 (set_record_cmdlist): New declaration.
10204 (show_record_cmdlist): New declaration.
10205 (info_record_cmdlist): New declaration.
10206 (cmd_record_goto): New declaration.
10207 * record.c: Remove unnecessary includes.
10208 Include inferior.h.
10209 (cmd_record_goto): Remove declaration.
10210 (record_cmdlist): Now extern. Initialize.
10211 (set_record_cmdlist): Now extern. Initialize.
10212 (show_record_cmdlist): Now extern. Initialize.
10213 (info_record_cmdlist): Now extern. Initialize.
10214 (find_record_target): New.
10215 (require_record_target): New.
10216 (cmd_record_start): Update.
10217 (cmd_record_delete): Remove target-specific code.
10218 Call target_delete_record.
10219 (cmd_record_stop): Unpush any record target.
10220 (set_record_insn_max_num): Move to record-full.c
10221 (set_record_command): Add comment.
10222 (show_record_command): Add comment.
10223 (info_record_command): Update comment.
10224 Remove target-specific code.
10225 Call the record target's to_info_record.
10226 (cmd_record_start): New.
10227 (cmd_record_goto): Now extern.
10228 Remove target-specific code.
10229 Call target_goto_begin, target_goto_end, or target_goto.
10230 (_initialize_record): Move record target ops initialization to
10231 record-full.c.
10232 Change "record" command help text.
10233 Move "record restore", "record set", and "record show" commands to
10234 record-full.c.
10235 * Makefile.in (SFILES): Add record-full.c.
10236 (HFILES_NO_SRCDIR): Add record-full.h.
10237 (COMMON_OBS): Add record-full.o.
10238 * amd64-linux-tdep.c: Include record-full.h instead of record.h.
10239 * arm-tdep.c: Include record-full.h.
10240 * i386-linux-tdep.c: Include record-full.h instead of record.h.
10241 * i386-tdep.c: Include record-full.h.
10242 * infrun.c: Include record-full.h.
10243 * linux-record.c: Include record-full.h.
10244 * moxie-tdep.c: Include record-full.h.
10245 * record-full.c: Include record-full.h.
10246 Change module comment.
10247 (set_record_full_cmdlist): New.
10248 (show_record_full_cmdlist): New.
10249 (record_full_cmdlist): New.
10250 (record_goto_insn): New declaration.
10251 (record_save): New declaration.
10252 (record_check_insn_num): Change query string.
10253 (record_info): New.
10254 (record_delete): New.
10255 (record_is_replaying): New.
10256 (record_goto_entry): New.
10257 (record_goto_begin): New.
10258 (record_goto_end): New.
10259 (record_goto): New.
10260 (init_record_ops): Update.
10261 (init_record_core_ops): Update.
10262 (cmd_record_save): Rename to record_save. Remove target and arg checks.
10263 (cmd_record_start): New.
10264 (set_record_insn_max_num): Moved from record.c
10265 (set_record_full_command): New.
10266 (show_record_full_command): New.
10267 (_initialize_record_full): New.
10268
10269 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10270
10271 * target.h (add_deprecated_target_alias): New.
10272 * target.c (add_deprecated_target_alias): New.
10273
10274 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10275
10276 * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
10277 and signal.h.
10278 (linux_supports_btrace): Add kernel and
10279 cpuid check.
10280 (kernel_supports_btrace): New function.
10281 (cpu_supports_btrace): New function.
10282 (intel_supports_btrace): New function.
10283
10284 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10285
10286 * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
10287 * remote.c: Include btrace.h.
10288 (struct btrace_target_info): New struct.
10289 (remote_supports_btrace): New function.
10290 (send_Qbtrace): New function.
10291 (remote_enable_btrace): New function.
10292 (remote_disable_btrace): New function.
10293 (remote_teardown_btrace): New function.
10294 (remote_read_btrace): New function.
10295 (init_remote_ops): Add btrace ops.
10296 (enum <unnamed>): Add btrace packets.
10297 (struct protocol_feature remote_protocol_features[]): Add btrace packets.
10298 (_initialize_remote): Add packet configuration for branch tracing.
10299
10300 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10301
10302 * features/btrace.dtd: New file.
10303 * Makefile.in (XMLFILES): Add btrace.dtd.
10304 * btrace.h (parse_xml_btrace): New declaration.
10305 * btrace.c: Include xml-support.h.
10306 (parse_xml_btrace): New function.
10307 (parse_xml_btrace_block): New function.
10308 (block_attributes): New struct.
10309 (btrace_attributes): New struct.
10310 (btrace_children): New struct.
10311 (btrace_elements): New struct.
10312
10313 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10314
10315 * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
10316 (amd64_linux_enable_btrace): New.
10317 (amd64_linux_disable_btrace): New.
10318 (amd64_linux_teardown_btrace): New.
10319 (_initialize_amd64_linux_nat): Initialize btrace ops.
10320 * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
10321 (i386_linux_enable_btrace): New.
10322 (i386_linux_disable_btrace): New.
10323 (i386_linux_teardown_btrace): New.
10324 (_initialize_i386_linux_nat): Initialize btrace ops.
10325 * config/i386/linux.mh: Add linux-btrace.o.
10326 * config/i386/linux64.mh: Add linux-btrace.o.
10327
10328 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10329
10330 * common/linux_btrace.h: New file.
10331 * common/linux_btrace.c: New file.
10332 * Makefile.in (SFILES): Add btrace.c.
10333 (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
10334 (COMMON_OBS): Add btrace.o.
10335 (linux-btrace.o): New rule.
10336
10337 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10338
10339 * target.h: Include btrace.h.
10340 (struct target_ops) <to_supports_btrace, to_enable_btrace,
10341 to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
10342 * target.c (target_supports_btrace): New function.
10343 (target_enable_btrace): New function.
10344 (target_disable_btrace): New function.
10345 (target_teardown_btrace): New function.
10346 (target_read_btrace): New function.
10347 * btrace.h: New file.
10348 * btrace.c: New file.
10349 * Makefile.in: Add btrace.c.
10350 * gdbthread.h: Include btrace.h.
10351 (struct thread_info): Add btrace field.
10352 * thread.c: Include btrace.h.
10353 (clear_thread_inferior_resources): Call target_teardown_btrace.
10354 * common/btrace-common.h: New file.
10355
10356 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
10357
10358 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
10359 for CHILD, ignore PTRACE_KILL errors, move the inner block variable
10360 kill_status to outer block.
10361
10362 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
10363
10364 Fix entry-values if the callee called a noreturn function.
10365 * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
10366 get_frame_address_in_block. Add new comment.
10367
10368 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
10369
10370 Fix entry-values in C++ across CUs.
10371 * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
10372 lookup_minimal_symbol. Add a comment.
10373 * dwarf2read.c
10374 (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
10375 DW_AT_linkage_name.
10376
10377 2013-03-08 Yao Qi <yao@codesourcery.com>
10378
10379 * tracepoint.c (_initialize_tracepoint): Indent the code.
10380
10381 2013-03-08 Pedro Alves <palves@redhat.com>
10382
10383 * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
10384 (parse_find_args, find_command): Change type of pattern buffer
10385 locals to 'gdb_byte *'.
10386
10387 2013-03-08 Stan Shebs <stan@codesourcery.com>
10388 Hafiz Abid Qadeer <abidh@codesourcery.com>
10389
10390 * NEWS: Mention set and show trace-buffer-size commands.
10391 Mention new packet.
10392 * target.h (struct target_ops): New method
10393 to_set_trace_buffer_size.
10394 (target_set_trace_buffer_size): New macro.
10395 * target.c (update_current_target): Set up new method.
10396 * tracepoint.c (trace_buffer_size): New global.
10397 (start_tracing): Send it to the target.
10398 (set_trace_buffer_size): New function.
10399 (_initialize_tracepoint): Add new setshow for trace-buffer-size.
10400 * remote.c (remote_set_trace_buffer_size): New function.
10401 (_initialize_remote): Use it.
10402 (QTBuffer:size) New remote command.
10403 (PACKET_QTBuffer_size): New enum.
10404 (remote_protocol_features): Add an entry for
10405 PACKET_QTBuffer_size.
10406
10407 2013-03-08 Tom Tromey <tromey@redhat.com>
10408
10409 * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
10410 variable.
10411
10412 2013-03-07 Pedro Alves <palves@redhat.com>
10413
10414 * target.c (target_read_stralloc, target_fileio_read_alloc):
10415 *Cast pointer to 'gdb_byte *' in target call.
10416
10417 2013-03-07 Pedro Alves <palves@redhat.com>
10418
10419 * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
10420 call.
10421
10422 2013-03-07 Keith Seitz <keiths@redhat.com>
10423
10424 * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
10425 (trace_pass_command): Likewise.
10426 * cli/cli-cmds.c: Include cli/cli-utils.h.
10427 (source_command): Use skip-spaces.
10428 (disassemble_command): Likewise.
10429 * findcmd.c: Include cli/cli-utils.h.
10430 (parse_find_args): Use skip_spaces.
10431 * go32-nat.c: Include cli/cli-utils.h.
10432 (go32_sldt): Use skip_spaces.
10433 (go32_sgdt): Likewise.
10434 (go32_sidt): Likewise.
10435 (go32_pde): Likewise.
10436 (go32_pte): Likewise.
10437 (go32_pte_for_address): Likewise.
10438 * infcmd.c: Include cli/cli-utils.h.
10439 (registers_info): Use skip_spaces.
10440 * linux-tdep.c (read_mapping): Use skip_spaces_const.
10441 (linux_info_proc): Likewise.
10442 * linux-thread-db.c: Include cli/cli-utils.h.
10443 (info_auto_load_libthread_db): Use skip_spaces_const.
10444 * m32r-rom.c: Include cli/cli-utils.h.
10445 (m32r_upload_command): Use skip_spaces.
10446 * maint.c: Include cli/cli-utils.h.
10447 (maintenance_translate_address): Use skip_spaces.
10448 * mi/mi-parse.c: Include cli/cli-utils.h.
10449 (mi_parse_argv): Use skip_spaces.
10450 (mi_parse): Likewise.
10451 * minsyms.c: Include cli/cli-utils.h.
10452 (msymbol_hash_iw): Use skip_spaces_const.
10453 * objc-lang.c: Include cli/cli-utils.h.
10454 (parse_selector): Use skip_spaces.
10455 (parse_method): Likewise.
10456 * python/python.c: Include cli/cli-utils.h.
10457 (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
10458 (python_command)[HAVE_PYTHON]: Likewise.
10459 (python_interactive_command)[!HAVE_PYTHON]: Likewise.
10460 * remote-m32r-sdi.c: Include cli/cli-utils.h.
10461 (m32r_load): Use skip_spaces.
10462 * serial.c: Include cli/cli-utils.h.
10463 (serial_open): Use skip_spaces_const.
10464 * stack.c: Include cli/cli-utils.h.
10465 (parse_frame_specification_1): Use skip_spaces_const.
10466 * symfile.c: Include cli/cli-utils.h.
10467 (set_ext_lang_command): Use skip_spaces.
10468 * symtab.c: Include cli/cli-utils.h.
10469 (rbreak_command): Use skip_spaces.
10470 * thread.c (thread_name_command): Use skip_spaces.
10471 * tracepoint.c (validate_actionline): Use skip_spaces.
10472 (encode_actions_1): Likewise.
10473 (trace_find_range_command): Likewise.
10474 (trace_find_outside_command): Likewise.
10475 (trace_dump_actions): Likewise.
10476
10477 2013-03-07 Pedro Alves <palves@redhat.com>
10478
10479 * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
10480 * expprint.c (print_subexp_standard): Likewise.
10481 * utils.c (host_char_to_target): Likewise.
10482 * valprint.c (generic_emit_char, generic_printstr): Likewise.
10483 * varobj.c (value_get_print_value): Change type of local to char*.
10484 Cast it gdb_byte * in call to language printer.
10485
10486 2013-03-07 Pedro Alves <palves@redhat.com>
10487
10488 * charset.c (struct wchar_iterator) <input>: Change type to 'const
10489 gdb_byte *'.
10490 (make_wchar_iterator): Remove cast to char*.
10491 (wchar_iterate): Change type of local.
10492
10493 2013-03-07 Pedro Alves <palves@redhat.com>
10494
10495 * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
10496 for 'regcache->register_status'.
10497
10498 2013-03-07 Pedro Alves <palves@redhat.com>
10499
10500 * breakpoint.c (breakpoint_xfer_memory): Change type of local to
10501 int.
10502
10503 2013-03-07 Pedro Alves <palves@redhat.com>
10504
10505 * stap-probe.c (handle_stap_probe): Add cast to char*.
10506
10507 2013-03-07 Pedro Alves <palves@redhat.com>
10508
10509 * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
10510 RECORD_MSGRCV>: Pass a signed variable to
10511 regcache_raw_read_signed, instead of an unsigned one.
10512
10513 2013-03-07 Pedro Alves <palves@redhat.com>
10514
10515 * remote-notif.c (notif_debug): Change type to int.
10516 * remote-notif.h (notif_debug): Likewise.
10517
10518 2013-03-07 Pedro Alves <palves@redhat.com>
10519
10520 * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
10521
10522 2013-03-07 Pedro Alves <palves@redhat.com>
10523
10524 * remote.c (hex2bin, bin2hex): Move extern declarations to ...
10525 * remote.h (hex2bin, bin2hex): ... here.
10526 * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
10527
10528 2013-03-07 Eli Zaretskii <eliz@gnu.org>
10529
10530 * utils.c (initialize_utils): Improve doc strings of "set/show
10531 width", "set/show height", and "set/show pagination".
10532
10533 2013-03-06 Keith Seitz <keiths@redhat.com>
10534
10535 * ax-gdb.c (gen_printf): Make FORMAT const.
10536 * ax-gdb.h (gen_printf): Likewise.
10537 * ax-general.c (ax_string): Make STR const.
10538 * ax.h (ax_string): Likewise.
10539
10540 2013-03-06 Doug Evans <dje@google.com>
10541
10542 * elfread.c (elf_symfile_read): Move debugging printf to more
10543 logical location.
10544
10545 2013-03-06 Pedro Alves <palves@redhat.com>
10546
10547 * python/py-utils.c (target_string_to_unicode): Delete function.
10548 * python/python-internal.h (target_string_to_unicode): Delete
10549 declaration.
10550
10551 2013-03-06 Pierre Muller <muller@sourceware.org>
10552
10553 * linespec.c (get_current_search_block): ARI fix, use (void)
10554 for empty parameter list.
10555
10556 2013-03-05 Doug Evans <dje@google.com>
10557
10558 * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
10559 of old ada_lookup_symbol_list. In !full_search case, don't
10560 search superblocks.
10561 (ada_lookup_symbol_list): Delete arg full_search, all callers
10562 updated. Call ada_lookup_symbol_list_worker.
10563 (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
10564 * ada-lang.h (ada_lookup_symbol_list): Update.
10565 * language.h (language_defn): Update comment for
10566 la_iterate_over_symbols.
10567 * linespec.c (iterate_over_file_blocks): New function.
10568 (iterate_over_all_matching_symtabs): Call it.
10569 (lookup_prefix_sym): Ditto.
10570 (get_current_search_block): New function.
10571 (get_search_block): Delete.
10572 (find_label_symbols): Call get_current_search_block.
10573 (add_matching_symbols_to_info): Call iterate_over_file_blocks.
10574 * symtab.c (iterate_over_symbols): Don't search superblocks.
10575
10576 2013-03-05 Yao Qi <yao@codesourcery.com>
10577
10578 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
10579 parameter VAR's type from "unsigned int" to "int".
10580 * command.h (var_zuinteger_unlimited): Update its comments.
10581 (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
10582
10583 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
10584
10585 * NEWS: Mention new target x86_64-*-cygwin*.
10586
10587 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
10588
10589 * configure.host: Add x86_64-*-cygwin* as host.
10590 * configure.tgt: Add x86_64-*-cygwin* as target.
10591 * config/i386/cygwin64.mh: New file.
10592
10593 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
10594
10595 * linespec.c (decode_line_2): Fix duplicate request off by two message.
10596
10597 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
10598
10599 * linespec.c (struct linespec_canonical_name): New.
10600 (struct linespec_state): Change canonical_names type to it.
10601 (add_sal_to_sals): Change variable canonical_name to canonical. Change
10602 xrealloc element size. Initialize the different CANONICAL fields.
10603 (canonical_to_fullform): New.
10604 (filter_results): Use it. Add variables canonical, fullform and
10605 cleanup.
10606 (struct decode_line_2_item, decode_line_2_compare_items): New.
10607 (decode_line_2): Remove variables iter and item_names, add variables
10608 items and items_count. Modify the code for these new variables.
10609
10610 2013-03-04 Corinna Vinschen <vinschen@redhat.com>
10611
10612 * coff-pe-read.c (read_pe_exported_syms): Don't return without
10613 calling do_cleanup.
10614
10615 2013-03-04 Luis Machado <lgustavo@codesourcery.com>
10616
10617 * tracepoint.c (build_traceframe_info): Add code for byte order.
10618
10619 2013-03-02 Kevin Buettner <kevinb@redhat.com>
10620
10621 * v850-tdep.c: (v850e2_register_name): Revise system register
10622 names to match current V850E2M architecture specifications.
10623 Update register number enum comments too.
10624
10625 2013-03-01 Jiong Wang <jiwang@tilera.com>
10626 Pedro Alves <palves@redhat.com>
10627
10628 * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
10629 to END_ADDR.
10630 (tilegx_skip_prologue): Limit prologue analysis to section end.
10631
10632 2013-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10633
10634 * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
10635 use it.
10636
10637 2013-03-01 Pedro Alves <palves@redhat.com>
10638
10639 Use gdb_byte for bytes from the program being debugged.
10640
10641 * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
10642 Change type of local 'buf' to gdb_byte.
10643 * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
10644 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
10645 * cris-tdep.c (cris_sigcontext_addr)
10646 (cris_sigtramp_frame_unwind_cache): Likewise.
10647 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
10648 (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
10649 Likewise.
10650 * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
10651 * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
10652 (hppa32_hpux_search_dummy_call_sequence)
10653 (hppa_hpux_supply_save_state): Likewise.
10654 * hppa-linux-tdep.c (insns_match_pattern)
10655 (hppa_linux_find_global_pointer): Likewise.
10656 * hppa-tdep.c (hppa_in_function_epilogue_p)
10657 (skip_prologue_hard_way, hppa_frame_cache): Likewise.
10658 * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
10659 * i386fbsd-tdep.c (i386fbsd_supply_uthread)
10660 (i386fbsd_collect_uthread): Likewise.
10661 * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
10662 * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
10663 * ia64-tdep.c (examine_prologue, ia64_frame_cache)
10664 (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
10665 (ia64_sigtramp_frame_prev_register, ia64_access_reg)
10666 (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
10667 (ia64_libunwind_frame_prev_register)
10668 (ia64_libunwind_sigtramp_frame_this_id)
10669 (ia64_find_global_pointer_from_dynamic_section)
10670 (find_extant_func_descr, find_func_descr, ia64_dummy_id)
10671 (ia64_unwind_pc): Likewise.
10672 * iq2000-tdep.c (iq2000_store_return_value): Likewise.
10673 * m68hc11-tdep.c (m68hc11_push_dummy_call)
10674 (m68hc11_extract_return_value): Likewise.
10675 * m68klinux-nat.c (fetch_register, store_register): Likewise.
10676 * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
10677 (mep_get_insn, mep_push_dummy_call): Likewise.
10678 * mips-linux-tdep.c (mips_linux_get_longjmp_target)
10679 (mips_linux_in_dynsym_stub): Likewise.
10680 * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
10681 * ppc-linux-nat.c (fetch_register, store_register): Likewise.
10682 * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
10683 to gdb_byte.
10684 * remote-mips.c (mips_set_register): Likewise.
10685 * remote-sim.c (gdbsim_fetch_register): Likewise.
10686 * score-tdep.c (score7_fetch_inst): Change type of parameter
10687 'memblock' and local 'buf' to gdb_byte.
10688 (score7_malloc_and_get_memblock): Change return type to gdb_byte.
10689 Change type of local 'buf' to gdb_byte. Adjust.
10690 (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
10691 to gdb_byte**.
10692 (score7_analyze_prologue): Change type of 'memblock' and
10693 'memblock_ptr' locals to gdb_byte*.
10694 * sh64-tdep.c (sh64_extract_return_value)
10695 (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
10696 * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
10697 * solib-pa64.c (pa64_solib_create_inferior_hook)
10698 (pa64_open_symbol_file_object): Remove local 'buf'.
10699 * solib-som.c (som_solib_create_inferior_hook, link_map_start)
10700 (som_open_symbol_file_object): Likewise.
10701 * solib-spu.c (spu_current_sos): Likewise.
10702 * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
10703 * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
10704 (spu_store_registers): Likewise.
10705 * target.c (debug_print_register): Likewise.
10706 * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
10707 * xstormy16-tdep.c (xstormy16_store_return_value)
10708 (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
10709 (xstormy16_find_jmp_table_entry): Likewise.
10710
10711 2013-03-01 Jiong Wang <jiwang@tilera.com>
10712
10713 * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
10714 (tilegx_gdbarch_init): Install it.
10715
10716 2013-02-28 Tom Tromey <tromey@redhat.com>
10717
10718 * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
10719 PyLong_Check.
10720
10721 2013-02-28 Doug Evans <dje@google.com>
10722
10723 * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
10724 * python/python.c (gdbpy_find_pc_line): Ditto.
10725
10726 2013-02-28 Tom Tromey <tromey@redhat.com>
10727
10728 * contrib/excheck.py: New file.
10729 * contrib/exsummary.py: New file.
10730 * contrib/gcc-with-excheck: New file.
10731
10732 2013-02-28 Tom Tromey <tromey@redhat.com>
10733
10734 * python/python.c (gdbpy_print_stack): Call begin_line and
10735 fprintf_filtered inside TRY_CATCH.
10736
10737 2013-02-28 Tom Tromey <tromey@redhat.com>
10738
10739 * python/python.c (gdbpy_find_pc_line): Call find_pc_line
10740 inside TRY_CATCH.
10741
10742 2013-02-28 Tom Tromey <tromey@redhat.com>
10743
10744 * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
10745 frame_object_to_frame_info inside TRY_CATCH.
10746
10747 2013-02-28 Tom Tromey <tromey@redhat.com>
10748
10749 * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
10750 TRY_CATCH.
10751
10752 2013-02-28 Tom Tromey <tromey@redhat.com>
10753
10754 * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
10755
10756 2013-02-27 Corinna Vinschen <vinschen@redhat.com>
10757
10758 * windows-nat.c: Throughout, fix format strings and casts of
10759 printf-like functions to avoid type related warnings on all
10760 platforms.
10761 (handle_output_debug_string): Fetch context information address
10762 from debug string using string_to_core_addr.
10763
10764 2013-02-27 Jiong Wang <jiwang@tilera.com>
10765
10766 * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
10767 * regformats/reg-tilegx32.dat: New.
10768
10769 2013-02-27 Jiong Wang <jiwang@tilera.com>
10770
10771 * configure.tgt (tilegx-*-linux*): Enable gdbserver.
10772
10773 2013-02-27 Jiong Wang <jiwang@tilera.com>
10774
10775 * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
10776
10777 2013-02-27 Yao Qi <yao@codesourcery.com>
10778 Pedro Alves <palves@redhat.com>
10779
10780 * tracepoint.c (tfile_trace_find): For tfind
10781 pc/tp/range/outside, look for the next trace frame instead of
10782 always starting from frame 0.
10783
10784 2013-02-26 Anthony Green <green@moxielogic.com>
10785
10786 * configure.tgt: Add support for moxie-*-rtems* target.
10787
10788 2013-02-25 Pedro Alves <palves@redhat.com>
10789
10790 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
10791 warning text.
10792
10793 2013-02-24 Maciej W. Rozycki <macro@codesourcery.com>
10794
10795 * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
10796 if $fp is used as the virtual frame pointer.
10797
10798 2013-02-23 Alan Modra <amodra@gmail.com>
10799
10800 * elfread.c (elf_symtab_read): Do not use udata.p here to find
10801 symbol size.
10802 * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
10803 * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
10804 * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
10805 * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
10806
10807 2013-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
10808
10809 Code cleanup.
10810 * elfread.c (build_id_bfd_get): Make the return type const.
10811 (build_id_verify): Make the check parameter const.
10812 (build_id_to_debug_filename): Make the build_id parameter and variable
10813 data const.
10814 (find_separate_debug_file_by_buildid): Make the variable build_id const.
10815
10816 2013-02-21 Alan Modra <amodra@gmail.com>
10817
10818 * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
10819
10820 2013-02-20 Siva Chandra Reddy <sivachandra@google.com>
10821
10822 Add a new method 'disassemble' to gdb.Architecture class.
10823 * python/py-arch.c (archpy_disassmble): Implementation of the
10824 new method gdb.Architecture.disassemble.
10825 (arch_object_methods): Add entry for the new method.
10826
10827 2013-02-20 Jiong Wang <jiwang@tilera.com>
10828
10829 * MAINTAINERS (Write After Approval): Add myself to the list.
10830
10831 2013-02-19 Pedro Alves <palves@redhat.com>
10832
10833 Garbage collect 'struct monitor_ops'::load_routine.
10834
10835 * monitor.h (struct monitor_ops) <load_routine>: Remove field.
10836 * monitor.c (monitor_load): No longer call
10837 current_monitor->load_routine.
10838 * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
10839 * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
10840 * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
10841
10842 2013-02-19 Pedro Alves <palves@redhat.com>
10843
10844 PR gdb/15161
10845
10846 Harmonize with generic_load.
10847
10848 * monitor.c: Include "readline/readline.h".
10849 (monitor_load): Rename parameter 'file' to 'args'. Use build_argv
10850 instead of sscanf. Use CORE_ADDR/strtoulst instead of unsigned
10851 long/strtol for the 'load_offset' local. Error out if no argument
10852 is given or if too many arguments are given. Tilde expand the
10853 passed in file name.
10854
10855 2013-02-19 Kai Tietz <ktietz@redhat.com>
10856
10857 PR gdb/15161
10858 * symfile.c (load_section_data): Change type of load_offset
10859 to CORE_ADDR.
10860 (generic_load): User strtoulst instead of strtoul for conversion
10861 of load_offset.
10862
10863 2013-02-19 Jiong Wang <jiwang@tilera.com>
10864
10865 * tilegx-tdep.c (tilegx_analyze_prologue): add check for
10866 for return address, "lr" register, saved on stack.
10867 * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
10868 after we invoke tilegx_analyze_prologue.
10869
10870 2013-02-19 Jiong Wang <jiwang@tilera.com>
10871
10872 * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
10873
10874 2013-02-19 Jiong Wang <jiwang@tilera.com>
10875
10876 * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
10877
10878 2013-02-19 Jiong Wang <jiwang@tilera.com>
10879
10880 * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
10881 (tilegx_write_pc): New function.
10882 (tilegx_cannot_reference_register): Return zero if REGNO
10883 is TILEGX_FAULTNUM_REGNUM.
10884 (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
10885 (tilegx_register_name): Add handling of "faultnum" register.
10886 * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
10887 * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
10888 handling of TILEGX_FAULTNUM_REGNUM.
10889 * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
10890
10891 2013-02-19 Jiong Wang <jiwang@tilera.com>
10892
10893 * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
10894 should be aligned to 64bit.
10895
10896 2013-02-19 Kai Tietz <ktietz@redhat.com>
10897
10898 * windows-nat.c (windows_xfer_memory): Fix debug-output
10899 for LLP64.
10900
10901 2013-02-19 Lei Liu <lei.liu2@windriver.com>
10902
10903 * mips-linux-nat.c (mips64_linux_regsets_store_registers):
10904 Don't check DSP register number if HAVE_DSP is not set.
10905
10906 2013-02-19 Alan Modra <amodra@gmail.com>
10907
10908 * elfread.c (struct build_id): Delete. Use struct elf_build_id
10909 throughout file instead.
10910 (build_id_bfd_get): Update to use new elf_tdata build_id field.
10911 Don't xmalloc return value.
10912 (build_id_verify): Similarly. Don't xfree.
10913 (build_id_to_debug_filename): Update.
10914 (find_separate_debug_file_by_buildid): Update, don't xfree.
10915
10916 2013-02-18 Tom Tromey <tromey@redhat.com>
10917
10918 PR gdb/15102:
10919 * dwarf2read.c (read_subrange_type): Use result of
10920 'check_typedef'.
10921
10922 2013-02-16 Yuanhui Zhang <asmwarrior@gmail.com>
10923
10924 * frame.c: Remove one extra white space after #include
10925 directive.
10926
10927 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
10928
10929 * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
10930
10931 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
10932
10933 * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
10934 and dir commands into an if block.
10935
10936 2013-02-15 Sanimir Agovic <sanimir.agovic@intel.com>
10937
10938 * python/py-breakpoint (struct pybp_code): Use int instead of
10939 enum type_code.
10940
10941 2013-02-15 Pedro Alves <pedro@codesourcery.com>
10942 Hafiz Abid Qadeer <abidh@codesourcery.com>
10943
10944 * NEWS: Mention new field "trace-file".
10945 * tracepoint.c (trace_status_mi): Output "trace-file" field.
10946 (tfile_open): Record the trace file's filename in the trace
10947 status.
10948 (tfile_files_info): Mention the name of the trace file.
10949 Check the "filename" field explicitely.
10950 (trace_status_command): Explicitely check "filename" field.
10951 (trace_find_command): Ditto.
10952 (trace_find_pc_command): Ditto.
10953 (trace_find_tracepoint_command): Ditto.
10954 (trace_find_line_command): Ditto.
10955 (trace_find_range_command): Ditto.
10956 (trace_find_outside_command): Ditto.
10957 * tracepoint.h (struct trace_status) <from_file>: Rename it
10958 to "filename" and make it hold the trace file's filename
10959 instead of a boolean.
10960 * remote.c (remote_get_trace_status): Initialize "filename"
10961 field with NULL instead of 0.
10962
10963 2013-02-15 Yao Qi <yao@codesourcery.com>
10964
10965 * remote.c: Fix a typo.
10966
10967 2013-02-14 Pierre Muller <muller@sourceware.org>
10968
10969 * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
10970
10971 2013-02-14 Pedro Alves <palves@redhat.com>
10972
10973 * utils.c (savestring): Don't #undef it. Move function to
10974 common/common-utils.c.
10975 * common/common-utils.c: Include gdb_string.h.
10976 (savestring): Move here from utils.c.
10977 * common/common-utils.h (savestring): Declare.
10978
10979 2013-02-14 Pedro Alves <palves@redhat.com>
10980
10981 * utils.c (savestring): Rename parameter 'size' to 'len'.
10982
10983 2013-02-14 Pedro Alves <palves@redhat.com>
10984 Yufeng Zhang <yufeng.zhang@arm.com>
10985
10986 * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
10987 (aarch64_inferior_data, struct aarch64_inferior_data):
10988 Delete.
10989 (struct aarch64_process_info): New.
10990 (aarch64_process_list): New global.
10991 (aarch64_find_process_pid, aarch64_add_process)
10992 (aarch64_process_info_get): New functions.
10993 (aarch64_inferior_data_get): Delete.
10994 (aarch64_process_info_get): New function.
10995 (aarch64_forget_process): New function.
10996 (aarch64_get_debug_reg_state): New parameter 'pid'. Reimplement.
10997 (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
10998 aarch64_get_debug_reg_state.
10999 (aarch64_notify_debug_reg_change): Use iterate_over_lwps
11000 instead of linux_nat_iterate_watchpoint_lwps.
11001 (aarch64_linux_new_fork): New function.
11002 (aarch64_linux_child_post_startup_inferior): Use
11003 aarch64_forget_process instead of aarch64_init_debug_reg_state.
11004 (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
11005 (aarch64_linux_remove_hw_breakpoint)
11006 (aarch64_handle_aligned_watchpoint)
11007 (aarch64_handle_unaligned_watchpoint)
11008 (aarch64_linux_insert_watchpoint)
11009 (aarch64_linux_remove_watchpoint)
11010 (aarch64_linux_stopped_data_address): Adjust to pass the current
11011 process id to aarch64_debug_reg_state.
11012 (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
11013 linux_nat_new_fork hook, and aarch64_forget_process as
11014 linux_nat_forget_process hook; remove the call to
11015 register_inferior_data_with_cleanup.
11016
11017 2013-02-14 Pedro Alves <palves@redhat.com>
11018
11019 * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
11020 EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
11021 lval_memory.
11022
11023 2013-02-14 Pedro Alves <pedro@codesourcery.com>
11024 Hafiz Abid Qadeer <abidh@codesourcery.com>
11025
11026 * tracepoint.h (validate_trace_state_variable_name): Declare.
11027 * tracepoint.c (validate_trace_state_variable_name): New.
11028 (trace_variable_command): Parse the trace state variable's name
11029 without using parse_expression. Do several validations.
11030 * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
11031 trace state variable's name with parse_expression. Validate it.
11032
11033 2013-02-14 Yao Qi <yao@codesourcery.com>
11034
11035 * infcmd.c (breakpoint_proceeded): Remove it.
11036
11037 2013-02-14 Yao Qi <yao@codesourcery.com>
11038
11039 * tracepoint.c (end_actions_pseudocommand): Make it static.
11040 (while_stepping_pseudocommand): Likewise.
11041 * tracepoint.h (end_actions_pseudocommand): Remove the
11042 declaration.
11043 (while_stepping_pseudocommand): Likewise.
11044
11045 2013-02-14 Yao Qi <yao@codesourcery.com>
11046
11047 * cli/cli-decode.c (help_cmd): Remove the declaration of
11048 "cmdlist".
11049 (help_all): Likewise.
11050
11051 2013-02-13 Pedro Alves <palves@redhat.com>
11052
11053 * amd64-linux-nat.c (update_debug_registers_callback):
11054 Update comment.
11055 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
11056 iterate_over_lwps.
11057 (amd64_linux_prepare_to_resume): Pass the lwp's pid to
11058 i386_debug_reg_state.
11059 (amd64_linux_new_fork): New function.
11060 (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
11061 linux_nat_new_fork hook, and i386_forget_process as
11062 linux_nat_forget_process hook.
11063 * i386-linux-nat.c (update_debug_registers_callback):
11064 Update comment.
11065 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
11066 iterate_over_lwps.
11067 (i386_linux_prepare_to_resume): Pass the lwp's pid to
11068 i386_debug_reg_state.
11069 (i386_linux_new_fork): New function.
11070 (_initialize_i386_linux_nat): Install i386_linux_new_fork as
11071 linux_nat_new_fork hook, and i386_forget_process as
11072 linux_nat_forget_process hook.
11073 * i386-nat.c (i386_init_dregs): Delete.
11074 (i386_inferior_data, struct i386_inferior_data):
11075 Delete.
11076 (struct i386_process_info): New.
11077 (i386_process_list): New global.
11078 (i386_find_process_pid, i386_add_process, i386_process_info_get):
11079 New functions.
11080 (i386_inferior_data_get): Delete.
11081 (i386_process_info_get): New function.
11082 (i386_debug_reg_state): New parameter 'pid'. Reimplement.
11083 (i386_forget_process): New function.
11084 (i386_cleanup_dregs): Rewrite.
11085 (i386_update_inferior_debug_regs, i386_insert_watchpoint)
11086 (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
11087 (i386_stopped_data_address, i386_insert_hw_breakpoint)
11088 (i386_remove_hw_breakpoint): Adjust to pass the current process id
11089 to i386_debug_reg_state.
11090 (i386_use_watchpoints): Don't register inferior data.
11091 * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
11092 adjust comment.
11093 (i386_forget_process): Declare.
11094 * linux-fork.c (delete_fork): Call linux_nat_forget_process.
11095 * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
11096 New static globals.
11097 (linux_child_follow_fork): Don't call linux_nat_new_thread here.
11098 (add_initial_lwp): New, factored out from ...
11099 (add_lwp): ... this. Don't check the number of lwps before
11100 calling linux_nat_new_thread.
11101 (linux_nat_iterate_watchpoint_lwps): Delete.
11102 (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
11103 (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
11104 forks and vforks.
11105 (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
11106 initial lwp.
11107 (linux_nat_kill, linux_nat_mourn_inferior): Call
11108 linux_nat_forget_process.
11109 (linux_nat_set_new_fork, linux_nat_set_forget_process)
11110 (linux_nat_forget_process): New functions.
11111 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
11112 type.
11113 (linux_nat_iterate_watchpoint_lwps): Delete declaration.
11114 (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
11115 types.
11116 (linux_nat_set_new_fork, linux_nat_set_forget_process)
11117 (linux_nat_forget_process): New declarations.
11118
11119 * amd64fbsd-nat.c (super_mourn_inferior): New global.
11120 (amd64fbsd_mourn_inferior): New function.
11121 (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
11122 * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
11123
11124 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
11125
11126 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
11127 Adding _().
11128
11129 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
11130
11131 * aarch64-linux-nat.c (debug_reg_change_callback)
11132 (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
11133 %s and phex().
11134
11135 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
11136
11137 * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
11138 with LONGEST.
11139
11140 2013-02-13 Pedro Alves <palves@redhat.com>
11141 Hafiz Abid Qadeer <abidh@codesourcery.com>
11142
11143 * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
11144
11145 2013-02-12 Tom Tromey <tromey@redhat.com>
11146
11147 PR symtab/11464:
11148 * c-exp.y (lex_one_token): Initialize other fields of yylval on
11149 NAME return.
11150 (classify_inner_name): Remove 'first_name' argument, add
11151 'context'. Remove unused variable.
11152 (yylex): Explicitly maintain the context type. Exit loop earlier
11153 if NAME result is seen.
11154
11155 2013-02-12 Pedro Alves <palves@redhat.com>
11156
11157 * amd64-darwin-tdep.c: Add (C) after Copyright.
11158 * cli/cli-cmds.h: Ditto.
11159 * cli/cli-decode.c: Ditto.
11160 * cli/cli-decode.h: Ditto.
11161 * cli/cli-dump.c: Ditto.
11162 * cli/cli-dump.h: Ditto.
11163 * cli/cli-interp.c: Ditto.
11164 * cli/cli-logging.c: Ditto.
11165 * cli/cli-script.c: Ditto.
11166 * cli/cli-script.h: Ditto.
11167 * cli/cli-setshow.c: Ditto.
11168 * cli/cli-setshow.h: Ditto.
11169 * cli/cli-utils.c: Ditto.
11170 * cli/cli-utils.h: Ditto.
11171 * config/alpha/nm-osf3.h: Ditto.
11172 * config/djgpp/djconfig.sh: Ditto.
11173 * config/i386/nm-fbsd.h: Ditto.
11174 * config/i386/nm-i386gnu.h: Ditto.
11175 * config/nm-linux.h: Ditto.
11176 * config/nm-nto.h: Ditto.
11177 * config/rs6000/nm-rs6000.h: Ditto.
11178 * config/sparc/nm-sol2.h: Ditto.
11179 * darwin-nat-info.c: Ditto.
11180 * dfp.c: Ditto.
11181 * dfp.h: Ditto.
11182 * gdb-demangle.h: Ditto.
11183 * i386-darwin-nat.c: Ditto.
11184 * i386-darwin-tdep.c: Ditto.
11185 * linux-fork.h: Ditto.
11186 * m32c-tdep.c: Ditto.
11187 * microblaze-linux-tdep.c: Ditto.
11188 * microblaze-rom.c: Ditto.
11189 * microblaze-tdep.c: Ditto.
11190 * microblaze-tdep.h: Ditto.
11191 * mips-linux-tdep.h: Ditto.
11192 * ppc-ravenscar-thread.c: Ditto.
11193 * ppc-ravenscar-thread.h: Ditto.
11194 * prologue-value.c: Ditto.
11195 * prologue-value.h: Ditto.
11196 * ravenscar-thread.c: Ditto.
11197 * ravenscar-thread.h: Ditto.
11198 * sparc-ravenscar-thread.c: Ditto.
11199 * sparc-ravenscar-thread.h: Ditto.
11200 * tilegx-linux-tdep.c: Ditto.
11201 * unwind_stop_reasons.def: Ditto.
11202 * windows-nat.h: Ditto.
11203 * xtensa-linux-tdep.c: Ditto.
11204 * xtensa-xtregs.c: Ditto.
11205 * regformats/regdat.sh: Ditto.
11206 * regformats/regdef.h: Ditto.
11207
11208 2013-02-12 Pedro Alves <palves@redhat.com>
11209
11210 * break-catch-sig.c: Update copyright years.
11211
11212 2013-02-11 Siva Chandra Reddy <sivachandra@google.com>
11213
11214 Add support for a destructor for ui_out data and use it to
11215 provide a ui_out destructor.
11216 * ui-out.h: Declare the new ui_out destructor.
11217 (ui_out_impl): Add a field for data destructor in ui_out_impl.
11218 * ui-out.c (default_data_destroy): Add a default data destructor
11219 which does nothing.
11220 (default_ui_out_impl): Set the new data_destroy field to
11221 default_data_destroy
11222 (uo_data_destroy): Local function which invokes the data
11223 destructor if present.
11224 (clear_table): Local function which clears the table data of a
11225 ui_out object.
11226 (ui_out_destroy): Public function which frees a ui_out object.
11227 (ui_out_table_end): Use the new clear_table function.
11228 * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
11229 NULL.
11230 * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
11231 to NULL.
11232
11233 2013-02-11 Doug Evans <dje@google.com>
11234
11235 * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
11236 (printf_decfloat): New function. Broken out from ui_printf.
11237 Remove unnecessary code to shift the entire format string down.
11238 (printf_pointer): New function.
11239 (ui_printf): Code to print C strings, wide C strings, decfloats,
11240 and pointers moved to separate functions.
11241
11242 2013-02-11 Sergio Durigan Junior <sergiodj@redhat.com>
11243
11244 * valops.c (value_assign): Handling bitfield offset in
11245 `lval_internalvar_component' case.
11246
11247 2013-02-08 Doug Evans <dje@google.com>
11248
11249 * common/format.c (parse_format_string): Fix whitespace.
11250
11251 2013-02-08 Matthew Gretton-Dann <matthew.gretton-dann@linaro.org>
11252
11253 * stack.c (return_command): Work around uninitialized variable
11254 warning.
11255
11256 2013-02-08 Yufeng Zhang <yufeng.zhang@arm.com>
11257
11258 * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
11259 number of the registers from 36 to 34.
11260
11261 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
11262
11263 * NEWS: Mention new AArch64 native and target support.
11264
11265 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
11266
11267 * MAINTAINERS (Write After Approval): Add myself.
11268
11269 2013-02-08 Jim MacArthur <jim.macarthur@arm.com>
11270 Marcus Shawcroft <marcus.shawcroft@arm.com>
11271 Nigel Stephens <nigel.stephens@arm.com>
11272 Yufeng Zhang <yufeng.zhang@arm.com>
11273
11274 * aarch64-linux-nat.c: New file.
11275 * config/aarch64/linux.mh: New file.
11276 * configure.host: Add AArch64.
11277 * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
11278
11279 2013-02-07 Doug Evans <dje@google.com>
11280
11281 * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
11282 disassemble command.
11283
11284 2013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
11285
11286 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
11287 set_gdbarch_fetch_tls_load_module_address.
11288
11289 2013-02-06 David S. Miller <davem@davemloft.net>
11290
11291 * sparc-tdep.c (sparc32_return_value): Handle writing return value when
11292 using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
11293 * value.c (struct_return_convention): New function.
11294 (using_struct_return): Implement in terms of struct_return_convention.
11295 * value.h (struct_return_convention): Declare.
11296 * stack.c (return_command): Allow successful overriding of the return
11297 value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
11298
11299 2013-02-06 Tom Tromey <tromey@redhat.com>
11300
11301 * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
11302 outside of TRY_CATCH.
11303
11304 2013-02-06 Yao Qi <yao@codesourcery.com>
11305
11306 * mi/mi-interp.c: Include "tracepoint.h".
11307 (mi_tsv_modified): Declare.
11308 (mi_tsv_created, mi_tsv_deleted): Update declaration.
11309 (mi_interpreter_init): Call observer_attach_tsv_modified.
11310 (mi_tsv_modified): New.
11311 (mi_tsv_created, mi_tsv_deleted): Update.
11312 * tracepoint.c (trace_variable_command): Call
11313 observer_notify_tsv_modified if the initial value of tsv is
11314 changed.
11315 (delete_trace_state_variable): Call
11316 observer_notify_tsv_deleted earlier.
11317 (trace_variable_command): Caller update.
11318 (create_tsv_from_upload): Likewise.
11319 * observer.sh: Declare "struct trace_state_variable".
11320
11321 * NEWS: Mention the new MI notification "=tsv-modified".
11322
11323 2013-02-05 Doug Evans <dje@google.com>
11324
11325 * completer.c (location_completer): Fix typo in comment.
11326
11327 2013-02-05 Jan Kratochvil <jan.kratochvil@redhat.com>
11328
11329 * breakpoint.c (add_location_to_breakpoint): Insert the location with
11330 ADDRESS sorted.
11331
11332 2013-02-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
11333
11334 * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
11335 Refactor if statement to avoid trailing || operator.
11336
11337 2013-02-05 Andreas Tobler <andreast@fgznet.ch>
11338
11339 * NEWS: Add PowerPC FreeBSD as a new native configuration.
11340
11341 2013-02-04 Andreas Tobler <andreast@fgznet.ch>
11342
11343 * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
11344 * configure.host: Add powerpc*-*-freebsd* target.
11345 * configure.tgt: Add target info for powerpc*-*-freebsd*.
11346 * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
11347 * config/powerpc/fbsd.mh: New file.
11348
11349 2013-02-04 Sergio Durigan Junior <sergiodj@redhat.com>
11350 Denys Vlasenko <dvlasenk@redhat.com>
11351 Pedro Alves <palves@redhat.com>
11352
11353 * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
11354 (struct elf_internal_linux_prpsinfo): Forward declare.
11355 * gdbarch.h, gdbarch.c: Regenerate.
11356 * linux-tdep.c: Include `cli/cli-utils.h'.
11357 (linux_fill_prpsinfo): New function.
11358 (linux_make_corefile_notes): Use linux_fill_prpsinfo. If there's
11359 an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
11360 elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
11361 depending on gdbarch pointer bitness.
11362 * ppc-linux-tdep.c: Include elf-bfd.h.
11363 (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
11364 on 32-bit.
11365
11366 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
11367 Marcus Shawcroft <marcus.shawcroft@arm.com>
11368 Nigel Stephens <nigel.stephens@arm.com>
11369 Yufeng Zhang <yufeng.zhang@arm.com>
11370
11371 * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
11372
11373 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
11374 Marcus Shawcroft <marcus.shawcroft@arm.com>
11375 Nigel Stephens <nigel.stephens@arm.com>
11376 Yufeng Zhang <yufeng.zhang@arm.com>
11377
11378 * aarch64-newlib-tdep.c: New file.
11379 * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
11380 aarch64*-*-elf.
11381 * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
11382 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
11383 (ALLDEPFILES): Add aarch64-newlib-tdep.c.
11384 * osabi.c (gdb_osabi_names): Add "Newlib".
11385
11386 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
11387 Marcus Shawcroft <marcus.shawcroft@arm.com>
11388 Nigel Stephens <nigel.stephens@arm.com>
11389 Yufeng Zhang <yufeng.zhang@arm.com>
11390
11391 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
11392 (ALLDEPFILES): Add aarch64-linux-tdep.c.
11393 * aarch64-linux-tdep.c: New file.
11394 * aarch64-linux-tdep.h: New file.
11395 * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
11396 * configure.tgt: Add aarch64-none-linux-gnu.
11397
11398 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
11399 Marcus Shawcroft <marcus.shawcroft@arm.com>
11400 Nigel Stephens <nigel.stephens@arm.com>
11401 Yufeng Zhang <yufeng.zhang@arm.com>
11402
11403 * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
11404 (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
11405 (ALLDEPFILES): Add aarch64-tdep.c.
11406 * aarch64-tdep.c: New file.
11407 * aarch64-tdep.h: New file.
11408 * configure.tgt: Add AArch64.
11409 * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
11410 (aarch64-expedite): New definition.
11411 * features/aarch64-core.xml: New file.
11412 * features/aarch64-fpu.xml: New file.
11413 * features/aarch64-without-fpu.c: New file (generated).
11414 * features/aarch64-without-fpu.xml: New file.
11415 * features/aarch64.c: New file (generated).
11416 * features/aarch64.xml: New file.
11417 * regformats/aarch64-without-fpu.dat: New file (generated).
11418 * regformats/aarch64.dat: New file (generated).
11419
11420 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11421
11422 * contrib/expect-read1.c: New file.
11423 * contrib/expect-read1.sh: New file.
11424
11425 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11426
11427 * dwarf2read.c (file_file_name): New function with code from
11428 file_full_name.
11429 (file_full_name): Move most of the code to file_file_name.
11430 (macro_start_file): Rename variable full_name to file_name and use
11431 file_file_name for it. Add comp_dir parameter to new_macro_table.
11432 * macrocmd.c (show_pp_source_pos): New variable fullname. Replace any
11433 macro_source_file->filename access by macro_source_fullname call.
11434 * macroscope.c (_initialize_macroscope): Update the new_macro_table
11435 caller.
11436 * macrotab.c (struct macro_table): New field comp_dir.
11437 (macro_include): New variables link_fullname and source_fullname.
11438 Replace any macro_source_file->filename access by macro_source_fullname
11439 call.
11440 (macro_lookup_inclusion): Remove the partial filenames checking code.
11441 (check_for_redefinition): New variables source_fullname and
11442 found_key_fullname. Replace any macro_source_file->filename access by
11443 macro_source_fullname call.
11444 (macro_undef): New variables source_fullname and key_fullname. Replace
11445 any macro_source_file->filename access by macro_source_fullname call.
11446 (macro_lookup_definition): New variables retval and source_fullname.
11447 Replace any macro_source_file->filename access by macro_source_fullname
11448 call.
11449 (foreach_macro): New variable key_fullname. Replace any
11450 macro_source_file->filename access by macro_source_fullname call.
11451 (foreach_macro_in_scope): New variable datum_fullname. Replace any
11452 macro_source_file->filename access by macro_source_fullname call.
11453 (new_macro_table): Add parameter comp_dir. Initialize T with it.
11454 (macro_source_fullname): New function.
11455 * macrotab.h (struct macro_source_file): Extent the filename field
11456 comment.
11457 (new_macro_table): New parameter comp_dir, add a comment for it.
11458 (macro_source_fullname): new declaration.
11459
11460 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11461
11462 * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
11463 this_real_name to outer block. Use it also for
11464 compare_filenames_for_search.
11465 (dw2_expand_symtabs_matching): New variable this_real_name. Use it
11466 with dw2_get_real_path for file_matcher, considering also
11467 BASENAMES_MAY_DIFFER.
11468 (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
11469
11470 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11471
11472 * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
11473 to the file_matcher parameter. Pass 0 to it.
11474 (dwarf2_create_include_psymtab): Copy also DIRNAME.
11475 * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
11476 NULL psymtab_to_fullname result.
11477 (psymtab_to_fullname): Remove variable r. Never return NULL, assemble
11478 an expected filename instead.
11479 (expand_symtabs_matching_via_partial): Add basenames parameter to the
11480 file_matcher parameter. Call also psymtab_to_fullname, after newly
11481 considering BASENAMES_MAY_DIFFER.
11482 * source.c (rewrite_source_path): Remove static.
11483 * source.h (rewrite_source_path): New declaration.
11484 * symfile.h (struct quick_symbol_functions): Add basenames parameter to
11485 the expand_symtabs_matching field. Comment it.
11486 * symtab.c (file_matches): New function comment. Add parameter
11487 basenames, implement it.
11488 (search_symbols_file_matches): Add basenames parameter. Update the
11489 file_matches caller.
11490 (search_symbols): Match FILES also against symtab_to_fullname.
11491 Optimize it for BASENAMES_MAY_DIFFER.
11492
11493 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11494
11495 * source.c (print_source_lines_base): Print for TUI also "fullname".
11496 * tui/tui-data.c (init_content_element): Change tui_locator_element
11497 field to full_name.
11498 * tui/tui-data.h (struct tui_locator_element): Likewise.
11499 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
11500 tui_update_locator_filename calls to tui_update_locator_fullname.
11501 Replace symtab->filename refererence by symtab_to_fullname call.
11502 * tui/tui-out.c (tui_field_string): Check for "fullname" now.
11503 * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
11504 field to full_name. Replace symtab->filename refererence by
11505 symtab_to_fullname call.
11506 (tui_show_symtab_source): Rename parameter to fullname. Change
11507 tui_locator_element field to full_name.
11508 * tui/tui-stack.c: Include source.h.
11509 (tui_set_locator_filename): Rename the declaration to ...
11510 (tui_set_locator_fullname): ... here. Rename its parameter to
11511 fullname, updates its comment.
11512 (tui_set_locator_info): Rename its parameter to fullname.
11513 (tui_set_locator_filename): Rename the definition to ...
11514 (tui_set_locator_fullname): ... here. Rename its parameter to
11515 fullname, updates its comment. Change tui_locator_element field to
11516 full_name.
11517 (tui_set_locator_info): Rename its parameter to fullname.
11518 (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
11519 (tui_update_locator_filename): Rename to ...
11520 (tui_update_locator_fullname): ... here. Rename callee to
11521 tui_set_locator_fullname.
11522 (tui_show_frame_info): Replace symtab->filename refererence by
11523 symtab_to_fullname call.
11524 * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
11525 (tui_update_locator_fullname): ... here.
11526 * tui/tui-winsource.c (tui_display_main): Rename the callee to
11527 tui_update_locator_fullname. Replace symtab->filename refererence by
11528 symtab_to_fullname call.
11529 * tui/tui.c (tui_show_source): Rename its parameter to fullname.
11530 Rename the callee to tui_update_locator_fullname.
11531 * tui/tui.h (tui_show_source): Rename its parameter to fullname.
11532
11533 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11534
11535 * ada-lang.c (user_select_syms): Replace symtab->filename refererences
11536 by symtab_to_filename_for_display calls.
11537 * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
11538 (clear_command): New variable sal_fullname, initialize it. Replace
11539 compare_filenames_for_search by filename_cmp with sal_fullname.
11540 (say_where, update_static_tracepoint): Replace symtab->filename
11541 refererences by symtab_to_filename_for_display calls.
11542 * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
11543 Likewise.
11544 * dwarf2read.c: Include source.h.
11545 (fixup_go_packaging): Replace symtab->filename refererences by
11546 symtab_to_filename_for_display calls.
11547 * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
11548 Replace symtab->filename refererences by symtab_to_filename_for_display
11549 calls.
11550 (create_sals_line_offset, convert_linespec_to_sals): New variable
11551 fullname, initialize it, replace symtab->filename reference by the
11552 variable.
11553 * linux-fork.c: Include source.h.
11554 (info_checkpoints_command): Replace symtab->filename refererences by
11555 symtab_to_filename_for_display calls.
11556 * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
11557 by symtab_to_filename_for_display calls.
11558 * mdebugread.c: Include source.h.
11559 (psymtab_to_symtab_1): Replace symtab->filename refererences by
11560 symtab_to_filename_for_display calls.
11561 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
11562 (mi_cmd_file_list_exec_source_files): Likewise.
11563 * printcmd.c: Include source.h.
11564 (build_address_symbolic): Replace symtab->filename refererences by
11565 symtab_to_filename_for_display calls.
11566 * psymtab.c (partial_map_symtabs_matching_filename)
11567 (read_psymtabs_with_fullname): Call compare_filenames_for_search also
11568 with psymtab_to_fullname.
11569 * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
11570 by symtab_to_filename_for_display calls.
11571 (stpy_get_filename): New variable filename, initialize it, use instead
11572 of symtab->filename refererences.
11573 (salpy_str): Make variable filename const char *. Replace
11574 symtab->filename refererences by symtab_to_filename_for_display calls.
11575 * skip.c: Include source.h and filenames.h.
11576 (skip_file_command): Remove const from the symtab variable. Replace
11577 symtab->filename refererences by symtab_to_fullname call.
11578 (function_name_is_marked_for_skip): New variables searched_for_fullname
11579 and fullname. Use them to search also with symtab's fullname.
11580 * source.c (find_source_lines): Replace symtab->filename refererences
11581 by symtab_to_filename_for_display calls.
11582 (print_source_lines_base): New variable filename, use it instead of
11583 symtab->filename. Replace symtab->filename refererences by
11584 symtab_to_filename_for_display calls.
11585 (line_info, forward_search_command): Replace symtab->filename
11586 refererences by symtab_to_filename_for_display calls.
11587 (reverse_search_command): Replace symtab->filename refererences by
11588 symtab_to_filename_for_display calls. New variable filename for it.
11589 * stack.c (frame_info): Likewise.
11590 * symmisc.c: Include source.h.
11591 (dump_objfile, dump_symtab_1, maintenance_print_symbols)
11592 (maintenance_info_symtabs): Replace symtab->filename refererences by
11593 symtab_to_filename_for_display calls.
11594 * symtab.c (iterate_over_some_symtabs): Call
11595 compare_filenames_for_search also with symtab_to_fullname.
11596 (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
11597 symtab->filename refererences by symtab_to_filename_for_display calls.
11598 (find_line_symtab): Replace symtab->filename refererences by
11599 symtab_to_filename_for_display calls.
11600 (file_matches): Replace filename_cmp by compare_filenames_for_search.
11601 (print_symbol_info): Make the last parameter const char *. New
11602 variable s_filename. Use it in the function.
11603 (symtab_symbol_info): Make the last_filename variable const char *.
11604 Replace symtab->filename refererences by symtab_to_filename_for_display
11605 calls.
11606 (rbreak_command): New variable fullname. Use it. Replace
11607 symtab->filename refererence by symtab_to_filename_for_display call.
11608 * tracepoint.c (set_traceframe_context, trace_find_line_command)
11609 (print_one_static_tracepoint_marker): Replace symtab->filename
11610 refererences by symtab_to_filename_for_display calls.
11611 * tui/tui-source.c (tui_set_source_content): New variables filename and
11612 s_filename. Replace symtab->filename refererences by this variable.
11613 Replace other symtab->filename refererences by
11614 symtab_to_filename_for_display calls.
11615
11616 2013-02-03 Eldar Gaynetdinov <hal9000ed2k@gmail.com>
11617 Jan Kratochvil <jan.kratochvil@redhat.com>
11618
11619 Add a new variable that controls a way in which filenames are
11620 displayed.
11621 * NEWS (set filename-display): New entry.
11622 * source.c (filename_display_basename, filename_display_relative)
11623 (filename_display_absolute, filename_display_kind_names)
11624 (filename_display_string, show_filename_display_string)
11625 (symtab_to_filename_for_display): New.
11626 (_initialize_source): Added initialization of 'filename-display'
11627 variable.
11628 * source.h (symtab_to_filename_for_display): Added declaration.
11629 * stack.c (print_frame): Added new variable and calling of a new
11630 function and condition with this variable. Changed third argument of
11631 calling of a function.
11632
11633 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11634
11635 * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
11636 Rename field reference filename to fullname.
11637 * tui/tui-data.h (struct tui_source_info): Rename field filename to
11638 fullname. New comment for it.
11639 * tui/tui-source.c (tui_set_source_content): Rename field reference
11640 filename to fullname. Initialize field by symtab_to_fullname now.
11641 * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
11642 reference filename to fullname. Use symtab_to_fullname during
11643 comparison.
11644
11645 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11646
11647 Code cleanup.
11648 * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
11649 (dw2_expand_symtabs_with_fullname): ... here. Rename parameter
11650 filename to fullname. Rename variable this_name to this_fullname.
11651 Lowercase FILENAME_CMP call.
11652 (dw2_find_symbol_file): New comment for the returned string.
11653 (dwarf2_gdb_index_functions): Rename the function to
11654 dw2_expand_symtabs_with_fullname.
11655 * psymtab.c (read_psymtabs_with_filename): Rename to ...
11656 (read_psymtabs_with_fullname): ... here. Rename parameter filename to
11657 fullname.
11658 (psym_functions): Rename the function to read_psymtabs_with_fullname.
11659 * symfile.h (struct quick_symbol_functions): Rename field
11660 expand_symtabs_with_filename to expand_symtabs_with_fullname and its
11661 parameter filename to fullname. Document returned string meaning for
11662 find_symbol_file.
11663 * symtab.c (find_line_symtab): Rename the called function to
11664 expand_symtabs_with_fullname.
11665
11666 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11667
11668 Code cleanup.
11669 * breakpoint.c (clear_command): Remove variable is_abs, unify the
11670 call of filename_cmp with compare_filenames_for_search.
11671 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
11672 is_abs, unify the call of FILENAME_CMP with
11673 compare_filenames_for_search. New gdb_asserts for real_path and name.
11674 Unify the call of compare_filenames_for_search with FILENAME_CMP.
11675 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
11676 * symfile.h (struct quick_symbol_functions): Extend the comment for
11677 map_symtabs_matching_filename.
11678 * symtab.c (compare_filenames_for_search): Remove the function comment
11679 relative path requirement. Handle absolute filenames, with a comment.
11680 (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
11681 FILENAME_CMP with compare_filenames_for_search. New gdb_asserts for
11682 real_path and name. Unify the call of compare_filenames_for_search
11683 with FILENAME_CMP.
11684 (iterate_over_symtabs): New gdb_assert on REAL_PATH.
11685
11686 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11687
11688 Code cleanup.
11689 * breakpoint.c (print_breakpoint_location): Replace bp_location field
11690 source_file references by symtab field references. Remove variables
11691 sal and fullname.
11692 (momentary_breakpoint_from_master, add_location_to_breakpoint):
11693 (clear_command, say_where): Replace bp_location field source_file
11694 references by symtab field references.
11695 (bp_location_dtor): Remove the source_file reference.
11696 (update_static_tracepoint): Replace bp_location field source_file
11697 references by symtab field references.
11698 (breakpoint_free_objfile): New function.
11699 * breakpoint.h (struct bp_location): Extend the comment for line_number.
11700 Replace the field source_file by field symtab, extend its comment.
11701 (breakpoint_free_objfile): New declaration.
11702 * objfiles.c (free_objfile): Call breakpoint_free_objfile.
11703 * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
11704 field source_file references by symtab field references.
11705
11706 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11707
11708 Replace xfullpath calls by gdb_realpath calls.
11709 * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
11710 function comment.
11711 * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
11712 Remove it from the iterate_over_some_symtabs call.
11713 (dw2_map_symtabs_matching_filename): Remove parameter full_path.
11714 Remove it from the dw2_map_expand_apply calls, remove a block handling
11715 it.
11716 * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
11717 Remove it from the iterate_over_some_symtabs call.
11718 (partial_map_symtabs_matching_filename): Remove parameter full_path.
11719 Remove it from the partial_map_expand_apply calls, remove a block
11720 handling it. Drop gdb_realpath call and cleanups from the real_path
11721 handling.
11722 * source.c (openp): Drop the comment part about xfullpath. Replace
11723 xfullpath calls by gdb_realpath calls.
11724 (find_and_open_source): Replace xfullpath call by gdb_realpath call.
11725 * symfile.h (struct quick_symbol_functions): Remove parameter full_path
11726 from method map_symtabs_matching_filename and its comment.
11727 * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
11728 gdb_realpath call.
11729 * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
11730 remove it also from the function comment, remove a block handling it.
11731 Drop gdb_realpath call and cleanups from the real_path handling.
11732 (iterate_over_symtabs): Drop variable full_path and its use.
11733 * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
11734 * utils.c (xfullpath): Remove.
11735 * utils.h (xfullpath): Remove.
11736
11737 2013-02-01 Andreas Tobler <andreast@fgznet.ch>
11738
11739 * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
11740 (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
11741 (ALLDEPFILES): Add ppc64-tdep.c.
11742 * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
11743 ppc64-tdep.o to gdb_target_obs.
11744 * ppc64-tdep.h: New file.
11745 * ppc64-tdep.c: New file.
11746 (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
11747 ppc-linux-tdep.c to here.
11748 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
11749 (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
11750 (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
11751 (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
11752 from ppc-linux-tdep.c to here.
11753 (ppc64_convert_from_func_ptr_addr): Rename from
11754 ppc64_linux_convert_from_func_ptr_addr to
11755 ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
11756 here.
11757 * rs6000-tdep.c:
11758 (read_insn): Move from ppc-linux-tdep.c to here.
11759 (insns_match_pattern, insn_d_field, insn_ds_field): Move
11760 from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
11761 * ppc-linux-tdep.c: Include ppc64-tdep.h.
11762 Removed above functions.
11763 (ppc_linux_init_abi): Adjust.
11764
11765 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
11766
11767 * ada-valprint.c (ada_print_floating): Remove unused 'len'.
11768
11769 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
11770
11771 * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
11772
11773 2013-02-01 Pedro Alves <palves@redhat.com>
11774
11775 * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
11776 * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
11777
11778 2013-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
11779
11780 * elfread.c (elf_symfile_read): Limit separate debug info additions to
11781 files with no separate debug info.
11782 * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
11783 * symfile.c (read_symbols): Call find_separate_debug_file_in_section
11784 only for files with no separate debug info.
11785
11786 2013-01-31 Tom Tromey <tromey@redhat.com>
11787
11788 * jit.c (jit_program_space_data): Rename from jit_inferior_data;
11789 change type.
11790 (struct jit_program_space_data): Rename from jit_inferior_data.
11791 Update comments.
11792 (get_jit_program_space_data): Rename from get_jit_inferior_data.
11793 Change return type. Attach data to program space.
11794 (jit_program_space_data_cleanup): Rename from
11795 jit_inferior_data_cleanup; change argument type.
11796 (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
11797 change type.
11798 (jit_register_code): Update.
11799 (jit_update_inferior_cache): Remove.
11800 (jit_breakpoint_deleted): Get jit data from the location's program
11801 space.
11802 (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
11803 'ps_data', change type.
11804 (jit_inferior_init, jit_breakpoint_re_set_internal)
11805 (jit_event_handler): Update.
11806 (free_objfile_data): Get data from objfile's program space.
11807 (_initialize_jit): Update.
11808
11809 2013-01-31 Tom Tromey <tromey@redhat.com>
11810
11811 PR gdb/13987:
11812 * jit.c (struct jit_inferior_data) <cached_code_address,
11813 jit_breakpoint>: New fields.
11814 (jit_breakpoint_re_set_internal): Fix logging. Only create
11815 breakpoint if cached address has changed.
11816 (jit_update_inferior_cache, jit_breakpoint_deleted): New
11817 functions.
11818 (_initialize_jit): Register breakpoint deleted observer.
11819
11820 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
11821
11822 * infrun.c (handle_syscall_event): Remove unused gdbarch.
11823 (save_infcall_suspend_state): Ifdef out unused inf.
11824 (restore_infcall_suspend_state): Ifdef out unused inf.
11825 * jit.c (jit_register_code): Remove unused i, b, inf_data.
11826 (jit_frame_sniffer): Remove unused inf_data.
11827
11828 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
11829
11830 * c-exp.y (classify_inner_name): Remove unused type.
11831 * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
11832 in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
11833 need_escape.
11834 (c_get_string): Remove unused kind.
11835 * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
11836
11837 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
11838
11839 * charset.c (intermediate_encoding): Remove unused i.
11840 * completer.c (signal_completer): Remove unused i.
11841 * continuations.c (discard_my_continuations_1): Remove unused
11842 continuation_ptr.
11843 * corelow.c (core_close): Remove unuseD name.
11844 (get_core_siginfo): Remove unused pid.
11845 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
11846 i, cps.
11847 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
11848 (loclist_describe_location): Remove unused first.
11849 * event-top.c (command_line_handler): Remove unused got_eof.
11850 * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
11851 (resize_section_table): Remove unused old_value.
11852 * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
11853 * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
11854 * i386-tdep.c (i386_process_record): Remove unused rex.
11855 * infcmd.c (get_return_value): Remove unused uiout.
11856 * jv-lang.c (type_from_class): Remove unused is_array.
11857 * jv-valprint.c (java_val_print): Remove unused i.
11858 * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
11859 * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
11860 * m2-typeprint.c (m2_print_type): Remove unused code.
11861 * macroexp.c (get_character_constant): Remove unused body_start.
11862 (macro_stringify): Remove unused result.
11863 * objc-lang.c (find_methods): Remove unused gdbarch.
11864 * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
11865 * regcache.c (regcache_cooked_read): Remove unused gdbarch.
11866 * stack.c (print_frame_args): Remove unused summary.
11867 * thread.c (thread_apply_command): Remove unused p.
11868 * valarith.c (value_x_unop): Remove unused mangle_ptr.
11869 * valops.c (search_struct_method): Remove unused skip.
11870 * valprint.c (generic_val_print): Remove unused byte_order.
11871 * varobj.c (varobj_update): Remove unused changed.
11872 * cli/cli-cmds.c (complete_command): Remove unused next_item.
11873 (alias_command): Remove unused c.
11874 * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
11875 * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
11876 format.
11877 (mi_cmd_data_write_memory): Remove unused word_format.
11878 (mi_cmd_data_write_memory_bytes): Remove unused r.
11879 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
11880 p_start, p_end.
11881 * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
11882 * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
11883 line_width.
11884
11885 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
11886
11887 * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
11888 * symtab.c (iterate_over_symtabs): Remove unused s.
11889 (find_pc_sect_symtab): Remove unused pspAce.
11890 (find_pc_sect_line): Remove unused alt_symtab.
11891 (find_pcs_for_symtab_line): Remove unused ix, previous_function.
11892 (completion_list_add_name): Remove unused newsize.
11893
11894 2013-01-31 Tom Tromey <tromey@redhat.com>
11895
11896 PR c++/14998:
11897 * dwarf2read.c (read_tag_ptr_to_member_type): Handle
11898 TYPE_CODE_FUNC.
11899
11900 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
11901
11902 * target.c (target_read_string): Remove unused origlen.
11903
11904 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
11905
11906 * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
11907 * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
11908 * ax-general.c (ax_print): Remove unused is_float.
11909 * blockframe.c (block_innermost_frame): Remove unused start, end.
11910 * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
11911
11912 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
11913
11914 * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
11915 (svr4_read_so_list): Remove unused lmo.
11916 * solib-target.c (solib_target_relocate_section_addresses): Remove
11917 unused flags.
11918
11919 2013-01-30 Tom Tromey <tromey@redhat.com>
11920
11921 * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
11922
11923 2013-01-30 Tom Tromey <tromey@redhat.com>
11924
11925 * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
11926 * utils.c (gnu_debuglink_crc32): Remove.
11927 * utils.h (gnu_debuglink_crc32): Don't declare.
11928
11929 2013-01-30 Tom Tromey <tromey@redhat.com>
11930
11931 * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
11932 (read_structure_type, read_enumeration_type): Remove cast.
11933
11934 2013-01-30 Tom Tromey <tromey@redhat.com>
11935
11936 * dwarf2read.c (read_namespace_type): Remove cast.
11937 (read_typedef): Likewise.
11938
11939 2013-01-29 Tom Tromey <tromey@redhat.com>
11940
11941 * dwarf2read.c (free_dwo_file): Remove assert.
11942
11943 2013-01-29 Tom Tromey <tromey@redhat.com>
11944
11945 * value.c (deprecated_set_value_modifiable): Remove.
11946 * value.h (deprecated_set_value_modifiable): Remove.
11947
11948 2013-01-28 Doug Evans <dje@google.com>
11949
11950 * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
11951 to addresses from dwo files.
11952
11953 2013-01-25 Siva Chandra Reddy <sivachandra@google.com>
11954
11955 * valops.c (find_overload_match): Remove unused argument 'lax'.
11956 * value.h: Remove unused argument 'lax' from the declaration of
11957 find_overload_match.
11958 * eval.c (value_subexp_standard): Do not pass a 'lax' argument
11959 to find_overload_match.
11960 * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
11961 argument to find_overload_match.
11962
11963 2013-01-25 Tom Tromey <tromey@redhat.com>
11964
11965 * dwarf2read.c (processing_has_namespace_info): Remove.
11966 (struct dwarf2_cu) <processing_has_namespace_info>: New field.
11967 (process_die, read_func_scope, dwarf2_start_symtab)
11968 (new_symbol_full): Update.
11969
11970 2013-01-25 Tom Tromey <tromey@redhat.com>
11971
11972 * cp-namespace.c (cp_set_block_scope): Remove.
11973 * cp-support.h (cp_set_block_scope): Remove.
11974 * dbxread.c: Include block.h.
11975 (cp_set_block_scope): New function.
11976 (process_one_symbol): Update.
11977 * dwarf2read.c (read_func_scope): Use block_set_scope.
11978
11979 2013-01-25 Pedro Alves <palves@redhat.com>
11980
11981 * remote.c (add_current_inferior_and_thread): Tweak comment.
11982
11983 2013-01-25 Tom Tromey <tromey@redhat.com>
11984
11985 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
11986 (cp_add_using_directive): Add 'copy_names' argument.
11987 * cp-support.h (cp_add_using_directive): Update.
11988 (struct using_direct) <import_src, import_dest, alias,
11989 declaration>: Now const.
11990 * dwarf2read.c (read_import_statement): Use obconcat.
11991 Don't copy names passed to cp_add_using_directive.
11992
11993 2013-01-25 Tom Tromey <tromey@redhat.com>
11994
11995 * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
11996
11997 2013-01-25 Pedro Alves <palves@redhat.com>
11998
11999 * remote.c (stop_reply_extract_thread): New.
12000 (add_current_inferior_and_thread): New parameter 'wait_status'.
12001 Handle it.
12002 (remote_start_remote): Pass wait status to
12003 add_current_inferior_and_thread.
12004 (extended_remote_run): Update comment.
12005 (extended_remote_create_inferior_1): Pass wait status to
12006 add_current_inferior_and_thread.
12007
12008 2013-01-25 Andrew Burgess <aburgess@broadcom.com>
12009 Ulrich Weigand <uweigand@de.ibm.com>
12010
12011 * valarith.c (value_vector_widen): New function for replicating a
12012 scalar into a vector.
12013 (value_binop): Use value_vector_widen to widen scalar to vector
12014 rather than casting, this better matches gcc C behaviour.
12015 * valops.c (value_casst): Update logic for casting between vector
12016 types, and for casting from scalar to vector, try to match gcc C
12017 behaviour.
12018 * value.h (value_vector_widen): Declare.
12019 * opencl-lang.c (opencl_value_cast): New opencl specific casting
12020 function, handle special case for casting scalar to vector.
12021 (opencl_relop): Use opencl_value_cast.
12022 (evaluate_subexp_opencl): Use opencl_value_cast instead of
12023 value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
12024 in order to use opencl_value_cast.
12025
12026 2013-01-25 Yao Qi <yao@codesourcery.com>
12027
12028 * event-loop.c: Include "queue.h".
12029 (gdb_event_p): New typedef.
12030 (DECLARE_QUEUE_P): Use.
12031 (DEFINE_QUEUE_P): Use.
12032 (async_queue_event): Remove.
12033 (gdb_event_xfree): New.
12034 (initialize_event_loop): New.
12035 (process_event): Use QUEUE macros.
12036 (event_queue): Remove.
12037 (gdb_wait_for_event): Caller update.
12038 (check_async_event_handlers): Likewise.
12039 (poll_timers): Likewise.
12040 * event-loop.h (initialize_event_loop): Declare.
12041 * event-loop.c (gdb_event_xfree): New.
12042 * top.c (gdb_init): Call initialize_event_loop.
12043
12044 2013-01-25 Yao Qi <yao@codesourcery.com>
12045
12046 * event-loop.c (async_queue_event): Remove one parameter
12047 'position'. Remove code handling 'position' == TAIL.
12048 (gdb_wait_for_event): Caller update.
12049 (check_async_event_handlers): Caller update.
12050 (poll_timers): Caller update.
12051 * event-loop.h (enum queue_position): Remove.
12052
12053 2013-01-25 Maxim Kuvyrkov <maxim@kugelworks.com>
12054
12055 * MAINTAINERS: Update my email.
12056
12057 2013-01-25 Yao Qi <yao@codesourcery.com>
12058
12059 * main.c (print_gdb_help): Remove "--epoch" from the help
12060 message.
12061
12062 2013-01-24 Ulrich Weigand  <uweigand@de.ibm.com>
12063
12064 * symtab.c (skip_prologue_using_sal): Consider a file
12065 change the same as an increased line number
12066
12067 2013-01-24 Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
12068
12069 * MAINTAINERS (Write After Approval): Add myself to the list.
12070
12071 2013-01-24 Tom Tromey <tromey@redhat.com>
12072
12073 * ada-lang.h (ada_decode_symbol): Make return type const.
12074 * ada-lang.c (ada_decode_symbol): Likewise.
12075
12076 2013-01-23 Doug Evans <dje@google.com>
12077
12078 * linespec.c (find_linespec_symbols): Make static.
12079
12080 2013-01-23 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
12081
12082 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
12083 type on float conversion for complex type.
12084
12085 2013-01-23 Siva Chandra Reddy <sivachandra@google.com>
12086
12087 Add a new class gdb.Architecture which exposes GDB's
12088 internal representation of architecture via GDB Python API.
12089 * Makefile.in: Add entries corresponding to the new file
12090 python/py-arch.c.
12091 * NEWS (Python Scripting): Add entries for the new class
12092 gdb.Architecture and the new method gdb.Frame.architecture.
12093 * python/py-arch.c: Implement gdb.Architecture class.
12094 * python/py-frame.c (frapy_arch): Implement the method
12095 gdb.Frame.architecture().
12096 (frame_object_methods): Add 'architecture' to the method table.
12097 * python/python-internal.h: Add declarations of new utility
12098 functions.
12099 * python/python.c (_initialize_python): Initialize
12100 gdb.Architecture class.
12101
12102 2013-01-23 Doug Evans <dje@google.com>
12103
12104 Work around binutils/15021.
12105 * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
12106 type_unit_group out of union s. All uses updated.
12107 (read_index_from_section): Watch for index version 8.
12108 (follow_die_sig): If using .gdb_index version <= 7, record the TU as
12109 an imported symtab.
12110 (write_psymtabs_to_index): Increment version number to 8.
12111
12112 2013-01-22 Pedro Alves <palves@redhat.com>
12113
12114 * annotate.c (breakpoint_changed): Skip if breakpoint is not
12115 user-visible.
12116
12117 2013-01-22 Pedro Alves <palves@redhat.com>
12118
12119 * annotate.c (annotate_breakpoints_changed): Rename to ...
12120 (annotate_breakpoints_invalid): ... this. Make static.
12121 (breakpoint_changed): Adjust.
12122 (_initialize_annotate): Always install the observers. Install a
12123 "breakpoint_created" observer.
12124 * annotate.h (annotate_breakpoints_changed): Delete declaration.
12125 * breakpoint.c (set_breakpoint_condition)
12126 (breakpoint_set_commands, do_map_commands_command)
12127 (init_raw_breakpoint, clear_command, set_ignore_count)
12128 (enable_breakpoint_disp): No longer call
12129 annotate_breakpoints_changed.
12130
12131 2013-01-22 Pedro Alves <palves@redhat.com>
12132
12133 * annotate.c: Include "inferior.h".
12134 (frames_invalid_emitted)
12135 (breakpoints_invalid_emitted): New globals.
12136 (async_background_execution_p): New function.
12137 (annotate_breakpoints_changed, annotate_frames_invalid): Skip
12138 emitting the annotation if it has already been emitted.
12139 (annotate_display_prompt): New function.
12140 * annotate.h (annotate_display_prompt): New declaration.
12141 * event-top.c: Include annotate.h.
12142 (display_gdb_prompt): Call annotate_display_prompt.
12143
12144 2013-01-22 Pedro Alves <palves@redhat.com>
12145
12146 * annotate.c (ignore_count_changed): Delete.
12147 (annotate_breakpoints_changed): Don't clear ignore_count_changed.
12148 (annotate_ignore_count_change): Delete.
12149 (annotate_stopped): Don't emit a delayed breakpoints-changed
12150 annotation.
12151 * annotate.h (annotate_ignore_count_change): Delete.
12152 * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
12153 annotate_ignore_count_change.
12154
12155 2013-01-22 Tom Tromey <tromey@redhat.com>
12156
12157 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
12158 require_rvalue for a register location.
12159
12160 2013-01-21 Marc Khouzam <marc.khouzam@ericsson.com>
12161
12162 * breakpoint.c (print_one_breakpoint_location): Add MI
12163 field 'thread-groups' when printing a breakpoint.
12164 (output_thread_groups): New function.
12165
12166 2013-01-21 Siva Chandra Reddy <sivachandra@google.com>
12167
12168 * python/lib/gdb/commands/explore.py
12169 (CompoundExplorer.explore_expr): Correct the name of a method
12170 being invoked.
12171 (ExploreTypeCommand.invoke): Add a missing 'return'.
12172
12173 2013-01-21 Tom Tromey <tromey@redhat.com>
12174
12175 * gdb_obstack.h (obconcat): Move declaration here, from...
12176 * symfile.h (obconcat): ... here.
12177 * gdb_obstack.c: New file.
12178 (obconcat): Move from...
12179 * symfile.c (obconcat): ... here.
12180 * Makefile.in (SFILES): Add gdb_obstack.c.
12181 (COMMON_OBS): Add gdb_obstack.o.
12182
12183 2013-01-21 Tom Tromey <tromey@redhat.com>
12184
12185 * symfile.h (obsavestring): Don't declare.
12186 * symfile.c (obsavestring): Remove.
12187 * ada-exp.y: Use obstack_copy0, not obsavestring.
12188 * ada-lang.c: Use obstack_copy0, not obsavestring.
12189 * coffread.c: Use obstack_copy0, not obsavestring.
12190 * cp-namespace.c: Use obstack_copy0, not obsavestring.
12191 * dbxread.c: Use obstack_copy0, not obsavestring.
12192 * dwarf2read.c: Use obstack_copy0, not obsavestring.
12193 * jit.c: Use obstack_copy0, not obsavestring.
12194 * mdebugread.c: Use obstack_copy0, not obsavestring.
12195 * psymtab.c: Use obstack_copy0, not obsavestring.
12196 * stabsread.c: Use obstack_copy0, not obsavestring.
12197 * xcoffread.c: Use obstack_copy0, not obsavestring.
12198
12199 2013-01-21 Tom Tromey <tromey@redhat.com>
12200
12201 * dwarf2read.c (fixup_go_packaging): Save package name
12202 on objfile obstack.
12203 * gdbtypes.c (init_type): Don't copy name.
12204
12205 2013-01-21 Tom Tromey <tromey@redhat.com>
12206
12207 * dwarf2read.c (struct partial_die_info) <name, scope>: Now
12208 const.
12209 (struct attribute) <u.str>: Now const.
12210 (struct fnfieldlist) <name>: Now const.
12211 (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
12212 (partial_die_parent_scope): Make return type const.
12213 (partial_die_full_name, add_partial_symbol): Update.
12214 (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
12215 'name' const.
12216 (find_file_and_directory): Make 'name' and 'comp_dir' const.
12217 (read_file_scope, read_func_scope, dwarf2_add_field)
12218 (dwarf2_add_member_fn, read_structure_type)
12219 (process_enumeration_scope, read_array_type, read_module_type)
12220 (read_base_type, read_subrange_type): Update.
12221 (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
12222 (new_symbol_full, guess_full_die_structure_name): Update.
12223 (dwarf2_canonicalize_name): Return const type. Make 'name' const.
12224 (dwarf2_name): Return const type.
12225 (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
12226 const.
12227
12228 2013-01-21 Tom Tromey <tromey@redhat.com>
12229
12230 * gdbtypes.c (init_type): Make 'name' const.
12231 * gdbtypes.h (init_type): Update.
12232
12233 2013-01-21 Tom Tromey <tromey@redhat.com>
12234
12235 * buildsym.c (patch_subfile_names): Use set_last_source_file.
12236 (start_symtab): Make 'name' and 'dirname' const. Use
12237 set_last_source_file.
12238 (restart_symtab, reset_symtab_globals): Use set_last_source_file.
12239 (last_source_file): Define. Now static.
12240 (set_last_source_file, get_last_source_file): New functions.
12241 * buildsym.h (last_source_file): Don't declare.
12242 (start_symtab): Update.
12243 (set_last_source_file, get_last_source_file): Declare.
12244 * coffread.c (complete_symtab): Use set_last_source_file.
12245 (coff_end_symtab): Likewise.
12246 (coff_symtab_read): Use set_last_source_file, get_last_source_file.
12247 * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
12248 set_last_source_file.
12249 (process_one_symbol): Use get_last_source_file.
12250 * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
12251 (psymtab_to_symtab_1): Use get_last_source_file.
12252 * xcoffread.c (process_linenos): Use get_last_source_file.
12253 (complete_symtab): Use set_last_source_file.
12254 (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
12255 (scan_xcoff_symtab): Use set_last_source_file.
12256
12257 2013-01-21 Tom Tromey <tromey@redhat.com>
12258
12259 * symtab.c (struct demangled_name_entry) <mangled>: Now const.
12260 (symbol_set_names): Remove casts. Handle field const-ness.
12261
12262 2013-01-21 Tom Tromey <tromey@redhat.com>
12263
12264 * dwarf2read.c (new_symbol_full): Remove cast.
12265 * symtab.c (symbol_set_demangled_name): Make 'name' const.
12266 * symtab.h (symbol_set_demangled_name): Update.
12267
12268 2013-01-21 Tom Tromey <tromey@redhat.com>
12269
12270 * main.c (captured_main): Call bfd_init.
12271
12272 2013-01-21 Tom Tromey <tromey@redhat.com>
12273
12274 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
12275 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
12276 * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
12277 * NEWS: Update.
12278
12279 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
12280
12281 * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
12282
12283 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
12284
12285 Fix gdb.fortran/common-block.exp crash in PIE mode.
12286 * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
12287 LOC_COMMON_BLOCK.
12288 * f-valprint.c (info_common_command_for_block): Expect
12289 LOC_COMMON_BLOCK in gdb_assert.
12290 * symtab.h (struct general_symbol_info): Update comment for the
12291 common_block member.
12292 (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
12293 (enum address_class): New member LOC_COMMON_BLOCK.
12294
12295 2013-01-18 David Blaikie <dblaikie@gmail.com>
12296
12297 * MAINTAINERS (Write After Approval): Add "David Blaikie".
12298
12299 2013-01-18 Tom Tromey <tromey@redhat.com>
12300
12301 PR c++/14999:
12302 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
12303 Call require_rvalue.
12304
12305 2013-01-18 Yao Qi <yao@codesourcery.com>
12306
12307 * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
12308 (dbx_read_symtab): New declaration.
12309 (dbx_psymtab_to_symtab): Delete.
12310 (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
12311 Rename parameter PST to SELF. Exchanged two parameters.
12312 (start_psymtab): Caller update.
12313 * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
12314 (dwarf2_read_symtab): New declaration.
12315 (dwarf2_psymtab_to_symtab): Delete.
12316 (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
12317 Rename parameter PST to SELF. Exchanged two parameters.
12318 (create_partial_symtab): Caller update.
12319 * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
12320 (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
12321 Rename parameter PST to SELF. Exchanged two parameters.
12322 (parse_partial_symbols, new_psymtab): Caller update.
12323 * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
12324 two parameters.
12325 * psymtab.c (psymtab_to_symtab): Caller update.
12326 * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
12327 (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
12328 Rename parameter PST to SELF. Exchanged two parameters.
12329 (xcoff_start_psymtab): Caller update.
12330
12331 2013-01-18 Yao Qi <yao@codesourcery.com>
12332
12333 * infrun.c (proceed): Rename local variable 'oneproc' to
12334 'force_step'.
12335
12336 2013-01-17 Doug Evans <dje@google.com>
12337
12338 * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
12339 (dw2_build_type_unit_groups): Delete. All uses updated.
12340
12341 * symtab.h (struct symbol_search): Add comment.
12342
12343 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
12344
12345 * symtab.c (compare_filenames_for_search): New comment for
12346 HAS_DRIVE_SPEC.
12347
12348 2013-01-17 Tom Tromey <tromey@redhat.com>
12349
12350 * cp-abi.c (cp_abi_completer): Fix typo in assignment.
12351
12352 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
12353
12354 * symtab.c (iterate_over_some_symtabs): New variable cleanups,
12355 initialize it by existing make_cleanup. Call new do_cleanups.
12356
12357 2013-01-17 Tom Tromey <tromey@redhat.com>
12358
12359 * cp-abi.c (cp_abi_completer): New function.
12360 (_initialize_cp_abi): Set completer for "set cp-abi".
12361
12362 2013-01-17 Tom Tromey <tromey@redhat.com>
12363
12364 * mem-break.c: Remove obsolete comment.
12365 * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
12366
12367 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
12368
12369 * jit.c (jit_reader_load_command): Interpret the jit reader name
12370 as an absolute path if it begins with a forward slash.
12371
12372 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
12373
12374 PR gdb/14550
12375
12376 * jit.c (finalize_symtab): Ensure that only the global block has a
12377 NULL superblock.
12378
12379 2013-01-17 Pedro Alves <palves@redhat.com>
12380
12381 * acinclude.m4: Include ../config/plugins.m4,
12382 ../config/largefile.m4 and ../config/lead-dot.m4. Add comments.
12383 * Makefile.in (aclocal_m4_deps): Update.
12384 * aclocal.m4: Renegerate.
12385
12386 2013-01-16 Doug Evans <dje@google.com>
12387
12388 * contrib/cc-with-tweaks.sh: Add references to Fission docs.
12389
12390 2013-01-16 Pedro Alves <palves@redhat.com>
12391 Tom Tromey <tromey@redhat.com>
12392
12393 PR cli/7221:
12394 * NEWS: Add "catch signal".
12395 * breakpoint.c (base_breakpoint_ops): No longer static.
12396 (bpstat_explains_signal): New function.
12397 (init_catchpoint): No longer static.
12398 (base_breakpoint_explains_signal): New function.
12399 (base_breakpoint_ops): Initialize new field.
12400 * breakpoint.h (enum bpstat_signal_value): New.
12401 (struct breakpoint_ops) <explains_signal>: New field.
12402 (bpstat_explains_signal): Remove macro, declare as function.
12403 (base_breakpoint_ops, init_catchpoint): Declare.
12404 * break-catch-sig.c: New file.
12405 * inferior.h (signal_catch_update): Declare.
12406 * infrun.c (signal_catch): New global.
12407 (handle_syscall_event): Update for change to
12408 bpstat_explains_signal.
12409 (handle_inferior_event): Likewise. Always handle random signals
12410 via bpstats.
12411 (signal_cache_update): Check signal_catch.
12412 (signal_catch_update): New function.
12413 (_initialize_infrun): Initialize signal_catch.
12414 * Makefile.in (SFILES): Add break-catch-sig.c.
12415 (COMMON_OBS): Add break-catch-sig.o.
12416
12417 2013-01-16 Tom Tromey <tromey@redhat.com>
12418
12419 * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
12420 (print_one_catch_solib, print_one_catch_syscall)
12421 (print_one_catch_exec, print_one_exception_catchpoint): Emit
12422 "catch-type".
12423
12424 2013-01-16 Yao Qi <yao@codesourcery.com>
12425
12426 * printcmd.c (current_display_number): Make it static.
12427
12428 2013-01-16 Yao Qi <yao@codesourcery.com>
12429
12430 * infcmd.c (step_once): Don't check '!single_inst' as it was
12431 checked before.
12432
12433 2013-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
12434
12435 * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
12436
12437 2013-01-14 Tom Tromey <tromey@redhat.com>
12438
12439 * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
12440 set command.
12441 * command.h (add_setshow_string_noescape_cmd): Update.
12442 * corefile.c (set_gnutarget_command): Remove trailing whitespace.
12443 (complete_set_gnutarget): New function.
12444 (_initialize_core): Set the "set gnutarget" completer.
12445
12446 2013-01-14 Tom Tromey <tromey@redhat.com>
12447
12448 PR symtab/14442:
12449 * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
12450 (c_type_print_modifier): Likewise.
12451 * dwarf2read.c (read_tag_restrict_type): New function.
12452 (read_type_die_1): Handle DW_TAG_restrict_type.
12453 * gdbtypes.c (make_restrict_type): New function.
12454 (recursive_dump_type): Handle TYPE_RESTRICT.
12455 * gdbtypes.h (enum type_flag_values): Renumber.
12456 (enum type_instance_flag_value): Add
12457 TYPE_INSTANCE_FLAG_RESTRICT.
12458 (TYPE_RESTRICT): New macro.
12459 (make_restrict_type): Declare.
12460
12461 2013-01-14 Tom Tromey <tromey@redhat.com>
12462
12463 PR symtab/14931:
12464 * psymtab.c (struct psymtab_state): New.
12465 (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
12466 functions.
12467 * psympriv.h (make_cleanup_discard_psymtabs): Declare.
12468 * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
12469
12470 2013-01-14 Richard Sharman <richard_sharman@mitel.com>
12471 Pedro Alves <palves@redhat.com>
12472
12473 PR remote/14786
12474
12475 * remote.c (remote_threads_info): Make a copy of the reply from
12476 qfThreadInfo and use that instead of rs->buf.
12477
12478 2013-01-14 Yao Qi <yao@codesourcery.com>
12479
12480 * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
12481 (dbx_psymtab_to_symtab): Likewise.
12482 * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
12483 * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
12484 * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
12485
12486 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
12487
12488 * parse.c (parse_exp_in_context): New variable inner_chain. Call
12489 make_cleanup_restore_current_language. Call set_language. Move
12490 OLD_CHAIN and INNER_CHAIN cleanups.
12491 * utils.c (do_restore_current_language)
12492 (make_cleanup_restore_current_language): New functions.
12493 * utils.h (make_cleanup_restore_current_language): New declaration.
12494
12495 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
12496
12497 * source.c (symtab_to_fullname): Apply rewrite_source_path also for
12498 non-existing files.
12499
12500 * source.c (symtab_to_fullname): Do not prepend DIRNAME for
12501 non-existing files if FILENAME is already absolute.
12502
12503 2013-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
12504
12505 * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
12506 fputs_filtered. Append trailing newline.
12507
12508 2013-01-11 Yao Qi <yao@codesourcery.com>
12509 Stan Shebs <stan@codesourcery.com>
12510
12511 * psymtab.c (init_psymbol_list): Clarify the comment.
12512
12513 2013-01-11 Yao Qi <yao@codesourcery.com>
12514
12515 * breakpoint.c (print_one_breakpoint_location): Remove dead code.
12516 (update_dprintf_command_list): Assert that 'printf_line' is
12517 non-null. Remove condition check.
12518
12519 2013-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
12520
12521 Code cleanup.
12522 * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
12523 type const char *.
12524 * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
12525 const char *.
12526 * tui/tui-source.h (tui_source_is_displayed): Likewise.
12527
12528 2013-01-09 Anthony Green <green@moxielogic.com>
12529
12530 * cp-abi.c (cplus_print_vtable): Don't return value from void
12531 function.
12532 * ada-lang.c (re_set_catch_assert): Ditto.
12533
12534 2013-01-09 Doug Evans <dje@google.com>
12535
12536 * symfile.h (quick_symbol_functions): Delete member
12537 pre_expand_symtabs_matching. All uses removed.
12538 * dwarf2read.c (dw2_lookup_symbol): Implement.
12539 (dw2_do_expand_symtabs_matching): Delete.
12540 (dw2_pre_expand_symtabs_matching): Delete.
12541 (struct dw2_symtab_iterator): New type.
12542 (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
12543 (dw2_expand_symtabs_for_function): Rewrite.
12544 (dwarf2_gdb_index_functions): Update.
12545 * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
12546 (psym_functions): Update.
12547
12548 2013-01-09 Tom Tromey <tromey@redhat.com>
12549
12550 * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
12551 * configure: Rebuild.
12552 * configure.ac: Add somread.o to the build if BFD has SOM
12553 support.
12554 * somread.c: Include som/aout.h, not syms.h.
12555 (som_symtab_read): Use som_external_symbol_dictionary_record.
12556 Unpack records manually.
12557 (_initialize_somread): Declare.
12558
12559 2012-01-08 Mike Frysinger <vapier@gentoo.org>
12560
12561 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
12562 Cast return_address to 64bits.
12563
12564 2013-01-08 Hui Zhu <hui_zhu@mentor.com>
12565
12566 * printcmd.c: Remove define of function output_command.
12567 * tracepoint.c: Remove extern of function output_command.
12568 * valprint.h: (output_command): New extern.
12569
12570 2013-01-07 Tom Tromey <tromey@redhat.com>
12571
12572 * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
12573 Remove.
12574 (objc_language_defn): Use c_printchar, c_printstr,
12575 c_emit_char.
12576
12577 2013-01-07 Tom Tromey <tromey@redhat.com>
12578
12579 PR cli/7719:
12580 * NEWS: Update.
12581 * ada-valprint.c (printstr, print_field_values): Remove
12582 "inspect_it" code.
12583 * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
12584 code.
12585 * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
12586 code.
12587 * m2-lang.c (m2_printstr): Remove "inspect_it" code.
12588 * main.c (captured_main): Remove "epoch" argument.
12589 * objc-lang.c (objc_printstr): Remove "inspect_it" code.
12590 * p-lang.c (pascal_printstr): Remove "inspect_it" code.
12591 * p-valprint.c (pascal_object_print_value_fields): Remove
12592 "inspect_it" code.
12593 * printcmd.c (print_command_1): Remove 'inspect' argument.
12594 (print_command, call_command): Update.
12595 (inspect_command): Remove.
12596 (_initialize_printcmd): Make "inspect" an alias for "print".
12597 * top.c (epoch_interface): Remove.
12598 * top.h (epoch_interface): Remove.
12599 * valprint.c (user_print_options): Update.
12600 (print_converted_chars_to_obstack): Remove "inspect_it" code.
12601 * valprint.h (struct value_print_options) <inspect_it>: Remove
12602 field.
12603
12604 2013-01-04 Tom Tromey <tromey@redhat.com>
12605
12606 * valprint.h (read_string): Add 'extern'.
12607
12608 2013-01-07 Joel Brobecker <brobecker@adacore.com>
12609
12610 * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
12611 used to decide whether to define darwin_read_dyld_info or not.
12612
12613 2013-01-03 Pierre Muller <muller@sourceware.org>
12614
12615 * main.c (relocate_gdb_directory): Avoid calling stat function
12616 if DIR is empty.
12617
12618 2013-01-03 Yao Qi <yao@codesourcery.com>
12619
12620 * psymtab.c (fixup_psymbol_section): Update declaration.
12621 (fixup_psymbol_section): Remove code returning value.
12622
12623 2013-01-03 Yao Qi <yao@codesourcery.com>
12624
12625 * symtab.h: Remove some out of date comments.
12626 (enum exception_event_kind): Move it ...
12627 * breakpoint.c: ... here.
12628
12629 2013-01-02 Iain Sandoe <developer@sandoe-acoustics.co.uk>
12630
12631 PR gdb/14405
12632 * darwin-nat.c (darwin_read_dyld_info): Only build if
12633 TASK_DYLD_INFO_COUNT is defined.
12634 (darwin_xfer_partial): Call darwin_read_dyld_info only if
12635 TASK_DYLD_INFO_COUNT is defined.
12636
12637 2013-01-02 Tom Tromey <tromey@redhat.com>
12638
12639 * symfile.h (struct ecoff_debug_hack): Remove.
12640 * objfiles.c: Don't include mdebugread.h.
12641
12642 2013-01-02 Tom Tromey <tromey@redhat.com>
12643
12644 * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
12645 * configure.ac: Check for Mach-O support in BFD. Update
12646 CONFIG_OBS.
12647 * configure: Rebuild.
12648
12649 2013-01-02 Tom Tromey <tromey@redhat.com>
12650
12651 * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
12652 * configure.ac: Use GDB_AC_CHECK_BFD.
12653 * configure: Rebuild.
12654
12655 2013-01-01 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
12656
12657 * MAINTAINERS: Update my email.
12658
12659 2013-01-01 Joel Brobecker <brobecker@adacore.com>
12660
12661 * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
12662
12663 2013-01-01 Joel Brobecker <brobecker@adacore.com>
12664
12665 * rs6000-nat.c (bss_data_overlap): New function.
12666 (vmap_symtab): Use it to adjust the .bss section's offset.
12667
12668 2013-01-01 Joel Brobecker <brobecker@adacore.com>
12669
12670 Update year range in copyright notice of all files.
12671
12672 2013-01-01, 13 Joel Brobecker <brobecker@adacore.com>
12673
12674 * top.c (print_gdb_version): Update copyright year.
12675
12676 For older changes see ChangeLog-2012.
12677 \f
12678 Local Variables:
12679 mode: change-log
12680 left-margin: 8
12681 fill-column: 74
12682 version-control: never
12683 coding: utf-8
12684 End:
This page took 0.295376 seconds and 4 git commands to generate.