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