Fix set debug frame output
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2013-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
2
3 Fix set debug frame output.
4 * frame.c (fprint_frame_type): Add TAILCALL_FRAME entry. Move
5 SENTINEL_FRAME entry lower to match enum frame_type order.
6
7 2013-09-26 Pierre Muller <muller@sourceware.org>
8
9 Replace constant values 8 to 15 by AMD64_R8_REGNUM to
10 AMD64_R15_REGNUM when a register index is expected.
11 * amd64-windows-tdep.c (amd64_windows_dummy_call_integer_regs):
12 Substitute in array.
13 * amd64-tdep.c (amd64_dwarf_regmap): Ditto.
14 (amd64_push_arguments): Substitute in integer_regnum array.
15
16 2013-09-25 Doug Evans <dje@google.com>
17
18 * objfiles.c (allocate_objfile): Move comment to better place.
19
20 New option "set debug symfile on".
21 * NEWS: Mention "set debug symfile".
22 * Makefile.in (SFILES): Add symfile-debug.c.
23 (COMMON_OBS): Add symfile-debug.o.
24 * elfread.c (elf_symfile_read): Use objfile_set_sym_fns to set the
25 objfile's symbol functions.
26 * objfiles.h (objfile_set_sym_fns): Declare.
27 * symfile-debug.c: New file.
28 * symfile.c (syms_from_objfile_1): Use objfile_set_sym_fns to set the
29 objfile's symbol functions.
30 (reread_symbols): Ditto.
31
32 * symfile.h (struct sym_fns): Delete member "sym_flavour".
33 All uses updated.
34 (add_symtab_fns): Update prototype.
35 * symfile.c (sym_fns_ptr): Delete. Replace with ...
36 (registered_sym_fns): ... this.
37 (symtab_fns): Update.
38 (add_symtab_fns): New arg "flavour". All callers updated.
39 (find_sym_fns): Rewrite to use new sym_fns registry.
40
41 * symfile.h (struct sym_fns): Add "objfile" argument to
42 sym_read_linetable. All uses updated.
43
44 * symtab.c (domain_name, search_domain_name): New functions.
45 * symtab.h (domain_name, search_domain_name): Declare.
46
47 * symfile.h (struct quick_symbol_functions): Reorg arg list of
48 map_matching_symbols so objfile is first. All uses updated.
49 * dwarf2read.c (dw2_map_matching_symbols): Update signature.
50 * psymtab.c (map_matching_symbols_psymtab): Update signature.
51
52 2013-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
53
54 PR shlibs/8882
55 * solib-svr4.c (svr4_read_so_list): Skip the vDSO when reading
56 link map entries.
57
58 2013-09-24 Doug Evans <dje@google.com>
59
60 * objfiles.c (free_objfile): Move comment.
61
62 2013-09-24 Joel Brobecker <brobecker@adacore.com>
63
64 * ada-exp.y (string_to_operator): Delete.
65 (dummy_string_to_ada_operator): Delete.
66
67 2013-09-24 Joel Brobecker <brobecker@adacore.com>
68
69 Revert:
70 * i386-tdep.h (enum amd64_reg_class): New, moved here from
71 amd64-tdep.c.
72 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
73 call_dummy_integer_regs, and classify.
74 * amd64-tdep.h (amd64_classify): Add declaration.
75 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
76 (amd64_reg_class): Delete, moved to i386-tdep.h.
77 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
78 Replace call to amd64_classify by call to tdep->classify.
79 (amd64_push_arguments): Get the list of registers to use for
80 passing integer parameters from the gdbarch tdep structure,
81 rather than using a hardcoded one. Replace calls to amd64_classify
82 by calls to tdep->classify.
83 (amd64_push_dummy_call): Get the register number used for
84 the "hidden" argument from tdep->call_dummy_integer_regs.
85 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
86 and tdep->call_dummy_integer_regs. Set tdep->classify.
87
88 2013-09-24 Joel Brobecker <brobecker@adacore.com>
89
90 Revert:
91 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
92 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
93 where tdep->memory_args_by_pointer is non-zero.
94
95 2013-09-24 Joel Brobecker <brobecker@adacore.com>
96
97 Revert:
98 * i386-tdep.h (struct gdbarch_tdep): Add new field
99 integer_param_regs_saved_in_caller_frame.
100 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
101 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
102
103 2013-09-24 Joel Brobecker <brobecker@adacore.com>
104
105 * amd64-windows-tdep.c: #include "value.h"
106 (amd64_windows_classify): Delete.
107 (amd64_windows_passed_by_integer_register)
108 (amd64_windows_passed_by_xmm_register)
109 (amd64_windows_passed_by_pointer)
110 (amd64_windows_adjust_args_passed_by_pointer)
111 (amd64_windows_store_arg_in_reg, amd64_windows_push_arguments)
112 (amd64_windows_push_dummy_call): New functions.
113 (amd64_windows_init_abi): Remove setting of
114 tdep->call_dummy_num_integer_regs, tdep->call_dummy_integer_regs,
115 tdep->classify, tdep->memory_args_by_pointer and
116 tdep->integer_param_regs_saved_in_caller_frame.
117 Add call to set_gdbarch_push_dummy_call.
118
119 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
120
121 * dwarf2read.c (open_and_init_dwp_file): Try open_dwp_file also with
122 objfile->original_name.
123
124 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
125
126 Pass down original filename for objfile.
127 * coffread.c (coff_symfile_read): Update symbol_file_add_separate call.
128 * elfread.c (elf_symfile_read): Likewise.
129 * jit.c (jit_object_close_impl): Update allocate_objfile call, no
130 longer set ORIGINAL_NAME.
131 (jit_bfd_try_read_symtab): Update symbol_file_add_from_bfd call.
132 * jv-lang.c (get_dynamics_objfile): Update allocate_objfile call.
133 * machoread.c (macho_add_oso_symfile): Add parameter name. Update
134 symbol_file_add_from_bfd call.
135 (macho_symfile_read_all_oso): Update two macho_add_oso_symfile calls.
136 (macho_check_dsym): Add parameter filenamep. Change function comment.
137 Set *filenamep.
138 (macho_symfile_read): New variable dsym_filename. Update
139 macho_check_dsym call. Use it for symbol_file_add_separate.
140 * objfiles.c (allocate_objfile): Add parameter name. New comment for
141 it. Use it for objfile->original_name.
142 (objfile_name): Return OBFD's filename, if available.
143 * objfiles.h (allocate_objfile): Add new parameter name.
144 * solib.c (solib_read_symbols): Update symbol_file_add_from_bfd call.
145 * symfile-mem.c (symbol_file_add_from_memory): Update
146 symbol_file_add_from_bfd call.
147 * symfile.c (read_symbols): Update symbol_file_add_separate call, new
148 comment for it.
149 (symbol_file_add_with_addrs): New parameter name, add function comment
150 for it. Remove variable name. Update allocate_objfile call.
151 (symbol_file_add_separate): New parameter name, add function comment
152 for it. Update symbol_file_add_with_addrs call.
153 (symbol_file_add_from_bfd): New parameter name. Update
154 symbol_file_add_with_addrs call.
155 (symbol_file_add): Update symbol_file_add_from_bfd call.
156 (reread_symbols): New variable original_name. Save
157 objfile->original_name by it.
158 * symfile.h (symbol_file_add_from_bfd, symbol_file_add_separate): Add
159 second parameter.
160
161 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
162
163 Code cleanup: Add objfile_name accessor function.
164 * ada-lang.c (is_known_support_routine): Use objfile_name.
165 * auto-load.c (source_gdb_script_for_objfile)
166 (auto_load_objfile_script): Likewise.
167 * coffread.c (coff_symtab_read, read_one_sym): Likewise.
168 * dbxread.c (dbx_symfile_read): Likewise.
169 * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
170 * dwarf2loc.c (locexpr_describe_location_piece): Likewise.
171 * dwarf2read.c (dwarf2_get_dwz_file, dwarf2_read_index)
172 (dw2_symtab_iter_next, dw2_expand_symtabs_matching)
173 (lookup_dwp_signatured_type, lookup_dwo_unit)
174 (dwarf2_build_psymtabs_hard, scan_partial_symbols, process_queue)
175 (fixup_go_packaging, process_imported_unit_die, dwarf2_physname)
176 (read_import_statement, create_dwo_cu, open_and_init_dwp_file)
177 (lookup_dwo_cutu, read_call_site_scope, dwarf2_ranges_read)
178 (dwarf2_record_block_ranges, read_common_block, read_typedef)
179 (read_subrange_type, load_partial_dies, read_partial_die)
180 (read_addr_index_1, read_str_index, dwarf_decode_lines_1)
181 (die_containing_type, build_error_marker_type, lookup_die_type)
182 (follow_die_ref_or_sig, follow_die_ref, dwarf2_fetch_die_loc_sect_off)
183 (dwarf2_fetch_constant_bytes, follow_die_sig, get_signatured_type)
184 (get_DW_AT_signature_type, write_psymtabs_to_index)
185 (save_gdb_index_command): Likewise.
186 * elfread.c (find_separate_debug_file_by_buildid, elf_symfile_read):
187 Likewise.
188 * expprint.c (dump_subexp_body_standard): Likewise.
189 * gdbtypes.c (type_name_no_tag_or_error): Likewise.
190 * jit.c (jit_object_close_impl): Use the objfile field name renamed to
191 original_name.
192 * linux-thread-db.c (try_thread_db_load_from_pdir_1): New variable
193 obj_name, use objfile_name for it, use the variable.
194 (try_thread_db_load_from_pdir, has_libpthread, thread_db_new_objfile):
195 Use objfile_name.
196 * machoread.c (macho_symtab_read, macho_check_dsym)
197 (macho_symfile_relocate): Likewise.
198 * maint.c (maintenance_translate_address): Likewise.
199 * minidebug.c (find_separate_debug_file_in_section): Likewise.
200 * minsyms.c (install_minimal_symbols): Likewise.
201 * objfiles.c (allocate_objfile): Use the objfile field name renamed to
202 original_name.
203 (filter_overlapping_sections): Use objfile_name.
204 (objfile_name): New function.
205 * objfiles.h (struct objfile): Rename field name to original_name.
206 (objfile_name): New prototype.
207 * printcmd.c (sym_info, address_info): Use objfile_name.
208 * probe.c (parse_probes, collect_probes, compare_probes)
209 (info_probes_for_ops): Likewise.
210 * progspace.c (clone_program_space): Likewise.
211 * psymtab.c (require_partial_symbols, dump_psymtab, allocate_psymtab)
212 (maintenance_info_psymtabs): Likewise.
213 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
214 (source_section_scripts): Likewise.
215 * python/py-objfile.c (objfpy_get_filename): Likewise.
216 * python/py-progspace.c (pspy_get_filename): Likewise.
217 * solib-aix.c (solib_aix_get_toc_value): Likewise.
218 * solib-som.c (match_main, som_solib_section_offsets): Likewise.
219 * solib.c (solib_read_symbols): Likewise.
220 * stabsread.c (scan_file_globals): Likewise.
221 * stap-probe.c (handle_stap_probe): Likewise.
222 * symfile.c (symbol_file_clear, separate_debug_file_exists)
223 (find_separate_debug_file_by_debuglink): Likewise.
224 (reread_symbols): Likewise. Use the objfile field name renamed to
225 original_name.
226 (allocate_symtab): Use objfile_name.
227 * symmisc.c (print_symbol_bcache_statistics, print_objfile_statistics)
228 (dump_objfile, dump_msymbols, dump_symtab_1)
229 (maintenance_print_msymbols, maintenance_print_objfiles)
230 (maintenance_info_symtabs, maintenance_check_symtabs): Likewise.
231 * target.c (target_translate_tls_address, target_info): Likewise.
232 * xcoffread.c (xcoff_initial_scan): Make variable name const. Use
233 objfile_name.
234
235 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
236
237 Code cleanup.
238 * probe.c (parse_probes): Rename variable objfile_name to
239 objfile_namestr.
240
241 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
242
243 Remove solib-sunos.c.
244 * Makefile.in (ALLDEPFILES): Remove solib-sunos.c.
245 * config/m68k/obsd.mh (NATDEPFILES): Remove solib-sunos.o.
246 * objfiles.c (rt_common_objfile): Remove.
247 (free_objfile): Remove rt_common_objfile comparison.
248 * objfiles.h (rt_common_objfile): Remove.
249 * solib-sunos.c: Remove.
250 * symfile.c (reread_symbols): Remove solib-sunos.c comment.
251
252 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
253
254 Remove a.out NetBSD and OpenBSD hosts.
255 * NEWS (Removed native configurations): New.
256 * config/arm/nbsdaout.mh: Remove.
257 * config/i386/nbsdaout.mh: Remove.
258 * config/i386/obsdaout.mh: Remove.
259 * config/m68k/nbsdaout.mh: Remove.
260 * config/sparc/nbsdaout.mh: Remove.
261 * config/vax/nbsdaout.mh: Remove.
262 * configure.host (arm*-*-netbsd*, i[34567]86-*-netbsd*)
263 (i[34567]86-*-openbsd[0-2].*, i[34567]86-*-openbsd3.[0-3])
264 (m68*-*-netbsd*, sparc-*-netbsd*, vax-*-netbsd*): Add them to obsolete
265 error.
266 (arm*-*-netbsd*, i[34567]86-*-netbsd*, i[34567]86-*-openbsd[0-2].*)
267 (i[34567]86-*-openbsd3.[0-3], m68*-*-netbsd*, sparc-*-netbsdaout*)
268 (sparc-*-netbsd*, vax-*-netbsd*): Remove.
269
270 2013-09-23 Tom Tromey <tromey@redhat.com>
271
272 * linespec.c (struct minsym_and_objfile): Remove.
273 (minsym_and_objfile_d): Remove.
274 (struct linespec, struct collect_info, linespec_parse_basic)
275 (convert_linespec_to_sals, linespec_parser_delete, decode_objc)
276 (compare_msymbols, find_method, find_function_symbols)
277 (find_linespec_symbols, struct collect_minsyms, compare_msyms)
278 (add_minsym, search_minsyms_for_name): Update.
279
280 2013-09-23 Andrew Burgess <aburgess@broadcom.com>
281
282 * regcache.c: Add include of valprint.h.
283 (dump_endian_bytes): Delete.
284 (regcache_dump): Use print_hex_chars not dump_endian_bytes.
285
286 2013-09-23 Andrew Burgess <aburgess@broadcom.com>
287
288 * sh64-tdep.c (sh64_do_fp_register): Use print_hex_chars.
289
290 2013-09-19 Pedro Alves <palves@redhat.com>
291
292 * breakpoint.c (remove_threaded_breakpoints): Skip non-user
293 breakpoints.
294
295 2013-09-19 Pedro Alves <palves@redhat.com>
296 Thomas Schwinge <thomas@codesourcery.com>
297 Yue Lu <hacklu.newborn@gmail.com>
298
299 * gnu-nat.c (gnu_read_inferior, gnu_write_inferior): Make static.
300 Take a gdb_byte pointer instead of a char pointer.
301
302 * gnu-nat.c (gnu_xfer_memory): Adjust interface as
303 gnu_xfer_partial helper.
304 (gnu_xfer_partial): New function.
305 (gnu_target): Don't install a deprecated_xfer_memory hook.
306 Install a to_xfer_partial hook.
307
308 2013-09-19 Jan Kratochvil <jan.kratochvil@redhat.com>
309
310 Constification.
311 * main.c (captured_main): Replace catch_command_errors by
312 catch_command_errors_const. Twice.
313 * symfile.c (symbol_file_add_main_1): Make args parameter const.
314 (symbol_file_add): Make name parameter const.
315 (symbol_file_add_main, symbol_file_add_main_1): Make args parameter const.
316 (symfile_bfd_open): Make name parameter const, rename it to cname. Add
317 variable name. Change their usage accordingly.
318 * symfile.h (symbol_file_add, symfile_bfd_open): Make first parameter
319 const.
320 (symbol_file_add_main): Make args parameter const.
321
322 2013-09-18 Raunaq Bathija <raunaq12@in.ibm.com>
323 Ulrich Weigand <uweigand@de.ibm.com>
324
325 * xcoffread.c (struct coff_symbol): Use CORE_ADDR as type
326 of c_value member.
327 (read_xcoff_symtab): Use CORE_ADDR as type of fcn_start_addr.
328
329 2013-09-18 Pedro Alves <palves@redhat.com>
330 Yue Lu <hacklu.newborn@gmail.com>
331
332 * gnu-nat.c (inf_validate_procs, gnu_wait, gnu_resume)
333 (gnu_create_inferior)
334 (gnu_attach, gnu_thread_alive, gnu_pid_to_str, cur_thread)
335 (set_sig_thread_cmd): Use the lwpid field of ptids to
336 store/extract thread ids instead of the tid field.
337 * i386gnu-nat.c (gnu_fetch_registers): Adjust.
338
339 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
340
341 * infcmd.c (default_print_one_register_info): Add detection of
342 optimized out values.
343 (default_print_registers_info): Switch to using
344 get_frame_register_value.
345
346 2013-09-18 Markus Metzger <markus.t.metzger@intel.com>
347
348 * infrun.c (handle_inferior_event): Check if we know the
349 function start address before setting a resume breakpoint.
350
351 2013-09-18 Pedro Alves <palves@redhat.com>
352
353 * gnu-nat.c (set_sig_thread_cmd): Compare the thread's ptid to
354 minus_one_ptid instead of looking at the ptid's tid field and
355 comparing that to -1.
356
357 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
358
359 * main.h (get_gdb_program_name): Remove extra whitespace.
360
361 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
362
363 * main.h (get_gdb_program_name): Add declaration.
364 * main.c (get_gdb_program_name): Add definition.
365
366 2013-09-17 Doug Evans <dje@google.com>
367
368 * dwarf2read.c: Move definitions of complaint functions to after
369 forward declarations of local functions.
370
371 2013-09-17 Muhammad Waqas <mwaqas@codesourcery.com>
372 Pedro Alves <palves@redhat.com>
373
374 PR gdb/11568
375 * breakpoint.c (remove_threaded_breakpoints): New function.
376 (_initialize_breakpoint): Attach remove_threaded_breakpoints
377 as thread_exit observer.
378
379 2013-09-17 Pedro Alves <palves@redhat.com>
380
381 PR gdb/15911
382 * ada-tasks.c (task_command_1): Adjust call to print_stack_frame.
383 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
384 * corelow.c (core_open):
385 * frame.h (print_stack_frame, print_frame_info): New
386 'set_current_sal' parameter.
387 * infcmd.c (finish_command, kill_command): Adjust call to
388 print_stack_frame.
389 * inferior.c (inferior_command): Likewise.
390 * infrun.c (normal_stop): Likewise.
391 * linux-fork.c (linux_fork_context): Likewise.
392 * record-full.c (record_full_goto_entry, record_full_restore):
393 Likewise.
394 * remote-mips.c (common_open): Likewise.
395 * stack.c (print_stack_frame): New 'set_current_sal' parameter.
396 Use it.
397 (print_frame_info): New 'set_current_sal' parameter. Set the last
398 displayed sal depending on the new paremeter instead of looking at
399 print_what.
400 (backtrace_command_1, select_and_print_frame, frame_command)
401 (current_frame_command, up_command, down_command): Adjust call to
402 print_stack_frame.
403 * thread.c (print_thread_info, restore_selected_frame)
404 (do_captured_thread_select): Adjust call to print_stack_frame.
405 * tracepoint.c (tfind_1): Likewise.
406 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
407 (mi_cmd_stack_info_frame): Likewise.
408 * mi/mi-interp.c (mi_on_normal_stop): Likewise.
409 * mi/mi-main.c (mi_cmd_exec_return, mi_cmd_trace_find): Likewise.
410
411 2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
412
413 * value.c (isvoid_internal_fn): Replace "parameter" with
414 "argument".
415
416 2013-09-16 Stan Shebs <stan@codesourcery.com>
417
418 * README: Update references to writing code for GDB.
419 * configure.ac (build_warnings): Remove obsolete comment.
420 * configure: Regenerate.
421 * gdbarch.sh: Remove references to gdbint.texinfo.
422 * gdbarch.h: Regenerate.
423 * gdbtypes.c (objfile_type): Remove comments referencing internals
424 manual and D10V.
425
426 2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
427
428 * NEWS: Mention new convenience function $_isvoid.
429 * value.c (isvoid_internal_fn): New function.
430 (_initialize_values): Add new convenience function $_isvoid.
431
432 2013-09-16 Pierre Muller <muller@sourceware.org>
433
434 * arm-linux-tdep.c: Add "elf/common.h" header.
435 Remove AT_HWCAP macro definintion as it is provided in
436 added include file.
437 * s390-tdep.c: Remove system header <elf.h>
438 Add "elf/common.h" header for AT_HWCAP definition.
439 (s390_core_read_description): Use correct CORE_ADDR
440 for hwcap local variable used as third parameter
441 of function target_auxv_search.
442
443 2013-09-14 Pierre Muller <muller@sourceware.org>
444 Tom Tromey <tromey@redhat.com>
445 Pedro Alves <palves@redhat.com>
446
447 * common/filestuff.c (gdb_fopen_cloexec): Do not try to use "e"
448 mode if operating system doesn't know O_CLOEXEC.
449
450 2013-09-13 Jan Kratochvil <jan.kratochvil@redhat.com>
451
452 Code cleanup.
453 * symfile.c (reread_symbols): Move variable obfd_filename to a more
454 inner block.
455
456 2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
457
458 * NEWS: Mention TDB support.
459 * features/s390-tdb.xml: New file.
460 * features/s390-te-linux64.xml: New file.
461 * features/s390x-te-linux64.xml: New file.
462 * features/Makefile (WHICH): Add new tdescs above.
463 (s390-te-linux64-expedite): Set.
464 (s390x-te-linux64-expedite): Set.
465 * features/s390-te-linux64.c: New file (generated).
466 * features/s390x-te-linux64.c: New file (generated).
467 * regformats/s390-te-linux64.dat: New file (generated).
468 * regformats/s390x-te-linux64.dat: New file (generated).
469 * s390-tdep.h (HWCAP_S390_HIGH_GPRS): Define.
470 (HWCAP_S390_TE): Likewise.
471 (S390_TDB_DWORD0_REGNUM): Likewise.
472 (S390_TDB_DWORD0_REGNUM): Likewise.
473 (S390_TDB_ABORT_CODE_REGNUM): Likewise.
474 (S390_TDB_CONFLICT_TOKEN_REGNUM): Likewise.
475 (S390_TDB_ATIA_REGNUM): Likewise.
476 (S390_TDB_R0_REGNUM): Likewise.
477 (S390_TDB_R1_REGNUM): Likewise.
478 (S390_TDB_R2_REGNUM): Likewise.
479 (S390_TDB_R3_REGNUM): Likewise.
480 (S390_TDB_R4_REGNUM): Likewise.
481 (S390_TDB_R5_REGNUM): Likewise.
482 (S390_TDB_R6_REGNUM): Likewise.
483 (S390_TDB_R7_REGNUM): Likewise.
484 (S390_TDB_R8_REGNUM): Likewise.
485 (S390_TDB_R9_REGNUM): Likewise.
486 (S390_TDB_R10_REGNUM): Likewise.
487 (S390_TDB_R11_REGNUM): Likewise.
488 (S390_TDB_R12_REGNUM): Likewise.
489 (S390_TDB_R13_REGNUM): Likewise.
490 (S390_TDB_R14_REGNUM): Likewise.
491 (S390_TDB_R15_REGNUM): Likewise.
492 (S390_NUM_REGS): Increase.
493 (S390_IS_TDBREGSET_REGNUM): New macro.
494 (s390_regmap_tdb): Declare.
495 (s390_sizeof_tdbregset): Define.
496 (tdesc_s390_te_linux64): Declare.
497 (tdesc_s390x_te_linux64): Likewise.
498 * s390-tdep.c: Add includes for "auxv.h", <elf.h>,
499 "features/s390-te-linux64.c", and "features/s390x-te-linux64.c".
500 (s390_regmap_tdb): New regmap.
501 (s390_supply_tdb_regset): New function.
502 (s390_tdb_regset): New regset.
503 (s390_linux64v2_regset_sections): Add TDB regset to list.
504 (s390x_linux64v2_regset_sections): Likewise.
505 (s390_regset_from_core_section): Recognize TDB core note section.
506 (s390_core_read_description): If HWCAP indicates TE support,
507 select tdesc_s390_te_linux64 or tdesc_s390_s390x_te_linux64.
508 (s390_gdbarch_init): Handle TDB regset.
509 (_initialize_s390_tdep): Initialize new tdescs.
510 * s390-nat.c (HWCAP_S390_HIGH_GPRS): Remove define.
511 (have_regset_tdb): New variable.
512 (s390_native_supply): Support register invalidation.
513 (fetch_regset): Invalidate registers if ptrace yields ENODATA.
514 (check_regset): Treat ENODATA as "regset exists".
515 (s390_linux_fetch_inferior_registers): Add TDB.
516 (s390_read_description): Check for TDB existence and select
517 appropriate tdesc.
518 * gdbserver/Makefile.in (clean): Add removal of new makefile
519 targets.
520 (s390-te-linux64.c): New makefile target.
521 (s390x-te-linux64.c): Likewise.
522 * gdbserver/configure.srv (srv_regobj): Append new objects
523 s390-te-linux64.o and s390x-te-linux64.o.
524 (srv_xmlfiles): Append new files s390-te-linux64.xml,
525 s390x-te-linux64.xml, and s390-tdb.xml.
526 * gdbserver/linux-s390-low.c (init_registers_s390_te_linux64): New
527 declaration.
528 (tdesc_s390_te_linux64): Likewise.
529 (init_registers_s390x_te_linux64): Likewise.
530 (tdesc_s390x_te_linux64): Likewise.
531 (s390_check_regset): Treat ENODATA as "regset exists".
532 (s390_arch_setup): Add TDB regset support.
533 (initialize_low_arch): Initialize registers for new tdescs.
534
535 2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
536
537 * s390-tdep.h (S390_IS_GREGSET_REGNUM): New macro.
538 (S390_IS_FPREGSET_REGNUM): New macro.
539 * s390-tdep.c (s390_dwarf_regmap): Make const.
540 (regnum_is_gpr_full): New function for replacing repeated code.
541 (s390_pseudo_register_name): Use it.
542 (s390_pseudo_register_type): Likewise.
543 (s390_pseudo_register_read): Likewise.
544 (s390_pseudo_register_write): Likewise.
545 (s390_unwind_pseudo_register): Likewise.
546 (s390_regmap_gregset): New format for regmap.
547 (s390x_regmap_gregset): Likewise.
548 (s390_regmap_fpregset): Likewise.
549 (s390_regmap_upper): Likewise.
550 (s390_regmap_last_break): Likewise.
551 (s390_regmap_system_call): Likewise.
552 (s390_supply_regset): Adjust to new regmap format.
553 (s390_collect_regset): Likewise.
554 * s390-nat.c (s390_native_supply): Adjust to new regmap format.
555 (s390_native_collect): Likewise.
556 (supply_gregset): Likewise.
557 (fill_gregset): Likewise.
558 (supply_fpregset): Likewise.
559 (fill_fpregset): Likewise.
560 (fetch_regset): Likewise.
561 (store_regset): Likewise.
562 (s390_linux_fetch_inferior_registers): Likewise.
563 (s390_linux_fetch_inferior_registers): Likewise.
564
565 2013-09-12 Andrew Pinski <apinski@cavium.com>
566
567 * aarch64-linux-nat.c (aarch64_linux_set_debug_regs): Zero out regs.
568
569 2013-09-10 Andreas Arnez <arnez@linux.vnet.ibm.com>
570
571 * config/s390/s390.mh (NATDEPFILES): Add linux-waitpid.o.
572
573 2013-09-09 Andrew Burgess <aburgess@broadcom.com>
574
575 * top.c (quit_confirm): Remove use of deprecated_init_ui_hook.
576
577 2013-09-06 Pedro Alves <palves@redhat.com>
578
579 * remote-sim.c (dump_mem, gdbsim_fetch_register)
580 (gdbsim_store_register, gdbsim_kill, gdbsim_load)
581 (gdbsim_create_inferior, gdbsim_open, gdbsim_close)
582 (gdbsim_detach, gdbsim_resume_inferior, gdbsim_wait)
583 (gdbsim_files_info, gdbsim_mourn_inferior): Send debug output to
584 gdb_stdlog.
585
586 2013-09-06 Pedro Alves <palves@redhat.com>
587
588 * remote-sim.c (dump_mem): Constify buf parameter.
589 gdbsim_xfer_inferior_memory): Rename to ...
590 (gdbsim_xfer_memory): ... this. Adjust interface as
591 target_xfer_partial helper.
592 (gdbsim_xfer_partial): New function.
593 (init_gdbsim_ops): Don't install a deprecated_xfer_memory hook.
594 Install a to_xfer_partial hook. Send output to gdb_stdlog.
595
596 2013-09-06 Pedro Alves <palves@redhat.com>
597
598 * remote-sim.c (gdbsim_xfer_inferior_memory): Use
599 host_address_to_string, and send debug output to gdb_stdlog.
600
601 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
602
603 * Makefile.in (ALL_TARGET_OBS): Add cris-linux-tdep.o.
604 * configure.tgt: Add cris-linux-tdep.o and linux-tdep.o to
605 gdb_target_obs for cris target.
606 * cris-tdep.c (struct gdbarch_tdep): Move to cris-tdep.h.
607 (cris_gdbarch_init): Move calls to
608 set_gdbarch_fetch_tls_load_module_address and
609 set_solib_svr4_fetch_link_map_offsets to cris-linux-tdep.c.
610 Add call to gdbarch_init_osabi.
611 * cris-linux-tdep.c: New file.
612 * cris-tdep.h: New file.
613
614 2013-09-06 Andrew Burgess <aburgess@broadcom.com>
615
616 * tui/tui-io.c (tui_initialize_io): Remove legacy comment referring
617 to deprecated_init_ui_hook.
618
619 2013-09-06 Andrew Burgess <aburgess@broadcom.com>
620
621 * cli/cli-interp.c (_initialize_cli_interp): Add a
622 command_loop_proc to interp_procs.
623 * event-top.c (cli_command_loop): Change signature to match
624 interp_command_loop_ftype.
625 * event-top.h (cli_command_loop): Same.
626 * interps.c (interp_new): Require every interpreter to have a
627 command_loop_proc.
628 (current_interp_command_loop): Just call the command_loop_proc on
629 the current interpreter.
630 * tui/tui-interp.c (_initialize_tui_interp): Add a
631 command_loop_proc to interp_procs.
632
633 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
634
635 * cris-tdep.c (cris_gdbarch_init): Add call to
636 get_gdbarch_fetch_tls_load_module_address.
637
638 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
639
640 * cris-tdep.c (cris_elf_greg_t): Rename from elf_greg_t.
641 (cris_elf_gregset_t): Rename from elf_gregset_t.
642 (crisv32_elf_gregset_t): Adjust.
643 (cris_supply_gregset, fetch_core_registers): Adjust.
644
645 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
646
647 * cris-tdep.c (elf_greg_t): Change typedef to unsigned char[4]
648
649 2013-09-05 Andrew Burgess <aburgess@broadcom.com>
650
651 * defs.h (deprecated_command_loop_hook): Remove, including
652 references in comments.
653 * interps.c (current_interp_command_loop): No longer use
654 deprecated_command_loop_hook.
655 (clear_interpreter_hooks): Remove deprecated_command_loop_hook
656 setup.
657 * top.c (deprecated_command_loop_hook): Remove.
658
659 2013-09-05 Pedro Alves <palves@redhat.com>
660
661 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): 'dwarf_regnum'
662 local is now int instead of ULONGEST. Print it with %d
663 instead of paddress.
664
665 2013-09-05 Tristan Gingold <gingold@adacore.com>
666
667 * MAINTAINERS: Remove avr maintainership.
668
669 2013-09-05 Pedro Alves <palves@redhat.com>
670
671 * findvar.c (value_of_register): Rework in terms of
672 value_of_register_lazy.
673
674 2013-09-05 Muhammad Bilal <mbilal@codesourcery.com>
675
676 * symfile.c (add_symbol_file_command): Remove trailing
677 whitespaces and blank line after comment.
678
679 2013-09-05 Pedro Alves <palves@redhat.com>
680
681 * tui/tui-regs.c (tui_register_format): Don't look at the
682 register's name here. Return string representing register
683 value instead of storing it in the data element.
684 (tui_get_register): Compare register string representations
685 instead of register value states and contents.
686
687 2013-09-05 Pedro Alves <palves@redhat.com>
688
689 PR tui/15933
690 * tui/tui-regs.c (tui_show_registers): Show registers of the
691 selected frame, not the current frame.
692
693 2013-09-05 Ricard Wanderlof <ricardw@axis.com>
694
695 * MAINTAINERS (Write After Approval): Add myself to the list.
696
697 2013-09-04 Doug Evans <dje@google.com>
698
699 * dwarf2read.c (queue_and_load_all_dwo_tus): New function.
700 (queue_and_load_dwo_tu): New function.
701 (lookup_dwo_signatured_type): Set per_cu.tu_read.
702 (maybe_queue_comp_unit): Rename this_cu argument to dependent_cu.
703 Make dependent_cu optional.
704 (dw2_do_instantiate_symtab): If we just loaded a CU from a DWO,
705 and an older .gdb_index is in use, queue and load all its TUs too.
706
707 2013-09-04 Jan Kratochvil <jan.kratochvil@redhat.com>
708
709 Code cleanup: Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH.
710 * cli/cli-cmds.c (find_and_open_script): Add OPF_RETURN_REALPATH to
711 variable search_flags.
712 * defs.h (OPF_DISABLE_REALPATH): Rename to ...
713 (OPF_RETURN_REALPATH): ... here.
714 * dwarf2read.c (try_open_dwop_file): Set OPF_RETURN_REALPATH for flags.
715 * exec.c (exec_file_attach): Remove OPF_DISABLE_REALPATH from openp
716 call. Twice.
717 * nto-tdep.c (nto_find_and_open_solib): Add OPF_RETURN_REALPATH for
718 openp call.
719 * solib.c (solib_find): Likewise. Four times.
720 * source.c (openp): Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH
721 in the function comment and for the realpath_fptr variable.
722 (source_full_path_of): Add OPF_RETURN_REALPATH for openp call.
723 (find_and_open_source): Likewise. Twice.
724 * symfile.c (symfile_bfd_open): Likewise, also twice.
725
726 2013-09-04 Doug Evans <dje@google.com>
727
728 * progspace.c (save_current_space_and_thread): Remove unnecessary
729 call to save_current_inferior.
730
731 2013-09-04 Andrew Burgess <aburgess@broadcom.com>
732
733 * sh64-tdep.c (sh64_do_register): Return after printing message
734 about unavailable register contents.
735
736 2013-09-04 Muhammad Bilal <mbilal@codesourcery.com>
737 Pedro Alves <palves@redhat.com>
738
739 * symfile.c (add_symbol_file_command): Error out on unknown
740 option. Handle EXPECTING_SEC_ADDR/EXPECTING_SEC_NAME before '-'
741 options and collapse into single conditional branch.
742
743 2013-09-03 Luis Machado <lgustavo@codesourcery.com>
744
745 * inf-child.c (inf_child_follow_fork): New parameter
746 detach_fork.
747 * inf-ptrace.c (inf_ptrace_follow_fork): Likewise.
748 * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
749 * inferior.h (detach_fork): Remove.
750 * infrun.c (detach_fork): Adjust comment and make it
751 static.
752 (follow_fork): Pass detach_fork parameter to
753 target_follow_fork.
754 * linux-nat.c (linux_child_follow_fork): New parameter
755 detach_fork.
756 * target.c (target_follow_fork): New parameter detach_fork.
757 Pass detach_fork as parameter and print its value.
758 * target.h (struct target_ops) <to_follow_fork>: New int
759 parameter.
760 (target_follow_fork): New parameter detach_fork.
761
762 2013-09-03 Joel Brobecker <brobecker@adacore.com>
763
764 * solib-ia64-hpux.c (ia64_hpux_relocate_section_addresses):
765 Replace sec->bfd by sec->the_bfd_section->owner.
766
767 2013-09-03 Yao Qi <yao@codesourcery.com>
768
769 * linux-tdep.c (linux_is_uclinux): New function. Code moved
770 from linux_has_shared_address_space.
771 (linux_has_shared_address_space): Call linux_is_uclinux.
772 * linux-tdep.h (linux_is_uclinux): Declare.
773 * m68klinux-tdep.c (m68k_linux_get_sigtramp_info): Call
774 linux_is_uclinux.
775
776 2013-09-03 Yao Qi <yao@codesourcery.com>
777
778 * config/djgpp/fnchange.lst: Remove entry of
779 i386-interix-nat.c and i386-interix-tdep.c.
780 * configure.ac: Remove '*-*-interix*'.
781 * configure: Re-generated.
782 * defs.h (enum gdb_osabi): Remove GDB_OSABI_INTERIX.
783 * i386-cygwin-tdep.c (i386_cygwin_osabi_sniffer): Remove
784 obsolete comments.
785 * osabi.c (gdb_osabi_names): Remove "Interix".
786
787 2013-09-03 Yao Qi <yao@codesourcery.com>
788
789 * arch-utils.c: Fix typo in the comment to gdbarch_update_p.
790
791 2013-09-02 Markus Metzger <markus.t.metzger@intel.com>
792
793 * record.h (record_print_flag) <record_print_src_line,
794 record_print_insn_range>: Rename into ...
795 (record_print_flag) <record_print_src_line,
796 record_print_insn_range>: ... this. Update all users.
797
798 2013-09-02 Pierre Muller <muller@sourceware.org>
799
800 * windows-nat.c (windows_xfer_memory): Handle ERROR_PARTIAL_COPY
801 error code.
802
803 2013-09-02 Pierre Muller <muller@sourceware.org>
804
805 * windows-nat.c (windows_xfer_memory): Fix compilation failure
806 by use of plongest function.
807
808 2013-09-02 Tristan Gingold <gingold@adacore.com>
809
810 * NEWS: Add entry mentioning support for native Windows x64
811 SEH data.
812
813 * amd64-windows-tdep.c: #include "objfiles.h", "frame-unwind.h",
814 "coff/internal.h", "coff/i386.h", "coff/pe.h" and "libcoff.h".
815 (struct amd64_windows_frame_cache): New struct.
816 (amd64_windows_w2gdb_regnum): New global.
817 (pc_in_range, amd64_windows_frame_decode_epilogue)
818 (amd64_windows_frame_decode_insns, amd64_windows_find_unwind_info)
819 (amd64_windows_frame_cache, amd64_windows_frame_prev_register)
820 (amd64_windows_frame_this_id): New functions.
821 (amd64_windows_frame_unwind): New static global.
822 (amd64_windows_skip_prologue): New function.
823 (amd64_windows_init_abi): Call frame_unwind_prepend_unwinder
824 with amd64_windows_frame_unwind. Call set_gdbarch_skip_prologue
825 with amd64_windows_skip_prologue.
826
827 2013-08-30 Joel Brobecker <brobecker@adacore.com>
828
829 GDB 7.6.1 released.
830
831 2013-08-30 Pedro Alves <palves@redhat.com>
832
833 * mi/mi-main.c (mi_cmd_trace_find): Use LOC_AND_ADDRESS instead of
834 SRC_AND_LOC.
835
836 2013-08-30 Pedro Alves <palves@redhat.com>
837
838 * thread.c (restore_selected_frame): Use SRC_AND_LOC, and change
839 warning text.
840
841 2013-08-30 Pedro Alves <palves@redhat.com>
842
843 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
844 Adjust arguments to print_stack_frame.
845
846 2013-08-30 Pedro Alves <palves@redhat.com>
847
848 * ada-tasks.c (task_command_1): Write SRC_AND_LOC instead '1'.
849
850 2013-08-30 Pedro Alves <palves@redhat.com>
851
852 * frame.h (show_and_print_stack_frame): Delete declaration.
853
854 2013-08-30 Phil Muldoon <pmuldoon@redhat.com>
855
856 PR python/15461
857
858 * python/py-arch.c (ARCHPY_REQUIRE_VALID): New macro.
859 (archpy_name): Check for valid architecture.
860 (archpy_disassemble): Ditto.
861
862 2013-08-29 Joel Brobecker <brobecker@adacore.com>
863
864 * rs6000-nat.c (rs6000_ptrace32): Cast "addr" to "uintptr_t"
865 instead of "long long" in call to ptrace64.
866
867 2013-08-29 Andrew Burgess <aburgess@broadcom.com>
868
869 * mi/mi-interp.c (mi_command_loop): Change signature to match
870 interp_command_loop_ftype.
871 (mi1_command_loop): Remove.
872 (mi2_command_loop): Remove.
873 (mi3_command_loop): Remove.
874 (mi_interpreter_resume): Remove setting of
875 deprecated_command_loop_hook.
876 (_initialize_mi_interp): Set mi_command_loop as the command loop
877 callback.
878
879 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
880
881 * valops.c (do_search_struct_field): Pass v2 instead of base_type to
882 value_type.
883
884 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
885
886 * value.c (allocate_value_contents): Make static.
887 * value.h (allocate_value_contents): Remove prototype.
888
889 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
890
891 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use value_at_lazy instead
892 of assembling value via allocate_value_lazy and attribute setter.
893 * findvar.c (default_read_var_value): Use value_at_lazy instead of
894 assembling value via allocate_value_lazy and attribute setter.
895 * valops.c (do_search_struct_field): Use value_at_lazy instead of
896 assembling value via allocate_value_lazy and attribute setter.
897
898 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
899
900 * value.c (value_from_contents_and_address): Replace allocate_value and
901 memcpy with value_from_contents.
902
903 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
904
905 * python/py-framefilter.c (py_print_frame): Remove usage of
906 PyString_AsString. Use python_string_to_host_string instead.
907 Refactor function to work with a string as a new allocation
908 instead of a pointer.
909 (py_print_frame): Ditto.
910 * python/lib/gdb/frames.py (return_list): Cain iterators together
911 instead of adding them as a list.
912 (_sort_list): Call return_list, and remove duplicate code.
913 (execute_frame_filters): Convert iterator to a list with list().
914 * python/lib/gdb/command/frame_filters.py
915 (SetFrameFilterPriority._set_filter_priority): Convert priority
916 attribute to an integer.
917 * python/lib/gdb/FrameIterator.py (FrameIterator.next): Define
918 wrapper function __next__.
919 * python/lib/gdb/FrameDecorator.py: If basestring not defined,
920 define as "str".
921
922 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
923
924 PR python/15752
925 * python/py-framefilter.c (apply_frame_filter): Check
926 gdb_python_initialized. Exit if the Python frame-filter code
927 cannot be initialized.
928
929 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
930
931 PR cli/15842
932 * top.c (print_gdb_version): Remove erroneous newline after help
933 text.
934
935 2013-08-29 Yao Qi <yao@codesourcery.com>
936
937 * varobj.c (install_dynamic_child): Remove trailing space.
938 Add one blank line after variable declaration.
939
940 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
941
942 PR gdb/15415
943 * corefile.c (get_exec_file): Use exec_filename.
944 * defs.h (OPF_DISABLE_REALPATH): New definition. Add new comment.
945 * exec.c (exec_close): Free EXEC_FILENAME.
946 (exec_file_attach): New variable canonical_pathname. Use
947 OPF_DISABLE_REALPATH. Call gdb_realpath explicitly. Set
948 EXEC_FILENAME.
949 * exec.h (exec_filename): New.
950 * inferior.c (print_inferior, inferior_command): Use
951 PSPACE_EXEC_FILENAME.
952 * mi/mi-main.c (print_one_inferior): Likewise.
953 * progspace.c (clone_program_space, print_program_space): Likewise.
954 * progspace.h (struct program_space): New field pspace_exec_filename.
955 * source.c (openp): Describe OPF_DISABLE_REALPATH. New variable
956 realpath_fptr, initialize it from OPF_DISABLE_REALPATH, use it.
957
958 2013-08-28 Will Newton <will.newton@linaro.org>
959
960 * common/linux-ptrace.c: Include stdint.h unconditionally.
961
962 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
963
964 Code cleanup.
965 * nto-tdep.c (nto_find_and_open_solib): Use OPF_TRY_CWD_FIRST.
966
967 2013-08-28 Yao Qi <yao@codesourcery.com>
968 Pedro Alves <palves@redhat.com>
969
970 * event-top.c (gdb_setup_readline): Call stderr_fileopen
971 instead of stdio_fileopen.
972 * main.c (captured_main) [__MINGW32__]: Set stderr unbuffered.
973 .Call stderr_fileopen instead of stdio_fileopen.
974 * ui-file.c [__MINGW32__] (stderr_file_write): New function.
975 [__MINGW32__] (stderr_file_fputs): New function.
976 (stderr_fileopen): New function.
977 * ui-file.h (stderr_fileopen): Declare.
978
979 2013-08-27 Doug Evans <dje@google.com>
980
981 * dwarf2read.c (struct dwarf2_cu): Tweak comment.
982 (struct dwarf2_per_cu_data): Ditto.
983 (maybe_queue_comp_unit): Delete forward decl. Add comment.
984 (process_imported_unit_die): Ditto.
985 (follow_die_sig_1): Simplify assert.
986
987 2013-08-27 Pedro Alves <palves@redhat.com>
988
989 * windows-nat.c (windows_xfer_memory): Adjust prototype to follow
990 xfer_partial's interface. Return TARGET_XFER_E_IO on error.
991 (windows_xfer_partial): Defer TARGET_OBJECT_MEMORY handling to
992 windows_xfer_memory directly.
993 (init_windows_ops): Don't install a deprecated_xfer_memory method.
994
995 2013-08-27 Pedro Alves <palves@redhat.com>
996
997 * darwin-nat.c (darwin_xfer_memory): Delete.
998 (_initialize_darwin_inferior): Don't install a
999 deprecated_xfer_memory method.
1000
1001 2013-08-27 Pedro Alves <pedro@codesourcery.com>
1002 Yao Qi <yao@codesourcery.com>
1003
1004 * mi/mi-cmd-stack.c (list_args_or_locals): Adjust prototype.
1005 (parse_no_frames_option): Remove.
1006 (mi_cmd_stack_list_locals): Handle --skip-unavailable.
1007 (mi_cmd_stack_list_args): Adjust.
1008 (mi_cmd_stack_list_variables): Handle --skip-unavailable.
1009 (list_arg_or_local): Add new parameter 'skip_unavailable'. Return
1010 early if SKIP_UNAVAILABLE is true and ARG->val is unavailable.
1011 Caller update.
1012 (list_args_or_locals): New parameter 'skip_unavailable'.
1013 Handle it.
1014 * valprint.c (scalar_type_p): Rename to ...
1015 (val_print_scalar_type_p): ... this. Make extern.
1016 (val_print, value_check_printable): Adjust.
1017 * valprint.h (val_print_scalar_type_p): Declare.
1018 * value.c (value_entirely_unavailable): New function.
1019 * value.h (value_entirely_unavailable): Declare.
1020
1021 * NEWS: Mention the new option "--skip-unavailable" to MI
1022 commands '-stack-list-locals', '-stack-list-arguments' and
1023 '-stack-list-variables'.
1024
1025 2013-08-27 Yao Qi <yao@codesourcery.com>
1026
1027 * mi/mi-cmd-stack.c (parse_no_frames_option): Remove.
1028 (mi_cmd_stack_list_args): Use mi_getopt_silent to handle
1029 options.
1030 * mi/mi-getopt.c (mi_getopt): Remove.
1031 (mi_getopt_1): Renamed from mi_getopt. Add one parameter
1032 'error_on_unknown'.
1033 (mi_getopt): Call mi_getopt_1.
1034 (mi_getopt_silent): New.
1035 * mi/mi-getopt.h (mi_getopt_silent): Declare.
1036
1037 2013-08-26 Doug Evans <dje@google.com>
1038
1039 PR symtab/15885
1040 * dwarf2read.c (dw2_dump): Print some minimal information indicating
1041 .gdb_index is in use.
1042 * symfile.c (reread_symbols): Reset objfile->sf.
1043
1044 * NEWS: Document "mt print objfiles" now takes optional regexp.
1045 * symmisc.c (maintenance_print_objfiles): Argument is now an optional
1046 regexp of objfiles to print.
1047 (_initialize_symmisc): Update doc string for "mt print objfiles".
1048
1049 * dwarf2read.c (write_psymtabs_to_index): Move error checks ahead of
1050 missing debug info checks.
1051
1052 2013-08-26 Raunaq Bathija <raunaq12@in.ibm.com>
1053 Ulrich Weigand <uweigand@de.ibm.com>
1054
1055 * xcoffread.c (arrange_linetable): Add fix to correctly handle
1056 line tables generated by XLC compiled binaries.
1057
1058 2013-08-23 Doug Evans <dje@google.com>
1059
1060 * symmisc.c (dump_symtab): Delete prototype.
1061 (dump_msymbols, dump_objfile): Ditto.
1062 (maintenance_info_symtabs): Mark as dont_repeat.
1063 (_initialize_symmisc): Improve doc string for "mt info symtabs".
1064
1065 * elfread.c (elf_symfile_read): Move "Done reading minimal symbols"
1066 debugging printf to better location.
1067
1068 2013-08-23 Pedro Alves <palves@redhat.com>
1069
1070 * target.c (target_read_live_memory): Change type of 'ret' local
1071 to LONGEST.
1072
1073 2013-08-23 Pedro Alves <palves@redhat.com>
1074
1075 * remote.c (remote_write_bytes_aux, remote_write_bytes)
1076 (remote_read_bytes): Change return type to LONGEST, and adjust to
1077 return a target_xfer_error on error.
1078 (remote_xfer_memory): Delete.
1079 (remote_flash_write): Change type of 'ret' local to LONGEST.
1080 (remote_xfer_partial, remote_xfer_partial): Adjust.
1081 (init_remote_ops): Don't install a deprecated_xfer_memory hook.
1082
1083 2013-08-23 Pierre Muller <muller@sourceware.org>
1084
1085 ARI fix: Push # directives to start of line.
1086 * rs6000-nat.c (rs6000_ptrace32, rs6000_ptrace64): Rule applied.
1087
1088 2013-08-12 Muhammad Waqas <mwaqas@codesourcery.com>
1089
1090 PR gdb/15501
1091 * breakpoint.c (enable_command, disable_command): Iterate over
1092 all specified breakpoint locations.
1093
1094 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
1095
1096 * common/linux-ptrace.c (linux_fork_to_function): Push #
1097 directives to the start of the line.
1098 (linux_check_ptrace_features): Fix warning message to use
1099 the "_" markup.
1100
1101 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
1102
1103 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-nat.h and
1104 nat/linux-waitpid.h.
1105 (linux-waitpid.o): New object file rule.
1106 * common/linux-ptrace.c: Include nat/linux-waitpid.h.
1107 (current_ptrace_options): Moved from linux-nat.c.
1108 (linux_ptrace_test_ret_to_nx): Use type casts for ptrace
1109 parameters.
1110 (linux_fork_to_function): New function.
1111 (linux_grandchild_function): Likewise.
1112 (linux_child_function): Likewise.
1113 (linux_check_ptrace_features): New function, heavily
1114 based on linux-nat.c:linux_test_for_tracefork.
1115 (linux_enable_event_reporting): New function.
1116 (ptrace_supports_feature): Likewise.
1117 (linux_supports_tracefork): Likewise.
1118 (linux_supports_traceclone): Likewise.
1119 (linux_supports_tracevforkdone): Likewise.
1120 (linux_supports_tracesysgood): Likewise.
1121 * common/linux-ptrace.h (HAS_NOMMU): Moved from
1122 gdbserver/linux-low.c.
1123 (linux_enable_event_reporting): New declaration.
1124 (linux_supports_tracefork): Likewise.
1125 (linux_supports_traceclone): Likewise.
1126 (linux_supports_tracevforkdone): Likewise.
1127 (linux_supports_tracesysgood): Likewise.
1128 * config.in (PTRACE_TYPE_ARG4): Regenerate.
1129 * config/aarch64/linux.mh (NATDEPFILES): Add linux-waitpid.o.
1130 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
1131 * config/arm/linux.mh (NATDEPFILES): Likewise.
1132 * config/i386/linux.mh (NATDEPFILES): Likewise.
1133 * config/i386/linux64.mh (NATDEPFILES): Likewise.
1134 * config/ia64/linux.mh (NATDEPFILES): Likewise.
1135 * config/m32r/linux.mh (NATDEPFILES): Likewise.
1136 * config/m68k/linux.mh (NATDEPFILES): Likewise.
1137 * config/mips/linux.mh (NATDEPFILES): Likewise.
1138 * config/pa/linux.mh (NATDEPFILES): Likewise..
1139 * config/powerpc/linux.mh (NATDEPFILES): Likewise..
1140 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
1141 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
1142 * config/sparc/linux.mh (NATDEPFILES): Likewise.
1143 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
1144 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
1145 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
1146 * configure.ac (AC_CACHE_CHECK): Add void * to the list of
1147 ptrace's 4th argument's types.
1148 Check the type of PTRACE_TYPE_ARG4.
1149 * configure: Regenerate.
1150 * linux-nat.c: Include nat/linux-nat.h and nat/linux-waitpid.h.
1151 (SYSCALL_SIGTRAP): Moved to nat/linux-nat.h.
1152 (linux_supports_tracefork_flag): Remove.
1153 (linux_supports_tracesysgood_flag): Likewise.
1154 (linux_supports_tracevforkdone_flag): Likewise.
1155 (current_ptrace_options): Moved to
1156 common/linux-ptrace.c.
1157 (linux_tracefork_child): Remove.
1158 (my_waitpid): Remove.
1159 (linux_test_for_tracefork): Renamed to
1160 linux_check_ptrace_features and moved to common/linux-ptrace.c.
1161 (linux_test_for_tracesysgood): Remove.
1162 (linux_supports_tracesysgood): Remove.
1163 (linux_supports_tracefork): Remove.
1164 (linux_supports_tracevforkdone): Remove.
1165 (linux_enable_tracesysgood): Remove.
1166 (linux_enable_event_reporting): Remove.
1167 (linux_init_ptrace): New function.
1168 (linux_child_post_attach): Call linux_init_ptrace.
1169 (linux_child_post_startup_inferior): Call linux_init_ptrace.
1170 (linux_child_follow_fork): Call linux_supports_tracefork
1171 and linux_supports_tracevforkdone.
1172 (linux_child_insert_fork_catchpoint): Call
1173 linux_supports_tracefork.
1174 (linux_child_insert_vfork_catchpoint): Likewise.
1175 (linux_child_set_syscall_catchpoint): Call
1176 linux_supports_tracesysgood.
1177 (lin_lwp_attach_lwp): Call linux_supports_tracefork.
1178 * nat/linux-nat.h: New file.
1179 * nat/linux-waitpid.c: New file.
1180 * nat/linux-waitpid.h: New file.
1181
1182 2013-08-22 Samuel Bronson <naesten@gmail.com>
1183
1184 ARM Linux support for `catch syscall'.
1185 * syscalls/arm-linux.py: New file.
1186 * syscalls/arm-linux.xml: Likewise.
1187 * arm-linux-tdep.c (arm_linux_get_syscall_number): New function.
1188 (arm_linux_init_abi): Register the new function and syscall xml file.
1189 * data-directory/Makefile.in: Install the new syscall xml file.
1190 * NEWS: Brag about this.
1191
1192 2013-08-22 Pedro Alves <palves@redhat.com>
1193
1194 PR gdb/15871
1195 * corefile.c (target_xfer_memory_error): New function.
1196 (memory_error): Defer EIO to target_memory_error.
1197 (read_memory): Use target_xfer_partial, and handle finer-grained
1198 target xfer errors.
1199 * target.c (target_xfer_error_to_string): New function.
1200 (memory_xfer_partial_1): If memory is known to be
1201 unavailable, return TARGET_XFER_E_UNAVAILABLE instead of -1.
1202 (target_xfer_partial): Make extern.
1203 * target.h (enum target_xfer_error): New enum.
1204 (target_xfer_error_to_string): Declare function.
1205 (target_xfer_partial): Declare function.
1206 (struct target_ops) <xfer_partial>: Adjust describing comment.
1207
1208 2013-08-22 Alan Modra <amodra@gmail.com>
1209
1210 * configure.host: Support powerpc64le-linux and powerpcle-linux hosts.
1211 * configure.tgt: Likewise as targets.
1212
1213 2013-08-20 Doug Evans <dje@google.com>
1214
1215 * buildsym.c (subfile_stack): Move here from buildsym.h.
1216 (pending_macros): Ditto.
1217 (get_macro_table): New function.
1218 (buildsym_init): Initialize subfile_stack.
1219 * coffread.c (type_vector,type_vector_length): Moved here from
1220 buildsym.h.
1221 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
1222 (coff_symtab_read): Use it.
1223 * dbxread.c (read_ofile_symtab): Delete init of subfile_stack.
1224 * dwarf2read.c (macro_start_file): Replace uses of pending_macros
1225 with call to get_macro_table.
1226 * stabsread.c (type_vector,type_vector_length): Moved here from
1227 buildsym.h.
1228 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
1229 * buildsym.h (get_macro_table): Declare.
1230
1231 2013-08-20 Tom Tromey <tromey@redhat.com>
1232
1233 * dbxread.c (record_minimal_symbol): Make 'name' argument const.
1234 Update.
1235 (read_dbx_dynamic_symtab): Make 'name' const. Remove casts.
1236
1237 2013-08-20 Doug Evans <dje@google.com>
1238
1239 * blockframe.c: Remove #include "psymtab.h".
1240 * cp-support.c: Ditto.
1241 * source.c: Ditto.
1242 * stack.c: Ditto.
1243
1244 2013-08-20 Tom Tromey <tromey@redhat.com>
1245
1246 PR python/15816:
1247 * exceptions.h (return_mask): Now an enum.
1248 (RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL): Now
1249 enum constants.
1250
1251 2013-08-20 Tom Tromey <tromey@redhat.com>
1252
1253 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Use
1254 get_objfile_arch.
1255 * elfread.c (elf_rel_plt_read, elf_gnu_ifunc_record_cache)
1256 (elf_gnu_ifunc_resolve_by_got): Use get_objfile_arch.
1257 * jit.c (jit_object_close_impl): Update.
1258 * jv-lang.c (get_dynamics_objfile): Update.
1259 * linespec.c (add_minsym): Use get_dynamics_objfile.
1260 * objfiles.c (get_objfile_bfd_data): Initialize 'gdbarch' field.
1261 (allocate_objfile): Don't initialize 'gdbarch' field.
1262 (get_objfile_arch): Update.
1263 * objfiles.h (struct objfile_per_bfd_storage) <gdbarch>: New field,
1264 moved from...
1265 (struct objfile) <gdbarch>: ... here. Remove.
1266 * stap-probe.c (stap_can_evaluate_probe_arguments): Use
1267 get_objfile_arch.
1268 * symfile.c (init_entry_point_info): Use get_objfile_arch.
1269
1270 2013-08-20 Alan Modra <amodra@gmail.com>
1271
1272 * doublest.c (convert_floatformat_to_doublest): Use fmt->split_half
1273 for IBM long double nan and inf.
1274 (floatformat_is_negative, floatformat_classify,
1275 floatformat_mantissa): Similarly.
1276 (floatformat_ieee_single, floatformat_ieee_double,
1277 floatformat_ieee_quad, floatformat_arm_ext,
1278 floatformat_ia64_spill): Delete unused vars.
1279 (_initialize_doublest): Delete unused function.
1280 * gdbtypes.c (floatformats_ibm_long_double): Use new big- and
1281 little-endian variants of floatformat_ibm_long_double.
1282
1283 2013-08-19 Luis Machado <lgustavo@codesourcery.com>
1284
1285 * Makefile.in (SFILES): Remove common/target-common.c and
1286 add target/waitstatus.c.
1287 (HFILES_NO_SRCDIR): Remove common/target-common.h and add
1288 target/resume.h, target/wait.h and target/waitstatus.h.
1289 (COMMON_OBS): Remove target-common.o and add
1290 waitstatus.o.
1291 (target-common.o): Remove.
1292 (waitstatus.o): New target object file.
1293 * common/target-common.c: Move contents to
1294 target/waitstatus.c and remove.
1295 * common/target-common.h: Move contents to other files and
1296 remove.
1297 (enum resume_kind: Move to target/resume.h.
1298 (TARGET_WNOHANG): Move to target/wait.h.
1299 (enum target_waitkind): Move to target/waitstatus.h.
1300 (struct target_waitstatus): Likewise.
1301 * target.h: Do not include target-common.h and
1302 include target/resume.h, target/wait.h and
1303 target/waitstatus.h.
1304 * target/resume.h: New file.
1305 * target/wait.h: New file.
1306 * target/waitstatus.h: New file.
1307 * target/waitstatus.c: New file.
1308
1309 2013-08-19 Pedro Alves <palves@redhat.com>
1310
1311 * linux-nat.c (linux_test_for_tracefork)
1312 (linux_test_for_tracesysgood, linux_child_follow_fork)
1313 (lin_lwp_attach_lwp, linux_nat_resume): Don't block child signals.
1314 (linux_nat_wait_1): Extend comment.
1315 (linux_async_pipe): Add comment.
1316
1317 2013-08-15 Kevin Buettner <kevinb@redhat.com>
1318
1319 * rl78-tdep.c (RL78_RAW_PC_REGNUM): New enum.
1320 (RL78_PC_REGNUM): Move to list of pseudo-register enums.
1321 (rl78_register_type, rl78_register_name, rl78_register_reggroup_p):
1322 Update to account for fact that PC is now a pseudo-register.
1323 (rl78_pseudo_register_write, rl78_pseudo_register_read): Add
1324 cases for RL78_PC_REGNUM.
1325
1326 2013-08-15 Muhammad Bilal <mbilal@codesourcery.com>
1327
1328 PR cli/15841
1329 * top.c (quit_force): Skip writing history file
1330 if input is not from terminal.
1331
1332 2013-08-14 Tom Tromey <tromey@redhat.com>
1333
1334 * remote.c (struct remote_state) <echo_nextthread, nextthread,
1335 resultthreadlist>: New fields.
1336 (OPAQUETHREADBYTES, threadref, MAXTHREADLISTRESULTS): Move earlier.
1337 (remote_get_threadlist, remote_threadlist_iterator): Use
1338 new fields. Remove static variables.
1339
1340 2013-08-14 Tom Tromey <tromey@redhat.com>
1341
1342 * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p,
1343 remote_watch_data_address>: New fields.
1344 (remote_stopped_by_watchpoint_p, remote_watch_data_address): Remove.
1345 (process_stop_reply, remote_wait_as)
1346 (remote_check_watch_resources, remote_stopped_data_address): Update.
1347
1348 2013-08-14 Tom Tromey <tromey@redhat.com>
1349
1350 * remote.c (struct remote_state) <async_client_callback,
1351 async_client_context>: New fields.
1352 (async_client_callback, async_client_context): Remove.
1353 (remote_async_serial_handler, remote_async): Update.
1354
1355 2013-08-14 Tom Tromey <tromey@redhat.com>
1356
1357 * remote.c (sizeof_pkt): Remove.
1358 (remote_trace_find): Use rs->buf_size, not sizeof_pkt.
1359
1360 2013-08-14 Tom Tromey <tromey@redhat.com>
1361
1362 * remote.c (struct remote_state) <use_threadinfo_query,
1363 use_threadextra_query>: New fields.
1364 (remote_threads_info, remote_threads_extra_info)
1365 (remote_open_1): Update.
1366
1367 2013-08-14 Tom Tromey <tromey@redhat.com>
1368
1369 * remote.c (struct remote_state) <finished_object,
1370 finished_annex, finished_offset>: New fields.
1371 (remote_read_qxfer): Use remote_state fields; remove static
1372 variables.
1373
1374 2013-08-14 Tom Tromey <tromey@redhat.com>
1375
1376 * remote.c (struct remote_state) <last_sent_step>:
1377 New field.
1378 (last_sent_step): Remove.
1379 (remote_resume, remote_wait_as): Update.
1380
1381 2013-08-14 Tom Tromey <tromey@redhat.com>
1382
1383 * remote.c (struct remote_state) <last_sent_signal>:
1384 New field.
1385 (last_sent_signal): Remove.
1386 (new_remote_state, remote_resume, remote_wait_as): Update.
1387
1388 2013-08-14 Tom Tromey <tromey@redhat.com>
1389
1390 * remote.c (struct remote_state) <last_program_signals_packet>:
1391 New field.
1392 (last_program_signals_packet): Remove.
1393 (remote_program_signals, remote_open_1): Update.
1394
1395 2013-08-14 Tom Tromey <tromey@redhat.com>
1396
1397 * remote.c (struct remote_state) <last_pass_packet>:
1398 New field.
1399 (last_pass_packet): Remove.
1400 (remote_pass_signals, remote_open_1): Update.
1401
1402 2013-08-14 Tom Tromey <tromey@redhat.com>
1403
1404 * remote.c (struct remote_state) <remote_traceframe_number>:
1405 New field.
1406 (remote_traceframe_number): Remove.
1407 (new_remote_state, remote_open_1, set_remote_traceframe)
1408 (remote_trace_find): Update.
1409
1410 2013-08-14 Tom Tromey <tromey@redhat.com>
1411
1412 * remote.c (struct remote_state) <general_thread, continue_thread>:
1413 New fields.
1414 (general_thread, continue_thread): Remove.
1415 (record_currthread, set_thread, set_general_process)
1416 (remote_open_1, extended_remote_attach_1, remote_wait_as)
1417 (extended_remote_mourn_1): Update.
1418
1419 2013-08-14 Tom Tromey <tromey@redhat.com>
1420
1421 * remote.c (struct remote_state) <remote_desc>: New field.
1422 (remote_desc): Remove.
1423 (remote_threads_info, remote_threads_extra_info, remote_close)
1424 (send_interrupt_sequence, remote_start_remote, remote_open_1)
1425 (readchar, remote_xfer_partial, remote_rcmd, packet_command)
1426 (remote_hostio_send_command, remote_file_put, remote_file_get)
1427 (remote_file_delete, remote_can_async_p, remote_is_async_p)
1428 (remote_async, remote_new_objfile, set_range_stepping): Update.
1429
1430 2013-08-14 Tom Tromey <tromey@redhat.com>
1431
1432 * remote.c (remote_state): Now a pointer.
1433 (get_remote_state_raw): Update.
1434 (new_remote_state): New function.
1435 (_initialize_remote): Use new_remote_state.
1436
1437 2013-08-14 Tom Tromey <tromey@redhat.com>
1438
1439 * remote.c (remote_protocol_features): Now const.
1440
1441 2013-08-14 Tom Tromey <tromey@redhat.com>
1442
1443 * remote.c (crc32_table, crc32): Remove.
1444 (remote_verify_memory): Use xcrc32.
1445
1446 2013-08-13 Sergio Durigan Junior <sergiodj@redhat.com>
1447
1448 * value.h (create_internalvar_type_lazy): Adjust prototype
1449 declaration.
1450
1451 2013-08-13 Andrew Burgess <aburgess@broadcom.com>
1452
1453 * common/format.c (parse_format_string): Don't allow '#' flag for
1454 pointer arguments in format string.
1455
1456 2013-08-13 Pierre Muller <muller@sourceware.org>
1457
1458 * utils.c (init_page_info): Only call tgetnum function
1459 if rl_get_screen_size did not return useful values.
1460
1461 2013-08-12 Ali Anwar <ali_anwar@codesourcery.com>
1462
1463 PR breakpoints/15117
1464 * linespec.c (linespec_parse_basic): Check for convenience
1465 variable or history value while parsing.
1466
1467 2013-08-12 Sergio Durigan Junior <sergiodj@redhat.com>
1468
1469 Revert implementation of gdbarch_gdb_signal_{to,from}_target for
1470 AVR.
1471 * avr-tdep.c: Remove include of "linux-tdep.h". Remove enum with
1472 different signals between the generic Linux kernel implementation
1473 and AVR's.
1474 (avr_linux_gdb_signal_from_target): Delete.
1475 (avr_linux_gdb_signal_to_target): Delete.
1476 (avr_gdbarch_init): Don't set gdbarch_gdb_signal_{to,from}_target.
1477
1478 2013-08-09 Doug Evans <dje@google.com>
1479
1480 * dwarf2read.c (create_addrmap_from_index): Ignore bad address table
1481 entries.
1482
1483 2013-08-09 Sergio Durigan Junior <sergiodj@redhat.com>
1484
1485 * linux-tdep.c: Define enum with generic signal numbers.
1486 (linux_gdb_signal_from_target): New function.
1487 (linux_gdb_signal_to_target): Likewise.
1488 (linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
1489 methods to the functions above.
1490 * linux-tdep.h (linux_gdb_signal_from_target): New prototype.
1491 (linux_gdb_signal_to_target): Likewise.
1492 * alpha-linux-tdep.c: Define new enum with signals different
1493 from generic Linux kernel.
1494 (alpha_linux_gdb_signal_from_target): New function.
1495 (alpha_linux_gdb_signal_to_target): Likewise.
1496 (alpha_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
1497 with the functions mentioned above.
1498 * avr-tdep.c: Define enum with differences between Linux kernel
1499 and AVR signals.
1500 (avr_linux_gdb_signal_from_target): New function.
1501 (avr_linux_gdb_signal_to_target): Likewise.
1502 (avr_gdbarch_init): Set gdbarch_gdb_signal_{to,from}_target to
1503 the functions mentioned above.
1504 * sparc-linux-tdep.c: Define enum with differences between SPARC
1505 and generic Linux kernel signal numbers.
1506 (sparc32_linux_gdb_signal_from_target): New function.
1507 (sparc32_linux_gdb_signal_to_target): Likewise.
1508 (sparc32_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
1509 to the functions defined above.
1510 * xtensa-linux-tdep.c: Define enum with differences between
1511 Xtensa and Linux kernel generic signals.
1512 (xtensa_linux_gdb_signal_from_target): New function.
1513 (xtensa_linux_gdb_signal_to_target): Likewise.
1514 (xtensa_linux_init_abi): Set gdbarch_gdb_signal_to_target
1515 to the functions defined above.
1516 * mips-linux-tdep.c: Define enum with differences between
1517 signals in MIPS and Linux kernel generic ones.
1518 (mips_gdb_signal_to_target): New function.
1519 (mips_gdb_signal_from_target): Redefine to use new enum, handle
1520 only different signals from the Linux kernel generic.
1521 (mips_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
1522 the functions defined above.
1523 * mips-linux-tdep.h (enum mips_signals): Remove.
1524
1525 2013-08-09 Pedro Alves <palves@redhat.com>
1526
1527 * avr-tdep.c (XMALLOC): Delete macro.
1528 * cli/cli-dump.c (XMALLOC): Delete macro.
1529
1530 2013-08-09 Pedro Alves <palves@redhat.com>
1531
1532 * cli/cli-dump.c: Don't include cli/cli-dump.h.
1533 (scan_expression_with_cleanup, scan_filename_with_cleanup)
1534 (fopen_with_cleanup, add_dump_command): Make static.
1535 * cli/cli-dump.h: Delete file.
1536 * Makefile.in (HFILES_NO_SRCDIR): Remove reference to
1537 cli/cli-dump.h.
1538
1539 2013-08-09 Pedro Alves <palves@redhat.com>
1540
1541 * tracepoint.c (tfile_start): Show tilde-expanded filename in
1542 error message.
1543
1544 2013-08-09 Pedro Alves <palves@redhat.com>
1545
1546 * breakpoint.c (save_breakpoints): Show tilde-expanded filename in
1547 error message.
1548
1549 2013-08-09 Pedro Alves <palves@redhat.com>
1550
1551 * gcore.c (create_gcore_bfd): Don't use tilde_expand here.
1552 (gcore_command): Use tilde_expand here, and when showing the
1553 filename to the user, show the expanded version.
1554
1555 2013-08-09 Yao Qi <yao@codesourcery.com>
1556
1557 * stack.c (read_frame_arg): Set 'entryval_error' to NULL if
1558 'entryval' is set.
1559
1560 2013-08-08 Azat Khuzhin <a3at.mail@gmail.com> (tiny change)
1561
1562 * gcore.c (create_gcore_bfd): Use tilde_expand.
1563
1564 2013-08-08 Yao Qi <yao@codesourcery.com>
1565
1566 * frame.h (read_frame_local): Declare.
1567 * mi/mi-cmd-stack.c (list_args_or_locals): Call
1568 read_frame_local.
1569 * stack.c (read_frame_local): New.
1570
1571 2013-08-08 Yao Qi <yao@codesourcery.com>
1572
1573 * mi/mi-cmd-stack.c: Update comments to function
1574 list_args_or_locals.
1575
1576 2013-08-07 Tom Tromey <tromey@redhat.com>
1577
1578 PR symtab/15028:
1579 * dwarf2read.c (struct process_psymtab_comp_unit_data): New.
1580 (process_psymtab_comp_unit_reader): Use it.
1581 (process_psymtab_comp_unit): Update. Add "pretend_language"
1582 argument.
1583 (dwarf2_build_psymtabs_hard): Update.
1584 (scan_partial_symbols): Pass CU's language to
1585 process_psymtab_comp_unit.
1586
1587 2013-08-07 Tom Tromey <tromey@redhat.com>
1588
1589 * dwarf2read.c (dw2_get_primary_filename_reader): Remove.
1590 (dwarf2_gdb_index_functions): Update.
1591 * psymtab.c (find_symbol_file_from_partial): Remove.
1592 (psym_functions): Update.
1593 * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
1594 Remove.
1595
1596 2013-08-07 Tom Tromey <tromey@redhat.com>
1597
1598 * symfile.c (set_initial_language): Look up "main" symbol
1599 and use its language.
1600 * symtab.c (find_main_filename): Remove.
1601 * symtab.h (find_main_filename): Remove.
1602
1603 2013-08-07 Tom Tromey <tromey@redhat.com>
1604
1605 * dwarf2read.c (recursively_compute_inclusions): Add
1606 "immediate_parent" argument. Set symtab's "user" field
1607 if not set.
1608 (compute_symtab_includes): Update.
1609
1610 2013-08-07 Tom Tromey <tromey@redhat.com>
1611
1612 * linespec.c (convert_linespec_to_sals): Use maybe_add_address
1613 when adding label symbols.
1614
1615 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
1616 Ulrich Weigand <uweigand@de.ibm.com>
1617
1618 * configure.tgt (powerpc64-*-aix*): Match powerpc64 running aix.
1619 * configure.host (powerpc64-*-aix*): Likewise.
1620
1621 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
1622 Ulrich Weigand <uweigand@de.ibm.com>
1623
1624 * gdb_ptrace.h: Use ptrace64 instead of ptrace if HAVE_PTRACE64
1625 is defined.
1626 * rs6000-nat.c: Check for __ld_info64_ if compiling 64 BIT gdb.
1627 (rs6000_ptrace32): Call ptrace64 instead of ptrace if present.
1628 (rs6000_ptrace64): Call ptace64 instead of ptracex if present.
1629 * configure.ac: Check for ptrace64.
1630 * configure, config.in: Regenerate.
1631
1632 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
1633 Ulrich Weigand <uweigand@de.ibm.com>
1634
1635 * aixthread.c: Call ptrace64 instead of ptracex if defined.
1636 Call ptrace64 instead of ptrace if defined.
1637 Add macro addr_ptr to take care of ptrace address argument.
1638 (pdc_read_regs): Likewise.
1639 (pdc_write_regs): Likewise.
1640 (aix_thread_resume): Likewise.
1641 (fetch_regs_kernel_thread): Likewise.
1642 (store_regs_kernel_thread): Likewise.
1643
1644 2013-08-07 Anton Blanchard <anton@samba.org>
1645
1646 * MAINTAINERS: Add myself to Write After Approval.
1647
1648 2013-08-05 Tom Tromey <tromey@redhat.com>
1649
1650 * aix-thread.c (_initialize_aix_thread): Use
1651 complete_target_initialization.
1652 * bsd-uthread.c (_initialize_bsd_uthread): Use
1653 complete_target_initialization.
1654 * dec-thread.c (_initialize_dec_thread): Use
1655 complete_target_initialization.
1656 * ravenscar-thread.c (_initialize_ravenscar): Use
1657 complete_target_initialization.
1658 * sol-thread.c (_initialize_sol_thread): Use
1659 complete_target_initialization.
1660 * spu-multiarch.c (_initialize_spu_multiarch): Use
1661 complete_target_initialization.
1662
1663 2013-08-05 Tom Tromey <tromey@redhat.com>
1664
1665 * ada-exp.y (write_var_or_type): Use bound_minimal_symbol.
1666 * ada-lang.c (ada_lookup_simple_minsym): Return
1667 bound_minimal_symbol.
1668 * ada-lang.h (ada_lookup_simple_minsym): Update.
1669 * c-exp.y (variable): Use lookup_bound_minimal_symbol.
1670 * f-exp.y (variable): Use lookup_bound_minimal_symbol.
1671 * go-exp.y (variable): Use lookup_bound_minimal_symbol.
1672 * jv-exp.y (push_expression_name): Use lookup_bound_minimal_symbol.
1673 * m2-exp.y (variable): Use lookup_bound_minimal_symbol.
1674 * minsyms.c (msymbol_objfile): Remove.
1675 (lookup_minimal_symbol_internal): New function, from
1676 lookup_minimal_symbol.
1677 (lookup_minimal_symbol): Rewrite using
1678 lookup_minimal_symbol_internal.
1679 (lookup_bound_minimal_symbol): New function.
1680 * minsyms.h (msymbol_objfile): Remove.
1681 (lookup_bound_minimal_symbol): Declare.
1682 * p-exp.y (variable): Use lookup_bound_minimal_symbol.
1683 * parse.c (write_exp_msymbol): Change parameter to a
1684 bound_minimal_symbol.
1685 (write_dollar_variable): Use lookup_bound_minimal_symbol.
1686 * parser-defs.h (write_exp_msymbol): Update.
1687 * printcmd.c (address_info): Use lookup_bound_minimal_symbol.
1688 * symfile.c (simple_read_overlay_table): Use
1689 lookup_bound_minimal_symbol.
1690 * symtab.c (skip_prologue_sal): Don't use msymbol_objfile.
1691 (search_symbols): Likewise.
1692 (print_msymbol_info): Take a bound_minimal_symbol argument.
1693 (symtab_symbol_info, rbreak_command): Update.
1694 * symtab.h (struct symbol_search) <msymbol>: Change type
1695 to bound_minimal_symbol.
1696 * valops.c (find_function_in_inferior): Use
1697 lookup_bound_minimal_symbol.
1698 * value.c (value_fn_field): Use lookup_bound_minimal_symbol.
1699
1700 2013-08-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1701
1702 Code cleanup.
1703 * remote.c (cleanup_sigint_signal_handler): Rename the declaration
1704 to ...
1705 (async_cleanup_sigint_signal_handler): ... this.
1706 (initialize_sigint_signal_handler): Remove declaration.
1707 (handle_remote_sigint): Rename the declaration to ...
1708 (async_handle_remote_sigint): ... this.
1709 (handle_remote_sigint_twice): Rename the declaration to ...
1710 (async_handle_remote_sigint_twice): ... this.
1711 (async_remote_interrupt, async_remote_interrupt_twice)
1712 (remote_interrupt): Remove the declarations.
1713 (remote_interrupt_twice): Rename the declaration ...
1714 (sync_remote_interrupt_twice): ... this.
1715 (sigint_remote_twice_token): Rename the variable to ...
1716 (async_sigint_remote_twice_token): ... this.
1717 (sigint_remote_token): Rename the variable to ...
1718 (async_sigint_remote_token): ... this.
1719 (initialize_sigint_signal_handler): Rename the function to ...
1720 (async_initialize_sigint_signal_handler): ... this. Update the name
1721 inside.
1722 (handle_remote_sigint): Rename the function to ...
1723 (async_handle_remote_sigint): ... this. Update the names inside.
1724 (handle_remote_sigint_twice): Rename the function to ...
1725 (async_handle_remote_sigint_twice): ... this. Update the names inside.
1726 (cleanup_sigint_signal_handler): Rename the function to ...
1727 (async_cleanup_sigint_signal_handler): ... this.
1728 (remote_interrupt): Rename the function to ...
1729 (sync_remote_interrupt): this. Update the names inside.
1730 (remote_interrupt_twice): Rename the function to ...
1731 (sync_remote_interrupt_twice): this. Update the names inside.
1732 (remote_terminal_inferior, remote_terminal_ours, remote_wait_as)
1733 (_initialize_remote): Update the names inside.
1734
1735 2013-08-02 Tom Tromey <tromey@redhat.com>
1736
1737 PR symtab/15719:
1738 * breakpoint.c (update_watchpoint, watchpoint_check)
1739 (watch_command_1): Update.
1740 * eval.c (fetch_subexp_value): Add "preserve_errors"
1741 parameter.
1742 * ppc-linux-nat.c (check_condition): Update.
1743 * value.h (fetch_subexp_value): Update.
1744
1745 2013-08-02 Andrew Burgess <aburgess@broadcom.com>
1746
1747 * mi/mi-interp.c (mi_interpreter_resume): Remove call to
1748 add_file_handler.
1749
1750 2013-08-01 Doug Evans <dje@google.com>
1751
1752 PR symtab/15691
1753 * dwarf2read.c (struct dwarf2_per_cu_data): New member tu_read.
1754 (fill_in_sig_entry_from_dwo_entry): Reorganize asserts.
1755 Add assert of sig_entry->dwo_unit == NULL.
1756 (lookup_dwo_signatured_type): Don't assign TU to a DWO if the TU
1757 had already been read.
1758 (read_signatured_type): Set per_cu.tu_read.
1759
1760 PR symtab/15695
1761 * valops.c (value_struct_elt): Add missing call to check_typedef.
1762 (value_find_oload_method_list): Ditto.
1763
1764 * symtab.c (do_free_search_symbols_cleanup): Change arg to,
1765 effectively, struct symbol_search **.
1766 (make_cleanup_free_search_symbols): Change arg to struct
1767 symbol_search **. All callers updated.
1768 (compare_search_syms): Compare symtab file name and block as well.
1769 (search_symbols_equal): New function.
1770 (sort_search_symbols_remove_dups): Renamed from sort_search_symbols.
1771 New args new_head, new_tail. Result is now void. Remove dups after
1772 sorting the symbols.
1773 (search_symbols): Sort all found symbols once, after all have been
1774 found, and remove duplicates. Simplify cleanup tracking of result.
1775 * symtab.h (make_cleanup_free_search_symbols): Update prototype.
1776
1777 Further workarounds for binutils/15021.
1778 * dwarf2read.c (recursively_compute_inclusions): Change type of result
1779 parameter to VEC (symtab_ptr) **. New parameter all_type_symtabs.
1780 Watch for duplicate symtabs coming from type units.
1781 (compute_symtab_includes): Update call to
1782 recursively_compute_inclusions. Build vector of included symtabs
1783 instead of per_cus.
1784 * symtab.h (symtab_ptr): New typedef.
1785 (DEF_VEC_P (symtab_ptr)): New VEC type.
1786 * linespec.c (symtab_p): Delete. All uses updated to use symtab_ptr
1787 instead.
1788
1789 2013-08-01 Andrew Burgess <aburgess@broadcom.com>
1790
1791 * cli/cli-script.c (script_from_file): Remove use of
1792 error_pre_print.
1793 * main.c (captured_main): Remove use of error_pre_print and
1794 quit_pre_print.
1795 * utils.c (error_pre_print, quit_pre_print): Remove.
1796 * utils.h (error_pre_print, quit_pre_print): Likewise.
1797
1798 2013-08-01 Yao Qi <yao@codesourcery.com>
1799
1800 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Parse argv
1801 with mi_getopt.
1802 (mi_cmd_stack_list_variables): Likewise.
1803
1804 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
1805
1806 * exceptions.c (deprecated_throw_reason): Remove.
1807 * exceptions.h (deprecated_throw_reason): Remove.
1808
1809 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
1810
1811 * remote-mips.c (mips_error): Replace use of
1812 deprecated_throw_reason with throw_verror. Use the error message
1813 passed to mips_error as the error message for throw_verror.
1814
1815 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
1816
1817 * monitor.c (monitor_interrupt_query): Replace use of
1818 deprecated_throw_reason with quit.
1819 * nto-procfs.c (interrupt_query): Likewise.
1820 * remote-fileio.c (remote_fileio_sig_exit): Likewise.
1821 * remote-mips.c (mips_kill): Likewise.
1822 * remote.c (interrupt_query): Likewise.
1823
1824 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
1825
1826 * utils.c (internal_verror): Replace use of deprecated_throw_reason
1827 with call to fatal.
1828
1829 2013-07-31 Pedro Alves <pedro@codesourcery.com>
1830 Yao Qi <yao@codesourcery.com>
1831
1832 * tracepoint.c (trace_dump_command): Select the current frame.
1833
1834 2013-07-30 Doug Evans <dje@google.com>
1835
1836 * dwarf2read.c (process_queue): Add type signature to debug output.
1837
1838 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
1839
1840 * value.c (value_fetch_lazy): Mark optimized out values as such
1841 rather than raising an error.
1842
1843 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
1844
1845 * value.c (value_fetch_lazy): Ensure parent value is not lazy
1846 before checking which bits of the parent, not the child, value are
1847 valid.
1848
1849 2013-07-30 Muhammad Bilal <mbilal@codesorcery.com>
1850
1851 PR gdb/15715
1852 * top.c: Include "filenames.h".
1853 (set_history_filename): New function.
1854 (init_main): Install it as set hook of the "set history filename"
1855 command.
1856
1857 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
1858
1859 * dwarf2read.c (dwarf2_get_ref_die_offset): Constify struct
1860 attribute parameter.
1861 (dwarf2_const_value_data): Constify struct attribute parameter.
1862 (dwarf2_const_value): Constify struct attribute parameter.
1863 (dwarf2_const_value_attr): Constify struct attribute parameter.
1864 (lookup_die_type): Constify struct attribute parameter.
1865 (dwarf2_get_attr_constant_value): Constify struct attribute parameter.
1866 (follow_die_ref_or_sig): Constify struct attribute parameter.
1867 (follow_die_ref): Constify struct attribute parameter.
1868 (follow_die_sig): Constify struct attribute parameter.
1869 (get_DW_AT_signature_type): Constify struct attribute parameter.
1870 (get_type_unit_group): Constify struct attribute parameter.
1871 (fill_in_loclist_baton): Constify struct attribute parameter.
1872 (dwarf2_symbol_mark_computed): Constify struct attribute parameter.
1873 (type_unit_group): Constify struct attribute parameter.
1874
1875 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
1876
1877 * dwarf2read.c (attr_form_is_block): Make argument const.
1878 (attr_form_is_section_offset): Make argument const.
1879 (attr_form_is_constant): Make argument const.
1880 (attr_form_is_ref): Make argument const.
1881
1882 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
1883
1884 * dwarf2read.c (attr_is_ref): Rename to attr_form_is_ref.
1885 All uses updated.
1886 (attr_form_is_ref): Moved below attr_form_is_constant.
1887
1888 2013-07-29 Doug Evans <dje@google.com>
1889
1890 * main.c (captured_command_loop): Tweak comment.
1891
1892 * target.c (target_async_permitted_1): Fix comment.
1893
1894 * symtab.c (iterate_over_some_symtabs): Add comment.
1895
1896 * symtab.c (iterate_over_some_symtabs): Fix indentation.
1897
1898 2013-07-27 Yao Qi <yao@codesourcery.com>
1899
1900 * NEWS: Mention that GDBserver now supports hardware
1901 watchpoints on the MIPS GNU/Linux target.
1902
1903 2013-07-27 Yao Qi <yao@codesourcery.com>
1904
1905 * Makefile.in (HFILES_NO_SRCDIR): Add
1906 common/mips-linux-watch.h.
1907 (mips-linux-watch.o): New rule.
1908 * common/mips-linux-watch.c: New.
1909 * common/mips-linux-watch.h: New.
1910 * config/mips/linux.mh (NATDEPFILES): Add mips-linux-watch.o
1911 * mips-linux-nat.c: Include mips-linux-watch.h.
1912 (W_BIT, R_BIT, I_BIT, W_MASK, R_MASK, I_MASK, IRW_MASK): Move
1913 to common/mips-linux-watch.h.
1914 (MAX_DEBUG_REGISTER): Likewise.
1915 (enum pt_watch_style): Likewise.
1916 (struct mips32_watch_regs): Likewise.
1917 (struct mips64_watch_regs): Likewise.
1918 (struct pt_watch_regs): Likewise.
1919 (struct mips_watchpoint): Likewise.
1920 (mips_linux_watch_get_irw_mask): Move to
1921 common/mips-linux-watch.c.
1922 (get_reg_mask, mips_linux_watch_get_num_valid): Likewise.
1923 (mips_linux_watch_get_watchlo): Likewise.
1924 (mips_linux_watch_set_watchlo): Likewise.
1925 (mips_linux_watch_get_watchhi): Likewise.
1926 (mips_linux_watch_set_watchhi): Likewise.
1927 (mips_linux_read_watch_registers): Likewise.
1928 (mips_linux_watch_type_to_irw): Likewise.
1929 (mips_linux_stopped_data_address, fill_mask): Likewise.
1930 (mips_linux_watch_try_one_watch): Likewise.
1931 (mips_linux_watch_populate_regs): Likewise.
1932
1933 2013-07-27 Yao Qi <yao@codesourcery.com>
1934
1935 * mips-linux-nat.c (get_irw_mask): Rename to ...
1936 (mips_linux_watch_get_irw_mask): ... this. Rename parameter
1937 'set' to 'n'. Update function comment. All callers changed.
1938 (get_reg_mask): Rename parameter 'set' to 'n'. Update
1939 function comment. All callers changed.
1940 (get_num_valid): Rename to ...
1941 (mips_linux_watch_get_num_valid): ... this. Rename parameter
1942 'set' to 'n'. Update function comment. All callers changed.
1943 (get_watchlo): Rename to ...
1944 (mips_linux_watch_get_watchlo): ... this. Rename parameter
1945 'set' to 'n'. Update function comment. All callers changed.
1946 (set_watchlo): Rename to ...
1947 (mips_linux_watch_set_watchlo): ... this. Rename parameter
1948 'set' to 'n'. Update function comment. All callers changed.
1949 (get_watchhi): Rename to ...
1950 (mips_linux_watch_get_watchhi): ... this. Update function
1951 comment. All callers changed.
1952 (set_watchhi): Rename to ...
1953 (mips_linux_watch_set_watchhi): ... this. Update function
1954 comment. All callers changed.
1955 (mips_linux_read_watch_registers): Update function comment.
1956 Add new parameters 'lwpid', 'watch_readback', and
1957 'watch_readback_valid'. Update.
1958 (type_to_irw): Rename to ...
1959 (mips_linux_watch_type_to_irw): ... this. Update function
1960 comment. All callers changed.
1961 (fill_mask): Update function comment.
1962 (try_one_watch): Rename to ...
1963 (mips_linux_watch_try_one_watch): ... this. Change the type
1964 of parameter 'irw' from 'unsigned' to 'uint32_t'.
1965 (populate_regs_from_watches): Rename to ...
1966 (mips_linux_watch_populate_regs): ... this. Add parameter
1967 'current_watches'. All callers changed.
1968
1969 2013-07-27 Yao Qi <yao@codesourcery.com>
1970
1971 * mips-linux-nat.c (MAX_DEBUG_REGISTER): Move it earlier in
1972 the code.
1973 (PTRACE_SET_WATCH_REGS, enum pt_watch_style): Remove.
1974 (struct mips32_watch_regs, struct mips64_watch_regs): Remove.
1975 (struct pt_watch_regs): Likewise.
1976 [!PTRACE_GET_WATCH_REGS] (PTRACE_SET_WATCH_REGS): New macro.
1977 [!PTRACE_GET_WATCH_REGS] (enum pt_watch_style): New.
1978 [!PTRACE_GET_WATCH_REGS] (struct mips32_watch_regs): New.
1979 [!PTRACE_GET_WATCH_REGS] (struct mips64_watch_regs): New.
1980 [!PTRACE_GET_WATCH_REGS] (struct pt_watch_regs): New.
1981
1982 2013-07-27 Yao Qi <yao@codesourcery.com>
1983
1984 * breakpoint.h: Include break-common.h.
1985 (enum target_hw_bp_type): Move to ...
1986 * common/break-common.h: ... here. New.
1987
1988 2013-07-26 Cyril Nikolaev <cyril@nichtverstehen.de>
1989
1990 * inflow.c (terminal_init_inferior_with_pgrp): Save inferior
1991 process group regardless of having tty on stdin.
1992
1993 2013-07-25 Doug Evans <dje@google.com>
1994
1995 * linux-fork.h (detach_fork): Delete.
1996
1997 2013-07-25 Tom Tromey <tromey@redhat.com>
1998
1999 PR remote/15256, PR remote/15266:
2000 * bfd-target.c (target_bfd_reopen): Initialize to_magic.
2001 * monitor.c (monitor_detach): Use unpush_target.
2002 * remote-m32r-sdi.c (m32r_detach): Use unpush_target.
2003 * remote-mips.c (mips_detach): Use unpush_target. Don't
2004 call mips_close.
2005 * remote-sim.c (gdbsim_detach): Use unpush_target.
2006 * target.c (pop_target): Remove.
2007 (pop_all_targets_above): Don't call target_close.
2008 (target_close): Assert that the target is unpushed.
2009 * target.h (pop_target): Don't declare.
2010 * tracepoint.c (tfile_open): Use unpush_target.
2011
2012 2013-07-25 Tom Tromey <tromey@redhat.com>
2013
2014 * linux-thread-db.c (init_thread_db_ops): Call
2015 complete_target_initialization.
2016 (_initialize_thread_db): Don't call add_target.
2017 * target.c (complete_target_initialization): New function.
2018 (add_target_with_completer): Call it.
2019 * target.h (complete_target_initialization): Declare.
2020
2021 2013-07-25 Mark Kettenis <kettenis@gnu.org>
2022
2023 * hppa-tdep.h (enum hppa_regnum): Add members for all space registers.
2024 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Add comment.
2025 (HPPANBSD_SIZEOF_GREGS): New define.
2026 (hppaobsd_supply_gregset): Handle additional registers.
2027 * hppabsd-nat.c (hppabsd_gregset_supplies_p): Adjust to indicate
2028 we provide more registers now.
2029 (hppabsd_supply_gregset): Supply additional registers.
2030 (hppabsd_collect_gregset): Collect additional registers.
2031
2032 2013-07-25 Mark Kettenis <kettenis@gnu.org>
2033
2034 * hppabsd-tdep.c: Include "dwarf2-frame.h".
2035 (hppabsd_dwarf2_frame_init_reg): New function.
2036 (hppabsd_init_abi): Hook in the DWARF CFI frame unwinder.
2037
2038 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
2039
2040 * mi/mi-main.c (output_register): Make MI 'r' format use standard
2041 'z' format code. Remove error for optimized out values, standard
2042 code will handle these fine.
2043
2044 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
2045
2046 * NEWS: Mention new 'z' formatter.
2047 * printcmd.c (print_scalar_formatted): Add new 'z' formatter.
2048 (_initialize_printcmd): Mention 'z' formatter in help text of the
2049 'x' command.
2050
2051 2013-07-24 Maciej W. Rozycki <macro@codesourcery.com>
2052
2053 * mips-tdep.c (micromips_deal_with_atomic_sequence): Correct
2054 formatting.
2055
2056 2013-07-24 Sergio Durigan Junior <sergiodj@redhat.com>
2057
2058 * breakpoint.c (create_longjmp_master_breakpoint): Check if probe
2059 interface can evaluate arguments. Fallback to the old mode if it
2060 cannot.
2061 (create_exception_master_breakpoint): Likewise.
2062 * elfread.c (elf_can_evaluate_probe_arguments): New function.
2063 (struct sym_probe_fns elf_probe_fns): Export function above to the
2064 probe interface.
2065 * probe.c (can_evaluate_probe_arguments): New function.
2066 * probe.h (struct probe_ops) <can_evaluate_probe_arguments>: New
2067 function pointer.
2068 (can_evaluate_probe_arguments): New function prototype.
2069 * solib-svr4.c (svr4_create_solib_event_breakpoints): Check if
2070 probe interface can evaluate arguments. Fallback to the old mode
2071 if it cannot.
2072 * stap-probe.c (stap_get_probe_argument_count): Check if probe
2073 interface can evaluate arguments. Warning the user if it cannot.
2074 (stap_can_evaluate_probe_arguments): New function.
2075 (struct probe_ops stap_probe_ops): Export function above to the
2076 probe interface.
2077 * symfile.h (struct sym_probe_fns) <can_evaluate_probe_arguments>:
2078 New function pointer.
2079
2080 2013-07-24 Luis Machado <lgustavo@codesourcery.com>
2081
2082 * Makefile.in (SFILES): Add common/target-common.c.
2083 Add common/target-common.h to headers.
2084 (COMMON_OBS): Add target-common.o.
2085 (target-common.o): New target.
2086 * linux-nat.h (resume_kind): Move to common/target-common.h.
2087 * target.c (target_waitstatus_to_string): Move to
2088 common/target-common.c.
2089 * target.h: Include target-common.h.
2090 (target_waitkind): Move to common/target-common.h.
2091 (target_waitstatus): Likewise.
2092 (TARGET_WNOHANG): Likewise.
2093 * common/target-common.c: New file.
2094 * common/target-common.h: New file.
2095
2096 2013-07-24 Doug Evans <dje@google.com>
2097
2098 * dwarf2read.c (lookup_dwo_cutu): Change missing DWO complaint to
2099 a warning.
2100
2101 2013-07-23 Yao Qi <yao@codesourcery.com>
2102
2103 * i386-tdep.c (i386_in_stack_tramp_p): Remove unused
2104 parameter 'gdbarch'.
2105 (i386_stack_tramp_frame_sniffer): Caller update.
2106 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Remove
2107 parameter 'gdbarch' and 'target'.
2108 (i386_linux_core_read_description): Caller update.
2109 * amd64-linux-tdep.c (amd64_linux_core_read_description):
2110 Likewise.
2111 * i386-linux-tdep.h (i386_linux_core_read_xcr0): Update
2112 declaration.
2113
2114 2013-07-23 Tom Tromey <tromey@redhat.com>
2115
2116 * dwarf2read.c (init_cutu_and_read_dies): Revert patch from
2117 2013-07-22.
2118
2119 2013-07-22 Doug Evans <dje@google.com>
2120
2121 * exec.h (remove_target_sections): Delete arg abfd.
2122 * exec.c (exec_close): Update call to remove_target_sections.
2123 (remove_target_sections): Delete arg abfd.
2124 * solib.c (update_solib_list): Ditto.
2125 (reload_shared_libraries_1): Ditto.
2126 (clear_solib): Ditto, and unconditionally call remove_target_sections.
2127 * target.h (struct target_section): Rename key to owner.
2128 All uses updated.
2129
2130 2013-07-22 Tom Tromey <tromey@redhat.com>
2131
2132 * solib-som.c (som_open_symbol_file_object): Call do_cleanups.
2133
2134 2013-07-22 Tom Tromey <tromey@redhat.com>
2135
2136 * dwarf2read.c (init_cutu_and_read_dies): Remove 'free_cu_cleanup'.
2137 Simplify cleanup handling.
2138
2139 2013-07-22 Tom Tromey <tromey@redhat.com>
2140
2141 * dwarf2read.c (dwarf_decode_line_header): Call do_cleanups
2142 on all return paths.
2143
2144 2013-07-22 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
2145
2146 * ppc-linux-nat.c (PPC_DEBUG_FEATURE_DATA_BP_DAWR): New define.
2147 (ppc_linux_region_ok_for_hw_watchpoint): Add checking to use the new
2148 DAWR interface for longer ranges hardware watchpoint (up to 512 bytes).
2149
2150 2013-07-22 Phil Muldoon <pmuldoon@redhat.com>
2151
2152 * top.c (print_gdb_version): Add help, apropos description and
2153 url to online documentation.
2154
2155 2013-07-19 Hui Zhu <hui@codesourcery.com>
2156
2157 PR gdb/15692
2158 * mi/mi-cmd-break.c (mi_argv_to_format): Handle double quotes.
2159
2160 2013-07-19 Yao Qi <yao@codesourcery.com>
2161
2162 * target.c (update_current_target): Change the default action
2163 of 'to_traceframe_info' from tcomplain to return_zero.
2164 * target.h (struct target_ops) <to_traceframe_info>: Add more
2165 comments.
2166 * valops.c (read_value_memory): Call
2167 traceframe_available_memory unconditionally.
2168
2169 2013-07-18 Yao Qi <yao@codesourcery.com>
2170
2171 * coffread.c (coff_symfile_read): Iterate over minimal symbols,
2172 if the name is prefixed by "__imp_" or "_imp_", look for minimal
2173 symbol without prefix. If found, set its type to
2174 'mst_solib_trampoline'.
2175
2176 2013-07-17 Doug Evans <dje@google.com>
2177
2178 * NEWS: Mention "set print raw frame-arguments".
2179 * gdbcmd.h (setprintrawlist, showprintrawlist): Declare.
2180 * stack.c (print_raw_frame_arguments): New static global.
2181 (print_frame_arg): Set opts.raw from print_raw_frame_arguments.
2182 (_initialize_stack): New command "set/show print raw frame-arguments".
2183 * valprint.c (setprintrawlist, showprintrawlist): New globals.
2184 (set_print_raw, show_print_raw): New functions.
2185 (_initialize_valprint): New prefix command "set/show print raw".
2186 * valprint.h (value_print_options): Improve comments.
2187
2188 * cli/cli-cmds.c (init_cmd_lists): Delete unnecessary initialization
2189 of all *list variables.
2190
2191 * gdbcmd.h (togglelist): Delete.
2192 * cli/cli-cmds.c (togglelist): Delete.
2193 (init_cmd_lists): Update.
2194 * cli/cli-cmds.h (togglelist): Delete.
2195
2196 2013-07-17 Tom Tromey <tromey@redhat.com>
2197
2198 * dwarf2read.c (dwarf2_per_objfile_free): Clear
2199 dwarf2_per_objfile.
2200
2201 2013-07-16 Doug Evans <dje@google.com>
2202
2203 * nto-tdep.c (nto_relocate_section_addresses): Update,
2204 target_section.bfd deleted.
2205 * ppc64-tdep.c (ppc64_convert_from_func_ptr_addr): Ditto.
2206 * s390-tdep.c (s390_load): Ditto.
2207 * solib-aix.c (solib_aix_relocate_section_addresses): Ditto.
2208
2209 2013-07-16 Andrew Burgess <aburgess@broadcom.com>
2210
2211 * common/format.c (parse_format_string): Add checks for NULL
2212 character before calling strchr.
2213
2214 2013-07-16 Doug Evans <dje@google.com>
2215
2216 * solist.h (target_so_ops.find_and_open_solib): Clarify usage of
2217 temp_pathname argument.
2218 * nto-tdep.c (nto_find_and_open_solib): Fix setting of temp_pathname
2219 when opening the file fails.
2220
2221 * target.h (struct target_section): Delete member bfd.
2222 All users updated to use the_bfd_section->owner instead.
2223 * exec.c (add_to_section_table): Assert bfd is expected value.
2224 Remove initialization of target_section.bfd.
2225 (remove_target_sections): Update.
2226 (section_table_available_memory): Update.
2227 (section_table_xfer_memory_partial): Update.
2228 (print_section_info): Update.
2229 (exec_set_section_address): Update.
2230 * record-full.c (record_full_core_xfer_partial): Update.
2231 * solib-svr4.c (svr4_relocate_section_addresses): Update.
2232 * solib-target.c (solib_target_relocate_section_addresses): Update.
2233 * symfile.c (build_section_addr_info_from_section_table): Update.
2234 * target.c (memory_xfer_live_readonly_partial): Update.
2235 (memory_xfer_partial_1): Update.
2236
2237 2013-07-15 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
2238
2239 * ppc-linux-nat.c: Since the new PowerPC specific ptrace interface is
2240 now available for embedded (BookE) and server (BookS) processors,
2241 correct mentions of 'booke' and adjust comments accordingly in order to
2242 avoid confusion. Rename struct 'booke_debug_info' to 'hwdebug_info'.
2243 (have_ptrace_booke_interface): Rename function and variable
2244 'have_ptrace_booke_interface' to 'have_ptrace_hwdebug_interface'.
2245 Rename struct 'booke_debug_info' to 'hwdebug_info'. Update all uses.
2246 (booke_cmp_hw_point): Rename function 'booke_cmp_hw_point' to
2247 'hwdebug_point_cmp'. Update all uses.
2248 (booke_find_thread_points_by_tid): Rename function
2249 'booke_find_thread_points_by_tid' to
2250 'hwdebug_find_thread_points_by_tid'. Update all uses.
2251 (booke_insert_point): Rename function 'booke_insert_point' to
2252 'hwdebug_insert_point'. Update all uses.
2253 (booke_remove_point): Rename function 'booke_remove_point' to
2254 'hwdebug_remove_point'. Update all uses.
2255
2256 2013-07-15 Maciej W. Rozycki <macro@codesourcery.com>
2257
2258 * mips-tdep.c (mips_gdbarch_init): Replace hardcoded magic
2259 numbers with enum values.
2260
2261 2013-07-15 Ali Anwar <ali_anwar@codesourcery.com>
2262
2263 PR threads/13217
2264 * thread.c (thread_apply_all_command): Check for valid threads
2265 and thread count.
2266 (thread_array_cleanup): New struct.
2267 (set_thread_refcount): New function.
2268
2269 2013-07-11 Andrew Burgess <aburgess@broadcom.com>
2270
2271 * infcmd.c (default_print_one_register_info): Reuse function
2272 print_hex_chars.
2273
2274 2013-07-10 Tom Tromey <tromey@redhat.com>
2275
2276 * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS, ADA_EXP_C): New macros.
2277 (ada-exp.o): New target.
2278
2279 2013-07-10 Sergio Durigan Junior <sergiodj@redhat.com>
2280
2281 * mt-tdep.c (mt_registers_info): Call
2282 get_no_prettyformat_print_options instead of
2283 get_raw_print_options (regression by last patch from Doug
2284 Evans).
2285
2286 2013-07-09 Pedro Alves <palves@redhat.com>
2287
2288 Checked in by Joel Brobecker <brobecker@adacore.com>.
2289 * ada-lang.c (coerce_unspec_val_to_type): Use
2290 value_optimized_out_const.
2291 * value.c (value_optimized_out_const): New function.
2292 * value.h (value_optimized_out_const): New declaration.
2293
2294 2013-07-09 Doug Evans <dje@google.com>
2295
2296 * defs.h (enum val_prettyformat): Renamed from val_prettyprint.
2297 Enum values rename as well. All uses updated.
2298 * valprint.h (value_print_options): Rename member pretty to
2299 pretty format. Rename member prettyprint_arrays to
2300 prettyformat_arrays. Rename member prettyprint_structs to
2301 prettyformat_structs. All uses updated.
2302 (get_no_prettyformat_print_options): Renamed from
2303 get_raw_print_options.
2304 * valprint.c (get_no_prettyformat_print_options): Renamed from
2305 get_raw_print_options. All callers updated.
2306 (show_prettyformat_structs): Renamed from show_prettyprint_structs.
2307 All callers updated.
2308 (show_prettyformat_arrays): Renamed from show_prettyprint_arrays.
2309 All callers updated.
2310 (_initialize_valprint): Improve help text for "set print pretty" and
2311 "set print arrays".
2312
2313 2013-07-09 Andrew Burgess <aburgess@broadcom.com>
2314
2315 * value.c (value_bits_valid): Revert previous change, and change
2316 by Pedro on 2013-07-04, due to regressions in
2317 gdb.dwarf2/implptr.exp and gdb.dwarf2/pieces.exp.
2318
2319 2013-07-08 Andrew Burgess <aburgess@broadcom.com>
2320 Pedro Alves <palves@redhat.com>
2321
2322 * value.c (value_bits_valid): If the value is not lval_computed
2323 or has no check validity handler then the answer is the
2324 optimized_out flag, otherwise defer to the handler.
2325
2326 2013-07-06 Eli Zaretskii <eliz@gnu.org>
2327
2328 * top.c (print_gdb_configuration): Explain in output of
2329 --configuration what does "relocatable" mean.
2330
2331 * main.c (print_gdb_help): Regroup options in the --help text.
2332 See http://sourceware.org/ml/gdb-patches/2013-04/msg00362.html for
2333 the relevant discussions.
2334
2335 2013-07-06 Yao Qi <yao@codesourcery.com>
2336
2337 * breakpoint.h (struct breakpoint_ops) <create_breakpoints_sal>:
2338 Remove parameter 'lsal'.
2339 * breakpoint.c (create_breakpoint): Move local variable 'lsal'
2340 to inner block. Caller update.
2341 (base_breakpoint_create_breakpoints_sal): Update.
2342 (bkpt_create_breakpoints_sal): Likewise.
2343 (tracepoint_create_breakpoints_sal): Likewise.
2344 (strace_marker_create_breakpoints_sal): Get 'lsal' from the
2345 element 0 of vector 'canonical->sals'.
2346
2347 2013-07-05 Luis Machado <lgustavo@codesourcery.com>
2348
2349 * rs6000-tdep.c (rs6000_stab_reg_to_regnum): Return the real
2350 register number instead of the pseudo register one.
2351 (rs6000_dwarf2_reg_to_regnum): Likewise.
2352
2353 2013-07-04 Pedro Alves <palves@redhat.com>
2354
2355 * findvar.c (value_of_register): Use allocate_optimized_out_value
2356 if the register has been optimized out, instead of
2357 set_value_optimized_out.
2358 * frame-unwind.c (frame_unwind_got_optimized): Use
2359 allocate_optimized_out_value.
2360
2361 2013-07-04 Pedro Alves <palves@redhat.com>
2362
2363 * value.c (value_bits_valid): If the value is not lval_computed,
2364 or doesn't have a check_validity hook, assume the value is entirely
2365 valid.
2366
2367 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
2368
2369 * stack.c (read_frame_arg): No longer fetch lazy values.
2370 * value.c (value_optimized_out): If the value is not already
2371 marked optimized out, and is lazy then fetch it.
2372 (value_primitive_field): Move optimized out check to later in the
2373 function, after we have loaded any lazy values.
2374 (value_fetch_lazy): Use optimized out flag directly rather than
2375 calling optimized_out method.
2376
2377 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
2378
2379 * valops.c: Don't include "user-regs.h".
2380 (value_fetch_lazy): Moved to value.c.
2381 * value.c: Include "user-regs.h".
2382 (value_fetch_lazy): Moved from valops.c.
2383
2384 2013-07-04 Yao Qi <yao@codesourcery.com>
2385
2386 Revert:
2387 2013-06-27 Yao Qi <yao@codesourcery.com>
2388
2389 * common/create-version.sh: Update comments. Handle the case
2390 that TARGET_ALIAS is empty.
2391
2392 2013-07-03 Pedro Alves <palves@redhat.com>
2393
2394 * Makefile.in (config.status): Depend on development.sh.
2395 (aclocal_m4_deps): Add libmcheck.m4.
2396 * acinclude.m4: Include libmcheck.m4.
2397 * configure.ac: Source development.sh instead of setting
2398 'development' here. --enable-libmcheck/--disable-libmcheck code
2399 factored out to GDB_AC_LIBMCHECK. Run it.
2400 * development.sh: New file.
2401 * libmcheck.m4: New file.
2402 * configure: Regenerate.
2403
2404 2013-07-02 Tom Tromey <tromey@redhat.com>
2405
2406 * contrib/ari/update-web-ari.sh: Update for version.in change.
2407
2408 2013-07-02 Tom Tromey <tromey@redhat.com>
2409
2410 * common/ptid.h: Comment fixes.
2411
2412 2013-07-01 Tom Tromey <tromey@redhat.com>
2413
2414 * dwarf2read.c (dwarf2_get_dwz_file): Return NULL if
2415 .gnu_debugaltlink not found. Use bfd_get_alt_debug_link_info.
2416 (dwarf2_read_index, create_all_comp_units): Update.
2417
2418 2013-07-01 Tom Tromey <tromey@redhat.com>
2419
2420 * configure.ac (build_warnings): Add -Wold-style-definition.
2421 * configure: Rebuild.
2422 * machoread.c (_initialize_machoread): Use "(void)".
2423 * macrocmd.c (macro_inform_no_debuginfo): Fix formatting;
2424 use "(void)".
2425
2426 2013-07-01 Tom Tromey <tromey@redhat.com>
2427
2428 * configure.ac (build_warnings): Add -Wold-style-declaration.
2429 * configure: Rebuild.
2430 * dsrec.c (make_srec): Use "static const", not "const static".
2431 * h8300-tdep.c (h8300_breakpoint_from_pc): Use "static const",
2432 not "const static".
2433 * mi/mi-parse.c (mi_no_values, mi_simple_values, mi_all_values):
2434 Use "static const", not "const static".
2435 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Use "static const",
2436 not "const static".
2437 * moxie-tdep.c (moxie_breakpoint_from_pc): Use "static const",
2438 not "const static".
2439 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Use "static const",
2440 not "const static".
2441 * v850-tdep.c (v850_breakpoint_from_pc): Use "static const",
2442 not "const static".
2443 (v850_dbtrap_breakpoint_from_pc): Likewise.
2444 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Use "static const",
2445 not "const static".
2446
2447 2013-07-01 Tom Tromey <tromey@redhat.com>
2448
2449 * configure.ac (build_warnings): Add -Wmissing-parameter-type.
2450 * configure: Rebuild.
2451
2452 2013-07-01 Pedro Alves <palves@redhat.com>
2453
2454 * defs.h: Include "pathmax.h".
2455 * utils.c: Don't include sys/param.h.
2456 (gdb_realpath): Remove code that checks for MAXPATHLEN.
2457 * solib-ia64-hpux.c (ia64_hpux_handle_load_event): Use PATH_MAX
2458 instead of MAXPATHLEN.
2459 * solib-sunos.c: Don't include sys/param.h.
2460 * xcoffread.c: Don't include sys/param.h.
2461 * bsd-kvm.c: Don't include sys/param.h.
2462 * darwin-nat.c: Don't include sys/param.h.
2463 (darwin_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
2464 * darwin-nat-info.c: Don't include sys/param.h.
2465 * fbsd-nat.c (fbsd_pid_to_exec_file): Use PATH_MAX instead of
2466 MAXPATHLEN.
2467 * i386obsd-nat.c: Don't include sys/param.h.
2468 * inf-child.c: Don't include sys/param.h.
2469 (inf_child_fileio_readlink): Use PATH_MAX instead of MAXPATHLEN.
2470 * linux-fork.c: Don't include sys/param.h.
2471 (fork_save_infrun_state): Use PATH_MAX instead of MAXPATHLEN.
2472 * linux-nat.c: Don't include sys/param.h.
2473 (linux_child_pid_to_exec_file, linux_proc_pending_signals)
2474 (linux_proc_pending_signals): Use PATH_MAX instead of MAXPATHLEN.
2475 * m68klinux-nat.c: Don't include sys/param.h.
2476 * nbsd-nat.c: Don't include sys/param.h.
2477 (nbsd_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
2478 * ppc-linux-nat.c: Don't include sys/param.h.
2479 * rs6000-nat.c: Don't include sys/param.h.
2480 * spu-linux-nat.c. Don't include sys/param.h.
2481 * windows-nat.c: Don't include sys/param.h.
2482 * xtensa-linux-nat.c: Don't include sys/param.h.
2483 * config/i386/nm-fbsd.h: Don't include sys/param.h.
2484
2485 2013-07-01 Pedro Alves <palves@redhat.com>
2486
2487 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add pathmax.
2488 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/pathmax.m4.
2489 * gnulib/aclocal.m4: Regenerate.
2490 * gnulib/config.in: Regenerate.
2491 * gnulib/configure: Regenerate.
2492 * gnulib/import/pathmax.h: New file.
2493 * gnulib/import/Makefile.am: Regenerate.
2494 * gnulib/import/Makefile.in: Regenerate.
2495 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
2496 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
2497 * gnulib/import/m4/pathmax.m4: New file.
2498
2499 2013-07-01 Pedro Alves <palves@redhat.com>
2500
2501 * configure.ac (GDBINIT): Define, depending on host.
2502 * go32-nat.c (init_go32_ops): Don't override gdbinit here.
2503 * top.c (PATH_MAX): Delete fallback definition.
2504 (GDBINIT_FILENAME): Delete.
2505 (gdbinit): Reimplement as const char array set to the GDBINIT
2506 string constant.
2507 * top.h (gdbinit): Make const.
2508 * configure, config.in: Regenerate.
2509
2510 2013-07-01 Pedro Alves <palves@redhat.com>
2511
2512 * cli/cli-cmds.c (source_script): Make 'file' parameter const.
2513 * cli/cli-cmds.h (source_script): Likewise.
2514 * exceptions.c (catch_command_errors_const): New function.
2515 * exceptions.h (catch_command_errors_const): Declare.
2516 * main.c (get_init_files): Make parameters const, and adjust.
2517 (captured_main): Make 'system_gdbinit', 'home_gdbinit' and
2518 'local_gdbinit' locals const. Adjust to use
2519 catch_command_errors_const.
2520 (print_gdb_help): Make 'system_gdbinit', 'home_gdbinit' and
2521 'local_gdbinit' locals const.
2522
2523 2013-07-01 Pedro Alves <palves@redhat.com>
2524
2525 * defs.h: Don't check HAVE_UNISTD_H before including <unistd.h>.
2526 (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO): Delete.
2527 * tracepoint.c: Don't check HAVE_UNISTD_H before including
2528 <unistd.h>.
2529
2530 2013-07-01 Pedro Alves <palves@redhat.com>
2531
2532 Import the "unistd" gnulib module.
2533 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add "unistd".
2534 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/off_t.m4,
2535 import/m4/ssize_t.m4, import/m4/sys_types_h.m4 and
2536 import/m4/unistd_h.m4.
2537 * gnulib/aclocal.m4: Renenerate.
2538 * gnulib/config.in: Renenerate.
2539 * gnulib/configure: Renenerate.
2540 * gnulib/import/Makefile.am: Renenerate.
2541 * gnulib/import/Makefile.in: Renenerate.
2542 * gnulib/import/m4/gnulib-cache.m4: Renenerate.
2543 * gnulib/import/m4/gnulib-comp.m4: Renenerate.
2544 * gnulib/import/m4/off_t.m4: New file.
2545 * gnulib/import/m4/ssize_t.m4: New file.
2546 * gnulib/import/m4/sys_types_h.m4: New file.
2547 * gnulib/import/m4/unistd_h.m4: New file.
2548 * gnulib/import/sys_types.in.h: New file.
2549 * gnulib/import/unistd.c: New file.
2550 * gnulib/import/unistd.in.h: New file.
2551
2552 2013-07-01 Pedro Alves <palves@redhat.com>
2553
2554 * utils.c <pathconf/_PC_PATH_MAX use>: Check if _PC_PATH_MAX is
2555 defined instead of checking HAVE_UNISTD_H.
2556
2557 2013-07-01 Pedro Alves <palves@redhat.com>
2558
2559 Reimport gnulib from scratch.
2560 * gnulib/Makefile.in (aclocal_m4_deps): Remove reference to
2561 import/m4/onceonly.m4.
2562 * gnulib/aclocal.m4: Renegerate.
2563 * gnulib/config.in: Renegerate.
2564 * gnulib/configure: Renegerate.
2565 * gnulib/import/Makefile.in: Renegerate.
2566 * gnulib/import/extra/update-copyright: Renegerate.
2567 * gnulib/import/m4/onceonly.m4: Delete.
2568
2569 2013-07-01 Pedro Alves <palves@redhat.com>
2570
2571 * tui/tui-regs.c (pagination_enabled): Delete declaration.
2572
2573 2013-06-30 Jan Kratochvil <jan.kratochvil@redhat.com>
2574
2575 Code cleanup.
2576 * remote.c (async_remote_interrupt_twice): Make it static.
2577 * remote.h (async_remote_interrupt_twice): Remove the declaration.
2578
2579 2013-06-29 Sergio Durigan Junior <sergiodj@redhat.com>
2580
2581 * ia64-linux-tdep.c: Include <ctype.h>.
2582 (ia64_linux_stap_is_single_operand): New function.
2583 (ia64_linux_init_abi): Initialize SystemTap related attributes.
2584
2585 2013-06-28 Tom Tromey <tromey@redhat.com>
2586
2587 * Makefile.in (version.c): Use version.in, not
2588 common/version.in.
2589 * common/create-version.sh: Likewise.
2590 * common/version.in: Move...
2591 * version.in: ...here.
2592
2593 2013-06-28 Pedro Alves <palves@redhat.com>
2594
2595 * infrun.c (set_observer_mode): Don't declare pagination_enabled
2596 here.
2597 * utils.h (pagination_enabled): Declare.
2598
2599 2013-06-28 Pedro Alves <palves@redhat.com>
2600
2601 * infrun.c (non_stop, non_stop_1, set_non_stop, show_non_stop):
2602 Move higher up in file.
2603
2604 2013-06-28 Tom Tromey <tromey@redhat.com>
2605
2606 * tracepoint.c (deprecated_readline_begin_hook)
2607 (deprecated_readline_hook, deprecated_readline_end_hook): Don't
2608 declare.
2609
2610 2013-06-28 Pedro Alves <palves@redhat.com>
2611
2612 PR tui/14880
2613 * tui/tui-regs.c (tui_get_register): Fetch value contents before
2614 checking if they're available.
2615 * value.c (value_available_contents_eq): Change comment.
2616 * value.h (value_available_contents_eq): Expand comment.
2617
2618 2013-06-27 Tom Tromey <tromey@redhat.com>
2619
2620 * target.c (find_run_target): Remove.
2621 * target.h (find_run_target): Remove.
2622
2623 2013-06-27 Tom Tromey <tromey@redhat.com>
2624
2625 * corelow.c (core_gdbarch): Now static.
2626
2627 2013-06-27 Tom Tromey <tromey@redhat.com>
2628
2629 * target.c (target_struct_index): Remove.
2630
2631 2013-06-27 Pedro Alves <palves@redhat.com>
2632
2633 * infrun.c: Remove comment describing the 'stepping over runtime
2634 loader dynamic symbol resolution code' mechanism; moved to
2635 gdbint.texinfo.
2636
2637 2013-06-27 Pedro Alves <palves@redhat.com>
2638
2639 * exceptions.c (catch_command_errors): Remove spurious space.
2640 * exceptions.h (catch_command_errors): Second parameter is "arg",
2641 not "command".
2642
2643 2013-06-27 Yao Qi <yao@codesourcery.com>
2644
2645 * common/create-version.sh: Update comments. Handle the case
2646 that TARGET_ALIAS is empty.
2647
2648 2013-06-26 Pedro Alves <palves@redhat.com>
2649
2650 * infrun.c (SOLIB_IN_DYNAMIC_LINKER): Delete macro and describing
2651 comment.
2652
2653 2013-06-26 Pedro Alves <palves@redhat.com>
2654
2655 * infrun.c: Update comments on stepping over runtime loader
2656 dynamic symbol resolution code.
2657
2658 2013-06-26 Sergio Durigan Junior <sergiodj@redhat.com>
2659
2660 * ax-gdb.h (union exp_element): Forward declare.
2661 * parser-defs.h: Include expression.h.
2662
2663 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
2664
2665 * mips-tdep.c (fetch_mips_16): Use unmake_compact_addr.
2666
2667 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
2668
2669 * tracepoint.c (trace_save): Extend tsave to save starttime, stoptime.
2670
2671 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
2672
2673 Fix trace-status to output proper start-time and stop-time.
2674 * tracepoint.c (trace_status_command): Fix type of printf arg to
2675 prevent improper type conversion.
2676 (trace_status_mi): Likewise.
2677
2678 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
2679
2680 * mips-tdep.c (mips_next_pc): Fix a typo.
2681
2682 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
2683
2684 * mips-tdep.c (micromips_scan_prologue): Fix a typo.
2685
2686 2013-06-26 Pedro Alves <pedro@codesourcery.com>
2687 Yao Qi <yao@codesourcery.com>
2688
2689 * mi/mi-cmds.c (mi_cmds): Register -trace-frame-collected.
2690 * mi/mi-cmds.h (mi_cmd_trace_frame_collected): Declare.
2691 * mi/mi-main.c (print_variable_or_computed): New function.
2692 (mi_cmd_trace_frame_collected): New function.
2693 * tracepoint.c (find_trace_state_variable_by_number): New.
2694 (struct traceframe_info): Move to tracepoint.h
2695 (struct collection_list): Likewise.
2696 (do_collect_symbol): Include locals and arguments in the
2697 collected variables list.
2698 (clear_collection_list): Clear wholly collected variables list
2699 and computed variables list.
2700 (append_exp): New function.
2701 (encode_actions_1): Include variables in the wholly
2702 collected variables list. Include memory ranges and
2703 full-fledged expressions in the computed expressions list.
2704 (encode_actions): Move some code to ...
2705 Return the cleanup chain.
2706 (encode_actions_rsp): ... here. New function.
2707 (get_traceframe_location, get_traceframe_info): Remove static.
2708 * tracepoint.h (struct memrange): Moved from tracepoint.c.
2709 (struct collection_list): Moved from tracepoint.c. Add two
2710 new fields 'wholly_collected' and 'computed'.
2711 (find_trace_state_variable_by_number): Declare.
2712 (encode_actions): Adjust declaration.
2713 (encode_actions_rsp): Declare.
2714 (get_traceframe_info, get_traceframe_location): Declare.
2715
2716 * NEWS: Mention new MI command -trace-frame-collected.
2717
2718 2013-06-26 Pedro Alves <pedro@codesourcery.com>
2719 Yao Qi <yao@codesourcery.com>
2720
2721 * ctf.c (ctf_traceframe_info): Push trace state variables
2722 present in the trace data into the traceframe info object.
2723 * breakpoint.c (DEF_VEC_I): Remove.
2724 * common/filestuff.c (DEF_VEC_I): Likewise.
2725 * dwarf2loc.c (DEF_VEC_I): Likewise.
2726 * mi/mi-main.c (DEF_VEC_I): Likewise.
2727 * common/gdb_vecs.h (DEF_VEC_I): Define vector for int.
2728 * features/traceframe-info.dtd: Add tvar element and its
2729 attributes.
2730 * tracepoint.c (free_traceframe_info): Free vector 'tvars'.
2731 (build_traceframe_info): Push trace state variables present in
2732 the trace data into the traceframe info object.
2733 (traceframe_info_start_tvar): New function.
2734 (tvar_attributes): New.
2735 (traceframe_info_children): Add "tvar" element.
2736 * tracepoint.h (struct traceframe_info) <tvars>: New field.
2737
2738 * NEWS: Mention the change in GDB and GDBserver.
2739
2740 2013-06-26 Pedro Alves <pedro@codesourcery.com>
2741 Yao Qi <yao@codesourcery.com>
2742
2743 * tracepoint.c (trace_dump_command): Move code to ...
2744 (get_traceframe_location): ... here. New.
2745
2746 2013-06-26 Pedro Alves <pedro@codesourcery.com>
2747 Yao Qi <yao@codesourcery.com>
2748
2749 * tracepoint.c (trace_dump_command): GDB emits an error
2750 instead of a warning when a traceframe is not selected.
2751
2752 2013-06-26 Pedro Alves <pedro@codesourcery.com>
2753 Yao Qi <yao@codesourcery.com>
2754
2755 * tracepoint.c (tracepoint_list, stepping_list): Remove.
2756 (clear_collection_list): Free fields 'aexpre_list' and 'list'
2757 in collection_list.
2758 (do_clear_collection_list, init_collection_list): New.
2759 (encode_actions): Add local variables 'tracepoint_list' and
2760 'stepping_list'. Call init_collection_list and make cleanup
2761 which calls do_clear_collection_list. Don't call
2762 clear_collection_list.
2763 (_initialize_tracepoint): Delete references to
2764 'tracepoint_list' and 'stepping_list'.
2765
2766 2013-06-25 Tom Tromey <tromey@redhat.com>
2767
2768 * common/create-version.sh (date): Use "$", not "$$" in sed
2769 expression.
2770
2771 2013-06-25 Kevin Buettner <kevinb@redhat.com>
2772
2773 * NEWS (New targets): Add entry for TI MSP430.
2774
2775 2013-06-25 Yao Qi <yao@codesourcery.com>
2776
2777 * remote.c (remote_start_remote): Move code to upload tsv
2778 earlier.
2779
2780 2013-06-25 Yao Qi <yao@codesourcery.com>
2781 Hui Zhu <hui@codesourcery.com>
2782 Pedro Alves <palves@redhat.com>
2783
2784 PR breakpoints/15075
2785 PR breakpoints/15434
2786 * breakpoint.c (bpstat_stop_status): Call
2787 b->ops->after_condition_true.
2788 (update_dprintf_command_list): Don't append "continue" command
2789 to the command list of dprintf breakpoint.
2790 (base_breakpoint_after_condition_true): New function.
2791 (base_breakpoint_ops): Add base_breakpoint_after_condition_true.
2792 (dprintf_after_condition_true): New function.
2793 (initialize_breakpoint_ops): Set dprintf_after_condition_true.
2794 * breakpoint.h (breakpoint_ops): Add after_condition_true.
2795
2796 2013-06-24 Kevin Buettner <kevinb@redhat.com>
2797
2798 * Makefile.in (ALL_TARGET_OBS): Add msp430-tdep.o.
2799 (ALLDEPFILES): Add msp430-tdep.c.
2800 * configure.tgt (msp430*-*-elf): New target.
2801 * msp430-tdep.c: New file.
2802
2803 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
2804
2805 * mips-tdep.c (mips_elf_make_msymbol_special): Handle MIPS16 and
2806 microMIPS synthetic symbols.
2807
2808 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
2809
2810 * objfiles.h (pc_in_section): New prototype.
2811 (in_plt_section): Remove name argument, replace prototype with
2812 static inline function.
2813 * mips-tdep.h: Include "objfiles.h".
2814 (in_mips_stubs_section): New function.
2815 * hppa-tdep.h (gdbarch_tdep): Remove name argument of
2816 in_solib_call_trampoline member.
2817 (hppa_in_solib_call_trampoline): Remove name argument.
2818 * objfiles.c (pc_in_section): New function.
2819 (in_plt_section): Remove function.
2820 * mips-linux-tdep.c: Include "objfiles.h".
2821 (mips_linux_in_dynsym_stub): Call in_mips_stubs_section. Remove
2822 name argument. Return 1 rather than the low 16-bit halfword of
2823 any instruction examined.
2824 (mips_linux_in_dynsym_resolve_code): Update
2825 mips_linux_in_dynsym_stub call accordingly.
2826 * mips-tdep.c (mips_stub_frame_sniffer): Use in_mips_stubs_section
2827 rather than an equivalent hand-coded sequence.
2828 * hppa-hpux-tdep.c (in_opd_section): Remove function.
2829 (hppa32_hpux_in_solib_call_trampoline): Remove name argument.
2830 (hppa64_hpux_in_solib_call_trampoline): Likewise.
2831 (hppa64_hpux_find_global_pointer): Use pc_in_section rather than
2832 in_opd_section.
2833 * hppa-tdep.c (hppa_stub_unwind_sniffer): Remove name argument
2834 on call to tdep->in_solib_call_trampoline.
2835 (hppa_in_solib_call_trampoline): Remove name argument, update
2836 according to in_plt_section change.
2837 (hppa_skip_trampoline_code): Update according to in_plt_section
2838 change.
2839 * aarch64-tdep.c (aarch64_stub_unwind_sniffer): Likewise.
2840 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code):
2841 Likewise.
2842 * arm-tdep.c (arm_stub_unwind_sniffer): Likewise.
2843 * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
2844 * hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
2845 * nios2-tdep.c (nios2_stub_frame_sniffer): Likewise.
2846 * nto-tdep.c (nto_relocate_section_addresses): Likewise.
2847 * s390-tdep.c (s390_stub_frame_sniffer): Likewise.
2848 * sh-tdep.c (sh_stub_unwind_sniffer): Likewise.
2849 * solib-dsbt.c (dsbt_in_dynsym_resolve_code): Likewise.
2850 * solib-frv.c (frv_in_dynsym_resolve_code): Likewise.
2851 * solib-svr4.c (svr4_in_dynsym_resolve_code): Likewise.
2852 * solib-target.c (solib_target_in_dynsym_resolve_code): Likewise.
2853 * sparc-tdep.c (sparc_analyze_prologue): Likewise.
2854 * tic6x-tdep.c (tic6x_stub_unwind_sniffer): Likewise.
2855
2856 2013-06-24 Joel Brobecker <brobecker@adacore.com>
2857
2858 * common/create-version.sh: Fix expansion of $host_alias
2859 and $target_alias in generation of HOST_NAME and TARGET_NAME
2860 (resp.).
2861
2862 2013-06-24 Tom Tromey <tromey@redhat.com>
2863
2864 * common/create-version.sh: New file.
2865 * Makefile.in (version.c): Use bfd/version.h, common/version.in,
2866 create-version.sh.
2867 (HFILES_NO_SRCDIR): Use common/version.h.
2868 * version.in: Move to ...
2869 * common/version.in: ... here. Replace date with "DATE".
2870 * version.h: Move to ...
2871 * common/version.h: ... here.
2872
2873 2013-06-21 Joel Brobecker <brobecker@adacore.com>
2874
2875 * gdb/gnulib/Makefile.in: Update date in copyright header.
2876 * gdb/gnulib/configure.ac: Ditto.
2877 * gdb/gnulib/update-gnulib.sh: Ditto.
2878
2879 2013-06-21 Joel Brobecker <brobecker@adacore.com>
2880
2881 * copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by
2882 "gdb/gnulib/import".
2883
2884 2013-06-21 Will Newton <will.newton@linaro.org>
2885
2886 * doublest.c (ldfrexp): Remove function.
2887 (convert_doublest_to_floatformat): Call frexpl instead of
2888 ldfrexp.
2889
2890 2013-06-21 Will Newton <will.newton@linaro.org>
2891
2892 * gnulib/update-gnulib.sh(IMPORTED_GNULIB_MODULES): Add frexpl.
2893 * gnulib/aclocal.m4: Regenerate.
2894 * gnulib/config.in: Regenerate.
2895 * gnulib/configure: Regenerate.
2896 * gnulib/import/Makefile.am: Update.
2897 * gnulib/import/Makefile.in: Update.
2898 * gnulib/import/m4/gnulib-cache.m4: Update.
2899 * gnulib/import/m4/gnulib-comp.m4: Update.
2900 * gnulib/import/float+.h: Import.
2901 * gnulib/import/float.c: Import.
2902 * gnulib/import/float.in.h: Import.
2903 * gnulib/import/fpucw.h: Import.
2904 * gnulib/import/frexp.c: Import.
2905 * gnulib/import/frexpl.c: Import.
2906 * gnulib/import/isnan.c: Import.
2907 * gnulib/import/isnand-nolibm.h: Import.
2908 * gnulib/import/isnand.c: Import.
2909 * gnulib/import/isnanl-nolibm.h: Import.
2910 * gnulib/import/isnanl.c: Import.
2911 * gnulib/import/itold.c: Import.
2912 * gnulib/import/m4/exponentd.m4: Import.
2913 * gnulib/import/m4/exponentl.m4: Import.
2914 * gnulib/import/m4/float_h.m4: Import.
2915 * gnulib/import/m4/fpieee.m4: Import.
2916 * gnulib/import/m4/frexp.m4: Import.
2917 * gnulib/import/m4/frexpl.m4: Import.
2918 * gnulib/import/m4/isnand.m4: Import.
2919 * gnulib/import/m4/isnanl.m4: Import.
2920 * gnulib/import/m4/math_h.m4: Import.
2921 * gnulib/import/math.c: Import.
2922 * gnulib/import/math.in.h: Import.
2923
2924 2013-06-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2925
2926 * common/linux-btrace.c (cpu_supports_btrace): Remove variable vendor,
2927 replace strcmp with signature_INTEL_ebx, signature_INTEL_ecx and
2928 signature_INTEL_edx comparisons.
2929
2930 2013-06-20 Doug Evans <dje@google.com>
2931
2932 symtab/15652
2933 * dwarf2read.c (try_open_dwop_file): New arg search_cwd.
2934 All callers updated.
2935 (open_dwp_file): If we can't find the dwp file, search the basename
2936 in debug-file-directory.
2937
2938 * dwarf2read.c (struct dwp_file): Fix comment.
2939 (open_and_init_dwp_file): Set dwp_file->name to bfd's file name.
2940
2941 * source.c (openp): Document OPF_TRY_CWD_FIRST+OPF_SEARCH_IN_PATH
2942 better.
2943
2944 2013-06-20 Yao Qi <yao@codesourcery.com>
2945
2946 * breakpoint.c (create_breakpoint): Fix code indentation.
2947
2948 2013-06-20 Yao Qi <yao@codesourcery.com>
2949
2950 * breakpoint.c (create_breakpoints_sal_default): Remove
2951 parameter 'lsal'. Update declaration.
2952 (bkpt_create_breakpoints_sal): Caller update.
2953 (tracepoint_create_breakpoints_sal): Likewise.
2954
2955 2013-06-20 Pedro Alves <pedro@codesourcery.com>
2956 Yao Qi <yao@codesourcery.com>
2957
2958 * NEWS: Mention the new option '--skip-unavailable' of command
2959 -data-list-register-values.
2960 * mi/mi-main.c (mi_cmd_data_list_register_values): Accept the
2961 --skip-unavailable option. Adjust to use output_register.
2962 (output_register): Add new 'skip_unavailable' parameter.
2963 Handle it.
2964
2965 2013-06-19 Mike Frysinger <vapier@gentoo.org>
2966
2967 * Makefile.in (HFILES_NO_SRCDIR): Add common/i386-cpuid.h and
2968 common/i386-gcc-cpuid.h.
2969 * common/i386-cpuid.h: New wrapper header around i386-gcc-cpuid.h.
2970 * common/i386-gcc-cpuid.h: Rename from testsuite/gdb.arch/i386-cpuid.h.
2971 Copy the latest version from upstream gcc.
2972 * common/linux-btrace.c: Include i386-cpuid.h.
2973 (intel_supports_btrace): Delete x86 ifdefs and replace inline asm with
2974 call to i386_cpuid.
2975 (cpu_supports_btrace): Likewise.
2976 * go32-nat.c: Include i386-cpuid.h.
2977 (go32_sysinfo): Add (disabled) calls to i386_cpuid with comments.
2978
2979 2013-06-19 Doug Evans <dje@google.com>
2980
2981 * symfile.c (symfile_bfd_open): Delete unnecessary declaration.
2982 (get_section_index): Ditto.
2983
2984 2013-06-19 Tom Tromey <tromey@redhat.com>
2985
2986 * breakpoint.c (_initialize_breakpoint): Remove trailing \n from
2987 "dprintf" help.
2988
2989 2013-06-18 Doug Evans <dje@google.com>
2990
2991 * dwarf2read.c (dw2_symtab_iter_next): Check value of cu_index
2992 before using it.
2993 (dw2_expand_symtabs_matching): Fix symbol kind validity check.
2994 Move test of cu_index closer to use. Print complaint if cu_index
2995 is bad.
2996
2997 2013-06-18 Joel Brobecker <brobecker@adacore.com>
2998
2999 * machoread.c (oso_vector): Delete this global.
3000 (macho_register_oso): Add new parameter "oso_vector_ptr".
3001 Use it instead of the "oso_vector" global.
3002 (macho_symtab_read, macho_symfile_read_all_oso): Likewise.
3003 (macho_symfile_read): Use a local oso_vector, to be free'ed
3004 at the end of this function, in place of the old "oso_vector"
3005 global. Update various function calls accordingly. Use one
3006 single cleanup chain for the entire function.
3007
3008 2013-06-18 Joel Brobecker <brobecker@adacore.com>
3009
3010 * dwarf2read.c (dwarf2_per_objfile_free): Replace uses of
3011 DWARF2_PER_OBJFILE by uses of DATA instead.
3012
3013 2013-06-18 Tom Tromey <tromey@redhat.com>
3014
3015 * break-catch-sig.c (signal_catchpoint_explains_signal): Add 'sig'
3016 argument.
3017 * breakpoint.c (bpstat_explains_signal): Add 'sig' argument.
3018 Special case signals other than GDB_SIGNAL_TRAP.
3019 (explains_signal_watchpoint): New function.
3020 (base_breakpoint_explains_signal): Add 'sig' argument.
3021 (initialize_breakpoint_ops): Set 'explains_signal' method for
3022 watchpoints.
3023 * breakpoint.h (struct breakpoint_ops) <explains_signal>: Add
3024 signal argument.
3025 (bpstat_explains_signal): Likewise.
3026 * infrun.c (handle_syscall_event, handle_inferior_event): Update.
3027
3028 2013-06-18 Tom Tromey <tromey@redhat.com>
3029
3030 * python/py-inferior.c (gdbpy_selected_inferior): Don't incref.
3031
3032 2013-06-18 Tom Tromey <tromey@redhat.com>
3033
3034 * python/python.c (finish_python_initialization): Decref
3035 'pythondir' on failure path as well.
3036
3037 2013-06-18 Tom Tromey <tromey@redhat.com>
3038
3039 PR symtab/15391:
3040 * dwarf2loc.c (read_pieced_value): Truncate this_size_bits
3041 after taking bits_to_skip into account. Sign extend byte_offset.
3042 * utils.h (gdb_sign_extend): Declare.
3043 * utils.c (gdb_sign_extend): New function.
3044
3045 2013-06-18 Jan Kratochvil <jan.kratochvil@redhat.com>
3046
3047 * dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.
3048
3049 2013-06-17 Pierre Muller <muller@sourceware.org>
3050
3051 * corelow.c (core_open): Print GDB signal name instead of target
3052 signal number.
3053
3054 2013-06-17 Mike Frysinger <vapier@gentoo.org>
3055
3056 * .gitignore: Add /gcore.
3057
3058 2013-06-13 Doug Evans <dje@google.com>
3059
3060 * dwarf2read.c (try_open_dwop_file): Work around behaviour of
3061 OPF_TRY_CWD_FIRST to not search path if the file contains a '/'.
3062
3063 2013-06-12 Phil Muldoon <pmuldoon@redhat.com>
3064
3065 * stack.c (backtrace_command_1): Fix indentation.
3066
3067 2013-06-11 Joel Brobecker <brobecker@adacore.com>
3068
3069 * window-nat.c (thread_rec): Add missing empty line after
3070 local variable declaration.
3071
3072 2013-06-11 Joel Brobecker <brobecker@adacore.com>
3073
3074 * windows-nat.c (thread_rec): Revert format used to print
3075 error code returned by SuspendThread from %d back to %u.
3076
3077 2013-06-11 Joel Brobecker <brobecker@adacore.com>
3078
3079 * windows-nat.c (windows_continue): Add "0x" prefix for thread
3080 ID in debug trace.
3081 (get_windows_debug_event): Likewise, for all debug traces.
3082
3083 2013-06-11 Joel Brobecker <brobecker@adacore.com>
3084
3085 * window-nat.c (thread_rec): Add thread ID in SuspendThread
3086 warning message.
3087
3088 2013-06-08 Pedro Alves <pedro@codesourcery.com>
3089 Yao Qi <yao@codesourcery.com>
3090
3091 * mi/mi-main.c (get_register): Remove declaration.
3092 (output_register): Declare.
3093 (mi_cmd_data_list_register_values): Remove local variable
3094 'tuple_cleanup'. Move some code into output_register.
3095 (get_register): Renamed to ...
3096 (output_register): ... this. Output the register's
3097 "number" ui_out tuple here.
3098
3099 2013-06-07 Pedro Alves <palves@redhat.com>
3100
3101 * darwin-nat.c: Fix formating in copyright header.
3102 * darwin-nat.h: Likewise.
3103 * gnu-nat.c: Likewise.
3104 * machoread.c: Likewise.
3105
3106 2013-06-07 Pedro Alves <palves@redhat.com>
3107
3108 PR server/14823
3109 * regformats/regdat.sh: Output #include tdesc.h. Make globals
3110 static. Output a global target description pointer.
3111 (init_registers_${name}): Adjust to initialize a
3112 target description structure.
3113
3114 2013-06-07 Will Newton <will.newton@linaro.org>
3115
3116 * printcmd.c (build_address_symbolic): Call
3117 gdbarch_addr_bits_remove for text minimal symbols.
3118
3119 2013-06-07 Will Newton <will.newton@linaro.org>
3120
3121 * MAINTAINERS: Add myself to Write After Approval.
3122
3123 2013-06-07 Yao Qi <yao@codesourcery.com>
3124
3125 * tracepoint.c (start_tracing): Move code to ...
3126 (trace_reset_local_state): ... here. New.
3127 (disconnect_tracing): Don't call set_current_traceframe,
3128 set_tracepoint_num, and set_traceframe_context. Call
3129 trace_reset_local_state instead.
3130 (tfile_close): Call trace_reset_local_state.
3131 * ctf.c (ctf_close): Likewise.
3132 * remote.c (remote_close): Likewise.
3133 * tracepoint.h (trace_reset_local_state): Declare.
3134
3135 2013-06-06 Doug Evans <dje@google.com>
3136
3137 * dwarf2read.c: Whitespace fixes for DWP file format documentation,
3138 and fix header docs.
3139
3140 2013-06-05 Doug Evans <dje@google.com>
3141 Keith Seitz <keiths@redhat.com>
3142
3143 PR 15519
3144 * cp-namespace.c (find_symbol_in_baseclass): Call
3145 cp_lookup_symbol_in_namespace instead of cp_lookup_symbol_namespace.
3146 Check result of call to lookup_symbol_static.
3147 Call lookup_static_symbol_aux unconditionally.
3148 Call check_typedef on base types before accessing them.
3149 (cp_lookup_nested_symbol): Fix comment.
3150
3151 2013-06-05 Luis Machado <lgustavo@codesourcery.com>
3152
3153 * gnu-v3-abi.c (gnuv3_skip_trampoline): Handle thunk
3154 minimal symbols pointing to function descriptors.
3155
3156 2013-06-05 Tom Tromey <tromey@redhat.com>
3157
3158 * python/py-utils.c (gdb_pymodule_addobject): Cast away const.
3159
3160 2013-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
3161 Pedro Alves <palves@redhat.com>
3162
3163 * remote.c (remote_wait_as): Restore signal handler before returning
3164 when GDB gets a notification.
3165
3166 2013-06-04 Gary Benson <gbenson@redhat.com>
3167
3168 PR 2328
3169 * breakpoint.h (handle_solib_event): Moved function declaration
3170 to solib.h.
3171 * breakpoint.c (handle_solib_event): Moved function to solib.c.
3172 (bpstat_stop_status): Pass new argument to handle_solib_event.
3173 * solib.h (update_solib_breakpoints): New function declaration.
3174 (handle_solib_event): Moved function declaration from
3175 breakpoint.h.
3176 * solib.c (update_solib_breakpoints): New function.
3177 (handle_solib_event): Moved function from breakpoint.c.
3178 Updated to call solib_ops->handle_event if not NULL.
3179 * solist.h (target_so_ops): New fields "update_breakpoints" and
3180 "handle_event".
3181 * infrun.c (set_stop_on_solib_events): New function.
3182 (_initialize_infrun): Use the above for "set
3183 stop-on-solib-events".
3184 (handle_inferior_event): Pass new argument to handle_solib_event.
3185 * solib-svr4.c (probe.h): New include.
3186 (svr4_free_library_list): New forward declaration.
3187 (probe_action): New enum.
3188 (probe_info): New struct.
3189 (probe_info): New static variable.
3190 (NUM_PROBES): New definition.
3191 (svr4_info): New fields "using_xfer", "probes_table" and
3192 "solib_list".
3193 (free_probes_table): New function.
3194 (free_solib_list): New function.
3195 (svr4_pspace_data_cleanup): Free probes table and solib list.
3196 (svr4_copy_library_list): New function.
3197 (svr4_current_sos_via_xfer_libraries): New parameter "annex".
3198 (svr4_read_so_list): New parameter "prev_lm".
3199 (svr4_current_sos_direct): Renamed from "svr4_current_sos".
3200 (svr4_current_sos): New function.
3201 (probe_and_action): New struct.
3202 (hash_probe_and_action): New function.
3203 (equal_probe_and_action): Likewise.
3204 (register_solib_event_probe): Likewise.
3205 (solib_event_probe_at): Likewise.
3206 (solib_event_probe_action): Likewise.
3207 (solist_update_full): Likewise.
3208 (solist_update_incremental): Likewise.
3209 (disable_probes_interface_cleanup): Likewise.
3210 (svr4_handle_solib_event): Likewise.
3211 (svr4_update_solib_event_breakpoint): Likewise.
3212 (svr4_update_solib_event_breakpoints): Likewise.
3213 (svr4_create_solib_event_breakpoints): Likewise.
3214 (enable_break): Free probes table before creating breakpoints.
3215 Use svr4_create_solib_event_breakpoints to create breakpoints.
3216 (svr4_solib_create_inferior_hook): Free the solib list.
3217 (_initialize_svr4_solib): Initialise
3218 svr4_so_ops.handle_solib_event and svr4_so_ops.update_breakpoints.
3219
3220 2013-06-04 Gary Benson <gbenson@redhat.com>
3221
3222 * target.h (target_ops): New field
3223 "to_augmented_libraries_svr4_read".
3224 (target_augmented_libraries_svr4_read): New macro.
3225 * target.c (update_current_target): Handle
3226 to_augmented_libraries_svr4_read.
3227 * remote.c (remote_state): New field
3228 "augmented_libraries_svr4_read".
3229 (remote_augmented_libraries_svr4_read_feature): New function.
3230 (remote_protocol_features): Add entry for
3231 "augmented-libraries-svr4-read".
3232 (remote_augmented_libraries_svr4_read): New function.
3233 (init_remote_ops): Initialize
3234 remote_ops.to_augmented_libraries_svr4_read.
3235
3236 2013-06-04 Gary Benson <gbenson@redhat.com>
3237
3238 * NEWS: Update.
3239
3240 2013-06-04 Gary Benson <gbenson@redhat.com>
3241
3242 * objfiles.h (inhibit_section_map_updates): New function
3243 declaration.
3244 (resume_section_map_updates): Likewise.
3245 (resume_section_map_updates_cleanup): Likewise.
3246 * objfiles.c (objfile_pspace_info): Removed field
3247 "objfiles_changed_p". New fields "new_objfiles_available",
3248 "section_map_dirty" and "inhibit_updates".
3249 (allocate_objfile): Set new_objfiles_available.
3250 (free_objfile): Set section_map_dirty.
3251 (objfile_relocate1): Likewise.
3252 (in_plt_section): Likewise.
3253 (find_pc_section): Update the conditions under which the
3254 section map will be updated.
3255 (inhibit_section_map_updates): New function.
3256 (resume_section_map_updates): Likewise.
3257 (resume_section_map_updates_cleanup): Likewise.
3258
3259 2013-06-04 Gary Benson <gbenson@redhat.com>
3260
3261 * probe.h (get_probe_argument_count): New declaration.
3262 (evaluate_probe_argument): Likewise.
3263 * probe.c (get_probe_argument_count): New function.
3264 (evaluate_probe_argument): Likewise.
3265 (probe_safe_evaluate_at_pc): Use the above new functions.
3266
3267 2013-06-04 Alan Modra <amodra@gmail.com>
3268
3269 * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
3270 * rs6000-tdep.c (read_insn): Add frame param, don't assume big-endian.
3271 (ppc_insns_match_pattern): Add frame param. Avoid multiple
3272 target mem reads on optional insns.
3273 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Update
3274 ppc_insns_match_pattern calls.
3275 * ppc64-tdep.c (ppc64_standard_linkage2, ppc64_standard_linkage3):
3276 Add match for power7 thread safety insns, and new order of
3277 std 2,40(1) insn. Correct code shown for _dl_runtime_resolve
3278 invocation in comment, and update rest of comment.
3279 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN,
3280 PPC64_STANDARD_LINKAGE3_LEN): Delete.
3281 (ppc64_standard_linkage2_target): Update insn offsets.
3282 (ppc64_skip_trampoline_code): Use a single insn buffer. Match newer
3283 stubs first. Update calls.
3284
3285 2013-06-04 Yao Qi <yao@codesourcery.com>
3286
3287 * solib.c (solib_find): Don't need dir separator if path has
3288 drive spec.
3289
3290 2013-06-03 Joel Brobecker <brobecker@adacore.com>
3291
3292 Revert (indirectly causes a SIGSEGV):
3293 * machoread.c (macho_symfile_read): Assign first cleanup to
3294 'back_to'.
3295
3296 2013-06-03 Yao Qi <yao@codesourcery.com>
3297
3298 * mi/mi-cmd-var.c (mi_no_values, mi_simple_values): Move to
3299 mi-parse.c. Make them static.
3300 (mi_all_values): Likewise.
3301 (mi_parse_values_option): Move to mi-parse.c. Rename it to
3302 mi_parse_print_values. Make it external.
3303 * mi/mi-cmds.h (mi_no_values, mi_simple_values, mi_all_values):
3304 Remove the declarations.
3305 * mi/mi-parse.c (mi_parse_print_values): Moved from mi-cmd-var.c.
3306 * mi/mi-parse.h (mi_parse_print_values): Declare.
3307 * mi/mi-cmd-stack.c: Include mi-parse.h.
3308 (parse_print_values): Remove
3309 (mi_cmd_stack_list_locals): Call mi_parse_print_values instead
3310 of parse_print_values.
3311 (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Likewise.
3312
3313 2013-05-31 Pedro Alves <pedro@codesourcery.com>
3314 Yao Qi <yao@codesourcery.com>
3315
3316 * tracepoint.c (all_tracepoint_actions_and_cleanup): Declare.
3317 (encode_actions): Move code to ...
3318 (all_tracepoint_actions_and_cleanup): ... here. New.
3319 (trace_dump_command): Likewise.
3320
3321 2013-05-30 Tom Tromey <tromey@redhat.com>
3322
3323 * symmisc.c (maintenance_expand_symtabs): Call do_cleanups.
3324
3325 2013-05-30 Tom Tromey <tromey@redhat.com>
3326
3327 * xml-support.c (gdb_xml_create_parser_and_cleanup): Rename from
3328 gdb_xml_create_parser_and_cleanup_1. Return a cleanup. Remove
3329 'old_chain' argument. Add 'parser_result' argument.
3330 (gdb_xml_create_parser_and_cleanup): Remove old version.
3331 (gdb_xml_parse_quick): Update.
3332 (xml_process_xincludes): Update.
3333 * xml-support.h (gdb_xml_create_parser_and_cleanup): Don't
3334 declare.
3335
3336 2013-05-30 Tom Tromey <tromey@redhat.com>
3337
3338 * probe.c (collect_probes): Check arguments for NULL before
3339 calling compile_rx_or_error.
3340 * utils.c (compile_rx_or_error): Require 'rx' to be non-NULL.
3341 Remove NULL return.
3342
3343 2013-05-30 Tom Tromey <tromey@redhat.com>
3344
3345 * infrun.c (adjust_pc_after_break): Introduce an outer null
3346 cleanup.
3347
3348 2013-05-30 Tom Tromey <tromey@redhat.com>
3349
3350 * mi/mi-cmd-var.c (varobj_update_one): Add an outer null cleanup.
3351
3352 2013-05-30 Tom Tromey <tromey@redhat.com>
3353
3354 * cli/cli-script.c (read_command_lines_1): Use a null cleanup
3355 for 'old_chain'. Do not check 'head' before processing
3356 cleanups.
3357
3358 2013-05-30 Tom Tromey <tromey@redhat.com>
3359
3360 * mi/mi-cmd-stack.c (list_arg_or_local): Remove
3361 "cleanup_tuple".
3362
3363 2013-05-30 Tom Tromey <tromey@redhat.com>
3364
3365 * dbxread.c (dbx_read_symtab): Declare 'back_to' in a more
3366 inner scope. Unconditionally call do_cleanups.
3367
3368 2013-05-30 Tom Tromey <tromey@redhat.com>
3369
3370 * source.c (find_and_open_source): Call do_cleanups.
3371
3372 2013-05-30 Tom Tromey <tromey@redhat.com>
3373
3374 * linux-thread-db.c (thread_db_load_search): Unconditionally
3375 call do_cleanups.
3376
3377 2013-05-30 Tom Tromey <tromey@redhat.com>
3378
3379 * solib-aix.c (solib_aix_bfd_open): Don't use a null cleanup
3380 for 'cleanup'; instead use a later one.
3381
3382 2013-05-30 Tom Tromey <tromey@redhat.com>
3383
3384 * python/py-breakpoint.c (bppy_get_commands): Use
3385 explicit, unconditional return.
3386 * python/py-frame.c (frapy_read_var): Likewise.
3387 * python/python.c (gdbpy_decode_line): Likewise.
3388
3389 2013-05-30 Tom Tromey <tromey@redhat.com>
3390
3391 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
3392 do_cleanups on all return paths.
3393
3394 2013-05-30 Tom Tromey <tromey@redhat.com>
3395
3396 * top.c (execute_command): Discard 'cleanup_if_error' cleanups.
3397
3398 2013-05-30 Tom Tromey <tromey@redhat.com>
3399
3400 * stabsread.c (read_struct_type): Call do_cleanups along
3401 all return paths.
3402
3403 2013-05-30 Maciej W. Rozycki <macro@codesourcery.com>
3404
3405 * mips-linux-tdep.c: Adjust formatting throughout.
3406
3407 2013-05-30 Tom Tromey <tromey@redhat.com>
3408
3409 * mipsread.c (read_alphacoff_dynamic_symtab): Call do_cleanups
3410 along all return paths.
3411
3412 2013-05-30 Tom Tromey <tromey@redhat.com>
3413
3414 * symfile.c (find_separate_debug_file): Call do_cleanups
3415 along all return paths.
3416
3417 2013-05-30 Tom Tromey <tromey@redhat.com>
3418
3419 * symtab.c (search_symbols): Introduce a null cleanup for
3420 'retval_chain'.
3421
3422 2013-05-30 Tom Tromey <tromey@redhat.com>
3423
3424 * python/py-value.c (valpy_binop): Call do_cleanups before
3425 exiting loop.
3426
3427 2013-05-30 Tom Tromey <tromey@redhat.com>
3428
3429 * python/py-prettyprint.c (print_children): Remove extra
3430 do_cleanups call.
3431
3432 2013-05-30 Tom Tromey <tromey@redhat.com>
3433
3434 * python/py-frame.c (frapy_read_var): Call do_cleanups along
3435 all return paths.
3436
3437 2013-05-30 Tom Tromey <tromey@redhat.com>
3438
3439 * python/py-breakpoint.c (bppy_get_commands): Call do_cleanups
3440 along all return paths.
3441
3442 2013-05-30 Tom Tromey <tromey@redhat.com>
3443
3444 * cli/cli-logging.c (set_logging_redirect): Unconditionally
3445 call do_cleanups.
3446
3447 2013-05-30 Tom Tromey <tromey@redhat.com>
3448
3449 * varobj.c (c_value_of_root): Call do_cleanups along all
3450 return paths.
3451
3452 2013-05-30 Tom Tromey <tromey@redhat.com>
3453
3454 * tracepoint.c (trace_dump_command): Unconditionally call
3455 do_cleanups.
3456
3457 2013-05-30 Tom Tromey <tromey@redhat.com>
3458
3459 * breakpoint.c (output_thread_groups, parse_cmd_to_aexpr): Call
3460 do_cleanups earlier.
3461
3462 2013-05-30 Tom Tromey <tromey@redhat.com>
3463
3464 * machoread.c (macho_symfile_read): Assign first cleanup to
3465 'back_to'.
3466
3467 2013-05-30 Tom Tromey <tromey@redhat.com>
3468
3469 * m32r-rom.c (m32r_load): Call do_cleanups at all returns.
3470
3471 2013-05-30 Tom Tromey <tromey@redhat.com>
3472
3473 * mi/mi-main.c (list_available_thread_groups): Call do_cleanups.
3474
3475 2013-05-30 Tom Tromey <tromey@redhat.com>
3476
3477 * inf-ptrace.c (inf_ptrace_create_inferior): Unconditionally
3478 call discard_cleanups.
3479 (inf_ptrace_attach): Likewise.
3480
3481 2013-05-30 Tom Tromey <tromey@redhat.com>
3482
3483 * remote-mips.c (mips_exit_debug): Call do_cleanups on all
3484 return paths.
3485 (mips_initialize): Likewise.
3486 (common_open): Call do_cleanups.
3487
3488 2013-05-30 Tom Tromey <tromey@redhat.com>
3489
3490 * utils.c (internal_vproblem): Call do_cleanups.
3491
3492 2013-05-30 Tom Tromey <tromey@redhat.com>
3493
3494 * linespec.c (find_linespec_symbols): Don't reassign to 'cleanup'.
3495
3496 2013-05-30 Tom Tromey <tromey@redhat.com>
3497
3498 * cli/cli-script.c (setup_user_args): Don't return after error.
3499
3500 2013-05-30 Tom Tromey <tromey@redhat.com>
3501
3502 * somread.c (som_symtab_read): Call do_cleanups.
3503
3504 2013-05-30 Tom Tromey <tromey@redhat.com>
3505
3506 * printcmd.c (print_command_1): Unconditionally call do_cleanups.
3507
3508 2013-05-30 Tom Tromey <tromey@redhat.com>
3509
3510 * cli/cli-cmds.c (cd_command, alias_command): Call do_cleanups.
3511 * cli/cli-dump.c (restore_binary_file): Call do_cleanups.
3512 * interps.c (interpreter_exec_cmd): Call do_cleanups.
3513 * source.c (show_substitute_path_command): Call do_cleanups.
3514 (unset_substitute_path_command, set_substitute_path_command):
3515 Likewise.
3516 * symfile.c (load_command): Call do_cleanups.
3517
3518 2013-05-30 Tom Tromey <tromey@redhat.com>
3519
3520 * contrib/cleanup_check.py: New file.
3521 * contrib/gcc-with-excheck: Add option parsing.
3522
3523 2013-05-30 Joel Brobecker <brobecker@adacore.com>
3524
3525 * windows-nat.c (windows_delete_thread): Add missing space
3526 in cast expression.
3527
3528 2013-05-30 Hafiz Abid Qadeer <abidh@codesourcery.com>
3529
3530 * inferior.c (top level): Include tilde.h.
3531 (add_inferior_command): Call tilde_expand on the value of 'exec'
3532 argument.
3533
3534 2013-05-30 Pedro Alves <pedro@codesourcery.com>
3535 Yao Qi <yao@codesourcery.com>
3536
3537 * tracepoint.c (encode_actions_1): Remove parameter 't'.
3538 Caller update.
3539 (encode_actions): Likewise.
3540 * remote.c (remote_download_tracepoint): Caller update.
3541 * tracepoint.h (encode_actions): Update declaration.
3542
3543 2013-05-30 Pedro Alves <palves@redhat.com>
3544
3545 * python/python-internal.h (gdb_Py_DECREF): Cast OP to PyObject
3546 pointer.
3547
3548 2013-05-30 Yao Qi <yao@codesourcery.com>
3549
3550 * remote.c (remote_check_symbols): Remove unused parameter
3551 'objfile'.
3552 Declaration update.
3553 (remote_start_remote, remote_new_objfile): Caller update.
3554
3555 2013-05-30 Yao Qi <yao@codesourcery.com>
3556
3557 * mi/mi-cmds.c (mi_cmds): Define MI command
3558 '-exec-arguments' by macro DEF_MI_CMD_CLI_1 instead of
3559 DEF_MI_CMD_CLI.
3560
3561 2013-05-29 Pedro Alves <palves@redhat.com>
3562
3563 * remote.c (remote_insert_breakpoint, remote_remove_breakpoint)
3564 (remote_insert_watchpoint, remote_remove_watchpoint)
3565 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
3566 (remote_verify_memory, compare_sections_command)
3567 (remote_search_memory): Set the general process/thread on the
3568 remote side.
3569
3570 2013-05-29 Pedro Alves <palves@redhat.com>
3571
3572 * aarch64-tdep.c: Don't include "features/aarch64-without-fpu.c".
3573 (_initialize_aarch64_tdep): Don't call
3574 initialize_tdesc_aarch64_without_fpu.
3575 * features/Makefile (WHICH): Remove reference to
3576 aarch64-without-fpu.
3577 * features/aarch64-without-fpu.c: Delete file.
3578 * regformats/aarch64-without-fpu.dat: Delete file.
3579
3580 2013-05-28 Yao Qi <yao@codesourcery.com>
3581
3582 * tracepoint.c (stringify_collection_list): Remove parameter
3583 'string'.
3584 (encode_actions): Caller update. Remove local variables.
3585
3586 2013-05-24 Yao Qi <yao@codesourcery.com>
3587
3588 * tracepoint.c (TFILE_PID): Remove.
3589 (tfile_open): Don't add thread and inferior.
3590 (tfile_close): Don't set 'inferior_ptid'. Don't call
3591 exit_inferior_silent.
3592 (tfile_thread_alive): Remove.
3593 (init_tfile_ops): Don't set field 'to_thread_alive' of
3594 tfile_ops.
3595
3596 2013-05-23 Doug Evans <dje@google.com>
3597
3598 * contrib/cc-with-tweaks.sh (-p): Handle no dwo files.
3599
3600 2013-05-23 Pedro Alves <palves@redhat.com>
3601
3602 * common/filestuff.c [USE_WIN32API]: Define HAVE_SOCKETS.
3603 [HAVE_SYS_SOCKET_H]: Define HAVE_SOCKETS.
3604 (socket_mark_cloexec, gdb_socketpair_cloexec, gdb_socket_cloexec):
3605 Only define if HAVE_SOCKETS is defined.
3606 * configure.ac: Check for sys/socket.h.
3607 * config.in, configure: Regenerate.
3608
3609 2013-05-23 Pedro Alves <palves@redhat.com>
3610
3611 * dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
3612 (open_and_init_dwp_file): Use %s/pulongest instead of %u for
3613 printing uint32_t variables.
3614
3615 2013-05-23 Pedro Alves <palves@redhat.com>
3616
3617 * NEWS: Mention GDBserver range stepping support.
3618
3619 2013-05-23 Yao Qi <yao@codesourcery.com>
3620 Pedro Alves <palves@redhat.com>
3621
3622 * gdbthread.h (struct thread_control_state) <may_range_step>: New
3623 field.
3624 * infcmd.c (step_once, until_next_command): Enable range stepping.
3625 * infrun.c (displaced_step_prepare): Disable range stepping.
3626 (resume): Disable range stepping if stepping over a breakpoint or
3627 we have software watchpoints. If range stepping is enabled,
3628 assert the thread is in the stepping range.
3629 (clear_proceed_status_thread): Clear may_range_step.
3630 (handle_inferior_event): Disable range stepping as soon as we know
3631 the thread that hit the event. Re-enable it whenever we're going
3632 to step with a step range.
3633 * remote.c (struct vCont_action_support) <r>: New field.
3634 (use_range_stepping): New global.
3635 (remote_vcont_probe): Handle 'r' action.
3636 (append_resumption): Append an 'r' action if the thread may range
3637 step.
3638 (show_range_stepping): New function.
3639 (set_range_stepping): New function.
3640 (_initialize_remote): Call add_setshow_boolean_cmd to register the
3641 'set range-stepping' and 'show range-stepping' commands.
3642 * NEWS: Mention range stepping, the new vCont;r action, and the
3643 new "set/show range-stepping" commands.
3644
3645 2013-05-23 Yao Qi <yao@codesourcery.com>
3646 Pedro Alves <palves@redhat.com>
3647
3648 * remote.c (struct vCont_action_support): New struct.
3649 (struct remote_state) <support_vCont_t>: Remove field.
3650 <vCont_actions_support>: New field.
3651 (remote_vcont_probe, remote_stop_ns): Update.
3652
3653 2013-05-23 Yao Qi <yao@codesourcery.com>
3654 Pedro Alves <palves@redhat.com>
3655
3656 * gdbthread.h (pc_in_thread_step_range): New declaration.
3657 * thread.c (pc_in_thread_step_range): New function.
3658 * infrun.c (handle_inferior_event): Use it.
3659
3660 2013-05-23 Joel Brobecker <brobecker@adacore.com>
3661
3662 * mi/mi-cmd-break.c (mi_argv_to_format): Use xsnprintf instead
3663 of sprintf.
3664
3665 2013-05-22 Keith Seitz <keiths@redhat.com>
3666
3667 * ada-lang.c (is_known_support_routine): Add explicit free of
3668 'func_name' from find_frame_funname.
3669 (ada_unhandled_exception_name_addr_from_raise): Add cleanups
3670 for func_name from find_frame_funname.
3671 * python/py-frame.c (frapy_name): Add explicit free of
3672 'name' from find_frame_funname.
3673 * stack.c (find_frame_funname): Add comment explaining that
3674 funcp must be freed by the caller.
3675 Return copy of symbol names instead of pointers.
3676 (print_frame): Add a cleanup for 'funname' from
3677 find_frame_funname.
3678 * stack.h (find_frame_funname): Remove "const" from
3679 'funname' parameter.
3680
3681 2013-05-22 Tom Tromey <tromey@redhat.com>
3682
3683 PR c++/15401:
3684 * c-valprint.c (c_value_print): Use value_addr for
3685 references. Convert back to reference type with value_ref.
3686
3687 2013-05-22 Eli Zaretskii <eliz@gnu.org>
3688
3689 * windows-nat.c (handle_unload_dll): Don't call solib_add for the
3690 unloaded DLL, it will be done by handle_solib_event. See
3691 http://sourceware.org/ml/gdb-patches/2013-05/msg00713.html for the
3692 details.
3693
3694 2013-05-22 Phil Muldoon <pmuldoon@redhat.com>
3695
3696 * ui-out.c: Create typedef ui_out_level_p and define vector
3697 operations for that type.
3698 (struct ui_out): Use a vector instead of an array.
3699 (current_level): Return level from a vector.
3700 (push_level): Create a level in a vector.
3701 (pop_level): Delete a level in a vector.
3702 (ui_out_new): Create initial level zero level, and store in a
3703 vector.
3704 (ui_out_destroy): Add vector cleanup.
3705
3706 2013-05-22 Pedro Alves <palves@redhat.com>
3707
3708 * python/python-internal.h (gdb_Py_DECREF): Tag with
3709 "ARI: editCase function".
3710
3711 2013-05-21 Paul Pluzhnikov <ppluzhnikov@google.com>
3712
3713 * solib-svr4.c (svr4_free_so): Protect against NULL dereference.
3714
3715 2013-05-21 Pedro Alves <palves@redhat.com>
3716
3717 * python/py-prettyprint.c (apply_val_pretty_printer): Check
3718 whether PRINTER is NULL before installing a Py_DECREF cleanup.
3719 * python/py-utils.c (py_decref): Don't check for NULL before
3720 calling Py_DECREF.
3721
3722 2013-05-21 Pedro Alves <palves@redhat.com>
3723
3724 * python/py-utils.c (py_decref): Remove extra braces.
3725 (gdb_pymodule_addobject): Remove extra braces.
3726 * python-internal.h (gdb_Py_DECREF): New static inline function.
3727 (Py_DECREF): Redefine as calling gdb_Py_DECREF.
3728
3729 2013-05-21 Philippe Waroquiers <philippe.waroquiers@skynet.be>
3730
3731 * breakpoints.c (detach_breakpoints): Do not
3732 detach breakpoints locations with loc_type bp_loc_other.
3733
3734 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
3735
3736 Workaround Python 2.6.
3737 * python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
3738 a block.
3739
3740 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
3741
3742 Code cleanup: constification.
3743 * solib.c (solib_ops): Make return type and ops variable type const.
3744 (set_solib_ops): Make the new_ops parameter and ops variable const.
3745 (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
3746 (solib_add, solib_keep_data_in_core, clear_solib)
3747 (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
3748 (reload_shared_libraries, solib_global_lookup): Make the ops variable
3749 const.
3750 * solib.h (set_solib_ops): Make the new_ops parameter const.
3751
3752 2013-05-21 Joel Brobecker <brobecker@adacore.com>
3753
3754 * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
3755 variable.
3756 (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
3757 (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
3758 (SYSTEM_GDBINIT_FILES): New variables.
3759 (all): Add stamp-system-gdbinit.
3760 (stamp-system-gdbinit): New rule.
3761 (clean-system-gdbinit, install-system-gdbinit)
3762 (uninstall-system-gdbinit): New rules. Make them .PHONY.
3763 (install-only): Add dependency on install-system-gdbinit.
3764 (uninstall): Add dependency on uninstall-system-gdbinit.
3765 (clean): Add dependency on clean-system-gdbinit.
3766 * system-gdbinit/elinos.py: New file.
3767 * system-gdbinit/wrs-linux.py: New file.
3768
3769 2013-05-21 Joel Brobecker <brobecker@adacore.com>
3770
3771 * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
3772
3773 2013-05-21 Hui Zhu <hui@codesourcery.com>
3774
3775 * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
3776 * breakpoint.h (dprintf_breakpoint_ops): Add extern.
3777 * mi/mi-cmd-break.c (ctype.h): New include.
3778 (gdb_obstack.h): New include.
3779 (mi_argv_to_format, mi_cmd_break_insert_1): New.
3780 (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
3781 (mi_cmd_dprintf_insert): New.
3782 * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
3783 * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
3784
3785 2013-05-20 Tom Tromey <tromey@redhat.com>
3786
3787 * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
3788
3789 2013-05-20 Tom Tromey <tromey@redhat.com>
3790
3791 * python/py-value.c (valpy_get_dynamic_type): Simplify
3792 dynamic_type assignment. Use Py_XINCREF.
3793
3794 2013-05-20 Tom Tromey <tromey@redhat.com>
3795
3796 * python/py-type.c (typy_fields): Unconditionally decref 'r'.
3797
3798 2013-05-20 Tom Tromey <tromey@redhat.com>
3799
3800 * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
3801 (gdbpy_selected_frame): Move object-construction code
3802 out of TRY_CATCH.
3803
3804 2013-05-20 Tom Tromey <tromey@redhat.com>
3805
3806 * python/py-arch.c (gdbpy_initialize_arch): Use
3807 gdb_pymodule_addobject.
3808 * python/py-block.c (gdbpy_initialize_blocks): Use
3809 gdb_pymodule_addobject.
3810 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
3811 gdb_pymodule_addobject.
3812 * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
3813 gdb_pymodule_addobject.
3814 * python/py-event.c (gdbpy_initialize_event_generic): Use
3815 gdb_pymodule_addobject.
3816 * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
3817 gdb_pymodule_addobject.
3818 * python/py-evts.c (add_new_registry): Use
3819 gdb_pymodule_addobject.
3820 (gdbpy_initialize_py_events): Likewise.
3821 * python/py-finishbreakpoint.c
3822 (gdbpy_initialize_finishbreakpoints): Use
3823 gdb_pymodule_addobject.
3824 * python/py-frame.c (gdbpy_initialize_frames): Use
3825 gdb_pymodule_addobject.
3826 * python/py-function.c (gdbpy_initialize_functions): Use
3827 gdb_pymodule_addobject.
3828 * python/py-inferior.c (gdbpy_initialize_inferior): Use
3829 gdb_pymodule_addobject.
3830 * python/py-infthread.c (gdbpy_initialize_thread): Use
3831 gdb_pymodule_addobject.
3832 * python/py-objfile.c (gdbpy_initialize_objfile): Use
3833 gdb_pymodule_addobject.
3834 * python/py-param.c (gdbpy_initialize_parameters): Use
3835 gdb_pymodule_addobject.
3836 * python/py-progspace.c (gdbpy_initialize_pspace): Use
3837 gdb_pymodule_addobject.
3838 * python/py-symbol.c (gdbpy_initialize_symbols): Use
3839 gdb_pymodule_addobject.
3840 * python/py-symtab.c (gdbpy_initialize_symtabs): Use
3841 gdb_pymodule_addobject.
3842 * python/py-type.c (gdbpy_initialize_types): Use
3843 gdb_pymodule_addobject.
3844 * python/py-utils.c (gdb_pymodule_addobject): New function.
3845 * python/py-value.c (gdbpy_initialize_values): Use
3846 gdb_pymodule_addobject.
3847 * python/python-internal.h (gdb_pymodule_addobject): Declare.
3848 * python/python.c (_initialize_python): Use
3849 gdb_pymodule_addobject.
3850
3851 2013-05-20 Tom Tromey <tromey@redhat.com>
3852
3853 * python/py-cmd.c (cmdpy_completer): Use explicit decref.
3854 * python/py-param.c (get_set_value, get_show_value): Use
3855 explicit decrefs.
3856 * python/python.c (start_type_printers, apply_type_printers):
3857 Use explicit decrefs.
3858
3859 2013-05-20 Tom Tromey <tromey@redhat.com>
3860
3861 * python/py-evts.c (gdbpy_initialize_py_events): Don't
3862 incref the module.
3863
3864 2013-05-20 Tom Tromey <tromey@redhat.com>
3865
3866 * python/python.c (gdbpy_run_events): Decref the result
3867 of PyObject_CallObject.
3868
3869 2013-05-20 Tom Tromey <tromey@redhat.com>
3870
3871 * python/py-symtab.c (set_sal): Use
3872 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION. Return -1 on error.
3873 (symtab_and_line_to_sal_object): Update.
3874
3875 2013-05-20 Tom Tromey <tromey@redhat.com>
3876
3877 * python/py-param.c (compute_enum_values): Decref 'item'.
3878
3879 2013-05-20 Tom Tromey <tromey@redhat.com>
3880
3881 * mi/mi-main.c: Include python-internal.h.
3882 (mi_cmd_list_features): Check gdb_python_initialized.
3883 * python/py-inferior.c (python_on_normal_stop, python_on_resume)
3884 (python_inferior_exit, python_new_objfile, add_thread_object)
3885 (delete_thread_object, py_free_inferior): Check
3886 gdb_python_initialized.
3887 * python/py-prettyprint.c (apply_val_pretty_printer): Check
3888 gdb_python_initialized.
3889 * python/py-type.c (save_objfile_types): Check
3890 gdb_python_initialized.
3891 * python/python-internal.h (gdb_python_initialized): Declare.
3892 * python/python.c (ensure_python_env): Throw exception if
3893 Python not initialized.
3894 (before_prompt_hook, source_python_script_for_objfile)
3895 (start_type_printers, apply_type_printers,
3896 free_type_printers): Check gdb_python_initialized.
3897 * varobj.c (varobj_get_display_hint)
3898 (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
3899 (install_new_value_visualizer, varobj_set_visualizer)
3900 (value_get_print_value): Check gdb_python_initialized.
3901
3902 2013-05-20 Tom Tromey <tromey@redhat.com>
3903
3904 * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
3905 Check errors.
3906 * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
3907 * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
3908 Check errors.
3909 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
3910 Check errors.
3911 * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
3912 Check errors.
3913 * python/py-event.c (gdbpy_initialize_event): Return 'int'.
3914 Check errors.
3915 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
3916 init function to return 'int'.
3917 * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
3918 Return 'int'. Check errors.
3919 * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
3920 Check errors.
3921 * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
3922 Return 'int'. Check errors.
3923 * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
3924 Check errors.
3925 * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
3926 Check errors.
3927 * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
3928 Check errors.
3929 * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
3930 Check errors.
3931 * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
3932 Check errors.
3933 * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
3934 Check errors.
3935 * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
3936 Check errors.
3937 * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
3938 Check errors.
3939 * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
3940 Check errors.
3941 * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
3942 Check errors.
3943 * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
3944 Check errors.
3945 * python/py-type.c (gdbpy_initialize_types): Return 'int'.
3946 Check errors.
3947 * python/py-value.c (gdbpy_initialize_values): Return 'int'.
3948 Check errors.
3949 * python/python-internal.h (gdbpy_initialize_auto_load,
3950 gdbpy_initialize_values, gdbpy_initialize_frames,
3951 gdbpy_initialize_symtabs, gdbpy_initialize_commands,
3952 gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
3953 gdbpy_initialize_blocks, gdbpy_initialize_types,
3954 gdbpy_initialize_functions, gdbpy_initialize_pspace,
3955 gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
3956 gdbpy_initialize_finishbreakpoints,
3957 gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
3958 gdbpy_initialize_thread, gdbpy_initialize_inferior,
3959 gdbpy_initialize_eventregistry, gdbpy_initialize_event,
3960 gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
3961 gdbpy_initialize_signal_event,
3962 gdbpy_initialize_breakpoint_event,
3963 gdbpy_initialize_continue_event,
3964 gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
3965 gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
3966 Update. Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
3967 * python/python.c (gdb_python_initialized): New global.
3968 (gdbpy_initialize_events): Return 'int'. Check errors.
3969 (_initialize_python): Check errors. Set
3970 gdb_python_initialized.
3971
3972 2013-05-20 Tom Tromey <tromey@redhat.com>
3973
3974 * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
3975 Decref the reslut of PyObject_CallMethod.
3976
3977 2013-05-20 Tom Tromey <tromey@redhat.com>
3978
3979 * python/py-event.c (gdbpy_initialize_event_generic): Return
3980 early if PyType_Ready fails.
3981
3982 2013-05-20 Tom Tromey <tromey@redhat.com>
3983
3984 * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
3985 as 'default' in the switch.
3986
3987 2013-05-20 Tom Tromey <tromey@redhat.com>
3988
3989 * python/py-inferior.c (gdbpy_inferiors): Update. Hoist
3990 get_addr_from_python calls out of TRY_CATCH.
3991 (infpy_write_memory, infpy_search_memory): Likewise.
3992 * python/py-utils.c (get_addr_from_python): Return negative
3993 value on error. Use TRY_CATCH.
3994 * python/python-internal.h (get_addr_from_python): Use
3995 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
3996
3997 2013-05-20 Tom Tromey <tromey@redhat.com>
3998
3999 * python/py-event.c (evpy_emit_event): Decref the
4000 result of PyObject_CallFunctionObjArgs.
4001
4002 2013-05-20 Tom Tromey <tromey@redhat.com>
4003
4004 * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
4005 Correctly decref.
4006
4007 2013-05-20 Tom Tromey <tromey@redhat.com>
4008
4009 * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
4010
4011 2013-05-20 Tom Tromey <tromey@redhat.com>
4012
4013 * python/py-event.h (gdbpy_initialize_event_generic): Use
4014 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
4015 * python/py-evts.c (add_new_registry): Use
4016 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
4017 * python/python-internal.h
4018 (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
4019
4020 2013-05-20 Tom Tromey <tromey@redhat.com>
4021
4022 * python/py-arch.c (archpy_disassemble): Update.
4023 * python/py-type.c (typy_get_composite, typy_lookup_typename)
4024 (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
4025 * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
4026 * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
4027 macro.
4028 (GDB_PY_HANDLE_EXCEPTION): Update.
4029 (gdbpy_convert_exception): Update. Use CPYCHECKER_SETS_EXCEPTION.
4030
4031 2013-05-20 Tom Tromey <tromey@redhat.com>
4032
4033 * python/python-internal.h (events_object_type): Remove.
4034
4035 2013-05-20 Tom Tromey <tromey@redhat.com>
4036
4037 * python/py-event.h (evpy_emit_event): Use
4038 CPYCHECKER_STEALS_REFERENCE_TO_ARG.
4039 * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
4040 New macro.
4041
4042 2013-05-20 Tom Tromey <tromey@redhat.com>
4043
4044 * py-evtregistry.c (create_event_object): Decref
4045 eventregistry_object if PyList_New fails.
4046
4047 2013-05-20 Tom Tromey <tromey@redhat.com>
4048
4049 * py-cmd.c (gdbpy_string_to_argv): Check result of
4050 PyList_New.
4051
4052 2013-05-20 Tom Tromey <tromey@redhat.com>
4053
4054 * python/python.c (before_prompt_hook): Add cleanup to
4055 decref 'hook'.
4056
4057 2013-05-20 Tom Tromey <tromey@redhat.com>
4058
4059 * python/py-function.c (fnpy_init): Decref result of
4060 PyObject_GetAttrString.
4061
4062 2013-05-20 Tom Tromey <tromey@redhat.com>
4063
4064 * python/py-threadevent.c (get_event_thread): Use
4065 CPYCHECKER_RETURNS_BORROWED_REF.
4066 * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
4067 New define.
4068 (pspace_to_pspace_object, objfile_to_objfile_object)
4069 (find_thread_object): Use it.
4070
4071 2013-05-20 Tom Tromey <tromey@redhat.com>
4072
4073 * python/py-arch.c (arch_object_type): Use
4074 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4075 * python/py-block.c (block_syms_iterator_object_type):
4076 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4077 * python/py-bpevent.c (breakpoint_event_object_type):
4078 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4079 * python/py-cmd.c (cmdpy_object_type): Use
4080 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4081 * python/py-continueevent.c (continue_event_object_type):
4082 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4083 * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
4084 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4085 * python/py-events.h (thread_event_object_type):
4086 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4087 * python/py-evtregistry.c (eventregistry_object_type): Use
4088 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4089 * python/py-exitedevent.c (exited_event_object_type):
4090 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4091 * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
4092 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4093 * python/py-function.c (fnpy_object_type): Use
4094 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4095 * python/py-inferior.c (inferior_object_type, membuf_object_type):
4096 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4097 * python/py-infthread.c (thread_object_type): Use
4098 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4099 * python/py-lazy-string.c (lazy_string_object_type):
4100 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4101 * python/py-newobjfileevent.c (new_objfile_event_object_type):
4102 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4103 * python/py-objfile.c (objfile_object_type): Use
4104 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4105 * python/py-param.c (parmpy_object_type):
4106 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4107 * python/py-progspace.c (pspace_object_type):
4108 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4109 * python/py-signalevent.c (signal_event_object_type):
4110 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4111 * python/py-symtab.c (symtab_object_type, sal_object_type): Use
4112 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4113 * python/py-type.c (type_object_type, field_object_type)
4114 (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4115 * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
4116 define.
4117 (value_object_type, block_object_type, symbol_object_type)
4118 (event_object_type, stop_event_object_type, breakpoint_object_type)
4119 (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4120
4121 2013-05-20 Andreas Tobler <andreas@fgznet.ch>
4122
4123 * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
4124 (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
4125
4126 2013-05-20 Doug Evans <dje@google.com>
4127
4128 When reading CU, stay in DWO. Be more tolerent of bad debug info.
4129 For Fission.
4130 * dwarf2read.c (struct dwarf2_per_cu_data): New member
4131 reading_dwo_directly.
4132 (struct signatured_type): New member dwo_unit.
4133 (struct die_reader_specs): New member comp_dir.
4134 (create_signatured_type_table_from_index): Use malloc for
4135 all_type_units instead of objfile's obstack.
4136 (create_all_type_units): Ditto.
4137 (fill_in_sig_entry_from_dwo_entry): New function.
4138 (add_type_unit): New function.
4139 (lookup_dwo_signatured_type): New function.
4140 (lookup_dwp_signatured_type): New function.
4141 (lookup_signatured_type): New arg cu. All callers updated.
4142 (init_cu_die_reader): Initialize comp_dir.
4143 (read_cutu_die_from_dwo): New arg stub_comp_dir. All callers updated.
4144 Change assert of matching type signatures to call error on mismatch.
4145 (lookup_dwo_unit): Add assert.
4146 (init_tu_and_read_dwo_dies): New function.
4147 (init_cutu_and_read_dies): Call it.
4148 (build_type_unit_groups): Handle case of no type unit groups created.
4149 (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
4150 (lookup_dwo_cutu): Tweak complaint.
4151 (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
4152 (dwarf2_per_objfile_free): Free all_type_units.
4153
4154 2013-05-20 Joel Brobecker <brobecker@adacore.com>
4155
4156 * windows-nat.c (handle_unload_dll): Add missing empty line.
4157
4158 2013-05-20 Joel Brobecker <brobecker@adacore.com>
4159
4160 * dwarf2read.c (prototyped_function_p): New function.
4161 (read_subroutine_type): Use it.
4162
4163 2013-05-20 Joel Brobecker <brobecker@adacore.com>
4164
4165 * rs6000-aix-tdep.c: De-indent some example code provided
4166 as a comment.
4167
4168 2013-05-17 Edjunior Machado <emachado@linux.vnet.ibm.com>
4169
4170 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
4171 region is ok for a hardware watchpoint using the new ptrace interface
4172 on Power servers.
4173
4174 2013-05-17 Doug Evans <dje@google.com>
4175
4176 * NEWS: Mention new maintenance commands check-symtabs, and
4177 expand-symtabs, and renamed check-psymtabs.
4178 * psymtab.c (maintenance_check_psymtabs): Renamed from
4179 maintenance_check_symtabs. Only process already-expanded symbol
4180 tables.
4181 (_initialize_psymtab): Update.
4182 * symmisc.c (maintenance_check_symtabs): New function.
4183 (maintenance_expand_name_matcher): New function
4184 (maintenance_expand_file_matcher): New function
4185 (maintenance_expand_symtabs): New function.
4186 (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
4187 commands.
4188
4189 2013-05-17 Tom Tromey <tromey@redhat.com>
4190
4191 * python/py-inferior.c (infpy_read_memory): Don't call
4192 PyErr_SetString if PyObject_New fails.
4193 * python/py-frame.c (frame_info_to_frame_object): Don't call
4194 PyErr_SetString if PyObject_New fails.
4195
4196 2013-05-17 Pavel Chupin <pavel.v.chupin@intel.com>
4197
4198 * acinclude.m4: Add check for dlopen in libdl.
4199 * configure.ac: Ditto.
4200 * configure: Regenerate.
4201
4202 2013-05-17 Phil Muldoon <pmuldoon@redhat.com>
4203
4204 * frame.c (frame_stash): Convert to htab.
4205 (frame_addr_hash): New function.
4206 (frame_addr_hash_eq): New function.
4207 (frame_stash_create): Convert function to create
4208 a hash table.
4209 (frame_stash_add): Convert function to add an entry to a hash
4210 table.
4211 (frame_stash_find): Convert function to search the hash table.
4212 (frame_stash_invalidate): Convert function to empty the hash
4213 table.
4214 (get_frame_id): Only add to stash if a frame_id is created.
4215 (_initialize_frame): Call frame_stash_create.
4216
4217 2013-05-16 Yue Lu <hacklu.newborn@gmail.com> (tiny change)
4218
4219 * configure.ac: Ensure MIG is available when building for GNU Hurd
4220 hosts.
4221 * configure: Regenerate.
4222
4223 2013-05-16 Joel Brobecker <brobecker@adacore.com>
4224
4225 * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
4226
4227 2013-05-16 Joel Brobecker <brobecker@adacore.com>
4228
4229 * ada-lang.c (ada_make_symbol_completion_list): Make sure
4230 all cleanups are done before returning from this function.
4231
4232 2013-05-15 Joel Brobecker <brobecker@adacore.com>
4233
4234 * utils.h: #include "exceptions.h".
4235 (enum errors): Remove partial declaration.
4236
4237 2013-05-15 Joel Brobecker <brobecker@adacore.com>
4238
4239 * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
4240 * gdbarch.h, gdbarch.c: Regenerate.
4241 * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
4242 handling.
4243
4244 * rs6000-aix-tdep.h: New file.
4245 * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
4246 * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
4247 "xml-utils.h".
4248 (struct field_info, struct ld_info_desc): New types.
4249 (ld_info32_desc, ld_info64_desc): New static constants.
4250 (struct ld_info): New type.
4251 (rs6000_aix_extract_ld_info): New function.
4252 (rs6000_aix_shared_library_to_xml): Likewise.
4253 (rs6000_aix_ld_info_to_xml): Likewise.
4254 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
4255 (rs6000_aix_init_osabi): Add call to
4256 set_gdbarch_core_xfer_shared_libraries_aix.
4257 * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
4258 Remove "xml-utils.h" include.
4259 (LdInfo): Delete typedef.
4260 (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
4261 Delete macros.
4262 (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
4263 Adjust code accordingly.
4264 (rs6000_core_ldinfo): Delete, folded into
4265 rs6000_aix_core_xfer_shared_libraries_aix.
4266 (rs6000_xfer_shared_library): Delete.
4267 (rs6000_xfer_shared_libraries): Reimplement.
4268
4269 2013-05-15 Markus Metzger <markus.t.metzger@intel.com>
4270
4271 * record.c (record_goto_cmdlist): New.
4272 (cmd_record_goto): Split into this ...
4273 (cmd_record_goto_begin): ... this
4274 (cmd_record_goto_end): ... and this.
4275 (_initialize_record): Change "record goto" to prefix command.
4276 Add commands for "record goto begin" and "record goto end".
4277 Add an alias for "record goto start" to "record goto begin".
4278
4279 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
4280
4281 * linespec.c (convert_linespec_to_sals): New comment for
4282 SOURCE_FILENAME assignment.
4283
4284 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
4285
4286 * cleanups.c (restore_my_cleanups): Replace gdb_assert by
4287 internal_warning.
4288
4289 2013-05-14 Tom Tromey <tromey@redhat.com>
4290
4291 * eval.c (parse_and_eval_long): Make 'exp' const.
4292 * value.h (parse_and_eval_long): Update.
4293
4294 2013-05-14 Tom Tromey <tromey@redhat.com>
4295
4296 * ui-file.c (gdb_fopen): Make arguments const.
4297 * ui-file.h (gdb_fopen): Make arguments const.
4298
4299 2013-05-14 Tom Tromey <tromey@redhat.com>
4300
4301 * remote.c (remote_set_trace_notes): Make arguments const.
4302 * target.c (update_current_target): Update cast.
4303 * target.h (to_set_trace_notes): Make arguments const.
4304
4305 2013-05-14 Tom Tromey <tromey@redhat.com>
4306
4307 * go32-nat.c (go32_terminal_info): Make 'args' const.
4308 * inferior.h (child_terminal_info): Update.
4309 * inflow.c (child_terminal_info): Make 'args' const.
4310 * target.c (default_terminal_info): Make 'args' const.
4311 (debug_to_terminal_save_ours): Likewise.
4312 * target.h (struct target_ops) <to_terminal_info>: Make argument
4313 const.
4314
4315 2013-05-13 Tom Tromey <tromey@redhat.com>
4316
4317 * gcore.c (create_gcore_bfd): Make 'filename' const.
4318 * gcore.h (create_gcore_bfd): Make 'filename' const.
4319 * record-full.c (record_full_save): Make 'recfilename' const.
4320 * target.c (target_save_record): Make 'filename' const.
4321 * target.h (struct target_ops) <to_save_record>: Make 'filename'
4322 const.
4323 (target_save_record): Likewise.
4324
4325 2013-05-13 Tom Tromey <tromey@redhat.com>
4326
4327 PR gdb/15338:
4328 * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
4329 ranges section has been read.
4330
4331 2013-05-13 Tom Tromey <tromey@redhat.com>
4332
4333 PR exp/15364:
4334 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
4335 STRUCTOP_PTR>: Return a not_lval value for
4336 EVAL_AVOID_SIDE_EFFECTS.
4337 * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
4338 for EVAL_AVOID_SIDE_EFFECTS.
4339
4340 2013-05-13 Joel Brobecker <brobecker@adacore.com>
4341
4342 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
4343 floating point registers to register type before storing
4344 value.
4345 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
4346 Likewise.
4347
4348 2013-05-10 Joel Brobecker <brobecker@adacore.com>
4349 Tom Tromey <tromey@redhat.com>
4350
4351 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
4352 New functions.
4353 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
4354 Declare.
4355 * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
4356 (darwin_ptrace_him): Use unmark_fd_no_cloexec.
4357 * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
4358 (inf_ttrace_prepare): Use mark_fd_no_cloexec.
4359
4360 2013-05-10 Freddie Chopin <freddie_chopin@op.pl>
4361 Tom Tromey <tromey@redhat.com>
4362
4363 PR build/15414:
4364 * configure: Rebuild.
4365 * configure.ac (build_warnings): Do not use -Wformat-nonliteral
4366 with -Wno-format.
4367
4368 2013-05-10 Pedro Alves <palves@redhat.com>
4369
4370 * remote.c (_initialize_remote): Fix spelling of
4371 qXfer:traceframe-info:read packet in packet config command.
4372
4373 2013-05-10 David Taylor <dtaylor@emc.com>
4374
4375 PR remote/15455
4376
4377 * remote.c (remote_trace_set_readonly_regions): Do not overwrite
4378 "QTro" at start of packet.
4379
4380 2013-05-10 Joel Brobecker <brobecker@adacore.com>
4381
4382 * solib-aix.c (solib_aix_relocate_section_addresses):
4383 For the .bss section action, apply the same offset as
4384 the .data section.
4385
4386 2013-05-10 Joel Brobecker <brobecker@adacore.com>
4387
4388 * solib-aix.c (solib_aix_relocate_section_addresses):
4389 Remove FIXME comment.
4390
4391 2013-05-10 Joel Brobecker <brobecker@adacore.com>
4392
4393 PR tdep/15420:
4394 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
4395 New functions, directly copied from sparc-sol-thread.c.
4396 * sparc-sol-thread.c: Delete.
4397 * configure.ac: Remove code handling sparc-solaris-thread.c.
4398 * configure: Regenerate.
4399
4400 2013-05-10 Phil Muldoon <pmuldoon@redhat.com>
4401
4402 * stack.c (backtrace_command_1): Add "no-filters", and Python frame
4403 filter logic.
4404 (backtrace_command): Add "no-filters" option parsing.
4405 (_initialize_stack): Alter help to reflect "no-filters" option.
4406 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
4407 (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
4408 (py-frame.o): Add target
4409 * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
4410 filter files.
4411 * python/python.h: Add new frame filter constants, and flag enum.
4412 (apply_frame_filter): Add definition.
4413 * python/python.c (apply_frame_filter): New non-Python
4414 enabled function.
4415 * python/py-utils.c (py_xdecref): New function.
4416 (make_cleanup_py_xdecref): Ditto.
4417 * python/py-objfile.c: Declare frame_filters dictionary.
4418 (objfpy_dealloc): Add frame_filters dealloc.
4419 (objfpy_new): Initialize frame_filters attribute.
4420 (objfile_to_objfile_object): Ditto.
4421 (objfpy_get_frame_filters): New function.
4422 (objfpy_set_frame_filters): New function.
4423 * python/py-progspace.c: Declare frame_filters dictionary.
4424 (pspy_dealloc): Add frame_filters dealloc.
4425 (pspy_new): Initialize frame_filters attribute.
4426 (pspacee_to_pspace_object): Ditto.
4427 (pspy_get_frame_filters): New function.
4428 (pspy_set_frame_filters): New function.
4429 * python/py-framefilter.c: New file.
4430 * python/lib/gdb/command/frame_filters.py: New file.
4431 * python/lib/gdb/frames.py: New file.
4432 * python/lib/gdb/__init__.py: Initialize global frame_filters
4433 dictionary
4434 * python/lib/gdb/FrameDecorator.py: New file.
4435 * python/lib/gdb/FrameIterator.py: New file.
4436 * mi/mi-cmds.c (mi_cmds): Add frame filters command.
4437 * mi/mi-cmds.h: Declare.
4438 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
4439 --no-frame-filter logic, and Python frame filter logic.
4440 (stack_enable_frame_filters): New function.
4441 (parse_no_frame_option): Ditto.
4442 (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
4443 filter logic.
4444 (mi_cmd_stack_list_locals): Ditto.
4445 (mi_cmd_stack_list_args): Ditto.
4446 (mi_cmd_stack_list_variables): Ditto.
4447 * NEWS: Add frame filter note.
4448
4449 2013-05-09 Doug Evans <dje@google.com>
4450
4451 * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
4452 All callers updated.
4453 (syms_from_objfile): Ditto. Make static.
4454 (symbol_file_add_with_addrs): Renamed from
4455 symbol_file_add_with_addrs_or_offsets. Delete args offsets,
4456 num_offsets. All callers updated.
4457 * symfile.h (syms_from_objfile): Delete.
4458
4459 * symfile.c (decrement_reading_symtab): Add assert.
4460 (increment_reading_symtab): Ditto.
4461
4462 2013-05-09 Joel Brobecker <brobecker@adacore.com>
4463
4464 * source.c (forward_search_command): Replace call to getc
4465 by call to fgetc.
4466 (reverse_search_command): Likewise.
4467
4468 2013-05-08 Doug Evans <dje@google.com>
4469
4470 * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
4471 matching test.
4472
4473 2013-05-08 Joel Brobecker <brobecker@adacore.com>
4474
4475 * sol-thread.c (info_cb): Factorize the code a little.
4476
4477 2013-05-08 Joel Brobecker <brobecker@adacore.com>
4478
4479 * sol-thread.c (info_cb): Rework the output of the "maintenance
4480 info sol-threads" command a bit.
4481
4482 2013-05-08 Joel Brobecker <brobecker@adacore.com>
4483
4484 * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
4485 Replace ti.ti_startfunc by ti.ti_pc.
4486
4487 2013-05-08 Joel Brobecker <brobecker@adacore.com>
4488
4489 * solib-aix.c (solib_aix_free_library_list): New function
4490 for the case where HAVE_LIBEXPAT is not defined.
4491
4492 2013-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
4493
4494 PR breakpoints/15413:
4495 * breakpoint.c (condition_completer): Simplify the code to
4496 disconsider multiple locations of breakpoints when completing the
4497 "condition" command.
4498
4499 2013-05-07 Pierre Muller <muller@sourceware.org>
4500
4501 * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
4502 instead of <sys/wait.h>.
4503
4504 2013-05-07 Pierre Muller <muller@sourceware.org>
4505
4506 * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
4507 trailing new line from warning message.
4508
4509 2013-05-07 Pierre Muller <muller@sourceware.org>
4510
4511 * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
4512 (PC_SOLIB): Change type from ari_deprecate to ari_regression.
4513
4514 2013-05-07 Joel Brobecker <brobecker@adacore.com>
4515
4516 * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
4517 error message (ARI fix).
4518
4519 2013-05-07 Joel Brobecker <brobecker@adacore.com>
4520
4521 * features/library-list-aix.dtd: Replace library-list by
4522 library-list-aix.
4523 * rs6000-nat.c: Replace library-list by library-list-aix
4524 throughout.
4525 * solib-aix.c: Likewise.
4526
4527 2013-05-07 Joel Brobecker <brobecker@adacore.com>
4528
4529 * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
4530 Renames TARGET_OBJECT_AIX_LIBRARIES.
4531 * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
4532 TARGET_OBJECT_LIBRARIES_AIX throughout.
4533 * solib-aix.c: Likwise.
4534
4535 2013-05-07 Yao Qi <yao@codesourcery.com>
4536
4537 * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
4538 (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
4539
4540 2013-05-07 Yao Qi <yao@codesourcery.com>
4541
4542 * solib-dsbt.c (enable_break): Declare.
4543 (dsbt_current_sos): Remove call to enable_break2.
4544 (enable_break2): Rename to enable_break. Set solib breakpoint
4545 on '_dl_debug_state'.
4546 (enable_break): Remove.
4547
4548 2013-05-07 Luis Machado <lgustavo@codesourcery.com>
4549
4550 * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
4551 debug state prior to replicating existing hardware watchpoints or
4552 breakpoints.
4553
4554 2013-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4555
4556 * gcore.c (gcore_create_callback): Ignore sections with
4557 separate_debug_objfile_backlink != NULL.
4558
4559 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
4560 Andrew Jenner <andrew@codesourcery.com>
4561 Chung-Lin Tang <cltang@codesourcery.com>
4562 Julian Brown <julian@codesourcery.com>
4563
4564 Based on the nios2-elf port from Altera Corporation.
4565
4566 * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
4567 nios2-linux-tdep.o.
4568 (HFILES_NO_SRCDIR): Add nios2-tdep.h.
4569 (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
4570 * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
4571 * nios2-tdep.h: New.
4572 * nios2-tdep.c: New.
4573 * nios2-linux-tdep.c: New.
4574 * features/Makefile (WHICH): Add nios2-linux.
4575 (nios2-linux-expedite): Set.
4576 * features/nios2-cpu.xml: New.
4577 * features/nios2.xml: New.
4578 * features/nios2-linux.xml: New.
4579 * features/nios2.c: New (autogenerated).
4580 * features/nios2-linux.c: New (autogenerated).
4581 * regformats/nios2-linux.dat: New (autogenerated).
4582 * NEWS (Changes since GDB 7.6): Add new Nios II targets
4583 and commands.
4584
4585 2013-05-06 Doug Evans <dje@google.com>
4586
4587 * symfile.c: Whitespace cleanup.
4588
4589 * solist.h (struct target_so_ops): New member clear_so.
4590 * solib-svr4.c (svr4_clear_so): New function.
4591 (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
4592 * solib.c (clear_so): Renamed from free_so_symbols.
4593 All callers updated. Call target clear_so if it exists.
4594
4595 2013-05-06 Tom Tromey <tromey@redhat.com>
4596
4597 * ada-lang.c (ada_value_primitive_packed_val): Don't
4598 call value_incref.
4599 * value.c (set_value_parent): Incref the new parent and decref
4600 the old parent.
4601 (value_copy, value_primitive_field): Use set_value_parent.
4602
4603 2013-05-06 Tom Tromey <tromey@redhat.com>
4604
4605 * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
4606 (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
4607 if needed.
4608 * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
4609 * dwarf2read.c (write_constant_as_bytes)
4610 (dwarf2_fetch_constant_bytes): New functions.
4611
4612 2013-05-06 Tom Tromey <tromey@redhat.com>
4613
4614 * dwarf2read.c (dwarf2_const_value_data): Remove unused
4615 parameters.
4616 (dwarf2_const_value_attr): Update.
4617
4618 2013-05-06 Tom Tromey <tromey@redhat.com>
4619
4620 * somread.c (som_symfile_offsets): Add 'const' to addrs.
4621 * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
4622 * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
4623 Remove declaration.
4624
4625 2013-05-06 Tom Tromey <tromey@redhat.com>
4626
4627 * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
4628 objfile's obstack.
4629
4630 2013-05-06 Doug Evans <dje@google.com>
4631
4632 * dbxread.c (process_one_symbol): Constify section_offsets parameter.
4633 * stabsread.h (process_one_symbol): Update declaration.
4634 * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
4635 * elfread.c (elf_symfile_relocate_probe): Ditto.
4636 * psymtab.c (relocate_psymtabs): Ditto.
4637 * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
4638 (objfile_relocate): Ditto.
4639 * objfiles.h (objfile_relocate): Update declaration.
4640 * symfile.c (relative_addr_info_to_section_offsets): Constify
4641 addrs parameter.
4642 (default_symfile_offsets): Ditto.
4643 (syms_from_objfile_1): Constify offsets parameter.
4644 (syms_from_objfile): Ditto.
4645 (symbol_file_add_with_addrs_or_offsets): Ditto.
4646 (symfile_map_offsets_to_segments): Constify data parameter.
4647 * symfile.h (struct quick_symbol_functions): Constify new_offsets,
4648 delta parameters of member relocate.
4649 (struct sym_probe_fns): Constify new_offsets,
4650 delta parameters of member sym_relocate_probe.
4651 (struct sym_fns): Constify section_addr_info parameter of member
4652 sym_offsets.
4653 (relative_addr_info_to_section_offsets): Update declaration.
4654 (default_symfile_offsets): Ditto.
4655 (syms_from_objfile): Ditto.
4656 (symfile_map_offsets_to_segments): Ditto.
4657
4658 * symfile.c (syms_from_objfile_1): Use correct section count when
4659 objfile->sf == NULL.
4660
4661 2013-05-06 Mike Frysinger <vapier@gentoo.org>
4662
4663 * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
4664
4665 2013-05-06 Doug Evans <dje@google.com>
4666
4667 * psympriv.h (struct partial_symtab): Augment comment for member
4668 section_offsets.
4669
4670 2013-05-06 Joel Brobecker <brobecker@adacore.com>
4671
4672 Reimplement shared library support on ppc-aix...
4673 * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
4674 * features/library-list-aix.dtd: New file.
4675 * solib-aix.h, solib-aix.c: New file.
4676 * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
4677 (rs6000_find_toc_address_hook): Delete.
4678 (rs6000_push_dummy_call): Rewrite code setting the TOC value.
4679 (rs6000_aix_init_osabi): Register solib_aix_so_ops.
4680 * rs6000-nat.c: Remove "xcoffsolib.h" include. Include
4681 "xml-utils.h".
4682 (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
4683 (vmap_symtab, fixup_breakpoints): Delete.
4684 (rs6000_xfer_shared_libraries): New function.
4685 (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
4686 (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
4687 (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
4688 (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
4689 (rs6000_xfer_shared_library): New function.
4690 (find_toc_address): Delete.
4691 (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
4692 * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
4693 * xcoffread.c (record_minimal_symbol): Reloate symbol address
4694 before creating minimal symbol. Adjust function description
4695 accordingly.
4696 (scan_xcoff_symtab): Replace call to
4697 prim_record_minimal_symbol_and_info by call to
4698 record_minimal_symbol.
4699 (xcoff_symfile_offsets): Reimplement mostly as a wrapper
4700 around default_symfile_offsets.
4701 * configure.tgt: Add solib-aix.o to gdb_target_obs for
4702 powerpc-aix targets.
4703 * config/rs6000/nm-rs6000.h: Delete.
4704 * config/powerpc/aix.mh (NAT_FILE): Delete.
4705 (NATDEPFILES): Remove xcoffsolib.o.
4706 * Makefile.in (XMLFILES): Add library-list-aix.dtd.
4707 (ALL_TARGET_OBS): Add solib-aix.o.
4708 (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
4709 config/rs6000/nm-rs6000.h. Add solib-aix.h.
4710 (ALLDEPFILES): Add solib-aix.c. Remove xcoffsolib.c.
4711 * xcoffsolib.h, xcoffsolib.c: Delete.
4712
4713 * solib.c (reload_shared_libraries): Remove reference to
4714 SOLIB_CREATE_INFERIOR_HOOK.
4715 * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
4716 (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
4717 (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
4718 comment.
4719 * corelow.c (deprecated_core_resize_section_table): Delete.
4720 * exec.c: Remove include of xcoffsolib.h".
4721 (map_vmap, vmap): Delete.
4722 (exec_close_1): Remove references to vmap.
4723 (exec_file_attach): Remove vmap handling code, and reference
4724 to DEPRECATED_IBM6000_TARGET.
4725 (bfdsec_to_vmap): Delete.
4726 (exec_files_info): Remove block of code handling VMAP.
4727 * infcmd.c (post_create_inferior): Remove reference to
4728 SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
4729 * infrun.c (follow_exec): Remove reference to
4730 SOLIB_CREATE_INFERIOR_HOOK.
4731 * stack.c (print_frame): Remove reference to PC_SOLIB.
4732 * solib-dsbt.c (dsbt_current_sos): Adjust comment.
4733 (dsbt_relocate_main_executable): Likewise.
4734 * solib-frv.c (frv_current_sos): Likewise.
4735
4736 2013-05-06 Joel Brobecker <brobecker@adacore.com>
4737
4738 * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
4739 to target_write_memory and target_read_memory.
4740
4741 2013-05-06 Joel Brobecker <brobecker@adacore.com>
4742
4743 * darwin-nat.c (darwin_setup_fake_stop_event): New function.
4744 (darwin_attach): Adjust using darwin_setup_fake_stop_event.
4745
4746 2013-05-06 Joel Brobecker <brobecker@adacore.com>
4747
4748 * darwin-nat.c: Replace all "%x" instances in format strings
4749 into "0x%x" throughout.
4750
4751 2013-05-06 Joel Brobecker <brobecker@adacore.com>
4752
4753 * darwin-nat.c (darwin_mourn_inferior): Replace call to
4754 gdb_assert by call to MACH_CHECK_ERROR.
4755 (darwin_attach_pid): Raise an error rather than a failed
4756 assertion when various system calls failed. Report a warning
4757 instead of raising a failed assertion when PREV_NOT is not NULL
4758 after call to mach_port_request_notification.
4759 (darwin_ptrace_me): Raise an error rather than a failed
4760 assertion when read returns nonzero.
4761
4762 2013-05-06 Joel Brobecker <brobecker@adacore.com>
4763
4764 * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
4765
4766 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
4767
4768 * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
4769
4770 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
4771
4772 * event-top.c (display_gdb_prompt): Call missing do_cleanups.
4773 * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
4774 * symfile.c (symfile_bfd_open): New variable back_to. Do not leave
4775 a stale cleanup. Fix double free of NAME.
4776
4777 2013-05-04 Eli Zaretskii <eliz@gnu.org>
4778
4779 * windows-nat.c (windows_delete_thread): Accept an additional
4780 argument, the thread's exit code, and announce thread death when
4781 print_thread_events is non-zero and we are deleting a thread that
4782 is not the main thread.
4783 (get_windows_debug_event): Pass thread exit code to
4784 windows_delete_thread.
4785
4786 2013-05-03 Kevin Buettner <kevinb@redhat.com>
4787
4788 * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
4789 (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
4790 (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
4791 (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
4792 (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
4793 (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
4794 (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
4795 (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
4796 (gdbarch_tdep): New struct.
4797 (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
4798 E_NUM_REGS.
4799 (v850e3v5_register_name): New function.
4800 (v850_register_type): v850e3v5 vector registers are 64-bits wide.
4801 (v850_use_struct_convention): Add `gdbarch' parameter. Add new
4802 code handling the struct return conventions for the RH850 ABI.
4803 Update all callers.
4804 (v850_eight_byte_align_p): New function.
4805 (v850_push_call_dummy): Push structs by value, not by reference
4806 for the RH850 ABI. Add support for eight byte alignment.
4807 (v850_dbtrap_breakpoint_from_pc): New function.
4808 (v850_gdbarch_init): Add ABI detection code. Register
4809 v850e3v5_register_name for the v850e3v5 architecture. Set the
4810 number of registers for v850e3v5. Register
4811 v850_dbtrap_breakpoint_from_pc as appropriate.
4812 (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
4813
4814 2013-05-03 Doug Evans <dje@google.com>
4815
4816 * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
4817 of bfd_count_sections.
4818 * solib-target.c (solib_target_relocate_section_addresses): Ditto.
4819 * symfile.c (default_symfile_offsets): Ditto.
4820 (syms_from_objfile_1): Ditto. Make dummy addrs list an array of
4821 one entry, not bfd_count_sections entries.
4822
4823 2013-05-03 Kevin Buettner <kevinb@redhat.com>
4824
4825 * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
4826 `save' and `restore' register groups. Don't include SPL
4827 or SPH in these groups.
4828 (rl78_dwarf_reg_to_regnum): Adjust mapping for
4829 RL78_PC_REGNUM. Add mappings for RL78_PSW_REGNUM,
4830 RL78_ES_REGNUM, and RL78_CS_REGNUM.
4831 (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4. Invoke
4832 dwarf2_append_unwinders().
4833
4834 2013-05-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4835
4836 * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
4837 ignore SIGINT and SIGTRAP in case these internal signals are
4838 caught explicitely.
4839
4840 2013-05-01 Joel Brobecker <brobecker@adacore.com>
4841
4842 * darwin-nat.c (darwin_read_write_inferior): Change types
4843 of parameters rdaddr and wraddr to "gdb_byte *". Change type
4844 of copy_count to "mach_msg_type_number_t".
4845 (darwin_read_dyld_info): Change type of parameter
4846 rdaddr to "gdb_byte *".
4847
4848 2013-05-01 Joel Brobecker <brobecker@adacore.com>
4849
4850 * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
4851 of &info->load_map from "char *" to "gdb_byte *".
4852
4853 2013-05-01 Joel Brobecker <brobecker@adacore.com>
4854
4855 * ia64-tdep.c (ia64_access_fpreg): Change cast of val
4856 from "char *" to "gdb_byte *".
4857 (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
4858
4859 2013-04-30 Doug Evans <dje@google.com>
4860
4861 * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
4862 (init_cutu_and_read_dies): Flag a complaint, not error, for bad
4863 DWO stub. If DWO isn't found, just use stub.
4864 (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
4865
4866 * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
4867 calling init_cutu_and_read_dies.
4868
4869 2013-03-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
4870
4871 * target-descriptions.c (maint_print_c_tdesc_cmd):
4872 Add case to parse structures as register types and
4873 bitfields.
4874
4875 2013-04-30 Walfred Tedeschi <walfred.tedeschi@intel.com>
4876
4877 * MAINTAINERS (Write After Approval): Add myself to the list.
4878
4879 2013-04-30 Joel Brobecker <brobecker@adacore.com>
4880
4881 * sol-thread.c (rw_common): Change type of parameter "buf"
4882 to "gdb_byte *".
4883 (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
4884 rw_common to "gdb_byte *" instead of "char *".
4885
4886 2013-04-30 Joel Brobecker <brobecker@adacore.com>
4887
4888 * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
4889 of local variable msym to const struct bound_minimal_symbol.
4890 Adjust use accordingly.
4891 [ti.ti_state == TD_THR_SLEEP]: Likewise.
4892
4893 2013-04-30 Samuel Thibault <samuel.thibault@gnu.org>
4894
4895 * i386gnu-nat.c (CREG_OFFSET): New macro.
4896 (creg_offset): New array.
4897 (CREG_ADDR): Use creg_offset instead of reg_offset.
4898
4899 2013-04-30 Joel Brobecker <brobecker@adacore.com>
4900
4901 * mep-tdep.c (mep_write_pc): Delete.
4902 (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
4903 Add call to set_gdbarch_pc_regnum.
4904
4905 2013-04-30 Joel Brobecker <brobecker@adacore.com>
4906
4907 * common/filestuff.c: Replace #include <dirent.h> by
4908 #include "gdb_dirent.h".
4909
4910 2013-04-30 Joel Brobecker <brobecker@adacore.com>
4911
4912 * common/filestuff.c: Replace #include <sys/stat.h> by
4913 #include "gdb_stat.h".
4914
4915 2013-04-29 Pierre Muller <muller@sourceware.org>
4916
4917 * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
4918 editCase function rule.
4919 (get_DW_AT_signature_type): Likewise.
4920
4921 2013-04-29 Joel Brobecker <brobecker@adacore.com>
4922
4923 * m32r-tdep.c (m32r_write_pc): Delete.
4924 (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
4925 Add call to set_gdbarch_pc_regnum.
4926
4927 2013-04-29 Pierre Muller <muller@sourceware.org>
4928
4929 * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
4930
4931 2013-04-29 Joel Brobecker <brobecker@adacore.com>
4932
4933 * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
4934
4935 2013-04-28 Yao Qi <yao@codesourcery.com>
4936
4937 * solib-dsbt.c (fetch_loadmap): Re-indent.
4938 (displacement_from_map, enable_break2): Likewise.
4939 (dsbt_relocate_section_addresses): Likewise.
4940
4941 2013-04-26 Joel Brobecker <brobecker@adacore.com>
4942
4943 GDB 7.6 released.
4944
4945 2013-04-25 Andreas Kaufmann <Andreas.Kaufmann@synopsys.com>
4946
4947 PR corefiles/14983:
4948 * dwarf2read.c (process_full_comp_unit): Always create a static
4949 block.
4950
4951 2013-04-25 Hui Zhu <hui@codesourcery.com>
4952
4953 * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
4954 to loc->cmd_bytecode.
4955
4956 2013-04-24 Doug Evans <dje@google.com>
4957
4958 * dwarf2read.c (setup_type_unit_groups): Fix comment.
4959
4960 2013-04-22 Keith Seitz <keiths@redhat.com>
4961
4962 * tracepoint.c (trace_save): Call the writer's start method.
4963
4964 2013-04-24 Muhammad Bilal <mbilal@codesourcery.com>
4965
4966 PR gdb/10462
4967 * cli/cli-decode.c (lookup_command): Show an error if there is no space
4968 before argument.
4969
4970 2013-04-23 Tom Tromey <tromey@redhat.com>
4971
4972 * common/filestuff.c: Check USE_WIN32API before including
4973 sys/socket.h.
4974 (HAVE_F_GETFD): New define.
4975 (mark_cloexec): Check HAVE_F_GETFD.
4976 (gdb_open_cloexec): Change 'mode' to unsigned long.
4977 (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
4978 (gdb_pipe_cloexec): Check HAVE_PIPE.
4979 * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
4980 long.
4981
4982 2013-04-23 Hui Zhu <hui@codesourcery.com>
4983
4984 PR gdb/15293
4985 * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
4986
4987 2013-04-23 Hui Zhu <hui@codesourcery.com>
4988
4989 PR gdb/15165
4990 * breakpoint.c (dprintf_print_recreate): New.
4991 (save_breakpoints): Let it not save dprintf commands.
4992 (initialize_breakpoint_ops): Set dprintf_print_recreate.
4993
4994 2013-04-22 Tom Tromey <tromey@redhat.com>
4995
4996 PR gdb/7912:
4997 * Makefile.in (SFILES): Add filestuff.c
4998 (COMMON_OBS): Add filestuff.o.
4999 (filestuff.o): New target.
5000 * auto-load.c (auto_load_objfile_script_1): Use
5001 gdb_fopen_cloexec.
5002 * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
5003 * cli/cli-cmds.c (shell_escape): Call close_most_fds.
5004 * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
5005 * common/agent.c (gdb_connect_sync_socket): Use
5006 gdb_socket_cloexec.
5007 * common/filestuff.c: New file.
5008 * common/filestuff.h: New file.
5009 * common/linux-osdata.c (linux_common_core_of_thread)
5010 (command_from_pid, commandline_from_pid, print_source_lines)
5011 (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
5012 (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
5013 gdb_fopen_cloexec.
5014 * common/linux-procfs.c (linux_proc_get_int)
5015 (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
5016 * config.in, configure: Rebuild.
5017 * configure.ac: Don't check for sys/socket.h. Check for
5018 fdwalk, pipe2.
5019 * corelow.c (core_open): Use gdb_open_cloexec.
5020 * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
5021 * fork-child.c (fork_inferior): Call close_most_fds.
5022 * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
5023 * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
5024 * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
5025 Use gdb_fopen_cloexec.
5026 (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
5027 gdb_open_cloexec.
5028 (linux_async_pipe): Use gdb_pipe_cloexec.
5029 * remote-fileio.c (remote_fileio_func_open): Use
5030 gdb_open_cloexec.
5031 * remote.c (remote_file_put, remote_file_get): Use
5032 gdb_fopen_cloexec.
5033 * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
5034 close_most_fds.
5035 * ser-tcp.c (net_open): Use gdb_socket_cloexec.
5036 * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
5037 * solib.c (solib_find): Use gdb_open_cloexec.
5038 * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
5039 * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
5040 (tfile_open): Use gdb_open_cloexec.
5041 * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
5042 * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
5043 * xml-support.c (xml_fetch_content_from_file): Use
5044 gdb_fopen_cloexec.
5045 * main.c (captured_main): Call notice_open_fds.
5046
5047 2013-04-22 Edjunior Machado <emachado@linux.vnet.ibm.com>
5048
5049 * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
5050 'char *' to 'gdb_byte *'.
5051 (gdbsim_store_register): Change the type of 'tmp' from 'char' to
5052 'gdb_byte'.
5053
5054 2013-04-22 Yao Qi <yao@codesourcery.com>
5055
5056 * infrun.c: Fix typo in comment.
5057
5058 2013-04-22 Andrew Haley <aph@redhat.com>
5059
5060 * arm-tdep.c (BranchDest): Cast result as "unsigned long",
5061 instead of "long".
5062
5063 2013-04-20 Yao Qi <yao@codesourcery.com>
5064
5065 * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
5066 'char *' to 'gdb_byte *'. Cast the return value of
5067 'bt_ctf_get_char_array' to 'gdb_byte *'.
5068
5069 2013-04-19 Pedro Alves <palves@redhat.com>
5070
5071 * configure.ac (build_warnings): Replace -Wno-pointer-sign with
5072 -Wpointer-sign.
5073 * configure: Regenerate.
5074
5075 2013-04-19 Pedro Alves <palves@redhat.com>
5076
5077 * ser-tcp.c (net_read_prim): Cast second argument to recv to
5078 'void *'.
5079
5080 2013-04-19 Pedro Alves <palves@redhat.com>
5081
5082 * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
5083 Change type of 'myaddr' parameter to gdb_byte pointer.
5084 (monitor_write_memory_longlongs): Likewise. Cast 'myaddr' pointer
5085 to 'long long' pointer instead of to 'unsigned long long'.
5086 (monitor_write_memory_block, monitor_read_memory_single)
5087 (monitor_read_memory): Change type of 'myaddr' parameter to
5088 gdb_byte pointer.
5089
5090 2013-04-19 Pedro Alves <palves@redhat.com>
5091
5092 * record.c (validate_history_size): Make parameter 'setting'
5093 unsigned.
5094
5095 2013-04-19 Pedro Alves <palves@redhat.com>
5096
5097 * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
5098 to 'gdb_byte *'.
5099
5100 2013-04-19 Pedro Alves <palves@redhat.com>
5101
5102 * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
5103 local to int.
5104
5105 2013-04-19 Pedro Alves <palves@redhat.com>
5106
5107 * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
5108 * ada-tasks.c (read_fat_string_value): Likewise.
5109
5110 2013-04-19 Pedro Alves <palves@redhat.com>
5111
5112 * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
5113 unsigned. Pass 'tmp' to safe_read_uleb128 instead of the signed
5114 'offset', and adjust.
5115
5116 2013-04-19 Pedro Alves <palves@redhat.com>
5117
5118 * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
5119 (read_index_from_section): Add cast to 'char *'.
5120
5121 2013-04-19 Pedro Alves <palves@redhat.com>
5122
5123 * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
5124
5125 2013-04-19 Pedro Alves <palves@redhat.com>
5126
5127 * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
5128
5129 2013-04-19 Pedro Alves <palves@redhat.com>
5130
5131 * record-full.c (record_full_get_bookmark): Change local 'ret'
5132 type to char * and add cast to gdb_byte *.
5133 (record_full_goto_bookmark): Handle 'bookmark' argument as a
5134 string.
5135 * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
5136
5137 2013-04-19 Pedro Alves <palves@redhat.com>
5138
5139 * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
5140 * python/py-prettyprint.c (print_string_repr): Change type of
5141 'output' local to char *. Add cast to gdb_byte * in
5142 LA_PRINT_STRING call.
5143 (print_children): Change type of 'output' local to char *.
5144 * python/py-value.c (valpy_string): Add cast to const char * in
5145 PyUnicode_Decode call.
5146
5147 2013-04-19 Pedro Alves <palves@redhat.com>
5148
5149 * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
5150 and change its type to 'const char *'. Adjust.
5151 (mips_send_packet): Add cast to 'char *', and remove cast to
5152 'unsigned char *'.
5153 (mips_receive_packet): Remove cast to 'unsigned char *'.
5154 (mips_load_srec): Use bfd_byte.
5155 (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
5156 (pmon_checkset): Make 'value' parameter unsigned.
5157
5158 2013-04-19 Pedro Alves <palves@redhat.com>
5159
5160 * common/agent.c (agent_run_command): Add cast to gdb_byte *.
5161
5162 2013-04-19 Pedro Alves <palves@redhat.com>
5163
5164 * remote.c (remote_write_bytes_aux, compare_sections_command)
5165 (remote_read_qxfer)
5166 (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
5167 (remote_hostio_readlink, remote_bfd_iovec_pread)
5168 (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
5169 binary buffer, and char when buffer is used as string.
5170 * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
5171 (trace_save, tfile_open, traceframe_walk_blocks)
5172 (tfile_fetch_registers): Likewise.
5173
5174 2013-04-19 Pedro Alves <palves@redhat.com>
5175
5176 * ser-base.c (ser_base_write): Change prototype -- take 'void *'
5177 buffer and size_t size. Adjust.
5178 * ser-base.h (ser_base_write): Adjust.
5179 * ser-go32.c (cnts): Change type to size_t.
5180 (dos_write): Change prototype -- take 'void *'
5181 buffer and size_t size. Adjust.
5182 (dos_info): Print elements of 'cnts' as unsigned long.
5183 * serial.c (serial_write): Likewise.
5184 * serial.h (serial_write): Adjust.
5185 (struct serial_ops) <write>: Change prototype -- take 'void *'
5186 buffer and size_t size. Adjust.
5187
5188 2013-04-19 Pedro Alves <palves@redhat.com>
5189
5190 * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
5191 gdb_byte *.
5192 * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
5193
5194 2013-04-19 Pedro Alves <palves@redhat.com>
5195
5196 * alpha-tdep.c (alpha_extract_return_value): Use
5197 regcache_cooked_read_unsigned to read 'v0'.
5198
5199 2013-04-19 Pedro Alves <palves@redhat.com>
5200
5201 * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
5202 parameters 'at', 'as' and 'offset' to uint32_t.
5203
5204 2013-04-19 Pedro Alves <palves@redhat.com>
5205
5206 * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
5207 'is64' to signed 'int'.
5208
5209 2013-04-19 Pedro Alves <palves@redhat.com>
5210
5211 * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
5212 parameter to int *.
5213
5214 2013-04-19 Pedro Alves <palves@redhat.com>
5215
5216 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
5217 'insnbuf' buffer type to unsigned int[].
5218
5219 2013-04-19 Pedro Alves <palves@redhat.com>
5220
5221 * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
5222
5223 2013-04-19 Pedro Alves <palves@redhat.com>
5224
5225 * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
5226 unsigned long *.
5227
5228 2013-04-19 Pedro Alves <palves@redhat.com>
5229
5230 * alpha-tdep.c (heuristic_fence_post): Change type to int.
5231 (alpha_heuristic_proc_start): Adjust to check -1 instead of
5232 UINT_MAX.
5233 * mips-tdep.c (heuristic_fence_post): Change type to int.
5234 (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
5235
5236 2013-04-19 Pedro Alves <palves@redhat.com>
5237
5238 * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
5239 (struct gdbarch_tdep) <cris_version>: Make unsigned.
5240 (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
5241
5242 2013-04-19 Pedro Alves <palves@redhat.com>
5243
5244 * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'. Use
5245 it to get a string view of the byte buffer.
5246 * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
5247 type to gdb_byte *. Adjust.
5248 * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
5249 Change local to char *.
5250 * solib-darwin.c (find_program_interpreter): Change return type to
5251 char *. Adjust.
5252 (darwin_solib_get_all_image_info_addr_at_init): Adjust.
5253 * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
5254 * solib-frv.c (enable_break2): Change local 'buf' to char *.
5255 * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
5256 * solib-svr4.c (find_program_interpreter): Change return type to
5257 char *. Adjust.
5258 (enable_break): Change local 'interp_name' to char *.
5259 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
5260 * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
5261 (spu_pseudo_register_write_spu): Use char for string buffer.
5262 Adjust.
5263 (info_spu_event_command, info_spu_signal_command): Add casts to
5264 'char *'.
5265
5266 2013-04-19 Pedro Alves <palves@redhat.com>
5267
5268 * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
5269 gdb_byte[].
5270 (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
5271 * ada-lang.c (ada_value_assign): Use gdb_byte.
5272 * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
5273 (alphanbsd_sigtramp_offset): Use gdb_byte.
5274 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
5275 (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
5276 (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
5277 (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
5278 (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
5279 * arm-tdep.c (arm_stub_unwind_sniffer)
5280 (arm_displaced_init_closure): Use gdb_byte.
5281 (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
5282 (arm_default_thumb_le_breakpoint)
5283 (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
5284 * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
5285 thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
5286 * arm-wince-tdep.c (arm_wince_le_breakpoint)
5287 (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
5288 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
5289 (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
5290 (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
5291 * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
5292 (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
5293 * cris-tdep.c (push_stack_item, cris_push_dummy_call)
5294 (cris_store_return_value, cris_extract_return_value): Use
5295 gdb_byte.
5296 (constraint): Change type of parameter to char * from signed
5297 char*. Use gdb_byte.
5298 * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
5299 of local buffer to gdb_byte *.
5300 * dwarf2read.c (read_index_from_section): Use gdb_byte.
5301 (create_dwp_hash_table): Change type of locals to gdb_byte *.
5302 (add_address_entry): Change type of local buffer to gdb_byte[].
5303 * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
5304 (frv_push_dummy_call): Use gdb_byte.
5305 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
5306 (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
5307 (hppa_hpux_supply_save_state): Use gdb_byte.
5308 * hppa-tdep.c (hppa32_push_dummy_call)
5309 (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
5310 * ia64-tdep.c (extract_bit_field, replace_bit_field)
5311 (slotN_contents, replace_slotN_contents): Change type of parameter
5312 to gdb_byte *.
5313 (fetch_instruction, ia64_pseudo_register_write)
5314 (ia64_register_to_value, ia64_value_to_register)
5315 (ia64_extract_return_value, ia64_store_return_value)
5316 (ia64_push_dummy_call): Use gdb_byte.
5317 * m32c-tdep.c (m32c_return_value): Remove cast.
5318 * m68hc11-tdep.c (m68hc11_pseudo_register_write)
5319 (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
5320 gdb_byte.
5321 * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
5322 * mn10300-tdep.c (mn10300_store_return_value)
5323 (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
5324 gdb_byte.
5325 * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
5326 (moxie_process_record): Remove casts.
5327 * ppc-ravenscar-thread.c (supply_register_at_address)
5328 (ppc_ravenscar_generic_store_registers): Use gdb_byte.
5329 * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
5330 * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
5331 * remote-mips.c (mips_xfer_memory): Use gdb_byte.
5332 * remote.c (compare_sections_command): Use gdb_byte.
5333 * score-tdep.c (score7_free_memblock): Change type of parameter to
5334 gdb_byte *.
5335 * sh-tdep.c (sh_justify_value_in_reg): Change return type to
5336 gdb_byte *. Use gdb_byte.
5337 (sh_push_dummy_call_fpu): Use gdb_byte.
5338 (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
5339 (sh_store_return_value_nofpu, sh_store_return_value_fpu)
5340 (sh_register_convert_to_virtual, sh_register_convert_to_raw):
5341 Change parameter type to 'gdb_byte *'. Use gdb_byte.
5342 (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
5343 * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
5344 (sh64_store_return_value, sh64_register_convert_to_virtual):
5345 Change parameter type to 'gdb_byte *'. Use gdb_byte.
5346 (sh64_pseudo_register_write): Use gdb_byte.
5347 * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
5348 * solib-irix.c (fetch_lm_info): Likewise. Use gdb_byte for byte
5349 buffer.
5350 (irix_current_sos): Use gdb_byte.
5351 * solib-som.c (som_current_sos): Use gdb_byte.
5352 * sparc-ravenscar-thread.c (supply_register_at_address)
5353 (sparc_ravenscar_generic_store_registers): Use gdb_byte.
5354 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
5355 * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
5356 * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
5357 'gdb_byte *'.
5358 * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
5359 'gdb_byte *'.
5360 * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
5361 * xstormy16-tdep.c (xstormy16_extract_return_value)
5362 (xstormy16_store_return_value): Change parameter type to
5363 'gdb_byte *'. Adjust.
5364 (xstormy16_push_dummy_call): Use gdb_byte.
5365 * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
5366 (call0_analyze_prologue, execute_code): Use gdb_byte.
5367
5368 2013-04-19 Vladimir Kargov <kargov@gmail.com>
5369 Pedro Alves <palves@redhat.com>
5370
5371 * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
5372 value contents.
5373
5374 2013-04-17 Doug Evans <dje@google.com>
5375
5376 * dwarf2read.c (struct signatured_type): New member type.
5377 (struct attribute): Replace member signatured_type with signature.
5378 (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
5379 (read_call_site_scope): Call follow_die_ref instead of
5380 follow_die_ref_or_sig.
5381 (read_structure_type): Rewrite handling of signatured types.
5382 (read_enumeration_type): Ditto.
5383 (read_attribute_value): Update.
5384 (build_error_marker_type): New function.
5385 (lookup_die_type): Add assert. Rewrite handling of signatured types.
5386 Don't call error for bad types, just build an error marker type.
5387 (dump_die_shallow): Update.
5388 (follow_die_sig_1): Renamed from follow_die_sig.
5389 Don't call error for bad types, instead return NULL.
5390 (follow_die_sig): New function.
5391 (get_signatured_type, get_DW_AT_signature_type): New functions.
5392
5393 2013-04-17 Yufeng Zhang <yufeng.zhang@arm.com>
5394
5395 * aarch64-tdep.c (aarch64_write_pc): Removed.
5396 (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
5397 function.
5398
5399 2013-04-17 Yao Qi <yao@codesourcery.com>
5400
5401 * top.c (print_gdb_configuration): Print configure-time
5402 parameter on using libbabeltrace or not.
5403
5404 2013-04-16 Pedro Alves <palves@redhat.com>
5405
5406 * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
5407
5408 2013-04-16 Pedro Alves <palves@redhat.com>
5409
5410 * common/glibc_thread_db.h: Update from upstream glibc
5411 (git 568035b7874a099087b77f7bba3e36a1173787b0).
5412
5413 2013-04-16 Pedro Alves <palves@redhat.com>
5414
5415 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
5416 * common/glibc_thread_db.h: ... this new file ...
5417 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
5418
5419 2013-04-16 Will Newton <will.newton@gmail.com>
5420 Pedro Alves <palves@redhat.com>
5421
5422 PR build/11881
5423
5424 * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
5425 (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
5426 HAVE_THREAD_DB_H.
5427
5428 2013-04-16 Pedro Alves <palves@redhat.com>
5429 Eli Zaretskii <eliz@gnu.org>
5430
5431 * NEWS: Mention "set foo unlimited".
5432
5433 2013-04-15 Doug Evans <dje@google.com>
5434
5435 * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
5436 (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
5437 (create_dwo_cu_reader): Renamed from
5438 create_dwo_debug_info_hash_table_reader.
5439 (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
5440 Remove support for multiple CUs in a DWO file.
5441 (open_and_init_dwo_file, lookup_dwo_cutu): Update.
5442
5443 * dwarf2read.c (create_debug_types_hash_table): Use hex_string
5444 instead of phex.
5445 (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
5446 (create_dwo_in_dwp): Ditto.
5447
5448 2013-04-15 Tom Tromey <tromey@redhat.com>
5449
5450 * NEWS: Move recent entries into "since 7.6" section.
5451
5452 2013-04-15 Tom Tromey <tromey@redhat.com>
5453
5454 PR c++/13588:
5455 * NEWS: Update.
5456 * break-catch-throw.c (struct exception_catchpoint)
5457 <exception_rx, pattern>: New fields.
5458 (fetch_probe_arguments, dtor_exception_catchpoint)
5459 (check_status_exception_catchpoint)
5460 (print_one_detail_exception_catchpoint): New functions.
5461 (handle_gnu_v3_exceptions): Add "except_rx" argument.
5462 Compile regular expression if needed.
5463 (extract_exception_regexp): New function.
5464 (catch_exception_command_1): Use extract_exception_regexp.
5465 (compute_exception): Use fetch_probe_arguments.
5466 (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
5467 and check_status fields.
5468 * cp-abi.c (cplus_typename_from_type_info): New function.
5469 * cp-abi.h (cplus_typename_from_type_info): Declare.
5470 (struct cp_abi_ops) <get_typename_from_type_info>: New field.
5471 * gdb_regex.h (compile_rx_or_error): Declare.
5472 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
5473 comment.
5474 (init_gnuv3_ops): Set get_type_from_type_info field.
5475 * probe.c (compile_rx_or_error): Move...
5476 * utils.c (compile_rx_or_error): ... here.
5477
5478 2013-04-15 Tom Tromey <tromey@redhat.com>
5479
5480 PR c++/15176:
5481 * NEWS: Update.
5482 * break-catch-throw.c (compute_exception): New function.
5483 (exception_funcs): New global.
5484 (_initialize_break_catch_throw): Create $_exception.
5485 * cp-abi.c (cplus_type_from_type_info): New function.
5486 * cp-abi.h (cplus_type_from_type_info): Declare.
5487 (struct cp_abi_ops) <get_type_from_type_info>: New field.
5488 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
5489 (gnuv3_get_type_from_type_info): New functions.
5490 (init_gnuv3_ops): Set get_type_from_type_info ABI field.
5491
5492 2013-04-15 Tom Tromey <tromey@redhat.com>
5493
5494 * break-catch-throw.c (struct exception_names): New.
5495 (exception_functions): Change type.
5496 (re_set_exception_catchpoint): Look for SDT probes.
5497
5498 2013-04-15 Tom Tromey <tromey@redhat.com>
5499
5500 PR c++/10119:
5501 * break-catch-throw.c (exception_functions): New global.
5502 (gnu_v3_exception_catchpoint_ops): Move earlier.
5503 (struct exception_catchpoint): New.
5504 (classify_exception_breakpoint): Rewrite.
5505 (re_set_exception_catchpoint): New function.
5506 (handle_gnu_v3_exceptions): Return void. Use init_catchpoint.
5507 Allocate a struct exception_catchpoint.
5508 (catch_exception_command_1): Update.
5509 (initialize_throw_catchpoint_ops): Set 're_set' method.
5510
5511 2013-04-15 Tom Tromey <tromey@redhat.com>
5512
5513 * Makefile.in (SFILES): Add break-catch-throw.c
5514 (COMMON_OBS): Add break-catch-throw.o.
5515 * break-catch-throw.c: New file.
5516 * breakpoint.c: Move exception-catching code to new file.
5517 (ep_parse_optional_if_clause): No longer static.
5518 * breakpoint.h (ep_parse_optional_if_clause): Declare.
5519
5520 2013-04-15 Tom Tromey <tromey@redhat.com>
5521
5522 PR c++/9065:
5523 * NEWS: Update.
5524 * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
5525 * c-exp.y (TYPEID): New token.
5526 (exp): Add new TYPEID productions.
5527 (ident_tokens): Add "typeid".
5528 * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
5529 * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
5530 (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
5531 * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
5532 * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
5533 case.
5534 * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
5535 (build_std_type_info_type, gnuv3_get_typeid_type)
5536 (gnuv3_get_typeid): New functions.
5537 (init_gnuv3_ops): Initialize std_type_info_gdbarch_data. Set
5538 new fields on ABI object.
5539 * parse.c (operator_length_standard) <OP_TYPEID>: New case.
5540 * std-operator.def (OP_TYPEID): New.
5541
5542 2013-04-15 Tom Tromey <tromey@redhat.com>
5543
5544 * elfread.c (elf_symtab_read): Install versioned symbol under
5545 unversioned name as well.
5546
5547 2013-04-15 Tom Tromey <tromey@redhat.com>
5548
5549 PR c++/11990:
5550 * c-lang.c (cplus_language_defn): Use gdb_demangle.
5551 * c-typeprint.c (c_type_print_base): Use gdb_demangle.
5552 * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
5553 (gdb_demangle): New function.
5554 * cp-support.h (gdb_demangle): Declare.
5555 * dwarf2read.c (dwarf2_physname, fixup_partial_die)
5556 (dwarf2_name): Use gdb_demangle.
5557 * gdbtypes.c (check_stub_method): Use gdb_demangle.
5558 * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
5559 suffixes from name.
5560 (gnuv3_print_method_ptr): Use gdb_demangle.
5561 * jv-lang.c (java_demangle): Use gdb_demangle.
5562 * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
5563 * language.c (unk_lang_demangle): Use gdb_demangle.
5564 * symtab.c (symbol_find_demangled_name)
5565 (demangle_for_lookup): Use gdb_demangle.
5566
5567 2013-04-15 Tom Tromey <tromey@redhat.com>
5568
5569 PR c++/12824:
5570 * NEWS: Update.
5571 * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
5572 New constant.
5573 (classify_exception_breakpoint): New function.
5574 (print_it_exception_catchpoint, print_one_exception_catchpoint)
5575 (print_mention_exception_catchpoint)
5576 (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
5577 (catch_exception_command_1): Handle "rethrow" catchpoint.
5578 (catch_rethrow_command): New function.
5579 (_initialize_breakpoint): Add "catch rethrow" command.
5580
5581 2013-04-15 Pierre Muller <muller@sourceware.org>
5582
5583 * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
5584 set_gdbarch_write_pc as deprecated anymore.
5585
5586 2013-04-15 Joel Brobecker <brobecker@adacore.com>
5587
5588 * spu-tdep.c (spu_write_pc): Add empty line after local variable
5589 declarations.
5590
5591 2013-04-13 Yao Qi <yao@codesourcery.com>
5592
5593 * ctf.c (_initialize_ctf): Include "completer.h".
5594 Call add_target_with_completer instead of add_target.
5595
5596 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
5597
5598 Fix GDB regression related to PR binutils/14813.
5599 * jit.c (mem_bfd_iovec_close): Return 0 for success.
5600 * minidebug.c (lzma_close): Add return value comment.
5601 * remote.c (remote_bfd_iovec_close): Return 0 for success.
5602 * solib-spu.c (spu_bfd_iovec_close): Likewise.
5603 * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
5604
5605 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
5606
5607 * config.in: Regenerate.
5608
5609 2013-04-12 Tom Tromey <tromey@redhat.com>
5610
5611 * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
5612 const.
5613 * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
5614 (struct die_reader_specs) <buffer>: Likewise.
5615 (die_reader_func_ftype): Make 'info_ptr' const.
5616 (struct line_header) <include_dirs, statement_program_start,
5617 statement_program_end>: Now const.
5618 (struct file_entry) <name>: Likewise.
5619 (struct partial_die_info) <sibling>: Likewise.
5620 (struct dwarf_block) <data>: Likewise.
5621 (dwarf2_read_section): Remove cast.
5622 (dwarf2_get_section_info): Make 'bufp' const.
5623 (read_index_from_section): Constify.
5624 (dw2_get_file_names_reader): Make 'info_ptr' const.
5625 (dw2_get_primary_filename_reader): Likewise.
5626 (read_comp_unit_head): Make 'info_ptr' and return type const.
5627 (read_and_check_comp_unit_head, read_and_check_type_unit_head):
5628 Likewise.
5629 (read_abbrev_offset): Constify.
5630 (dwarf2_create_include_psymtab): Make 'name' const.
5631 (create_debug_types_hash_table): Update.
5632 (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
5633 (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
5634 Constify.
5635 (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
5636 (load_partial_comp_unit_reader): Make 'info_ptr' const.
5637 (read_comp_units_from_section): Constify.
5638 (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
5639 (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
5640 const.
5641 (dwarf2_compute_name, setup_type_unit_groups): Constify.
5642 (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
5643 (create_dwp_hash_table, dwarf2_ranges_read)
5644 (dwarf2_record_block_ranges): Constify.
5645 (read_die_and_children, read_die_and_siblings_1)
5646 (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
5647 const.
5648 (read_full_die_1, read_full_die): Make 'info_ptr' const.
5649 (abbrev_table_read_table): Constify.
5650 (load_partial_dies): Make 'info_ptr' const.
5651 (read_partial_die, read_attribute_value, read_attribute): Make
5652 'info_ptr' and return type const.
5653 (read_address, read_initial_length)
5654 (read_checked_initial_length_and_offset, read_offset)
5655 (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
5656 const.
5657 (read_direct_string): Make 'buf' and return type const.
5658 (read_indirect_string_at_offset, read_indirect_string_from_dwz)
5659 (read_indirect_string): Make return type const.
5660 (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
5661 (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
5662 'info_ptr' const.
5663 (read_str_index): Make return type const.
5664 (add_include_dir): Make 'include_dir' const.
5665 (add_file_name): Make 'name' const.
5666 (dwarf_decode_line_header): Constify.
5667 (psymtab_include_file_name): Make return type const.
5668 (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
5669 (dwarf2_start_subfile): Make 'filename' const.
5670 (dwarf2_const_value_attr): Make 'bytes' const.
5671 (read_signatured_type_reader): Make 'info_ptr' const.
5672 (decode_locdesc): Constify.
5673 (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
5674 const.
5675 (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
5676 'mac_end', and return type const.
5677 (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
5678 (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
5679 type const.
5680 (per_cu_header_read_in): Constify.
5681 * symfile.h (dwarf2_get_section_info): Update.
5682
5683 2013-04-12 Tom Tromey <tromey@redhat.com>
5684
5685 * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
5686
5687 2013-04-12 Eli Zaretskii <eliz@gnu.org>
5688
5689 * NEWS: Mention "show configuration", --configuration.
5690 * top.c (print_gdb_configuration): New function, displays the
5691 details about GDB configure-time parameters.
5692 (print_gdb_version): Mention "show configuration".
5693 * cli/cli-cmds.c (show_configuration): New function.
5694 (_initialize_cli_cmds): Add the "show configuration" command.
5695 * main.c (captured_main) <print_configuration>: New static var.
5696 <long_options>: Use it.
5697 If --configuration was given, call print_gdb_configuration.
5698
5699 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
5700 Pedro Alves <palves@redhat.com>
5701
5702 * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
5703 (generated_files): Add gcore.
5704 (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
5705 HAVE_NATIVE_GCORE_HOST.
5706 (gcore): New.
5707 * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
5708 * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
5709 config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
5710 config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
5711 config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
5712 Add HAVE_NATIVE_GCORE_HOST.
5713 * configure: Regenerate.
5714 * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
5715 New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME. New
5716 AC_CONFIG_FILES for gcore.
5717 * configure.tgt: Add gdb_have_gcore to the initial comment. Set
5718 gdb_have_gcore.
5719 * gdb_gcore.sh: Rename to ...
5720 * gcore.in: ... here. Remove gcore.sh comment. Use GDB_TRANSFORM_NAME
5721 and GCORE_TRANSFORM_NAME substitutions.
5722
5723 Fix parsing tabs in ${gdb_target_obs}.
5724 * configure.tgt (gdb_have_gcore): Replace case with for and if.
5725
5726 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
5727
5728 * remote.c (unpush_and_perror): Add output message final dot.
5729
5730 2013-04-11 Yao Qi <yao@codesourcery.com>
5731
5732 * tracepoint.c (tfile_interp_line): Fit parameters line and
5733 utpp in one line.
5734
5735 2013-04-10 Joel Brobecker <brobecker@adacore.com>
5736
5737 * solib.c (solib_map_sections): Remove code overwriting
5738 SO->SO_NAME with the bfd's filename.
5739
5740 2013-04-10 Pedro Alves <palves@redhat.com>
5741
5742 * cli/cli-decode.c (integer_unlimited_completer): New function.
5743 (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
5744 (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
5745 completer.
5746 * cli/cli-setshow.c: Include "cli/cli-utils.h".
5747 (is_unlimited_literal): New function.
5748 (do_set_command): Handle literal "unlimited" arguments.
5749 * frame.c (_initialize_frame) <set backtrace limit>: Document
5750 "unlimited".
5751 * printcmd.c (_initialize_printcmd) <set print
5752 max-symbolic-offset>: Add help text.
5753 * record-full.c (_initialize_record_full) <set record full
5754 insn-number-max>: Likewise.
5755 * record.c (_initialize_record) <set record
5756 instruction-history-size, set record function-call-history-size>:
5757 Add help text.
5758 * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
5759 help text.
5760 * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
5761 Likewise.
5762 * source.c (_initialize_source) <set listsize>: Add help text.
5763 * utils.c (initialize_utils) <set height, set width>: Likewise.
5764 <set pagination>: Mention "set height unlimited".
5765 * valprint.c (_initialize_valprint) <set print elements, set print
5766 repeats>: Document "unlimited".
5767
5768 2013-04-10 Pedro Alves <palves@redhat.com>
5769
5770 * cli/cli-cmds.c (quit_command): Call query_if_trace_running
5771 instead of disconnect_tracing.
5772 * infcmd.c (detach_command, disconnect_command): Call
5773 query_if_trace_running. Adjust.
5774 * top.c: Include "tracepoint.h".
5775 (quit_target): Delete. Contents moved ...
5776 (quit_force): ... here. Wrap each stage of teardown in
5777 TRY_CATCH. Call disconnect_tracing before detaching.
5778
5779 2013-04-10 Hui Zhu <hui@codesourcery.com>
5780 Yao Qi <yao@codesourcery.com>
5781
5782 * configure.ac: Check libbabeltrace is installed.
5783 * config.in: Regenerate.
5784 * configure: Regenerate.
5785 * Makefile.in (LIBBABELTRACE): New.
5786 (CLIBS): Add LIBBABELTRACE.
5787 * ctf.c: Include "exec.h".
5788 (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
5789 (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
5790 (ctf_save_metadata_header): Define new type aliases in
5791 metadata.
5792 (ctf_write_header): Define event type "tsv_def" and "tp_def"
5793 in metadata. Start a new faked packet for trace status.
5794 (ctf_write_status): Write trace status to CTF.
5795 (ctf_write_uploaded_tsv): Write TSV to CTF.
5796 (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
5797 (ctf_write_definition_end): End the faked packet.
5798
5799 (ctx, ctf_iter, trace_dirname): New.
5800 (start_pos): New variable.
5801 (ctf_destroy, ctf_open_dir, ctf_open): New.
5802 (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
5803 macros.
5804 (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
5805 (ctf_fetch_registers, ctf_xfer_partial): New.
5806 (ctf_get_trace_state_variable_value): New.
5807 (ctf_get_tpnum_from_frame_event): New.
5808 (ctf_get_traceframe_address): New.
5809 (ctf_trace_find, ctf_has_stack): New.
5810 (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
5811 (ctf_get_trace_status, ctf_read_status): New.
5812 (_initialize_ctf): New.
5813 * tracepoint.c (get_tracepoint_number): New
5814 (get_uploaded_tsv): Remove 'static'.
5815 (struct traceframe_info, trace_regblock_size): Move it to ...
5816 * tracepoint.h: ... here.
5817 (get_tracepoint_number): Declare it.
5818 (get_uploaded_tsv): Declare it.
5819
5820 * NEWS: Mention new configure option.
5821
5822 2013-04-10 Pedro Alves <palves@redhat.com>
5823 Hui Zhu <hui@codesourcery.com>
5824
5825 * breakpoint.c (dprintf_re_set): New.
5826 (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
5827 to dprintf_re_set.
5828
5829 2013-04-09 Joel Brobecker <brobecker@adacore.com>
5830
5831 * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
5832 Remove solib-svr4.o from the list.
5833
5834 2013-04-09 Joel Brobecker <brobecker@adacore.com>
5835
5836 * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
5837 Use gdb_assert_not_reached instead of invalid boolean expression.
5838
5839 2013-04-09 Pedro Alves <palves@redhat.com>
5840
5841 * remote.c (unpush_and_perror): New function.
5842 (readchar, remote_serial_write): Use it.
5843
5844 2013-04-09 Markus Metzger <markus.t.metzger@intel.com>
5845
5846 * NEWS: Mention new btrace RSP packets.
5847
5848 2013-04-08 Tom Tromey <tromey@redhat.com>
5849
5850 * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
5851 long.
5852
5853 2013-04-08 Tom Tromey <tromey@redhat.com>
5854
5855 * maint.c (print_bfd_section_info): Print the section index.
5856 * symmisc.c (dump_msymbols): Print the section index.
5857
5858 2013-04-08 Tom Tromey <tromey@redhat.com>
5859
5860 PR symtab/8424:
5861 * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
5862 SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
5863 * breakpoint.c (resolve_sal_pc): Update.
5864 * elfread.c (elf_gnu_ifunc_record_cache): Update.
5865 * findvar.c (struct minsym_lookup_data) <objfile>: New field.
5866 (minsym_lookup_iterator_cb): Use it.
5867 (default_read_var_value): Update.
5868 * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
5869 Update.
5870 * infcmd.c (jump_command): Update.
5871 * linespec.c (minsym_found): Update.
5872 * maint.c (maintenance_translate_address): Update.
5873 * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
5874 (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
5875 * parse.c (write_exp_msymbol): Update.
5876 * printcmd.c (address_info): Update.
5877 * psymtab.c (find_pc_sect_psymbol): Update.
5878 (fixup_psymbol_section): Check SYMBOL_SECTION, not
5879 SYMBOL_OBJ_SECTION.
5880 (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
5881 Don't initialize SYMBOL_OBJ_SECTION.
5882 * spu-tdep.c (spu_catch_start): Update.
5883 * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
5884 * symmisc.c (dump_msymbols, print_symbol): Update.
5885 * symtab.c (fixup_section): Don't set 'obj_section'. Change
5886 how fallback section is computed.
5887 (fixup_symbol_section): Update.
5888 (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
5889 Update.
5890 (allocate_symbol, initialize_symbol, allocate_template_symbol):
5891 Initialize SYMBOL_SECTION.
5892 * symtab.h (struct general_symbol_info) <section>: Update comment.
5893 <obj_section>: Remove.
5894 (SYMBOL_OBJ_SECTION): Add 'objfile' argument. Rewrite.
5895 (SYMBOL_OBJFILE): New macro.
5896
5897 2013-04-08 Tom Tromey <tromey@redhat.com>
5898
5899 * coffread.c (record_minimal_symbol): Update.
5900 * dbxread.c (record_minimal_symbol): Update.
5901 * elfread.c (record_minimal_symbol): Update.
5902 * machoread.c (macho_symtab_add_minsym): Update.
5903 * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
5904 Update.
5905 * minsyms.c (prim_record_minimal_symbol): Update.
5906 (prim_record_minimal_symbol_full): Remove 'bfd_section'
5907 argument.
5908 (prim_record_minimal_symbol_and_info): Likewise.
5909 * minsyms.h (prim_record_minimal_symbol_full)
5910 (prim_record_minimal_symbol_and_info): Update.
5911 * symtab.c (allocate_symbol, initialize_symbol)
5912 (allocate_template_symbol): Initialize SYMBOL_SECTION.
5913 * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
5914 Update.
5915
5916 2013-04-08 Tom Tromey <tromey@redhat.com>
5917
5918 PR symtab/8423:
5919 * solib-som.c (som_solib_section_offsets): Use BFD section
5920 indices. Set offsets for all sections.
5921 * somread.c (som_symtab_read): Compute BFD section for
5922 symbol. Use prim_record_minimal_symbol_and_info.
5923 (som_symfile_read): Fix comment.
5924 (struct find_section_offset_arg): New.
5925 (find_section_offset, set_section_index): New functions.
5926 (som_symfile_offsets): Use set_section_index to compute
5927 section indices.
5928
5929 2013-04-08 Tom Tromey <tromey@redhat.com>
5930
5931 * coffread.c (cs_to_section): Use gdb_bfd_section_index.
5932 * elfread.c (record_minimal_symbol, elf_symtab_read): Use
5933 gdb_bfd_section_index.
5934 * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
5935 New functions.
5936 * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
5937 Declare.
5938 * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
5939 Update.
5940 * objfiles.c (add_to_objfile_sections_full): New function.
5941 (add_to_objfile_sections): Use it.
5942 (build_section_table): Rewrite.
5943 (objfile_relocate1): Use gdb_bfd_section_index. Update.
5944 * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
5945 (struct objfile) <sections>: Update comment.
5946 (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
5947 is NULL.
5948 (ALL_OBJSECTIONS): Use it.
5949 * solib-dsbt.c (dsbt_relocate_main_executable): Update.
5950 * solib-frv.c (frv_relocate_main_executable): Update.
5951 * solib-target.c (solib_target_relocate_section_addresses):
5952 Use gdb_bfd_section_index.
5953 * symfile.c (build_section_addr_info_from_section_table):
5954 Use gdb_bfd_section_index.
5955 (build_section_addr_info_from_bfd, place_section): Likewise.
5956 * symtab.c (fixup_section): Update.
5957 * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
5958
5959 2013-04-08 Tom Tromey <tromey@redhat.com>
5960
5961 * minsyms.h (struct bound_minimal_symbol): New.
5962 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
5963 Remove objfile argument.
5964 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
5965 Return bound_minimal_symbol.
5966 * minsyms.c (lookup_minimal_symbol_by_pc_1)
5967 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
5968 Return bound_minimal_symbol.
5969 (in_gnu_ifunc_stub): Update.
5970 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
5971 Remove 'objfile_p' argument.
5972 (lookup_solib_trampoline_symbol_by_pc): Update.
5973 * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
5974 arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
5975 c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
5976 glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
5977 i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
5978 linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
5979 mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
5980 ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
5981 stack.c, symtab.c, tui/tui-disasm.c: Update.
5982
5983 2013-04-08 Tom Tromey <tromey@redhat.com>
5984
5985 * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
5986 Use symbol's obstack, not an objfile.
5987 * coffread.c (process_coff_symbol): Update.
5988 * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
5989 * jv-lang.c (add_class_symbol): Update.
5990 * mdebugread.c (new_symbol): Update.
5991 * minsyms.c (prim_record_minimal_symbol_full)
5992 (terminate_minimal_symbol_table): Update.
5993 * psymtab.c (add_psymbol_to_bcache): Clear entire symbol. Update.
5994 * stabsread.c (define_symbol, read_enum_type): Update.
5995 * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
5996 Handle Ada specially.
5997 (symbol_set_language): Add 'obstack' argument.
5998 (symbol_set_names): Update.
5999 (symbol_natural_name, symbol_demangled_name): Always use
6000 ada_decode_symbol.
6001 * symtab.h (struct general_symbol_info)
6002 <language_specific::obstack>: New field.
6003 <ada_mangled>: New field.
6004 (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
6005 (symbol_set_language): Update.
6006
6007 2013-04-08 Tom Tromey <tromey@redhat.com>
6008
6009 * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
6010 Take an obstack, not an objfile.
6011 (symbol_set_names): Update.
6012 * symtab.h (symbol_set_demangled_name): Update.
6013
6014 2013-04-08 Tom Tromey <tromey@redhat.com>
6015
6016 * coffread.c (process_coff_symbol, coff_read_enum_type): Call
6017 allocate_symbol.
6018 * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
6019 (read_func_scope): Call allocate_template_symbol.
6020 (new_symbol_full): Call allocate_symbol.
6021 * jit.c (finalize_symtab): Call allocate_symbol.
6022 * jv-lang.c (add_class_symbol): Call allocate_symbol.
6023 * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
6024 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
6025 (common_block_end): Call allocate_symbol.
6026 * symtab.c (allocate_symbol, initialize_symbol)
6027 (allocate_template_symbol): New functions.
6028 * symtab.c (allocate_symbol, initialize_symbol)
6029 (allocate_template_symbol): Declare.
6030 * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
6031
6032 2013-04-08 Pedro Alves <palves@redhat.com>
6033 Keith Seitz <keiths@redhat.com>
6034
6035 * breakpoint.c (create_breakpoint): Rename
6036 "parse_condition_and_thread" parameter to "parse_arg". Update
6037 describing comment. If !PARSE_ARG, then error out if ARG is not
6038 the empty string after extracting the location.
6039 * breakpoint.h (create_breakpoint): Rename
6040 "parse_condition_and_thread" parameter to "parse_arg".
6041
6042 2013-04-08 Aleksandar Ristovski <aristovski@qnx.com
6043
6044 * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
6045
6046 2013-04-07 Yao Qi <yao@codesourcery.com>
6047
6048 * remote.c (remote_trace_find): Change type of parameters 'addr1'
6049 and 'addr2' to CORE_ADDR.
6050 * target.c (update_current_target): Update.
6051 * target.h (struct target_ops) <to_trace_find>: Change parameter
6052 type to CORE_ADDR.
6053 * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
6054 'addr2' to CORE_ADDR.
6055 (tfile_trace_find): Likewise.
6056 (tfile_get_traceframe_address): Change return type to CORE_ADDR.
6057 Change local variable 'addr' to type CORE_ADDR.
6058 * tracepoint.h (tfind_1): Update declaration.
6059
6060 2013-04-06 Eli Zaretskii <eliz@gnu.org>
6061
6062 * windows-nat.c (windows_get_absolute_argv0): Move from here...
6063 * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
6064 Include main.h.
6065
6066 * windows-nat.h (windows_get_absolute_argv0): Move prototype from
6067 here...
6068 * main.h (windows_get_absolute_argv0): ...to here.
6069
6070 2013-04-05 Doug Evans <dje@google.com>
6071
6072 * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
6073 (read_cutu_die_from_dwo): Add comments.
6074 (read_structure_type): Update comment.
6075 (read_enumeration_type, read_namespace_type): Update comment.
6076 (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
6077
6078 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6079
6080 Convert man pages to texinfo, new gdbinit.5 texinfo page.
6081 * Makefile.in (gdb.z): Remove.
6082 (install-only): Remove $(man1dir) and gdb.1 installation.
6083 * gdb.1: Remove.
6084
6085 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6086
6087 Fix compatibility with Linux kernel 3.8.3.
6088 * linux-tdep.c (linux_find_memory_regions_full): Move variable number
6089 to more inner block. Remove parsing of NUMBER from outer block.
6090 Parse NUMBER only if KEYWORD has been identified.
6091
6092 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6093
6094 Fix variable name shadowing.
6095 * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
6096 filename to mapsfilename and update its uses.
6097
6098 2013-04-05 Eli Zaretskii <eliz@gnu.org>
6099
6100 * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
6101 empty. See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
6102 and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
6103 details of the problem.
6104
6105 2013-04-04 Pedro Alves <palves@redhat.com>
6106 Hui Zhu <hui@codesourcery.com>
6107
6108 * breakpoint.c (validate_commands_for_breakpoint): If validating a
6109 tracepoint, reset its STEP_COUNT and call validate_actionline.
6110
6111 2013-04-03 Doug Evans <dje@google.com>
6112
6113 * dwarf2read.c (read_die_and_siblings_1): Renamed from
6114 read_die_and_siblings.
6115 (read_die_and_siblings): New function.
6116 (read_cutu_die_from_dwo): Dump die if requested.
6117 (read_die_and_children): Call read_full_die_1 and
6118 read_die_and_siblings_1.
6119 (read_full_die): Dump die if requested.
6120
6121 * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
6122
6123 * dwarf2read.c (struct dwo_file): New member comp_dir.
6124 Rename member name to dwo_name. All uses updated.
6125 (hash_dwo_file): Include comp_dir in computation.
6126 (eq_dwo_file): Ditto.
6127 (lookup_dwo_file_slot): New arg comp_dir. All callers updated.
6128 (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
6129
6130 * psymtab.c (read_psymtabs_with_fullname): Don't call
6131 psymtab_to_fullname if the basenames are different.
6132
6133 2013-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
6134
6135 * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
6136 New entry about "fullname" presence.
6137
6138 2013-04-03 Pedro Alves <palves@redhat.com>
6139
6140 * NEWS: Mention x86_64/Cygwin as new native configuration.
6141
6142 2013-04-02 Doug Evans <dje@google.com>
6143
6144 * dwarf2read.c (read_structure_type): Fix typo in comment.
6145
6146 2013-04-02 Pedro Alves <palves@redhat.com>
6147
6148 * NEWS: Mention "set/show debug aarch64", "set/show debug
6149 coff-pe-read" and "set/show debug mach-o".
6150
6151 2013-04-02 Pedro Alves <palves@redhat.com>
6152
6153 * NEWS: Mention "set/show remote trace-buffer-size-packet".
6154
6155 2013-04-02 Eli Zaretskii <eliz@gnu.org>
6156
6157 * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
6158 gdb_string.h is now in common/.
6159
6160 2013-04-02 Pedro Alves <palves@redhat.com>
6161
6162 * NEWS: Move "set debug notification" and "set trace-buffer-size"
6163 under "New options".
6164
6165 2013-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
6166
6167 Revert this patch:
6168 PR gdb/15275
6169 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
6170
6171 2013-04-02 Pedro Alves <palves@redhat.com>
6172
6173 PR gdb/15275
6174
6175 * remote.c (send_interrupt_sequence): Use remote_serial_write.
6176 (remote_serial_write): New function.
6177 (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
6178
6179 2013-04-01 Jiong Wang <jiwang@tilera.com>
6180
6181 * NEWS: Mention TILE-Gx in "New native configurations" and
6182 "New targets" sections.
6183
6184 2013-04-01 Doug Evans <dje@google.com>
6185
6186 * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
6187 (process_enumeration_scope): Simplify.
6188
6189 * dwarf2read.c (struct dwarf2_per_cu_data): Move member
6190 type_unit_group ...
6191 (struct signatured_type): ... to here.
6192 (sig_type_ptr): New typedef.
6193 (type_unit_group): Delete member 't.first_cu'. Move member 'tus'
6194 out of union 't'. All uses updated.
6195 (dw2_get_file_names_reader): Assert not called for a type unit.
6196 (dw2_get_file_names): Assert not called for a type unit or type
6197 unit group.
6198 (build_type_psymtabs_reader): Assert called for a type unit.
6199 (build_type_psymtab_dependencies): Assert called for a type unit group.
6200
6201 * dwarf2read.c (free_dwo_file): Add comment.
6202 (dwarf2_per_objfile_free): Unref dwp bfd.
6203
6204 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
6205
6206 * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
6207 (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
6208 (read_pe_exported_syms): Remove unused 'exportix'.
6209 (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
6210 'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
6211 'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
6212
6213 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
6214
6215 * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
6216 (print_it_watchpoint): Remove unused 'bl'.
6217 (say_where): Remove unused 'uiout'.
6218 (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
6219 (bkpt_breakpoint_hit): Remove unused 'b'.
6220 (internal_bkpt_print_it): Remove unused 'uiout'.
6221 * buildsym.c (augment_type_symtab): Remove unused 'i'.
6222
6223 2013-03-31 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
6224
6225 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
6226 (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
6227
6228 2013-03-29 Doug Evans <dje@google.com>
6229
6230 * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
6231 Delete arg is_dwp. All callers updated.
6232 (open_dwp_file): New function.
6233 (open_and_init_dwp_file): Call it.
6234 (get_dwp_file): New function.
6235 (lookup_dwo_cutu): Call it.
6236
6237 * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
6238 unnecessary, cleanup.
6239
6240 * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
6241
6242 * dwarf2read.c (read_cutu_die_from_dwo): New function.
6243 (lookup_dwo_unit): New function.
6244 (init_cutu_and_read_dies): Move DWO handling to new functions.
6245
6246 * dwarf2read.c (struct signatured_type): Tweak comment.
6247 (struct dwo_unit): Tweak comment.
6248 (create_debug_types_hash_table): Tweak comment. Reformat long line.
6249 (create_dwo_debug_info_hash_table): Tweak comment.
6250 (dwarf2_per_cu_offset_and_type): Tweak comment.
6251
6252 * dwarf2read.c (lookup_signatured_type): Remove complaint about
6253 missing .debug_types section.
6254
6255 2013-03-29 Yao Qi <yao@codesourcery.com>
6256
6257 * corelow.c: Include "completer.h".
6258 (_initialize_corelow): Call add_target_with_completer with
6259 argument 'filename_completer'.
6260 * tracepoint.c: Likewise.
6261 * exec.c (_initialize_exec): Likewise.
6262 * target.c (add_target): Rename to ...
6263 (add_target_with_completer): ... this. Call set_cmd_completer
6264 if parameter completer is not NULL.
6265 (add_target): New.
6266 * target.h: Include "command.h".
6267 (add_target_with_completer): Declare it.
6268
6269 2013-03-28 Joel Brobecker <brobecker@adacore.com>
6270
6271 * coffread.c (is_import_fixup_symbol): New function.
6272 (record_minimal_symbol): Use is_import_fixup_symbol to
6273 detect import fixup symbols, and discard them.
6274
6275 2013-03-28 Doug Evans <dje@google.com>
6276
6277 * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
6278 types hash table until we know we need it.
6279
6280 * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
6281 index numbers.
6282
6283 * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
6284 All callers updated.
6285 (dw2_print_stats): Print #read CUs too.
6286 (dump_die_shallow): Print signatured types better.
6287
6288 * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
6289 info_or_types_section to section. All uses updated.
6290 (struct dwo_unit): Ditto.
6291
6292 2013-03-28 Pedro Alves <palves@redhat.com>
6293
6294 * NEWS (New options): New section.
6295 (New options): Mention set/show remote trace-status-packet.
6296 * remote.c (PACKET_qTStatus): New enumeration value.
6297 (remote_get_trace_status): Skip sending qTStatus if the packet is
6298 disabled. Use packet_ok.
6299 (_initialize_remote): Register a configuration command for
6300 qTStatus packet.
6301
6302 2013-03-28 Doug Evans <dje@google.com>
6303
6304 * symfile.c (find_separate_debug_file): Add comment.
6305 (terminate_after_last_dir_separator): Tweak comment.
6306
6307 * dwarf2read.c (create_partial_symtab): Add forward decl.
6308 (create_partial_symtab): Move to be closer to other psymtab functions.
6309 (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
6310
6311 * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
6312 (compute_symtab_includes): Remove unnecessary forward declaration.
6313 (die_needs_namespace): Add comment marking group of functions for
6314 dwarf2 name computation.
6315
6316 * typeprint.c (_initialize_typeprint): Improve type help text.
6317
6318 * python/python.c (finish_python_initialization): Provide suggestion
6319 for how to tell gdb to find its python files.
6320
6321 2013-03-28 Pedro Alves <palves@redhat.com>
6322
6323 PR gdb/15294
6324
6325 * source.c (_initialize_source): Change back "set listsize" to an
6326 integer command.
6327
6328 2013-03-27 Gareth McMullin <gareth@blacksphere.co.nz>
6329
6330 PR gdb/15275
6331 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
6332
6333 2013-03-27 Pedro Alves <palves@redhat.com>
6334
6335 * top.c (history_size): Rename to ...
6336 (history_size_setshow_var): ... this. Add comment.
6337 (show_commands): Use readline's 'history_length' instead of
6338 computing the history length by calling history_get in a loop.
6339 (set_history_size_command): Error out for sizes over INT_MAX.
6340 Restore previous history size on invalid size.
6341 (init_history): If HISTSIZE is negative, leave the history size as
6342 zero. Add comments.
6343 (init_main): Adjust.
6344
6345 2013-03-27 Pedro Alves <palves@redhat.com>
6346
6347 * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
6348 coff_pe_read" command to "set debug coff-pe-read".
6349
6350 2013-03-27 Markus Metzger <markus.t.metzger@intel.com>
6351
6352 * record.c (command_size_to_target_size): Fix size comparison.
6353 Change parameter type from pointer to integer to integer.
6354 Update all users.
6355
6356 2013-03-27 Pierre Muller <muller@sourceware.org>
6357
6358 * windows-nat.c (handle_output_debug_string): Avoid typecast
6359 from integer of different size warning.
6360
6361 2013-03-26 Joel Brobecker <brobecker@adacore.com>
6362
6363 * windows-nat.c (handle_output_debug_string): Add empty line
6364 after local block variable definition.
6365
6366 2013-03-26 Pedro Alves <palves@redhat.com>
6367
6368 * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
6369 (net_open): Make 'polls' local unsigned.
6370
6371 2013-03-26 Pedro Alves <palves@redhat.com>
6372
6373 * remote.c (_initialize_remote): Make "set remoteaddresssize"
6374 a zuinteger command instead of uinteger.
6375
6376 2013-03-26 Pedro Alves <palves@redhat.com>
6377
6378 * record-full.c (record_full_insn_num): Make it unsigned.
6379 (record_full_check_insn_num, record_full_message)
6380 (record_full_registers_change, record_full_xfer_partial): Remove
6381 record_full_insn_max_num check (it's always != 0).
6382 (record_full_info, record_full_restore): Use %u as format string.
6383 (): Use %u as format string.
6384 (set_record_full_insn_max_num): Remove record_full_insn_max_num
6385 check (it's always != 0).
6386
6387 2013-03-26 Pedro Alves <palves@redhat.com>
6388
6389 * dcache.c (_initialize_dcache): Make the "set dcache line-size"
6390 and "set dcache size" commands zuinteger instead of uinteger.
6391
6392 2013-03-26 Pedro Alves <palves@redhat.com>
6393
6394 * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
6395 command zuinteger instead of uinteger.
6396
6397 2013-03-26 Pedro Alves <palves@redhat.com>
6398
6399 * coff-pe-read.c (_initialize_coff_pe_read): Make the command
6400 zuinteger instead of uinteger.
6401
6402 2013-03-26 Pedro Alves <palves@redhat.com>
6403
6404 * record.c (record_insn_history_size_setshow_var)
6405 (record_call_history_size_setshow_var): New globals.
6406 (command_size_to_target_size): New function.
6407 (cmd_record_insn_history, cmd_record_call_history): Use
6408 command_size_to_target_size instead of cast.
6409 (validate_history_size, set_record_insn_history_size)
6410 (set_record_call_history_size): New functions.
6411 (_initialize_record): Install set_record_insn_history_size and
6412 set_record_call_history_size as "set" hooks of "set record
6413 instruction-history-size" and "set record
6414 function-call-history-size".
6415
6416 2013-03-26 Pedro Alves <palves@redhat.com>
6417
6418 * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
6419 use with history_max_entries use. Remove FIXME note.
6420
6421 2013-03-26 Markus Metzger <markus.t.metzger@intel.com>
6422
6423 * record-btrace.c (record_btrace_close): Call
6424 record_btrace_auto_disable.
6425
6426 2013-03-25 Joel Brobecker <brobecker@adacore.com>
6427
6428 * rs6000-nat.c (fixup_breakpoints): Delete declaration.
6429
6430 2013-03-25 Doug Evans <dje@google.com>
6431
6432 * contrib/cc-with-tweaks.sh: Check exit code of dwp.
6433
6434 2013-03-25 Tom Tromey <tromey@redhat.com>
6435
6436 PR symtab/11462:
6437 * c-exp.y (exp): Add new productions for destructors after '.' and
6438 '->'.
6439 (write_destructor_name): New function.
6440
6441 2013-03-25 Tom Tromey <tromey@redhat.com>
6442
6443 PR c++/9197:
6444 * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
6445 value_struct_elt, not lookup_struct_elt_type.
6446 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
6447 STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
6448 * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
6449
6450 2013-03-25 Yao Qi <yao@codesourcery.com>
6451
6452 * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
6453 instead of '_mkdir'.
6454
6455 2013-03-23 Eli Zaretskii <eliz@gnu.org>
6456
6457 * windows-nat.c (windows_get_absolute_argv0): New function.
6458 * windows-nat.h: Add its prototype.
6459
6460 * main.c (get_init_files): Use filename_ncmp instead of strncmp.
6461 Use IS_DIR_SEPARATOR instead of looking for a character inside
6462 SLASH_STRING. Include filenames.h.
6463 (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
6464 relocate_gdb_directory works when passed gdb_program_name.
6465 Include windows-nat.h.
6466
6467 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
6468
6469 * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
6470 * remote.c (trace_error): Remove the special handling of '2'.
6471 (readchar) <SERIAL_EOF>
6472 (readchar) <SERIAL_ERROR>
6473 (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
6474 (remote_get_trace_status): Call throw_exception if EX is
6475 TARGET_CLOSE_ERROR.
6476 * utils.c (perror_with_name): Rename to ...
6477 (throw_perror_with_name): ... here. New parameter errcode, describe it
6478 in the function comment.
6479 (perror_with_name): New function wrapper.
6480 * utils.h (enum errors): New stub declaration.
6481 (throw_perror_with_name): New declaration.
6482
6483 2013-03-22 Pedro Alves <palves@redhat.com>
6484 Yao Qi <yao@codesourcery.com>
6485 Mark Kettenis <kettenis@gnu.org>
6486
6487 * cli/cli-setshow.c (do_set_command) <var_uinteger>:
6488 Don't let the user set the value to UINT_MAX directly.
6489 <var_integer>: Don't let the user set the value to INT_MAX
6490 directly.
6491
6492 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
6493
6494 * remote.c (remote_unpush_target): New function.
6495 (remote_open_1): Remove two pop_target calls, update one comment, add
6496 comment to target_preopen call. Replace pop_target call by
6497 remote_unpush_target call.
6498 (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
6499 pop_target calls by remote_unpush_target calls.
6500
6501 2013-03-22 Pedro Alves <palves@redhat.com>
6502
6503 * linux-nat.c (linux_child_follow_fork): Don't call
6504 linux_enable_event_reporting.
6505 (linux_handle_extended_wait): Don't call
6506 linux_enable_event_reporting.
6507
6508 2013-03-22 Pedro Alves <palves@redhat.com>
6509
6510 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
6511 use it to rewrite the trampoline buffers with type gdb_byte[], and
6512 undefine the macro. Remove char* cast.
6513
6514 2013-03-21 Doug Evans <dje@google.com>
6515
6516 New commands "mt set per-command {space,time,symtab} {on,off}".
6517 * NEWS: Add entry.
6518 * event-top.c: #include "maint.h".
6519 * main.c: #include "maint.h".
6520 * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
6521 timeval-utils.h, maint.h, cli/cli-setshow.h.
6522 (per_command_time, per_command_space): New static globals.
6523 (per_command_symtab): New static global.
6524 (per_command_setlist, per_command_showlist): New static globals.
6525 (struct cmd_stats): Move here from utils.c.
6526 (set_per_command_time): Renamed from set_display_time in utils.c
6527 and moved here. All callers updated.
6528 (set_per_command_space): Renamed from set_display_space in utils.c
6529 and moved here. All callers updated.
6530 (count_symtabs_and_blocks): New function.
6531 (report_command_stats): Moved here from utils.c. Add support for
6532 printing symtab stats. Only print data if enabled before command
6533 executed.
6534 (make_command_stats_cleanup): Ditto.
6535 (sert_per_command_cmd, show_per_command_cmd): New functions.
6536 (_initialize_maint_cmds): Add new commands
6537 mt set per-command {space,time,symtab} {on,off}.
6538 * maint.h: New file.
6539 * top.c: #include "maint.h".
6540 * utils.c (reset_prompt_for_continue_wait_time): New function.
6541 (get_prompt_for_continue_wait_time): New function.
6542 * utils.h (reset_prompt_for_continue_wait_time): Declare
6543 (get_prompt_for_continue_wait_time): Declare.
6544 (make_command_stats_cleanup): Moved to maint.h.
6545 (set_display_time, set_display_space): Moved to maint.h and renamed
6546 to set_per_command_time, set_per_command_space.
6547 * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
6548 parse_binary_operation and made non-static. Don't call error,
6549 just return an error marker. All callers updated.
6550 * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
6551
6552 2013-03-21 Tom Tromey <tromey@redhat.com>
6553
6554 * symfile.c (alloc_section_addr_info): Update header. Don't set
6555 'num_sections' field.
6556 (build_section_addr_info_from_section_table): Set 'num_sections'.
6557 (build_section_addr_info_from_bfd): Likewise.
6558 (build_section_addr_info_from_objfile): Remove dead loop
6559 condition.
6560 (free_section_addr_info): Unconditionally call xfree.
6561 (relative_addr_info_to_section_offsets, addrs_section_sort)
6562 (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
6563 condition.
6564 (syms_from_objfile_1): Remove dead 'if' condition. Check
6565 'num_sections'.
6566 (add_symbol_file_command): Set 'num_sections'.
6567 * symfile-mem.c (symbol_file_add_from_memory): Set
6568 'num_sections'.
6569 * somread.c (som_symfile_offsets): Remove dead loop condition.
6570 * machoread.c (macho_symfile_offsets): Remove dead 'if'.
6571 * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
6572
6573 2013-03-21 Tom Tromey <tromey@redhat.com>
6574
6575 * tracepoint.h (decode_agent_options): Add 'trace_string'
6576 argument.
6577 * tracepoint.c (decode_agent_options): Add 'trace_string'
6578 argument.
6579 (validate_actionline): Update.
6580 (collect_symbol): Add 'trace_string' argument.
6581 (struct add_local_symbols_data) <trace_string>: New field.
6582 (do_collect_symbol): Update.
6583 (add_local_symbols): Add 'trace_string' argument.
6584 (encode_actions_1): Update.
6585 (trace_dump_actions): Update.
6586 * dwarf2loc.c (access_memory): Update.
6587 * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
6588 * ax-general.c (new_agent_expr): Update.
6589 * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
6590 (gen_trace_for_return_address): Add argument.
6591 (trace_kludge, trace_string_kludge): Remove.
6592 * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
6593 (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
6594 (gen_trace_for_var): Add 'trace_string' argument.
6595 (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
6596 (gen_printf, agent_eval_command_one): Update.
6597
6598 2013-03-21 Tom Tromey <tromey@redhat.com>
6599
6600 PR exp/15109:
6601 * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
6602 Handle FILENAME token.
6603
6604 2013-03-21 Tom Tromey <tromey@redhat.com>
6605
6606 * c-exp.y (YYPRINT): Define.
6607 (c_print_token): New function.
6608
6609 2013-03-21 Tom Tromey <tromey@redhat.com>
6610
6611 * c-exp.y (%union) <sym, ivar, ivec>: Remove.
6612
6613 2013-03-21 Yao Qi <yao@codesourcery.com>
6614
6615 * ctf.c: Include "gdb_stat.h".
6616 [USE_WIN32API]: New macro 'mkdir'.
6617 (ctf_start): Use permission bits macros if they are defined.
6618
6619 2013-03-20 Keith Seitz <keiths@redhat.com>
6620
6621 * breakpoint.h (struct breakpoint): Add comment to
6622 extra_string indicating that this member is mallod'd.
6623 * breakpoint.c (base_breakpoint_dtor): Free extra_string.
6624
6625 2013-03-20 Pedro Alves <palves@redhat.com>
6626
6627 PR gdb/15289
6628
6629 * cli/cli-setshow.c (do_set_command)
6630 <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
6631 the result of parsing the command argument. Throw error if the
6632 value is greater than UINT_MAX. Print the invalid value with
6633 plongest.
6634 <var_integer, var_zinteger>: Use LONGEST for variable holding the
6635 result of parsing the command argument. Throw error if the value
6636 is greater than INT_MAX, not greater or equal. Also throw error
6637 if the value is less than INT_MIN. Print the invalid value with
6638 plongest.
6639 <var_zuinteger_unlimited>: Throw error if the value is greater
6640 than INT_MAX, not greater or equal.
6641 (do_show_command) <var_integer, var_zinteger,
6642 var_zuinteger_unlimited>: Use %d for printing int, not %u.
6643
6644 2013-03-20 Tom Tromey <tromey@redhat.com>
6645
6646 * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
6647 if possible.
6648 * dwarf2read.c (read_func_scope): Remove old FIXME.
6649 * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
6650 not LOC_COMPUTED.
6651 * findvar.c (symbol_read_needs_frame, default_read_var_value):
6652 Unconditionally call via computed ops, if possible.
6653 * printcmd.c (address_info): Unconditionally call via computed ops,
6654 if possible.
6655 * stack.c (read_frame_arg): Unconditionally call via computed ops,
6656 if possible.
6657 * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
6658 * tracepoint.c (scope_info): Unconditionally call via computed ops,
6659 if possible.
6660
6661 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
6662 Tom Tromey <tromey@redhat.com>
6663
6664 PR symtab/8421:
6665 * coffread.c (coff_register_index): New global.
6666 (process_coff_symbol, coff_read_enum_type): Set
6667 SYMBOL_ACLASS_INDEX.
6668 (_initialize_coffread): Initialize new global.
6669 * dwarf2loc.c (locexpr_find_frame_base_location)
6670 (dwarf2_block_frame_base_locexpr_funcs)
6671 (loclist_find_frame_base_location)
6672 (dwarf2_block_frame_base_loclist_funcs): New.
6673 (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
6674 (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
6675 * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
6676 (dwarf2_block_frame_base_loclist_funcs): New.
6677 * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
6678 (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
6679 globals.
6680 (read_func_scope): Update.
6681 (fixup_go_packaging, mark_common_block_symbol_computed)
6682 (var_decode_location, new_symbol_full, dwarf2_const_value):
6683 Set SYMBOL_ACLASS_INDEX.
6684 (dwarf2_symbol_mark_computed): Likewise. Add 'is_block' argument.
6685 (_initialize_dwarf2_read): Initialize new globals.
6686 * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
6687 * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
6688 * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
6689 globals.
6690 (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
6691 (_initialize_mdebugread): Initialize new globals.
6692 * psympriv.h (struct partial_symbol) <aclass>: Update comment.
6693 * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
6694 (stab_register_index, stab_regparm_index): New globals.
6695 (define_symbol, read_enum_type, common_block_end): Set
6696 SYMBOL_ACLASS_INDEX.
6697 (_initialize_stabsread): Initialize new globals.
6698 * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
6699 globals.
6700 (MAX_SYMBOL_IMPLS): New define.
6701 (register_symbol_computed_impl, register_symbol_block_impl)
6702 (register_symbol_register_impl)
6703 (initialize_ordinary_address_classes): New functions.
6704 (_initialize_symtab): Call initialize_ordinary_address_classes.
6705 * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
6706 (struct symbol_impl): New.
6707 (SYMBOL_ACLASS_BITS): New define.
6708 (struct symbol) <aclass, ops>: Remove fields.
6709 <aclass_index>: New field.
6710 (symbol_impls): Declare.
6711 (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
6712 (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
6713 (register_symbol_computed_impl, register_symbol_block_impl)
6714 (register_symbol_register_impl): Declare.
6715 (struct symbol_computed_ops): Add location_has_loclist.
6716 (struct symbol_block_ops): New.
6717 (SYMBOL_BLOCK_OPS): New.
6718 * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
6719
6720 2013-03-20 Tom Tromey <tromey@redhat.com>
6721
6722 * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
6723 (print_partial_symbols, recursively_search_psymtabs): Use
6724 PSYMBOL_CLASS.
6725
6726 2013-03-20 Pierre Muller <muller@sourceware.org>
6727
6728 * contrib/ari/gdb_ari.sh (OP eol rule): Also check
6729 addtion, subtraction, multiplication and division binary operator.
6730
6731 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
6732
6733 Code cleanup.
6734 * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
6735 * bsd-kvm.c (bsd_kvm_close): Likewise.
6736 * bsd-uthread.c (bsd_uthread_close): Likewise.
6737 * corelow.c (core_close): Likewise.
6738 (core_close_cleanup): Remove parameter quitting from a caller.
6739 * event-top.c (async_disconnect): Likewise.
6740 * exec.c (exec_close_1): Remove parameter quitting.
6741 * go32-nat.c (go32_close): Likewise.
6742 * linux-nat.c (linux_nat_close): Remove parameter quitting. Remove
6743 parameter quitting from a caller.
6744 * mips-linux-nat.c (super_close): Remove parameter quitting from the
6745 variable.
6746 (mips_linux_close): Remove parameter quitting. Remove parameter
6747 quitting from a caller.
6748 * monitor.c (monitor_close): Remove parameter quitting.
6749 * monitor.h (monitor_close): Likewise.
6750 * record-btrace.c (record_btrace_close): Likewise.
6751 * record-full.c (record_full_close): Likewise.
6752 * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
6753 it also from fprintf_unfiltered.
6754 * remote-mips.c (mips_close): Remove parameter quitting.
6755 (mips_detach): Remove parameter quitting from a caller.
6756 * remote-sim.c (gdbsim_close): Remove parameter quitting.
6757 (gdbsim_close): Remove duplicate function comment. Remove parameter
6758 quitting and remove it also from printf_filtered.
6759 * remote.c (remote_close): Remove parameter quitting.
6760 * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
6761 * target.c (update_current_target): Remove parameter int from to_close
6762 de_fault.
6763 (push_target, unpush_target, pop_target): Remove parameter quitting from
6764 a caller.
6765 (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
6766 Remove parameter quitting from a caller.
6767 (target_preopen): Remove parameter quitting from a caller.
6768 (target_close): Remove parameter quitting. Remove parameter quitting
6769 from a caller two times. Remove parameter quitting also from
6770 fprintf_unfiltered.
6771 * target.h (struct target_ops): Remove parameter quitting and as int
6772 from fields to_xclose and to_close.
6773 (extern struct target_ops current_target):
6774 (target_close, pop_all_targets): Remove parameter quitting. Update the
6775 comment.
6776 (pop_all_targets_above): Remove parameter quitting.
6777 * top.c (quit_target): Remove parameter quitting from a caller.
6778 * tracepoint.c (tfile_close): Remove parameter quitting.
6779 * windows-nat.c (windows_close): Remove parameter quitting.
6780
6781 2013-03-20 Corinna Vinschen <vinschen@redhat.com>
6782
6783 * windows-nat.c (handle_output_debug_string): Replace call
6784 to string_to_core_addr with call to strtoull.
6785
6786 2013-03-20 Yao Qi <yao@codesourcery.com>
6787
6788 * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
6789 and write it to CTF metadata.
6790
6791 2013-03-19 Corinna Vinschen <vinschen@redhat.com>
6792
6793 * windows-nat.c (handle_output_debug_string): Change type of n to
6794 SIZE_T to avoid crash on 64 bit systems.
6795
6796 2013-03-17 Eli Zaretskii <eliz@gnu.org>
6797
6798 * python/python-internal.h (HAVE_SNPRINTF)
6799 [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
6800 about redefinition of snprintf by pyerrors.h.
6801
6802 2013-03-15 Steve Ellcey <sellcey@mips.com>
6803
6804 * remote-sim.c (sim_command_completer): Make char arguments const.
6805
6806 2013-03-15 Tom Tromey <tromey@redhat.com>
6807
6808 PR c++/15116:
6809 * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
6810
6811 2013-03-14 Tom Tromey <tromey@redhat.com>
6812
6813 * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
6814 New fields.
6815 (get_file_crc): Move from symfile.c.
6816 (gdb_bfd_crc): New function.
6817 * gdb_bfd.h (gdb_bfd_crc): Declare.
6818 * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
6819 * symfile.c (get_file_crc): Move to gdb_bfd.c.
6820 (separate_debug_file_exists): Use gdb_bfd_crc.
6821
6822 2013-03-14 Tom Tromey <tromey@redhat.com>
6823
6824 * symfile.c (get_debug_link_info): Remove.
6825 (find_separate_debug_file_by_debuglink): Use
6826 bfd_get_debug_link_info.
6827
6828 2013-03-14 Tom Tromey <tromey@redhat.com>
6829
6830 * symtab.c (error_in_psymtab_expansion): New function.
6831 (lookup_symbol_aux_quick)
6832 (basic_lookup_transparent_type_quick): Remove "last resort"
6833 code. Use error_in_psymtab_expansion.
6834
6835 2013-03-14 Doug Evans <dje@google.com>
6836 Jan Kratochvil <jan.kratochvil@redhat.com>
6837
6838 * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
6839 any successful compare_filenames_for_search or FILENAME_CMP.
6840 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
6841 * symtab.c (iterate_over_some_symtabs): Likewise.
6842
6843 2013-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
6844
6845 * source.c (print_source_lines_base): Make a local copy of
6846 symtab_to_fullname.
6847
6848 2013-03-14 Hui Zhu <hui_zhu@mentor.com>
6849 Jan Kratochvil <jan.kratochvil@redhat.com>
6850
6851 * source.c (print_source_lines_base): Suppress "file" for TUI.
6852
6853 2013-03-14 Keith Seitz <keiths@redhat.com>
6854 Alan Matsuoka <alanm@redhat.com>
6855
6856 PR c++/15203
6857 PR c++/15210
6858 * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
6859 TYPE_CODE_METHOD.
6860 * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
6861 symbols.
6862
6863 2013-03-14 Yao Qi <yao@codesourcery.com>
6864
6865 * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
6866 status to tfile if trace is stopped by command 'tstop'.
6867
6868 2013-03-14 Yao Qi <yao@codesourcery.com>
6869
6870 * tracepoint.c (tfile_write_status): Write trace notes and user
6871 name into tfile if they are not NULL.
6872
6873 2013-03-14 Hui Zhu <hui@codesourcery.com>
6874 Yao Qi <yao@codesourcery.com>
6875
6876 * Makefile.in (REMOTE_OBS): Add ctf.o.
6877 (SFILES): Add ctf.c.
6878 (HFILES_NO_SRCDIR): Add ctf.h.
6879 * ctf.c, ctf.h: New files.
6880 * tracepoint.c: Include 'ctf.h'.
6881 (collect_pseudocommand): Remove static.
6882 (trace_save_command): Parse option "-ctf".
6883 Produce different trace file writers per option.
6884 Adjust output message.
6885 (trace_save_tfile, trace_save_ctf): New.
6886 * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
6887 * mi/mi-main.c: Include 'ctf.h'.
6888 (mi_cmd_trace_save): Handle option '-ctf'. Call either
6889 trace_save_tfile or trace_save_ctf.
6890 * NEWS: Mention these changes.
6891
6892 2013-03-14 Yao Qi <yao@codesourcery.com>
6893
6894 * tracepoint.c (trace_file_writer_xfree): New.
6895 (struct tfile_writer_data): New.
6896 (tfile_dtor, tfile_can_target_save, tfile_start): New.
6897 (tfile_write_header, tfile_write_regblock_type): New.
6898 (tfile_write_status, tfile_write_uploaded_tsv): New.
6899 (tfile_write_uploaded_tp, tfile_write_definition_end): New.
6900 (tfile_write_raw_data, (tfile_end): New.
6901 (tfile_write_ops): New global variable.
6902 (TRACE_WRITE_R_BLOCK): New macro.
6903 (TRACE_WRITE_M_BLOCK_HEADER): New macro.
6904 (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
6905 (TRACE_WRITE_V_BLOCK): New macro.
6906 (trace_save): Add extra one parameter WRITER. Make it static.
6907 Use WRITER to writer trace.
6908 (tfile_trace_file_writer_new): New.
6909 (trace_save_command): Caller update.
6910 (trace_save_tfile): Write trace data in TFILE format.
6911 * tracepoint.h (struct trace_frame_write_ops): New.
6912 (struct trace_file_write_ops): New.
6913 (struct trace_file_writer): New.
6914 (trace_save): Remove its declaration.
6915 (trace_save_tfile): Declare it.
6916 * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
6917 instead of trace_save.
6918
6919 2013-03-13 Pedro Alves <palves@redhat.com>
6920
6921 * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
6922
6923 2013-03-13 Pedro Alves <palves@redhat.com>
6924
6925 * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
6926 commented out code.
6927 * demangle.c (current_demangling_style_string): Make it const.
6928 (set_demangling_command): Assert the demangling style is known.
6929 Remove all handling of unknown styles. Set
6930 'current_demangling_style_string' to an element of the
6931 demangling_style_names array.
6932 (set_demangling_style): Delete.
6933 (_initialize_demangler): Set current_demangling_style_string to the
6934 element of the demangling_style_names array that corresponds to
6935 the default demangling style. Remove FIXME note. Don't call
6936 set_demangling_style.
6937 * gdb-demangle.h (set_demangling_style): Remove declaration.
6938
6939 2013-03-13 Pedro Alves <palves@redhat.com>
6940
6941 * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
6942 fields const.
6943 (ada_make_symbol_completion_list): Make "text0" parameter const.
6944 * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
6945 * breakpoint.c (condition_completer): Make "text" and "word"
6946 parameters const. Adjust.
6947 (check_tracepoint_command): Adjust to validate_actionline
6948 prototype change.
6949 (catch_syscall_completer): Make "text" and "word" parameters
6950 const.
6951 * cli/cli-cmds.c (show_user): Make "comname" local const.
6952 (valid_command_p): Make "command" parameter const.
6953 (alias_command): Make "alias_prefix" and "command_prefix" locals
6954 const.
6955 * cli/cli-decode.c (add_cmd): Make "name" parameter const.
6956 (add_alias_cmd): Make "name" and "oldname" parameters const.
6957 Adjust. No longer make copy of OLDNAME.
6958 (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
6959 (add_setshow_cmd_full, add_setshow_enum_cmd)
6960 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
6961 (add_setshow_filename_cmd, add_setshow_string_cmd)
6962 (add_setshow_string_noescape_cmd)
6963 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
6964 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
6965 (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
6966 (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
6967 Make "name" parameter const.
6968 (help_cmd): Rename "command" parameter to "arg". New const local
6969 "command".
6970 (find_cmd): Make "command" parameter const.
6971 (lookup_cmd_1): Make "text" parameter pointer to const. Adjust to
6972 deprecated_cmd_warning prototype change.
6973 (undef_cmd_error): Make "cmdtype" parameter const.
6974 (lookup_cmd): Make "line" parameter const.
6975 (deprecated_cmd_warning): Change type of "text" parameter to
6976 pointer to const char, from pointer to pointer to char. Adjust.
6977 (lookup_cmd_composition): Make "text" parameter const.
6978 (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
6979 parameters const.
6980 * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
6981 const.
6982 * cli/cli-script.c (validate_comname): Make "tem" local const.
6983 (define_command): New const local "tem_c". Use it in calls to
6984 lookup_cmd.
6985 (document_command): Make "tem" and "comfull" locals const.
6986 (show_user_1): Make "prefix" and "name" parameters const.
6987 * cli-script.h (show_user_1): Make "prefix" and "name" parameters
6988 const.
6989 * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
6990 (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
6991 (deprecated_cmd_warning, lookup_cmd_composition, add_com)
6992 (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
6993 (complete_on_enum, add_setshow_enum_cmd)
6994 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
6995 (add_setshow_filename_cmd, add_setshow_string_cmd)
6996 (add_setshow_string_noescape_cmd)
6997 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
6998 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
6999 (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
7000 Change prototypes, constifying strings.
7001 * completer.c (noop_completer, filename_completer): Make "text"
7002 and "prefix" parameters const.
7003 (location_completer, expression_completer)
7004 (complete_line_internal): Make "text" and "prefix" parameters
7005 const and adjust.
7006 (command_completer, signal_completer): Make "text" and "prefix"
7007 parameters const.
7008 * completer.h (noop_completer, filename_completer)
7009 (expression_completer, location_completer, command_completer)
7010 (signal_completer): Change prototypes.
7011 * corefile.c (complete_set_gnutarget): Make "text" and "word"
7012 parameters const.
7013 * cp-abi.c (cp_abi_completer): Likewise.
7014 * expression.h (parse_expression_for_completion): Change
7015 prototype.
7016 * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
7017 parameters const.
7018 * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
7019 * infrun.c (handle_completer): Make "text" and "word" parameters
7020 const.
7021 * interps.c (interpreter_completer): Make "text" and "word"
7022 parameters const.
7023 * language.h (struct language_defn)
7024 <la_make_symbol_completion_list>: Make "text" and "word"
7025 parameters const.
7026 * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
7027 (parse_exp_in_context): Rename to ...
7028 (parse_exp_in_context_1): ... this.
7029 (parse_exp_in_context): Reimplement, with const hack from
7030 parse_exp_1.
7031 (parse_expression_for_completion): Make "string" parameter const.
7032 * printcmd.c (decode_format): Make "string_ptr" parameter pointer
7033 to pointer to const char. Adjust.
7034 (print_command_1): Make "exp" parameter const.
7035 (output_command): Rename to ...
7036 (output_command_const): ... this. Make "exp" parameter const.
7037 (output_command): Reimplement.
7038 (x_command): Adjust.
7039 (display_command): Rename "exp" parameter to "arg". New "exp"
7040 local, const version of "arg".
7041 * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
7042 "cmd_name" local const.
7043 * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
7044 call.
7045 (cmdpy_completer): Make "text" and "word" parameters const.
7046 (gdbpy_parse_command_name): Make "prefix_text2" local const.
7047 * python/py-param.c (add_setshow_generic): Make "tmp_name" local
7048 const.
7049 * remote.c (_initialize_remote): Make "cmd_name" local const.
7050 * symtab.c (language_search_unquoted_string): Make "text" and "p"
7051 parameters const. Adjust.
7052 (completion_list_add_fields): Make "sym_text", "text" and "word"
7053 parameters const.
7054 (struct add_name_data) <sym_text, text, word>: Make fields const.
7055 (default_make_symbol_completion_list_break_on): Make "text" and
7056 "word" parameters const. Adjust locals.
7057 (default_make_symbol_completion_list)
7058 (make_symbol_completion_list, make_symbol_completion_type)
7059 (make_symbol_completion_list_fn): Make "text" and "word"
7060 parameters const.
7061 (make_file_symbol_completion_list): Make "text", "word" and
7062 "srcfile" parameters const. Adjust locals.
7063 (add_filename_to_list): Make "text" and "word" parameters const.
7064 (struct add_partial_filename_data) <text, word>: Make fields
7065 const.
7066 (make_source_files_completion_list): Make "text" and "word"
7067 parameters const.
7068 * symtab.h (default_make_symbol_completion_list_break_on)
7069 (default_make_symbol_completion_list, make_symbol_completion_list)
7070 (make_symbol_completion_type enum type_code)
7071 (make_symbol_completion_list_fn make_file_symbol_completion_list)
7072 (make_source_files_completion_list): Change prototype.
7073 * top.c (execute_command): Adjust to pass pointer to pointer to
7074 const char to lookup_cmd, and to deprecated_cmd_warning prototype
7075 change.
7076 (set_verbose): Make "cmdname" local const.
7077 * tracepoint.c (decode_agent_options): Make "exp" parameter const,
7078 and adjust.
7079 (validate_actionline): Make "line" parameter a pointer to const
7080 char, and adjust.
7081 (encode_actions_1): Make "action_exp" local const, and adjust.
7082 (encode_actions): Adjust.
7083 (replace_comma): Delete.
7084 (trace_dump_actions): Make "action_exp" and "next_comma" locals
7085 const, and adjust. Don't frob the action string while splitting
7086 it at commas. Instead, make a copy of each split substring in
7087 turn.
7088 (trace_dump_command): Adjust to validate_actionline prototype
7089 change.
7090 * tracepoint.h (decode_agent_options, decode_agent_options)
7091 (encode_actions, validate_actionline): Change prototypes.
7092 * valprint.h (output_command): Delete declaration.
7093 (output_command_const): Declare.
7094 * value.c (function_destroyer): Cast const away in xfree call.
7095
7096 2013-03-13 Pedro Alves <palves@redhat.com>
7097
7098 * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
7099 rather than casting 'const char * const *' to 'const char **'.
7100 * ada-lex.l (processInt): Make "trailer" local const. Remove
7101 'const char **' cast.
7102 * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
7103 locals, and use those as strtol output pointer, instead than doing
7104 invalid casts to from 'const char **' to 'char **'.
7105 (_initialize_demangle): Remove cast.
7106 * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
7107 locals, and use those as strtol output pointer, instead than doing
7108 invalid casts to from 'const char **' to 'char **'.
7109 * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
7110 casts.
7111 * stap-probe.c (stap_parse_register_operand)
7112 (stap_parse_single_operand): Likewise.
7113
7114 2013-03-13 Yao Qi <yao@codesourcery.com>
7115
7116 * tracepoint.c (tfile_get_trace_state_variable_value): Look for
7117 the last matched 'V' blcok in trace frame.
7118
7119 2013-03-12 Joel Brobecker <brobecker@adacore.com>
7120
7121 * NEWS: Create a new section for the next release branch.
7122 Rename the section of the current branch, now that it has
7123 been cut.
7124
7125 2013-03-12 Joel Brobecker <brobecker@adacore.com>
7126
7127 GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
7128 * version.in: Bump version to 7.6.50.20130312-cvs.
7129
7130 2013-03-12 Keith Seitz <keiths@redhat.com>
7131
7132 * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
7133 * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
7134 Remove temporary copy of input string.
7135 (mi_execute_command_wrapper): Make "cmd" const.
7136 * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
7137 * mi/mi-parse.c (mi_parse_argv): Make "args" const.
7138 Use const strings.
7139 (mi_parse): Make "cmd" const.
7140 Use const strings.
7141 * mi/mi-parse.h (mi_parse): Make "cmd" const.
7142
7143 2013-03-12 Keith Seitz <keiths@redhat.com>
7144
7145 * ada-lang.c (ada_read_renaming_var_value): Pass const
7146 pointer to expression string to parse_exp_1.
7147 (create_excep_cond_exprs): Likewise.
7148 * ax-gdb.c (agent_eval_command_one): Likewise.
7149 (maint_agent_printf_command): Likewise.
7150 Constify much of the string handling/parsing.
7151 * breakpoint.c (set_breakpoint_condition): Pass const
7152 pointer to expression string to parse_exp_1.
7153 (update_watchpoint): Likewise.
7154 (parse_cmd_to_aexpr): Constify string handling.
7155 Pass const pointer to parse_exp_1.
7156 (init_breakpoint_sal): Pass const pointer to parse_exp_1.
7157 (find_condition_and_thread): Likewise.
7158 Make TOK const.
7159 (watch_command_1): Make "arg" const.
7160 Constify string handling.
7161 Copy the expression string instead of changing the input
7162 string.
7163 (update_breakpoint_location): Pass const pointer to
7164 parse_exp_1.
7165 * eval.c (parse_and_eval_address): Make "exp" const.
7166 (parse_to_comma_and_eval): Make "expp" const.
7167 (parse_and_eval): Make "exp" const.
7168 * expression.h (parse_expression): Make argument const.
7169 (parse_exp_1): Make first argument const.
7170 * findcmd.c (parse_find_args): Treat "args" as const.
7171 * linespec.c (parse_linespec): Pass const pointer to
7172 linespec_expression_to_pc.
7173 (linespec_expression_to_pc): Make "exp_ptr" const.
7174 * parse.c (parse_exp_1): Make "stringptr" const.
7175 Make a copy of the expression to pass to parse_exp_in_context until
7176 this whole interface can be constified.
7177 (parse_expression): Make "string" const.
7178 * printcmd.c (ui_printf): Treat "arg" as const.
7179 Handle const strings.
7180 * tracepoint.c (validate_actionline): Pass const pointer to
7181 all calls to parse_exp_1.
7182 (encode_actions_1): Likewise.
7183 * value.h (parse_to_comma_and_eval): Make argument const.
7184 (parse_and_eval_address): Likewise.
7185 (parse_and_eval): Likewise.
7186 * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
7187 (varobj_set_value): Likewise.
7188 * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
7189 constify string handling.
7190 Pass const pointers to parse_and_eval_address and
7191 parse_to_comman_and_eval.
7192 * cli/cli-utils.c (skip_to_space): Rename to ...
7193 (skip_to_space_const): ... this. Handle const strings.
7194 * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
7195 skip_to_space_const.
7196 (skip_to_space_const): Declare.
7197 * common/format.c (parse_format_string): Make "arg" const.
7198 Handle const strings.
7199 * common/format.h (parse_format_string): Make "arg" const.
7200 * gdbserver/ax.c (ax_printf): Make "format" const.
7201 * python/python.c (gdbpy_parse_and_eval): Do not make a copy
7202 of the expression string.
7203
7204 2013-03-12 Hui Zhu <hui@codesourcery.com>
7205
7206 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
7207
7208 2013-03-12 Yao Qi <yao@codesourcery.com>
7209 Hui Zhu <hui@codesourcery.com>
7210
7211 * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
7212 (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
7213 DW_OP_deref_size.
7214
7215 2013-03-12 Paul Hilfinger <hilfingr@adacore.com>
7216
7217 * ada-lex.l (rules): Only recognize 'thread' as a
7218 delimiter when followed by numerals, as for c-exp.y.
7219 Use new rewind_to_char function to rewind the input for
7220 expression-delimiting tokens.
7221 (rewind_to_char): New function.
7222
7223 2013-03-11 Pedro Alves <palves@redhat.com>
7224 Jan Kratochvil <jan.kratochvil@redhat.com>
7225
7226 * configure: Regenerate.
7227 * configure.ac (check dynamic export flag): Link python test with
7228 $PYTHON_LIBS.
7229
7230 2013-03-11 Doug Evans <dje@google.com>
7231 Keith Seitz <keiths@redhat.com>
7232
7233 * linespec.c (find_linespec_symbols): Call find_function_symbols
7234 first, and then call lookup_prefix_sym/find_method.
7235
7236 2013-03-11 Pedro Alves <palves@redhat.com>
7237
7238 * charset.c (convert_between_encodings): Don't cast between
7239 different pointer to pointer types. Instead, make the 'inp' local
7240 be of the type iconv expects.
7241 (wchar_iterate): Don't cast between different pointer to pointer
7242 types. Instead, use new pointer local of the type iconv expects.
7243 * target.c (target_read_stralloc, target_fileio_read_stralloc):
7244 Add new local of type char pointer, and use it to get a
7245 char/string view of the byte buffer, instead of casting between
7246 pointer to pointer types.
7247
7248 2013-03-11 Hafiz Abid Qadeer <abidh@codesourcery.com>
7249
7250 * remote.c (remote_set_trace_buffer_size): Move != operator
7251 to the start of next line to fix an ARI warning.
7252
7253 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7254
7255 * NEWS: Add record changes.
7256
7257 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7258
7259 * record-btrace.c (btrace_insn_history): Omit the pc prefix in
7260 the instruction history disassembly.
7261 * disasm.c (dump_insns): Omit the pc prefix, if requested.
7262 * disasm.h (DISASSEMBLY_OMIT_PC): New.
7263
7264 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7265
7266 * Makefile.in (SFILES): Add record-btrace.c
7267 (COMMON_OBS): Add record-btrace.o
7268 * record-btrace.c: New.
7269 * objfiles.c: Include btrace.h.
7270 (free_objfile): call btrace_free_objfile.
7271
7272 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7273
7274 * target.c (target_call_history, target_call_history_from,
7275 target_call_history_range): New.
7276 * target.h (target_ops) <to_call_history, to_call_history_from,
7277 to_call_history_range>: New fields.
7278 (target_call_history, target_call_history_from,
7279 target_call_history_range): New declaration.
7280 * record.c (get_call_history_modifiers, cmd_record_call_history,
7281 record_call_history_size): New.
7282 (_initialize_record): Add the "record function-call-history" command.
7283 Add "set/show record function-call-history-size" commands.
7284 * record.h (record_print_flag): New.
7285
7286 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7287
7288 * target.h (target_ops) <to_insn_history, to_insn_history_from,
7289 to_insn_history_range>: New fields.
7290 (target_insn_history): New.
7291 (target_insn_history_from): New.
7292 (target_insn_history_range): New.
7293 * target.c (target_insn_history): New.
7294 (target_insn_history_from): New.
7295 (target_insn_history_range): New.
7296 * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
7297 (record_insn_history_size): New.
7298 (get_insn_number): New.
7299 (get_context_size): New.
7300 (no_chunk): New.
7301 (get_insn_history_modifiers): New.
7302 (cmd_record_insn_history): New.
7303 (_initialize_record): Add "set/show record instruction-history-size"
7304 command. Add "record instruction-history" command.
7305
7306 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7307
7308 * record.h (record_disconnect): New.
7309 (record_detach): New.
7310 (record_mourn_inferior): New.
7311 (record_kill): New.
7312 * record-full.c (record_disconnect, record_detach,
7313 record_mourn_inferior, record_kill): Move to...
7314 * record.c: ...here.
7315 (DEBUG): New.
7316 (record_stop): New.
7317 (record_unpush): New.
7318 (cmd_record_stop): Call record_stop. Replace unpush_target
7319 call with record_unpush call.
7320 (record_disconnect, record_detach): Assert that the target
7321 is of record stratum. Call record_unpush, record_stop, and
7322 DEBUG.
7323 (record_mourn_inferior, record_kill): Assert that the target
7324 is of record stratum. Call record_unpush and DEBUG.
7325
7326 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7327
7328 * record-full.h, record-full.c (record_memory_query): Rename
7329 to ...
7330 (record_full_memory_query): ...this. Update all users.
7331 (record_arch_list_add_reg): Rename to ...
7332 (record_full_arch_list_add_reg): ...this. Update all users.
7333 (record_arch_list_add_mem): Rename to ...
7334 (record_full_arch_list_add_mem): ...this. Update all users.
7335 (record_arch_list_add_end): Rename to ...
7336 (record_full_arch_list_add_end): ...this. Update all users.
7337 (record_gdb_operation_disable_set): Rename to ...
7338 (record_full_gdb_operation_disable_set): ...this.
7339 Update all users.
7340
7341 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7342
7343 * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
7344 (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
7345 (RECORD_IS_REPLAY): Renamed to ...
7346 (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
7347 (RECORD_FILE_MAGIC): Renamed to ...
7348 (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
7349 (record_mem_entry): Renamed to ...
7350 (record_full_mem_entry): ... this. Updated all users.
7351 (record_reg_entry): Renamed to ...
7352 (record_full_reg_entry): ... this. Updated all users.
7353 (record_end_entry): Renamed to ...
7354 (record_full_end_entry): ... this. Updated all users.
7355 (record_type) <record_end, record_reg, record_mem>: Renamed
7356 to ...
7357 (record_full_type) <record_full_end, record_full_reg,
7358 record_full_mem>: ... this. Updated all users.
7359 (record_entry): Renamed to ...
7360 (record_full_entry): ... this. Updated all users.
7361 (record_core_buf_entry): Renamed to ...
7362 (record_full_core_buf_entry): ... this. Updated all users.
7363 (record_core_regbuf): Renamed to ...
7364 (record_full_core_regbuf): ... this. Updated all users.
7365 (record_core_start): Renamed to ...
7366 (record_full_core_start): ... this. Updated all users.
7367 (record_core_end): Renamed to ...
7368 (record_full_core_end): ... this. Updated all users.
7369 (record_core_buf_list): Renamed to ...
7370 (record_full_core_buf_list): ... this. Updated all users.
7371 (record_first): Renamed to ...
7372 (record_full_first): ... this. Updated all users.
7373 (record_list): Renamed to ...
7374 (record_full_list): ... this. Updated all users.
7375 (record_arch_list_head): Renamed to ...
7376 (record_full_arch_list_head): ... this. Updated all users.
7377 (record_arch_list_tail): Renamed to ...
7378 (record_full_arch_list_tail): ... this. Updated all users.
7379 (record_stop_at_limit): Renamed to ...
7380 (record_full_stop_at_limit): ... this. Updated all users.
7381 (record_insn_max_num): Renamed to ...
7382 (record_full_insn_max_num): ... this. Updated all users.
7383 (record_insn_num): Renamed to ...
7384 (record_full_insn_num): ... this. Updated all users.
7385 (record_insn_count): Renamed to ...
7386 (record_full_insn_count): ... this. Updated all users.
7387 (record_ops): Renamed to ...
7388 (record_full_ops): ... this. Updated all users.
7389 (record_core_ops): Renamed to ...
7390 (record_full_core_ops): ... this. Updated all users.
7391 (set_record_cmdlist): Renamed to ...
7392 (set_record_full_cmdlist): ... this. Updated all users.
7393 (show_record_cmdlist): Renamed to ...
7394 (show_record_full_cmdlist): ... this. Updated all users.
7395 (record_cmdlist): Renamed to ...
7396 (record_full_cmdlist): ... this. Updated all users.
7397 (record_beneath_to_resume_ops): Renamed to ...
7398 (record_full_beneath_to_resume_ops): ... this. Updated all users.
7399 (record_beneath_to_resume): Renamed to ...
7400 (record_full_beneath_to_resume): ... this. Updated all users.
7401 (record_beneath_to_wait_ops): Renamed to ...
7402 (record_full_beneath_to_wait_ops): ... this. Updated all users.
7403 (record_beneath_to_wait): Renamed to ...
7404 (record_full_beneath_to_wait): ... this. Updated all users.
7405 (record_beneath_to_store_registers_ops): Renamed to ...
7406 (record_full_beneath_to_store_registers_ops): ... this.
7407 Updated all users.
7408 (record_beneath_to_store_registers): Renamed to ...
7409 (record_full_beneath_to_store_registers): ... this.
7410 Updated all users.
7411 (record_beneath_to_xfer_partial_ops): Renamed to ...
7412 (record_full_beneath_to_xfer_partial_ops): ... this.
7413 Updated all users.
7414 (record_beneath_to_xfer_partial): Renamed to ...
7415 (record_full_beneath_to_xfer_partial): ... this.
7416 Updated all users.
7417 (record_beneath_to_insert_breakpoint): Renamed to ...
7418 (record_full_beneath_to_insert_breakpoint): ... this.
7419 Updated all users.
7420 (record_beneath_to_stopped_by_watchpoint): Renamed to ...
7421 (record_full_beneath_to_stopped_by_watchpoint): ... this.
7422 Updated all users.
7423 (record_beneath_to_stopped_data_address): Renamed to ...
7424 (record_full_beneath_to_stopped_data_address): ... this.
7425 Updated all users.
7426 (record_beneath_to_async): Renamed to ...
7427 (record_full_beneath_to_async): ... this. Updated all users.
7428 (record_goto_insn): Renamed to ...
7429 (record_full_goto_insn): ... this. Updated all users.
7430 (record_save): Renamed to ...
7431 (record_full_save): ... this. Updated all users.
7432 (record_reg_alloc): Renamed to ...
7433 (record_full_reg_alloc): ... this. Updated all users.
7434 (record_reg_release): Renamed to ...
7435 (record_full_reg_release): ... this. Updated all users.
7436 (record_mem_alloc): Renamed to ...
7437 (record_full_mem_alloc): ... this. Updated all users.
7438 (record_mem_release): Renamed to ...
7439 (record_full_mem_release): ... this. Updated all users.
7440 (record_end_alloc): Renamed to ...
7441 (record_full_end_alloc): ... this. Updated all users.
7442 (record_end_release): Renamed to ...
7443 (record_full_end_release): ... this. Updated all users.
7444 (record_entry_release): Renamed to ...
7445 (record_full_entry_release): ... this. Updated all users.
7446 (record_list_release): Renamed to ...
7447 (record_full_list_release): ... this. Updated all users.
7448 (record_list_release_following): Renamed to ...
7449 (record_full_list_release_following): ... this.
7450 Updated all users.
7451 (record_list_release_first): Renamed to ...
7452 (record_full_list_release_first): ... this. Updated all users.
7453 (record_arch_list_add): Renamed to ...
7454 (record_full_arch_list_add): ... this. Updated all users.
7455 (record_get_loc): Renamed to ...
7456 (record_full_get_loc): ... this. Updated all users.
7457 (record_check_insn_num): Renamed to ...
7458 (record_full_check_insn_num): ... this. Updated all users.
7459 (record_arch_list_cleanups): Renamed to ...
7460 (record_full_arch_list_cleanups): ... this. Updated all users.
7461 (record_message): Renamed to ...
7462 (record_full_message): ... this. Updated all users.
7463 (record_message_wrapper): Renamed to ...
7464 (record_full_message_wrapper): ... this. Updated all users.
7465 (record_message_wrapper_safe): Renamed to ...
7466 (record_full_message_wrapper_safe): ... this. Updated all users.
7467 (record_gdb_operation_disable): Renamed to ...
7468 (record_full_gdb_operation_disable): ... this. Updated all users.
7469 (record_hw_watchpoint): Renamed to ...
7470 (record_full_hw_watchpoint): ... this. Updated all users.
7471 (record_exec_insn): Renamed to ...
7472 (record_full_exec_insn): ... this. Updated all users.
7473 (record_restore): Renamed to ...
7474 (record_full_restore): ... this. Updated all users.
7475 (record_async_inferior_event_token): Renamed to ...
7476 (record_full_async_inferior_event_token): ... this.
7477 Updated all users.
7478 (record_async_inferior_event_handler): Renamed to ...
7479 (record_full_async_inferior_event_handler): ... this.
7480 Updated all users.
7481 (record_core_open_1): Renamed to ...
7482 (record_full_core_open_1): ... this. Updated all users.
7483 (record_open_1): Renamed to ...
7484 (record_full_open_1): ... this. Updated all users.
7485 (record_open): Renamed to ...
7486 (record_full_open): ... this. Updated all users.
7487 (record_close): Renamed to ...
7488 (record_full_close): ... this. Updated all users.
7489 (record_resume_step): Renamed to ...
7490 (record_full_resume_step): ... this. Updated all users.
7491 (record_resumed): Renamed to ...
7492 (record_full_resumed): ... this. Updated all users.
7493 (record_execution_dir): Renamed to ...
7494 (record_full_execution_dir): ... this. Updated all users.
7495 (record_resume): Renamed to ...
7496 (record_full_resume): ... this. Updated all users.
7497 (record_get_sig): Renamed to ...
7498 (record_full_get_sig): ... this. Updated all users.
7499 (record_sig_handler): Renamed to ...
7500 (record_full_sig_handler): ... this. Updated all users.
7501 (record_wait_cleanups): Renamed to ...
7502 (record_full_wait_cleanups): ... this. Updated all users.
7503 (record_wait_1): Renamed to ...
7504 (record_full_wait_1): ... this. Updated all users.
7505 (record_wait): Renamed to ...
7506 (record_full_wait): ... this. Updated all users.
7507 (record_stopped_by_watchpoint): Renamed to ...
7508 (record_full_stopped_by_watchpoint): ... this. Updated all users.
7509 (record_disconnect): Renamed to ...
7510 (record_full_disconnect): ... this. Updated all users.
7511 (record_detach): Renamed to ...
7512 (record_full_detach): ... this. Updated all users.
7513 (record_mourn_inferior): Renamed to ...
7514 (record_full_mourn_inferior): ... this. Updated all users.
7515 (record_kill): Renamed to ...
7516 (record_full_kill): ... this. Updated all users.
7517 (record_stopped_data_address): Renamed to ...
7518 (record_full_stopped_data_address): ... this. Updated all users.
7519 (record_registers_change): Renamed to ...
7520 (record_full_registers_change): ... this. Updated all users.
7521 (record_store_registers): Renamed to ...
7522 (record_full_store_registers): ... this. Updated all users.
7523 (record_xfer_partial): Renamed to ...
7524 (record_full_xfer_partial): ... this. Updated all users.
7525 (record_breakpoint): Renamed to ...
7526 (record_full_breakpoint): ... this. Updated all users.
7527 (record_breakpoint_p): Renamed to ...
7528 (record_full_breakpoint_p): ... this. Updated all users.
7529 (record_breakpoints): Renamed to ...
7530 (record_full_breakpoints): ... this. Updated all users.
7531 (record_sync_record_breakpoints): Renamed to ...
7532 (record_full_sync_record_breakpoints): ... this.
7533 Updated all users.
7534 (record_init_record_breakpoints): Renamed to ...
7535 (record_full_init_record_breakpoints): ... this.
7536 Updated all users.
7537 (record_insert_breakpoint): Renamed to ...
7538 (record_full_insert_breakpoint): ... this. Updated all users.
7539 (record_remove_breakpoint): Renamed to ...
7540 (record_full_remove_breakpoint): ... this. Updated all users.
7541 (record_can_execute_reverse): Renamed to ...
7542 (record_full_can_execute_reverse): ... this. Updated all users.
7543 (record_get_bookmark): Renamed to ...
7544 (record_full_get_bookmark): ... this. Updated all users.
7545 (record_goto_bookmark): Renamed to ...
7546 (record_full_goto_bookmark): ... this. Updated all users.
7547 (record_async): Renamed to ...
7548 (record_full_async): ... this. Updated all users.
7549 (record_can_async_p): Renamed to ...
7550 (record_full_can_async_p): ... this. Updated all users.
7551 (record_is_async_p): Renamed to ...
7552 (record_full_is_async_p): ... this. Updated all users.
7553 (record_execution_direction): Renamed to ...
7554 (record_full_execution_direction): ... this. Updated all users.
7555 (record_info): Renamed to ...
7556 (record_full_info): ... this. Updated all users.
7557 (record_delete): Renamed to ...
7558 (record_full_delete): ... this. Updated all users.
7559 (record_is_replaying): Renamed to ...
7560 (record_full_is_replaying): ... this. Updated all users.
7561 (record_goto_entry): Renamed to ...
7562 (record_full_goto_entry): ... this. Updated all users.
7563 (record_goto_begin): Renamed to ...
7564 (record_full_goto_begin): ... this. Updated all users.
7565 (record_goto_end): Renamed to ...
7566 (record_full_goto_end): ... this. Updated all users.
7567 (record_goto): Renamed to ...
7568 (record_full_goto): ... this. Updated all users.
7569 (init_record_ops): Renamed to ...
7570 (init_record_full_ops): ... this. Updated all users.
7571 (record_core_resume): Renamed to ...
7572 (record_full_core_resume): ... this. Updated all users.
7573 (record_core_kill): Renamed to ...
7574 (record_full_core_kill): ... this. Updated all users.
7575 (record_core_fetch_registers): Renamed to ...
7576 (record_full_core_fetch_registers): ... this. Updated all users.
7577 (record_core_prepare_to_store): Renamed to ...
7578 (record_full_core_prepare_to_store): ... this. Updated all users.
7579 (record_core_store_registers): Renamed to ...
7580 (record_full_core_store_registers): ... this. Updated all users.
7581 (record_core_xfer_partial): Renamed to ...
7582 (record_full_core_xfer_partial): ... this. Updated all users.
7583 (record_core_insert_breakpoint): Renamed to ...
7584 (record_full_core_insert_breakpoint): ... this. Updated all users.
7585 (record_core_remove_breakpoint): Renamed to ...
7586 (record_full_core_remove_breakpoint): ... this. Updated all users.
7587 (record_core_has_execution): Renamed to ...
7588 (record_full_core_has_execution): ... this. Updated all users.
7589 (init_record_core_ops): Renamed to ...
7590 (init_record_full_core_ops): ... this. Updated all users.
7591 (cmd_record_restore): Renamed to ...
7592 (cmd_record_full_restore): ... this. Updated all users.
7593 (record_save_cleanups): Renamed to ...
7594 (record_full_save_cleanups): ... this. Updated all users.
7595 (cmd_record_start): Renamed to ...
7596 (cmd_record_full_start): ... this. Updated all users.
7597 (set_record_insn_max_num): Renamed to ...
7598 (set_record_full_insn_max_num): ... this. Updated all users.
7599 (set_record_command): Renamed to ...
7600 (set_record_full_command): ... this. Updated all users.
7601 (show_record_command): Renamed to ...
7602 (show_record_full_command): ... this. Updated all users.
7603 (_initialize_record): Renamed to ...
7604 (_initialize_record_full): ... this. Updated all users.
7605
7606 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7607
7608 * record.h: Split into this and ...
7609 * record-full.h: ... this.
7610 * record.c: Split into this and ...
7611 * record-full.c: ... this.
7612 * target.h (target_ops): Add new fields to_info_record,
7613 to_save_record, to_delete_record, to_record_is_replaying,
7614 to_goto_record_begin, to_goto_record_end, to_goto_record.
7615 (target_info_record): New.
7616 (target_save_record): New.
7617 (target_supports_delete_record): New.
7618 (target_delete_record): New.
7619 (target_record_is_replaying): New.
7620 (target_goto_record_begin): New.
7621 (target_goto_record_end): New.
7622 (target_goto_record): New.
7623 * target.c (target_info_record): New.
7624 (target_save_record): New.
7625 (target_supports_delete_record): New.
7626 (target_delete_record): New.
7627 (target_record_is_replaying): New.
7628 (target_goto_record_begin): New.
7629 (target_goto_record_end): New.
7630 (target_goto_record): New.
7631 * record.h: Declare struct cmd_list_element.
7632 (record_cmdlist): New declaration.
7633 (set_record_cmdlist): New declaration.
7634 (show_record_cmdlist): New declaration.
7635 (info_record_cmdlist): New declaration.
7636 (cmd_record_goto): New declaration.
7637 * record.c: Remove unnecessary includes.
7638 Include inferior.h.
7639 (cmd_record_goto): Remove declaration.
7640 (record_cmdlist): Now extern. Initialize.
7641 (set_record_cmdlist): Now extern. Initialize.
7642 (show_record_cmdlist): Now extern. Initialize.
7643 (info_record_cmdlist): Now extern. Initialize.
7644 (find_record_target): New.
7645 (require_record_target): New.
7646 (cmd_record_start): Update.
7647 (cmd_record_delete): Remove target-specific code.
7648 Call target_delete_record.
7649 (cmd_record_stop): Unpush any record target.
7650 (set_record_insn_max_num): Move to record-full.c
7651 (set_record_command): Add comment.
7652 (show_record_command): Add comment.
7653 (info_record_command): Update comment.
7654 Remove target-specific code.
7655 Call the record target's to_info_record.
7656 (cmd_record_start): New.
7657 (cmd_record_goto): Now extern.
7658 Remove target-specific code.
7659 Call target_goto_begin, target_goto_end, or target_goto.
7660 (_initialize_record): Move record target ops initialization to
7661 record-full.c.
7662 Change "record" command help text.
7663 Move "record restore", "record set", and "record show" commands to
7664 record-full.c.
7665 * Makefile.in (SFILES): Add record-full.c.
7666 (HFILES_NO_SRCDIR): Add record-full.h.
7667 (COMMON_OBS): Add record-full.o.
7668 * amd64-linux-tdep.c: Include record-full.h instead of record.h.
7669 * arm-tdep.c: Include record-full.h.
7670 * i386-linux-tdep.c: Include record-full.h instead of record.h.
7671 * i386-tdep.c: Include record-full.h.
7672 * infrun.c: Include record-full.h.
7673 * linux-record.c: Include record-full.h.
7674 * moxie-tdep.c: Include record-full.h.
7675 * record-full.c: Include record-full.h.
7676 Change module comment.
7677 (set_record_full_cmdlist): New.
7678 (show_record_full_cmdlist): New.
7679 (record_full_cmdlist): New.
7680 (record_goto_insn): New declaration.
7681 (record_save): New declaration.
7682 (record_check_insn_num): Change query string.
7683 (record_info): New.
7684 (record_delete): New.
7685 (record_is_replaying): New.
7686 (record_goto_entry): New.
7687 (record_goto_begin): New.
7688 (record_goto_end): New.
7689 (record_goto): New.
7690 (init_record_ops): Update.
7691 (init_record_core_ops): Update.
7692 (cmd_record_save): Rename to record_save. Remove target and arg checks.
7693 (cmd_record_start): New.
7694 (set_record_insn_max_num): Moved from record.c
7695 (set_record_full_command): New.
7696 (show_record_full_command): New.
7697 (_initialize_record_full): New.
7698
7699 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7700
7701 * target.h (add_deprecated_target_alias): New.
7702 * target.c (add_deprecated_target_alias): New.
7703
7704 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7705
7706 * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
7707 and signal.h.
7708 (linux_supports_btrace): Add kernel and
7709 cpuid check.
7710 (kernel_supports_btrace): New function.
7711 (cpu_supports_btrace): New function.
7712 (intel_supports_btrace): New function.
7713
7714 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7715
7716 * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
7717 * remote.c: Include btrace.h.
7718 (struct btrace_target_info): New struct.
7719 (remote_supports_btrace): New function.
7720 (send_Qbtrace): New function.
7721 (remote_enable_btrace): New function.
7722 (remote_disable_btrace): New function.
7723 (remote_teardown_btrace): New function.
7724 (remote_read_btrace): New function.
7725 (init_remote_ops): Add btrace ops.
7726 (enum <unnamed>): Add btrace packets.
7727 (struct protocol_feature remote_protocol_features[]): Add btrace packets.
7728 (_initialize_remote): Add packet configuration for branch tracing.
7729
7730 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7731
7732 * features/btrace.dtd: New file.
7733 * Makefile.in (XMLFILES): Add btrace.dtd.
7734 * btrace.h (parse_xml_btrace): New declaration.
7735 * btrace.c: Include xml-support.h.
7736 (parse_xml_btrace): New function.
7737 (parse_xml_btrace_block): New function.
7738 (block_attributes): New struct.
7739 (btrace_attributes): New struct.
7740 (btrace_children): New struct.
7741 (btrace_elements): New struct.
7742
7743 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7744
7745 * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
7746 (amd64_linux_enable_btrace): New.
7747 (amd64_linux_disable_btrace): New.
7748 (amd64_linux_teardown_btrace): New.
7749 (_initialize_amd64_linux_nat): Initialize btrace ops.
7750 * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
7751 (i386_linux_enable_btrace): New.
7752 (i386_linux_disable_btrace): New.
7753 (i386_linux_teardown_btrace): New.
7754 (_initialize_i386_linux_nat): Initialize btrace ops.
7755 * config/i386/linux.mh: Add linux-btrace.o.
7756 * config/i386/linux64.mh: Add linux-btrace.o.
7757
7758 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7759
7760 * common/linux_btrace.h: New file.
7761 * common/linux_btrace.c: New file.
7762 * Makefile.in (SFILES): Add btrace.c.
7763 (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
7764 (COMMON_OBS): Add btrace.o.
7765 (linux-btrace.o): New rule.
7766
7767 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7768
7769 * target.h: Include btrace.h.
7770 (struct target_ops) <to_supports_btrace, to_enable_btrace,
7771 to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
7772 * target.c (target_supports_btrace): New function.
7773 (target_enable_btrace): New function.
7774 (target_disable_btrace): New function.
7775 (target_teardown_btrace): New function.
7776 (target_read_btrace): New function.
7777 * btrace.h: New file.
7778 * btrace.c: New file.
7779 * Makefile.in: Add btrace.c.
7780 * gdbthread.h: Include btrace.h.
7781 (struct thread_info): Add btrace field.
7782 * thread.c: Include btrace.h.
7783 (clear_thread_inferior_resources): Call target_teardown_btrace.
7784 * common/btrace-common.h: New file.
7785
7786 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
7787
7788 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
7789 for CHILD, ignore PTRACE_KILL errors, move the inner block variable
7790 kill_status to outer block.
7791
7792 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
7793
7794 Fix entry-values if the callee called a noreturn function.
7795 * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
7796 get_frame_address_in_block. Add new comment.
7797
7798 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
7799
7800 Fix entry-values in C++ across CUs.
7801 * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
7802 lookup_minimal_symbol. Add a comment.
7803 * dwarf2read.c
7804 (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
7805 DW_AT_linkage_name.
7806
7807 2013-03-08 Yao Qi <yao@codesourcery.com>
7808
7809 * tracepoint.c (_initialize_tracepoint): Indent the code.
7810
7811 2013-03-08 Pedro Alves <palves@redhat.com>
7812
7813 * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
7814 (parse_find_args, find_command): Change type of pattern buffer
7815 locals to 'gdb_byte *'.
7816
7817 2013-03-08 Stan Shebs <stan@codesourcery.com>
7818 Hafiz Abid Qadeer <abidh@codesourcery.com>
7819
7820 * NEWS: Mention set and show trace-buffer-size commands.
7821 Mention new packet.
7822 * target.h (struct target_ops): New method
7823 to_set_trace_buffer_size.
7824 (target_set_trace_buffer_size): New macro.
7825 * target.c (update_current_target): Set up new method.
7826 * tracepoint.c (trace_buffer_size): New global.
7827 (start_tracing): Send it to the target.
7828 (set_trace_buffer_size): New function.
7829 (_initialize_tracepoint): Add new setshow for trace-buffer-size.
7830 * remote.c (remote_set_trace_buffer_size): New function.
7831 (_initialize_remote): Use it.
7832 (QTBuffer:size) New remote command.
7833 (PACKET_QTBuffer_size): New enum.
7834 (remote_protocol_features): Add an entry for
7835 PACKET_QTBuffer_size.
7836
7837 2013-03-08 Tom Tromey <tromey@redhat.com>
7838
7839 * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
7840 variable.
7841
7842 2013-03-07 Pedro Alves <palves@redhat.com>
7843
7844 * target.c (target_read_stralloc, target_fileio_read_alloc):
7845 *Cast pointer to 'gdb_byte *' in target call.
7846
7847 2013-03-07 Pedro Alves <palves@redhat.com>
7848
7849 * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
7850 call.
7851
7852 2013-03-07 Keith Seitz <keiths@redhat.com>
7853
7854 * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
7855 (trace_pass_command): Likewise.
7856 * cli/cli-cmds.c: Include cli/cli-utils.h.
7857 (source_command): Use skip-spaces.
7858 (disassemble_command): Likewise.
7859 * findcmd.c: Include cli/cli-utils.h.
7860 (parse_find_args): Use skip_spaces.
7861 * go32-nat.c: Include cli/cli-utils.h.
7862 (go32_sldt): Use skip_spaces.
7863 (go32_sgdt): Likewise.
7864 (go32_sidt): Likewise.
7865 (go32_pde): Likewise.
7866 (go32_pte): Likewise.
7867 (go32_pte_for_address): Likewise.
7868 * infcmd.c: Include cli/cli-utils.h.
7869 (registers_info): Use skip_spaces.
7870 * linux-tdep.c (read_mapping): Use skip_spaces_const.
7871 (linux_info_proc): Likewise.
7872 * linux-thread-db.c: Include cli/cli-utils.h.
7873 (info_auto_load_libthread_db): Use skip_spaces_const.
7874 * m32r-rom.c: Include cli/cli-utils.h.
7875 (m32r_upload_command): Use skip_spaces.
7876 * maint.c: Include cli/cli-utils.h.
7877 (maintenance_translate_address): Use skip_spaces.
7878 * mi/mi-parse.c: Include cli/cli-utils.h.
7879 (mi_parse_argv): Use skip_spaces.
7880 (mi_parse): Likewise.
7881 * minsyms.c: Include cli/cli-utils.h.
7882 (msymbol_hash_iw): Use skip_spaces_const.
7883 * objc-lang.c: Include cli/cli-utils.h.
7884 (parse_selector): Use skip_spaces.
7885 (parse_method): Likewise.
7886 * python/python.c: Include cli/cli-utils.h.
7887 (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
7888 (python_command)[HAVE_PYTHON]: Likewise.
7889 (python_interactive_command)[!HAVE_PYTHON]: Likewise.
7890 * remote-m32r-sdi.c: Include cli/cli-utils.h.
7891 (m32r_load): Use skip_spaces.
7892 * serial.c: Include cli/cli-utils.h.
7893 (serial_open): Use skip_spaces_const.
7894 * stack.c: Include cli/cli-utils.h.
7895 (parse_frame_specification_1): Use skip_spaces_const.
7896 * symfile.c: Include cli/cli-utils.h.
7897 (set_ext_lang_command): Use skip_spaces.
7898 * symtab.c: Include cli/cli-utils.h.
7899 (rbreak_command): Use skip_spaces.
7900 * thread.c (thread_name_command): Use skip_spaces.
7901 * tracepoint.c (validate_actionline): Use skip_spaces.
7902 (encode_actions_1): Likewise.
7903 (trace_find_range_command): Likewise.
7904 (trace_find_outside_command): Likewise.
7905 (trace_dump_actions): Likewise.
7906
7907 2013-03-07 Pedro Alves <palves@redhat.com>
7908
7909 * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
7910 * expprint.c (print_subexp_standard): Likewise.
7911 * utils.c (host_char_to_target): Likewise.
7912 * valprint.c (generic_emit_char, generic_printstr): Likewise.
7913 * varobj.c (value_get_print_value): Change type of local to char*.
7914 Cast it gdb_byte * in call to language printer.
7915
7916 2013-03-07 Pedro Alves <palves@redhat.com>
7917
7918 * charset.c (struct wchar_iterator) <input>: Change type to 'const
7919 gdb_byte *'.
7920 (make_wchar_iterator): Remove cast to char*.
7921 (wchar_iterate): Change type of local.
7922
7923 2013-03-07 Pedro Alves <palves@redhat.com>
7924
7925 * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
7926 for 'regcache->register_status'.
7927
7928 2013-03-07 Pedro Alves <palves@redhat.com>
7929
7930 * breakpoint.c (breakpoint_xfer_memory): Change type of local to
7931 int.
7932
7933 2013-03-07 Pedro Alves <palves@redhat.com>
7934
7935 * stap-probe.c (handle_stap_probe): Add cast to char*.
7936
7937 2013-03-07 Pedro Alves <palves@redhat.com>
7938
7939 * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
7940 RECORD_MSGRCV>: Pass a signed variable to
7941 regcache_raw_read_signed, instead of an unsigned one.
7942
7943 2013-03-07 Pedro Alves <palves@redhat.com>
7944
7945 * remote-notif.c (notif_debug): Change type to int.
7946 * remote-notif.h (notif_debug): Likewise.
7947
7948 2013-03-07 Pedro Alves <palves@redhat.com>
7949
7950 * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
7951
7952 2013-03-07 Pedro Alves <palves@redhat.com>
7953
7954 * remote.c (hex2bin, bin2hex): Move extern declarations to ...
7955 * remote.h (hex2bin, bin2hex): ... here.
7956 * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
7957
7958 2013-03-07 Eli Zaretskii <eliz@gnu.org>
7959
7960 * utils.c (initialize_utils): Improve doc strings of "set/show
7961 width", "set/show height", and "set/show pagination".
7962
7963 2013-03-06 Keith Seitz <keiths@redhat.com>
7964
7965 * ax-gdb.c (gen_printf): Make FORMAT const.
7966 * ax-gdb.h (gen_printf): Likewise.
7967 * ax-general.c (ax_string): Make STR const.
7968 * ax.h (ax_string): Likewise.
7969
7970 2013-03-06 Doug Evans <dje@google.com>
7971
7972 * elfread.c (elf_symfile_read): Move debugging printf to more
7973 logical location.
7974
7975 2013-03-06 Pedro Alves <palves@redhat.com>
7976
7977 * python/py-utils.c (target_string_to_unicode): Delete function.
7978 * python/python-internal.h (target_string_to_unicode): Delete
7979 declaration.
7980
7981 2013-03-06 Pierre Muller <muller@sourceware.org>
7982
7983 * linespec.c (get_current_search_block): ARI fix, use (void)
7984 for empty parameter list.
7985
7986 2013-03-05 Doug Evans <dje@google.com>
7987
7988 * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
7989 of old ada_lookup_symbol_list. In !full_search case, don't
7990 search superblocks.
7991 (ada_lookup_symbol_list): Delete arg full_search, all callers
7992 updated. Call ada_lookup_symbol_list_worker.
7993 (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
7994 * ada-lang.h (ada_lookup_symbol_list): Update.
7995 * language.h (language_defn): Update comment for
7996 la_iterate_over_symbols.
7997 * linespec.c (iterate_over_file_blocks): New function.
7998 (iterate_over_all_matching_symtabs): Call it.
7999 (lookup_prefix_sym): Ditto.
8000 (get_current_search_block): New function.
8001 (get_search_block): Delete.
8002 (find_label_symbols): Call get_current_search_block.
8003 (add_matching_symbols_to_info): Call iterate_over_file_blocks.
8004 * symtab.c (iterate_over_symbols): Don't search superblocks.
8005
8006 2013-03-05 Yao Qi <yao@codesourcery.com>
8007
8008 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
8009 parameter VAR's type from "unsigned int" to "int".
8010 * command.h (var_zuinteger_unlimited): Update its comments.
8011 (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
8012
8013 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
8014
8015 * NEWS: Mention new target x86_64-*-cygwin*.
8016
8017 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
8018
8019 * configure.host: Add x86_64-*-cygwin* as host.
8020 * configure.tgt: Add x86_64-*-cygwin* as target.
8021 * config/i386/cygwin64.mh: New file.
8022
8023 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
8024
8025 * linespec.c (decode_line_2): Fix duplicate request off by two message.
8026
8027 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
8028
8029 * linespec.c (struct linespec_canonical_name): New.
8030 (struct linespec_state): Change canonical_names type to it.
8031 (add_sal_to_sals): Change variable canonical_name to canonical. Change
8032 xrealloc element size. Initialize the different CANONICAL fields.
8033 (canonical_to_fullform): New.
8034 (filter_results): Use it. Add variables canonical, fullform and
8035 cleanup.
8036 (struct decode_line_2_item, decode_line_2_compare_items): New.
8037 (decode_line_2): Remove variables iter and item_names, add variables
8038 items and items_count. Modify the code for these new variables.
8039
8040 2013-03-04 Corinna Vinschen <vinschen@redhat.com>
8041
8042 * coff-pe-read.c (read_pe_exported_syms): Don't return without
8043 calling do_cleanup.
8044
8045 2013-03-04 Luis Machado <lgustavo@codesourcery.com>
8046
8047 * tracepoint.c (build_traceframe_info): Add code for byte order.
8048
8049 2013-03-02 Kevin Buettner <kevinb@redhat.com>
8050
8051 * v850-tdep.c: (v850e2_register_name): Revise system register
8052 names to match current V850E2M architecture specifications.
8053 Update register number enum comments too.
8054
8055 2013-03-01 Jiong Wang <jiwang@tilera.com>
8056 Pedro Alves <palves@redhat.com>
8057
8058 * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
8059 to END_ADDR.
8060 (tilegx_skip_prologue): Limit prologue analysis to section end.
8061
8062 2013-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
8063
8064 * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
8065 use it.
8066
8067 2013-03-01 Pedro Alves <palves@redhat.com>
8068
8069 Use gdb_byte for bytes from the program being debugged.
8070
8071 * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
8072 Change type of local 'buf' to gdb_byte.
8073 * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
8074 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
8075 * cris-tdep.c (cris_sigcontext_addr)
8076 (cris_sigtramp_frame_unwind_cache): Likewise.
8077 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
8078 (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
8079 Likewise.
8080 * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
8081 * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
8082 (hppa32_hpux_search_dummy_call_sequence)
8083 (hppa_hpux_supply_save_state): Likewise.
8084 * hppa-linux-tdep.c (insns_match_pattern)
8085 (hppa_linux_find_global_pointer): Likewise.
8086 * hppa-tdep.c (hppa_in_function_epilogue_p)
8087 (skip_prologue_hard_way, hppa_frame_cache): Likewise.
8088 * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
8089 * i386fbsd-tdep.c (i386fbsd_supply_uthread)
8090 (i386fbsd_collect_uthread): Likewise.
8091 * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
8092 * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
8093 * ia64-tdep.c (examine_prologue, ia64_frame_cache)
8094 (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
8095 (ia64_sigtramp_frame_prev_register, ia64_access_reg)
8096 (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
8097 (ia64_libunwind_frame_prev_register)
8098 (ia64_libunwind_sigtramp_frame_this_id)
8099 (ia64_find_global_pointer_from_dynamic_section)
8100 (find_extant_func_descr, find_func_descr, ia64_dummy_id)
8101 (ia64_unwind_pc): Likewise.
8102 * iq2000-tdep.c (iq2000_store_return_value): Likewise.
8103 * m68hc11-tdep.c (m68hc11_push_dummy_call)
8104 (m68hc11_extract_return_value): Likewise.
8105 * m68klinux-nat.c (fetch_register, store_register): Likewise.
8106 * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
8107 (mep_get_insn, mep_push_dummy_call): Likewise.
8108 * mips-linux-tdep.c (mips_linux_get_longjmp_target)
8109 (mips_linux_in_dynsym_stub): Likewise.
8110 * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
8111 * ppc-linux-nat.c (fetch_register, store_register): Likewise.
8112 * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
8113 to gdb_byte.
8114 * remote-mips.c (mips_set_register): Likewise.
8115 * remote-sim.c (gdbsim_fetch_register): Likewise.
8116 * score-tdep.c (score7_fetch_inst): Change type of parameter
8117 'memblock' and local 'buf' to gdb_byte.
8118 (score7_malloc_and_get_memblock): Change return type to gdb_byte.
8119 Change type of local 'buf' to gdb_byte. Adjust.
8120 (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
8121 to gdb_byte**.
8122 (score7_analyze_prologue): Change type of 'memblock' and
8123 'memblock_ptr' locals to gdb_byte*.
8124 * sh64-tdep.c (sh64_extract_return_value)
8125 (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
8126 * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
8127 * solib-pa64.c (pa64_solib_create_inferior_hook)
8128 (pa64_open_symbol_file_object): Remove local 'buf'.
8129 * solib-som.c (som_solib_create_inferior_hook, link_map_start)
8130 (som_open_symbol_file_object): Likewise.
8131 * solib-spu.c (spu_current_sos): Likewise.
8132 * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
8133 * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
8134 (spu_store_registers): Likewise.
8135 * target.c (debug_print_register): Likewise.
8136 * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
8137 * xstormy16-tdep.c (xstormy16_store_return_value)
8138 (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
8139 (xstormy16_find_jmp_table_entry): Likewise.
8140
8141 2013-03-01 Jiong Wang <jiwang@tilera.com>
8142
8143 * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
8144 (tilegx_gdbarch_init): Install it.
8145
8146 2013-02-28 Tom Tromey <tromey@redhat.com>
8147
8148 * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
8149 PyLong_Check.
8150
8151 2013-02-28 Doug Evans <dje@google.com>
8152
8153 * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
8154 * python/python.c (gdbpy_find_pc_line): Ditto.
8155
8156 2013-02-28 Tom Tromey <tromey@redhat.com>
8157
8158 * contrib/excheck.py: New file.
8159 * contrib/exsummary.py: New file.
8160 * contrib/gcc-with-excheck: New file.
8161
8162 2013-02-28 Tom Tromey <tromey@redhat.com>
8163
8164 * python/python.c (gdbpy_print_stack): Call begin_line and
8165 fprintf_filtered inside TRY_CATCH.
8166
8167 2013-02-28 Tom Tromey <tromey@redhat.com>
8168
8169 * python/python.c (gdbpy_find_pc_line): Call find_pc_line
8170 inside TRY_CATCH.
8171
8172 2013-02-28 Tom Tromey <tromey@redhat.com>
8173
8174 * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
8175 frame_object_to_frame_info inside TRY_CATCH.
8176
8177 2013-02-28 Tom Tromey <tromey@redhat.com>
8178
8179 * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
8180 TRY_CATCH.
8181
8182 2013-02-28 Tom Tromey <tromey@redhat.com>
8183
8184 * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
8185
8186 2013-02-27 Corinna Vinschen <vinschen@redhat.com>
8187
8188 * windows-nat.c: Throughout, fix format strings and casts of
8189 printf-like functions to avoid type related warnings on all
8190 platforms.
8191 (handle_output_debug_string): Fetch context information address
8192 from debug string using string_to_core_addr.
8193
8194 2013-02-27 Jiong Wang <jiwang@tilera.com>
8195
8196 * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
8197 * regformats/reg-tilegx32.dat: New.
8198
8199 2013-02-27 Jiong Wang <jiwang@tilera.com>
8200
8201 * configure.tgt (tilegx-*-linux*): Enable gdbserver.
8202
8203 2013-02-27 Jiong Wang <jiwang@tilera.com>
8204
8205 * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
8206
8207 2013-02-27 Yao Qi <yao@codesourcery.com>
8208 Pedro Alves <palves@redhat.com>
8209
8210 * tracepoint.c (tfile_trace_find): For tfind
8211 pc/tp/range/outside, look for the next trace frame instead of
8212 always starting from frame 0.
8213
8214 2013-02-26 Anthony Green <green@moxielogic.com>
8215
8216 * configure.tgt: Add support for moxie-*-rtems* target.
8217
8218 2013-02-25 Pedro Alves <palves@redhat.com>
8219
8220 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
8221 warning text.
8222
8223 2013-02-24 Maciej W. Rozycki <macro@codesourcery.com>
8224
8225 * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
8226 if $fp is used as the virtual frame pointer.
8227
8228 2013-02-23 Alan Modra <amodra@gmail.com>
8229
8230 * elfread.c (elf_symtab_read): Do not use udata.p here to find
8231 symbol size.
8232 * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
8233 * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
8234 * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
8235 * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
8236
8237 2013-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
8238
8239 Code cleanup.
8240 * elfread.c (build_id_bfd_get): Make the return type const.
8241 (build_id_verify): Make the check parameter const.
8242 (build_id_to_debug_filename): Make the build_id parameter and variable
8243 data const.
8244 (find_separate_debug_file_by_buildid): Make the variable build_id const.
8245
8246 2013-02-21 Alan Modra <amodra@gmail.com>
8247
8248 * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
8249
8250 2013-02-20 Siva Chandra Reddy <sivachandra@google.com>
8251
8252 Add a new method 'disassemble' to gdb.Architecture class.
8253 * python/py-arch.c (archpy_disassmble): Implementation of the
8254 new method gdb.Architecture.disassemble.
8255 (arch_object_methods): Add entry for the new method.
8256
8257 2013-02-20 Jiong Wang <jiwang@tilera.com>
8258
8259 * MAINTAINERS (Write After Approval): Add myself to the list.
8260
8261 2013-02-19 Pedro Alves <palves@redhat.com>
8262
8263 Garbage collect 'struct monitor_ops'::load_routine.
8264
8265 * monitor.h (struct monitor_ops) <load_routine>: Remove field.
8266 * monitor.c (monitor_load): No longer call
8267 current_monitor->load_routine.
8268 * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
8269 * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
8270 * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
8271
8272 2013-02-19 Pedro Alves <palves@redhat.com>
8273
8274 PR gdb/15161
8275
8276 Harmonize with generic_load.
8277
8278 * monitor.c: Include "readline/readline.h".
8279 (monitor_load): Rename parameter 'file' to 'args'. Use build_argv
8280 instead of sscanf. Use CORE_ADDR/strtoulst instead of unsigned
8281 long/strtol for the 'load_offset' local. Error out if no argument
8282 is given or if too many arguments are given. Tilde expand the
8283 passed in file name.
8284
8285 2013-02-19 Kai Tietz <ktietz@redhat.com>
8286
8287 PR gdb/15161
8288 * symfile.c (load_section_data): Change type of load_offset
8289 to CORE_ADDR.
8290 (generic_load): User strtoulst instead of strtoul for conversion
8291 of load_offset.
8292
8293 2013-02-19 Jiong Wang <jiwang@tilera.com>
8294
8295 * tilegx-tdep.c (tilegx_analyze_prologue): add check for
8296 for return address, "lr" register, saved on stack.
8297 * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
8298 after we invoke tilegx_analyze_prologue.
8299
8300 2013-02-19 Jiong Wang <jiwang@tilera.com>
8301
8302 * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
8303
8304 2013-02-19 Jiong Wang <jiwang@tilera.com>
8305
8306 * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
8307
8308 2013-02-19 Jiong Wang <jiwang@tilera.com>
8309
8310 * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
8311 (tilegx_write_pc): New function.
8312 (tilegx_cannot_reference_register): Return zero if REGNO
8313 is TILEGX_FAULTNUM_REGNUM.
8314 (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
8315 (tilegx_register_name): Add handling of "faultnum" register.
8316 * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
8317 * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
8318 handling of TILEGX_FAULTNUM_REGNUM.
8319 * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
8320
8321 2013-02-19 Jiong Wang <jiwang@tilera.com>
8322
8323 * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
8324 should be aligned to 64bit.
8325
8326 2013-02-19 Kai Tietz <ktietz@redhat.com>
8327
8328 * windows-nat.c (windows_xfer_memory): Fix debug-output
8329 for LLP64.
8330
8331 2013-02-19 Lei Liu <lei.liu2@windriver.com>
8332
8333 * mips-linux-nat.c (mips64_linux_regsets_store_registers):
8334 Don't check DSP register number if HAVE_DSP is not set.
8335
8336 2013-02-19 Alan Modra <amodra@gmail.com>
8337
8338 * elfread.c (struct build_id): Delete. Use struct elf_build_id
8339 throughout file instead.
8340 (build_id_bfd_get): Update to use new elf_tdata build_id field.
8341 Don't xmalloc return value.
8342 (build_id_verify): Similarly. Don't xfree.
8343 (build_id_to_debug_filename): Update.
8344 (find_separate_debug_file_by_buildid): Update, don't xfree.
8345
8346 2013-02-18 Tom Tromey <tromey@redhat.com>
8347
8348 PR gdb/15102:
8349 * dwarf2read.c (read_subrange_type): Use result of
8350 'check_typedef'.
8351
8352 2013-02-16 Yuanhui Zhang <asmwarrior@gmail.com>
8353
8354 * frame.c: Remove one extra white space after #include
8355 directive.
8356
8357 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
8358
8359 * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
8360
8361 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
8362
8363 * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
8364 and dir commands into an if block.
8365
8366 2013-02-15 Sanimir Agovic <sanimir.agovic@intel.com>
8367
8368 * python/py-breakpoint (struct pybp_code): Use int instead of
8369 enum type_code.
8370
8371 2013-02-15 Pedro Alves <pedro@codesourcery.com>
8372 Hafiz Abid Qadeer <abidh@codesourcery.com>
8373
8374 * NEWS: Mention new field "trace-file".
8375 * tracepoint.c (trace_status_mi): Output "trace-file" field.
8376 (tfile_open): Record the trace file's filename in the trace
8377 status.
8378 (tfile_files_info): Mention the name of the trace file.
8379 Check the "filename" field explicitely.
8380 (trace_status_command): Explicitely check "filename" field.
8381 (trace_find_command): Ditto.
8382 (trace_find_pc_command): Ditto.
8383 (trace_find_tracepoint_command): Ditto.
8384 (trace_find_line_command): Ditto.
8385 (trace_find_range_command): Ditto.
8386 (trace_find_outside_command): Ditto.
8387 * tracepoint.h (struct trace_status) <from_file>: Rename it
8388 to "filename" and make it hold the trace file's filename
8389 instead of a boolean.
8390 * remote.c (remote_get_trace_status): Initialize "filename"
8391 field with NULL instead of 0.
8392
8393 2013-02-15 Yao Qi <yao@codesourcery.com>
8394
8395 * remote.c: Fix a typo.
8396
8397 2013-02-14 Pierre Muller <muller@sourceware.org>
8398
8399 * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
8400
8401 2013-02-14 Pedro Alves <palves@redhat.com>
8402
8403 * utils.c (savestring): Don't #undef it. Move function to
8404 common/common-utils.c.
8405 * common/common-utils.c: Include gdb_string.h.
8406 (savestring): Move here from utils.c.
8407 * common/common-utils.h (savestring): Declare.
8408
8409 2013-02-14 Pedro Alves <palves@redhat.com>
8410
8411 * utils.c (savestring): Rename parameter 'size' to 'len'.
8412
8413 2013-02-14 Pedro Alves <palves@redhat.com>
8414 Yufeng Zhang <yufeng.zhang@arm.com>
8415
8416 * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
8417 (aarch64_inferior_data, struct aarch64_inferior_data):
8418 Delete.
8419 (struct aarch64_process_info): New.
8420 (aarch64_process_list): New global.
8421 (aarch64_find_process_pid, aarch64_add_process)
8422 (aarch64_process_info_get): New functions.
8423 (aarch64_inferior_data_get): Delete.
8424 (aarch64_process_info_get): New function.
8425 (aarch64_forget_process): New function.
8426 (aarch64_get_debug_reg_state): New parameter 'pid'. Reimplement.
8427 (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
8428 aarch64_get_debug_reg_state.
8429 (aarch64_notify_debug_reg_change): Use iterate_over_lwps
8430 instead of linux_nat_iterate_watchpoint_lwps.
8431 (aarch64_linux_new_fork): New function.
8432 (aarch64_linux_child_post_startup_inferior): Use
8433 aarch64_forget_process instead of aarch64_init_debug_reg_state.
8434 (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
8435 (aarch64_linux_remove_hw_breakpoint)
8436 (aarch64_handle_aligned_watchpoint)
8437 (aarch64_handle_unaligned_watchpoint)
8438 (aarch64_linux_insert_watchpoint)
8439 (aarch64_linux_remove_watchpoint)
8440 (aarch64_linux_stopped_data_address): Adjust to pass the current
8441 process id to aarch64_debug_reg_state.
8442 (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
8443 linux_nat_new_fork hook, and aarch64_forget_process as
8444 linux_nat_forget_process hook; remove the call to
8445 register_inferior_data_with_cleanup.
8446
8447 2013-02-14 Pedro Alves <palves@redhat.com>
8448
8449 * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
8450 EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
8451 lval_memory.
8452
8453 2013-02-14 Pedro Alves <pedro@codesourcery.com>
8454 Hafiz Abid Qadeer <abidh@codesourcery.com>
8455
8456 * tracepoint.h (validate_trace_state_variable_name): Declare.
8457 * tracepoint.c (validate_trace_state_variable_name): New.
8458 (trace_variable_command): Parse the trace state variable's name
8459 without using parse_expression. Do several validations.
8460 * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
8461 trace state variable's name with parse_expression. Validate it.
8462
8463 2013-02-14 Yao Qi <yao@codesourcery.com>
8464
8465 * infcmd.c (breakpoint_proceeded): Remove it.
8466
8467 2013-02-14 Yao Qi <yao@codesourcery.com>
8468
8469 * tracepoint.c (end_actions_pseudocommand): Make it static.
8470 (while_stepping_pseudocommand): Likewise.
8471 * tracepoint.h (end_actions_pseudocommand): Remove the
8472 declaration.
8473 (while_stepping_pseudocommand): Likewise.
8474
8475 2013-02-14 Yao Qi <yao@codesourcery.com>
8476
8477 * cli/cli-decode.c (help_cmd): Remove the declaration of
8478 "cmdlist".
8479 (help_all): Likewise.
8480
8481 2013-02-13 Pedro Alves <palves@redhat.com>
8482
8483 * amd64-linux-nat.c (update_debug_registers_callback):
8484 Update comment.
8485 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
8486 iterate_over_lwps.
8487 (amd64_linux_prepare_to_resume): Pass the lwp's pid to
8488 i386_debug_reg_state.
8489 (amd64_linux_new_fork): New function.
8490 (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
8491 linux_nat_new_fork hook, and i386_forget_process as
8492 linux_nat_forget_process hook.
8493 * i386-linux-nat.c (update_debug_registers_callback):
8494 Update comment.
8495 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
8496 iterate_over_lwps.
8497 (i386_linux_prepare_to_resume): Pass the lwp's pid to
8498 i386_debug_reg_state.
8499 (i386_linux_new_fork): New function.
8500 (_initialize_i386_linux_nat): Install i386_linux_new_fork as
8501 linux_nat_new_fork hook, and i386_forget_process as
8502 linux_nat_forget_process hook.
8503 * i386-nat.c (i386_init_dregs): Delete.
8504 (i386_inferior_data, struct i386_inferior_data):
8505 Delete.
8506 (struct i386_process_info): New.
8507 (i386_process_list): New global.
8508 (i386_find_process_pid, i386_add_process, i386_process_info_get):
8509 New functions.
8510 (i386_inferior_data_get): Delete.
8511 (i386_process_info_get): New function.
8512 (i386_debug_reg_state): New parameter 'pid'. Reimplement.
8513 (i386_forget_process): New function.
8514 (i386_cleanup_dregs): Rewrite.
8515 (i386_update_inferior_debug_regs, i386_insert_watchpoint)
8516 (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
8517 (i386_stopped_data_address, i386_insert_hw_breakpoint)
8518 (i386_remove_hw_breakpoint): Adjust to pass the current process id
8519 to i386_debug_reg_state.
8520 (i386_use_watchpoints): Don't register inferior data.
8521 * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
8522 adjust comment.
8523 (i386_forget_process): Declare.
8524 * linux-fork.c (delete_fork): Call linux_nat_forget_process.
8525 * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
8526 New static globals.
8527 (linux_child_follow_fork): Don't call linux_nat_new_thread here.
8528 (add_initial_lwp): New, factored out from ...
8529 (add_lwp): ... this. Don't check the number of lwps before
8530 calling linux_nat_new_thread.
8531 (linux_nat_iterate_watchpoint_lwps): Delete.
8532 (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
8533 (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
8534 forks and vforks.
8535 (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
8536 initial lwp.
8537 (linux_nat_kill, linux_nat_mourn_inferior): Call
8538 linux_nat_forget_process.
8539 (linux_nat_set_new_fork, linux_nat_set_forget_process)
8540 (linux_nat_forget_process): New functions.
8541 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
8542 type.
8543 (linux_nat_iterate_watchpoint_lwps): Delete declaration.
8544 (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
8545 types.
8546 (linux_nat_set_new_fork, linux_nat_set_forget_process)
8547 (linux_nat_forget_process): New declarations.
8548
8549 * amd64fbsd-nat.c (super_mourn_inferior): New global.
8550 (amd64fbsd_mourn_inferior): New function.
8551 (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
8552 * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
8553
8554 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
8555
8556 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
8557 Adding _().
8558
8559 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
8560
8561 * aarch64-linux-nat.c (debug_reg_change_callback)
8562 (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
8563 %s and phex().
8564
8565 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
8566
8567 * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
8568 with LONGEST.
8569
8570 2013-02-13 Pedro Alves <palves@redhat.com>
8571 Hafiz Abid Qadeer <abidh@codesourcery.com>
8572
8573 * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
8574
8575 2013-02-12 Tom Tromey <tromey@redhat.com>
8576
8577 PR symtab/11464:
8578 * c-exp.y (lex_one_token): Initialize other fields of yylval on
8579 NAME return.
8580 (classify_inner_name): Remove 'first_name' argument, add
8581 'context'. Remove unused variable.
8582 (yylex): Explicitly maintain the context type. Exit loop earlier
8583 if NAME result is seen.
8584
8585 2013-02-12 Pedro Alves <palves@redhat.com>
8586
8587 * amd64-darwin-tdep.c: Add (C) after Copyright.
8588 * cli/cli-cmds.h: Ditto.
8589 * cli/cli-decode.c: Ditto.
8590 * cli/cli-decode.h: Ditto.
8591 * cli/cli-dump.c: Ditto.
8592 * cli/cli-dump.h: Ditto.
8593 * cli/cli-interp.c: Ditto.
8594 * cli/cli-logging.c: Ditto.
8595 * cli/cli-script.c: Ditto.
8596 * cli/cli-script.h: Ditto.
8597 * cli/cli-setshow.c: Ditto.
8598 * cli/cli-setshow.h: Ditto.
8599 * cli/cli-utils.c: Ditto.
8600 * cli/cli-utils.h: Ditto.
8601 * config/alpha/nm-osf3.h: Ditto.
8602 * config/djgpp/djconfig.sh: Ditto.
8603 * config/i386/nm-fbsd.h: Ditto.
8604 * config/i386/nm-i386gnu.h: Ditto.
8605 * config/nm-linux.h: Ditto.
8606 * config/nm-nto.h: Ditto.
8607 * config/rs6000/nm-rs6000.h: Ditto.
8608 * config/sparc/nm-sol2.h: Ditto.
8609 * darwin-nat-info.c: Ditto.
8610 * dfp.c: Ditto.
8611 * dfp.h: Ditto.
8612 * gdb-demangle.h: Ditto.
8613 * i386-darwin-nat.c: Ditto.
8614 * i386-darwin-tdep.c: Ditto.
8615 * linux-fork.h: Ditto.
8616 * m32c-tdep.c: Ditto.
8617 * microblaze-linux-tdep.c: Ditto.
8618 * microblaze-rom.c: Ditto.
8619 * microblaze-tdep.c: Ditto.
8620 * microblaze-tdep.h: Ditto.
8621 * mips-linux-tdep.h: Ditto.
8622 * ppc-ravenscar-thread.c: Ditto.
8623 * ppc-ravenscar-thread.h: Ditto.
8624 * prologue-value.c: Ditto.
8625 * prologue-value.h: Ditto.
8626 * ravenscar-thread.c: Ditto.
8627 * ravenscar-thread.h: Ditto.
8628 * sparc-ravenscar-thread.c: Ditto.
8629 * sparc-ravenscar-thread.h: Ditto.
8630 * tilegx-linux-tdep.c: Ditto.
8631 * unwind_stop_reasons.def: Ditto.
8632 * windows-nat.h: Ditto.
8633 * xtensa-linux-tdep.c: Ditto.
8634 * xtensa-xtregs.c: Ditto.
8635 * regformats/regdat.sh: Ditto.
8636 * regformats/regdef.h: Ditto.
8637
8638 2013-02-12 Pedro Alves <palves@redhat.com>
8639
8640 * break-catch-sig.c: Update copyright years.
8641
8642 2013-02-11 Siva Chandra Reddy <sivachandra@google.com>
8643
8644 Add support for a destructor for ui_out data and use it to
8645 provide a ui_out destructor.
8646 * ui-out.h: Declare the new ui_out destructor.
8647 (ui_out_impl): Add a field for data destructor in ui_out_impl.
8648 * ui-out.c (default_data_destroy): Add a default data destructor
8649 which does nothing.
8650 (default_ui_out_impl): Set the new data_destroy field to
8651 default_data_destroy
8652 (uo_data_destroy): Local function which invokes the data
8653 destructor if present.
8654 (clear_table): Local function which clears the table data of a
8655 ui_out object.
8656 (ui_out_destroy): Public function which frees a ui_out object.
8657 (ui_out_table_end): Use the new clear_table function.
8658 * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
8659 NULL.
8660 * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
8661 to NULL.
8662
8663 2013-02-11 Doug Evans <dje@google.com>
8664
8665 * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
8666 (printf_decfloat): New function. Broken out from ui_printf.
8667 Remove unnecessary code to shift the entire format string down.
8668 (printf_pointer): New function.
8669 (ui_printf): Code to print C strings, wide C strings, decfloats,
8670 and pointers moved to separate functions.
8671
8672 2013-02-11 Sergio Durigan Junior <sergiodj@redhat.com>
8673
8674 * valops.c (value_assign): Handling bitfield offset in
8675 `lval_internalvar_component' case.
8676
8677 2013-02-08 Doug Evans <dje@google.com>
8678
8679 * common/format.c (parse_format_string): Fix whitespace.
8680
8681 2013-02-08 Matthew Gretton-Dann <matthew.gretton-dann@linaro.org>
8682
8683 * stack.c (return_command): Work around uninitialized variable
8684 warning.
8685
8686 2013-02-08 Yufeng Zhang <yufeng.zhang@arm.com>
8687
8688 * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
8689 number of the registers from 36 to 34.
8690
8691 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
8692
8693 * NEWS: Mention new AArch64 native and target support.
8694
8695 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
8696
8697 * MAINTAINERS (Write After Approval): Add myself.
8698
8699 2013-02-08 Jim MacArthur <jim.macarthur@arm.com>
8700 Marcus Shawcroft <marcus.shawcroft@arm.com>
8701 Nigel Stephens <nigel.stephens@arm.com>
8702 Yufeng Zhang <yufeng.zhang@arm.com>
8703
8704 * aarch64-linux-nat.c: New file.
8705 * config/aarch64/linux.mh: New file.
8706 * configure.host: Add AArch64.
8707 * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
8708
8709 2013-02-07 Doug Evans <dje@google.com>
8710
8711 * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
8712 disassemble command.
8713
8714 2013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
8715
8716 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
8717 set_gdbarch_fetch_tls_load_module_address.
8718
8719 2013-02-06 David S. Miller <davem@davemloft.net>
8720
8721 * sparc-tdep.c (sparc32_return_value): Handle writing return value when
8722 using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
8723 * value.c (struct_return_convention): New function.
8724 (using_struct_return): Implement in terms of struct_return_convention.
8725 * value.h (struct_return_convention): Declare.
8726 * stack.c (return_command): Allow successful overriding of the return
8727 value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
8728
8729 2013-02-06 Tom Tromey <tromey@redhat.com>
8730
8731 * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
8732 outside of TRY_CATCH.
8733
8734 2013-02-06 Yao Qi <yao@codesourcery.com>
8735
8736 * mi/mi-interp.c: Include "tracepoint.h".
8737 (mi_tsv_modified): Declare.
8738 (mi_tsv_created, mi_tsv_deleted): Update declaration.
8739 (mi_interpreter_init): Call observer_attach_tsv_modified.
8740 (mi_tsv_modified): New.
8741 (mi_tsv_created, mi_tsv_deleted): Update.
8742 * tracepoint.c (trace_variable_command): Call
8743 observer_notify_tsv_modified if the initial value of tsv is
8744 changed.
8745 (delete_trace_state_variable): Call
8746 observer_notify_tsv_deleted earlier.
8747 (trace_variable_command): Caller update.
8748 (create_tsv_from_upload): Likewise.
8749 * observer.sh: Declare "struct trace_state_variable".
8750
8751 * NEWS: Mention the new MI notification "=tsv-modified".
8752
8753 2013-02-05 Doug Evans <dje@google.com>
8754
8755 * completer.c (location_completer): Fix typo in comment.
8756
8757 2013-02-05 Jan Kratochvil <jan.kratochvil@redhat.com>
8758
8759 * breakpoint.c (add_location_to_breakpoint): Insert the location with
8760 ADDRESS sorted.
8761
8762 2013-02-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
8763
8764 * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
8765 Refactor if statement to avoid trailing || operator.
8766
8767 2013-02-05 Andreas Tobler <andreast@fgznet.ch>
8768
8769 * NEWS: Add PowerPC FreeBSD as a new native configuration.
8770
8771 2013-02-04 Andreas Tobler <andreast@fgznet.ch>
8772
8773 * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
8774 * configure.host: Add powerpc*-*-freebsd* target.
8775 * configure.tgt: Add target info for powerpc*-*-freebsd*.
8776 * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
8777 * config/powerpc/fbsd.mh: New file.
8778
8779 2013-02-04 Sergio Durigan Junior <sergiodj@redhat.com>
8780 Denys Vlasenko <dvlasenk@redhat.com>
8781 Pedro Alves <palves@redhat.com>
8782
8783 * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
8784 (struct elf_internal_linux_prpsinfo): Forward declare.
8785 * gdbarch.h, gdbarch.c: Regenerate.
8786 * linux-tdep.c: Include `cli/cli-utils.h'.
8787 (linux_fill_prpsinfo): New function.
8788 (linux_make_corefile_notes): Use linux_fill_prpsinfo. If there's
8789 an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
8790 elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
8791 depending on gdbarch pointer bitness.
8792 * ppc-linux-tdep.c: Include elf-bfd.h.
8793 (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
8794 on 32-bit.
8795
8796 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
8797 Marcus Shawcroft <marcus.shawcroft@arm.com>
8798 Nigel Stephens <nigel.stephens@arm.com>
8799 Yufeng Zhang <yufeng.zhang@arm.com>
8800
8801 * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
8802
8803 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
8804 Marcus Shawcroft <marcus.shawcroft@arm.com>
8805 Nigel Stephens <nigel.stephens@arm.com>
8806 Yufeng Zhang <yufeng.zhang@arm.com>
8807
8808 * aarch64-newlib-tdep.c: New file.
8809 * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
8810 aarch64*-*-elf.
8811 * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
8812 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
8813 (ALLDEPFILES): Add aarch64-newlib-tdep.c.
8814 * osabi.c (gdb_osabi_names): Add "Newlib".
8815
8816 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
8817 Marcus Shawcroft <marcus.shawcroft@arm.com>
8818 Nigel Stephens <nigel.stephens@arm.com>
8819 Yufeng Zhang <yufeng.zhang@arm.com>
8820
8821 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
8822 (ALLDEPFILES): Add aarch64-linux-tdep.c.
8823 * aarch64-linux-tdep.c: New file.
8824 * aarch64-linux-tdep.h: New file.
8825 * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
8826 * configure.tgt: Add aarch64-none-linux-gnu.
8827
8828 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
8829 Marcus Shawcroft <marcus.shawcroft@arm.com>
8830 Nigel Stephens <nigel.stephens@arm.com>
8831 Yufeng Zhang <yufeng.zhang@arm.com>
8832
8833 * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
8834 (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
8835 (ALLDEPFILES): Add aarch64-tdep.c.
8836 * aarch64-tdep.c: New file.
8837 * aarch64-tdep.h: New file.
8838 * configure.tgt: Add AArch64.
8839 * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
8840 (aarch64-expedite): New definition.
8841 * features/aarch64-core.xml: New file.
8842 * features/aarch64-fpu.xml: New file.
8843 * features/aarch64-without-fpu.c: New file (generated).
8844 * features/aarch64-without-fpu.xml: New file.
8845 * features/aarch64.c: New file (generated).
8846 * features/aarch64.xml: New file.
8847 * regformats/aarch64-without-fpu.dat: New file (generated).
8848 * regformats/aarch64.dat: New file (generated).
8849
8850 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8851
8852 * contrib/expect-read1.c: New file.
8853 * contrib/expect-read1.sh: New file.
8854
8855 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8856
8857 * dwarf2read.c (file_file_name): New function with code from
8858 file_full_name.
8859 (file_full_name): Move most of the code to file_file_name.
8860 (macro_start_file): Rename variable full_name to file_name and use
8861 file_file_name for it. Add comp_dir parameter to new_macro_table.
8862 * macrocmd.c (show_pp_source_pos): New variable fullname. Replace any
8863 macro_source_file->filename access by macro_source_fullname call.
8864 * macroscope.c (_initialize_macroscope): Update the new_macro_table
8865 caller.
8866 * macrotab.c (struct macro_table): New field comp_dir.
8867 (macro_include): New variables link_fullname and source_fullname.
8868 Replace any macro_source_file->filename access by macro_source_fullname
8869 call.
8870 (macro_lookup_inclusion): Remove the partial filenames checking code.
8871 (check_for_redefinition): New variables source_fullname and
8872 found_key_fullname. Replace any macro_source_file->filename access by
8873 macro_source_fullname call.
8874 (macro_undef): New variables source_fullname and key_fullname. Replace
8875 any macro_source_file->filename access by macro_source_fullname call.
8876 (macro_lookup_definition): New variables retval and source_fullname.
8877 Replace any macro_source_file->filename access by macro_source_fullname
8878 call.
8879 (foreach_macro): New variable key_fullname. Replace any
8880 macro_source_file->filename access by macro_source_fullname call.
8881 (foreach_macro_in_scope): New variable datum_fullname. Replace any
8882 macro_source_file->filename access by macro_source_fullname call.
8883 (new_macro_table): Add parameter comp_dir. Initialize T with it.
8884 (macro_source_fullname): New function.
8885 * macrotab.h (struct macro_source_file): Extent the filename field
8886 comment.
8887 (new_macro_table): New parameter comp_dir, add a comment for it.
8888 (macro_source_fullname): new declaration.
8889
8890 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8891
8892 * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
8893 this_real_name to outer block. Use it also for
8894 compare_filenames_for_search.
8895 (dw2_expand_symtabs_matching): New variable this_real_name. Use it
8896 with dw2_get_real_path for file_matcher, considering also
8897 BASENAMES_MAY_DIFFER.
8898 (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
8899
8900 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8901
8902 * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
8903 to the file_matcher parameter. Pass 0 to it.
8904 (dwarf2_create_include_psymtab): Copy also DIRNAME.
8905 * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
8906 NULL psymtab_to_fullname result.
8907 (psymtab_to_fullname): Remove variable r. Never return NULL, assemble
8908 an expected filename instead.
8909 (expand_symtabs_matching_via_partial): Add basenames parameter to the
8910 file_matcher parameter. Call also psymtab_to_fullname, after newly
8911 considering BASENAMES_MAY_DIFFER.
8912 * source.c (rewrite_source_path): Remove static.
8913 * source.h (rewrite_source_path): New declaration.
8914 * symfile.h (struct quick_symbol_functions): Add basenames parameter to
8915 the expand_symtabs_matching field. Comment it.
8916 * symtab.c (file_matches): New function comment. Add parameter
8917 basenames, implement it.
8918 (search_symbols_file_matches): Add basenames parameter. Update the
8919 file_matches caller.
8920 (search_symbols): Match FILES also against symtab_to_fullname.
8921 Optimize it for BASENAMES_MAY_DIFFER.
8922
8923 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8924
8925 * source.c (print_source_lines_base): Print for TUI also "fullname".
8926 * tui/tui-data.c (init_content_element): Change tui_locator_element
8927 field to full_name.
8928 * tui/tui-data.h (struct tui_locator_element): Likewise.
8929 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
8930 tui_update_locator_filename calls to tui_update_locator_fullname.
8931 Replace symtab->filename refererence by symtab_to_fullname call.
8932 * tui/tui-out.c (tui_field_string): Check for "fullname" now.
8933 * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
8934 field to full_name. Replace symtab->filename refererence by
8935 symtab_to_fullname call.
8936 (tui_show_symtab_source): Rename parameter to fullname. Change
8937 tui_locator_element field to full_name.
8938 * tui/tui-stack.c: Include source.h.
8939 (tui_set_locator_filename): Rename the declaration to ...
8940 (tui_set_locator_fullname): ... here. Rename its parameter to
8941 fullname, updates its comment.
8942 (tui_set_locator_info): Rename its parameter to fullname.
8943 (tui_set_locator_filename): Rename the definition to ...
8944 (tui_set_locator_fullname): ... here. Rename its parameter to
8945 fullname, updates its comment. Change tui_locator_element field to
8946 full_name.
8947 (tui_set_locator_info): Rename its parameter to fullname.
8948 (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
8949 (tui_update_locator_filename): Rename to ...
8950 (tui_update_locator_fullname): ... here. Rename callee to
8951 tui_set_locator_fullname.
8952 (tui_show_frame_info): Replace symtab->filename refererence by
8953 symtab_to_fullname call.
8954 * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
8955 (tui_update_locator_fullname): ... here.
8956 * tui/tui-winsource.c (tui_display_main): Rename the callee to
8957 tui_update_locator_fullname. Replace symtab->filename refererence by
8958 symtab_to_fullname call.
8959 * tui/tui.c (tui_show_source): Rename its parameter to fullname.
8960 Rename the callee to tui_update_locator_fullname.
8961 * tui/tui.h (tui_show_source): Rename its parameter to fullname.
8962
8963 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8964
8965 * ada-lang.c (user_select_syms): Replace symtab->filename refererences
8966 by symtab_to_filename_for_display calls.
8967 * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
8968 (clear_command): New variable sal_fullname, initialize it. Replace
8969 compare_filenames_for_search by filename_cmp with sal_fullname.
8970 (say_where, update_static_tracepoint): Replace symtab->filename
8971 refererences by symtab_to_filename_for_display calls.
8972 * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
8973 Likewise.
8974 * dwarf2read.c: Include source.h.
8975 (fixup_go_packaging): Replace symtab->filename refererences by
8976 symtab_to_filename_for_display calls.
8977 * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
8978 Replace symtab->filename refererences by symtab_to_filename_for_display
8979 calls.
8980 (create_sals_line_offset, convert_linespec_to_sals): New variable
8981 fullname, initialize it, replace symtab->filename reference by the
8982 variable.
8983 * linux-fork.c: Include source.h.
8984 (info_checkpoints_command): Replace symtab->filename refererences by
8985 symtab_to_filename_for_display calls.
8986 * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
8987 by symtab_to_filename_for_display calls.
8988 * mdebugread.c: Include source.h.
8989 (psymtab_to_symtab_1): Replace symtab->filename refererences by
8990 symtab_to_filename_for_display calls.
8991 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
8992 (mi_cmd_file_list_exec_source_files): Likewise.
8993 * printcmd.c: Include source.h.
8994 (build_address_symbolic): Replace symtab->filename refererences by
8995 symtab_to_filename_for_display calls.
8996 * psymtab.c (partial_map_symtabs_matching_filename)
8997 (read_psymtabs_with_fullname): Call compare_filenames_for_search also
8998 with psymtab_to_fullname.
8999 * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
9000 by symtab_to_filename_for_display calls.
9001 (stpy_get_filename): New variable filename, initialize it, use instead
9002 of symtab->filename refererences.
9003 (salpy_str): Make variable filename const char *. Replace
9004 symtab->filename refererences by symtab_to_filename_for_display calls.
9005 * skip.c: Include source.h and filenames.h.
9006 (skip_file_command): Remove const from the symtab variable. Replace
9007 symtab->filename refererences by symtab_to_fullname call.
9008 (function_name_is_marked_for_skip): New variables searched_for_fullname
9009 and fullname. Use them to search also with symtab's fullname.
9010 * source.c (find_source_lines): Replace symtab->filename refererences
9011 by symtab_to_filename_for_display calls.
9012 (print_source_lines_base): New variable filename, use it instead of
9013 symtab->filename. Replace symtab->filename refererences by
9014 symtab_to_filename_for_display calls.
9015 (line_info, forward_search_command): Replace symtab->filename
9016 refererences by symtab_to_filename_for_display calls.
9017 (reverse_search_command): Replace symtab->filename refererences by
9018 symtab_to_filename_for_display calls. New variable filename for it.
9019 * stack.c (frame_info): Likewise.
9020 * symmisc.c: Include source.h.
9021 (dump_objfile, dump_symtab_1, maintenance_print_symbols)
9022 (maintenance_info_symtabs): Replace symtab->filename refererences by
9023 symtab_to_filename_for_display calls.
9024 * symtab.c (iterate_over_some_symtabs): Call
9025 compare_filenames_for_search also with symtab_to_fullname.
9026 (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
9027 symtab->filename refererences by symtab_to_filename_for_display calls.
9028 (find_line_symtab): Replace symtab->filename refererences by
9029 symtab_to_filename_for_display calls.
9030 (file_matches): Replace filename_cmp by compare_filenames_for_search.
9031 (print_symbol_info): Make the last parameter const char *. New
9032 variable s_filename. Use it in the function.
9033 (symtab_symbol_info): Make the last_filename variable const char *.
9034 Replace symtab->filename refererences by symtab_to_filename_for_display
9035 calls.
9036 (rbreak_command): New variable fullname. Use it. Replace
9037 symtab->filename refererence by symtab_to_filename_for_display call.
9038 * tracepoint.c (set_traceframe_context, trace_find_line_command)
9039 (print_one_static_tracepoint_marker): Replace symtab->filename
9040 refererences by symtab_to_filename_for_display calls.
9041 * tui/tui-source.c (tui_set_source_content): New variables filename and
9042 s_filename. Replace symtab->filename refererences by this variable.
9043 Replace other symtab->filename refererences by
9044 symtab_to_filename_for_display calls.
9045
9046 2013-02-03 Eldar Gaynetdinov <hal9000ed2k@gmail.com>
9047 Jan Kratochvil <jan.kratochvil@redhat.com>
9048
9049 Add a new variable that controls a way in which filenames are
9050 displayed.
9051 * NEWS (set filename-display): New entry.
9052 * source.c (filename_display_basename, filename_display_relative)
9053 (filename_display_absolute, filename_display_kind_names)
9054 (filename_display_string, show_filename_display_string)
9055 (symtab_to_filename_for_display): New.
9056 (_initialize_source): Added initialization of 'filename-display'
9057 variable.
9058 * source.h (symtab_to_filename_for_display): Added declaration.
9059 * stack.c (print_frame): Added new variable and calling of a new
9060 function and condition with this variable. Changed third argument of
9061 calling of a function.
9062
9063 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9064
9065 * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
9066 Rename field reference filename to fullname.
9067 * tui/tui-data.h (struct tui_source_info): Rename field filename to
9068 fullname. New comment for it.
9069 * tui/tui-source.c (tui_set_source_content): Rename field reference
9070 filename to fullname. Initialize field by symtab_to_fullname now.
9071 * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
9072 reference filename to fullname. Use symtab_to_fullname during
9073 comparison.
9074
9075 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9076
9077 Code cleanup.
9078 * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
9079 (dw2_expand_symtabs_with_fullname): ... here. Rename parameter
9080 filename to fullname. Rename variable this_name to this_fullname.
9081 Lowercase FILENAME_CMP call.
9082 (dw2_find_symbol_file): New comment for the returned string.
9083 (dwarf2_gdb_index_functions): Rename the function to
9084 dw2_expand_symtabs_with_fullname.
9085 * psymtab.c (read_psymtabs_with_filename): Rename to ...
9086 (read_psymtabs_with_fullname): ... here. Rename parameter filename to
9087 fullname.
9088 (psym_functions): Rename the function to read_psymtabs_with_fullname.
9089 * symfile.h (struct quick_symbol_functions): Rename field
9090 expand_symtabs_with_filename to expand_symtabs_with_fullname and its
9091 parameter filename to fullname. Document returned string meaning for
9092 find_symbol_file.
9093 * symtab.c (find_line_symtab): Rename the called function to
9094 expand_symtabs_with_fullname.
9095
9096 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9097
9098 Code cleanup.
9099 * breakpoint.c (clear_command): Remove variable is_abs, unify the
9100 call of filename_cmp with compare_filenames_for_search.
9101 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
9102 is_abs, unify the call of FILENAME_CMP with
9103 compare_filenames_for_search. New gdb_asserts for real_path and name.
9104 Unify the call of compare_filenames_for_search with FILENAME_CMP.
9105 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
9106 * symfile.h (struct quick_symbol_functions): Extend the comment for
9107 map_symtabs_matching_filename.
9108 * symtab.c (compare_filenames_for_search): Remove the function comment
9109 relative path requirement. Handle absolute filenames, with a comment.
9110 (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
9111 FILENAME_CMP with compare_filenames_for_search. New gdb_asserts for
9112 real_path and name. Unify the call of compare_filenames_for_search
9113 with FILENAME_CMP.
9114 (iterate_over_symtabs): New gdb_assert on REAL_PATH.
9115
9116 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9117
9118 Code cleanup.
9119 * breakpoint.c (print_breakpoint_location): Replace bp_location field
9120 source_file references by symtab field references. Remove variables
9121 sal and fullname.
9122 (momentary_breakpoint_from_master, add_location_to_breakpoint):
9123 (clear_command, say_where): Replace bp_location field source_file
9124 references by symtab field references.
9125 (bp_location_dtor): Remove the source_file reference.
9126 (update_static_tracepoint): Replace bp_location field source_file
9127 references by symtab field references.
9128 (breakpoint_free_objfile): New function.
9129 * breakpoint.h (struct bp_location): Extend the comment for line_number.
9130 Replace the field source_file by field symtab, extend its comment.
9131 (breakpoint_free_objfile): New declaration.
9132 * objfiles.c (free_objfile): Call breakpoint_free_objfile.
9133 * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
9134 field source_file references by symtab field references.
9135
9136 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9137
9138 Replace xfullpath calls by gdb_realpath calls.
9139 * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
9140 function comment.
9141 * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
9142 Remove it from the iterate_over_some_symtabs call.
9143 (dw2_map_symtabs_matching_filename): Remove parameter full_path.
9144 Remove it from the dw2_map_expand_apply calls, remove a block handling
9145 it.
9146 * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
9147 Remove it from the iterate_over_some_symtabs call.
9148 (partial_map_symtabs_matching_filename): Remove parameter full_path.
9149 Remove it from the partial_map_expand_apply calls, remove a block
9150 handling it. Drop gdb_realpath call and cleanups from the real_path
9151 handling.
9152 * source.c (openp): Drop the comment part about xfullpath. Replace
9153 xfullpath calls by gdb_realpath calls.
9154 (find_and_open_source): Replace xfullpath call by gdb_realpath call.
9155 * symfile.h (struct quick_symbol_functions): Remove parameter full_path
9156 from method map_symtabs_matching_filename and its comment.
9157 * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
9158 gdb_realpath call.
9159 * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
9160 remove it also from the function comment, remove a block handling it.
9161 Drop gdb_realpath call and cleanups from the real_path handling.
9162 (iterate_over_symtabs): Drop variable full_path and its use.
9163 * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
9164 * utils.c (xfullpath): Remove.
9165 * utils.h (xfullpath): Remove.
9166
9167 2013-02-01 Andreas Tobler <andreast@fgznet.ch>
9168
9169 * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
9170 (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
9171 (ALLDEPFILES): Add ppc64-tdep.c.
9172 * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
9173 ppc64-tdep.o to gdb_target_obs.
9174 * ppc64-tdep.h: New file.
9175 * ppc64-tdep.c: New file.
9176 (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
9177 ppc-linux-tdep.c to here.
9178 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
9179 (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
9180 (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
9181 (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
9182 from ppc-linux-tdep.c to here.
9183 (ppc64_convert_from_func_ptr_addr): Rename from
9184 ppc64_linux_convert_from_func_ptr_addr to
9185 ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
9186 here.
9187 * rs6000-tdep.c:
9188 (read_insn): Move from ppc-linux-tdep.c to here.
9189 (insns_match_pattern, insn_d_field, insn_ds_field): Move
9190 from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
9191 * ppc-linux-tdep.c: Include ppc64-tdep.h.
9192 Removed above functions.
9193 (ppc_linux_init_abi): Adjust.
9194
9195 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
9196
9197 * ada-valprint.c (ada_print_floating): Remove unused 'len'.
9198
9199 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
9200
9201 * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
9202
9203 2013-02-01 Pedro Alves <palves@redhat.com>
9204
9205 * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
9206 * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
9207
9208 2013-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
9209
9210 * elfread.c (elf_symfile_read): Limit separate debug info additions to
9211 files with no separate debug info.
9212 * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
9213 * symfile.c (read_symbols): Call find_separate_debug_file_in_section
9214 only for files with no separate debug info.
9215
9216 2013-01-31 Tom Tromey <tromey@redhat.com>
9217
9218 * jit.c (jit_program_space_data): Rename from jit_inferior_data;
9219 change type.
9220 (struct jit_program_space_data): Rename from jit_inferior_data.
9221 Update comments.
9222 (get_jit_program_space_data): Rename from get_jit_inferior_data.
9223 Change return type. Attach data to program space.
9224 (jit_program_space_data_cleanup): Rename from
9225 jit_inferior_data_cleanup; change argument type.
9226 (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
9227 change type.
9228 (jit_register_code): Update.
9229 (jit_update_inferior_cache): Remove.
9230 (jit_breakpoint_deleted): Get jit data from the location's program
9231 space.
9232 (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
9233 'ps_data', change type.
9234 (jit_inferior_init, jit_breakpoint_re_set_internal)
9235 (jit_event_handler): Update.
9236 (free_objfile_data): Get data from objfile's program space.
9237 (_initialize_jit): Update.
9238
9239 2013-01-31 Tom Tromey <tromey@redhat.com>
9240
9241 PR gdb/13987:
9242 * jit.c (struct jit_inferior_data) <cached_code_address,
9243 jit_breakpoint>: New fields.
9244 (jit_breakpoint_re_set_internal): Fix logging. Only create
9245 breakpoint if cached address has changed.
9246 (jit_update_inferior_cache, jit_breakpoint_deleted): New
9247 functions.
9248 (_initialize_jit): Register breakpoint deleted observer.
9249
9250 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
9251
9252 * infrun.c (handle_syscall_event): Remove unused gdbarch.
9253 (save_infcall_suspend_state): Ifdef out unused inf.
9254 (restore_infcall_suspend_state): Ifdef out unused inf.
9255 * jit.c (jit_register_code): Remove unused i, b, inf_data.
9256 (jit_frame_sniffer): Remove unused inf_data.
9257
9258 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
9259
9260 * c-exp.y (classify_inner_name): Remove unused type.
9261 * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
9262 in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
9263 need_escape.
9264 (c_get_string): Remove unused kind.
9265 * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
9266
9267 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
9268
9269 * charset.c (intermediate_encoding): Remove unused i.
9270 * completer.c (signal_completer): Remove unused i.
9271 * continuations.c (discard_my_continuations_1): Remove unused
9272 continuation_ptr.
9273 * corelow.c (core_close): Remove unuseD name.
9274 (get_core_siginfo): Remove unused pid.
9275 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
9276 i, cps.
9277 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
9278 (loclist_describe_location): Remove unused first.
9279 * event-top.c (command_line_handler): Remove unused got_eof.
9280 * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
9281 (resize_section_table): Remove unused old_value.
9282 * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
9283 * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
9284 * i386-tdep.c (i386_process_record): Remove unused rex.
9285 * infcmd.c (get_return_value): Remove unused uiout.
9286 * jv-lang.c (type_from_class): Remove unused is_array.
9287 * jv-valprint.c (java_val_print): Remove unused i.
9288 * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
9289 * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
9290 * m2-typeprint.c (m2_print_type): Remove unused code.
9291 * macroexp.c (get_character_constant): Remove unused body_start.
9292 (macro_stringify): Remove unused result.
9293 * objc-lang.c (find_methods): Remove unused gdbarch.
9294 * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
9295 * regcache.c (regcache_cooked_read): Remove unused gdbarch.
9296 * stack.c (print_frame_args): Remove unused summary.
9297 * thread.c (thread_apply_command): Remove unused p.
9298 * valarith.c (value_x_unop): Remove unused mangle_ptr.
9299 * valops.c (search_struct_method): Remove unused skip.
9300 * valprint.c (generic_val_print): Remove unused byte_order.
9301 * varobj.c (varobj_update): Remove unused changed.
9302 * cli/cli-cmds.c (complete_command): Remove unused next_item.
9303 (alias_command): Remove unused c.
9304 * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
9305 * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
9306 format.
9307 (mi_cmd_data_write_memory): Remove unused word_format.
9308 (mi_cmd_data_write_memory_bytes): Remove unused r.
9309 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
9310 p_start, p_end.
9311 * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
9312 * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
9313 line_width.
9314
9315 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
9316
9317 * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
9318 * symtab.c (iterate_over_symtabs): Remove unused s.
9319 (find_pc_sect_symtab): Remove unused pspAce.
9320 (find_pc_sect_line): Remove unused alt_symtab.
9321 (find_pcs_for_symtab_line): Remove unused ix, previous_function.
9322 (completion_list_add_name): Remove unused newsize.
9323
9324 2013-01-31 Tom Tromey <tromey@redhat.com>
9325
9326 PR c++/14998:
9327 * dwarf2read.c (read_tag_ptr_to_member_type): Handle
9328 TYPE_CODE_FUNC.
9329
9330 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
9331
9332 * target.c (target_read_string): Remove unused origlen.
9333
9334 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
9335
9336 * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
9337 * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
9338 * ax-general.c (ax_print): Remove unused is_float.
9339 * blockframe.c (block_innermost_frame): Remove unused start, end.
9340 * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
9341
9342 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
9343
9344 * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
9345 (svr4_read_so_list): Remove unused lmo.
9346 * solib-target.c (solib_target_relocate_section_addresses): Remove
9347 unused flags.
9348
9349 2013-01-30 Tom Tromey <tromey@redhat.com>
9350
9351 * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
9352
9353 2013-01-30 Tom Tromey <tromey@redhat.com>
9354
9355 * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
9356 * utils.c (gnu_debuglink_crc32): Remove.
9357 * utils.h (gnu_debuglink_crc32): Don't declare.
9358
9359 2013-01-30 Tom Tromey <tromey@redhat.com>
9360
9361 * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
9362 (read_structure_type, read_enumeration_type): Remove cast.
9363
9364 2013-01-30 Tom Tromey <tromey@redhat.com>
9365
9366 * dwarf2read.c (read_namespace_type): Remove cast.
9367 (read_typedef): Likewise.
9368
9369 2013-01-29 Tom Tromey <tromey@redhat.com>
9370
9371 * dwarf2read.c (free_dwo_file): Remove assert.
9372
9373 2013-01-29 Tom Tromey <tromey@redhat.com>
9374
9375 * value.c (deprecated_set_value_modifiable): Remove.
9376 * value.h (deprecated_set_value_modifiable): Remove.
9377
9378 2013-01-28 Doug Evans <dje@google.com>
9379
9380 * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
9381 to addresses from dwo files.
9382
9383 2013-01-25 Siva Chandra Reddy <sivachandra@google.com>
9384
9385 * valops.c (find_overload_match): Remove unused argument 'lax'.
9386 * value.h: Remove unused argument 'lax' from the declaration of
9387 find_overload_match.
9388 * eval.c (value_subexp_standard): Do not pass a 'lax' argument
9389 to find_overload_match.
9390 * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
9391 argument to find_overload_match.
9392
9393 2013-01-25 Tom Tromey <tromey@redhat.com>
9394
9395 * dwarf2read.c (processing_has_namespace_info): Remove.
9396 (struct dwarf2_cu) <processing_has_namespace_info>: New field.
9397 (process_die, read_func_scope, dwarf2_start_symtab)
9398 (new_symbol_full): Update.
9399
9400 2013-01-25 Tom Tromey <tromey@redhat.com>
9401
9402 * cp-namespace.c (cp_set_block_scope): Remove.
9403 * cp-support.h (cp_set_block_scope): Remove.
9404 * dbxread.c: Include block.h.
9405 (cp_set_block_scope): New function.
9406 (process_one_symbol): Update.
9407 * dwarf2read.c (read_func_scope): Use block_set_scope.
9408
9409 2013-01-25 Pedro Alves <palves@redhat.com>
9410
9411 * remote.c (add_current_inferior_and_thread): Tweak comment.
9412
9413 2013-01-25 Tom Tromey <tromey@redhat.com>
9414
9415 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
9416 (cp_add_using_directive): Add 'copy_names' argument.
9417 * cp-support.h (cp_add_using_directive): Update.
9418 (struct using_direct) <import_src, import_dest, alias,
9419 declaration>: Now const.
9420 * dwarf2read.c (read_import_statement): Use obconcat.
9421 Don't copy names passed to cp_add_using_directive.
9422
9423 2013-01-25 Tom Tromey <tromey@redhat.com>
9424
9425 * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
9426
9427 2013-01-25 Pedro Alves <palves@redhat.com>
9428
9429 * remote.c (stop_reply_extract_thread): New.
9430 (add_current_inferior_and_thread): New parameter 'wait_status'.
9431 Handle it.
9432 (remote_start_remote): Pass wait status to
9433 add_current_inferior_and_thread.
9434 (extended_remote_run): Update comment.
9435 (extended_remote_create_inferior_1): Pass wait status to
9436 add_current_inferior_and_thread.
9437
9438 2013-01-25 Andrew Burgess <aburgess@broadcom.com>
9439 Ulrich Weigand <uweigand@de.ibm.com>
9440
9441 * valarith.c (value_vector_widen): New function for replicating a
9442 scalar into a vector.
9443 (value_binop): Use value_vector_widen to widen scalar to vector
9444 rather than casting, this better matches gcc C behaviour.
9445 * valops.c (value_casst): Update logic for casting between vector
9446 types, and for casting from scalar to vector, try to match gcc C
9447 behaviour.
9448 * value.h (value_vector_widen): Declare.
9449 * opencl-lang.c (opencl_value_cast): New opencl specific casting
9450 function, handle special case for casting scalar to vector.
9451 (opencl_relop): Use opencl_value_cast.
9452 (evaluate_subexp_opencl): Use opencl_value_cast instead of
9453 value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
9454 in order to use opencl_value_cast.
9455
9456 2013-01-25 Yao Qi <yao@codesourcery.com>
9457
9458 * event-loop.c: Include "queue.h".
9459 (gdb_event_p): New typedef.
9460 (DECLARE_QUEUE_P): Use.
9461 (DEFINE_QUEUE_P): Use.
9462 (async_queue_event): Remove.
9463 (gdb_event_xfree): New.
9464 (initialize_event_loop): New.
9465 (process_event): Use QUEUE macros.
9466 (event_queue): Remove.
9467 (gdb_wait_for_event): Caller update.
9468 (check_async_event_handlers): Likewise.
9469 (poll_timers): Likewise.
9470 * event-loop.h (initialize_event_loop): Declare.
9471 * event-loop.c (gdb_event_xfree): New.
9472 * top.c (gdb_init): Call initialize_event_loop.
9473
9474 2013-01-25 Yao Qi <yao@codesourcery.com>
9475
9476 * event-loop.c (async_queue_event): Remove one parameter
9477 'position'. Remove code handling 'position' == TAIL.
9478 (gdb_wait_for_event): Caller update.
9479 (check_async_event_handlers): Caller update.
9480 (poll_timers): Caller update.
9481 * event-loop.h (enum queue_position): Remove.
9482
9483 2013-01-25 Maxim Kuvyrkov <maxim@kugelworks.com>
9484
9485 * MAINTAINERS: Update my email.
9486
9487 2013-01-25 Yao Qi <yao@codesourcery.com>
9488
9489 * main.c (print_gdb_help): Remove "--epoch" from the help
9490 message.
9491
9492 2013-01-24 Ulrich Weigand  <uweigand@de.ibm.com>
9493
9494 * symtab.c (skip_prologue_using_sal): Consider a file
9495 change the same as an increased line number
9496
9497 2013-01-24 Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
9498
9499 * MAINTAINERS (Write After Approval): Add myself to the list.
9500
9501 2013-01-24 Tom Tromey <tromey@redhat.com>
9502
9503 * ada-lang.h (ada_decode_symbol): Make return type const.
9504 * ada-lang.c (ada_decode_symbol): Likewise.
9505
9506 2013-01-23 Doug Evans <dje@google.com>
9507
9508 * linespec.c (find_linespec_symbols): Make static.
9509
9510 2013-01-23 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
9511
9512 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
9513 type on float conversion for complex type.
9514
9515 2013-01-23 Siva Chandra Reddy <sivachandra@google.com>
9516
9517 Add a new class gdb.Architecture which exposes GDB's
9518 internal representation of architecture via GDB Python API.
9519 * Makefile.in: Add entries corresponding to the new file
9520 python/py-arch.c.
9521 * NEWS (Python Scripting): Add entries for the new class
9522 gdb.Architecture and the new method gdb.Frame.architecture.
9523 * python/py-arch.c: Implement gdb.Architecture class.
9524 * python/py-frame.c (frapy_arch): Implement the method
9525 gdb.Frame.architecture().
9526 (frame_object_methods): Add 'architecture' to the method table.
9527 * python/python-internal.h: Add declarations of new utility
9528 functions.
9529 * python/python.c (_initialize_python): Initialize
9530 gdb.Architecture class.
9531
9532 2013-01-23 Doug Evans <dje@google.com>
9533
9534 Work around binutils/15021.
9535 * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
9536 type_unit_group out of union s. All uses updated.
9537 (read_index_from_section): Watch for index version 8.
9538 (follow_die_sig): If using .gdb_index version <= 7, record the TU as
9539 an imported symtab.
9540 (write_psymtabs_to_index): Increment version number to 8.
9541
9542 2013-01-22 Pedro Alves <palves@redhat.com>
9543
9544 * annotate.c (breakpoint_changed): Skip if breakpoint is not
9545 user-visible.
9546
9547 2013-01-22 Pedro Alves <palves@redhat.com>
9548
9549 * annotate.c (annotate_breakpoints_changed): Rename to ...
9550 (annotate_breakpoints_invalid): ... this. Make static.
9551 (breakpoint_changed): Adjust.
9552 (_initialize_annotate): Always install the observers. Install a
9553 "breakpoint_created" observer.
9554 * annotate.h (annotate_breakpoints_changed): Delete declaration.
9555 * breakpoint.c (set_breakpoint_condition)
9556 (breakpoint_set_commands, do_map_commands_command)
9557 (init_raw_breakpoint, clear_command, set_ignore_count)
9558 (enable_breakpoint_disp): No longer call
9559 annotate_breakpoints_changed.
9560
9561 2013-01-22 Pedro Alves <palves@redhat.com>
9562
9563 * annotate.c: Include "inferior.h".
9564 (frames_invalid_emitted)
9565 (breakpoints_invalid_emitted): New globals.
9566 (async_background_execution_p): New function.
9567 (annotate_breakpoints_changed, annotate_frames_invalid): Skip
9568 emitting the annotation if it has already been emitted.
9569 (annotate_display_prompt): New function.
9570 * annotate.h (annotate_display_prompt): New declaration.
9571 * event-top.c: Include annotate.h.
9572 (display_gdb_prompt): Call annotate_display_prompt.
9573
9574 2013-01-22 Pedro Alves <palves@redhat.com>
9575
9576 * annotate.c (ignore_count_changed): Delete.
9577 (annotate_breakpoints_changed): Don't clear ignore_count_changed.
9578 (annotate_ignore_count_change): Delete.
9579 (annotate_stopped): Don't emit a delayed breakpoints-changed
9580 annotation.
9581 * annotate.h (annotate_ignore_count_change): Delete.
9582 * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
9583 annotate_ignore_count_change.
9584
9585 2013-01-22 Tom Tromey <tromey@redhat.com>
9586
9587 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
9588 require_rvalue for a register location.
9589
9590 2013-01-21 Marc Khouzam <marc.khouzam@ericsson.com>
9591
9592 * breakpoint.c (print_one_breakpoint_location): Add MI
9593 field 'thread-groups' when printing a breakpoint.
9594 (output_thread_groups): New function.
9595
9596 2013-01-21 Siva Chandra Reddy <sivachandra@google.com>
9597
9598 * python/lib/gdb/commands/explore.py
9599 (CompoundExplorer.explore_expr): Correct the name of a method
9600 being invoked.
9601 (ExploreTypeCommand.invoke): Add a missing 'return'.
9602
9603 2013-01-21 Tom Tromey <tromey@redhat.com>
9604
9605 * gdb_obstack.h (obconcat): Move declaration here, from...
9606 * symfile.h (obconcat): ... here.
9607 * gdb_obstack.c: New file.
9608 (obconcat): Move from...
9609 * symfile.c (obconcat): ... here.
9610 * Makefile.in (SFILES): Add gdb_obstack.c.
9611 (COMMON_OBS): Add gdb_obstack.o.
9612
9613 2013-01-21 Tom Tromey <tromey@redhat.com>
9614
9615 * symfile.h (obsavestring): Don't declare.
9616 * symfile.c (obsavestring): Remove.
9617 * ada-exp.y: Use obstack_copy0, not obsavestring.
9618 * ada-lang.c: Use obstack_copy0, not obsavestring.
9619 * coffread.c: Use obstack_copy0, not obsavestring.
9620 * cp-namespace.c: Use obstack_copy0, not obsavestring.
9621 * dbxread.c: Use obstack_copy0, not obsavestring.
9622 * dwarf2read.c: Use obstack_copy0, not obsavestring.
9623 * jit.c: Use obstack_copy0, not obsavestring.
9624 * mdebugread.c: Use obstack_copy0, not obsavestring.
9625 * psymtab.c: Use obstack_copy0, not obsavestring.
9626 * stabsread.c: Use obstack_copy0, not obsavestring.
9627 * xcoffread.c: Use obstack_copy0, not obsavestring.
9628
9629 2013-01-21 Tom Tromey <tromey@redhat.com>
9630
9631 * dwarf2read.c (fixup_go_packaging): Save package name
9632 on objfile obstack.
9633 * gdbtypes.c (init_type): Don't copy name.
9634
9635 2013-01-21 Tom Tromey <tromey@redhat.com>
9636
9637 * dwarf2read.c (struct partial_die_info) <name, scope>: Now
9638 const.
9639 (struct attribute) <u.str>: Now const.
9640 (struct fnfieldlist) <name>: Now const.
9641 (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
9642 (partial_die_parent_scope): Make return type const.
9643 (partial_die_full_name, add_partial_symbol): Update.
9644 (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
9645 'name' const.
9646 (find_file_and_directory): Make 'name' and 'comp_dir' const.
9647 (read_file_scope, read_func_scope, dwarf2_add_field)
9648 (dwarf2_add_member_fn, read_structure_type)
9649 (process_enumeration_scope, read_array_type, read_module_type)
9650 (read_base_type, read_subrange_type): Update.
9651 (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
9652 (new_symbol_full, guess_full_die_structure_name): Update.
9653 (dwarf2_canonicalize_name): Return const type. Make 'name' const.
9654 (dwarf2_name): Return const type.
9655 (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
9656 const.
9657
9658 2013-01-21 Tom Tromey <tromey@redhat.com>
9659
9660 * gdbtypes.c (init_type): Make 'name' const.
9661 * gdbtypes.h (init_type): Update.
9662
9663 2013-01-21 Tom Tromey <tromey@redhat.com>
9664
9665 * buildsym.c (patch_subfile_names): Use set_last_source_file.
9666 (start_symtab): Make 'name' and 'dirname' const. Use
9667 set_last_source_file.
9668 (restart_symtab, reset_symtab_globals): Use set_last_source_file.
9669 (last_source_file): Define. Now static.
9670 (set_last_source_file, get_last_source_file): New functions.
9671 * buildsym.h (last_source_file): Don't declare.
9672 (start_symtab): Update.
9673 (set_last_source_file, get_last_source_file): Declare.
9674 * coffread.c (complete_symtab): Use set_last_source_file.
9675 (coff_end_symtab): Likewise.
9676 (coff_symtab_read): Use set_last_source_file, get_last_source_file.
9677 * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
9678 set_last_source_file.
9679 (process_one_symbol): Use get_last_source_file.
9680 * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
9681 (psymtab_to_symtab_1): Use get_last_source_file.
9682 * xcoffread.c (process_linenos): Use get_last_source_file.
9683 (complete_symtab): Use set_last_source_file.
9684 (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
9685 (scan_xcoff_symtab): Use set_last_source_file.
9686
9687 2013-01-21 Tom Tromey <tromey@redhat.com>
9688
9689 * symtab.c (struct demangled_name_entry) <mangled>: Now const.
9690 (symbol_set_names): Remove casts. Handle field const-ness.
9691
9692 2013-01-21 Tom Tromey <tromey@redhat.com>
9693
9694 * dwarf2read.c (new_symbol_full): Remove cast.
9695 * symtab.c (symbol_set_demangled_name): Make 'name' const.
9696 * symtab.h (symbol_set_demangled_name): Update.
9697
9698 2013-01-21 Tom Tromey <tromey@redhat.com>
9699
9700 * main.c (captured_main): Call bfd_init.
9701
9702 2013-01-21 Tom Tromey <tromey@redhat.com>
9703
9704 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
9705 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
9706 * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
9707 * NEWS: Update.
9708
9709 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
9710
9711 * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
9712
9713 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
9714
9715 Fix gdb.fortran/common-block.exp crash in PIE mode.
9716 * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
9717 LOC_COMMON_BLOCK.
9718 * f-valprint.c (info_common_command_for_block): Expect
9719 LOC_COMMON_BLOCK in gdb_assert.
9720 * symtab.h (struct general_symbol_info): Update comment for the
9721 common_block member.
9722 (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
9723 (enum address_class): New member LOC_COMMON_BLOCK.
9724
9725 2013-01-18 David Blaikie <dblaikie@gmail.com>
9726
9727 * MAINTAINERS (Write After Approval): Add "David Blaikie".
9728
9729 2013-01-18 Tom Tromey <tromey@redhat.com>
9730
9731 PR c++/14999:
9732 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
9733 Call require_rvalue.
9734
9735 2013-01-18 Yao Qi <yao@codesourcery.com>
9736
9737 * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
9738 (dbx_read_symtab): New declaration.
9739 (dbx_psymtab_to_symtab): Delete.
9740 (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
9741 Rename parameter PST to SELF. Exchanged two parameters.
9742 (start_psymtab): Caller update.
9743 * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
9744 (dwarf2_read_symtab): New declaration.
9745 (dwarf2_psymtab_to_symtab): Delete.
9746 (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
9747 Rename parameter PST to SELF. Exchanged two parameters.
9748 (create_partial_symtab): Caller update.
9749 * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
9750 (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
9751 Rename parameter PST to SELF. Exchanged two parameters.
9752 (parse_partial_symbols, new_psymtab): Caller update.
9753 * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
9754 two parameters.
9755 * psymtab.c (psymtab_to_symtab): Caller update.
9756 * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
9757 (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
9758 Rename parameter PST to SELF. Exchanged two parameters.
9759 (xcoff_start_psymtab): Caller update.
9760
9761 2013-01-18 Yao Qi <yao@codesourcery.com>
9762
9763 * infrun.c (proceed): Rename local variable 'oneproc' to
9764 'force_step'.
9765
9766 2013-01-17 Doug Evans <dje@google.com>
9767
9768 * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
9769 (dw2_build_type_unit_groups): Delete. All uses updated.
9770
9771 * symtab.h (struct symbol_search): Add comment.
9772
9773 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
9774
9775 * symtab.c (compare_filenames_for_search): New comment for
9776 HAS_DRIVE_SPEC.
9777
9778 2013-01-17 Tom Tromey <tromey@redhat.com>
9779
9780 * cp-abi.c (cp_abi_completer): Fix typo in assignment.
9781
9782 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
9783
9784 * symtab.c (iterate_over_some_symtabs): New variable cleanups,
9785 initialize it by existing make_cleanup. Call new do_cleanups.
9786
9787 2013-01-17 Tom Tromey <tromey@redhat.com>
9788
9789 * cp-abi.c (cp_abi_completer): New function.
9790 (_initialize_cp_abi): Set completer for "set cp-abi".
9791
9792 2013-01-17 Tom Tromey <tromey@redhat.com>
9793
9794 * mem-break.c: Remove obsolete comment.
9795 * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
9796
9797 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
9798
9799 * jit.c (jit_reader_load_command): Interpret the jit reader name
9800 as an absolute path if it begins with a forward slash.
9801
9802 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
9803
9804 PR gdb/14550
9805
9806 * jit.c (finalize_symtab): Ensure that only the global block has a
9807 NULL superblock.
9808
9809 2013-01-17 Pedro Alves <palves@redhat.com>
9810
9811 * acinclude.m4: Include ../config/plugins.m4,
9812 ../config/largefile.m4 and ../config/lead-dot.m4. Add comments.
9813 * Makefile.in (aclocal_m4_deps): Update.
9814 * aclocal.m4: Renegerate.
9815
9816 2013-01-16 Doug Evans <dje@google.com>
9817
9818 * contrib/cc-with-tweaks.sh: Add references to Fission docs.
9819
9820 2013-01-16 Pedro Alves <palves@redhat.com>
9821 Tom Tromey <tromey@redhat.com>
9822
9823 PR cli/7221:
9824 * NEWS: Add "catch signal".
9825 * breakpoint.c (base_breakpoint_ops): No longer static.
9826 (bpstat_explains_signal): New function.
9827 (init_catchpoint): No longer static.
9828 (base_breakpoint_explains_signal): New function.
9829 (base_breakpoint_ops): Initialize new field.
9830 * breakpoint.h (enum bpstat_signal_value): New.
9831 (struct breakpoint_ops) <explains_signal>: New field.
9832 (bpstat_explains_signal): Remove macro, declare as function.
9833 (base_breakpoint_ops, init_catchpoint): Declare.
9834 * break-catch-sig.c: New file.
9835 * inferior.h (signal_catch_update): Declare.
9836 * infrun.c (signal_catch): New global.
9837 (handle_syscall_event): Update for change to
9838 bpstat_explains_signal.
9839 (handle_inferior_event): Likewise. Always handle random signals
9840 via bpstats.
9841 (signal_cache_update): Check signal_catch.
9842 (signal_catch_update): New function.
9843 (_initialize_infrun): Initialize signal_catch.
9844 * Makefile.in (SFILES): Add break-catch-sig.c.
9845 (COMMON_OBS): Add break-catch-sig.o.
9846
9847 2013-01-16 Tom Tromey <tromey@redhat.com>
9848
9849 * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
9850 (print_one_catch_solib, print_one_catch_syscall)
9851 (print_one_catch_exec, print_one_exception_catchpoint): Emit
9852 "catch-type".
9853
9854 2013-01-16 Yao Qi <yao@codesourcery.com>
9855
9856 * printcmd.c (current_display_number): Make it static.
9857
9858 2013-01-16 Yao Qi <yao@codesourcery.com>
9859
9860 * infcmd.c (step_once): Don't check '!single_inst' as it was
9861 checked before.
9862
9863 2013-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9864
9865 * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
9866
9867 2013-01-14 Tom Tromey <tromey@redhat.com>
9868
9869 * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
9870 set command.
9871 * command.h (add_setshow_string_noescape_cmd): Update.
9872 * corefile.c (set_gnutarget_command): Remove trailing whitespace.
9873 (complete_set_gnutarget): New function.
9874 (_initialize_core): Set the "set gnutarget" completer.
9875
9876 2013-01-14 Tom Tromey <tromey@redhat.com>
9877
9878 PR symtab/14442:
9879 * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
9880 (c_type_print_modifier): Likewise.
9881 * dwarf2read.c (read_tag_restrict_type): New function.
9882 (read_type_die_1): Handle DW_TAG_restrict_type.
9883 * gdbtypes.c (make_restrict_type): New function.
9884 (recursive_dump_type): Handle TYPE_RESTRICT.
9885 * gdbtypes.h (enum type_flag_values): Renumber.
9886 (enum type_instance_flag_value): Add
9887 TYPE_INSTANCE_FLAG_RESTRICT.
9888 (TYPE_RESTRICT): New macro.
9889 (make_restrict_type): Declare.
9890
9891 2013-01-14 Tom Tromey <tromey@redhat.com>
9892
9893 PR symtab/14931:
9894 * psymtab.c (struct psymtab_state): New.
9895 (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
9896 functions.
9897 * psympriv.h (make_cleanup_discard_psymtabs): Declare.
9898 * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
9899
9900 2013-01-14 Richard Sharman <richard_sharman@mitel.com>
9901 Pedro Alves <palves@redhat.com>
9902
9903 PR remote/14786
9904
9905 * remote.c (remote_threads_info): Make a copy of the reply from
9906 qfThreadInfo and use that instead of rs->buf.
9907
9908 2013-01-14 Yao Qi <yao@codesourcery.com>
9909
9910 * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
9911 (dbx_psymtab_to_symtab): Likewise.
9912 * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
9913 * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
9914 * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
9915
9916 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
9917
9918 * parse.c (parse_exp_in_context): New variable inner_chain. Call
9919 make_cleanup_restore_current_language. Call set_language. Move
9920 OLD_CHAIN and INNER_CHAIN cleanups.
9921 * utils.c (do_restore_current_language)
9922 (make_cleanup_restore_current_language): New functions.
9923 * utils.h (make_cleanup_restore_current_language): New declaration.
9924
9925 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
9926
9927 * source.c (symtab_to_fullname): Apply rewrite_source_path also for
9928 non-existing files.
9929
9930 * source.c (symtab_to_fullname): Do not prepend DIRNAME for
9931 non-existing files if FILENAME is already absolute.
9932
9933 2013-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9934
9935 * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
9936 fputs_filtered. Append trailing newline.
9937
9938 2013-01-11 Yao Qi <yao@codesourcery.com>
9939 Stan Shebs <stan@codesourcery.com>
9940
9941 * psymtab.c (init_psymbol_list): Clarify the comment.
9942
9943 2013-01-11 Yao Qi <yao@codesourcery.com>
9944
9945 * breakpoint.c (print_one_breakpoint_location): Remove dead code.
9946 (update_dprintf_command_list): Assert that 'printf_line' is
9947 non-null. Remove condition check.
9948
9949 2013-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9950
9951 Code cleanup.
9952 * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
9953 type const char *.
9954 * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
9955 const char *.
9956 * tui/tui-source.h (tui_source_is_displayed): Likewise.
9957
9958 2013-01-09 Anthony Green <green@moxielogic.com>
9959
9960 * cp-abi.c (cplus_print_vtable): Don't return value from void
9961 function.
9962 * ada-lang.c (re_set_catch_assert): Ditto.
9963
9964 2013-01-09 Doug Evans <dje@google.com>
9965
9966 * symfile.h (quick_symbol_functions): Delete member
9967 pre_expand_symtabs_matching. All uses removed.
9968 * dwarf2read.c (dw2_lookup_symbol): Implement.
9969 (dw2_do_expand_symtabs_matching): Delete.
9970 (dw2_pre_expand_symtabs_matching): Delete.
9971 (struct dw2_symtab_iterator): New type.
9972 (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
9973 (dw2_expand_symtabs_for_function): Rewrite.
9974 (dwarf2_gdb_index_functions): Update.
9975 * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
9976 (psym_functions): Update.
9977
9978 2013-01-09 Tom Tromey <tromey@redhat.com>
9979
9980 * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
9981 * configure: Rebuild.
9982 * configure.ac: Add somread.o to the build if BFD has SOM
9983 support.
9984 * somread.c: Include som/aout.h, not syms.h.
9985 (som_symtab_read): Use som_external_symbol_dictionary_record.
9986 Unpack records manually.
9987 (_initialize_somread): Declare.
9988
9989 2012-01-08 Mike Frysinger <vapier@gentoo.org>
9990
9991 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
9992 Cast return_address to 64bits.
9993
9994 2013-01-08 Hui Zhu <hui_zhu@mentor.com>
9995
9996 * printcmd.c: Remove define of function output_command.
9997 * tracepoint.c: Remove extern of function output_command.
9998 * valprint.h: (output_command): New extern.
9999
10000 2013-01-07 Tom Tromey <tromey@redhat.com>
10001
10002 * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
10003 Remove.
10004 (objc_language_defn): Use c_printchar, c_printstr,
10005 c_emit_char.
10006
10007 2013-01-07 Tom Tromey <tromey@redhat.com>
10008
10009 PR cli/7719:
10010 * NEWS: Update.
10011 * ada-valprint.c (printstr, print_field_values): Remove
10012 "inspect_it" code.
10013 * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
10014 code.
10015 * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
10016 code.
10017 * m2-lang.c (m2_printstr): Remove "inspect_it" code.
10018 * main.c (captured_main): Remove "epoch" argument.
10019 * objc-lang.c (objc_printstr): Remove "inspect_it" code.
10020 * p-lang.c (pascal_printstr): Remove "inspect_it" code.
10021 * p-valprint.c (pascal_object_print_value_fields): Remove
10022 "inspect_it" code.
10023 * printcmd.c (print_command_1): Remove 'inspect' argument.
10024 (print_command, call_command): Update.
10025 (inspect_command): Remove.
10026 (_initialize_printcmd): Make "inspect" an alias for "print".
10027 * top.c (epoch_interface): Remove.
10028 * top.h (epoch_interface): Remove.
10029 * valprint.c (user_print_options): Update.
10030 (print_converted_chars_to_obstack): Remove "inspect_it" code.
10031 * valprint.h (struct value_print_options) <inspect_it>: Remove
10032 field.
10033
10034 2013-01-04 Tom Tromey <tromey@redhat.com>
10035
10036 * valprint.h (read_string): Add 'extern'.
10037
10038 2013-01-07 Joel Brobecker <brobecker@adacore.com>
10039
10040 * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
10041 used to decide whether to define darwin_read_dyld_info or not.
10042
10043 2013-01-03 Pierre Muller <muller@sourceware.org>
10044
10045 * main.c (relocate_gdb_directory): Avoid calling stat function
10046 if DIR is empty.
10047
10048 2013-01-03 Yao Qi <yao@codesourcery.com>
10049
10050 * psymtab.c (fixup_psymbol_section): Update declaration.
10051 (fixup_psymbol_section): Remove code returning value.
10052
10053 2013-01-03 Yao Qi <yao@codesourcery.com>
10054
10055 * symtab.h: Remove some out of date comments.
10056 (enum exception_event_kind): Move it ...
10057 * breakpoint.c: ... here.
10058
10059 2013-01-02 Iain Sandoe <developer@sandoe-acoustics.co.uk>
10060
10061 PR gdb/14405
10062 * darwin-nat.c (darwin_read_dyld_info): Only build if
10063 TASK_DYLD_INFO_COUNT is defined.
10064 (darwin_xfer_partial): Call darwin_read_dyld_info only if
10065 TASK_DYLD_INFO_COUNT is defined.
10066
10067 2013-01-02 Tom Tromey <tromey@redhat.com>
10068
10069 * symfile.h (struct ecoff_debug_hack): Remove.
10070 * objfiles.c: Don't include mdebugread.h.
10071
10072 2013-01-02 Tom Tromey <tromey@redhat.com>
10073
10074 * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
10075 * configure.ac: Check for Mach-O support in BFD. Update
10076 CONFIG_OBS.
10077 * configure: Rebuild.
10078
10079 2013-01-02 Tom Tromey <tromey@redhat.com>
10080
10081 * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
10082 * configure.ac: Use GDB_AC_CHECK_BFD.
10083 * configure: Rebuild.
10084
10085 2013-01-01 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
10086
10087 * MAINTAINERS: Update my email.
10088
10089 2013-01-01 Joel Brobecker <brobecker@adacore.com>
10090
10091 * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
10092
10093 2013-01-01 Joel Brobecker <brobecker@adacore.com>
10094
10095 * rs6000-nat.c (bss_data_overlap): New function.
10096 (vmap_symtab): Use it to adjust the .bss section's offset.
10097
10098 2013-01-01 Joel Brobecker <brobecker@adacore.com>
10099
10100 Update year range in copyright notice of all files.
10101
10102 2013-01-01, 13 Joel Brobecker <brobecker@adacore.com>
10103
10104 * top.c (print_gdb_version): Update copyright year.
10105
10106 For older changes see ChangeLog-2012.
10107 \f
10108 Local Variables:
10109 mode: change-log
10110 left-margin: 8
10111 fill-column: 74
10112 version-control: never
10113 coding: utf-8
10114 End:
This page took 0.238969 seconds and 4 git commands to generate.