gdb/
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2013-05-16 Yue Lu <hacklu.newborn@gmail.com>
2
3 * configure.ac: Ensure MIG is available when building for GNU Hurd
4 hosts.
5 * configure: Regenerate.
6
7 2013-05-16 Joel Brobecker <brobecker@adacore.com>
8
9 * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
10
11 2013-05-16 Joel Brobecker <brobecker@adacore.com>
12
13 * ada-lang.c (ada_make_symbol_completion_list): Make sure
14 all cleanups are done before returning from this function.
15
16 2013-05-15 Joel Brobecker <brobecker@adacore.com>
17
18 * utils.h: #include "exceptions.h".
19 (enum errors): Remove partial declaration.
20
21 2013-05-15 Joel Brobecker <brobecker@adacore.com>
22
23 * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
24 * gdbarch.h, gdbarch.c: Regenerate.
25 * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
26 handling.
27
28 * rs6000-aix-tdep.h: New file.
29 * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
30 * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
31 "xml-utils.h".
32 (struct field_info, struct ld_info_desc): New types.
33 (ld_info32_desc, ld_info64_desc): New static constants.
34 (struct ld_info): New type.
35 (rs6000_aix_extract_ld_info): New function.
36 (rs6000_aix_shared_library_to_xml): Likewise.
37 (rs6000_aix_ld_info_to_xml): Likewise.
38 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
39 (rs6000_aix_init_osabi): Add call to
40 set_gdbarch_core_xfer_shared_libraries_aix.
41 * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
42 Remove "xml-utils.h" include.
43 (LdInfo): Delete typedef.
44 (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
45 Delete macros.
46 (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
47 Adjust code accordingly.
48 (rs6000_core_ldinfo): Delete, folded into
49 rs6000_aix_core_xfer_shared_libraries_aix.
50 (rs6000_xfer_shared_library): Delete.
51 (rs6000_xfer_shared_libraries): Reimplement.
52
53 2013-05-15 Markus Metzger <markus.t.metzger@intel.com>
54
55 * record.c (record_goto_cmdlist): New.
56 (cmd_record_goto): Split into this ...
57 (cmd_record_goto_begin): ... this
58 (cmd_record_goto_end): ... and this.
59 (_initialize_record): Change "record goto" to prefix command.
60 Add commands for "record goto begin" and "record goto end".
61 Add an alias for "record goto start" to "record goto begin".
62
63 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
64
65 * linespec.c (convert_linespec_to_sals): New comment for
66 SOURCE_FILENAME assignment.
67
68 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
69
70 * cleanups.c (restore_my_cleanups): Replace gdb_assert by
71 internal_warning.
72
73 2013-05-14 Tom Tromey <tromey@redhat.com>
74
75 * eval.c (parse_and_eval_long): Make 'exp' const.
76 * value.h (parse_and_eval_long): Update.
77
78 2013-05-14 Tom Tromey <tromey@redhat.com>
79
80 * ui-file.c (gdb_fopen): Make arguments const.
81 * ui-file.h (gdb_fopen): Make arguments const.
82
83 2013-05-14 Tom Tromey <tromey@redhat.com>
84
85 * remote.c (remote_set_trace_notes): Make arguments const.
86 * target.c (update_current_target): Update cast.
87 * target.h (to_set_trace_notes): Make arguments const.
88
89 2013-05-14 Tom Tromey <tromey@redhat.com>
90
91 * go32-nat.c (go32_terminal_info): Make 'args' const.
92 * inferior.h (child_terminal_info): Update.
93 * inflow.c (child_terminal_info): Make 'args' const.
94 * target.c (default_terminal_info): Make 'args' const.
95 (debug_to_terminal_save_ours): Likewise.
96 * target.h (struct target_ops) <to_terminal_info>: Make argument
97 const.
98
99 2013-05-13 Tom Tromey <tromey@redhat.com>
100
101 * gcore.c (create_gcore_bfd): Make 'filename' const.
102 * gcore.h (create_gcore_bfd): Make 'filename' const.
103 * record-full.c (record_full_save): Make 'recfilename' const.
104 * target.c (target_save_record): Make 'filename' const.
105 * target.h (struct target_ops) <to_save_record>: Make 'filename'
106 const.
107 (target_save_record): Likewise.
108
109 2013-05-13 Tom Tromey <tromey@redhat.com>
110
111 PR gdb/15338:
112 * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
113 ranges section has been read.
114
115 2013-05-13 Tom Tromey <tromey@redhat.com>
116
117 PR exp/15364:
118 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
119 STRUCTOP_PTR>: Return a not_lval value for
120 EVAL_AVOID_SIDE_EFFECTS.
121 * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
122 for EVAL_AVOID_SIDE_EFFECTS.
123
124 2013-05-13 Joel Brobecker <brobecker@adacore.com>
125
126 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
127 floating point registers to register type before storing
128 value.
129 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
130 Likewise.
131
132 2013-05-10 Joel Brobecker <brobecker@adacore.com>
133 Tom Tromey <tromey@redhat.com>
134
135 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
136 New functions.
137 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
138 Declare.
139 * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
140 (darwin_ptrace_him): Use unmark_fd_no_cloexec.
141 * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
142 (inf_ttrace_prepare): Use mark_fd_no_cloexec.
143
144 2013-05-10 Freddie Chopin <freddie_chopin@op.pl>
145 Tom Tromey <tromey@redhat.com>
146
147 PR build/15414:
148 * configure: Rebuild.
149 * configure.ac (build_warnings): Do not use -Wformat-nonliteral
150 with -Wno-format.
151
152 2013-05-10 Pedro Alves <palves@redhat.com>
153
154 * remote.c (_initialize_remote): Fix spelling of
155 qXfer:traceframe-info:read packet in packet config command.
156
157 2013-05-10 David Taylor <dtaylor@emc.com>
158
159 PR remote/15455
160
161 * remote.c (remote_trace_set_readonly_regions): Do not overwrite
162 "QTro" at start of packet.
163
164 2013-05-10 Joel Brobecker <brobecker@adacore.com>
165
166 * solib-aix.c (solib_aix_relocate_section_addresses):
167 For the .bss section action, apply the same offset as
168 the .data section.
169
170 2013-05-10 Joel Brobecker <brobecker@adacore.com>
171
172 * solib-aix.c (solib_aix_relocate_section_addresses):
173 Remove FIXME comment.
174
175 2013-05-10 Joel Brobecker <brobecker@adacore.com>
176
177 PR tdep/15420:
178 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
179 New functions, directly copied from sparc-sol-thread.c.
180 * sparc-sol-thread.c: Delete.
181 * configure.ac: Remove code handling sparc-solaris-thread.c.
182 * configure: Regenerate.
183
184 2013-05-10 Phil Muldoon <pmuldoon@redhat.com>
185
186 * stack.c (backtrace_command_1): Add "no-filters", and Python frame
187 filter logic.
188 (backtrace_command): Add "no-filters" option parsing.
189 (_initialize_stack): Alter help to reflect "no-filters" option.
190 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
191 (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
192 (py-frame.o): Add target
193 * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
194 filter files.
195 * python/python.h: Add new frame filter constants, and flag enum.
196 (apply_frame_filter): Add definition.
197 * python/python.c (apply_frame_filter): New non-Python
198 enabled function.
199 * python/py-utils.c (py_xdecref): New function.
200 (make_cleanup_py_xdecref): Ditto.
201 * python/py-objfile.c: Declare frame_filters dictionary.
202 (objfpy_dealloc): Add frame_filters dealloc.
203 (objfpy_new): Initialize frame_filters attribute.
204 (objfile_to_objfile_object): Ditto.
205 (objfpy_get_frame_filters): New function.
206 (objfpy_set_frame_filters): New function.
207 * python/py-progspace.c: Declare frame_filters dictionary.
208 (pspy_dealloc): Add frame_filters dealloc.
209 (pspy_new): Initialize frame_filters attribute.
210 (pspacee_to_pspace_object): Ditto.
211 (pspy_get_frame_filters): New function.
212 (pspy_set_frame_filters): New function.
213 * python/py-framefilter.c: New file.
214 * python/lib/gdb/command/frame_filters.py: New file.
215 * python/lib/gdb/frames.py: New file.
216 * python/lib/gdb/__init__.py: Initialize global frame_filters
217 dictionary
218 * python/lib/gdb/FrameDecorator.py: New file.
219 * python/lib/gdb/FrameIterator.py: New file.
220 * mi/mi-cmds.c (mi_cmds): Add frame filters command.
221 * mi/mi-cmds.h: Declare.
222 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
223 --no-frame-filter logic, and Python frame filter logic.
224 (stack_enable_frame_filters): New function.
225 (parse_no_frame_option): Ditto.
226 (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
227 filter logic.
228 (mi_cmd_stack_list_locals): Ditto.
229 (mi_cmd_stack_list_args): Ditto.
230 (mi_cmd_stack_list_variables): Ditto.
231 * NEWS: Add frame filter note.
232
233 2013-05-09 Doug Evans <dje@google.com>
234
235 * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
236 All callers updated.
237 (syms_from_objfile): Ditto. Make static.
238 (symbol_file_add_with_addrs): Renamed from
239 symbol_file_add_with_addrs_or_offsets. Delete args offsets,
240 num_offsets. All callers updated.
241 * symfile.h (syms_from_objfile): Delete.
242
243 * symfile.c (decrement_reading_symtab): Add assert.
244 (increment_reading_symtab): Ditto.
245
246 2013-05-09 Joel Brobecker <brobecker@adacore.com>
247
248 * source.c (forward_search_command): Replace call to getc
249 by call to fgetc.
250 (reverse_search_command): Likewise.
251
252 2013-05-08 Doug Evans <dje@google.com>
253
254 * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
255 matching test.
256
257 2013-05-08 Joel Brobecker <brobecker@adacore.com>
258
259 * sol-thread.c (info_cb): Factorize the code a little.
260
261 2013-05-08 Joel Brobecker <brobecker@adacore.com>
262
263 * sol-thread.c (info_cb): Rework the output of the "maintenance
264 info sol-threads" command a bit.
265
266 2013-05-08 Joel Brobecker <brobecker@adacore.com>
267
268 * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
269 Replace ti.ti_startfunc by ti.ti_pc.
270
271 2013-05-08 Joel Brobecker <brobecker@adacore.com>
272
273 * solib-aix.c (solib_aix_free_library_list): New function
274 for the case where HAVE_LIBEXPAT is not defined.
275
276 2013-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
277
278 PR breakpoints/15413:
279 * breakpoint.c (condition_completer): Simplify the code to
280 disconsider multiple locations of breakpoints when completing the
281 "condition" command.
282
283 2013-05-07 Pierre Muller <muller@sourceware.org>
284
285 * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
286 instead of <sys/wait.h>.
287
288 2013-05-07 Pierre Muller <muller@sourceware.org>
289
290 * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
291 trailing new line from warning message.
292
293 2013-05-07 Pierre Muller <muller@sourceware.org>
294
295 * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
296 (PC_SOLIB): Change type from ari_deprecate to ari_regression.
297
298 2013-05-07 Joel Brobecker <brobecker@adacore.com>
299
300 * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
301 error message (ARI fix).
302
303 2013-05-07 Joel Brobecker <brobecker@adacore.com>
304
305 * features/library-list-aix.dtd: Replace library-list by
306 library-list-aix.
307 * rs6000-nat.c: Replace library-list by library-list-aix
308 throughout.
309 * solib-aix.c: Likewise.
310
311 2013-05-07 Joel Brobecker <brobecker@adacore.com>
312
313 * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
314 Renames TARGET_OBJECT_AIX_LIBRARIES.
315 * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
316 TARGET_OBJECT_LIBRARIES_AIX throughout.
317 * solib-aix.c: Likwise.
318
319 2013-05-07 Yao Qi <yao@codesourcery.com>
320
321 * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
322 (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
323
324 2013-05-07 Yao Qi <yao@codesourcery.com>
325
326 * solib-dsbt.c (enable_break): Declare.
327 (dsbt_current_sos): Remove call to enable_break2.
328 (enable_break2): Rename to enable_break. Set solib breakpoint
329 on '_dl_debug_state'.
330 (enable_break): Remove.
331
332 2013-05-07 Luis Machado <lgustavo@codesourcery.com>
333
334 * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
335 debug state prior to replicating existing hardware watchpoints or
336 breakpoints.
337
338 2013-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
339
340 * gcore.c (gcore_create_callback): Ignore sections with
341 separate_debug_objfile_backlink != NULL.
342
343 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
344 Andrew Jenner <andrew@codesourcery.com>
345 Chung-Lin Tang <cltang@codesourcery.com>
346 Julian Brown <julian@codesourcery.com>
347
348 Based on the nios2-elf port from Altera Corporation.
349
350 * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
351 nios2-linux-tdep.o.
352 (HFILES_NO_SRCDIR): Add nios2-tdep.h.
353 (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
354 * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
355 * nios2-tdep.h: New.
356 * nios2-tdep.c: New.
357 * nios2-linux-tdep.c: New.
358 * features/Makefile (WHICH): Add nios2-linux.
359 (nios2-linux-expedite): Set.
360 * features/nios2-cpu.xml: New.
361 * features/nios2.xml: New.
362 * features/nios2-linux.xml: New.
363 * features/nios2.c: New (autogenerated).
364 * features/nios2-linux.c: New (autogenerated).
365 * regformats/nios2-linux.dat: New (autogenerated).
366 * NEWS (Changes since GDB 7.6): Add new Nios II targets
367 and commands.
368
369 2013-05-06 Doug Evans <dje@google.com>
370
371 * symfile.c: Whitespace cleanup.
372
373 * solist.h (struct target_so_ops): New member clear_so.
374 * solib-svr4.c (svr4_clear_so): New function.
375 (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
376 * solib.c (clear_so): Renamed from free_so_symbols.
377 All callers updated. Call target clear_so if it exists.
378
379 2013-05-06 Tom Tromey <tromey@redhat.com>
380
381 * ada-lang.c (ada_value_primitive_packed_val): Don't
382 call value_incref.
383 * value.c (set_value_parent): Incref the new parent and decref
384 the old parent.
385 (value_copy, value_primitive_field): Use set_value_parent.
386
387 2013-05-06 Tom Tromey <tromey@redhat.com>
388
389 * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
390 (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
391 if needed.
392 * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
393 * dwarf2read.c (write_constant_as_bytes)
394 (dwarf2_fetch_constant_bytes): New functions.
395
396 2013-05-06 Tom Tromey <tromey@redhat.com>
397
398 * dwarf2read.c (dwarf2_const_value_data): Remove unused
399 parameters.
400 (dwarf2_const_value_attr): Update.
401
402 2013-05-06 Tom Tromey <tromey@redhat.com>
403
404 * somread.c (som_symfile_offsets): Add 'const' to addrs.
405 * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
406 * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
407 Remove declaration.
408
409 2013-05-06 Tom Tromey <tromey@redhat.com>
410
411 * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
412 objfile's obstack.
413
414 2013-05-06 Doug Evans <dje@google.com>
415
416 * dbxread.c (process_one_symbol): Constify section_offsets parameter.
417 * stabsread.h (process_one_symbol): Update declaration.
418 * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
419 * elfread.c (elf_symfile_relocate_probe): Ditto.
420 * psymtab.c (relocate_psymtabs): Ditto.
421 * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
422 (objfile_relocate): Ditto.
423 * objfiles.h (objfile_relocate): Update declaration.
424 * symfile.c (relative_addr_info_to_section_offsets): Constify
425 addrs parameter.
426 (default_symfile_offsets): Ditto.
427 (syms_from_objfile_1): Constify offsets parameter.
428 (syms_from_objfile): Ditto.
429 (symbol_file_add_with_addrs_or_offsets): Ditto.
430 (symfile_map_offsets_to_segments): Constify data parameter.
431 * symfile.h (struct quick_symbol_functions): Constify new_offsets,
432 delta parameters of member relocate.
433 (struct sym_probe_fns): Constify new_offsets,
434 delta parameters of member sym_relocate_probe.
435 (struct sym_fns): Constify section_addr_info parameter of member
436 sym_offsets.
437 (relative_addr_info_to_section_offsets): Update declaration.
438 (default_symfile_offsets): Ditto.
439 (syms_from_objfile): Ditto.
440 (symfile_map_offsets_to_segments): Ditto.
441
442 * symfile.c (syms_from_objfile_1): Use correct section count when
443 objfile->sf == NULL.
444
445 2013-05-06 Mike Frysinger <vapier@gentoo.org>
446
447 * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
448
449 2013-05-06 Doug Evans <dje@google.com>
450
451 * psympriv.h (struct partial_symtab): Augment comment for member
452 section_offsets.
453
454 2013-05-06 Joel Brobecker <brobecker@adacore.com>
455
456 Reimplement shared library support on ppc-aix...
457 * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
458 * features/library-list-aix.dtd: New file.
459 * solib-aix.h, solib-aix.c: New file.
460 * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
461 (rs6000_find_toc_address_hook): Delete.
462 (rs6000_push_dummy_call): Rewrite code setting the TOC value.
463 (rs6000_aix_init_osabi): Register solib_aix_so_ops.
464 * rs6000-nat.c: Remove "xcoffsolib.h" include. Include
465 "xml-utils.h".
466 (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
467 (vmap_symtab, fixup_breakpoints): Delete.
468 (rs6000_xfer_shared_libraries): New function.
469 (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
470 (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
471 (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
472 (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
473 (rs6000_xfer_shared_library): New function.
474 (find_toc_address): Delete.
475 (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
476 * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
477 * xcoffread.c (record_minimal_symbol): Reloate symbol address
478 before creating minimal symbol. Adjust function description
479 accordingly.
480 (scan_xcoff_symtab): Replace call to
481 prim_record_minimal_symbol_and_info by call to
482 record_minimal_symbol.
483 (xcoff_symfile_offsets): Reimplement mostly as a wrapper
484 around default_symfile_offsets.
485 * configure.tgt: Add solib-aix.o to gdb_target_obs for
486 powerpc-aix targets.
487 * config/rs6000/nm-rs6000.h: Delete.
488 * config/powerpc/aix.mh (NAT_FILE): Delete.
489 (NATDEPFILES): Remove xcoffsolib.o.
490 * Makefile.in (XMLFILES): Add library-list-aix.dtd.
491 (ALL_TARGET_OBS): Add solib-aix.o.
492 (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
493 config/rs6000/nm-rs6000.h. Add solib-aix.h.
494 (ALLDEPFILES): Add solib-aix.c. Remove xcoffsolib.c.
495 * xcoffsolib.h, xcoffsolib.c: Delete.
496
497 * solib.c (reload_shared_libraries): Remove reference to
498 SOLIB_CREATE_INFERIOR_HOOK.
499 * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
500 (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
501 (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
502 comment.
503 * corelow.c (deprecated_core_resize_section_table): Delete.
504 * exec.c: Remove include of xcoffsolib.h".
505 (map_vmap, vmap): Delete.
506 (exec_close_1): Remove references to vmap.
507 (exec_file_attach): Remove vmap handling code, and reference
508 to DEPRECATED_IBM6000_TARGET.
509 (bfdsec_to_vmap): Delete.
510 (exec_files_info): Remove block of code handling VMAP.
511 * infcmd.c (post_create_inferior): Remove reference to
512 SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
513 * infrun.c (follow_exec): Remove reference to
514 SOLIB_CREATE_INFERIOR_HOOK.
515 * stack.c (print_frame): Remove reference to PC_SOLIB.
516 * solib-dsbt.c (dsbt_current_sos): Adjust comment.
517 (dsbt_relocate_main_executable): Likewise.
518 * solib-frv.c (frv_current_sos): Likewise.
519
520 2013-05-06 Joel Brobecker <brobecker@adacore.com>
521
522 * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
523 to target_write_memory and target_read_memory.
524
525 2013-05-06 Joel Brobecker <brobecker@adacore.com>
526
527 * darwin-nat.c (darwin_setup_fake_stop_event): New function.
528 (darwin_attach): Adjust using darwin_setup_fake_stop_event.
529
530 2013-05-06 Joel Brobecker <brobecker@adacore.com>
531
532 * darwin-nat.c: Replace all "%x" instances in format strings
533 into "0x%x" throughout.
534
535 2013-05-06 Joel Brobecker <brobecker@adacore.com>
536
537 * darwin-nat.c (darwin_mourn_inferior): Replace call to
538 gdb_assert by call to MACH_CHECK_ERROR.
539 (darwin_attach_pid): Raise an error rather than a failed
540 assertion when various system calls failed. Report a warning
541 instead of raising a failed assertion when PREV_NOT is not NULL
542 after call to mach_port_request_notification.
543 (darwin_ptrace_me): Raise an error rather than a failed
544 assertion when read returns nonzero.
545
546 2013-05-06 Joel Brobecker <brobecker@adacore.com>
547
548 * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
549
550 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
551
552 * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
553
554 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
555
556 * event-top.c (display_gdb_prompt): Call missing do_cleanups.
557 * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
558 * symfile.c (symfile_bfd_open): New variable back_to. Do not leave
559 a stale cleanup. Fix double free of NAME.
560
561 2013-05-04 Eli Zaretskii <eliz@gnu.org>
562
563 * windows-nat.c (windows_delete_thread): Accept an additional
564 argument, the thread's exit code, and announce thread death when
565 print_thread_events is non-zero and we are deleting a thread that
566 is not the main thread.
567 (get_windows_debug_event): Pass thread exit code to
568 windows_delete_thread.
569
570 2013-05-03 Kevin Buettner <kevinb@redhat.com>
571
572 * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
573 (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
574 (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
575 (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
576 (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
577 (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
578 (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
579 (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
580 (gdbarch_tdep): New struct.
581 (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
582 E_NUM_REGS.
583 (v850e3v5_register_name): New function.
584 (v850_register_type): v850e3v5 vector registers are 64-bits wide.
585 (v850_use_struct_convention): Add `gdbarch' parameter. Add new
586 code handling the struct return conventions for the RH850 ABI.
587 Update all callers.
588 (v850_eight_byte_align_p): New function.
589 (v850_push_call_dummy): Push structs by value, not by reference
590 for the RH850 ABI. Add support for eight byte alignment.
591 (v850_dbtrap_breakpoint_from_pc): New function.
592 (v850_gdbarch_init): Add ABI detection code. Register
593 v850e3v5_register_name for the v850e3v5 architecture. Set the
594 number of registers for v850e3v5. Register
595 v850_dbtrap_breakpoint_from_pc as appropriate.
596 (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
597
598 2013-05-03 Doug Evans <dje@google.com>
599
600 * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
601 of bfd_count_sections.
602 * solib-target.c (solib_target_relocate_section_addresses): Ditto.
603 * symfile.c (default_symfile_offsets): Ditto.
604 (syms_from_objfile_1): Ditto. Make dummy addrs list an array of
605 one entry, not bfd_count_sections entries.
606
607 2013-05-03 Kevin Buettner <kevinb@redhat.com>
608
609 * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
610 `save' and `restore' register groups. Don't include SPL
611 or SPH in these groups.
612 (rl78_dwarf_reg_to_regnum): Adjust mapping for
613 RL78_PC_REGNUM. Add mappings for RL78_PSW_REGNUM,
614 RL78_ES_REGNUM, and RL78_CS_REGNUM.
615 (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4. Invoke
616 dwarf2_append_unwinders().
617
618 2013-05-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
619
620 * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
621 ignore SIGINT and SIGTRAP in case these internal signals are
622 caught explicitely.
623
624 2013-05-01 Joel Brobecker <brobecker@adacore.com>
625
626 * darwin-nat.c (darwin_read_write_inferior): Change types
627 of parameters rdaddr and wraddr to "gdb_byte *". Change type
628 of copy_count to "mach_msg_type_number_t".
629 (darwin_read_dyld_info): Change type of parameter
630 rdaddr to "gdb_byte *".
631
632 2013-05-01 Joel Brobecker <brobecker@adacore.com>
633
634 * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
635 of &info->load_map from "char *" to "gdb_byte *".
636
637 2013-05-01 Joel Brobecker <brobecker@adacore.com>
638
639 * ia64-tdep.c (ia64_access_fpreg): Change cast of val
640 from "char *" to "gdb_byte *".
641 (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
642
643 2013-04-30 Doug Evans <dje@google.com>
644
645 * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
646 (init_cutu_and_read_dies): Flag a complaint, not error, for bad
647 DWO stub. If DWO isn't found, just use stub.
648 (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
649
650 * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
651 calling init_cutu_and_read_dies.
652
653 2013-03-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
654
655 * target-descriptions.c (maint_print_c_tdesc_cmd):
656 Add case to parse structures as register types and
657 bitfields.
658
659 2013-04-30 Walfred Tedeschi <walfred.tedeschi@intel.com>
660
661 * MAINTAINERS (Write After Approval): Add myself to the list.
662
663 2013-04-30 Joel Brobecker <brobecker@adacore.com>
664
665 * sol-thread.c (rw_common): Change type of parameter "buf"
666 to "gdb_byte *".
667 (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
668 rw_common to "gdb_byte *" instead of "char *".
669
670 2013-04-30 Joel Brobecker <brobecker@adacore.com>
671
672 * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
673 of local variable msym to const struct bound_minimal_symbol.
674 Adjust use accordingly.
675 [ti.ti_state == TD_THR_SLEEP]: Likewise.
676
677 2013-04-30 Samuel Thibault <samuel.thibault@gnu.org>
678
679 * i386gnu-nat.c (CREG_OFFSET): New macro.
680 (creg_offset): New array.
681 (CREG_ADDR): Use creg_offset instead of reg_offset.
682
683 2013-04-30 Joel Brobecker <brobecker@adacore.com>
684
685 * mep-tdep.c (mep_write_pc): Delete.
686 (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
687 Add call to set_gdbarch_pc_regnum.
688
689 2013-04-30 Joel Brobecker <brobecker@adacore.com>
690
691 * common/filestuff.c: Replace #include <dirent.h> by
692 #include "gdb_dirent.h".
693
694 2013-04-30 Joel Brobecker <brobecker@adacore.com>
695
696 * common/filestuff.c: Replace #include <sys/stat.h> by
697 #include "gdb_stat.h".
698
699 2013-04-29 Pierre Muller <muller@sourceware.org>
700
701 * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
702 editCase function rule.
703 (get_DW_AT_signature_type): Likewise.
704
705 2013-04-29 Joel Brobecker <brobecker@adacore.com>
706
707 * m32r-tdep.c (m32r_write_pc): Delete.
708 (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
709 Add call to set_gdbarch_pc_regnum.
710
711 2013-04-29 Pierre Muller <muller@sourceware.org>
712
713 * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
714
715 2013-04-29 Joel Brobecker <brobecker@adacore.com>
716
717 * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
718
719 2013-04-28 Yao Qi <yao@codesourcery.com>
720
721 * solib-dsbt.c (fetch_loadmap): Re-indent.
722 (displacement_from_map, enable_break2): Likewise.
723 (dsbt_relocate_section_addresses): Likewise.
724
725 2013-04-26 Joel Brobecker <brobecker@adacore.com>
726
727 GDB 7.6 released.
728
729 2013-04-25 Andreas Kaufmann <Andreas.Kaufmann@synopsys.com>
730
731 PR corefiles/14983:
732 * dwarf2read.c (process_full_comp_unit): Always create a static
733 block.
734
735 2013-04-25 Hui Zhu <hui@codesourcery.com>
736
737 * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
738 to loc->cmd_bytecode.
739
740 2013-04-24 Doug Evans <dje@google.com>
741
742 * dwarf2read.c (setup_type_unit_groups): Fix comment.
743
744 2013-04-22 Keith Seitz <keiths@redhat.com>
745
746 * tracepoint.c (trace_save): Call the writer's start method.
747
748 2013-04-24 Muhammad Bilal <mbilal@codesourcery.com>
749
750 PR gdb/10462
751 * cli/cli-decode.c (lookup_command): Show an error if there is no space
752 before argument.
753
754 2013-04-23 Tom Tromey <tromey@redhat.com>
755
756 * common/filestuff.c: Check USE_WIN32API before including
757 sys/socket.h.
758 (HAVE_F_GETFD): New define.
759 (mark_cloexec): Check HAVE_F_GETFD.
760 (gdb_open_cloexec): Change 'mode' to unsigned long.
761 (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
762 (gdb_pipe_cloexec): Check HAVE_PIPE.
763 * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
764 long.
765
766 2013-04-23 Hui Zhu <hui@codesourcery.com>
767
768 PR gdb/15293
769 * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
770
771 2013-04-23 Hui Zhu <hui@codesourcery.com>
772
773 PR gdb/15165
774 * breakpoint.c (dprintf_print_recreate): New.
775 (save_breakpoints): Let it not save dprintf commands.
776 (initialize_breakpoint_ops): Set dprintf_print_recreate.
777
778 2013-04-22 Tom Tromey <tromey@redhat.com>
779
780 PR gdb/7912:
781 * Makefile.in (SFILES): Add filestuff.c
782 (COMMON_OBS): Add filestuff.o.
783 (filestuff.o): New target.
784 * auto-load.c (auto_load_objfile_script_1): Use
785 gdb_fopen_cloexec.
786 * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
787 * cli/cli-cmds.c (shell_escape): Call close_most_fds.
788 * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
789 * common/agent.c (gdb_connect_sync_socket): Use
790 gdb_socket_cloexec.
791 * common/filestuff.c: New file.
792 * common/filestuff.h: New file.
793 * common/linux-osdata.c (linux_common_core_of_thread)
794 (command_from_pid, commandline_from_pid, print_source_lines)
795 (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
796 (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
797 gdb_fopen_cloexec.
798 * common/linux-procfs.c (linux_proc_get_int)
799 (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
800 * config.in, configure: Rebuild.
801 * configure.ac: Don't check for sys/socket.h. Check for
802 fdwalk, pipe2.
803 * corelow.c (core_open): Use gdb_open_cloexec.
804 * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
805 * fork-child.c (fork_inferior): Call close_most_fds.
806 * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
807 * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
808 * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
809 Use gdb_fopen_cloexec.
810 (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
811 gdb_open_cloexec.
812 (linux_async_pipe): Use gdb_pipe_cloexec.
813 * remote-fileio.c (remote_fileio_func_open): Use
814 gdb_open_cloexec.
815 * remote.c (remote_file_put, remote_file_get): Use
816 gdb_fopen_cloexec.
817 * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
818 close_most_fds.
819 * ser-tcp.c (net_open): Use gdb_socket_cloexec.
820 * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
821 * solib.c (solib_find): Use gdb_open_cloexec.
822 * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
823 * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
824 (tfile_open): Use gdb_open_cloexec.
825 * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
826 * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
827 * xml-support.c (xml_fetch_content_from_file): Use
828 gdb_fopen_cloexec.
829 * main.c (captured_main): Call notice_open_fds.
830
831 2013-04-22 Edjunior Machado <emachado@linux.vnet.ibm.com>
832
833 * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
834 'char *' to 'gdb_byte *'.
835 (gdbsim_store_register): Change the type of 'tmp' from 'char' to
836 'gdb_byte'.
837
838 2013-04-22 Yao Qi <yao@codesourcery.com>
839
840 * infrun.c: Fix typo in comment.
841
842 2013-04-22 Andrew Haley <aph@redhat.com>
843
844 * arm-tdep.c (BranchDest): Cast result as "unsigned long",
845 instead of "long".
846
847 2013-04-20 Yao Qi <yao@codesourcery.com>
848
849 * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
850 'char *' to 'gdb_byte *'. Cast the return value of
851 'bt_ctf_get_char_array' to 'gdb_byte *'.
852
853 2013-04-19 Pedro Alves <palves@redhat.com>
854
855 * configure.ac (build_warnings): Replace -Wno-pointer-sign with
856 -Wpointer-sign.
857 * configure: Regenerate.
858
859 2013-04-19 Pedro Alves <palves@redhat.com>
860
861 * ser-tcp.c (net_read_prim): Cast second argument to recv to
862 'void *'.
863
864 2013-04-19 Pedro Alves <palves@redhat.com>
865
866 * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
867 Change type of 'myaddr' parameter to gdb_byte pointer.
868 (monitor_write_memory_longlongs): Likewise. Cast 'myaddr' pointer
869 to 'long long' pointer instead of to 'unsigned long long'.
870 (monitor_write_memory_block, monitor_read_memory_single)
871 (monitor_read_memory): Change type of 'myaddr' parameter to
872 gdb_byte pointer.
873
874 2013-04-19 Pedro Alves <palves@redhat.com>
875
876 * record.c (validate_history_size): Make parameter 'setting'
877 unsigned.
878
879 2013-04-19 Pedro Alves <palves@redhat.com>
880
881 * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
882 to 'gdb_byte *'.
883
884 2013-04-19 Pedro Alves <palves@redhat.com>
885
886 * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
887 local to int.
888
889 2013-04-19 Pedro Alves <palves@redhat.com>
890
891 * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
892 * ada-tasks.c (read_fat_string_value): Likewise.
893
894 2013-04-19 Pedro Alves <palves@redhat.com>
895
896 * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
897 unsigned. Pass 'tmp' to safe_read_uleb128 instead of the signed
898 'offset', and adjust.
899
900 2013-04-19 Pedro Alves <palves@redhat.com>
901
902 * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
903 (read_index_from_section): Add cast to 'char *'.
904
905 2013-04-19 Pedro Alves <palves@redhat.com>
906
907 * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
908
909 2013-04-19 Pedro Alves <palves@redhat.com>
910
911 * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
912
913 2013-04-19 Pedro Alves <palves@redhat.com>
914
915 * record-full.c (record_full_get_bookmark): Change local 'ret'
916 type to char * and add cast to gdb_byte *.
917 (record_full_goto_bookmark): Handle 'bookmark' argument as a
918 string.
919 * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
920
921 2013-04-19 Pedro Alves <palves@redhat.com>
922
923 * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
924 * python/py-prettyprint.c (print_string_repr): Change type of
925 'output' local to char *. Add cast to gdb_byte * in
926 LA_PRINT_STRING call.
927 (print_children): Change type of 'output' local to char *.
928 * python/py-value.c (valpy_string): Add cast to const char * in
929 PyUnicode_Decode call.
930
931 2013-04-19 Pedro Alves <palves@redhat.com>
932
933 * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
934 and change its type to 'const char *'. Adjust.
935 (mips_send_packet): Add cast to 'char *', and remove cast to
936 'unsigned char *'.
937 (mips_receive_packet): Remove cast to 'unsigned char *'.
938 (mips_load_srec): Use bfd_byte.
939 (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
940 (pmon_checkset): Make 'value' parameter unsigned.
941
942 2013-04-19 Pedro Alves <palves@redhat.com>
943
944 * common/agent.c (agent_run_command): Add cast to gdb_byte *.
945
946 2013-04-19 Pedro Alves <palves@redhat.com>
947
948 * remote.c (remote_write_bytes_aux, compare_sections_command)
949 (remote_read_qxfer)
950 (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
951 (remote_hostio_readlink, remote_bfd_iovec_pread)
952 (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
953 binary buffer, and char when buffer is used as string.
954 * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
955 (trace_save, tfile_open, traceframe_walk_blocks)
956 (tfile_fetch_registers): Likewise.
957
958 2013-04-19 Pedro Alves <palves@redhat.com>
959
960 * ser-base.c (ser_base_write): Change prototype -- take 'void *'
961 buffer and size_t size. Adjust.
962 * ser-base.h (ser_base_write): Adjust.
963 * ser-go32.c (cnts): Change type to size_t.
964 (dos_write): Change prototype -- take 'void *'
965 buffer and size_t size. Adjust.
966 (dos_info): Print elements of 'cnts' as unsigned long.
967 * serial.c (serial_write): Likewise.
968 * serial.h (serial_write): Adjust.
969 (struct serial_ops) <write>: Change prototype -- take 'void *'
970 buffer and size_t size. Adjust.
971
972 2013-04-19 Pedro Alves <palves@redhat.com>
973
974 * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
975 gdb_byte *.
976 * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
977
978 2013-04-19 Pedro Alves <palves@redhat.com>
979
980 * alpha-tdep.c (alpha_extract_return_value): Use
981 regcache_cooked_read_unsigned to read 'v0'.
982
983 2013-04-19 Pedro Alves <palves@redhat.com>
984
985 * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
986 parameters 'at', 'as' and 'offset' to uint32_t.
987
988 2013-04-19 Pedro Alves <palves@redhat.com>
989
990 * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
991 'is64' to signed 'int'.
992
993 2013-04-19 Pedro Alves <palves@redhat.com>
994
995 * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
996 parameter to int *.
997
998 2013-04-19 Pedro Alves <palves@redhat.com>
999
1000 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
1001 'insnbuf' buffer type to unsigned int[].
1002
1003 2013-04-19 Pedro Alves <palves@redhat.com>
1004
1005 * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
1006
1007 2013-04-19 Pedro Alves <palves@redhat.com>
1008
1009 * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
1010 unsigned long *.
1011
1012 2013-04-19 Pedro Alves <palves@redhat.com>
1013
1014 * alpha-tdep.c (heuristic_fence_post): Change type to int.
1015 (alpha_heuristic_proc_start): Adjust to check -1 instead of
1016 UINT_MAX.
1017 * mips-tdep.c (heuristic_fence_post): Change type to int.
1018 (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
1019
1020 2013-04-19 Pedro Alves <palves@redhat.com>
1021
1022 * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
1023 (struct gdbarch_tdep) <cris_version>: Make unsigned.
1024 (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
1025
1026 2013-04-19 Pedro Alves <palves@redhat.com>
1027
1028 * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'. Use
1029 it to get a string view of the byte buffer.
1030 * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
1031 type to gdb_byte *. Adjust.
1032 * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
1033 Change local to char *.
1034 * solib-darwin.c (find_program_interpreter): Change return type to
1035 char *. Adjust.
1036 (darwin_solib_get_all_image_info_addr_at_init): Adjust.
1037 * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
1038 * solib-frv.c (enable_break2): Change local 'buf' to char *.
1039 * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
1040 * solib-svr4.c (find_program_interpreter): Change return type to
1041 char *. Adjust.
1042 (enable_break): Change local 'interp_name' to char *.
1043 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
1044 * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
1045 (spu_pseudo_register_write_spu): Use char for string buffer.
1046 Adjust.
1047 (info_spu_event_command, info_spu_signal_command): Add casts to
1048 'char *'.
1049
1050 2013-04-19 Pedro Alves <palves@redhat.com>
1051
1052 * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
1053 gdb_byte[].
1054 (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
1055 * ada-lang.c (ada_value_assign): Use gdb_byte.
1056 * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
1057 (alphanbsd_sigtramp_offset): Use gdb_byte.
1058 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
1059 (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
1060 (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
1061 (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
1062 (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
1063 * arm-tdep.c (arm_stub_unwind_sniffer)
1064 (arm_displaced_init_closure): Use gdb_byte.
1065 (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
1066 (arm_default_thumb_le_breakpoint)
1067 (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
1068 * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
1069 thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
1070 * arm-wince-tdep.c (arm_wince_le_breakpoint)
1071 (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
1072 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
1073 (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
1074 (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
1075 * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
1076 (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
1077 * cris-tdep.c (push_stack_item, cris_push_dummy_call)
1078 (cris_store_return_value, cris_extract_return_value): Use
1079 gdb_byte.
1080 (constraint): Change type of parameter to char * from signed
1081 char*. Use gdb_byte.
1082 * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
1083 of local buffer to gdb_byte *.
1084 * dwarf2read.c (read_index_from_section): Use gdb_byte.
1085 (create_dwp_hash_table): Change type of locals to gdb_byte *.
1086 (add_address_entry): Change type of local buffer to gdb_byte[].
1087 * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
1088 (frv_push_dummy_call): Use gdb_byte.
1089 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
1090 (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
1091 (hppa_hpux_supply_save_state): Use gdb_byte.
1092 * hppa-tdep.c (hppa32_push_dummy_call)
1093 (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
1094 * ia64-tdep.c (extract_bit_field, replace_bit_field)
1095 (slotN_contents, replace_slotN_contents): Change type of parameter
1096 to gdb_byte *.
1097 (fetch_instruction, ia64_pseudo_register_write)
1098 (ia64_register_to_value, ia64_value_to_register)
1099 (ia64_extract_return_value, ia64_store_return_value)
1100 (ia64_push_dummy_call): Use gdb_byte.
1101 * m32c-tdep.c (m32c_return_value): Remove cast.
1102 * m68hc11-tdep.c (m68hc11_pseudo_register_write)
1103 (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
1104 gdb_byte.
1105 * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
1106 * mn10300-tdep.c (mn10300_store_return_value)
1107 (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
1108 gdb_byte.
1109 * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
1110 (moxie_process_record): Remove casts.
1111 * ppc-ravenscar-thread.c (supply_register_at_address)
1112 (ppc_ravenscar_generic_store_registers): Use gdb_byte.
1113 * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
1114 * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
1115 * remote-mips.c (mips_xfer_memory): Use gdb_byte.
1116 * remote.c (compare_sections_command): Use gdb_byte.
1117 * score-tdep.c (score7_free_memblock): Change type of parameter to
1118 gdb_byte *.
1119 * sh-tdep.c (sh_justify_value_in_reg): Change return type to
1120 gdb_byte *. Use gdb_byte.
1121 (sh_push_dummy_call_fpu): Use gdb_byte.
1122 (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
1123 (sh_store_return_value_nofpu, sh_store_return_value_fpu)
1124 (sh_register_convert_to_virtual, sh_register_convert_to_raw):
1125 Change parameter type to 'gdb_byte *'. Use gdb_byte.
1126 (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
1127 * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
1128 (sh64_store_return_value, sh64_register_convert_to_virtual):
1129 Change parameter type to 'gdb_byte *'. Use gdb_byte.
1130 (sh64_pseudo_register_write): Use gdb_byte.
1131 * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
1132 * solib-irix.c (fetch_lm_info): Likewise. Use gdb_byte for byte
1133 buffer.
1134 (irix_current_sos): Use gdb_byte.
1135 * solib-som.c (som_current_sos): Use gdb_byte.
1136 * sparc-ravenscar-thread.c (supply_register_at_address)
1137 (sparc_ravenscar_generic_store_registers): Use gdb_byte.
1138 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
1139 * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
1140 * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
1141 'gdb_byte *'.
1142 * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
1143 'gdb_byte *'.
1144 * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
1145 * xstormy16-tdep.c (xstormy16_extract_return_value)
1146 (xstormy16_store_return_value): Change parameter type to
1147 'gdb_byte *'. Adjust.
1148 (xstormy16_push_dummy_call): Use gdb_byte.
1149 * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
1150 (call0_analyze_prologue, execute_code): Use gdb_byte.
1151
1152 2013-04-19 Vladimir Kargov <kargov@gmail.com>
1153 Pedro Alves <palves@redhat.com>
1154
1155 * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
1156 value contents.
1157
1158 2013-04-17 Doug Evans <dje@google.com>
1159
1160 * dwarf2read.c (struct signatured_type): New member type.
1161 (struct attribute): Replace member signatured_type with signature.
1162 (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
1163 (read_call_site_scope): Call follow_die_ref instead of
1164 follow_die_ref_or_sig.
1165 (read_structure_type): Rewrite handling of signatured types.
1166 (read_enumeration_type): Ditto.
1167 (read_attribute_value): Update.
1168 (build_error_marker_type): New function.
1169 (lookup_die_type): Add assert. Rewrite handling of signatured types.
1170 Don't call error for bad types, just build an error marker type.
1171 (dump_die_shallow): Update.
1172 (follow_die_sig_1): Renamed from follow_die_sig.
1173 Don't call error for bad types, instead return NULL.
1174 (follow_die_sig): New function.
1175 (get_signatured_type, get_DW_AT_signature_type): New functions.
1176
1177 2013-04-17 Yufeng Zhang <yufeng.zhang@arm.com>
1178
1179 * aarch64-tdep.c (aarch64_write_pc): Removed.
1180 (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
1181 function.
1182
1183 2013-04-17 Yao Qi <yao@codesourcery.com>
1184
1185 * top.c (print_gdb_configuration): Print configure-time
1186 parameter on using libbabeltrace or not.
1187
1188 2013-04-16 Pedro Alves <palves@redhat.com>
1189
1190 * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
1191
1192 2013-04-16 Pedro Alves <palves@redhat.com>
1193
1194 * common/glibc_thread_db.h: Update from upstream glibc
1195 (git 568035b7874a099087b77f7bba3e36a1173787b0).
1196
1197 2013-04-16 Pedro Alves <palves@redhat.com>
1198
1199 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
1200 * common/glibc_thread_db.h: ... this new file ...
1201 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
1202
1203 2013-04-16 Will Newton <will.newton@gmail.com>
1204 Pedro Alves <palves@redhat.com>
1205
1206 PR build/11881
1207
1208 * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
1209 (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
1210 HAVE_THREAD_DB_H.
1211
1212 2013-04-16 Pedro Alves <palves@redhat.com>
1213 Eli Zaretskii <eliz@gnu.org>
1214
1215 * NEWS: Mention "set foo unlimited".
1216
1217 2013-04-15 Doug Evans <dje@google.com>
1218
1219 * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
1220 (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
1221 (create_dwo_cu_reader): Renamed from
1222 create_dwo_debug_info_hash_table_reader.
1223 (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
1224 Remove support for multiple CUs in a DWO file.
1225 (open_and_init_dwo_file, lookup_dwo_cutu): Update.
1226
1227 * dwarf2read.c (create_debug_types_hash_table): Use hex_string
1228 instead of phex.
1229 (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
1230 (create_dwo_in_dwp): Ditto.
1231
1232 2013-04-15 Tom Tromey <tromey@redhat.com>
1233
1234 * NEWS: Move recent entries into "since 7.6" section.
1235
1236 2013-04-15 Tom Tromey <tromey@redhat.com>
1237
1238 PR c++/13588:
1239 * NEWS: Update.
1240 * break-catch-throw.c (struct exception_catchpoint)
1241 <exception_rx, pattern>: New fields.
1242 (fetch_probe_arguments, dtor_exception_catchpoint)
1243 (check_status_exception_catchpoint)
1244 (print_one_detail_exception_catchpoint): New functions.
1245 (handle_gnu_v3_exceptions): Add "except_rx" argument.
1246 Compile regular expression if needed.
1247 (extract_exception_regexp): New function.
1248 (catch_exception_command_1): Use extract_exception_regexp.
1249 (compute_exception): Use fetch_probe_arguments.
1250 (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
1251 and check_status fields.
1252 * cp-abi.c (cplus_typename_from_type_info): New function.
1253 * cp-abi.h (cplus_typename_from_type_info): Declare.
1254 (struct cp_abi_ops) <get_typename_from_type_info>: New field.
1255 * gdb_regex.h (compile_rx_or_error): Declare.
1256 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
1257 comment.
1258 (init_gnuv3_ops): Set get_type_from_type_info field.
1259 * probe.c (compile_rx_or_error): Move...
1260 * utils.c (compile_rx_or_error): ... here.
1261
1262 2013-04-15 Tom Tromey <tromey@redhat.com>
1263
1264 PR c++/15176:
1265 * NEWS: Update.
1266 * break-catch-throw.c (compute_exception): New function.
1267 (exception_funcs): New global.
1268 (_initialize_break_catch_throw): Create $_exception.
1269 * cp-abi.c (cplus_type_from_type_info): New function.
1270 * cp-abi.h (cplus_type_from_type_info): Declare.
1271 (struct cp_abi_ops) <get_type_from_type_info>: New field.
1272 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
1273 (gnuv3_get_type_from_type_info): New functions.
1274 (init_gnuv3_ops): Set get_type_from_type_info ABI field.
1275
1276 2013-04-15 Tom Tromey <tromey@redhat.com>
1277
1278 * break-catch-throw.c (struct exception_names): New.
1279 (exception_functions): Change type.
1280 (re_set_exception_catchpoint): Look for SDT probes.
1281
1282 2013-04-15 Tom Tromey <tromey@redhat.com>
1283
1284 PR c++/10119:
1285 * break-catch-throw.c (exception_functions): New global.
1286 (gnu_v3_exception_catchpoint_ops): Move earlier.
1287 (struct exception_catchpoint): New.
1288 (classify_exception_breakpoint): Rewrite.
1289 (re_set_exception_catchpoint): New function.
1290 (handle_gnu_v3_exceptions): Return void. Use init_catchpoint.
1291 Allocate a struct exception_catchpoint.
1292 (catch_exception_command_1): Update.
1293 (initialize_throw_catchpoint_ops): Set 're_set' method.
1294
1295 2013-04-15 Tom Tromey <tromey@redhat.com>
1296
1297 * Makefile.in (SFILES): Add break-catch-throw.c
1298 (COMMON_OBS): Add break-catch-throw.o.
1299 * break-catch-throw.c: New file.
1300 * breakpoint.c: Move exception-catching code to new file.
1301 (ep_parse_optional_if_clause): No longer static.
1302 * breakpoint.h (ep_parse_optional_if_clause): Declare.
1303
1304 2013-04-15 Tom Tromey <tromey@redhat.com>
1305
1306 PR c++/9065:
1307 * NEWS: Update.
1308 * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
1309 * c-exp.y (TYPEID): New token.
1310 (exp): Add new TYPEID productions.
1311 (ident_tokens): Add "typeid".
1312 * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
1313 * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
1314 (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
1315 * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
1316 * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
1317 case.
1318 * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
1319 (build_std_type_info_type, gnuv3_get_typeid_type)
1320 (gnuv3_get_typeid): New functions.
1321 (init_gnuv3_ops): Initialize std_type_info_gdbarch_data. Set
1322 new fields on ABI object.
1323 * parse.c (operator_length_standard) <OP_TYPEID>: New case.
1324 * std-operator.def (OP_TYPEID): New.
1325
1326 2013-04-15 Tom Tromey <tromey@redhat.com>
1327
1328 * elfread.c (elf_symtab_read): Install versioned symbol under
1329 unversioned name as well.
1330
1331 2013-04-15 Tom Tromey <tromey@redhat.com>
1332
1333 PR c++/11990:
1334 * c-lang.c (cplus_language_defn): Use gdb_demangle.
1335 * c-typeprint.c (c_type_print_base): Use gdb_demangle.
1336 * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
1337 (gdb_demangle): New function.
1338 * cp-support.h (gdb_demangle): Declare.
1339 * dwarf2read.c (dwarf2_physname, fixup_partial_die)
1340 (dwarf2_name): Use gdb_demangle.
1341 * gdbtypes.c (check_stub_method): Use gdb_demangle.
1342 * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
1343 suffixes from name.
1344 (gnuv3_print_method_ptr): Use gdb_demangle.
1345 * jv-lang.c (java_demangle): Use gdb_demangle.
1346 * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
1347 * language.c (unk_lang_demangle): Use gdb_demangle.
1348 * symtab.c (symbol_find_demangled_name)
1349 (demangle_for_lookup): Use gdb_demangle.
1350
1351 2013-04-15 Tom Tromey <tromey@redhat.com>
1352
1353 PR c++/12824:
1354 * NEWS: Update.
1355 * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
1356 New constant.
1357 (classify_exception_breakpoint): New function.
1358 (print_it_exception_catchpoint, print_one_exception_catchpoint)
1359 (print_mention_exception_catchpoint)
1360 (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
1361 (catch_exception_command_1): Handle "rethrow" catchpoint.
1362 (catch_rethrow_command): New function.
1363 (_initialize_breakpoint): Add "catch rethrow" command.
1364
1365 2013-04-15 Pierre Muller <muller@sourceware.org>
1366
1367 * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
1368 set_gdbarch_write_pc as deprecated anymore.
1369
1370 2013-04-15 Joel Brobecker <brobecker@adacore.com>
1371
1372 * spu-tdep.c (spu_write_pc): Add empty line after local variable
1373 declarations.
1374
1375 2013-04-13 Yao Qi <yao@codesourcery.com>
1376
1377 * ctf.c (_initialize_ctf): Include "completer.h".
1378 Call add_target_with_completer instead of add_target.
1379
1380 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
1381
1382 Fix GDB regression related to PR binutils/14813.
1383 * jit.c (mem_bfd_iovec_close): Return 0 for success.
1384 * minidebug.c (lzma_close): Add return value comment.
1385 * remote.c (remote_bfd_iovec_close): Return 0 for success.
1386 * solib-spu.c (spu_bfd_iovec_close): Likewise.
1387 * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
1388
1389 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
1390
1391 * config.in: Regenerate.
1392
1393 2013-04-12 Tom Tromey <tromey@redhat.com>
1394
1395 * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
1396 const.
1397 * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
1398 (struct die_reader_specs) <buffer>: Likewise.
1399 (die_reader_func_ftype): Make 'info_ptr' const.
1400 (struct line_header) <include_dirs, statement_program_start,
1401 statement_program_end>: Now const.
1402 (struct file_entry) <name>: Likewise.
1403 (struct partial_die_info) <sibling>: Likewise.
1404 (struct dwarf_block) <data>: Likewise.
1405 (dwarf2_read_section): Remove cast.
1406 (dwarf2_get_section_info): Make 'bufp' const.
1407 (read_index_from_section): Constify.
1408 (dw2_get_file_names_reader): Make 'info_ptr' const.
1409 (dw2_get_primary_filename_reader): Likewise.
1410 (read_comp_unit_head): Make 'info_ptr' and return type const.
1411 (read_and_check_comp_unit_head, read_and_check_type_unit_head):
1412 Likewise.
1413 (read_abbrev_offset): Constify.
1414 (dwarf2_create_include_psymtab): Make 'name' const.
1415 (create_debug_types_hash_table): Update.
1416 (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
1417 (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
1418 Constify.
1419 (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
1420 (load_partial_comp_unit_reader): Make 'info_ptr' const.
1421 (read_comp_units_from_section): Constify.
1422 (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
1423 (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
1424 const.
1425 (dwarf2_compute_name, setup_type_unit_groups): Constify.
1426 (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
1427 (create_dwp_hash_table, dwarf2_ranges_read)
1428 (dwarf2_record_block_ranges): Constify.
1429 (read_die_and_children, read_die_and_siblings_1)
1430 (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
1431 const.
1432 (read_full_die_1, read_full_die): Make 'info_ptr' const.
1433 (abbrev_table_read_table): Constify.
1434 (load_partial_dies): Make 'info_ptr' const.
1435 (read_partial_die, read_attribute_value, read_attribute): Make
1436 'info_ptr' and return type const.
1437 (read_address, read_initial_length)
1438 (read_checked_initial_length_and_offset, read_offset)
1439 (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
1440 const.
1441 (read_direct_string): Make 'buf' and return type const.
1442 (read_indirect_string_at_offset, read_indirect_string_from_dwz)
1443 (read_indirect_string): Make return type const.
1444 (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
1445 (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
1446 'info_ptr' const.
1447 (read_str_index): Make return type const.
1448 (add_include_dir): Make 'include_dir' const.
1449 (add_file_name): Make 'name' const.
1450 (dwarf_decode_line_header): Constify.
1451 (psymtab_include_file_name): Make return type const.
1452 (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
1453 (dwarf2_start_subfile): Make 'filename' const.
1454 (dwarf2_const_value_attr): Make 'bytes' const.
1455 (read_signatured_type_reader): Make 'info_ptr' const.
1456 (decode_locdesc): Constify.
1457 (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
1458 const.
1459 (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
1460 'mac_end', and return type const.
1461 (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
1462 (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
1463 type const.
1464 (per_cu_header_read_in): Constify.
1465 * symfile.h (dwarf2_get_section_info): Update.
1466
1467 2013-04-12 Tom Tromey <tromey@redhat.com>
1468
1469 * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
1470
1471 2013-04-12 Eli Zaretskii <eliz@gnu.org>
1472
1473 * NEWS: Mention "show configuration", --configuration.
1474 * top.c (print_gdb_configuration): New function, displays the
1475 details about GDB configure-time parameters.
1476 (print_gdb_version): Mention "show configuration".
1477 * cli/cli-cmds.c (show_configuration): New function.
1478 (_initialize_cli_cmds): Add the "show configuration" command.
1479 * main.c (captured_main) <print_configuration>: New static var.
1480 <long_options>: Use it.
1481 If --configuration was given, call print_gdb_configuration.
1482
1483 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
1484 Pedro Alves <palves@redhat.com>
1485
1486 * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
1487 (generated_files): Add gcore.
1488 (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
1489 HAVE_NATIVE_GCORE_HOST.
1490 (gcore): New.
1491 * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
1492 * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
1493 config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
1494 config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
1495 config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
1496 Add HAVE_NATIVE_GCORE_HOST.
1497 * configure: Regenerate.
1498 * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
1499 New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME. New
1500 AC_CONFIG_FILES for gcore.
1501 * configure.tgt: Add gdb_have_gcore to the initial comment. Set
1502 gdb_have_gcore.
1503 * gdb_gcore.sh: Rename to ...
1504 * gcore.in: ... here. Remove gcore.sh comment. Use GDB_TRANSFORM_NAME
1505 and GCORE_TRANSFORM_NAME substitutions.
1506
1507 Fix parsing tabs in ${gdb_target_obs}.
1508 * configure.tgt (gdb_have_gcore): Replace case with for and if.
1509
1510 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
1511
1512 * remote.c (unpush_and_perror): Add output message final dot.
1513
1514 2013-04-11 Yao Qi <yao@codesourcery.com>
1515
1516 * tracepoint.c (tfile_interp_line): Fit parameters line and
1517 utpp in one line.
1518
1519 2013-04-10 Joel Brobecker <brobecker@adacore.com>
1520
1521 * solib.c (solib_map_sections): Remove code overwriting
1522 SO->SO_NAME with the bfd's filename.
1523
1524 2013-04-10 Pedro Alves <palves@redhat.com>
1525
1526 * cli/cli-decode.c (integer_unlimited_completer): New function.
1527 (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
1528 (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
1529 completer.
1530 * cli/cli-setshow.c: Include "cli/cli-utils.h".
1531 (is_unlimited_literal): New function.
1532 (do_set_command): Handle literal "unlimited" arguments.
1533 * frame.c (_initialize_frame) <set backtrace limit>: Document
1534 "unlimited".
1535 * printcmd.c (_initialize_printcmd) <set print
1536 max-symbolic-offset>: Add help text.
1537 * record-full.c (_initialize_record_full) <set record full
1538 insn-number-max>: Likewise.
1539 * record.c (_initialize_record) <set record
1540 instruction-history-size, set record function-call-history-size>:
1541 Add help text.
1542 * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
1543 help text.
1544 * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
1545 Likewise.
1546 * source.c (_initialize_source) <set listsize>: Add help text.
1547 * utils.c (initialize_utils) <set height, set width>: Likewise.
1548 <set pagination>: Mention "set height unlimited".
1549 * valprint.c (_initialize_valprint) <set print elements, set print
1550 repeats>: Document "unlimited".
1551
1552 2013-04-10 Pedro Alves <palves@redhat.com>
1553
1554 * cli/cli-cmds.c (quit_command): Call query_if_trace_running
1555 instead of disconnect_tracing.
1556 * infcmd.c (detach_command, disconnect_command): Call
1557 query_if_trace_running. Adjust.
1558 * top.c: Include "tracepoint.h".
1559 (quit_target): Delete. Contents moved ...
1560 (quit_force): ... here. Wrap each stage of teardown in
1561 TRY_CATCH. Call disconnect_tracing before detaching.
1562
1563 2013-04-10 Hui Zhu <hui@codesourcery.com>
1564 Yao Qi <yao@codesourcery.com>
1565
1566 * configure.ac: Check libbabeltrace is installed.
1567 * config.in: Regenerate.
1568 * configure: Regenerate.
1569 * Makefile.in (LIBBABELTRACE): New.
1570 (CLIBS): Add LIBBABELTRACE.
1571 * ctf.c: Include "exec.h".
1572 (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
1573 (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
1574 (ctf_save_metadata_header): Define new type aliases in
1575 metadata.
1576 (ctf_write_header): Define event type "tsv_def" and "tp_def"
1577 in metadata. Start a new faked packet for trace status.
1578 (ctf_write_status): Write trace status to CTF.
1579 (ctf_write_uploaded_tsv): Write TSV to CTF.
1580 (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
1581 (ctf_write_definition_end): End the faked packet.
1582
1583 (ctx, ctf_iter, trace_dirname): New.
1584 (start_pos): New variable.
1585 (ctf_destroy, ctf_open_dir, ctf_open): New.
1586 (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
1587 macros.
1588 (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
1589 (ctf_fetch_registers, ctf_xfer_partial): New.
1590 (ctf_get_trace_state_variable_value): New.
1591 (ctf_get_tpnum_from_frame_event): New.
1592 (ctf_get_traceframe_address): New.
1593 (ctf_trace_find, ctf_has_stack): New.
1594 (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
1595 (ctf_get_trace_status, ctf_read_status): New.
1596 (_initialize_ctf): New.
1597 * tracepoint.c (get_tracepoint_number): New
1598 (get_uploaded_tsv): Remove 'static'.
1599 (struct traceframe_info, trace_regblock_size): Move it to ...
1600 * tracepoint.h: ... here.
1601 (get_tracepoint_number): Declare it.
1602 (get_uploaded_tsv): Declare it.
1603
1604 * NEWS: Mention new configure option.
1605
1606 2013-04-10 Pedro Alves <palves@redhat.com>
1607 Hui Zhu <hui@codesourcery.com>
1608
1609 * breakpoint.c (dprintf_re_set): New.
1610 (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
1611 to dprintf_re_set.
1612
1613 2013-04-09 Joel Brobecker <brobecker@adacore.com>
1614
1615 * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
1616 Remove solib-svr4.o from the list.
1617
1618 2013-04-09 Joel Brobecker <brobecker@adacore.com>
1619
1620 * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
1621 Use gdb_assert_not_reached instead of invalid boolean expression.
1622
1623 2013-04-09 Pedro Alves <palves@redhat.com>
1624
1625 * remote.c (unpush_and_perror): New function.
1626 (readchar, remote_serial_write): Use it.
1627
1628 2013-04-09 Markus Metzger <markus.t.metzger@intel.com>
1629
1630 * NEWS: Mention new btrace RSP packets.
1631
1632 2013-04-08 Tom Tromey <tromey@redhat.com>
1633
1634 * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
1635 long.
1636
1637 2013-04-08 Tom Tromey <tromey@redhat.com>
1638
1639 * maint.c (print_bfd_section_info): Print the section index.
1640 * symmisc.c (dump_msymbols): Print the section index.
1641
1642 2013-04-08 Tom Tromey <tromey@redhat.com>
1643
1644 PR symtab/8424:
1645 * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
1646 SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
1647 * breakpoint.c (resolve_sal_pc): Update.
1648 * elfread.c (elf_gnu_ifunc_record_cache): Update.
1649 * findvar.c (struct minsym_lookup_data) <objfile>: New field.
1650 (minsym_lookup_iterator_cb): Use it.
1651 (default_read_var_value): Update.
1652 * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
1653 Update.
1654 * infcmd.c (jump_command): Update.
1655 * linespec.c (minsym_found): Update.
1656 * maint.c (maintenance_translate_address): Update.
1657 * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
1658 (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
1659 * parse.c (write_exp_msymbol): Update.
1660 * printcmd.c (address_info): Update.
1661 * psymtab.c (find_pc_sect_psymbol): Update.
1662 (fixup_psymbol_section): Check SYMBOL_SECTION, not
1663 SYMBOL_OBJ_SECTION.
1664 (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
1665 Don't initialize SYMBOL_OBJ_SECTION.
1666 * spu-tdep.c (spu_catch_start): Update.
1667 * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
1668 * symmisc.c (dump_msymbols, print_symbol): Update.
1669 * symtab.c (fixup_section): Don't set 'obj_section'. Change
1670 how fallback section is computed.
1671 (fixup_symbol_section): Update.
1672 (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
1673 Update.
1674 (allocate_symbol, initialize_symbol, allocate_template_symbol):
1675 Initialize SYMBOL_SECTION.
1676 * symtab.h (struct general_symbol_info) <section>: Update comment.
1677 <obj_section>: Remove.
1678 (SYMBOL_OBJ_SECTION): Add 'objfile' argument. Rewrite.
1679 (SYMBOL_OBJFILE): New macro.
1680
1681 2013-04-08 Tom Tromey <tromey@redhat.com>
1682
1683 * coffread.c (record_minimal_symbol): Update.
1684 * dbxread.c (record_minimal_symbol): Update.
1685 * elfread.c (record_minimal_symbol): Update.
1686 * machoread.c (macho_symtab_add_minsym): Update.
1687 * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
1688 Update.
1689 * minsyms.c (prim_record_minimal_symbol): Update.
1690 (prim_record_minimal_symbol_full): Remove 'bfd_section'
1691 argument.
1692 (prim_record_minimal_symbol_and_info): Likewise.
1693 * minsyms.h (prim_record_minimal_symbol_full)
1694 (prim_record_minimal_symbol_and_info): Update.
1695 * symtab.c (allocate_symbol, initialize_symbol)
1696 (allocate_template_symbol): Initialize SYMBOL_SECTION.
1697 * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
1698 Update.
1699
1700 2013-04-08 Tom Tromey <tromey@redhat.com>
1701
1702 PR symtab/8423:
1703 * solib-som.c (som_solib_section_offsets): Use BFD section
1704 indices. Set offsets for all sections.
1705 * somread.c (som_symtab_read): Compute BFD section for
1706 symbol. Use prim_record_minimal_symbol_and_info.
1707 (som_symfile_read): Fix comment.
1708 (struct find_section_offset_arg): New.
1709 (find_section_offset, set_section_index): New functions.
1710 (som_symfile_offsets): Use set_section_index to compute
1711 section indices.
1712
1713 2013-04-08 Tom Tromey <tromey@redhat.com>
1714
1715 * coffread.c (cs_to_section): Use gdb_bfd_section_index.
1716 * elfread.c (record_minimal_symbol, elf_symtab_read): Use
1717 gdb_bfd_section_index.
1718 * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
1719 New functions.
1720 * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
1721 Declare.
1722 * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
1723 Update.
1724 * objfiles.c (add_to_objfile_sections_full): New function.
1725 (add_to_objfile_sections): Use it.
1726 (build_section_table): Rewrite.
1727 (objfile_relocate1): Use gdb_bfd_section_index. Update.
1728 * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
1729 (struct objfile) <sections>: Update comment.
1730 (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
1731 is NULL.
1732 (ALL_OBJSECTIONS): Use it.
1733 * solib-dsbt.c (dsbt_relocate_main_executable): Update.
1734 * solib-frv.c (frv_relocate_main_executable): Update.
1735 * solib-target.c (solib_target_relocate_section_addresses):
1736 Use gdb_bfd_section_index.
1737 * symfile.c (build_section_addr_info_from_section_table):
1738 Use gdb_bfd_section_index.
1739 (build_section_addr_info_from_bfd, place_section): Likewise.
1740 * symtab.c (fixup_section): Update.
1741 * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
1742
1743 2013-04-08 Tom Tromey <tromey@redhat.com>
1744
1745 * minsyms.h (struct bound_minimal_symbol): New.
1746 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
1747 Remove objfile argument.
1748 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
1749 Return bound_minimal_symbol.
1750 * minsyms.c (lookup_minimal_symbol_by_pc_1)
1751 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
1752 Return bound_minimal_symbol.
1753 (in_gnu_ifunc_stub): Update.
1754 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
1755 Remove 'objfile_p' argument.
1756 (lookup_solib_trampoline_symbol_by_pc): Update.
1757 * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
1758 arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
1759 c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
1760 glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
1761 i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
1762 linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
1763 mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
1764 ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
1765 stack.c, symtab.c, tui/tui-disasm.c: Update.
1766
1767 2013-04-08 Tom Tromey <tromey@redhat.com>
1768
1769 * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
1770 Use symbol's obstack, not an objfile.
1771 * coffread.c (process_coff_symbol): Update.
1772 * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
1773 * jv-lang.c (add_class_symbol): Update.
1774 * mdebugread.c (new_symbol): Update.
1775 * minsyms.c (prim_record_minimal_symbol_full)
1776 (terminate_minimal_symbol_table): Update.
1777 * psymtab.c (add_psymbol_to_bcache): Clear entire symbol. Update.
1778 * stabsread.c (define_symbol, read_enum_type): Update.
1779 * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
1780 Handle Ada specially.
1781 (symbol_set_language): Add 'obstack' argument.
1782 (symbol_set_names): Update.
1783 (symbol_natural_name, symbol_demangled_name): Always use
1784 ada_decode_symbol.
1785 * symtab.h (struct general_symbol_info)
1786 <language_specific::obstack>: New field.
1787 <ada_mangled>: New field.
1788 (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
1789 (symbol_set_language): Update.
1790
1791 2013-04-08 Tom Tromey <tromey@redhat.com>
1792
1793 * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
1794 Take an obstack, not an objfile.
1795 (symbol_set_names): Update.
1796 * symtab.h (symbol_set_demangled_name): Update.
1797
1798 2013-04-08 Tom Tromey <tromey@redhat.com>
1799
1800 * coffread.c (process_coff_symbol, coff_read_enum_type): Call
1801 allocate_symbol.
1802 * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
1803 (read_func_scope): Call allocate_template_symbol.
1804 (new_symbol_full): Call allocate_symbol.
1805 * jit.c (finalize_symtab): Call allocate_symbol.
1806 * jv-lang.c (add_class_symbol): Call allocate_symbol.
1807 * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
1808 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
1809 (common_block_end): Call allocate_symbol.
1810 * symtab.c (allocate_symbol, initialize_symbol)
1811 (allocate_template_symbol): New functions.
1812 * symtab.c (allocate_symbol, initialize_symbol)
1813 (allocate_template_symbol): Declare.
1814 * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
1815
1816 2013-04-08 Pedro Alves <palves@redhat.com>
1817 Keith Seitz <keiths@redhat.com>
1818
1819 * breakpoint.c (create_breakpoint): Rename
1820 "parse_condition_and_thread" parameter to "parse_arg". Update
1821 describing comment. If !PARSE_ARG, then error out if ARG is not
1822 the empty string after extracting the location.
1823 * breakpoint.h (create_breakpoint): Rename
1824 "parse_condition_and_thread" parameter to "parse_arg".
1825
1826 2013-04-08 Aleksandar Ristovski <aristovski@qnx.com
1827
1828 * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
1829
1830 2013-04-07 Yao Qi <yao@codesourcery.com>
1831
1832 * remote.c (remote_trace_find): Change type of parameters 'addr1'
1833 and 'addr2' to CORE_ADDR.
1834 * target.c (update_current_target): Update.
1835 * target.h (struct target_ops) <to_trace_find>: Change parameter
1836 type to CORE_ADDR.
1837 * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
1838 'addr2' to CORE_ADDR.
1839 (tfile_trace_find): Likewise.
1840 (tfile_get_traceframe_address): Change return type to CORE_ADDR.
1841 Change local variable 'addr' to type CORE_ADDR.
1842 * tracepoint.h (tfind_1): Update declaration.
1843
1844 2013-04-06 Eli Zaretskii <eliz@gnu.org>
1845
1846 * windows-nat.c (windows_get_absolute_argv0): Move from here...
1847 * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
1848 Include main.h.
1849
1850 * windows-nat.h (windows_get_absolute_argv0): Move prototype from
1851 here...
1852 * main.h (windows_get_absolute_argv0): ...to here.
1853
1854 2013-04-05 Doug Evans <dje@google.com>
1855
1856 * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
1857 (read_cutu_die_from_dwo): Add comments.
1858 (read_structure_type): Update comment.
1859 (read_enumeration_type, read_namespace_type): Update comment.
1860 (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
1861
1862 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1863
1864 Convert man pages to texinfo, new gdbinit.5 texinfo page.
1865 * Makefile.in (gdb.z): Remove.
1866 (install-only): Remove $(man1dir) and gdb.1 installation.
1867 * gdb.1: Remove.
1868
1869 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1870
1871 Fix compatibility with Linux kernel 3.8.3.
1872 * linux-tdep.c (linux_find_memory_regions_full): Move variable number
1873 to more inner block. Remove parsing of NUMBER from outer block.
1874 Parse NUMBER only if KEYWORD has been identified.
1875
1876 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1877
1878 Fix variable name shadowing.
1879 * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
1880 filename to mapsfilename and update its uses.
1881
1882 2013-04-05 Eli Zaretskii <eliz@gnu.org>
1883
1884 * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
1885 empty. See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
1886 and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
1887 details of the problem.
1888
1889 2013-04-04 Pedro Alves <palves@redhat.com>
1890 Hui Zhu <hui@codesourcery.com>
1891
1892 * breakpoint.c (validate_commands_for_breakpoint): If validating a
1893 tracepoint, reset its STEP_COUNT and call validate_actionline.
1894
1895 2013-04-03 Doug Evans <dje@google.com>
1896
1897 * dwarf2read.c (read_die_and_siblings_1): Renamed from
1898 read_die_and_siblings.
1899 (read_die_and_siblings): New function.
1900 (read_cutu_die_from_dwo): Dump die if requested.
1901 (read_die_and_children): Call read_full_die_1 and
1902 read_die_and_siblings_1.
1903 (read_full_die): Dump die if requested.
1904
1905 * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
1906
1907 * dwarf2read.c (struct dwo_file): New member comp_dir.
1908 Rename member name to dwo_name. All uses updated.
1909 (hash_dwo_file): Include comp_dir in computation.
1910 (eq_dwo_file): Ditto.
1911 (lookup_dwo_file_slot): New arg comp_dir. All callers updated.
1912 (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
1913
1914 * psymtab.c (read_psymtabs_with_fullname): Don't call
1915 psymtab_to_fullname if the basenames are different.
1916
1917 2013-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1918
1919 * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
1920 New entry about "fullname" presence.
1921
1922 2013-04-03 Pedro Alves <palves@redhat.com>
1923
1924 * NEWS: Mention x86_64/Cygwin as new native configuration.
1925
1926 2013-04-02 Doug Evans <dje@google.com>
1927
1928 * dwarf2read.c (read_structure_type): Fix typo in comment.
1929
1930 2013-04-02 Pedro Alves <palves@redhat.com>
1931
1932 * NEWS: Mention "set/show debug aarch64", "set/show debug
1933 coff-pe-read" and "set/show debug mach-o".
1934
1935 2013-04-02 Pedro Alves <palves@redhat.com>
1936
1937 * NEWS: Mention "set/show remote trace-buffer-size-packet".
1938
1939 2013-04-02 Eli Zaretskii <eliz@gnu.org>
1940
1941 * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
1942 gdb_string.h is now in common/.
1943
1944 2013-04-02 Pedro Alves <palves@redhat.com>
1945
1946 * NEWS: Move "set debug notification" and "set trace-buffer-size"
1947 under "New options".
1948
1949 2013-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1950
1951 Revert this patch:
1952 PR gdb/15275
1953 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
1954
1955 2013-04-02 Pedro Alves <palves@redhat.com>
1956
1957 PR gdb/15275
1958
1959 * remote.c (send_interrupt_sequence): Use remote_serial_write.
1960 (remote_serial_write): New function.
1961 (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
1962
1963 2013-04-01 Jiong Wang <jiwang@tilera.com>
1964
1965 * NEWS: Mention TILE-Gx in "New native configurations" and
1966 "New targets" sections.
1967
1968 2013-04-01 Doug Evans <dje@google.com>
1969
1970 * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
1971 (process_enumeration_scope): Simplify.
1972
1973 * dwarf2read.c (struct dwarf2_per_cu_data): Move member
1974 type_unit_group ...
1975 (struct signatured_type): ... to here.
1976 (sig_type_ptr): New typedef.
1977 (type_unit_group): Delete member 't.first_cu'. Move member 'tus'
1978 out of union 't'. All uses updated.
1979 (dw2_get_file_names_reader): Assert not called for a type unit.
1980 (dw2_get_file_names): Assert not called for a type unit or type
1981 unit group.
1982 (build_type_psymtabs_reader): Assert called for a type unit.
1983 (build_type_psymtab_dependencies): Assert called for a type unit group.
1984
1985 * dwarf2read.c (free_dwo_file): Add comment.
1986 (dwarf2_per_objfile_free): Unref dwp bfd.
1987
1988 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
1989
1990 * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
1991 (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
1992 (read_pe_exported_syms): Remove unused 'exportix'.
1993 (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
1994 'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
1995 'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
1996
1997 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
1998
1999 * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
2000 (print_it_watchpoint): Remove unused 'bl'.
2001 (say_where): Remove unused 'uiout'.
2002 (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
2003 (bkpt_breakpoint_hit): Remove unused 'b'.
2004 (internal_bkpt_print_it): Remove unused 'uiout'.
2005 * buildsym.c (augment_type_symtab): Remove unused 'i'.
2006
2007 2013-03-31 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
2008
2009 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
2010 (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
2011
2012 2013-03-29 Doug Evans <dje@google.com>
2013
2014 * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
2015 Delete arg is_dwp. All callers updated.
2016 (open_dwp_file): New function.
2017 (open_and_init_dwp_file): Call it.
2018 (get_dwp_file): New function.
2019 (lookup_dwo_cutu): Call it.
2020
2021 * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
2022 unnecessary, cleanup.
2023
2024 * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
2025
2026 * dwarf2read.c (read_cutu_die_from_dwo): New function.
2027 (lookup_dwo_unit): New function.
2028 (init_cutu_and_read_dies): Move DWO handling to new functions.
2029
2030 * dwarf2read.c (struct signatured_type): Tweak comment.
2031 (struct dwo_unit): Tweak comment.
2032 (create_debug_types_hash_table): Tweak comment. Reformat long line.
2033 (create_dwo_debug_info_hash_table): Tweak comment.
2034 (dwarf2_per_cu_offset_and_type): Tweak comment.
2035
2036 * dwarf2read.c (lookup_signatured_type): Remove complaint about
2037 missing .debug_types section.
2038
2039 2013-03-29 Yao Qi <yao@codesourcery.com>
2040
2041 * corelow.c: Include "completer.h".
2042 (_initialize_corelow): Call add_target_with_completer with
2043 argument 'filename_completer'.
2044 * tracepoint.c: Likewise.
2045 * exec.c (_initialize_exec): Likewise.
2046 * target.c (add_target): Rename to ...
2047 (add_target_with_completer): ... this. Call set_cmd_completer
2048 if parameter completer is not NULL.
2049 (add_target): New.
2050 * target.h: Include "command.h".
2051 (add_target_with_completer): Declare it.
2052
2053 2013-03-28 Joel Brobecker <brobecker@adacore.com>
2054
2055 * coffread.c (is_import_fixup_symbol): New function.
2056 (record_minimal_symbol): Use is_import_fixup_symbol to
2057 detect import fixup symbols, and discard them.
2058
2059 2013-03-28 Doug Evans <dje@google.com>
2060
2061 * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
2062 types hash table until we know we need it.
2063
2064 * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
2065 index numbers.
2066
2067 * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
2068 All callers updated.
2069 (dw2_print_stats): Print #read CUs too.
2070 (dump_die_shallow): Print signatured types better.
2071
2072 * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
2073 info_or_types_section to section. All uses updated.
2074 (struct dwo_unit): Ditto.
2075
2076 2013-03-28 Pedro Alves <palves@redhat.com>
2077
2078 * NEWS (New options): New section.
2079 (New options): Mention set/show remote trace-status-packet.
2080 * remote.c (PACKET_qTStatus): New enumeration value.
2081 (remote_get_trace_status): Skip sending qTStatus if the packet is
2082 disabled. Use packet_ok.
2083 (_initialize_remote): Register a configuration command for
2084 qTStatus packet.
2085
2086 2013-03-28 Doug Evans <dje@google.com>
2087
2088 * symfile.c (find_separate_debug_file): Add comment.
2089 (terminate_after_last_dir_separator): Tweak comment.
2090
2091 * dwarf2read.c (create_partial_symtab): Add forward decl.
2092 (create_partial_symtab): Move to be closer to other psymtab functions.
2093 (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
2094
2095 * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
2096 (compute_symtab_includes): Remove unnecessary forward declaration.
2097 (die_needs_namespace): Add comment marking group of functions for
2098 dwarf2 name computation.
2099
2100 * typeprint.c (_initialize_typeprint): Improve type help text.
2101
2102 * python/python.c (finish_python_initialization): Provide suggestion
2103 for how to tell gdb to find its python files.
2104
2105 2013-03-28 Pedro Alves <palves@redhat.com>
2106
2107 PR gdb/15294
2108
2109 * source.c (_initialize_source): Change back "set listsize" to an
2110 integer command.
2111
2112 2013-03-27 Gareth McMullin <gareth@blacksphere.co.nz>
2113
2114 PR gdb/15275
2115 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
2116
2117 2013-03-27 Pedro Alves <palves@redhat.com>
2118
2119 * top.c (history_size): Rename to ...
2120 (history_size_setshow_var): ... this. Add comment.
2121 (show_commands): Use readline's 'history_length' instead of
2122 computing the history length by calling history_get in a loop.
2123 (set_history_size_command): Error out for sizes over INT_MAX.
2124 Restore previous history size on invalid size.
2125 (init_history): If HISTSIZE is negative, leave the history size as
2126 zero. Add comments.
2127 (init_main): Adjust.
2128
2129 2013-03-27 Pedro Alves <palves@redhat.com>
2130
2131 * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
2132 coff_pe_read" command to "set debug coff-pe-read".
2133
2134 2013-03-27 Markus Metzger <markus.t.metzger@intel.com>
2135
2136 * record.c (command_size_to_target_size): Fix size comparison.
2137 Change parameter type from pointer to integer to integer.
2138 Update all users.
2139
2140 2013-03-27 Pierre Muller <muller@sourceware.org>
2141
2142 * windows-nat.c (handle_output_debug_string): Avoid typecast
2143 from integer of different size warning.
2144
2145 2013-03-26 Joel Brobecker <brobecker@adacore.com>
2146
2147 * windows-nat.c (handle_output_debug_string): Add empty line
2148 after local block variable definition.
2149
2150 2013-03-26 Pedro Alves <palves@redhat.com>
2151
2152 * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
2153 (net_open): Make 'polls' local unsigned.
2154
2155 2013-03-26 Pedro Alves <palves@redhat.com>
2156
2157 * remote.c (_initialize_remote): Make "set remoteaddresssize"
2158 a zuinteger command instead of uinteger.
2159
2160 2013-03-26 Pedro Alves <palves@redhat.com>
2161
2162 * record-full.c (record_full_insn_num): Make it unsigned.
2163 (record_full_check_insn_num, record_full_message)
2164 (record_full_registers_change, record_full_xfer_partial): Remove
2165 record_full_insn_max_num check (it's always != 0).
2166 (record_full_info, record_full_restore): Use %u as format string.
2167 (): Use %u as format string.
2168 (set_record_full_insn_max_num): Remove record_full_insn_max_num
2169 check (it's always != 0).
2170
2171 2013-03-26 Pedro Alves <palves@redhat.com>
2172
2173 * dcache.c (_initialize_dcache): Make the "set dcache line-size"
2174 and "set dcache size" commands zuinteger instead of uinteger.
2175
2176 2013-03-26 Pedro Alves <palves@redhat.com>
2177
2178 * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
2179 command zuinteger instead of uinteger.
2180
2181 2013-03-26 Pedro Alves <palves@redhat.com>
2182
2183 * coff-pe-read.c (_initialize_coff_pe_read): Make the command
2184 zuinteger instead of uinteger.
2185
2186 2013-03-26 Pedro Alves <palves@redhat.com>
2187
2188 * record.c (record_insn_history_size_setshow_var)
2189 (record_call_history_size_setshow_var): New globals.
2190 (command_size_to_target_size): New function.
2191 (cmd_record_insn_history, cmd_record_call_history): Use
2192 command_size_to_target_size instead of cast.
2193 (validate_history_size, set_record_insn_history_size)
2194 (set_record_call_history_size): New functions.
2195 (_initialize_record): Install set_record_insn_history_size and
2196 set_record_call_history_size as "set" hooks of "set record
2197 instruction-history-size" and "set record
2198 function-call-history-size".
2199
2200 2013-03-26 Pedro Alves <palves@redhat.com>
2201
2202 * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
2203 use with history_max_entries use. Remove FIXME note.
2204
2205 2013-03-26 Markus Metzger <markus.t.metzger@intel.com>
2206
2207 * record-btrace.c (record_btrace_close): Call
2208 record_btrace_auto_disable.
2209
2210 2013-03-25 Joel Brobecker <brobecker@adacore.com>
2211
2212 * rs6000-nat.c (fixup_breakpoints): Delete declaration.
2213
2214 2013-03-25 Doug Evans <dje@google.com>
2215
2216 * contrib/cc-with-tweaks.sh: Check exit code of dwp.
2217
2218 2013-03-25 Tom Tromey <tromey@redhat.com>
2219
2220 PR symtab/11462:
2221 * c-exp.y (exp): Add new productions for destructors after '.' and
2222 '->'.
2223 (write_destructor_name): New function.
2224
2225 2013-03-25 Tom Tromey <tromey@redhat.com>
2226
2227 PR c++/9197:
2228 * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
2229 value_struct_elt, not lookup_struct_elt_type.
2230 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
2231 STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
2232 * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
2233
2234 2013-03-25 Yao Qi <yao@codesourcery.com>
2235
2236 * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
2237 instead of '_mkdir'.
2238
2239 2013-03-23 Eli Zaretskii <eliz@gnu.org>
2240
2241 * windows-nat.c (windows_get_absolute_argv0): New function.
2242 * windows-nat.h: Add its prototype.
2243
2244 * main.c (get_init_files): Use filename_ncmp instead of strncmp.
2245 Use IS_DIR_SEPARATOR instead of looking for a character inside
2246 SLASH_STRING. Include filenames.h.
2247 (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
2248 relocate_gdb_directory works when passed gdb_program_name.
2249 Include windows-nat.h.
2250
2251 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
2252
2253 * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
2254 * remote.c (trace_error): Remove the special handling of '2'.
2255 (readchar) <SERIAL_EOF>
2256 (readchar) <SERIAL_ERROR>
2257 (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
2258 (remote_get_trace_status): Call throw_exception if EX is
2259 TARGET_CLOSE_ERROR.
2260 * utils.c (perror_with_name): Rename to ...
2261 (throw_perror_with_name): ... here. New parameter errcode, describe it
2262 in the function comment.
2263 (perror_with_name): New function wrapper.
2264 * utils.h (enum errors): New stub declaration.
2265 (throw_perror_with_name): New declaration.
2266
2267 2013-03-22 Pedro Alves <palves@redhat.com>
2268 Yao Qi <yao@codesourcery.com>
2269 Mark Kettenis <kettenis@gnu.org>
2270
2271 * cli/cli-setshow.c (do_set_command) <var_uinteger>:
2272 Don't let the user set the value to UINT_MAX directly.
2273 <var_integer>: Don't let the user set the value to INT_MAX
2274 directly.
2275
2276 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
2277
2278 * remote.c (remote_unpush_target): New function.
2279 (remote_open_1): Remove two pop_target calls, update one comment, add
2280 comment to target_preopen call. Replace pop_target call by
2281 remote_unpush_target call.
2282 (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
2283 pop_target calls by remote_unpush_target calls.
2284
2285 2013-03-22 Pedro Alves <palves@redhat.com>
2286
2287 * linux-nat.c (linux_child_follow_fork): Don't call
2288 linux_enable_event_reporting.
2289 (linux_handle_extended_wait): Don't call
2290 linux_enable_event_reporting.
2291
2292 2013-03-22 Pedro Alves <palves@redhat.com>
2293
2294 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
2295 use it to rewrite the trampoline buffers with type gdb_byte[], and
2296 undefine the macro. Remove char* cast.
2297
2298 2013-03-21 Doug Evans <dje@google.com>
2299
2300 New commands "mt set per-command {space,time,symtab} {on,off}".
2301 * NEWS: Add entry.
2302 * event-top.c: #include "maint.h".
2303 * main.c: #include "maint.h".
2304 * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
2305 timeval-utils.h, maint.h, cli/cli-setshow.h.
2306 (per_command_time, per_command_space): New static globals.
2307 (per_command_symtab): New static global.
2308 (per_command_setlist, per_command_showlist): New static globals.
2309 (struct cmd_stats): Move here from utils.c.
2310 (set_per_command_time): Renamed from set_display_time in utils.c
2311 and moved here. All callers updated.
2312 (set_per_command_space): Renamed from set_display_space in utils.c
2313 and moved here. All callers updated.
2314 (count_symtabs_and_blocks): New function.
2315 (report_command_stats): Moved here from utils.c. Add support for
2316 printing symtab stats. Only print data if enabled before command
2317 executed.
2318 (make_command_stats_cleanup): Ditto.
2319 (sert_per_command_cmd, show_per_command_cmd): New functions.
2320 (_initialize_maint_cmds): Add new commands
2321 mt set per-command {space,time,symtab} {on,off}.
2322 * maint.h: New file.
2323 * top.c: #include "maint.h".
2324 * utils.c (reset_prompt_for_continue_wait_time): New function.
2325 (get_prompt_for_continue_wait_time): New function.
2326 * utils.h (reset_prompt_for_continue_wait_time): Declare
2327 (get_prompt_for_continue_wait_time): Declare.
2328 (make_command_stats_cleanup): Moved to maint.h.
2329 (set_display_time, set_display_space): Moved to maint.h and renamed
2330 to set_per_command_time, set_per_command_space.
2331 * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
2332 parse_binary_operation and made non-static. Don't call error,
2333 just return an error marker. All callers updated.
2334 * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
2335
2336 2013-03-21 Tom Tromey <tromey@redhat.com>
2337
2338 * symfile.c (alloc_section_addr_info): Update header. Don't set
2339 'num_sections' field.
2340 (build_section_addr_info_from_section_table): Set 'num_sections'.
2341 (build_section_addr_info_from_bfd): Likewise.
2342 (build_section_addr_info_from_objfile): Remove dead loop
2343 condition.
2344 (free_section_addr_info): Unconditionally call xfree.
2345 (relative_addr_info_to_section_offsets, addrs_section_sort)
2346 (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
2347 condition.
2348 (syms_from_objfile_1): Remove dead 'if' condition. Check
2349 'num_sections'.
2350 (add_symbol_file_command): Set 'num_sections'.
2351 * symfile-mem.c (symbol_file_add_from_memory): Set
2352 'num_sections'.
2353 * somread.c (som_symfile_offsets): Remove dead loop condition.
2354 * machoread.c (macho_symfile_offsets): Remove dead 'if'.
2355 * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
2356
2357 2013-03-21 Tom Tromey <tromey@redhat.com>
2358
2359 * tracepoint.h (decode_agent_options): Add 'trace_string'
2360 argument.
2361 * tracepoint.c (decode_agent_options): Add 'trace_string'
2362 argument.
2363 (validate_actionline): Update.
2364 (collect_symbol): Add 'trace_string' argument.
2365 (struct add_local_symbols_data) <trace_string>: New field.
2366 (do_collect_symbol): Update.
2367 (add_local_symbols): Add 'trace_string' argument.
2368 (encode_actions_1): Update.
2369 (trace_dump_actions): Update.
2370 * dwarf2loc.c (access_memory): Update.
2371 * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
2372 * ax-general.c (new_agent_expr): Update.
2373 * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
2374 (gen_trace_for_return_address): Add argument.
2375 (trace_kludge, trace_string_kludge): Remove.
2376 * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
2377 (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
2378 (gen_trace_for_var): Add 'trace_string' argument.
2379 (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
2380 (gen_printf, agent_eval_command_one): Update.
2381
2382 2013-03-21 Tom Tromey <tromey@redhat.com>
2383
2384 PR exp/15109:
2385 * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
2386 Handle FILENAME token.
2387
2388 2013-03-21 Tom Tromey <tromey@redhat.com>
2389
2390 * c-exp.y (YYPRINT): Define.
2391 (c_print_token): New function.
2392
2393 2013-03-21 Tom Tromey <tromey@redhat.com>
2394
2395 * c-exp.y (%union) <sym, ivar, ivec>: Remove.
2396
2397 2013-03-21 Yao Qi <yao@codesourcery.com>
2398
2399 * ctf.c: Include "gdb_stat.h".
2400 [USE_WIN32API]: New macro 'mkdir'.
2401 (ctf_start): Use permission bits macros if they are defined.
2402
2403 2013-03-20 Keith Seitz <keiths@redhat.com>
2404
2405 * breakpoint.h (struct breakpoint): Add comment to
2406 extra_string indicating that this member is mallod'd.
2407 * breakpoint.c (base_breakpoint_dtor): Free extra_string.
2408
2409 2013-03-20 Pedro Alves <palves@redhat.com>
2410
2411 PR gdb/15289
2412
2413 * cli/cli-setshow.c (do_set_command)
2414 <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
2415 the result of parsing the command argument. Throw error if the
2416 value is greater than UINT_MAX. Print the invalid value with
2417 plongest.
2418 <var_integer, var_zinteger>: Use LONGEST for variable holding the
2419 result of parsing the command argument. Throw error if the value
2420 is greater than INT_MAX, not greater or equal. Also throw error
2421 if the value is less than INT_MIN. Print the invalid value with
2422 plongest.
2423 <var_zuinteger_unlimited>: Throw error if the value is greater
2424 than INT_MAX, not greater or equal.
2425 (do_show_command) <var_integer, var_zinteger,
2426 var_zuinteger_unlimited>: Use %d for printing int, not %u.
2427
2428 2013-03-20 Tom Tromey <tromey@redhat.com>
2429
2430 * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
2431 if possible.
2432 * dwarf2read.c (read_func_scope): Remove old FIXME.
2433 * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
2434 not LOC_COMPUTED.
2435 * findvar.c (symbol_read_needs_frame, default_read_var_value):
2436 Unconditionally call via computed ops, if possible.
2437 * printcmd.c (address_info): Unconditionally call via computed ops,
2438 if possible.
2439 * stack.c (read_frame_arg): Unconditionally call via computed ops,
2440 if possible.
2441 * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
2442 * tracepoint.c (scope_info): Unconditionally call via computed ops,
2443 if possible.
2444
2445 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2446 Tom Tromey <tromey@redhat.com>
2447
2448 PR symtab/8421:
2449 * coffread.c (coff_register_index): New global.
2450 (process_coff_symbol, coff_read_enum_type): Set
2451 SYMBOL_ACLASS_INDEX.
2452 (_initialize_coffread): Initialize new global.
2453 * dwarf2loc.c (locexpr_find_frame_base_location)
2454 (dwarf2_block_frame_base_locexpr_funcs)
2455 (loclist_find_frame_base_location)
2456 (dwarf2_block_frame_base_loclist_funcs): New.
2457 (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
2458 (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
2459 * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
2460 (dwarf2_block_frame_base_loclist_funcs): New.
2461 * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
2462 (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
2463 globals.
2464 (read_func_scope): Update.
2465 (fixup_go_packaging, mark_common_block_symbol_computed)
2466 (var_decode_location, new_symbol_full, dwarf2_const_value):
2467 Set SYMBOL_ACLASS_INDEX.
2468 (dwarf2_symbol_mark_computed): Likewise. Add 'is_block' argument.
2469 (_initialize_dwarf2_read): Initialize new globals.
2470 * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
2471 * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
2472 * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
2473 globals.
2474 (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
2475 (_initialize_mdebugread): Initialize new globals.
2476 * psympriv.h (struct partial_symbol) <aclass>: Update comment.
2477 * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
2478 (stab_register_index, stab_regparm_index): New globals.
2479 (define_symbol, read_enum_type, common_block_end): Set
2480 SYMBOL_ACLASS_INDEX.
2481 (_initialize_stabsread): Initialize new globals.
2482 * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
2483 globals.
2484 (MAX_SYMBOL_IMPLS): New define.
2485 (register_symbol_computed_impl, register_symbol_block_impl)
2486 (register_symbol_register_impl)
2487 (initialize_ordinary_address_classes): New functions.
2488 (_initialize_symtab): Call initialize_ordinary_address_classes.
2489 * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
2490 (struct symbol_impl): New.
2491 (SYMBOL_ACLASS_BITS): New define.
2492 (struct symbol) <aclass, ops>: Remove fields.
2493 <aclass_index>: New field.
2494 (symbol_impls): Declare.
2495 (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
2496 (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
2497 (register_symbol_computed_impl, register_symbol_block_impl)
2498 (register_symbol_register_impl): Declare.
2499 (struct symbol_computed_ops): Add location_has_loclist.
2500 (struct symbol_block_ops): New.
2501 (SYMBOL_BLOCK_OPS): New.
2502 * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
2503
2504 2013-03-20 Tom Tromey <tromey@redhat.com>
2505
2506 * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
2507 (print_partial_symbols, recursively_search_psymtabs): Use
2508 PSYMBOL_CLASS.
2509
2510 2013-03-20 Pierre Muller <muller@sourceware.org>
2511
2512 * contrib/ari/gdb_ari.sh (OP eol rule): Also check
2513 addtion, subtraction, multiplication and division binary operator.
2514
2515 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2516
2517 Code cleanup.
2518 * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
2519 * bsd-kvm.c (bsd_kvm_close): Likewise.
2520 * bsd-uthread.c (bsd_uthread_close): Likewise.
2521 * corelow.c (core_close): Likewise.
2522 (core_close_cleanup): Remove parameter quitting from a caller.
2523 * event-top.c (async_disconnect): Likewise.
2524 * exec.c (exec_close_1): Remove parameter quitting.
2525 * go32-nat.c (go32_close): Likewise.
2526 * linux-nat.c (linux_nat_close): Remove parameter quitting. Remove
2527 parameter quitting from a caller.
2528 * mips-linux-nat.c (super_close): Remove parameter quitting from the
2529 variable.
2530 (mips_linux_close): Remove parameter quitting. Remove parameter
2531 quitting from a caller.
2532 * monitor.c (monitor_close): Remove parameter quitting.
2533 * monitor.h (monitor_close): Likewise.
2534 * record-btrace.c (record_btrace_close): Likewise.
2535 * record-full.c (record_full_close): Likewise.
2536 * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
2537 it also from fprintf_unfiltered.
2538 * remote-mips.c (mips_close): Remove parameter quitting.
2539 (mips_detach): Remove parameter quitting from a caller.
2540 * remote-sim.c (gdbsim_close): Remove parameter quitting.
2541 (gdbsim_close): Remove duplicate function comment. Remove parameter
2542 quitting and remove it also from printf_filtered.
2543 * remote.c (remote_close): Remove parameter quitting.
2544 * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
2545 * target.c (update_current_target): Remove parameter int from to_close
2546 de_fault.
2547 (push_target, unpush_target, pop_target): Remove parameter quitting from
2548 a caller.
2549 (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
2550 Remove parameter quitting from a caller.
2551 (target_preopen): Remove parameter quitting from a caller.
2552 (target_close): Remove parameter quitting. Remove parameter quitting
2553 from a caller two times. Remove parameter quitting also from
2554 fprintf_unfiltered.
2555 * target.h (struct target_ops): Remove parameter quitting and as int
2556 from fields to_xclose and to_close.
2557 (extern struct target_ops current_target):
2558 (target_close, pop_all_targets): Remove parameter quitting. Update the
2559 comment.
2560 (pop_all_targets_above): Remove parameter quitting.
2561 * top.c (quit_target): Remove parameter quitting from a caller.
2562 * tracepoint.c (tfile_close): Remove parameter quitting.
2563 * windows-nat.c (windows_close): Remove parameter quitting.
2564
2565 2013-03-20 Corinna Vinschen <vinschen@redhat.com>
2566
2567 * windows-nat.c (handle_output_debug_string): Replace call
2568 to string_to_core_addr with call to strtoull.
2569
2570 2013-03-20 Yao Qi <yao@codesourcery.com>
2571
2572 * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
2573 and write it to CTF metadata.
2574
2575 2013-03-19 Corinna Vinschen <vinschen@redhat.com>
2576
2577 * windows-nat.c (handle_output_debug_string): Change type of n to
2578 SIZE_T to avoid crash on 64 bit systems.
2579
2580 2013-03-17 Eli Zaretskii <eliz@gnu.org>
2581
2582 * python/python-internal.h (HAVE_SNPRINTF)
2583 [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
2584 about redefinition of snprintf by pyerrors.h.
2585
2586 2013-03-15 Steve Ellcey <sellcey@mips.com>
2587
2588 * remote-sim.c (sim_command_completer): Make char arguments const.
2589
2590 2013-03-15 Tom Tromey <tromey@redhat.com>
2591
2592 PR c++/15116:
2593 * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
2594
2595 2013-03-14 Tom Tromey <tromey@redhat.com>
2596
2597 * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
2598 New fields.
2599 (get_file_crc): Move from symfile.c.
2600 (gdb_bfd_crc): New function.
2601 * gdb_bfd.h (gdb_bfd_crc): Declare.
2602 * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
2603 * symfile.c (get_file_crc): Move to gdb_bfd.c.
2604 (separate_debug_file_exists): Use gdb_bfd_crc.
2605
2606 2013-03-14 Tom Tromey <tromey@redhat.com>
2607
2608 * symfile.c (get_debug_link_info): Remove.
2609 (find_separate_debug_file_by_debuglink): Use
2610 bfd_get_debug_link_info.
2611
2612 2013-03-14 Tom Tromey <tromey@redhat.com>
2613
2614 * symtab.c (error_in_psymtab_expansion): New function.
2615 (lookup_symbol_aux_quick)
2616 (basic_lookup_transparent_type_quick): Remove "last resort"
2617 code. Use error_in_psymtab_expansion.
2618
2619 2013-03-14 Doug Evans <dje@google.com>
2620 Jan Kratochvil <jan.kratochvil@redhat.com>
2621
2622 * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
2623 any successful compare_filenames_for_search or FILENAME_CMP.
2624 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
2625 * symtab.c (iterate_over_some_symtabs): Likewise.
2626
2627 2013-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
2628
2629 * source.c (print_source_lines_base): Make a local copy of
2630 symtab_to_fullname.
2631
2632 2013-03-14 Hui Zhu <hui_zhu@mentor.com>
2633 Jan Kratochvil <jan.kratochvil@redhat.com>
2634
2635 * source.c (print_source_lines_base): Suppress "file" for TUI.
2636
2637 2013-03-14 Keith Seitz <keiths@redhat.com>
2638 Alan Matsuoka <alanm@redhat.com>
2639
2640 PR c++/15203
2641 PR c++/15210
2642 * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
2643 TYPE_CODE_METHOD.
2644 * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
2645 symbols.
2646
2647 2013-03-14 Yao Qi <yao@codesourcery.com>
2648
2649 * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
2650 status to tfile if trace is stopped by command 'tstop'.
2651
2652 2013-03-14 Yao Qi <yao@codesourcery.com>
2653
2654 * tracepoint.c (tfile_write_status): Write trace notes and user
2655 name into tfile if they are not NULL.
2656
2657 2013-03-14 Hui Zhu <hui@codesourcery.com>
2658 Yao Qi <yao@codesourcery.com>
2659
2660 * Makefile.in (REMOTE_OBS): Add ctf.o.
2661 (SFILES): Add ctf.c.
2662 (HFILES_NO_SRCDIR): Add ctf.h.
2663 * ctf.c, ctf.h: New files.
2664 * tracepoint.c: Include 'ctf.h'.
2665 (collect_pseudocommand): Remove static.
2666 (trace_save_command): Parse option "-ctf".
2667 Produce different trace file writers per option.
2668 Adjust output message.
2669 (trace_save_tfile, trace_save_ctf): New.
2670 * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
2671 * mi/mi-main.c: Include 'ctf.h'.
2672 (mi_cmd_trace_save): Handle option '-ctf'. Call either
2673 trace_save_tfile or trace_save_ctf.
2674 * NEWS: Mention these changes.
2675
2676 2013-03-14 Yao Qi <yao@codesourcery.com>
2677
2678 * tracepoint.c (trace_file_writer_xfree): New.
2679 (struct tfile_writer_data): New.
2680 (tfile_dtor, tfile_can_target_save, tfile_start): New.
2681 (tfile_write_header, tfile_write_regblock_type): New.
2682 (tfile_write_status, tfile_write_uploaded_tsv): New.
2683 (tfile_write_uploaded_tp, tfile_write_definition_end): New.
2684 (tfile_write_raw_data, (tfile_end): New.
2685 (tfile_write_ops): New global variable.
2686 (TRACE_WRITE_R_BLOCK): New macro.
2687 (TRACE_WRITE_M_BLOCK_HEADER): New macro.
2688 (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
2689 (TRACE_WRITE_V_BLOCK): New macro.
2690 (trace_save): Add extra one parameter WRITER. Make it static.
2691 Use WRITER to writer trace.
2692 (tfile_trace_file_writer_new): New.
2693 (trace_save_command): Caller update.
2694 (trace_save_tfile): Write trace data in TFILE format.
2695 * tracepoint.h (struct trace_frame_write_ops): New.
2696 (struct trace_file_write_ops): New.
2697 (struct trace_file_writer): New.
2698 (trace_save): Remove its declaration.
2699 (trace_save_tfile): Declare it.
2700 * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
2701 instead of trace_save.
2702
2703 2013-03-13 Pedro Alves <palves@redhat.com>
2704
2705 * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
2706
2707 2013-03-13 Pedro Alves <palves@redhat.com>
2708
2709 * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
2710 commented out code.
2711 * demangle.c (current_demangling_style_string): Make it const.
2712 (set_demangling_command): Assert the demangling style is known.
2713 Remove all handling of unknown styles. Set
2714 'current_demangling_style_string' to an element of the
2715 demangling_style_names array.
2716 (set_demangling_style): Delete.
2717 (_initialize_demangler): Set current_demangling_style_string to the
2718 element of the demangling_style_names array that corresponds to
2719 the default demangling style. Remove FIXME note. Don't call
2720 set_demangling_style.
2721 * gdb-demangle.h (set_demangling_style): Remove declaration.
2722
2723 2013-03-13 Pedro Alves <palves@redhat.com>
2724
2725 * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
2726 fields const.
2727 (ada_make_symbol_completion_list): Make "text0" parameter const.
2728 * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
2729 * breakpoint.c (condition_completer): Make "text" and "word"
2730 parameters const. Adjust.
2731 (check_tracepoint_command): Adjust to validate_actionline
2732 prototype change.
2733 (catch_syscall_completer): Make "text" and "word" parameters
2734 const.
2735 * cli/cli-cmds.c (show_user): Make "comname" local const.
2736 (valid_command_p): Make "command" parameter const.
2737 (alias_command): Make "alias_prefix" and "command_prefix" locals
2738 const.
2739 * cli/cli-decode.c (add_cmd): Make "name" parameter const.
2740 (add_alias_cmd): Make "name" and "oldname" parameters const.
2741 Adjust. No longer make copy of OLDNAME.
2742 (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
2743 (add_setshow_cmd_full, add_setshow_enum_cmd)
2744 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
2745 (add_setshow_filename_cmd, add_setshow_string_cmd)
2746 (add_setshow_string_noescape_cmd)
2747 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
2748 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
2749 (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
2750 (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
2751 Make "name" parameter const.
2752 (help_cmd): Rename "command" parameter to "arg". New const local
2753 "command".
2754 (find_cmd): Make "command" parameter const.
2755 (lookup_cmd_1): Make "text" parameter pointer to const. Adjust to
2756 deprecated_cmd_warning prototype change.
2757 (undef_cmd_error): Make "cmdtype" parameter const.
2758 (lookup_cmd): Make "line" parameter const.
2759 (deprecated_cmd_warning): Change type of "text" parameter to
2760 pointer to const char, from pointer to pointer to char. Adjust.
2761 (lookup_cmd_composition): Make "text" parameter const.
2762 (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
2763 parameters const.
2764 * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
2765 const.
2766 * cli/cli-script.c (validate_comname): Make "tem" local const.
2767 (define_command): New const local "tem_c". Use it in calls to
2768 lookup_cmd.
2769 (document_command): Make "tem" and "comfull" locals const.
2770 (show_user_1): Make "prefix" and "name" parameters const.
2771 * cli-script.h (show_user_1): Make "prefix" and "name" parameters
2772 const.
2773 * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
2774 (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
2775 (deprecated_cmd_warning, lookup_cmd_composition, add_com)
2776 (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
2777 (complete_on_enum, add_setshow_enum_cmd)
2778 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
2779 (add_setshow_filename_cmd, add_setshow_string_cmd)
2780 (add_setshow_string_noescape_cmd)
2781 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
2782 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
2783 (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
2784 Change prototypes, constifying strings.
2785 * completer.c (noop_completer, filename_completer): Make "text"
2786 and "prefix" parameters const.
2787 (location_completer, expression_completer)
2788 (complete_line_internal): Make "text" and "prefix" parameters
2789 const and adjust.
2790 (command_completer, signal_completer): Make "text" and "prefix"
2791 parameters const.
2792 * completer.h (noop_completer, filename_completer)
2793 (expression_completer, location_completer, command_completer)
2794 (signal_completer): Change prototypes.
2795 * corefile.c (complete_set_gnutarget): Make "text" and "word"
2796 parameters const.
2797 * cp-abi.c (cp_abi_completer): Likewise.
2798 * expression.h (parse_expression_for_completion): Change
2799 prototype.
2800 * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
2801 parameters const.
2802 * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
2803 * infrun.c (handle_completer): Make "text" and "word" parameters
2804 const.
2805 * interps.c (interpreter_completer): Make "text" and "word"
2806 parameters const.
2807 * language.h (struct language_defn)
2808 <la_make_symbol_completion_list>: Make "text" and "word"
2809 parameters const.
2810 * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
2811 (parse_exp_in_context): Rename to ...
2812 (parse_exp_in_context_1): ... this.
2813 (parse_exp_in_context): Reimplement, with const hack from
2814 parse_exp_1.
2815 (parse_expression_for_completion): Make "string" parameter const.
2816 * printcmd.c (decode_format): Make "string_ptr" parameter pointer
2817 to pointer to const char. Adjust.
2818 (print_command_1): Make "exp" parameter const.
2819 (output_command): Rename to ...
2820 (output_command_const): ... this. Make "exp" parameter const.
2821 (output_command): Reimplement.
2822 (x_command): Adjust.
2823 (display_command): Rename "exp" parameter to "arg". New "exp"
2824 local, const version of "arg".
2825 * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
2826 "cmd_name" local const.
2827 * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
2828 call.
2829 (cmdpy_completer): Make "text" and "word" parameters const.
2830 (gdbpy_parse_command_name): Make "prefix_text2" local const.
2831 * python/py-param.c (add_setshow_generic): Make "tmp_name" local
2832 const.
2833 * remote.c (_initialize_remote): Make "cmd_name" local const.
2834 * symtab.c (language_search_unquoted_string): Make "text" and "p"
2835 parameters const. Adjust.
2836 (completion_list_add_fields): Make "sym_text", "text" and "word"
2837 parameters const.
2838 (struct add_name_data) <sym_text, text, word>: Make fields const.
2839 (default_make_symbol_completion_list_break_on): Make "text" and
2840 "word" parameters const. Adjust locals.
2841 (default_make_symbol_completion_list)
2842 (make_symbol_completion_list, make_symbol_completion_type)
2843 (make_symbol_completion_list_fn): Make "text" and "word"
2844 parameters const.
2845 (make_file_symbol_completion_list): Make "text", "word" and
2846 "srcfile" parameters const. Adjust locals.
2847 (add_filename_to_list): Make "text" and "word" parameters const.
2848 (struct add_partial_filename_data) <text, word>: Make fields
2849 const.
2850 (make_source_files_completion_list): Make "text" and "word"
2851 parameters const.
2852 * symtab.h (default_make_symbol_completion_list_break_on)
2853 (default_make_symbol_completion_list, make_symbol_completion_list)
2854 (make_symbol_completion_type enum type_code)
2855 (make_symbol_completion_list_fn make_file_symbol_completion_list)
2856 (make_source_files_completion_list): Change prototype.
2857 * top.c (execute_command): Adjust to pass pointer to pointer to
2858 const char to lookup_cmd, and to deprecated_cmd_warning prototype
2859 change.
2860 (set_verbose): Make "cmdname" local const.
2861 * tracepoint.c (decode_agent_options): Make "exp" parameter const,
2862 and adjust.
2863 (validate_actionline): Make "line" parameter a pointer to const
2864 char, and adjust.
2865 (encode_actions_1): Make "action_exp" local const, and adjust.
2866 (encode_actions): Adjust.
2867 (replace_comma): Delete.
2868 (trace_dump_actions): Make "action_exp" and "next_comma" locals
2869 const, and adjust. Don't frob the action string while splitting
2870 it at commas. Instead, make a copy of each split substring in
2871 turn.
2872 (trace_dump_command): Adjust to validate_actionline prototype
2873 change.
2874 * tracepoint.h (decode_agent_options, decode_agent_options)
2875 (encode_actions, validate_actionline): Change prototypes.
2876 * valprint.h (output_command): Delete declaration.
2877 (output_command_const): Declare.
2878 * value.c (function_destroyer): Cast const away in xfree call.
2879
2880 2013-03-13 Pedro Alves <palves@redhat.com>
2881
2882 * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
2883 rather than casting 'const char * const *' to 'const char **'.
2884 * ada-lex.l (processInt): Make "trailer" local const. Remove
2885 'const char **' cast.
2886 * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
2887 locals, and use those as strtol output pointer, instead than doing
2888 invalid casts to from 'const char **' to 'char **'.
2889 (_initialize_demangle): Remove cast.
2890 * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
2891 locals, and use those as strtol output pointer, instead than doing
2892 invalid casts to from 'const char **' to 'char **'.
2893 * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
2894 casts.
2895 * stap-probe.c (stap_parse_register_operand)
2896 (stap_parse_single_operand): Likewise.
2897
2898 2013-03-13 Yao Qi <yao@codesourcery.com>
2899
2900 * tracepoint.c (tfile_get_trace_state_variable_value): Look for
2901 the last matched 'V' blcok in trace frame.
2902
2903 2013-03-12 Joel Brobecker <brobecker@adacore.com>
2904
2905 * NEWS: Create a new section for the next release branch.
2906 Rename the section of the current branch, now that it has
2907 been cut.
2908
2909 2013-03-12 Joel Brobecker <brobecker@adacore.com>
2910
2911 GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
2912 * version.in: Bump version to 7.6.50.20130312-cvs.
2913
2914 2013-03-12 Keith Seitz <keiths@redhat.com>
2915
2916 * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
2917 * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
2918 Remove temporary copy of input string.
2919 (mi_execute_command_wrapper): Make "cmd" const.
2920 * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
2921 * mi/mi-parse.c (mi_parse_argv): Make "args" const.
2922 Use const strings.
2923 (mi_parse): Make "cmd" const.
2924 Use const strings.
2925 * mi/mi-parse.h (mi_parse): Make "cmd" const.
2926
2927 2013-03-12 Keith Seitz <keiths@redhat.com>
2928
2929 * ada-lang.c (ada_read_renaming_var_value): Pass const
2930 pointer to expression string to parse_exp_1.
2931 (create_excep_cond_exprs): Likewise.
2932 * ax-gdb.c (agent_eval_command_one): Likewise.
2933 (maint_agent_printf_command): Likewise.
2934 Constify much of the string handling/parsing.
2935 * breakpoint.c (set_breakpoint_condition): Pass const
2936 pointer to expression string to parse_exp_1.
2937 (update_watchpoint): Likewise.
2938 (parse_cmd_to_aexpr): Constify string handling.
2939 Pass const pointer to parse_exp_1.
2940 (init_breakpoint_sal): Pass const pointer to parse_exp_1.
2941 (find_condition_and_thread): Likewise.
2942 Make TOK const.
2943 (watch_command_1): Make "arg" const.
2944 Constify string handling.
2945 Copy the expression string instead of changing the input
2946 string.
2947 (update_breakpoint_location): Pass const pointer to
2948 parse_exp_1.
2949 * eval.c (parse_and_eval_address): Make "exp" const.
2950 (parse_to_comma_and_eval): Make "expp" const.
2951 (parse_and_eval): Make "exp" const.
2952 * expression.h (parse_expression): Make argument const.
2953 (parse_exp_1): Make first argument const.
2954 * findcmd.c (parse_find_args): Treat "args" as const.
2955 * linespec.c (parse_linespec): Pass const pointer to
2956 linespec_expression_to_pc.
2957 (linespec_expression_to_pc): Make "exp_ptr" const.
2958 * parse.c (parse_exp_1): Make "stringptr" const.
2959 Make a copy of the expression to pass to parse_exp_in_context until
2960 this whole interface can be constified.
2961 (parse_expression): Make "string" const.
2962 * printcmd.c (ui_printf): Treat "arg" as const.
2963 Handle const strings.
2964 * tracepoint.c (validate_actionline): Pass const pointer to
2965 all calls to parse_exp_1.
2966 (encode_actions_1): Likewise.
2967 * value.h (parse_to_comma_and_eval): Make argument const.
2968 (parse_and_eval_address): Likewise.
2969 (parse_and_eval): Likewise.
2970 * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
2971 (varobj_set_value): Likewise.
2972 * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
2973 constify string handling.
2974 Pass const pointers to parse_and_eval_address and
2975 parse_to_comman_and_eval.
2976 * cli/cli-utils.c (skip_to_space): Rename to ...
2977 (skip_to_space_const): ... this. Handle const strings.
2978 * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
2979 skip_to_space_const.
2980 (skip_to_space_const): Declare.
2981 * common/format.c (parse_format_string): Make "arg" const.
2982 Handle const strings.
2983 * common/format.h (parse_format_string): Make "arg" const.
2984 * gdbserver/ax.c (ax_printf): Make "format" const.
2985 * python/python.c (gdbpy_parse_and_eval): Do not make a copy
2986 of the expression string.
2987
2988 2013-03-12 Hui Zhu <hui@codesourcery.com>
2989
2990 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
2991
2992 2013-03-12 Yao Qi <yao@codesourcery.com>
2993 Hui Zhu <hui@codesourcery.com>
2994
2995 * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
2996 (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
2997 DW_OP_deref_size.
2998
2999 2013-03-12 Paul Hilfinger <hilfingr@adacore.com>
3000
3001 * ada-lex.l (rules): Only recognize 'thread' as a
3002 delimiter when followed by numerals, as for c-exp.y.
3003 Use new rewind_to_char function to rewind the input for
3004 expression-delimiting tokens.
3005 (rewind_to_char): New function.
3006
3007 2013-03-11 Pedro Alves <palves@redhat.com>
3008 Jan Kratochvil <jan.kratochvil@redhat.com>
3009
3010 * configure: Regenerate.
3011 * configure.ac (check dynamic export flag): Link python test with
3012 $PYTHON_LIBS.
3013
3014 2013-03-11 Doug Evans <dje@google.com>
3015 Keith Seitz <keiths@redhat.com>
3016
3017 * linespec.c (find_linespec_symbols): Call find_function_symbols
3018 first, and then call lookup_prefix_sym/find_method.
3019
3020 2013-03-11 Pedro Alves <palves@redhat.com>
3021
3022 * charset.c (convert_between_encodings): Don't cast between
3023 different pointer to pointer types. Instead, make the 'inp' local
3024 be of the type iconv expects.
3025 (wchar_iterate): Don't cast between different pointer to pointer
3026 types. Instead, use new pointer local of the type iconv expects.
3027 * target.c (target_read_stralloc, target_fileio_read_stralloc):
3028 Add new local of type char pointer, and use it to get a
3029 char/string view of the byte buffer, instead of casting between
3030 pointer to pointer types.
3031
3032 2013-03-11 Hafiz Abid Qadeer <abidh@codesourcery.com>
3033
3034 * remote.c (remote_set_trace_buffer_size): Move != operator
3035 to the start of next line to fix an ARI warning.
3036
3037 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3038
3039 * NEWS: Add record changes.
3040
3041 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3042
3043 * record-btrace.c (btrace_insn_history): Omit the pc prefix in
3044 the instruction history disassembly.
3045 * disasm.c (dump_insns): Omit the pc prefix, if requested.
3046 * disasm.h (DISASSEMBLY_OMIT_PC): New.
3047
3048 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3049
3050 * Makefile.in (SFILES): Add record-btrace.c
3051 (COMMON_OBS): Add record-btrace.o
3052 * record-btrace.c: New.
3053 * objfiles.c: Include btrace.h.
3054 (free_objfile): call btrace_free_objfile.
3055
3056 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3057
3058 * target.c (target_call_history, target_call_history_from,
3059 target_call_history_range): New.
3060 * target.h (target_ops) <to_call_history, to_call_history_from,
3061 to_call_history_range>: New fields.
3062 (target_call_history, target_call_history_from,
3063 target_call_history_range): New declaration.
3064 * record.c (get_call_history_modifiers, cmd_record_call_history,
3065 record_call_history_size): New.
3066 (_initialize_record): Add the "record function-call-history" command.
3067 Add "set/show record function-call-history-size" commands.
3068 * record.h (record_print_flag): New.
3069
3070 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3071
3072 * target.h (target_ops) <to_insn_history, to_insn_history_from,
3073 to_insn_history_range>: New fields.
3074 (target_insn_history): New.
3075 (target_insn_history_from): New.
3076 (target_insn_history_range): New.
3077 * target.c (target_insn_history): New.
3078 (target_insn_history_from): New.
3079 (target_insn_history_range): New.
3080 * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
3081 (record_insn_history_size): New.
3082 (get_insn_number): New.
3083 (get_context_size): New.
3084 (no_chunk): New.
3085 (get_insn_history_modifiers): New.
3086 (cmd_record_insn_history): New.
3087 (_initialize_record): Add "set/show record instruction-history-size"
3088 command. Add "record instruction-history" command.
3089
3090 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3091
3092 * record.h (record_disconnect): New.
3093 (record_detach): New.
3094 (record_mourn_inferior): New.
3095 (record_kill): New.
3096 * record-full.c (record_disconnect, record_detach,
3097 record_mourn_inferior, record_kill): Move to...
3098 * record.c: ...here.
3099 (DEBUG): New.
3100 (record_stop): New.
3101 (record_unpush): New.
3102 (cmd_record_stop): Call record_stop. Replace unpush_target
3103 call with record_unpush call.
3104 (record_disconnect, record_detach): Assert that the target
3105 is of record stratum. Call record_unpush, record_stop, and
3106 DEBUG.
3107 (record_mourn_inferior, record_kill): Assert that the target
3108 is of record stratum. Call record_unpush and DEBUG.
3109
3110 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3111
3112 * record-full.h, record-full.c (record_memory_query): Rename
3113 to ...
3114 (record_full_memory_query): ...this. Update all users.
3115 (record_arch_list_add_reg): Rename to ...
3116 (record_full_arch_list_add_reg): ...this. Update all users.
3117 (record_arch_list_add_mem): Rename to ...
3118 (record_full_arch_list_add_mem): ...this. Update all users.
3119 (record_arch_list_add_end): Rename to ...
3120 (record_full_arch_list_add_end): ...this. Update all users.
3121 (record_gdb_operation_disable_set): Rename to ...
3122 (record_full_gdb_operation_disable_set): ...this.
3123 Update all users.
3124
3125 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3126
3127 * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
3128 (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
3129 (RECORD_IS_REPLAY): Renamed to ...
3130 (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
3131 (RECORD_FILE_MAGIC): Renamed to ...
3132 (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
3133 (record_mem_entry): Renamed to ...
3134 (record_full_mem_entry): ... this. Updated all users.
3135 (record_reg_entry): Renamed to ...
3136 (record_full_reg_entry): ... this. Updated all users.
3137 (record_end_entry): Renamed to ...
3138 (record_full_end_entry): ... this. Updated all users.
3139 (record_type) <record_end, record_reg, record_mem>: Renamed
3140 to ...
3141 (record_full_type) <record_full_end, record_full_reg,
3142 record_full_mem>: ... this. Updated all users.
3143 (record_entry): Renamed to ...
3144 (record_full_entry): ... this. Updated all users.
3145 (record_core_buf_entry): Renamed to ...
3146 (record_full_core_buf_entry): ... this. Updated all users.
3147 (record_core_regbuf): Renamed to ...
3148 (record_full_core_regbuf): ... this. Updated all users.
3149 (record_core_start): Renamed to ...
3150 (record_full_core_start): ... this. Updated all users.
3151 (record_core_end): Renamed to ...
3152 (record_full_core_end): ... this. Updated all users.
3153 (record_core_buf_list): Renamed to ...
3154 (record_full_core_buf_list): ... this. Updated all users.
3155 (record_first): Renamed to ...
3156 (record_full_first): ... this. Updated all users.
3157 (record_list): Renamed to ...
3158 (record_full_list): ... this. Updated all users.
3159 (record_arch_list_head): Renamed to ...
3160 (record_full_arch_list_head): ... this. Updated all users.
3161 (record_arch_list_tail): Renamed to ...
3162 (record_full_arch_list_tail): ... this. Updated all users.
3163 (record_stop_at_limit): Renamed to ...
3164 (record_full_stop_at_limit): ... this. Updated all users.
3165 (record_insn_max_num): Renamed to ...
3166 (record_full_insn_max_num): ... this. Updated all users.
3167 (record_insn_num): Renamed to ...
3168 (record_full_insn_num): ... this. Updated all users.
3169 (record_insn_count): Renamed to ...
3170 (record_full_insn_count): ... this. Updated all users.
3171 (record_ops): Renamed to ...
3172 (record_full_ops): ... this. Updated all users.
3173 (record_core_ops): Renamed to ...
3174 (record_full_core_ops): ... this. Updated all users.
3175 (set_record_cmdlist): Renamed to ...
3176 (set_record_full_cmdlist): ... this. Updated all users.
3177 (show_record_cmdlist): Renamed to ...
3178 (show_record_full_cmdlist): ... this. Updated all users.
3179 (record_cmdlist): Renamed to ...
3180 (record_full_cmdlist): ... this. Updated all users.
3181 (record_beneath_to_resume_ops): Renamed to ...
3182 (record_full_beneath_to_resume_ops): ... this. Updated all users.
3183 (record_beneath_to_resume): Renamed to ...
3184 (record_full_beneath_to_resume): ... this. Updated all users.
3185 (record_beneath_to_wait_ops): Renamed to ...
3186 (record_full_beneath_to_wait_ops): ... this. Updated all users.
3187 (record_beneath_to_wait): Renamed to ...
3188 (record_full_beneath_to_wait): ... this. Updated all users.
3189 (record_beneath_to_store_registers_ops): Renamed to ...
3190 (record_full_beneath_to_store_registers_ops): ... this.
3191 Updated all users.
3192 (record_beneath_to_store_registers): Renamed to ...
3193 (record_full_beneath_to_store_registers): ... this.
3194 Updated all users.
3195 (record_beneath_to_xfer_partial_ops): Renamed to ...
3196 (record_full_beneath_to_xfer_partial_ops): ... this.
3197 Updated all users.
3198 (record_beneath_to_xfer_partial): Renamed to ...
3199 (record_full_beneath_to_xfer_partial): ... this.
3200 Updated all users.
3201 (record_beneath_to_insert_breakpoint): Renamed to ...
3202 (record_full_beneath_to_insert_breakpoint): ... this.
3203 Updated all users.
3204 (record_beneath_to_stopped_by_watchpoint): Renamed to ...
3205 (record_full_beneath_to_stopped_by_watchpoint): ... this.
3206 Updated all users.
3207 (record_beneath_to_stopped_data_address): Renamed to ...
3208 (record_full_beneath_to_stopped_data_address): ... this.
3209 Updated all users.
3210 (record_beneath_to_async): Renamed to ...
3211 (record_full_beneath_to_async): ... this. Updated all users.
3212 (record_goto_insn): Renamed to ...
3213 (record_full_goto_insn): ... this. Updated all users.
3214 (record_save): Renamed to ...
3215 (record_full_save): ... this. Updated all users.
3216 (record_reg_alloc): Renamed to ...
3217 (record_full_reg_alloc): ... this. Updated all users.
3218 (record_reg_release): Renamed to ...
3219 (record_full_reg_release): ... this. Updated all users.
3220 (record_mem_alloc): Renamed to ...
3221 (record_full_mem_alloc): ... this. Updated all users.
3222 (record_mem_release): Renamed to ...
3223 (record_full_mem_release): ... this. Updated all users.
3224 (record_end_alloc): Renamed to ...
3225 (record_full_end_alloc): ... this. Updated all users.
3226 (record_end_release): Renamed to ...
3227 (record_full_end_release): ... this. Updated all users.
3228 (record_entry_release): Renamed to ...
3229 (record_full_entry_release): ... this. Updated all users.
3230 (record_list_release): Renamed to ...
3231 (record_full_list_release): ... this. Updated all users.
3232 (record_list_release_following): Renamed to ...
3233 (record_full_list_release_following): ... this.
3234 Updated all users.
3235 (record_list_release_first): Renamed to ...
3236 (record_full_list_release_first): ... this. Updated all users.
3237 (record_arch_list_add): Renamed to ...
3238 (record_full_arch_list_add): ... this. Updated all users.
3239 (record_get_loc): Renamed to ...
3240 (record_full_get_loc): ... this. Updated all users.
3241 (record_check_insn_num): Renamed to ...
3242 (record_full_check_insn_num): ... this. Updated all users.
3243 (record_arch_list_cleanups): Renamed to ...
3244 (record_full_arch_list_cleanups): ... this. Updated all users.
3245 (record_message): Renamed to ...
3246 (record_full_message): ... this. Updated all users.
3247 (record_message_wrapper): Renamed to ...
3248 (record_full_message_wrapper): ... this. Updated all users.
3249 (record_message_wrapper_safe): Renamed to ...
3250 (record_full_message_wrapper_safe): ... this. Updated all users.
3251 (record_gdb_operation_disable): Renamed to ...
3252 (record_full_gdb_operation_disable): ... this. Updated all users.
3253 (record_hw_watchpoint): Renamed to ...
3254 (record_full_hw_watchpoint): ... this. Updated all users.
3255 (record_exec_insn): Renamed to ...
3256 (record_full_exec_insn): ... this. Updated all users.
3257 (record_restore): Renamed to ...
3258 (record_full_restore): ... this. Updated all users.
3259 (record_async_inferior_event_token): Renamed to ...
3260 (record_full_async_inferior_event_token): ... this.
3261 Updated all users.
3262 (record_async_inferior_event_handler): Renamed to ...
3263 (record_full_async_inferior_event_handler): ... this.
3264 Updated all users.
3265 (record_core_open_1): Renamed to ...
3266 (record_full_core_open_1): ... this. Updated all users.
3267 (record_open_1): Renamed to ...
3268 (record_full_open_1): ... this. Updated all users.
3269 (record_open): Renamed to ...
3270 (record_full_open): ... this. Updated all users.
3271 (record_close): Renamed to ...
3272 (record_full_close): ... this. Updated all users.
3273 (record_resume_step): Renamed to ...
3274 (record_full_resume_step): ... this. Updated all users.
3275 (record_resumed): Renamed to ...
3276 (record_full_resumed): ... this. Updated all users.
3277 (record_execution_dir): Renamed to ...
3278 (record_full_execution_dir): ... this. Updated all users.
3279 (record_resume): Renamed to ...
3280 (record_full_resume): ... this. Updated all users.
3281 (record_get_sig): Renamed to ...
3282 (record_full_get_sig): ... this. Updated all users.
3283 (record_sig_handler): Renamed to ...
3284 (record_full_sig_handler): ... this. Updated all users.
3285 (record_wait_cleanups): Renamed to ...
3286 (record_full_wait_cleanups): ... this. Updated all users.
3287 (record_wait_1): Renamed to ...
3288 (record_full_wait_1): ... this. Updated all users.
3289 (record_wait): Renamed to ...
3290 (record_full_wait): ... this. Updated all users.
3291 (record_stopped_by_watchpoint): Renamed to ...
3292 (record_full_stopped_by_watchpoint): ... this. Updated all users.
3293 (record_disconnect): Renamed to ...
3294 (record_full_disconnect): ... this. Updated all users.
3295 (record_detach): Renamed to ...
3296 (record_full_detach): ... this. Updated all users.
3297 (record_mourn_inferior): Renamed to ...
3298 (record_full_mourn_inferior): ... this. Updated all users.
3299 (record_kill): Renamed to ...
3300 (record_full_kill): ... this. Updated all users.
3301 (record_stopped_data_address): Renamed to ...
3302 (record_full_stopped_data_address): ... this. Updated all users.
3303 (record_registers_change): Renamed to ...
3304 (record_full_registers_change): ... this. Updated all users.
3305 (record_store_registers): Renamed to ...
3306 (record_full_store_registers): ... this. Updated all users.
3307 (record_xfer_partial): Renamed to ...
3308 (record_full_xfer_partial): ... this. Updated all users.
3309 (record_breakpoint): Renamed to ...
3310 (record_full_breakpoint): ... this. Updated all users.
3311 (record_breakpoint_p): Renamed to ...
3312 (record_full_breakpoint_p): ... this. Updated all users.
3313 (record_breakpoints): Renamed to ...
3314 (record_full_breakpoints): ... this. Updated all users.
3315 (record_sync_record_breakpoints): Renamed to ...
3316 (record_full_sync_record_breakpoints): ... this.
3317 Updated all users.
3318 (record_init_record_breakpoints): Renamed to ...
3319 (record_full_init_record_breakpoints): ... this.
3320 Updated all users.
3321 (record_insert_breakpoint): Renamed to ...
3322 (record_full_insert_breakpoint): ... this. Updated all users.
3323 (record_remove_breakpoint): Renamed to ...
3324 (record_full_remove_breakpoint): ... this. Updated all users.
3325 (record_can_execute_reverse): Renamed to ...
3326 (record_full_can_execute_reverse): ... this. Updated all users.
3327 (record_get_bookmark): Renamed to ...
3328 (record_full_get_bookmark): ... this. Updated all users.
3329 (record_goto_bookmark): Renamed to ...
3330 (record_full_goto_bookmark): ... this. Updated all users.
3331 (record_async): Renamed to ...
3332 (record_full_async): ... this. Updated all users.
3333 (record_can_async_p): Renamed to ...
3334 (record_full_can_async_p): ... this. Updated all users.
3335 (record_is_async_p): Renamed to ...
3336 (record_full_is_async_p): ... this. Updated all users.
3337 (record_execution_direction): Renamed to ...
3338 (record_full_execution_direction): ... this. Updated all users.
3339 (record_info): Renamed to ...
3340 (record_full_info): ... this. Updated all users.
3341 (record_delete): Renamed to ...
3342 (record_full_delete): ... this. Updated all users.
3343 (record_is_replaying): Renamed to ...
3344 (record_full_is_replaying): ... this. Updated all users.
3345 (record_goto_entry): Renamed to ...
3346 (record_full_goto_entry): ... this. Updated all users.
3347 (record_goto_begin): Renamed to ...
3348 (record_full_goto_begin): ... this. Updated all users.
3349 (record_goto_end): Renamed to ...
3350 (record_full_goto_end): ... this. Updated all users.
3351 (record_goto): Renamed to ...
3352 (record_full_goto): ... this. Updated all users.
3353 (init_record_ops): Renamed to ...
3354 (init_record_full_ops): ... this. Updated all users.
3355 (record_core_resume): Renamed to ...
3356 (record_full_core_resume): ... this. Updated all users.
3357 (record_core_kill): Renamed to ...
3358 (record_full_core_kill): ... this. Updated all users.
3359 (record_core_fetch_registers): Renamed to ...
3360 (record_full_core_fetch_registers): ... this. Updated all users.
3361 (record_core_prepare_to_store): Renamed to ...
3362 (record_full_core_prepare_to_store): ... this. Updated all users.
3363 (record_core_store_registers): Renamed to ...
3364 (record_full_core_store_registers): ... this. Updated all users.
3365 (record_core_xfer_partial): Renamed to ...
3366 (record_full_core_xfer_partial): ... this. Updated all users.
3367 (record_core_insert_breakpoint): Renamed to ...
3368 (record_full_core_insert_breakpoint): ... this. Updated all users.
3369 (record_core_remove_breakpoint): Renamed to ...
3370 (record_full_core_remove_breakpoint): ... this. Updated all users.
3371 (record_core_has_execution): Renamed to ...
3372 (record_full_core_has_execution): ... this. Updated all users.
3373 (init_record_core_ops): Renamed to ...
3374 (init_record_full_core_ops): ... this. Updated all users.
3375 (cmd_record_restore): Renamed to ...
3376 (cmd_record_full_restore): ... this. Updated all users.
3377 (record_save_cleanups): Renamed to ...
3378 (record_full_save_cleanups): ... this. Updated all users.
3379 (cmd_record_start): Renamed to ...
3380 (cmd_record_full_start): ... this. Updated all users.
3381 (set_record_insn_max_num): Renamed to ...
3382 (set_record_full_insn_max_num): ... this. Updated all users.
3383 (set_record_command): Renamed to ...
3384 (set_record_full_command): ... this. Updated all users.
3385 (show_record_command): Renamed to ...
3386 (show_record_full_command): ... this. Updated all users.
3387 (_initialize_record): Renamed to ...
3388 (_initialize_record_full): ... this. Updated all users.
3389
3390 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3391
3392 * record.h: Split into this and ...
3393 * record-full.h: ... this.
3394 * record.c: Split into this and ...
3395 * record-full.c: ... this.
3396 * target.h (target_ops): Add new fields to_info_record,
3397 to_save_record, to_delete_record, to_record_is_replaying,
3398 to_goto_record_begin, to_goto_record_end, to_goto_record.
3399 (target_info_record): New.
3400 (target_save_record): New.
3401 (target_supports_delete_record): New.
3402 (target_delete_record): New.
3403 (target_record_is_replaying): New.
3404 (target_goto_record_begin): New.
3405 (target_goto_record_end): New.
3406 (target_goto_record): New.
3407 * target.c (target_info_record): New.
3408 (target_save_record): New.
3409 (target_supports_delete_record): New.
3410 (target_delete_record): New.
3411 (target_record_is_replaying): New.
3412 (target_goto_record_begin): New.
3413 (target_goto_record_end): New.
3414 (target_goto_record): New.
3415 * record.h: Declare struct cmd_list_element.
3416 (record_cmdlist): New declaration.
3417 (set_record_cmdlist): New declaration.
3418 (show_record_cmdlist): New declaration.
3419 (info_record_cmdlist): New declaration.
3420 (cmd_record_goto): New declaration.
3421 * record.c: Remove unnecessary includes.
3422 Include inferior.h.
3423 (cmd_record_goto): Remove declaration.
3424 (record_cmdlist): Now extern. Initialize.
3425 (set_record_cmdlist): Now extern. Initialize.
3426 (show_record_cmdlist): Now extern. Initialize.
3427 (info_record_cmdlist): Now extern. Initialize.
3428 (find_record_target): New.
3429 (require_record_target): New.
3430 (cmd_record_start): Update.
3431 (cmd_record_delete): Remove target-specific code.
3432 Call target_delete_record.
3433 (cmd_record_stop): Unpush any record target.
3434 (set_record_insn_max_num): Move to record-full.c
3435 (set_record_command): Add comment.
3436 (show_record_command): Add comment.
3437 (info_record_command): Update comment.
3438 Remove target-specific code.
3439 Call the record target's to_info_record.
3440 (cmd_record_start): New.
3441 (cmd_record_goto): Now extern.
3442 Remove target-specific code.
3443 Call target_goto_begin, target_goto_end, or target_goto.
3444 (_initialize_record): Move record target ops initialization to
3445 record-full.c.
3446 Change "record" command help text.
3447 Move "record restore", "record set", and "record show" commands to
3448 record-full.c.
3449 * Makefile.in (SFILES): Add record-full.c.
3450 (HFILES_NO_SRCDIR): Add record-full.h.
3451 (COMMON_OBS): Add record-full.o.
3452 * amd64-linux-tdep.c: Include record-full.h instead of record.h.
3453 * arm-tdep.c: Include record-full.h.
3454 * i386-linux-tdep.c: Include record-full.h instead of record.h.
3455 * i386-tdep.c: Include record-full.h.
3456 * infrun.c: Include record-full.h.
3457 * linux-record.c: Include record-full.h.
3458 * moxie-tdep.c: Include record-full.h.
3459 * record-full.c: Include record-full.h.
3460 Change module comment.
3461 (set_record_full_cmdlist): New.
3462 (show_record_full_cmdlist): New.
3463 (record_full_cmdlist): New.
3464 (record_goto_insn): New declaration.
3465 (record_save): New declaration.
3466 (record_check_insn_num): Change query string.
3467 (record_info): New.
3468 (record_delete): New.
3469 (record_is_replaying): New.
3470 (record_goto_entry): New.
3471 (record_goto_begin): New.
3472 (record_goto_end): New.
3473 (record_goto): New.
3474 (init_record_ops): Update.
3475 (init_record_core_ops): Update.
3476 (cmd_record_save): Rename to record_save. Remove target and arg checks.
3477 (cmd_record_start): New.
3478 (set_record_insn_max_num): Moved from record.c
3479 (set_record_full_command): New.
3480 (show_record_full_command): New.
3481 (_initialize_record_full): New.
3482
3483 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3484
3485 * target.h (add_deprecated_target_alias): New.
3486 * target.c (add_deprecated_target_alias): New.
3487
3488 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3489
3490 * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
3491 and signal.h.
3492 (linux_supports_btrace): Add kernel and
3493 cpuid check.
3494 (kernel_supports_btrace): New function.
3495 (cpu_supports_btrace): New function.
3496 (intel_supports_btrace): New function.
3497
3498 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3499
3500 * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
3501 * remote.c: Include btrace.h.
3502 (struct btrace_target_info): New struct.
3503 (remote_supports_btrace): New function.
3504 (send_Qbtrace): New function.
3505 (remote_enable_btrace): New function.
3506 (remote_disable_btrace): New function.
3507 (remote_teardown_btrace): New function.
3508 (remote_read_btrace): New function.
3509 (init_remote_ops): Add btrace ops.
3510 (enum <unnamed>): Add btrace packets.
3511 (struct protocol_feature remote_protocol_features[]): Add btrace packets.
3512 (_initialize_remote): Add packet configuration for branch tracing.
3513
3514 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3515
3516 * features/btrace.dtd: New file.
3517 * Makefile.in (XMLFILES): Add btrace.dtd.
3518 * btrace.h (parse_xml_btrace): New declaration.
3519 * btrace.c: Include xml-support.h.
3520 (parse_xml_btrace): New function.
3521 (parse_xml_btrace_block): New function.
3522 (block_attributes): New struct.
3523 (btrace_attributes): New struct.
3524 (btrace_children): New struct.
3525 (btrace_elements): New struct.
3526
3527 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3528
3529 * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
3530 (amd64_linux_enable_btrace): New.
3531 (amd64_linux_disable_btrace): New.
3532 (amd64_linux_teardown_btrace): New.
3533 (_initialize_amd64_linux_nat): Initialize btrace ops.
3534 * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
3535 (i386_linux_enable_btrace): New.
3536 (i386_linux_disable_btrace): New.
3537 (i386_linux_teardown_btrace): New.
3538 (_initialize_i386_linux_nat): Initialize btrace ops.
3539 * config/i386/linux.mh: Add linux-btrace.o.
3540 * config/i386/linux64.mh: Add linux-btrace.o.
3541
3542 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3543
3544 * common/linux_btrace.h: New file.
3545 * common/linux_btrace.c: New file.
3546 * Makefile.in (SFILES): Add btrace.c.
3547 (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
3548 (COMMON_OBS): Add btrace.o.
3549 (linux-btrace.o): New rule.
3550
3551 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3552
3553 * target.h: Include btrace.h.
3554 (struct target_ops) <to_supports_btrace, to_enable_btrace,
3555 to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
3556 * target.c (target_supports_btrace): New function.
3557 (target_enable_btrace): New function.
3558 (target_disable_btrace): New function.
3559 (target_teardown_btrace): New function.
3560 (target_read_btrace): New function.
3561 * btrace.h: New file.
3562 * btrace.c: New file.
3563 * Makefile.in: Add btrace.c.
3564 * gdbthread.h: Include btrace.h.
3565 (struct thread_info): Add btrace field.
3566 * thread.c: Include btrace.h.
3567 (clear_thread_inferior_resources): Call target_teardown_btrace.
3568 * common/btrace-common.h: New file.
3569
3570 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
3571
3572 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
3573 for CHILD, ignore PTRACE_KILL errors, move the inner block variable
3574 kill_status to outer block.
3575
3576 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
3577
3578 Fix entry-values if the callee called a noreturn function.
3579 * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
3580 get_frame_address_in_block. Add new comment.
3581
3582 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
3583
3584 Fix entry-values in C++ across CUs.
3585 * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
3586 lookup_minimal_symbol. Add a comment.
3587 * dwarf2read.c
3588 (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
3589 DW_AT_linkage_name.
3590
3591 2013-03-08 Yao Qi <yao@codesourcery.com>
3592
3593 * tracepoint.c (_initialize_tracepoint): Indent the code.
3594
3595 2013-03-08 Pedro Alves <palves@redhat.com>
3596
3597 * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
3598 (parse_find_args, find_command): Change type of pattern buffer
3599 locals to 'gdb_byte *'.
3600
3601 2013-03-08 Stan Shebs <stan@codesourcery.com>
3602 Hafiz Abid Qadeer <abidh@codesourcery.com>
3603
3604 * NEWS: Mention set and show trace-buffer-size commands.
3605 Mention new packet.
3606 * target.h (struct target_ops): New method
3607 to_set_trace_buffer_size.
3608 (target_set_trace_buffer_size): New macro.
3609 * target.c (update_current_target): Set up new method.
3610 * tracepoint.c (trace_buffer_size): New global.
3611 (start_tracing): Send it to the target.
3612 (set_trace_buffer_size): New function.
3613 (_initialize_tracepoint): Add new setshow for trace-buffer-size.
3614 * remote.c (remote_set_trace_buffer_size): New function.
3615 (_initialize_remote): Use it.
3616 (QTBuffer:size) New remote command.
3617 (PACKET_QTBuffer_size): New enum.
3618 (remote_protocol_features): Add an entry for
3619 PACKET_QTBuffer_size.
3620
3621 2013-03-08 Tom Tromey <tromey@redhat.com>
3622
3623 * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
3624 variable.
3625
3626 2013-03-07 Pedro Alves <palves@redhat.com>
3627
3628 * target.c (target_read_stralloc, target_fileio_read_alloc):
3629 *Cast pointer to 'gdb_byte *' in target call.
3630
3631 2013-03-07 Pedro Alves <palves@redhat.com>
3632
3633 * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
3634 call.
3635
3636 2013-03-07 Keith Seitz <keiths@redhat.com>
3637
3638 * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
3639 (trace_pass_command): Likewise.
3640 * cli/cli-cmds.c: Include cli/cli-utils.h.
3641 (source_command): Use skip-spaces.
3642 (disassemble_command): Likewise.
3643 * findcmd.c: Include cli/cli-utils.h.
3644 (parse_find_args): Use skip_spaces.
3645 * go32-nat.c: Include cli/cli-utils.h.
3646 (go32_sldt): Use skip_spaces.
3647 (go32_sgdt): Likewise.
3648 (go32_sidt): Likewise.
3649 (go32_pde): Likewise.
3650 (go32_pte): Likewise.
3651 (go32_pte_for_address): Likewise.
3652 * infcmd.c: Include cli/cli-utils.h.
3653 (registers_info): Use skip_spaces.
3654 * linux-tdep.c (read_mapping): Use skip_spaces_const.
3655 (linux_info_proc): Likewise.
3656 * linux-thread-db.c: Include cli/cli-utils.h.
3657 (info_auto_load_libthread_db): Use skip_spaces_const.
3658 * m32r-rom.c: Include cli/cli-utils.h.
3659 (m32r_upload_command): Use skip_spaces.
3660 * maint.c: Include cli/cli-utils.h.
3661 (maintenance_translate_address): Use skip_spaces.
3662 * mi/mi-parse.c: Include cli/cli-utils.h.
3663 (mi_parse_argv): Use skip_spaces.
3664 (mi_parse): Likewise.
3665 * minsyms.c: Include cli/cli-utils.h.
3666 (msymbol_hash_iw): Use skip_spaces_const.
3667 * objc-lang.c: Include cli/cli-utils.h.
3668 (parse_selector): Use skip_spaces.
3669 (parse_method): Likewise.
3670 * python/python.c: Include cli/cli-utils.h.
3671 (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
3672 (python_command)[HAVE_PYTHON]: Likewise.
3673 (python_interactive_command)[!HAVE_PYTHON]: Likewise.
3674 * remote-m32r-sdi.c: Include cli/cli-utils.h.
3675 (m32r_load): Use skip_spaces.
3676 * serial.c: Include cli/cli-utils.h.
3677 (serial_open): Use skip_spaces_const.
3678 * stack.c: Include cli/cli-utils.h.
3679 (parse_frame_specification_1): Use skip_spaces_const.
3680 * symfile.c: Include cli/cli-utils.h.
3681 (set_ext_lang_command): Use skip_spaces.
3682 * symtab.c: Include cli/cli-utils.h.
3683 (rbreak_command): Use skip_spaces.
3684 * thread.c (thread_name_command): Use skip_spaces.
3685 * tracepoint.c (validate_actionline): Use skip_spaces.
3686 (encode_actions_1): Likewise.
3687 (trace_find_range_command): Likewise.
3688 (trace_find_outside_command): Likewise.
3689 (trace_dump_actions): Likewise.
3690
3691 2013-03-07 Pedro Alves <palves@redhat.com>
3692
3693 * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
3694 * expprint.c (print_subexp_standard): Likewise.
3695 * utils.c (host_char_to_target): Likewise.
3696 * valprint.c (generic_emit_char, generic_printstr): Likewise.
3697 * varobj.c (value_get_print_value): Change type of local to char*.
3698 Cast it gdb_byte * in call to language printer.
3699
3700 2013-03-07 Pedro Alves <palves@redhat.com>
3701
3702 * charset.c (struct wchar_iterator) <input>: Change type to 'const
3703 gdb_byte *'.
3704 (make_wchar_iterator): Remove cast to char*.
3705 (wchar_iterate): Change type of local.
3706
3707 2013-03-07 Pedro Alves <palves@redhat.com>
3708
3709 * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
3710 for 'regcache->register_status'.
3711
3712 2013-03-07 Pedro Alves <palves@redhat.com>
3713
3714 * breakpoint.c (breakpoint_xfer_memory): Change type of local to
3715 int.
3716
3717 2013-03-07 Pedro Alves <palves@redhat.com>
3718
3719 * stap-probe.c (handle_stap_probe): Add cast to char*.
3720
3721 2013-03-07 Pedro Alves <palves@redhat.com>
3722
3723 * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
3724 RECORD_MSGRCV>: Pass a signed variable to
3725 regcache_raw_read_signed, instead of an unsigned one.
3726
3727 2013-03-07 Pedro Alves <palves@redhat.com>
3728
3729 * remote-notif.c (notif_debug): Change type to int.
3730 * remote-notif.h (notif_debug): Likewise.
3731
3732 2013-03-07 Pedro Alves <palves@redhat.com>
3733
3734 * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
3735
3736 2013-03-07 Pedro Alves <palves@redhat.com>
3737
3738 * remote.c (hex2bin, bin2hex): Move extern declarations to ...
3739 * remote.h (hex2bin, bin2hex): ... here.
3740 * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
3741
3742 2013-03-07 Eli Zaretskii <eliz@gnu.org>
3743
3744 * utils.c (initialize_utils): Improve doc strings of "set/show
3745 width", "set/show height", and "set/show pagination".
3746
3747 2013-03-06 Keith Seitz <keiths@redhat.com>
3748
3749 * ax-gdb.c (gen_printf): Make FORMAT const.
3750 * ax-gdb.h (gen_printf): Likewise.
3751 * ax-general.c (ax_string): Make STR const.
3752 * ax.h (ax_string): Likewise.
3753
3754 2013-03-06 Doug Evans <dje@google.com>
3755
3756 * elfread.c (elf_symfile_read): Move debugging printf to more
3757 logical location.
3758
3759 2013-03-06 Pedro Alves <palves@redhat.com>
3760
3761 * python/py-utils.c (target_string_to_unicode): Delete function.
3762 * python/python-internal.h (target_string_to_unicode): Delete
3763 declaration.
3764
3765 2013-03-06 Pierre Muller <muller@sourceware.org>
3766
3767 * linespec.c (get_current_search_block): ARI fix, use (void)
3768 for empty parameter list.
3769
3770 2013-03-05 Doug Evans <dje@google.com>
3771
3772 * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
3773 of old ada_lookup_symbol_list. In !full_search case, don't
3774 search superblocks.
3775 (ada_lookup_symbol_list): Delete arg full_search, all callers
3776 updated. Call ada_lookup_symbol_list_worker.
3777 (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
3778 * ada-lang.h (ada_lookup_symbol_list): Update.
3779 * language.h (language_defn): Update comment for
3780 la_iterate_over_symbols.
3781 * linespec.c (iterate_over_file_blocks): New function.
3782 (iterate_over_all_matching_symtabs): Call it.
3783 (lookup_prefix_sym): Ditto.
3784 (get_current_search_block): New function.
3785 (get_search_block): Delete.
3786 (find_label_symbols): Call get_current_search_block.
3787 (add_matching_symbols_to_info): Call iterate_over_file_blocks.
3788 * symtab.c (iterate_over_symbols): Don't search superblocks.
3789
3790 2013-03-05 Yao Qi <yao@codesourcery.com>
3791
3792 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
3793 parameter VAR's type from "unsigned int" to "int".
3794 * command.h (var_zuinteger_unlimited): Update its comments.
3795 (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
3796
3797 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
3798
3799 * NEWS: Mention new target x86_64-*-cygwin*.
3800
3801 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
3802
3803 * configure.host: Add x86_64-*-cygwin* as host.
3804 * configure.tgt: Add x86_64-*-cygwin* as target.
3805 * config/i386/cygwin64.mh: New file.
3806
3807 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
3808
3809 * linespec.c (decode_line_2): Fix duplicate request off by two message.
3810
3811 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
3812
3813 * linespec.c (struct linespec_canonical_name): New.
3814 (struct linespec_state): Change canonical_names type to it.
3815 (add_sal_to_sals): Change variable canonical_name to canonical. Change
3816 xrealloc element size. Initialize the different CANONICAL fields.
3817 (canonical_to_fullform): New.
3818 (filter_results): Use it. Add variables canonical, fullform and
3819 cleanup.
3820 (struct decode_line_2_item, decode_line_2_compare_items): New.
3821 (decode_line_2): Remove variables iter and item_names, add variables
3822 items and items_count. Modify the code for these new variables.
3823
3824 2013-03-04 Corinna Vinschen <vinschen@redhat.com>
3825
3826 * coff-pe-read.c (read_pe_exported_syms): Don't return without
3827 calling do_cleanup.
3828
3829 2013-03-04 Luis Machado <lgustavo@codesourcery.com>
3830
3831 * tracepoint.c (build_traceframe_info): Add code for byte order.
3832
3833 2013-03-02 Kevin Buettner <kevinb@redhat.com>
3834
3835 * v850-tdep.c: (v850e2_register_name): Revise system register
3836 names to match current V850E2M architecture specifications.
3837 Update register number enum comments too.
3838
3839 2013-03-01 Jiong Wang <jiwang@tilera.com>
3840 Pedro Alves <palves@redhat.com>
3841
3842 * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
3843 to END_ADDR.
3844 (tilegx_skip_prologue): Limit prologue analysis to section end.
3845
3846 2013-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
3847
3848 * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
3849 use it.
3850
3851 2013-03-01 Pedro Alves <palves@redhat.com>
3852
3853 Use gdb_byte for bytes from the program being debugged.
3854
3855 * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
3856 Change type of local 'buf' to gdb_byte.
3857 * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
3858 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
3859 * cris-tdep.c (cris_sigcontext_addr)
3860 (cris_sigtramp_frame_unwind_cache): Likewise.
3861 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
3862 (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
3863 Likewise.
3864 * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
3865 * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
3866 (hppa32_hpux_search_dummy_call_sequence)
3867 (hppa_hpux_supply_save_state): Likewise.
3868 * hppa-linux-tdep.c (insns_match_pattern)
3869 (hppa_linux_find_global_pointer): Likewise.
3870 * hppa-tdep.c (hppa_in_function_epilogue_p)
3871 (skip_prologue_hard_way, hppa_frame_cache): Likewise.
3872 * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
3873 * i386fbsd-tdep.c (i386fbsd_supply_uthread)
3874 (i386fbsd_collect_uthread): Likewise.
3875 * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
3876 * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
3877 * ia64-tdep.c (examine_prologue, ia64_frame_cache)
3878 (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
3879 (ia64_sigtramp_frame_prev_register, ia64_access_reg)
3880 (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
3881 (ia64_libunwind_frame_prev_register)
3882 (ia64_libunwind_sigtramp_frame_this_id)
3883 (ia64_find_global_pointer_from_dynamic_section)
3884 (find_extant_func_descr, find_func_descr, ia64_dummy_id)
3885 (ia64_unwind_pc): Likewise.
3886 * iq2000-tdep.c (iq2000_store_return_value): Likewise.
3887 * m68hc11-tdep.c (m68hc11_push_dummy_call)
3888 (m68hc11_extract_return_value): Likewise.
3889 * m68klinux-nat.c (fetch_register, store_register): Likewise.
3890 * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
3891 (mep_get_insn, mep_push_dummy_call): Likewise.
3892 * mips-linux-tdep.c (mips_linux_get_longjmp_target)
3893 (mips_linux_in_dynsym_stub): Likewise.
3894 * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
3895 * ppc-linux-nat.c (fetch_register, store_register): Likewise.
3896 * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
3897 to gdb_byte.
3898 * remote-mips.c (mips_set_register): Likewise.
3899 * remote-sim.c (gdbsim_fetch_register): Likewise.
3900 * score-tdep.c (score7_fetch_inst): Change type of parameter
3901 'memblock' and local 'buf' to gdb_byte.
3902 (score7_malloc_and_get_memblock): Change return type to gdb_byte.
3903 Change type of local 'buf' to gdb_byte. Adjust.
3904 (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
3905 to gdb_byte**.
3906 (score7_analyze_prologue): Change type of 'memblock' and
3907 'memblock_ptr' locals to gdb_byte*.
3908 * sh64-tdep.c (sh64_extract_return_value)
3909 (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
3910 * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
3911 * solib-pa64.c (pa64_solib_create_inferior_hook)
3912 (pa64_open_symbol_file_object): Remove local 'buf'.
3913 * solib-som.c (som_solib_create_inferior_hook, link_map_start)
3914 (som_open_symbol_file_object): Likewise.
3915 * solib-spu.c (spu_current_sos): Likewise.
3916 * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
3917 * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
3918 (spu_store_registers): Likewise.
3919 * target.c (debug_print_register): Likewise.
3920 * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
3921 * xstormy16-tdep.c (xstormy16_store_return_value)
3922 (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
3923 (xstormy16_find_jmp_table_entry): Likewise.
3924
3925 2013-03-01 Jiong Wang <jiwang@tilera.com>
3926
3927 * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
3928 (tilegx_gdbarch_init): Install it.
3929
3930 2013-02-28 Tom Tromey <tromey@redhat.com>
3931
3932 * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
3933 PyLong_Check.
3934
3935 2013-02-28 Doug Evans <dje@google.com>
3936
3937 * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
3938 * python/python.c (gdbpy_find_pc_line): Ditto.
3939
3940 2013-02-28 Tom Tromey <tromey@redhat.com>
3941
3942 * contrib/excheck.py: New file.
3943 * contrib/exsummary.py: New file.
3944 * contrib/gcc-with-excheck: New file.
3945
3946 2013-02-28 Tom Tromey <tromey@redhat.com>
3947
3948 * python/python.c (gdbpy_print_stack): Call begin_line and
3949 fprintf_filtered inside TRY_CATCH.
3950
3951 2013-02-28 Tom Tromey <tromey@redhat.com>
3952
3953 * python/python.c (gdbpy_find_pc_line): Call find_pc_line
3954 inside TRY_CATCH.
3955
3956 2013-02-28 Tom Tromey <tromey@redhat.com>
3957
3958 * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
3959 frame_object_to_frame_info inside TRY_CATCH.
3960
3961 2013-02-28 Tom Tromey <tromey@redhat.com>
3962
3963 * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
3964 TRY_CATCH.
3965
3966 2013-02-28 Tom Tromey <tromey@redhat.com>
3967
3968 * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
3969
3970 2013-02-27 Corinna Vinschen <vinschen@redhat.com>
3971
3972 * windows-nat.c: Throughout, fix format strings and casts of
3973 printf-like functions to avoid type related warnings on all
3974 platforms.
3975 (handle_output_debug_string): Fetch context information address
3976 from debug string using string_to_core_addr.
3977
3978 2013-02-27 Jiong Wang <jiwang@tilera.com>
3979
3980 * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
3981 * regformats/reg-tilegx32.dat: New.
3982
3983 2013-02-27 Jiong Wang <jiwang@tilera.com>
3984
3985 * configure.tgt (tilegx-*-linux*): Enable gdbserver.
3986
3987 2013-02-27 Jiong Wang <jiwang@tilera.com>
3988
3989 * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
3990
3991 2013-02-27 Yao Qi <yao@codesourcery.com>
3992 Pedro Alves <palves@redhat.com>
3993
3994 * tracepoint.c (tfile_trace_find): For tfind
3995 pc/tp/range/outside, look for the next trace frame instead of
3996 always starting from frame 0.
3997
3998 2013-02-26 Anthony Green <green@moxielogic.com>
3999
4000 * configure.tgt: Add support for moxie-*-rtems* target.
4001
4002 2013-02-25 Pedro Alves <palves@redhat.com>
4003
4004 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
4005 warning text.
4006
4007 2013-02-24 Maciej W. Rozycki <macro@codesourcery.com>
4008
4009 * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
4010 if $fp is used as the virtual frame pointer.
4011
4012 2013-02-23 Alan Modra <amodra@gmail.com>
4013
4014 * elfread.c (elf_symtab_read): Do not use udata.p here to find
4015 symbol size.
4016 * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
4017 * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
4018 * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
4019 * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
4020
4021 2013-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
4022
4023 Code cleanup.
4024 * elfread.c (build_id_bfd_get): Make the return type const.
4025 (build_id_verify): Make the check parameter const.
4026 (build_id_to_debug_filename): Make the build_id parameter and variable
4027 data const.
4028 (find_separate_debug_file_by_buildid): Make the variable build_id const.
4029
4030 2013-02-21 Alan Modra <amodra@gmail.com>
4031
4032 * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
4033
4034 2013-02-20 Siva Chandra Reddy <sivachandra@google.com>
4035
4036 Add a new method 'disassemble' to gdb.Architecture class.
4037 * python/py-arch.c (archpy_disassmble): Implementation of the
4038 new method gdb.Architecture.disassemble.
4039 (arch_object_methods): Add entry for the new method.
4040
4041 2013-02-20 Jiong Wang <jiwang@tilera.com>
4042
4043 * MAINTAINERS (Write After Approval): Add myself to the list.
4044
4045 2013-02-19 Pedro Alves <palves@redhat.com>
4046
4047 Garbage collect 'struct monitor_ops'::load_routine.
4048
4049 * monitor.h (struct monitor_ops) <load_routine>: Remove field.
4050 * monitor.c (monitor_load): No longer call
4051 current_monitor->load_routine.
4052 * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
4053 * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
4054 * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
4055
4056 2013-02-19 Pedro Alves <palves@redhat.com>
4057
4058 PR gdb/15161
4059
4060 Harmonize with generic_load.
4061
4062 * monitor.c: Include "readline/readline.h".
4063 (monitor_load): Rename parameter 'file' to 'args'. Use build_argv
4064 instead of sscanf. Use CORE_ADDR/strtoulst instead of unsigned
4065 long/strtol for the 'load_offset' local. Error out if no argument
4066 is given or if too many arguments are given. Tilde expand the
4067 passed in file name.
4068
4069 2013-02-19 Kai Tietz <ktietz@redhat.com>
4070
4071 PR gdb/15161
4072 * symfile.c (load_section_data): Change type of load_offset
4073 to CORE_ADDR.
4074 (generic_load): User strtoulst instead of strtoul for conversion
4075 of load_offset.
4076
4077 2013-02-19 Jiong Wang <jiwang@tilera.com>
4078
4079 * tilegx-tdep.c (tilegx_analyze_prologue): add check for
4080 for return address, "lr" register, saved on stack.
4081 * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
4082 after we invoke tilegx_analyze_prologue.
4083
4084 2013-02-19 Jiong Wang <jiwang@tilera.com>
4085
4086 * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
4087
4088 2013-02-19 Jiong Wang <jiwang@tilera.com>
4089
4090 * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
4091
4092 2013-02-19 Jiong Wang <jiwang@tilera.com>
4093
4094 * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
4095 (tilegx_write_pc): New function.
4096 (tilegx_cannot_reference_register): Return zero if REGNO
4097 is TILEGX_FAULTNUM_REGNUM.
4098 (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
4099 (tilegx_register_name): Add handling of "faultnum" register.
4100 * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
4101 * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
4102 handling of TILEGX_FAULTNUM_REGNUM.
4103 * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
4104
4105 2013-02-19 Jiong Wang <jiwang@tilera.com>
4106
4107 * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
4108 should be aligned to 64bit.
4109
4110 2013-02-19 Kai Tietz <ktietz@redhat.com>
4111
4112 * windows-nat.c (windows_xfer_memory): Fix debug-output
4113 for LLP64.
4114
4115 2013-02-19 Lei Liu <lei.liu2@windriver.com>
4116
4117 * mips-linux-nat.c (mips64_linux_regsets_store_registers):
4118 Don't check DSP register number if HAVE_DSP is not set.
4119
4120 2013-02-19 Alan Modra <amodra@gmail.com>
4121
4122 * elfread.c (struct build_id): Delete. Use struct elf_build_id
4123 throughout file instead.
4124 (build_id_bfd_get): Update to use new elf_tdata build_id field.
4125 Don't xmalloc return value.
4126 (build_id_verify): Similarly. Don't xfree.
4127 (build_id_to_debug_filename): Update.
4128 (find_separate_debug_file_by_buildid): Update, don't xfree.
4129
4130 2013-02-18 Tom Tromey <tromey@redhat.com>
4131
4132 PR gdb/15102:
4133 * dwarf2read.c (read_subrange_type): Use result of
4134 'check_typedef'.
4135
4136 2013-02-16 Yuanhui Zhang <asmwarrior@gmail.com>
4137
4138 * frame.c: Remove one extra white space after #include
4139 directive.
4140
4141 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
4142
4143 * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
4144
4145 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
4146
4147 * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
4148 and dir commands into an if block.
4149
4150 2013-02-15 Sanimir Agovic <sanimir.agovic@intel.com>
4151
4152 * python/py-breakpoint (struct pybp_code): Use int instead of
4153 enum type_code.
4154
4155 2013-02-15 Pedro Alves <pedro@codesourcery.com>
4156 Hafiz Abid Qadeer <abidh@codesourcery.com>
4157
4158 * NEWS: Mention new field "trace-file".
4159 * tracepoint.c (trace_status_mi): Output "trace-file" field.
4160 (tfile_open): Record the trace file's filename in the trace
4161 status.
4162 (tfile_files_info): Mention the name of the trace file.
4163 Check the "filename" field explicitely.
4164 (trace_status_command): Explicitely check "filename" field.
4165 (trace_find_command): Ditto.
4166 (trace_find_pc_command): Ditto.
4167 (trace_find_tracepoint_command): Ditto.
4168 (trace_find_line_command): Ditto.
4169 (trace_find_range_command): Ditto.
4170 (trace_find_outside_command): Ditto.
4171 * tracepoint.h (struct trace_status) <from_file>: Rename it
4172 to "filename" and make it hold the trace file's filename
4173 instead of a boolean.
4174 * remote.c (remote_get_trace_status): Initialize "filename"
4175 field with NULL instead of 0.
4176
4177 2013-02-15 Yao Qi <yao@codesourcery.com>
4178
4179 * remote.c: Fix a typo.
4180
4181 2013-02-14 Pierre Muller <muller@sourceware.org>
4182
4183 * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
4184
4185 2013-02-14 Pedro Alves <palves@redhat.com>
4186
4187 * utils.c (savestring): Don't #undef it. Move function to
4188 common/common-utils.c.
4189 * common/common-utils.c: Include gdb_string.h.
4190 (savestring): Move here from utils.c.
4191 * common/common-utils.h (savestring): Declare.
4192
4193 2013-02-14 Pedro Alves <palves@redhat.com>
4194
4195 * utils.c (savestring): Rename parameter 'size' to 'len'.
4196
4197 2013-02-14 Pedro Alves <palves@redhat.com>
4198 Yufeng Zhang <yufeng.zhang@arm.com>
4199
4200 * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
4201 (aarch64_inferior_data, struct aarch64_inferior_data):
4202 Delete.
4203 (struct aarch64_process_info): New.
4204 (aarch64_process_list): New global.
4205 (aarch64_find_process_pid, aarch64_add_process)
4206 (aarch64_process_info_get): New functions.
4207 (aarch64_inferior_data_get): Delete.
4208 (aarch64_process_info_get): New function.
4209 (aarch64_forget_process): New function.
4210 (aarch64_get_debug_reg_state): New parameter 'pid'. Reimplement.
4211 (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
4212 aarch64_get_debug_reg_state.
4213 (aarch64_notify_debug_reg_change): Use iterate_over_lwps
4214 instead of linux_nat_iterate_watchpoint_lwps.
4215 (aarch64_linux_new_fork): New function.
4216 (aarch64_linux_child_post_startup_inferior): Use
4217 aarch64_forget_process instead of aarch64_init_debug_reg_state.
4218 (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
4219 (aarch64_linux_remove_hw_breakpoint)
4220 (aarch64_handle_aligned_watchpoint)
4221 (aarch64_handle_unaligned_watchpoint)
4222 (aarch64_linux_insert_watchpoint)
4223 (aarch64_linux_remove_watchpoint)
4224 (aarch64_linux_stopped_data_address): Adjust to pass the current
4225 process id to aarch64_debug_reg_state.
4226 (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
4227 linux_nat_new_fork hook, and aarch64_forget_process as
4228 linux_nat_forget_process hook; remove the call to
4229 register_inferior_data_with_cleanup.
4230
4231 2013-02-14 Pedro Alves <palves@redhat.com>
4232
4233 * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
4234 EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
4235 lval_memory.
4236
4237 2013-02-14 Pedro Alves <pedro@codesourcery.com>
4238 Hafiz Abid Qadeer <abidh@codesourcery.com>
4239
4240 * tracepoint.h (validate_trace_state_variable_name): Declare.
4241 * tracepoint.c (validate_trace_state_variable_name): New.
4242 (trace_variable_command): Parse the trace state variable's name
4243 without using parse_expression. Do several validations.
4244 * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
4245 trace state variable's name with parse_expression. Validate it.
4246
4247 2013-02-14 Yao Qi <yao@codesourcery.com>
4248
4249 * infcmd.c (breakpoint_proceeded): Remove it.
4250
4251 2013-02-14 Yao Qi <yao@codesourcery.com>
4252
4253 * tracepoint.c (end_actions_pseudocommand): Make it static.
4254 (while_stepping_pseudocommand): Likewise.
4255 * tracepoint.h (end_actions_pseudocommand): Remove the
4256 declaration.
4257 (while_stepping_pseudocommand): Likewise.
4258
4259 2013-02-14 Yao Qi <yao@codesourcery.com>
4260
4261 * cli/cli-decode.c (help_cmd): Remove the declaration of
4262 "cmdlist".
4263 (help_all): Likewise.
4264
4265 2013-02-13 Pedro Alves <palves@redhat.com>
4266
4267 * amd64-linux-nat.c (update_debug_registers_callback):
4268 Update comment.
4269 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
4270 iterate_over_lwps.
4271 (amd64_linux_prepare_to_resume): Pass the lwp's pid to
4272 i386_debug_reg_state.
4273 (amd64_linux_new_fork): New function.
4274 (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
4275 linux_nat_new_fork hook, and i386_forget_process as
4276 linux_nat_forget_process hook.
4277 * i386-linux-nat.c (update_debug_registers_callback):
4278 Update comment.
4279 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
4280 iterate_over_lwps.
4281 (i386_linux_prepare_to_resume): Pass the lwp's pid to
4282 i386_debug_reg_state.
4283 (i386_linux_new_fork): New function.
4284 (_initialize_i386_linux_nat): Install i386_linux_new_fork as
4285 linux_nat_new_fork hook, and i386_forget_process as
4286 linux_nat_forget_process hook.
4287 * i386-nat.c (i386_init_dregs): Delete.
4288 (i386_inferior_data, struct i386_inferior_data):
4289 Delete.
4290 (struct i386_process_info): New.
4291 (i386_process_list): New global.
4292 (i386_find_process_pid, i386_add_process, i386_process_info_get):
4293 New functions.
4294 (i386_inferior_data_get): Delete.
4295 (i386_process_info_get): New function.
4296 (i386_debug_reg_state): New parameter 'pid'. Reimplement.
4297 (i386_forget_process): New function.
4298 (i386_cleanup_dregs): Rewrite.
4299 (i386_update_inferior_debug_regs, i386_insert_watchpoint)
4300 (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
4301 (i386_stopped_data_address, i386_insert_hw_breakpoint)
4302 (i386_remove_hw_breakpoint): Adjust to pass the current process id
4303 to i386_debug_reg_state.
4304 (i386_use_watchpoints): Don't register inferior data.
4305 * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
4306 adjust comment.
4307 (i386_forget_process): Declare.
4308 * linux-fork.c (delete_fork): Call linux_nat_forget_process.
4309 * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
4310 New static globals.
4311 (linux_child_follow_fork): Don't call linux_nat_new_thread here.
4312 (add_initial_lwp): New, factored out from ...
4313 (add_lwp): ... this. Don't check the number of lwps before
4314 calling linux_nat_new_thread.
4315 (linux_nat_iterate_watchpoint_lwps): Delete.
4316 (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
4317 (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
4318 forks and vforks.
4319 (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
4320 initial lwp.
4321 (linux_nat_kill, linux_nat_mourn_inferior): Call
4322 linux_nat_forget_process.
4323 (linux_nat_set_new_fork, linux_nat_set_forget_process)
4324 (linux_nat_forget_process): New functions.
4325 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
4326 type.
4327 (linux_nat_iterate_watchpoint_lwps): Delete declaration.
4328 (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
4329 types.
4330 (linux_nat_set_new_fork, linux_nat_set_forget_process)
4331 (linux_nat_forget_process): New declarations.
4332
4333 * amd64fbsd-nat.c (super_mourn_inferior): New global.
4334 (amd64fbsd_mourn_inferior): New function.
4335 (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
4336 * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
4337
4338 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
4339
4340 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
4341 Adding _().
4342
4343 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
4344
4345 * aarch64-linux-nat.c (debug_reg_change_callback)
4346 (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
4347 %s and phex().
4348
4349 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
4350
4351 * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
4352 with LONGEST.
4353
4354 2013-02-13 Pedro Alves <palves@redhat.com>
4355 Hafiz Abid Qadeer <abidh@codesourcery.com>
4356
4357 * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
4358
4359 2013-02-12 Tom Tromey <tromey@redhat.com>
4360
4361 PR symtab/11464:
4362 * c-exp.y (lex_one_token): Initialize other fields of yylval on
4363 NAME return.
4364 (classify_inner_name): Remove 'first_name' argument, add
4365 'context'. Remove unused variable.
4366 (yylex): Explicitly maintain the context type. Exit loop earlier
4367 if NAME result is seen.
4368
4369 2013-02-12 Pedro Alves <palves@redhat.com>
4370
4371 * amd64-darwin-tdep.c: Add (C) after Copyright.
4372 * cli/cli-cmds.h: Ditto.
4373 * cli/cli-decode.c: Ditto.
4374 * cli/cli-decode.h: Ditto.
4375 * cli/cli-dump.c: Ditto.
4376 * cli/cli-dump.h: Ditto.
4377 * cli/cli-interp.c: Ditto.
4378 * cli/cli-logging.c: Ditto.
4379 * cli/cli-script.c: Ditto.
4380 * cli/cli-script.h: Ditto.
4381 * cli/cli-setshow.c: Ditto.
4382 * cli/cli-setshow.h: Ditto.
4383 * cli/cli-utils.c: Ditto.
4384 * cli/cli-utils.h: Ditto.
4385 * config/alpha/nm-osf3.h: Ditto.
4386 * config/djgpp/djconfig.sh: Ditto.
4387 * config/i386/nm-fbsd.h: Ditto.
4388 * config/i386/nm-i386gnu.h: Ditto.
4389 * config/nm-linux.h: Ditto.
4390 * config/nm-nto.h: Ditto.
4391 * config/rs6000/nm-rs6000.h: Ditto.
4392 * config/sparc/nm-sol2.h: Ditto.
4393 * darwin-nat-info.c: Ditto.
4394 * dfp.c: Ditto.
4395 * dfp.h: Ditto.
4396 * gdb-demangle.h: Ditto.
4397 * i386-darwin-nat.c: Ditto.
4398 * i386-darwin-tdep.c: Ditto.
4399 * linux-fork.h: Ditto.
4400 * m32c-tdep.c: Ditto.
4401 * microblaze-linux-tdep.c: Ditto.
4402 * microblaze-rom.c: Ditto.
4403 * microblaze-tdep.c: Ditto.
4404 * microblaze-tdep.h: Ditto.
4405 * mips-linux-tdep.h: Ditto.
4406 * ppc-ravenscar-thread.c: Ditto.
4407 * ppc-ravenscar-thread.h: Ditto.
4408 * prologue-value.c: Ditto.
4409 * prologue-value.h: Ditto.
4410 * ravenscar-thread.c: Ditto.
4411 * ravenscar-thread.h: Ditto.
4412 * sparc-ravenscar-thread.c: Ditto.
4413 * sparc-ravenscar-thread.h: Ditto.
4414 * tilegx-linux-tdep.c: Ditto.
4415 * unwind_stop_reasons.def: Ditto.
4416 * windows-nat.h: Ditto.
4417 * xtensa-linux-tdep.c: Ditto.
4418 * xtensa-xtregs.c: Ditto.
4419 * regformats/regdat.sh: Ditto.
4420 * regformats/regdef.h: Ditto.
4421
4422 2013-02-12 Pedro Alves <palves@redhat.com>
4423
4424 * break-catch-sig.c: Update copyright years.
4425
4426 2013-02-11 Siva Chandra Reddy <sivachandra@google.com>
4427
4428 Add support for a destructor for ui_out data and use it to
4429 provide a ui_out destructor.
4430 * ui-out.h: Declare the new ui_out destructor.
4431 (ui_out_impl): Add a field for data destructor in ui_out_impl.
4432 * ui-out.c (default_data_destroy): Add a default data destructor
4433 which does nothing.
4434 (default_ui_out_impl): Set the new data_destroy field to
4435 default_data_destroy
4436 (uo_data_destroy): Local function which invokes the data
4437 destructor if present.
4438 (clear_table): Local function which clears the table data of a
4439 ui_out object.
4440 (ui_out_destroy): Public function which frees a ui_out object.
4441 (ui_out_table_end): Use the new clear_table function.
4442 * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
4443 NULL.
4444 * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
4445 to NULL.
4446
4447 2013-02-11 Doug Evans <dje@google.com>
4448
4449 * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
4450 (printf_decfloat): New function. Broken out from ui_printf.
4451 Remove unnecessary code to shift the entire format string down.
4452 (printf_pointer): New function.
4453 (ui_printf): Code to print C strings, wide C strings, decfloats,
4454 and pointers moved to separate functions.
4455
4456 2013-02-11 Sergio Durigan Junior <sergiodj@redhat.com>
4457
4458 * valops.c (value_assign): Handling bitfield offset in
4459 `lval_internalvar_component' case.
4460
4461 2013-02-08 Doug Evans <dje@google.com>
4462
4463 * common/format.c (parse_format_string): Fix whitespace.
4464
4465 2013-02-08 Matthew Gretton-Dann <matthew.gretton-dann@linaro.org>
4466
4467 * stack.c (return_command): Work around uninitialized variable
4468 warning.
4469
4470 2013-02-08 Yufeng Zhang <yufeng.zhang@arm.com>
4471
4472 * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
4473 number of the registers from 36 to 34.
4474
4475 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
4476
4477 * NEWS: Mention new AArch64 native and target support.
4478
4479 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
4480
4481 * MAINTAINERS (Write After Approval): Add myself.
4482
4483 2013-02-08 Jim MacArthur <jim.macarthur@arm.com>
4484 Marcus Shawcroft <marcus.shawcroft@arm.com>
4485 Nigel Stephens <nigel.stephens@arm.com>
4486 Yufeng Zhang <yufeng.zhang@arm.com>
4487
4488 * aarch64-linux-nat.c: New file.
4489 * config/aarch64/linux.mh: New file.
4490 * configure.host: Add AArch64.
4491 * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
4492
4493 2013-02-07 Doug Evans <dje@google.com>
4494
4495 * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
4496 disassemble command.
4497
4498 2013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
4499
4500 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
4501 set_gdbarch_fetch_tls_load_module_address.
4502
4503 2013-02-06 David S. Miller <davem@davemloft.net>
4504
4505 * sparc-tdep.c (sparc32_return_value): Handle writing return value when
4506 using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
4507 * value.c (struct_return_convention): New function.
4508 (using_struct_return): Implement in terms of struct_return_convention.
4509 * value.h (struct_return_convention): Declare.
4510 * stack.c (return_command): Allow successful overriding of the return
4511 value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
4512
4513 2013-02-06 Tom Tromey <tromey@redhat.com>
4514
4515 * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
4516 outside of TRY_CATCH.
4517
4518 2013-02-06 Yao Qi <yao@codesourcery.com>
4519
4520 * mi/mi-interp.c: Include "tracepoint.h".
4521 (mi_tsv_modified): Declare.
4522 (mi_tsv_created, mi_tsv_deleted): Update declaration.
4523 (mi_interpreter_init): Call observer_attach_tsv_modified.
4524 (mi_tsv_modified): New.
4525 (mi_tsv_created, mi_tsv_deleted): Update.
4526 * tracepoint.c (trace_variable_command): Call
4527 observer_notify_tsv_modified if the initial value of tsv is
4528 changed.
4529 (delete_trace_state_variable): Call
4530 observer_notify_tsv_deleted earlier.
4531 (trace_variable_command): Caller update.
4532 (create_tsv_from_upload): Likewise.
4533 * observer.sh: Declare "struct trace_state_variable".
4534
4535 * NEWS: Mention the new MI notification "=tsv-modified".
4536
4537 2013-02-05 Doug Evans <dje@google.com>
4538
4539 * completer.c (location_completer): Fix typo in comment.
4540
4541 2013-02-05 Jan Kratochvil <jan.kratochvil@redhat.com>
4542
4543 * breakpoint.c (add_location_to_breakpoint): Insert the location with
4544 ADDRESS sorted.
4545
4546 2013-02-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
4547
4548 * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
4549 Refactor if statement to avoid trailing || operator.
4550
4551 2013-02-05 Andreas Tobler <andreast@fgznet.ch>
4552
4553 * NEWS: Add PowerPC FreeBSD as a new native configuration.
4554
4555 2013-02-04 Andreas Tobler <andreast@fgznet.ch>
4556
4557 * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
4558 * configure.host: Add powerpc*-*-freebsd* target.
4559 * configure.tgt: Add target info for powerpc*-*-freebsd*.
4560 * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
4561 * config/powerpc/fbsd.mh: New file.
4562
4563 2013-02-04 Sergio Durigan Junior <sergiodj@redhat.com>
4564 Denys Vlasenko <dvlasenk@redhat.com>
4565 Pedro Alves <palves@redhat.com>
4566
4567 * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
4568 (struct elf_internal_linux_prpsinfo): Forward declare.
4569 * gdbarch.h, gdbarch.c: Regenerate.
4570 * linux-tdep.c: Include `cli/cli-utils.h'.
4571 (linux_fill_prpsinfo): New function.
4572 (linux_make_corefile_notes): Use linux_fill_prpsinfo. If there's
4573 an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
4574 elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
4575 depending on gdbarch pointer bitness.
4576 * ppc-linux-tdep.c: Include elf-bfd.h.
4577 (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
4578 on 32-bit.
4579
4580 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
4581 Marcus Shawcroft <marcus.shawcroft@arm.com>
4582 Nigel Stephens <nigel.stephens@arm.com>
4583 Yufeng Zhang <yufeng.zhang@arm.com>
4584
4585 * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
4586
4587 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
4588 Marcus Shawcroft <marcus.shawcroft@arm.com>
4589 Nigel Stephens <nigel.stephens@arm.com>
4590 Yufeng Zhang <yufeng.zhang@arm.com>
4591
4592 * aarch64-newlib-tdep.c: New file.
4593 * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
4594 aarch64*-*-elf.
4595 * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
4596 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
4597 (ALLDEPFILES): Add aarch64-newlib-tdep.c.
4598 * osabi.c (gdb_osabi_names): Add "Newlib".
4599
4600 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
4601 Marcus Shawcroft <marcus.shawcroft@arm.com>
4602 Nigel Stephens <nigel.stephens@arm.com>
4603 Yufeng Zhang <yufeng.zhang@arm.com>
4604
4605 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
4606 (ALLDEPFILES): Add aarch64-linux-tdep.c.
4607 * aarch64-linux-tdep.c: New file.
4608 * aarch64-linux-tdep.h: New file.
4609 * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
4610 * configure.tgt: Add aarch64-none-linux-gnu.
4611
4612 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
4613 Marcus Shawcroft <marcus.shawcroft@arm.com>
4614 Nigel Stephens <nigel.stephens@arm.com>
4615 Yufeng Zhang <yufeng.zhang@arm.com>
4616
4617 * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
4618 (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
4619 (ALLDEPFILES): Add aarch64-tdep.c.
4620 * aarch64-tdep.c: New file.
4621 * aarch64-tdep.h: New file.
4622 * configure.tgt: Add AArch64.
4623 * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
4624 (aarch64-expedite): New definition.
4625 * features/aarch64-core.xml: New file.
4626 * features/aarch64-fpu.xml: New file.
4627 * features/aarch64-without-fpu.c: New file (generated).
4628 * features/aarch64-without-fpu.xml: New file.
4629 * features/aarch64.c: New file (generated).
4630 * features/aarch64.xml: New file.
4631 * regformats/aarch64-without-fpu.dat: New file (generated).
4632 * regformats/aarch64.dat: New file (generated).
4633
4634 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4635
4636 * contrib/expect-read1.c: New file.
4637 * contrib/expect-read1.sh: New file.
4638
4639 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4640
4641 * dwarf2read.c (file_file_name): New function with code from
4642 file_full_name.
4643 (file_full_name): Move most of the code to file_file_name.
4644 (macro_start_file): Rename variable full_name to file_name and use
4645 file_file_name for it. Add comp_dir parameter to new_macro_table.
4646 * macrocmd.c (show_pp_source_pos): New variable fullname. Replace any
4647 macro_source_file->filename access by macro_source_fullname call.
4648 * macroscope.c (_initialize_macroscope): Update the new_macro_table
4649 caller.
4650 * macrotab.c (struct macro_table): New field comp_dir.
4651 (macro_include): New variables link_fullname and source_fullname.
4652 Replace any macro_source_file->filename access by macro_source_fullname
4653 call.
4654 (macro_lookup_inclusion): Remove the partial filenames checking code.
4655 (check_for_redefinition): New variables source_fullname and
4656 found_key_fullname. Replace any macro_source_file->filename access by
4657 macro_source_fullname call.
4658 (macro_undef): New variables source_fullname and key_fullname. Replace
4659 any macro_source_file->filename access by macro_source_fullname call.
4660 (macro_lookup_definition): New variables retval and source_fullname.
4661 Replace any macro_source_file->filename access by macro_source_fullname
4662 call.
4663 (foreach_macro): New variable key_fullname. Replace any
4664 macro_source_file->filename access by macro_source_fullname call.
4665 (foreach_macro_in_scope): New variable datum_fullname. Replace any
4666 macro_source_file->filename access by macro_source_fullname call.
4667 (new_macro_table): Add parameter comp_dir. Initialize T with it.
4668 (macro_source_fullname): New function.
4669 * macrotab.h (struct macro_source_file): Extent the filename field
4670 comment.
4671 (new_macro_table): New parameter comp_dir, add a comment for it.
4672 (macro_source_fullname): new declaration.
4673
4674 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4675
4676 * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
4677 this_real_name to outer block. Use it also for
4678 compare_filenames_for_search.
4679 (dw2_expand_symtabs_matching): New variable this_real_name. Use it
4680 with dw2_get_real_path for file_matcher, considering also
4681 BASENAMES_MAY_DIFFER.
4682 (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
4683
4684 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4685
4686 * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
4687 to the file_matcher parameter. Pass 0 to it.
4688 (dwarf2_create_include_psymtab): Copy also DIRNAME.
4689 * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
4690 NULL psymtab_to_fullname result.
4691 (psymtab_to_fullname): Remove variable r. Never return NULL, assemble
4692 an expected filename instead.
4693 (expand_symtabs_matching_via_partial): Add basenames parameter to the
4694 file_matcher parameter. Call also psymtab_to_fullname, after newly
4695 considering BASENAMES_MAY_DIFFER.
4696 * source.c (rewrite_source_path): Remove static.
4697 * source.h (rewrite_source_path): New declaration.
4698 * symfile.h (struct quick_symbol_functions): Add basenames parameter to
4699 the expand_symtabs_matching field. Comment it.
4700 * symtab.c (file_matches): New function comment. Add parameter
4701 basenames, implement it.
4702 (search_symbols_file_matches): Add basenames parameter. Update the
4703 file_matches caller.
4704 (search_symbols): Match FILES also against symtab_to_fullname.
4705 Optimize it for BASENAMES_MAY_DIFFER.
4706
4707 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4708
4709 * source.c (print_source_lines_base): Print for TUI also "fullname".
4710 * tui/tui-data.c (init_content_element): Change tui_locator_element
4711 field to full_name.
4712 * tui/tui-data.h (struct tui_locator_element): Likewise.
4713 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
4714 tui_update_locator_filename calls to tui_update_locator_fullname.
4715 Replace symtab->filename refererence by symtab_to_fullname call.
4716 * tui/tui-out.c (tui_field_string): Check for "fullname" now.
4717 * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
4718 field to full_name. Replace symtab->filename refererence by
4719 symtab_to_fullname call.
4720 (tui_show_symtab_source): Rename parameter to fullname. Change
4721 tui_locator_element field to full_name.
4722 * tui/tui-stack.c: Include source.h.
4723 (tui_set_locator_filename): Rename the declaration to ...
4724 (tui_set_locator_fullname): ... here. Rename its parameter to
4725 fullname, updates its comment.
4726 (tui_set_locator_info): Rename its parameter to fullname.
4727 (tui_set_locator_filename): Rename the definition to ...
4728 (tui_set_locator_fullname): ... here. Rename its parameter to
4729 fullname, updates its comment. Change tui_locator_element field to
4730 full_name.
4731 (tui_set_locator_info): Rename its parameter to fullname.
4732 (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
4733 (tui_update_locator_filename): Rename to ...
4734 (tui_update_locator_fullname): ... here. Rename callee to
4735 tui_set_locator_fullname.
4736 (tui_show_frame_info): Replace symtab->filename refererence by
4737 symtab_to_fullname call.
4738 * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
4739 (tui_update_locator_fullname): ... here.
4740 * tui/tui-winsource.c (tui_display_main): Rename the callee to
4741 tui_update_locator_fullname. Replace symtab->filename refererence by
4742 symtab_to_fullname call.
4743 * tui/tui.c (tui_show_source): Rename its parameter to fullname.
4744 Rename the callee to tui_update_locator_fullname.
4745 * tui/tui.h (tui_show_source): Rename its parameter to fullname.
4746
4747 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4748
4749 * ada-lang.c (user_select_syms): Replace symtab->filename refererences
4750 by symtab_to_filename_for_display calls.
4751 * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
4752 (clear_command): New variable sal_fullname, initialize it. Replace
4753 compare_filenames_for_search by filename_cmp with sal_fullname.
4754 (say_where, update_static_tracepoint): Replace symtab->filename
4755 refererences by symtab_to_filename_for_display calls.
4756 * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
4757 Likewise.
4758 * dwarf2read.c: Include source.h.
4759 (fixup_go_packaging): Replace symtab->filename refererences by
4760 symtab_to_filename_for_display calls.
4761 * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
4762 Replace symtab->filename refererences by symtab_to_filename_for_display
4763 calls.
4764 (create_sals_line_offset, convert_linespec_to_sals): New variable
4765 fullname, initialize it, replace symtab->filename reference by the
4766 variable.
4767 * linux-fork.c: Include source.h.
4768 (info_checkpoints_command): Replace symtab->filename refererences by
4769 symtab_to_filename_for_display calls.
4770 * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
4771 by symtab_to_filename_for_display calls.
4772 * mdebugread.c: Include source.h.
4773 (psymtab_to_symtab_1): Replace symtab->filename refererences by
4774 symtab_to_filename_for_display calls.
4775 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
4776 (mi_cmd_file_list_exec_source_files): Likewise.
4777 * printcmd.c: Include source.h.
4778 (build_address_symbolic): Replace symtab->filename refererences by
4779 symtab_to_filename_for_display calls.
4780 * psymtab.c (partial_map_symtabs_matching_filename)
4781 (read_psymtabs_with_fullname): Call compare_filenames_for_search also
4782 with psymtab_to_fullname.
4783 * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
4784 by symtab_to_filename_for_display calls.
4785 (stpy_get_filename): New variable filename, initialize it, use instead
4786 of symtab->filename refererences.
4787 (salpy_str): Make variable filename const char *. Replace
4788 symtab->filename refererences by symtab_to_filename_for_display calls.
4789 * skip.c: Include source.h and filenames.h.
4790 (skip_file_command): Remove const from the symtab variable. Replace
4791 symtab->filename refererences by symtab_to_fullname call.
4792 (function_name_is_marked_for_skip): New variables searched_for_fullname
4793 and fullname. Use them to search also with symtab's fullname.
4794 * source.c (find_source_lines): Replace symtab->filename refererences
4795 by symtab_to_filename_for_display calls.
4796 (print_source_lines_base): New variable filename, use it instead of
4797 symtab->filename. Replace symtab->filename refererences by
4798 symtab_to_filename_for_display calls.
4799 (line_info, forward_search_command): Replace symtab->filename
4800 refererences by symtab_to_filename_for_display calls.
4801 (reverse_search_command): Replace symtab->filename refererences by
4802 symtab_to_filename_for_display calls. New variable filename for it.
4803 * stack.c (frame_info): Likewise.
4804 * symmisc.c: Include source.h.
4805 (dump_objfile, dump_symtab_1, maintenance_print_symbols)
4806 (maintenance_info_symtabs): Replace symtab->filename refererences by
4807 symtab_to_filename_for_display calls.
4808 * symtab.c (iterate_over_some_symtabs): Call
4809 compare_filenames_for_search also with symtab_to_fullname.
4810 (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
4811 symtab->filename refererences by symtab_to_filename_for_display calls.
4812 (find_line_symtab): Replace symtab->filename refererences by
4813 symtab_to_filename_for_display calls.
4814 (file_matches): Replace filename_cmp by compare_filenames_for_search.
4815 (print_symbol_info): Make the last parameter const char *. New
4816 variable s_filename. Use it in the function.
4817 (symtab_symbol_info): Make the last_filename variable const char *.
4818 Replace symtab->filename refererences by symtab_to_filename_for_display
4819 calls.
4820 (rbreak_command): New variable fullname. Use it. Replace
4821 symtab->filename refererence by symtab_to_filename_for_display call.
4822 * tracepoint.c (set_traceframe_context, trace_find_line_command)
4823 (print_one_static_tracepoint_marker): Replace symtab->filename
4824 refererences by symtab_to_filename_for_display calls.
4825 * tui/tui-source.c (tui_set_source_content): New variables filename and
4826 s_filename. Replace symtab->filename refererences by this variable.
4827 Replace other symtab->filename refererences by
4828 symtab_to_filename_for_display calls.
4829
4830 2013-02-03 Eldar Gaynetdinov <hal9000ed2k@gmail.com>
4831 Jan Kratochvil <jan.kratochvil@redhat.com>
4832
4833 Add a new variable that controls a way in which filenames are
4834 displayed.
4835 * NEWS (set filename-display): New entry.
4836 * source.c (filename_display_basename, filename_display_relative)
4837 (filename_display_absolute, filename_display_kind_names)
4838 (filename_display_string, show_filename_display_string)
4839 (symtab_to_filename_for_display): New.
4840 (_initialize_source): Added initialization of 'filename-display'
4841 variable.
4842 * source.h (symtab_to_filename_for_display): Added declaration.
4843 * stack.c (print_frame): Added new variable and calling of a new
4844 function and condition with this variable. Changed third argument of
4845 calling of a function.
4846
4847 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4848
4849 * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
4850 Rename field reference filename to fullname.
4851 * tui/tui-data.h (struct tui_source_info): Rename field filename to
4852 fullname. New comment for it.
4853 * tui/tui-source.c (tui_set_source_content): Rename field reference
4854 filename to fullname. Initialize field by symtab_to_fullname now.
4855 * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
4856 reference filename to fullname. Use symtab_to_fullname during
4857 comparison.
4858
4859 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4860
4861 Code cleanup.
4862 * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
4863 (dw2_expand_symtabs_with_fullname): ... here. Rename parameter
4864 filename to fullname. Rename variable this_name to this_fullname.
4865 Lowercase FILENAME_CMP call.
4866 (dw2_find_symbol_file): New comment for the returned string.
4867 (dwarf2_gdb_index_functions): Rename the function to
4868 dw2_expand_symtabs_with_fullname.
4869 * psymtab.c (read_psymtabs_with_filename): Rename to ...
4870 (read_psymtabs_with_fullname): ... here. Rename parameter filename to
4871 fullname.
4872 (psym_functions): Rename the function to read_psymtabs_with_fullname.
4873 * symfile.h (struct quick_symbol_functions): Rename field
4874 expand_symtabs_with_filename to expand_symtabs_with_fullname and its
4875 parameter filename to fullname. Document returned string meaning for
4876 find_symbol_file.
4877 * symtab.c (find_line_symtab): Rename the called function to
4878 expand_symtabs_with_fullname.
4879
4880 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4881
4882 Code cleanup.
4883 * breakpoint.c (clear_command): Remove variable is_abs, unify the
4884 call of filename_cmp with compare_filenames_for_search.
4885 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
4886 is_abs, unify the call of FILENAME_CMP with
4887 compare_filenames_for_search. New gdb_asserts for real_path and name.
4888 Unify the call of compare_filenames_for_search with FILENAME_CMP.
4889 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
4890 * symfile.h (struct quick_symbol_functions): Extend the comment for
4891 map_symtabs_matching_filename.
4892 * symtab.c (compare_filenames_for_search): Remove the function comment
4893 relative path requirement. Handle absolute filenames, with a comment.
4894 (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
4895 FILENAME_CMP with compare_filenames_for_search. New gdb_asserts for
4896 real_path and name. Unify the call of compare_filenames_for_search
4897 with FILENAME_CMP.
4898 (iterate_over_symtabs): New gdb_assert on REAL_PATH.
4899
4900 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4901
4902 Code cleanup.
4903 * breakpoint.c (print_breakpoint_location): Replace bp_location field
4904 source_file references by symtab field references. Remove variables
4905 sal and fullname.
4906 (momentary_breakpoint_from_master, add_location_to_breakpoint):
4907 (clear_command, say_where): Replace bp_location field source_file
4908 references by symtab field references.
4909 (bp_location_dtor): Remove the source_file reference.
4910 (update_static_tracepoint): Replace bp_location field source_file
4911 references by symtab field references.
4912 (breakpoint_free_objfile): New function.
4913 * breakpoint.h (struct bp_location): Extend the comment for line_number.
4914 Replace the field source_file by field symtab, extend its comment.
4915 (breakpoint_free_objfile): New declaration.
4916 * objfiles.c (free_objfile): Call breakpoint_free_objfile.
4917 * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
4918 field source_file references by symtab field references.
4919
4920 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4921
4922 Replace xfullpath calls by gdb_realpath calls.
4923 * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
4924 function comment.
4925 * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
4926 Remove it from the iterate_over_some_symtabs call.
4927 (dw2_map_symtabs_matching_filename): Remove parameter full_path.
4928 Remove it from the dw2_map_expand_apply calls, remove a block handling
4929 it.
4930 * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
4931 Remove it from the iterate_over_some_symtabs call.
4932 (partial_map_symtabs_matching_filename): Remove parameter full_path.
4933 Remove it from the partial_map_expand_apply calls, remove a block
4934 handling it. Drop gdb_realpath call and cleanups from the real_path
4935 handling.
4936 * source.c (openp): Drop the comment part about xfullpath. Replace
4937 xfullpath calls by gdb_realpath calls.
4938 (find_and_open_source): Replace xfullpath call by gdb_realpath call.
4939 * symfile.h (struct quick_symbol_functions): Remove parameter full_path
4940 from method map_symtabs_matching_filename and its comment.
4941 * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
4942 gdb_realpath call.
4943 * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
4944 remove it also from the function comment, remove a block handling it.
4945 Drop gdb_realpath call and cleanups from the real_path handling.
4946 (iterate_over_symtabs): Drop variable full_path and its use.
4947 * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
4948 * utils.c (xfullpath): Remove.
4949 * utils.h (xfullpath): Remove.
4950
4951 2013-02-01 Andreas Tobler <andreast@fgznet.ch>
4952
4953 * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
4954 (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
4955 (ALLDEPFILES): Add ppc64-tdep.c.
4956 * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
4957 ppc64-tdep.o to gdb_target_obs.
4958 * ppc64-tdep.h: New file.
4959 * ppc64-tdep.c: New file.
4960 (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
4961 ppc-linux-tdep.c to here.
4962 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
4963 (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
4964 (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
4965 (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
4966 from ppc-linux-tdep.c to here.
4967 (ppc64_convert_from_func_ptr_addr): Rename from
4968 ppc64_linux_convert_from_func_ptr_addr to
4969 ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
4970 here.
4971 * rs6000-tdep.c:
4972 (read_insn): Move from ppc-linux-tdep.c to here.
4973 (insns_match_pattern, insn_d_field, insn_ds_field): Move
4974 from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
4975 * ppc-linux-tdep.c: Include ppc64-tdep.h.
4976 Removed above functions.
4977 (ppc_linux_init_abi): Adjust.
4978
4979 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
4980
4981 * ada-valprint.c (ada_print_floating): Remove unused 'len'.
4982
4983 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
4984
4985 * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
4986
4987 2013-02-01 Pedro Alves <palves@redhat.com>
4988
4989 * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
4990 * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
4991
4992 2013-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
4993
4994 * elfread.c (elf_symfile_read): Limit separate debug info additions to
4995 files with no separate debug info.
4996 * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
4997 * symfile.c (read_symbols): Call find_separate_debug_file_in_section
4998 only for files with no separate debug info.
4999
5000 2013-01-31 Tom Tromey <tromey@redhat.com>
5001
5002 * jit.c (jit_program_space_data): Rename from jit_inferior_data;
5003 change type.
5004 (struct jit_program_space_data): Rename from jit_inferior_data.
5005 Update comments.
5006 (get_jit_program_space_data): Rename from get_jit_inferior_data.
5007 Change return type. Attach data to program space.
5008 (jit_program_space_data_cleanup): Rename from
5009 jit_inferior_data_cleanup; change argument type.
5010 (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
5011 change type.
5012 (jit_register_code): Update.
5013 (jit_update_inferior_cache): Remove.
5014 (jit_breakpoint_deleted): Get jit data from the location's program
5015 space.
5016 (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
5017 'ps_data', change type.
5018 (jit_inferior_init, jit_breakpoint_re_set_internal)
5019 (jit_event_handler): Update.
5020 (free_objfile_data): Get data from objfile's program space.
5021 (_initialize_jit): Update.
5022
5023 2013-01-31 Tom Tromey <tromey@redhat.com>
5024
5025 PR gdb/13987:
5026 * jit.c (struct jit_inferior_data) <cached_code_address,
5027 jit_breakpoint>: New fields.
5028 (jit_breakpoint_re_set_internal): Fix logging. Only create
5029 breakpoint if cached address has changed.
5030 (jit_update_inferior_cache, jit_breakpoint_deleted): New
5031 functions.
5032 (_initialize_jit): Register breakpoint deleted observer.
5033
5034 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
5035
5036 * infrun.c (handle_syscall_event): Remove unused gdbarch.
5037 (save_infcall_suspend_state): Ifdef out unused inf.
5038 (restore_infcall_suspend_state): Ifdef out unused inf.
5039 * jit.c (jit_register_code): Remove unused i, b, inf_data.
5040 (jit_frame_sniffer): Remove unused inf_data.
5041
5042 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
5043
5044 * c-exp.y (classify_inner_name): Remove unused type.
5045 * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
5046 in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
5047 need_escape.
5048 (c_get_string): Remove unused kind.
5049 * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
5050
5051 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
5052
5053 * charset.c (intermediate_encoding): Remove unused i.
5054 * completer.c (signal_completer): Remove unused i.
5055 * continuations.c (discard_my_continuations_1): Remove unused
5056 continuation_ptr.
5057 * corelow.c (core_close): Remove unuseD name.
5058 (get_core_siginfo): Remove unused pid.
5059 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
5060 i, cps.
5061 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
5062 (loclist_describe_location): Remove unused first.
5063 * event-top.c (command_line_handler): Remove unused got_eof.
5064 * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
5065 (resize_section_table): Remove unused old_value.
5066 * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
5067 * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
5068 * i386-tdep.c (i386_process_record): Remove unused rex.
5069 * infcmd.c (get_return_value): Remove unused uiout.
5070 * jv-lang.c (type_from_class): Remove unused is_array.
5071 * jv-valprint.c (java_val_print): Remove unused i.
5072 * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
5073 * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
5074 * m2-typeprint.c (m2_print_type): Remove unused code.
5075 * macroexp.c (get_character_constant): Remove unused body_start.
5076 (macro_stringify): Remove unused result.
5077 * objc-lang.c (find_methods): Remove unused gdbarch.
5078 * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
5079 * regcache.c (regcache_cooked_read): Remove unused gdbarch.
5080 * stack.c (print_frame_args): Remove unused summary.
5081 * thread.c (thread_apply_command): Remove unused p.
5082 * valarith.c (value_x_unop): Remove unused mangle_ptr.
5083 * valops.c (search_struct_method): Remove unused skip.
5084 * valprint.c (generic_val_print): Remove unused byte_order.
5085 * varobj.c (varobj_update): Remove unused changed.
5086 * cli/cli-cmds.c (complete_command): Remove unused next_item.
5087 (alias_command): Remove unused c.
5088 * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
5089 * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
5090 format.
5091 (mi_cmd_data_write_memory): Remove unused word_format.
5092 (mi_cmd_data_write_memory_bytes): Remove unused r.
5093 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
5094 p_start, p_end.
5095 * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
5096 * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
5097 line_width.
5098
5099 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
5100
5101 * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
5102 * symtab.c (iterate_over_symtabs): Remove unused s.
5103 (find_pc_sect_symtab): Remove unused pspAce.
5104 (find_pc_sect_line): Remove unused alt_symtab.
5105 (find_pcs_for_symtab_line): Remove unused ix, previous_function.
5106 (completion_list_add_name): Remove unused newsize.
5107
5108 2013-01-31 Tom Tromey <tromey@redhat.com>
5109
5110 PR c++/14998:
5111 * dwarf2read.c (read_tag_ptr_to_member_type): Handle
5112 TYPE_CODE_FUNC.
5113
5114 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
5115
5116 * target.c (target_read_string): Remove unused origlen.
5117
5118 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
5119
5120 * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
5121 * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
5122 * ax-general.c (ax_print): Remove unused is_float.
5123 * blockframe.c (block_innermost_frame): Remove unused start, end.
5124 * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
5125
5126 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
5127
5128 * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
5129 (svr4_read_so_list): Remove unused lmo.
5130 * solib-target.c (solib_target_relocate_section_addresses): Remove
5131 unused flags.
5132
5133 2013-01-30 Tom Tromey <tromey@redhat.com>
5134
5135 * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
5136
5137 2013-01-30 Tom Tromey <tromey@redhat.com>
5138
5139 * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
5140 * utils.c (gnu_debuglink_crc32): Remove.
5141 * utils.h (gnu_debuglink_crc32): Don't declare.
5142
5143 2013-01-30 Tom Tromey <tromey@redhat.com>
5144
5145 * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
5146 (read_structure_type, read_enumeration_type): Remove cast.
5147
5148 2013-01-30 Tom Tromey <tromey@redhat.com>
5149
5150 * dwarf2read.c (read_namespace_type): Remove cast.
5151 (read_typedef): Likewise.
5152
5153 2013-01-29 Tom Tromey <tromey@redhat.com>
5154
5155 * dwarf2read.c (free_dwo_file): Remove assert.
5156
5157 2013-01-29 Tom Tromey <tromey@redhat.com>
5158
5159 * value.c (deprecated_set_value_modifiable): Remove.
5160 * value.h (deprecated_set_value_modifiable): Remove.
5161
5162 2013-01-28 Doug Evans <dje@google.com>
5163
5164 * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
5165 to addresses from dwo files.
5166
5167 2013-01-25 Siva Chandra Reddy <sivachandra@google.com>
5168
5169 * valops.c (find_overload_match): Remove unused argument 'lax'.
5170 * value.h: Remove unused argument 'lax' from the declaration of
5171 find_overload_match.
5172 * eval.c (value_subexp_standard): Do not pass a 'lax' argument
5173 to find_overload_match.
5174 * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
5175 argument to find_overload_match.
5176
5177 2013-01-25 Tom Tromey <tromey@redhat.com>
5178
5179 * dwarf2read.c (processing_has_namespace_info): Remove.
5180 (struct dwarf2_cu) <processing_has_namespace_info>: New field.
5181 (process_die, read_func_scope, dwarf2_start_symtab)
5182 (new_symbol_full): Update.
5183
5184 2013-01-25 Tom Tromey <tromey@redhat.com>
5185
5186 * cp-namespace.c (cp_set_block_scope): Remove.
5187 * cp-support.h (cp_set_block_scope): Remove.
5188 * dbxread.c: Include block.h.
5189 (cp_set_block_scope): New function.
5190 (process_one_symbol): Update.
5191 * dwarf2read.c (read_func_scope): Use block_set_scope.
5192
5193 2013-01-25 Pedro Alves <palves@redhat.com>
5194
5195 * remote.c (add_current_inferior_and_thread): Tweak comment.
5196
5197 2013-01-25 Tom Tromey <tromey@redhat.com>
5198
5199 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
5200 (cp_add_using_directive): Add 'copy_names' argument.
5201 * cp-support.h (cp_add_using_directive): Update.
5202 (struct using_direct) <import_src, import_dest, alias,
5203 declaration>: Now const.
5204 * dwarf2read.c (read_import_statement): Use obconcat.
5205 Don't copy names passed to cp_add_using_directive.
5206
5207 2013-01-25 Tom Tromey <tromey@redhat.com>
5208
5209 * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
5210
5211 2013-01-25 Pedro Alves <palves@redhat.com>
5212
5213 * remote.c (stop_reply_extract_thread): New.
5214 (add_current_inferior_and_thread): New parameter 'wait_status'.
5215 Handle it.
5216 (remote_start_remote): Pass wait status to
5217 add_current_inferior_and_thread.
5218 (extended_remote_run): Update comment.
5219 (extended_remote_create_inferior_1): Pass wait status to
5220 add_current_inferior_and_thread.
5221
5222 2013-01-25 Andrew Burgess <aburgess@broadcom.com>
5223 Ulrich Weigand <uweigand@de.ibm.com>
5224
5225 * valarith.c (value_vector_widen): New function for replicating a
5226 scalar into a vector.
5227 (value_binop): Use value_vector_widen to widen scalar to vector
5228 rather than casting, this better matches gcc C behaviour.
5229 * valops.c (value_casst): Update logic for casting between vector
5230 types, and for casting from scalar to vector, try to match gcc C
5231 behaviour.
5232 * value.h (value_vector_widen): Declare.
5233 * opencl-lang.c (opencl_value_cast): New opencl specific casting
5234 function, handle special case for casting scalar to vector.
5235 (opencl_relop): Use opencl_value_cast.
5236 (evaluate_subexp_opencl): Use opencl_value_cast instead of
5237 value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
5238 in order to use opencl_value_cast.
5239
5240 2013-01-25 Yao Qi <yao@codesourcery.com>
5241
5242 * event-loop.c: Include "queue.h".
5243 (gdb_event_p): New typedef.
5244 (DECLARE_QUEUE_P): Use.
5245 (DEFINE_QUEUE_P): Use.
5246 (async_queue_event): Remove.
5247 (gdb_event_xfree): New.
5248 (initialize_event_loop): New.
5249 (process_event): Use QUEUE macros.
5250 (event_queue): Remove.
5251 (gdb_wait_for_event): Caller update.
5252 (check_async_event_handlers): Likewise.
5253 (poll_timers): Likewise.
5254 * event-loop.h (initialize_event_loop): Declare.
5255 * event-loop.c (gdb_event_xfree): New.
5256 * top.c (gdb_init): Call initialize_event_loop.
5257
5258 2013-01-25 Yao Qi <yao@codesourcery.com>
5259
5260 * event-loop.c (async_queue_event): Remove one parameter
5261 'position'. Remove code handling 'position' == TAIL.
5262 (gdb_wait_for_event): Caller update.
5263 (check_async_event_handlers): Caller update.
5264 (poll_timers): Caller update.
5265 * event-loop.h (enum queue_position): Remove.
5266
5267 2013-01-25 Maxim Kuvyrkov <maxim@kugelworks.com>
5268
5269 * MAINTAINERS: Update my email.
5270
5271 2013-01-25 Yao Qi <yao@codesourcery.com>
5272
5273 * main.c (print_gdb_help): Remove "--epoch" from the help
5274 message.
5275
5276 2013-01-24 Ulrich Weigand  <uweigand@de.ibm.com>
5277
5278 * symtab.c (skip_prologue_using_sal): Consider a file
5279 change the same as an increased line number
5280
5281 2013-01-24 Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
5282
5283 * MAINTAINERS (Write After Approval): Add myself to the list.
5284
5285 2013-01-24 Tom Tromey <tromey@redhat.com>
5286
5287 * ada-lang.h (ada_decode_symbol): Make return type const.
5288 * ada-lang.c (ada_decode_symbol): Likewise.
5289
5290 2013-01-23 Doug Evans <dje@google.com>
5291
5292 * linespec.c (find_linespec_symbols): Make static.
5293
5294 2013-01-23 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
5295
5296 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
5297 type on float conversion for complex type.
5298
5299 2013-01-23 Siva Chandra Reddy <sivachandra@google.com>
5300
5301 Add a new class gdb.Architecture which exposes GDB's
5302 internal representation of architecture via GDB Python API.
5303 * Makefile.in: Add entries corresponding to the new file
5304 python/py-arch.c.
5305 * NEWS (Python Scripting): Add entries for the new class
5306 gdb.Architecture and the new method gdb.Frame.architecture.
5307 * python/py-arch.c: Implement gdb.Architecture class.
5308 * python/py-frame.c (frapy_arch): Implement the method
5309 gdb.Frame.architecture().
5310 (frame_object_methods): Add 'architecture' to the method table.
5311 * python/python-internal.h: Add declarations of new utility
5312 functions.
5313 * python/python.c (_initialize_python): Initialize
5314 gdb.Architecture class.
5315
5316 2013-01-23 Doug Evans <dje@google.com>
5317
5318 Work around binutils/15021.
5319 * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
5320 type_unit_group out of union s. All uses updated.
5321 (read_index_from_section): Watch for index version 8.
5322 (follow_die_sig): If using .gdb_index version <= 7, record the TU as
5323 an imported symtab.
5324 (write_psymtabs_to_index): Increment version number to 8.
5325
5326 2013-01-22 Pedro Alves <palves@redhat.com>
5327
5328 * annotate.c (breakpoint_changed): Skip if breakpoint is not
5329 user-visible.
5330
5331 2013-01-22 Pedro Alves <palves@redhat.com>
5332
5333 * annotate.c (annotate_breakpoints_changed): Rename to ...
5334 (annotate_breakpoints_invalid): ... this. Make static.
5335 (breakpoint_changed): Adjust.
5336 (_initialize_annotate): Always install the observers. Install a
5337 "breakpoint_created" observer.
5338 * annotate.h (annotate_breakpoints_changed): Delete declaration.
5339 * breakpoint.c (set_breakpoint_condition)
5340 (breakpoint_set_commands, do_map_commands_command)
5341 (init_raw_breakpoint, clear_command, set_ignore_count)
5342 (enable_breakpoint_disp): No longer call
5343 annotate_breakpoints_changed.
5344
5345 2013-01-22 Pedro Alves <palves@redhat.com>
5346
5347 * annotate.c: Include "inferior.h".
5348 (frames_invalid_emitted)
5349 (breakpoints_invalid_emitted): New globals.
5350 (async_background_execution_p): New function.
5351 (annotate_breakpoints_changed, annotate_frames_invalid): Skip
5352 emitting the annotation if it has already been emitted.
5353 (annotate_display_prompt): New function.
5354 * annotate.h (annotate_display_prompt): New declaration.
5355 * event-top.c: Include annotate.h.
5356 (display_gdb_prompt): Call annotate_display_prompt.
5357
5358 2013-01-22 Pedro Alves <palves@redhat.com>
5359
5360 * annotate.c (ignore_count_changed): Delete.
5361 (annotate_breakpoints_changed): Don't clear ignore_count_changed.
5362 (annotate_ignore_count_change): Delete.
5363 (annotate_stopped): Don't emit a delayed breakpoints-changed
5364 annotation.
5365 * annotate.h (annotate_ignore_count_change): Delete.
5366 * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
5367 annotate_ignore_count_change.
5368
5369 2013-01-22 Tom Tromey <tromey@redhat.com>
5370
5371 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
5372 require_rvalue for a register location.
5373
5374 2013-01-21 Marc Khouzam <marc.khouzam@ericsson.com>
5375
5376 * breakpoint.c (print_one_breakpoint_location): Add MI
5377 field 'thread-groups' when printing a breakpoint.
5378 (output_thread_groups): New function.
5379
5380 2013-01-21 Siva Chandra Reddy <sivachandra@google.com>
5381
5382 * python/lib/gdb/commands/explore.py
5383 (CompoundExplorer.explore_expr): Correct the name of a method
5384 being invoked.
5385 (ExploreTypeCommand.invoke): Add a missing 'return'.
5386
5387 2013-01-21 Tom Tromey <tromey@redhat.com>
5388
5389 * gdb_obstack.h (obconcat): Move declaration here, from...
5390 * symfile.h (obconcat): ... here.
5391 * gdb_obstack.c: New file.
5392 (obconcat): Move from...
5393 * symfile.c (obconcat): ... here.
5394 * Makefile.in (SFILES): Add gdb_obstack.c.
5395 (COMMON_OBS): Add gdb_obstack.o.
5396
5397 2013-01-21 Tom Tromey <tromey@redhat.com>
5398
5399 * symfile.h (obsavestring): Don't declare.
5400 * symfile.c (obsavestring): Remove.
5401 * ada-exp.y: Use obstack_copy0, not obsavestring.
5402 * ada-lang.c: Use obstack_copy0, not obsavestring.
5403 * coffread.c: Use obstack_copy0, not obsavestring.
5404 * cp-namespace.c: Use obstack_copy0, not obsavestring.
5405 * dbxread.c: Use obstack_copy0, not obsavestring.
5406 * dwarf2read.c: Use obstack_copy0, not obsavestring.
5407 * jit.c: Use obstack_copy0, not obsavestring.
5408 * mdebugread.c: Use obstack_copy0, not obsavestring.
5409 * psymtab.c: Use obstack_copy0, not obsavestring.
5410 * stabsread.c: Use obstack_copy0, not obsavestring.
5411 * xcoffread.c: Use obstack_copy0, not obsavestring.
5412
5413 2013-01-21 Tom Tromey <tromey@redhat.com>
5414
5415 * dwarf2read.c (fixup_go_packaging): Save package name
5416 on objfile obstack.
5417 * gdbtypes.c (init_type): Don't copy name.
5418
5419 2013-01-21 Tom Tromey <tromey@redhat.com>
5420
5421 * dwarf2read.c (struct partial_die_info) <name, scope>: Now
5422 const.
5423 (struct attribute) <u.str>: Now const.
5424 (struct fnfieldlist) <name>: Now const.
5425 (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
5426 (partial_die_parent_scope): Make return type const.
5427 (partial_die_full_name, add_partial_symbol): Update.
5428 (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
5429 'name' const.
5430 (find_file_and_directory): Make 'name' and 'comp_dir' const.
5431 (read_file_scope, read_func_scope, dwarf2_add_field)
5432 (dwarf2_add_member_fn, read_structure_type)
5433 (process_enumeration_scope, read_array_type, read_module_type)
5434 (read_base_type, read_subrange_type): Update.
5435 (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
5436 (new_symbol_full, guess_full_die_structure_name): Update.
5437 (dwarf2_canonicalize_name): Return const type. Make 'name' const.
5438 (dwarf2_name): Return const type.
5439 (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
5440 const.
5441
5442 2013-01-21 Tom Tromey <tromey@redhat.com>
5443
5444 * gdbtypes.c (init_type): Make 'name' const.
5445 * gdbtypes.h (init_type): Update.
5446
5447 2013-01-21 Tom Tromey <tromey@redhat.com>
5448
5449 * buildsym.c (patch_subfile_names): Use set_last_source_file.
5450 (start_symtab): Make 'name' and 'dirname' const. Use
5451 set_last_source_file.
5452 (restart_symtab, reset_symtab_globals): Use set_last_source_file.
5453 (last_source_file): Define. Now static.
5454 (set_last_source_file, get_last_source_file): New functions.
5455 * buildsym.h (last_source_file): Don't declare.
5456 (start_symtab): Update.
5457 (set_last_source_file, get_last_source_file): Declare.
5458 * coffread.c (complete_symtab): Use set_last_source_file.
5459 (coff_end_symtab): Likewise.
5460 (coff_symtab_read): Use set_last_source_file, get_last_source_file.
5461 * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
5462 set_last_source_file.
5463 (process_one_symbol): Use get_last_source_file.
5464 * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
5465 (psymtab_to_symtab_1): Use get_last_source_file.
5466 * xcoffread.c (process_linenos): Use get_last_source_file.
5467 (complete_symtab): Use set_last_source_file.
5468 (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
5469 (scan_xcoff_symtab): Use set_last_source_file.
5470
5471 2013-01-21 Tom Tromey <tromey@redhat.com>
5472
5473 * symtab.c (struct demangled_name_entry) <mangled>: Now const.
5474 (symbol_set_names): Remove casts. Handle field const-ness.
5475
5476 2013-01-21 Tom Tromey <tromey@redhat.com>
5477
5478 * dwarf2read.c (new_symbol_full): Remove cast.
5479 * symtab.c (symbol_set_demangled_name): Make 'name' const.
5480 * symtab.h (symbol_set_demangled_name): Update.
5481
5482 2013-01-21 Tom Tromey <tromey@redhat.com>
5483
5484 * main.c (captured_main): Call bfd_init.
5485
5486 2013-01-21 Tom Tromey <tromey@redhat.com>
5487
5488 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
5489 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
5490 * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
5491 * NEWS: Update.
5492
5493 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
5494
5495 * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
5496
5497 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
5498
5499 Fix gdb.fortran/common-block.exp crash in PIE mode.
5500 * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
5501 LOC_COMMON_BLOCK.
5502 * f-valprint.c (info_common_command_for_block): Expect
5503 LOC_COMMON_BLOCK in gdb_assert.
5504 * symtab.h (struct general_symbol_info): Update comment for the
5505 common_block member.
5506 (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
5507 (enum address_class): New member LOC_COMMON_BLOCK.
5508
5509 2013-01-18 David Blaikie <dblaikie@gmail.com>
5510
5511 * MAINTAINERS (Write After Approval): Add "David Blaikie".
5512
5513 2013-01-18 Tom Tromey <tromey@redhat.com>
5514
5515 PR c++/14999:
5516 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
5517 Call require_rvalue.
5518
5519 2013-01-18 Yao Qi <yao@codesourcery.com>
5520
5521 * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
5522 (dbx_read_symtab): New declaration.
5523 (dbx_psymtab_to_symtab): Delete.
5524 (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
5525 Rename parameter PST to SELF. Exchanged two parameters.
5526 (start_psymtab): Caller update.
5527 * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
5528 (dwarf2_read_symtab): New declaration.
5529 (dwarf2_psymtab_to_symtab): Delete.
5530 (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
5531 Rename parameter PST to SELF. Exchanged two parameters.
5532 (create_partial_symtab): Caller update.
5533 * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
5534 (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
5535 Rename parameter PST to SELF. Exchanged two parameters.
5536 (parse_partial_symbols, new_psymtab): Caller update.
5537 * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
5538 two parameters.
5539 * psymtab.c (psymtab_to_symtab): Caller update.
5540 * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
5541 (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
5542 Rename parameter PST to SELF. Exchanged two parameters.
5543 (xcoff_start_psymtab): Caller update.
5544
5545 2013-01-18 Yao Qi <yao@codesourcery.com>
5546
5547 * infrun.c (proceed): Rename local variable 'oneproc' to
5548 'force_step'.
5549
5550 2013-01-17 Doug Evans <dje@google.com>
5551
5552 * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
5553 (dw2_build_type_unit_groups): Delete. All uses updated.
5554
5555 * symtab.h (struct symbol_search): Add comment.
5556
5557 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5558
5559 * symtab.c (compare_filenames_for_search): New comment for
5560 HAS_DRIVE_SPEC.
5561
5562 2013-01-17 Tom Tromey <tromey@redhat.com>
5563
5564 * cp-abi.c (cp_abi_completer): Fix typo in assignment.
5565
5566 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
5567
5568 * symtab.c (iterate_over_some_symtabs): New variable cleanups,
5569 initialize it by existing make_cleanup. Call new do_cleanups.
5570
5571 2013-01-17 Tom Tromey <tromey@redhat.com>
5572
5573 * cp-abi.c (cp_abi_completer): New function.
5574 (_initialize_cp_abi): Set completer for "set cp-abi".
5575
5576 2013-01-17 Tom Tromey <tromey@redhat.com>
5577
5578 * mem-break.c: Remove obsolete comment.
5579 * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
5580
5581 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
5582
5583 * jit.c (jit_reader_load_command): Interpret the jit reader name
5584 as an absolute path if it begins with a forward slash.
5585
5586 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
5587
5588 PR gdb/14550
5589
5590 * jit.c (finalize_symtab): Ensure that only the global block has a
5591 NULL superblock.
5592
5593 2013-01-17 Pedro Alves <palves@redhat.com>
5594
5595 * acinclude.m4: Include ../config/plugins.m4,
5596 ../config/largefile.m4 and ../config/lead-dot.m4. Add comments.
5597 * Makefile.in (aclocal_m4_deps): Update.
5598 * aclocal.m4: Renegerate.
5599
5600 2013-01-16 Doug Evans <dje@google.com>
5601
5602 * contrib/cc-with-tweaks.sh: Add references to Fission docs.
5603
5604 2013-01-16 Pedro Alves <palves@redhat.com>
5605 Tom Tromey <tromey@redhat.com>
5606
5607 PR cli/7221:
5608 * NEWS: Add "catch signal".
5609 * breakpoint.c (base_breakpoint_ops): No longer static.
5610 (bpstat_explains_signal): New function.
5611 (init_catchpoint): No longer static.
5612 (base_breakpoint_explains_signal): New function.
5613 (base_breakpoint_ops): Initialize new field.
5614 * breakpoint.h (enum bpstat_signal_value): New.
5615 (struct breakpoint_ops) <explains_signal>: New field.
5616 (bpstat_explains_signal): Remove macro, declare as function.
5617 (base_breakpoint_ops, init_catchpoint): Declare.
5618 * break-catch-sig.c: New file.
5619 * inferior.h (signal_catch_update): Declare.
5620 * infrun.c (signal_catch): New global.
5621 (handle_syscall_event): Update for change to
5622 bpstat_explains_signal.
5623 (handle_inferior_event): Likewise. Always handle random signals
5624 via bpstats.
5625 (signal_cache_update): Check signal_catch.
5626 (signal_catch_update): New function.
5627 (_initialize_infrun): Initialize signal_catch.
5628 * Makefile.in (SFILES): Add break-catch-sig.c.
5629 (COMMON_OBS): Add break-catch-sig.o.
5630
5631 2013-01-16 Tom Tromey <tromey@redhat.com>
5632
5633 * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
5634 (print_one_catch_solib, print_one_catch_syscall)
5635 (print_one_catch_exec, print_one_exception_catchpoint): Emit
5636 "catch-type".
5637
5638 2013-01-16 Yao Qi <yao@codesourcery.com>
5639
5640 * printcmd.c (current_display_number): Make it static.
5641
5642 2013-01-16 Yao Qi <yao@codesourcery.com>
5643
5644 * infcmd.c (step_once): Don't check '!single_inst' as it was
5645 checked before.
5646
5647 2013-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
5648
5649 * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
5650
5651 2013-01-14 Tom Tromey <tromey@redhat.com>
5652
5653 * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
5654 set command.
5655 * command.h (add_setshow_string_noescape_cmd): Update.
5656 * corefile.c (set_gnutarget_command): Remove trailing whitespace.
5657 (complete_set_gnutarget): New function.
5658 (_initialize_core): Set the "set gnutarget" completer.
5659
5660 2013-01-14 Tom Tromey <tromey@redhat.com>
5661
5662 PR symtab/14442:
5663 * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
5664 (c_type_print_modifier): Likewise.
5665 * dwarf2read.c (read_tag_restrict_type): New function.
5666 (read_type_die_1): Handle DW_TAG_restrict_type.
5667 * gdbtypes.c (make_restrict_type): New function.
5668 (recursive_dump_type): Handle TYPE_RESTRICT.
5669 * gdbtypes.h (enum type_flag_values): Renumber.
5670 (enum type_instance_flag_value): Add
5671 TYPE_INSTANCE_FLAG_RESTRICT.
5672 (TYPE_RESTRICT): New macro.
5673 (make_restrict_type): Declare.
5674
5675 2013-01-14 Tom Tromey <tromey@redhat.com>
5676
5677 PR symtab/14931:
5678 * psymtab.c (struct psymtab_state): New.
5679 (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
5680 functions.
5681 * psympriv.h (make_cleanup_discard_psymtabs): Declare.
5682 * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
5683
5684 2013-01-14 Richard Sharman <richard_sharman@mitel.com>
5685 Pedro Alves <palves@redhat.com>
5686
5687 PR remote/14786
5688
5689 * remote.c (remote_threads_info): Make a copy of the reply from
5690 qfThreadInfo and use that instead of rs->buf.
5691
5692 2013-01-14 Yao Qi <yao@codesourcery.com>
5693
5694 * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
5695 (dbx_psymtab_to_symtab): Likewise.
5696 * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
5697 * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
5698 * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
5699
5700 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
5701
5702 * parse.c (parse_exp_in_context): New variable inner_chain. Call
5703 make_cleanup_restore_current_language. Call set_language. Move
5704 OLD_CHAIN and INNER_CHAIN cleanups.
5705 * utils.c (do_restore_current_language)
5706 (make_cleanup_restore_current_language): New functions.
5707 * utils.h (make_cleanup_restore_current_language): New declaration.
5708
5709 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
5710
5711 * source.c (symtab_to_fullname): Apply rewrite_source_path also for
5712 non-existing files.
5713
5714 * source.c (symtab_to_fullname): Do not prepend DIRNAME for
5715 non-existing files if FILENAME is already absolute.
5716
5717 2013-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
5718
5719 * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
5720 fputs_filtered. Append trailing newline.
5721
5722 2013-01-11 Yao Qi <yao@codesourcery.com>
5723 Stan Shebs <stan@codesourcery.com>
5724
5725 * psymtab.c (init_psymbol_list): Clarify the comment.
5726
5727 2013-01-11 Yao Qi <yao@codesourcery.com>
5728
5729 * breakpoint.c (print_one_breakpoint_location): Remove dead code.
5730 (update_dprintf_command_list): Assert that 'printf_line' is
5731 non-null. Remove condition check.
5732
5733 2013-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
5734
5735 Code cleanup.
5736 * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
5737 type const char *.
5738 * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
5739 const char *.
5740 * tui/tui-source.h (tui_source_is_displayed): Likewise.
5741
5742 2013-01-09 Anthony Green <green@moxielogic.com>
5743
5744 * cp-abi.c (cplus_print_vtable): Don't return value from void
5745 function.
5746 * ada-lang.c (re_set_catch_assert): Ditto.
5747
5748 2013-01-09 Doug Evans <dje@google.com>
5749
5750 * symfile.h (quick_symbol_functions): Delete member
5751 pre_expand_symtabs_matching. All uses removed.
5752 * dwarf2read.c (dw2_lookup_symbol): Implement.
5753 (dw2_do_expand_symtabs_matching): Delete.
5754 (dw2_pre_expand_symtabs_matching): Delete.
5755 (struct dw2_symtab_iterator): New type.
5756 (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
5757 (dw2_expand_symtabs_for_function): Rewrite.
5758 (dwarf2_gdb_index_functions): Update.
5759 * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
5760 (psym_functions): Update.
5761
5762 2013-01-09 Tom Tromey <tromey@redhat.com>
5763
5764 * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
5765 * configure: Rebuild.
5766 * configure.ac: Add somread.o to the build if BFD has SOM
5767 support.
5768 * somread.c: Include som/aout.h, not syms.h.
5769 (som_symtab_read): Use som_external_symbol_dictionary_record.
5770 Unpack records manually.
5771 (_initialize_somread): Declare.
5772
5773 2012-01-08 Mike Frysinger <vapier@gentoo.org>
5774
5775 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
5776 Cast return_address to 64bits.
5777
5778 2013-01-08 Hui Zhu <hui_zhu@mentor.com>
5779
5780 * printcmd.c: Remove define of function output_command.
5781 * tracepoint.c: Remove extern of function output_command.
5782 * valprint.h: (output_command): New extern.
5783
5784 2013-01-07 Tom Tromey <tromey@redhat.com>
5785
5786 * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
5787 Remove.
5788 (objc_language_defn): Use c_printchar, c_printstr,
5789 c_emit_char.
5790
5791 2013-01-07 Tom Tromey <tromey@redhat.com>
5792
5793 PR cli/7719:
5794 * NEWS: Update.
5795 * ada-valprint.c (printstr, print_field_values): Remove
5796 "inspect_it" code.
5797 * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
5798 code.
5799 * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
5800 code.
5801 * m2-lang.c (m2_printstr): Remove "inspect_it" code.
5802 * main.c (captured_main): Remove "epoch" argument.
5803 * objc-lang.c (objc_printstr): Remove "inspect_it" code.
5804 * p-lang.c (pascal_printstr): Remove "inspect_it" code.
5805 * p-valprint.c (pascal_object_print_value_fields): Remove
5806 "inspect_it" code.
5807 * printcmd.c (print_command_1): Remove 'inspect' argument.
5808 (print_command, call_command): Update.
5809 (inspect_command): Remove.
5810 (_initialize_printcmd): Make "inspect" an alias for "print".
5811 * top.c (epoch_interface): Remove.
5812 * top.h (epoch_interface): Remove.
5813 * valprint.c (user_print_options): Update.
5814 (print_converted_chars_to_obstack): Remove "inspect_it" code.
5815 * valprint.h (struct value_print_options) <inspect_it>: Remove
5816 field.
5817
5818 2013-01-04 Tom Tromey <tromey@redhat.com>
5819
5820 * valprint.h (read_string): Add 'extern'.
5821
5822 2013-01-07 Joel Brobecker <brobecker@adacore.com>
5823
5824 * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
5825 used to decide whether to define darwin_read_dyld_info or not.
5826
5827 2013-01-03 Pierre Muller <muller@sourceware.org>
5828
5829 * main.c (relocate_gdb_directory): Avoid calling stat function
5830 if DIR is empty.
5831
5832 2013-01-03 Yao Qi <yao@codesourcery.com>
5833
5834 * psymtab.c (fixup_psymbol_section): Update declaration.
5835 (fixup_psymbol_section): Remove code returning value.
5836
5837 2013-01-03 Yao Qi <yao@codesourcery.com>
5838
5839 * symtab.h: Remove some out of date comments.
5840 (enum exception_event_kind): Move it ...
5841 * breakpoint.c: ... here.
5842
5843 2013-01-02 Iain Sandoe <developer@sandoe-acoustics.co.uk>
5844
5845 PR gdb/14405
5846 * darwin-nat.c (darwin_read_dyld_info): Only build if
5847 TASK_DYLD_INFO_COUNT is defined.
5848 (darwin_xfer_partial): Call darwin_read_dyld_info only if
5849 TASK_DYLD_INFO_COUNT is defined.
5850
5851 2013-01-02 Tom Tromey <tromey@redhat.com>
5852
5853 * symfile.h (struct ecoff_debug_hack): Remove.
5854 * objfiles.c: Don't include mdebugread.h.
5855
5856 2013-01-02 Tom Tromey <tromey@redhat.com>
5857
5858 * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
5859 * configure.ac: Check for Mach-O support in BFD. Update
5860 CONFIG_OBS.
5861 * configure: Rebuild.
5862
5863 2013-01-02 Tom Tromey <tromey@redhat.com>
5864
5865 * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
5866 * configure.ac: Use GDB_AC_CHECK_BFD.
5867 * configure: Rebuild.
5868
5869 2013-01-01 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
5870
5871 * MAINTAINERS: Update my email.
5872
5873 2013-01-01 Joel Brobecker <brobecker@adacore.com>
5874
5875 * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
5876
5877 2013-01-01 Joel Brobecker <brobecker@adacore.com>
5878
5879 * rs6000-nat.c (bss_data_overlap): New function.
5880 (vmap_symtab): Use it to adjust the .bss section's offset.
5881
5882 2013-01-01 Joel Brobecker <brobecker@adacore.com>
5883
5884 Update year range in copyright notice of all files.
5885
5886 2013-01-01, 13 Joel Brobecker <brobecker@adacore.com>
5887
5888 * top.c (print_gdb_version): Update copyright year.
5889
5890 For older changes see ChangeLog-2012.
5891 \f
5892 Local Variables:
5893 mode: change-log
5894 left-margin: 8
5895 fill-column: 74
5896 version-control: never
5897 coding: utf-8
5898 End:
This page took 0.169098 seconds and 5 git commands to generate.