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