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