Fix PR16543
[binutils-gdb.git] / gdb / ChangeLog
1 2014-02-09 Doug Evans <xdje42@gmail.com>
2
3 Revert this patch (which I approved, mea culpa).
4
5 2014-02-08 Mark Kettenis <kettenis@gnu.org>
6
7 * Makefile.in (all-lib): Remove.
8 ($(LIBGNU) $(GNULIB_H)): Replace with gits of remove all-lib target.
9
10 2014-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
11
12 Fix Python stack corruption.
13 * python/py-linetable.c (ltpy_get_pcs_for_line, ltpy_has_line): Use
14 gdb_py_longest.
15
16 2014-02-08 Mark Kettenis <kettenis@gnu.org>
17
18 * Makefile.in (all-lib): Remove.
19 ($(LIBGNU) $(GNULIB_H)): Replace with gits of remove all-lib target.
20
21 2014-02-07 Doug Evans <dje@google.com>
22
23 * extension-priv.h (extension_language_script_ops): Add comment.
24 (extension_language_ops): Add comment.
25 (active_ext_lang_state): Fix typo in comment.
26
27 2014-02-07 Pedro Alves <palves@redhat.com>
28
29 * infrun.c (handle_signal_stop) <signal arrives while stepping
30 over a breakpoint>: Switch back to the stepping thread.
31
32 2014-02-07 Yao Qi <yao@codesourcery.com>
33
34 * target.c (target_xfer_partial): Return zero if LEN is zero.
35
36 2014-02-07 Yao Qi <yao@codesourcery.com>
37
38 * auxv.c (procfs_xfer_auxv): Replace -1 with TARGET_XFER_E_IO.
39 (ld_so_xfer_auxv): Likewise.
40 * bfd-target.c (target_bfd_xfer_partial): Likewise.
41 * bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
42 * corelow.c (core_xfer_partial): Likewise.
43 * ctf.c (ctf_xfer_partial): Likewise.
44 * darwin-nat.c (darwin_read_dyld_info): Likewise.
45 (darwin_xfer_partial): Likewise.
46 * exec.c (exec_xfer_partial): Likewise.
47 * gnu-nat.c (gnu_xfer_partial): Likewise.
48 * ia64-hpux-nat.c (ia64_hpux_xfer_uregs): Likewise.
49 * inf-ptrace.c (inf_ptrace_xfer_partial): Likewise.
50 * inf-ttrace.c (inf_ttrace_xfer_partial): Likewise.
51 * linux-nat.c (linux_xfer_siginfo): Likewise.
52 (linux_proc_xfer_spu): Likewise.
53 * procfs.c (procfs_xfer_partial): Likewise.
54 * record-full.c (record_full_xfer_partial): Likewise.
55 (record_full_core_xfer_partial): Likewise.
56 * remote-sim.c (gdbsim_xfer_partial): Likewise.
57 * remote.c (remote_write_qxfer): Likewise.
58 (remote_write_qxfer, remote_read_qxfer): Likewise.
59 (remote_xfer_partial): Likewise.
60 * rs6000-nat.c (rs6000_xfer_partial): Likewise.
61 (rs6000_xfer_shared_libraries): Likewise.
62 * sparc-nat.c (sparc_xfer_wcookie): Likewise.
63 * spu-linux-nat.c (spu_proc_xfer_spu): Likewise.
64 (spu_xfer_partial): Likewise.
65 * target.c (memory_xfer_partial_1): Likewise.
66 * tracepoint.c (tfile_xfer_partial): Likewise.
67 * windows-nat.c (windows_xfer_shared_libraries): Likewise.
68 (windows_xfer_partial): Likewise.
69
70 2014-02-07 Yao Qi <yao@codesourcery.com>
71
72 * gdbarch.sh (core_xfer_shared_libraries): Returns ULONGEST. Add
73 comments.
74 (core_xfer_shared_libraries_aix): Likewise.
75 * gdbarch.c, gdbarch.h: Regenerated.
76 * i386-cygwin-tdep.c (windows_core_xfer_shared_libraries): Return
77 ULONGEST. Change 'len_avail' type to ULONGEST.
78 * rs6000-aix-tdep.c (rs6000_aix_ld_info_to_xml): Likewise.
79 * rs6000-aix-tdep.h (rs6000_aix_ld_info_to_xml): Update
80 declaration.
81 (rs6000_aix_core_xfer_shared_libraries_aix): Return ULONGEST.
82
83 2014-02-07 Yao Qi <yao@codesourcery.com>
84
85 * corefile.c (memory_error): Get 'exception' from ERR and pass
86 'exception' to throw_error.
87
88 2014-02-06 Doug Evans <xdje42@gmail.com>
89
90 * configure.ac (libpython checking): Remove all but python.o from
91 CONFIG_OBS. Remove all but python.c from CONFIG_SRCS.
92 * configure: Regenerate.
93
94 * Makefile.in (SFILES): Add extension.c.
95 (HFILES_NO_SRCDIR): Add extension.h, extension-priv.h
96 (COMMON_OBS): Add extension.o.
97 * extension.h: New file.
98 * extension-priv.h: New file.
99 * extension.c: New file.
100
101 * python/python-internal.h: #include "extension.h".
102 (gdbpy_auto_load_enabled): Declare.
103 (gdbpy_apply_val_pretty_printer): Declare.
104 (gdbpy_apply_frame_filter): Declare.
105 (gdbpy_preserve_values): Declare.
106 (gdbpy_breakpoint_cond_says_stop): Declare.
107 (gdbpy_breakpoint_has_cond): Declare.
108 (void source_python_script_for_objfile): Delete.
109 * python/python.c: #include "extension-priv.h".
110 Delete inclusion of "observer.h".
111 (extension_language_python): Moved here and renamed from
112 script_language_python in py-auto-load.c.
113 Redefined to be of type extension_language_defn.
114 (python_extension_script_ops): New global.
115 (python_extension_ops): New global.
116 (struct python_env): New member previous_active.
117 (restore_python_env): Call restore_active_ext_lang.
118 (ensure_python_env): Call set_active_ext_lang.
119 (gdbpy_clear_quit_flag): Renamed from clear_quit_flag, made static.
120 New arg extlang.
121 (gdbpy_set_quit_flag): Renamed from set_quit_flag, made static.
122 New arg extlang.
123 (gdbpy_check_quit_flag): Renamed from check_quit_flag, made static.
124 New arg extlang.
125 (gdbpy_eval_from_control_command): Renamed from
126 eval_python_from_control_command, made static. New arg extlang.
127 (gdbpy_source_script) Renamed from source_python_script, made static.
128 New arg extlang.
129 (gdbpy_before_prompt_hook): Renamed from before_prompt_hook. Change
130 result to int. New arg extlang.
131 (gdbpy_source_objfile_script): Renamed from
132 source_python_script_for_objfile, made static. New arg extlang.
133 (gdbpy_start_type_printers): Renamed from start_type_printers, made
134 static. New args extlang, extlang_printers. Change result type to
135 "void".
136 (gdbpy_apply_type_printers): Renamed from apply_type_printers, made
137 static. New arg extlang. Rename arg printers to extlang_printers
138 and change type to ext_lang_type_printers *.
139 (gdbpy_free_type_printers): Renamed from free_type_printers, made
140 static. Replace argument arg with extlang, extlang_printers.
141 (!HAVE_PYTHON, eval_python_from_control_command): Delete.
142 (!HAVE_PYTHON, source_python_script): Delete.
143 (!HAVE_PYTHON, gdbpy_should_stop): Delete.
144 (!HAVE_PYTHON, gdbpy_breakpoint_has_py_cond): Delete.
145 (!HAVE_PYTHON, start_type_printers): Delete.
146 (!HAVE_PYTHON, apply_type_printers): Delete.
147 (!HAVE_PYTHON, free_type_printers): Delete.
148 (_initialize_python): Delete call to observer_attach_before_prompt.
149 (finalize_python): Set/restore active extension language.
150 (gdbpy_finish_initialization) Renamed from
151 finish_python_initialization, made static. New arg extlang.
152 (gdbpy_initialized): New function.
153 * python/python.h: #include "extension.h". Delete #include
154 "value.h", "mi/mi-cmds.h".
155 (extension_language_python): Declare.
156 (GDBPY_AUTO_FILE_NAME): Delete.
157 (enum py_bt_status): Moved to extension.h and renamed to
158 ext_lang_bt_status.
159 (enum frame_filter_flags): Moved to extension.h.
160 (enum py_frame_args): Moved to extension.h and renamed to
161 ext_lang_frame_args.
162 (finish_python_initialization): Delete.
163 (eval_python_from_control_command): Delete.
164 (source_python_script): Delete.
165 (apply_val_pretty_printer): Delete.
166 (apply_frame_filter): Delete.
167 (preserve_python_values): Delete.
168 (gdbpy_script_language_defn): Delete.
169 (gdbpy_should_stop, gdbpy_breakpoint_has_py_cond): Delete.
170 (start_type_printers, apply_type_printers, free_type_printers): Delete.
171
172 * auto-load.c: #include "extension.h".
173 (GDB_AUTO_FILE_NAME): Delete.
174 (auto_load_gdb_scripts_enabled): Make public. New arg extlang.
175 (script_language_gdb): Delete, moved to extension.c and renamed to
176 extension_language_gdb.
177 (source_gdb_script_for_objfile): Delete.
178 (auto_load_pspace_info): New member unsupported_script_warning_printed.
179 (loaded_script): Change type of language member to
180 struct extension_language_defn *.
181 (init_loaded_scripts_info): Initialize
182 unsupported_script_warning_printed.
183 (maybe_add_script): Make static. Change type of language arg to
184 struct extension_language_defn *.
185 (clear_section_scripts): Reset unsupported_script_warning_printed.
186 (auto_load_objfile_script_1): Rewrite to use extension language API.
187 (auto_load_objfile_script): Make public. Remove support-compiled-in
188 and auto-load-enabled checks, moved to auto_load_scripts_for_objfile.
189 (source_section_scripts): Rewrite to use extension language API.
190 (load_auto_scripts_for_objfile): Rewrite to use
191 auto_load_scripts_for_objfile.
192 (collect_matching_scripts_data): Change type of language member to
193 struct extension_language_defn *.
194 (auto_load_info_scripts): Change type of language arg to
195 struct extension_language_defn *.
196 (unsupported_script_warning_print): New function.
197 (script_not_found_warning_print): Make static.
198 (_initialize_auto_load): Rewrite construction of scripts-directory
199 help.
200 * auto-load.h (struct objfile): Add forward decl.
201 (struct script_language): Delete.
202 (struct auto_load_pspace_info): Add forward decl.
203 (struct extension_language_defn): Add forward decl.
204 (maybe_add_script): Delete.
205 (auto_load_objfile_script): Declare.
206 (script_not_found_warning_print): Delete.
207 (auto_load_info_scripts): Update prototype.
208 (auto_load_gdb_scripts_enabled): Declare.
209 * python/py-auto-load.c (gdbpy_auto_load_enabled): Renamed from
210 auto_load_python_scripts_enabled and made public.
211 (script_language_python): Delete, moved to python.c.
212 (gdbpy_script_language_defn): Delete.
213 (info_auto_load_python_scripts): Update to use
214 extension_language_python.
215
216 * breakpoint.c (condition_command): Replace call to
217 gdbpy_breakpoint_has_py_cond with call to get_breakpoint_cond_ext_lang.
218 (bpstat_check_breakpoint_conditions): Replace call to gdbpy_should_stop
219 with call to breakpoint_ext_lang_cond_says_stop.
220 * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Renamed
221 from gdbpy_should_stop. Change result type to enum scr_bp_stop.
222 New arg slang. Return SCR_BP_STOP_UNSET if py_bp_object is NULL.
223 (gdbpy_breakpoint_has_cond): Renamed from gdbpy_breakpoint_has_py_cond.
224 New arg slang.
225 (local_setattro): Print name of extension language with existing
226 stop condition.
227
228 * valprint.c (val_print, value_print): Update to call
229 apply_ext_lang_val_pretty_printer.
230 * cp-valprint.c (cp_print_value): Update call to
231 apply_ext_lang_val_pretty_printer.
232 * python/py-prettyprint.c: Remove #ifdef HAVE_PYTHON.
233 (gdbpy_apply_val_pretty_printer): Renamed from
234 apply_val_pretty_printer. New arg extlang.
235 (!HAVE_PYTHON, apply_val_pretty_printer): Delete.
236
237 * cli/cli-cmds.c (source_script_from_stream): Rewrite to use
238 extension language API.
239 * cli/cli-script.c (execute_control_command): Update to call
240 eval_ext_lang_from_control_command.
241
242 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Update to use
243 enum ext_lang_bt_status values. Update call to
244 apply_ext_lang_frame_filter.
245 (mi_cmd_stack_list_locals): Ditto.
246 (mi_cmd_stack_list_args): Ditto.
247 (mi_cmd_stack_list_variables): Ditto.
248 * mi/mi-main.c: Delete #include "python/python-internal.h".
249 Add #include "extension.h".
250 (mi_cmd_list_features): Replace reference to python internal variable
251 gdb_python_initialized with call to ext_lang_initialized_p.
252
253 * stack.c (backtrace_command_1): Update to use enum ext_lang_bt_status.
254 Update to use enum ext_lang_frame_args. Update to call
255 apply_ext_lang_frame_filter.
256 * python/py-framefilter.c (extract_sym): Update to use enum
257 ext_lang_bt_status.
258 (extract_value, py_print_type, py_print_value): Ditto.
259 (py_print_single_arg, enumerate_args, enumerate_locals): Ditto.
260 (py_mi_print_variables, py_print_locals, py_print_args): Ditto.
261 (py_print_frame): Ditto.
262 (gdbpy_apply_frame_filter): Renamed from apply_frame_filter.
263 New arg extlang. Update to use enum ext_lang_bt_status.
264
265 * top.c (gdb_init): Delete #ifdef HAVE_PYTHON call to
266 finish_python_initialization. Replace with call to
267 finish_ext_lang_initialization.
268
269 * typeprint.c (do_free_global_table): Update to call
270 free_ext_lang_type_printers.
271 (create_global_typedef_table): Update to call
272 start_ext_lang_type_printers.
273 (find_global_typedef): Update to call apply_ext_lang_type_printers.
274 * typeprint.h (struct ext_lang_type_printers): Add forward decl.
275 (type_print_options): Change type of global_printers from "void *"
276 to "struct ext_lang_type_printers *".
277
278 * value.c (preserve_values): Update to call preserve_ext_lang_values.
279 * python/py-value.c: Remove #ifdef HAVE_PYTHON.
280 (gdbpy_preserve_values): Renamed from preserve_python_values.
281 New arg extlang.
282 (!HAVE_PYTHON, preserve_python_values): Delete.
283
284 * utils.c (quit_flag): Delete, moved to extension.c.
285 (clear_quit_flag, set_quit_flag, check_quit_flag): Delete, moved to
286 extension.c.
287
288 * eval.c: Delete #include "python/python.h".
289 * main.c: Delete #include "python/python.h".
290
291 * defs.h: Update comment.
292
293 2014-02-06 Joel Brobecker <brobecker@adacore.com>
294
295 GDB 7.7 released.
296
297 2014-02-05 Mark Kettenis <kettenis@gnu.org>
298
299 * c-exp.y (YYPRINT, c_print_token): Only define if YYBISON is
300 defined.
301
302 2014-02-05 Yao Qi <yao@codesourcery.com>
303
304 * remote.c (remote_pass_signals): Remove local 'buf' and use
305 rs->buf.
306 (remote_program_signals): Likewise.
307
308 2014-02-05 Yao Qi <yao@codesourcery.com>
309
310 * ctf.c: Include "inferior.h" and "gdbthread.h".
311 (CTF_PID): A new macro.
312 (ctf_open): Call inferior_appeared and add_thread_silent.
313 (ctf_close): Call exit_inferior_silent and set inferior_ptid.
314 (ctf_thread_alive): New function.
315 (init_ctf_ops): Install ctf_thread_alive to to_thread_alive.
316
317 2014-02-05 Yao Qi <yao@codesourcery.com>
318
319 Revert this patch:
320
321 2013-05-24 Yao Qi <yao@codesourcery.com>
322
323 * tracepoint.c (TFILE_PID): Remove.
324 (tfile_open): Don't add thread and inferior.
325 (tfile_close): Don't set 'inferior_ptid'. Don't call
326 exit_inferior_silent.
327 (tfile_thread_alive): Remove.
328 (init_tfile_ops): Don't set field 'to_thread_alive' of
329 tfile_ops.
330
331 2014-02-04 Christian Eggers <ceggers@gmx.de> (tiny change)
332
333 * remote.c (remote_start_remote): Call remote_check_symbols even
334 if only symbol-file (not file) has been given.
335
336 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
337
338 * gdbarch.sh (skip_entrypoint): New callback.
339 * gdbarch.c, gdbarch.h: Regenerate.
340 * symtab.c (skip_prologue_sal): Call gdbarch_skip_entrypoint.
341 * infrun.c (fill_in_stop_func): Likewise.
342 * ppc-linux-tdep.c: Include "elf/ppc64.h".
343 (ppc_elfv2_elf_make_msymbol_special): New function.
344 (ppc_elfv2_skip_entrypoint): Likewise.
345 (ppc_linux_init_abi): Install them for ELFv2.
346
347 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
348
349 * ppc-sysv-tdep.c (ppc64_aggregate_candidate): New routine.
350 (ppc64_elfv2_abi_homogeneous_aggregate): Likewise.
351 (ppc64_sysv_abi_push_param): Handle ELFv2 homogeneous structs.
352 (ppc64_sysv_abi_return_value): Likewise. Also, handle small
353 structures returned in GPRs.
354
355 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
356
357 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Use correct
358 offset to the stack parameter list for the ELFv2 ABI.
359
360 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
361
362 * ppc-linux-tdep.c (ppc_linux_init_abi): Only call
363 set_gdbarch_convert_from_func_ptr_addr and
364 set_gdbarch_elf_make_msymbol_special for ELFv1.
365 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_param): Only handle
366 function descriptors on ELFv1.
367 (ppc64_sysv_abi_push_dummy_call): Likewise. On ELFv2,
368 set up r12 at function entry.
369
370 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
371
372 * ppc-tdep.h (enum powerpc_elf_abi): New data type.
373 (struct gdbarch_tdep): New member elf_abi.
374
375 * rs6000-tdep.c: Include "elf/ppc64.h".
376 (rs6000_gdbarch_init): Detect ELF ABI version.
377
378 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
379
380 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_freg): Use correct order
381 within a register pair holding a DFP 128-bit value on little-endian.
382 (ppc64_sysv_abi_return_value_base): Likewise.
383 * rs6000-tdep.c (dfp_pseudo_register_read): Likewise.
384 (dfp_pseudo_register_write): Likewise.
385
386 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
387
388 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_freg): Use correct
389 offset on little-endian when passing _Decimal32.
390 (ppc64_sysv_abi_return_value_base): Likewise for return values.
391
392 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
393
394 * rs6000-tdep.c (efpr_pseudo_register_read): Use correct offset
395 of the overlapped FP register within the VSX register on little-
396 endian platforms.
397 (efpr_pseudo_register_write): Likewise.
398
399 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
400
401 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_val): Use correct
402 offset on little-endian when passing small structures.
403
404 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
405
406 * ppc-sysv-tdep.c (get_decimal_float_return_value): Update comment.
407 (struct ppc64_sysv_argpos): New data structure.
408 (ppc64_sysv_abi_push_float): Remove.
409 (ppc64_sysv_abi_push_val): New function.
410 (ppc64_sysv_abi_push_integer): Likewise.
411 (ppc64_sysv_abi_push_freg): Likewise.
412 (ppc64_sysv_abi_push_vreg): Likewise.
413 (ppc64_sysv_abi_push_param): Likewise.
414 (ppc64_sysv_abi_push_dummy_call): Refactor to use those new routines.
415 (ppc64_sysv_abi_return_value_base): New function.
416 (ppc64_sysv_abi_return_value): Refactor to use it.
417
418 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
419
420 * NEWS: Document new target powerpc64le-*-linux*.
421
422 2014-02-04 Mark Kettenis <kettenis@gnu.org>
423
424 * sparc64obsd-tdep.c (sparc64obsd_gregset): New variable.
425 (sparc64obsd_supply_gregset): Handle registers sets used in ELF
426 core dumps.
427 (sparc64obsd_init_abi): Adjust minimum size of the general purpose
428 register set used in ELF core dumps. Add floating-point register set.
429
430 2014-02-03 Kevin Buettner <kevinb@redhat.com>
431
432 * mn10300-tdep.c (mn10300_dwarf2_reg_to_regnum): Rewrite
433 dwarf2_to_gdb[] table using symbolic constants. Adjust
434 penultimate entry from number representing the PC register
435 to symbolic constant representing the MDR register. Add
436 constant for the PC register to the end of the table.
437
438 2014-02-03 Mark Kettenis <kettenis@gnu.org>
439
440 * bsd-kvm.c: Include <sys/param.h>
441
442 2014-02-03 Mark Kettenis <kettenis@gnu.org>
443
444 * sparc64nbsd-nat.c (sparc64nbsd_supply_fpregset): Fix prototype.
445
446 2014-01-31 Joel Brobecker <brobecker@adacore.com>
447
448 * ada-lang.h (clear_ada_sym_cache): Delete.
449
450 2014-01-30 Ulrich Weigand  <uweigand@de.ibm.com>
451
452 * auxv.c (fprint_target_auxv): Handle AT_HWCAP2.
453
454 2014-01-29 Jose E. Marchesi <jose.marchesi@oracle.com>
455
456 * sparc64-linux-tdep.c (sparc64_linux_step_trap): Get PC from
457 the sigreturn register save area only if the syscall is
458 sigreturn.
459
460 2014-01-29 Joel Brobecker <brobecker@adacore.com>
461
462 * valops.c (value_slice): Minor reformatting.
463
464 2014-01-28 Ulrich Weigand  <uweigand@de.ibm.com>
465
466 * ppc64-tdep.c (ppc64_standard_linkage7): Fix typo.
467
468 2014-01-28 Joel Brobecker <brobecker@adacore.com>
469
470 * ada-lang.c (maint_set_ada_cmdlist, maint_show_ada_cmdlist):
471 New static globals.
472 (maint_set_ada_cmd, maint_show_ada_cmd): New functions.
473 (ada_ignore_descriptive_types_p): New static global.
474 (find_parallel_type_by_descriptive_type): Return immediately
475 if ada_ignore_descriptive_types_p is set.
476 (_initialize_ada_language): Register new commands "maintenance
477 set ada", "maintenance show ada", "maintenance set ada
478 ignore-descriptive-types" and "maintenance show ada
479 ignore-descriptive-types".
480 * NEWS: Add entry for new "maint ada set/show
481 ignore-descriptive-types" commands.
482
483 2014-01-27 Markus Metzger <markus.t.metzger@intel.com>
484
485 * record-btrace.c (record_btrace_close): Call btrace_teardown
486 for all threads.
487
488 2014-01-27 Joel Brobecker <brobecker@adacore.com>
489
490 * ada-lang.c: Remove "#ifdef UI_OUT" condition for including
491 "ui-out.h".
492
493 2014-01-27 Joel Brobecker <brobecker@adacore.com>
494
495 * ada-typeprint (type_is_full_subrange_of_target_type):
496 New function.
497 (print_range): Add parameter bounds_prefered_p. If not set,
498 try printing range types using the name of their base type.
499 (print_range_type): Add parameter bounds_prefered_p.
500 Use it in call to print_range.
501 (print_array_type, ada_print_type): Update calls to print_range
502 and print_range_type.
503
504 2014-01-27 Joel Brobecker <brobecker@adacore.com>
505
506 * ada-typeprint.c (print_array_type, print_choices, print_range)
507 (print_range_bound, print_dynamic_range_bound, print_range_type):
508 Remove declaration.
509
510 2014-01-27 Joel Brobecker <brobecker@adacore.com>
511
512 * ada-typeprint.c (print_range): Add missing empty line
513 after local declaration.
514
515 2014-01-27 Joel Brobecker <brobecker@adacore.com>
516
517 * ada-valprint.c (print_optional_low_bound): Get index_type's
518 target type for as long as it is a TYPE_CODE_RANGE.
519
520 2014-01-27 Joel Brobecker <brobecker@adacore.com>
521
522 * procfs.c (procfs_make_note_section): Remove assertion and
523 associated comment.
524
525 2014-01-24 Yao Qi <yao@codesourcery.com>
526
527 * remote.c (remote_read_bytes): Change type of len to ULONGEST.
528 * corelow.c (get_core_siginfo): Likewise.
529
530 2014-01-24 Yao Qi <yao@codesourcery.com>
531
532 * remote.c (remote_write_bytes_aux): Change type of 'len' to
533 ULONGEST. Don't check 'len' is negative.
534 (remote_write_bytes): Change type of 'len' to ULONGEST.
535
536 2014-01-23 Tom Tromey <tromey@redhat.com>
537
538 PR python/16485:
539 * python/lib/gdb/FrameDecorator.py: (FrameVars.fetch_frame_args):
540 Handle exception from frame.block.
541 (FrameVars.fetch_frame_locals): Likewise.
542
543 2014-01-23 Tom Tromey <tromey@redhat.com>
544
545 PR python/16487:
546 * python/py-framefilter.c (py_print_frame): Don't call Py_DECREF
547 on a NULL pointer. Move "goto error" to correct place.
548
549 2014-01-23 Tom Tromey <tromey@redhat.com>
550
551 PR python/16491:
552 * python/py-framefilter.c (apply_frame_filter): Call
553 ensure_python_env after computing gdbarch.
554
555 2014-01-23 Yao Qi <yao@codesourcery.com>
556
557 * target.c (raw_memory_xfer_partial): Change argument type
558 from void * to gdb_byte *.
559 (memory_xfer_partial_1, memory_xfer_partial): Likewise.
560
561 2014-01-22 Doug Evans <dje@google.com>
562
563 New gdbserver option --debug-format=timestamp.
564 * NEWS: Mention it.
565
566 2014-01-22 Andreas Arnez <arnez@vnet.linux.ibm.com>
567
568 * syscalls/s390x-linux.xml: New file.
569 * syscalls/s390-linux.xml: New file.
570 * s390-linux-tdep.c (XML_SYSCALL_FILENAME_S390): New macro.
571 (XML_SYSCALL_FILENAME_S390X): Likewise.
572 (op_svc): New enum value for SVC opcode.
573 (s390_sigtramp_frame_sniffer): Replace literal by 'op_svc'.
574 (s390_linux_get_syscall_number): New function.
575 (s390_gdbarch_init): Register '*get_syscall_number' and the
576 syscall xml file name.
577 * data-directory/Makefile.in (SYSCALLS_FILES): Add
578 "s390-linux.xml" and "s390x-linux.xml".
579 * NEWS: Announce new feature.
580
581 2014-01-22 Baruch Siach <baruch@tkos.co.il>
582
583 * xtensa-tdep.h (xtensa_elf_greg_t): Change type to uint32_t.
584
585 2014-01-22 Pedro Alves <palves@redhat.com>
586
587 * xtensa-config.c: Include defs.h.
588
589 2014-01-22 Joel Brobecker <brobecker@adacore.com>
590
591 * common/common-utils.h: Add "ARI:" comment beside __func__
592 reference.
593
594 2014-01-22 Joel Brobecker <brobecker@adacore.com>
595
596 * common/common-utils.h (FUNCTION_NAME): Expand the macro's
597 documentation a bit.
598
599 2014-01-21 Roland McGrath <mcgrathr@google.com>
600
601 * configure.ac: Call AM_PROG_INSTALL_STRIP.
602 * configure: Regenerate.
603 * aclocal.m4: Regenerate.
604 * Makefile.in (install_sh, INSTALL_STRIP_PROGRAM, STRIP):
605 New substituted variables.
606 (install-strip): New target.
607 (INSTALL_SCRIPT): New substituted variable.
608 (FLAGS_TO_PASS): Add it.
609 (install-only): Use $(INSTALL_SCRIPT) rather than
610 $(INSTALL_PROGRAM) for gcore.
611
612 2014-01-20 Tom Tromey <tromey@redhat.com>
613
614 * cli/cli-decode.h (struct cmd_list_element): Move all bitfields
615 together.
616
617 2014-01-20 Tom Tromey <tromey@redhat.com>
618
619 * cli/cli-decode.c (add_cmd, deprecate_cmd, add_alias_cmd)
620 (add_setshow_cmd_full, delete_cmd, lookup_cmd_1)
621 (deprecated_cmd_warning, complete_on_cmdlist): Update.
622 * cli/cli-decode.h (CMD_DEPRECATED, DEPRECATED_WARN_USER)
623 (MALLOCED_REPLACEMENT, DOC_ALLOCATED): Remove.
624 (struct cmd_list_element) <flags>: Remove.
625 <cmd_deprecated, deprecated_warn_user, malloced_replacement,
626 doc_allocated>: New fields.
627 <hook_in, allow_unknown, abbrev_flag, type, var_type>: Now
628 bitfields.
629 * maint.c (maintenance_do_deprecate): Update.
630 * top.c (execute_command): Update.
631
632 2014-01-20 Baruch Siach <baruch@tkos.co.il>
633
634 * xtensa-linux-nat.c: Include asm/ptrace.h.
635
636 2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
637
638 * Makefile.in (SFILES): Add d-support.c.
639 (COMMON_OBS): Add d-support.o.
640 * d-lang.h (d_parse_symbol): Add comment, now defined in
641 d-support.c.
642 * d-lang.c (parse_call_convention)
643 (parse_attributes, parse_function_types)
644 (parse_function_args, parse_type, parse_identifier)
645 (call_convention_p, d_parse_symbol): Move functions to ...
646 * d-support.c: ... New file.
647
648 2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
649
650 * d-lang.h (d_parse_symbol): Add declaration.
651 * d-lang.c (extract_identifiers)
652 (extract_type_info): Remove functions.
653 (parse_call_convention, parse_attributes)
654 (parse_function_types, parse_function_args)
655 (parse_type, parse_identifier, call_convention_p)
656 (d_parse_symbol): New functions.
657 (d_demangle): Use d_parse_symbol to demangle D symbols.
658
659 2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
660
661 * d-lang.h (struct builtin_d_type): New data type.
662 (builtin_d_type): Add declaration.
663 * d-lang.c (d_language_arch_info, build_d_types)
664 (builtin_d_type): New functions.
665 (enum d_primitive_types): New data type.
666 (d_language_defn): Change c_language_arch_info to
667 d_language_arch_info.
668 (d_type_data): New static variable.
669 (_initialize_d_language): Initialize d_type_data.
670
671 2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
672
673 * d-lang.h (d_main_name): Add declaration.
674 * d-lang.c (d_main_name): New function.
675 * symtab.c (find_main_name): Add call to d_main_name.
676
677 2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
678
679 * d-lang.c (d_language_defn): Change macro_expansion_c to
680 macro_expansion_no.
681
682 2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
683
684 * MAINTAINERS: Add myself as a write-after-approval maintainer.
685
686 2014-01-17 Sergio Durigan Junior <sergiodj@redhat.com>
687
688 * breakpoint.c (insert_bp_location): Add "volatile" keyword to "struct
689 gdb_exception" declaration.
690 * remote.c (getpkt_or_notif_sane): Likewise.
691
692 2014-01-17 Doug Evans <dje@google.com>
693
694 * common/gdb_vecs.c (delim_string_to_char_ptr_vec_append): New
695 function, contents of dirnames_to_char_ptr_vec_append moved here.
696 (delim_string_to_char_ptr_vec): New function.
697 (dirnames_to_char_ptr_vec_append): Rewrite.
698 * common/gdb_vecs.h (delim_string_to_char_ptr_vec): Declare.
699
700 2014-01-17 Doug Evans <dje@google.com>
701
702 * common/common-utils.h (FUNCTION_NAME): Renamed from ASSERT_FUNCTION,
703 and moved here ...
704 * common/gdb_assert.h (ASSERT_FUNCTION): ... from here.
705 #include "common-utils.h".
706 (gdb_assert, gdb_assert_fail, gdb_assert_not_reached): Update.
707 * common/vec.h (VEC_ASSERT_PASS): Update.
708 * darwin-nat.h: Replace #include of gdb_assert.h with common-utils.h.
709 (MACH_CHECK_ERROR): Update.
710
711 2014-01-17 Simon Marchi <simon.marchi@ericsson.com>
712
713 * gdbarch.sh (gdbarch_address_class_name_to_type_flags): Add
714 comments.
715 * gdbarch.h: Regenerate.
716
717 2014-01-16 Tom Tromey <tromey@redhat.com>
718
719 * value.c (struct value) <regnum>: Move earlier.
720
721 2014-01-16 Tom Tromey <tromey@redhat.com>
722
723 * remote.c (extended_remote_create_inferior): Rename from
724 extended_remote_create_inferior_1. Add "ops" argument. Remove
725 old implementation.
726
727 2014-01-16 Pedro Alves <palves@redhat.com>
728
729 * s390-linux-tdep.c (s390_frame_unwind_cache): Swallow
730 NOT_AVAILABLE_ERROR errors while parsing the prologue or reading
731 the backchain.
732
733 2014-01-16 Doug Evans <dje@google.com>
734
735 * dwarf2read.c (open_and_init_dwp_file): Fix typo in comment.
736
737 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
738
739 * btrace.h (btrace_thread_flag): New.
740 (struct btrace_thread_info) <flags>: New.
741 * record-btrace.c (record_btrace_resume_thread)
742 (record_btrace_find_thread_to_move, btrace_step_no_history)
743 (btrace_step_stopped, record_btrace_start_replaying)
744 (record_btrace_step_thread, record_btrace_decr_pc_after_break)
745 (record_btrace_find_resume_thread): New.
746 (record_btrace_resume, record_btrace_wait): Extend.
747 (record_btrace_can_execute_reverse): New.
748 (record_btrace_open): Fail in non-stop mode.
749 (record_btrace_set_replay): Split into this, ...
750 (record_btrace_stop_replaying): ... this, ...
751 (record_btrace_clear_histories): ... and this.
752 (init_record_btrace_ops): Init to_can_execute_reverse.
753 * NEWS: Announce it.
754
755 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
756
757 * target.h (struct target_ops) <to_decr_pc_after_break>: New.
758 (forward_target_decr_pc_after_break)
759 (target_decr_pc_after_break): New.
760 * target.c (forward_target_decr_pc_after_break)
761 (target_decr_pc_after_break): New.
762 * aix-thread.c (aix_thread_wait): Call target_decr_pc_after_break
763 instead of gdbarch_decr_pc_after_break.
764 * darwin-nat.c (cancel_breakpoint): Call target_decr_pc_after_break
765 instead of gdbarch_decr_pc_after_break.
766 * infrun.c (adjust_pc_after_break): Call target_decr_pc_after_break
767 instead of gdbarch_decr_pc_after_break.
768 * linux-nat.c (cancel_breakpoint): Call target_decr_pc_after_break
769 instead of gdbarch_decr_pc_after_break.
770 * linux-thread-db.c (check_event): Call target_decr_pc_after_break
771 instead of gdbarch_decr_pc_after_break.
772 * record-full.c (record_full_wait_1): Call target_decr_pc_after_break
773 instead of gdbarch_decr_pc_after_break.
774
775 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
776
777 * btrace.c: Include regcache.h.
778 (btrace_add_pc): New.
779 (btrace_enable): Call btrace_add_pc.
780 (btrace_is_empty): New.
781 * btrace.h (btrace_is_empty): New.
782 * record-btrace.c (require_btrace, record_btrace_info): Call
783 btrace_is_empty.
784
785 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
786
787 * common/linux-btrace.c (perf_event_read_bts, linux_read_btrace):
788 Support delta reads.
789 (linux_disable_btrace): Change return type.
790 * common/linux-btrace.h (linux_read_btrace): Change parameters
791 and return type to allow error reporting. Update users.
792 (linux_disable_btrace): Change return type. Update users.
793 * common/btrace-common.h (btrace_read_type) <BTRACE_READ_DELTA>:
794 New.
795 (btrace_error): New.
796 (btrace_block) <begin>: Comment on BEGIN == 0.
797 * btrace.c (btrace_compute_ftrace): Start from the end of
798 the current trace.
799 (btrace_stitch_trace, btrace_clear_history): New.
800 (btrace_fetch): Read delta trace, return if replaying.
801 (btrace_clear): Move clear history code to btrace_clear_history.
802 (parse_xml_btrace): Throw an error if parsing failed.
803 * target.h (struct target_ops) <to_read_btrace>: Change parameters
804 and return type to allow error reporting.
805 (target_read_btrace): Change parameters and return type to allow
806 error reporting.
807 * target.c (target_read_btrace): Update.
808 * remote.c (remote_read_btrace): Support delta reads. Pass
809 errors on.
810 * NEWS: Announce it.
811
812 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
813
814 * record.h (record_btrace_frame_unwind)
815 (record_btrace_tailcall_frame_unwind): New declarations.
816 * dwarf2-frame: Include record.h
817 (dwarf2_frame_cfa): Throw an error for btrace frames.
818 * record-btrace.c: Include hashtab.h.
819 (btrace_get_bfun_name): New.
820 (btrace_call_history): Call btrace_get_bfun_name.
821 (struct btrace_frame_cache): New.
822 (bfcache): New.
823 (bfcache_hash, bfcache_eq, bfcache_new): New.
824 (btrace_get_frame_function): New.
825 (record_btrace_frame_unwind_stop_reason): Allow unwinding.
826 (record_btrace_frame_this_id): Compute own id.
827 (record_btrace_frame_prev_register): Provide PC, throw_error
828 for all other registers.
829 (record_btrace_frame_sniffer): Detect btrace frames.
830 (record_btrace_tailcall_frame_sniffer): New.
831 (record_btrace_frame_dealloc_cache): New.
832 (record_btrace_frame_unwind): Add new functions.
833 (record_btrace_tailcall_frame_unwind): New.
834 (_initialize_record_btrace): Allocate cache.
835 * btrace.c (btrace_clear): Call reinit_frame_cache.
836 * NEWS: Announce it.
837
838 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
839
840 * record-btrace.c (record_btrace_set_replay)
841 (record_btrace_goto_begin, record_btrace_goto_end)
842 (record_btrace_goto): New.
843 (init_record_btrace_ops): Initialize them.
844 * NEWS: Announce it.
845
846 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
847
848 * record-btrace.c (record_btrace_find_new_threads)
849 (record_btrace_thread_alive): New.
850 (init_record_btrace_ops): Initialize to_find_new_threads and
851 to_thread_alive.
852
853 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
854
855 * record-btrace.c (record_btrace_resume): New.
856 (record_btrace_wait): New.
857 (init_record_btrace_ops): Initialize to_wait and to_resume.
858
859 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
860
861 * record-btrace.c (record_btrace_xfer_partial)
862 (record_btrace_insert_breakpoint, record_btrace_remove_breakpoint)
863 (record_btrace_allow_memory_access): New.
864 (init_record_btrace_ops): Initialize new methods.
865 * target.c (raw_memory_xfer_partial): Bail out if target reports
866 that this memory is not available.
867
868 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
869
870 * target.h (target_ops) <to_insert_breakpoint>
871 <to_remove_breakpoint>: Add target_ops parameter.
872 (forward_target_insert_breakpoint): New.
873 (forward_target_remove_breakpoint): New.
874 (memory_remove_breakpoint, memory_insert_breakpoint):
875 Add target_ops parameter.
876 * target.c (target_insert_breakpoint): Split into this and ...
877 (forward_target_insert_breakpoint): ... this.
878 (target_remove_breakpoint): Split into this and ...
879 (forward_target_remove_breakpoint): ... this.
880 (debug_to_insert_breakpoint): Add target_ops parameter.
881 Call forward_target_insert_breakpoint.
882 (debug_to_remove_breakpoint): Add target_ops parameter.
883 Call forward_target_remove_breakpoint.
884 (update_current_target): Do not inherit or default to_insert_breakpoint
885 and to_remove_breakpoint.
886 * corelow.c (ignore): Add target_ops parameter.
887 * exec.c (ignore): Add target_ops parameter.
888 * mem-break.c (memory_insert_breakpoint, memory_remove_breakpoint):
889 Add target_ops parameter.
890 * monitor.c (monitor_insert_breakpoint, monitor_remove_breakpoint):
891 Add target_ops parameter.
892 * nto-procfs.c (procfs_insert_breakpoint, procfs_remove_breakpoint):
893 Add target_ops parameter.
894 * record-full.c (record_full_beneath_to_insert_breakpoint)
895 (record_full_beneath_to_remove_breakpoint, tmp_to_insert_breakpoint)
896 (tmp_to_remove_breakpoint, record_full_insert_breakpoint)
897 (record_full_remove_breakpoint, record_full_core_insert_breakpoint)
898 (record_full_core_remove_breakpoint): Add target_ops parameter.
899 Update users.
900 (record_full_beneath_to_insert_breakpoint_ops)
901 (record_full_beneath_to_remove_breakpoint_ops)
902 (tmp_to_insert_breakpoint_ops, tmp_to_remove_breakpoint_ops): New.
903 (record_full_open): Initialize tmp_to_insert_breakpoint_ops,
904 tmp_to_remove_breakpoint_ops,
905 record_full_beneath_to_insert_breakpoint_ops, and
906 record_full_beneath_to_remove_breakpoint_ops.
907 * remote-m32r-sdi.c (m32r_insert_breakpoint)
908 (m32r_remove_breakpoint): Add target_ops parameter.
909 * remote-mips.c (mips_insert_breakpoint, mips_remove_breakpoint):
910 Add target_ops parameter.
911 * remote.c (remote_insert_breakpoint, remote_remove_breakpoint):
912 Add target_ops parameter.
913
914 2014-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
915 Markus Metzger <markus.t.metzger@intel.com>
916
917 * record-btrace.c: Include frame-unwind.h.
918 (record_btrace_frame_unwind_stop_reason)
919 (record_btrace_frame_this_id, record_btrace_frame_prev_register)
920 (record_btrace_frame_sniffer, record_btrace_frame_unwind):
921 New.
922 (init_record_btrace_ops): Install it.
923
924 2014-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
925
926 * frame.c (get_frame_unwind_stop_reason): Unconditionally call
927 get_prev_frame_1.
928
929 2014-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
930
931 * dwarf2-frame.c (dwarf2_frame_cfa): Move UNWIND_UNAVAILABLE check
932 earlier.
933
934 2014-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
935
936 * frame-unwind.c: Include target.h.
937 (frame_unwind_try_unwinder): New function with code from ...
938 (frame_unwind_find_by_frame): ... here. New variable
939 unwinder_from_target, call also target_get_unwinder)
940 (target_get_tailcall_unwinder, and frame_unwind_try_unwinder for it.
941 * target.c (target_get_unwinder, target_get_tailcall_unwinder): New.
942 * target.h (struct target_ops): New fields to_get_unwinder and
943 to_get_tailcall_unwinder.
944 (target_get_unwinder, target_get_tailcall_unwinder): New declarations.
945
946 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
947
948 * record-btrace.c (record_btrace_fetch_registers)
949 (record_btrace_store_registers)
950 (record_btrace_to_prepare_to_store): New.
951 (init_record_btrace_ops): Add the above.
952
953 2014-01-16 Tom Tromey <tromey@redhat.com>
954
955 * windows-nat.c (windows_prepare_to_store): Add 'self' argument.
956 * target.h (struct target_ops) <to_prepare_to_store>: Add
957 argument.
958 (target_prepare_to_store): Add argument.
959 * target.c (debug_to_prepare_to_store): Add argument.
960 (update_current_target): Update.
961 * remote.c (remote_prepare_to_store): Add 'self' argument.
962 * remote-sim.c (gdbsim_prepare_to_store): Add 'self' argument.
963 * remote-mips.c (mips_prepare_to_store): Add 'self' argument.
964 * remote-m32r-sdi.c (m32r_prepare_to_store): Add 'self' argument.
965 * record-full.c (record_full_core_prepare_to_store): Add 'self'
966 argument.
967 * ravenscar-thread.c (ravenscar_prepare_to_store): Add argument.
968 * nto-procfs.c (procfs_prepare_to_store): Add 'self' argument.
969 * monitor.c (monitor_prepare_to_store): Add 'self' argument.
970 * inf-child.c (inf_child_prepare_to_store): Add 'self' argument.
971 * go32-nat.c (go32_prepare_to_store): Add 'self' argument.
972
973 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
974
975 * btrace.h (replay) <replay>: New.
976 (btrace_is_replaying): New.
977 * btrace.c (btrace_clear): Free replay iterator.
978 (btrace_is_replaying): New.
979 * record-btrace.c (record_btrace_is_replaying): New.
980 (record_btrace_info): Print insn number if replaying.
981 (record_btrace_insn_history): Start at replay position.
982 (record_btrace_call_history): Start at replay position.
983 (init_record_btrace_ops): Init to_record_is_replaying.
984
985 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
986
987 * record-btrace.c (record_btrace_insn_history_range): Include
988 end.
989 (record_btrace_insn_history_from): Adjust range.
990 (record_btrace_call_history_range): Include
991 end.
992 (record_btrace_call_history_from): Adjust range.
993 * NEWS: Announce changes.
994
995 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
996
997 * record.h (enum record_print_flag)
998 <record_print_indent_calls>: New.
999 * record.c (get_call_history_modifiers): Recognize /c modifier.
1000 (_initialize_record): Document /c modifier.
1001 * record-btrace.c (btrace_call_history): Add btinfo parameter.
1002 Reorder fields. Optionally indent the function name. Update
1003 all users.
1004 * NEWS: Announce changes.
1005
1006 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1007
1008 * common/linux-btrace.c (linux_enable_btrace): Enlarge buffer.
1009
1010 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1011
1012 * btrace.c (ftrace_new_function): Start counting at one.
1013 * record-btrace.c (record_btrace_info): Adjust number of calls
1014 and insns.
1015 * NEWS: Announce it.
1016
1017 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1018
1019 * record-btrace.c (btrace_call_history_insn_range): Print
1020 insn range as [begin, end].
1021
1022 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1023
1024 * btrace.h (struct btrace_func_link): New.
1025 (enum btrace_function_flag): New.
1026 (struct btrace_inst): Rename to ...
1027 (struct btrace_insn): ...this. Update all users.
1028 (struct btrace_func) <ibegin, iend>: Remove.
1029 (struct btrace_func_link): New.
1030 (struct btrace_func): Rename to ...
1031 (struct btrace_function): ...this. Update all users.
1032 (struct btrace_function) <segment, flow, up, insn, insn_offset)
1033 (number, level, flags>: New.
1034 (struct btrace_insn_iterator): Rename to ...
1035 (struct btrace_insn_history): ...this.
1036 Update all users.
1037 (struct btrace_insn_iterator, btrace_call_iterator): New.
1038 (struct btrace_target_info) <btrace, itrace, ftrace>: Remove.
1039 (struct btrace_target_info) <begin, end, level>
1040 <insn_history, call_history>: New.
1041 (btrace_insn_get, btrace_insn_number, btrace_insn_begin)
1042 (btrace_insn_end, btrace_insn_prev, btrace_insn_next)
1043 (btrace_insn_cmp, btrace_find_insn_by_number, btrace_call_get)
1044 (btrace_call_number, btrace_call_begin, btrace_call_end)
1045 (btrace_call_prev, btrace_call_next, btrace_call_cmp)
1046 (btrace_find_function_by_number, btrace_set_insn_history)
1047 (btrace_set_call_history): New.
1048 * btrace.c (btrace_init_insn_iterator)
1049 (btrace_init_func_iterator, compute_itrace): Remove.
1050 (ftrace_print_function_name, ftrace_print_filename)
1051 (ftrace_skip_file): Change
1052 parameter to const.
1053 (ftrace_init_func): Remove.
1054 (ftrace_debug): Use new btrace_function fields.
1055 (ftrace_function_switched): Also consider gaining and
1056 losing symbol information).
1057 (ftrace_print_insn_addr, ftrace_new_call, ftrace_new_return)
1058 (ftrace_new_switch, ftrace_find_caller, ftrace_new_function)
1059 (ftrace_update_caller, ftrace_fixup_caller, ftrace_new_tailcall):
1060 New.
1061 (ftrace_new_function): Move. Remove debug print.
1062 (ftrace_update_lines, ftrace_update_insns): New.
1063 (ftrace_update_function): Check for call, ret, and jump.
1064 (compute_ftrace): Renamed to ...
1065 (btrace_compute_ftrace): ...this. Rewritten to compute call
1066 stack.
1067 (btrace_fetch, btrace_clear): Updated.
1068 (btrace_insn_get, btrace_insn_number, btrace_insn_begin)
1069 (btrace_insn_end, btrace_insn_prev, btrace_insn_next)
1070 (btrace_insn_cmp, btrace_find_insn_by_number, btrace_call_get)
1071 (btrace_call_number, btrace_call_begin, btrace_call_end)
1072 (btrace_call_prev, btrace_call_next, btrace_call_cmp)
1073 (btrace_find_function_by_number, btrace_set_insn_history)
1074 (btrace_set_call_history): New.
1075 * record-btrace.c (require_btrace): Use new btrace thread
1076 info fields.
1077 (record_btrace_info, btrace_insn_history)
1078 (record_btrace_insn_history, record_btrace_insn_history_range):
1079 Use new btrace thread info fields and new iterator.
1080 (btrace_func_history_src_line): Rename to ...
1081 (btrace_call_history_src_line): ...this. Use new btrace
1082 thread info fields.
1083 (btrace_func_history): Rename to ...
1084 (btrace_call_history): ...this. Use new btrace thread info
1085 fields and new iterator.
1086 (record_btrace_call_history, record_btrace_call_history_range):
1087 Use new btrace thread info fields and new iterator.
1088
1089 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1090
1091 * frame.h (frame_id_build_unavailable_stack_special): New.
1092 * frame.c (frame_id_build_unavailable_stack_special): New.
1093
1094 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1095
1096 * amd64-tdep.c (amd64_classify_insn_at, amd64_insn_is_call)
1097 (amd64_insn_is_ret, amd64_insn_is_jump, amd64_jmp_p): New.
1098 (amd64_init_abi): Add insn_is_call, insn_is_ret, and insn_is_jump
1099 to gdbarch.
1100 * i386-tdep.c (i386_insn_is_call, i386_insn_is_ret)
1101 (i386_insn_is_jump, i386_jmp_p): New.
1102 (i386_gdbarch_init): Add insn_is_call, insn_is_ret, and
1103 insn_is_jump to gdbarch.
1104 * gdbarch.sh (insn_is_call, insn_is_ret, insn_is_jump): New.
1105 * gdbarch.h: Regenerated.
1106 * gdbarch.c: Regenerated.
1107 * arch-utils.h (default_insn_is_call, default_insn_is_ret)
1108 (default_insn_is_jump): New.
1109 * arch-utils.c (default_insn_is_call, default_insn_is_ret)
1110 (default_insn_is_jump): New.
1111
1112 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1113
1114 * common/btrace-common.h (btrace_read_type) <btrace_read_all>:
1115 Change to ...
1116 (btrace_read_type) <BTRACE_READ_ALL>: ... this. Update users.
1117 (btrace_read_type) <btrace_read_new>: Change to ...
1118 (btrace_read_type) <BTRACE_READ_NEW>: ... this. Update users.
1119
1120 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1121
1122 * common/linux-btrace.c (linux_read_btrace): Free trace from
1123 previous iteration.
1124
1125 2014-01-15 Doug Evans <dje@google.com>
1126
1127 * dwarf2read.c (open_and_init_dwp_file): Use pulongest to print
1128 uint32_t.
1129
1130 2014-01-15 Tom Tromey <tromey@redhat.com>
1131
1132 * dbxread.c (process_one_symbol): Use set_objfile_main_name.
1133 * dwarf2read.c (read_partial_die): Use set_objfile_main_name.
1134 * objfiles.c (get_objfile_bfd_data): Initialize language_of_main.
1135 (set_objfile_main_name): New function.
1136 * objfiles.h (struct objfile_per_bfd_storage) <name_of_main,
1137 language_of_main>: New fields.
1138 (set_objfile_main_name): Declare.
1139 * symtab.c (find_main_name): Loop over objfiles to find the main
1140 name and language.
1141 (set_main_name): Now static.
1142 (get_main_info): Add comment.
1143 * symtab.h (set_main_name): Don't declare.
1144
1145 2014-01-15 Tom Tromey <tromey@redhat.com>
1146
1147 * symtab.c (main_progspace_key): New global.
1148 (struct main_info): New.
1149 (name_of_main, language_of_main): Remove.
1150 (get_main_info, main_info_cleanup): New function.
1151 (set_main_name, main_name, main_language): Use get_main_info.
1152 (_initialize_symtab): Initialize main_progspace_key.
1153
1154 2014-01-15 Tom Tromey <tromey@redhat.com>
1155
1156 * dbxread.c (process_one_symbol): Update.
1157 * dwarf2read.c (read_partial_die): Update.
1158 * symfile.c (set_initial_language): Call main_language.
1159 * symtab.c (language_of_main): Now static.
1160 (set_main_name): Add 'lang' parameter.
1161 (find_main_name): Update.
1162 (main_language): New function.
1163 (symtab_observer_executable_changed): Update.
1164 * symtab.h (set_main_name): Update.
1165 (language_of_main): Remove.
1166 (main_language): Declare.
1167
1168 2014-01-15 Tom Tromey <tromey@redhat.com>
1169
1170 * symfile.c (init_entry_point_info): Use new "initialized" field.
1171 Update.
1172 * objfiles.h (struct entry_point) <initialized>: New field.
1173 (struct objfile_per_bfd_storage) <ei>: New field, moved from...
1174 (struct objfile) <ei>: ...here. Remove.
1175 * objfiles.c (entry_point_address_query): Update.
1176
1177 2014-01-15 Tom Tromey <tromey@redhat.com>
1178
1179 * objfiles.c (entry_point_address_query): Relocate entry point
1180 address.
1181 (objfile_relocate1): Do not relocate entry point address.
1182 * objfiles.h (struct entry_info) <entry_point>: Update comment.
1183 <the_bfd_section_index>: New field.
1184 * symfile.c (init_entry_point_info): Find the entry point's
1185 section.
1186
1187 2014-01-15 Tom Tromey <tromey@redhat.com>
1188
1189 * solib-frv.c (enable_break): Use entry_point_address_query.
1190
1191 2014-01-15 Omair Javaid <omair.javaid@linaro.org>
1192
1193 * NEWS: Add note on improved process record-replay on
1194 arm*-linux* targets.
1195
1196 2014-01-15 Omair Javaid <omair.javaid@linaro.org>
1197
1198 * arm-tdep.c (enum arm_record_result): New enum.
1199 (arm_record_unsupported_insn): New function.
1200 (arm_record_coproc_data_proc): Removed.
1201 (thumb2_record_ld_st_multiple): New function.
1202 (thumb2_record_ld_st_dual_ex_tbb): New function.
1203 (thumb2_record_data_proc_sreg_mimm): New function.
1204 (thumb2_record_ps_dest_generic): New function.
1205 (thumb2_record_branch_misc_cntrl): New function.
1206 (thumb2_record_str_single_data): New function.
1207 (thumb2_record_ld_mem_hints): New function.
1208 (thumb2_record_ld_word): New function.
1209 (thumb2_record_lmul_lmla_div): New function.
1210 (thumb2_record_decode_insn_handler): New function.
1211 (decode_insn): Add thumb32 instruction handlers.
1212
1213 2014-01-15 Omair Javaid <omair.javaid@linaro.org>
1214
1215 * arm-linux-tdep.c: Include "record-full.h" and "linux-record.h".
1216 (struct arm_linux_record_tdep): Declare.
1217 (arm_canonicalize_syscall): New function.
1218 (arm_all_but_pc_registers_record): New function.
1219 (arm_linux_syscall_record): New function.
1220 (arm_linux_init_abi): Add syscall recording constructs.
1221 * arm-tdep.c (thumb_record_ldm_stm_swi): Update thumb syscall
1222 decoding. (arm_record_coproc_data_proc): Update arm syscall
1223 decoding.
1224 * arm-tdep.h (struct gdbarch_tdep) <arm_swi_record>: Remove.
1225 <arm_syscall_record>: New field.
1226 * configure.tgt (arm*-*-linux*): Add linux-record.o to
1227 gdb_target_obs.
1228
1229 2014-01-15 Omair Javaid <omair.javaid@linaro.org>
1230
1231 * arm-tdep.c (thumb_record_misc): Update to use sp as base
1232 register for push instruction recording.
1233
1234 2014-01-15 Omair Javaid <omair.javaid@linaro.org>
1235
1236 * arm-tdep.c (thumb_record_misc): Update to correct logical
1237 error while recording ldm, ldmia and pop instructions.
1238
1239 2014-01-15 Omair Javaid <omair.javaid@linaro.org>
1240
1241 * arm-tdep.c (struct arm_mem_r) <addr>: Change type to uint32_t.
1242
1243 2014-01-15 Pedro Alves <palves@redhat.com>
1244
1245 * go32-nat.c (go32_open, go32_close, go32_attach, go32_detach)
1246 (go32_resume, go32_fetch_registers, store_register)
1247 (go32_store_registers, go32_prepare_to_store)
1248 (go32_xfer_memory, go32_files_info, go32_kill_inferior)
1249 (go32_create_inferior, go32_can_run, go32_terminal_init)
1250 (go32_terminal_inferior, go32_terminal_ours): Delete forward
1251 declarations.
1252
1253 2014-01-15 Tom Tromey <tromey@redhat.com>
1254
1255 * target.h (async_callback_ftype): New typedef.
1256 (struct target_ops) <to_async>: Use it.
1257
1258 2014-01-15 Joel Brobecker <brobecker@adacore.com>
1259
1260 * python/py-value.c (get_field_type): Remove unnecessary curly
1261 braces for single-statement if block.
1262
1263 2014-01-15 Joel Brobecker <brobecker@adacore.com>
1264
1265 * python/py-type.c (convert_field): Add missing empty line
1266 after declarations.
1267
1268 2014-01-14 Doug Evans <dje@google.com>
1269
1270 * symfile.h (expand_symtabs_matching): Renamed from
1271 expand_partial_symbol_names. Update prototype.
1272 (map_symbol_filenames): Renamed from map_partial_symbol_filenames.
1273 * symfile.c (expand_symtabs_matching): Renamed from
1274 expand_partial_symbol_names. New args file_matcher, kind.
1275 Rename arg fun to symbol_matcher.
1276 (map_symbol_filenames): Renamed from map_partial_symbol_filenames.
1277 * ada-lang.c (ada_complete_symbol_matcher): Renamed from
1278 ada_expand_partial_symbol_name.
1279 (ada_make_symbol_completion_list): Update to call
1280 expand_symtabs_matching.
1281 (ada_add_global_exceptions): Call expand_symtabs_matching.
1282 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update to
1283 call map_symbol_filenames.
1284 * symtab.c (sources_info): Update to call map_symbol_filenames.
1285 (search_symbols): Call expand_symtabs_matching.
1286 (symbol_completion_matcher): Renamed from expand_partial_symbol_name.
1287 (default_make_symbol_completion_list_break_on): Update to call
1288 expand_symtabs_matching.
1289 (make_source_files_completion_list): Update to call
1290 map_symbol_filenames.
1291
1292 2014-01-14 Doug Evans <dje@google.com>
1293
1294 * symfile.h (expand_symtabs_file_matcher_ftype): New typedef.
1295 (expand_symtabs_symbol_matcher_ftype): New typedef.
1296 (quick_symbol_functions.expand_symtabs_matching): Update to use.
1297 expand_symtabs_file_matcher_ftype, expand_symtabs_symbol_matcher_ftype.
1298 * symfile.c (expand_partial_symbol_names): Update to use
1299 expand_symtabs_symbol_matcher_ftype.
1300 * dwarf2read.c (dw2_expand_symtabs_matching): Update to use
1301 expand_symtabs_file_matcher_ftype, expand_symtabs_symbol_matcher_ftype.
1302 Arg name_matcher renamed to symbol_matcher.
1303 * psymtab.c (recursively_search_psymtabs): Update to use
1304 expand_symtabs_symbol_matcher_ftype. Arg name_matcher renamed to
1305 sym_matcher.
1306 (expand_symtabs_matching_via_partial): Update to use
1307 expand_symtabs_file_matcher_ftype, expand_symtabs_symbol_matcher_ftype.
1308 Arg name_matcher renamed to symbol_matcher.
1309
1310 2014-01-14 Doug Evans <dje@google.com>
1311
1312 * psymtab.c (expand_partial_symbol_names): Delete, moved to symfile.c.
1313 (map_partial_symbol_filenames): Ditto.
1314 * psymtab.h (expand_partial_symbol_names): Delete, moved to symfile.h.
1315 (map_partial_symbol_filenames): Ditto.
1316 * symfile.c (expand_partial_symbol_names): Moved here from psymtab.c.
1317 (map_partial_symbol_filenames): Ditto.
1318 * symfile.h (expand_partial_symbol_names): Moved here from psymtab.h.
1319 (map_partial_symbol_filenames): Ditto.
1320 * symtab.c: Delete #include "psymtab.h".
1321
1322 2014-01-14 Pedro Alves <palves@redhat.com>
1323 Tom Tromey <tromey@redhat.com>
1324
1325 * infrun.c (use_displaced_stepping): Use find_record_target
1326 instead of RECORD_IS_USED.
1327 (adjust_pc_after_break): Use record_full_is_used instead of
1328 RECORD_IS_USED.
1329 * record-btrace.c (record_btrace_open): Call record_preopen
1330 instead of checking RECORD_IS_USED.
1331 * record-full.c (record_full_shortname)
1332 (record_full_core_shortname): New globals.
1333 (record_full_is_used): New function.
1334 (find_full_open): Call record_preopen instead of checking
1335 RECORD_IS_USED.
1336 (init_record_full_ops): Set the target's shortname to
1337 record_full_shortname.
1338 (init_record_full_core_ops): Set the target's shortname to
1339 record_full_core_shortname.
1340 * record-full.h (record_full_is_used): Declare.
1341 * record.c (find_record_target): Make extern.
1342 (record_preopen): New function.
1343 * record.h (RECORD_IS_USED): Delete macro.
1344 (find_record_target, record_preopen): Declare functions.
1345
1346 2014-01-14 Yao Qi <yao@codesourcery.com>
1347
1348 * gdbarch.sh (core_xfer_shared_libraries): Change its argument
1349 'len''s type to ULONGEST.
1350 (core_xfer_shared_libraries_aix): Likewise.
1351 * gdbarch.c, gdbarch.h: Regenerated.
1352 * i386-cygwin-tdep.c (windows_core_xfer_shared_libraries):
1353 Change type of 'len' to ULONGEST.
1354 * rs6000-aix-tdep.c (rs6000_aix_ld_info_to_xml): Likewise.
1355 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
1356
1357 2014-01-14 Yao Qi <yao@codesourcery.com>
1358
1359 * common/linux-osdata.c (linux_xfer_osdata_processes): Change
1360 type of 'len' to ULONGEST.
1361 (linux_xfer_osdata_processgroups): Likewise.
1362 (linux_xfer_osdata_threads): Likewise.
1363 (linux_xfer_osdata_fds): Likewise.
1364 (linux_xfer_osdata_isockets): Likewise.
1365 (linux_xfer_osdata_shm): Likewise.
1366 (linux_xfer_osdata_sem): Likewise.
1367 (linux_xfer_osdata_msg): Likewise.
1368 (linux_common_xfer_osdata): Likewise.
1369 (struct osdata_type) <getter>: Likewise.
1370 * common/linux-osdata.h (linux_common_xfer_osdata): Update
1371 the declaration.
1372
1373 2014-01-14 Yao Qi <yao@codesourcery.com>
1374
1375 * target.h (target_xfer_partial_ftype): Update.
1376 (struct target_ops) <to_xfer_partial>: Change 'len' type to
1377 ULONGEST.
1378 * aix-thread.c (aix_thread_xfer_partial): Change type of
1379 argument 'len' to ULONGEST.
1380 * auxv.c (procfs_xfer_auxv): Likewise.
1381 (ld_so_xfer_auxv): Likewise.
1382 (memory_xfer_auxv): Likewise.
1383 * bfd-target.c (target_bfd_xfer_partial): Likewise.
1384 * bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
1385 * bsd-uthread.c (bsd_uthread_xfer_partial): Likewise.
1386 * corelow.c (core_xfer_partial): Likewise.
1387 * ctf.c (ctf_xfer_partial): Likewise.
1388 * darwin-nat.c (darwin_read_write_inferior): Likewise. Use
1389 '%u'.
1390 (darwin_read_dyld_info): Likewise.
1391 (darwin_xfer_partial): Likewise.
1392 * exec.c (section_table_xfer_memory_partial): Likewise.
1393 (exec_xfer_partial): Likewise.
1394 * exec.h (section_table_xfer_memory_partial): Update
1395 declaration.
1396 * gnu-nat.c (gnu_xfer_memory): Likewise. Call pulongest
1397 instead of plongest.
1398 (gnu_xfer_partial): Likewise.
1399 * ia64-hpux-nat.c (ia64_hpux_xfer_memory): Likewise.
1400 (ia64_hpux_xfer_solib_got): Likewise.
1401 (ia64_hpux_xfer_partial): Likewise.
1402 * ia64-linux-nat.c (ia64_linux_xfer_partial):
1403 * inf-ptrace.c (inf_ptrace_xfer_partial):
1404 * inf-ttrace.c (inf_ttrace_xfer_partial):
1405 * linux-nat.c (linux_xfer_siginfo): Likewise.
1406 (linux_nat_xfer_partial): Likewise.
1407 (spu_enumerate_spu_ids, linux_proc_xfer_spu): Likewise.
1408 (linux_nat_xfer_osdata, linux_xfer_partial): Likewise.
1409 * monitor.c (monitor_xfer_memory): Likewise.
1410 (monitor_xfer_partial): Likewise.
1411 * procfs.c (procfs_xfer_partial): Likewise.
1412 * record-full.c (record_full_xfer_partial): Likewise.
1413 (record_full_core_xfer_partial): Likewise.
1414 * remote-sim.c (gdbsim_xfer_memory): Likewise. Call pulongest
1415 instead of plongest.
1416 (gdbsim_xfer_partial): Likewise.
1417 * remote.c (remote_xfer_partial): Likewise.
1418 * rs6000-aix-tdep.c (rs6000_aix_ld_info_to_xml): Likewise.
1419 * rs6000-aix-tdep.h (rs6000_aix_ld_info_to_xml): Update
1420 declaration.
1421 * rs6000-nat.c (rs6000_xfer_partial): Likewise.
1422 (rs6000_xfer_shared_libraries): Likewise.
1423 * sol-thread.c (sol_thread_xfer_partial): Likewise.
1424 * sparc-nat.c (sparc_xfer_wcookie): Likewise.
1425 (sparc_xfer_partial): Likewise.
1426 * spu-linux-nat.c (spu_proc_xfer_spu): Likewise.
1427 (spu_xfer_partial): Likewise.
1428 * spu-multiarch.c (spu_xfer_partial): Likewise.
1429 * target.c (target_read_live_memory): Likewise.
1430 (memory_xfer_live_readonly_partial): Likewise.
1431 (memory_xfer_partial, memory_xfer_partial_1): Likewise.
1432 (target_xfer_partial, default_xfer_partial): Likewise.
1433 (current_xfer_partial): Likewise.
1434 * tracepoint.c (tfile_xfer_partial): Likewise.
1435 * windows-nat.c (windows_xfer_memory): Likewise. Call
1436 pulongest instead of plongest.
1437 (windows_xfer_partial): Likewise.
1438 (windows_xfer_shared_libraries): Likewise.
1439
1440 2014-01-14 Yao Qi <yao@codesourcery.com>
1441
1442 * rs6000-nat.c (rs6000_xfer_shared_libraries): Use
1443 target_xfer_partial_ftype.
1444
1445 2014-01-13 Siva Chandra Reddy <sivachandra@google.com>
1446
1447 PR python/15464
1448 PR python/16113
1449 * valops.c (value_struct_elt_bitpos): New function
1450 * py-type.c (convert_field): Set 'name' attribute of a gdb.Field
1451 object to 'None' if the field name is an empty string ("").
1452 * python/py-value.c (valpy_getitem): Use 'bitpos' and 'type'
1453 attribute to look for a field when 'name' is 'None'.
1454 (get_field_type): New function
1455
1456 2014-01-13 Doug Evans <dje@google.com>
1457
1458 PR symtab/16426
1459 * dwarf2read.c (dwarf2_get_dwz_file): Call gdb_bfd_record_inclusion.
1460 (try_open_dwop_file): Ditto.
1461 * gdb_bfd.c: #include "vec.h".
1462 (bfdp): New typedef.
1463 (struct gdb_bfd_data): New member included_bfds.
1464 (gdb_bfd_unref): Unref all included bfds.
1465 (gdb_bfd_record_inclusion): New function.
1466 * gdb_bfd.h (gdb_bfd_record_inclusion): Declare.
1467
1468 2014-01-13 Tom Tromey <tromey@redhat.com>
1469
1470 * gdbcore.h (deprecated_core_resize_section_table): Remove.
1471
1472 2014-01-13 Tom Tromey <tromey@redhat.com>
1473
1474 * defs.h (use_windows): Remove.
1475 * gdb.c (main): Update.
1476 * main.c (captured_main, gdb_main): Update.
1477 * main.h (struct captured_main_args) <use_windows>: Remove.
1478 * top.c (use_windows): Remove.
1479
1480 2014-01-13 Tom Tromey <tromey@redhat.com>
1481
1482 * defs.h (deprecated_flush_hook): Remove.
1483
1484 2014-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1485
1486 PR threads/16216
1487 * linux-thread-db.c (try_thread_db_load): Add parameter
1488 check_auto_load_safe. Move here the file_is_auto_load_safe call.
1489 (try_thread_db_load_from_pdir_1): Move it there from here.
1490 (try_thread_db_load_from_sdir): Update caller.
1491 (try_thread_db_load_from_dir): Move it there from here.
1492
1493 2014-01-13 Patrick Palka <patrick@parcs.ath.cx>
1494
1495 * regformats/regdat.sh: Always rewrite the register file.
1496
1497 2014-01-13 Pedro Alves <palves@redhat.com>
1498
1499 * Makefile.in (CHECK_HEADERS): New variable.
1500 (check-headers:): New rule.
1501
1502 2014-01-13 Tom Tromey <tromey@redhat.com>
1503
1504 * cli/cli-setshow.c (do_set_command): Update.
1505 * defs.h (deprecated_set_hook): Remove.
1506 * top.c (deprecated_set_hook): Remove.
1507
1508 2014-01-13 Pedro Alves <palves@redhat.com>
1509
1510 * tracepoint.c (tfile_fetch_registers): Don't infer the PC from
1511 the tracepoint if the PC is a pseudo-register.
1512
1513 2014-01-13 Tom Tromey <tromey@redhat.com>
1514
1515 * defs.h (XCALLOC): Remove.
1516 * bcache.c (bcache_xmalloc): Use XCNEW, not XCALLOC.
1517 (print_bcache_statistics): Use XCNEWVEC, not XCALLOC.
1518 * dwarf2loc.c (allocate_piece_closure): Likewise.
1519 * elfread.c (elf_symfile_segments): Likewise.
1520 (elf_symfile_segments): Likewise.
1521 * gdbtypes.c (copy_type_recursive): Likewise.
1522 * i386-tdep.c (i386_gdbarch_init): Use XCNEW, not XCALLOC.
1523 * jit.c (jit_frame_sniffer): Use XCNEWVEC, not XCALLOC.
1524 * minsyms.c (prim_record_minimal_symbol_full): Use XCNEW, not
1525 XCALLOC.
1526 * mt-tdep.c (mt_gdbarch_init): Likewise.
1527 * opencl-lang.c (allocate_lval_closure): Use XCNEWVEC, not
1528 XCALLOC.
1529 * psymtab.c (psymbol_compare): Use XCNEW, not XCALLOC.
1530 * regcache.c (regcache_xmalloc_1): Use XCNEWVEC, not XCALLOC.
1531 * registry.c (registry_alloc_data): Likewise.
1532 * rs6000-tdep.c (rs6000_gdbarch_init): Use XCNEW, not XCALLOC.
1533 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
1534 * serial.c (serial_fdopen_ops): Likewise.
1535 * solib-aix.c (solib_aix_get_section_offsets): Use XCNEWVEC, not
1536 XCALLOC.
1537 * spu-tdep.c (spu_gdbarch_init): Use XCNEW, not XCALLOC.
1538 * symfile.c (default_symfile_segments): Use XCNEW and XCNEWVEC,
1539 not XCALLOC.
1540
1541 2014-01-13 Tom Tromey <tromey@redhat.com>
1542
1543 * defs.h (XMALLOC): Remove.
1544 * avr-tdep.c (avr_gdbarch_init): Use XNEW, not XMALLOC.
1545 * bfin-tdep.c (bfin_gdbarch_init): Likewise.
1546 * cli-out.c (struct ui_out *): Likewise.
1547 * cli/cli-dump.c (add_dump_command): Likewise.
1548 (add_dump_command): Likewise.
1549 * complaints.c (get_complaints): Likewise.
1550 (find_complaint): Likewise.
1551 * dwarf2-frame.c (execute_cfa_program): Likewise.
1552 * dwarf2read.c (abbrev_table_read_table): Likewise.
1553 * gdbarch.sh: Likewise.
1554 * gdbarch.c: Rebuild.
1555 * inf-ttrace.c (inf_ttrace_add_page): Likewise.
1556 * interps.c (interp_new): Likewise.
1557 * lm32-tdep.c (lm32_gdbarch_init): Likewise.
1558 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
1559 * mi/mi-console.c (mi_console_file_new): Likewise.
1560 * mi/mi-interp.c (mi_interpreter_init): Likewise.
1561 * mi/mi-out.c (mi_out_new): Likewise.
1562 * mi/mi-parse.c (mi_parse): Likewise.
1563 * microblaze-tdep.c (microblaze_gdbarch_init): Likewise.
1564 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
1565 * observer.c (xalloc_observer_list_node): Likewise.
1566 * regcache.c (regcache_xmalloc_1): Likewise.
1567 * reggroups.c (reggroup_new): Likewise.
1568 (_initialize_reggroup): Likewise.
1569 * registry.c (register_data_with_cleanup): Likewise.
1570 * remote.c (remote_notif_stop_alloc_reply): Likewise.
1571 * ser-base.c (serial_ttystate): Likewise.
1572 * ser-mingw.c (make_pipe_state): Likewise.
1573 * ser-pipe.c (pipe_open): Likewise.
1574 * serial.c (serial_open): Likewise.
1575 * sh64-tdep.c (sh64_gdbarch_init): Likewise.
1576 * tui/tui-data.c (tui_alloc_generic_win_info): Likewise.
1577 (tui_alloc_win_info): Likewise.
1578 (tui_add_content_elements): Likewise.
1579 * tui/tui-file.c (tui_file_new): Likewise.
1580 * tui/tui-out.c (tui_out_new): Likewise.
1581 * ui-file.c (mem_file_new): Likewise.
1582 * ui-out.c (push_level): Likewise.
1583 (make_cleanup_ui_out_end): Likewise.
1584 (append_header_to_list): Likewise.
1585 (ui_out_new): Likewise.
1586 * user-regs.c (user_reg_add_builtin): Likewise.
1587
1588 2014-01-13 Tom Tromey <tromey@redhat.com>
1589
1590 * defs.h (XZALLOC): Remove.
1591 * ada-lang.c (get_ada_inferior_data): Use XCNEW, not XZALLOC.
1592 * ada-tasks.c (get_ada_tasks_pspace_data): Likewise.
1593 (get_ada_tasks_inferior_data): Likewise.
1594 * auto-load.c (get_auto_load_pspace_data): Likewise.
1595 * auxv.c (get_auxv_inferior_data): Likewise.
1596 * bfd-target.c (target_bfd_reopen): Likewise.
1597 * breakpoint.c (get_catch_syscall_inferior_data): Likewise.
1598 (deprecated_insert_raw_breakpoint): Likewise.
1599 * bsd-uthread.c (bsd_uthread_pid_to_str): Likewise.
1600 * corelow.c (core_open): Likewise.
1601 * darwin-nat.c (darwin_check_new_threads): Likewise.
1602 (darwin_attach_pid): Likewise.
1603 * dummy-frame.c (dummy_frame_push): Likewise.
1604 * dwarf2-frame.c (dwarf2_frame_cache): Likewise.
1605 * dwarf2loc.c (allocate_piece_closure): Likewise.
1606 * elfread.c (elf_symfile_segments): Likewise.
1607 * eval.c (ptrmath_type_p): Likewise.
1608 * exceptions.c (EXCEPTIONS_SIGJMP_BUF): Likewise.
1609 * gdbtypes.c (alloc_type_arch): Likewise.
1610 (alloc_type_instance): Likewise.
1611 * hppa-tdep.c (hppa_gdbarch_init): Likewise.
1612 * inf-child.c (inf_child_can_use_agent): Likewise.
1613 * inflow.c (get_inflow_inferior_data): Likewise.
1614 * infrun.c (save_infcall_suspend_state): Likewise.
1615 * jit.c (jit_reader_load): Likewise.
1616 (get_jit_objfile_data): Likewise.
1617 (get_jit_program_space_data): Likewise.
1618 (jit_object_open_impl): Likewise.
1619 (jit_symtab_open_impl): Likewise.
1620 (jit_block_open_impl): Likewise.
1621 (jit_frame_sniffer): Likewise.
1622 * linux-fork.c (add_fork): Likewise.
1623 * maint.c (make_command_stats_cleanup): Likewise.
1624 * objfiles.c (get_objfile_pspace_data): Likewise.
1625 * opencl-lang.c (struct lval_closure): Likewise.
1626 * osdata.c (osdata_start_osdata): Likewise.
1627 * progspace.c (new_address_space): Likewise.
1628 (add_program_space): Likewise.
1629 * remote-sim.c (get_sim_inferior_data): Likewise.
1630 * sh-tdep.c (sh_gdbarch_init): Likewise.
1631 * skip.c (Ignore): Likewise.
1632 (skip_delete_command): Likewise.
1633 * solib-aix.c (get_solib_aix_inferior_data): Likewise.
1634 (library_list_start_library): Likewise.
1635 (solib_aix_current_sos): Likewise.
1636 * solib-darwin.c (get_darwin_info): Likewise.
1637 (darwin_current_sos): Likewise.
1638 * solib-dsbt.c (get_dsbt_info): Likewise.
1639 * solib-ia64-hpux.c (new_so_list): Likewise.
1640 (ia64_hpux_get_solib_linkage_addr): Likewise.
1641 * solib-spu.c (append_ocl_sos): Likewise.
1642 (spu_current_sos): Likewise.
1643 * solib-svr4.c (get_svr4_info): Likewise.
1644 (svr4_keep_data_in_core): Likewise.
1645 (library_list_start_library): Likewise.
1646 (svr4_default_sos): Likewise.
1647 (svr4_read_so_list): Likewise.
1648 * solib-target.c (library_list_start_library): Likewise.
1649 (solib_target_current_sos): Likewise.
1650 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
1651 * symfile-debug.c (install_symfile_debug_logging): Likewise.
1652 * symfile.c (default_symfile_segments): Likewise.
1653 * target-descriptions.c (tdesc_data_init): Likewise.
1654 (tdesc_create_reg): Likewise.
1655 (struct tdesc_type *): Likewise.
1656 (tdesc_create_vector): Likewise.
1657 (tdesc_set_struct_size): Likewise.
1658 (struct tdesc_type *): Likewise.
1659 (tdesc_free_feature): Likewise.
1660 (tdesc_create_feature): Likewise.
1661 * windows-nat.c (windows_add_thread): Likewise.
1662 (windows_make_so): Likewise.
1663 * xml-support.c (gdb_xml_body_text): Likewise.
1664 (gdb_xml_create_parser_and_cleanup): Likewise.
1665 (xml_process_xincludes): Likewise.
1666 * xml-syscall.c (allocate_syscalls_info): Likewise.
1667 (syscall_create_syscall_desc): Likewise.
1668
1669 2014-01-12 Sergio Durigan Junior <sergiodj@redhat.com>
1670
1671 * i386-tdep.c (i386_stap_parse_special_token_triplet): New
1672 function, with code from i386_stap_parse_special_token.
1673 (i386_stap_parse_special_token_three_arg_disp): Likewise.
1674 (i386_stap_parse_special_token): Move code to the two functions
1675 above; simplify it.
1676
1677 2014-01-09 Pedro Alves <palves@redhat.com>
1678 Hui Zhu <hui@codesourcery.com>
1679
1680 PR gdb/16101
1681 * breakpoint.c (insert_bp_location): Rename hw_bp_err_string to
1682 bp_err_string. Don't mark the location shlib_disabled if the
1683 error thrown wasn't a generic or memory error. Catch errors
1684 thrown while inserting breakpoints in overlayed code. Output
1685 error message of software breakpoints.
1686 * remote.c (remote_insert_breakpoint): If this breakpoint has
1687 target-side commands but this stub doesn't support Z0 packets,
1688 throw NOT_SUPPORTED_ERROR error.
1689 * exceptions.h (enum errors) <NOT_SUPPORTED_ERROR>: New error.
1690 * target.h (target_insert_breakpoint): Extend comment.
1691 (target_insert_hw_breakpoint): Add comment.
1692
1693 2014-01-08 Pedro Alves <palves@redhat.com>
1694
1695 * remote.c (remote_add_thread): Add threads silently if starting
1696 up.
1697 (remote_notice_new_inferior): If in all-stop, and starting up,
1698 don't call notice_new_inferior.
1699 (get_current_thread): New function, factored out from ...
1700 (add_current_inferior_and_thread): ... this. Adjust.
1701 (remote_start_remote) <all-stop>: Fetch the thread list. If we
1702 found any thread, then select the remote's current thread as GDB's
1703 current thread too.
1704
1705 2014-01-08 Joel Brobecker <brobecker@adacore.com>
1706
1707 * NEWS: Create a new section for the next release branch.
1708 Rename the section of the current branch, now that it has
1709 been cut.
1710
1711 2014-01-08 Joel Brobecker <brobecker@adacore.com>
1712
1713 GDB 7.7 branch created (79301218fa0f074c5656db0ec8972a5ddcf91fb5):
1714 * version.in: Bump version to 7.7.50.DATE-cvs.
1715
1716 2014-01-08 Yao Qi <yao@codesourcery.com>
1717
1718 * spu-linux-nat.c (spu_symbol_file_add_from_memory): Change
1719 type of 'id' to gdb_byte. Cast 'id' to 'const char *'.
1720 (spu_xfer_partial): Cast 'buf' to 'const char *'.
1721
1722 2014-01-08 Yao Qi <yao@codesourcery.com>
1723
1724 * spu-linux-nat.c (spu_symbol_file_add_from_memory): Pass
1725 return value of bfd_get_filename to symbol_file_add_from_bfd.
1726
1727 2014-01-08 Pierre Muller <muller@sourceware.org>
1728
1729 Fix PR16201.
1730 * coff-pe-read.c (struct read_pe_section_data): Add index field.
1731 (add_pe_exported_sym): Use SECTION_DATA->INDEX for call
1732 to prim_record_mininal_symbol_and_info.
1733 (add_pe_forwarded_sym): Use known section number of forwarded symbol
1734 in call to prim_record_minimal_symbol_and_info.
1735 (read_pe_exported_syms): Set index field of section_data.
1736
1737 2014-01-07 Andrew Pinski <apinski@cavium.com>
1738
1739 * features/aarch64-core.xml (cpsr): Change to be 64bit.
1740 * features/aarch64.c: Regenerate.
1741
1742 2014-01-07 Andreas Schwab <schwab@linux-m68k.org>
1743
1744 * target.c (return_null): Define.
1745 (update_current_target): Use it instead of return_zero for
1746 functions that return a pointer.
1747
1748 2014-01-07 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
1749
1750 * source.c (add_path): Fix check for duplicated paths in the previously
1751 included paths.
1752
1753 2014-01-07 Honggyu Kim <hong.gyu.kim@lge.com>
1754
1755 * ada-lang.c: Remove duplicated include statements.
1756 * alphabsd-nat.c: Ditto.
1757 * amd64-darwin-tdep.c: Ditto.
1758 * amd64fbsd-nat.c: Ditto.
1759 * auto-load.c: Ditto.
1760 * ax-gdb.c: Ditto.
1761 * breakpoint.c: Ditto.
1762 * dbxread.c: Ditto.
1763 * fork-child.c: Ditto.
1764 * gdb_usleep.c: Ditto.
1765 * i386-darwin-tdep.c: Ditto.
1766 * i386fbsd-nat.c: Ditto.
1767 * infcmd.c: Ditto.
1768 * inferior.c: Ditto.
1769 * jv-lang.c: Ditto.
1770 * linux-nat.c: Ditto.
1771 * linux-tdep.c: Ditto.
1772 * m68kbsd-nat.c: Ditto.
1773 * m68klinux-nat.c: Ditto.
1774 * microblaze-tdep.c: Ditto.
1775 * mips-linux-tdep.c: Ditto.
1776 * mn10300-tdep.c: Ditto.
1777 * nto-tdep.c: Ditto.
1778 * opencl-lang.c: Ditto.
1779 * osdata.c: Ditto.
1780 * printcmd.c: Ditto.
1781 * regcache.c: Ditto.
1782 * remote-m32r-sdi.c: Ditto.
1783 * remote.c: Ditto.
1784 * symfile.c: Ditto.
1785 * symtab.c: Ditto.
1786 * tilegx-linux-nat.c: Ditto.
1787 * tilegx-tdep.c: Ditto.
1788 * tracepoint.c: Ditto.
1789 * valops.c: Ditto.
1790 * vaxbsd-nat.c: Ditto.
1791 * windows-nat.c: Ditto.
1792 * xtensa-tdep.c: Ditto.
1793
1794 2014-01-07 Yao Qi <yao@codesourcery.com>
1795
1796 * spu-linux-nat.c (_initialize_spu_nat): Declare.
1797
1798 2014-01-07 Yao Qi <yao@codesourcery.com>
1799 Joel Brobecker <brobecker@adacore.com>
1800
1801 * aix-thread.c (pdc_read_regs): Cast parameter to uintptr_t.
1802 (pdc_write_regs): Likewise.
1803 (fetch_regs_kernel_thread): Likewise.
1804 (store_regs_kernel_thread): Likewise.
1805
1806 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1807
1808 * ada-varobj.c (ada_varobj_adjust_for_child_access): Convert
1809 tagged type objects to their actual type.
1810
1811 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1812
1813 * ada-valprint.c (print_field_values): Add "language" parameter.
1814 Update calls to print_field_values and print_variant_part.
1815 Pass new parameter "language" in call to val_print instead
1816 of "current_language". Replace call to ada_val_print by call
1817 to val_print.
1818 (print_variant_part): Add "language" parameter.
1819 (ada_val_print_struct_union): Update call to print_field_values.
1820
1821 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1822
1823 * ada-valprint.c (ui_memcpy): Delete.
1824 (ada_print_floating): Update documentation. Add empty line
1825 between between function documentation and implementation.
1826 Delete variable "buffer". Use ui_file_xstrdup in place of
1827 ui_file_put. Minor adjustments following this change.
1828
1829 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1830
1831 * ada-valprint.c (ada_val_print_string): New function,
1832 extracted from ada_val_print_array.
1833 (ada_val_print_array): Replace extracted code by call
1834 to ada_val_print_string followed by a return. Move
1835 "else" branch to the function's top block.
1836
1837 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1838
1839 * ada-valprint.c (ada_val_print_array): Move implementation
1840 down. Rename parameter "offset" and "val" into "offset_aligned"
1841 and "original_value" respectively. Add parameter "offset".
1842
1843 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1844
1845 * ada-valprint.c (ada_val_print_ref): Rewrite by mostly
1846 re-organizing the code. Change the "???" message printed
1847 when target type is a TYPE_CODE_UNDEF into
1848 "<ref to undefined type>".
1849
1850 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1851
1852 * ada-valprint.c (print_record): Delete, implementation inlined...
1853 (ada_val_print_struct_union): ... here. Remove call to
1854 ada_check_typedef in inlined implementation.
1855
1856 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1857
1858 * ada-valprint.c (ada_val_print_gnat_array): New function,
1859 extracted from ada_val_print_1;
1860 (ada_val_print_ptr, ada_val_print_num, ada_val_print_enum)
1861 (ada_val_print_flt, ada_val_print_struct_union)
1862 (ada_val_print_ref): Likewise.
1863 (ada_val_print_1): Delete variables i and elttype.
1864 Replace extracted-out code by call to corresponding
1865 new functions.
1866
1867 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1868
1869 * ada-valprint.c (ada_val_print_1): Remove call to gdb_flush.
1870
1871 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1872
1873 * ada-valprint.c (ada_val_print_1): Replace calls to
1874 ada_val_print_1 by calls to val_print.
1875
1876 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1877
1878 * ada-valprint.c (ada_val_print_1): Add parameter "language".
1879 Update calls to self accordingly. Replace calls to c_val_print
1880 by calls to val_print.
1881
1882 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1883
1884 * ada-valprint.c (print_record): Delete declaration.
1885 (adjust_type_signedness, ada_val_print_1): Likewise.
1886 (ada_val_print): Move function implementation down.
1887 (print_variant_part, print_field_values, print_record):
1888 Move function implementation up.
1889
1890 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1891
1892 * python/py-type.c (typy_get_name): New function.
1893 (type_object_getset): Add entry for attribute "name".
1894 * NEWS: Add entry mentioning this new attribute.
1895
1896 2014-01-07 Yao Qi <yao@codesourcery.com>
1897
1898 * gnu-nat.c (set_exceptions_cmd): Remove an empty body 'if'
1899 statement.
1900
1901 2014-01-07 Yao Qi <yao@codesourcery.com>
1902
1903 * gnu-nat.c (info_port_rights): Add qualifier const to
1904 argument args.
1905
1906 2014-01-07 Yao Qi <yao@codesourcery.com>
1907
1908 * gnu-nat.c (trace_me): Use 'void' for empty argument list.
1909
1910 2014-01-07 Yao Qi <yao@codesourcery.com>
1911
1912 * gnu-nat.c (make_inf) Update declaration.
1913 (make_inf): Make it static.
1914 (inf_set_traced): Likewise.
1915 (inf_port_to_thread, inf_task_died_status): Likewise.
1916
1917 2014-01-07 Yao Qi <yao@codesourcery.com>
1918
1919 * gnu-nat.c (inf_tid_to_proc): Remove declaration.
1920
1921 2014-01-07 Yao Qi <yao@codesourcery.com>
1922
1923 * gnu-nat.c (_initialize_gnu_nat): Declare.
1924
1925 2014-01-07 Yao Qi <yao@codesourcery.com>
1926
1927 * gdbarch.sh (byte_order, byte_order_for_code): Change type to
1928 'enum bfd_endian'.
1929 (struct gdbarch_info) <byte_order>: Change type to
1930 'enum bfd_endian'.
1931 <byte_order_for_code>: Likewise.
1932 * gdbarch.c, gdbarch.h: Regenerated.
1933
1934 2014-01-06 Sasha Smundak <asmundak@google.com>
1935
1936 * jit.c: (jit_reader_load_command): Fix JIT reader path creation.
1937
1938 2014-01-06 Tom Tromey <tromey@redhat.com>
1939
1940 * doublest.c (convert_doublest_to_floatformat): Use const, not
1941 CONST.
1942 * somread.c (som_symtab_read): Likewise.
1943
1944 2014-01-07 Hui Zhu <hui@codesourcery.com>
1945
1946 * gdb_bfd.c (gdb_bfd_stash_filename): Removed.
1947 (gdb_bfd_open): Removed gdb_bfd_stash_filename.
1948 (gdb_bfd_fopen): Ditto.
1949 (gdb_bfd_openr): Ditto.
1950 (gdb_bfd_openw): Ditto.
1951 (gdb_bfd_openr_iovec): Ditto.
1952 (gdb_bfd_fdopenr): Ditto.
1953 * gdb_bfd.h (gdb_bfd_stash_filename): Removed.
1954 * solib-aix.c (solib_aix_bfd_open): Alloc object_bfd->filename
1955 with xstrdup.
1956 * solib-darwin.c (darwin_bfd_open): Alloc res->filename
1957 with xstrdup.
1958 * symfile-mem.c (symbol_file_add_from_memory): Removed
1959 gdb_bfd_stash_filename.
1960
1961 2014-01-03 Doug Evans <dje@google.com>
1962
1963 * nat/linux-waitpid.c (linux_debug): Remove extraneous \n from
1964 output.
1965
1966 2014-01-01 Joel Brobecker <brobecker@adacore.com>
1967
1968 Update year range in copyright notice of all files.
1969
1970 2014-01-01 Joel Brobecker <brobecker@adacore.com>
1971
1972 * top.c (print_gdb_version): Set copyright year to 2014.
1973
1974 2014-01-01 Joel Brobecker <brobecker@adacore.com>
1975
1976 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2013.
1977
1978 For older changes see ChangeLog-2013.
1979 \f
1980 Local Variables:
1981 mode: change-log
1982 left-margin: 8
1983 fill-column: 74
1984 version-control: never
1985 coding: utf-8
1986 End: