]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/ChangeLog
H8/300: Fix gdb<->sim register mapping.
[thirdparty/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
76fd5f74
PA
12014-02-12 Pedro Alves <palves@redhat.com>
2
3 * h8300-tdep.c (h8300_register_sim_regno): New function.
4 (h8300_gdbarch_init): Install h8300_register_sim_regno as
5 gdbarch_register_sim_regno hook.
6
8f008406
SA
72014-02-12 Sanimir Agovic <sanimir.agovic@intel.com>
8
9 * nios2-tdep.c (nios2_stub_frame_base): Remove global.
10
195abc10
SA
112014-02-12 Sanimir Agovic <sanimir.agovic@intel.com>
12
13 * tic6x-tdep.c (tic6x_gdbarch_init): Call frame_base_set_default.
14
93ffa5b9
MK
152014-02-12 Mark Kettenis <kettenis@gnu.org>
16
17 * obsd-tdep.h (obsd_init_abi): New prototype.
18 * obsd-tdep.c: Define enum with OpenBSD signal numbers.
19 (obsd_gdb_signal_from_target, obsd_gdb_signal_to_target)
20 (obsd_init_abi): New functions.
21 * i386obsd-tdep.c: Include "obsd-tdep.h".
22 (i386obsd_init_abi): Call obsd_init_abi.
23 * amd64obsd-tdep.c: Include "obsd-tdep.h".
24 (amd64obsd_init_abi): Call obsd_init_abi.
25 * configure.tgt (i[34567]86-*-openbsd*, x86_64-*-openbsd*): Add
26 obsd-tdep.c to gdb_target_obs.
27
49caec94
JM
282014-02-11 Jose E. Marchesi <jose.marchesi@oracle.com>
29
30 * sparc64-tdep.c (sparc64_store_arguments): Do not align complex
31 double float arguments to 16-byte in the argument slots.
32
e1402065
DE
332014-02-11 Doug Evans <xdje42@gmail.com>
34
35 * configure.ac: Don't crash if pkg-config is not found and guile
36 wasn't explicitly requested. Use AC_MSG_ERROR instead of AC_ERROR
37 in guile checks.
38 * configure: Regenerate.
39
edcc890f
YQ
402014-02-11 Yao Qi <yao@codesourcery.com>
41
42 * aix-thread.c (aix_thread_xfer_partial): Update comments.
43 * auxv.c (procfs_xfer_auxv, memory_xfer_auxv): Likewise.
44 * bsd-uthread.c (bsd_uthread_xfer_partial): Likewise.
45 * gnu-nat.c (gnu_xfer_memory): Likewise.
46 * inf-ptrace.c (inf_ptrace_xfer_partial): Likewise.
47 * rs6000-nat.c (rs6000_xfer_partial): Likewise.
48 * sparc-nat.c (sparc_xfer_wcookie): Likewise.
49 * spu-linux-nat.c (spu_proc_xfer_spu): Likewise.
50
9b409511
YQ
512014-02-11 Yao Qi <yao@codesourcery.com>
52
53 * target.h (enum target_xfer_error): Rename to ...
54 (enum target_xfer_status): ... it. New. All users updated.
55 (enum target_xfer_status) <TARGET_XFER_OK>, <TARGET_XFER_EOF>:
56 New.
57 (TARGET_XFER_STATUS_ERROR_P): New macro.
58 (target_xfer_error_to_string): Remove declaration.
59 (target_xfer_status_to_string): Declare.
60 (target_xfer_partial_ftype): Adjust it.
61 (struct target_ops) <to_xfer_partial>: Return
62 target_xfer_status. Add argument xfered_len. Update
63 comments.
64 * target.c (target_xfer_error_to_string): Rename to ...
65 (target_xfer_status_to_string): ... it. New. All callers
66 updated.
67 (target_read_live_memory): Likewise. Call target_xfer_partial
68 instead of target_read.
69 (memory_xfer_live_readonly_partial): Return
70 target_xfer_status. Add argument xfered_len.
71 (raw_memory_xfer_partial): Likewise.
72 (memory_xfer_partial_1): Likewise.
73 (memory_xfer_partial): Likewise.
74 (target_xfer_partial): Likewise. Check *XFERED_LEN is set
75 properly. Update debug message.
76 (default_xfer_partial, current_xfer_partial): Likewise.
77 (target_write_partial): Likewise.
78 (target_read_partial): Likewise. All callers updated.
79 (read_whatever_is_readable): Likewise.
80 (target_write_with_progress): Likewise.
81 (target_read_alloc_1): Likewise.
82
83 * aix-thread.c (aix_thread_xfer_partial): Likewise.
84 * auxv.c (procfs_xfer_auxv): Likewise.
85 (ld_so_xfer_auxv, memory_xfer_auxv): Likewise.
86 * bfd-target.c (target_bfd_xfer_partial): Likewise.
87 * bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
88 * bsd-uthread.c (bsd_uthread_xfer_partia): Likewise.
89 * corefile.c (read_memory): Adjust.
90 * corelow.c (core_xfer_partial): Likewise.
91 * ctf.c (ctf_xfer_partial): Likewise.
92 * darwin-nat.c (darwin_read_dyld_info): Likewise. All callers
93 updated.
94 (darwin_xfer_partial): Likewise.
95 * exec.c (section_table_xfer_memory_partial): Likewise. All
96 callers updated.
97 (exec_xfer_partial): Likewise.
98 * exec.h (section_table_xfer_memory_partial): Update
99 declaration.
100 * gnu-nat.c (gnu_xfer_memory): Likewise. Assert 'res' is not
101 negative.
102 (gnu_xfer_partial): Likewise.
103 * ia64-hpux-nat.c (ia64_hpux_xfer_memory_no_bs): Likewise.
104 (ia64_hpux_xfer_memory, ia64_hpux_xfer_uregs): Likewise.
105 (ia64_hpux_xfer_solib_got): Likewise.
106 * inf-ptrace.c (inf_ptrace_xfer_partial): Likewise. Change
107 type of 'partial_len' to ULONGEST.
108 * inf-ttrace.c (inf_ttrace_xfer_partial): Likewise.
109 * linux-nat.c (linux_xfer_siginfo ): Likewise.
110 (linux_nat_xfer_partial): Likewise.
111 (linux_proc_xfer_partial, linux_xfer_partial): Likewise.
112 (linux_proc_xfer_spu, linux_nat_xfer_osdata): Likewise.
113 * monitor.c (monitor_xfer_memory): Likewise.
114 (monitor_xfer_partial): Likewise.
115 * procfs.c (procfs_xfer_partial): Likewise.
116 * record-btrace.c (record_btrace_xfer_partial): Likewise.
117 * record-full.c (record_full_xfer_partial): Likewise.
118 (record_full_core_xfer_partial): Likewise.
119 * remote-sim.c (gdbsim_xfer_memory): Likewise.
120 (gdbsim_xfer_partial): Likewise.
121 * remote.c (remote_write_bytes_aux): Likewise. All callers
122 updated.
123 (remote_write_bytes, remote_read_bytes): Likewise. All
124 callers updated.
125 (remote_flash_erase): Likewise. All callers updated.
126 (remote_write_qxfer): Likewise. All callers updated.
127 (remote_read_qxfer): Likewise. All callers updated.
128 (remote_xfer_partial): Likewise.
129 * rs6000-nat.c (rs6000_xfer_partial): Likewise.
130 (rs6000_xfer_shared_libraries): Likewise.
131 * sol-thread.c (sol_thread_xfer_partial): Likewise.
132 (sol_thread_xfer_partial): Likewise.
133 * sparc-nat.c (sparc_xfer_wcookie): Likewise.
134 (sparc_xfer_partial): Likewise.
135 * spu-linux-nat.c (spu_proc_xfer_spu): Likewise. All callers
136 updated.
137 (spu_xfer_partial): Likewise.
138 * spu-multiarch.c (spu_xfer_partial): Likewise.
139 * tracepoint.c (tfile_xfer_partial): Likewise.
140 * windows-nat.c (windows_xfer_memory): Likewise.
141 (windows_xfer_shared_libraries): Likewise.
142 (windows_xfer_partial): Likewise.
143 * valprint.c: Replace 'target_xfer_error' with
144 'target_xfer_status' in comments.
145
a8e63083
JB
1462014-02-11 Simon Marchi <simon.marchi@ericsson.com> (tiny patch)
147
148 Checked in by Joel Brobecker <brobecker@adacore.com>.
149 * mi/mi-main.c (mi_cmd_data_write_memory_bytes): Fix comment.
150
e86b67d3
JB
1512014-02-11 Joel Brobecker <brobecker@adacore.com>
152
153 * symfile-debug.c (debug_qf_expand_symtabs_matching): Reformat
154 function parameters.
155
4b7d1f7f
WN
1562014-02-10 Will Newton <will.newton@linaro.org>
157
158 * elfread.c (elf_rel_plt_read): Look for a .got section if
159 looking up .got.plt fails.
160 (elf_gnu_ifunc_resolve_by_got): Call gdbarch_addr_bits_remove
161 on address passed to elf_gnu_ifunc_record_cache.
162 (elf_gnu_ifunc_resolve_addr): Likewise.
163 (elf_gnu_ifunc_resolver_return_stop): Likewise.
164
961842b2
JM
1652014-02-10 Jose E. Marchesi <jose.marchesi@oracle.com>
166
167 * sparc-tdep.c (sparc_in_function_epilogue_p): New function.
168 (X_RETTURN): New macro.
169 * sparc-tdep.h: sparc_in_function_epilogue_p prototype.
170
171 * sparc64-tdep.c (sparc64_init_abi): Hook
172 sparc_in_function_epilogue_p.
173
3f03e7b1
GB
1742014-02-10 Gary Benson <gbenson@redhat.com>
175
176 * symfile-debug.c (debug_qf_expand_symtabs_matching):
177 Rename name_matcher to symbol_matcher.
178
96f861ef
GB
1792014-02-10 Gary Benson <gbenson@redhat.com>
180
181 * symfile-debug.c (debug_qf_expand_symtabs_matching):
182 Use expand_symtabs_file_matcher_ftype and
183 expand_symtabs_symbol_matcher_ftype.
184
ee01b665
JB
1852014-02-10 Joel Brobecker <brobecker@adacore.com>
186
187 * ada-lang.c (struct cache_entry, HASH_SIZE): Move definition up.
188 (struct ada_symbol_cache): New.
189 (ada_free_symbol_cache): Forward declare.
190 (struct ada_pspace_data): New.
191 (ada_pspace_data_handle): New static global.
192 (get_ada_pspace_data, ada_pspace_data_cleanup)
193 (ada_init_symbol_cache, ada_free_symbol_cache): New functions.
194 (cache_space, cache): Delete, now folded inside struct
195 ada_pspace_data.
196 (ada_get_symbol_cache): New function.
197 (ada_clear_symbol_cache, find_entry, cache_symbol): Adjust
198 implementation.
199 (_initialize_ada_language): Remove initialization of cache_space.
200 Move call to observer_attach_inferior_exit up, grouping it
201 with the other observer registrations inside this function.
202 Rename command to be more general. Add call to
203 register_program_space_data_with_cleanup.
204
143adbbf
JB
2052014-02-10 Joel Brobecker <brobecker@adacore.com>
206
207 * ada-tasks.c (ada_tasks_new_objfile_observer): Renames
208 ada_new_objfile_observer.
209 (ada_tasks_normal_stop_observer): Renames ada_normal_stop_observer.
210 (_initialize_tasks): Update uses of ada_new_objfile_observer
211 and ada_tasks_normal_stop_observer.
212
aa4fb036
JB
2132014-02-10 Joel Brobecker <brobecker@adacore.com>
214
215 * ada-lang.c (ada_evaluate_subexp): Set the type of the value
216 returned by the 'Length attribute to integer.
217
9dee8cc6
JB
2182014-02-10 Joel Brobecker <brobecker@adacore.com>
219
220 * ada-lang.c (_initialize_ada_language): Initialize
221 cache_space obstack.
222
3d9434b5
JB
2232014-02-10 Joel Brobecker <brobecker@adacore.com>
224
225 * ada-lang.c (HASH_SIZE): New macro.
226 (struct cache_entry): New type.
227 (cache_space, cache): New static globals.
228 (ada_clear_symbol_cache, find_entry): New functions.
229 (lookup_cached_symbol, cache_symbol): Implement.
230 (ada_new_objfile_observer, ada_free_objfile_observer): New.
231 (_initialize_ada_language): Attach ada_new_objfile_observer
232 and ada_free_objfile_observer.
233
f0c5f9b2
JB
2342014-02-10 Joel Brobecker <brobecker@adacore.com>
235
236 * ada-lang.c (ada_add_block_symbols, add_defn_to_vec)
237 (lookup_cached_symbol, ada_add_local_symbols): Add "const" to
238 struct block * parameter.
239 (ada_lookup_symbol_list_worker): Constify local variable "block".
240 Remove cast which is no longer necessary.
241
ed3ef339
DE
2422014-02-10 Doug Evans <xdje42@gmail.com>
243
244 Add Guile as an extension language.
245 * NEWS: Mention Guile scripting.
246 * Makefile.in (SUBDIR_GUILE_OBS): New variable.
247 (SUBDIR_GUILE_SRCS, SUBDIR_GUILE_DEPS): New variables
248 (SUBDIR_GUILE_LDFLAGS, SUBDIR_GUILE_CFLAGS): New variables.
249 (INTERNAL_CPPFLAGS): Add GUILE_CPPFLAGS.
250 (CLIBS): Add GUILE_LIBS.
251 (install-guile): New rule.
252 (guile.o): New rule.
253 (scm-arch.o, scm-auto-load.o, scm-block.o): New rules.
254 (scm-breakpoint.o, scm-disasm.o, scm-exception.o): New rules.
255 (scm-frame.o, scm-iterator.o, scm-lazy-string.o): New rules.
256 (scm-math.o, scm-objfile.o, scm-ports.o): New rules.
257 (scm-pretty-print.o, scm-safe-call.o, scm-gsmob.o): New rules.
258 (scm-string.o, scm-symbol.o, scm-symtab.o): New rules.
259 (scm-type.o, scm-utils.o, scm-value.o): New rules.
260 * configure.ac: New option --with-guile.
261 * configure: Regenerate.
262 * config.in: Regenerate.
263 * auto-load.c: Remove #include "python/python.h". Add #include
264 "gdb/section-scripts.h".
265 (source_section_scripts): Handle Guile scripts.
266 (_initialize_auto_load): Add name of Guile objfile script to
267 scripts-directory help text.
268 * breakpoint.c (condition_command): Tweak comment to include Scheme.
269 * breakpoint.h (gdbscm_breakpoint_object): Add forward decl.
270 (struct breakpoint): New member scm_bp_object.
271 * defs.h (enum command_control_type): New value guile_control.
272 * cli/cli-cmds.c: Remove #include "python/python.h". Add #include
273 "extension.h".
274 (show_user): Update comment.
275 (_initialize_cli_cmds): Update help text for "show user". Update help
276 text for max-user-call-depth.
277 * cli/cli-script.c: Remove #include "python/python.h". Add #include
278 "extension.h".
279 (multi_line_command_p): Add guile_control.
280 (print_command_lines): Handle guile_control.
281 (execute_control_command, recurse_read_control_structure): Ditto.
282 (process_next_line): Recognize "guile" commands.
283 * disasm.c (gdb_disassemble_info): Make non-static.
284 * disasm.h: #include "dis-asm.h".
285 (struct gdbarch): Add forward decl.
286 (gdb_disassemble_info): Declare.
287 * extension.c: #include "guile/guile.h".
288 (extension_languages): Add guile.
289 (get_ext_lang_defn): Handle EXT_LANG_GDB.
290 * extension.h (enum extension_language): New value EXT_LANG_GUILE.
291 * gdbtypes.c (get_unsigned_type_max): New function.
292 (get_signed_type_minmax): New function.
293 * gdbtypes.h (get_unsigned_type_max): Declare.
294 (get_signed_type_minmax): Declare.
295 * guile/README: New file.
296 * guile/guile-internal.h: New file.
297 * guile/guile.c: New file.
298 * guile/guile.h: New file.
299 * guile/scm-arch.c: New file.
300 * guile/scm-auto-load.c: New file.
301 * guile/scm-block.c: New file.
302 * guile/scm-breakpoint.c: New file.
303 * guile/scm-disasm.c: New file.
304 * guile/scm-exception.c: New file.
305 * guile/scm-frame.c: New file.
306 * guile/scm-gsmob.c: New file.
307 * guile/scm-iterator.c: New file.
308 * guile/scm-lazy-string.c: New file.
309 * guile/scm-math.c: New file.
310 * guile/scm-objfile.c: New file.
311 * guile/scm-ports.c: New file.
312 * guile/scm-pretty-print.c: New file.
313 * guile/scm-safe-call.c: New file.
314 * guile/scm-string.c: New file.
315 * guile/scm-symbol.c: New file.
316 * guile/scm-symtab.c: New file.
317 * guile/scm-type.c: New file.
318 * guile/scm-utils.c: New file.
319 * guile/scm-value.c: New file.
320 * guile/lib/gdb.scm: New file.
321 * guile/lib/gdb/boot.scm: New file.
322 * guile/lib/gdb/experimental.scm: New file.
323 * guile/lib/gdb/init.scm: New file.
324 * guile/lib/gdb/iterator.scm: New file.
325 * guile/lib/gdb/printing.scm: New file.
326 * guile/lib/gdb/types.scm: New file.
327 * data-directory/Makefile.in (GUILE_SRCDIR): New variable.
328 (VPATH): Add $(GUILE_SRCDIR).
329 (GUILE_DIR): New variable.
330 (GUILE_INSTALL_DIR, GUILE_FILES): New variables.
331 (all): Add stamp-guile dependency.
332 (stamp-guile): New rule.
333 (clean-guile, install-guile, uninstall-guile): New rules.
334 (install-only): Add install-guile dependency.
335 (uninstall): Add uninstall-guile dependency.
336 (clean): Add clean-guile dependency.
337
ac020ec5
DE
3382014-02-09 Doug Evans <xdje42@gmail.com>
339
340 Revert this patch (which I approved, mea culpa).
341
342 2014-02-08 Mark Kettenis <kettenis@gnu.org>
343
344 * Makefile.in (all-lib): Remove.
345 ($(LIBGNU) $(GNULIB_H)): Replace with gits of remove all-lib target.
346
2a081c59
JK
3472014-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
348
349 Fix Python stack corruption.
350 * python/py-linetable.c (ltpy_get_pcs_for_line, ltpy_has_line): Use
351 gdb_py_longest.
352
0a6bd22d
MK
3532014-02-08 Mark Kettenis <kettenis@gnu.org>
354
355 * Makefile.in (all-lib): Remove.
356 ($(LIBGNU) $(GNULIB_H)): Replace with gits of remove all-lib target.
357
1a860409
DE
3582014-02-07 Doug Evans <dje@google.com>
359
360 * extension-priv.h (extension_language_script_ops): Add comment.
361 (extension_language_ops): Add comment.
caf5a491 362 (active_ext_lang_state): Fix typo in comment.
1a860409 363
d137e6dc
PA
3642014-02-07 Pedro Alves <palves@redhat.com>
365
366 * infrun.c (handle_signal_stop) <signal arrives while stepping
367 over a breakpoint>: Switch back to the stepping thread.
368
ce6d0892
YQ
3692014-02-07 Yao Qi <yao@codesourcery.com>
370
371 * target.c (target_xfer_partial): Return zero if LEN is zero.
372
2ed4b548
YQ
3732014-02-07 Yao Qi <yao@codesourcery.com>
374
375 * auxv.c (procfs_xfer_auxv): Replace -1 with TARGET_XFER_E_IO.
376 (ld_so_xfer_auxv): Likewise.
377 * bfd-target.c (target_bfd_xfer_partial): Likewise.
378 * bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
379 * corelow.c (core_xfer_partial): Likewise.
380 * ctf.c (ctf_xfer_partial): Likewise.
381 * darwin-nat.c (darwin_read_dyld_info): Likewise.
382 (darwin_xfer_partial): Likewise.
383 * exec.c (exec_xfer_partial): Likewise.
384 * gnu-nat.c (gnu_xfer_partial): Likewise.
385 * ia64-hpux-nat.c (ia64_hpux_xfer_uregs): Likewise.
386 * inf-ptrace.c (inf_ptrace_xfer_partial): Likewise.
387 * inf-ttrace.c (inf_ttrace_xfer_partial): Likewise.
388 * linux-nat.c (linux_xfer_siginfo): Likewise.
389 (linux_proc_xfer_spu): Likewise.
390 * procfs.c (procfs_xfer_partial): Likewise.
391 * record-full.c (record_full_xfer_partial): Likewise.
392 (record_full_core_xfer_partial): Likewise.
393 * remote-sim.c (gdbsim_xfer_partial): Likewise.
394 * remote.c (remote_write_qxfer): Likewise.
395 (remote_write_qxfer, remote_read_qxfer): Likewise.
396 (remote_xfer_partial): Likewise.
397 * rs6000-nat.c (rs6000_xfer_partial): Likewise.
398 (rs6000_xfer_shared_libraries): Likewise.
399 * sparc-nat.c (sparc_xfer_wcookie): Likewise.
400 * spu-linux-nat.c (spu_proc_xfer_spu): Likewise.
401 (spu_xfer_partial): Likewise.
402 * target.c (memory_xfer_partial_1): Likewise.
403 * tracepoint.c (tfile_xfer_partial): Likewise.
404 * windows-nat.c (windows_xfer_shared_libraries): Likewise.
405 (windows_xfer_partial): Likewise.
406
c09f20e4
YQ
4072014-02-07 Yao Qi <yao@codesourcery.com>
408
409 * gdbarch.sh (core_xfer_shared_libraries): Returns ULONGEST. Add
410 comments.
411 (core_xfer_shared_libraries_aix): Likewise.
412 * gdbarch.c, gdbarch.h: Regenerated.
413 * i386-cygwin-tdep.c (windows_core_xfer_shared_libraries): Return
414 ULONGEST. Change 'len_avail' type to ULONGEST.
415 * rs6000-aix-tdep.c (rs6000_aix_ld_info_to_xml): Likewise.
416 * rs6000-aix-tdep.h (rs6000_aix_ld_info_to_xml): Update
417 declaration.
418 (rs6000_aix_core_xfer_shared_libraries_aix): Return ULONGEST.
419
8635b3bf
YQ
4202014-02-07 Yao Qi <yao@codesourcery.com>
421
422 * corefile.c (memory_error): Get 'exception' from ERR and pass
423 'exception' to throw_error.
424
6dddc817
DE
4252014-02-06 Doug Evans <xdje42@gmail.com>
426
427 * configure.ac (libpython checking): Remove all but python.o from
428 CONFIG_OBS. Remove all but python.c from CONFIG_SRCS.
429 * configure: Regenerate.
430
431 * Makefile.in (SFILES): Add extension.c.
432 (HFILES_NO_SRCDIR): Add extension.h, extension-priv.h
433 (COMMON_OBS): Add extension.o.
434 * extension.h: New file.
435 * extension-priv.h: New file.
436 * extension.c: New file.
437
438 * python/python-internal.h: #include "extension.h".
439 (gdbpy_auto_load_enabled): Declare.
440 (gdbpy_apply_val_pretty_printer): Declare.
441 (gdbpy_apply_frame_filter): Declare.
442 (gdbpy_preserve_values): Declare.
443 (gdbpy_breakpoint_cond_says_stop): Declare.
444 (gdbpy_breakpoint_has_cond): Declare.
445 (void source_python_script_for_objfile): Delete.
446 * python/python.c: #include "extension-priv.h".
447 Delete inclusion of "observer.h".
448 (extension_language_python): Moved here and renamed from
449 script_language_python in py-auto-load.c.
450 Redefined to be of type extension_language_defn.
451 (python_extension_script_ops): New global.
452 (python_extension_ops): New global.
453 (struct python_env): New member previous_active.
454 (restore_python_env): Call restore_active_ext_lang.
455 (ensure_python_env): Call set_active_ext_lang.
456 (gdbpy_clear_quit_flag): Renamed from clear_quit_flag, made static.
457 New arg extlang.
458 (gdbpy_set_quit_flag): Renamed from set_quit_flag, made static.
459 New arg extlang.
460 (gdbpy_check_quit_flag): Renamed from check_quit_flag, made static.
461 New arg extlang.
462 (gdbpy_eval_from_control_command): Renamed from
463 eval_python_from_control_command, made static. New arg extlang.
464 (gdbpy_source_script) Renamed from source_python_script, made static.
465 New arg extlang.
466 (gdbpy_before_prompt_hook): Renamed from before_prompt_hook. Change
467 result to int. New arg extlang.
468 (gdbpy_source_objfile_script): Renamed from
469 source_python_script_for_objfile, made static. New arg extlang.
470 (gdbpy_start_type_printers): Renamed from start_type_printers, made
471 static. New args extlang, extlang_printers. Change result type to
472 "void".
473 (gdbpy_apply_type_printers): Renamed from apply_type_printers, made
474 static. New arg extlang. Rename arg printers to extlang_printers
475 and change type to ext_lang_type_printers *.
476 (gdbpy_free_type_printers): Renamed from free_type_printers, made
477 static. Replace argument arg with extlang, extlang_printers.
478 (!HAVE_PYTHON, eval_python_from_control_command): Delete.
479 (!HAVE_PYTHON, source_python_script): Delete.
480 (!HAVE_PYTHON, gdbpy_should_stop): Delete.
481 (!HAVE_PYTHON, gdbpy_breakpoint_has_py_cond): Delete.
482 (!HAVE_PYTHON, start_type_printers): Delete.
483 (!HAVE_PYTHON, apply_type_printers): Delete.
484 (!HAVE_PYTHON, free_type_printers): Delete.
485 (_initialize_python): Delete call to observer_attach_before_prompt.
486 (finalize_python): Set/restore active extension language.
487 (gdbpy_finish_initialization) Renamed from
488 finish_python_initialization, made static. New arg extlang.
489 (gdbpy_initialized): New function.
490 * python/python.h: #include "extension.h". Delete #include
491 "value.h", "mi/mi-cmds.h".
492 (extension_language_python): Declare.
493 (GDBPY_AUTO_FILE_NAME): Delete.
494 (enum py_bt_status): Moved to extension.h and renamed to
495 ext_lang_bt_status.
496 (enum frame_filter_flags): Moved to extension.h.
497 (enum py_frame_args): Moved to extension.h and renamed to
498 ext_lang_frame_args.
499 (finish_python_initialization): Delete.
500 (eval_python_from_control_command): Delete.
501 (source_python_script): Delete.
502 (apply_val_pretty_printer): Delete.
503 (apply_frame_filter): Delete.
504 (preserve_python_values): Delete.
505 (gdbpy_script_language_defn): Delete.
506 (gdbpy_should_stop, gdbpy_breakpoint_has_py_cond): Delete.
507 (start_type_printers, apply_type_printers, free_type_printers): Delete.
508
509 * auto-load.c: #include "extension.h".
510 (GDB_AUTO_FILE_NAME): Delete.
511 (auto_load_gdb_scripts_enabled): Make public. New arg extlang.
512 (script_language_gdb): Delete, moved to extension.c and renamed to
513 extension_language_gdb.
514 (source_gdb_script_for_objfile): Delete.
515 (auto_load_pspace_info): New member unsupported_script_warning_printed.
516 (loaded_script): Change type of language member to
517 struct extension_language_defn *.
518 (init_loaded_scripts_info): Initialize
519 unsupported_script_warning_printed.
520 (maybe_add_script): Make static. Change type of language arg to
521 struct extension_language_defn *.
522 (clear_section_scripts): Reset unsupported_script_warning_printed.
523 (auto_load_objfile_script_1): Rewrite to use extension language API.
524 (auto_load_objfile_script): Make public. Remove support-compiled-in
525 and auto-load-enabled checks, moved to auto_load_scripts_for_objfile.
526 (source_section_scripts): Rewrite to use extension language API.
527 (load_auto_scripts_for_objfile): Rewrite to use
528 auto_load_scripts_for_objfile.
529 (collect_matching_scripts_data): Change type of language member to
530 struct extension_language_defn *.
531 (auto_load_info_scripts): Change type of language arg to
532 struct extension_language_defn *.
533 (unsupported_script_warning_print): New function.
534 (script_not_found_warning_print): Make static.
535 (_initialize_auto_load): Rewrite construction of scripts-directory
536 help.
537 * auto-load.h (struct objfile): Add forward decl.
538 (struct script_language): Delete.
539 (struct auto_load_pspace_info): Add forward decl.
540 (struct extension_language_defn): Add forward decl.
541 (maybe_add_script): Delete.
542 (auto_load_objfile_script): Declare.
543 (script_not_found_warning_print): Delete.
544 (auto_load_info_scripts): Update prototype.
545 (auto_load_gdb_scripts_enabled): Declare.
546 * python/py-auto-load.c (gdbpy_auto_load_enabled): Renamed from
547 auto_load_python_scripts_enabled and made public.
548 (script_language_python): Delete, moved to python.c.
549 (gdbpy_script_language_defn): Delete.
550 (info_auto_load_python_scripts): Update to use
551 extension_language_python.
552
553 * breakpoint.c (condition_command): Replace call to
554 gdbpy_breakpoint_has_py_cond with call to get_breakpoint_cond_ext_lang.
555 (bpstat_check_breakpoint_conditions): Replace call to gdbpy_should_stop
556 with call to breakpoint_ext_lang_cond_says_stop.
557 * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Renamed
558 from gdbpy_should_stop. Change result type to enum scr_bp_stop.
559 New arg slang. Return SCR_BP_STOP_UNSET if py_bp_object is NULL.
560 (gdbpy_breakpoint_has_cond): Renamed from gdbpy_breakpoint_has_py_cond.
561 New arg slang.
562 (local_setattro): Print name of extension language with existing
563 stop condition.
564
565 * valprint.c (val_print, value_print): Update to call
566 apply_ext_lang_val_pretty_printer.
567 * cp-valprint.c (cp_print_value): Update call to
568 apply_ext_lang_val_pretty_printer.
569 * python/py-prettyprint.c: Remove #ifdef HAVE_PYTHON.
570 (gdbpy_apply_val_pretty_printer): Renamed from
571 apply_val_pretty_printer. New arg extlang.
572 (!HAVE_PYTHON, apply_val_pretty_printer): Delete.
573
574 * cli/cli-cmds.c (source_script_from_stream): Rewrite to use
575 extension language API.
576 * cli/cli-script.c (execute_control_command): Update to call
577 eval_ext_lang_from_control_command.
578
579 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Update to use
580 enum ext_lang_bt_status values. Update call to
581 apply_ext_lang_frame_filter.
582 (mi_cmd_stack_list_locals): Ditto.
583 (mi_cmd_stack_list_args): Ditto.
584 (mi_cmd_stack_list_variables): Ditto.
585 * mi/mi-main.c: Delete #include "python/python-internal.h".
586 Add #include "extension.h".
587 (mi_cmd_list_features): Replace reference to python internal variable
588 gdb_python_initialized with call to ext_lang_initialized_p.
589
590 * stack.c (backtrace_command_1): Update to use enum ext_lang_bt_status.
591 Update to use enum ext_lang_frame_args. Update to call
592 apply_ext_lang_frame_filter.
593 * python/py-framefilter.c (extract_sym): Update to use enum
594 ext_lang_bt_status.
595 (extract_value, py_print_type, py_print_value): Ditto.
596 (py_print_single_arg, enumerate_args, enumerate_locals): Ditto.
597 (py_mi_print_variables, py_print_locals, py_print_args): Ditto.
598 (py_print_frame): Ditto.
599 (gdbpy_apply_frame_filter): Renamed from apply_frame_filter.
600 New arg extlang. Update to use enum ext_lang_bt_status.
601
602 * top.c (gdb_init): Delete #ifdef HAVE_PYTHON call to
603 finish_python_initialization. Replace with call to
604 finish_ext_lang_initialization.
605
606 * typeprint.c (do_free_global_table): Update to call
607 free_ext_lang_type_printers.
608 (create_global_typedef_table): Update to call
609 start_ext_lang_type_printers.
610 (find_global_typedef): Update to call apply_ext_lang_type_printers.
611 * typeprint.h (struct ext_lang_type_printers): Add forward decl.
612 (type_print_options): Change type of global_printers from "void *"
613 to "struct ext_lang_type_printers *".
614
615 * value.c (preserve_values): Update to call preserve_ext_lang_values.
616 * python/py-value.c: Remove #ifdef HAVE_PYTHON.
617 (gdbpy_preserve_values): Renamed from preserve_python_values.
618 New arg extlang.
619 (!HAVE_PYTHON, preserve_python_values): Delete.
620
621 * utils.c (quit_flag): Delete, moved to extension.c.
622 (clear_quit_flag, set_quit_flag, check_quit_flag): Delete, moved to
623 extension.c.
624
625 * eval.c: Delete #include "python/python.h".
626 * main.c: Delete #include "python/python.h".
627
628 * defs.h: Update comment.
629
6af79985
JB
6302014-02-06 Joel Brobecker <brobecker@adacore.com>
631
632 GDB 7.7 released.
633
12c5175d
MK
6342014-02-05 Mark Kettenis <kettenis@gnu.org>
635
636 * c-exp.y (YYPRINT, c_print_token): Only define if YYBISON is
637 defined.
638
8dc5b319
YQ
6392014-02-05 Yao Qi <yao@codesourcery.com>
640
641 * remote.c (remote_pass_signals): Remove local 'buf' and use
642 rs->buf.
643 (remote_program_signals): Likewise.
644
de7b2893
YQ
6452014-02-05 Yao Qi <yao@codesourcery.com>
646
647 * ctf.c: Include "inferior.h" and "gdbthread.h".
648 (CTF_PID): A new macro.
649 (ctf_open): Call inferior_appeared and add_thread_silent.
650 (ctf_close): Call exit_inferior_silent and set inferior_ptid.
651 (ctf_thread_alive): New function.
652 (init_ctf_ops): Install ctf_thread_alive to to_thread_alive.
653
66d032ac
YQ
6542014-02-05 Yao Qi <yao@codesourcery.com>
655
656 Revert this patch:
657
658 2013-05-24 Yao Qi <yao@codesourcery.com>
659
660 * tracepoint.c (TFILE_PID): Remove.
661 (tfile_open): Don't add thread and inferior.
662 (tfile_close): Don't set 'inferior_ptid'. Don't call
663 exit_inferior_silent.
664 (tfile_thread_alive): Remove.
665 (init_tfile_ops): Don't set field 'to_thread_alive' of
666 tfile_ops.
667
f4ccffad
CE
6682014-02-04 Christian Eggers <ceggers@gmx.de> (tiny change)
669
670 * remote.c (remote_start_remote): Call remote_check_symbols even
671 if only symbol-file (not file) has been given.
672
591a12a1
UW
6732014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
674
675 * gdbarch.sh (skip_entrypoint): New callback.
676 * gdbarch.c, gdbarch.h: Regenerate.
677 * symtab.c (skip_prologue_sal): Call gdbarch_skip_entrypoint.
678 * infrun.c (fill_in_stop_func): Likewise.
679 * ppc-linux-tdep.c: Include "elf/ppc64.h".
680 (ppc_elfv2_elf_make_msymbol_special): New function.
681 (ppc_elfv2_skip_entrypoint): Likewise.
682 (ppc_linux_init_abi): Install them for ELFv2.
683
cc0e89c5
UW
6842014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
685
686 * ppc-sysv-tdep.c (ppc64_aggregate_candidate): New routine.
687 (ppc64_elfv2_abi_homogeneous_aggregate): Likewise.
688 (ppc64_sysv_abi_push_param): Handle ELFv2 homogeneous structs.
689 (ppc64_sysv_abi_return_value): Likewise. Also, handle small
690 structures returned in GPRs.
691
52f548e4
UW
6922014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
693
694 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Use correct
695 offset to the stack parameter list for the ELFv2 ABI.
696
d4094b6a
UW
6972014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
698
699 * ppc-linux-tdep.c (ppc_linux_init_abi): Only call
700 set_gdbarch_convert_from_func_ptr_addr and
701 set_gdbarch_elf_make_msymbol_special for ELFv1.
702 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_param): Only handle
703 function descriptors on ELFv1.
704 (ppc64_sysv_abi_push_dummy_call): Likewise. On ELFv2,
705 set up r12 at function entry.
706
cd453cd0
UW
7072014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
708
709 * ppc-tdep.h (enum powerpc_elf_abi): New data type.
710 (struct gdbarch_tdep): New member elf_abi.
711
712 * rs6000-tdep.c: Include "elf/ppc64.h".
713 (rs6000_gdbarch_init): Detect ELF ABI version.
714
0ff3e01f
UW
7152014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
716
717 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_freg): Use correct order
718 within a register pair holding a DFP 128-bit value on little-endian.
719 (ppc64_sysv_abi_return_value_base): Likewise.
720 * rs6000-tdep.c (dfp_pseudo_register_read): Likewise.
721 (dfp_pseudo_register_write): Likewise.
722
5b757e5d
UW
7232014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
724
725 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_freg): Use correct
726 offset on little-endian when passing _Decimal32.
727 (ppc64_sysv_abi_return_value_base): Likewise for return values.
728
084ee545
UW
7292014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
730
731 * rs6000-tdep.c (efpr_pseudo_register_read): Use correct offset
732 of the overlapped FP register within the VSX register on little-
733 endian platforms.
734 (efpr_pseudo_register_write): Likewise.
735
d63167af
UW
7362014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
737
738 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_val): Use correct
739 offset on little-endian when passing small structures.
740
e765b44c
UW
7412014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
742
743 * ppc-sysv-tdep.c (get_decimal_float_return_value): Update comment.
744 (struct ppc64_sysv_argpos): New data structure.
745 (ppc64_sysv_abi_push_float): Remove.
746 (ppc64_sysv_abi_push_val): New function.
747 (ppc64_sysv_abi_push_integer): Likewise.
748 (ppc64_sysv_abi_push_freg): Likewise.
749 (ppc64_sysv_abi_push_vreg): Likewise.
750 (ppc64_sysv_abi_push_param): Likewise.
751 (ppc64_sysv_abi_push_dummy_call): Refactor to use those new routines.
752 (ppc64_sysv_abi_return_value_base): New function.
753 (ppc64_sysv_abi_return_value): Refactor to use it.
754
36c24d95
UW
7552014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
756
757 * NEWS: Document new target powerpc64le-*-linux*.
758
26fd9228
MK
7592014-02-04 Mark Kettenis <kettenis@gnu.org>
760
761 * sparc64obsd-tdep.c (sparc64obsd_gregset): New variable.
762 (sparc64obsd_supply_gregset): Handle registers sets used in ELF
763 core dumps.
764 (sparc64obsd_init_abi): Adjust minimum size of the general purpose
765 register set used in ELF core dumps. Add floating-point register set.
766
c5bb7362
KB
7672014-02-03 Kevin Buettner <kevinb@redhat.com>
768
769 * mn10300-tdep.c (mn10300_dwarf2_reg_to_regnum): Rewrite
770 dwarf2_to_gdb[] table using symbolic constants. Adjust
771 penultimate entry from number representing the PC register
772 to symbolic constant representing the MDR register. Add
773 constant for the PC register to the end of the table.
774
af09351e
MK
7752014-02-03 Mark Kettenis <kettenis@gnu.org>
776
777 * bsd-kvm.c: Include <sys/param.h>
778
8507e05d
MK
7792014-02-03 Mark Kettenis <kettenis@gnu.org>
780
781 * sparc64nbsd-nat.c (sparc64nbsd_supply_fpregset): Fix prototype.
782
ae56bfb8
JB
7832014-01-31 Joel Brobecker <brobecker@adacore.com>
784
785 * ada-lang.h (clear_ada_sym_cache): Delete.
786
718ee4dc
UW
7872014-01-30 Ulrich Weigand  <uweigand@de.ibm.com>
788
789 * auxv.c (fprint_target_auxv): Handle AT_HWCAP2.
790
401e27fd
JM
7912014-01-29 Jose E. Marchesi <jose.marchesi@oracle.com>
792
793 * sparc64-linux-tdep.c (sparc64_linux_step_trap): Get PC from
794 the sigreturn register save area only if the syscall is
795 sigreturn.
796
a7c88acd
JB
7972014-01-29 Joel Brobecker <brobecker@adacore.com>
798
799 * valops.c (value_slice): Minor reformatting.
800
fa0079ea
UW
8012014-01-28 Ulrich Weigand  <uweigand@de.ibm.com>
802
803 * ppc64-tdep.c (ppc64_standard_linkage7): Fix typo.
804
c6044dd1
JB
8052014-01-28 Joel Brobecker <brobecker@adacore.com>
806
807 * ada-lang.c (maint_set_ada_cmdlist, maint_show_ada_cmdlist):
808 New static globals.
809 (maint_set_ada_cmd, maint_show_ada_cmd): New functions.
810 (ada_ignore_descriptive_types_p): New static global.
811 (find_parallel_type_by_descriptive_type): Return immediately
812 if ada_ignore_descriptive_types_p is set.
813 (_initialize_ada_language): Register new commands "maintenance
814 set ada", "maintenance show ada", "maintenance set ada
815 ignore-descriptive-types" and "maintenance show ada
816 ignore-descriptive-types".
817 * NEWS: Add entry for new "maint ada set/show
818 ignore-descriptive-types" commands.
819
568e808b
MM
8202014-01-27 Markus Metzger <markus.t.metzger@intel.com>
821
822 * record-btrace.c (record_btrace_close): Call btrace_teardown
823 for all threads.
824
467d141b
JB
8252014-01-27 Joel Brobecker <brobecker@adacore.com>
826
827 * ada-lang.c: Remove "#ifdef UI_OUT" condition for including
828 "ui-out.h".
829
fb151210
JB
8302014-01-27 Joel Brobecker <brobecker@adacore.com>
831
832 * ada-typeprint (type_is_full_subrange_of_target_type):
833 New function.
834 (print_range): Add parameter bounds_prefered_p. If not set,
835 try printing range types using the name of their base type.
836 (print_range_type): Add parameter bounds_prefered_p.
837 Use it in call to print_range.
838 (print_array_type, ada_print_type): Update calls to print_range
839 and print_range_type.
840
aba02109
JB
8412014-01-27 Joel Brobecker <brobecker@adacore.com>
842
843 * ada-typeprint.c (print_array_type, print_choices, print_range)
844 (print_range_bound, print_dynamic_range_bound, print_range_type):
845 Remove declaration.
846
e62e21fd
JB
8472014-01-27 Joel Brobecker <brobecker@adacore.com>
848
849 * ada-typeprint.c (print_range): Add missing empty line
850 after local declaration.
851
859cf5d1
JB
8522014-01-27 Joel Brobecker <brobecker@adacore.com>
853
854 * ada-valprint.c (print_optional_low_bound): Get index_type's
855 target type for as long as it is a TYPE_CODE_RANGE.
856
25790f6f
JB
8572014-01-27 Joel Brobecker <brobecker@adacore.com>
858
859 * procfs.c (procfs_make_note_section): Remove assertion and
860 associated comment.
861
6b6aa828
YQ
8622014-01-24 Yao Qi <yao@codesourcery.com>
863
864 * remote.c (remote_read_bytes): Change type of len to ULONGEST.
865 * corelow.c (get_core_siginfo): Likewise.
866
5d6df423
YQ
8672014-01-24 Yao Qi <yao@codesourcery.com>
868
869 * remote.c (remote_write_bytes_aux): Change type of 'len' to
870 ULONGEST. Don't check 'len' is negative.
871 (remote_write_bytes): Change type of 'len' to ULONGEST.
872
83b645b8
TT
8732014-01-23 Tom Tromey <tromey@redhat.com>
874
875 PR python/16485:
876 * python/lib/gdb/FrameDecorator.py: (FrameVars.fetch_frame_args):
877 Handle exception from frame.block.
878 (FrameVars.fetch_frame_locals): Likewise.
879
0740f8d8
TT
8802014-01-23 Tom Tromey <tromey@redhat.com>
881
882 PR python/16487:
883 * python/py-framefilter.c (py_print_frame): Don't call Py_DECREF
884 on a NULL pointer. Move "goto error" to correct place.
885
21909fa1
TT
8862014-01-23 Tom Tromey <tromey@redhat.com>
887
888 PR python/16491:
889 * python/py-framefilter.c (apply_frame_filter): Call
890 ensure_python_env after computing gdbarch.
891
17fde6d0
YQ
8922014-01-23 Yao Qi <yao@codesourcery.com>
893
894 * target.c (raw_memory_xfer_partial): Change argument type
895 from void * to gdb_byte *.
896 (memory_xfer_partial_1, memory_xfer_partial): Likewise.
897
87ce2a04
DE
8982014-01-22 Doug Evans <dje@google.com>
899
900 New gdbserver option --debug-format=timestamp.
901 * NEWS: Mention it.
902
237b092b
AA
9032014-01-22 Andreas Arnez <arnez@vnet.linux.ibm.com>
904
905 * syscalls/s390x-linux.xml: New file.
906 * syscalls/s390-linux.xml: New file.
907 * s390-linux-tdep.c (XML_SYSCALL_FILENAME_S390): New macro.
908 (XML_SYSCALL_FILENAME_S390X): Likewise.
909 (op_svc): New enum value for SVC opcode.
910 (s390_sigtramp_frame_sniffer): Replace literal by 'op_svc'.
911 (s390_linux_get_syscall_number): New function.
912 (s390_gdbarch_init): Register '*get_syscall_number' and the
913 syscall xml file name.
914 * data-directory/Makefile.in (SYSCALLS_FILES): Add
915 "s390-linux.xml" and "s390x-linux.xml".
916 * NEWS: Announce new feature.
917
54bff650
BS
9182014-01-22 Baruch Siach <baruch@tkos.co.il>
919
920 * xtensa-tdep.h (xtensa_elf_greg_t): Change type to uint32_t.
921
14e361d7
PA
9222014-01-22 Pedro Alves <palves@redhat.com>
923
924 * xtensa-config.c: Include defs.h.
925
46bbb3ed
JB
9262014-01-22 Joel Brobecker <brobecker@adacore.com>
927
928 * common/common-utils.h: Add "ARI:" comment beside __func__
929 reference.
930
3a80edfc
JB
9312014-01-22 Joel Brobecker <brobecker@adacore.com>
932
933 * common/common-utils.h (FUNCTION_NAME): Expand the macro's
934 documentation a bit.
935
4869db5e
RM
9362014-01-21 Roland McGrath <mcgrathr@google.com>
937
938 * configure.ac: Call AM_PROG_INSTALL_STRIP.
939 * configure: Regenerate.
940 * aclocal.m4: Regenerate.
941 * Makefile.in (install_sh, INSTALL_STRIP_PROGRAM, STRIP):
942 New substituted variables.
943 (install-strip): New target.
944 (INSTALL_SCRIPT): New substituted variable.
945 (FLAGS_TO_PASS): Add it.
946 (install-only): Use $(INSTALL_SCRIPT) rather than
947 $(INSTALL_PROGRAM) for gcore.
948
9ea4267d
TT
9492014-01-20 Tom Tromey <tromey@redhat.com>
950
951 * cli/cli-decode.h (struct cmd_list_element): Move all bitfields
952 together.
953
1f2bdf09
TT
9542014-01-20 Tom Tromey <tromey@redhat.com>
955
956 * cli/cli-decode.c (add_cmd, deprecate_cmd, add_alias_cmd)
957 (add_setshow_cmd_full, delete_cmd, lookup_cmd_1)
958 (deprecated_cmd_warning, complete_on_cmdlist): Update.
959 * cli/cli-decode.h (CMD_DEPRECATED, DEPRECATED_WARN_USER)
960 (MALLOCED_REPLACEMENT, DOC_ALLOCATED): Remove.
961 (struct cmd_list_element) <flags>: Remove.
962 <cmd_deprecated, deprecated_warn_user, malloced_replacement,
963 doc_allocated>: New fields.
964 <hook_in, allow_unknown, abbrev_flag, type, var_type>: Now
965 bitfields.
966 * maint.c (maintenance_do_deprecate): Update.
967 * top.c (execute_command): Update.
968
e671835b
BS
9692014-01-20 Baruch Siach <baruch@tkos.co.il>
970
971 * xtensa-linux-nat.c: Include asm/ptrace.h.
972
50367cd2
IB
9732014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
974
975 * Makefile.in (SFILES): Add d-support.c.
976 (COMMON_OBS): Add d-support.o.
977 * d-lang.h (d_parse_symbol): Add comment, now defined in
978 d-support.c.
979 * d-lang.c (parse_call_convention)
980 (parse_attributes, parse_function_types)
981 (parse_function_args, parse_type, parse_identifier)
982 (call_convention_p, d_parse_symbol): Move functions to ...
983 * d-support.c: ... New file.
984
ec9f644a
IB
9852014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
986
987 * d-lang.h (d_parse_symbol): Add declaration.
988 * d-lang.c (extract_identifiers)
989 (extract_type_info): Remove functions.
990 (parse_call_convention, parse_attributes)
991 (parse_function_types, parse_function_args)
992 (parse_type, parse_identifier, call_convention_p)
993 (d_parse_symbol): New functions.
994 (d_demangle): Use d_parse_symbol to demangle D symbols.
995
94b1b47e
IB
9962014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
997
998 * d-lang.h (struct builtin_d_type): New data type.
999 (builtin_d_type): Add declaration.
1000 * d-lang.c (d_language_arch_info, build_d_types)
1001 (builtin_d_type): New functions.
1002 (enum d_primitive_types): New data type.
1003 (d_language_defn): Change c_language_arch_info to
1004 d_language_arch_info.
1005 (d_type_data): New static variable.
1006 (_initialize_d_language): Initialize d_type_data.
1007
63778547
IB
10082014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
1009
1010 * d-lang.h (d_main_name): Add declaration.
1011 * d-lang.c (d_main_name): New function.
1012 * symtab.c (find_main_name): Add call to d_main_name.
1013
3271ba66
IB
10142014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
1015
1016 * d-lang.c (d_language_defn): Change macro_expansion_c to
1017 macro_expansion_no.
1018
d36b3012
IB
10192014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
1020
1021 * MAINTAINERS: Add myself as a write-after-approval maintainer.
1022
c90a6fb7
SDJ
10232014-01-17 Sergio Durigan Junior <sergiodj@redhat.com>
1024
1025 * breakpoint.c (insert_bp_location): Add "volatile" keyword to "struct
1026 gdb_exception" declaration.
1027 * remote.c (getpkt_or_notif_sane): Likewise.
1028
749234e5
DE
10292014-01-17 Doug Evans <dje@google.com>
1030
1031 * common/gdb_vecs.c (delim_string_to_char_ptr_vec_append): New
1032 function, contents of dirnames_to_char_ptr_vec_append moved here.
1033 (delim_string_to_char_ptr_vec): New function.
1034 (dirnames_to_char_ptr_vec_append): Rewrite.
1035 * common/gdb_vecs.h (delim_string_to_char_ptr_vec): Declare.
1036
df049a58
DE
10372014-01-17 Doug Evans <dje@google.com>
1038
1039 * common/common-utils.h (FUNCTION_NAME): Renamed from ASSERT_FUNCTION,
1040 and moved here ...
1041 * common/gdb_assert.h (ASSERT_FUNCTION): ... from here.
1042 #include "common-utils.h".
1043 (gdb_assert, gdb_assert_fail, gdb_assert_not_reached): Update.
1044 * common/vec.h (VEC_ASSERT_PASS): Update.
1045 * darwin-nat.h: Replace #include of gdb_assert.h with common-utils.h.
1046 (MACH_CHECK_ERROR): Update.
1047
69f97648
SM
10482014-01-17 Simon Marchi <simon.marchi@ericsson.com>
1049
1050 * gdbarch.sh (gdbarch_address_class_name_to_type_flags): Add
1051 comments.
1052 * gdbarch.h: Regenerate.
1053
98b1cfdc
TT
10542014-01-16 Tom Tromey <tromey@redhat.com>
1055
1056 * value.c (struct value) <regnum>: Move earlier.
1057
77a19445
TT
10582014-01-16 Tom Tromey <tromey@redhat.com>
1059
1060 * remote.c (extended_remote_create_inferior): Rename from
1061 extended_remote_create_inferior_1. Add "ops" argument. Remove
1062 old implementation.
1063
62261490
PA
10642014-01-16 Pedro Alves <palves@redhat.com>
1065
1066 * s390-linux-tdep.c (s390_frame_unwind_cache): Swallow
1067 NOT_AVAILABLE_ERROR errors while parsing the prologue or reading
1068 the backchain.
1069
4d65956b
DE
10702014-01-16 Doug Evans <dje@google.com>
1071
1072 * dwarf2read.c (open_and_init_dwp_file): Fix typo in comment.
1073
52834460
MM
10742014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1075
1076 * btrace.h (btrace_thread_flag): New.
1077 (struct btrace_thread_info) <flags>: New.
1078 * record-btrace.c (record_btrace_resume_thread)
1079 (record_btrace_find_thread_to_move, btrace_step_no_history)
1080 (btrace_step_stopped, record_btrace_start_replaying)
1081 (record_btrace_step_thread, record_btrace_decr_pc_after_break)
1082 (record_btrace_find_resume_thread): New.
1083 (record_btrace_resume, record_btrace_wait): Extend.
1084 (record_btrace_can_execute_reverse): New.
1085 (record_btrace_open): Fail in non-stop mode.
1086 (record_btrace_set_replay): Split into this, ...
1087 (record_btrace_stop_replaying): ... this, ...
1088 (record_btrace_clear_histories): ... and this.
1089 (init_record_btrace_ops): Init to_can_execute_reverse.
1090 * NEWS: Announce it.
1091
118e6252
MM
10922014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1093
1094 * target.h (struct target_ops) <to_decr_pc_after_break>: New.
1095 (forward_target_decr_pc_after_break)
1096 (target_decr_pc_after_break): New.
1097 * target.c (forward_target_decr_pc_after_break)
1098 (target_decr_pc_after_break): New.
1099 * aix-thread.c (aix_thread_wait): Call target_decr_pc_after_break
1100 instead of gdbarch_decr_pc_after_break.
1101 * darwin-nat.c (cancel_breakpoint): Call target_decr_pc_after_break
1102 instead of gdbarch_decr_pc_after_break.
1103 * infrun.c (adjust_pc_after_break): Call target_decr_pc_after_break
1104 instead of gdbarch_decr_pc_after_break.
1105 * linux-nat.c (cancel_breakpoint): Call target_decr_pc_after_break
1106 instead of gdbarch_decr_pc_after_break.
1107 * linux-thread-db.c (check_event): Call target_decr_pc_after_break
1108 instead of gdbarch_decr_pc_after_break.
1109 * record-full.c (record_full_wait_1): Call target_decr_pc_after_break
1110 instead of gdbarch_decr_pc_after_break.
1111
6e07b1d2
MM
11122014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1113
1114 * btrace.c: Include regcache.h.
1115 (btrace_add_pc): New.
1116 (btrace_enable): Call btrace_add_pc.
1117 (btrace_is_empty): New.
1118 * btrace.h (btrace_is_empty): New.
1119 * record-btrace.c (require_btrace, record_btrace_info): Call
1120 btrace_is_empty.
1121
969c39fb
MM
11222014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1123
1124 * common/linux-btrace.c (perf_event_read_bts, linux_read_btrace):
1125 Support delta reads.
1126 (linux_disable_btrace): Change return type.
1127 * common/linux-btrace.h (linux_read_btrace): Change parameters
1128 and return type to allow error reporting. Update users.
1129 (linux_disable_btrace): Change return type. Update users.
1130 * common/btrace-common.h (btrace_read_type) <BTRACE_READ_DELTA>:
1131 New.
1132 (btrace_error): New.
1133 (btrace_block) <begin>: Comment on BEGIN == 0.
1134 * btrace.c (btrace_compute_ftrace): Start from the end of
1135 the current trace.
1136 (btrace_stitch_trace, btrace_clear_history): New.
1137 (btrace_fetch): Read delta trace, return if replaying.
1138 (btrace_clear): Move clear history code to btrace_clear_history.
1139 (parse_xml_btrace): Throw an error if parsing failed.
1140 * target.h (struct target_ops) <to_read_btrace>: Change parameters
1141 and return type to allow error reporting.
1142 (target_read_btrace): Change parameters and return type to allow
1143 error reporting.
1144 * target.c (target_read_btrace): Update.
1145 * remote.c (remote_read_btrace): Support delta reads. Pass
1146 errors on.
1147 * NEWS: Announce it.
1148
0b722aec
MM
11492014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1150
1151 * record.h (record_btrace_frame_unwind)
1152 (record_btrace_tailcall_frame_unwind): New declarations.
1153 * dwarf2-frame: Include record.h
1154 (dwarf2_frame_cfa): Throw an error for btrace frames.
1155 * record-btrace.c: Include hashtab.h.
1156 (btrace_get_bfun_name): New.
1157 (btrace_call_history): Call btrace_get_bfun_name.
1158 (struct btrace_frame_cache): New.
1159 (bfcache): New.
1160 (bfcache_hash, bfcache_eq, bfcache_new): New.
1161 (btrace_get_frame_function): New.
1162 (record_btrace_frame_unwind_stop_reason): Allow unwinding.
1163 (record_btrace_frame_this_id): Compute own id.
1164 (record_btrace_frame_prev_register): Provide PC, throw_error
1165 for all other registers.
1166 (record_btrace_frame_sniffer): Detect btrace frames.
1167 (record_btrace_tailcall_frame_sniffer): New.
1168 (record_btrace_frame_dealloc_cache): New.
1169 (record_btrace_frame_unwind): Add new functions.
1170 (record_btrace_tailcall_frame_unwind): New.
1171 (_initialize_record_btrace): Allocate cache.
1172 * btrace.c (btrace_clear): Call reinit_frame_cache.
1173 * NEWS: Announce it.
1174
066ce621
MM
11752014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1176
1177 * record-btrace.c (record_btrace_set_replay)
1178 (record_btrace_goto_begin, record_btrace_goto_end)
1179 (record_btrace_goto): New.
1180 (init_record_btrace_ops): Initialize them.
1181 * NEWS: Announce it.
1182
e2887aa3
MM
11832014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1184
1185 * record-btrace.c (record_btrace_find_new_threads)
1186 (record_btrace_thread_alive): New.
1187 (init_record_btrace_ops): Initialize to_find_new_threads and
1188 to_thread_alive.
1189
b2f4cfde
MM
11902014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1191
1192 * record-btrace.c (record_btrace_resume): New.
1193 (record_btrace_wait): New.
1194 (init_record_btrace_ops): Initialize to_wait and to_resume.
1195
633785ff
MM
11962014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1197
1198 * record-btrace.c (record_btrace_xfer_partial)
1199 (record_btrace_insert_breakpoint, record_btrace_remove_breakpoint)
1200 (record_btrace_allow_memory_access): New.
1201 (init_record_btrace_ops): Initialize new methods.
1202 * target.c (raw_memory_xfer_partial): Bail out if target reports
1203 that this memory is not available.
1204
3db08215
MM
12052014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1206
1207 * target.h (target_ops) <to_insert_breakpoint>
1208 <to_remove_breakpoint>: Add target_ops parameter.
1209 (forward_target_insert_breakpoint): New.
1210 (forward_target_remove_breakpoint): New.
1211 (memory_remove_breakpoint, memory_insert_breakpoint):
1212 Add target_ops parameter.
1213 * target.c (target_insert_breakpoint): Split into this and ...
1214 (forward_target_insert_breakpoint): ... this.
1215 (target_remove_breakpoint): Split into this and ...
1216 (forward_target_remove_breakpoint): ... this.
1217 (debug_to_insert_breakpoint): Add target_ops parameter.
1218 Call forward_target_insert_breakpoint.
1219 (debug_to_remove_breakpoint): Add target_ops parameter.
1220 Call forward_target_remove_breakpoint.
1221 (update_current_target): Do not inherit or default to_insert_breakpoint
1222 and to_remove_breakpoint.
1223 * corelow.c (ignore): Add target_ops parameter.
1224 * exec.c (ignore): Add target_ops parameter.
1225 * mem-break.c (memory_insert_breakpoint, memory_remove_breakpoint):
1226 Add target_ops parameter.
1227 * monitor.c (monitor_insert_breakpoint, monitor_remove_breakpoint):
1228 Add target_ops parameter.
1229 * nto-procfs.c (procfs_insert_breakpoint, procfs_remove_breakpoint):
1230 Add target_ops parameter.
1231 * record-full.c (record_full_beneath_to_insert_breakpoint)
1232 (record_full_beneath_to_remove_breakpoint, tmp_to_insert_breakpoint)
1233 (tmp_to_remove_breakpoint, record_full_insert_breakpoint)
1234 (record_full_remove_breakpoint, record_full_core_insert_breakpoint)
1235 (record_full_core_remove_breakpoint): Add target_ops parameter.
1236 Update users.
1237 (record_full_beneath_to_insert_breakpoint_ops)
1238 (record_full_beneath_to_remove_breakpoint_ops)
1239 (tmp_to_insert_breakpoint_ops, tmp_to_remove_breakpoint_ops): New.
1240 (record_full_open): Initialize tmp_to_insert_breakpoint_ops,
1241 tmp_to_remove_breakpoint_ops,
1242 record_full_beneath_to_insert_breakpoint_ops, and
1243 record_full_beneath_to_remove_breakpoint_ops.
1244 * remote-m32r-sdi.c (m32r_insert_breakpoint)
1245 (m32r_remove_breakpoint): Add target_ops parameter.
1246 * remote-mips.c (mips_insert_breakpoint, mips_remove_breakpoint):
1247 Add target_ops parameter.
1248 * remote.c (remote_insert_breakpoint, remote_remove_breakpoint):
1249 Add target_ops parameter.
1250
cecac1ab
MM
12512014-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
1252 Markus Metzger <markus.t.metzger@intel.com>
1253
1254 * record-btrace.c: Include frame-unwind.h.
1255 (record_btrace_frame_unwind_stop_reason)
1256 (record_btrace_frame_this_id, record_btrace_frame_prev_register)
1257 (record_btrace_frame_sniffer, record_btrace_frame_unwind):
1258 New.
1259 (init_record_btrace_ops): Install it.
1260
824344ca
MM
12612014-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
1262
1263 * frame.c (get_frame_unwind_stop_reason): Unconditionally call
1264 get_prev_frame_1.
1265
32261e52
MM
12662014-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
1267
1268 * dwarf2-frame.c (dwarf2_frame_cfa): Move UNWIND_UNAVAILABLE check
1269 earlier.
1270
ea001bdc
MM
12712014-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
1272
1273 * frame-unwind.c: Include target.h.
1274 (frame_unwind_try_unwinder): New function with code from ...
1275 (frame_unwind_find_by_frame): ... here. New variable
1276 unwinder_from_target, call also target_get_unwinder)
1277 (target_get_tailcall_unwinder, and frame_unwind_try_unwinder for it.
1278 * target.c (target_get_unwinder, target_get_tailcall_unwinder): New.
1279 * target.h (struct target_ops): New fields to_get_unwinder and
1280 to_get_tailcall_unwinder.
1281 (target_get_unwinder, target_get_tailcall_unwinder): New declarations.
1282
1f3ef581
MM
12832014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1284
1285 * record-btrace.c (record_btrace_fetch_registers)
1286 (record_btrace_store_registers)
1287 (record_btrace_to_prepare_to_store): New.
1288 (init_record_btrace_ops): Add the above.
1289
f32dbf8c
MM
12902014-01-16 Tom Tromey <tromey@redhat.com>
1291
1292 * windows-nat.c (windows_prepare_to_store): Add 'self' argument.
1293 * target.h (struct target_ops) <to_prepare_to_store>: Add
1294 argument.
1295 (target_prepare_to_store): Add argument.
1296 * target.c (debug_to_prepare_to_store): Add argument.
1297 (update_current_target): Update.
1298 * remote.c (remote_prepare_to_store): Add 'self' argument.
1299 * remote-sim.c (gdbsim_prepare_to_store): Add 'self' argument.
1300 * remote-mips.c (mips_prepare_to_store): Add 'self' argument.
1301 * remote-m32r-sdi.c (m32r_prepare_to_store): Add 'self' argument.
1302 * record-full.c (record_full_core_prepare_to_store): Add 'self'
1303 argument.
1304 * ravenscar-thread.c (ravenscar_prepare_to_store): Add argument.
1305 * nto-procfs.c (procfs_prepare_to_store): Add 'self' argument.
1306 * monitor.c (monitor_prepare_to_store): Add 'self' argument.
1307 * inf-child.c (inf_child_prepare_to_store): Add 'self' argument.
1308 * go32-nat.c (go32_prepare_to_store): Add 'self' argument.
1309
07bbe694
MM
13102014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1311
1312 * btrace.h (replay) <replay>: New.
1313 (btrace_is_replaying): New.
1314 * btrace.c (btrace_clear): Free replay iterator.
1315 (btrace_is_replaying): New.
1316 * record-btrace.c (record_btrace_is_replaying): New.
1317 (record_btrace_info): Print insn number if replaying.
1318 (record_btrace_insn_history): Start at replay position.
1319 (record_btrace_call_history): Start at replay position.
1320 (init_record_btrace_ops): Init to_record_is_replaying.
1321
0688d04e
MM
13222014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1323
1324 * record-btrace.c (record_btrace_insn_history_range): Include
1325 end.
1326 (record_btrace_insn_history_from): Adjust range.
1327 (record_btrace_call_history_range): Include
1328 end.
1329 (record_btrace_call_history_from): Adjust range.
1330 * NEWS: Announce changes.
1331
8710b709
MM
13322014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1333
1334 * record.h (enum record_print_flag)
1335 <record_print_indent_calls>: New.
1336 * record.c (get_call_history_modifiers): Recognize /c modifier.
1337 (_initialize_record): Document /c modifier.
1338 * record-btrace.c (btrace_call_history): Add btinfo parameter.
1339 Reorder fields. Optionally indent the function name. Update
1340 all users.
1341 * NEWS: Announce changes.
1342
d0fa7535
MM
13432014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1344
1345 * common/linux-btrace.c (linux_enable_btrace): Enlarge buffer.
1346
5de9129b
MM
13472014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1348
1349 * btrace.c (ftrace_new_function): Start counting at one.
1350 * record-btrace.c (record_btrace_info): Adjust number of calls
1351 and insns.
1352 * NEWS: Announce it.
1353
7acbe133
MM
13542014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1355
1356 * record-btrace.c (btrace_call_history_insn_range): Print
1357 insn range as [begin, end].
1358
23a7fe75
MM
13592014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1360
1361 * btrace.h (struct btrace_func_link): New.
1362 (enum btrace_function_flag): New.
1363 (struct btrace_inst): Rename to ...
1364 (struct btrace_insn): ...this. Update all users.
1365 (struct btrace_func) <ibegin, iend>: Remove.
1366 (struct btrace_func_link): New.
1367 (struct btrace_func): Rename to ...
1368 (struct btrace_function): ...this. Update all users.
1369 (struct btrace_function) <segment, flow, up, insn, insn_offset)
1370 (number, level, flags>: New.
1371 (struct btrace_insn_iterator): Rename to ...
1372 (struct btrace_insn_history): ...this.
1373 Update all users.
1374 (struct btrace_insn_iterator, btrace_call_iterator): New.
1375 (struct btrace_target_info) <btrace, itrace, ftrace>: Remove.
1376 (struct btrace_target_info) <begin, end, level>
1377 <insn_history, call_history>: New.
1378 (btrace_insn_get, btrace_insn_number, btrace_insn_begin)
1379 (btrace_insn_end, btrace_insn_prev, btrace_insn_next)
1380 (btrace_insn_cmp, btrace_find_insn_by_number, btrace_call_get)
1381 (btrace_call_number, btrace_call_begin, btrace_call_end)
1382 (btrace_call_prev, btrace_call_next, btrace_call_cmp)
1383 (btrace_find_function_by_number, btrace_set_insn_history)
1384 (btrace_set_call_history): New.
1385 * btrace.c (btrace_init_insn_iterator)
1386 (btrace_init_func_iterator, compute_itrace): Remove.
1387 (ftrace_print_function_name, ftrace_print_filename)
1388 (ftrace_skip_file): Change
1389 parameter to const.
1390 (ftrace_init_func): Remove.
1391 (ftrace_debug): Use new btrace_function fields.
1392 (ftrace_function_switched): Also consider gaining and
1393 losing symbol information).
1394 (ftrace_print_insn_addr, ftrace_new_call, ftrace_new_return)
1395 (ftrace_new_switch, ftrace_find_caller, ftrace_new_function)
1396 (ftrace_update_caller, ftrace_fixup_caller, ftrace_new_tailcall):
1397 New.
1398 (ftrace_new_function): Move. Remove debug print.
1399 (ftrace_update_lines, ftrace_update_insns): New.
1400 (ftrace_update_function): Check for call, ret, and jump.
1401 (compute_ftrace): Renamed to ...
1402 (btrace_compute_ftrace): ...this. Rewritten to compute call
1403 stack.
1404 (btrace_fetch, btrace_clear): Updated.
1405 (btrace_insn_get, btrace_insn_number, btrace_insn_begin)
1406 (btrace_insn_end, btrace_insn_prev, btrace_insn_next)
1407 (btrace_insn_cmp, btrace_find_insn_by_number, btrace_call_get)
1408 (btrace_call_number, btrace_call_begin, btrace_call_end)
1409 (btrace_call_prev, btrace_call_next, btrace_call_cmp)
1410 (btrace_find_function_by_number, btrace_set_insn_history)
1411 (btrace_set_call_history): New.
1412 * record-btrace.c (require_btrace): Use new btrace thread
1413 info fields.
1414 (record_btrace_info, btrace_insn_history)
1415 (record_btrace_insn_history, record_btrace_insn_history_range):
1416 Use new btrace thread info fields and new iterator.
1417 (btrace_func_history_src_line): Rename to ...
1418 (btrace_call_history_src_line): ...this. Use new btrace
1419 thread info fields.
1420 (btrace_func_history): Rename to ...
1421 (btrace_call_history): ...this. Use new btrace thread info
1422 fields and new iterator.
1423 (record_btrace_call_history, record_btrace_call_history_range):
1424 Use new btrace thread info fields and new iterator.
1425
8372a7cb
MM
14262014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1427
1428 * frame.h (frame_id_build_unavailable_stack_special): New.
1429 * frame.c (frame_id_build_unavailable_stack_special): New.
1430
c2170eef
MM
14312014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1432
1433 * amd64-tdep.c (amd64_classify_insn_at, amd64_insn_is_call)
1434 (amd64_insn_is_ret, amd64_insn_is_jump, amd64_jmp_p): New.
1435 (amd64_init_abi): Add insn_is_call, insn_is_ret, and insn_is_jump
1436 to gdbarch.
1437 * i386-tdep.c (i386_insn_is_call, i386_insn_is_ret)
1438 (i386_insn_is_jump, i386_jmp_p): New.
1439 (i386_gdbarch_init): Add insn_is_call, insn_is_ret, and
1440 insn_is_jump to gdbarch.
1441 * gdbarch.sh (insn_is_call, insn_is_ret, insn_is_jump): New.
1442 * gdbarch.h: Regenerated.
1443 * gdbarch.c: Regenerated.
1444 * arch-utils.h (default_insn_is_call, default_insn_is_ret)
1445 (default_insn_is_jump): New.
1446 * arch-utils.c (default_insn_is_call, default_insn_is_ret)
1447 (default_insn_is_jump): New.
1448
864089d2
MM
14492014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1450
1451 * common/btrace-common.h (btrace_read_type) <btrace_read_all>:
1452 Change to ...
1453 (btrace_read_type) <BTRACE_READ_ALL>: ... this. Update users.
1454 (btrace_read_type) <btrace_read_new>: Change to ...
1455 (btrace_read_type) <BTRACE_READ_NEW>: ... this. Update users.
1456
ed9edfb5
MM
14572014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1458
1459 * common/linux-btrace.c (linux_read_btrace): Free trace from
1460 previous iteration.
1461
fbcbc3fd
DE
14622014-01-15 Doug Evans <dje@google.com>
1463
1464 * dwarf2read.c (open_and_init_dwp_file): Use pulongest to print
1465 uint32_t.
1466
3d548a53
TT
14672014-01-15 Tom Tromey <tromey@redhat.com>
1468
1469 * dbxread.c (process_one_symbol): Use set_objfile_main_name.
1470 * dwarf2read.c (read_partial_die): Use set_objfile_main_name.
1471 * objfiles.c (get_objfile_bfd_data): Initialize language_of_main.
1472 (set_objfile_main_name): New function.
1473 * objfiles.h (struct objfile_per_bfd_storage) <name_of_main,
1474 language_of_main>: New fields.
1475 (set_objfile_main_name): Declare.
1476 * symtab.c (find_main_name): Loop over objfiles to find the main
1477 name and language.
1478 (set_main_name): Now static.
1479 (get_main_info): Add comment.
1480 * symtab.h (set_main_name): Don't declare.
1481
32ac0d11
TT
14822014-01-15 Tom Tromey <tromey@redhat.com>
1483
1484 * symtab.c (main_progspace_key): New global.
1485 (struct main_info): New.
1486 (name_of_main, language_of_main): Remove.
1487 (get_main_info, main_info_cleanup): New function.
1488 (set_main_name, main_name, main_language): Use get_main_info.
1489 (_initialize_symtab): Initialize main_progspace_key.
1490
9e6c82ad
TT
14912014-01-15 Tom Tromey <tromey@redhat.com>
1492
1493 * dbxread.c (process_one_symbol): Update.
1494 * dwarf2read.c (read_partial_die): Update.
1495 * symfile.c (set_initial_language): Call main_language.
1496 * symtab.c (language_of_main): Now static.
1497 (set_main_name): Add 'lang' parameter.
1498 (find_main_name): Update.
1499 (main_language): New function.
1500 (symtab_observer_executable_changed): Update.
1501 * symtab.h (set_main_name): Update.
1502 (language_of_main): Remove.
1503 (main_language): Declare.
1504
6ef55de7
TT
15052014-01-15 Tom Tromey <tromey@redhat.com>
1506
1507 * symfile.c (init_entry_point_info): Use new "initialized" field.
1508 Update.
1509 * objfiles.h (struct entry_point) <initialized>: New field.
1510 (struct objfile_per_bfd_storage) <ei>: New field, moved from...
1511 (struct objfile) <ei>: ...here. Remove.
1512 * objfiles.c (entry_point_address_query): Update.
1513
53eddfa6
TT
15142014-01-15 Tom Tromey <tromey@redhat.com>
1515
1516 * objfiles.c (entry_point_address_query): Relocate entry point
1517 address.
1518 (objfile_relocate1): Do not relocate entry point address.
1519 * objfiles.h (struct entry_info) <entry_point>: Update comment.
1520 <the_bfd_section_index>: New field.
1521 * symfile.c (init_entry_point_info): Find the entry point's
1522 section.
1523
d56e56aa
TT
15242014-01-15 Tom Tromey <tromey@redhat.com>
1525
1526 * solib-frv.c (enable_break): Use entry_point_address_query.
1527
33a97bbe
OJ
15282014-01-15 Omair Javaid <omair.javaid@linaro.org>
1529
1530 * NEWS: Add note on improved process record-replay on
1531 arm*-linux* targets.
1532
c6ec2b30
OJ
15332014-01-15 Omair Javaid <omair.javaid@linaro.org>
1534
1535 * arm-tdep.c (enum arm_record_result): New enum.
1536 (arm_record_unsupported_insn): New function.
1537 (arm_record_coproc_data_proc): Removed.
1538 (thumb2_record_ld_st_multiple): New function.
1539 (thumb2_record_ld_st_dual_ex_tbb): New function.
1540 (thumb2_record_data_proc_sreg_mimm): New function.
1541 (thumb2_record_ps_dest_generic): New function.
1542 (thumb2_record_branch_misc_cntrl): New function.
1543 (thumb2_record_str_single_data): New function.
1544 (thumb2_record_ld_mem_hints): New function.
1545 (thumb2_record_ld_word): New function.
1546 (thumb2_record_lmul_lmla_div): New function.
1547 (thumb2_record_decode_insn_handler): New function.
1548 (decode_insn): Add thumb32 instruction handlers.
1549
97dfe206
OJ
15502014-01-15 Omair Javaid <omair.javaid@linaro.org>
1551
1552 * arm-linux-tdep.c: Include "record-full.h" and "linux-record.h".
1553 (struct arm_linux_record_tdep): Declare.
1554 (arm_canonicalize_syscall): New function.
1555 (arm_all_but_pc_registers_record): New function.
1556 (arm_linux_syscall_record): New function.
1557 (arm_linux_init_abi): Add syscall recording constructs.
1558 * arm-tdep.c (thumb_record_ldm_stm_swi): Update thumb syscall
1559 decoding. (arm_record_coproc_data_proc): Update arm syscall
1560 decoding.
1561 * arm-tdep.h (struct gdbarch_tdep) <arm_swi_record>: Remove.
1562 <arm_syscall_record>: New field.
1563 * configure.tgt (arm*-*-linux*): Add linux-record.o to
1564 gdb_target_obs.
1565
9904a494
OJ
15662014-01-15 Omair Javaid <omair.javaid@linaro.org>
1567
1568 * arm-tdep.c (thumb_record_misc): Update to use sp as base
1569 register for push instruction recording.
1570
f969241e
OJ
15712014-01-15 Omair Javaid <omair.javaid@linaro.org>
1572
1573 * arm-tdep.c (thumb_record_misc): Update to correct logical
1574 error while recording ldm, ldmia and pop instructions.
1575
bfbbec00
OJ
15762014-01-15 Omair Javaid <omair.javaid@linaro.org>
1577
1578 * arm-tdep.c (struct arm_mem_r) <addr>: Change type to uint32_t.
1579
e40adcc9
PA
15802014-01-15 Pedro Alves <palves@redhat.com>
1581
1582 * go32-nat.c (go32_open, go32_close, go32_attach, go32_detach)
1583 (go32_resume, go32_fetch_registers, store_register)
1584 (go32_store_registers, go32_prepare_to_store)
1585 (go32_xfer_memory, go32_files_info, go32_kill_inferior)
1586 (go32_create_inferior, go32_can_run, go32_terminal_init)
1587 (go32_terminal_inferior, go32_terminal_ours): Delete forward
1588 declarations.
1589
b0a16e66
TT
15902014-01-15 Tom Tromey <tromey@redhat.com>
1591
1592 * target.h (async_callback_ftype): New typedef.
1593 (struct target_ops) <to_async>: Use it.
1594
bf7105a4
JB
15952014-01-15 Joel Brobecker <brobecker@adacore.com>
1596
1597 * python/py-value.c (get_field_type): Remove unnecessary curly
1598 braces for single-statement if block.
1599
a8f35c2e
JB
16002014-01-15 Joel Brobecker <brobecker@adacore.com>
1601
1602 * python/py-type.c (convert_field): Add missing empty line
1603 after declarations.
1604
bb4142cf
DE
16052014-01-14 Doug Evans <dje@google.com>
1606
1607 * symfile.h (expand_symtabs_matching): Renamed from
1608 expand_partial_symbol_names. Update prototype.
1609 (map_symbol_filenames): Renamed from map_partial_symbol_filenames.
1610 * symfile.c (expand_symtabs_matching): Renamed from
1611 expand_partial_symbol_names. New args file_matcher, kind.
1612 Rename arg fun to symbol_matcher.
1613 (map_symbol_filenames): Renamed from map_partial_symbol_filenames.
1614 * ada-lang.c (ada_complete_symbol_matcher): Renamed from
1615 ada_expand_partial_symbol_name.
1616 (ada_make_symbol_completion_list): Update to call
1617 expand_symtabs_matching.
1618 (ada_add_global_exceptions): Call expand_symtabs_matching.
1619 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update to
1620 call map_symbol_filenames.
1621 * symtab.c (sources_info): Update to call map_symbol_filenames.
1622 (search_symbols): Call expand_symtabs_matching.
1623 (symbol_completion_matcher): Renamed from expand_partial_symbol_name.
1624 (default_make_symbol_completion_list_break_on): Update to call
1625 expand_symtabs_matching.
1626 (make_source_files_completion_list): Update to call
1627 map_symbol_filenames.
1628
206f2a57
DE
16292014-01-14 Doug Evans <dje@google.com>
1630
1631 * symfile.h (expand_symtabs_file_matcher_ftype): New typedef.
1632 (expand_symtabs_symbol_matcher_ftype): New typedef.
1633 (quick_symbol_functions.expand_symtabs_matching): Update to use.
1634 expand_symtabs_file_matcher_ftype, expand_symtabs_symbol_matcher_ftype.
1635 * symfile.c (expand_partial_symbol_names): Update to use
1636 expand_symtabs_symbol_matcher_ftype.
1637 * dwarf2read.c (dw2_expand_symtabs_matching): Update to use
1638 expand_symtabs_file_matcher_ftype, expand_symtabs_symbol_matcher_ftype.
1639 Arg name_matcher renamed to symbol_matcher.
1640 * psymtab.c (recursively_search_psymtabs): Update to use
1641 expand_symtabs_symbol_matcher_ftype. Arg name_matcher renamed to
1642 sym_matcher.
1643 (expand_symtabs_matching_via_partial): Update to use
1644 expand_symtabs_file_matcher_ftype, expand_symtabs_symbol_matcher_ftype.
1645 Arg name_matcher renamed to symbol_matcher.
1646
540c2971
DE
16472014-01-14 Doug Evans <dje@google.com>
1648
1649 * psymtab.c (expand_partial_symbol_names): Delete, moved to symfile.c.
1650 (map_partial_symbol_filenames): Ditto.
1651 * psymtab.h (expand_partial_symbol_names): Delete, moved to symfile.h.
1652 (map_partial_symbol_filenames): Ditto.
1653 * symfile.c (expand_partial_symbol_names): Moved here from psymtab.c.
1654 (map_partial_symbol_filenames): Ditto.
1655 * symfile.h (expand_partial_symbol_names): Moved here from psymtab.h.
1656 (map_partial_symbol_filenames): Ditto.
1657 * symtab.c: Delete #include "psymtab.h".
1658
8213266a
PA
16592014-01-14 Pedro Alves <palves@redhat.com>
1660 Tom Tromey <tromey@redhat.com>
1661
1662 * infrun.c (use_displaced_stepping): Use find_record_target
1663 instead of RECORD_IS_USED.
1664 (adjust_pc_after_break): Use record_full_is_used instead of
1665 RECORD_IS_USED.
1666 * record-btrace.c (record_btrace_open): Call record_preopen
1667 instead of checking RECORD_IS_USED.
1668 * record-full.c (record_full_shortname)
1669 (record_full_core_shortname): New globals.
1670 (record_full_is_used): New function.
1671 (find_full_open): Call record_preopen instead of checking
1672 RECORD_IS_USED.
1673 (init_record_full_ops): Set the target's shortname to
1674 record_full_shortname.
1675 (init_record_full_core_ops): Set the target's shortname to
1676 record_full_core_shortname.
1677 * record-full.h (record_full_is_used): Declare.
1678 * record.c (find_record_target): Make extern.
1679 (record_preopen): New function.
1680 * record.h (RECORD_IS_USED): Delete macro.
1681 (find_record_target, record_preopen): Declare functions.
1682
7ec1862d
YQ
16832014-01-14 Yao Qi <yao@codesourcery.com>
1684
1685 * gdbarch.sh (core_xfer_shared_libraries): Change its argument
1686 'len''s type to ULONGEST.
1687 (core_xfer_shared_libraries_aix): Likewise.
1688 * gdbarch.c, gdbarch.h: Regenerated.
1689 * i386-cygwin-tdep.c (windows_core_xfer_shared_libraries):
1690 Change type of 'len' to ULONGEST.
1691 * rs6000-aix-tdep.c (rs6000_aix_ld_info_to_xml): Likewise.
1692 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
1693
dea80a27
YQ
16942014-01-14 Yao Qi <yao@codesourcery.com>
1695
1696 * common/linux-osdata.c (linux_xfer_osdata_processes): Change
1697 type of 'len' to ULONGEST.
1698 (linux_xfer_osdata_processgroups): Likewise.
1699 (linux_xfer_osdata_threads): Likewise.
1700 (linux_xfer_osdata_fds): Likewise.
1701 (linux_xfer_osdata_isockets): Likewise.
1702 (linux_xfer_osdata_shm): Likewise.
1703 (linux_xfer_osdata_sem): Likewise.
1704 (linux_xfer_osdata_msg): Likewise.
1705 (linux_common_xfer_osdata): Likewise.
1706 (struct osdata_type) <getter>: Likewise.
1707 * common/linux-osdata.h (linux_common_xfer_osdata): Update
1708 the declaration.
1709
b55e14c7
YQ
17102014-01-14 Yao Qi <yao@codesourcery.com>
1711
1712 * target.h (target_xfer_partial_ftype): Update.
1713 (struct target_ops) <to_xfer_partial>: Change 'len' type to
1714 ULONGEST.
1715 * aix-thread.c (aix_thread_xfer_partial): Change type of
1716 argument 'len' to ULONGEST.
1717 * auxv.c (procfs_xfer_auxv): Likewise.
1718 (ld_so_xfer_auxv): Likewise.
1719 (memory_xfer_auxv): Likewise.
1720 * bfd-target.c (target_bfd_xfer_partial): Likewise.
1721 * bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
1722 * bsd-uthread.c (bsd_uthread_xfer_partial): Likewise.
1723 * corelow.c (core_xfer_partial): Likewise.
1724 * ctf.c (ctf_xfer_partial): Likewise.
1725 * darwin-nat.c (darwin_read_write_inferior): Likewise. Use
1726 '%u'.
1727 (darwin_read_dyld_info): Likewise.
1728 (darwin_xfer_partial): Likewise.
1729 * exec.c (section_table_xfer_memory_partial): Likewise.
1730 (exec_xfer_partial): Likewise.
1731 * exec.h (section_table_xfer_memory_partial): Update
1732 declaration.
1733 * gnu-nat.c (gnu_xfer_memory): Likewise. Call pulongest
1734 instead of plongest.
1735 (gnu_xfer_partial): Likewise.
1736 * ia64-hpux-nat.c (ia64_hpux_xfer_memory): Likewise.
1737 (ia64_hpux_xfer_solib_got): Likewise.
1738 (ia64_hpux_xfer_partial): Likewise.
1739 * ia64-linux-nat.c (ia64_linux_xfer_partial):
1740 * inf-ptrace.c (inf_ptrace_xfer_partial):
1741 * inf-ttrace.c (inf_ttrace_xfer_partial):
1742 * linux-nat.c (linux_xfer_siginfo): Likewise.
1743 (linux_nat_xfer_partial): Likewise.
1744 (spu_enumerate_spu_ids, linux_proc_xfer_spu): Likewise.
1745 (linux_nat_xfer_osdata, linux_xfer_partial): Likewise.
1746 * monitor.c (monitor_xfer_memory): Likewise.
1747 (monitor_xfer_partial): Likewise.
1748 * procfs.c (procfs_xfer_partial): Likewise.
1749 * record-full.c (record_full_xfer_partial): Likewise.
1750 (record_full_core_xfer_partial): Likewise.
1751 * remote-sim.c (gdbsim_xfer_memory): Likewise. Call pulongest
1752 instead of plongest.
1753 (gdbsim_xfer_partial): Likewise.
1754 * remote.c (remote_xfer_partial): Likewise.
1755 * rs6000-aix-tdep.c (rs6000_aix_ld_info_to_xml): Likewise.
1756 * rs6000-aix-tdep.h (rs6000_aix_ld_info_to_xml): Update
1757 declaration.
1758 * rs6000-nat.c (rs6000_xfer_partial): Likewise.
1759 (rs6000_xfer_shared_libraries): Likewise.
1760 * sol-thread.c (sol_thread_xfer_partial): Likewise.
1761 * sparc-nat.c (sparc_xfer_wcookie): Likewise.
1762 (sparc_xfer_partial): Likewise.
1763 * spu-linux-nat.c (spu_proc_xfer_spu): Likewise.
1764 (spu_xfer_partial): Likewise.
1765 * spu-multiarch.c (spu_xfer_partial): Likewise.
1766 * target.c (target_read_live_memory): Likewise.
1767 (memory_xfer_live_readonly_partial): Likewise.
1768 (memory_xfer_partial, memory_xfer_partial_1): Likewise.
1769 (target_xfer_partial, default_xfer_partial): Likewise.
1770 (current_xfer_partial): Likewise.
1771 * tracepoint.c (tfile_xfer_partial): Likewise.
1772 * windows-nat.c (windows_xfer_memory): Likewise. Call
1773 pulongest instead of plongest.
1774 (windows_xfer_partial): Likewise.
1775 (windows_xfer_shared_libraries): Likewise.
1776
05804640
YQ
17772014-01-14 Yao Qi <yao@codesourcery.com>
1778
1779 * rs6000-nat.c (rs6000_xfer_shared_libraries): Use
1780 target_xfer_partial_ftype.
1781
b5b08fb4
SC
17822014-01-13 Siva Chandra Reddy <sivachandra@google.com>
1783
1784 PR python/15464
1785 PR python/16113
1786 * valops.c (value_struct_elt_bitpos): New function
1787 * py-type.c (convert_field): Set 'name' attribute of a gdb.Field
1788 object to 'None' if the field name is an empty string ("").
1789 * python/py-value.c (valpy_getitem): Use 'bitpos' and 'type'
1790 attribute to look for a field when 'name' is 'None'.
1791 (get_field_type): New function
1792
13aaf454
DE
17932014-01-13 Doug Evans <dje@google.com>
1794
1795 PR symtab/16426
1796 * dwarf2read.c (dwarf2_get_dwz_file): Call gdb_bfd_record_inclusion.
1797 (try_open_dwop_file): Ditto.
1798 * gdb_bfd.c: #include "vec.h".
1799 (bfdp): New typedef.
1800 (struct gdb_bfd_data): New member included_bfds.
1801 (gdb_bfd_unref): Unref all included bfds.
1802 (gdb_bfd_record_inclusion): New function.
1803 * gdb_bfd.h (gdb_bfd_record_inclusion): Declare.
1804
c2cec97c
TT
18052014-01-13 Tom Tromey <tromey@redhat.com>
1806
1807 * gdbcore.h (deprecated_core_resize_section_table): Remove.
1808
78e5999d
TT
18092014-01-13 Tom Tromey <tromey@redhat.com>
1810
1811 * defs.h (use_windows): Remove.
1812 * gdb.c (main): Update.
1813 * main.c (captured_main, gdb_main): Update.
1814 * main.h (struct captured_main_args) <use_windows>: Remove.
1815 * top.c (use_windows): Remove.
1816
f2052bbe
TT
18172014-01-13 Tom Tromey <tromey@redhat.com>
1818
1819 * defs.h (deprecated_flush_hook): Remove.
1820
fde4f8ed
JK
18212014-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1822
1823 PR threads/16216
1824 * linux-thread-db.c (try_thread_db_load): Add parameter
1825 check_auto_load_safe. Move here the file_is_auto_load_safe call.
1826 (try_thread_db_load_from_pdir_1): Move it there from here.
1827 (try_thread_db_load_from_sdir): Update caller.
1828 (try_thread_db_load_from_dir): Move it there from here.
1829
bdf61915
PP
18302014-01-13 Patrick Palka <patrick@parcs.ath.cx>
1831
1832 * regformats/regdat.sh: Always rewrite the register file.
1833
f71e1a8d
PA
18342014-01-13 Pedro Alves <palves@redhat.com>
1835
1836 * Makefile.in (CHECK_HEADERS): New variable.
1837 (check-headers:): New rule.
1838
42c85435
TT
18392014-01-13 Tom Tromey <tromey@redhat.com>
1840
1841 * cli/cli-setshow.c (do_set_command): Update.
1842 * defs.h (deprecated_set_hook): Remove.
1843 * top.c (deprecated_set_hook): Remove.
1844
f8de5129
PA
18452014-01-13 Pedro Alves <palves@redhat.com>
1846
1847 * tracepoint.c (tfile_fetch_registers): Don't infer the PC from
1848 the tracepoint if the PC is a pseudo-register.
1849
fc270c35
TT
18502014-01-13 Tom Tromey <tromey@redhat.com>
1851
1852 * defs.h (XCALLOC): Remove.
1853 * bcache.c (bcache_xmalloc): Use XCNEW, not XCALLOC.
1854 (print_bcache_statistics): Use XCNEWVEC, not XCALLOC.
1855 * dwarf2loc.c (allocate_piece_closure): Likewise.
1856 * elfread.c (elf_symfile_segments): Likewise.
1857 (elf_symfile_segments): Likewise.
1858 * gdbtypes.c (copy_type_recursive): Likewise.
1859 * i386-tdep.c (i386_gdbarch_init): Use XCNEW, not XCALLOC.
1860 * jit.c (jit_frame_sniffer): Use XCNEWVEC, not XCALLOC.
1861 * minsyms.c (prim_record_minimal_symbol_full): Use XCNEW, not
1862 XCALLOC.
1863 * mt-tdep.c (mt_gdbarch_init): Likewise.
1864 * opencl-lang.c (allocate_lval_closure): Use XCNEWVEC, not
1865 XCALLOC.
1866 * psymtab.c (psymbol_compare): Use XCNEW, not XCALLOC.
1867 * regcache.c (regcache_xmalloc_1): Use XCNEWVEC, not XCALLOC.
1868 * registry.c (registry_alloc_data): Likewise.
1869 * rs6000-tdep.c (rs6000_gdbarch_init): Use XCNEW, not XCALLOC.
1870 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
1871 * serial.c (serial_fdopen_ops): Likewise.
1872 * solib-aix.c (solib_aix_get_section_offsets): Use XCNEWVEC, not
1873 XCALLOC.
1874 * spu-tdep.c (spu_gdbarch_init): Use XCNEW, not XCALLOC.
1875 * symfile.c (default_symfile_segments): Use XCNEW and XCNEWVEC,
1876 not XCALLOC.
1877
70ba0933
TT
18782014-01-13 Tom Tromey <tromey@redhat.com>
1879
1880 * defs.h (XMALLOC): Remove.
1881 * avr-tdep.c (avr_gdbarch_init): Use XNEW, not XMALLOC.
1882 * bfin-tdep.c (bfin_gdbarch_init): Likewise.
1883 * cli-out.c (struct ui_out *): Likewise.
1884 * cli/cli-dump.c (add_dump_command): Likewise.
1885 (add_dump_command): Likewise.
1886 * complaints.c (get_complaints): Likewise.
1887 (find_complaint): Likewise.
1888 * dwarf2-frame.c (execute_cfa_program): Likewise.
1889 * dwarf2read.c (abbrev_table_read_table): Likewise.
1890 * gdbarch.sh: Likewise.
1891 * gdbarch.c: Rebuild.
1892 * inf-ttrace.c (inf_ttrace_add_page): Likewise.
1893 * interps.c (interp_new): Likewise.
1894 * lm32-tdep.c (lm32_gdbarch_init): Likewise.
1895 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
1896 * mi/mi-console.c (mi_console_file_new): Likewise.
1897 * mi/mi-interp.c (mi_interpreter_init): Likewise.
1898 * mi/mi-out.c (mi_out_new): Likewise.
1899 * mi/mi-parse.c (mi_parse): Likewise.
1900 * microblaze-tdep.c (microblaze_gdbarch_init): Likewise.
1901 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
1902 * observer.c (xalloc_observer_list_node): Likewise.
1903 * regcache.c (regcache_xmalloc_1): Likewise.
1904 * reggroups.c (reggroup_new): Likewise.
1905 (_initialize_reggroup): Likewise.
1906 * registry.c (register_data_with_cleanup): Likewise.
1907 * remote.c (remote_notif_stop_alloc_reply): Likewise.
1908 * ser-base.c (serial_ttystate): Likewise.
1909 * ser-mingw.c (make_pipe_state): Likewise.
1910 * ser-pipe.c (pipe_open): Likewise.
1911 * serial.c (serial_open): Likewise.
1912 * sh64-tdep.c (sh64_gdbarch_init): Likewise.
1913 * tui/tui-data.c (tui_alloc_generic_win_info): Likewise.
1914 (tui_alloc_win_info): Likewise.
1915 (tui_add_content_elements): Likewise.
1916 * tui/tui-file.c (tui_file_new): Likewise.
1917 * tui/tui-out.c (tui_out_new): Likewise.
1918 * ui-file.c (mem_file_new): Likewise.
1919 * ui-out.c (push_level): Likewise.
1920 (make_cleanup_ui_out_end): Likewise.
1921 (append_header_to_list): Likewise.
1922 (ui_out_new): Likewise.
1923 * user-regs.c (user_reg_add_builtin): Likewise.
1924
41bf6aca
TT
19252014-01-13 Tom Tromey <tromey@redhat.com>
1926
1927 * defs.h (XZALLOC): Remove.
1928 * ada-lang.c (get_ada_inferior_data): Use XCNEW, not XZALLOC.
1929 * ada-tasks.c (get_ada_tasks_pspace_data): Likewise.
1930 (get_ada_tasks_inferior_data): Likewise.
1931 * auto-load.c (get_auto_load_pspace_data): Likewise.
1932 * auxv.c (get_auxv_inferior_data): Likewise.
1933 * bfd-target.c (target_bfd_reopen): Likewise.
1934 * breakpoint.c (get_catch_syscall_inferior_data): Likewise.
1935 (deprecated_insert_raw_breakpoint): Likewise.
1936 * bsd-uthread.c (bsd_uthread_pid_to_str): Likewise.
1937 * corelow.c (core_open): Likewise.
1938 * darwin-nat.c (darwin_check_new_threads): Likewise.
1939 (darwin_attach_pid): Likewise.
1940 * dummy-frame.c (dummy_frame_push): Likewise.
1941 * dwarf2-frame.c (dwarf2_frame_cache): Likewise.
1942 * dwarf2loc.c (allocate_piece_closure): Likewise.
1943 * elfread.c (elf_symfile_segments): Likewise.
1944 * eval.c (ptrmath_type_p): Likewise.
1945 * exceptions.c (EXCEPTIONS_SIGJMP_BUF): Likewise.
1946 * gdbtypes.c (alloc_type_arch): Likewise.
1947 (alloc_type_instance): Likewise.
1948 * hppa-tdep.c (hppa_gdbarch_init): Likewise.
1949 * inf-child.c (inf_child_can_use_agent): Likewise.
1950 * inflow.c (get_inflow_inferior_data): Likewise.
1951 * infrun.c (save_infcall_suspend_state): Likewise.
1952 * jit.c (jit_reader_load): Likewise.
1953 (get_jit_objfile_data): Likewise.
1954 (get_jit_program_space_data): Likewise.
1955 (jit_object_open_impl): Likewise.
1956 (jit_symtab_open_impl): Likewise.
1957 (jit_block_open_impl): Likewise.
1958 (jit_frame_sniffer): Likewise.
1959 * linux-fork.c (add_fork): Likewise.
1960 * maint.c (make_command_stats_cleanup): Likewise.
1961 * objfiles.c (get_objfile_pspace_data): Likewise.
1962 * opencl-lang.c (struct lval_closure): Likewise.
1963 * osdata.c (osdata_start_osdata): Likewise.
1964 * progspace.c (new_address_space): Likewise.
1965 (add_program_space): Likewise.
1966 * remote-sim.c (get_sim_inferior_data): Likewise.
1967 * sh-tdep.c (sh_gdbarch_init): Likewise.
1968 * skip.c (Ignore): Likewise.
1969 (skip_delete_command): Likewise.
1970 * solib-aix.c (get_solib_aix_inferior_data): Likewise.
1971 (library_list_start_library): Likewise.
1972 (solib_aix_current_sos): Likewise.
1973 * solib-darwin.c (get_darwin_info): Likewise.
1974 (darwin_current_sos): Likewise.
1975 * solib-dsbt.c (get_dsbt_info): Likewise.
1976 * solib-ia64-hpux.c (new_so_list): Likewise.
1977 (ia64_hpux_get_solib_linkage_addr): Likewise.
1978 * solib-spu.c (append_ocl_sos): Likewise.
1979 (spu_current_sos): Likewise.
1980 * solib-svr4.c (get_svr4_info): Likewise.
1981 (svr4_keep_data_in_core): Likewise.
1982 (library_list_start_library): Likewise.
1983 (svr4_default_sos): Likewise.
1984 (svr4_read_so_list): Likewise.
1985 * solib-target.c (library_list_start_library): Likewise.
1986 (solib_target_current_sos): Likewise.
1987 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
1988 * symfile-debug.c (install_symfile_debug_logging): Likewise.
1989 * symfile.c (default_symfile_segments): Likewise.
1990 * target-descriptions.c (tdesc_data_init): Likewise.
1991 (tdesc_create_reg): Likewise.
1992 (struct tdesc_type *): Likewise.
1993 (tdesc_create_vector): Likewise.
1994 (tdesc_set_struct_size): Likewise.
1995 (struct tdesc_type *): Likewise.
1996 (tdesc_free_feature): Likewise.
1997 (tdesc_create_feature): Likewise.
1998 * windows-nat.c (windows_add_thread): Likewise.
1999 (windows_make_so): Likewise.
2000 * xml-support.c (gdb_xml_body_text): Likewise.
2001 (gdb_xml_create_parser_and_cleanup): Likewise.
2002 (xml_process_xincludes): Likewise.
2003 * xml-syscall.c (allocate_syscalls_info): Likewise.
2004 (syscall_create_syscall_desc): Likewise.
2005
5acfdbae
SDJ
20062014-01-12 Sergio Durigan Junior <sergiodj@redhat.com>
2007
2008 * i386-tdep.c (i386_stap_parse_special_token_triplet): New
2009 function, with code from i386_stap_parse_special_token.
2010 (i386_stap_parse_special_token_three_arg_disp): Likewise.
2011 (i386_stap_parse_special_token): Move code to the two functions
2012 above; simplify it.
2013
0000e5cc
PA
20142014-01-09 Pedro Alves <palves@redhat.com>
2015 Hui Zhu <hui@codesourcery.com>
2016
2017 PR gdb/16101
2018 * breakpoint.c (insert_bp_location): Rename hw_bp_err_string to
2019 bp_err_string. Don't mark the location shlib_disabled if the
2020 error thrown wasn't a generic or memory error. Catch errors
2021 thrown while inserting breakpoints in overlayed code. Output
2022 error message of software breakpoints.
2023 * remote.c (remote_insert_breakpoint): If this breakpoint has
2024 target-side commands but this stub doesn't support Z0 packets,
2025 throw NOT_SUPPORTED_ERROR error.
2026 * exceptions.h (enum errors) <NOT_SUPPORTED_ERROR>: New error.
2027 * target.h (target_insert_breakpoint): Extend comment.
2028 (target_insert_hw_breakpoint): Add comment.
2029
b7ea362b
PA
20302014-01-08 Pedro Alves <palves@redhat.com>
2031
2032 * remote.c (remote_add_thread): Add threads silently if starting
2033 up.
2034 (remote_notice_new_inferior): If in all-stop, and starting up,
2035 don't call notice_new_inferior.
2036 (get_current_thread): New function, factored out from ...
2037 (add_current_inferior_and_thread): ... this. Adjust.
2038 (remote_start_remote) <all-stop>: Fetch the thread list. If we
2039 found any thread, then select the remote's current thread as GDB's
2040 current thread too.
2041
b7bba001
JB
20422014-01-08 Joel Brobecker <brobecker@adacore.com>
2043
2044 * NEWS: Create a new section for the next release branch.
2045 Rename the section of the current branch, now that it has
2046 been cut.
2047
16dfbded
JB
20482014-01-08 Joel Brobecker <brobecker@adacore.com>
2049
2050 GDB 7.7 branch created (79301218fa0f074c5656db0ec8972a5ddcf91fb5):
2051 * version.in: Bump version to 7.7.50.DATE-cvs.
2052
22c90ac1
YQ
20532014-01-08 Yao Qi <yao@codesourcery.com>
2054
2055 * spu-linux-nat.c (spu_symbol_file_add_from_memory): Change
2056 type of 'id' to gdb_byte. Cast 'id' to 'const char *'.
2057 (spu_xfer_partial): Cast 'buf' to 'const char *'.
2058
d64ad97c
YQ
20592014-01-08 Yao Qi <yao@codesourcery.com>
2060
2061 * spu-linux-nat.c (spu_symbol_file_add_from_memory): Pass
2062 return value of bfd_get_filename to symbol_file_add_from_bfd.
2063
f93ba80c
PM
20642014-01-08 Pierre Muller <muller@sourceware.org>
2065
2066 Fix PR16201.
2067 * coff-pe-read.c (struct read_pe_section_data): Add index field.
2068 (add_pe_exported_sym): Use SECTION_DATA->INDEX for call
2069 to prim_record_mininal_symbol_and_info.
2070 (add_pe_forwarded_sym): Use known section number of forwarded symbol
2071 in call to prim_record_minimal_symbol_and_info.
2072 (read_pe_exported_syms): Set index field of section_data.
2073
a4d9ba85
AP
20742014-01-07 Andrew Pinski <apinski@cavium.com>
2075
2076 * features/aarch64-core.xml (cpsr): Change to be 64bit.
2077 * features/aarch64.c: Regenerate.
2078
1b67eb02
AS
20792014-01-07 Andreas Schwab <schwab@linux-m68k.org>
2080
2081 * target.c (return_null): Define.
2082 (update_current_target): Use it instead of return_zero for
2083 functions that return a pointer.
2084
5e3f4fab
EBM
20852014-01-07 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
2086
2087 * source.c (add_path): Fix check for duplicated paths in the previously
2088 included paths.
2089
e2616788
HK
20902014-01-07 Honggyu Kim <hong.gyu.kim@lge.com>
2091
2092 * ada-lang.c: Remove duplicated include statements.
2093 * alphabsd-nat.c: Ditto.
2094 * amd64-darwin-tdep.c: Ditto.
2095 * amd64fbsd-nat.c: Ditto.
2096 * auto-load.c: Ditto.
2097 * ax-gdb.c: Ditto.
2098 * breakpoint.c: Ditto.
2099 * dbxread.c: Ditto.
2100 * fork-child.c: Ditto.
2101 * gdb_usleep.c: Ditto.
2102 * i386-darwin-tdep.c: Ditto.
2103 * i386fbsd-nat.c: Ditto.
2104 * infcmd.c: Ditto.
2105 * inferior.c: Ditto.
2106 * jv-lang.c: Ditto.
2107 * linux-nat.c: Ditto.
2108 * linux-tdep.c: Ditto.
2109 * m68kbsd-nat.c: Ditto.
2110 * m68klinux-nat.c: Ditto.
2111 * microblaze-tdep.c: Ditto.
2112 * mips-linux-tdep.c: Ditto.
2113 * mn10300-tdep.c: Ditto.
2114 * nto-tdep.c: Ditto.
2115 * opencl-lang.c: Ditto.
2116 * osdata.c: Ditto.
2117 * printcmd.c: Ditto.
2118 * regcache.c: Ditto.
2119 * remote-m32r-sdi.c: Ditto.
2120 * remote.c: Ditto.
2121 * symfile.c: Ditto.
2122 * symtab.c: Ditto.
2123 * tilegx-linux-nat.c: Ditto.
2124 * tilegx-tdep.c: Ditto.
2125 * tracepoint.c: Ditto.
2126 * valops.c: Ditto.
2127 * vaxbsd-nat.c: Ditto.
2128 * windows-nat.c: Ditto.
2129 * xtensa-tdep.c: Ditto.
2130
bd1f7788
YQ
21312014-01-07 Yao Qi <yao@codesourcery.com>
2132
2133 * spu-linux-nat.c (_initialize_spu_nat): Declare.
2134
79301218
JB
21352014-01-07 Yao Qi <yao@codesourcery.com>
2136 Joel Brobecker <brobecker@adacore.com>
2137
2138 * aix-thread.c (pdc_read_regs): Cast parameter to uintptr_t.
2139 (pdc_write_regs): Likewise.
2140 (fetch_regs_kernel_thread): Likewise.
2141 (store_regs_kernel_thread): Likewise.
2142
21432014-01-07 Joel Brobecker <brobecker@adacore.com>
2144
2145 * ada-varobj.c (ada_varobj_adjust_for_child_access): Convert
2146 tagged type objects to their actual type.
2147
8e355c5d
JB
21482014-01-07 Joel Brobecker <brobecker@adacore.com>
2149
2150 * ada-valprint.c (print_field_values): Add "language" parameter.
2151 Update calls to print_field_values and print_variant_part.
2152 Pass new parameter "language" in call to val_print instead
2153 of "current_language". Replace call to ada_val_print by call
2154 to val_print.
2155 (print_variant_part): Add "language" parameter.
2156 (ada_val_print_struct_union): Update call to print_field_values.
2157
4fbf5aa5
JB
21582014-01-07 Joel Brobecker <brobecker@adacore.com>
2159
2160 * ada-valprint.c (ui_memcpy): Delete.
2161 (ada_print_floating): Update documentation. Add empty line
2162 between between function documentation and implementation.
2163 Delete variable "buffer". Use ui_file_xstrdup in place of
2164 ui_file_put. Minor adjustments following this change.
2165
71855601
JB
21662014-01-07 Joel Brobecker <brobecker@adacore.com>
2167
2168 * ada-valprint.c (ada_val_print_string): New function,
2169 extracted from ada_val_print_array.
2170 (ada_val_print_array): Replace extracted code by call
2171 to ada_val_print_string followed by a return. Move
2172 "else" branch to the function's top block.
2173
4eb27a30
JB
21742014-01-07 Joel Brobecker <brobecker@adacore.com>
2175
2176 * ada-valprint.c (ada_val_print_array): Move implementation
2177 down. Rename parameter "offset" and "val" into "offset_aligned"
2178 and "original_value" respectively. Add parameter "offset".
2179
34b27950
JB
21802014-01-07 Joel Brobecker <brobecker@adacore.com>
2181
2182 * ada-valprint.c (ada_val_print_ref): Rewrite by mostly
2183 re-organizing the code. Change the "???" message printed
2184 when target type is a TYPE_CODE_UNDEF into
2185 "<ref to undefined type>".
2186
079e4591
JB
21872014-01-07 Joel Brobecker <brobecker@adacore.com>
2188
2189 * ada-valprint.c (print_record): Delete, implementation inlined...
2190 (ada_val_print_struct_union): ... here. Remove call to
2191 ada_check_typedef in inlined implementation.
2192
8004dfd1
JB
21932014-01-07 Joel Brobecker <brobecker@adacore.com>
2194
2195 * ada-valprint.c (ada_val_print_gnat_array): New function,
2196 extracted from ada_val_print_1;
2197 (ada_val_print_ptr, ada_val_print_num, ada_val_print_enum)
2198 (ada_val_print_flt, ada_val_print_struct_union)
2199 (ada_val_print_ref): Likewise.
2200 (ada_val_print_1): Delete variables i and elttype.
2201 Replace extracted-out code by call to corresponding
2202 new functions.
2203
760a2db0
JB
22042014-01-07 Joel Brobecker <brobecker@adacore.com>
2205
2206 * ada-valprint.c (ada_val_print_1): Remove call to gdb_flush.
2207
3a92c861
JB
22082014-01-07 Joel Brobecker <brobecker@adacore.com>
2209
2210 * ada-valprint.c (ada_val_print_1): Replace calls to
2211 ada_val_print_1 by calls to val_print.
2212
cd1630f9
JB
22132014-01-07 Joel Brobecker <brobecker@adacore.com>
2214
2215 * ada-valprint.c (ada_val_print_1): Add parameter "language".
2216 Update calls to self accordingly. Replace calls to c_val_print
2217 by calls to val_print.
2218
bdf779a0
JB
22192014-01-07 Joel Brobecker <brobecker@adacore.com>
2220
2221 * ada-valprint.c (print_record): Delete declaration.
2222 (adjust_type_signedness, ada_val_print_1): Likewise.
2223 (ada_val_print): Move function implementation down.
2224 (print_variant_part, print_field_values, print_record):
2225 Move function implementation up.
2226
c0d48811
JB
22272014-01-07 Joel Brobecker <brobecker@adacore.com>
2228
2229 * python/py-type.c (typy_get_name): New function.
2230 (type_object_getset): Add entry for attribute "name".
2231 * NEWS: Add entry mentioning this new attribute.
2232
c26e9cbb
YQ
22332014-01-07 Yao Qi <yao@codesourcery.com>
2234
2235 * gnu-nat.c (set_exceptions_cmd): Remove an empty body 'if'
2236 statement.
2237
0cc6f43d
YQ
22382014-01-07 Yao Qi <yao@codesourcery.com>
2239
2240 * gnu-nat.c (info_port_rights): Add qualifier const to
2241 argument args.
2242
eec03155
YQ
22432014-01-07 Yao Qi <yao@codesourcery.com>
2244
2245 * gnu-nat.c (trace_me): Use 'void' for empty argument list.
2246
f04a82ef
YQ
22472014-01-07 Yao Qi <yao@codesourcery.com>
2248
2249 * gnu-nat.c (make_inf) Update declaration.
2250 (make_inf): Make it static.
2251 (inf_set_traced): Likewise.
2252 (inf_port_to_thread, inf_task_died_status): Likewise.
2253
d57dda0a
YQ
22542014-01-07 Yao Qi <yao@codesourcery.com>
2255
2256 * gnu-nat.c (inf_tid_to_proc): Remove declaration.
2257
3aa8c969
YQ
22582014-01-07 Yao Qi <yao@codesourcery.com>
2259
2260 * gnu-nat.c (_initialize_gnu_nat): Declare.
2261
94123b4f
YQ
22622014-01-07 Yao Qi <yao@codesourcery.com>
2263
2264 * gdbarch.sh (byte_order, byte_order_for_code): Change type to
2265 'enum bfd_endian'.
2266 (struct gdbarch_info) <byte_order>: Change type to
2267 'enum bfd_endian'.
2268 <byte_order_for_code>: Likewise.
2269 * gdbarch.c, gdbarch.h: Regenerated.
2270
dc81d70a
TT
22712014-01-06 Sasha Smundak <asmundak@google.com>
2272
2273 * jit.c: (jit_reader_load_command): Fix JIT reader path creation.
2274
cc2f3c35
TT
22752014-01-06 Tom Tromey <tromey@redhat.com>
2276
2277 * doublest.c (convert_doublest_to_floatformat): Use const, not
2278 CONST.
2279 * somread.c (som_symtab_read): Likewise.
2280
adcf2eed
HZ
22812014-01-07 Hui Zhu <hui@codesourcery.com>
2282
2283 * gdb_bfd.c (gdb_bfd_stash_filename): Removed.
2284 (gdb_bfd_open): Removed gdb_bfd_stash_filename.
2285 (gdb_bfd_fopen): Ditto.
2286 (gdb_bfd_openr): Ditto.
2287 (gdb_bfd_openw): Ditto.
2288 (gdb_bfd_openr_iovec): Ditto.
2289 (gdb_bfd_fdopenr): Ditto.
2290 * gdb_bfd.h (gdb_bfd_stash_filename): Removed.
2291 * solib-aix.c (solib_aix_bfd_open): Alloc object_bfd->filename
2292 with xstrdup.
2293 * solib-darwin.c (darwin_bfd_open): Alloc res->filename
2294 with xstrdup.
2295 * symfile-mem.c (symbol_file_add_from_memory): Removed
2296 gdb_bfd_stash_filename.
2297
50722198
DE
22982014-01-03 Doug Evans <dje@google.com>
2299
2300 * nat/linux-waitpid.c (linux_debug): Remove extraneous \n from
2301 output.
2302
2fa4b862
JB
23032014-01-01 Joel Brobecker <brobecker@adacore.com>
2304
2305 Update year range in copyright notice of all files.
2306
28498c42
JB
23072014-01-01 Joel Brobecker <brobecker@adacore.com>
2308
2309 * top.c (print_gdb_version): Set copyright year to 2014.
2310
7b6e1046
JB
23112014-01-01 Joel Brobecker <brobecker@adacore.com>
2312
2313 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2013.
2314
df96af55 2315For older changes see ChangeLog-2013.
c906108c
SS
2316\f
2317Local Variables:
2318mode: change-log
2319left-margin: 8
2320fill-column: 74
2321version-control: never
57da7796 2322coding: utf-8
c906108c 2323End: