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