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