250a25599bb24f4690c918dbdf228461e2931642
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2012-11-12 Joel Brobecker <brobecker@adacore.com>
2
3 * frame.h (deprecated_frame_register_read): Renames
4 frame_register_read.
5 * frame.c (deprecated_frame_register_read): Renames
6 frame_register_read. Update all callers.
7 * i386-tdep.c: Update all callers of frame_register_read.
8 * infcmd.c: Likewise.
9 * jit.c: Likewise.
10 * mips-tdep.c: Likewise.
11 * mt-tdep.c: Likewise.
12 * sh64-tdep.c: Likewise.
13
14 2012-11-12 Joel Brobecker <brobecker@adacore.com>
15
16 * frame.h (frame_register_read): Remove FIXME comment.
17 * frame.c (frame_register_read): Add suggestion explaining
18 which function to use in place of this one.
19
20 2012-11-12 Tom Tromey <tromey@redhat.com>
21
22 * python/python.c (start_type_printers): Initialize 'result_obj'.
23
24 2012-11-12 Tom Tromey <tromey@redhat.com>
25
26 * NEWS: Update.
27 * data-directory/Makefile.in (PYTHON_FILES): Add
28 type_printers.py.
29 * python/lib/gdb/command/type_printers.py: New file.
30 * python/lib/gdb/command/types.py (TypePrinter): New class.
31 (_get_some_type_recognizers, get_type_recognizers,
32 apply_type_recognizers, register_type_printer): New
33 functions.
34 * python/py-objfile.c (objfile_object) <type_printers>: New
35 field.
36 (objfpy_dealloc): Decref new field.
37 (objfpy_new): Set new field.
38 (objfpy_get_type_printers, objfpy_set_type_printers): New
39 functions.
40 (objfile_to_objfile_object): Set new field.
41 (objfile_getset): Add "type_printers".
42 * python/py-progspace.c (pspace_object) <type_printers>: New
43 field.
44 (pspy_dealloc): Decref new field.
45 (pspy_new): Set new field.
46 (pspy_get_type_printers, pspy_set_type_printers): New functions.
47 (pspace_to_pspace_object): Set new field.
48 (pspace_getset): Add "type_printers".
49 * python/python.c (start_type_printers, apply_type_printers,
50 free_type_printers): New functions.
51 (_initialize_python): Set gdb.type_printers.
52 * python/python.h (start_type_printers, apply_type_printers,
53 free_type_printers): Declare.
54 * typeprint.c (type_print_raw_options, default_ptype_flags):
55 Update for new fields.
56 (do_free_global_table, create_global_typedef_table,
57 find_global_typedef): New functions.
58 (find_typedef_in_hash): Use find_global_typedef.
59 (whatis_exp): Use create_global_typedef_table. Change cleanup
60 handling.
61 * typeprint.h (struct type_print_options) <global_typedefs,
62 global_printers>: New fields.
63
64 2012-11-12 Tom Tromey <tromey@redhat.com>
65
66 * c-typeprint.c (find_typedef_for_canonicalize,
67 print_name_maybe_canonical): New functions.
68 (c_print_type): Look up type name.
69 (cp_type_print_derivation_info): Add flags argument. Use
70 print_name_maybe_canonical.
71 (cp_type_print_method_args): Add wrapping.
72 (c_type_print_varspec_prefix): Use print_name_maybe_canonical.
73 (c_type_print_template_args): New function.
74 (c_type_print_base): Change wrapping. Use
75 print_name_maybe_canonical.
76 <TYPE_CODE_STRUCT>: Possibly create a typedef hash, and do
77 type name lookups.
78 * gdbtypes.c (types_equal): No longer static.
79 * gdbtypes.h (types_equal): Declare.
80 * typeprint.c (type_print_raw_options, default_ptype_flags):
81 Update.
82 (struct typedef_hash_table): New.
83 (hash_typedef_field, eq_typedef_field,
84 recursively_update_typedef_hash, add_template_parameters,
85 create_typedef_hash, free_typedef_hash, do_free_typedef_hash,
86 make_cleanup_free_typedef_hash, copy_typedef_hash_element,
87 copy_typedef_hash, find_typedef_in_hash): New functions.
88 * typeprint.h (struct type_print_options) <local_typedefs>:
89 New field.
90 (recursively_update_typedef_hash, add_template_parameters,
91 create_typedef_hash, free_typedef_hash,
92 make_cleanup_free_typedef_hash, copy_typedef_hash,
93 find_typedef_in_hash): Declare.
94
95 2012-11-12 Tom Tromey <tromey@redhat.com>
96
97 * cp-support.c (inspect_type,
98 replace_typedefs_qualified_name, replace_typedefs): Add
99 finder, data arguments. Call as needed.
100 (cp_canonicalize_string_full): New function.
101 (cp_canonicalize_string_no_typedefs): Rewrite.
102 * cp-support.h (canonicalization_ftype): New typedef.
103 (cp_canonicalize_string_full): Declare.
104
105 2012-11-12 Tom Tromey <tromey@redhat.com>
106
107 * NEWS: Update.
108 * c-typeprint.c (c_type_print_base): Handle print_method and
109 print_typedefs flags.
110 * gdbcmd.h (setprinttypelist, showprinttypelist): Declare.
111 * python/py-type.c (typy_str): Use LA_PRINT_TYPE and raw
112 options.
113 * typeprint.c (type_print_raw_options, default_ptype_flags):
114 Update for new field.s
115 (whatis_exp): Parse flags. Use LA_PRINT_TYPE.
116 (setprinttypelist, showprinttypelist, print_methods,
117 print_typedefs): New globals.
118 (set_print_type, show_print_type, set_print_type_methods,
119 show_print_type_methods, set_print_type_typedefs,
120 show_print_type_typedefs): New functions.
121 (_initialize_typeprint): Update documentation. Add "print
122 type methods" and "print type typedefs" parameters.
123 * typeprint.h (struct type_print_options) <print_methods,
124 print_typedefs>: New fields.
125
126 2012-11-12 Tom Tromey <tromey@redhat.com>
127
128 * c-typeprint.c (cp_type_print_method_args): Add flags
129 argument. Call c_print_type, not type_print.
130 (c_type_print_base): Call c_print_type, not type_print.
131 Update.
132
133 2012-11-12 Tom Tromey <tromey@redhat.com>
134
135 * ada-lang.c (user_select_syms, ada_print_subexp): Pass flags
136 to type-printing functions.
137 * ada-lang.h (ada_print_type): Add argument.
138 * ada-typeprint.c (print_array_type, print_variant_clauses,
139 print_variant_part, print_selected_record_field_types,
140 print_record_field_types, print_unchecked_union_type,
141 print_func_type, ada_print_type): Add flags argument.
142 (ada_print_typedef): Update.
143 * c-exp.y (OPERATOR conversion_type_id): Update.
144 * c-lang.h (c_print_type, c_type_print_base): Update.
145 * c-typeprint.c (c_print_type, c_type_print_varspec_prefix,
146 c_type_print_modifier, c_type_print_args,
147 c_type_print_varspec_suffix, c_type_print_base): Add flags
148 argument.
149 * cp-valprint.c (cp_print_class_member): Update.
150 * dwarf2read.c (dwarf2_compute_name): Update.
151 * f-lang.h (f_print_type): Add argument.
152 * f-typeprint.c (f_print_type): Add flags argument.
153 * gnu-v3-abi.c (gnuv3_print_method_ptr): Update.
154 * go-lang.h (go_print_type): Add argument.
155 * go-typeprint.c (go_print_type): Add flags argument.
156 * jv-lang.h (java_print_type): Add argument.
157 * jv-typeprint.c (java_type_print_base, java_print_type): Add
158 flags argument.
159 * language.c (unk_lang_print_type): Add flags argument.
160 * language.h (struct language_defn) <la_print_type>: Add flags
161 argument.
162 (LA_PRINT_TYPE): Likewise.
163 * m2-lang.h (m2_print_type): Add argument.
164 * m2-typeprint.c (m2_print_type, m2_range, m2_typedef,
165 m2_array, m2_pointer, m2_ref, m2_procedure, m2_long_set,
166 m2_unbounded_array, m2_record_fields): Add flags argument.
167 * p-lang.h (pascal_print_type, pascal_type_print_base,
168 pascal_type_print_varspec_prefix): Add argument.
169 * p-typeprint.c (pascal_print_type,
170 pascal_type_print_varspec_prefix, pascal_print_func_args,
171 pascal_type_print_varspec_suffix, pascal_type_print_base): Add
172 flags argument.
173 * symmisc.c (print_symbol): Update.
174 * typeprint.c (type_print_raw_options, default_ptype_flags):
175 New globals.
176 (type_print): Update.
177 * typeprint.h (struct type_print_options): New.
178 (type_print_raw_options): Declare.
179 (c_type_print_varspec_suffix, c_type_print_args): Add argument.
180
181 2012-11-10 Keith Seitz <keiths@redhat.com>
182
183 * breakpoint.c (clear_command): Add cleanup for
184 sals.sals if an argument is given.
185
186 * linespec.c (parse_linespec): Do cleanups after
187 parsing a convenience variable.
188
189 2012-11-10 Keith Seitz <keiths@redhat.com>
190
191 PR gdb/14288
192 * c-valprint.c (c_val_print): For character arrays
193 with "print null" option on, print ellipses if
194 the output is truncated and the next character is not \000.
195 * valprint.c (MAX_WCHARS): Define.
196 (WCHAR_BUFLEN): Likewise.
197 (WCHAR_BUFLEN_MAX): Likewise.
198 (struct converted_character): New structure.
199 (count_next_character): New function.
200 (print_converted_chars_to_obstack): New function.
201 (generic_printstr): Rewrite using count_next_character
202 and print_converted_chars_to_obstack.
203
204 2012-11-10 Stephane Carrez <Stephane.Carrez@gmail.com>
205
206 * tui/tui.c (tui_rl_command_key): Switch to TUI_ONE_COMMAND_MODE
207 while executing the gdb command.
208 (tui_rl_startup_hook): Do not switch back to TUI_SINGLE_KEY_MODE if we
209 are called from prompt_for_continue.
210 * tui/tui-io.c (tui_redisplay_readline): Likewise.
211
212 2012-11-10 Stephane Carrez <Stephane.Carrez@gmail.com>
213
214 PR tui/9584
215
216 * tui/tui.c (tui_rl_command_key): Do not call execute_command
217 but insert the command to execute in readline's buffer.
218
219 2012-11-09 Tom Tromey <tromey@redhat.com>
220
221 * gdbarch.sh (target_gdbarch): Remove macro.
222 (get_target_gdbarch): Rename to target_gdbarch.
223 * gdbarch.c, gdbarch.h: Rebuild.
224 * ada-tasks.c, aix-thread.c, amd64-linux-nat.c, arch-utils.c,
225 arm-tdep.c, auxv.c, breakpoint.c, bsd-uthread.c, corefile.c,
226 darwin-nat-info.c, dcache.c, dsrec.c, exec.c, fbsd-nat.c,
227 filesystem.c, gcore.c, gnu-nat.c, i386-darwin-nat.c, i386-nat.c,
228 ia64-vms-tdep.c, inf-ptrace.c, infcmd.c, jit.c, linux-nat.c,
229 linux-tdep.c, linux-thread-db.c, m32r-rom.c, memattr.c,
230 mep-tdep.c, microblaze-tdep.c, mips-linux-nat.c,
231 mips-linux-tdep.c, mips-tdep.c, monitor.c, moxie-tdep.c,
232 nto-procfs.c, nto-tdep.c, ppc-linux-nat.c, proc-service.c,
233 procfs.c, progspace.c, ravenscar-thread.c, record.c,
234 remote-m32r-sdi.c, remote-mips.c, remote-sim.c, remote.c,
235 rl78-tdep.c, rs6000-nat.c, rx-tdep.c, s390-nat.c, sol-thread.c,
236 solib-darwin.c, solib-dsbt.c, solib-frv.c, solib-ia64-hpux.c,
237 solib-irix.c, solib-pa64.c, solib-som.c, solib-spu.c,
238 solib-sunos.c, solib-svr4.c, solib.c, spu-linux-nat.c,
239 spu-multiarch.c, spu-tdep.c, symfile-mem.c, symfile.c, symtab.c,
240 target-descriptions.c, target.c, target.h, tracepoint.c,
241 windows-nat.c, windows-tdep.c, xcoffsolib.c, cli/cli-dump.c,
242 common/agent.c, mi/mi-interp.c, python/py-finishbreakpoint.c,
243 python/py-inferior.c, python/python.c: Update.
244
245 2012-11-09 Andrew Burgess <aburgess@broadcom.com>
246
247 * source.c (print_source_lines_base): Add fullname field giving
248 full path to file in mi output.
249 * NEWS: Mention the new fullname field.
250
251 2012-11-09 Yao Qi <yao@codesourcery.com>
252
253 * NEWS: Mention the fix to the ambiguity of 'fo' command.
254
255 2012-11-09 Pedro Alves <palves@redhat.com>
256
257 PR gdb/14306
258
259 * infrun.c: Include target-descriptions.h.
260 (follow_exec): Fetch new target description.
261
262 2012-11-09 Yao Qi <yao@codesourcery.com>
263
264 * i386-tdep.c (i386_analyze_frame_setup): Handle opcode
265 0x8d (lea).
266
267 2012-11-09 Yao Qi <yao@codesourcery.com>
268
269 * breakpoint.c: Declare set_tracepoint_count.
270 (install_breakpoint): Call set_tracepoint_count if B is a
271 tracepoint.
272 (trace_command): Don't call set_tracepoint_count. Re-indent.
273 (strace_command, ftrace_command):
274 (create_tracepoint_from_upload): Likewise.
275
276 2012-11-09 Pedro Alves <palves@redhat.com>
277
278 * gdbarch.sh (target_gdbarch) <gdbarch.h>: Reimplement as macro.
279 (get_target_gdbarch) <gdbarch.h>: New function.
280 (startup_gdbarch) <gdbarch.h>: Declare.
281 <gdbarch.c> (target_gdbarch): Delete.
282 <gdbarch.c> (deprecated_target_gdbarch_select_hack): Set the
283 current inferior's gdbarch.
284 <gdbarch.c> (get_target_gdbarch): New function.
285 * inferior.c: Include target-descriptions.h.
286 (free_inferior): Free target description info.
287 (add_inferior_with_spaces): Set the inferior's initial
288 architecture.
289 (clone_inferior_command): Copy the original inferior's target
290 description if it was user specified.
291 (initialize_inferiors): Add comment.
292 * inferior.h (struct target_desc_info): Forward declare.
293 (struct inferior) <gdbarch>: New field.
294 * linux-nat.c: Include target-descriptions.h.
295 (linux_child_follow_fork): Copy the parent's architecture and
296 target description to the child.
297 * target-descriptions.c: Include inferior.h.
298 (struct target_desc_info): New structure, holding the equivalents
299 of ...
300 (target_desc_fetched, current_target_desc)
301 (target_description_filename): ... these removed globals.
302 (get_tdesc_info, target_desc_info_from_user_p)
303 (copy_inferior_target_desc_info, target_desc_info_free): New.
304 (target_desc_fetched, current_target_desc)
305 (target_description_filename): Reimplemented as convenience
306 macros.
307 (tdesc_filename_cmd_string): New global.
308 (set_tdesc_filename_cmd): Copy the string manipulated by the "set
309 tdescs filename ..." commands to the per-inferior equivalent.
310 (show_tdesc_filename_cmd): Get the value to show from the
311 per-inferior description filename.
312 (_initilize_target_descriptions): Change the "set/show tdesc
313 filename" commands' variable.
314 * target-descriptions.h (struct target_desc, struct target_desc_info)
315 (struct inferior): Forward declare.
316 (target_find_description, target_clear_description)
317 (target_current_description): Adjust comments.
318 (copy_inferior_target_desc_info, target_desc_info_free)
319 (target_desc_info_from_user_p). Declare.
320
321 2012-11-08 Stephane Carrez <Stephane.Carrez@gmail.com>
322
323 * tui/tui-hooks.c (tui_about_to_proceed): New function.
324 (tui_target_wait_hook): Remove.
325 (tui_install_hooks): Install the about_to_proceed observer.
326 (tui_remove_hooks): And remove it here.
327
328 2012-11-08 Tom Tromey <tromey@redhat.com>
329
330 * linux-tdep.c (linux_make_siginfo_note): New function.
331 (linux_make_corefile_notes): Use it.
332 * corelow.c (get_core_siginfo): New function.
333 (core_xfer_partial) <TARGET_OBJECT_SIGNAL_INFO>: New case.
334
335 2012-11-08 Tom Tromey <tromey@redhat.com>
336
337 PR gdb/14704:
338 * gdb_bfd.c (gdb_bfd_ref): Set BFD_DECOMPRESS.
339 (zlib_decompress_section): Remove.
340 (gdb_bfd_map_section): Only check for compressed section
341 in mmap case. Use bfd_get_full_section_contents.
342 * osabi.c (check_note): Add 'sectsize' argument. Read
343 section data.
344 (generic_elf_osabi_sniff_abi_tag_sections): Don't read
345 section data. Update for check_note change.
346 * xcoffread.c (xcoff_initial_scan): Use
347 bfd_get_full_section_contents.
348 * py-auto-load.c (auto_load_section_scripts): Use
349 bfd_get_full_section_contents.
350 * contrib/cc-with-tweaks.sh: Add -Z option.
351
352 2012-11-08 Tom Tromey <tromey@redhat.com>
353
354 * python/py-bpevent.c: Include defs.h.
355 * python/py-continueevent.c: Include defs.h.
356 * python/py-event.c: Include defs.h.
357 * python/py-event.h: Don't include defs.h.
358 * python/py-events.h: Don't include defs.h.
359 * python/py-evts.c: Include defs.h.
360 * python/py-exitedevent.c: Include defs.h.
361 * python/py-newobjfileevent.c: Include defs.h.
362 * python/py-signalevent.c: Include defs.h.
363 * python/py-stopevent.c: Include defs.h.
364 * python/py-threadevent.c: Include defs.h.
365
366 2012-11-08 Pierre Muller <muller@sourceware.org>
367
368 * update-web-ari.sh (print_heading): Add number of files
369 checked.
370 (nb_files): New variable counting the number of sources
371 files found by gdb_find.sh script.
372 (debug_awk): New variable to allow extra debug output.
373 (indexes): Add more information if DEBUG_AWK is set.
374
375 2012-11-08 Edjunior Machado <emachado@linux.vnet.ibm.com>
376
377 * ppc-linux-tdep.c (ppc64_standard_linkage1, ppc64_standard_linkage2,
378 ppc64_standard_linkage3): Mark ld r11 instructions as optional,
379 following the change in PLT call stubs on linker.
380
381 2012-11-08 Pierre Muller <muller@sourceware.org>
382
383 * contrib/ari/gdb_ari.sh (LANG, LC_ALL): Use 'C' instead of 'c'
384 as default language.
385 (AWK): Use = instead of == for sh test to avoid warning.
386 (Linux rule): Correct [:digit] into [[:digit:]].
387 (__func__ rule): Adapt to "gdb_assert.h" move to common subdirectory.
388 (vasprintf rule): Adapt to common subdirectory moves.
389 (xasprintf rule): Idem.
390 (xvasprintf rule): Idem.
391 (var_boolean rule): Accept occurence in == or != test.
392
393 * contrib/ari/gdb_find.sh: Also prune gdbtk directory.
394
395 2012-11-08 Stephane Carrez <Stephane.Carrez@gmail.com>
396
397 * tui/tui-hooks.c (tui_inferior_exit): New function.
398 (tui_detach_hook): Remove.
399 (tui_install_hooks): Install the inferior exit observer.
400 (tui_remove_hooks): Remove it.
401
402 2012-11-08 Yao Qi <yao@codesourcery.com>
403
404 PR gdb/14777.
405 * source.c (_initialize_source): Call add_com_alias to abbreviate
406 'forward-search' as 'fo'.
407
408 2012-11-07 Pedro Alves <palves@redhat.com>
409
410 * arm-tdep.c: Make defs.h be the first include.
411 * coff-pe-read.c: Ditto.
412 * gnu-nat.c: Ditto.
413 * go32-nat.c: Ditto.
414 * i386-nat.c: Ditto.
415 * ppcnbsd-nat.c: Ditto.
416 * ada-varobj.h: Don't include defs.h.
417 * i386-darwin-tdep.h: Ditto.
418 * i386-nat.h: Ditto.
419
420 2012-11-07 Pedro Alves <palves@redhat.com>
421
422 * MAINTAINERS: New FSF-appointed maintainers replace the Steering
423 Committee.
424
425 2012-11-07 Pierre Muller <muller@sourceware.org>
426
427 * common/linux-osdata.c (dirent.h): ARI fix: Remove.
428 File already uses "gdb_dirent.h" header.
429
430 2012-11-07 Yao Qi <yao@codesourcery.com>
431
432 * breakpoint.c (get_tracepoint_by_number): Remove 'extern int
433 tracepoint_count'.
434
435 2012-11-06 Tom Tromey <tromey@redhat.com>
436
437 * target.h (inferior_has_forked, inferior_has_vforked)
438 (inferior_has_execd, inferior_has_called_syscall): Remove
439 declarations.
440
441 2012-11-06 Pierre Muller <muller@sourceware.org>
442
443 * remote.c (remote_insert_hw_breakpoint): ARI fix,
444 add missing internalization markup.
445
446 2012-11-06 Pedro Alves <palves@redhat.com>
447
448 PR gdb/14810
449
450 * breakpoint.c (bpstat_stop_status): Skip disabled locations.
451
452 2012-11-06 Pierre Muller <muller@sourceware.org>
453
454 * contrib/ari/create-web-ari-in-src.sh: Avoid problem if script
455 is not executable.
456
457 2012-11-05 Joel Brobecker <brobecker@adacore.com>
458
459 * gnulib/update-gnulib.sh: New script.
460
461 2012-11-05 Stephane Carrez <Stephane.Carrez@gmail.com>
462
463 * MAINTAINERS: Update my email address.
464
465 2012-11-05 Tom Tromey <tromey@redhat.com>
466
467 * frame.c (put_frame_register): Don't use temporary buffer.
468
469 2012-11-05 Pedro Alves <palves@redhat.com>
470
471 * inferior.c (exit_inferior_1): Clear 'vfork_parent' in the vfork
472 child. Clear 'pending_detach'.
473 * infrun.c (handle_vfork_child_exec_or_exit): Clear
474 'pending_detach' in the vfork parent.
475
476 2012-11-05 Doug Evans <dje@google.com>
477
478 Add support for DWP files. http://gcc.gnu.org/wiki/DebugFissionDWP
479 * contrib/cc-with-tweaks.sh: Add -p parameter to invoke dwp.
480 * dwarf2read.c: #include "elf-bfd.h".
481 (struct dwarf2_per_objfile): New members dwp_checked, dwp_file.
482 (dwop_section_names): Renamed from dwo_section names. All uses
483 updated. Add entries for .debug_cu_index, .debug_tu_index.
484 (struct dwo_file): Rename dwo_name to name, dwo_bfd to dbfd.
485 All uses updated.
486 (struct dwp_sections): New type.
487 (struct virtual_dwo_sections): New type.
488 (struct dwp_hash_table): New type.
489 (struct dwp_file): New type.
490 (init_cutu_and_read_dies): Ensure DWO info/types section has been
491 read in. Handle DWOs coming from DWP files.
492 (lookup_dwo_file_slot): New function.
493 (dwarf2_locate_dwo_sections): Move definition closer to use.
494 (create_dwo_debug_info_hash_table_reader): Renamed from
495 create_debug_info_hash_table_reader. All callers updated.
496 (create_dwo_debug_info_hash_table): Renamed from
497 create_debug_info_hash_table. All callers updated.
498 (create_dwp_hash_table): New function.
499 (locate_virtual_dwo_sections, create_dwo_in_dwp): New functions.
500 (lookup_dwo_in_dwp): New function.
501 (try_open_dwop_file): Renamed from try_open_dwo_file. New parameter
502 is_dwp. All callers updated.
503 (open_dwop_file): Renamed from open_dwo_file. All callers updated.
504 (open_and_init_dwo_file): Renamed from init_dwo_file.
505 All callers updated.
506 (lookup_dwo_file): Delete.
507 (dwarf2_locate_dwp_sections): New function.
508 (hash_dwp_loaded_cutus, eq_dwp_loaded_cutus): New functions.
509 (allocate_dwp_loaded_cutus_table): New function.
510 (open_and_init_dwp_file): New function.
511 (lookup_dwo_cutu): New function.
512 (lookup_dwo_comp_unit, lookup_dwo_type_unit): Call it.
513
514 2012-11-03 Yao Qi <yao@codesourcery.com>
515
516 Fix PR gdb/14617.
517 * breakpoint.c (trace_pass_set_count): Call
518 observer_notify_breakpoint_modified instead of
519 observer_notify_tracepoint_modified.
520 * mi/mi-cmd-break.c (mi_cmd_break_passcount): Likewise.
521
522 2012-11-02 Tom Tromey <tromey@redhat.com>
523
524 * breakpoint.c (catch_syscall_completer): Pass 'word' as second
525 argument to complete_on_enum.
526
527 2012-11-02 Tom Tromey <tromey@redhat.com>
528
529 * configure: Rebuild.
530 * configure.ac (build_warnings): Add -Wempty-body.
531 * m68k-tdep.c (m68k_gdbarch_init): Remove empty 'if'.
532 * remote.c (handle_notification): Use braces for empty 'else' body.
533 * s390-tdep.c (s390_analyze_prologue): Use braces for empty
534 'else' body.
535 * sh64-tdep.c (sh64_push_dummy_call): Use braces for empty
536 'else' body.
537 * solib-som.c (som_relocate_section_addresses): Use braces
538 for empty 'else' body.
539 * ui-file.c (stdio_file_write): Use braces for empty 'if' body.
540 (stdio_file_write_async_safe, stdio_file_fputs): Likewise.
541
542 2012-11-02 Pedro Alves <palves@redhat.com>
543
544 PR gdb/14766
545
546 * infrun.c (handle_inferior_event)
547 <TARGET_WAITKIND_EXITED/TARGET_WAITKIND_SIGNALLED>: Switch to
548 null_ptid before handling a vfork child exec or exit. Switch to
549 the event ptid afterwards.
550
551 2012-11-02 Yao Qi <yao@codesourcery.com>
552
553 * std-operator.def: Remove OP_LABELED.
554 * eval.c: Remove the declaration of 'get_label'.
555 (get_label): Remove.
556 (evaluate_struct_tuple): Remove code handling OP_LABELED.
557 Update comment.
558 Remove local variable 'variantno' and related code.
559 Replace 'substruct_type' with 'struct_type'. Replace 'subfieldno'
560 with 'fieldno'.
561 * expprint.c (print_subexp_standard): Likewise.
562 (dump_subexp_body_standard): Likewise.
563 * parse.c (operator_length_standard): Likewise.
564
565 2012-11-01 Pierre Muller <muller@ics.u-strasbg.fr>
566
567 Incorporate ARI web page generator into GDB sources.
568 * contrib/ari/create-web-ari-in-src.sh: New file.
569 * contrib/ari/gdb_ari.sh: New file.
570 * contrib/ari/gdb_find.sh: New file.
571 * contrib/ari/update-web-ari.sh: New file.
572
573 2012-10-31 Tom Tromey <tromey@redhat.com>
574
575 * gdbarch.c: Rebuild.
576 * gdbarch.sh: Remove references to gdbarch_swap.
577 * corelow.c (core_open): Remove obsolete comment.
578
579 2012-10-31 Andrew Burgess <aburgess@broadcom.com>
580
581 PR cli/14772
582 * c-typeprint.c (c_print_type): Don't print a space for vector
583 types, this is handled within the suffix.
584 (c_type_print_varspec_suffix): Add a space to vector suffix.
585
586 2012-10-26 Pedro Alves <palves@redhat.com>
587
588 * amd64-tdep.c (amd64_relocate_instruction): Use
589 store_unsigned_integer instead of memcpy.
590 * i386-tdep.c (i386_relocate_instruction): Ditto.
591
592 2012-10-26 Pedro Alves <palves@redhat.com>
593
594 * infrun.c (handle_inferior_event): Merge handling of
595 TARGET_WAITKIND_EXITED and TARGET_WAITKIND_SIGNALLED into a single
596 switch case.
597
598 2012-10-26 Pedro Alves <palves@redhat.com>
599
600 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_SIGNALLED>:
601 Remove comment.
602
603 2012-10-26 Pedro Alves <palves@redhat.com>
604
605 * target.c (target_waitstatus_to_string): Handle
606 TARGET_WAITKIND_VFORK_DONE.
607
608 2012-10-26 Pedro Alves <palves@redhat.com>
609
610 * infrun.c (handle_inferior_event): Print TARGET_WAITKIND_VFORKED
611 as "TARGET_WAITKIND_VFORKED", not "TARGET_WAITKIND_FORKED".
612
613 2012-10-24 Tristan Gingold <gingold@adacore.com>
614
615 * ravenscar-sparc-thread.c (ravenscar_sparc_fetch_registers):
616 Add comments.
617
618 2012-10-24 Joel Brobecker <brobecker@adacore.com>
619
620 * ravenscar-thread.c (ravenscar_wait): Only update the list
621 of threads and inferior_ptid if the inferior is still alive.
622
623 2012-10-24 Joel Brobecker <brobecker@adacore.com>
624
625 * ada-lang.c (is_known_support_routine): Use lbasename when
626 matching the symtab's filename against
627 known_runtime_file_name_patterns.
628
629 2012-10-24 Joel Brobecker <brobecker@adacore.com>
630
631 * ada-lang.c (ada_same_array_size_p): New function.
632 (ada_promote_array_of_integrals): New function.
633 (coerce_for_assign): Add handling of arrays where the elements
634 are integrals of a smaller size than the size of the target
635 array element type.
636
637 2012-10-24 Joel Brobecker <brobecker@adacore.com>
638
639 * doublest.c (convert_doublest_to_floatformat): Fix comparison
640 against maximum exponent value.
641
642 2012-10-24 Joel Brobecker <brobecker@adacore.com>
643
644 * ada-lang.h (ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS): Add entry for
645 "unwind-seh.c".
646
647 2012-10-24 Joel Brobecker <brobecker@adacore.com>
648
649 * ada-lang.c (ada_template_to_fixed_record_type_1): Do not
650 strip typedef layer when computing the fixed type's field type,
651 only when computing its size.
652
653 2012-10-24 Mark Kettenis <kettenis@gnu.org>
654
655 PR gdb/12783
656 * i386-tdep.c (i386_return_value): Handle complex double and long
657 double.
658
659 2012-10-24 Joel Brobecker <brobecker@adacore.com>
660
661 * windows-nat.c (windows_create_inferior) [!__CYGWIN__]:
662 New local variable args_len.
663 Quote the name of the executable when computing the command line.
664
665 2012-10-23 Mark Kettenis <kettenis@gnu.org>
666
667 PR gdb/12796
668 PR gdb/12798
669 PR gdb/12800
670 * amd64-tdep.h (enum amd64_regnum): Add AMD64_ST1_REGNUM and
671 AMD64_FTAG_REGNUM.
672 * amd64-tdep.c (amd64_classify): Classify complex types.
673 (amd64_return_value): Handle the COMPLEX_X87 class.
674
675 2012-10-23 Joel Brobecker <brobecker@adacore.com>
676
677 * rs6000-aix-tdep.c (rs6000_aix_auto_wide_charset): New function.
678 (rs6000_aix_init_osabi): Set auto_wide_charset gdbarch method.
679
680 2012-10-23 Joel Brobecker <brobecker@adacore.com>
681
682 * amd64-windows-tdep.c (amd64_windows_auto_wide_charset): New
683 function.
684 (amd64_windows_init_abi): Set auto_wide_charset gdbarch method
685 to amd64_windows_auto_wide_charset.
686
687 2012-10-23 Yao Qi <yao@codesourcery.com>
688
689 * event-top.c (mark_async_signal_handler_wrapper): Remove.
690 * event-top.h: Remove its declaration.
691 (async_request_quit): Call mark_async_signal_handler instead of
692 mark_async_signal_handler_wrapper.
693 (async_do_nothing, async_disconnect): Likewise.
694 (async_stop_sig): Likewise.
695 * remote.c (handle_remote_sigint): Likewise.
696 (handle_remote_sigint_twice): Likewise.
697
698 2012-10-23 Yao Qi <yao@codesourcery.com>
699
700 * event-top.c (sigint_token, sighup_token): Replace 'void *'
701 with 'static struct async_signal_handler *'.
702 (sighup_token, sigquit_token, sigstp_token): Likewise.
703
704 2012-10-22 Ali Anwar <ali_anwar@codesourcery.com>
705
706 * gdbarch.sh (function_list): Use 'pstring' when printing
707 a variable which could return NULL.
708 * gdbarch.c: Regenerate.
709
710 2012-10-10 Joel Brobecker <brobecker@adacore.com>
711 Tom Tromey <tromey@redhat.com>
712
713 * rs6000-aix-tdep.c (rs6000_aix_osabi_sniffer): Replace
714 inneffective if condition by gdb assertion. Add function
715 description comment.
716
717 2012-10-19 Joel Brobecker <brobecker@adacore.com>
718
719 * parser-defs.h (struct exp_descriptor): Document constraint
720 on return value for "op_name" callbacks.
721
722 2012-10-18 Tom Tromey <tromey@redhat.com>
723
724 * tracepoint.c (print_one_static_tracepoint_marker): Constify.
725 * symtab.c (iterate_over_some_symtabs): Constify.
726 * source.h (symtab_to_fullname): Return 'const char *'.
727 * source.c (symtab_to_fullname): Return 'const char *'.
728 * python/py-symtab.c (stpy_fullname): Constify.
729 * cli/cli-cmds.c (edit_command): Constify.
730 * breakpoint.c (print_breakpoint_location)
731 (update_static_tracepoint): Constify.
732
733 2012-10-18 Tom Tromey <tromey@redhat.com>
734
735 * breakpoint.c (compare_breakpoints): Fix comparison.
736
737 2012-10-18 Tom Tromey <tromey@redhat.com>
738
739 * valprint.c (generic_emit_char, generic_printstr): Pass size of
740 gdb_wchar_t to convert_between_encodings.
741
742 2012-10-17 Yao Qi <yao@codesourcery.com>
743
744 * breakpoint.c (invalidate_bp_value_on_memory_change): Add one
745 more parameter 'inferior'.
746 * corefile.c (write_memory_with_notification): Caller update.
747
748 * mi/mi-cmd-var.c: Include "mi-main.h".
749 (mi_cmd_var_assign): Set mi_suppress_notification.data_write_memory
750 to 1 and restore it later.
751 * mi/mi-cmds.c (mi_cmd mi_cmds): Update for "data-write-memory"
752 and "data-write-memory-bytes.
753 * mi/mi-interp.c: Include objfiles.h.
754 (mi_interpreter_init): Call observer_attach_memory_changed.
755 (mi_memory_changed): New.
756 * mi/mi-main.h (struct mi_suppress_notification) <memory>:
757 New field.
758
759 * NEWS: Mention new MI notification "memory-changed".
760
761 2012-10-16 Jan Kratochvil <jan.kratochvil@redhat.com>
762
763 * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Remove comment.
764
765 2012-10-15 Doug Evans <dje@google.com>
766
767 New option -nh: inhibit loading of ~/.gdbinit.
768 * NEWS: Mention -nh.
769 * main.c (captured_main): Recognize and process -nh.
770 (print_gdb_help): Mention -nh.
771 * gdb.1: Mention -nh. Remove erroneous docs on -nx behavior.
772
773 2012-10-15 H.J. Lu <hongjiu.lu@intel.com>
774
775 PR backtrace/14646
776 PR gdb/14647
777 * i386-tdep.h (gdbarch_tdep): Remove sp_regnum_from_eax and
778 pc_regnum_from_eax.
779 * i386-tdep.c (i386_gdbarch_init): Don't use sp_regnum_from_eax
780 nor pc_regnum_from_eax.
781 * amd64-tdep.c (amd64_x32_init_abi): Don't set sp_regnum_from_eax
782 nor pc_regnum_from_eax.
783
784 2012-10-15 Jan Kratochvil <jan.kratochvil@redhat.com>
785
786 Fix entry values resolving in inlined frames.
787 * dwarf2loc.c (dwarf_expr_reg_to_entry_parameter): Move func_addr,
788 gdbarch and caller_frame initialization later. Skip INLINE_FRAME
789 entries of FRAME.
790
791 2012-10-15 Joel Brobecker <brobecker@adacore.com>
792
793 * configure.ac: Build with -DMS_WIN64 if building with Python
794 enabled using GCC on amd64-windows.
795 * configure: Regenerate.
796
797 2012-10-15 Tom Tromey <tromey@redhat.com>
798
799 PR python/14635:
800 * python/py-symtab.c (del_objfile_sal): Set 'symtab' field
801 to Py_None.
802
803 2012-10-15 Tom Tromey <tromey@redhat.com>
804
805 PR python/14634:
806 * python/py-symbol.c (sympy_dealloc): Check for NULL symbol.
807
808 2012-10-11 Andrew Burgess <aburgess@broadcom.com>
809
810 * remote-sim.c (gdbsim_create_inferior): Call init_thread_list to
811 reset thread numbering back to 1.
812
813 2012-10-11 Doug Evans <dje@google.com>
814
815 PR breakpoints/14643.
816 * linespec.c (struct ls_parser): New member keyword_ok.
817 (linespec_lexer_lex_string): Add comment.
818 (linespec_lexer_lex_one): Ignore keywords if it's the wrong place
819 for one.
820 (parse_linespec): Set keyword_ok.
821
822 2012-10-10 Doug Evans <dje@google.com>
823
824 * dwarf2read.c (process_psymtab_comp_unit_reader): Remove duplicate
825 "0x" prefix on address in log message.
826
827 * dwarf2read.c (read_1_byte): Add const to buf parameter.
828 (read_1_signed_byte, read_2_bytes, read_2_signed_bytes): Ditto.
829 (read_4_bytes, read_4_signed_bytes, read_8_bytes): Ditto.
830 (lookup_dwo_file): Add const to dwo_name parameter.
831 (lookup_dwo_comp_unit, lookup_dwo_type_unit): Ditto.
832
833 2012-10-06 Jan Kratochvil <jan.kratochvil@redhat.com>
834
835 Fix crash during stepping on ppc32.
836 * ppc-linux-tdep.c (powerpc_linux_in_dynsym_resolve_code): Test NULL
837 SYM.
838
839 2012-10-03 Doug Evans <dje@google.com>
840
841 PR symtab/14601
842 * buildsym.c (buildsym_init): Reset using_directives to NULL.
843
844 2012-10-02 Andrew Burgess <aburgess@broadcom.com>
845
846 * remote-sim.c (dump_mem): Always dump buffer contents, zero fill
847 output and use uint32_t not long to ensure 4 byte size.
848
849 2012-10-02 Joel Brobecker <brobecker@adacore.com>
850
851 * rs6000-nat.c (add_vmap): Set "last" to "next" after having
852 unref'ed it.
853
854 2012-10-01 Andrew Burgess <aburgess@broadcom.com>
855
856 * target.c (simple_search_memory): Include access length in
857 warning message.
858
859 2012-09-28 Nathan Miller <nathanm2@us.ibm.com>
860 Edjunior Machado <emachado@linux.vnet.ibm.com>
861
862 PR gdb/13989
863 * solib.c (solib_find): Prevent GDB from loading native libraries when
864 debugging a cross-target corefile.
865
866 2012-09-28 selven <pcthegreat@gmail.com>
867
868 Make definition match declaration.
869
870 * regcache.c (regcache_register_status): Change return type to
871 enum register_status.
872
873 2012-09-28 Yao Qi <yao@codesourcery.com>
874
875 * mi/mi-main.c (mi_cmd_data_write_memory): Call
876 write_memory_with_notification instead of write_memory.
877 (mi_cmd_data_write_memory_bytes): Call write_memory_with_notification
878 instead of target_write_memory.
879
880 2012-09-28 Yao Qi <yao@codesourcery.com>
881
882 * mi/mi-main.c (mi_cmd_data_write_memory_bytes): Emit error
883 when the length of content is not an even number.
884
885 2012-09-27 Tom Tromey <tromey@redhat.com>
886
887 Fix https://bugzilla.redhat.com/show_bug.cgi?id=849357
888 * cp-valprint.c (cp_print_value_fields): Use get_vptr_fieldno.
889
890 2012-09-27 Joel Brobecker <brobecker@adacore.com>
891
892 * sol-thread.c (sol_thread_fetch_registers)
893 (sol_thread_store_registers): Delete commented out code.
894
895 2012-09-27 Joel Brobecker <brobecker@adacore.com>
896
897 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
898 Move these functions to sparc-sol-thread.c.
899 * sparc-sol-thread.c: New file.
900 * configure.ac: Add sparc-sol-thread.o to CONFIG_OBS and
901 sparc-sol-thread.c to CONFIG_SRCS for sparc-solaris native
902 configurations.
903 * configure: Regenerate.
904
905 2012-09-27 Joel Brobecker <brobecker@adacore.com>
906
907 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
908 Remove commented-out code.
909
910 2012-09-27 Joel Brobecker <brobecker@adacore.com>
911
912 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
913 Enable this code for sparc hosts only.
914
915 2012-09-27 Joel Brobecker <brobecker@adacore.com>
916
917 * procfs.h (procfs_find_LDT_entry): Add declaration.
918 * sol-thread.c (ps_lgetLDT): Delete local declaration of
919 function procfs_find_LDT_entry.
920
921 2012-09-27 Joel Brobecker <brobecker@adacore.com>
922
923 * procfs.c (proc_get_LDT_entry): Make static.
924
925 2012-09-27 Joel Brobecker <brobecker@adacore.com>
926
927 * procfs.c (proc_find_memory_regions): Fix declaration.
928
929 2012-09-27 Siddhesh Poyarekar <siddhesh@redhat.com>
930
931 * amd64-tdep.c (amd64_return_value): Revert previous change
932 that used TYPE_LENGTH directly.
933 * bfin-tdep.c (bfin_extract_return_value): Likewise.
934 (bfin_store_return_value): Likewise.
935 * cris-tdep.c (cris_store_return_value): Likewise.
936 (cris_extract_return_value): Likewise.
937 * h8300-tdep.c (h8300_extract_return_value): Likewise.
938 * hppa-tdep.c (hppa64_return_value): Likewise.
939 * lm32-tdep.c (lm32_store_return_value): Likewise.
940 * microblaze-tdep.c (microblaze_store_return_value): Likewise.
941 * spu-tdep.c (spu_value_from_register): Likewise.
942 * vax-tdep.c (vax_return_value): Likewise.
943
944 2012-09-27 Siddhesh Poyarekar <siddhesh@redhat.com>
945
946 * gdbtypes.c (lookup_array_range_type): Expand parameters
947 LOW_BOUND and HIGH_BOUND to LONGEST.
948 (lookup_string_range_type): Likewise.
949 * gdbtypes.h (lookup_array_range_type): Likewise.
950 (lookup_string_range_type): Likewise.
951 * valops.c (value_cstring): Expand parameter LEN to ssize_t.
952 Expand HIGHBOUND to ssize_t.
953 (value_string): Likewise.
954 * value.h (value_cstring): Expand parameter LEN to ssize_t.
955 (value_string): Likewise.
956
957 2012-09-27 Yao Qi <yao@codesourcery.com>
958
959 PR breakpoints/13898
960 * breakpoint.h (tracepoint_breakpoint_ops): Forward declaration.
961 * mi/mi-cmd-break.c (mi_cmd_break_insert): Set breakpoint_ops
962 per breakpoint type.
963
964 2012-09-26 Pierre Muller <muller@ics.u-strasbg.fr>
965
966 * procfs.c: Add gdb_bfd header.
967 * rs6000-nat.c: Likewise.
968 * solib-pa64.c: Likewise.
969 * spu-linux-nat.c: Likewise.
970 * windows-nat.c: Likewise.
971
972 2012-09-26 Tom Tromey <tromey@redhat.com>
973
974 * f-lang.h (BLANK_COMMON_NAME_LOCAL): Remove.
975
976 2012-09-26 Tom Tromey <tromey@redhat.com>
977
978 * dwarf2read.c (mark_common_block_symbol_computed): New function.
979 (read_common_block): Handle child DIEs with
980 DW_AT_data_member_location.
981 (new_symbol_full): Add special case for common blocks.
982
983 2012-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
984 Tom Tromey <tromey@redhat.com>
985
986 * dwarf2read.c (read_common_block): Rewrite.
987 (new_symbol_full): Handle DW_TAG_common_block.
988 * f-lang.c (head_common_list, find_common_for_function):
989 Remove.
990 * f-lang.h (struct common_entry, struct saved_f77_common,
991 SAVED_F77_COMMON, SAVED_F77_COMMON_PTR, COMMON_ENTRY,
992 COMMON_ENTRY_PTR, head_common_list, find_common_for_function,
993 BLANK_COMMON_NAME_LOCAL): Remove.
994 (struct common_block): New.
995 * f-valprint.c (list_all_visible_commons): Remove.
996 (info_common_command_for_block): New function.
997 (info_common_command): Use it.
998 * stack.c (iterate_over_block_locals): Special case for
999 COMMON_BLOCK_DOMAIN.
1000 * symtab.h (enum domain_enum_tag) <COMMON_BLOCK_DOMAIN>: New
1001 constant.
1002 (struct general_symbol_info) <value.common_block>: New field.
1003 (SYMBOL_VALUE_COMMON_BLOCK): New define.
1004
1005 2012-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
1006 Tom Tromey <tromey@redhat.com>
1007
1008 * f-lang.c (allocate_saved_bf_node,
1009 allocate_saved_function_node, allocate_saved_f77_common_node,
1010 allocate_common_entry_node, tail_common_list, current_common,
1011 saved_bf_list, saved_bf_list_end, current_head_bf_list,
1012 tmp_bf_ptr, add_common_block, add_common_entry,
1013 find_first_common_named, patch_common_entries,
1014 patch_all_commons_by_name, ADD_BF_SYMNUM, clear_bf_list,
1015 global_remote_debug, get_bf_for_fcn, saved_function_list,
1016 saved_function_list_end, clear_function_list, struct saved_fcn,
1017 struct saved_bf_symnum, SAVED_FUNCTION, SAVED_FUNCTION_PTR,
1018 SAVED_BF, SAVED_BF_PTR): Remove.
1019 * f-lang.h (tail_common_list, current_common,
1020 UNINITIALIZED_SECNUM, COMMON_NEEDS_PATCHING,
1021 BLANK_COMMON_NAME_ORIGINAL, BLANK_COMMON_NAME_MF77,
1022 DEFAULT_UPPER_BOUND, DEFAULT_LOWER_BOUND, real_main_name,
1023 real_main_c_value): Remove.
1024 * f-valprint.c (there_is_a_visible_common_named): Remove.
1025
1026 2012-09-26 Andrew Burgess <aburgess@broadcom.com>
1027
1028 * breakpoint.c (update_global_location_list): Ignore previous
1029 duplicate status of a breakpoint when starting a new scan for
1030 duplicate breakpoints.
1031
1032 2012-09-26 Karthik Bhat <kv.bhat@samsung.com>
1033 PR breakpoints/14419
1034 * arm-tdep.c (arm_skip_prologue): Extending producer check to
1035 support LLVM compiler.
1036
1037 2012-09-26 Siddhesh Poyarekar <siddhesh@redhat.com>
1038
1039 * amd64-tdep.c (amd64_return_value): Use TYPE_LENGTH directly.
1040 * bfin-tdep.c (bfin_extract_return_value): Likewise.
1041 (bfin_store_return_value): Likewise.
1042 * cris-tdep.c (cris_store_return_value): Likewise.
1043 (cris_extract_return_value): Likewise.
1044 * h8300-tdep.c (h8300_extract_return_value): Likewise.
1045 * hppa-tdep.c (hppa64_return_value): Likewise.
1046 * lm32-tdep.c (lm32_store_return_value): Likewise.
1047 * microblaze-tdep.c (microblaze_store_return_value): Likewise.
1048 * spu-tdep.c (spu_value_from_register): Likewise.
1049 * vax-tdep.c (vax_return_value): Likewise.
1050
1051 2012-09-26 Siddhesh Poyarekar <siddhesh@redhat.com>
1052
1053 * breakpoint.c (invalidate_bp_value_on_memory_change): Expand
1054 parameter LEN to ssize_t.
1055
1056 2012-09-25 Siddhesh Poyarekar <siddhesh@redhat.com>
1057
1058 * ada-valprint.c (ada_val_print_1): Eliminate single-use
1059 variable LEN.
1060 * alpha-tdep.c (alpha_extract_return_value): Use TYPE_LENGTH
1061 directly.
1062 (alpha_store_return_value): Likewise.
1063 * amd64-tdep.c (amd64_classify_aggregate): Likewise.
1064 (amd64_push_arguments): Likewise.
1065 * ax-gdb.c (gen_trace_static_fields): Likewise.
1066 (gen_traced_pop): Likewise.
1067 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
1068 * breakpoint.c (update_watchpoint): Likewise.
1069 * findcmd.c (parse_find_args): Use local variable for type
1070 instead of length.
1071 * findvar.c (default_read_var_value): Use TYPE_LENGTH directly.
1072 * h8300-tdep.c (h8300h_extract_return_value): Likewise.
1073 (h8300_store_return_value): Likewise.
1074 * i386-darwin-tdep.c (i386_darwin_push_dummy_call): Likewise.
1075 Use i386_darwin_arg_type_alignment directly.
1076 * infcall.c (call_function_by_hand): Use TYPE_LENGTH directly.
1077 * lm32-tdep.c (lm32_push_dummy_call): Likewise.
1078 * m68hc11-tdep.c (m68hc11_push_dummy_call): Likewise.
1079 (m68hc11_extract_return_value): Likewise.
1080 * mep-tdep.c (mep_push_dummy_call): Likewise.
1081 * printcmd.c (float_type_from_length): Likewise.
1082 * s390-tdep.c (s390_value_from_register): Likewise.
1083 * stack.c (read_frame_arg): Likewise.
1084 * tracepoint.c (encode_actions_1): Likewise.
1085 * valops.c (value_fetch_lazy): Use local variable for type
1086 instead of length. Use TYPE_LENGTH directly.
1087 * value.c (value_contents_equal): Use TYPE_LENGTH directly.
1088
1089 2012-09-25 Joel Brobecker <brobecker@adacore.com>
1090
1091 * symtab.c (skip_prologue_sal): Fix typo in comment.
1092
1093 2012-09-25 Joel Brobecker <brobecker@adacore.com>
1094
1095 * linespec.c (create_sals_line_offset): Fix typo in comment.
1096
1097 2012-09-25 Siddhesh Poyarekar <siddhesh@redhat.com>
1098
1099 * c-typeprint.c (c_type_print_varspec_suffix): Remove cast and
1100 use plongest to print the array size.
1101
1102 2012-09-24 Siddhesh Poyarekar <siddhesh@redhat.com>
1103
1104 * m2-typeprint.c (m2_enum): Expand LASTVAL to LONGEST.
1105 * p-valprint.c (pascal_type_print_base): Likewise.
1106
1107 2012-09-22 Yao Qi <yao@codesourcery.com>
1108
1109 * remote.c (remote_get_trace_status): Remove setting default
1110 values of fields of 'ts'.
1111
1112 2012-09-21 Jan Kratochvil <jan.kratochvil@redhat.com>
1113
1114 Fix internal error on canonicalization of clang types.
1115 * cp-name-parser.y (operator): New comment at make_operator call for
1116 new, delete, new[] and delete[].
1117 (exp): Use "sizeof ". Add new comment at make_operator call.
1118
1119 2012-09-21 Jan Kratochvil <jan.kratochvil@redhat.com>
1120
1121 Fix disassemble without parameters in tailcall frame.
1122 * cli/cli-cmds.c (disassemble_current_function): Use
1123 get_frame_address_in_block.
1124
1125 2012-09-21 Tom Tromey <tromey@redhat.com>
1126
1127 * c-typeprint.c (c_type_print_base) <TYPE_CODE_STRUCT,
1128 TYPE_CODE_UNION>: Unify, removing a goto.
1129
1130 2012-09-21 Tom Tromey <tromey@redhat.com>
1131
1132 * c-typeprint.c (cp_type_print_derivation_info): Fix comment.
1133
1134 2012-09-21 Andrew Burgess <aburgess@broadcom.com>
1135
1136 * findvar.c (read_frame_register_value): Mark the result value as
1137 optimized out if any of the input registers have been optimized out.
1138
1139 2012-09-21 Andreas Schwab <schwab@linux-m68k.org>
1140
1141 * python/python.c (finalize_python): Only define if HAVE_PYTHON.
1142
1143 2012-09-21 Siddhesh Poyarekar <siddhesh@redhat.com>
1144
1145 * eval.c (evaluate_subexp_standard): Eliminate single-use
1146 variable LOWER.
1147
1148 2012-09-21 Yao Qi <yao@codesourcery.com>
1149
1150 * mi/mi-interp.c: Declare mi_record_changed.
1151 (mi_interpreter_init): Call observer_attach_record_changed.
1152 (mi_record_changed): New.
1153 * record.c (record_open): Call observer_notify_record_changed.
1154 (cmd_record_stop): Call observer_notify_record_changed.
1155 * NEWS: Mention it.
1156
1157 2012-09-20 Tom Tromey <tromey@redhat.com>
1158
1159 * NEWS: Update.
1160 * python/python.c (finalize_python): New function.
1161 (_initialize_python): Make a final cleanup.
1162
1163 2012-09-19 Doug Evans <dje@google.com>
1164
1165 * buildsym.h (param_symbols): Delete, unused.
1166 (context_stack): Delete member "params", unused.
1167 * buildsym.c (push_context): Update.
1168 * dwarf2read.c (read_func_scope): Update.
1169
1170 2012-09-19 Thomas Schwinge <thomas@codesourcery.com>
1171
1172 * sh-tdep.c (sh_register_convert_to_virtual)
1173 (sh_register_convert_to_raw): Add a gdbarch parameter. Update
1174 all callers. Just do a memcpy if not the little-endian case.
1175
1176 * h8300-tdep.c (h8300_gdbarch_init): Invoke
1177 set_gdbarch_double_format and set_gdbarch_long_double_format.
1178 * m68hc11-tdep.c (m68hc11_gdbarch_init): Invoke
1179 set_gdbarch_double_format.
1180 * sh-tdep.c (sh_gdbarch_init): Likewise.
1181
1182 * NEWS: Document the removal of SH's 'regs' command.
1183 * sh-tdep.c (_initialize_sh_tdep): Remove the deprecated 'regs'
1184 command.
1185
1186 2012-09-18 Sergio Durigan Junior <sergiodj@redhat.com>
1187
1188 * infcmd.c (_initialize_infcmd): Register `j' as an alias for
1189 `jump'.
1190
1191 2012-09-18 Joel Brobecker <brobecker@adacore.com>
1192
1193 * linespec.c (iterate_over_all_matching_symtabs): Use the correct
1194 language when iterating over symbols.
1195
1196 2012-09-18 Yao Qi <yao@codesourcery.com>
1197
1198 * mi/mi-interp.c: Declare mi_tsv_created and mi_tsv_deleted.
1199 (mi_interpreter_init): Call observer_attach_tsv_created and
1200 observer_attach_tsv_deleted.
1201 (mi_tsv_created, mi_tsv_deleted): New.
1202 * tracepoint.c (delete_trace_state_variable): Call
1203 observer_notify_tsv_deleted.
1204 (trace_variable_command): Call observer_notify_tsv_created.
1205 (delete_trace_variable_command): Call
1206 observer_notify_tsv_deleted.
1207 (create_tsv_from_upload): Call observer_notify_tsv_created.
1208 * NEWS: Mention it.
1209
1210 2012-09-18 Yao Qi <yao@codesourcery.com>
1211
1212 * tracepoint.c (tfind_1): Call observer_notify_traceframe_changed
1213 if traceframe changed.
1214 * mi/mi-cmds.c (mi_cmd mi_cmds): Adjust for command
1215 "trace-find".
1216 * mi/mi-interp.c: Declare 'mi_traceframe_changed'.
1217 (mi_interpreter_init): Hook mi_traceframe_changed to observer
1218 'traceframe_changed'.
1219 (mi_traceframe_changed): New.
1220 * mi/mi-main.h (struct mi_suppress_notification) <traceframe>:
1221 New field.
1222 * NEWS: Mention the new MI notification.
1223
1224 2012-09-17 Mike Wrighton <wrighton@codesourcery.com>
1225
1226 * MAINTAINERS (Write After Approval): Add "Mike Wrighton".
1227
1228 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
1229
1230 * common/linux-ptrace.c: Change __i386__ to __i386__ || __x86_64__.
1231 (linux_ptrace_test_ret_to_nx): Extend comment for x86_64. Change
1232 __i386__ to __i386__ || __x86_64__. Extend code also for __x86_64__.
1233 Extend code also for PaX support. Convert all gdb_assert to warning
1234 calls.
1235
1236 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
1237
1238 Implement auto-load user conveniences suggested by Doug Evans.
1239 * auto-load.c: Include top.h.
1240 (file_is_auto_load_safe): New variable advice_printed. Print advice.
1241 (_initialize_auto_load): New variable scripts_directory_help. Mention
1242 GDBPY_AUTO_FILE_NAME and GDB_AUTO_FILE_NAME for set auto-load
1243 scripts-directory. Document in online help one can use also files for
1244 set auto-load safe-path.
1245 * python/py-auto-load.c: (GDBPY_AUTO_FILE_NAME): Move it from here ...
1246 * python/python.h (GDBPY_AUTO_FILE_NAME): ... to here.
1247
1248 2012-09-17 Siddhesh Poyarekar <siddhesh@redhat.com>
1249
1250 * tic6x-tdep.c (tic6x_push_dummy_call): Remove unused definition
1251 of LEN.
1252
1253 2012-09-17 Siddhesh Poyarekar <siddhesh@redhat.com>
1254
1255 * m2-valprint.c (m2_print_array_contents): Eliminate variable
1256 ELTLEN and use TYPE_LENGTH directly.
1257 (m2_val_print): Likewise.
1258 * m68k-tdep.c (m68k_svr4_extract_return_value): Eliminate
1259 variable LEN and use TYPE_LENGTH directly.
1260 (m68k_svr4_store_return_value): Likewise.
1261 * mips-tdep.c (mips_o32_push_dummy_call): Eliminate variable
1262 ARGLEN and use TYPE_LENGTH directly.
1263 (mips_o64_push_dummy_call): Likewise.
1264 * s390-tdep (s390_function_arg_pass_by_reference): Eliminate
1265 variable LENGTH and use TYPE_LENGTH directly.
1266 (s390_function_arg_float): Likewise.
1267 (s390_function_arg_integer): Likewise.
1268 (s390_push_dummy_call): Likewise.
1269 (s390_return_value_convention): Likewise.
1270 * spu-tdep.c (spu_push_dummy_call): Eliminate LEN and use
1271 TYPE_LENGTH directly.
1272
1273 2012-09-17 Yao Qi <yao@codesourcery.com>
1274
1275 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): New.
1276 Update comment to add_setshow_integer_cmd.
1277 * cli/cli-setshow.c (do_set_command): Handle case
1278 'var_zuinteger_unlimited'.
1279 (do_show_command): Likewise.
1280 * cli/cli-cmds.c (init_cmds): Call add_setshow_zuinteger_unlimited_cmd
1281 for command 'remotetimeout'.
1282 * command.h (enum var_types): New zuinteger_unlimited. Update comment
1283 to var_integer.
1284 * source.c (_initialize_source): Call add_setshow_zuinteger_unlimited_cmd
1285 for command 'set listsize'.
1286
1287 2012-09-17 Siddhesh Poyarekar <siddhesh@redhat.com>
1288
1289 * infrun.c (restore_infcall_suspend_state): Eliminate single-use
1290 variable LEN.
1291
1292 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
1293
1294 PR 14119
1295 * frame.c (skip_inlined_frames): Skip also TAILCALL_FRAME frames.
1296 (frame_pop): Drop also TAILCALL_FRAME frames.
1297 * infcmd.c (finish_command): Ignore also TAILCALL_FRAME frames.
1298
1299 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
1300 Pedro Alves <palves@redhat.com>
1301
1302 PR 14548
1303 * infrun.c (handle_inferior_event): Do not reverse-continue back to the
1304 function start if we are already at function start. Both for
1305 reverse-next and for reverse-step into function without line number
1306 info.
1307
1308 2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com>
1309
1310 Code cleanup - rename 'inline' depth to 'artificial' depth.
1311 * breakpoint.c (set_momentary_breakpoint): Rename at a caller to
1312 frame_id_artificial_p, extend the comment.
1313 * dwarf2-frame-tailcall.c (tailcall_frame_this_id): Rename at a user.
1314 * frame.c (fprint_frame_id): Rename at a user, change debug output
1315 text to "artificial=".
1316 (skip_inlined_frames): Rename to ...
1317 (skip_artificial_frames): ... here. Extend the comment.
1318 (get_stack_frame_id, frame_unwind_caller_id): Rename at a caller.
1319 (frame_id_inlined_p): Rename to ...
1320 (frame_id_artificial_p): ... here. Rename at a user.
1321 (frame_id_eq, frame_id_inner, frame_unwind_caller_pc)
1322 (frame_unwind_caller_pc_if_available, frame_unwind_caller_arch): Rename
1323 at a user.
1324 * frame.h (struct frame_id): Rename inline_depth to artificial_depth.
1325 Extend the comment.
1326 (frame_id_inlined_p): Rename to ...
1327 (frame_id_artificial_p): ... here.
1328 * inline-frame.c (inline_frame_this_id): Rename at a user.
1329
1330 2012-09-14 Andrew Burgess <aburgess@broadcom.com>
1331
1332 * c-typeprint.c (c_type_print_varspec_suffix): Display the size of
1333 vector variables using vector_size syntax rather than array
1334 syntax.
1335
1336 2012-09-14 Siddhesh Poyarekar <siddhesh@redhat.com>
1337
1338 * valarith.c (value_concat): Replace unsafe ALLOCA with
1339 XMALLOC/XFREE.
1340
1341 2012-09-14 Pedro Alves <palves@redhat.com>
1342
1343 * gdb.1 (SEE ALSO): Expand pointer to GDB's Texinfo manual.
1344
1345 2012-09-14 Khoo Yit Phang <khooyp@cs.umd.edu>
1346
1347 Point contrib/cc-with-tweaks.sh to the build-local data-directory.
1348 * contrib/cc-with-tweaks.sh (GDB): Add -data-directory
1349 data-directory as appropriate.
1350
1351 2012-09-14 Siddhesh Poyarekar <siddhesh@redhat.com>
1352
1353 * printcmd.c (ui_printf): Eliminate single-use variable
1354 PARAM_LEN.
1355
1356 2012-09-14 Yao Qi <yao@codesourcery.com>
1357 Pedro Alves <palves@redhat.com>
1358
1359 * valops.c (value_assign): Move observer_notify_target_changed
1360 below to replace reinit_frame_cache.
1361
1362 2012-09-13 Khoo Yit Phang <khooyp@cs.umd.edu>
1363
1364 Refactor Python "gdb" module into a proper Python package, by
1365 introducing a new "_gdb" module for code implemented in C, and
1366 using reload/__import__ instead of exec.
1367 * python/lib/gdb/__init__.py: Import * from _gdb.
1368 (GdbOutputFile, sys.stdout, GdbOutputErrorFile, sys.stderr,
1369 prompt_hook, sys.argv): Moved from finish_python_initialization.
1370 (pretty_printers, PYTHONDIR): Moved from _initialize_python.
1371 (packages, auto_load_packages): New list and function replacing
1372 module_dict and auto-loading code, using __file__ instead of
1373 gdb.PYTHONDIR and reload/__import__ instead of exec.
1374 (GdbSetPythonDirectory): Replacing function of the same name
1375 from finish_python_initialization, using reload/__import__ instead
1376 of exec, as well as call auto_load_packages.
1377 * python/py-prettyprint.c (find_pretty_printer_from_gdb): Check
1378 gdb_python_module and not gdb_module.
1379 * python/python-internal.h (gdb_python_module): Declare.
1380 * python/python.c (gdb_python_module): New global.
1381 (before_prompt_hook): Check gdb_python_module and not gdb_module.
1382 (_initialize_python): Rename gdb module to _gdb.
1383 Move gdb.PYTHONDIR and gdb.pretty_printer to lib/gdb/__init__.py.
1384 (finish_python_initialization): Move Python code to
1385 lib/gdb/__init__.py; instead, set up sys.path and import gdb into
1386 __main__.
1387
1388 2012-09-13 Pedro Alves <palves@redhat.com>
1389
1390 * Makefile.in (COMMON_OBS): Add registry.o.
1391 * registry.c: New file.
1392 * registry.h (struct registry_container): Declare.
1393 (registry_data_callback): New typedef.
1394 (struct registry_data, struct registry_data_registration, struct
1395 registry_data_registry): New type.
1396 (register_data_with_cleanup, registry_alloc_data)
1397 (registry_callback_adaptor, registry_clear_data)
1398 (registry_container_free_data, registry_set_data, registry_data):
1399 Declare.
1400 (DEFINE_REGISTRY): Refactor structures and functions as shims over
1401 the new common structures and functions.
1402 (DECLARE_REGISTRY): Declare struct TAG ## _data. Use the tagged
1403 callback typedefs.
1404
1405 2012-09-12 Mike Wrighton <wrighton@codesourcery.com>
1406
1407 * remote.c (remote_insert_hw_breakpoint): Throw exception if
1408 there is an error inserting hardware breakpoints and use the
1409 error message from the target.
1410
1411 * breakpoint.c (insert_bp_location, insert_breakpoint_locations):
1412 Catch this exception and print the error message contained within. Do not
1413 print the default hardware error breakpoint message in this case.
1414
1415 2012-09-12 Doug Evans <dje@google.com>
1416
1417 * dwarf2read.c (dwarf2_read_addr_index): Fix handling the case where
1418 cu == NULL.
1419
1420 2012-09-11 Doug Evans <dje@google.com>
1421
1422 * dwarf2read.c (dw2_do_expand_symtabs_matching): Don't examine
1423 .gdb_index symbol attributes if there are none.
1424
1425 2012-09-11 Joel Brobecker <brobecker@adacore.com>
1426
1427 * symtab.h (struct minimal_symbol) [has_size]: New field.
1428 (MSYMBOL_SIZE): Adjust to forbid macro from being used as lvalue.
1429 (SET_MSYMBOL_SIZE, MSYMBOL_HAS_SIZE): New macros.
1430 * printcmd.c (build_address_symbolic): Only filter out zero-sized
1431 minimal symbols if the symbol's size is actually known.
1432 * minsyms.c (prim_record_minimal_symbol_full): Adjust setting
1433 of msymbol's size field. Add comment.
1434 * elfread.c (elf_symtab_read, elf_rel_plt_read): Use
1435 SET_MSYMBOL_SIZE to set the minimal symbol size.
1436
1437 2012-09-11 Joel Brobecker <brobecker@adacore.com>
1438
1439 * minsyms.c (install_minimal_symbols): Use memset to fill entire
1440 minimal_symbol struct object, rather than setting some of its
1441 fields one by one.
1442
1443 2012-09-11 Andrew Burgess <aburgess@broadcom.com>
1444
1445 * c-typeprint.c (c_type_print_varspec_prefix): Pass through the
1446 passed_a_ptr flag when displaying typedef types.
1447
1448 2012-09-10 Joel Brobecker <brobecker@adacore.com>
1449
1450 * ada-lang.c (coerce_unspec_val_to_type): Make sure that
1451 the optimized_out flag is preserved.
1452
1453 2012-09-10 Anthony Green <green@moxielogic.com>
1454
1455 * moxie-tdep.c (moxie_analyze_prologue): Update for function
1456 prologue changes in GCC.
1457
1458 2012-09-10 Keith Seitz <keiths@redhat.com>
1459
1460 PR gdb/13483
1461 * gdbtypes.h (BOOL_PTR_CONVERSION_BADNESS): Rename to ...
1462 (BOOL_CONVERSION_BADNESS): ... this.
1463 * gdbtypes.c (BOOL_PTR_CONVERSION_BADNESS): Likewise.
1464 (rank_one_type): Allow all boolean conversions
1465 permitted by the standard.
1466
1467 2012-09-06 Tom Tromey <tromey@redhat.com>
1468
1469 * python/py-newobjfileevent.c (create_new_objfile_event_object):
1470 Don't decref py_objfile.
1471
1472 2012-09-02 Khoo Yit Phang <khooyp@cs.umd.edu>
1473
1474 Do not enable -lmcheck by default when Python is enabled with
1475 threading support.
1476 * configure.ac: (python_has_threads) New variable, by testing
1477 if WITH_THREAD is defined in Python.h.
1478 Move --enable-lmcheck after --with-python.
1479 Do not enable -lmcheck by default if python_has_threads=yes.
1480 Warn if --enable-lmcheck and python_has_threads=yes.
1481 * configure: Regenerate.
1482
1483 2012-08-31 Yao Qi <yao@codesourcery.com>
1484
1485 * mi/mi-cmds.c (mi_cmds): New macros DEF_MI_CMD_CLI
1486 DEF_MI_CMD_MI DEF_MI_CMD_CLI_1 and DEF_MI_CMD_CLI_1.
1487 Update some commands.
1488 * mi/mi-cmds.h (struct mi_cmd) <suppress_notification>: New field.
1489 * mi/mi-main.c (mi_cmd_execute): Set '*parse->cmd->suppress_notification'
1490 to 1.
1491
1492 2012-08-31 Yao Qi <yao@codesourcery.com>
1493
1494 * mi/mi-cmds.c (mi_cmds): Add 'static'.
1495
1496 2012-08-30 Khoo Yit Phang <khooyp@cs.umd.edu>
1497
1498 * MAINTAINERS (Write After Approval): Add "Khoo Yit Phang".
1499
1500 2012-08-29 Doug Evans <dje@google.com>
1501
1502 * main.c (print_gdb_help): Remove reference to
1503 --use-deprecated-index-sections.
1504
1505 2012-08-28 Yao Qi <yao@codesourcery.com>
1506
1507 * cli/cli-cmds.c (max_user_call_depth): Add 'unsigned'.
1508 (init_cmds): Call add_setshow_uinteger_cmd for command
1509 'max-user-call-depth'.
1510 * cli/cli-script.c (execute_user_command): Add 'unsigned' to the
1511 declaration of 'max_user_call_depth'.
1512 * frame.c (backtrace_limit): Add 'unsigned'.
1513 (_initialize_frame): Call add_setshow_uinteger_cmd for command
1514 'limit'.
1515 * remote.c (remoteaddresssize): Add 'unsigned'.
1516 (remote_address_masked): Change local var 'address_size' to
1517 'unsigned'.
1518 (_initialize_remote): Call add_setshow_uinteger_cmd for
1519 'remoteaddresssize'.
1520 * top.c (history_size): Add 'unsigned'.
1521 (show_commands): Change local variables to 'unsigned'.
1522 (set_history_size_command): Don't check history_size is negative.
1523 Adjust the condition to call unstifle_history and set history_size
1524 to UNIT_MAX.
1525
1526 2012-08-28 Pedro Alves <palves@redhat.com>
1527
1528 PR gdb/14428
1529
1530 * infcmd.c (default_print_one_register_info): New, factored out
1531 from default_print_registers_info.
1532 (default_print_registers_info): Use it. Mark value unavailable if
1533 necessary.
1534 (registers_info): Print user registers with
1535 default_print_one_register_info.
1536
1537 2010-08-27 H.J. Lu <hongjiu.lu@intel.com>
1538
1539 PR tui/14486
1540 * tui/tui-source.c (tui_source_is_displayed): Check if TUI_SRC_WIN
1541 is not NULL before referencing it.
1542
1543 2012-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1544
1545 * breakpoint.c (parse_breakpoint_sals) <(*address) == NULL>: New
1546 variable pc. Call find_pc_line instead of find_pc_overlay, restore
1547 original PC for it.
1548
1549 2012-08-27 Eli Zaretskii <eliz@gnu.org>
1550 Jan Kratochvil <jan.kratochvil@redhat.com>
1551
1552 * auto-load.c (auto_load_objfile_script): Rename to ...
1553 (auto_load_objfile_script_1): ... here, change variable realname to
1554 parameter realname, document it, add return value, add variable retval.
1555 (auto_load_objfile_script): New function.
1556
1557 2012-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1558
1559 * cli/cli-decode.c (print_doc_line): Keep skipping '.' and ',' not
1560 followed by a whitespace.
1561
1562 2012-08-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1563
1564 PR gdb/14494.
1565 * dwarf2read.c (dwarf2_locate_sections): Move variable aflag here.
1566 Move the SEC_HAS_CONTENTS check here - for any NAMES use.
1567 (dwarf2_locate_sections) <eh_frame>: Move the variable and check from
1568 here.
1569
1570 2012-08-27 Wei-cheng Wang <cole945@gmail.com>
1571
1572 * memattr.c (create_mem_region): Fix memory region overlapping
1573 checking.
1574
1575 2012-08-24 Siddhesh Poyarekar <siddhesh@redhat.com>
1576
1577 * h8300-tdep.c (h8300_push_dummy_call): Replace unsafe alloca
1578 with xmalloc/cleanup.
1579 * mt-tdep.c (mt_push_dummy_call): Likewise.
1580 * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
1581 * xstormy16-tdep.c (xstormy16_push_dummy_call): Likewise.
1582
1583 2012-08-24 Yao Qi <yao@codesourcery.com>
1584
1585 * jv-exp.y (push_expression_name): Add "." at the end of error
1586 message.
1587
1588 2012-08-23 Khoo Yit Phang <khooyp@cs.umd.edu>
1589
1590 Document how to return from "python-interactive" to GDB.
1591 * python/python.c (_initialize_python): Update documentation.
1592
1593 2012-08-23 Pedro Alves <palves@redhat.com>
1594
1595 * infrun.c (_initialize_infrun) <handle command help text>:
1596 Mention that multiple signals are supported.
1597
1598 2012-08-23 Pedro Alves <palves@redhat.com>
1599
1600 * infcmd.c (_initialize_infcmd) <signal command>: Fix typo in help
1601 string.
1602
1603 2012-08-23 Yao Qi <yao@codesourcery.com>
1604
1605 * tracepoint.c (disconnect_tracing): Call set_tracepoint_num.
1606 (tfind_1): Don't call registers_changed, set_traceframe_num,
1607 and clear_traceframe_info.
1608 Call set_current_traceframe.
1609 (set_current_traceframe): call set_traceframe_num.
1610
1611 2012-08-22 Sergio Durigan Junior <sergiodj@redhat.com>
1612
1613 * remote-sim.c (_initialize_remote_sim): Pass NULL argument to
1614 `register_inferior_data_with_cleanup', fixing regression on PowerPC64.
1615
1616 2012-08-22 Khoo Yit Phang <khooyp@cs.umd.edu>
1617
1618 Enable readline in Python in a GDB-specific way and block the
1619 standard Python readline module to prevent conflicts with GDB.
1620 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-gdb-readline.o.
1621 (SUBDIR_PYTHON_SRCS): Add python/py-gdb-readline.c.
1622 (py-gdb-readline.o): Add rule to compile python/py-gdb-readline.c.
1623 * python/py-gdb-readline.c: New file.
1624 * python/python-internal.h (gdbpy_initialize_gdb_readline): New
1625 prototype.
1626 * python/python.c (_initialize_python): Call
1627 gdbpy_initialize_gdb_readline.
1628
1629 2012-08-22 Keith Seitz <keiths@redhat.com>
1630
1631 * defs.h: Include build-gnulib/config.h
1632
1633 2012-08-22 Joseph Myers <joseph@codesourcery.com>
1634
1635 * arm-tdep.c (thumb_get_next_pc_raw): Mask off low bits for bx pc
1636 and blx pc.
1637
1638 2012-08-22 Khoo Yit Phang <khooyp@cs.umd.edu>
1639
1640 Add a new "python-interactive" command that starts a standard
1641 Python interactive prompt with "pi" as alias, and add "py" as
1642 an alias to "python".
1643 * NEWS: Mention the new commands.
1644 * python/python.c (eval_python_command): New function.
1645 (python_interactive_command): For "python-interactive" with
1646 arguments, call eval_python_command. For "python-interactive"
1647 without arguments, call PyRun_InteractiveLoop.
1648 (_initialize_python): Add "python-interactive" command with
1649 "pi" as alias, and add "py" as an alias to "python".
1650
1651 2012-08-22 Tom Tromey <tromey@redhat.com>
1652
1653 * defs.h (quit_flag): Don't declare.
1654 (clear_quit_flag, check_quit_flag, set_quit_flag): Declare.
1655 (QUIT): Use new functions.
1656 * event-top.c (command_handler): Use clear_quit_flag.
1657 (handle_sigint): Use set_quit_flag.
1658 (async_request_quit): Use check_quit_flag. Don't check
1659 immediate_quit.
1660 * exceptions.c (throw_exception): Use clear_quit_flag.
1661 * main.c (captured_main): Use clear_quit_flag.
1662 * python/python.c (clear_quit_flag, set_quit_flag)
1663 (check_quit_flag): New functions.
1664 * remote-sim.c (gdb_os_poll_quit): Use check_quit_flag,
1665 clear_quit_flag.
1666 * remote.c (remote_wait_as): Use check_quit_flag,
1667 clear_quit_flag.
1668 (remote_start_remote): Call QUIT.
1669 * symfile.c (load_progress): Use check_quit_flag.
1670 * top.c (command_loop): Use clear_quit_flag.
1671 (command_line_input): Call QUIT.
1672 * utils.c (quit_flag): Conditionally define.
1673 (clear_quit_flag, check_quit_flag, set_quit_flag): New
1674 functions.
1675 (prompt_for_continue): Call QUIT. Use quit, not
1676 async_request_quit.
1677 * remote-mips.c (mips_expect_timeout): Call QUIT.
1678 * monitor.c (monitor_expect): Call QUIT.
1679
1680 2012-08-22 Tom Tromey <tromey@redhat.com>
1681
1682 * event-top.c (sigwinch_token, handle_sigwinch): Remove.
1683 (async_init_signals): Update.
1684 * utils.c (init_page_info): Don't use SIGWINCH_HANDLER.
1685 (SIGWINCH_HANDLER_BODY): Remove.
1686
1687 2012-08-22 Tom Tromey <tromey@redhat.com>
1688
1689 * jit.c (jit_object_close_impl): Don't malloc the objfile
1690 name.
1691 * objfiles.c (allocate_objfile): Don't malloc the objfile
1692 name.
1693 (free_objfile): Don't free the objfile name.
1694 * objfiles.h (struct objfile) <name>: Update comment.
1695 * symfile.c (reread_symbols): Fix reference counting. Don't
1696 malloc objfile name.
1697
1698 2012-08-22 Tom Tromey <tromey@redhat.com>
1699
1700 * windows-nat.c (windows_make_so): Use gdb_bfd_open.
1701 * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_open.
1702 (symfile_bfd_open): Likewise.
1703 (generic_load): Likewise.
1704 * solib.c (solib_bfd_fopen): Use gdb_bfd_open.
1705 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
1706 gdb_bfd_open.
1707 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
1708 Use gdb_bfd_open.
1709 * rs6000-nat.c (add_vmap): Use gdb_bfd_open.
1710 * remote-mips.c (mips_load_srec): Use gdb_bfd_open.
1711 (pmon_load_fast): Likewise.
1712 * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_open.
1713 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_open.
1714 * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_open.
1715 (macho_check_dsym): Likewise.
1716 * m32r-rom.c (m32r_load): Use gdb_bfd_open.
1717 (m32r_upload_command): Likewise.
1718 * gdb_bfd.h (gdb_bfd_cache): Declare.
1719 * gdb_bfd.c (struct gdb_bfd_data): New.
1720 (gdb_bfd_cache): New global.
1721 (struct gdb_bfd_cache_search): New.
1722 (hash_bfd): New function.
1723 (eq_bfd): Likewise.
1724 (gdb_bfd_open): Likewise.
1725 (gdb_bfd_ref): Allocate a gdb_bfd_data and attach to the BFD.
1726 (gdb_bfd_unref): Remove closed BFD from cache. Update for
1727 gdb_bfd_data.
1728 * exec.c (exec_file_attach): Use gdb_bfd_open.
1729 * dsrec.c (load_srec): Use gdb_bfd_open.
1730
1731 2012-08-22 Tom Tromey <tromey@redhat.com>
1732
1733 * dwarf2read.c (macro_start_file): Update.
1734 * objfiles.c (get_objfile_bfd_data): Initialize macro_cache.
1735 (free_objfile_per_bfd_storage): Destroy macro_cache.
1736 (allocate_objfile, free_objfile): Update.
1737 * objfiles.h (struct objfile_per_bfd_storage) <macro_cache>:
1738 New field.
1739 (struct objfile) <macro_cache>: Remove.
1740 * symfile.c (reread_symbols): Update.
1741 * symmisc.c (print_symbol_bcache_statistics): Update.
1742 (print_objfile_statistics): Update.
1743
1744 2012-08-22 Tom Tromey <tromey@redhat.com>
1745
1746 * elfread.c (elf_symtab_read): Update.
1747 * objfiles.c (objfiles_bfd_data): New global.
1748 (get_objfile_bfd_data, free_objfile_per_bfd_storage)
1749 (objfile_bfd_data_free, set_objfile_per_bfd): New functions.
1750 (allocate_objfile, free_objfile): Update.
1751 (_initialize_objfiles): Initialize objfiles_bfd_data.
1752 * objfiles.h (struct objfile_per_bfd_storage): New.
1753 (struct objfile) <per_bfd>: New field.
1754 <filename_cache>: Remove.
1755 (set_objfile_per_bfd): Declare.
1756 * symfile.c (reread_symbols): Update. Call
1757 set_objfile_per_bfd.
1758 (allocate_symtab): Update.
1759 * symmisc.c (print_symbol_bcache_statistics): Update.
1760 (print_objfile_statistics): Print the size of the BFD obstack.
1761
1762 2012-08-22 Tom Tromey <tromey@redhat.com>
1763
1764 * gdb_bfd.h: Include registry.h. Use DECLARE_REGISTRY.
1765 * gdb_bfd.c: Use DEFINE_REGISTRY.
1766 (struct gdb_bfd_data): Add REGISTRY_FIELDS.
1767 (gdb_bfd_ref): Call bfd_alloc_data.
1768 (gdb_bfd_unref): Call bfd_free_data.
1769
1770 2012-08-22 Tom Tromey <tromey@redhat.com>
1771
1772 * registry.h (struct registry_fields): New.
1773 (REGISTRY_FIELDS): Redefine.
1774 (REGISTRY_ACCESS_FIELD): New macro.
1775 (DEFINE_REGISTRY): Add ACCESS argument. Update defined
1776 functions.
1777
1778 2012-08-22 Tom Tromey <tromey@redhat.com>
1779
1780 * auto-load.c (_initialize_auto_load): Update.
1781 * solib-svr4.c (_initialize_svr4_solib): Update
1782 * solib-dsbt.c (_initialize_dsbt_solib): Update.
1783 * solib-darwin.c (_initialize_darwin_solib): Update.
1784 * registry.h: New file.
1785 * python/py-progspace.c (gdbpy_initialize_pspace): Update.
1786 * python/py-inferior.c (gdbpy_initialize_inferior): Update.
1787 * progspace.h: Include registry.h. Use DECLARE_REGISTRY.
1788 (register_program_space_data_with_cleanup)
1789 (register_program_space_data, program_space_alloc_data)
1790 (clear_program_space_data, set_program_space_data)
1791 (program_space_data): Don't declare.
1792 * progspace.c: Use DEFINE_REGISTRY.
1793 (struct program_space_data, struct
1794 program_space_data_registration, struct
1795 program_space_data_registry, program_space_data_registry)
1796 (register_program_space_data_with_cleanup)
1797 (register_program_space_data, program_space_alloc_data)
1798 (program_space_free_data, clear_program_space_data)
1799 (set_program_space_data, program_space_data): Remove.
1800 * objfiles.h: Include registry.h. Use DECLARE_REGISTRY.
1801 (struct objfile) <data, num_data>: Replace with REGISTRY_FIELDS.
1802 (register_objfile_data_with_cleanup, register_objfile_data)
1803 (clear_objfile_data, set_objfile_data, objfile_data): Don't
1804 declare.
1805 * objfiles.c: Use DEFINE_REGISTRY.
1806 (struct objfile_data, struct objfile_data_registration, struct
1807 objfile_data_registry, objfile_data_registry)
1808 (register_objfile_data_with_cleanup, register_objfile_data)
1809 (objfile_alloc_data, objfile_free_data, clear_objfile_data)
1810 (set_objfile_data, objfile_data): Remove.
1811 (_initialize_objfiles): Update.
1812 * jit.c (_initialize_jit): Update.
1813 * inflow.c (_initialize_inflow): Update.
1814 * inferior.h: Include registry.h. Use DECLARE_REGISTRY.
1815 (struct inferior) <data, num_data>: Replace with REGISTRY_FIELDS.
1816 (register_inferior_data_with_cleanup, register_inferior_data)
1817 (clear_inferior_data, set_inferior_data, inferior_data): Don't
1818 declare.
1819 * inferior.c: Use DEFINE_REGISTRY.
1820 (struct inferior_data, struct inferior_data_registration, struct
1821 inferior_data_registry, inferior_data_registry)
1822 (register_inferior_data_with_cleanup, register_inferior_data)
1823 (inferior_alloc_data, inferior_free_data clear_inferior_data)
1824 (set_inferior_data, inferior_data): Remove.
1825 * auxv.c (_initialize_auxv): Update.
1826 * ada-lang.c (_initialize_ada_language): Update.
1827 * breakpoint.c (_initialize_breakpoint): Update.
1828 * i386-nat.c (i386_use_watchpoints): Update.
1829
1830 2012-08-22 Tom Tromey <tromey@redhat.com>
1831
1832 * exec.c (exec_close, exec_file_attach): Update.
1833 (add_to_section_table): Initialize 'key' field.
1834 (add_target_sections, remove_target_sections): Add 'key' argument.
1835 * exec.h (add_target_sections, remove_target_sections): Add
1836 'key' argument.
1837 * solib.c (solib_map_sections, update_solib_list, clear_solib)
1838 (reload_shared_libraries_1): Update.
1839 * target.h (struct target_section) <key>: New field.
1840
1841 2012-08-22 Tom Tromey <tromey@redhat.com>
1842
1843 * cli/cli-cmds.c (filter_sals): Handle nelts == 0 case.
1844
1845 2012-08-21 Pierre Muller <muller@ics.u-strasbg.fr>
1846
1847 * symfile.c (allocate_symtab): Use host_address_to_string
1848 function instead of cast of pointer to long which is not
1849 compatible with x86_64-w64-mingw32 build.
1850
1851 2012-08-19 Andrew Pinski <apinski@cavium.com>
1852
1853 * mips-tdep.c (is_octeon): New function.
1854 (is_octeon_bbit_op): New function.
1855 (mips32_next_pc): Handle Octeon's bbit instructions.
1856 (mips32_instruction_has_delay_slot): Likewise.
1857
1858 2012-08-19 Andrew Pinski <apinski@cavium.com>
1859
1860 * mips-tdep.c (mips32_next_pc): Fix line spacing of the comment
1861 before the function.
1862
1863 2012-08-19 Andrew Pinski <apinski@cavium.com>
1864
1865 * mips-tdep.c (mips32_next_pc): Consolidate calls to itype_op.
1866
1867 2012-08-19 Keith Seitz <keiths@redhat.com>
1868
1869 PR c++/14365
1870 * c-typeprint.c (c_type_print_varspec_prefix): Pass
1871 -1 for SHOW to c_type_print_base for METHODPTR and MEMBERPTR.
1872
1873 2012-08-18 Eli Zaretskii <eliz@gnu.org>
1874
1875 * Makefile.in (HFILES_NO_SRCDIR): Fix a typo: golang.h -> go-lang.h.
1876 The typo broke "make TAGS".
1877
1878 2012-08-17 Joel Brobecker <brobecker@adacore.com>
1879
1880 GDB 7.5 released.
1881
1882 2012-08-17 Keith Seitz <keiths@redhat.com>
1883
1884 PR c++/13356
1885 * gdbtypes.c (strict_type_checking): New variable.
1886 (show_strict_type_checking): New function.
1887 (rank_one_type): Return NS_POINTER_INTEGER_CONVERSION_BADNESS
1888 if strict type checking is disabled.
1889 (_initialize_gdbtypes): Add "check type" subcommand.
1890 * gdbtypes.h (NS_INTEGER_POINTER_CONVERSION_BADNESS): New struct.
1891
1892 2012-08-17 Keith Seitz <keiths@redhat.com>
1893
1894 * language.h (type_mode): Remove.
1895 (type_check): Remove.
1896 (struct language_defn): Remove la_type_check.
1897 (STRICT_TYPE): Remove unused macro.
1898 (type_error): Remove.
1899 * language.c (set_type_range_case): Renamed to ...
1900 (set_range_case): ... this. Update all callers.
1901 Remove type_mode/type_check.
1902 (type_mode): Remove.
1903 (type_check): Remove.
1904 (show_type_command): Remove.
1905 (set_type_command): Remove.
1906 (language_info): Remove type checking output.
1907 (type_error): Remove unused function.
1908 (range_error): Update comment.
1909 (unknown_language_defn): Remove la_type_check.
1910 (auto_language_defn): Likewise.
1911 (local_language_defn): Likewise.
1912 (_initialize_language): Remove "check type" subcommand.
1913 * ada-lang.c (ada_language_defn): Remove la_type_check.
1914 * c-lang.c (c_language_defn): Likewise.
1915 (cplus_language_defn): Likewise.
1916 (asm_language_defn): Likewise.
1917 (minimal_language_defn): Likewise.
1918 * d-lang.c (d_language_defn): Likewise.
1919 * f-lang.c (f_language_defn): Likewise.
1920 * go-lang.c (go_language_defn): Likewise.
1921 * jv-lang.c (java_language_defn): Likewise.
1922 * m2-lang.c (m2_language_defn): Likewise.
1923 * objc-lang.c (objc_language_defn): Likewise.
1924 * opencl-lang.c (opencl_language_defn): Likewise.
1925 * p-lang.c (pascal_language_defn): Likewise.
1926
1927 2012-08-16 Mike Frysinger <vapier@gentoo.org>
1928
1929 * infcmd.c (_initialize_infcmd): Remove trailing ) in next help text.
1930
1931 2012-08-16 Joel Brobecker <brobecker@adacore.com>
1932
1933 * ia64-hpux-nat.c (ia64_hpux_get_register_from_save_state_t):
1934 New function.
1935 (ia64_hpux_xfer_memory): Check if inferior_ptid is known before
1936 using the regache. Use ia64_hpux_get_register_from_save_state_t
1937 to access the bsp and bspstore registers if not.
1938
1939 2012-08-16 Joel Brobecker <brobecker@adacore.com>
1940
1941 * breakpoint.h (detach_breakpoints): pid parameter is now a ptid.
1942 * breakpoint.c (detach_breakpoints): Change pid parameter into
1943 a ptid. Adjust code accordingly.
1944 * infrun.c (handle_inferior_event): Delete variable child_pid.
1945 Update call to detach_breakpoints to pass the child ptid for
1946 fork events.
1947 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Remove
1948 assert that inferior_ptid's lwp is zero.
1949 (linux_handle_extended_wait): Update call to detach_breakpoints.
1950 * inf-ttrace.c (inf_ttrace_follow_fork): Update call to
1951 detach_breakpoints.
1952
1953 2012-08-16 Joel Brobecker <brobecker@adacore.com>
1954
1955 * inf-ttrace.c (inf_ttrace_follow_fork): When following the
1956 parent, only call detach_breakpoints if tts.tts_event ==
1957 TTEVT_VFORK.
1958
1959 2012-08-16 Joel Brobecker <brobecker@adacore.com>
1960
1961 * dwarf2-frame.c (dwarf2_frame_cache): Use
1962 get_frame_address_in_block instead of get_frame_pc as
1963 the bound for executing the frame's FDE.
1964
1965 2012-08-16 Yao Qi <yao@codesourcery.com>
1966
1967 * gdbtypes.h (enum type_code): Define TYPE_CODE_BITSTRING -1.
1968 * arm-tdep.c (arm_type_align): Remove code handling TYPE_CODE_BITSTRING.
1969 * c-typeprint.c (c_type_print_varspec_prefix): Likewise.
1970 (c_type_print_varspec_suffix): Likewise.
1971 * eval.c (evaluate_subexp_standard): Likewise.
1972 * f-typeprint.c (f_type_print_varspec_prefix): Likewise.
1973 (f_type_print_varspec_suffix): Likewise.
1974 * gdbtypes.c (is_scalar_type): Likewise.
1975 (recursive_dump_type): Likewise.
1976 * infcall.c (value_arg_coerce): Likewise.
1977 * m2-valprint.c (m2_val_print): Likewise.
1978 * p-typeprint.c (pascal_type_print_varspec_prefix): Likewise.
1979 (pascal_type_print_varspec_suffix): Likewise.
1980 (pascal_type_print_base): Likewise.
1981 * p-valprint.c (pascal_val_print): Likewise.
1982 (pascal_val_print): Likewise.
1983 * valops.c (value_slice): Likewise.
1984 * valprint.c (scalar_type_p): Likewise.
1985 * valarith.c (value_bitstring_subscript): Remove.
1986 (value_concat): Remove code handling TYPE_CODE_BITSTRING.
1987 Remove comment on TYPE_CODE_BITSTRING.
1988
1989 * stabsread.c (read_type): Don't set TYPE_CODE (type) to
1990 TYPE_CODE_BITSTRING.
1991
1992 * python/py-type.c (pyty_codes): Move ENTRY (TYPE_CODE_BITSTRING) to
1993 slot 0.
1994
1995 2012-08-16 Yao Qi <yao@codesourcery.com>
1996
1997 * tracepoint.c (trace_find_none_command): Remove.
1998 (_initialize_tracepoint): Call add_alias_cmd for "tfind none".
1999
2000 2012-08-16 Yao Qi <yao@codesourcery.com>
2001
2002 * remote.c (handle_notification): Remove parameter 'length'.
2003 (putpkt_binary, getpkt_or_notif_sane_1): Caller update.
2004
2005 2012-08-15 Keith Seitz <keiths@redhat.com>
2006
2007 * gdbtypes.c (opaque_type_resolution): Make static.
2008 Add missing comment.
2009 (overload_debug): Add missing comment.
2010 (show_opaque_type_resolution): Likewise.
2011 (show_overload_debug): Likewise.
2012 (print_bit_vector): Remove unnecessary forward declaration.
2013 (print_arg_types): Likewise.
2014 (dump_fn_fieldlists): Likewise.
2015 (print_cplus_stuff): Likewise.
2016
2017 2012-08-15 Tom Tromey <tromey@redhat.com>
2018
2019 * gdb_bfd.c (struct gdb_bfd_data) <archive_bfd>: New field.
2020 (gdb_bfd_ref): Initialize new field.
2021 (gdb_bfd_unref): Unref the archive BFD.
2022 (gdb_bfd_openr_next_archived_file): Acquire a reference to the
2023 parent archive.
2024
2025 2012-08-15 Tom Tromey <tromey@redhat.com>
2026
2027 PR python/14387:
2028 * python/py-bpevent.c (create_breakpoint_event_object): Update
2029 comment.
2030 * python/py-event.c (evpy_add_attribute): Update comment.
2031 * python/py-exitedevent.c (create_exited_event_object): Fix
2032 reference counting and error handling.
2033 * python/py-newobjfileevent.c (create_new_objfile_event_object):
2034 Fix reference counting.
2035 * python/py-signalevent.c (create_signal_event_object): Fix
2036 reference counting and error handling.
2037 * python/py-stopevent.c (emit_stop_event): Fix reference
2038 counting.
2039 * python/py-threadevent.c (get_event_thread): Return a
2040 borrowed reference.
2041 * python/py-type.c (convert_field): Fix reference counting.
2042
2043 2012-08-15 Tom Tromey <tromey@redhat.com>
2044
2045 * dwarf2read.c (dwarf_decode_macro_bytes)
2046 <DW_MACRO_GNU_transparent_include>: Use pointer to included data
2047 as hash key.
2048
2049 2012-08-14 Mike Frysinger <vapier@gentoo.org>
2050
2051 * infcmd.c (_initialize_infcmd): Update help text for the signal,
2052 stepi, nexti, finish, next, step, jump, and continue commands.
2053 * infrun.c (_initialize_infrun): Update help text for the handle
2054 command.
2055
2056 2012-08-14 Doug Evans <dje@google.com>
2057
2058 * gdbtypes.c (struct extra): Delete, unused.
2059
2060 * gdbtypes.c: Whitespace cleanup.
2061 (address_space_name_to_int): Remove "extern" from definition.
2062 (_initialize_gdbtypes): Declare with initialize_file_ftype.
2063
2064 * gdbtypes.c (make_pointer_type): Remove redundant setting of
2065 TYPE_POINTER_TYPE (type).
2066
2067 2012-08-14 Gary Benson <gbenson@redhat.com>
2068
2069 * solib-svr4.c (svr4_free_library_list): Use free_so.
2070
2071 2012-08-13 Mike Frysinger <vapier@gentoo.org>
2072
2073 * .gitignore: Add go-exp.c.
2074
2075 2012-08-13 Doug Evans <dje@google.com>
2076
2077 * value.c (show_convenience): Tweak comment.
2078 (_initialize_values): Mention convenience functions in the help text
2079 for "show convenience".
2080
2081 2012-08-13 Yao Qi <yao@codesourcery.com>
2082
2083 * std-operator.def: Remove TERNOP_SLICE_COUNT.
2084 * breakpoint.c (watchpoint_exp_is_const): Remove handling to
2085 TERNOP_SLICE_COUNT.
2086 * eval.c (evaluate_subexp_standard): Likewise.
2087 * expprint.c (print_subexp_standard): Likewise.
2088 (dump_subexp_body_standard): Likewise.
2089 * parse.c (operator_length_standard): Likewise.
2090
2091 2012-08-13 Yao Qi <yao@codesourcery.com>
2092
2093 * std-operator.def: Remove OP_BITSTRING.
2094 * breakpoint.c (watchpoint_exp_is_const): Update.
2095 * eval.c (evaluate_subexp_standard): Remove handling to
2096 OP_BITSTRING.
2097 * expprint.c (print_subexp_standard): Likewise.
2098 (dump_subexp_body_standard): Likewise.
2099 * parse.c (operator_length_standard): Likewise.
2100 * valops.c (value_bitstring): Remove.
2101 * value.h: Remove the declaration of 'value_bitstring'.
2102
2103 2012-08-10 Sergio Durigan Junior <sergiodj@redhat.com>
2104
2105 * linespec.c (find_methods): Remove unused variables `i1' and
2106 `name_len'.
2107 (decode_line_full): Likewise for `arg_start'.
2108
2109 2012-08-10 Sergio Durigan Junior <sergiodj@redhat.com>
2110
2111 * gdb_bfd.c (gdb_bfd_unref): Remove unused variable `slot'.
2112 (zlib_decompress_section): Likewise for `section_data'.
2113 (gdb_bfd_map_section): Likewise for `buf' and `retbuf'.
2114
2115 2012-08-10 Doug Evans <dje@google.com>
2116
2117 Add $_memeq, $_regex, $_streq, $_strlen convenience functions.
2118 * NEWS: Document them.
2119 * data-directory/Makefile.in (PYTHON_FILES): Add function/__init__.py,
2120 function/strfns.py.
2121 * python/py-type.c (typy_array_1): New function.
2122 (typy_array): Call it.
2123 (typy_vector): New function.
2124 (type_object_methods): Add "vector".
2125 * python/lib/gdb/function/__init__.py: New file.
2126 * python/lib/gdb/function/strfns.py: New file.
2127
2128 2012-08-10 Siddhesh Poyarekar <siddhesh@redhat.com>
2129
2130 * python/py-type.c (convert_field): Use gdb_py_long_from_longest
2131 for TYPE_FIELD_BITPOS.
2132 (typy_get_sizeof): Likewise for TYPE_LENGTH.
2133
2134 2012-08-10 Mike Frysinger <vapier@gentoo.org>
2135
2136 PR cli/10436:
2137 * common/vec.h (VEC_merge): Define.
2138 (DEF_VEC_ALLOC_FUNC_I): Add a merge helper.
2139 (DEF_VEC_ALLOC_FUNC_P): Likewise.
2140 (DEF_VEC_ALLOC_FUNC_O): Likewise.
2141 * completer.c: Include gdb_signals.h.
2142 (signal_completer): Define.
2143 * completer.h (signal_completer): Add prototype.
2144 * infcmd.c (_initialize_infcmd): Assign the command
2145 completer for "signal" to handle_completer.
2146 * infrun.c: Include completer.h.
2147 (handle_completer): Define.
2148 (_initialize_infrun): Declare a new local variable c. Store the
2149 result of add_com("handle") to it. Assign the command
2150 completer for "handle" to handle_completer.
2151
2152 2012-08-09 Yao Qi <yao@codesourcery.com>
2153
2154 * cli/cli-decode.c (set_cmd_prefix): New.
2155 (lookup_cmd_for_prefixlist): New.
2156 (add_prefix_cmd): Call set_cmd_prefix and update field 'prefix'
2157 of each cmd_list_element in *prefixlist.
2158 (add_setshow_cmd_full): set_cmd_prefix.
2159 (add_alias_cmd): Likewise.
2160 * cli/cli-decode.h (struct cmd_list_element) <prefix>: New field.
2161 Declare 'auto_boolean_enums'.
2162 * cli/cli-setshow.c: Include "observer.h".
2163 (notify_command_param_changed_p): New.
2164 (add_setshow_auto_boolean_cmd): Move auto_boolean_enums out.
2165 Remove 'static'.
2166 (do_setshow_command): Split it to ...
2167 (do_set_command, do_show_command): ... them. New.
2168 (do_set_command): Call observer_notify_command_param_changed if
2169 notify_command_param_changed_p returns true.
2170 (cmd_show_list): Caller update.
2171 * auto-load.c (set_auto_load_cmd): Likewise.
2172 * remote.c (show_remote_cmd): Likewise.
2173 * cli/cli-setshow.h: Update declarations.
2174 * top.c (execute_command): Call do_set_command and do_show_command.
2175
2176 * NEWS: Mention new MI notification.
2177 * mi/mi-interp.c: Declare mi_command_param_changed.
2178 (mi_interpreter_init): Attach mi_command_param_changed to
2179 observer command_param_changed.
2180 (mi_command_param_changed): New.
2181 Remove mi_suppress_breakpoint_notifications.
2182 Define global variable mi_suppress_notification.
2183 (mi_breakpoint_created): Update.
2184 (mi_breakpoint_deleted): Likewise.
2185 (mi_breakpoint_modified): Likewise.
2186 * mi/mi-main.c (mi_cmd_execute): Likewise. Check command
2187 'gdb-set' and set mi_suppress_notification.
2188 * mi/mi-main.h: (mi_suppress_notification): New struct.
2189
2190 2012-08-09 Andreas Tobler <andreast@fgznet.ch>
2191 Jan Kratochvil <jan.kratochvil@redhat.com>
2192
2193 * fbsd-nat.h (fbsd_find_memory_regions): Use find_memory_region_ftype.
2194
2195 2012-08-09 Yao Qi <yao@codesourcery.com>
2196
2197 * cli/cli-cmds.c (enablebreaklist): Move it to breakpoint.c.
2198 (skiplist): Move it to skip.c.
2199 (init_cmd_lists): Remove code setting enablebreaklist and
2200 skiplist to NULL.
2201 * breakpoint.c (enablebreaklist): Moved from cli/cli-cmds.c.
2202 * cli/cli-cmds.h: Remove declaration of enablebreaklist and
2203 skiplist.
2204 * gdbcmd.h: Likewise.
2205 * skip.c (_initialize_step_skip): Move 'skiplist' from
2206 cli/cli-cmds.c.
2207
2208 2012-08-09 Yao Qi <yao@codesourcery.com>
2209
2210 * cli/cli-dump.c: Add 'static' to some cmd_list_element variables.
2211 * gnu-nat.c, symfile.c: Likewise.
2212
2213 2012-08-08 Aaron Gamble <agamble@google.com>
2214
2215 * utils.c (prompt_for_continue_wait_time): New static global.
2216 (make_command_stats_cleanup): Initialize it.
2217 (report_command_stats): Subtract time waiting for user.
2218 (prompt_for_continue): Track time waiting for user.
2219 (defaulted_query): Track time waiting for user.
2220
2221 2012-08-08 Doug Evans <dje@google.com>
2222
2223 * eval.c (evaluate_subexp_standard): Fix thinko in handling
2224 UNOP_MEMVAL_TYPE.
2225 * expprint.c (print_subexp_standard, case OP_TYPE): New.
2226 (print_subexp_standard, case UNOP_CAST_TYPE): Don't increment pos.
2227 (print_subexp_standard, case UNOP_DYNAMIC_CAST): Ditto.
2228 (print_subexp_standard, case UNOP_REINTERPRET_CAST): Ditto.
2229 (print_subexp_standard, case UNOP_MEMVAL_TYPE): Ditto.
2230 (dump_subexp_body_standard, case UNOP_DYNAMIC_CAST): Don't increment
2231 elt.
2232 (dump_subexp_body_standard, case UNOP_REINTERPRET_CAST): Ditto.
2233 (dump_subexp_body_standard, case UNOP_CAST_TYPE): Ditto.
2234 (dump_subexp_body_standard, case UNOP_MEMVAL_TYPE): Ditto.
2235 (dump_prefix_expression): Handle OP_TYPE.
2236
2237 2012-08-08 Keith Seitz <keiths@redhat.com>
2238
2239 * breakpoint.c (parse_breakpoint_sals): Remove unused variable
2240 addr_start.
2241
2242 2012-08-08 Doug Evans <dje@google.com>
2243
2244 * linux-thread-db.c: #include "gdb_vecs.h".
2245 (try_thread_db_load_from_pdir_1): New arg "subdir". All callers
2246 updated.
2247 (try_thread_db_load_from_pdir): New arg "subdir". All callers updated.
2248 (thread_db_load_search): Use a vector to iterate over path elements.
2249 Handle text appearing after "$pdir".
2250
2251 * gdb_string.h: Moved to ...
2252 * common/gdb_string.h: ... here.
2253 * common/vec.h: Remove #ifndef GDBSERVER conditional inclusion of
2254 gdb_string.h and gdb_assert.h.
2255
2256 2012-08-08 Yao Qi <yao@codesourcery.com>
2257
2258 * tic6x-tdep.c (tic6x_register_to_value): Remove.
2259 (tic6x_value_to_register): Likewise.
2260 (tic6x_gdbarch_init): Don't call set_gdbarch_register_to_value
2261 and set_gdbarch_value_to_register.
2262
2263 2012-08-07 Jan Kratochvil <jan.kratochvil@redhat.com>
2264 Jean-Marc Saffroy <saffroy@gmail.com>
2265
2266 PR 11804
2267 * defs.h (find_memory_region_ftype): New comment. New arg modified.
2268 * fbsd-nat.c (fbsd_find_memory_regions): Add the passed modified value.
2269 * gcore.c (gcore_create_callback): New function comment. Add modified
2270 parameter. Only write modified regions. Set SEC_READONLY exactly
2271 according to MODIFIED.
2272 (objfile_find_memory_regions): Ignore separate debug info files. Ass
2273 the passed modified value to FUNC.
2274 * gnu-nat.c (gnu_find_memory_regions): Add the passed modified value.
2275 * linux-tdep.c (linux_find_memory_regions): Try to reads smaps file
2276 first. New variables modified and has_anonymous. Parse the lines of
2277 smaps file. Add the passed MODIFIED value to FUNC.
2278 * procfs.c (find_memory_regions_callback): Add the passed modified
2279 value.
2280
2281 2012-08-06 Tom Tromey <tromey@redhat.com>
2282
2283 * dwarf2-frame.c (clear_pointer_cleanup): New function.
2284 (dwarf2_frame_cache): Use it.
2285 * frame-unwind.h (frame_sniffer_ftype): Document prologue
2286 cache initialization constraint.
2287
2288 2012-08-06 Tom Tromey <tromey@redhat.com>
2289
2290 PR python/14386:
2291 * varobj.c (update_dynamic_varobj_children): Don't call
2292 PyIter_Check.
2293
2294 2012-08-06 Tom Tromey <tromey@redhat.com>
2295
2296 PR cli/14392:
2297 * cli/cli-cmds.c (list_command): Filter 'sals_end'.
2298
2299 2012-08-06 Nathaniel Flath <flat0103@gmail.com>
2300
2301 * NEWS: New entry for 'cd' default parameters.
2302 * cli/cli-cmds.c (cd_command): Replace error_no_arg by DIR assignment.
2303
2304 2012-08-03 Tom Tromey <tromey@redhat.com>
2305
2306 * dwarf2-frame.c (dwarf2_frame_cache): Call do_cleanups before
2307 return.
2308
2309 2012-08-02 Ulrich Weigand <ulrich.weigand@linaro.org>
2310
2311 * inf-child.c (inf_child_fileio_pwrite): If pwrite fails, fall back
2312 to attempting lseek/write.
2313 (inf_child_fileio_pread): Likewise for pread.
2314
2315 2012-08-02 Yao Qi <yao@codesourcery.com>
2316
2317 * dwarf2loc.c (entry_values_debug): Add 'unsigned'.
2318 (_initialize_dwarf2loc): Call add_setshow_zuinteger_cmd instead of
2319 add_setshow_zinteger_cmd.
2320 * dwarf2loc.h: Update the declaration of 'entry_values_debug'.
2321 * dwarf2read.c (dwarf2_die_debug): Add 'unsigned'.
2322 (_initialize_dwarf2_read): Call add_setshow_zuinteger_cmd
2323 instead of add_setshow_zinteger_cmd.
2324 * darwin-nat.c (dwarwin_debug_flag): Add 'unsigned'.
2325 (_initialize_darwin_inferior): Call add_setshow_zuinteger_cmd
2326 instead of add_setshow_zinteger_cmd.
2327 * frame.c (frame_debug): Add 'unsigned'.
2328 (_intialize_frame): Call add_setshow_zuinteger_cmd instead of
2329 add_setshow_zinteger_cmd.
2330 * frame.h: Update the declaration of 'frame_debug'.
2331 * gdbtypes.c (overload_debug): Add 'unsigned'.
2332 (_initialize_gdbtypes): Call add_setshow_zuinteger_cmd instead of
2333 add_setshow_zinteger_cmd.
2334 * inferior.h: Update declaration of 'debug_infrun'.
2335 * infrun.c (debug_infrun): Add 'unsigned'.
2336 (_initialize_infrun): Call add_setshow_zuinteger_cmd instead of
2337 add_setshow_zinteger_cmd.
2338 * jit.c (jit_debug): Add 'unsigned'.
2339 (_initialize_jit): Call add_setshow_zuinteger_cmd instead of
2340 add_setshow_zinteger_cmd.
2341 * linux-nat.c (debug_linux_nat): Add 'unsigned'.
2342 (_initialize_linux_nat): Call add_setshow_zuinteger_cmd
2343 instead of add_setshow_zinteger_cmd.
2344 * linux-thread-db.c (libthread_db_debug): Add 'unsigned'.
2345 (_initialize_thread_db): Call add_setshow_zuinteger_cmd instead of
2346 add_setshow_zinteger_cmd.
2347 * machoread.c (mach_o_debug_level): Add 'unsigned'.
2348 (_initialize_machoread): Call add_setshow_zuinteger_cmd
2349 instead of add_setshow_zinteger_cmd.
2350 * mi/mi-cmd-var.c: Update the declaration of 'varobjdebug'.
2351 * microblaze-tdep.c (microblaze_debug_flag): Add 'unsigned'.
2352 (_initialize_microblaze_tdep): Call add_setshow_zuinteger_cmd
2353 intead of add_setshow_zinteger_cmd.
2354 * mips-tdep.c (mips_debug): Add 'unsigned'.
2355 (_initialize_mips_tdep): Call add_setshow_zuinteger_cmd
2356 instead of add_setshow_zinteger_cmd.
2357 * monitor.c (monitor_debug): Add 'unsigned'.
2358 (_initialize_remote_monitors): Call add_setshow_zuinteger_cmd instead of
2359 add_setshow_zinteger_cmd.
2360 * observer.c (observer_debug): Add 'unsigned'.
2361 (_initialize_observer): Call add_setshow_zuinteger_cmd instead of
2362 add_setshow_zinteger_cmd.
2363 * parse.c (expressiondebug): Add 'unsigned'.
2364 (_initialize_parse): Call add_setshow_zuinteger_cmd instead of
2365 add_setshow_zinteger_cmd.
2366 * record.c (record_debug): Add 'unsigned'.
2367 (_initialize_record): Call add_setshow_zuinteger_cmd instead of
2368 add_setshow_zinteger_cmd.
2369 * record.h: Update the declaration of 'record_debug'.
2370 * stap-probe.c (stap_expression_debug): Add 'unsigned'.
2371 (_initialize_stap_probe): Call add_setshow_zuinteger_cmd instead of
2372 add_setshow_zinteger_cmd.
2373 * serial.c (global_serial_debug_p): Add 'unsigned'.
2374 (_initialize_serial): Call add_setshow_zuinteger_cmd instead of
2375 add_setshow_zinteger_cmd.
2376 * solib-dsbt.c (solib_dsbt_debug): Add 'unsigned'.
2377 (_initialize_dsbt_solib): Call add_setshow_zuinteger_cmd instead of
2378 add_setshow_zinteger_cmd.
2379 * solib-frv.c (solib_frv_debug): Add 'unsigned'.
2380 (_initialize_frv_solib): Call add_setshow_zuinteger_cmd instead of
2381 add_setshow_zinteger_cmd.
2382 * target.c (targetdebug): Add 'unsigned'.
2383 (initialize_targets): Call add_setshow_zuinteger_cmd instead of
2384 add_setshow_zinteger_cmd.
2385 * valops.c (overload_debug): Add 'unsigned'.
2386 * varobj.c (varobjdebug): Add 'unsigned'.
2387 (_initialize_varobj): Call add_setshow_zuinteger_cmd instead of
2388 add_setshow_zinteger_cmd.
2389 * xtensa-tdep.c (xtensa_debug_level): Add 'unsigned'.
2390 (_initialize_xtensa_tdep): Call add_setshow_zuinteger_cmd
2391 instead of add_setshow_zinteger_cmd.
2392
2393 * arch-utils.h: Remove the declaration of 'gdbarch_debug'.
2394 * gdbarch.sh (gdbarch_debug): Add 'unsigned'.
2395 (extern void _initialize_gdbarch): Call add_setshow_zuinteger_cmd
2396 instead of add_setshow_zinteger_cmd.
2397 * gdbarch.c, gdbarch.h: Re-generated.
2398
2399 2012-08-02 Yao Qi <yao@codesourcery.com>
2400
2401 * nto-tdep.c: Don't include cli/cli-decode.h and
2402 cli/cli-cmds.h.
2403 (_initialize_nto_tdep): Remove.
2404 * nto-tdep.h (struct nto_target_ops) <internal_debugging>:
2405 Remove field.
2406 Remove macro nto_internal_debugging.
2407
2408 2012-08-01 Richard Henderson <rth@redhat.com>
2409
2410 * configure.tgt (m32c-*-*) [gdb_target_obs]: Remove prologue-value.o.
2411 (mep-*-*) [gdb_target_obs]: Likewise.
2412
2413 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
2414
2415 * ppc-linux-tdep.c (ppc_linux_init_abi): Register
2416 linux_get_siginfo_type.
2417
2418 2012-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
2419
2420 * infcall.c (call_function_by_hand): Move BP_ADDR comment to
2421 AT_ENTRY_POINT.
2422 (call_function_by_hand) <ON_STACK>: Call write_memory with
2423 gdbarch_breakpoint_from_pc, if possible.
2424 (call_function_by_hand) <AT_ENTRY_POINT>: The BP_ADDR comment is moved
2425 here.
2426
2427 2012-07-31 Yao Qi <yao@codesourcery.com>
2428
2429 * tracepoint.c: Add 'static' for some variables.
2430
2431 2012-07-31 Yao Qi <yao@codesourcery.com>
2432
2433 * go32-nat.c: Declare _initialize_go32_nat.
2434 * ser-go32.c: Declare _initialize_ser_dos.
2435 * top.c (do_chdir_cleanup): Add 'static'.
2436
2437 2012-07-30 Keith Seitz <keiths@redhat.com>
2438
2439 * linespec.c (linespec_lex_number): A number followed
2440 by quotes is a valid number, too.
2441
2442 2012-07-30 Tom Tromey <tromey@redhat.com>
2443
2444 * remote-sim.c (gdb_os_poll_quit): Don't check immediate_quit.
2445
2446 2012-07-30 Ulrich Weigand <ulrich.weigand@linaro.org>
2447
2448 * arm-linux-nat.c (arm_linux_hw_breakpoint_initialize): Do not
2449 attempt to 4-byte-align HW breakpoint addresses for Thumb.
2450
2451 2012-07-30 Andrew Burgess <aburgess@broadcom.com>
2452
2453 * varobj.c (varobj_invalidate_iter): All varobj must be marked as
2454 invalid or reevaluated to prevent prevent references to possibly
2455 delete'd type objects being left in the varobj.
2456
2457 2012-07-27 Tom Tromey <tromey@redhat.com>
2458 Jan Kratochvil <jan.kratochvil@redhat.com>
2459
2460 * copying.awk: Print buffer-read-only and vi ro markers.
2461 * copying.c: Rebuild.
2462 * gdbarch.sh (copyright): Print buffer-read-only and vi ro markers.
2463 * gdbarch.c, gdbarch.h: Rebuild.
2464 * target-descriptions.c (maint_print_c_tdesc_cmd): Print
2465 buffer-read-only and vi ro markers.
2466 * features/arm-with-iwmmxt.c: Rebuild.
2467 * features/arm-with-m-fpa-layout.c: Rebuild.
2468 * features/arm-with-m-vfp-d16.c: Rebuild.
2469 * features/arm-with-m.c: Rebuild.
2470 * features/arm-with-neon.c: Rebuild.
2471 * features/arm-with-vfpv2.c: Rebuild.
2472 * features/arm-with-vfpv3.c: Rebuild.
2473 * features/i386/amd64-avx-linux.c: Rebuild.
2474 * features/i386/amd64-avx.c: Rebuild.
2475 * features/i386/amd64-linux.c: Rebuild.
2476 * features/i386/amd64.c: Rebuild.
2477 * features/i386/i386-avx-linux.c: Rebuild.
2478 * features/i386/i386-avx.c: Rebuild.
2479 * features/i386/i386-linux.c: Rebuild.
2480 * features/i386/i386-mmx-linux.c: Rebuild.
2481 * features/i386/i386-mmx.c: Rebuild.
2482 * features/i386/i386.c: Rebuild.
2483 * features/i386/x32-avx-linux.c: Rebuild.
2484 * features/i386/x32-avx.c: Rebuild.
2485 * features/i386/x32-linux.c: Rebuild.
2486 * features/i386/x32.c: Rebuild.
2487 * features/mips-dsp-linux.c: Rebuild.
2488 * features/mips-linux.c: Rebuild.
2489 * features/mips64-dsp-linux.c: Rebuild.
2490 * features/mips64-linux.c: Rebuild.
2491 * features/rs6000/powerpc-32.c: Rebuild.
2492 * features/rs6000/powerpc-32l.c: Rebuild.
2493 * features/rs6000/powerpc-403.c: Rebuild.
2494 * features/rs6000/powerpc-403gc.c: Rebuild.
2495 * features/rs6000/powerpc-405.c: Rebuild.
2496 * features/rs6000/powerpc-505.c: Rebuild.
2497 * features/rs6000/powerpc-601.c: Rebuild.
2498 * features/rs6000/powerpc-602.c: Rebuild.
2499 * features/rs6000/powerpc-603.c: Rebuild.
2500 * features/rs6000/powerpc-604.c: Rebuild.
2501 * features/rs6000/powerpc-64.c: Rebuild.
2502 * features/rs6000/powerpc-64l.c: Rebuild.
2503 * features/rs6000/powerpc-7400.c: Rebuild.
2504 * features/rs6000/powerpc-750.c: Rebuild.
2505 * features/rs6000/powerpc-860.c: Rebuild.
2506 * features/rs6000/powerpc-altivec32.c: Rebuild.
2507 * features/rs6000/powerpc-altivec32l.c: Rebuild.
2508 * features/rs6000/powerpc-altivec64.c: Rebuild.
2509 * features/rs6000/powerpc-altivec64l.c: Rebuild.
2510 * features/rs6000/powerpc-cell32l.c: Rebuild.
2511 * features/rs6000/powerpc-cell64l.c: Rebuild.
2512 * features/rs6000/powerpc-e500.c: Rebuild.
2513 * features/rs6000/powerpc-e500l.c: Rebuild.
2514 * features/rs6000/powerpc-isa205-32l.c: Rebuild.
2515 * features/rs6000/powerpc-isa205-64l.c: Rebuild.
2516 * features/rs6000/powerpc-isa205-altivec32l.c: Rebuild.
2517 * features/rs6000/powerpc-isa205-altivec64l.c: Rebuild.
2518 * features/rs6000/powerpc-isa205-vsx32l.c: Rebuild.
2519 * features/rs6000/powerpc-isa205-vsx64l.c: Rebuild.
2520 * features/rs6000/powerpc-vsx32.c: Rebuild.
2521 * features/rs6000/powerpc-vsx32l.c: Rebuild.
2522 * features/rs6000/powerpc-vsx64.c: Rebuild.
2523 * features/rs6000/powerpc-vsx64l.c: Rebuild.
2524 * features/rs6000/rs6000.c: Rebuild.
2525 * features/s390-linux32.c: Rebuild.
2526 * features/s390-linux32v1.c: Rebuild.
2527 * features/s390-linux32v2.c: Rebuild.
2528 * features/s390-linux64.c: Rebuild.
2529 * features/s390-linux64v1.c: Rebuild.
2530 * features/s390-linux64v2.c: Rebuild.
2531 * features/s390x-linux64.c: Rebuild.
2532 * features/s390x-linux64v1.c: Rebuild.
2533 * features/s390x-linux64v2.c: Rebuild.
2534 * features/tic6x-c62x-linux.c: Rebuild.
2535 * features/tic6x-c62x.c: Rebuild.
2536 * features/tic6x-c64x-linux.c: Rebuild.
2537 * features/tic6x-c64x.c: Rebuild.
2538 * features/tic6x-c64xp-linux.c: Rebuild.
2539 * features/tic6x-c64xp.c: Rebuild.
2540
2541 2012-07-27 Tom Tromey <tromey@redhat.com>
2542
2543 * c-exp.y (classify_name): Avoid assignment in condition.
2544
2545 2012-07-27 Roland Schwingel <roland.schwingel@onevision.com>
2546
2547 * amd64-windows-tdep.c: Include "frame.h".
2548 (amd64_windows_skip_trampoline_code): New function.
2549 (amd64_windows_init_abi): Add trampoline registration.
2550
2551 2012-07-27 Yao Qi <yao@codesourcery.com>
2552
2553 * tracepoint.c (cur_traceframe_number): Remove.
2554 (set_tfile_traceframe): Remove.
2555 (tfile_trace_find, tfile_fetch_registers): Update callers.
2556 (tfile_xfer_partial, tfile_get_trace_state_variable_value): Likewise.
2557 (tfile_open, tfile_trace_find): Likewise.
2558
2559 2012-07-27 Yao Qi <yao@codesourcery.com>
2560
2561 * thread.c (switch_to_thread): Don't call registers_changed.
2562
2563 2012-07-26 Tom Tromey <tromey@redhat.com>
2564
2565 * Makefile.in (SFILES): Remove objc-exp.y.
2566 (YYFILES): Remove objc-exp.c.
2567 (YYOBJ): Remove objc-exp.o.
2568 (local-maintainer-clean): Don't mention objc-exp.c.
2569 * c-exp.y: Include objc-lang.h.
2570 (%union) <class>: New field.
2571 (NSSTRING, SELECTOR, CLASSNAME, OBJC_LBRAC): New tokens.
2572 (exp): Clone subscript production for OBJC_LBRAC. Add various
2573 Objective C productions.
2574 (msglist, msgarglist, msgarg): New productions.
2575 (array_mod, func_mod, operator): Clone productions for
2576 OBJC_LBRAC.
2577 (parse_string_or_char): Handle '@' strings.
2578 (lex_one_token): Return OBJC_LBRAC. Recognize @selector.
2579 (classify_name): Check la_name_of_this. Recognize ObjC class
2580 names.
2581 * objc-exp.y: Remove.
2582 * objc-lang.c (objc_language_defn): Use c_parse, c_error.
2583 * objc-lang.h (objc_parse, objc_error): Don't declare.
2584
2585 2012-07-26 Markus Metzger <markus.t.metzger@intel.com>
2586
2587 * python/py-inferior.c (infpy_threads): Call update_thread_list ().
2588
2589 2012-07-26 Jan Kratochvil <jan.kratochvil@redhat.com>
2590
2591 * auto-load.c (auto_load_info_scripts): Remove immediate_quit increment
2592 and decrement.
2593
2594 2012-07-26 Tom Tromey <tromey@redhat.com>
2595
2596 * copying.c: Rebuild.
2597 * copying.awk: Don't use immediate_quit. Use 'no_set_class', not
2598 'no_class'.
2599
2600 2012-07-26 Tom Tromey <tromey@redhat.com>
2601
2602 * symmisc.c (print_symbol_bcache_statistics): Use QUIT, not
2603 immediate_quit.
2604 (print_objfile_statistics): Likewise.
2605 (maintenance_print_symbols): Likewise.
2606 (maintenance_print_msymbols): Likewise.
2607 (maintenance_print_objfiles): Likewise.
2608 * psymtab.c (print_partial_symbols): Call QUIT.
2609 (maintenance_print_psymbols): Likewise. Don't modify
2610 immediate_quit.
2611 * copying.c (show_copying_command): Don't modify immediate_quit.
2612 (show_warranty_command): Likewise.
2613 * cli/cli-cmds.c (show_version): Don't modify immediate_quit.
2614
2615 2012-07-26 Keith Seitz <keiths@redhat.com>
2616
2617 * linespec.c (linespec_lexer_lex_number): The input
2618 is also a valid number if the next character is a comma
2619 or colon.
2620
2621 2012-07-26 Joel Brobecker <brobecker@adacore.com>
2622
2623 * NEWS: Document new --enable-libmcheck/--disable-libmcheck
2624 configure options.
2625
2626 2012-07-26 Tristan Gingold <gingold@adacore.com>
2627
2628 * machoread.c: Include gdb_bfd.h.
2629
2630 2012-07-26 Tristan Gingold <gingold@adacore.com>
2631
2632 * dwarf2loc.c (locexpr_describe_location_piece): Use uint64_t for
2633 offset.
2634
2635 2012-07-26 Siddhesh Poyarekar <siddhesh@redhat.com>
2636
2637 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Expand parameter
2638 SIZE to size_t.
2639 (dwarf2_evaluate_loc_desc): Likewise.
2640 (dwarf2_loc_desc_needs_frame): Likewise.
2641 (locexpr_describe_location_1): Likewise.
2642 * dwarf2loc.h (struct dwarf2_locexpr_baton): Make SIZE as
2643 size_t.
2644 (struct dwarf2_loclist_baton): Likewise.
2645 * dwarf2read.c (struct dwarf_block): Likewise.
2646 (dump_die_shallow): Use pulongest to print dwarf_block.size.
2647 (decode_locdesc): Expand SIZE and I to size_t.
2648
2649 2012-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
2650
2651 * contrib/cc-with-tweaks.sh: Put into comment path gdb/contrib/.
2652
2653 2012-07-25 Joel Brobecker <brobecker@adacore.com>
2654
2655 * doublest.c (convert_doublest_to_floatformat): If the exponent
2656 is too small, treat the value as zero. If the exponent is too
2657 large, treat the value as infinity.
2658
2659 2012-07-25 Joel Brobecker <brobecker@adacore.com>
2660
2661 * configure.ac: Add --enable-lmcheck configure option.
2662 * configure: Regenerate.
2663
2664 2012-07-25 Tom Tromey <tromey@redhat.com>
2665
2666 * NEWS: Mention maint info bfds.
2667 * gdb_bfd.c (all_bfds): New global.
2668 (gdb_bfd_ref, gdb_bfd_unref): Update all_bfds.
2669 (print_one_bfd, maintenance_info_bfds, _initialize_gdb_bfd):
2670 New functions.
2671
2672 2012-07-25 Ralf Corsépius <ralf.corsepius@rtems.org>
2673
2674 * configure.tgt: Add v850*-*-rtems*.
2675
2676 2012-07-25 Tom Tromey <tromey@redhat.com>
2677
2678 * macrotab.c (macro_bcache_str): Remove cast.
2679
2680 2012-07-25 Hui Zhu <hui_zhu@mentor.com>
2681
2682 * linespec.c (linespec_lexer_lex_number): Update comments,
2683 change the return and add check to make sure the input is
2684 the decimal numbers.
2685 (linespec_lexer_lex_one): If linespec_lexer_lex_number return
2686 false, call linespec_lexer_lex_string.
2687
2688 2012-07-24 Tom Tromey <tromey@redhat.com>
2689
2690 * symfile.c (symbol_file_add): Don't open BFD twice.
2691
2692 2012-07-24 Marc Khouzam <marc.khouzam@ericsson.com>
2693
2694 * breakpoint.c (create_breakpoint): Store condition for pending
2695 breakpoints.
2696
2697 2012-07-24 Andreas Schwab <schwab@linux-m68k.org>
2698
2699 * m68k-tdep.c (m68k_reg_struct_return_p): Accept complex types.
2700 (m68k_return_value): Handle complex types like structures.
2701 (m68k_svr4_return_value): Likewise.
2702
2703 2012-07-24 Marcus Shawcroft <marcus.shawcroft@arm.com>
2704
2705 * gdb_bfd.c (zlib_decompress_section) <!HAVE_ZLIB_H>: Adjust
2706 parameters to bfd_get_section_name.
2707
2708 2012-07-24 Yao Qi <yao@codesourcery.com>
2709
2710 * cli/cli-setshow.c: Handle case 'var_uinteger'
2711 and 'var_zuninteger' together. Handle case 'var_integer' and
2712 'var_zinteger' together.
2713
2714 2012-07-23 Keith Seitz <keiths@redhat.com>
2715
2716 * linespec.c (convert_linespec_to_sal): Don't add
2717 any symbols to the result vector if symbol_to_sal
2718 returns zero.
2719
2720 2012-07-23 Keith Seitz <keiths@redhat.com>
2721
2722 * linespec.c (decode_objc): Record the function name
2723 in the linespec.
2724
2725 2012-07-23 Tom Tromey <tromey@redhat.com>
2726
2727 * rs6000-nat.c (add_vmap): Rewrite archive loop. Fix reference
2728 counting.
2729 * exec.c (exec_close_1): Unconditionally release vmap's BFD.
2730 (map_vmap): Acquire a reference to the BFD.
2731
2732 2012-07-23 Siddhesh Poyarekar <siddhesh@redhat.com>
2733
2734 * p-valprint.c (pascal_object_print_value): Replace potentially
2735 unsafe alloca with xmalloc/xfree.
2736 * valops.c (search_struct_method): Likewise.
2737
2738 2012-07-23 Tom Tromey <tromey@redhat.com>
2739
2740 * solib-svr4.c (enable_break): Update.
2741 * bfd-target.h (target_bfd_reopen): Update documentation.
2742
2743 2012-07-23 Tom Tromey <tromey@redhat.com>
2744
2745 * symfile.c (separate_debug_file_exists): Update.
2746 (gdb_bfd_open_maybe_remote): Rename from bfd_open_maybe_remote.
2747 (reread_symbols): Update.
2748 * elfread.c (build_id_verify): Update.
2749 * symfile.h (gdb_bfd_open_maybe_remote): Rename from
2750 bfd_open_maybe_remote.
2751
2752 2012-07-23 Tom Tromey <tromey@redhat.com>
2753
2754 * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Fix comment.
2755
2756 2012-07-23 Tom Tromey <tromey@redhat.com>
2757
2758 * coffread.c (coff_symfile_read): Make a cleanup for 'debugfile'
2759 and 'abfd'.
2760 * elfread.c (elf_symfile_read): Make a cleanup for 'debugfile'
2761 and 'abfd'.
2762 * jit.c (jit_bfd_try_read_symtab): Make a cleanup for 'nbfd'.
2763 * machoread.c (macho_add_oso_symfile): Make a cleanup for
2764 'abfd'.
2765 (macho_symfile_read): Make a cleanup for 'dsym_bfd'.
2766 * objfiles.c (allocate_objfile): Acquire a new reference.
2767 * rs6000-nat.c (add_vmap): Don't acquire a BFD reference.
2768 * solib.c (solib_read_symbols): Don't acquire a BFD reference.
2769 * spu-linux-nat.c (spu_symbol_file_add_from_memory): Make
2770 a cleanup for 'nbfd'.
2771 * symfile-mem.c (symbol_file_add_from_memory): Make a cleanup
2772 for 'nbfd'.
2773 * symfile.c (symbol_file_add_with_addrs_or_offsets): Don't
2774 make a cleanup for 'abfd'.
2775 (symbol_file_add): Make a BFD cleanup.
2776
2777 2012-07-23 Tom Tromey <tromey@redhat.com>
2778
2779 * cli/cli-dump.c (bfd_openr_with_cleanup): Use gdb_bfd_openr.
2780 (bfd_openw_with_cleanup): Use gdb_bfd_openw.
2781 * corelow.c (core_open): Use gdb_bfd_fopen.
2782 * dsrec.c (load_srec): Use gdb_bfd_openr.
2783 * exec.c (exec_file_attach): Use gdb_bfd_fopen.
2784 * gcore.c (gcore_memory_sections): Use gdb_bfd_openw.
2785 * gdb_bfd.c (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
2786 (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
2787 (gdb_bfd_fdopenr): New functions.
2788 * gdb_bfd.h (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw)
2789 (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file)
2790 (gdb_bfd_fdopenr): Declare.
2791 * jit.c (bfd_open_from_target_memory): Use gdb_bfd_openr_iovec.
2792 * m32-rom.c (m32r_load, m32r_upload_command): Use gdb_bfd_openr.
2793 * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_openr,
2794 gdb_bfd_openr_next_archived_file.
2795 (macho_check_dsym): Use gdb_bfd_openr.
2796 (macho_add_oso_symfile): Don't call gdb_bfd_stash_filename.
2797 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_fdopenr.
2798 * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_openr.
2799 * remote-mips.c (mips_load_srec, pmon_load_fast): Use
2800 gdb_bfd_openr.
2801 * remote.c (remote_bfd_open): Use gdb_bfd_openr_iovec.
2802 * rs6000-nat.c (add_vmap): Use gdb_bfd_openr, gdb_bfd_fdopenr,
2803 gdb_bfd_openr_next_archived_file.
2804 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2805 Use gdb_bfd_openr.
2806 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
2807 gdb_bfd_openr.
2808 * solib-spu.c (spu_bfd_fopen): Use gdb_bfd_openr_iovec.
2809 * solib.c (solib_bfd_fopen): Use gdb_bfd_fopen.
2810 * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_openr_iovec.
2811 * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_openr.
2812 (symfile_bfd_open): Use gdb_bfd_fopen.
2813 (generic_load): Use gdb_bfd_openr.
2814 * windows-nat.c (windows_make_so): Use gdb_bfd_openr.
2815
2816 2012-07-23 Tom Tromey <tromey@redhat.com>
2817
2818 * bfd-target.c (target_bfd_reopen): Update.
2819 * cli/cli-dump.c (bfd_openr_with_cleanup)
2820 (bfd_openw_with_cleanup): Update.
2821 * corelow.c (core_open): Update.
2822 * dsrec.c (load_srec): Update.
2823 * exec.c (exec_file_attach): Update.
2824 * gcore.c (create_gcore_bfd): Update.
2825 * gdb_bfd.c (gdb_bfd_ref): Return void.
2826 (gdb_bfd_open): Update.
2827 * gdb_bfd.h (gdb_bfd_ref): Return void.
2828 Update comments.
2829 * jit.c (jit_bfd_try_read_symtab): Update.
2830 * m32r-rom.c (m32r_load, m32r_upload_command): Update.
2831 * machoread.c (macho_symfile_read_all_oso): Update.
2832 (macho_check_dsym): Update.
2833 * procfs.c (insert_dbx_link_bpt_in_file): Update.
2834 * remote-m32r-sdi.c (m32r_load): Update.
2835 * remote-mips.c (mips_load_srec, pmon_load_fast): Update.
2836 * rs6000-nat.c (add_vmap): Update.
2837 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
2838 Update.
2839 * solib-pa64.c (pa64_solib_create_inferior_hook): Update.
2840 * solib-spu.c (spu_bfd_open): Update.
2841 * solib.c (solib_bfd_fopen, solib_read_symbols): Update.
2842 * spu-linux-nat.c (spu_bfd_open): Update.
2843 * symfile.c (bfd_open_maybe_remote, symfile_bfd_open)
2844 (generic_load): Update.
2845 * windows-nat.c (windows_make_so): Update.
2846
2847 2012-07-22 Siddhesh Poyarekar <siddhesh@redhat.com>
2848
2849 * sh-tdep.c (sh_treat_as_flt_p): Remove unused variable LEN.
2850
2851 2012-07-20 Jeff Kenton <jkenton@tilera.com>
2852
2853 * tilegx-linux-tdep.c (tilegx_linux_sigframe_init): Fix
2854 SIGTRAMP_FRAME unwinding.
2855
2856 2012-07-20 Doug Evans <dje@google.com>
2857
2858 * NEWS: Document new options "set/show use-deprecated-index-sections",
2859 and delete reference to --use-deprecated-index-sections.
2860 * symfile.h (use_deprecated_index_sections): Delete.
2861 * dwarf2read.c (use_deprecated_index_sections): Make static.
2862 (read_index_from_section): Update wording of how to load
2863 deprecated index sections.
2864 (_initialize_dwarf2_read): New options
2865 "set/show use-deprecated-index-sections".
2866 * main.c (captured_main): Delete --use-deprecated-index-sections.
2867
2868 2012-07-20 Pedro Alves <palves@redhat.com>
2869
2870 PR threads/11692
2871 PR gdb/12203
2872
2873 * infrun.c (handle_inferior_event) <new thread>: Don't special
2874 case minus_one_ptid.
2875 <TARGET_WAITKIND_SPURIOUS>: Ditto.
2876 * linux-thread-db.c (thread_get_info_callback): Don't return early
2877 if the thread is zombie.
2878 (thread_from_lwp): Change return type to void. Rewrite stale
2879 comment.
2880 (attach_thread): Don't return early if the thread is zombie,
2881 instead set its "dying" flag.
2882 (thread_db_wait): Don't return TARGET_WAITKIND_SPURIOUS anymore.
2883 (find_new_threads_callback): Don't return early if the thread is
2884 zombie.
2885
2886 2012-07-20 Pedro Alves <palves@redhat.com>
2887
2888 * linux-nat.c (linux_nat_wait): Dump the passed in target options.
2889 * target.c (target_wait): Likewise.
2890 (str_comma_list_concat_elem, do_option, target_options_to_string):
2891 New functions.
2892 * target.h (target_options_to_string): Declare.
2893
2894 2012-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2895 Tom Tromey <tromey@redhat.com>
2896
2897 * dwarf2read.c (dwarf_decode_macros)
2898 <DW_MACRO_GNU_define_indirect_alt, DW_MACRO_GNU_undef_indirect_alt,
2899 DW_MACRO_GNU_transparent_include_alt>: New cases.
2900 (dwarf_decode_macro_bytes) <DW_MACRO_GNU_define_indirect,
2901 DW_MACRO_GNU_undef_indirect>: Examine 'section_is_dwz'.
2902
2903 2012-07-20 Tom Tromey <tromey@redhat.com>
2904
2905 * dwarf2read.c (try_open_dwo_file): Don't call
2906 gdb_bfd_stash_filename.
2907
2908 2012-07-20 Pedro Alves <palves@redhat.com>
2909
2910 * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
2911 (i386_record_lea_modrm, i386_record_push, i386_record_floats)
2912 (i386_process_record): Tweak description comments.
2913
2914 2012-07-20 Pedro Alves <palves@redhat.com>
2915
2916 * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr)
2917 (i386_process_record): Use record_read_memory.
2918 * record.c (record_read_memory): New function.
2919 (record_arch_list_add_mem, record_exec_insn): Use
2920 record_read_memory.
2921 * record.h (record_read_memory): Declare.
2922
2923 2012-07-20 Yao Qi <yao@codesourcery.com>
2924
2925 * cli/cli-setshow.c (do_setshow_command): Don't check pointer is
2926 NULL for xfree.
2927
2928 2012-07-19 Pedro Alves <palves@redhat.com>
2929
2930 * record.c (record_resume): Ask the target beneath to report all
2931 signals.
2932
2933 2012-07-19 Doug Evans <dje@google.com>
2934
2935 * dwarf2read.c (dwarf2_ranges_read): Ignore ranges starting at zero if
2936 there's no section at address zero.
2937 (dwarf2_record_block_ranges): Ditto.
2938
2939 2012-07-19 Yao Qi <yao@codesourcery.com>
2940
2941 * command.h, remote.c: Fix a typo in comment.
2942
2943 2012-07-19 Tom Tromey <tromey@redhat.com>
2944
2945 PR exp/13206:
2946 * ax-gdb.c (gen_expr) <OP_TYPEOF, OP_DECLTYPE>: New cases.
2947 * breakpoint.c (watchpoint_exp_is_const) <OP_TYPEOF,
2948 OP_DECLTYPE>: New cases.
2949 * c-exp.y (TYPEOF, DECLTYPE): New tokens.
2950 (type_exp): Add new productions.
2951 (ident_tokens): Add __typeof__, typeof, __typeof, __decltype,
2952 and decltype.
2953 * eval.c (evaluate_subexp_standard) <OP_TYPEOF, OP_DECLTYPE>:
2954 New case.
2955 * expprint.c (dump_subexp_body_standard) <OP_TYPEOF,
2956 OP_DECLTYPE>: New case.
2957 * parse.c (operator_length_standard) <OP_TYPEOF, OP_DECLTYPE>:
2958 New case.
2959 * std-operator.def (OP_TYPEOF, OP_DECLTYPE): New constants.
2960 * varobj.c (varobj_create): Handle OP_TYPEOF, OP_DECLTYPE.
2961
2962 2012-07-19 Tom Tromey <tromey@redhat.com>
2963
2964 * c-exp.y (enum token_flags): New.
2965 (struct token) <cxx_only>: Remove.
2966 <flags>: New field.
2967 (tokentab3, tokentab2, ident_tokens): Update.
2968 (lex_one_token): Update. Handle FLAG_SHADOW.
2969
2970 2012-07-19 Tom Tromey <tromey@redhat.com>
2971
2972 * ax-gdb.c (gen_expr): Handle UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE.
2973 * breakpoint.c (watchpoint_exp_is_const): Handle UNOP_CAST_TYPE,
2974 UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST.
2975 * c-exp.y (exp): Emit UNOP_MEMVAL_TYPE, UNOP_CAST_TYPE. Update
2976 for changes to UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST. Use
2977 type_exp production where appropriate.
2978 * eval.c (evaluate_subexp_standard) <UNOP_CAST_TYPE>: New case.
2979 <UNOP_DYNAMIC_CAST, UNOP_REINTERPRET_CAST>: Update.
2980 <UNOP_MEMVAL_TYPE>: New case.
2981 (evaluate_subexp_for_address) <UNOP_MEMVAL_TYPE>: New case.
2982 (evaluate_subexp_for_sizeof) <UNOP_MEMVAL_TYPE>: New case.
2983 * expprint.c (print_subexp_standard) <UNOP_CAST_TYPE>: New case.
2984 <UNOP_MEMVAL_TYPE>: New case.
2985 (dump_subexp_body_standard) <UNOP_DYNAMIC_CAST,
2986 UNOP_REINTERPRET_CAST>: Update.
2987 <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
2988 * parse.c (operator_length_standard) <UNOP_DYNAMIC_CAST,
2989 UNOP_REINTERPRET_CAST>: Update.
2990 <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases.
2991 * stack.c (return_command): Also check for UNOP_CAST_TYPE.
2992 * std-operator.def (UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE): New
2993 constants.
2994
2995 2012-07-19 Yao Qi <yao@codesourcery.com>
2996 Jan Kratochvil <jan.kratochvil@redhat.com>
2997
2998 * cli/cli-setshow.c (do_setshow_command): Handle case 'var_filename'
2999 and case 'var_optional_filename' together.
3000 * infcmd.c (_initialize_infcmd): Call add_setshow_string_noescape_cmd
3001 instead of add_setshow_optional_filename_cmd for setshow command
3002 'args'. Set completer for 'set args'.
3003
3004 2012-07-18 Doug Evans <dje@google.com>
3005
3006 * common/gdb_vecs.h: Moved here from ./gdb_vecs.h.
3007 * common/gdb_vecs.c: New file, contents from utils.c.
3008 * common/host-defs.h: New file, contents from defs.h.
3009 * utils.h: New file, contents from defs.h.
3010 * defs.h: Move all declarations of objects defined in utils.c
3011 to utils.h (except QUIT() and related).
3012 #include "utils.h", "host-defs.h".
3013 * probe.h (probe_p): Move here from gdb_vecs.h.
3014 * symfile.c: #include "probe.h" instead of "gdb_vecs.h".
3015 * utils.c (free_char_ptr_vec): Moved to common/gdb_vecs.c.
3016 (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): Ditto.
3017 * Makefile.in (SFILES): Add common/gdb_vecs.c.
3018 (HFILES_NO_SRCDIR): Add common/gdb_vecs.h, common/host-defs.h, utils.h.
3019 (COMMON_OBS): Add gdb_vecs.o.
3020 (gdb_vecs.o): New rule.
3021
3022 2012-07-18 Keith Seitz <keiths@redhat.com>
3023
3024 * linespec.c (add_sal_to_sals): Add LITERAL_CANONICAL
3025 parameter. If non-zero, use SYMNAME as the canonical name
3026 for the SaL.
3027 Update all callers.
3028 (convert_linespec_to_sals): Use add_sal_to_sals for
3029 expressions, too.
3030 (decode_line_full): No need to "fill in missing canonical names"
3031 anymore. Simply make cleanups for the allocated names.
3032
3033 2012-07-18 Keith Seitz <keiths@redhat.com>
3034
3035 * linespec.c (struct linespec): Constify expression,
3036 source_filename, function_name, and label_name.
3037 (symbol_not_found_error): Make all parameters const.
3038 (linespec_parser_delete): No need to check for NULL
3039 when using xfree. Cast const char * to char * for xfree.
3040
3041 2012-07-18 Keith Seitz <keiths@redhat.com>
3042
3043 * breakpoint.c (invalid_thread_id_error): New function.
3044 (find_condition_and_thread): Use invalid_thread_id_error.
3045 (watch_command_1): Likewise.
3046
3047 2012-07-18 Tom Tromey <tromey@redhat.com>
3048
3049 * cc-with-index.sh, cc-with-dwz.sh: Remove.
3050 * contrib/cc-with-tweaks.sh: New file.
3051
3052 2012-07-18 Tom Tromey <tromey@redhat.com>
3053
3054 * dwarf2read.c (struct dwz_file) <gdb_index>: New field.
3055 (locate_dwz_sections): Recognize .gdb_index.
3056 (create_cus_from_index_list): New function.
3057 (create_cus_from_index): Use it. Handle .dwz data.
3058 (read_index_from_section): New function, extracted from
3059 dwarf2_read_index.
3060 (dwarf2_read_index): Use it. Read .gdb_index from dwz file,
3061 if needed.
3062
3063 2012-07-18 Tom Tromey <tromey@redhat.com>
3064
3065 * dwarf2read.c (struct dwarf2_per_objfile) <dwz_file>: New field.
3066 (struct dwarf2_per_cu_data) <length>: No longer bitfield.
3067 <is_dwz>: New field.
3068 (struct dwz_file): New.
3069 (struct partial_die_info) <is_dwz, spec_is_dwz>: New fields.
3070 (locate_dwz_sections, dwarf2_get_dwz_file)
3071 (get_abbrev_section_for_cu): New functions.
3072 (error_check_comp_unit_head, read_and_check_comp_unit_head)
3073 (read_and_check_type_unit_head): Add abbrev_section argument.
3074 (create_debug_types_hash_table): Update.
3075 (init_cutu_and_read_dies): Use proper abbrev section.
3076 (init_cutu_and_read_dies_no_follow): Likewise.
3077 (set_partial_user): Do nothing if PST==NULL.
3078 (read_comp_units_from_section): New function.
3079 (create_all_comp_units): Use it.
3080 (scan_partial_symbols, partial_die_parent_scope): Update.
3081 (skip_one_die): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
3082 (process_imported_unit_die, read_partial_die): Handle .dwz files.
3083 (find_partial_die): Add offset_in_dwz argument. Update.
3084 (guess_partial_die_structure_name, fixup_partial_die): Update.
3085 (read_attribute_value): Handle DW_FORM_GNU_ref_alt,
3086 DW_FORM_GNU_strp_alt.
3087 (read_indirect_string_from_dwz): New function.
3088 (dwarf2_const_value_attr): Handle DW_FORM_GNU_strp_alt.
3089 (dump_die_shallow): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt.
3090 (is_ref_attr): Handle DW_FORM_GNU_ref_alt.
3091 (follow_die_offset): Add offset_in_dwz argument.
3092 (follow_die_ref, dwarf2_fetch_die_location_block): Update.
3093 (skip_form_bytes): Handle DW_FORM_GNU_strp_alt.
3094 (dwarf_decode_macro_bytes): Add section_is_dwz argument.
3095 Handle new macro forms.
3096 (dwarf_decode_macros): Update.
3097 (dwarf2_find_containing_comp_unit): Add offset_in_dwz argument.
3098 (dwarf2_per_objfile_free): Unref dwz_bfd, if it exists
3099 (lookup_die_type): Handle DW_FORM_GNU_ref_alt.
3100 (create_debug_types_hash_table): Use correct abbrev section.
3101 (get_debug_line_section): New function.
3102 (dwarf_decode_line_header, dwarf_decode_lines_1): Use it.
3103 (process_full_comp_unit): Pass 'required' argument to
3104 end_symtab_get_static_block.
3105 * buildsym.h (end_symtab_get_static_block): Update.
3106 * buildsym.c (end_symtab_get_static_block): Add 'required'
3107 argument.
3108 (end_symtab, end_expandable_symtab): Update.
3109
3110 2012-07-18 Tom Tromey <tromey@redhat.com>
3111
3112 * dwarf2read.c: Don't include zlib.h or sys/mman.h.
3113 (pagesize): Remove.
3114 (struct dwarf2_section_info) <map_addr, map_len>: Remove.
3115 (zlib_decompress_section): Remove.
3116 (dwarf2_read_section): Use gdb_bfd_map_section.
3117 (munmap_section_buffer): Remove.
3118 (free_dwo_file, dwarf2_per_objfile_free): Don't use
3119 munmap_section_buffer.
3120 * gdb_bfd.c: Include zlib.h, sys/mman.h.
3121 (struct gdb_bfd_section_data): New.
3122 (free_one_bfd_section): New function.
3123 (gdb_bfd_close_or_warn): Use free_one_bfd_section.
3124 (get_section_descriptor, zlib_decompress_section)
3125 (gdb_bfd_map_section): New functions.
3126 * gdb_bfd.h (gdb_bfd_map_section): Declare.
3127
3128 2012-07-18 Tom Tromey <tromey@redhat.com>
3129
3130 * dwarf2read.c (try_open_dwo_file): use gdb_bfd_open.
3131
3132 2012-07-18 Tom Tromey <tromey@redhat.com>
3133
3134 * gdb_bfd.c (struct gdb_bfd_data): New.
3135 (gdb_bfd_cache): New global.
3136 (struct gdb_bfd_cache_search): New.
3137 (hash_bfd, eq_bfd, gdb_bfd_open): New functions.
3138 (gdb_bfd_ref, gdb_bfd_unref): Use gdb_bfd_data.
3139 * gdb_bfd.h (gdb_bfd_open): Declare.
3140
3141 2012-07-18 Tom Tromey <tromey@redhat.com>
3142
3143 * utils.c (make_cleanup_bfd_unref): Rename from
3144 make_cleanup_bfd_close.
3145 * defs.h (make_cleanup_bfd_unref): Rename from
3146 make_cleanup_bfd_close.
3147 * cli/cli-dump.c (bfd_openr_with_cleanup): Update.
3148 (bfd_openw_with_cleanup): Update.
3149 * corelow.c (core_open): Update.
3150 * dsrec.c (load_srec): Update.
3151 * m32r-rom.c (m32r_load, m32r_upload_command): Update.
3152 * remote-m32r-sdi.c (m32r_load): Update.
3153 * remote-mips.c (mips_load_srec): Update.
3154 (pmon_load_fast): Update.
3155 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
3156 Update.
3157 (darwin_bfd_open): Update.
3158 * solib.c (solib_bfd_fopen): Update.
3159 * symfile-mem.c (symbol_file_add_from_memory): Update.
3160 * symfile.c (symbol_file_add_with_addrs_or_offsets): Update.
3161 (symfile_bfd_open): Update.
3162 (generic_load): Update.
3163
3164 2012-07-18 Tom Tromey <tromey@redhat.com>
3165
3166 * remote-mips.c (mips_load_srec): Use make_cleanup_bfd_close.
3167 (pmon_load_fast): Likewise.
3168 * m32r-rom.c (m32r_load): Use make_cleanup_bfd_close.
3169 (m32r_upload_command): Likewise.
3170 * dsrec.c (load_srec): Use make_cleanup_bfd_close.
3171 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
3172 Use make_cleanup_bfd_close.
3173
3174 2012-07-18 Tom Tromey <tromey@redhat.com>
3175
3176 * symfile.c (symfile_bfd_open): Don't copy name. Call
3177 gdb_bfd_stash_filename.
3178 (load_command): Open the new BFD before freeing the old.
3179 (bfd_open_maybe_remote): Call gdb_bfd_stash_filename.
3180 * symfile-mem.c (symbol_file_add_from_memory): Don't copy name.
3181 Call gdb_bfd_stash_filename.
3182 * spu-linux-nat.c (spu_bfd_open): Don't copy name.
3183 * solib-spu.c (spu_bfd_fopen): Don't copy name. Call
3184 gdb_bfd_stash_filename.
3185 * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init):
3186 Free found_pathname.
3187 * rs6000-nat.c (add_vmap): Don't copy filename. Call
3188 gdb_bfd_stash_filename.
3189 * remote.c (remote_bfd_open): Call gdb_bfd_stash_filename.
3190 * machoread.c (macho_add_oso_symfile): Call
3191 gdb_bfd_stash_filename.
3192 (macho_symfile_read_all_oso): Arrange to free archive_name. Call
3193 gdb_bfd_stash_filename.
3194 (macho_check_dsym): Don't copy filename. Call
3195 gdb_bfd_stash_filename.
3196 * jit.c (bfd_open_from_target_memory): Don't copy the filename.
3197 * gdb_bfd.c (gdb_bfd_stash_filename): New function.
3198 * gdb_bfd.h (gdb_bfd_stash_filename): Declare.
3199 * gcore.c (create_gcore_bfd): Call gdb_bfd_stash_filename.
3200 * exec.c (exec_close): Don't free the BFD's filename.
3201 (exec_file_attach): Don't copy the filename. Call
3202 gdb_bfd_stash_filename.
3203 * corelow.c (core_close): Don't free the BFD's filename.
3204 (core_open): Call gdb_bfd_stash_filename.
3205 * corefile.c (reopen_exec_file): Remove #if 0 code.
3206 * solib.c (solib_bfd_fopen): Call gdb_bfd_stash_filename. Free
3207 pathname.
3208 * dwarf2read.c (try_open_dwo_file): Call gdb_bfd_stash_filename.
3209
3210 2012-07-18 Tom Tromey <tromey@redhat.com>
3211
3212 * dwarf2read.c (try_open_dwo_file): Use gdb_bfd_ref and
3213 gdb_bfd_unref.
3214 (free_dwo_file): Use gdb_bfd_unref.
3215 * cli/cli-dump.c: Include gdb_bfd.h.
3216 (bfd_openw_with_cleanup): Use gdb_bfd_ref.
3217 (bfd_openr_with_cleanup): Likewise.
3218 * windows-nat.c (windows_make_so): Use gdb_bfd_ref,
3219 gdb_bfd_unref.
3220 * utils.c: Include gdb_bfd.h.
3221 (do_bfd_close_cleanup): Use gdb_bfd_unref.
3222 * symfile.c: Include gdb_bfd.h.
3223 (separate_debug_file_exists): Use gdb_bfd_unref.
3224 (bfd_open_maybe_remote): Use gdb_bfd_ref.
3225 (symfile_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
3226 (generic_load): Use gdb_bfd_ref.
3227 (reread_symbols): Use gdb_bfd_unref.
3228 * symfile-mem.c: Include gdb_bfd.h.
3229 (symbol_file_add_from_memory): Use make_cleanup_bfd_close.
3230 * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref.
3231 * solib.c: Include gdb_bfd.h.
3232 (solib_bfd_fopen): Use gdb_bfd_ref.
3233 (solib_bfd_open): Use gdb_bfd_unref.
3234 (free_so_symbols): Use gdb_bfd_unref.
3235 (reload_shared_libraries_1): Use gdb_bfd_unref.
3236 * solib-spu.c: Include gdb_bfd.h.
3237 (spu_bfd_fopen): Use gdb_bfd_ref, gdb_bfd_unref.
3238 * solib-pa64.c (pa64_solib_create_inferior_hook): Use gdb_bfd_ref,
3239 gdb_bfd_unref.
3240 * solib-frv.c: Include gdb_bfd.h.
3241 (enable_break2): Use gdb_bfd_unref.
3242 * solib-dsbt.c: Include gdb_bfd.h.
3243 (enable_break2): Use gdb_bfd_unref.
3244 * solib-darwin.c: Include gdb_bfd.h.
3245 (darwin_solib_get_all_image_info_addr_at_init): Use gdb_bfd_ref,
3246 gdb_bfd_unref.
3247 (darwin_bfd_open): Use gdb_bfd_unref.
3248 * rs6000-nat.c (add_vmap): Use gdb_bfd_ref, gdb_bfd_unref.
3249 * remote-mips.c: Include gdb_bfd.h.
3250 (mips_load_srec): Use gdb_bfd_ref.
3251 (pmon_load_fast): Use gdb_bfd_ref.
3252 * remote-m32r-sdi.c: Include gdb_bfd.h.
3253 (m32r_load): Use gdb_bfd_ref.
3254 * record.c: Include gdb_bfd.h.
3255 (record_save_cleanups): Use gdb_bfd_unref.
3256 (cmd_record_save): Use gdb_bfd_unref.
3257 * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_ref,
3258 gdb_bfd_unref.
3259 * objfiles.h (gdb_bfd_close_or_warn): Remove.
3260 (gdb_bfd_ref, gdb_bfd_unref): Move to gdb_bfd.h.
3261 * objfiles.c: Include gdb_bfd.h.
3262 (free_objfile): Use gdb_bfd_unref.
3263 (gdb_bfd_close_or_warn, gdb_bfd_ref, gdb_bfd_unref): Move to
3264 gdb_bfd.c.
3265 * machoread.c (macho_add_oso_symfile): Use gdb_bfd_unref.
3266 (macho_symfile_read_all_oso): Use gdb_bfd_ref, gdb_bfd_unref.
3267 (macho_check_dsym): Likewise.
3268 * m32r-rom.c: Include gdb_bfd.h.
3269 (m32r_load): Use gdb_bfd_ref.
3270 (m32r_upload_command): Use gdb_bfd_ref.
3271 * jit.c: Include gdb_bfd.h.
3272 (jit_bfd_try_read_symtab): Use gdb_bfd_ref, gdb_bfd_unref.
3273 * gdb_bfd.h: New file.
3274 * gdb_bfd.c: New file.
3275 * gcore.c: Include gdb_bfd.h.
3276 (create_gcore_bfd): Use gdb_bfd_ref.
3277 (do_bfd_delete_cleanup): Use gdb_bfd_unref.
3278 (gcore_command): Use gdb_bfd_unref.
3279 * exec.c: Include gdb_bfd.h.
3280 (exec_close): Use gdb_bfd_unref.
3281 (exec_close_1): Use gdb_bfd_unref.
3282 (exec_file_attach): Use gdb_bfd_ref.
3283 * elfread.c: Include gdb_bfd.h.
3284 (build_id_verify): Use gdb_bfd_unref.
3285 * dsrec.c: Include gdb_bfd.h.
3286 (load_srec): Use gdb_bfd_ref.
3287 * corelow.c: Include gdb_bfd.h.
3288 (core_close): Use gdb_bfd_unref.
3289 (core_open): Use gdb_bfd_ref.
3290 * bfd-target.c: Include gdb_bfd.h.
3291 (target_bfd_xclose): Use gdb_bfd_unref.
3292 (target_bfd_reopen): Use gdb_bfd_ref.
3293 * Makefile.in (SFILES): Add gdb_bfd.c.
3294 (HFILES_NO_SRCDIR): Add gdb_bfd.h.
3295 (COMMON_OBS): Add gdb_bfd.o.
3296
3297 2012-07-18 Keith Seitz <keiths@redhat.com>
3298
3299 * breakpoint.c (find_condition_and_thread): Initialize
3300 TASK and REST.
3301 (create_breakpiont): find_condition_and_thread will now
3302 initialize COND_STRING, THREAD, and REST (and TASK).
3303 (addr_string_to_sals): Likewise.
3304
3305 2012-07-18 Pedro Alves <palves@redhat.com>
3306
3307 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_NO_HISTORY>:
3308 Pull the single step breakpoints out of the target.
3309
3310 2012-07-18 Sergio Durigan Junior <sergiodj@redhat.com>
3311
3312 * probe.c (probe_safe_evaluate_at_pc): Rename variable `n_probes'.
3313 * stap-probe.c (compile_probe_arg): Likewise.
3314
3315 2012-07-18 Sergio Durigan Junior <sergiodj@redhat.com>
3316
3317 * elfread.c (elf_get_probe_argument_count): Remove `objfile' argument.
3318 (elf_compile_to_ax): Likewise.
3319 * infrun.c (insert_exception_resume_from_probe): Likewise.
3320 (check_exception_resume): Remove `objfile' variable.
3321 * probe.c (find_probe_by_pc): Remove `objfile' argument.
3322 (struct probe_and_objfile, probe_and_objfile_s): Delete.
3323 (collect_probes): Adjust return value to `VEC (probe_p) *'.
3324 (compare_entries): Rename to...
3325 (compare_probes): ...this. Adjust function to work with
3326 `struct probe *'. Rename variables `ea' and `eb' to `pa' and `pb'
3327 respectively.
3328 (gen_ui_out_table_header_info): Adjust `probes' argument to be
3329 `VEC (probe_p) *'.
3330 (print_ui_out_info): Adjust argument to be `struct probe *'.
3331 (info_probes_for_ops): Adjust internal computations to use
3332 `VEC (probe_p) *'.
3333 (probe_safe_evaluate_at_pc): Refactor to not pass `objfile' anymore.
3334 * probe.h (struct probe_ops) <get_probe_argument_count, compile_to_ax,
3335 gen_info_probes_table_values>: Remove `objfile' argument.
3336 (struct probe) <objfile>: New field.
3337 (find_probe_by_pc): Remove `objfile' argument.
3338 * stap-probe.c (stap_parse_probe_arguments): Likewise.
3339 (stap_get_probe_argument_count): Likewise.
3340 (stap_get_arg): Likewise.
3341 (stap_evaluate_probe_argument): Likewise.
3342 (stap_compile_to_ax): Likewise.
3343 (compile_probe_arg): Refactor not to pass `objfile' anymore.
3344 (handle_stap_probe): Fill `objfile' field from `struct probe'.
3345 (stap_gen_info_probes_table_header): Remove `objfile' argument.
3346 * symfile.h (struct sym_probe_fns) <sym_evaluate_probe_argument,
3347 sym_compile_to_ax>: Likewise.
3348
3349 2012-07-18 Terry Guo <terry.guo@arm.com>
3350
3351 PR 14329
3352 * defs.h (GDB_MI_MSG_WIDTH): New.
3353 * ser_base (ser_base_read_error_fd): New function.
3354 (do_ser_base_readchar): Poll error file descriptor as well as
3355 standard output.
3356 (generic_readchar): Refactor error handling.
3357
3358 2012-07-18 Joel Brobecker <brobecker@adacore.com>
3359
3360 * NEWS: Create a new section for the next release branch.
3361 Rename the section of the current branch, now that it has
3362 been cut.
3363
3364 2012-07-18 Joel Brobecker <brobecker@adacore.com>
3365
3366 GDB 7.5 branch created (branch timestamp: 2012-07-18 03:22 UTC)
3367 * version.in: Bump version to 7.5.50.20120718-cvs.
3368
3369 2012-07-17 Keith Seitz <keiths@redhat.com>
3370
3371 * linespec.c (linespec_parse_line_offset): Make parameter
3372 const.
3373
3374 2012-07-16 Jan Kratochvil <jan.kratochvil@redhat.com>
3375
3376 PR 11914
3377 * f-valprint.c (info_common_command): New variable frame_id.
3378 Reinitialize FI form FRAME_ID after each print_variable_and_value.
3379 * printcmd.c (print_variable_and_value): Extend function comment.
3380 Add comment for invalidated FRAME.
3381 * stack.c (backtrace_command_1): New variable frame_id. Reinitialize
3382 FI form FRAME_ID after each print_frame_local_vars.
3383 (struct print_variable_and_value_data): Change frame to frame_id.
3384 (do_print_variable_and_value): New variable frame, initialize it from
3385 p->frame_id. Add comment for invalidated FRAME.
3386 (print_frame_local_vars, print_frame_arg_vars): New function comment.
3387 Update CB_DATA.FRAME to CB_DATA.FRAME_ID initialization. Add comment
3388 for invalidated FRAME.
3389
3390 2012-07-16 Marc Khouzam <marc.khouzam@ericsson.com>
3391 Pedro Alves <palves@redhat.com>
3392
3393 * linux-nat.c (linux_nat_detach): Don't unregister from the event
3394 loop.
3395
3396 2012-07-16 Tom Tromey <tromey@redhat.com>
3397
3398 * jv-typeprint.c (c_type_print_varspec_suffix): Don't declare.
3399
3400 2012-07-15 Doug Evans <dje@google.com>
3401
3402 * dwarf2read.c (stmt_list_hash): New struct.
3403 (type_unit_group): Embed "per_cu" member, remove pointer.
3404 New union member "t", move member "tus" into it, all uses updated.
3405 New member "hash", replaces member "line_offset, all uses updated.
3406 (quick_file_names): Replace member "offset" with "hash", all uses
3407 updated.
3408 (hash_stmt_list_entry, eq_stmt_list_entry): New functions.
3409 (hash_file_name_entry, eq_file_name_entry): Call them.
3410 (hash_type_unit_group, eq_type_unit_group): Ditto.
3411 (dw2_get_cu, dw2_get_primary_cu): Replace assert with a better one.
3412 (dw2_get_file_names_reader): Fix file name table calculation for TUs.
3413 (dw2_get_file_names): Update.
3414 (create_type_unit_group): Replace "per_cu" arg with "cu".
3415 All callers updated. Fix "quick" (.gdb_index) handling.
3416 (get_type_unit_group): Replace "per_cu" arg with "cu".
3417 All callers updated.
3418 (build_type_unit_groups): Don't reset tu_stats.
3419
3420 * symtab.c (filename_seen_cache): Delete members "tab_alloc_size",
3421 "tab_cur_size". Change member "tab" to be a htab_t.
3422 (create_filename_seen_cache): Update.
3423 (clear_filename_seen_cache, delete_filename_seen_cache): Update.
3424 (filename_seen): Update.
3425
3426 2012-07-13 Doug Evans <dje@google.com>
3427
3428 * symtab.c (filename_seen): Update comment.
3429
3430 2012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3431 Doug Evans <dje@google.com>
3432
3433 * buildsym.c (end_symtab_1): Split it to ...
3434 (end_symtab_get_static_block): ... this ...
3435 (end_symtab_from_static_block): ... and this function.
3436 (end_symtab, end_expandable_symtab): Call them.
3437 * buildsym.h (end_symtab_get_static_block)
3438 (end_symtab_from_static_block): New declarations.
3439 * dwarf2read.c (process_full_comp_unit): New variable static_block.
3440 Set its valid CU ranges.
3441
3442 2012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3443
3444 * dwarf2loc.c (disassemble_dwarf_expression): Handle
3445 DW_OP_GNU_parameter_ref.
3446
3447 2012-07-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3448
3449 * dwarf2read.c (read_call_site_scope): Do not gdb_assert for invalid
3450 read-in CALL_SITE_PARAMETER_PARAM_OFFSET.
3451
3452 2012-07-13 Doug Evans <dje@google.com>
3453
3454 * symtab.c (output_source_filename): Delete unnecessary forward decl.
3455 (filename_seen_cache): New struct.
3456 (INITIAL_FILENAME_SEEN_CACHE_SIZE): New macro.
3457 (create_filename_seen_cache): New function.
3458 (clear_filename_seen_cache, delete_filename_seen_cache): New functions.
3459 (filename_seen): Delete arg "first". New arg "cache". All callers
3460 updated.
3461 (output_source_filename_data): New struct.
3462 (output_source_filename): Delete arg "first". New arg "data".
3463 All callers updated.
3464 (sources_info): Delete local "first". New locals "data", "cleanups".
3465 Rewrite to use filename_seen_cache.
3466 (add_partial_filename_data): Delete member "first". New member
3467 "filename_seen_cache". All uses updated.
3468 (make_source_files_completion_list): Rewrite to use
3469 filename_seen_cache.
3470
3471 2012-07-12 Doug Evans <dje@google.com>
3472
3473 * psymtab.c (map_symbol_filenames_psymtab): Skip shared psymtabs.
3474
3475 2012-07-10 Doug Evans <dje@google.com>
3476
3477 PR gdb/13498
3478 * dwarf2read.c (dwarf2_per_objfile): New members n_type_unit_groups,
3479 all_type_unit_groups, type_unit_groups, tu_stats.
3480 (dwarf2_per_cu_data): Move "imported_symtabs" into new union "s".
3481 All uses updated. Add type_unit_group to union "s".
3482 (type_unit_group): New struct.
3483 (IS_TYPE_UNIT_GROUP): New macro.
3484 (abbrev_table): Delete unused member "section".
3485 (dw2_do_instantiate_symtab): Early exit if type_unit_group.
3486 (dw2_get_cu): Assert not used with type_unit_group.
3487 (dw2_get_primary_cu): New function.
3488 (dw2_build_type_unit_groups_reader): New function.
3489 (dw2_build_type_unit_groups): New function.
3490 (dw2_get_file_names): Assert not called on type units.
3491 (dw2_map_symtabs_matching_filename): Call dw2_build_type_unit_groups.
3492 Redo loop to iterate over type unit groups instead of type units.
3493 (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Ditto.
3494 (read_abbrev_offset): New function.
3495 (init_cutu_and_read_dies): New arg "abbrev_table". All callers
3496 updated.
3497 (create_partial_symtab): New function.
3498 (process_psymtab_comp_unit_reader): Assert not used with type units.
3499 Call create_partial_symtab.
3500 (process_psymtab_type_unit): Delete.
3501 (hash_type_unit_group, eq_type_unit_group): New functions.
3502 (allocate_type_unit_groups_table): New function.
3503 (NO_STMT_LIST_TYPE_UNIT_PSYMTAB): New macro.
3504 (NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE): New macro.
3505 (create_type_unit_group, get_type_unit_group): New functions.
3506 (tu_abbrev_offset): New struct.
3507 (sort_tu_by_abbrev_offset): New function.
3508 (add_type_unit_group_to_table): New function.
3509 (build_type_unit_groups): New function.
3510 (build_type_psymtabs_reader): New function.
3511 (build_type_psymtab_dependencies): New function.
3512 (build_type_psymtabs): Rewrite.
3513 (scan_partial_symbols): Flag an error if a DW_TAG_imported_unit
3514 is seen in a type unit.
3515 (process_queue): Move symtab expansion debugging printfs here.
3516 Call process_full_type_unit for type units.
3517 (compute_symtab_includes): Assert not called for type units.
3518 (process_cu_includes): Don't call compute_symtab_includes for
3519 type units.
3520 (process_full_type_unit): New function.
3521 (process_imported_unit_die): Flag an error if called for type units.
3522 (handle_DW_AT_stmt_list): Delete arg "want_line_info". All callers
3523 updated. Assert not called for type units.
3524 (read_file_scope): Call dwarf2_start_symtab.
3525 (setup_type_unit_groups): New function.
3526 (read_type_unit_scope): Rewrite.
3527 (abbrev_table_read_table): Initialize abbrev_table->offset.
3528 (abbrev_table_free_cleanup): New function.
3529 (dwarf2_start_symtab): New function.
3530 (load_full_type_unit): Assert not called for type unit groups.
3531 * buildsym.c (finish_block_internal): New arg "expandable".
3532 All callers updated.
3533 (start_symtab): Move most contents to ...
3534 (restart_symtab): ... here. New function.
3535 (reset_symtab_globals): New function.
3536 (end_symtab_1): Renamed from end_symtab. New arg "expandable".
3537 Call reset_symtab_globals.
3538 (end_symtab, end_expandable_symtab): New functions.
3539 (set_missing_symtab, augment_type_symtab): New functions.
3540 * buildsym.h (end_expandable_symtab): Declare.
3541 (augment_type_symtab, restart_symtab): Declare.
3542 * psympriv.h (struct partial_symtab): New member "anonymous".
3543 * psymtab.c (partial_map_symtabs_matching_filename): Ignore
3544 anonymous psymtabs.
3545 (read_psymtabs_with_filename): Ditto.
3546 (map_symbol_filenames_psymtab, psymtab_to_fullname): Ditto.
3547 (expand_symtabs_matching_via_partial): Ditto.
3548 (dump_psymtab): Update.
3549 * dictionary.c (dict_add_pending): New function.
3550 * dictionary.h (dict_add_pending): Declare.
3551
3552 2012-07-09 Doug Evans <dje@google.com>
3553
3554 * buildsym.c (start_subfile): Remove unnecessary check for
3555 name == NULL.
3556
3557 * psymtab.c (allocate_psymtab): Use host_address_to_string.
3558
3559 * dwarf2read.c (load_full_type_unit): Simplify.
3560
3561 * dwarf2read.c (dwarf2_per_objfile): Change type of all_type_units
3562 to struct signatured_type **. All uses updated.
3563
3564 * dwarf2read.c (dwarf2_attr_no_follow): Delete unused arg "cu".
3565 All callers updated.
3566
3567 2012-07-09 Tom Tromey <tromey@redhat.com>
3568
3569 * c-exp.y (check_parameter_typelist): New function.
3570 (parameter_typelist): Call it.
3571 * eval.c (make_params): Handle '(void)' case.
3572 * gdbtypes.c (lookup_function_type_with_arguments): Handle
3573 '(void)' case.
3574
3575 2012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3576
3577 * common/linux-ptrace.c: Include gdb_assert.h.
3578 <__i386__> (linux_ptrace_test_ret_to_nx_instr): New declaration.
3579 <__i386__>: Include sys/reg.h, sys/mman.h, signal.h, sys/wait.h and
3580 stdint.h.
3581 (linux_ptrace_test_ret_to_nx, linux_ptrace_init_warnings): New
3582 functions.
3583 * common/linux-ptrace.h (linux_ptrace_init_warnings): New declarations.
3584 * linux-nat.c (linux_child_post_attach)
3585 (linux_child_post_startup_inferior): Call linux_ptrace_init_warnings.
3586
3587 2012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3588
3589 * linux-thread-db.c (thread_db_find_new_threads_silently): Do not apply
3590 nptl <2.7 bug workaround for core files.
3591
3592 2012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
3593
3594 * linux-nat.c (resume_lwp, linux_nat_resume): Remove LP->SIGINFO
3595 clearing.
3596 (save_siginfo): Remove.
3597 (stop_wait_callback, linux_nat_filter_event): Remove the save_siginfo
3598 call.
3599 (resume_stopped_resumed_lwps): Remove LP->SIGINFO clearing.
3600 (linux_nat_get_siginfo): Use PTRACE_GETSIGINFO.
3601 * linux-nat.h (struct lwp_info): Remove field siginfo.
3602
3603 2012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
3604
3605 Code cleanup for the next patch.
3606 * arm-linux-nat.c (arm_linux_stopped_data_address): Change variable
3607 siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
3608 call for it.
3609 * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
3610 (ia64_linux_stopped_data_address):
3611 * linux-nat.c (linux_nat_get_siginfo): Add parameter siginfo, change
3612 the return value.
3613 * linux-nat.h (linux_nat_get_siginfo): Likewise.
3614 * ppc-linux-nat.c (ppc_linux_stopped_data_address): Change variable
3615 siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo
3616 call for it.
3617
3618 2012-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
3619
3620 PR 14321
3621 * findcmd.c (parse_find_args): New variable pattern_buf_size_need.
3622 Increase buffer sizes to 2x we need, not just 2x of the previous size.
3623
3624 2012-07-06 Tom Tromey <tromey@redhat.com>
3625
3626 * c-exp.y (DOTDOTDOT): New token.
3627 (func_mod, exp): Use parameter_typelist.
3628 (parameter_typelist): New production.
3629 (tokentab3): Add "..." token.
3630 * eval.c (make_params): Handle varargs.
3631 * gdbtypes.c (lookup_function_type_with_arguments): Handle
3632 varargs.
3633
3634 2012-07-06 Tom Tromey <tromey@redhat.com>
3635
3636 PR exp/9608:
3637 * c-exp.y (%union) <tvec>: Change type.
3638 (func_mod): Now uses <tvec> type.
3639 (exp): Update for tvec change.
3640 (direct_abs_decl): Push the typelist.
3641 (func_mod): Return a typelist.
3642 (nonempty_typelist): Update for tvec change.
3643 * gdbtypes.c (lookup_function_type_with_arguments): New function.
3644 * gdbtypes.h (lookup_function_type_with_arguments): Declare.
3645 * parse.c (pop_type_list): New function.
3646 (push_typelist): New function.
3647 (follow_types): Handle tp_function_with_arguments.
3648 * parser-defs.h (type_ptr): New typedef. Define a VEC.
3649 (enum type_pieces) <tp_function_with_arguments>: New constant.
3650 (union type_stack_elt) <typelist_val>: New field.
3651 (push_typelist): Declare.
3652
3653 2012-07-06 Tom Tromey <tromey@redhat.com>
3654
3655 * c-exp.y (%union) <type_stack>: New field.
3656 (abs_decl, direct_abs_decl): Use <type_stack> type. Update.
3657 (ptr_operator_ts): New production.
3658 (ptype): Update.
3659 * parse.c (type_stack_reserve): New function.
3660 (check_type_stack_depth): Use it.
3661 (pop_type_stack, append_type_stack, push_type_stack)
3662 (get_type_stack, type_stack_cleanup): New functions.
3663 (follow_types): Handle tp_type_stack.
3664 (_initialize_parse): Simplify initialization.
3665 * parser-defs.h (enum type_pieces) <tp_type_stack>: New
3666 constant.
3667 (union type_stack_elt) <stack_val>: New field.
3668 (get_type_stack, append_type_stack, push_type_stack)
3669 (type_stack_cleanup): Declare.
3670
3671 2012-07-06 Tom Tromey <tromey@redhat.com>
3672
3673 * parser-defs.h (type_stack, type_stack_size, type_stack_depth):
3674 Remove.
3675 (struct type_stack): New.
3676 * parse.c (type_stack, type_stack_size, type_stack_depth):
3677 Remove.
3678 (type_stack): New global.
3679 (parse_exp_in_context, check_type_stack_depth)
3680 (insert_into_type_stack, insert_type, push_type, push_type_int)
3681 (insert_type_address_space, pop_type, pop_type_int)
3682 (_initialize_parse): Update.
3683
3684 2012-07-06 Tom Tromey <tromey@redhat.com>
3685
3686 * c-exp.y (func_mod, direct_abs_decl, abs_decl, ptr_operator):
3687 Remove %type.
3688
3689 2012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
3690
3691 * c-lang.c (c_printstr): Remove ununsed variable WIDTH.
3692
3693 2012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
3694 Jan Kratochvil <jan.kratochvil@redhat.com>
3695
3696 * cp-valprint.c (cp_print_value): Replace potentially unsafe
3697 alloca with xmalloc/xfree.
3698
3699 2012-07-06 Siddhesh Poyarekar <siddhesh@redhat.com>
3700
3701 * MAINTAINERS (Write After Approval): Add myself to the list.
3702
3703 2012-07-05 Doug Evans <dje@google.com>
3704
3705 * dwarf2read.c (dw2_expand_symtabs_matching): Fix typo.
3706
3707 2012-07-05 Hui Zhu <hui_zhu@mentor.com>
3708
3709 * ax-gdb.c (cli/cli-utils.h): New include.
3710 (linespec.h): Ditto.
3711 (agent_eval_command_one): New function.
3712 (agent_command_1): Ditto.
3713 (agent_command): Call function agent_command_1.
3714 (agent_eval_command): Ditto.
3715 (_initialize_ax_gdb): Change help for "maint agent"
3716 and "maint agent-eval".
3717
3718 2012-07-05 Hui Zhu <hui_zhu@mentor.com>
3719
3720 * breakpoint.c (check_for_argument): Move to file cli/cli-utils.c.
3721 * cli/cli-utils.c (check_for_argument): New function.
3722 * cli/cli-utils.h (check_for_argument): Ditto.
3723
3724 2012-07-04 H.J. Lu <hongjiu.lu@intel.com>
3725
3726 * NEWS: Mention x32 ABI support.
3727
3728 2012-07-04 H.J. Lu <hongjiu.lu@intel.com>
3729
3730 * amd64-tdep.c (amd64_x32_init_abi): Set sp_regnum_from_eax to
3731 AMD64_RSP_REGNUM and pc_regnum_from_eax to AMD64_RIP_REGNUM.
3732
3733 * i386-tdep.c (i386_gdbarch_init): Initialize sp_regnum_from_eax
3734 and pc_regnum_from_eax to -1. Update SP regnum from
3735 sp_regnum_from_eax and PC regnum from pc_regnum_from_eax if
3736 needed.
3737
3738 * i386-tdep.h (gdbarch_tdep): Add sp_regnum_from_eax and
3739 pc_regnum_from_eax.
3740
3741 2012-07-03 Jan Kratochvil <jan.kratochvil@redhat.com>
3742
3743 Fix 'warning: parameter has incomplete type' with gcc-3.4.6.
3744 * dwarf2expr.h: Include gdbtypes.h.
3745 (enum call_site_parameter_kind, union call_site_parameter_u): Remove
3746 these forward declarations.
3747 (cu_offset, sect_offset): Move these ...
3748 * gdbtypes.h: Remove include dwarf2expr.h.
3749 (cu_offset, sect_offset): ... here.
3750
3751 2012-07-03 H.J. Lu <hongjiu.lu@intel.com>
3752
3753 * amd64-linux-tdep.c (linux_sigtramp_code): Renamed to ...
3754 (amd64_linux_sigtramp_code): This.
3755 (amd64_x32_linux_sigtramp_code): New.
3756 (LINUX_SIGTRAMP_LEN): Updated.
3757 (amd64_linux_sigtramp_start): Check x32 sigtramp.
3758
3759 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3760
3761 * linux-thread-db.c (thread_db_new_objfile): Fix comment typos.
3762
3763 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3764
3765 * config.in: Regenerate.
3766 * configure: Regenerate.
3767 * configure.ac: Remove check for gnu/libc-version.h.
3768 * linux-thread-db.c <HAVE_GNU_LIBC_VERSION_H>: Remove include of
3769 gnu/libc-version.h.
3770 (enable_thread_event_reporting) <HAVE_GNU_LIBC_VERSION_H>: Remove
3771 variables libc_version, libc_major and libc_minor. Replace sscanf by
3772 inferior_has_bug. Extend the comment.
3773
3774 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3775
3776 * linux-thread-db.c (inferior_has_bug): New function.
3777 (thread_db_find_new_threads_silently): Return boolean as checked by
3778 inferior_has_bug, describe it in the comments.
3779 (try_thread_db_load_1): Move call to thread_db_find_new_threads_silently
3780 earlier. Abort the initialization if it returned non-zero.
3781 (thread_db_new_objfile): Exclude debug files.
3782 (thread_db_find_new_threads_2): Preinitialize ERR. Check errors also
3783 if UNTIL_NO_NEW,
3784
3785 2012-07-02 Doug Evans <dje@google.com>
3786
3787 * dwarf2read.c (maybe_queue_comp_unit): Move definition next to others
3788 related to queue management.
3789
3790 * dwarf2read.c (create_debug_types_hash_table): Use "debug dwarf2-read"
3791 instead of "debug dwarf2-die" in debugging printfs.
3792 (create_debug_info_hash_table_reader): Ditto.
3793 (create_debug_info_hash_table): Ditto.
3794 (init_dwo_file): Ditto.
3795 (init_cutu_and_read_dies): Add debugging printf.
3796 (init_cutu_and_read_dies_no_follow): Ditto.
3797 (process_psymtab_comp_unit_reader): Ditto.
3798
3799 2012-07-02 Stan Shebs <stan@codesourcery.com>
3800
3801 Add target-side support for dynamic printf.
3802 * NEWS: Mention the additional style.
3803 * breakpoint.h (struct bp_target_info): New fields tcommands, persist.
3804 (struct bp_location): New field cmd_bytecode.
3805 * breakpoint.c: Include format.h.
3806 (disconnected_dprintf): New global.
3807 (parse_cmd_to_aexpr): New function.
3808 (build_target_command_list): New function.
3809 (insert_bp_location): Call it.
3810 (remove_breakpoints_pid): Skip dprintf breakpoints.
3811 (print_one_breakpoint_location): Ditto.
3812 (dprintf_style_agent): New global.
3813 (dprintf_style_enums): Add dprintf_style_agent.
3814 (update_dprintf_command_list): Add agent case.
3815 (agent_printf_command): New function.
3816 (_initialize_breakpoint): Add new commands.
3817 * common/ax.def (printf): New bytecode.
3818 * ax.h (ax_string): Declare.
3819 * ax-gdb.h (gen_printf): Declare.
3820 * ax-gdb.c: Include cli-utils.h, format.h.
3821 (gen_printf): New function.
3822 (maint_agent_print_command): New function.
3823 (_initialize_ax_gdb): Add maint agent-printf command.
3824 * ax-general.c (ax_string): New function.
3825 (ax_print): Add printf disassembly.
3826 * Makefile.in (SFILES): Add format.c
3827 (COMMON_OBS): Add format.o.
3828 * common/format.h: New file.
3829 * common/format.c: New file.
3830 * printcmd.c: Include format.h.
3831 (ui_printf): Call parse_format_string.
3832 * remote.c (remote_state): New field breakpoint_commands.
3833 (PACKET_BreakpointCommands): New enum.
3834 (remote_breakpoint_commands_feature): New function.
3835 (remote_protocol_features): Add new BreakpointCommands entry.
3836 (remote_can_run_breakpoint_commands): New function.
3837 (remote_add_target_side_commands): New function.
3838 (remote_insert_breakpoint): Call it.
3839 (remote_insert_hw_breakpoint): Ditto.
3840 (_initialize_remote): Add new packet configuration for
3841 target-side breakpoint commands.
3842 * target.h (struct target_ops): New field
3843 to_can_run_breakpoint_commands.
3844 (target_can_run_breakpoint_commands): New macro.
3845 * target.c (update_current_target): Handle
3846 to_can_run_breakpoint_commands.
3847
3848 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3849
3850 Execute -ix and -iex only after system and user gdbinit files.
3851 * main.c (captured_main): Move CMDARG_INIT_FILE and CMDARG_INIT_COMMAND
3852 processing down after gdbinit files.
3853
3854 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3855
3856 Add fnmatch-gnu module.
3857 * gnulib/Makefile.in (aclocal_m4_deps): Add new files and remove one.
3858 * gnulib/configure.ac (AC_INIT): Use now import/memmem.c.
3859 * gnulib/aclocal.m4: Regenerate.
3860 * gnulib/config.in: Regenerate.
3861 * gnulib/configure: Regenerate.
3862 * gnulib/import/dummy.c: Remove.
3863 * gnulib/import/Makefile.am: Regenerate.
3864 * gnulib/import/Makefile.in: Likewise.
3865 * gnulib/import/m4/gnulib-cache.m4: Likewise.
3866 * gnulib/import/m4/gnulib-comp.m4: Likewise.
3867 * gnulib/import/alloca.c: New file.
3868 * gnulib/import/alloca.in.h: Likewise.
3869 * gnulib/import/config.charset: Likewise.
3870 * gnulib/import/fnmatch.c: Likewise.
3871 * gnulib/import/fnmatch.in.h: Likewise.
3872 * gnulib/import/fnmatch_loop.c: Likewise.
3873 * gnulib/import/localcharset.c: Likewise.
3874 * gnulib/import/localcharset.h: Likewise.
3875 * gnulib/import/m4/alloca.m4: Likewise.
3876 * gnulib/import/m4/codeset.m4: Likewise.
3877 * gnulib/import/m4/configmake.m4: Likewise.
3878 * gnulib/import/m4/fcntl-o.m4: Likewise.
3879 * gnulib/import/m4/fnmatch.m4: Likewise.
3880 * gnulib/import/m4/glibc21.m4: Likewise.
3881 * gnulib/import/m4/localcharset.m4: Likewise.
3882 * gnulib/import/m4/locale-fr.m4: Likewise.
3883 * gnulib/import/m4/locale-ja.m4: Likewise.
3884 * gnulib/import/m4/locale-zh.m4: Likewise.
3885 * gnulib/import/m4/mbrtowc.m4: Likewise.
3886 * gnulib/import/m4/mbsinit.m4: Likewise.
3887 * gnulib/import/m4/mbsrtowcs.m4: Likewise.
3888 * gnulib/import/m4/mbstate_t.m4: Likewise.
3889 * gnulib/import/m4/stdbool.m4: Likewise.
3890 * gnulib/import/m4/wchar_h.m4: Likewise.
3891 * gnulib/import/m4/wctype_h.m4: Likewise.
3892 * gnulib/import/m4/wint_t.m4: Likewise.
3893 * gnulib/import/mbrtowc.c: Likewise.
3894 * gnulib/import/mbsinit.c: Likewise.
3895 * gnulib/import/mbsrtowcs-impl.h: Likewise.
3896 * gnulib/import/mbsrtowcs-state.c: Likewise.
3897 * gnulib/import/mbsrtowcs.c: Likewise.
3898 * gnulib/import/ref-add.sin: Likewise.
3899 * gnulib/import/ref-del.sin: Likewise.
3900 * gnulib/import/stdbool.in.h: Likewise.
3901 * gnulib/import/streq.h: Likewise.
3902 * gnulib/import/strnlen1.c: Likewise.
3903 * gnulib/import/strnlen1.h: Likewise.
3904 * gnulib/import/verify.h: Likewise.
3905 * gnulib/import/wchar.in.h: Likewise.
3906 * gnulib/import/wctype.in.h: Likewise.
3907
3908 2012-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3909
3910 Support shell wildcards for 'set auto-load safe-path'.
3911 * auto-load.c: Include fnmatch.h.
3912 (filename_is_in_dir): Rename to ...
3913 (filename_is_in_pattern_1, filename_is_in_pattern): ... here and split
3914 it. Update function comment. Rename dir_len to pattern_len. New
3915 variables filename_len, pattern and filename. Add more DEBUG_AUTO_LOAD
3916 messages. Use gdb_filename_fnmatch.
3917 (filename_is_in_auto_load_safe_path_vec): Rename variable dir to
3918 pattern.
3919 (_initialize_auto_load): Extend the "set auto-load safe-path" help text.
3920 * defs.h (gdb_filename_fnmatch): New declaration.
3921 * utils.c: Include fnmatch.h.
3922 (gdb_filename_fnmatch): New function.
3923
3924 2012-07-02 Sergio Durigan Junior <sergiodj@redhat.com>
3925
3926 * breakpoint.c (BREAK_ARGS_HELP): Include help message for the new
3927 `-probe' and `-probe-stap' options.
3928
3929 2012-07-01 Yao Qi <yao@codesourcery.com>
3930
3931 * breakpoint.c: Removed always_inserted_auto, always_inserted_on,
3932 always_inserted_off, and always_inserted_enums.
3933 Change always_inserted_mode's type to 'enum auto_boolean'.
3934 (show_always_inserted_mode, breakpoint_always_inserted_mode): Update
3935 callers.
3936 (_initialize_breakpoint): Call add_setshow_auto_boolean_cmd instead
3937 of add_setshow_enum_cmd.
3938 * infrun.c: Remove can_use_displaced_stepping_auto,
3939 can_use_displaced_stepping_on, can_use_displaced_stepping_off, and
3940 can_use_displaced_stepping_enum.
3941 Change can_use_displaced_stepping's type to 'enum auto_boolean'.
3942 (show_can_use_displaced_stepping, use_displaced_stepping): Update callers.
3943 (_initialize_infrun): Call add_setshow_auto_boolean_cmd instead of
3944 add_setshow_enum_cmd.
3945
3946 2012-06-30 Doug Evans <dje@google.com>
3947
3948 * dwarf2read.c (signatured_type): Make "per_cu" member first.
3949 (init_cutu_and_read_dies): Handle rereading a DWO CU while it's
3950 currently being read. Propagate DW_AT_comp_dir to DWO DIE.
3951
3952 2012-06-29 Doug Evans <dje@google.com>
3953
3954 * linespec.c: #include "stack.h".
3955 (decode_line_with_current_source): Moved here from symtab.c and
3956 renamed from decode_line_spec. All callers updated.
3957 (decode_line_with_last_displayed): Moved here from breakpoint.c and
3958 renamed from decode_line_spec_1. All callers updated.
3959 * linespec.h (decode_line_with_current_source): Move declaration here
3960 from symtab.h and renamed from decode_line_spec.
3961 (decode_line_with_last_displayed): Move declaration here from symtab.h
3962 and renamed from decode_line_spec_1.
3963 * macrocmd.c: #include "linespec.h".
3964 * symtab.c: Remove #include "linespec.h".
3965
3966 2012-06-28 Doug Evans <dje@google.com>
3967
3968 * dwarf2read.c (get_cu_length): New function.
3969 (offset_in_cu_p, error_check_comp_unit_head): Call it.
3970 (create_debug_types_hash_table): Ditto.
3971 (init_cutu_and_read_dies): Ditto.
3972 (init_cutu_and_read_dies_no_follow): Ditto.
3973
3974 * dwarf2read.c (dwarf2_find_base_address): Move definition.
3975
3976 * dwarf2read.c (ABBREV_HASH_SIZE): Remove enclosing #ifndef/#endif.
3977 (struct abbrev_table): Define.
3978 (dwarf2_cu): Replace members dwarf2_abbrevs, abbrev_obstack with
3979 abbrev_table.
3980 (init_cutu_and_read_dies): Update.
3981 (abbrev_table_alloc_abbrev): New function. Replaces
3982 dwarf_alloc_abbrev. All callers updated.
3983 (abbrev_table_add_abbrev): New function.
3984 (abbrev_table_lookup_abbrev): New function. Replaces
3985 dwarf2_lookup_abbrev. All callers updated.
3986 (abbrev_table_read_table): New function. Contents moved here from
3987 dwarf2_read_abbrevs.
3988 (dwarf2_read_abbrevs): Call it.
3989 (abbrev_table_free): New function.
3990 (dwarf2_free_abbrev_table): Call it.
3991
3992 2012-06-28 Stan Shebs <stan@codesourcery.com>
3993
3994 * osdata.c (info_osdata_command): Filter out "Title" columns
3995 from non-MI uses.
3996 * common/linux-osdata.c (struct osdata_type): Add title field.
3997 (osdata_table): Add titles to each entry.
3998 (linux_command_xfer_osdata): Add a column for title data.
3999
4000 2012-06-28 Stan Shebs <stan@codesourcery.com>
4001
4002 Make logging work for MI.
4003 * NEWS: Mention it.
4004 * interps.h (interp_set_logging_ftype): New typedef.
4005 (struct interp_procs): New field set_logging_proc.
4006 (current_interp_set_logging): Declare.
4007 * interps.c (current_interp_set_logging): New function.
4008 * cli/cli-logging.c: Include interps.h.
4009 (set_logging_redirect): Call current_interp_set_logging.
4010 (pop_output_files): Ditto.
4011 (handle_redirections): Ditto, plus skip ui-out redirect if MI.
4012 * mi/mi-console.h (mi_console_set_raw): Declare.
4013 * mi/mi-console.c (mi_console_set_raw): New function.
4014 * mi/mi-interp.c (saved_raw_stdout): New global.
4015 (mi_set_logging): New function.
4016 (_initialize_mi_interp): Add it to interp procs.
4017
4018 2012-06-28 Doug Evans <dje@google.com>
4019
4020 * symtab.c (lookup_symbol_aux_objfile): Use
4021 ALL_OBJFILE_PRIMARY_SYMTABS.
4022
4023 * gdbtypes.c (lookup_typename): Rename local variable "tmp" to "type".
4024
4025 2012-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
4026
4027 * common/buffer.c: Include inttypes.h and stdint.h.
4028 (buffer_xml_printf): Use PRId64, PRIu64, PRIx64 and PRIo64.
4029
4030 2012-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
4031 Pedro Alves <palves@redhat.com>
4032
4033 * gdbthread.h (ALL_THREADS): New macro.
4034 (thread_list): Declare.
4035 * infrun.c (handle_inferior_event) <spurious signal>: Don't keep
4036 going, but instead fall through to the stepping handling.
4037 * linux-nat.c (resume_lwp): New parameter 'signo'. Resume with
4038 the passed in signal. Adjust debug output.
4039 (resume_callback): Rename to ...
4040 (linux_nat_resume_callback): ... this. Pass the thread's last
4041 stop signal, if in "pass" state.
4042 (linux_nat_resume): Adjust to rename.
4043 (stop_wait_callback): New assertion. Don't respawn signals;
4044 instead let the LWP remain with SIGNALLED set.
4045 (linux_nat_wait_1): Remove flushing of pending SIGSTOPs.
4046 * remote.c (append_pending_thread_resumptions): New.
4047 (remote_vcont_resume): Call it.
4048 * target.h (target_resume): Extend comment.
4049
4050 2012-06-28 Iain Sandoe <iain@codesourcery.com>
4051
4052 * auxv.c (fprint_target_auxv): Handle extended cache data tags.
4053
4054 2012-06-27 Doug Evans <dje@google.com>
4055
4056 * dwarf2read.c (dwarf2_cu): Add ranges_base.
4057 Delete have_addr_base, unused. All uses updated.
4058 (init_cutu_and_read_dies): Process DW_AT_GNU_ranges_base.
4059 (dwarf2_get_pc_bounds): Add ranges_base.
4060 (dwarf2_record_block_ranges): Ditto.
4061
4062 2012-06-27 Tom Tromey <tromey@redhat.com>
4063
4064 PR macros/7961:
4065 * varobj.c (varobj_create): Update.
4066 (varobj_set_value): Update.
4067 * tracepoint.c (validate_actionline): Update.
4068 (encode_actions_1): Update.
4069 * parse.c (parse_exp_1): Add 'pc' argument.
4070 (parse_exp_in_context): Add 'pc' argument. Change how
4071 expression_context_pc is set.
4072 (parse_expression): Update.
4073 (parse_field_expression): Update.
4074 * expression.h (parse_exp_1): Update.
4075 * eval.c (parse_to_comma_and_eval): Update.
4076 * breakpoint.c (set_breakpoint_condition): Update.
4077 (update_watchpoint): Update.
4078 (init_breakpoint_sal): Update
4079 (find_condition_and_thread): Update.
4080 (watch_command_1): Update.
4081 (update_breakpoint_locations): Update.
4082 * ada-lang.c (ada_read_renaming_var_value): Update.
4083 (create_excep_cond_exprs): Update.
4084
4085 2012-06-27 Doug Evans <dje@google.com>
4086
4087 * dwarf2read.c (per_cu_header_read_in): Simplify, and handle
4088 type units.
4089
4090 2012-06-26 Doug Evans <dje@google.com>
4091
4092 * dwarf2read.c (read_and_check_comp_unit_head): Delete unnecessary
4093 prototype.
4094 (error_check_comp_unit_head): New arg abbrev_section. All callers
4095 updated.
4096 (read_and_check_comp_unit_head): Ditto.
4097 (read_and_check_type_unit_head): Ditto.
4098
4099 2012-06-26 Siva Chandra Reddy <sivachandra@google.com>
4100
4101 New attribute 'last' for gdb.Symtab_and_line.
4102 * NEWS (Python Scripting): Add entry about the new attribute.
4103 * python/py-symtab.c (salpy_get_last): New function which
4104 implements the get method for the 'last' attribute of
4105 gdb.Symtab_and_line.
4106 (sal_object_getset): Add entry for the 'last' attribute.
4107
4108 2012-06-26 Doug Evans <dje@google.com>
4109
4110 * dwarf2read.c (dwo_section_names): Add macinfo_dwo, macro_dwo.
4111 (dwo_sections): Add macinfo, macro.
4112 (dwarf2_locate_dwo_sections): Watch for macro sections.
4113 (dwarf_decode_macros): Remove args lh, abfd, section, section_name.
4114 All callers updated. Handle DWO files.
4115
4116 * NEWS: Mention new options "set debug dwarf2-read" and
4117 "set debug symtab-create".
4118 * dwarf2read.c (dwarf2_read_debug): New static global.
4119 (dwarf2_build_psymtabs_hard): Add debugging printfs.
4120 (process_queue): Ditto.
4121 (process_full_comp_unit): Ditto.
4122 (_initialize_dwarf2_read): Add new option "set debug dwarf2-read".
4123 * elfread.c (elf_symfile_read): Add debugging printf.
4124 * minsyms.c (install_minimal_symbols): Ditto.
4125 * psymtab.c (allocate_psymtab): Ditto.
4126 * symfile.c (allocate_symtab): Ditto.
4127 * symtab.c (symtab_create_debug): New global.
4128 (_initialize_symtab): Add new option "set debug symtab-create".
4129 * symtab.h (symtab_create_debug): Declare.
4130
4131 * dwarf2read.c (lookup_dwo_comp_unit): Enhance comment.
4132 (lookup_dwo_type_unit): Ditto.
4133
4134 2012-06-26 Roland McGrath <roland@hack.frob.com>
4135 H.J. Lu <hongjiu.lu@intel.com>
4136
4137 * amd64-linux-nat.c: Include <sys/user.h>.
4138 (ps_get_thread_area): Use PTRACE_PEEKUSER to get fs_base/gs_base
4139 if HAVE_STRUCT_USER_REGS_STRUCT_FS_BASE or
4140 HAVE_STRUCT_USER_REGS_STRUCT_GS_BASE is defined.
4141
4142 * configure.ac: Check if the fs_base and gs_base members of
4143 `struct user_regs_struct' exist.
4144 * config.in: Regenerated.
4145 * configure: Likewise.
4146
4147 2012-06-25 Michael Eager <eager@eagercon.com>
4148
4149 PR python/14291
4150 * python/python.c (gdbpy_write): Check for interrupted output.
4151
4152 2012-06-25 Greta Yorsh <greta.yorsh@arm.com>
4153
4154 * arm-tdep.c (arm_in_function_epilogue_p): Recognize POP with a single
4155 register as a stack alignment in ARM mode.
4156
4157 2012-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
4158
4159 Update gnulib to GIT commit a39f53ccb70a613e647e1019fb4c63645220267e.
4160 * gnulib/config.in: Regenerate.
4161 * gnulib/configure: Likewise.
4162 * gnulib/import/m4/extensions.m4: Update it.
4163 * gnulib/import/m4/gnulib-common.m4: Likewise.
4164 * gnulib/import/m4/memmem.m4: Likewise.
4165 * gnulib/import/m4/mmap-anon.m4: Likewise.
4166 * gnulib/import/m4/multiarch.m4: Likewise.
4167 * gnulib/import/stdint.in.h: Likewise.
4168
4169 2012-06-24 Yao Qi <yao@codesourcery.com>
4170
4171 * corefile.c (write_memory_with_notification): New.
4172 * gdbcore.h: Declare write_memory_with_notification.
4173 * ada-lang.c (ada_value_assign): Replace 'write_memory' and
4174 'observer_notify_memory_changed' with 'write_memory_with_notification'.
4175 * valops.c (value_assign): Likewise.
4176 * python/py-inferior.c (infpy_write_memory): Call
4177 'write_memory_with_notification'.
4178
4179 2012-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
4180
4181 * cc-with-index.sh: Use also -ex "set auto-load no".
4182
4183 2012-06-23 Doug Evans <dje@google.com>
4184
4185 PR 14125
4186 * NEWS: Document additions to .gdb_index.
4187 * dwarf2read.c: #include "gdb/gdb-index.h".
4188 (DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE): New macro.
4189 (DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE): New macro.
4190 (DW2_GDB_INDEX_CU_SET_VALUE): New macro.
4191 (dwarf2_read_index): Recognize version 7.
4192 (dw2_do_expand_symtabs_matching): New args want_specific_block,
4193 block_kind, domain): All callers updated.
4194 (dw2_find_symbol_file): Handle new index CU values.
4195 (dw2_expand_symtabs_matching): Match symbol kind if requested.
4196 (add_index_entry): New args is_static, kind. All callers updated.
4197 (offset_type_compare, uniquify_cu_indices): New functions
4198 (symbol_kind): New function.
4199 (write_psymtabs_to_index): Remove duplicate CU values.
4200 (write_psymtabs_to_index): Write .gdb_index version 7.
4201
4202 2012-06-22 Joel Brobecker <brobecker@adacore.com>
4203
4204 * configure.ac (build_warnings): Add -Wdeclaration-after-statement.
4205 * configure: Regenerate.
4206
4207 2012-06-20 Yao Qi <yao@codesourcery.com>
4208
4209 * python/py-inferior.c: Update comments of infpy_read_memory
4210 and infpy_write_memory.
4211
4212 2012-06-19 Tom Tromey <tromey@redhat.com>
4213
4214 PR exp/9514:
4215 * parser-defs.h (insert_type, insert_type_address_space): Declare.
4216 (push_type_address_space): Remove.
4217 * parse.c (insert_into_type_stack): New function.
4218 (insert_type): Likewise.
4219 (insert_type_address_space): Rename from push_type_address_space.
4220 Insert tp_space_identifier.
4221 * c-exp.y (ptr_operator): New production.
4222 (abs_decl): Use ptr_operator.
4223 (space_identifier): Call insert_type_address_space.
4224 (ptype): Don't use const_or_volatile_or_space_identifier.
4225 (const_or_volatile_noopt): Call insert_type.
4226 (conversion_type_id, conversion_declarator): New productions.
4227 (operator): Use conversion_type_id.
4228
4229 2012-06-18 Doug Evans <dje@google.com>
4230
4231 * symtab.h (minimal_symbol): New member created_by_gdb.
4232 * elfread.c (elf_symtab_read): Set created_by_gdb for @plt minsym
4233 created by gdb.
4234 * symtab.c (lookup_symbol_in_objfile_from_linkage_name): New function.
4235 (search_symbols): Call it instead of lookup_symbol.
4236 Skip symbols created by gdb. Only scan minsyms if nfiles == 0.
4237
4238 * dwarf2expr.c (execute_stack_op): Handle DW_OP_GNU_const_index.
4239 Adjust address for DW_OP_GNU_addr_index.
4240 * dwarf2expr.h (dwarf_expr_context): Update comment.
4241 * dwarf2loc.c (locexpr_describe_location_piece): New arg per_cu,
4242 all callers updated. Handle TLS vars described with
4243 DW_OP_GNU_const_index.
4244 (disassemble_dwarf_expression): Handle DW_OP_GNU_addr_index
4245 and DW_OP_GNU_const_index.
4246 * dwarf2read.c (decode_locdesc): Handle DW_OP_GNU_addr_index.
4247
4248 * block.c (find_block_in_blockvector): Make explicit the fact that we
4249 ignore GLOBAL_BLOCK.
4250
4251 2012-06-18 Tom Tromey <tromey@redhat.com>
4252
4253 * c-exp.y (operator): Remove trailing space after "delete" and
4254 "delete[]".
4255
4256 2012-06-18 Mark Kettenis <kettenis@gnu.org>
4257 Jan Kratochvil <jan.kratochvil@redhat.com>
4258
4259 Switch i386 and derived targets to ON_STACK.
4260 * amd64-dicos-tdep.c (amd64_dicos_push_dummy_code): Remove.
4261 (amd64_dicos_init_abi): Remove its installment.
4262 * dicos-tdep.c (dicos_init_abi): Remove the
4263 set_gdbarch_call_dummy_location call. Update the comment here.
4264 * i386-dicos-tdep.c (i386_dicos_push_dummy_code): Remove.
4265 (i386_dicos_init_abi): Remove its installment.
4266 * i386-tdep.c (i386_push_dummy_code): New function.
4267 (i386_gdbarch_init): Call set_gdbarch_call_dummy_location, install
4268 i386_push_dummy_code.
4269
4270 2012-06-18 Jan Kratochvil <jan.kratochvil@redhat.com>
4271
4272 Remove stale dummy frames.
4273 * breakpoint.c: Include dummy-frame.h.
4274 (longjmp_breakpoint_ops): New variable.
4275 (update_breakpoints_after_exec, breakpoint_init_inferior): Delete also
4276 bp_longjmp_call_dummy.
4277 (bpstat_what, bptype_string, print_one_breakpoint_location)
4278 (init_bp_location): Support bp_longjmp_call_dummy.
4279 (set_longjmp_breakpoint): Use longjmp_breakpoint_ops. Comment why.
4280 (set_longjmp_breakpoint_for_call_dummy)
4281 (check_longjmp_breakpoint_for_call_dummy, longjmp_bkpt_dtor): New
4282 functions.
4283 (initialize_breakpoint_ops): Initialize longjmp_breakpoint_ops.
4284 * breakpoint.h (enum bptype): New item bp_longjmp_call_dummy. Delete
4285 FIXME comment and extend the other comment for bp_call_dummy.
4286 (set_longjmp_breakpoint_for_call_dummy)
4287 (check_longjmp_breakpoint_for_call_dummy): New declarations.
4288 * dummy-frame.c: Include gdbthread.h.
4289 (pop_dummy_frame_bpt): New function.
4290 (pop_dummy_frame): Call pop_dummy_frame_bpt.
4291 (dummy_frame_discard): New function.
4292 (cleanup_dummy_frames): Update the comment about longjmps.
4293 * dummy-frame.h (dummy_frame_discard): New declaration.
4294 * gdbthread.h (struct thread_info): Extend initiating_frame comment.
4295 * infcall.c (call_function_by_hand): New variable longjmp_b. Call
4296 set_longjmp_breakpoint_for_call_dummy. Chain its breakpoints with BPT.
4297 * infrun.c (handle_inferior_event) <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>:
4298 Add case 4 comment. Call check_longjmp_breakpoint_for_call_dummy and
4299 keep_going if IS_LONGJMP and there is no other reason to stop.
4300
4301 2012-06-18 Greta Yorsh <Greta.Yorsh@arm.com>
4302
4303 * remote-sim.c (sim_command_completer): Initialize
4304 variable 'result'.
4305
4306 2012-06-17 Jan Kratochvil <jan.kratochvil@redhat.com>
4307
4308 * dwarf2expr.c (execute_stack_op): Support DW_OP_GNU_parameter_ref.
4309 * dwarf2loc.c (call_site_parameter_matches): Support
4310 CALL_SITE_PARAMETER_PARAM_OFFSET.
4311 (needs_dwarf_reg_entry_value): Push stub value.
4312 * dwarf2read.c (read_call_site_scope): New variable origin. Support
4313 CALL_SITE_PARAMETER_PARAM_OFFSET and its DW_AT_abstract_origin.
4314 * gdbtypes.h (enum call_site_parameter_kind): New item
4315 CALL_SITE_PARAMETER_PARAM_OFFSET.
4316 (struct call_site.parameter.u): New field param_offset.
4317
4318 2012-06-17 Jan Kratochvil <jan.kratochvil@redhat.com>
4319
4320 Code cleanup: Generalize call_site.parameter key.
4321 * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_entry_value>: Remove
4322 variable dwarf_reg. New variable kind_u. Update parameters to
4323 push_dwarf_reg_entry_value.
4324 (ctx_no_push_dwarf_reg_entry_value): Update parameters.
4325 * dwarf2expr.h (enum call_site_parameter_kind)
4326 (union call_site_parameter_u): Forward declarations.
4327 (struct dwarf_expr_context_funcs): Update parameters and their
4328 description for push_dwarf_reg_entry_value.
4329 (ctx_no_push_dwarf_reg_entry_value): Update parameters.
4330 * dwarf2loc.c (call_site_parameter_matches): New function.
4331 (dwarf_expr_reg_to_entry_parameter): Update parameters and their
4332 description. Use call_site_parameter_matches.
4333 (dwarf_expr_push_dwarf_reg_entry_value, value_of_dwarf_reg_entry):
4334 Update parameters and their description.
4335 (value_of_dwarf_block_entry): Remove variables dwarf_reg and fb_offset.
4336 New variable kind_u. Adjust the caller for updated parameters.
4337 (needs_dwarf_reg_entry_value): Update parameters.
4338 * dwarf2read.c (read_call_site_scope): New variable loc. Use it
4339 instead of attr. Update for the changed fields of struct
4340 call_site_parameter.
4341 * gdbtypes.h: Include dwarf2expr.h.
4342 (enum call_site_parameter_kind): New.
4343 (struct call_site.parameter): New field kind. Wrap dwarf_reg and
4344 fb_offset into new union u.
4345
4346 2012-06-16 H.J. Lu <hongjiu.lu@intel.com>
4347
4348 * amd64-tdep.c (amd64_x32_analyze_stack_align): New function.
4349 (amd64_analyze_prologue): Call amd64_x32_analyze_stack_align
4350 for x32.
4351
4352 2012-06-16 H.J. Lu <hongjiu.lu@intel.com>
4353
4354 * amd64-linux-nat.c (compat_x32_clock_t): New.
4355 (compat_x32_siginfo_t): Likewise.
4356 (compat_x32_siginfo_from_siginfo): Likewise.
4357 (siginfo_from_compat_x32_siginfo): Likewise.
4358 (amd64_linux_siginfo_fixup): Call compat_x32_siginfo_from_siginfo
4359 and siginfo_from_compat_x32_siginfo for x32.
4360
4361 2012-06-15 Hui Zhu <hui_zhu@mentor.com>
4362
4363 * tracepoint.c (tfile_xfer_partial): Add a lseek.
4364
4365 2012-06-15 H.J. Lu <hongjiu.lu@intel.com>
4366
4367 * amd64-linux-nat.c (ps_get_thread_area): Check bits_per_word
4368 instead of gdbarch_ptr_bit.
4369 * amd64-nat.c (amd64_native_gregset_reg_offset): Likewise.
4370 (amd64_supply_native_gregset): Likewise.
4371 (amd64_collect_native_gregset): Likewise.
4372 * amd64-tdep.c (amd64_supply_fxsave): Likewise.
4373 (amd64_supply_xsave): Likewise.
4374 (amd64_collect_fxsave): Likewise.
4375 (amd64_collect_xsave): Likewise.
4376
4377 2012-06-15 H.J. Lu <hongjiu.lu@intel.com>
4378
4379 * amd64-linux-nat.c (AMD64_LINUX_X32_DS): New.
4380 (amd64_linux_read_description): Check DS segment register for
4381 x32 process.
4382
4383 2012-06-15 Tom Tromey <tromey@redhat.com>
4384
4385 * dwarf2read.c (dw2_find_symbol_file): Unconditionally use
4386 init_cutu_and_read_dies.
4387
4388 2012-06-15 Iain Sandoe <iain@codesourcery.com>
4389
4390 * MAINTAINERS (Write After Approval): Add myself to the list.
4391
4392 2012-06-15 Tom Tromey <tromey@redhat.com>
4393
4394 * valops.c (value_find_oload_method_list): Now static.
4395 * value.h (value_find_oload_method_list): Don't declare.
4396
4397 2012-06-15 Tom Tromey <tromey@redhat.com>
4398
4399 * valops.c (find_overload_match): Use value_ind.
4400
4401 2012-06-15 Maciej W. Rozycki <macro@codesourcery.com>
4402
4403 * infrun.c (handle_inferior_event): Correct indentation.
4404
4405 2012-06-14 Doug Evans <dje@google.com>
4406
4407 * dwarf2loc.c (debug_loc_kind): Add DEBUG_LOC_START_LENGTH.
4408 (DEBUG_LOC_START_END): Renamed from DEBUG_LOC_NORMAL.
4409 All uses updated.
4410 (decode_debug_loc_dwo_addresses): New arg "byte_order". All callers
4411 updated. Handle DEBUG_LOC_START_LENGTH.
4412 (dwarf2_find_location_expression): Handle DEBUG_LOC_START_LENGTH.
4413 (loclist_describe_location): Ditto.
4414
4415 2012-06-14 Maciej W. Rozycki <macro@codesourcery.com>
4416
4417 PR backtrace/13866
4418 * infrun.c (handle_inferior_event): Re-fetch frame and gdbarch
4419 after hiding inline functions.
4420
4421 2012-06-13 Joel Brobecker <brobecker@adacore.com>
4422
4423 * inf-ttrace.c (_initialize_hppa_hpux_nat): Rename into
4424 _initialize_inf_ttrace.
4425
4426 2012-06-13 Joel Brobecker <brobecker@adacore.com>
4427
4428 * ia64-hpux-nat.c (_initialize_ia64_hpux_nat): Renames
4429 _initialize_hppa_hpux_nat.
4430
4431 2012-06-13 Joel Brobecker <brobecker@adacore.com>
4432
4433 * remote-sim.c (sim_command_completer): Change type of return
4434 value to "VEC (char_ptr) *". Adjust implementation accordingly.
4435
4436 2012-06-13 Mark Kettenis <kettenis@gnu.org>
4437 Jan Kratochvil <jan.kratochvil@redhat.com>
4438
4439 PR tdep/14222
4440 * i386-tdep.c (i386_push_dummy_call): Unconditionally align the
4441 stack on a 16-byte boundary.
4442
4443 2012-06-13 Kaushik Srenevasan <kaushik@twitter.com>
4444
4445 * jit.c (finalize_symtab): Set function's return type to 'void' by
4446 default.
4447
4448 2012-06-13 Mark Kettenis <kettenis@gnu.org>
4449 H.J. Lu <hongjiu.lu@intel.com>
4450
4451 * amd64-linux-tdep.c (amd64_linux_init_abi_common): New function.
4452 Move bits common to both the classic LP64 and the new x32 ILP32
4453 ABI here.
4454 (amd64_linux_init_abi): Call amd64_linux_init_abi_common.
4455 (amd64_x32_linux_init_abi): New function.
4456 (_initialize_amd64_linux_tdep): Register osabi for bfd_mach_x64_32
4457 subtype.
4458
4459 * i386-tdep.h (i386_pseudo_register_name): New prototype.
4460 * i386-tdep.c (i386_pseudo_register_name): Make public.
4461 * amd64-tdep.h (amd64_x32_init_abi): New prototype.
4462 * amd64-tdep.c (amd64_dword_names): Add "eip".
4463 (amd64_x32_pseudo_register_type): New function
4464 (amd64_x32_init_abi): New function.
4465
4466 2012-06-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4467
4468 PR build/14003
4469 * inferior.h (struct inferior_suspend_state): Comment out.
4470 (struct inferior): Comment out the field suspend.
4471 * infrun.c (struct infcall_suspend_state): Comment out the field
4472 inferior_suspend.
4473 (save_infcall_suspend_state, restore_infcall_suspend_state): Comment
4474 out its assignment.
4475
4476 2012-06-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4477
4478 PR c++/14177 - Fix parsing TYPENAME:: in parentheses.
4479 * c-exp.y (classify_inner_name): Remove caller assumptions in the
4480 function comment. Return ERROR for unresolved cases. Implement
4481 returning proper NAME.
4482 (yylex): Accept also NAME from classify_inner_name.
4483 * cp-namespace.c (cp_lookup_nested_type): Rename to ...
4484 (cp_lookup_nested_symbol): ... here. Return any found symbol, not just
4485 LOC_TYPEDEF type.
4486 * cp-support.h (cp_lookup_nested_type): Update its declaration.
4487
4488 2012-06-13 Tom Tromey <tromey@redhat.com>
4489
4490 * breakpoint.c (condition_completer): New function.
4491 (_initialize_breakpoint): Use it.
4492 * value.c (complete_internalvar): New function.
4493 * value.h (complete_internalvar): Declare.
4494
4495 2012-06-13 Tom Tromey <tromey@redhat.com>
4496
4497 * ada-lang.c (ada_make_symbol_completion_list): Return a VEC.
4498 * breakpoint.c (catch_syscall_completer): Return a VEC.
4499 * cli/cli-cmds.c (complete_command): Update.
4500 * cli/cli-decode.c (complete_on_cmdlist): Return a VEC.
4501 (complete_on_enum): Likewise.
4502 * command.h: Include gdb_vecs.h.
4503 (completer_ftype): Change return type.
4504 (complete_on_cmdlist, complete_on_enum): Likewise.
4505 * completer.c (noop_completer, filename_completer)
4506 (location_completer): Return a VEC.
4507 (add_struct_fields): Remove 'nextp' argument. Change 'output'
4508 to a VEC.
4509 (expression_completer, complete_line_internal, complete_line)
4510 (command_completer): Return a VEC.
4511 (gdb_completion_word_break_characters, line_completion_function):
4512 Update.
4513 * completer.h: Include gdb_vecs.h.
4514 (complete_line, noop_completer, filename_completer)
4515 (expression_completer, location_completer, command_completer):
4516 Update.
4517 * f-lang.c (f_word_break_characters): Return a VEC.
4518 * interps.c (interpreter_completer): Return a VEC.
4519 * language.h (struct language_defn)
4520 <la_make_symbol_completion_list>: Return a VEC.
4521 * python/py-cmd.c (cmdpy_completer): Return a VEC.
4522 * symtab.c (free_completion_list): Take a VEC.
4523 (return_val_size, return_val_index): Remove.
4524 (return_val): Now a VEC.
4525 (completion_list_add_name): Update.
4526 (default_make_symbol_completion_list_break_on)
4527 (default_make_symbol_completion_list, make_symbol_completion_list)
4528 (make_symbol_completion_list_fn, make_file_symbol_completion_list):
4529 Return a VEC.
4530 (add_filename_to_list): Update.
4531 (struct add_partial_filename_data) <list_used, list_alloced>: Remove.
4532 <list>: Now a VEC.
4533 (maybe_add_partial_symtab_filename): Update.
4534 (make_source_files_completion_list): Return a VEC.
4535 * symtab.h (default_make_symbol_completion_list_break_on)
4536 (default_make_symbol_completion_list, make_symbol_completion_list)
4537 (make_symbol_completion_list_fn, make_file_symbol_completion_list)
4538 (make_source_files_completion_list): Update.
4539
4540 2012-06-13 Tom Tromey <tromey@redhat.com>
4541
4542 * breakpoint.c (add_catch_command): Use completer_ftype.
4543 * breakpoint.h: Include command.h.
4544 (add_catch_command): Use completer_ftype.
4545 * cli/cli-decode.c (set_cmd_completer): Use completer_ftype.
4546 * cli/cli-decode.h (struct cmd_list_element) <completer>:
4547 Use completer_ftype.
4548 * command.h (completer_ftype): New typedef.
4549 (set_cmd_completer): Use it.
4550 * python/py-cmd.c (struct cmdpy_completer) <completer>: Use
4551 completer_ftype.
4552
4553 2012-06-13 Pedro Alves <palves@redhat.com>
4554
4555 Partial revert of previous change.
4556
4557 * serial.c (scb_base): New global.
4558 (serial_for_fd): New.
4559 (serial_open, serial_fdopen_ops): Link new serial in open serials
4560 chain.
4561 (do_serial_close): Unlink serial from the open serials chain.
4562
4563 2012-06-12 Pedro Alves <palves@redhat.com>
4564
4565 * infrun.c (infrun_thread_stop_requested_callback): Don't switch
4566 threads here.
4567 (prepare_for_detach): No longer context switch here in non-stop
4568 mode.
4569 (fetch_inferior_event): Ditto.
4570 (handle_inferior_event) <STOP_QUIETLY || NO_STOP_QUIETLY>: Switch
4571 to the event thread before removing breakpoints. Switch to the
4572 event thread before inserting breakpoints and resuming.
4573 (handle_inferior_event) <TARGET_WAITKIND_SPURIOUS>: Switch to the
4574 event thread before resuming.
4575 (handle_inferior_event) <stepping_past_singlestep_breakpoint>:
4576 Switch to the event thread before removing breakpoints.
4577
4578 2012-06-12 Eli Zaretskii <eliz@gnu.org>
4579
4580 * infcmd.c (construct_inferior_arguments) [__MINGW32__]: Quote
4581 special characters correctly for the Windows shells. See
4582 http://sourceware.org/ml/gdb/2012-06/msg00047.html for the bug
4583 report.
4584 [!__MINGW32__]: Remove extra double quote character from special
4585 characters.
4586
4587 2012-06-11 Stan Shebs <stan@codesourcery.com>
4588
4589 * ui-out.h: Remove #if 0 declarations.
4590 * ui-out.c: Remove #if 0 functions.
4591
4592 2012-06-11 Pedro Alves <palves@redhat.com>
4593
4594 * ser-base.c (run_async_handler_and_reschedule): New.
4595 (fd_event, push_event): Use it.
4596 * serial.c (serial_open, serial_fdopen_ops): Set the initial
4597 reference count to 1.
4598 (do_serial_close): Set the bufp field to NULL. Use serial_unref
4599 instead of xfree.
4600 (serial_is_open, serial_ref, serial_unref): New.
4601 * serial.h (serial_open): Adjust comment.
4602 (serial_is_open): Declare.
4603 (serial_close): Adjust comment.
4604 (serial_ref, serial_unref) Declare.
4605 (struct serial): New field 'refcnt'.
4606
4607 2012-06-11 Pedro Alves <palves@redhat.com>
4608
4609 Remove #if 0'd "connect" command, and unnecessary associated
4610 refcounting and serial reuse bits.
4611
4612 * serial.h (struct serial): Remove fields 'next' and 'refcnt'.
4613 * serial.c (last_serial_opened): Delete.
4614 (scb_base): Delete.
4615 (serial_open): Adjust.
4616 (serial_for_fd): Delete.
4617 (serial_fdopen_ops, do_serial_close): Adjust.
4618 (serial_fdopen_ops): Adjust.
4619
4620 2012-06-11 Pedro Alves <palves@redhat.com>
4621
4622 * serial.c (do_serial_close): Remove early return when SCB is
4623 null.
4624
4625 2012-06-11 Tom Tromey <tromey@redhat.com>
4626
4627 * dwarf2read.c (dw2_get_file_names_reader): Ignore partial units.
4628
4629 2012-06-11 Jan Kratochvil <jan.kratochvil@redhat.com>
4630
4631 Fix regression by the "ambiguous linespec" series.
4632 * breakpoint.c (parse_breakpoint_sals): New variable cursal. Use
4633 get_last_displayed_symtab and get_last_displayed_line and depending
4634 on CURSAL.
4635
4636 2012-06-11 Tom Tromey <tromey@redhat.com>
4637
4638 * dwarf2read.c (dw2_get_primary_filename_reader): New function.
4639 (dw2_find_symbol_file): Use it.
4640
4641 2012-06-11 Michael Eager <eager@eagercon.com>
4642
4643 * mips-linux-tdep.c (mips_gdb_signal_from_target): New
4644 * mips-linux-tdep.h (mips_signals): New
4645
4646 2012-06-11 Tom Tromey <tromey@redhat.com>
4647
4648 * infrun.c (handle_inferior_event)
4649 <BPSTAT_WHAT_SET_LONGJMP_RESUME>: Don't delete the step-resume
4650 breakpoint.
4651 <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>: Remove longjmp logic; use
4652 exception logic in all cases. Update comments.
4653 (insert_longjmp_resume_breakpoint): Set the exception resume
4654 breakpoint.
4655
4656 2012-06-11 Maciej W. Rozycki <macro@codesourcery.com>
4657
4658 * mips-tdep.c (mips_push_dummy_code): Handle microMIPS code.
4659
4660 2012-06-09 Siva Chandra Reddy <sivachandra@google.com>
4661
4662 * valarith.c (binop_types_user_defined_p): Fix a typo.
4663
4664 2012-06-08 Yao Qi <yao@codesourcery.com>
4665 Chung-Lin Tang <cltang@codesourcery.com>
4666
4667 * arch-utils.c (default_return_in_first_hidden_param_p): New.
4668 * arch-utils.h: Declare.
4669 * gdbarch.sh: Add return_in_first_hidden_param_p.
4670 * gdbarch.c, gdbarch.h: Regenerated.
4671 * infcall.c (call_function_by_hand): Call
4672 gdbarch_return_in_first_hidden_param_p instead of
4673 language_pass_by_reference.
4674
4675 * m68k-tdep.c (m68k_return_in_first_hidden_param_p): New.
4676 (m68k_gdbarch_init): Install m68k_return_in_first_hidden_param_p.
4677 * sh-tdep.c (sh_return_in_first_hidden_param_p): New.
4678 (sh_gdbarch_init): Install sh_return_in_first_hidden_param_p.
4679 * tic6x-tdep.c (tic6x_push_dummy_call): Remove local variable
4680 `cplus_return_struct_by_reference'.
4681 (tic6x_return_value): Handle language cplusplus.
4682 (tic6x_return_in_first_hidden_param_p): New.
4683 (tic6x_gdbarch_init): Install tic6x_return_in_first_hidden_param_p.
4684
4685 2012-06-07 Doug Evans <dje@google.com>
4686
4687 * dwarf2read.c (dwarf2_cu): Add comment.
4688
4689 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
4690
4691 * mips-tdep.c (mips_pseudo_register_type): Remove tdep local
4692 variable.
4693 (mips_eabi_push_dummy_call): Likewise.
4694 (mips_n32n64_push_dummy_call): Likewise.
4695 (mips_o32_push_dummy_call): Likewise.
4696 (mips_o64_push_dummy_call): Likewise.
4697
4698 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
4699
4700 * mips-tdep.c (mips_convert_register_p): Correct coding style.
4701
4702 2012-06-06 Maciej W. Rozycki <macro@codesourcery.com>
4703
4704 * mips-tdep.c (mips_pseudo_register_type): Use
4705 mips_float_register_p.
4706
4707 2012-06-06 Pedro Alves <palves@redhat.com>
4708
4709 * infrun.c (handle_inferior_event): Remove calls to
4710 reinit_frame_cache that follow a context_switch call.
4711
4712 2012-06-06 Pedro Alves <palves@redhat.com>
4713
4714 * infrun.c (handle_inferior_event) <deferred_step_ptid>: Use
4715 context_switch and remove stale comment.
4716
4717 2012-06-06 Pedro Alves <palves@redhat.com>
4718
4719 * infrun.c (struct execution_control_state): Remove
4720 `new_thread_event' field.
4721 (handle_inferior_event): Simplify new threads handling; don't
4722 resume the inferior if we find a new thread.
4723
4724 2012-06-06 Thomas Schwinge <thomas@codesourcery.com>
4725
4726 * NEWS: Document the deprecation of SH's 'regs' command.
4727 * inferior.h (all_registers_info): Add function declaration.
4728 * sh-tdep.c (sh_show_regs): Remove variable.
4729 (sh_generic_show_regs, sh3_show_regs, sh2e_show_regs, sh2a_show_regs)
4730 (sh2a_nofpu_show_regs, sh3e_show_regs, sh3_dsp_show_regs)
4731 (sh4_show_regs, sh4_nofpu_show_regs, sh_dsp_show_regs)
4732 (sh_show_regs_command): Remove functions.
4733 (sh_gdbarch_init): Don't set sh_show_regs.
4734 (_initialize_sh_tdep): Make the 'regs' command an deprecated alias to
4735 'info all-registers'.
4736 * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs)
4737 (sh64_show_regs): Remove functions.
4738 * sh64-tdep.h (sh64_show_regs): Remove function declaration.
4739
4740 2012-06-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4741
4742 * configure.ac: Move development=true below AC_INIT.
4743 * configure: Regenerate.
4744
4745 2012-06-05 Stan Shebs <stan@codesourcery.com>
4746
4747 * mi/mi-interp.c (mi_interpreter_init): Set raw_stdout from
4748 gdb_stdout.
4749
4750 2012-06-05 Siddhesh Poyarekar <siddhesh@redhat.com>
4751
4752 * corefile.c (read_memory, read_stack, write_memory): Accept LEN
4753 argument as ssize_t.
4754 * gdbcore.h (read_memory, read_stack, write_memory): Likewise.
4755 * remote.c (remote_write_bytes_aux, remote_write_bytes): Likewise.
4756 * target.c (target_read_stack, target_write_memory)
4757 (target_write_raw_memory): Likewise.
4758 * target.h (target_read_stack, target_write_memory)
4759 (target_write_raw_memory): Likewise.
4760
4761 2012-06-05 Jan Kratochvil <jan.kratochvil@redhat.com>
4762
4763 * symfile-mem.c: Change gdb_static_assert to ssize_t.
4764 (target_read_memory_bfd): Cast gdb_assert LEN to ssize_t.
4765 * target.c (target_read_memory): Change LEN to ssize_t.
4766 * target.h (target_read_memory): Change LEN to ssize_t.
4767
4768 2012-06-05 Pedro Alves <palves@redhat.com>
4769
4770 PR backtrace/13866
4771
4772 * breakpoint.c (until_break_command): Only fetch the selected
4773 frame after decode_line_1.
4774
4775 2012-06-05 Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
4776
4777 * solib-svr4.c (enable_break): Don't fallback to setting the solib
4778 event breakpoint at _start, __start or main if a program
4779 interpreter is not found.
4780
4781 2012-06-05 Joel Brobecker <brobecker@adacore.com>
4782
4783 * windows-tdep.h (windows_iterate_over_objfiles_in_search_order):
4784 Add declaration.
4785 * windows-tdep.c: #include "objfiles.h".
4786 (windows_iterate_over_objfiles_in_search_order): New function.
4787 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
4788 iterate_over_objfiles_in_search_order gdbarch method to
4789 windows_iterate_over_objfiles_in_search_order.
4790 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise.
4791
4792 2012-06-05 Joel Brobecker <brobecker@adacore.com>
4793
4794 * gdbarch.sh: Add generation of
4795 "iterate_over_objfiles_in_search_order_cb_ftype" typedef in
4796 gdbarch.h. Add include of "objfiles.h" in gdbarch.c.
4797 (iterate_over_objfiles_in_search_order): New gdbarch method.
4798 * gdbarch.h, gdbarch.c: Regenerate.
4799 * objfiles.h (default_iterate_over_objfiles_in_search_order):
4800 Add declaration.
4801 * objfiles.c (default_iterate_over_objfiles_in_search_order):
4802 New function.
4803 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
4804 out of lookup_symbol_aux_symtabs.
4805 (lookup_symbol_aux_symtabs): Replace extracted-out code by
4806 call to lookup_symbol_aux_objfile.
4807 (struct global_sym_lookup_data): New type.
4808 (lookup_symbol_global_iterator_cb): New function.
4809 (lookup_symbol_global): Search for symbol using
4810 gdbarch_iterate_over_objfiles_in_search_order and
4811 lookup_symbol_global_iterator_cb.
4812 * findvar.c (struct minsym_lookup_data): New type.
4813 (minsym_lookup_iterator_cb): New function.
4814 (default_read_var_value) [case LOC_UNRESOLVED]: Resolve the
4815 symbol's address via gdbarch_iterate_over_objfiles_in_search_order
4816 and minsym_lookup_iterator_cb.
4817
4818 2012-06-05 Joel Brobecker <brobecker@adacore.com>
4819
4820 Revert the following patch:
4821 * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
4822 try locating the symbol in the symbol's own objfile first, before
4823 extending the search to all objfiles.
4824 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
4825 out of lookup_symbol_aux_symtabs.
4826 (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
4827 Replace extracted-out code by call to lookup_symbol_aux_objfile.
4828 Do not search EXCLUDE_OBJFILE.
4829 (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
4830 (lookup_symbol_global): Search for matches in the block's objfile
4831 first, before searching all other objfiles.
4832
4833 2012-06-05 Joel Brobecker <brobecker@adacore.com>
4834
4835 * breakpoint.c (find_condition_and_thread): Stop parsing
4836 as soon as the first invalid keyword is found.
4837
4838 2012-06-05 Joel Brobecker <brobecker@adacore.com>
4839
4840 * copyright.py (EXCLUDE_LIST): Add 'gdb/CONTRIBUTE' to list.
4841
4842 2012-06-05 Joel Brobecker <brobecker@adacore.com>
4843
4844 * config/djgpp/djcheck.sh: Add copyright header.
4845
4846 2012-06-05 Joel Brobecker <brobecker@adacore.com>
4847
4848 * copyright.py (update_files, main): Fix path to update-copyright
4849 script.
4850
4851 2012-06-05 Joel Brobecker <brobecker@adacore.com>
4852
4853 * copyright.py (MULTIPLE_COPYRIGHT_HEADERS): New constant.
4854 (main): Add MULTIPLE_COPYRIGHT_HEADERS to the list of files
4855 for which a reminder to update by hand is printed.
4856
4857 2012-06-04 Doug Evans <dje@google.com>
4858
4859 * buildsym.c (make_blockvector): Add comment.
4860
4861 2012-06-04 Pedro Alves <palves@redhat.com>
4862
4863 * arch-utils.c (default_gdb_signal_from_target): Delete.
4864 * arch-utils.h (default_gdb_signal_from_target): Delete.
4865 * corelow.c (core_open) <signal mapping>: Extended comment. Check
4866 gdbarch_gdb_signal_from_target_p.
4867 * gdbarch.sh (gdb_signal_from_target): Make it an M method (with
4868 predicate).
4869 * gdbarch.h: Regenerate.
4870 * gdbarch.c: Regenerate.
4871
4872 2012-06-04 Pedro Alves <palves@redhat.com>
4873
4874 * gdbarch.sh (gdb_signal_from_target): Mention that the
4875 implementation of the method must be host independent.
4876 * gdbarch.h: Regenerate.
4877
4878 2012-06-04 Jan Kratochvil <jan.kratochvil@redhat.com>
4879
4880 * symfile-mem.c: 3 new gdb_static_assert for target_read_memory_bfd
4881 parameters.
4882 (target_read_memory_bfd): New function.
4883 (symbol_file_add_from_memory): Use it.
4884
4885 2012-06-03 Doug Evans <dje@google.com>
4886
4887 * symtab.c (lookup_global_symbol_from_objfile): Only scan blockvector
4888 of primary symtab.
4889 (basic_lookup_transparent_type): Ditto.
4890
4891 * objfiles.h (ALL_OBJFILE_PRIMARY_SYMTABS): New macro.
4892 (ALL_PRIMARY_SYMTABS): Use it.
4893 (ALL_PSPACE_PRIMARY_SYMTABS): Ditto.
4894 * dwarf2read.c (dw2_find_symbol_file): Ditto.
4895 * linespec.c (iterate_over_all_matching_symtabs): Ditto.
4896 * symtab.c (lookup_symbol_aux_objfile): Ditto.
4897 (basic_lookup_transparent_type): Ditto.
4898
4899 2012-06-02 Sergio Durigan Junior <sergiodj@redhat.com>
4900
4901 * symtab.c (symbol_demangled_name): New variable `dem_name'. Use
4902 it to optimize resolution of demangled name.
4903
4904 2012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
4905
4906 * configure.ac (development): Define new variable.
4907 Call AC_CHECK_LIB for mcheck if $development.
4908 (ERROR_ON_WARNING): Enable it by default only if $development.
4909 * config.in: Regenerate.
4910 * configure: Regenerate.
4911
4912 2012-06-01 Siddhesh Poyarekar <siddhesh@redhat.com>
4913
4914 * target.c (target_read_memory): Make LEN argument as size_t.
4915 * target.h (target_read_memory): Likewise.
4916
4917 2012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
4918
4919 * tilegx-linux-tdep.c (tilegx_l): Use ULL for 64-bit values.
4920
4921 2012-05-31 Edjunior Machado <emachado@linux.vnet.ibm.com>
4922
4923 * ppc-linux-nat.c (have_ptrace_booke_interface): Disable ptrace
4924 BookE interface for PowerPC server processors if not available
4925 in the Linux Kernel.
4926
4927 2012-05-31 Keith Seitz <keiths@redhat.com>
4928
4929 * linespec.c (decode_objc): Add cleanup to free
4930 INFO.FILE_SYMTABS.
4931 (find_linespec_symbols): Add cleanup to free CLASSES.
4932 * symfile.c (find_separate_debug_file_by_debuglink): Add
4933 cleanup to free DEBUGLINK.
4934 * ui-out.c (clear_header_list): No need to check if
4935 HEADER_NEXT.COLHDR is NULL.
4936 Free HEADER_NEXT.COL_NAME.
4937
4938 2012-05-31 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
4939
4940 * ada-lang.c (standard_lookup): Prevent uninitialized variable
4941 warning.
4942
4943 2012-05-30 Jeff Kenton <jkenton@tilera.com>
4944
4945 * configure.host (gdb_host_cpu): Handle tilegx*.
4946 (gdb_host): Handle tilegx-*-linux*.
4947 * tilegx-linux-nat.c: New file.
4948 * config/tilegx/linux.mh: New file.
4949
4950 2012-05-30 Jeff Kenton <jkenton@tilera.com>
4951
4952 * Makefile.in (ALL_TARGET_OBJS): Add tilegx-tdep.o and
4953 tilegx-linux-tdep.o.
4954 (ALLDEPFILES): Add tilegx-linux-nat.c, tilegx-tdep.c and
4955 tilegx-linux-tdep.c.
4956 * configure.tgt: Handle tilegx-*-linux*.
4957 * tilegx-tdep.h: New file.
4958 * tilegx-tdep.c: New file.
4959 * tilegx-linux-tdep.c: New file.
4960 * regformats/reg-tilegx.dat: New file.
4961
4962 2012-05-30 Edjunior Machado <emachado@linux.vnet.ibm.com>
4963
4964 * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): fix
4965 accounting of hw watchpoints on ppc.
4966
4967 2012-05-30 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
4968
4969 * source.c (openp): Expand tilde in path entries.
4970
4971 2012-05-29 Doug Evans <dje@google.com>
4972
4973 * buildsym.c (block_compar): Fix comment.
4974 (end_symtab): Fix and clarify some comments.
4975
4976 * stabsread.h (cleanup_undefined_stabs_types): Renamed from
4977 cleanup_undefined_types.
4978 * stabsread.c (cleanup_undefined_stabs_types): Ditto.
4979 All callers updated.
4980
4981 2012-05-29 Tom Tromey <tromey@redhat.com>
4982
4983 * symfile.c (symfile_bfd_open): Don't close desc if bfd_fopen
4984 fails.
4985 * solib.c (solib_bfd_fopen): Don't close fd if bfd_fopen fails.
4986 * exec.c (exec_file_attach): Don't close scratch_chan if bfd_fopen
4987 fails.
4988 * dwarf2read.c (try_open_dwo_file): Don't close fd if bfd_fopen
4989 fails.
4990
4991 2012-05-29 Tristan Gingold <gingold@adacore.com>
4992
4993 * solib-darwin.c (dyld_all_image_addr, dyld_all_image): Move into...
4994 (struct darwin_info): ... New struct.
4995 (solib_darwin_pspace_data): New variable.
4996 (darwin_pspace_data_cleanup): New function.
4997 (get_darwin_info): Likewise.
4998 (darwin_dyld_version_ok, darwin_load_image_infos)
4999 (darwin_solib_get_all_image_info_addr_at_init)
5000 (darwin_solib_read_all_image_info_addr): Add info argument.
5001 Adjust code.
5002 (darwin_current_sos): Use per pspace structure.
5003 (darwin_solib_create_inferior_hook): Likewise.
5004 (darwin_clear_solib): Likewise.
5005 (_initialize_darwin_solib): Initialize solib_darwin_pspace_data.
5006
5007 2012-05-28 Pedro Alves <palves@redhat.com>
5008
5009 * infrun.c (wait_for_inferior): Move ecss and ecs locals to the
5010 block that uses them. Clear ecss before handling each event.
5011
5012 2012-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5013
5014 * solib-svr4.c (svr4_current_sos): New comment on
5015 svr4_current_sos_via_xfer_libraries fall back.
5016
5017 2012-05-24 Jan Kratochvil <jan.kratochvil@redhat.com>
5018
5019 * psymtab.c (lookup_symbol_aux_psymtabs): New variable stab_best. Use
5020 it as a fallback for TYPE_IS_OPAQUE.
5021 * symfile.h (struct quick_symbol_functions): Mention TYPE_OPAQUE
5022 symbols for lookup_symbol.
5023
5024 2012-05-24 John Steele Scott <toojays@toojays.net>
5025
5026 PR symtab/13277: Resolving opaque structures in ICC generated binaries.
5027 * dwarf2read.c (struct dwarf2_cu) <producer_is_icc>: New field.
5028 (producer_is_gxx_lt_4_6): Move the checking and caching to...
5029 (check_producer): ... this new function, which also checks for ICC
5030 and caches the result.
5031 (producer_is_icc): New function.
5032 (read_structure_type): Don't set TYPE_STUB_SUPPORTED if the
5033 producer was ICC.
5034
5035 2012-05-24 Pedro Alves <palves@redhat.com>
5036
5037 PR gdb/7205
5038
5039 * arch-utils.c (default_gdb_signal_to_host): Rename to ...
5040 (default_gdb_signal_to_target): ... this. Add comment.
5041 (default_gdb_signal_from_host): Rename to ...
5042 (default_gdb_signal_from_target): ... this. Add comment.
5043 * arch-utils.h (default_gdb_signal_to_host): Rename to ...
5044 (default_gdb_signal_to_target): ... this.
5045 (default_gdb_signal_from_host): Rename to ...
5046 (default_gdb_signal_from_target): ... this.
5047 * corelow.c (core_open): Adjust to naming change. Replace comment.
5048 * gdbarch.sh (gdb_signal_from_host): Rename to ...
5049 (gdb_signal_from_target): ... this. Adjust to
5050 default_gdb_signal_from_host naming change. Extend comment.
5051 (gdb_signal_to_host): Rename to ...
5052 (gdb_signal_to_target): ... this. Adjust to
5053 default_gdb_signal_to_host naming change.
5054 * gdbarch.h, gdbarch.c: Renegerate.
5055
5056 2012-05-24 Pedro Alves <palves@redhat.com>
5057
5058 PR gdb/7205
5059
5060 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
5061
5062 2012-05-24 Pedro Alves <palves@redhat.com>
5063
5064 PR gdb/7205
5065
5066 Replace target_signal with gdb_signal throughout.
5067
5068 2012-05-24 Pedro Alves <palves@redhat.com>
5069
5070 PR tui/14159
5071
5072 * tui/tui-hooks.c (tui_query_hook): Pre-compute the question
5073 string, instead of reusing the va_list argument.
5074
5075 2012-05-24 Tom Tromey <tromey@redhat.com>
5076
5077 * cp-support.h (cp_finalize_namespace, cp_initialize_namespace):
5078 Remove.
5079
5080 2012-05-23 Doug Evans <dje@google.com>
5081
5082 * symtab.c (search_symbols): Formatting fixes.
5083 (print_symbol_info): Formatting fixes.
5084
5085 * dwarf2-frame.c (execute_cfa_program): Update to handle long long ->
5086 int64_t change to leb128 API.
5087 (read_encoded_value, decode_frame_entry_1): Ditto.
5088 * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Ditto.
5089 (dwarf_block_to_dwarf_reg, dwarf_block_to_dwarf_reg_deref): Ditto.
5090 (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
5091 (execute_stack_op): Ditto.
5092 * dwarf2expr.h (gdb_read_uleb128, gdb_read_sleb128): Ditto.
5093 (safe_read_uleb128, safe_read_sleb128): Ditto.
5094 * dwarf2loc.c (decode_debug_loc_dwo_addresses): Ditto.
5095 (dwarf2_compile_expr_to_ax): Ditto.
5096 (locexpr_describe_location_piece): Ditto.
5097 (disassemble_dwarf_expression): Ditto.
5098 (locexpr_describe_location_1): Ditto.
5099
5100 2012-05-23 Stan Shebs <stan@codesourcery.com>
5101 Kwok Cheung Yeung <kcy@codesourcery.com>
5102
5103 * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-info.o.
5104 (SUBDIR_MI_SRCS): Add mi-cmd-info.c.
5105 (mi-cmd-info.o): New rule.
5106 * osdata.h (info_osdata_command): New declaration.
5107 * osdata.c (info_osdata_command): Change to non-static.
5108 * mi/mi-cmds.h (mi_cmd_info_os): New declaration.
5109 * mi/mi-cmds.c (mi_cmds): Add -info-os MI command.
5110 * mi/mi-cmd-info.c: New file.
5111
5112 2012-05-23 Doug Evans <dje@google.com>
5113
5114 * symtab.c (search_symbols): Pass NULL for file_matcher to
5115 expand_symtabs_matching if there are no files to match.
5116
5117 * gdbtypes.c (lookup_typename): Simplify.
5118
5119 2012-05-23 Pedro Alves <palves@redhat.com>
5120
5121 * arch-utils.h (default_target_signal_to_host): Delete.
5122 * arch-utils.c (default_target_signal_to_host): Delete.
5123 * gdbarch.sh (target_signal_to_host): Remove.
5124 * gdbarch.h, gdbarch.c: Regenerate.
5125
5126 2012-05-22 Doug Evans <dje@google.com>
5127
5128 * dwarf2-frame.c (struct dwarf2_cie): Make initial_instructions, end
5129 "const gdb_byte *".
5130 (struct dwarf2_fde): Make instructions, end "const gdb_byte *".
5131 (execute_cfa_program): Update to match API of leb128 functions.
5132 (read_1_byte, read_4_bytes, read_8_bytes): Make buf parameter
5133 "const gdb_byte *".
5134 (read_unsigned_leb128, read_signed_leb128): Delete.
5135 (read_initial_length): Change type of buf argument to
5136 "const gdb_byte *".
5137 (read_encoded_value): Update to match API of leb128 functions.
5138 (decode_frame_entry): Change result to "const gdb_byte *", and
5139 similarly for "start" parameter.
5140 (decode_frame_entry_1): Ditto. Use new leb128 reader functions.
5141 (dwarf2_build_frame_info): Change local frame_ptr to
5142 "const gdb_byte *".
5143 * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Replaces
5144 read_uleb128, read_sleb128. All callers updated.
5145 (safe_skip_leb128): New function.
5146 (dwarf_block_to_dwarf_reg): Update to match API of leb128 functions.
5147 Call gdb_read_uleb128, gdb_skip_leb128 instead of read_uleb128.
5148 (dwarf_block_to_dwarf_reg_deref): Update to match API of leb128
5149 functions. Call gdb_read_uleb128, gdb_read_sleb128 instead of
5150 read_uleb128, read_sleb128.
5151 (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto.
5152 (execute_stack_op): Update to match API of leb128 functions.
5153 * dwarf2expr.h: #include "leb128.h".
5154 (read_uleb128, read_sleb128): Delete.
5155 (gdb_read_uleb128, gdb_read_sleb128, gdb_skip_leb128): New functions.
5156 (safe_read_uleb128, safe_read_sleb128, safe_skip_leb128): Declare.
5157 * dwarf2loc.c (debug_loc_kind): New enum.
5158 (decode_debug_loc_addresses): New function.
5159 (decode_debug_loc_dwo_addresses): New function.
5160 (dwarf2_find_location_expression): Rewrite.
5161 (dwarf2_compile_expr_to_ax): Update to match API of leb128 functions.
5162 (locexpr_describe_location_piece): Ditto.
5163 (disassemble_dwarf_expression): Ditto.
5164 (locexpr_describe_location_1): Ditto.
5165 (loclist_describe_location): Rewrite.
5166 * dwarf2loc.h (dwarf2_loclist_baton): New member "from_dwo".
5167 * dwarf2read.c (die_reader_specs): New member "buffer_end".
5168 (dwarf2_section_buffer_overflow_complaint): Renamed from
5169 dwarf2_macros_too_long_complaint. All callers updated.
5170 (skip_leb128): Delete.
5171 (init_cu_die_reader): Initialize reader->buffer_end.
5172 (skip_one_die): Replace call to skip_leb128 with safe_skip_leb128.
5173 (skip_form_bytes): New arg buffer_end. All callers updated.
5174 Replace call to skip_leb128 with gdb_skip_leb128.
5175 (skip_unknown_opcode): New arg mac_end. All callers updated.
5176 (fill_in_loclist_baton): Initialize baton->from_dwo.
5177
5178 2012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
5179
5180 * mips-linux-nat.c (mips_linux_read_description): Use a more
5181 verbose error message.
5182
5183 2012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
5184
5185 * NEWS: Add MIPS/Linux DSP support.
5186 * mips-linux-tdep.c: Document post-2.6.12 o32 sigcontext layout.
5187 (SIGCONTEXT_DSPCTL): New macro.
5188 (SIGCONTEXT_HI1, SIGCONTEXT_LO1): Likewise.
5189 (SIGCONTEXT_HI2, SIGCONTEXT_LO2): Likewise.
5190 (SIGCONTEXT_HI3, SIGCONTEXT_LO3): Likewise.
5191 (N64_SIGCONTEXT_HI1, N64_SIGCONTEXT_HI2): Likewise.
5192 (N64_SIGCONTEXT_HI3): Likewise.
5193 (N64_SIGCONTEXT_LO1, N64_SIGCONTEXT_LO2): Likewise.
5194 (N64_SIGCONTEXT_LO3): Likewise.
5195 (N64_SIGCONTEXT_DSPCTL): Likewise.
5196 (N64_SIGCONTEXT_FPCSR): Clarify definition.
5197 (mips_linux_o32_sigframe_init): Handle DSP registers.
5198 (mips_linux_n32n64_sigframe_init): Likewise.
5199
5200 2012-05-22 Pierre Muller <muller@ics.u-strasbg.fr>
5201
5202 * common/buffer.c (buffer_grow): ARI fix: Remove unneeded
5203 call to abort.
5204
5205 2012-05-22 Pedro Alves <palves@redhat.com>
5206
5207 * target.h (store_waitstatus): Move declaration ...
5208 * inf-child.h (store_waitstatus): ... here.
5209 * target.c: Move inclusion of gdb_wait.h, and ...
5210 (store_waitstatus): ... this ...
5211 * inf-child.c: ... here.
5212 * linux-nat.c: Include inf-child.h.
5213 * rs6000-nat.c: Include inf-child.h.
5214 * spu-linux-nat.c: Include inf-child.h.
5215
5216 2012-05-22 Pierre Muller <muller@ics.u-strasbg.fr>
5217
5218 * tracepoint.c (start_tracing): Add missing i18n markup.
5219 (stop_tracing, set_trace_user): Ditto.
5220 (set_trace_notes, set_trace_stop_notes): Ditto.
5221
5222 2012-05-21 Tom Tromey <tromey@redhat.com>
5223
5224 PR c++/7173:
5225 * gnu-v3-abi.c (gnuv3_baseclass_offset): Return early for Java
5226 types.
5227 * value.h (value_cast_pointers): Update.
5228 * valops.c (value_cast_pointers): Add 'subclass_check' argument.
5229 (value_cast): Update.
5230 (update_search_result): New function.
5231 (do_search_struct_field): New, from search_struct_field. Check
5232 for ambiguous results.
5233 (search_struct_field): Rewrite.
5234 * infcall.c (value_arg_coerce): Update.
5235 * eval.c (evaluate_subexp_standard) <STRUCTOP_MEMBER>: Use
5236 value_cast_pointers.
5237 * ada-lang.c (ada_convert_actual): Update.
5238
5239 2012-05-21 Tom Tromey <tromey@redhat.com>
5240
5241 * macroexp.c (macro_stringify): Terminate the string.
5242
5243 2012-05-20 Jan Kratochvil <jan.kratochvil@redhat.com>
5244
5245 * NEWS (--with-auto-load-dir): Prepend $debugdir to the default path.
5246 Describe it.
5247 * auto-load.c (auto_load_expand_dir_vars): New function.
5248 (auto_load_safe_path_vec_update): Use it, remove the
5249 substitute_path_component call thanks to it.
5250 (auto_load_objfile_script): Remove the debug_file_directory processing.
5251 Use auto_load_expand_dir_vars, remove the substitute_path_component
5252 call thanks to it.
5253 * configure: Regenerate.
5254 * configure.ac (--with-auto-load-dir): Prepend $debugdir to the default
5255 path. Escape $ also for $debugdir.
5256 (--with_auto_load_safe_path): Escape $ also for $debugdir.
5257 * utils.c (substitute_path_component): Accept also DIRNAME_SEPARATOR.
5258
5259 2012-05-20 Doug Evans <dje@google.com>
5260
5261 * dwarf2read.c (recursively_find_pc_sect_symtab): Initialize "s"
5262 before use. Check for symtab->includes == NULL before scanning it.
5263
5264 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
5265
5266 * mips-tdep.c (mips_reg3_to_reg): Optimize storage.
5267
5268 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
5269
5270 * NEWS: Add microMIPS support and "set mips compression",
5271 "show mips compression" commands.
5272 * mips-tdep.h (mips_isa): New enum.
5273 (gdbarch_tdep): Add mips_isa.
5274 (mips_pc_is_mips16): Update prototype.
5275 (mips_pc_is_mips, mips_pc_is_micromips): New prototypes.
5276 * mips-tdep.c (mips_compression_mips16): New variable.
5277 (mips_compression_micromips): Likewise.
5278 (mips_compression_strings): Likewise.
5279 (mips_compression_string): Likewise.
5280 (is_mips16_isa, is_micromips_isa): New functions.
5281 (is_mips16_addr): Rename to...
5282 (is_compact_addr): ... this.
5283 (unmake_mips16_addr): Likewise to...
5284 (unmake_compact_addr): ... this.
5285 (make_mips16_addr): Likewise to...
5286 (make_compact_addr): ... this.
5287 (is_mips_addr, is_mips16_addr, is_micromips_addr): New
5288 functions.
5289 (mips_elf_make_msymbol_special): Handle microMIPS code.
5290 (msymbol_is_special): Rename to...
5291 (msymbol_is_mips16): ... this.
5292 (mips_make_symbol_special, mips_pc_is_mips16): Update
5293 accordingly.
5294 (msymbol_is_mips, msymbol_is_micromips): New functions.
5295 (mips16_to_32_reg): Rename to...
5296 (mips_reg3_to_reg): ... this.
5297 (mips_pc_is_mips, mips_pc_is_micromips): New functions.
5298 (mips_pc_isa): Likewise.
5299 (mips_read_pc, mips_unwind_pc, mips_write_pc): Handle microMIPS
5300 code.
5301 (mips_fetch_instruction): Pass return status instead of printing
5302 an error message if requested. Handle microMIPS code. Bail out
5303 on an invalid ISA.
5304 (micromips_op): New macro.
5305 (b0s4_imm, b0s5_imm, b0s5_reg, b0s7_imm, b0s10_imm): Likewise.
5306 (b1s9_imm, b2s3_cc, b4s2_regl, b5s5_op, b5s5_reg): Likewise.
5307 (b6s4_op, b7s3_reg): Likewise.
5308 (b0s6_op, b0s11_op, b0s12_imm, b0s16_imm, b0s26_imm): Likewise.
5309 (b6s10_ext, b11s5_reg, b12s4_op): Likewise.
5310 (mips_insn_size): New function.
5311 (mips32_next_pc): Update mips_fetch_instruction call.
5312 (micromips_relative_offset7): New function.
5313 (micromips_relative_offset10): Likewise.
5314 (micromips_relative_offset16): Likewise.
5315 (micromips_pc_insn_size): Likewise.
5316 (micromips_bc1_pc): Likewise.
5317 (micromips_next_pc): Likewise.
5318 (unpack_mips16): Update mips_fetch_instruction call.
5319 (extended_mips16_next_pc): Update according to change to
5320 mips16_to_32_reg.
5321 (mips_next_pc): Update mips_pc_is_mips16 call. Handle microMIPS
5322 code.
5323 (mips16_scan_prologue): Update mips_fetch_instruction call.
5324 Update according to change to mips16_to_32_reg.
5325 (mips_insn16_frame_sniffer): Update mips_pc_is_mips16 call.
5326 (mips_insn16_frame_base_sniffer): Likewise.
5327 (micromips_decode_imm9): New function.
5328 (micromips_scan_prologue): Likewise.
5329 (mips_micro_frame_cache): Likewise.
5330 (mips_micro_frame_this_id): Likewise.
5331 (mips_micro_frame_prev_register): Likewise.
5332 (mips_micro_frame_sniffer): Likewise.
5333 (mips_micro_frame_unwind): New variable.
5334 (mips_micro_frame_base_address): New function.
5335 (mips_micro_frame_base): New variable.
5336 (mips_micro_frame_base_sniffer): New function.
5337 (mips32_scan_prologue): Update mips_fetch_instruction call.
5338 (mips_insn32_frame_sniffer): Check for the standard MIPS ISA
5339 rather than for MIPS16.
5340 (mips_insn32_frame_base_sniffer): Likewise.
5341 (mips_addr_bits_remove): Handle microMIPS code.
5342 (deal_with_atomic_sequence): Rename to...
5343 (mips_deal_with_atomic_sequence): ... this. Update the type
5344 of the variable used to hold an instruction. Remove the ISA bit
5345 check. Update mips_fetch_instruction call.
5346 (micromips_deal_with_atomic_sequence): New function.
5347 (deal_with_atomic_sequence): Likewise.
5348 (mips_about_to_return): Handle microMIPS code. Update
5349 mips_fetch_instruction call.
5350 (heuristic_proc_start): Check for the standard MIPS ISA rather
5351 than for MIPS16. Update mips_pc_is_mips16 and
5352 mips_fetch_instruction calls. Handle microMIPS code.
5353 (mips_push_dummy_code): Handle microMIPS code.
5354 (mips_eabi_push_dummy_call): Likewise.
5355 (mips_o32_return_value): Update mips_pc_is_mips16 call.
5356 (mips_o64_push_dummy_call): Handle microMIPS code.
5357 (mips_o64_return_value): Update mips_pc_is_mips16 call.
5358 (is_delayed): Remove function.
5359 (mips_single_step_through_delay): Replace the call to is_delayed
5360 with mips32_instruction_has_delay_slot. Correct MIPS16 handling.
5361 Handle microMIPS code.
5362 (mips_skip_prologue): Update mips_pc_is_mips16 call. Handle
5363 microMIPS code.
5364 (mips32_in_function_epilogue_p): Update mips_fetch_instruction
5365 call.
5366 (micromips_in_function_epilogue_p): New function.
5367 (mips16_in_function_epilogue_p): Update mips_fetch_instruction
5368 call.
5369 (mips_in_function_epilogue_p): Update mips_pc_is_mips16 call.
5370 Handle microMIPS.
5371 (gdb_print_insn_mips): Likewise.
5372 (mips_breakpoint_from_pc): Likewise.
5373 (mips_remote_breakpoint_from_pc): New function.
5374 (mips32_instruction_has_delay_slot): Simplify making use of the
5375 updated mips_fetch_instruction interface.
5376 (micromips_instruction_has_delay_slot): New function.
5377 (mips16_instruction_has_delay_slot): Simplify making use of the
5378 updated mips_fetch_instruction interface.
5379 (mips_adjust_breakpoint_address): Check for the standard MIPS
5380 ISA rather than for MIPS16 ISA. Update for unmake_compact_addr
5381 calls. Handle microMIPS code.
5382 (mips_get_mips16_fn_stub_pc): Update mips_fetch_instruction call.
5383 (mips_skip_trampoline_code): Handle microMIPS code.
5384 (global_mips_compression): New function.
5385 (mips_gdbarch_init): Handle the compressed ISA setting from ELF
5386 file flags. Register the microMIPS remote breakpoint handler
5387 and heuristic frame unwinder.
5388 (show_mips_compression): New function.
5389 (_initialize_mips_tdep): Add the "set mips compression" and
5390 "show mips compression" commands.
5391
5392 2012-05-18 Sergio Durigan Junior <sergiodj@redhat.com>
5393
5394 * ada-lang.c:
5395 * ada-tasks.c:
5396 * ada-varobj.c:
5397 * amd64-darwin-tdep.c:
5398 * arm-symbian-tdep.c:
5399 * arm-tdep.c:
5400 * avr-tdep.c:
5401 * ax-gdb.c:
5402 * bfin-linux-tdep.c:
5403 * breakpoint.c:
5404 * c-valprint.c:
5405 * cli/cli-cmds.c:
5406 * coffread.c:
5407 * cp-support.c:
5408 * cris-tdep.c:
5409 * dwarf2-frame-tailcall.c:
5410 * dwarf2-frame.c:
5411 * dwarf2expr.c:
5412 * dwarf2loc.c:
5413 * dwarf2read.c:
5414 * elfread.c:
5415 * eval.c:
5416 * expprint.c:
5417 * f-valprint.c:
5418 * frv-tdep.c:
5419 * h8300-tdep.c:
5420 * hppa-hpux-tdep.c:
5421 * hppa-tdep.c:
5422 * hppanbsd-tdep.c:
5423 * i386-nto-tdep.c:
5424 * i386-tdep.c:
5425 * i387-tdep.c:
5426 * ia64-tdep.c:
5427 * jit.c:
5428 * linespec.c:
5429 * linux-tdep.c:
5430 * lm32-tdep.c:
5431 * m2-valprint.c:
5432 * m32c-tdep.c:
5433 * m32r-rom.c:
5434 * m32r-tdep.c:
5435 * m68k-tdep.c:
5436 * m68klinux-tdep.c:
5437 * mi/mi-main.c:
5438 * microblaze-tdep.c:
5439 * mips-linux-tdep.c:
5440 * mips-tdep.c:
5441 * mn10300-tdep.c:
5442 * p-valprint.c:
5443 * parse.c:
5444 * ppc-linux-tdep.c:
5445 * ppc-sysv-tdep.c:
5446 * printcmd.c:
5447 * python/py-finishbreakpoint.c:
5448 * python/py-inferior.c:
5449 * python/py-infthread.c:
5450 * python/py-type.c:
5451 * python/python.c:
5452 * remote-fileio.c:
5453 * remote-m32r-sdi.c:
5454 * remote-mips.c:
5455 * reverse.c:
5456 * rl78-tdep.c:
5457 * rs6000-aix-tdep.c:
5458 * rs6000-tdep.c:
5459 * s390-tdep.c:
5460 * score-tdep.c:
5461 * sh64-tdep.c:
5462 * skip.c:
5463 * solib-darwin.c:
5464 * solib-dsbt.c:
5465 * solib-frv.c:
5466 * sparc-tdep.c:
5467 * spu-multiarch.c:
5468 * spu-tdep.c:
5469 * stack.c:
5470 * symfile.c:
5471 * symtab.c:
5472 * tic6x-tdep.c:
5473 * tracepoint.c:
5474 * v850-tdep.c:
5475 * valarith.c:
5476 * valprint.c:
5477 * value.c:
5478 * xcoffread.c:
5479 * xtensa-tdep.c:
5480 * ada-lang.c:
5481 * ada-tasks.c:
5482 * ada-varobj.c:
5483 * amd64-darwin-tdep.c:
5484 * arm-symbian-tdep.c:
5485 * arm-tdep.c: Delete unused variables.
5486
5487 2012-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
5488
5489 Rename $ddir to $datadir.
5490 * NEWS (--with-auto-load-dir): Rename $ddir to $datadir.
5491 * auto-load.c (auto_load_safe_path_vec_update)
5492 (auto_load_gdb_datadir_changed, auto_load_objfile_script): Likewise.
5493 * configure: Regenerate.
5494 * configure.ac (--with-auto-load-dir, --with-auto-load-safe-path):
5495 Likewise. Remove the 'use $ddir' help string.
5496
5497 2012-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
5498
5499 * auto-load.c (show_auto_load_safe_path): Accept any combination of
5500 DIRNAME_SEPARATOR and IS_DIR_SEPARATOR for wild-match.
5501
5502 2012-05-18 Tom Tromey <tromey@redhat.com>
5503
5504 PR exp/13907:
5505 * valprint.h (struct value_print_options) <symbol_print>: New
5506 field.
5507 * valprint.c (user_print_options): Add default for symbol_print.
5508 (show_symbol_print): New function.
5509 (generic_val_print): Respect symbol_print.
5510 (_initialize_valprint): Add "print symbol" setting.
5511 * f-valprint.c (f_val_print): Respect symbol_print.
5512 * c-valprint.c (c_val_print): Respect symbol_print.
5513 * NEWS: Update.
5514 * printcmd.c (print_address_symbolic): Return int. Ignore some
5515 zero-size symbols.
5516 (print_address_demangle): Return int.
5517 * defs.h: (print_address_symbolic): Return int.
5518 * value.h (print_address_demangle): Return int.
5519
5520 2012-05-18 Tom Tromey <tromey@redhat.com>
5521
5522 * valprint.c (val_print_string): Don't print leading space.
5523 * p-valprint.c (pascal_val_print) <TYPE_CODE_PTR>: Optionally
5524 print space before string or vtbl.
5525 * m2-valprint.c (print_unpacked_pointer): Optionally print space
5526 before string.
5527 * jv-valprint.c (java_value_print): Print space before string.
5528 * go-valprint.c (print_go_string): Print space before string.
5529 * f-valprint.c (f_val_print) <TYPE_CODE_PTR>: Optionally print
5530 space before string.
5531 * c-valprint.c (c_val_print) <TYPE_CODE_PTR>: Optionally print
5532 space before string or vtbl.
5533 * auxv.c (fprint_target_auxv): Print space after address.
5534
5535 2012-05-18 Tom Tromey <tromey@redhat.com>
5536
5537 * printcmd.c (print_address_demangle): Remove special case for 0.
5538
5539 2012-05-18 Tom Tromey <tromey@redhat.com>
5540
5541 * printcmd.c (print_address_demangle): Add 'opts' argument.
5542 * p-valprint.c (pascal_val_print): Update.
5543 * jv-valprint.c (java_val_print): Update.
5544 * value.h: Update.
5545 * valprint.c (generic_val_print): Update.
5546 (print_function_pointer_address): Add 'options' argument. Remove
5547 'addressprint' argument. Update.
5548 * m2-valprint.c (print_unpacked_pointer): Update.
5549 * gnu-v3-abi.c (print_one_vtable): Update.
5550 (gnuv3_print_method_ptr): Update.
5551 * f-valprint.c (f_val_print): Update.
5552 * cp-valprint.c (cp_print_value_fields): Update.
5553 * valprint.h (print_function_pointer_address): Update.
5554 * c-valprint.c (c_val_print): Update.
5555
5556 2012-05-18 Tom Tromey <tromey@redhat.com>
5557
5558 * psymtab.c (find_pc_sect_symtab_from_partial): Return the symtab
5559 directly corresponding to the found psymtab.
5560 * dwarf2read.c (recursively_find_pc_sect_symtab): New function.
5561 (dw2_find_pc_sect_symtab): Use it.
5562 * block.h (blockvector_contains_pc): Declare.
5563 * block.c (find_block_in_blockvector): New function.
5564 (blockvector_for_pc_sect): Use it.
5565 (blockvector_contains_pc): New function.
5566
5567 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
5568
5569 * mips-tdep.h (mips_write_pc): New prototype.
5570 * mips-tdep.c (mips_write_pc): Make external, add description.
5571 * mips-linux-tdep.c (mips_linux_write_pc): Use mips_write_pc,
5572 add description.
5573
5574 2012-05-18 Maciej W. Rozycki <macro@codesourcery.com>
5575
5576 * mips-tdep.c (mips_read_pc): Use gdbarch_pc_regnum instead of
5577 mips_regnum->pc.
5578 (mips_unwind_pc, mips_write_pc): Likewise.
5579 (mips_gdbarch_init): Remove a comment on gdbarch_pc_regnum and
5580 gdbarch_read_pc.
5581
5582 2012-05-17 Joel Brobecker <brobecker@adacore.com>
5583
5584 * procfs.c (procfs_find_new_threads, procfs_pid_to_str,
5585 proc_warn, proc_error, proc_get_status, proc_flags,
5586 proc_why, proc_what, proc_nsysarg, proc_sysargs,
5587 proc_set_run_on_last_close, proc_unset_run_on_last_close,
5588 proc_unset_inherit_on_fork, proc_set_async, proc_unset_async,
5589 proc_stop_process, proc_wait_for_stop, proc_run_process,
5590 proc_set_traced_signals, proc_set_traced_faults,
5591 proc_set_traced_sysentry, proc_set_traced_sysexit,
5592 proc_set_held_signals, proc_get_held_signals,
5593 proc_get_traced_signals, proc_get_traced_faults,
5594 proc_get_traced_sysentry, proc_get_traced_sysexit,
5595 proc_clear_current_fault, proc_set_current_signal,
5596 proc_clear_current_signal, proc_get_gregs, proc_get_fpregs,
5597 proc_set_gregs, proc_set_fpregs, proc_kill, proc_parent_pid,
5598 proc_get_nthreads, proc_get_nthreads, proc_get_nthreads,
5599 proc_get_current_thread, proc_get_current_thread,
5600 proc_get_current_thread, proc_update_threads,
5601 proc_update_threads, proc_update_threads, proc_update_threads,
5602 proc_iterate_over_threads, procfs_find_new_threads,
5603 procfs_pid_to_str): Make static. Remove advance declaration.
5604 (proc_cursig): Make static. Conditionalized defintion on
5605 PROCFS_DONT_PIOCSSIG_CURSIG being defined.
5606 (proc_syscall, proc_set_kill_on_last_close,
5607 proc_unset_kill_on_last_close, proc_set_inherit_on_fork,
5608 proc_get_pending_signals, proc_get_signal_actions,
5609 proc_trace_signal, proc_ignore_signal): Delete.
5610
5611 2012-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
5612
5613 * coffread.c (cs_section_address): Passing proper argument for
5614 `bfd_get_section_vma'.
5615 * dwarf2read.c (dwarf2_locate_sections): Likewise, for
5616 `bfd_get_section_flags'.
5617 * remote.c (remote_trace_set_readonly_regions): Likewise, for
5618 `bfd_get_section_vma'.
5619
5620 2012-05-16 Tom Tromey <tromey@redhat.com>
5621
5622 PR macros/13205:
5623 * macrotab.h: (macro_define_special): Declare.
5624 (enum macro_special_kind): New.
5625 (struct macro_definition) <argc, replacement>: Update comments.
5626 * macrotab.c (new_macro_definition): Unconditionally set 'argc'.
5627 (macro_define_object_internal): New function.
5628 (macro_define_object): Use it.
5629 (macro_define_special): New function.
5630 (fixup_definition): New function.
5631 (macro_lookup_definition, foreach_macro_in_scope)
5632 (foreach_macro): Use fixup_definition.
5633 * macroexp.h (macro_stringify): Declare.
5634 * macroexp.c (free_buffer_return_text): New function.
5635 (stringify): Constify "arg".
5636 (macro_stringify): New function.
5637 * dwarf2read.c (macro_start_file): Call macro_define_special.
5638
5639 2012-05-16 Maciej W. Rozycki <macro@codesourcery.com>
5640 Maciej W. Rozycki <macro@mips.com>
5641
5642 * breakpoint.h (bp_location): Add related_address member.
5643 * inferior.h (get_return_value): Take a pointer to struct value
5644 instead of struct type for the function requested.
5645 * value.h (using_struct_return): Likewise.
5646 * gdbarch.sh (return_value): Take a pointer to struct value
5647 instead of struct type for the function requested.
5648 * breakpoint.c (set_breakpoint_location_function): Initialize
5649 related_address for bp_gnu_ifunc_resolver breakpoints.
5650 * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the
5651 requested function's address to gdbarch_return_value.
5652 * eval.c (evaluate_subexp_standard): Pass the requested
5653 function's address to using_struct_return.
5654 * infcall.c (call_function_by_hand): Pass the requested
5655 function's address to using_struct_return and
5656 gdbarch_return_value.
5657 * infcmd.c (get_return_value): Take a pointer to struct value
5658 instead of struct type for the function requested.
5659 (print_return_value): Update accordingly.
5660 (finish_command_continuation): Likewise.
5661 * stack.c (return_command): Pass the requested function's
5662 address to using_struct_return and gdbarch_return_value.
5663 * value.c (using_struct_return): Take a pointer to struct value
5664 instead of struct type for the function requested. Pass the
5665 requested function's address to gdbarch_return_value.
5666 * python/py-finishbreakpoint.c (finish_breakpoint_object):
5667 New function_value member, replacing function_type.
5668 (bpfinishpy_dealloc): Update accordingly.
5669 (bpfinishpy_pre_stop_hook): Likewise.
5670 (bpfinishpy_init): Likewise. Record the requested function's
5671 address.
5672 * mips-tdep.c (mips_fval_reg): New enum.
5673 (mips_o32_push_dummy_call): For MIPS16 FP doubles do not swap
5674 words put in GP registers.
5675 (mips_o64_push_dummy_call): Update a comment.
5676 (mips_o32_return_value): Take a pointer to struct value instead
5677 of struct type for the function requested and use it to check if
5678 using the MIPS16 calling convention. Return the designated
5679 general purpose registers for floating-point values returned in
5680 MIPS16 mode.
5681 (mips_o64_return_value): Likewise.
5682 * ppc-tdep.h (ppc_sysv_abi_return_value): Update prototype.
5683 (ppc_sysv_abi_broken_return_value): Likewise.
5684 (ppc64_sysv_abi_return_value): Likewise.
5685 * alpha-tdep.c (alpha_return_value): Take a pointer to struct
5686 value instead of struct type for the function requested.
5687 * amd64-tdep.c (amd64_return_value): Likewise.
5688 * amd64-windows-tdep.c (amd64_windows_return_value): Likewise.
5689 * arm-tdep.c (arm_return_value): Likewise.
5690 * avr-tdep.c (avr_return_value): Likewise.
5691 * bfin-tdep.c (bfin_return_value): Likewise.
5692 * cris-tdep.c (cris_return_value): Likewise.
5693 * frv-tdep.c (frv_return_value): Likewise.
5694 * h8300-tdep.c (h8300_return_value): Likewise.
5695 (h8300h_return_value): Likewise.
5696 * hppa-tdep.c (hppa32_return_value): Likewise.
5697 (hppa64_return_value): Likewise.
5698 * i386-tdep.c (i386_return_value): Likewise.
5699 * ia64-tdep.c (ia64_return_value): Likewise.
5700 * iq2000-tdep.c (iq2000_return_value): Likewise.
5701 * lm32-tdep.c (lm32_return_value): Likewise.
5702 * m32c-tdep.c (m32c_return_value): Likewise.
5703 * m32r-tdep.c (m32r_return_value): Likewise.
5704 * m68hc11-tdep.c (m68hc11_return_value): Likewise.
5705 * m68k-tdep.c (m68k_return_value): Likewise.
5706 (m68k_svr4_return_value): Likewise.
5707 * m88k-tdep.c (m88k_return_value): Likewise.
5708 * mep-tdep.c (mep_return_value): Likewise.
5709 * microblaze-tdep.c (microblaze_return_value): Likewise.
5710 * mn10300-tdep.c (mn10300_return_value): Likewise.
5711 * moxie-tdep.c (moxie_return_value): Likewise.
5712 * mt-tdep.c (mt_return_value): Likewise.
5713 * ppc-linux-tdep.c (ppc_linux_return_value): Likewise.
5714 * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Likewise.
5715 (ppc_sysv_abi_broken_return_value): Likewise.
5716 (ppc64_sysv_abi_return_value): Likewise.
5717 * ppcnbsd-tdep.c (ppcnbsd_return_value): Likewise.
5718 * rl78-tdep.c (rl78_return_value): Likewise.
5719 * rs6000-aix-tdep.c (rs6000_return_value): Likewise.
5720 * rx-tdep.c (rx_return_value): Likewise.
5721 * s390-tdep.c (s390_return_value): Likewise.
5722 * score-tdep.c (score_return_value): Likewise.
5723 * sh-tdep.c (sh_return_value_nofpu): Likewise.
5724 (sh_return_value_fpu): Likewise.
5725 * sh64-tdep.c (sh64_return_value): Likewise.
5726 * sparc-tdep.c (sparc32_return_value): Likewise.
5727 * sparc64-tdep.c (sparc64_return_value): Likewise.
5728 * spu-tdep.c (spu_return_value): Likewise.
5729 * tic6x-tdep.c (tic6x_return_value): Likewise.
5730 * v850-tdep.c (v850_return_value): Likewise.
5731 * vax-tdep.c (vax_return_value): Likewise.
5732 * xstormy16-tdep.c (xstormy16_return_value): Likewise.
5733 * xtensa-tdep.c (xtensa_return_value): Likewise.
5734 * gdbarch.c: Regenerate.
5735 * gdbarch.h: Regenerate.
5736
5737 2012-05-15 Tom Tromey <tromey@redhat.com>
5738
5739 * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest.
5740
5741 2012-05-15 Joel Brobecker <brobecker@adacore.com>
5742
5743 * breakpoint.c (init_breakpoint_sal): Add quotes around part
5744 of command in two error message.
5745
5746 2012-05-15 Joel Brobecker <brobecker@adacore.com>
5747
5748 * breakpoint.c (init_breakpoint_sal): Remove trailing spaces.
5749
5750 2012-05-15 Joel Brobecker <brobecker@adacore.com>
5751
5752 * breakpoint.c (find_condition_and_thread): Minor reformatting.
5753
5754 2012-05-15 Jan Kratochvil <jan.kratochvil@redhat.com>
5755
5756 * NEWS (show auto-load scripts-directory): Add forgotten command.
5757
5758 2012-05-15 Jan Kratochvil <jan.kratochvil@redhat.com>
5759
5760 * spu-tdep.c (spu_catch_start): Update create_breakpoint caller
5761 parameters.
5762
5763 2012-05-14 H.J. Lu <hongjiu.lu@intel.com>
5764
5765 * amd64-tdep.c: Include features/i386/x32.c and
5766 features/i386/x32-avx.c.
5767 (_initialize_amd64_tdep): Call initialize_tdesc_x32 and
5768 initialize_tdesc_x32_avx.
5769
5770 2012-05-14 Stan Shebs <stan@codesourcery.com>
5771
5772 Add dynamic printf.
5773 * breakpoint.h (enum bptype): New type bp_dprintf.
5774 (struct breakpoint): New field extra_string.
5775 (struct breakpoint_ops): Add arg to create_breakpoints_sal.
5776 (create_breakpoint): Add extra_string arg.
5777 * breakpoint.c (dprintf_breakpoint_ops): New.
5778 (is_breakpoint): Add bp_dprintf.
5779 (bpstat_what): Add dprintf case.
5780 (bptype_string): Ditto.
5781 (print_one_breakpoint_location): Ditto.
5782 (init_bp_location): Ditto.
5783 (bkpt_print_mention): Ditto.
5784 (dprintf_style_enums): New array.
5785 (dprintf_style): New global.
5786 (dprintf_function): New global.
5787 (dprintf_channel): New global.
5788 (update_dprintf_command_list): New function.
5789 (update_dprintf_commands): New function.
5790 (init_breakpoint_sal): Add extra_string argument, handle it.
5791 (create_breakpoint_sal): Add extra_string argument.
5792 (create_breakpoints_sal): Add extra_string argument, update callers.
5793 (find_condition_and_thread): Add extra argument.
5794 (create_breakpoint): Add extra_string argument, record it.
5795 (dprintf_command): New function.
5796 (break_command_1): Add arg to create_breakpoint call.
5797 (handle_gnu_v3_exceptions): Ditto.
5798 (trace_command): Ditto.
5799 (ftrace_command): Ditto.
5800 (strace_command): Ditto.
5801 (bkpt_print_mention): Add dprintf case.
5802 (create_breakpoint_sal_default): Add extra_string argument.
5803 (_initialize_breakpoint): Add new commands.
5804 * mi/mi-cmd-break.c (mi_cmd_break_insert): Add arg to call.
5805 * python/py-breakpoint.c (bppy_init): Ditto.
5806 * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto.
5807
5808 2012-05-14 Maciej W. Rozycki <macro@codesourcery.com>
5809
5810 * mips-tdep.c (mips_push_dummy_code): Correct description typo.
5811
5812 2012-05-14 Siva Chandra Reddy <sivachandra@google.com>
5813
5814 * python/python.c (gdbpy_find_pc_line): Use ULONGEST instead of
5815 unsigned long long.
5816
5817 2012-05-13 Siva Chandra Reddy <sivachandra@google.com>
5818
5819 Add a new function gdb.find_pc_line to the Python API.
5820 * NEWS (Python Scripting): Add entry about the new function.
5821 * python/python.c (gdbpy_find_pc_line): New function which
5822 implements gdb.find_pc_line.
5823 (GdbMethods): Add entry for the new function.
5824
5825 2012-05-12 Pedro Alves <palves@redhat.com>
5826
5827 * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Call
5828 initialize_tdesc_x32_linux and initialize_tdesc_x32_avx_linux.
5829
5830 2012-05-12 Eli Zaretskii <eliz@gnu.org>
5831
5832 * inferior.c: Include completer.h
5833 (initialize_inferiors): Set completer of add-inferior to
5834 filename_completer.
5835
5836 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
5837
5838 * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
5839 gdbarch_ptr_bit for x32 core dump.
5840
5841 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
5842
5843 * amd64-linux-tdep.c: Include features/i386/x32-linux.c
5844 and features/i386/x32-avx-linux.c.
5845
5846 2012-05-11 Stan Shebs <stan@codesourcery.com>
5847 Kwok Cheung Yeung <kcy@codesourcery.com>
5848
5849 * NEWS: Describe new info os commands.
5850 * common/linux-osdata.c (PID_T, TIME_T): Define.
5851 (MAX_PID_T_STRLEN): New.
5852 (linux_common_core_of_thread): Add comment. Change to use PID_T and
5853 MAX_PID_T_STRLEN.
5854 (command_from_pid): Add comment. Change to use PID_T.
5855 (commandline_from_pid): Change to use PID_T.
5856 (user_from_pid): Add comment.
5857 (get_process_owner): Add comment. Change to use PID_T and
5858 MAX_PID_T_STRLEN.
5859 (get_number_of_cpu_cores): Add comment.
5860 (get_cores_used_by_process): Add comment. Change to use PID_T and
5861 MAX_PID_T_STRLEN.
5862 (linux_xfer_osdata_processes): Change to use PID_T and
5863 MAX_PID_T_STRLEN.
5864 (compare_processes): New function.
5865 (linux_xfer_osdata_processgroups): New function.
5866 (linux_xfer_osdata_threads): Change to use PID_T.
5867 (linux_xfer_osdata_fds): New function.
5868 (format_socket_state, print_sockets): New functions.
5869 (union socket_addr): New union.
5870 (linux_xfer_osdata_isockets): New function.
5871 (time_from_time_t, group_from_gid): New functions.
5872 (linux_xfer_osdata_shm): New function.
5873 (linux_xfer_osdata_sem): New function.
5874 (linux_xfer_osdata_msg): New function.
5875 (linux_xfer_osdata_modules): New function.
5876 (osdata_table): Add new entries.
5877 * common/buffer.c (buffer_xml_printf): Add support for long and
5878 long long format specifiers.
5879
5880 2012-05-11 H.J. Lu <hongjiu.lu@intel.com>
5881
5882 * amd64-linux-tdep.h (tdesc_x32_linux): New.
5883 (tdesc_x32_avx_linux): Likewise.
5884
5885 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
5886
5887 Implement multi-component --with-auto-load-dir.
5888 * NEWS (set auto-load scripts-directory, --with-auto-load-dir): New
5889 entries.
5890 (--with-auto-load-safe-path): Update the default value description.
5891 * auto-load.c (auto_load_dir, set_auto_load_dir, show_auto_load_dir):
5892 New.
5893 (auto_load_objfile_script): Add DEBUG_AUTO_LOAD output. Remove
5894 GDB_DATADIR NULL check. Replace GDB_DATADIR/auto-load by
5895 AUTO_LOAD_DIR. Support $ddir and multiple components in it.
5896 (_initialize_auto_load): Initialize also auto_load_dir. Install new
5897 "set auto-load scripts-directory".
5898 * config.in: Regenerate.
5899 * configure: Regenerate.
5900 * configure.ac (--with-auto-load-dir): New configure option.
5901 (--auto-load-safe-path): Change the default to --with-auto-load-dir.
5902
5903 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
5904
5905 Provide $ddir substitution for --with-auto-load-safe-path.
5906 * NEWS (--with-auto-load-safe-path, --without-auto-load-safe-path): New
5907 entries.
5908 * auto-load.c: Include observer.h.
5909 (auto_load_safe_path_vec_update): Call substitute_path_component for
5910 each component. New variable ddir_subst.
5911 (auto_load_gdb_datadir_changed): New function.
5912 (set_auto_load_safe_path): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
5913 AUTO_LOAD_SAFE_PATH. New comment.
5914 (_initialize_auto_load): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to
5915 AUTO_LOAD_SAFE_PATH. Install auto_load_gdb_datadir_changed.
5916 * config.in: Regenerate.
5917 * configure: Regenerate.
5918 * configure.ac (--auto-load-safe-path): Rename
5919 DEFAULT_AUTO_LOAD_SAFE_PATH to AUTO_LOAD_SAFE_PATH. Default to
5920 GDB_DATADIR/auto-load.
5921 * defs.h (substitute_path_component): New declaration.
5922 * top.c: Include observer.h.
5923 (set_gdb_datadir): New function.
5924 (init_main): Install it for "set data-directory".
5925 * utils.c (substitute_path_component): New function.
5926
5927 2012-05-11 Jan Kratochvil <jan.kratochvil@redhat.com>
5928
5929 Make auto-load handle multiple components of DEBUG_FILE_DIRECTORY.
5930 * auto-load.c (auto_load_objfile_script): Remove check for NULL
5931 DEBUG_FILE_DIRECTORY. Handle multiple components of
5932 DEBUG_FILE_DIRECTORY.
5933
5934 2012-05-10 Tom Tromey <tromey@redhat.com>
5935
5936 * dwarf2read.c (recursively_write_psymbols): New function.
5937 (write_psymtabs_to_index): Use it.
5938
5939 * dwarf2read.c (struct dwarf2_queue_item) <pretend_language>: New
5940 field.
5941 (load_cu, dw2_do_instantiate_symtab, process_psymtab_comp_unit)
5942 (load_partial_comp_unit): Update.
5943 (queue_comp_unit): Add argument 'pretend_language'.
5944 (process_queue): Update.
5945 (psymtab_to_symtab_1): Skip dependencies that have a user.
5946 (load_partial_comp_unit_reader): Give meaning to the 'data'
5947 argument.
5948 (load_full_comp_unit): Add 'pretend_language' argument.
5949 (process_full_comp_unit): Add 'pretend_language' argument. Set
5950 language on CU.
5951 (process_imported_unit_die, read_file_scope, read_type_unit_scope):
5952 Update.
5953 (maybe_queue_comp_unit): Add 'pretend_language' argument.
5954 (follow_die_offset, follow_die_sig, read_signatured_type_reader):
5955 Update.
5956 (prepare_one_comp_unit): Add 'pretend_language' argument.
5957
5958 * dwarf2read.c: (dwarf2_per_cu_ptr): New typedef.
5959 (struct dwarf2_per_objfile) <just_read_cus>: New field.
5960 (struct dwarf2_per_cu_data) <imported_symtabs>: New field.
5961 (dw2_do_instantiate_symtab): Check whether symtab was read in
5962 before queueing.
5963 (dw2_instantiate_symtab): Add assertion. Call
5964 process_cu_includes.
5965 (process_psymtab_comp_unit): Compute 'dependencies' for psymtab.
5966 (partial_symtab_p): New typedef.
5967 (set_partial_user): New function.
5968 (dwarf2_build_psymtabs_hard): Use set_partial_user.
5969 (scan_partial_symbols): Add imported CU to imported_symtabs.
5970 (dwarf2_psymtab_to_symtab): Call process_cu_includes.
5971 (psymtab_to_symtab_1): Do nothing if psymtab is readin.
5972 (get_symtab, recursively_compute_inclusions)
5973 (compute_symtab_includes, process_cu_includes)
5974 (process_imported_unit_die): New functions.
5975 (process_die) <DW_TAG_imported_unit>: New case.
5976 (dwarf2_per_objfile_free): Free 'imported_symtabs'.
5977
5978 * dwarf2read.c (struct dwarf2_per_cu_data) <psymtab>: Update
5979 comment.
5980 (struct partial_die_info) <locdesc>: Remove.
5981 <d>: New field.
5982 (process_psymtab_comp_unit): Add 'read_partial' argument.
5983 Update.
5984 (process_type_comp_unit, dwarf2_build_psymtabs_hard): Update.
5985 (scan_partial_symbols): Handle DW_TAG_imported_unit.
5986 (add_partial_symbol): Update.
5987 (process_die): Handle DW_TAG_partial_unit.
5988 (read_file_scope): Update comment.
5989 (load_partial_dies): Handle DW_TAG_imported_unit.
5990 (read_partial_die): Handle DW_TAG_partial_unit, DW_AT_import.
5991 (determine_prefix, dwarf2_name): Handle DW_TAG_partial_unit.
5992
5993 2012-05-10 Tom Tromey <tromey@redhat.com>
5994
5995 * cc-with-dwz.sh: New file.
5996
5997 2012-05-10 Tom Tromey <tromey@redhat.com>
5998
5999 * symtab.h (struct symtab) <includes, user>: New fields.
6000 * block.h (struct block_iterator) <d, idx, which>: New fields.
6001 * block.c (initialize_block_iterator, find_iterator_symtab)
6002 (block_iterator_step, block_iter_name_step)
6003 (block_iter_match_step): New functions.
6004 (block_iterator_first, block_iterator_next)
6005 (block_iter_name_first, block_iter_name_next)
6006 (block_iter_match_first, block_iter_match_next): Rewrite.
6007 (get_block_symtab): New function.
6008
6009 2012-05-10 Tom Tromey <tromey@redhat.com>
6010
6011 * jv-lang.c (get_java_class_symtab): Use allocate_global_block,
6012 set_block_symtab.
6013 * jit.c (finalize_symtab): Use allocate_global_block,
6014 set_block_symtab.
6015 * buildsym.c (finish_block_internal): New function, from old
6016 finish_block.
6017 (finish_block): Rewrite.
6018 (end_symtab): Use finish_block_internal, set_block_symtab.
6019 * block.h (struct global_block): New.
6020 (allocate_global_block, set_block_symtab): Declare.
6021 * block.c (allocate_global_block, set_block_symtab): New
6022 functions.
6023
6024 2012-05-10 Tom Tromey <tromey@redhat.com>
6025
6026 * psymtab.c (partial_map_expand_apply): Add assertion.
6027 (partial_map_symtabs_matching_filename): Skip included psymtabs.
6028 (psymtab_to_symtab): Find unshared psymtab.
6029 (dump_psymtab): Print including psymtabs.
6030 (recursively_search_psymtabs): New function.
6031 (expand_symtabs_matching_via_partial): Use it.
6032 * psympriv.h (struct partial_symtab) <user, searched_flag>: New
6033 fields.
6034 (enum psymtab_search_status): New.
6035
6036 2012-05-10 Tom Tromey <tromey@redhat.com>
6037
6038 * tracepoint.c (scope_info): Update.
6039 * symtab.c (lookup_block_symbol, iterate_over_symbols)
6040 (find_pc_sect_symtab, search_symbols)
6041 (default_make_symbol_completion_list_break_on)
6042 (make_file_symbol_completion_list): Update.
6043 * symmisc.c (dump_symtab_1): Update.
6044 * stack.c (print_frame_args, iterate_over_block_locals)
6045 (print_frame_labels, iterate_over_block_arg_vars): Update.
6046 * python/py-block.c (block_object) <dict>: Remove.
6047 <block>: New field.
6048 <iter>: Change type.
6049 (blpy_iter): Update.
6050 (blpy_block_syms_iternext): Update.
6051 * psymtab.c (map_block): Use block iterators.
6052 * objfiles.c (objfile_relocate1): Use ALL_DICT_SYMBOLS.
6053 * mi/mi-cmd-stack.c (list_args_or_locals): Update.
6054 * mdebugread.c (parse_symbol, mylookup_symbol): Update.
6055 * infrun.c (check_exception_resume): Update.
6056 * cp-support.c (make_symbol_overload_list_block): Update.
6057 * coffread.c (patch_opaque_types): Update.
6058 * buildsym.c (finish_block, end_symtab): Use ALL_DICT_SYMBOLS.
6059 * block.h (struct block_iterator): New.
6060 (block_iterator_first, block_iterator_next, block_iter_name_first)
6061 (block_iter_name_next, block_iter_match_first)
6062 (block_iter_match_next): Declare.
6063 (ALL_BLOCK_SYMBOLS): Redefine.
6064 * block.c (block_iterator_first, block_iterator_next)
6065 (block_iter_name_first, block_iter_name_next)
6066 (block_iter_match_first, block_iter_match_next): New functions.
6067 * ada-lang.c (ada_add_block_symbols)
6068 (ada_make_symbol_completion_list): Use block iterator.
6069
6070 2012-05-10 Tom Tromey <tromey@redhat.com>
6071
6072 * psymtab.c (PSYMTAB_TO_SYMTAB): Remove.
6073 (find_pc_sect_symtab_from_partial, lookup_symbol_aux_psymtabs)
6074 (lookup_partial_symbol, find_last_source_symtab_from_partial)
6075 (read_psymtabs_with_filename, map_matching_symbols_psymtab)
6076 (expand_symtabs_matching_via_partial, maintenance_check_symtabs):
6077 Update.
6078
6079 2012-05-10 Joel Brobecker <brobecker@adacore.com>
6080
6081 * config/djgpp/fnchange.lst: Add entries for print-file-var-lib1.c,
6082 print-file-var-lib2.c, print-file-var-main.c and
6083 print-file-var.exp (located in gdb/testsuite/gdb.base).
6084
6085 2012-05-10 Joel Brobecker <brobecker@adacore.com>
6086
6087 * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols,
6088 try locating the symbol in the symbol's own objfile first, before
6089 extending the search to all objfiles.
6090 * symtab.c (lookup_symbol_aux_objfile): New function, extracted
6091 out of lookup_symbol_aux_symtabs.
6092 (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile".
6093 Replace extracted-out code by call to lookup_symbol_aux_objfile.
6094 Do not search EXCLUDE_OBJFILE.
6095 (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs.
6096 (lookup_symbol_global): Search for matches in the block's objfile
6097 first, before searching all other objfiles.
6098
6099 2012-05-10 Tristan Gingold <gingold@adacore.com>
6100
6101 * printcmd.c (set_command): Add pre/post inc/dec.
6102
6103 2012-05-09 Frank Ch. Eigler <fche@redhat.com>
6104
6105 * gdb.1: Document -ex option.
6106
6107 2012-05-09 Joel Brobecker <brobecker@adacore.com>
6108
6109 * infcall.c (call_function_by_hand): Remove AT_SYMBOL handling.
6110 * inferior.h (AT_SYMBOL): Delete.
6111
6112 2012-05-09 Joel Brobecker <brobecker@adacore.com>
6113
6114 * mips-tdep.c (mips_push_dummy_code): New function.
6115 (mips_gdbarch_init): Set the gdbarch call_dummy_location to
6116 ON_STACK and install mips_push_dummy_code as our gdbarch
6117 push_dummy_code routine.
6118
6119 2012-05-09 Pedro Alves <palves@redhat.com>
6120
6121 * target.c (set_maintenance_target_async_permitted): Rename to ...
6122 (set_target_async_command): ... this.
6123 (show_maintenance_target_async_permitted): Rename to ...
6124 (show_target_async_command): ... this.
6125 (initialize_targets): Adjust.
6126
6127 2012-05-08 Doug Evans <dje@google.com>
6128
6129 * go-exp.y (classify_name): Add missing assignment of fields of
6130 yylval.ssym.
6131
6132 2012-05-08 Eli Zaretskii <eliz@gnu.org>
6133
6134 Display the ">" prompt in interactive mode while reading canned
6135 commands, even when the current interpreter is MI.
6136
6137 * interps.c (interp_set_temp): New function.
6138
6139 * interps.h (interp_set_temp): Add prototype.
6140
6141 * cli/cli-script.c (restore_interp): New cleanup function.
6142 (read_command_lines): Temporarily override the current interpreter
6143 with CLI and arrange for restoring the original one.
6144
6145 2012-05-12 Joel Sherrill <joel.sherrill@oarcorp.com>
6146
6147 * microblaze-rom.c (_initialize_picobug_rom): Add prototype.
6148
6149 2012-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
6150
6151 * probe.c (parse_probes): Move conditional to check for
6152 debuginfo files from here...
6153 * stap-probe.c (stap_get_probes): ... to here.
6154
6155 2012-05-07 Mark Kettenis <kettenis@gnu.org>
6156 H.J. Lu <hongjiu.lu@intel.com>
6157
6158 * amd64-tdep.c (amd64_analyze_prologue): Additionally check for
6159 `movl %esp, %ebp' for the X32 ABI.
6160
6161 2012-05-07 Tom Tromey <tromey@redhat.com>
6162
6163 * dwarf2read.c (dwarf_tag_name): Return const char *. Use
6164 get_DW_TAG_name.
6165 (dwarf_attr_name): Return const char *. Use get_DW_AT_name.
6166 (dwarf_form_name): Return const char *. Use get_DW_FORM_name.
6167 (dwarf_stack_op_name): Remove.
6168 (dwarf_cfi_name): Return const char *. Use get_DW_ATE_name.
6169 (decode_locdesc): Use get_DW_OP_name.
6170 * dwarf2loc.c (unimplemented): Use get_DW_OP_name.
6171 (dwarf2_compile_expr_to_ax): Likewise.
6172 (disassemble_dwarf_expression): Likewise.
6173 * dwarf2expr.h: (dwarf_stack_op_name): Remove.
6174
6175 2012-05-07 Chung-Lin Tang <cltang@codesourcery.com>
6176
6177 * sh-linux-tdep.c: Include trad-frame.h and tramp-frame.h.
6178 (sh_linux_sigtramp_cache): New function.
6179 (sh_linux_sigreturn_init): New function.
6180 (sh_linux_rt_sigreturn_init): New function.
6181 (SH_MOVW,SH_TRAP,SH_OR_R0_R0): New symbols for instruction
6182 patterns.
6183 (SH_NR_SIGRETURN,SH_NR_RT_SIGRETURN): New symbols for sigreturn
6184 syscall codes.
6185 (sh_linux_sigreturn_tramp_frame): New tramp_frame definition.
6186 (sh_linux_rt_sigreturn_tramp_frame): Likewise.
6187 (sh_linux_init_abi): Add init calls to register new tramp_frame
6188 definitions under 32-bit SH, update comments.
6189
6190 2012-05-07 Pedro Alves <palves@redhat.com>
6191
6192 PR gdb/10952
6193
6194 * amd64-linux-tdep.c: Include glibc-tdep.h.
6195 (amd64_linux_init_abi): Install glibc_skip_solib_resolver as
6196 gdbarch_skip_solib_resolver callback.
6197
6198 2012-05-06 Jan Kratochvil <jan.kratochvil@redhat.com>
6199
6200 * auto-load.c (set_auto_load_safe_path): Reset AUTO_LOAD_SAFE_PATH
6201 back to DEFAULT_AUTO_LOAD_SAFE_PATH if it is being set to "".
6202 (show_auto_load_safe_path): Check any-directory by comparison with "/".
6203 (add_auto_load_safe_path): Change the error message.
6204 (_initialize_auto_load): Change the "safe-path" help text.
6205 * configure: Regenerate
6206 * configure.ac (--without-auto-load-safe-path): Set
6207 WITH_AUTO_LOAD_SAFE_PATH to /.
6208
6209 2012-05-05 Sergio Durigan Junior <sergiodj@redhat.com>
6210
6211 * stap-probe.h: Do not include unecessary `probe.h'.
6212
6213 2012-05-05 Alan Modra <amodra@gmail.com>
6214
6215 * elfread.c (elf_symtab_read): Use bfd_abs_section_ptr and
6216 bfd_und_section_ptr.
6217 * machoread.c (macho_symtab_add_minsym): Use bfd_abs_section_ptr
6218 and bfd_com_section_ptr.
6219
6220 2012-05-04 Joel Brobecker <brobecker@adacore.com>
6221
6222 * MAINTAINERS (Past Maintainers): Add Chris Faylor.
6223
6224 2012-05-04 Joel Brobecker <brobecker@adacore.com>
6225
6226 * windows-nat.h (segment_register_p_ftype): New typedef.
6227 (windows_set_segment_register_p): Add declaration.
6228 * windows-nat.c (segment_register_p): New static global.
6229 (windows_set_segment_register_p): New function.
6230 (do_windows_fetch_inferior_registers): Add special handling
6231 for segment registers.
6232 * amd64-windows-nat.c: #include "amd64-tdep.h".
6233 (amd64_windows_segment_register_p): New function.
6234 (_initialize_amd64_windows_nat): Call windows_set_segment_register_p.
6235 * i386-windows-nat.c: #include "i386-tdep.h".
6236 (i386_windows_segment_register_p): New function.
6237 (_initialize_i386_windows_nat): Call windows_set_segment_register_p.
6238
6239 2012-05-04 Tristan Gingold <gingold@adacore.com>
6240
6241 * printcmd.c (set_command): Emit a warning if the expression is not
6242 an assignment.
6243
6244 2012-05-03 Joel Brobecker <brobecker@adacore.com>
6245
6246 * nto-procfs.c (procfs_find_new_threads, procfs_pid_to_str):
6247 Make static.
6248
6249 2012-05-03 Sergio Durigan Junior <sergiodj@redhat.com>
6250
6251 * stap-probe.c (stap_is_operator): Change declaration.
6252 (stap_get_opcode): Change return value.
6253 (stap_parse_argument_1): Update calls to `stap_get_opcode' and
6254 `stap_parse_argument_1'.
6255
6256 2012-05-03 Pedro Alves <pedro@codesourcery.com>
6257
6258 * infrun.c (displaced_step_fixup): Add "displaced:" prefix to
6259 debug log.
6260
6261 2012-05-03 Siva Chandra Reddy <sivachandra@google.com>
6262
6263 Add two new methods global_block and static_block to gdb.Symtab
6264 objects.
6265 * NEWS (Python scripting): Add entry about the new methods.
6266 * python/py-symtab.c (stpy_global_block): New function which
6267 implements the gdb.Symtab.global_block() method.
6268 (stpy_static_block): New function which implements the
6269 gdb.Symtab.static_block() method.
6270 (symtab_object_methods): Add entries for the two new methods.
6271
6272 2012-05-03 Doug Evans <dje@google.com>
6273
6274 * dwarf2read.c (dw2_find_symbol_file): Don't crash if there are no
6275 files.
6276
6277 2012-05-03 Yao Qi <yao@codesourcery.com>
6278
6279 * i386-tdep.c (i386_fetch_pointer_argument): Remove extra
6280 space.
6281 (i386_process_record): Ditto.
6282
6283 2012-05-02 Joel Brobecker <brobecker@adacore.com>
6284
6285 * infcall.c (unwind_on_signal_p): Make static.
6286
6287 2012-05-02 Joel Brobecker <brobecker@adacore.com>
6288
6289 * sol-thread.c (solaris_pid_to_str): Make static.
6290 (_initialize_sol_thread): Add prototype.
6291
6292 2012-05-02 Joel Brobecker <brobecker@adacore.com>
6293
6294 * sol-thread.c (procfs_pid_to_str): Delete extern declaration.
6295
6296 2012-05-02 Christopher Faylor <me.cygwin2012@cgf.cx>
6297
6298 * MAINTAINERS: Remove myself.
6299
6300 2012-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
6301
6302 Fix --without-auto-load-safe-path for MS-Windows host platform.
6303 * auto-load.c (filename_is_in_dir): Return 1 for DIR_LEN 0.
6304
6305 2012-05-02 Eli Zaretskii <eliz@gnu.org>
6306
6307 * gdb_curses.h: Undefine KEY_EVENT before including curses
6308 headers. Move "#undef MOUSE_MOVED" before any curses header
6309 inclusion.
6310
6311 2012-05-02 Sergio Durigan Junior <sergiodj@gmail.com>
6312
6313 * features/i386/i386-mmx-linux.c: Regenerate.
6314 * features/rs6000/powerpc-32.c: Likewise.
6315 * features/rs6000/powerpc-32l.c: Likewise.
6316 * features/rs6000/powerpc-403.c: Likewise.
6317 * features/rs6000/powerpc-403gc.c: Likewise.
6318 * features/rs6000/powerpc-405.c: Likewise.
6319 * features/rs6000/powerpc-505.c: Likewise.
6320 * features/rs6000/powerpc-601.c: Likewise.
6321 * features/rs6000/powerpc-602.c: Likewise.
6322 * features/rs6000/powerpc-603.c: Likewise.
6323 * features/rs6000/powerpc-604.c: Likewise.
6324 * features/rs6000/powerpc-64.c: Likewise.
6325 * features/rs6000/powerpc-64l.c: Likewise.
6326 * features/rs6000/powerpc-750.c: Likewise.
6327 * features/rs6000/powerpc-860.c: Likewise.
6328 * features/rs6000/powerpc-e500.c: Likewise.
6329 * features/rs6000/powerpc-e500l.c: Likewise.
6330 * features/rs6000/powerpc-isa205-32l.c: Likewise.
6331 * features/rs6000/powerpc-isa205-64l.c: Likewise.
6332 * features/rs6000/rs6000.c: Likewise.
6333
6334 2012-05-02 Sergio Durigan Junior <sergiodj@gmail.com>
6335
6336 * i386-tdep.c (i386_stap_parse_special_token) <s>: Remove unused
6337 variable.
6338 * stap-probe.c (stap_parse_single_operand) <reg_suffix,
6339 reg_ind_suffix, reg_suffix_len, reg_ind_suffix_len>: Likewise.
6340 (stap_parse_argument) <e>: Likewise.
6341 (handle_stap_probe) <byte_order>: Likewise.
6342
6343 2012-04-30 Doug Evans <dje@google.com>
6344
6345 * dwarf2read.c (init_cutu_and_read_dies): Renamed from
6346 init_and_read_dies_worker. All callers updated.
6347 (init_cu_and_read_dies, init_tu_and_read_dies): Delete. All calls
6348 replaced with init_cutu_and_read_dies.
6349 (load_partial_comp_unit): Pass 1 for use_existing_cu.
6350 (find_partial_die): Remove FIXME. Don't free current CU.
6351
6352 2012-04-30 Sterling Augustine <saugustine@google.com>
6353
6354 * contrib: New directory.
6355 * contrib/test_pubnames_and_indexes.py: New file.
6356
6357 2012-04-30 Doug Evans <dje@google.com>
6358
6359 * dwarf2read.c (dwarf_decode_macros): New arg section_name.
6360 All callers updated.
6361 (init_cu_die_reader): Verify the section is non-empty.
6362 (dwarf_decode_line_header): Don't dereference section->asection
6363 until we know the section is present.
6364
6365 2012-04-29 Sergio Durigan Junior <sergiodj@redhat.com>
6366
6367 * tracepoint.c (start_tracing, stop_tracing): Checking for NULL
6368 probes.
6369
6370 2012-04-29 Yao Qi <yao@codesourcery.com>
6371
6372 * gdb-code-style.el: New hook gdb-markup-hook
6373 and gdb-comment-hook.
6374
6375 2012-04-28 Doug Evans <dje@google.com>
6376
6377 Initial support for Fission. http://gcc.gnu.org/wiki/DebugFission
6378 * symfile.c (default_symfile_relocate): Use sectp->owner instead of
6379 objfile->obfd.
6380 * symfile.h (dwarf2_debug_sections): New member addr.
6381 * dwarf2expr.c (execute_stack_op): New case DW_OP_GNU_addr_index.
6382 (ctx_no_get_addr_index): New function.
6383 * dwarf2expr.h (dwarf_expr_context_funcs): New member get_addr_index.
6384 (ctx_no_get_addr_index): Declare.
6385 * dwarf2-frame.c (dwarf2_frame_ctx_funcs): Update.
6386 * dwarf2loc.c (dwarf_expr_get_addr_index): New function.
6387 (dwarf_expr_ctx_funcs): Update.
6388 (needs_get_addr_index): New function.
6389 (needs_frame_ctx_funcs): Update.
6390 * dwarf2loc.h (dwarf2_read_addr_index): Declare.
6391 * dwarf2read.c: #include "gdbcore.h".
6392 (dwarf2_per_objfile): New members addr, dwo_files.
6393 (dwarf2_elf_names): Add entry for addr.
6394 (struct dwo_section_names): New type.
6395 (dwo_section_names): New static global.
6396 (dwarf2_cu): New members dwo_unit, addr_base, have_addr_base.
6397 (dwarf2_per_cu_data): New member is_debug_types, all boolean uses of
6398 old debug_types_section member updated to use this.
6399 Rename member debug_types_section to info_or_types_section,
6400 all uses updated.
6401 (signatured_type): Rename member type_offset to type_offset_in_tu,
6402 all uses updated. New member type_offset_in_section.
6403 (struct dwo_sections): New type.
6404 (struct dwo_unit): New type.
6405 (struct dwo_file): New type.
6406 (die_reader_specs): New member dwo_file.
6407 (dwarf2_locate_sections): Watch for .debug_addr.
6408 (zlib_decompress_section): Use sectp->owner instead of objfile->obfd.
6409 (dwarf2_read_section): Get bfd of section from bfd's asection,
6410 instead of objfile.
6411 (create_cus_from_index): Initialize the_cu->info_or_types_section.
6412 (create_signatured_type_table_from_index): Initialize
6413 sig_type->info_or_types_section.
6414 (dw2_get_file_names): Statement lists for type units with DWO files
6415 live in the DWO file.
6416 (create_debug_types_hash_table): New function.
6417 (create_all_type_units): Rewrite.
6418 (init_cu_die_reader): New arg dwo_file, all callers updated.
6419 (init_and_read_dies_worker): Get section from
6420 this_cu->info_or_types_section. Set sig_type->type_offset_in_section.
6421 Watch for DW_AT_GNU_dwo_name and if present lookup the file and
6422 continue reading the CU/TU from there.
6423 (init_cutu_and_read_dies_no_follow): New arg dwo_file, all callers
6424 updated. Get section from this_cu->info_or_types_section.
6425 (create_all_comp_units): Initialize this_cu->info_or_types_section.
6426 (skip_one_die): New cases DW_FORM_GNU_addr_index,
6427 DW_FORM_GNU_str_index.
6428 (hash_dwo_file, eq_dwo_file): New functions.
6429 (allocate_dwo_file_hash_table): New function.
6430 (hash_dwo_unit, eq_dwo_unit): New functions.
6431 (allocate_dwo_unit_table): New function.
6432 (dwarf2_locate_dwo_sections): New function.
6433 (struct create_dwo_info_table_data): New type.
6434 (create_debug_info_hash_table_reader): New function.
6435 (create_debug_info_hash_table): New function.
6436 (try_open_dwo_file, open_dwo_file, init_dwo_file): New function.
6437 (lookup_dwo_file): New function.
6438 (lookup_dwo_comp_unit, lookup_dwo_type_unit): New functions.
6439 (free_dwo_file, free_dwo_file_cleanup): New functions.
6440 (free_dwo_file_from_slot, free_dwo_files): New functions.
6441 (dwarf2_get_pc_bounds): Handle DW_FORM_GNU_addr_index.
6442 (dwarf2_record_block_ranges): Ditto.
6443 (read_partial_die): Ditto.
6444 (process_enumeration_scope): Update to use type_offset_in_section.
6445 (read_full_die_1): New function.
6446 (read_full_die): Rewrite.
6447 (read_attribute_value): New cases DW_FORM_GNU_addr_index,
6448 DW_FORM_GNU_str_index.
6449 (read_addr_index_1, read_addr_index): New functions.
6450 (read_addr_index_from_leb128): New function.
6451 (struct dwarf2_read_addr_index_data): New type.
6452 (dwarf2_read_addr_index_reader): New function.
6453 (dwarf2_read_addr_index): New function.
6454 (read_str_index): New function.
6455 (leb128_size): New function.
6456 (dwarf_decode_line_header): Delete arg abfd, all callers updated.
6457 If processing a type unit from a DWO file, get the line section
6458 from the DWO file.
6459 (var_decode_location): Watch for DW_OP_GNU_addr_index.
6460 (dwarf2_const_value_attr): New cases DW_FORM_GNU_addr_index,
6461 DW_FORM_GNU_str_index.
6462 (lookup_die_type): Check whether section offset of type's die is
6463 known before looking it up. Remove assert. Condition can
6464 legimately happen for inter-cu type references.
6465 (dwarf_attr_name): Handle Fission attributes.
6466 (dwarf_form_name): Handle Fission forms.
6467 (dump_die_shallow): New cases DW_FORM_GNU_addr_index,
6468 DW_FORM_GNU_str_index.
6469 (follow_die_sig): Update to use type_offset_in_section.
6470 (decode_locdesc): New case DW_OP_GNU_addr_index.
6471 (skip_form_bytes): New cases DW_FORM_GNU_addr_index,
6472 DW_FORM_GNU_str_index.
6473 (cu_debug_loc_section): New function.
6474 (fill_in_loclist_baton, dwarf2_symbol_mark_computed): Call it.
6475 (dwarf2_per_objfile_free): Unmap .debug_addr section.
6476 Free DWO files if present.
6477 * xcoffread.c (dwarf2_xcoff_names): Add .debug_addr.
6478
6479 Refactor DIE reading.
6480 * dwarf2read.c (dwarf2_per_objfile): Replace members
6481 debug_info_type_hash and debug_types_type_hash with die_type_hash.
6482 (die_reader_specs): New member "die_section". Temporarily make
6483 member "buffer" non-const, pending constifying all info_ptr uses.
6484 (die_reader_func_ftype): New typedef.
6485 (dw2_get_file_names_reader): New function.
6486 (dw2_get_file_names): Rewrite.
6487 (read_and_check_type_unit_head): Rename arg type_offset to
6488 type_offset_in_tu.
6489 (create_all_type_units): Improve debugging message.
6490 Improve dummy type unit check.
6491 (init_cu_die_reader): New arg "section". All callers updated.
6492 (init_and_read_dies_worker): New function.
6493 (init_cu_and_read_dies, init_tu_and_read_dies): New functions.
6494 (init_cutu_and_read_dies_no_follow): New function.
6495 (init_cutu_and_read_dies_simple): New function.
6496 (process_psymtab_comp_unit_reader): New function.
6497 (process_psymtab_comp_unit): Delete args section,
6498 is_debug_types_section. Rewrite. All callers updated.
6499 (process_psymtab_type_unit): Renamed from process_type_comp_unit.
6500 All callers updated. Rewrite.
6501 (load_partial_comp_unit_reader): New function.
6502 (load_partial_comp_unit): Rewrite.
6503 (skip_children): New arg reader. Delete args buffer, cu.
6504 All callers updated.
6505 (skip_one_die): New arg reader. Delete args buffer, cu.
6506 All callers updated.
6507 (locate_pdi_sibling): New arg reader. Delete args buffer, abfd, cu.
6508 All callers updated.
6509 (load_full_comp_unit_reader): New function.
6510 (load_full_comp_unit): Rewrite.
6511 (read_comp_unit): Delete.
6512 (read_die_and_children_1): Delete, contents moved ...
6513 (read_die_and_children): ... here.
6514 (dwarf2_read_abbrevs): New arg abbrev_section. All callers updated.
6515 (load_partial_dies): New arg reader. Delete args abfd, buffer, cu.
6516 All callers updated.
6517 (read_partial_die): New arg reader. Delete args abfd, buffer, cu.
6518 All callers updated.
6519 (find_partial_die): Rewrite load_all_dies support.
6520 (read_attribute_value): New arg reader. Delete args abfd, cu.
6521 All callers updated.
6522 (read_attribute): New arg reader. Delete args abfd, cu.
6523 All callers updated.
6524 (load_full_type_unit): Add assert.
6525 (read_signatured_type_reader): New function.
6526 (read_signatured_type): Rewrite.
6527 (free_stack_comp_unit): Remove call to age_cached_comp_units.
6528 (free_one_cached_comp_unit): Change target_cu arg to target_per_cu.
6529 All callers updated. Set per_cu->cu = NULL after freeing it.
6530 (dwarf2_per_cu_offset_and_type): Renamed from dwarf2_offset_and_type.
6531 (per_cu_offset_and_type_hash): Renamed from offset_and_type_hash.
6532 (per_cu_offset_and_type_eq): Renamed from offset_and_type_eq.
6533 (set_die_type): Update.
6534 (get_die_type_at_offset): Update.
6535 (read_file_scope): Call prepare_one_comp_unit.
6536 (read_type_unit_scope): Ditto.
6537 (prepare_one_comp_unit): Set producer if present.
6538
6539 2012-04-28 Sergio Durigan Junior <sergiodj@redhat.com>
6540
6541 * probe.c (compile_rx_or_error): Silence ARI warning about missing
6542 gettext function on `error'.
6543
6544 2012-04-27 Doug Evans <dje@google.com>
6545
6546 * dwarf2read.c (dwarf2_read_index): Don't use index if symbol table
6547 is empty.
6548
6549 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
6550 Tom Tromey <tromey@redhat.com>
6551
6552 * breakpoint.c (struct breakpoint_objfile_data)
6553 <longjmp_searched>,<longjmp_probes>,<exception_searched>,
6554 <exception_probes>: New fields.
6555 (free_breakpoint_probes): New function.
6556 (create_longjmp_master_breakpoint): Prefer SystemTap probe over
6557 `_Unwind_DebugHook'.
6558 (create_exception_master_breakpoint): Likewise.
6559 (_initialize_breakpoint): Registering cleanup for SystemTap probes.
6560 * infrun.c: Including necessary header files for handling SystemTap
6561 probes.
6562 (handle_inferior_event): Handling longjmp breakpoint and exceptions
6563 via SystemTap probes.
6564 (check_exception_resume): Remove `func' argument. Handle exception
6565 unwinding breakpoint set via a SystemTap probe.
6566 (insert_exception_resume_from_probe): New function.
6567
6568 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
6569 Tom Tromey <tromey@redhat.com>
6570 Jan Kratochvil <jan.kratochvil@redhat.com>
6571
6572 * Makefile.in (SFILES): Add `probe' and `stap-probe'.
6573 (COMMON_OBS): Likewise.
6574 (HFILES_NO_SRCDIR): Add `probe'.
6575 * NEWS: Mention support for static and SystemTap probes.
6576 * amd64-tdep.c (amd64_init_abi): Initializing proper fields used by
6577 SystemTap probes' arguments parser.
6578 * arm-linux-tdep.c: Including headers needed to perform the parsing
6579 of SystemTap probes' arguments.
6580 (arm_stap_is_single_operand): New function.
6581 (arm_stap_parse_special_token): Likewise.
6582 (arm_linux_init_abi): Initializing proper fields used by SystemTap
6583 probes' arguments parser.
6584 * ax-gdb.c (require_rvalue): Removing static declaration.
6585 (gen_expr): Likewise.
6586 * ax-gdb.h (gen_expr): Declaring function.
6587 (require_rvalue): Likewise.
6588 * breakpoint.c: Include `gdb_regex.h' and `probe.h'.
6589 (bkpt_probe_breakpoint_ops): New variable.
6590 (momentary_breakpoint_from_master): Set the `probe' value.
6591 (add_location_to_breakpoint): Likewise.
6592 (break_command_1): Using proper breakpoint_ops according to the
6593 argument passed by the user in the command line.
6594 (bkpt_probe_insert_location): New function.
6595 (bkpt_probe_remove_location): Likewise.
6596 (bkpt_probe_create_sals_from_address): Likewise.
6597 (bkpt_probe_decode_linespec): Likewise.
6598 (tracepoint_probe_create_sals_from_address): Likewise.
6599 (tracepoint_probe_decode_linespec): Likewise.
6600 (tracepoint_probe_breakpoint_ops): New variable.
6601 (trace_command): Using proper breakpoint_ops according to the
6602 argument passed by the user in the command line.
6603 (initialize_breakpoint_ops): Initializing breakpoint_ops for
6604 static probes on breakpoints and tracepoints.
6605 * breakpoint.h (struct bp_location) <probe>: New field.
6606 * cli-utils.c (skip_spaces_const): New function.
6607 (extract_arg): Likewise.
6608 * cli-utils.h (skip_spaces_const): Likewise.
6609 (extract_arg): Likewise.
6610 * coffread.c (coff_sym_fns): Add `sym_probe_fns' value.
6611 * configure.ac: Append `stap-probe.o' to be generated when ELF
6612 support is present.
6613 * configure: Regenerate.
6614 * dbxread.c (aout_sym_fns): Add `sym_probe_fns' value.
6615 * elfread.c: Include `probe.h' and `arch-utils.h'.
6616 (probe_key): New variable.
6617 (elf_get_probes): New function.
6618 (elf_get_probe_argument_count): Likewise.
6619 (elf_evaluate_probe_argument): Likewise.
6620 (elf_compile_to_ax): Likewise.
6621 (elf_symfile_relocate_probe): Likewise.
6622 (stap_probe_key_free): Likewise.
6623 (elf_probe_fns): New variable.
6624 (elf_sym_fns): Add `sym_probe_fns' value.
6625 (elf_sym_fns_lazy_psyms): Likewise.
6626 (elf_sym_fns_gdb_index): Likewise.
6627 (_initialize_elfread): Initialize objfile cache for static
6628 probes.
6629 * gdb_vecs.h (struct probe): New forward declaration.
6630 (probe_p): New VEC declaration.
6631 * gdbarch.c: Regenerate.
6632 * gdbarch.h: Regenerate.
6633 * gdbarch.sh (stap_integer_prefix): New variable.
6634 (stap_integer_suffix): Likewise.
6635 (stap_register_prefix): Likewise.
6636 (stap_register_suffix): Likewise.
6637 (stap_register_indirection_prefix): Likewise.
6638 (stap_register_indirection_suffix): Likewise.
6639 (stap_gdb_register_prefix): Likewise.
6640 (stap_gdb_register_suffix): Likewise.
6641 (stap_is_single_operand): New function.
6642 (stap_parse_special_token): Likewise.
6643 (struct stap_parse_info): Forward declaration.
6644 * i386-tdep.c: Including headers needed to perform the parsing
6645 of SystemTap probes' arguments.
6646 (i386_stap_is_single_operand): New function.
6647 (i386_stap_parse_special_token): Likewise.
6648 (i386_elf_init_abi): Initializing proper fields used by SystemTap
6649 probes' arguments parser.
6650 * i386-tdep.h (i386_stap_is_single_operand): New function.
6651 (i386_stap_parse_special_token): Likewise.
6652 * machoread.c (macho_sym_fns): Add `sym_probe_fns' value.
6653 * mipsread.c (ecoff_sym_fns): Likewise.
6654 * objfiles.c (objfile_relocate1): Support relocation for static
6655 probes.
6656 * parse.c (prefixify_expression): Remove static declaration.
6657 (initialize_expout): Likewise.
6658 (reallocate_expout): Likewise.
6659 * parser-defs.h (initialize_expout): Declare function.
6660 (reallocate_expout): Likewise.
6661 (prefixify_expression): Likewise.
6662 * ppc-linux-tdep.c: Including headers needed to perform the parsing
6663 of SystemTap probes' arguments.
6664 (ppc_stap_is_single_operand): New function.
6665 (ppc_stap_parse_special_token): Likewise.
6666 (ppc_linux_init_abi): Initializing proper fields used by SystemTap
6667 probes' arguments parser.
6668 * probe.c: New file, for generic statically defined probe support.
6669 * probe.h: Likewise.
6670 * s390-tdep.c: Including headers needed to perform the parsing of
6671 SystemTap probes' arguments.
6672 (s390_stap_is_single_operand): New function.
6673 (s390_gdbarch_init): Initializing proper fields used by SystemTap
6674 probes' arguments parser.
6675 * somread.c (som_sym_fns): Add `sym_probe_fns' value.
6676 * stap-probe.c: New file, for SystemTap probe support.
6677 * stap-probe.h: Likewise.
6678 * symfile.h: Include `gdb_vecs.h'.
6679 (struct sym_probe_fns): New struct.
6680 (struct sym_fns) <sym_probe_fns>: New field.
6681 * symtab.c (init_sal): Initialize `probe' field.
6682 * symtab.h (struct probe): Forward declaration.
6683 (struct symtab_and_line) <probe>: New field.
6684 * tracepoint.c (start_tracing): Adjust semaphore on breakpoints
6685 locations.
6686 (stop_tracing): Likewise.
6687 * xcoffread.c (xcoff_sym_fns): Add `sym_probe_fns' value.
6688
6689 2012-04-27 Sergio Durigan Junior <sergiodj@redhat.com>
6690 Tom Tromey <tromey@redhat.com>
6691
6692 * ax-gdb.c (gen_expr): Clean up code to handle internal variables
6693 and to compile agent expressions.
6694 * infrun.c (siginfo_make_value): New argument `ignore'.
6695 (siginfo_funcs): New struct.
6696 (_initialize_infrun): New argument when calling
6697 `create_internalvar_type_lazy'.
6698 * thread.c (thread_id_make_value): New argument `ignore'.
6699 (thread_funcs): New struct.
6700 (_initialize_thread): New argument when calling
6701 `create_internalvar_type_lazy'.
6702 * tracepoint.c (sdata_make_value): New argument `ignore'.
6703 (sdata_funcs): New struct.
6704 (_initialize_tracepoint): New argument when calling
6705 `create_internalvar_type_lazy'.
6706 * value.c (make_value): New struct.
6707 (create_internalvar_type_lazy): New argument `data'.
6708 (compile_internalvar_to_ax): New function.
6709 (value_of_internalvar): Properly handling `make_value' case.
6710 (clear_internalvar): Likewise.
6711 (show_convenience): Adding `TRY_CATCH' block.
6712 * value.h (internalvar_make_value): Delete, replace by...
6713 (struct internalvar_funcs): ... this.
6714 (create_internalvar_type_lazy) <fun>: Delete argument.
6715 (create_internalvar_type_lazy) <funcs>, <data>: New arguments.
6716 (compile_internalvar_to_ax): New function.
6717 * windows-tdep.c (tlb_make_value): New argument `ignore'.
6718 (tlb_funcs): New struct.
6719 (_initialize_windows_tdep): New argument when calling
6720 `create_internalvar_type_lazy'.
6721
6722 2012-04-27 Mark Wielaard <mjw@redhat.com>
6723
6724 * dwarf2read.c (dwarf2_get_pc_bounds): Check DW_AT_high_pc form to
6725 see whether it is an address or a constant offset from DW_AT_low_pc.
6726 (dwarf2_record_block_ranges): Likewise.
6727 (read_partial_die): Likewise.
6728
6729 2012-04-26 Mark Wielaard <mjw@redhat.com>
6730
6731 * MAINTAINERS (Write After Approval): Add myself to the list.
6732
6733 2012-04-26 Maciej W. Rozycki <macro@codesourcery.com>
6734
6735 * proc-utils.h (proc_prettyprint_signalset): New prototype.
6736 (proc_prettyprint_signal): Likewise.
6737 (proc_prettyprint_faultset): Likewise.
6738 (proc_prettyprint_fault): Likewise.
6739 (proc_prettyprint_actionset): Likewise.
6740 (proc_prettyprint_flags): Move to new proc-flags.c section.
6741 (proc_prettyfprint_flags): New prototype.
6742 * procfs.c (proc_nsysarg, proc_sysargs): Add prototypes.
6743 (proc_syscall, proc_cursig): Likewise.
6744 (proc_set_kill_on_last_close): Likewise.
6745 (proc_unset_kill_on_last_close): Likewise.
6746 (proc_set_watchpoint): Make static.
6747 (proc_delete_dead_threads): Likewise.
6748 (procfs_set_watchpoint): Likewise.
6749 (_initialize_procfs): Add prototype.
6750 * proc-events.c: Include proc-utils.h.
6751 (init_syscall_table): Make static.
6752 * proc-api.c (_initialize_proc_api): Add prototype.
6753 * proc-flags.c: Include proc-utils.h.
6754
6755 2012-04-26 Maciej W. Rozycki <macro@codesourcery.com>
6756
6757 * configure.ac: Add AC_ARG_PROGRAM.
6758 * configure: Regenerate.
6759
6760 2012-04-26 Jan Kratochvil <jan.kratochvil@redhat.com>
6761
6762 Fix DW_AT_lower_bound defaults for DWARF-4+.
6763 * dwarf2read.c (read_subrange_type): Remove initialization of low and
6764 high. New variable low_default_is_valid. Implement DWARF-4+
6765 DW_AT_lower_bound defaults. Print complaint for DW_AT_lower_bound with
6766 no default by the DWARF standard.
6767
6768 2012-04-26 Maciej W. Rozycki <macro@mips.com>
6769 Maciej W. Rozycki <macro@codesourcery.com>
6770
6771 * infrun.c (handle_inferior_event): Move the check for return
6772 trampolines ahead of the check for function trampolines.
6773 * mips-tdep.h (MIPS_S2_REGNUM, MIPS_GP_REGNUM): New macros.
6774 * mips-tdep.c (mips_str_mips16_call_stub): New variable.
6775 (mips_str_mips16_ret_stub): Likewise.
6776 (mips_str_call_fp_stub): Likewise.
6777 (mips_str_call_stub): Likewise.
6778 (mips_str_fn_stub): Likewise.
6779 (mips_str_pic): Likewise.
6780 (mips_in_frame_stub): New function.
6781 (mips_unwind_pc): Return the return address rather than the PC
6782 if the PC of an intermediate frame is inside a call thunk.
6783 (mips_is_stub_suffix): New function.
6784 (mips_is_stub_mode): Likewise.
6785 (mips_get_mips16_fn_stub_pc): Likewise.
6786 (mips_skip_mips16_trampoline_code): Update to handle all the
6787 currently generated stub types. Don't recurse into __fn_stub
6788 thunks. Remove heuristics to handle stubs beyond etext/_etext.
6789 Use cooked register accesses.
6790 (mips_in_return_stub): Reintroduce function.
6791 (mips_skip_trampoline_code): Traverse trampolines recursively.
6792 (mips_gdbarch_init): Handle MIPS16 return trampolines.
6793
6794 2012-04-26 Joel Brobecker <brobecker@adacore.com>
6795
6796 GDB 7.4.1 released.
6797
6798 2012-04-26 Jonathan Larmour <jifl@eCosCentric.com>
6799
6800 * arm-tdep.h (VFP_REGISTER_SIZE): Define.
6801 * features/arm-with-m-vfp-d16.xml: New file. Describes
6802 Cortex-M with VFPv4-sp-d16 FPU register layout.
6803 * features/Makefile (WHICH): Add arm-with-m-vfp-d16.
6804 * features/arm-with-m-vfp-d16.c: New. Generated from above.
6805 * arm-tdep.c: Include arm-with-m-vfp-d16.c.
6806 (arm-register_g_packet_guesses): Add vfp-d16 guess.
6807 (_initialise_arm_tdep): Initialize arm-with-m-vfp-d16 tdesc.
6808
6809 2012-04-25 Doug Evans <dje@google.com>
6810
6811 * cli/cli-decode.c (print_doc_line): Use stream instead of
6812 current_uiout.
6813
6814 2012-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
6815
6816 * features/arm-with-iwmmxt.c: Regenerate.
6817 * features/arm-with-m-fpa-layout.c: Likewise.
6818 * features/arm-with-m.c: Likewise.
6819 * features/arm-with-neon.c: Likewise.
6820 * features/arm-with-vfpv2.c: Likewise.
6821 * features/arm-with-vfpv3.c: Likewise.
6822 * features/mips-dsp-linux.c: Likewise.
6823 * features/mips-linux.c: Likewise.
6824 * features/mips64-dsp-linux.c: Likewise.
6825 * features/mips64-linux.c: Likewise.
6826 * features/s390-linux32.c: Likewise.
6827 * features/s390-linux32v1.c: Likewise.
6828 * features/s390-linux32v2.c: Likewise.
6829 * features/s390-linux64.c: Likewise.
6830 * features/s390-linux64v1.c: Likewise.
6831 * features/s390-linux64v2.c: Likewise.
6832 * features/s390x-linux64.c: Likewise.
6833 * features/s390x-linux64v1.c: Likewise.
6834 * features/s390x-linux64v2.c: Likewise.
6835 * features/tic6x-c62x-linux.c: Likewise.
6836 * features/tic6x-c62x.c: Likewise.
6837 * features/tic6x-c64x-linux.c: Likewise.
6838 * features/tic6x-c64x.c: Likewise.
6839 * features/tic6x-c64xp-linux.c: Likewise.
6840 * features/tic6x-c64xp.c: Likewise.
6841 * target-descriptions.c: Only generate `field_type' and `type'
6842 variables when needed.
6843
6844 2012-04-25 Fredrik Hederstierna <fredrikh.hederstierna@securitas-direct.com>
6845
6846 * cli/cli-cmds.c (cd_command): Use memmove instead of strcpy.
6847
6848 2012-04-25 Doug Evans <dje@google.com>
6849
6850 Initial pass at Go language support.
6851 * NEWS: Mention Go.
6852 * Makefile.in (SFILES): Add go-exp.y, go-lang.c, go-typeprint.c,
6853 go-valprint.c.
6854 (COMMON_OBS): Add go-lang.o, go-val.print.o, go-typeprint.o.
6855 (YYFILES): Add go-exp.c.
6856 (YYOBJ): Add go-exp.o.
6857 (local-maintainer-clean): Delete go-exp.c.
6858 * defs.h (enum language): Add language_go.
6859 * dwarf2read.c: #include "go-lang.h".
6860 (fixup_go_packaging): New function.
6861 (process_full_comp_unit): Call it when processing Go CUs.
6862 (dwarf2_physname): Add Go support.
6863 (read_file_scope): Handle missing language spec for GNU Go.
6864 (set_cu_language): Handle DW_LANG_Go.
6865 * go-exp.y: New file.
6866 * go-lang.h: New file.
6867 * go-lang.c: New file.
6868 * go-typeprint.c: New file.
6869 * go-valprint.c: New file.
6870 * symtab.c: #include "go-lang.h".
6871 (symbol_set_language): Handle language_go.
6872 (symbol_find_demangled_name, symbol_set_names): Ditto.
6873 (symbol_natural_name, demangle_for_lookup, find_main_name): Ditto.
6874
6875 2012-04-24 Jim Meyering <meyering@redhat.com>
6876
6877 avoid a few strncpy-induced buffer overruns
6878 * procfs.c (procfs_make_note_section): Be sure to NUL-terminate
6879 fname and psargs before trying to concatenate.
6880 * tui/tui-stack.c (tui_get_function_from_frame): NUL-terminate
6881 "name" before applying strchr.
6882
6883 2012-04-25 Siva Chandra Reddy <sivachandra@google.com>
6884
6885 * CONTRIBUTE: Use unified diff instead of context diff when
6886 generating patches.
6887
6888 2012-04-24 Maciej W. Rozycki <macro@codesourcery.com>
6889
6890 * mips-tdep.c (mips_about_to_return): Remove dead MIPS16 support
6891 code. Handle JR.HB correctly.
6892
6893 2012-04-24 Maciej W. Rozycki <macro@codesourcery.com>
6894
6895 * mips-tdep.c
6896 (is_mips16_addr, unmake_mips16_addr, make_mips16_addr): Group
6897 with the other MIPS16 helpers.
6898
6899 2012-04-24 Sergio Durigan Junior <sergiodj@redhat.com>
6900
6901 * observer.sh: Conditionally declare `args', thus cleaning up
6902 unused instances of this variable.
6903
6904 2012-04-24 Yao Qi <yao@codesourcery.com>
6905
6906 Revert this patch to allow breakpoint always-inserted
6907 in record target.
6908 2011-12-05 Pedro Alves <pedro@codesourcery.com>
6909 * breakpoint.c: Include record.h.
6910 (breakpoints_always_inserted_mode): Return false when the record
6911 target is in use.
6912
6913 * breakpoint.c (iterate_over_bp_locations): New.
6914 * breakpoint.h: Declare.
6915 New typedef walk_bp_location_callback.
6916 * record.c (record_open): Call record_init_record_breakpoints.
6917 (record_sync_record_breakpoints): New.
6918 (record_init_record_breakpoints): New.
6919 * NEWS: Mention supporting breakpoint always-inserted mode in
6920 record target.
6921
6922 2012-04-24 Marc Khouzam <marc.khouzam@ericsson.com>
6923
6924 * mi/mi-main.c (mi_cmd_execute): Choose a live thread not just
6925 any thread.
6926
6927 2012-04-24 Yao Qi <yao@codesourcery.com>
6928
6929 * breakpoint.c (ep_is_catchpoint): Renamed to ...
6930 (is_catchpoint): ... it.
6931 (print_one_breakpoint_location): Caller update.
6932 * breakpoint.h: Update declaration.
6933
6934 2012-04-23 David S. Miller <davem@davemloft.net>
6935
6936 * configure.tgt (sparc-*-linux*): Set build_gdbserver to yes.
6937
6938 2012-04-23 Tom Tromey <tromey@redhat.com>
6939
6940 * buildsym.c (add_free_pendings): Remove.
6941 * buildsym.h (add_free_pendings): Remove.
6942
6943 2012-04-23 Doug Evans <dje@google.com>
6944
6945 * dwarf2read.c (partial_die_full_name): Record DW_FORM_ref_addr in
6946 attr.u.unsnd instead of attr.u.addr.
6947 (read_attribute_value) Ditto for cases DW_FORM_ref_addr,
6948 DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4, DW_FORM_reg8,
6949 DW_FORM_ref_udata.
6950 (dump_die_shallow): Update cases DW_FORM_ref_addr,
6951 DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4. Add cases DW_FORM_ref8,
6952 DW_FORM_ref_udata.
6953 (dwarf2_get_ref_die_offset): Use DW_UNSND for reference attributes.
6954
6955 2012-04-23 Maciej W. Rozycki <macro@codesourcery.com>
6956
6957 * mips-tdep.c (mips_n32n64_return_value): Fix coding style.
6958 (mips_o32_return_value): Likewise.
6959 (mips_o64_return_value): Likewise.
6960
6961 2012-04-21 Paul Hilfinger <hilfinger@adacore.com>
6962
6963 * ada-lang.c (ada_evaluate_subexp): Add cases for
6964 TYPE_CODE_INTERNAL_FUNCTION and for TYPE_GNU_IFUNC, following
6965 their treatment in eval.c.
6966
6967 2012-04-21 David S. Miller <davem@davemloft.net>
6968
6969 * sparc-tdep.c (X_DISP10): Define.
6970 (sparc_analyze_control_transfer): Handle compare-and-branch.
6971
6972 2012-04-21 Jonathan Larmour <jifl@eCosCentric.com>
6973
6974 * features/Makefile (WHICH): Add arm-with-m and arm-with-m-fpa-layout.
6975 * arm-tdep.c (arm_register_g_packet_guesses): Fix comment.
6976
6977 2012-04-20 Nigel Stephens <nigel@mips.com>
6978 Maciej W. Rozycki <macro@codesourcery.com>
6979
6980 * mips-tdep.c (mips_float_register_p): New function.
6981 (mips_convert_register_float_case_p): Use mips_float_register_p.
6982 (mips_register_type): Likewise.
6983 (mips_print_register): Likewise.
6984 (print_gp_register_row): Likewise.
6985 (mips_print_registers_info): Likewise.
6986
6987 2012-04-20 Shun-Yen Lu <dark.asparagus@gmail.com>
6988
6989 * mips-tdep.c (mips_elf_make_msymbol_special): Fix identification
6990 of mips16 symbols.
6991
6992 2012-04-20 Andrew Pinski <apinski@cavium.com>
6993
6994 * MAINTAINERS (Write After Approval): Add myself to the list.
6995
6996 2012-04-20 Sergio Durigan Junior <sergiodj@redhat.com>
6997
6998 * MAINTAINERS: Update my e-mail address.
6999
7000 2012-04-20 Pedro Alves <palves@redhat.com>
7001
7002 * acx_configure_dir.m4 (ACX_CONFIGURE_DIR): Handle absolute
7003 $srcdir.
7004 * configure: Regenerate.
7005
7006 2012-04-20 Sergio Durigan Junior <sergiodj@redhat.com>
7007
7008 * cp-support.h: Include `gdb_vecs.h'. Delete `const_char_ptr' VEC
7009 declaration.
7010 * gdb_vecs.h: Declare `const_char_ptr' VEC.
7011
7012 2012-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
7013
7014 Fix compilation compatibility with python-2.4
7015 * python/py-type.c (convert_field): Cast ADDRSTRING for
7016 PyObject_SetAttrString as non-const. New comment.
7017
7018 2012-04-19 Tom Tromey <tromey@redhat.com>
7019
7020 * top.c (quit_target): Use all_cleanups.
7021 * main.c (captured_command_loop): Use all_cleanups.
7022 * exceptions.c (throw_exception): Use all_cleanups.
7023
7024 2012-04-19 Pedro Alves <palves@redhat.com>
7025
7026 * Makefile.in (GNULIB_BUILDDIR): New.
7027 (LIBGNU, INCGNU, GNULIB_H): Adjust.
7028 (SUBDIRS): Add $(GNULIB_BUILDDIR).
7029 (CLEANDIRS). Remove gnulib/import.
7030 (REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR).
7031 (all-lib): Ditto.
7032 (distclean): Remove the $(GNULIB_BUILDDIR) directory.
7033 (gnulib/import/Makefile): Replace gnulib/import with
7034 $(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile.
7035 (ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'.
7036 (aclocal_m4_deps): Remove the gnulib dependencies. Add
7037 acx_configure_dir.m4.
7038 * acinclude.m4: Include acx_configure_dir.m4.
7039 * acx_configure_dir.m4: New file.
7040 * aclocal.m4: Regenerate.
7041 * configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE
7042 calls. Configure gnulib using ACX_CONFIGURE_DIR.
7043 (GNULIB): New variable.
7044 (GNULIB_STDINT_H): Adjust.
7045 (AC_OUTPUT): Don't output gnulib/Makefile.
7046 * gdb/defs.h: Include build-gnulib/config.h.
7047 * aclocal.m4: Regenerate.
7048 * config.in: Regenerate.
7049 * configure: Regenerate.
7050
7051 * gnulib/Makefile.in: New file.
7052 * gnulib/configure.ac: New file.
7053 * gnulib/aclocal.m4: New file.
7054 * gnulib/config.in: New file.
7055 * gnulib/configure: New file.
7056 * gnulib/: Re-run gnulib-tool to adjust.
7057
7058 2012-04-19 Doug Evans <dje@google.com>
7059
7060 * cleanups.h (struct cleanup): Move to cleanups.c.
7061 (make_cleanup_dtor_ftype): New typedef.
7062 (make_cleanup_dtor): Use it.
7063 (ALL_CLEANUPS): Replace with ...
7064 (all_cleanups): ... this. Declare. All uses updated.
7065 * cleanups.c: #include "gdb_assert.h".
7066 (sentinel_cleanup): New static global.
7067 (SENTINEL_CLEANUP): Define.
7068 (cleanup_chain, final_cleanup_chain): Initialize to SENTINEL_CLEANUP.
7069 (make_my_cleanup2): Assert result is non-NULL.
7070 (all_cleanups): New function.
7071 (save_my_cleanups): Initialize new chain to SENTINEL_CLEANUP instead
7072 of NULL.
7073
7074 2012-04-19 Pedro Alves <palves@redhat.com>
7075
7076 * Makefile.in (HFILES_NO_SRCDIR): Remove gnulib/wchar.in.h.
7077 Adjust paths to gnulib imported files.
7078
7079 2012-04-19 Pedro Alves <palves@redhat.com>
7080
7081 * gnulib/: Move whole directory ...
7082 * gnulib/import/: ... here, and re-rerun gnulib-tool to adjust.
7083 * Makefile.in (LIBGNU, INCGNU, GNULIB_H, CLEANDIRS)
7084 (REQUIRED_SUBDIRS, all-lib, gnulib/Makefile, ACLOCAL_AMFLAGS)
7085 (aclocal_m4_deps): Adjust.
7086 * aclocal.m4: Regenerate.
7087 * configure: Regenerate.
7088 * configure.ac: Adjust AC_OUTPUT output.
7089
7090 2012-04-19 Yao Qi <yao@codesourcery.com>
7091
7092 * Makefile.in (SFILES): Add common/vec.c and remove vec.c.
7093 (vec.o): New rule.
7094 * vec.c: Move it ...
7095 * common/vec.c: ... here.
7096 * vec.h: Move it ...
7097 * common/vec.h: ... here.
7098
7099 2012-04-19 Yao Qi <yao@codesourcery.com>
7100
7101 * gdb-code-style.el: New.
7102
7103 2012-04-18 Pedro Alves <palves@redhat.com>
7104
7105 Update gnulib from latest git.
7106 (639ea5ae15e39fe48d43e04864b2997301e4b969)
7107
7108 * gnulib/Makefile.am: Update.
7109 * gnulib/dummy.c: Update.
7110 * gnulib/extra/arg-nonnull.h: Update.
7111 * gnulib/extra/c++defs.h: Update.
7112 * gnulib/extra/update-copyright: Update.
7113 * gnulib/extra/warn-on-use.h: Update.
7114 * gnulib/inttypes.in.h: Update.
7115 * gnulib/m4/00gnulib.m4: Update.
7116 * gnulib/m4/extensions.m4: Update.
7117 * gnulib/m4/gnulib-cache.m4: Update.
7118 * gnulib/m4/gnulib-common.m4: Update.
7119 * gnulib/m4/gnulib-comp.m4: Update.
7120 * gnulib/m4/gnulib-tool.m4: Update.
7121 * gnulib/m4/include_next.m4: Update.
7122 * gnulib/m4/inttypes-pri.m4: Update.
7123 * gnulib/m4/inttypes.m4: Update.
7124 * gnulib/m4/longlong.m4: Update.
7125 * gnulib/m4/memchr.m4: Update.
7126 * gnulib/m4/memmem.m4: Update.
7127 * gnulib/m4/mmap-anon.m4: Update.
7128 * gnulib/m4/multiarch.m4: Update.
7129 * gnulib/m4/onceonly.m4: Update.
7130 * gnulib/m4/stddef_h.m4: Update.
7131 * gnulib/m4/stdint.m4: Update.
7132 * gnulib/m4/string_h.m4: Update.
7133 * gnulib/m4/warn-on-use.m4: Update.
7134 * gnulib/m4/wchar_h.m4: Update.
7135 * gnulib/m4/wchar_t.m4: Update.
7136 * gnulib/m4/wint_t.m4: Update.
7137 * gnulib/memchr.c: Update.
7138 * gnulib/memmem.c: Update.
7139 * gnulib/stddef.in.h: Update.
7140 * gnulib/stdint.in.h: Update.
7141 * gnulib/str-two-way.h: Update.
7142 * gnulib/string.in.h: Update.
7143 * gnulib/wchar.in.h: Update.
7144
7145 * gnulib/extra/arg-nonnull.h: Delete.
7146 * gnulib/extra/c++defs.h: Delete.
7147 * gnulib/extra/warn-on-use.h: Delete.
7148 * gnulib/m4/wchar_h.m4: Delete.
7149 * gnulib/m4/wint_t.m4: Delete.
7150 * gnulib/wchar.in.h: Delete.
7151
7152 * gnulib/extra/snippets/arg-nonnull.h: New.
7153 * gnulib/extra/snippets/c++defs.h: New.
7154 * gnulib/extra/snippets/warn-on-use.h: New.
7155
7156 * aclocal.m4: Regenerate.
7157 * config.in: Regenerate.
7158 * configure: Regenerate.
7159 * gnulib/Makefile.in: Regenerate.
7160
7161 2012-04-18 Pedro Alves <palves@redhat.com>
7162
7163 Reimport the update-copyright module from gnulib
7164 (250b80067c1e1d8faa0c42fb572f721975b929c5).
7165
7166 * configure: Regenerate.
7167 * gnulib/Makefile.am: Update.
7168 * gnulib/Makefile.in: Regenerate.
7169 * gnulib/extra/update-copyright: Update.
7170 * gnulib/m4/gnulib-cache.m4: Update.
7171 * gnulib/m4/gnulib-comp.m4: Update.
7172
7173 2012-04-18 Tristan Gingold <gingold@adacore.com>
7174
7175 * configure.ac (aix): Put -lpthread into libs.
7176 * configure: Regenerate.
7177
7178 2012-04-18 Tom Tromey <tromey@redhat.com>
7179
7180 * linespec.c (convert_linespec_to_sals): Don't use
7181 SYMBOL_OBJ_SECTION.
7182 (compare_msymbols): Arguments are minsym_and_objfile, not
7183 minimal_symbol*. Don't use SYMBOL_OBJ_SECTION.
7184
7185 2012-04-18 Pedro Alves <palves@redhat.com>
7186
7187 Revert gnulib/ part of:
7188 2011-01-01 Joel Brobecker <brobecker@adacore.com>
7189 Copyright year update in most files (performed by copyright.sh).
7190
7191 2012-04-18 Jan Kratochvil <jan.kratochvil@redhat.com>
7192
7193 Fix 64-bit constants on 32-bit hosts.
7194 * dwarf2read.c (read_unsigned_leb128): Change declaration return type
7195 from unsigned long to ULONGEST.
7196 (read_signed_leb128): Change declaration return type from long to
7197 LONGEST.
7198 (dwarf2_const_value_attr): Change declaration parameter value from long
7199 to LONGEST.
7200 (dwarf2_compute_name): Change variable value from long to LONGEST.
7201 (read_unsigned_leb128): Change return type, variable result and some
7202 casts from unsigned long to ULONGEST.
7203 (read_signed_leb128): Change return type, variable result and some
7204 casts from long to LONGEST.
7205 (dwarf2_const_value_data, dwarf2_const_value_attr): Change parameter
7206 value from long to LONGEST.
7207 (dwarf2_const_value): Change variable value from long to LONGEST.
7208 * symmisc.c (print_symbol): Change SYMBOL_VALUE format strings to use
7209 plongest and hex_string.
7210 * symtab.h (struct general_symbol_info): Change ivalue from long to
7211 LONGEST, remove the comment.
7212 * tracepoint.c (validate_actionline, collect_symbol, scope_info):
7213 Change SYMBOL_VALUE format strings to use plongest and hex_string.
7214
7215 2012-04-18 Siddhesh Poyarekar <siddhesh@redhat.com>
7216
7217 PR symtab/7259:
7218 * ada-exp.y (convert_char_literal): Use TYPE_FIELD_ENUMVAL.
7219 * ada-lang.c (ada_discrete_type_high_bound)
7220 (ada_discrete_type_low_bound): Fix function comment. Use
7221 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
7222 (ada_identical_enum_types_p): Use TYPE_FIELD_ENUMVAL.
7223 (pos_atr, value_val_atr): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
7224 * ada-typeprint.c (print_enum_type): Change variable lastval to LONGEST.
7225 Use TYPE_FIELD_ENUMVAL.
7226 * ada-valprint.c (print_optional_low_bound, ada_print_scalar)
7227 (ada_val_print_1): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
7228 * c-typeprint.c (c_type_print_base): Move variable lastval to inner
7229 block, change it to LONGEST. Use TYPE_FIELD_ENUMVAL for
7230 TYPE_CODE_ENUM.
7231 * coffread.c (coff_read_enum_type): Use SET_FIELD_ENUMVAL.
7232 * dwarf2read.c (process_enumeration_scope): Likewise.
7233 * gdb-gdb.py (TypeFlagsPrinter): Use field.enumval instead of
7234 field.bitpos.
7235 (class StructMainTypePrettyPrinter): Support also
7236 FIELD_LOC_KIND_ENUMVAL.
7237 * gdbtypes.c (get_discrete_bounds): Use TYPE_FIELD_ENUMVAL for
7238 TYPE_CODE_ENUM.
7239 (recursive_dump_type): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
7240 (copy_type_recursive): Support also FIELD_LOC_KIND_ENUMVAL.
7241 * gdbtypes.h (enum field_loc_kind): New FIELD_LOC_KIND_ENUMVAL.
7242 (struct main_type.flds_bnds.fields.loc): Adjust bitpos comment. New
7243 field enumval.
7244 (struct main_type.flds_bnds.bields): Adjust loc_kind and bitsize to
7245 accommodate enumval.
7246 (struct call_site): Adjust loc_kind to accommodate enumval.
7247 (FIELD_ENUMVAL, FIELD_ENUMVAL_LVAL, SET_FIELD_ENUMVAL)
7248 (TYPE_FIELD_ENUMVAL): New macros.
7249 * m2-typeprint.c (m2_enum): Use TYPE_FIELD_ENUMVAL.
7250 * mdebugread.c (parse_symbol): Use TYPE_FIELD_ENUMVAL for
7251 TYPE_CODE_ENUM.
7252 * p-typeprint.c (pascal_type_print_base): Likewise.
7253 * python/lib/gdb/printing.py (class FlagEnumerationPrinter): Use
7254 enumval.
7255 * python/lib/gdb/types.py (make_enum_dict): Likewise.
7256 * python/py-type.c (convert_field): New variable addrstring. Use
7257 TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM.
7258 (check_types_equal): Support also FIELD_LOC_KIND_ENUMVAL.
7259 * stabsread.c (read_enum_type): Use SET_FIELD_ENUMVAL.
7260 * typepint.c (print_type_scalar): Use TYPE_FIELD_ENUMVAL for
7261 TYPE_CODE_ENUM.
7262 * valprint.c (generic_val_print): Likewise.
7263
7264 2012-04-17 Doug Evans <dje@google.com>
7265
7266 * dwarf2read.c (lookup_signatured_type): Return NULL instead of 0.
7267
7268 * dwarf2read.c: Whitespace fixes.
7269 (lookup_signatured_type): Tweak comment.
7270 (get_die_type_at_offset): Fix comment.
7271
7272 2012-04-17 Joel Brobecker <brobecker@adacore.com>
7273
7274 * xcoffread.c (xcoff_secnum_to_sections): New function.
7275 (secnum_to_section, secnum_to_bfd_section): Reimplement
7276 using xcoff_secnum_to_sections. Rename "secnum" parameter
7277 into "n_scnum".
7278 (RECORD_MINIMAL_SYMBOL): Delete.
7279 (record_minimal_symbol): New function.
7280 (scan_xcoff_symtab): Replace uses of RECORD_MINIMAL_SYMBOL
7281 by call to record_minimal_symbol and set misc_func_recorded
7282 to 1. Set last_csect_sec to the XCOFF section index instead
7283 of GDB's section_offset index. Update calls to
7284 prim_record_minimal_symbol_and_info to pass the BFD section
7285 as well.
7286
7287 2012-04-17 Joel Brobecker <brobecker@adacore.com>
7288
7289 * xcoffread.c (read_xcoff_symtab): Delete variables
7290 last_csect_val and last_csect_sec and associated code.
7291
7292 2012-04-17 Doug Evans <dje@google.com>
7293
7294 * cleanups.c (make_my_cleanup,make_my_cleanup2): Make static.
7295 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
7296 * cleanups.h (make_my_cleanup,make_my_cleanup2): Delete
7297 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Delete.
7298
7299 * cleanups.h: New file.
7300 * cleanups.c: New file.
7301 * Makefile.in (SFILES): Add cleanups.c.
7302 (HFILES_NO_SRCDIR): Add cleanups.h.
7303 (COMMON_OBS): Add cleanups.o.
7304 * defs.h (struct cleanup): Moved to cleanups.h.
7305 (do_cleanups,do_final_cleanups): Ditto.
7306 (discard_cleanups,discard_final_cleanups): Ditto
7307 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
7308 (save_cleanups,save_final_cleanups): Ditto.
7309 (restore_cleanups,restore_final_cleanups): Ditto.
7310 (null_cleanup): Ditto.
7311 (make_my_cleanup,make_my_cleanup2): Ditto.
7312 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
7313 * utils.c (cleanup_chain,final_cleanup_chain): Moved to cleanups.c.
7314 (do_cleanups,do_final_cleanups): Ditto.
7315 (discard_cleanups,discard_final_cleanups): Ditto
7316 (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto.
7317 (save_cleanups,save_final_cleanups): Ditto.
7318 (restore_cleanups,restore_final_cleanups): Ditto.
7319 (null_cleanup): Ditto.
7320 (make_my_cleanup,make_my_cleanup2): Ditto.
7321 (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto.
7322
7323 * utils.c (make_cleanup_freeargv): Use make_cleanup instead of
7324 make_my_cleanup.
7325 (make_cleanup_dyn_string_delete): Ditto.
7326 (make_cleanup_ui_file_delete): Ditto.
7327 (make_cleanup_ui_out_redirect_pop): Ditto.
7328 (make_cleanup_free_section_addr_info): Ditto.
7329 (make_cleanup_restore_integer): Ditto.
7330 (make_cleanup_unpush_target): Ditto.
7331 (make_cleanup_value_free_to_mark): Ditto.
7332 (make_cleanup_value_free): Ditto.
7333 (make_cleanup_free_so): Ditto.
7334
7335 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
7336
7337 New option "set debug auto-load".
7338 * NEWS: New commands "set debug auto-load" and "show debug auto-load".
7339 * auto-load.c (debug_auto_load, show_debug_auto_load: New.
7340 (auto_load_safe_path_vec_update)
7341 (filename_is_in_auto_load_safe_path_vec): Call fprintf_unfiltered
7342 if DEBUG_AUTO_LOAD.
7343 (file_is_auto_load_safe): New parameters debug_fmt and ....
7344 Call fprintf_unfiltered if DEBUG_AUTO_LOAD.
7345 (source_gdb_script_for_objfile): Extend the file_is_auto_load_safe
7346 caller by explanatory string.
7347 (_initialize_auto_load): Register "set debug auto-load".
7348 * auto-load.h (file_is_auto_load_safe): New parameters debug_fmt
7349 and ....
7350 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
7351 (try_thread_db_load_from_dir): Extend the file_is_auto_load_safe caller
7352 by explanatory string.
7353 * main.c (captured_main): Likewise.
7354 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
7355 (source_section_scripts): Likewise.
7356
7357 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
7358
7359 New option "set auto-load safe-path".
7360 * NEWS: New commands "set auto-load safe-path"
7361 and "show auto-load safe-path".
7362 * auto-load.c: Include gdb_vecs.h, readline/tilde.h and completer.h.
7363 (auto_load_safe_path, auto_load_safe_path_vec)
7364 (auto_load_safe_path_vec_update, set_auto_load_safe_path)
7365 (show_auto_load_safe_path, add_auto_load_safe_path, filename_is_in_dir)
7366 (filename_is_in_auto_load_safe_path_vec, file_is_auto_load_safe): New.
7367 (source_gdb_script_for_objfile): New variable is_safe. Call
7368 file_is_auto_load_safe. Return if it is not.
7369 (struct loaded_script): New field loaded.
7370 (maybe_add_script): Add parameter loaded. Initialize SLOT with it.
7371 (print_script): Use LOADED indicator instead of FULL_PATH. Change
7372 output "Missing" to "No".
7373 (_initialize_auto_load): New variable cmd. Initialize
7374 auto_load_safe_path. Register "set auto-load safe-path",
7375 "show auto-load safe-path" and "add-auto-load-safe-path".
7376 * auto-load.h (maybe_add_script): Add parameter loaded.
7377 (file_is_auto_load_safe): New declaration.
7378 * config.in: Regenerate.
7379 * configure: Regenerate.
7380 * configure.ac: New parameters --with-auto-load-safe-path
7381 and --without-auto-load-safe-path.
7382 * linux-thread-db.c (try_thread_db_load_from_pdir_1)
7383 (try_thread_db_load_from_dir): Check file_is_auto_load_safe first.
7384 * main.c (captured_main): Check file_is_auto_load_safe for
7385 LOCAL_GDBINIT.
7386 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile): New
7387 variable is_safe. Call file_is_auto_load_safe. Return if it is not.
7388 (source_section_scripts): Call file_is_auto_load_safe. Return if it is
7389 not.
7390
7391 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
7392
7393 auto-load: Implementation.
7394 * NEWS: New descriptions for "info auto-load",
7395 "info auto-load gdb-scripts", "info auto-load python-scripts",
7396 "info auto-load local-gdbinit" and "info auto-load libthread-db".
7397 Deprecate "info auto-load-scripts", "set auto-load-scripts on|off"
7398 and "show auto-load-scripts". New description for "set auto-load",
7399 "show auto-load", "set auto-load gdb-scripts",
7400 "show auto-load gdb-scripts", "set auto-load python-scripts",
7401 "show auto-load python-scripts", "set auto-load local-gdbinit",
7402 "show auto-load local-gdbinit", "set auto-load libthread-db" and
7403 "show auto-load libthread-db".
7404 * auto-load.c: Remove include python/python-internal.h. Add includes
7405 exceptions.h, cli/cli-script.h, gdbcmd.h, cli/cli-decode.h and
7406 cli/cli-setshow.h.
7407 (GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile)
7408 (auto_load_gdb_scripts, show_auto_load_gdb_scripts): New.
7409 (gdbpy_global_auto_load): Rename to ...
7410 (global_auto_load): ... here.
7411 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
7412 (auto_load_local_gdbinit_loaded, show_auto_load_local_gdbinit)
7413 (script_language_gdb, source_gdb_script_for_objfile): New.
7414 (struct loaded_script): New field language.
7415 (hash_loaded_script_entry, eq_loaded_script_entry): Calculate also
7416 LANGUAGE.
7417 (maybe_add_script): Add parameter language. Drop redundant
7418 entry.full_path initialization. Initialize entry.language and
7419 (*slot)->language.
7420 (auto_load_objfile_script): Change parameter suffix to language.
7421 Remove the call of maybe_add_script.
7422 Call language->source_script_for_objfile.
7423 (load_auto_scripts_for_objfile, struct collect_matching_scripts_data):
7424 New.
7425 (collect_matching_scripts): Adjust it for
7426 struct collect_matching_scripts_data.
7427 (auto_load_info_scripts_pattern_nl): New variable.
7428 (info_auto_load_scripts): Rename to ...
7429 (auto_load_info_scripts): ... here, add parameter language. Adjust it
7430 for struct collect_matching_scripts_data.
7431 (info_auto_load_gdb_scripts, info_auto_load_local_gdbinit)
7432 (set_auto_load_cmd, auto_load_set_cmdlist_get, show_auto_load_cmd)
7433 (auto_load_show_cmdlist_get, info_auto_load_cmd)
7434 (auto_load_info_cmdlist_get): New.
7435 (_initialize_auto_load): Move add_info of "auto-load-scripts" to
7436 python/py-auto-load.c. New installment for "set auto-load gdb-scripts",
7437 "info auto-load gdb-scripts", "set auto-load local-gdbinit" and
7438 "info auto-load local-gdbinit".
7439 * auto-load.h (struct script_language): New.
7440 (gdbpy_global_auto_load): Rename to ...
7441 (global_auto_load): ... here.
7442 (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname)
7443 (auto_load_local_gdbinit_loaded): New declarations.
7444 (maybe_add_script): New parameter language.
7445 (auto_load_objfile_script): Change parameter suffix to language.
7446 (load_auto_scripts_for_objfile, auto_load_info_scripts_pattern_nl)
7447 (auto_load_info_scripts, auto_load_set_cmdlist_get)
7448 (auto_load_show_cmdlist_get, auto_load_info_cmdlist_get): New
7449 declarations.
7450 * linux-thread-db.c: Include auto-load.h and ctype.h.
7451 (auto_load_thread_db, show_auto_load_thread_db): New.
7452 (struct thread_db_info): New field filename.
7453 (delete_thread_db_info): Call xfree for FILENAME.
7454 (try_thread_db_load): Initialize FILENAME.
7455 (try_thread_db_load_from_pdir, try_thread_db_load_from_dir): Return
7456 if !AUTO_LOAD_THREAD_DB.
7457 (info_auto_load_libthread_db_compare, info_auto_load_libthread_db): New.
7458 (_initialize_thread_db): Install auto_load_thread_db
7459 as "set auto-load libthread-db" and install info_auto_load_libthread_db
7460 as "info auto-load libthread-db".
7461 * main.c (captured_main): Rename gdbpy_global_auto_load to
7462 global_auto_load. Initialize AUTO_LOAD_LOCAL_GDBINIT_PATHNAME and
7463 AUTO_LOAD_LOCAL_GDBINIT_LOADED.
7464 (print_gdb_help): Extend the help for 'local init file'.
7465 * python/py-auto-load.c: Remove a comment about gdb scripts extension.
7466 (GDBPY_AUTO_SECTION_NAME): Extend the comment it is Python specific.
7467 (auto_load_scripts): Rename to ...
7468 (auto_load_python_scripts): ... here, update the comment.
7469 (gdbpy_load_auto_script_for_objfile): New declaration.
7470 (show_auto_load_python_scripts, script_language_python)
7471 (gdbpy_load_auto_script_for_objfile): New.
7472 (source_section_scripts): Refactor the code.
7473 (load_auto_scripts_for_objfile): Rename to ...
7474 (gdbpy_load_auto_scripts_for_objfile): ... here, update the
7475 auto_load_objfile_script caller, drop GDBPY_GLOBAL_AUTO_LOAD checking.
7476 (info_auto_load_python_scripts): New.
7477 (gdbpy_initialize_auto_load): New variables cmd and cmd_name.
7478 Rename "set auto-load-scripts" to "set auto-load python-scripts".
7479 Register "set auto-load-scripts" as its deprecated alias. Register
7480 "info auto-load python-scripts". Register "info auto-load-scripts" as
7481 its deprecated alias.
7482 (load_auto_scripts_for_objfile): Rename to ...
7483 (gdbpy_load_auto_scripts_for_objfile): ... here.
7484 * python/python.h (load_auto_scripts_for_objfile): Rename to ...
7485 (gdbpy_load_auto_scripts_for_objfile): ... here.
7486
7487 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
7488
7489 auto-load: Move files.
7490 * Makefile.in (SFILES): Add auto-load.c.
7491 (HFILES_NO_SRCDIR): Add auto-load.h.
7492 (COMMON_OBS): Add auto-load.o.
7493 (distclean): Change .gdbinit for gdb-gdb.gdb.
7494 * auto-load.c: New file, with parts from python/py-auto-load.c.
7495 * auto-load.h: New file, with parts from python/python.h.
7496 * configure: Regenerate.
7497 * configure.ac (AC_OUTPUT): Change .gdbinit for gdb-gdb.gdb.
7498 * gdb-gdb.gdb.in: New file, renamed from gdbinit.in.
7499 * gdbinit.in: Remove file, rename it to gdb-gdb.gdb.in.
7500 * main.c: Include auto-load.h.
7501 * python/py-auto-load.c: Move include filenames.h, gdb_regex.h,
7502 command.h, observer.h and progspace.h to auto-load.c. Add include
7503 auto-load.h.
7504 (gdbpy_global_auto_load, struct auto_load_pspace_info)
7505 (struct loaded_script, auto_load_pspace_data)
7506 (auto_load_pspace_data_cleanup, get_auto_load_pspace_data)
7507 (hash_loaded_script_entry, eq_loaded_script_entry)
7508 (init_loaded_scripts_info, get_auto_load_pspace_data_for_loading)
7509 (maybe_add_script): Move to auto-load.c.
7510 (source_section_scripts): Change maybe_add_script parameters passing,
7511 use script_not_found_warning_print.
7512 (clear_section_scripts, auto_load_objfile_script)
7513 (auto_load_new_objfile, loaded_script_ptr)
7514 (DEF_VEC_P (loaded_script_ptr), collect_matching_scripts, print_script)
7515 (sort_scripts_by_name, info_auto_load_scripts): Move to auto-load.c.
7516 (gdbpy_initialize_auto_load): Move auto_load_pspace_data,
7517 auto_load_new_objfile and info_auto_load_scripts initizations to
7518 auto-load.c.
7519 * python/python.h (gdbpy_global_auto_load): Move to auto-load.h.
7520
7521 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
7522
7523 Code cleanup.
7524 * charset.c (find_charset_names): Remove variables ix and elt.
7525 Use free_char_ptr_vec.
7526 * elfread.c (build_id_to_debug_filename): New variables debugdir_vec,
7527 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
7528 debugdir_end. New variable debugdir_len.
7529 * gdb_vecs.h (free_char_ptr_vec, make_cleanup_free_char_ptr_vec)
7530 (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): New
7531 declarations.
7532 * progspace.c (clear_program_space_solib_cache): Remove variables ix
7533 and elt. Use free_char_ptr_vec.
7534 * source.c (add_path): Remove variables argv, arg and argv_index.
7535 New variables dir_vec, back_to, ix and name.
7536 Use dirnames_to_char_ptr_vec_append. Use freeargv instead of
7537 make_cleanup_freeargv. Remove variable separator. Simplify the code
7538 no longer expecting DIRNAME_SEPARATOR.
7539 (openp): Remove variable p, p1 and len. New variables dir_vec,
7540 back_to, ix and dir. Use dirnames_to_char_ptr_vec. Simplify the code
7541 no longer expecting DIRNAME_SEPARATOR.
7542 * symfile.c (find_separate_debug_file): New variables debugdir_vec,
7543 back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable
7544 debugdir_end.
7545 * utils.c (free_char_ptr_vec, do_free_char_ptr_vec)
7546 (make_cleanup_free_char_ptr_vec, dirnames_to_char_ptr_vec_append)
7547 (dirnames_to_char_ptr_vec): New functions.
7548
7549 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
7550
7551 Code cleanup.
7552 * source.c (add_path): Remove always true conditional 'p == 0' and
7553 unindent its code block.
7554
7555 2012-04-17 Pedro Alves <palves@redhat.com>
7556
7557 * gdbtypes.h (FIELD_BITPOS): Rename to ...
7558 (FIELD_BITPOS_LVAL): ... this.
7559 (FIELD_BITPOS): New.
7560 (SET_FIELD_BITPOS): Adjust to use FIELD_BITPOS_LVAL.
7561 * dwarf2read.c (dwarf2_add_field): Use SET_FIELD_BITPOS.
7562 * gdbtypes.c (append_composite_type_field_aligned): Adjust to use
7563 SET_FIELD_BITPOS.
7564 * gnu-v3-abi.c (build_gdb_vtable_type): Adjust to use
7565 SET_FIELD_BITPOS.
7566 * stabsread.c (read_cpp_abbrev, read_one_struct_field)
7567 (read_baseclasses): Adjust to use SET_FIELD_BITPOS.
7568 * target-descriptions.c (tdesc_gdb_type): Adjust to use
7569 SET_FIELD_BITPOS.
7570
7571 2012-04-17 Jan Kratochvil <jan.kratochvil@redhat.com>
7572
7573 Do not rely on FIELD_LOC_KIND_BITPOS being zero.
7574 * ada-lang.c (ada_template_to_fixed_record_type_1): Replace
7575 TYPE_FIELD_BITPOS used as lvalue by SET_FIELD_BITPOS.
7576 * gdbtypes.c (append_flags_type_flag): Likewise, twice.
7577 * jv-lang.c (java_link_class_type): Likewise, once.
7578 * stabsread.c (read_enum_type): Likewise.
7579
7580 2012-04-16 Yao Qi <yao@codesourcery.com>
7581
7582 * common/agent.c (agent_run_command): Add one more parameter `len'.
7583 Update callers.
7584 * common/agent.h: Update declaration.
7585 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
7586 Update.
7587 (linux_child_static_tracepoint_markers_by_strid): Ditto.
7588
7589 2012-04-14 Anton Gorenkov <xgsa@yandex.ru>
7590
7591 PR mi/13393
7592 * value.c (value_actual_type): New function.
7593 * value.h (value_actual_type): New declaration.
7594 * varobj.c (update_type_if_necessary): New function.
7595 (varobj_create): Call value_actual_type instead of
7596 value_type.
7597 (install_dynamic_child): distinct changed and type changed MI variable
7598 objects.
7599 (update_dynamic_varobj_children): Updated for install_dynamic_child
7600 change. All callers updated.
7601 (varobj_update): Support for MI variable object type change if
7602 the value changed and RTTI is used to determine the type.
7603 (create_child_with_value): Call value_actual_type instead of
7604 value_type.
7605 (adjust_value_for_child_access): Extended with a new parameter which
7606 specify whether the given value should be casted to enclosing type.
7607 All callers updated.
7608
7609 2012-04-14 Yao Qi <yao@codesourcery.com>
7610
7611 Import gnulib module inttypes from git
7612 (250b80067c1e1d8faa0c42fb572f721975b929c5)
7613 * Makefile.in (HFILES_NO_SRCDIR): Add gnulib/inttypes.in.h.
7614 (aclocal_m4_deps): Add gnulib/m4/inttypes.m4 and
7615 gnulib/m4/inttypes-pri.m4
7616 * aclocal.m4, config.in, configure: Regenerated.
7617 * gnulib/Makefile.am: Update.
7618 * gnulib/Makefile.in: Update.
7619 * gnulib/m4/gnulib-cache.m4: Update.
7620 * gnulib/m4/gnulib-comp.m4: Update.
7621 * gnulib/inttypes.in.h: New.
7622 * gnulib/m4/inttypes-pri.m4: New.
7623 * gnulib/m4/inttypes.m4: New.
7624
7625 2012-04-13 Luis Machado <lgustavo@codesourcery.com>
7626
7627 * infrun.c (resume): Update PC address to the real PC after
7628 preparing to do displaced stepping.
7629
7630 2012-04-12 Doug Evans <dje@google.com>
7631
7632 * dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.
7633 All callers updated.
7634
7635 2012-04-12 Mark Kettenis <kettenis@gnu.org>
7636
7637 * i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype.
7638
7639 2012-04-12 Doug Evans <dje@google.com>
7640
7641 * dwarf2read.c (create_all_type_units): Renamed from
7642 create_debug_types_hash_table. All callers updated.
7643
7644 * dwarf2read.c (create_signatured_type_table_from_index): Rename
7645 local type_sig to sig_type, type_offset to type_offset_in_tu.
7646 (hash_signatured_type): Renamed from hash_type_signature,
7647 all callers updated.
7648 (eq_signatured_type): Renamed from eq_type_signature,
7649 all callers updated.
7650 (create_debug_types_hash_table): Rename local type_sig to sig_type.
7651 (process_enumeration_scope): Ditto.
7652 (lookup_signatured_type_at_offset): Ditto.
7653 (load_full_type_unit, read_signatured_type): Ditto.
7654
7655 2012-04-12 Yao Qi <yao@codesourcery.com>
7656
7657 * remote.c (async_remote_interrupt): Correct function name in
7658 debug message.
7659 (async_remote_interrupt_twice): Ditto.
7660
7661 2012-04-11 Yuanhui Zhang <asmwarrior@gmail.com>
7662
7663 * source.c (find_and_open_source): Consistently pass resulting
7664 full path through xfullpath.
7665
7666 2012-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7667
7668 Provide more specific displaced-stepping memory error message.
7669 * infrun.c (displaced_step_prepare): New variable status. Call
7670 target_read_memory instead of read_memory, provide more specific
7671 error message.
7672
7673 2012-04-11 Tristan Gingold <gingold@adacore.com>
7674
7675 PR gdb/13901
7676 * darwin-nat.c (darwin_execvp): Revert previous patch.
7677
7678 2012-04-11 Tristan Gingold <gingold@adacore.com>
7679
7680 PR gdb/13901
7681 * darwin-nat.c (darwin_resume_thread): Call darwin_set_sstep only
7682 in case of change.
7683
7684 2012-04-11 Tristan Gingold <gingold@adacore.com>
7685
7686 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
7687 warning.
7688
7689 2012-04-11 Siva Chandra Reddy <sivachandra@google.com>
7690
7691 New command 'explore' which helps explore values and types in
7692 scope.
7693 * NEWS: Add an entry about the new 'explore' command.
7694 * data-directory/Makefile.in: Add gdb/command/explore.py
7695 * python/lib/gdb/command/explore.py: Implemention of the 'explore'
7696 command using the GDB Python API.
7697
7698 2012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
7699
7700 * mips-tdep.c (mips_skip_pic_trampoline_code): Correct sign
7701 extension in jump target calculation.
7702
7703 2012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
7704
7705 * mips-tdep.c (mips32_next_pc): Handle JALX.
7706
7707 2012-04-10 Yao Qi <yao@codesourcery.com>
7708
7709 * Makefile.in (gnulib/Makefile): Remove duplicated dependency.
7710
7711 2012-04-10 Yao Qi <yao@codesourcery.com>
7712
7713 * Makefile.in (aclocal_m4_deps): Add gnulib/m4/gnulib-cache.m4
7714 and gnulib/m4/gnulib-tool.m4.
7715
7716 2012-04-10 Doug Evans <dje@google.com>
7717
7718 * dwarf2read.c (dwarf2_per_cu_data). Clarify comment.
7719 (load_partial_dies): Clarify comment.
7720 (find_partial_die): Support rereading type units.
7721 Clarify CU handling, if we know offset is in CU, don't search for the
7722 containing CU. Add comment regarding memory waste.
7723
7724 2012-04-10 H.J. Lu <hongjiu.lu@intel.com>
7725
7726 * features/Makefile (WHICH): Add i386/x32, i386/x32-linux,
7727 i386/x32-avx and i386/x32-avx-linux.
7728 (i386/x32-expedite): New.
7729 (i386/x32-linux-expedite): Likewise.
7730 (i386/x32-avx-expedite): Likewise.
7731 (i386/x32-avx-linux-expedite): Likewise.
7732 ($(outdir)/i386/x32.dat): Likewise.
7733 ($(outdir)/i386/x32-linux.dat): Likewise.
7734 ($(outdir)/i386/x32-avx.dat): Likewise.
7735 ($(outdir)/i386/x32-avx-linux.dat): Likewise.
7736
7737 * features/i386/x32-avx-linux.xml: New file.
7738 * features/i386/x32-avx.xml: Likewise.
7739 * features/i386/x32-core.xml: Likewise.
7740 * features/i386/x32-linux.xml: Likewise.
7741 * features/i386/x32.xml: Likewise.
7742
7743 * features/i386/x32-avx-linux.c: New. Generated.
7744 * features/i386/x32-avx.c: Likewise.
7745 * features/i386/x32-linux.c: Likewise.
7746 * features/i386/x32.c: Likewise.
7747 * regformats/i386/x32-avx-linux.dat: Likewise.
7748 * regformats/i386/x32-avx.dat: Likewise.
7749 * regformats/i386/x32-linux.dat: Likewise.
7750 * regformats/i386/x32.dat: Likewise.
7751
7752 2012-04-10 Tristan Gingold <gingold@adacore.com>
7753
7754 * darwin-nat.c (darwin_kill_inferior): Always use the no ptrace
7755 code to kill the inferior.
7756
7757 2012-04-09 Mark Kettenis <kettenis@gnu.org>
7758
7759 * ada-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7760 defines.
7761 * c-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7762 defines.
7763 * cp-name-parser.y (yyss, yysslim, yyssp, yystacksize, yyvs)
7764 (yyvsp): New defines.
7765 * f-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7766 defines.
7767 * jv-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7768 defines.
7769 * m2-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7770 defines.
7771 * objc-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7772 defines.
7773 * p-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New
7774 defines.
7775
7776 2012-04-09 Mark Kettenis <kettenis@gnu.org>
7777
7778 * sparc64-tdep.c (sparc64_store_arguments)
7779 (sparc64_store_arguments): Fix coding style.
7780
7781 2012-04-07 Mark Kettenis <kettenis@gnu.org>
7782
7783 * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
7784 complex floats, adjust some related comments and tighten a related
7785 assertion.
7786 (sparc64_extract_return_value): Handle complex floats.
7787
7788 2012-04-07 Doug Evans <dje@google.com>
7789
7790 * dwarf2read.c (load_partial_dies): Change condition to assert.
7791
7792 2012-04-06 Doug Evans <dje@google.com>
7793
7794 * amd64-tdep.c (amd64_analyze_prologue): Recognize both variations of
7795 "mov %rsp,%rbp".
7796
7797 2012-04-05 Kevin Buettner <kevinb@redhat.com>
7798
7799 * v850-tdep.c (E_NUM_OF_V850_REGS, E_NUM_OF_V850E_REGS): Fix
7800 fencepost error.
7801 (v850_frame_cache): Use gdbarch_num_regs() instead of E_NUM_REGS.
7802 (v850_gdbarch_init): Set `num_regs' as appropriate for the
7803 architecture.
7804
7805 2012-04-05 Keith Seitz <keiths@redhat.com>
7806
7807 * linespec.c (decode_compound): Remove.
7808 (enum offset_relative_sign): New enum.
7809 (struct line_offset): New struct.
7810 (struct linespec): New struct.
7811 (struct linespec_state): Move file_symtabs,
7812 user_filename, and user_function into struct linespec.
7813 Make result an anonymous struct holding vectors of
7814 symbolp and minsym_and_objfile_d.
7815 Add language member.
7816 (enum ls_token_type): New enum.
7817 (linespec_keywords): New array.
7818 (struct ls_token): New struct.
7819 (struct ls_parser): New struct.
7820 (linespec_lexer_lex_number): New function.
7821 (linespec_lexer_lex_keyword): New function.
7822 (is_ada_operator): New function.
7823 (skip_quote_char): New function.
7824 (copy_token_string): New function.
7825 (is_closing_quote_enclosed): New function.
7826 (find_parameter_list_end): New function.
7827 (linespec_lexer_lex_string): New function.
7828 (linespec_lexer_lex_one): New function.
7829 (linespec_lexer_consume_token): New function.
7830 (linespec_lexer_peek_token): New function.
7831 (cplusplus_error): Remove unused function.
7832 (find_methods): Update comment.
7833 (find_toplevel_char): Return const.
7834 (is_objc_method_format): Remove unused function.
7835 (find_toplevel_string): New function.
7836 (is_linespec_boundary): Remove.
7837 (symbol_not_found_error): New function.
7838 (find_method_overload_end): Remove function.
7839 (unexpected_linespec_error): New function.
7840 (keep_name_info): Remove.
7841 (linespec_parse_line_offset): New function.
7842 (linespec_parse_basic): New function.
7843 (canonicalize_linespec): New function.
7844 (decode_line_internal): Remove.
7845 (create_sals_line_offset): New function adapted from
7846 decode_all_digits.
7847 (convert_linespec_to_sals): New function.
7848 (parse_linespec): New function.
7849 (linespec_parser_new): New function.
7850 (linespec_state_destructor): Change parameter type to
7851 struct linespec_state *.
7852 Add language parameter.
7853 Remove freeing of moved members.
7854 (linespec_parser_delete): New function.
7855 (decode_line_full): Use parse_linespec and linespec_parser_new.
7856 (decode_line_1): Likewise.
7857 (decode_indirect): Rename to ...
7858 (linespec_expression_to_pc): ... this and rewrite
7859 to simply find CORE_ADDR, storing this result for later
7860 conversion to SALs.
7861 (locate_first_half): Remove.
7862 (deocde_objc): Add parameter LS.
7863 Initialize new struct collect_info members.
7864 Handle minimal symbols, too.
7865 (decode_compound): Delete.
7866 (lookup_prefix_sym): Rewrite.
7867 (compare_msymbols): New function.
7868 (find_method): Rewrite.
7869 Do not call cplusplus_error.
7870 (symtabs_from_filename): Rewrite.
7871 (collect_function_symbols): Delete.
7872 (find_function_symbols): Rewrite without ARGPTR-style
7873 processing.
7874 (decode_all_digits): Delete. (Rewritten as create_sals_line_offset.)
7875 (decode_dollar): Adapted and renamed to ...
7876 (linespec_parse_variable): ... this.
7877 (find_linespec_symbols): New function.
7878 (decode_label): Adapted and renamed to ...
7879 (find_label_symbols): ... this.
7880 (decode_digits_list_mode): Add and use LS argument.
7881 (decode_digits_ordinary): Likewise.
7882 (collect_symbols): Do not collect SALs, just symbols and msymbols.
7883 If in list mode, allow any symbol class. Otherwise, only
7884 permit LOC_BLOCK symbols.
7885 (minsym_found): Update comments.
7886 (search_minsyms_for_name): Do not convert the matching symbol
7887 into a SAL. Simply push the symbol and objfile into the
7888 result vector.
7889 (decode_variable): Delete. Contents adapted into
7890 find_linespec_symbols.
7891
7892 * cp-support.c (SKIP_SPACE): Remove.
7893 (operator_tokens): Remove unused global.
7894 (cp_validate_operator): Remove.
7895 * cp-support.h (cp_validate_operator): Remove declaration.
7896
7897 2012-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
7898
7899 * cp-valprint.c (cp_print_value_fields): Check valprint_check_validity
7900 for TYPE_VPTR_FIELDNO.
7901 * valprint.c (valprint_check_validity): Make it global, move the
7902 function comment ...
7903 * value.h (valprint_check_validity): ... to this new declaration.
7904
7905 2012-04-02 Tristan Gingold <gingold@adacore.com>
7906
7907 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Use
7908 the STATE32 api for i386 state.
7909 (i386_darwin_store_inferior_registers): Likewise.
7910
7911 2012-04-02 Tristan Gingold <gingold@adacore.com>
7912
7913 * i386-darwin-tdep.c (i386_darwin_thread_state_reg_offset): Fix
7914 SS offset.
7915 * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
7916 format_string.
7917
7918 2012-04-02 Tristan Gingold <gingold@adacore.com>
7919
7920 PR gdb/13901
7921 * darwin-nat.c (darwin_execvp): Set binary preference.
7922
7923 2012-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7924
7925 * NEWS (set breakpoint condition-evaluation): Use imperative mood.
7926
7927 2012-03-30 Tom Tromey <tromey@redhat.com>
7928
7929 * python/python.c (gdbpy_decode_line): Move cleanup creation out
7930 of TRY_CATCH. Fix error handling.
7931 * python/py-value.c (convert_value_from_python): Move 'old'
7932 declaration to innermost scope.
7933
7934 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7935 Andrey Smirnov <andrew.smirnov@gmail.com>
7936
7937 -Wshadow warning fix.
7938 * ada-lang.c (ada_make_symbol_completion_list): Rename parameters
7939 "wild_match" and "encoded" into "wild_match_p" and "encoded_p".
7940 Adjust code accordingly.
7941
7942 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7943
7944 * ada-lang.c (symbol_completion_add): Rename parameter
7945 "encoded" into "encoded_p". Ajust code and documentation
7946 accordingly.
7947
7948 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7949 Andrey Smirnov <andrew.smirnov@gmail.com>
7950
7951 -Wshadow warning fix.
7952 * ada-lang.c (symbol_completion_add): Rename parameter
7953 "wild_match" into wild_match_p. Update code and documentation
7954 accordingly.
7955
7956 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7957
7958 * ada-lang.c (symbol_completion_match): Rename parameter
7959 "encoded" into "encoded_p". Ajust code and documentation
7960 accordingly.
7961
7962 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7963 Andrey Smirnov <andrew.smirnov@gmail.com>
7964
7965 -Wshadow warning fix.
7966 * ada-lang.c (symbol_completion_match): Rename parameter
7967 "wild_match" into "wild_match_p". Adjust code and function
7968 documentation accordingly.
7969
7970 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7971 Andrey Smirnov <andrew.smirnov@gmail.com>
7972
7973 -Wshadow warning fix.
7974 * ada-lang.c (ada_lookup_encoded_symbol): Rename parameter
7975 "symbol_info" into "info". Adjust code accordingly.
7976 (ada_lookup_symbol): Likewise.
7977
7978 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7979
7980 * ada-lang.c (ada_lookup_symbol_list): Minor reformatting
7981 of this function's documentation.
7982
7983 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7984 Andrey Smirnov <andrew.smirnov@gmail.com>
7985
7986 -Wshadow warning fix.
7987 * ada-lang.c (ada_lookup_symbol_list): Rename "wild_match"
7988 variable into "wild_match_p". Adjust code accordingly.
7989
7990 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7991 Andrey Smirnov <andrew.smirnov@gmail.com>
7992
7993 -Wshadow warning fix.
7994 * ada-lang.c (ada_add_local_symbols): Rename "wild_match"
7995 parameter into "wild_match_p". Adjust code accordingly.
7996 Document this parameter in the function description.
7997
7998 2012-03-29 Joel Brobecker <brobecker@adacore.com>
7999 Andrey Smirnov <andrew.smirnov@gmail.com>
8000
8001 -Wshadow warning fix.
8002 * ada-lang.c (add_symbols_from_enclosing_procs): Rename
8003 "wild_match" parameter to "wild_match_p" (-Wshadow).
8004
8005 2012-03-29 Joel Brobecker <brobecker@adacore.com>
8006
8007 * ada-lang.c (ada_lookup_simple_minsym): Remove trailing spaces
8008 in function documentation.
8009
8010 2012-03-29 Joel Brobecker <brobecker@adacore.com>
8011 Andrey Smirnov <andrew.smirnov@gmail.com>
8012
8013 -Wshadow warning fix.
8014 * ada-lang.c (ada_lookup_simple_minsym): Rename wild_match local
8015 variable into wild_match_p. Adjust code accordingly.
8016
8017 2012-03-29 Joel Brobecker <brobecker@adacore.com>
8018 Andrey Smirnov <andrew.smirnov@gmail.com>
8019
8020 * ada-valprint.c (ada_val_print_1): Move the code handling
8021 TYPE_CODE_ENUM inside its own lexical block. Declare
8022 variables len and val there, instead of in the function's
8023 top level block. Avoid declaring deref_val again in a way
8024 that shadows another variable of the same name declared
8025 in one of the up-level blocks. Just re-use the up-level
8026 variable instead.
8027
8028 2012-03-29 Joel Brobecker <brobecker@adacore.com>
8029
8030 * ada-lang.c (ada_lookup_encoded_symbol): Now returns void.
8031 Replace block_found argument by symbol_info. Adjust
8032 implementation accordingly. Add function documentation.
8033 (ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol.
8034 Fix documentation.
8035 * ada-lang.h (ada_lookup_encoded_symbol): Update declaration.
8036 * ada-exp.y (write_object_renaming): Adjust to new
8037 ada_lookup_encoded_symbol API.
8038
8039 2012-03-29 Joel Brobecker <brobecker@adacore.com>
8040
8041 * ada-lang.h (struct ada_symbol_info): Reformat. Improve
8042 documentation.
8043
8044 2012-03-28 Rathish C <rathish.c@kpitcummins.com>
8045
8046 * v850-tdep.c: Add the enum values for mpu and fpu registers.
8047 (v850_register_name): Add the mpu and fpu register names.
8048 (v850e_register_name): Add the mpu and fpu register names.
8049 (v850e2_register_name): New function.
8050 (v850_gdbarch_init): Add case for bfd_mach_v850e2 and
8051 bfd_mach_v850e2v3.
8052
8053 2012-03-28 Joel Brobecker <brobecker@adacore.com>
8054
8055 * NEWS: Add entry for Ada varobj support.
8056
8057 2012-03-28 Joel Brobecker <brobecker@adacore.com>
8058
8059 * varobj.c (default_value_is_changeable_p): New function,
8060 extracted from varobj_value_is_changeable_p. Add declaration.
8061 (ada_value_is_changeable_p): New function, extracted from
8062 varobj_value_is_changeable_p. Add declaration.
8063 (struct language_specific): New field "value_is_changeable_p".
8064 (languages): Add entries for new field.
8065 (varobj_create): Set language before calling install_new_value.
8066 (varobj_value_is_changeable_p): Reimplement to call the varobj's
8067 "value_is_changeable_p" language callback.
8068
8069 2012-03-28 Joel Brobecker <brobecker@adacore.com>
8070
8071 * ada-varobj.h, ada-varobj.c: New files.
8072 * Makefile.in (SFILES): Add ada-varobj.c.
8073 (HFILES_NO_SRCDIR): Add ada-varobj.h.
8074 (COMMON_OBS): Add ada-varobj.o.
8075
8076 2012-03-28 Joel Brobecker <brobecker@adacore.com>
8077
8078 * varobj.c (ada_value_has_mutated): Add declaration. New function.
8079 (struct language_specific): New field "value_has_mutated".
8080 (languages): Set field "value_has_mutated" in each entry of array.
8081 (varobj_value_has_mutated): New function.
8082 (varobj_udpdate): Add handling of type mutation.
8083 (value_of_root): Add handling of type mutation.
8084 (ada_value_has_mutated): New function.
8085
8086 2012-03-28 Pedro Alves <palves@redhat.com>
8087
8088 * ia64-linux-nat.c (supply_fpregset, ia64_linux_fetch_register):
8089 Always supply $fr0 as 0.0 and $fr1 as 1.0.
8090
8091 2012-03-28 Tom Tromey <tromey@redhat.com>
8092
8093 * python/py-inferior.c (infpy_read_memory): Remove cleanups and
8094 explicitly free 'buffer' on exit paths. Decref 'membuf_object'
8095 before returning.
8096
8097 2012-03-28 Tom Tromey <tromey@redhat.com>
8098
8099 * .dir-locals.el: New file.
8100
8101 2012-03-28 Pedro Alves <palves@redhat.com>
8102
8103 * ia64-linux-nat.c (u_offsets): Map IA64_EC_REGNUM to PT_AR_EC.
8104
8105 2012-03-28 Joel Brobecker <brobecker@adacore.com>
8106
8107 * ia64-linux-nat.c (ia64_linux_fetch_register): Add special
8108 handling for r0.
8109
8110 2012-03-27 Pedro Alves <palves@redhat.com>
8111
8112 Eliminate struct ui_stream.
8113
8114 * ui-out.h (struct ui_stream): Delete.
8115 (ui_out_field_stream): Adjust prototype.
8116 (ui_out_stream_new, ui_out_stream_delete)
8117 (make_cleanup_ui_out_stream_delete): Delete declarations.
8118 * ui-out.c (ui_out_field_stream): Change prototype to take a
8119 ui_file instead of a ui_stream. Adjust.
8120 (ui_out_stream_new, ui_out_stream_delete, do_stream_delete)
8121 (make_cleanup_ui_out_stream_delete): Delete.
8122 * breakpoint.c (print_breakpoint_location)
8123 (print_one_detail_ranged_breakpoint, print_it_watchpoint): Use
8124 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
8125 * disasm.c (dump_insns): Ditto.
8126 (do_mixed_source_and_assembly, do_assembly_only): Adjust
8127 prototype.
8128 (gdb_disassembly): Use ui_file/mem_fileopen instead of
8129 ui_stream/ui_out_stream_new.
8130 * infcmd.c (print_return_value): Ditto.
8131 * osdata.c (info_osdata_command): Don't allocate a local
8132 ui_stream.
8133 * stack.c (print_frame_arg, print_frame_args, print_frame): Use
8134 ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new.
8135 * tracepoint.c (print_one_static_tracepoint_marker): Don't
8136 allocate a local ui_stream.
8137 * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_file/mem_fileopen
8138 instead of ui_stream/ui_out_stream_new.
8139 (list_args_or_locals): Don't allocate a local ui_stream.
8140 * mi/mi-main.c (get_register, mi_cmd_data_evaluate_expression)
8141 (mi_cmd_data_read_memory): Use ui_file/mem_fileopen instead of
8142 ui_stream/ui_out_stream_new.
8143 * cli/cli-setshow.c (do_setshow_command): Ditto.
8144
8145 2012-03-27 Oza Pawandeep <oza.pawandeep@gmail.com>
8146
8147 * arm-linux-tdep.c (arm_linux_init_abi): Call
8148 set_gdbarch_process_record. Initialize `arm_swi_record' field.
8149 * arm-tdep.c (arm_process_record): New function.
8150 (deallocate_reg_mem): New function.
8151 (decode_insn): New function.
8152 (thumb_record_branch): New function.
8153 (thumb_record_ldm_stm_swi(): New function.
8154 (thumb_record_misc): New function.
8155 (thumb_record_ld_st_stack): New function.
8156 (thumb_record_ld_st_imm_offset): New function.
8157 (thumb_record_ld_st_reg_offset(): New function.
8158 (thumb_record_add_sub_cmp_mov): New function.
8159 (thumb_record_shift_add_sub): New function.
8160 (arm_record_coproc_data_proc): New function.
8161 (arm_record_coproc): New function.
8162 (arm_record_b_bl): New function.
8163 (arm_record_ld_st_multiple): New function.
8164 (arm_record_ld_st_reg_offset): New function.
8165 (arm_record_ld_st_imm_offset): New function.
8166 (arm_record_data_proc_imm): New function.
8167 (arm_record_data_proc_misc_ld_str): New function.
8168 (arm_record_extension_space): New function.
8169 (arm_record_strx): New function.
8170 (sbo_sbz): New function.
8171 (struct insn_decode_record): New structure for arm insn record.
8172 (REG_ALLOC): New macro for reg allocations.
8173 (MEM_ALLOC): New macro for memory allocations.
8174 * arm-tdep.h (struct gdbarch_tdep): New field 'arm_swi_record'.
8175
8176 2012-03-27 Andreas Schwab <schwab@linux-m68k.org>
8177
8178 * m68klinux-nat.c (fetch_register): Fix strict-aliasing violation.
8179 (store_register): Likewise.
8180
8181 2012-03-26 Oza Pawandeep <oza.pawandeep@gmail.com>
8182
8183 * MAINTAINERS (Write After Approval): Add myself to the list.
8184
8185 2012-03-25 Jan Kratochvil <jan.kratochvil@redhat.com>
8186
8187 * NEWS (set breakpoint condition-evaluation): Change "gdb" to "host".
8188 Describe also the option "auto".
8189
8190 2012-03-22 Richard Henderson <rth@redhat.com>
8191
8192 * sparc-linux-nat.c (_initialize_sparc_linux_nat): Fix prototype.
8193 * sparc-nat.c (sparc_xfer_wcookie): Make static.
8194
8195 2012-03-22 Richard Henderson <rth@redhat.com>
8196
8197 * jit.c (jit_read_code_entry): Compute alignment and offset of
8198 int64_t member before computing entry_size.
8199
8200 2012-03-22 Siva Chandra Reddy <sivachandra@google.com>
8201
8202 Python scripting: Add new method Value.referenced_value to
8203 gdb.Value which can dereference pointer as well as reference
8204 values.
8205 * NEWS: Add entry under 'Python scripting' about the new method
8206 Value.referenced_value on gdb.Value objects.
8207 * python/py-value.c (valpy_referenced_value): New function
8208 defining a new method on gdb.Value objects which can dereference
8209 pointer and reference values.
8210
8211 2012-03-22 Siva Chandra Reddy <sivachandra@google.com>
8212
8213 * MAINTAINERS (Write After Approval): Add myself to the list.
8214
8215 2012-03-21 Kevin Buettner <kevinb@redhat.com>
8216
8217 * symtab.c (skip_prologue_sal): Change test to check for "main()"
8218 in addition to "main".
8219
8220 2012-03-21 Joel Brobecker <brobecker@adacore.com>
8221
8222 * expression.h (op_name): Add declaration.
8223 * expprint.c (op_name): Remove declaration. Make non-static.
8224 * ax-gdb.c (gen_expr): Use op_name instead of op_string.
8225
8226 2012-03-21 Thomas Schwinge <thomas@codesourcery.com>
8227
8228 * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Use siginfo_t instead
8229 of struct siginfo.
8230 * arm-linux-nat.c (arm_linux_stopped_data_address): Likewise.
8231 * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise.
8232 * linux-nat.c (linux_nat_siginfo_fixup, siginfo_fixup)
8233 (linux_xfer_siginfo, linux_nat_set_siginfo_fixup)
8234 (linux_nat_get_siginfo): Likewise.
8235 * linux-nat.h (struct lwp_info, linux_nat_set_siginfo_fixup)
8236 (linux_nat_get_siginfo): Likewise.
8237 * linux-tdep.c (linux_get_siginfo_type): Likewise.
8238 * ppc-linux-nat.c (ppc_linux_stopped_data_address): Likewise.
8239 * procfs.c (gdb_siginfo_t): Likewise.
8240
8241 2012-03-21 Mike Frysinger <vapier@gentoo.org>
8242
8243 * .gitignore: Ignore more files.
8244
8245 2012-03-20 Pedro Alves <palves@redhat.com>
8246
8247 * remote.c (remote_start_remote): Clear `rs->starting_up' on early
8248 returns.
8249
8250 2012-03-20 Yao Qi <yao@codesourcery.com>
8251
8252 * amd64-tdep.c (amd64_displaced_step_copy_insn): Complete missing "}" in
8253 comment.
8254
8255 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
8256
8257 Code cleanupp: Use cu_offset and sect_offset compile time type checking.
8258 * dwarf2expr.c (add_piece, dwarf_get_base_type, execute_stack_op)
8259 (ctx_no_dwarf_call, ctx_no_get_base_type): Use cu_offset and
8260 sect_offset.
8261 * dwarf2expr.h (cu_offset, sect_offset): New types.
8262 (struct dwarf_expr_context_funcs) <dwarf_call>
8263 (struct dwarf_expr_context_funcs) <get_base_type>: Use cu_offset and
8264 sect_offset.
8265 (struct dwarf_expr_context) <len>: Improve the comment.
8266 (struct dwarf_expr_piece, ctx_no_dwarf_call, ctx_no_get_base_type): Use
8267 cu_offset and sect_offset.
8268 * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call)
8269 (dwarf_expr_get_base_type, needs_frame_dwarf_call)
8270 (dwarf2_compile_expr_to_ax, disassemble_dwarf_expression): Likewise.
8271 * dwarf2loc.h: Include dwarf2expr.h.
8272 (dwarf2_fetch_die_location_block, dwarf2_get_die_type): Use cu_offset
8273 and sect_offset.
8274 * dwarf2read.c (struct dwarf2_per_objfile) <debug_types_type_hash>:
8275 Improve the comment.
8276 (struct comp_unit_head, struct dwarf2_cu, struct dwarf2_per_cu_data)
8277 (struct signatured_type, struct line_header, struct partial_die_info)
8278 (struct die_info, find_partial_die, dwarf2_get_ref_die_offset)
8279 (lookup_signatured_type_at_offset, dwarf2_find_containing_comp_unit)
8280 (get_die_type_at_offset, create_cus_from_index)
8281 (create_signatured_type_table_from_index, dw2_get_file_names)
8282 (offset_in_cu_p, read_comp_unit_head, error_check_comp_unit_head)
8283 (read_and_check_comp_unit_head, read_and_check_type_unit_head)
8284 (create_debug_types_hash_table, process_psymtab_comp_unit)
8285 (load_partial_comp_unit, create_all_comp_units)
8286 (partial_die_parent_scope, partial_die_full_name, skip_one_die)
8287 (load_full_comp_unit, dwarf2_physname, read_import_statement)
8288 (inherit_abstract_dies, read_func_scope, read_call_site_scope)
8289 (dwarf2_add_member_fn, process_enumeration_scope, read_module_type)
8290 (read_typedef, die_hash, die_eq, read_full_die, dwarf2_read_abbrevs)
8291 (load_partial_dies, read_partial_die, find_partial_die_in_comp_unit)
8292 (find_partial_die, read_attribute_value, lookup_die_type)
8293 (dump_die_shallow, store_in_ref_table): Use cu_offset and sect_offset.
8294 (is_ref_attr): New function comment.
8295 (dwarf2_get_ref_die_offset): New function comment, new variable retval.
8296 Use cu_offset and sect_offset.
8297 (follow_die_offset, follow_die_ref, dwarf2_fetch_die_location_block)
8298 (dwarf2_get_die_type, follow_die_sig, lookup_signatured_type_at_offset)
8299 (load_full_type_unit, read_signatured_type, per_cu_header_read_in)
8300 (dwarf2_find_containing_comp_unit, struct dwarf2_offset_and_type)
8301 (offset_and_type_hash, offset_and_type_eq, set_die_type)
8302 (get_die_type_at_offset, partial_die_hash, partial_die_eq)
8303 (write_one_signatured_type, write_psymtabs_to_index): Use cu_offset and
8304 sect_offset.
8305
8306 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
8307
8308 Code cleanup.
8309 * python/py-auto-load.c (source_section_scripts): New variable back_to.
8310 Turn fclose and xfree calls into make_cleanup_fclose and make_cleanup
8311 with xfree.
8312 (auto_load_objfile_script): Turn fclose into make_cleanup_fclose.
8313
8314 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
8315
8316 * NEWS: Describe new options --init-command=FILE, -ix and
8317 --init-eval-command=COMMAND, -iex.
8318 * main.c (struct cmdarg): New enum items CMDARG_INIT_FILE and
8319 CMDARG_INIT_COMMAND.
8320 (captured_main): New enum items OPT_IX and OPT_IEX. Add
8321 "init-command", "init-eval-command", "ix" and "iex" to the variable
8322 long_options. Handle OPT_IX and OPT_IEX. Process them from CMDARG_VEC.
8323 New comment for CMDARG_FILE and CMDARG_COMMAND processing.
8324 (print_gdb_help): Describe --init-command=FILE, -ix and
8325 --init-eval-command=COMMAND, -iex.
8326
8327 2012-03-19 Jan Kratochvil <jan.kratochvil@redhat.com>
8328
8329 Code cleanup.
8330 * main.c (struct cmdarg): Move it here from main. Add more comments.
8331 (cmdarg_s, VEC (cmdarg_s)): New.
8332 (main): Move struct cmdarg from here. New variables cmdarg_vec and
8333 cmdarg_p. Remove variables cmdsize and ncmd and their initialization.
8334 Install cleanup for cmdarg_vec. Update filling for options 'x' and
8335 'X'. Replace cmdarg processing by cmdarg_vec processing. Remove xfree
8336 of CMDARG.
8337
8338 2012-03-19 Tom Tromey <tromey@redhat.com>
8339
8340 * gnu-v3-abi.c (gnuv3_print_vtable): Initialize 'result_vec'.
8341
8342 2012-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
8343
8344 PR symtab/13777
8345 * dwarf2read.c (process_full_comp_unit): Set LOCATIONS_VALID only for
8346 GCC >=4.5.
8347
8348 2012-03-16 Chris January <chris.january@allinea.com>
8349
8350 * tui-tui.win.c (tui_resize_all): Use erase and clearok instead
8351 of clear.
8352
8353 2012-03-16 Chris January <chris.january@allinea.com>
8354
8355 * source.c (add_path): Use memmove instead of strcpy because the
8356 strings overlap.
8357
8358 2012-03-16 Joel Brobecker <brobecker@adacore.com>
8359
8360 * value.h (set_value_parent): Add declaration.
8361 * value.c (set_value_parent): New function.
8362 (value_address): If VALUE->PARENT is not NULL, then use it as
8363 the base address instead of VALUE->LOCATION.address.
8364 * ada-lang.c (ada_value_primitive_packed_val): Keep V's address
8365 the same as OBJ's address. Adjust V's offset accordingly.
8366 Set V's parent.
8367
8368 2012-03-16 Gary Benson <gbenson@redhat.com>
8369
8370 PR breakpoints/10738
8371 * dwarf2read.c (use_deprecated_index_sections): New global.
8372 (struct partial_die_info): New member may_be_inlined.
8373 (read_partial_die): Set may_be_inlined where appropriate.
8374 (add_partial_subprogram): Add partial symbols for partial
8375 DIEs that may be inlined.
8376 (new_symbol_full): Add inlined subroutines to the current
8377 scope.
8378 (write_psymtabs_to_index): Bump version number.
8379 (dwarf2_read_index): Read only version 6 indices unless
8380 use_deprecated_index_sections is set.
8381 * linespec.c (symbol_and_data_callback): New structure.
8382 (iterate_inline_only): New function.
8383 (iterate_over_all_matching_symtabs): New argument
8384 "include_inline". If nonzero, also call the callback for
8385 symbols representing inlined subroutines.
8386 (lookup_prefix_sym): Pass extra argument to the above.
8387 (find_function_symbols): Likewise.
8388 (add_matching_symbols_to_info): Likewise.
8389 * NEWS: Mention that GDB can now set breakpoints on inlined
8390 functions.
8391
8392 2012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
8393
8394 * p-typeprint.c (pascal_type_print_method_args):
8395 Fix display of parameter of methods.
8396
8397 2012-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
8398
8399 * amd64-windows-nat.c (_initialize_amd64_windows_nat):
8400 Add missing prototype.
8401
8402 2012-03-16 Yao Qi <yao@codesourcery.com>
8403 Jan Kratochvil <jan.kratochvil@redhat.com>
8404
8405 Fix false compilation warning.
8406 * gnu-v3-abi.c (print_one_vtable): Initialize ADDR.
8407
8408 2012-03-15 Jonathan Larmour <jifl@eCosCentric.com>
8409 Pedro Alves <pedro@codesourcery.com>
8410
8411 * arm-tdep.c: Include "remote.h" and "features/arm-with-m-fpa-layout.c".
8412 (arm_register_g_packet_guesses): New function.
8413 (arm_gdbarch_init): Don't force a target description with
8414 registers when the executable is detected as M-profile. Instead
8415 set gdbarch->tdep->is_m. Register `g' packet guesses.
8416 (_initialize_arm_tdep): Initialize the new target description.
8417 * features/arm-with-m-fpa-layout.xml: New description.
8418 * features/arm-with-m-fpa-layout.c: New, generated.
8419
8420 2012-03-15 Joel Brobecker <brobecker@adacore.com>
8421
8422 * breakpoint.c (breakpoint_xfer_memory): Add assertion.
8423 Update function description.
8424 (insert_bp_location): Do not wipe bl->target_info out.
8425 * mem-break.c: #include "gdb_string.h".
8426 (default_memory_insert_breakpoint): Do not call target_read_memory
8427 with a pointer to the breakpoint's shadow_contents buffer. Use
8428 a local buffer instead.
8429 * m32r-tdep.c (m32r_memory_insert_breakpoint): Ditto.
8430
8431 2012-03-15 Tom Tromey <tromey@redhat.com>
8432
8433 * NEWS: Mention "info vtbl", not "info vtable".
8434 * cp-support.c (info_vtbl_command): Fix comment.
8435 (_initialize_cp_support): Fix text.
8436
8437 2012-03-15 Tom Tromey <tromey@redhat.com>
8438
8439 * cp-valprint.c (cp_print_value_fields): Use
8440 print_function_pointer_address for vtable slot.
8441
8442 2012-03-15 Tom Tromey <tromey@redhat.com>
8443
8444 * gnu-v3-abi.c (struct value_and_voffset): New.
8445 (hash_value_and_voffset, eq_value_and_voffset)
8446 (compare_value_and_voffset, compute_vtable_size)
8447 (print_one_vtable, gnuv3_print_vtable): New functions.
8448 (init_gnuv3_ops): Initialize 'print_vtable' field.
8449 * cp-support.c (info_vtbl_command): New function.
8450 (_initialize_cp_support): Add "info vtbl".
8451 * cp-abi.h (cplus_print_vtable): Declare.
8452 (struct cp_abi_ops) <print_vtable>: New field.
8453 * cp-abi.c (cplus_print_vtable): New function.
8454 * NEWS: Update.
8455
8456 2012-03-15 Tom Tromey <tromey@redhat.com>
8457
8458 * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to
8459 iterate_over_symbols.
8460
8461 2012-03-14 Doug Evans <dje@google.com>
8462
8463 * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr,
8464 DW_OP_GNU_parameter_ref.
8465
8466 2012-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8467
8468 Fix double prompt of 'interpreter-exec mi'.
8469 * mi/mi-interp.c (mi_execute_command_input_handler): New prototype.
8470 (mi_interpreter_resume): use it.
8471 (mi_execute_command_input_handler): New function.
8472 * mi/mi-main.c (mi_execute_command): Move prompt printing to
8473 mi_execute_command_input_handler.
8474
8475 2012-03-13 Josh Matthews <josh@joshmatthews.net> (tiny change)
8476
8477 * darwin-nat-info.c (_initialize_darwin_info_commands): Add
8478 prototype.
8479 (darwin_debug_port_info): Make static.
8480 * darwin-nat.c (_initialize_darwin_inferior): Add prototype.
8481 * machoread.c (_initialize_machoread): Add prototype.
8482 * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get)
8483 (i386_darwin_set_control, i386_darwin_get_control)
8484 i386_darwin_dr_set_addr, i386_darwin_get_addr)
8485 i386_darwin_get_status, i386_darwin_get_control):
8486 Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
8487
8488 2012-03-13 Joel Brobecker <brobecker@adacore.com>
8489
8490 * ax-gdb.c (gen_usual_unary): Remove special handling of
8491 enum and bool types.
8492
8493 2012-03-13 Joel Brobecker <brobecker@adacore.com>
8494
8495 * ax-gdb.c (gen_fetch): Add handling for TYPE_CODE_RANGE types.
8496
8497 2012-03-13 Joel Brobecker <brobecker@adacore.com>
8498
8499 * aix-thread.c (supply_fprs): Make more consistent with fill_fprs.
8500
8501 2012-03-13 Chris January <chris.january@allinea.com>
8502
8503 * aix-thread.c (fill_sprs): Store the floating point registers
8504 at the correct offsets into vals.
8505
8506 2012-03-13 Doug Evans <dje@google.com>
8507
8508 * NEWS: Mention symbol-reloading has been deleted.
8509 * symfile.c (symbol_reloading): Delete.
8510 (show_symbol_reloading): Delete.
8511 (_initialize_symfile): Delete set/show symbol-reloading.
8512
8513 * dwarf2read.c (load_partial_comp_unit): Defer adding cu to
8514 read_in_chain until we have successfully read it in.
8515 (load_full_comp_unit): Ditto.
8516 (read_signatured_type): Add comment.
8517
8518 2012-03-13 Chris January <chris.january@allinea.com>
8519
8520 * stabsread.c (fix_common_block): Change type of valu argument
8521 to CORE_ADDR.
8522
8523 2012-03-13 Chris January <chris.january@allinea.com>
8524
8525 * rs6000-tdep.c (skip_prologue): Support the oril r29, r1, 0x0
8526 instruction.
8527
8528 2012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
8529
8530 * common/linux-procfs.c (linux_proc_get_int): New, from
8531 linux_proc_get_tgid, change its LWPID type to pid_t, add parameter
8532 field.
8533 (linux_proc_get_tgid): Only call linux_proc_get_int.
8534 (linux_proc_get_tracerpid): New.
8535 (linux_proc_pid_has_state): New, from linux_proc_pid_is_zombie.
8536 (linux_proc_pid_is_stopped, linux_proc_pid_is_zombie): Only call
8537 linux_proc_pid_has_state.
8538 * common/linux-procfs.h (linux_proc_get_tracerpid): New declaration.
8539 * common/linux-ptrace.c: Include linux-procfs.h and buffer.h.
8540 (linux_ptrace_attach_warnings): New.
8541 * common/linux-ptrace.h (struct buffer, linux_ptrace_attach_warnings):
8542 New declaration.
8543 * linux-nat.c: Include exceptions.h, linux-ptrace.h and buffer.h.
8544 (linux_nat_attach): New variables ex, buffer, message and message_s.
8545 Wrap to_attach by TRY_CATCH and call linux_ptrace_attach_warnings.
8546
8547 2012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
8548
8549 * Makefile.in (linux-ptrace.o): New.
8550 * common/linux-procfs.c (linux_proc_pid_is_zombie): New,
8551 from linux-nat.c.
8552 * common/linux-procfs.h (linux_proc_pid_is_zombie): New declaration.
8553 * common/linux-ptrace.c: New file.
8554 * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-ptrace.o.
8555 * config/arm/linux.mh: Likewise.
8556 * config/i386/linux.mh: Likewise.
8557 * config/i386/linux64.mh: Likewise.
8558 * config/ia64/linux.mh: Likewise.
8559 * config/m32r/linux.mh: Likewise.
8560 * config/m68k/linux.mh: Likewise.
8561 * config/mips/linux.mh: Likewise.
8562 * config/pa/linux.mh: Likewise.
8563 * config/powerpc/linux.mh: Likewise.
8564 * config/powerpc/ppc64-linux.mh: Likewise.
8565 * config/powerpc/spu-linux.mh: Likewise.
8566 * config/s390/s390.mh: Likewise.
8567 * config/sparc/linux.mh: Likewise.
8568 * config/sparc/linux64.mh: Likewise.
8569 * config/xtensa/linux.mh: Likewise.
8570 * linux-nat.c (linux_lwp_is_zombie): Remove, move it to
8571 common/linux-procfs.c.
8572 (wait_lwp): Rename linux_lwp_is_zombie to linux_proc_pid_is_zombie.
8573
8574 2012-03-13 Hui Zhu <teawater@gmail.com>
8575 Pedro Alves <palves@redhat.com>
8576
8577 * breakpoint.c (init_breakpoint_sal): New flags parameter. Handle
8578 CREATE_BREAKPOINT_FLAGS_INSERTED.
8579 (create_breakpoint_sal, create_breakpoints_sal)
8580 (base_breakpoint_create_breakpoints_sal)
8581 (tracepoint_create_breakpoints_sal)
8582 (strace_marker_create_breakpoints_sal): New flags parameter. Pass
8583 down.
8584 (break_command_1, handle_gnu_v3_exceptions, trace_command)
8585 (ftrace_command, strace_command): Adjust.
8586 (create_tracepoint_from_upload): Pass
8587 CREATE_BREAKPOINT_FLAGS_INSERTED.
8588 * breakpoint.h (enum breakpoint_create_flags): New.
8589 (create_breakpoint): New flags parameter.
8590 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
8591 * python/py-breakpoint.c (bppy_init): Adjust.
8592 * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust.
8593 * spu-tdep.c (spu_catch_start): Adjust.
8594
8595 2012-03-13 Pedro Alves <palves@redhat.com>
8596 Hui Zhu <teawater@gmail.com>
8597 Yao Qi <yao@codesourcery.com>
8598
8599 * remote.c (struct remote_state): New field `starting_up'.
8600 (remote_start_remote): Set and clear it.
8601 (remote_can_download_tracepoint): If starting up, return false.
8602
8603 2012-03-13 Yao Qi <yao@codesourcery.com>
8604
8605 * inferior.h (struct inferior): Remove fields any_syscall_count,
8606 syscalls_counts and total_syscalls_count. Move them to new
8607 struct catch_syscall_inferior_data in breakpoint.c.
8608 * breakpoint.c: Call DEF_VEC_I(int).
8609 (struct catch_syscall_inferior_data): New.
8610 (get_catch_syscall_inferior_data): New.
8611 (catch_syscall_inferior_data_cleanup): New.
8612 (insert_catch_syscall): Update to access data in
8613 struct catch_syscall_inferior_data.
8614 (insert_catch_syscall): Likewise.
8615 (remove_catch_syscall): Likewise.
8616 (remove_catch_syscall): Likewise.
8617 (is_syscall_catchpoint_enabled): Likewise.
8618 (add_catch_command): Likewise.
8619 (_initialize_breakpoint): Register cleanup.
8620 * breakpoint.h: Removed DEF_VEC_I(int).
8621 * dwarf2loc.c: Call DEF_VEC_I(int).
8622 * mi/mi-main.c: Likewise.
8623
8624 2012-03-12 Mark Kettenis <kettenis@gnu.org>
8625
8626 * inf-ptrace.c (inf_ptrace_post_attach): Make static.
8627
8628 2012-03-12 Chris January <chris.january@allinea.com>
8629
8630 * aix-thread.c (_initialize_aix_thread): Add prototype.
8631 * rs6000-nat.c (_initialize_rs6000_nat): Ditto.
8632 * xcoffsolib.c (_initialize_xcoffsolib): Ditto.
8633
8634 2012-03-12 Joel Brobecker <brobecker@adacore.com>
8635
8636 * amd64bsd-nat.c: Move #include of "amd64bsd-nat.h" after
8637 include of "amd64-nat.h".
8638
8639 2012-03-12 Tom Tromey <tromey@redhat.com>
8640
8641 * buildsym.c (record_pending_block): Now static.
8642 * buildsym.h: (record_pending_block): Remove.
8643
8644 2012-03-12 Andreas Tobler <andreast@fgznet.ch>
8645
8646 * amd64bsd-nat.c: Include amd64bsd-nat.h.
8647
8648 2012-03-09 Tom Tromey <tromey@redhat.com>
8649
8650 * dwarf2read.c (struct dwarf2_cu) <checked_producer,
8651 producer_is_gxx_lt_4_6>: New fields.
8652 (producer_is_gxx_lt_4_6): Use and update producer cache fields.
8653
8654 2012-03-09 Tom Tromey <tromey@redhat.com>
8655
8656 * dwarf2read.c (dwarf2_attr): Avoid tail-recursive call.
8657
8658 2012-03-08 Joel Brobecker <brobecker@adacore.com>
8659
8660 * ravenscar-sparc-thread.c (_initialize_ravenscar_sparc): Add
8661 prototype.
8662
8663 2012-03-08 Joel Brobecker <brobecker@adacore.com>
8664
8665 * ravenscar-thread.c (_initialize_ravenscar): Add prototype.
8666
8667 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8668
8669 Fix -Wmissing-prototypes build.
8670 * arm-linux-nat.c (get_thread_id): Make it static.
8671 * xtensa-linux-nat.c (get_thread_id): Likewise.
8672
8673 2012-03-08 Joel Brobecker <brobecker@adacore.com>
8674
8675 * server.c (process_point_options): If a conditional expression
8676 is found, only print a message if remote_debug is nonzero.
8677
8678 2012-03-08 Luis Machado <lgustavo@codesourcery.com>
8679
8680 * ax-gdb.c (gen_fetch): Fail gracefully and use error instead
8681 of internal error for unknown/unsupported types.
8682
8683 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8684
8685 Fix CU relative vs. absolute DIE offsets.
8686 * dwarf2loc.h (dwarf2_fetch_die_location_block): Rename parameter
8687 offset to offset_in_cu.
8688 * dwarf2read.c (process_enumeration_scope): Add CU offset to
8689 TYPE_OFFSET.
8690 (dwarf2_fetch_die_location_block): Rename parameter offset to
8691 offset_in_cu. New variable offset, add CU offset to OFFSET_IN_CU.
8692
8693 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8694
8695 * libunwind-frame.c: Rename to ...
8696 * ia64-libunwind-tdep.c: ... here.
8697 * libunwind-frame.h: Rename to ...
8698 * ia64-libunwind-tdep.h: ... here.
8699 * Makefile.in (HFILES_NO_SRCDIR): Rename libunwind-frame.h to
8700 ia64-libunwind-tdep.h.
8701 (ALLDEPFILES): Rename libunwind-frame.c to ia64-libunwind-tdep.c.
8702 * README (--with-libunwind): Rename to ...
8703 (--with-libunwind-ia64): ... here, note it is ia64 specific now.
8704 * config.in: Regenerate.
8705 * configure: Regenerate.
8706 * configure.ac: New option --with-libunwind-ia64, make the
8707 AS_HELP_STRING ia64 specific. Deprecate option --with-libunwind.
8708 Remove AC_DEFINE for HAVE_LIBUNWIND.
8709 * ia64-libunwind-tdep.c: Make the file top comment ia64 specific.
8710 Rename libunwind-frame.h #include to ia64-libunwind-tdep.h.
8711 Rename libunwind-frame in the general comment.
8712 * ia64-libunwind-tdep.h: Make the file top comment ia64 specific.
8713 Rename symbol LIBUNWIND_FRAME_H to IA64_TDEP_LIBUNWIND_FRAME_H.
8714 Move forward declarations inside #ifndef. Rename libunwind-frame in
8715 the general comment.
8716 * ia64-tdep.c: Rename libunwind-frame.h #include to
8717 ia64-libunwind-tdep.h.
8718 (ia64_gdb2uw_regnum, ia64_uw2gdb_regnum, ia64_is_fpreg)
8719 (ia64_libunwind_descr): Rename libunwind-frame to
8720 ia64-libunwind-tdep in these function comments.
8721 * ia64-tdep.h: Rename libunwind-frame.h #include to
8722 ia64-libunwind-tdep.h.
8723 * ia64-vms-tdep.c (ia64_vms_libunwind_descr): Rename libunwind-frame to
8724 ia64-libunwind-tdep in that data comment.
8725
8726 2012-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8727
8728 * libunwind-frame.h (struct frame_unwind): New declaration.
8729
8730 2012-03-08 Joel Brobecker <brobecker@adacore.com>
8731
8732 * breakpoint.c (_initialize_breakpoint): Fix error in help of
8733 "set breakpoint condition-evaluation" command.
8734
8735 2012-03-08 Tristan Gingold <gingold@adacore.com>
8736
8737 * sparc-stub.c: Move to stubs/
8738 * sh-stub.c: Likewise.
8739 * m68k-stub.c: Likewise.
8740 * m32r-stub.c: Likewise.
8741 * i386-stub.c: Likewise.
8742
8743 2012-03-08 Andreas Schwab <schwab@linux-m68k.org>
8744
8745 * m68klinux-tdep.c (m68k_linux_init_abi): Register
8746 linux_get_siginfo_type.
8747
8748 * m68klinux-nat.c: Include "gdb_proc_service.h".
8749 (PTRACE_GET_THREAD_AREA): Define.
8750 (ps_get_thread_area): New function.
8751
8752 2012-03-08 Yao Qi <yao@codesourcery.com>
8753
8754 * remote.c (remote_get_noisy_reply): Replace `sprintf' with
8755 `xsnprintf'.
8756 (remote_query_attached): Likewise.
8757 (remote_static_tracepoint_marker_at): Likewise.
8758 (remote_set_permissions): Likewise.
8759 (remote_detach_1, extended_remote_attach_1): Likewise.
8760 (send_g_packet, remote_vkill): Likewise.
8761 (extended_remote_disable_randomization): Likewise.
8762 (remote_add_target_side_condition): Likewise.
8763 (remote_insert_breakpoint): Likewise.
8764 (remote_remove_breakpoint): Likewise.
8765 (remote_insert_watchpoint): Likewise.
8766 (remote_remove_watchpoint): Likewise.
8767 (remote_insert_hw_breakpoint): Likewise.
8768 (remote_insert_hw_breakpoint): Likewise.
8769 (remote_remove_hw_breakpoint): Likewise.
8770 (remote_download_command_source): Likewise.
8771 (remote_download_tracepoint): Likewise.
8772 (remote_download_trace_state_variable): Likewise.
8773 (remote_disable_tracepoint): Likewise.
8774 (remote_trace_set_readonly_regions): Likewise.
8775 (remote_get_tracepoint_status): Likewise.
8776 (remote_trace_find): Likewise.
8777 (remote_get_trace_state_variable_value): Likewise.
8778 (remote_set_disconnected_tracing): Likewise.
8779 (remote_set_circular_trace_buffer): Likewise.
8780 (remote_get_min_fast_tracepoint_insn_len): Likewise.
8781 (remote_use_agent): Likewise.
8782 (remote_add_target_side_condition): Add one parameter BUF_SIZE.
8783 Update callers.
8784
8785 2012-03-07 Pedro Alves <palves@redhat.com>
8786
8787 * NEWS: Mention QProgramSignals.
8788 * inferior.h (update_signals_program_target): Declare.
8789 * infrun.c: (update_signals_program_target): New.
8790 (handle_command): Update the target of the new program signals
8791 array changes.
8792 * remote.c (PACKET_QProgramSignals): New enum.
8793 (last_program_signals_packet): New global.
8794 (remote_program_signals): New.
8795 (remote_start_remote): Update the target with the program signals
8796 list.
8797 (remote_protocol_features): Add entry for QPassSignals.
8798 (remote_open_1): Free anc clear last_program_signals_packet.
8799 (init_remote_ops): Install remote_program_signals.
8800 * target.c (update_current_target): Adjust.
8801 (target_program_signals): New.
8802 * target.h (struct target_ops) <to_program_signals>: New field.
8803 (target_program_signals): Declare.
8804
8805 2012-03-07 Pedro Alves <palves@redhat.com>
8806
8807 * NEWS: Add subtitle for new z0/z1 conditional breakpoint
8808 extensions.
8809
8810 2012-03-07 Andreas Schwab <schwab@linux-m68k.org>
8811
8812 * m68klinux-nat.c (getregs_supplies): Make static.
8813 (getfpregs_supplies): Likewise.
8814 (have_ptrace_getregs): Likewise.
8815
8816 2012-03-06 Joel Brobecker <brobecker@adacore.com>
8817
8818 * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
8819 in call to get_die_type_at_offset.
8820
8821 2012-03-06 Stan Shebs <stan@codesourcery.com>
8822
8823 * mi/mi-cmd-break.c: Enforce coding standards, fix comments.
8824 * mi/mi-cmd-disas.c: Ditto.
8825 * mi/mi-cmd-env.c: Ditto.
8826 * mi/mi-cmd-file.c: Ditto.
8827 * mi/mi-cmd-stack.c: Ditto.
8828 * mi/mi-cmd-target.c: Ditto.
8829 * mi/mi-cmd-var.c: Ditto.
8830 * mi/mi-cmds.c: Ditto.
8831 * mi/mi-cmds.h: Ditto.
8832 * mi/mi-console.c: Ditto.
8833 * mi/mi-getopt.c: Ditto.
8834 * mi/mi-getopt.h: Ditto.
8835 * mi/mi-interp.c: Ditto.
8836 * mi/mi-main.c: Ditto.
8837 * mi/mi-out.c: Ditto.
8838 * mi/mi-parse.c: Ditto.
8839 * mi/mi-parse.h: Ditto.
8840 * mi/mi-symbol-cmds.c: Ditto.
8841
8842 * mi/mi-getopt.h: Move mi_opt struct up.
8843 * mi/mi-main.c (captured_mi_execute_command): Remove redundant
8844 return.
8845 * mi/mi-out.c (_initialize_mi_out): Remove empty initialize.
8846
8847 2012-03-06 Tom Tromey <tromey@redhat.com>
8848
8849 * proc-service.c (ps_pglobal_lookup): Set the current program
8850 space.
8851
8852 2012-03-06 Pedro Alves <palves@redhat.com>
8853
8854 * gregset.h [HAVE_SYS_PROCFS_H]: Include <sys/procfs.h>.
8855
8856 2012-03-05 Joel Brobecker <brobecker@adacore.com>
8857
8858 * MAINTAINERS: List Maciej W. Rozycki as the mips maintainer.
8859
8860 2012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
8861
8862 Code cleanup.
8863 * common/linux-osdata.c (linux_common_core_of_thread): New function
8864 comment.
8865 * linux-nat.c (linux_nat_wait_1): Replace linux_nat_core_of_thread_1
8866 call by linux_common_core_of_thread.
8867 (linux_nat_core_of_thread_1): Remove.
8868 * linux-nat.h (linux_nat_core_of_thread_1): Remove declaration.
8869 * linux-thread-db.c: Include linux-osdata.h.
8870 (update_thread_core): Replace linux_nat_core_of_thread_1 call by
8871 linux_common_core_of_thread.
8872
8873 2012-03-05 Tom Tromey <tromey@redhat.com>
8874
8875 * value.c (value_primitive_field): Don't fetch contents for
8876 non-virtual bases.
8877
8878 2012-03-05 Tom Tromey <tromey@redhat.com>
8879
8880 * jv-valprint.c (java_value_print): Correctly compute 'obj_addr'.
8881
8882 2012-03-05 Andreas Arnez <arnez@linux.vnet.ibm.com>
8883
8884 * s390-nat.c: Include "gregset.h".
8885
8886 2012-03-05 Jan Kratochvil <jan.kratochvil@redhat.com>
8887
8888 * libunwind-frame.c (LIBUNWIND_SO): Change .7 to .8.
8889 [!LIBUNWIND_SO] (LIBUNWIND_SO_7): New #define.
8890 (libunwind_load): New variable so_error, use it for dlerror. Try to
8891 load also LIBUNWIND_SO_7.
8892
8893 2012-03-05 Pedro Alves <palves@redhat.com>
8894
8895 * i387-tdep.c (i387_supply_xsave): Assert the xsave section buffer
8896 is not NULL, and remove resulting dead code.
8897
8898 2012-03-05 Thomas Schwinge <thomas@codesourcery.com>
8899
8900 * sh-tdep.c (sh_skip_prologue): Provide an upper limit on the function
8901 prologue to sh_analyze_prologue.
8902 (sh_analyze_prologue): Make better use of such an upper limit, and
8903 generally be more cautious about accessing memory.
8904
8905 2012-03-05 Tom Tromey <tromey@redhat.com>
8906
8907 * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Rename from
8908 _initialize_ia64_hpux_tdep.
8909
8910 2012-03-05 Pedro Alves <palves@redhat.com>
8911
8912 PR gdb/13766
8913
8914 * i387-tdep.c (i387_supply_xsave): If we have an xsave buffer, and
8915 the register state is clear, supply explicit zero, instead of
8916 marking the register unavailable.
8917
8918 2012-03-05 Tristan Gingold <gingold@adacore.com>
8919
8920 * NEWS: Mention OpenVMS ia64 new target.
8921
8922 2012-03-05 Tristan Gingold <gingold@adacore.com>
8923
8924 * ia64-tdep.h: Include libunwind-frame.h and libunwind-ia64.h.
8925 (ia64_unw_accessors, ia64_unw_rse_accessors)
8926 (ia64_libunwind_descr): Declare.
8927 * ia64-vms-tdep.c: New file.
8928 * ia64-tdep.c (ia64_unw_accessors, ia64_unw_rse_accessors)
8929 (ia64_libunwind_descr): Make them public.
8930 * configure.tgt: Add ia64-*-*vms*.
8931 * Makefile.in (ALL_64_TARGET_OBS): Add ia64-vms-tdep.o
8932 (ALLDEPFILES): Add ia64-vms-tdep.c
8933
8934 2012-03-05 Tristan Gingold <gingold@adacore.com>
8935
8936 * target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB.
8937 * remote.c (PACKET_qXfer_uib): New enum value.
8938 (remote_protocol_features): Add entry for PACKET_qXfer_uib.
8939 (remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB.
8940 (_initialize_remote): Call add_packet_config_cmd for
8941 xfer:uib packet.
8942
8943 2012-03-05 Tristan Gingold <gingold@adacore.com>
8944
8945 * osabi.c (gdb_osabi_names): Add OpenVMS.
8946 (generic_elf_osabi_sniffer): Likewise.
8947 * defs.h (gdb_osabi): Add GDB_OSABI_OPENVMS.
8948
8949 2012-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
8950
8951 Removed unused code.
8952 * libunwind-frame.c (libunwind_frame_unwind)
8953 (libunwind_frame_base_address): Remove.
8954 * libunwind-frame.h (libunwind_frame_base_address): Remove declaration.
8955
8956 2012-03-04 Yao Qi <yao@codesourcery.com>
8957
8958 * common/agent.c (gdb_connect_sync_socket): Add _ markup and
8959 remove trailing new line.
8960 (agent_run_command, agent_run_command): Add _ markup.
8961 (agent_capability_check): Likewise.
8962
8963 2012-03-03 Jan Kratochvil <jan.kratochvil@redhat.com>
8964
8965 * breakpoint.c (set_condition_evaluation_mode): Set
8966 CONDITION_EVALUATION_MODE unconditionally.
8967
8968 2012-03-03 Yao Qi <yao@codesourcery.com>
8969
8970 * common/agent.c (agent_look_up_symbols): Add one parameter 'arg'.
8971 * common/agent.h: Update declaration.
8972 * inf-child.c (inf_child_use_agent): New.
8973 (inf_child_can_use_agent): New.
8974 (inf_child_target): Initialize fields `to_use_agent'
8975 and `to_can_use_agent'.
8976 * agent.c (agent_new_objfile): New.
8977 (_initialize_agent): Add agent_new_objfile to new_objfile
8978 observer.
8979
8980 * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
8981 New.
8982 (linux_target_install_ops): Initialize field
8983 `to_static_tracepoint_markers_by_strid'.
8984 * remote.c (free_current_marker): Move it to ...
8985 * tracepoint.c (free_current_marker): ... here. New.
8986 (cleanup_target_stop): New.
8987 * tracepoint.h: Declare free_current_marker.
8988 * NEWS: Add one entry about `info static-tracepoint-marker'.
8989
8990 2012-03-03 Yao Qi <yao@codesourcery.com>
8991
8992 * common/agent.c (agent_loaded_p): New.
8993 (agent_look_up_symbols): New global.
8994 * common/agent.h: Declare agent_loaded_p.
8995
8996 2012-03-03 Yao Qi <yao@codesourcery.com>
8997
8998 * common/agent.c (struct ipa_sym_addresses) <addr_capability>: New.
8999 (agent_capability_check, agent_capability_invalidate): New.
9000 (symbol_list): New array element.
9001 * common/agent.h (enum agent_capa): New.
9002 * target.c (target_pre_inferior): Call agent_capability_invalidate.
9003
9004 2012-03-03 Yao Qi <yao@codesourcery.com>
9005
9006 * target.h (struct target_ops) <to_use_agent>: New field.
9007 (struct target_ops) <to_can_use_agent>: New field.
9008 (target_use_agent, target_can_use_agent): New macro.
9009 * target.c (update_current_target): Update.
9010 * remote.c: New enum `PACKET_QAgent'.
9011 (remote_protocol_features): Add a new element.
9012 (remote_use_agent, remote_can_use_agent): New.
9013 (init_remote_ops): Initialize field `can_use_agent' with
9014 remote_can_use_agent. Intiailize field `use_agent' with
9015 remote_use_agent.
9016 * common/agent.c (use_agent): New global.
9017 * common/agent.h: Declare it.
9018 * tracepoint.c (info_static_tracepoint_markers_command): Add
9019 comment.
9020 * Makefile.in (SFILES): Add common/agent.c and agent.c.
9021 (COMMON_OBS): Add common/agent.o and agent.o
9022 (common-agent.o): New rule.
9023 * agent.c: New.
9024
9025 2012-03-03 Yao Qi <yao@codesourcery.com>
9026
9027 * common/agent.c: New.
9028 * common/agent.h: New.
9029 * configure.ac: Add `sys/socket.h' and `sys/un.h' to
9030 AC_CHECK_HEADERS.
9031 * configure, configh.in: Regenerated.
9032
9033 2012-03-02 Kevin Buettner <kevinb@redhat.com>
9034
9035 * sh-tdep.c (sh_frame_cache): Don't fetch the FPSCR register
9036 unless it exists for this architecture.
9037
9038 2012-03-02 Joel Brobecker <brobecker@adacore.com>
9039
9040 * language.h (struct language_defn): New "method" la_read_var_value.
9041 * findvar.c: #include "language.h".
9042 (default_read_var_value): Renames read_var_value. Rewrite
9043 function description.
9044 (read_var_value): New function.
9045 * value.h (default_read_var_value): Add prototype.
9046 * ada-lang.c (ada_read_renaming_var_value, ada_read_var_value):
9047 New functions.
9048 (ada_language_defn): Add entry for la_read_var_value.
9049 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, language.c,
9050 * m2-lang.c, objc-lang.c, opencl-lang.c, p-lang.c: Update
9051 language_defn structures to add entry for new la_read_var_value
9052 field.
9053
9054 2012-03-02 Tom Tromey <tromey@redhat.com>
9055 Pedro Alves <palves@redhat.com>
9056
9057 PR breakpoints/13776:
9058 * breakpoint.c (breakpoint_init_inferior): Delete step-resume
9059 breakpoints.
9060 (delete_longjmp_breakpoint_at_next_stop): New.
9061 * breakpoint.h (delete_longjmp_breakpoint_at_next_stop): Declare.
9062 * target.c (generic_mourn_inferior): Call mark_breakpoints_out
9063 before deleting the inferior. Add comments.
9064 * thread.c (clear_thread_inferior_resources): Don't delete lonjmp
9065 breakpoints immediately, but only on next stop. Move that code
9066 next to where we mark other breakpoints for deletion.
9067
9068 2012-03-02 Joel Brobecker <brobecker@adacore.com>
9069
9070 * mips-linux-nat.c (mips_linux_read_description): Add missing i18n
9071 marker.
9072 * mips-tdep.c (mips_linux_reg_names): Improve comment to avoid ARI
9073 violation.
9074
9075 2012-03-02 Pedro Alves <palves@redhat.com>
9076
9077 * linux-thread-db.c (attach_thread): Avoid in_thread_list call.
9078
9079 2012-03-02 Ulrich Weigand <uweigand@de.ibm.com>
9080
9081 Fix -Wmissing-prototypes build.
9082 * ppc-linux-nat.c (ppc_linux_get_hwcap): Make static.
9083 * remote-sim.c (gdbsim_has_all_memory): Likewise.
9084 (gdbsim_has_memory): Likewise.
9085
9086 2012-03-02 Yao Qi <yao@codesourcery.com>
9087
9088 Fix -Wmissing-prototypes build.
9089 * charset.c (phony_iconv_open): Make static.
9090 (phony_iconv_close, phony_iconv): Likewise.
9091 * i386-linux-nat.c (_initialize_i386_linux_nat): New prototype.
9092 * i386-windows-nat.c (_initialize_i386_windows_nat): New
9093 prototype.
9094 * mingw-hdep.c (_initialize_mingw_hdep): New prototype.
9095 * ser-mingw.c (create_select_thread): Make static.
9096 * windows-termcap.c (tgetent): New prototype.
9097 (tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise.
9098
9099 2012-03-02 Zhang Yuanhui <asmwarrior@gmail.com>
9100
9101 Fix -Wmissing-prototypes build.
9102 * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static.
9103 (_initialize_windows_nat, _initialize_check_for_gdb_ini)
9104 (_initialize_loadable): New prototypes.
9105
9106 2012-03-02 Doug Evans <dje@google.com>
9107
9108 * dwarf2read.c (load_full_comp_unit): Remove unnecessary reading of
9109 abbrev table, read_comp_unit will do it.
9110
9111 2012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
9112
9113 Fix -Wmissing-prototypes build.
9114 * alpha-tdep.c (alpha_deal_with_atomic_sequence): Make it static.
9115 * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): New prototype.
9116 * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Likewise.
9117 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code): Make it static.
9118 (_initialize_arm_symbian_tdep): New prototype.
9119 * arm-wince-tdep.c (arm_wince_skip_main_prologue): Make it static.
9120 * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): New prototype.
9121 * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Make it
9122 static.
9123 * lm32-tdep.c (_initialize_lm32_tdep): New prototype.
9124 * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): New
9125 prototype.
9126 * microblaze-tdep.c (microblaze_debug, microblaze_fetch_instruction)
9127 (microblaze_skip_prologue, microblaze_frame_cache): Make them static.
9128 * mips-linux-tdep.c (mips_linux_regset_from_core_section): Make it
9129 static.
9130 * moxie-tdep.c (moxie_process_record): Likewise.
9131 * remote-mips.c (mips_can_use_watchpoint, mips_insert_watchpoint)
9132 (mips_remove_watchpoint, mips_stopped_by_watchpoint): Make them static.
9133 * rl78-tdep.c (rl78_breakpoint_from_pc): Make it static.
9134 (_initialize_rl78_tdep): New prototype.
9135 * rx-tdep.c (rx_breakpoint_from_pc): Make it static.
9136 (_initialize_rx_tdep): New prototype.
9137 * solib-darwin.c (darwin_in_dynsym_resolve_code): Make it static.
9138 (_initialize_darwin_solib): New prototype.
9139 * solib-spu.c: Include solib-spu.h.
9140 (_initialize_spu_solib): New prototype.
9141 * spu-multiarch.c (_initialize_spu_multiarch): New prototype.
9142 * tic6x-tdep.c (tic6x_analyze_prologue, tic6x_skip_prologue)
9143 (tic6x_breakpoint_from_pc, tic6x_frame_unwind_cache)
9144 (tic6x_software_single_step): Make it static.
9145 (_initialize_tic6x_tdep): New prototype.
9146
9147 2012-03-02 Jan Kratochvil <jan.kratochvil@redhat.com>
9148
9149 Fix -Wmissing-prototypes build.
9150 * cris-tdep.c (cris_can_use_hardware_watchpoint)
9151 (cris_region_ok_for_watchpoint, cris_stopped_data_address): Remove.
9152
9153 2012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
9154
9155 Fix -Wmissing-prototypes build.
9156 * frv-tdep.c (frv_check_watch_resources, frv_stopped_data_address)
9157 (frv_have_stopped_data_address): Remove.
9158
9159 2012-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
9160
9161 Fix -Wmissing-prototypes build.
9162 * Makefile.in (HFILES_NO_SRCDIR): Add sh64-tdep.h.
9163 * sh-tdep.c: Include sh64-tdep.h.
9164 * sh-tdep.h (sh64_gdbarch_init, sh64_show_regs): Remove declarations.
9165 * sh64-tdep.c: Include sh64-tdep.h.
9166 * sh64-tdep.h: New file.
9167
9168 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
9169
9170 * mips-tdep.c (mips32_scan_prologue): Correct indentation.
9171
9172 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
9173
9174 * mips-tdep.c (mips_gdbarch_init): Only set pc_regnum and
9175 sp_regnum once the gdbarch_init_osabi hook has been called.
9176
9177 2012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
9178
9179 * mips-tdep.c (mips32_bc1_pc): New function.
9180 (mips32_next_pc): Handle BC1ANY2F, BC1ANY2T, BC1ANY4F, BC1ANY4T,
9181 BPOSGE32 and BPOSGE64 instructions.
9182 (deal_with_atomic_sequence): Likewise.
9183 (mips32_instruction_has_delay_slot): Likewise.
9184
9185 2012-03-01 Maciej W. Rozycki <macro@mips.com>
9186 Chris Dearman <chris@mips.com>
9187 Maciej W. Rozycki <macro@codesourcery.com>
9188 Joseph Myers <joseph@codesourcery.com>
9189
9190 * features/mips-dsp.xml: New file.
9191 * features/mips64-dsp.xml: New file.
9192 * features/mips-dsp-linux.xml: New file.
9193 * features/mips64-dsp-linux.xml: New file.
9194 * features/Makefile (WHICH): Add mips-dsp-linux and
9195 mips64-dsp-linux.
9196 (mips-dsp-expedite, mips64-dsp-expedite): New variables.
9197 * features/mips-dsp-linux.c: New file.
9198 * features/mips64-dsp-linux.c: New file.
9199 * regformats/mips-dsp-linux.dat: New file.
9200 * regformats/mips64-dsp-linux.dat: New file.
9201 * mips-linux-nat.c (mips_linux_register_addr): Handle DSP
9202 registers.
9203 (mips64_linux_register_addr): Likewise.
9204 (mips64_linux_regsets_fetch_registers): Likewise.
9205 (mips64_linux_regsets_store_registers): Likewise.
9206 (mips64_linux_fetch_registers): Update call to
9207 mips64_linux_regsets_fetch_registers.
9208 (mips64_linux_store_registers): Update call to
9209 mips64_linux_regsets_store_registers.
9210 (mips_linux_read_description): Probe for DSP registers.
9211 (_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux
9212 and initialize_tdesc_mips64_dsp_linux.
9213 * mips-linux-tdep.c (supply_gregset, mips64_supply_gregset):
9214 Remove padding of no longer used embedded register slots.
9215 * mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros.
9216 (MIPS_RESTART_REGNUM): Redefine enum value.
9217 * mips-tdep.c (mips_generic_reg_names): Remove trailing null
9218 strings.
9219 (mips_tx39_reg_names): Likewise.
9220 (mips_linux_reg_names): New array of register names for Linux
9221 targets.
9222 (mips_register_name): Check for a null pointer in
9223 mips_processor_reg_names and return an empty string.
9224 (mips_register_type): Exclude embedded registers for the IRIX
9225 and Linux ABIs.
9226 (mips_pseudo_register_type): Likewise. Use dynamic numbers to
9227 refer to FP registers, LO, HI, BadVAddr, Cause and PC. Handle
9228 DSP registers.
9229 (mips_stab_reg_to_regnum): Handle DSP accumulators.
9230 (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise.
9231 (mips_gdbarch_init): Likewise. Initialize internal register
9232 indices for the Linux ABI. Use dynamic numbers to refer to
9233 registers, as applicable, while parsing the target description.
9234 * mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets.
9235
9236 2012-03-01 Joel Brobecker <brobecker@adacore.com>
9237
9238 * frame.h (read_frame_register_unsigned): Fix typo in function
9239 description.
9240
9241 2012-03-01 Pedro Alves <palves@redhat.com>
9242
9243 * jit-reader.in [!__cplusplus]
9244 (GDB_DECLARE_GPL_COMPATIBLE_READER): Add missing backslash.
9245
9246 2012-03-01 Pedro Alves <palves@redhat.com>
9247
9248 * configure.ac (build_warnings): Add -Wmissing-prototypes.
9249 * configure: Regenerate.
9250
9251 2012-03-01 Pedro Alves <palves@redhat.com>
9252
9253 * amd64-linux-tdep.c (amd64_linux_record_signal): Make static.
9254 * breakpoint.c (create_exception_master_breakpoint, trace_command)
9255 (ftrace_command, strace_command): Make static.
9256 * d-lang.c (_initialize_d_language): Declare.
9257 * dwarf2expr.c (_initialize_dwarf2expr): Declare.
9258 * dwarf2loc.c (_initialize_dwarf2loc):
9259 * dwarf2read.c (process_psymtab_comp_unit): Make static.
9260 * exec.c (exec_get_section_table): Make static.
9261 * i386-linux-tdep.c (i386_linux_record_signal): Make static.
9262 * infcmd.c (ensure_valid_thread, ensure_not_tfind_mode): Make static.
9263 * inferior.c (remove_inferior_command, add_inferior_command)
9264 (clone_inferior_command): Make static.
9265 * linux-nat.c (linux_nat_thread_address_space)
9266 (linux_nat_core_of_thread): Make static.
9267 * linux-tdep.c (_initialize_linux_tdep): Declare.
9268 * objc-lang.c (_initialize_objc_lang): Declare.
9269 * opencl-lang.c (builtin_opencl_type, opencl_language_arch_info):
9270 Make static.
9271 (_initialize_opencl_language): Declare.
9272 * record.c (_initialize_record): Declare.
9273 * remote.c (demand_private_info, remote_get_tib_address)
9274 (remote_supports_cond_tracepoints)
9275 (remote_supports_fast_tracepoints, remote_get_tracepoint_status):
9276 Make static.
9277 * skip.c (_initialize_step_skip): Declare.
9278 * symtab.c (skip_prologue_using_lineinfo): Make static.
9279 * tracepoint.c (delete_trace_state_variable)
9280 (trace_variable_command, delete_trace_variable_command)
9281 (get_uploaded_tsv, find_matching_tracepoint_location)
9282 (find_matching_tsv, create_tsv_from_upload, get_traceframe_info):
9283 Make static.
9284 * value.c (pack_unsigned_long): Make static.
9285 * varobj.c (varobj_ensure_python_env): Make static.
9286 * windows-tdep.c (_initialize_windows_tdep): Declare.
9287 * xml-syscall.c (make_cleanup_free_syscalls_info): Make static.
9288
9289 2012-03-01 Pedro Alves <palves@redhat.com>
9290
9291 * linux-tdep.c (linux_has_shared_address_space): Make static. Add
9292 gdbarch parameter.
9293 (linux_init_abi): Install it as has_shared_address_space gdbarch
9294 callback.
9295
9296 2012-03-01 Pedro Alves <palves@redhat.com>
9297
9298 * observer.c (observer_test_first_notification_function)
9299 (observer_test_second_notification_function)
9300 (observer_test_third_notification_function): Add declarations.
9301
9302 2012-03-01 Pedro Alves <palves@redhat.com>
9303
9304 * common/signals.c (default_target_signal_to_host)
9305 (default_target_signal_from_host): Move ...
9306 * arch-utils.c: ... here.
9307 * arch-utils.h (default_target_signal_to_host)
9308 (default_target_signal_from_host): Declare.
9309
9310 * common/signals.c (target_signal_from_command): Move ...
9311 * infrun.c: ... here.
9312 * inferior.h (target_signal_from_command): Declare.
9313 * target.h (target_signal_from_command)
9314 (default_target_signal_from_host, default_target_signal_to_host):
9315 Delete declarations.
9316
9317 * common/signals.c (_initialize_signals): Delete.
9318
9319 2012-03-01 Pedro Alves <palves@redhat.com>
9320
9321 * jit-reader.in (plugin_is_GPL_compatible): Add declarations for
9322 both __cplusplus and !__cplusplus.
9323
9324 2012-03-01 Pedro Alves <palves@redhat.com>
9325
9326 * psymtab.c (find_and_open_source): Delete declaration.
9327 * source.c (find_and_open_source): Move comment ...
9328 * source.h (find_and_open_source): ... to this new declaration.
9329
9330 2012-03-01 Pedro Alves <palves@redhat.com>
9331
9332 * inline-frame.c: Include inline-frame.h.
9333
9334 2012-03-01 Pedro Alves <palves@redhat.com>
9335
9336 * tui/tui-data.c (set_gen_win_origin): Delete.
9337 * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration.
9338 * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete.
9339
9340 2012-03-01 Pedro Alves <palves@redhat.com>
9341
9342 * remote.c (encode_actions): Delete declaration.
9343 * tracepoint.c (encode_actions): Make extern.
9344 * tracepoint.h (encode_actions): Declare.
9345
9346 2012-03-01 Pedro Alves <palves@redhat.com>
9347
9348 * python/py-breakpoint.c: Include python.h.
9349 * python/py-continueevent.c (create_continue_event_object): Make
9350 static.
9351 * python/py-lazy-string.c (stpy_get_type): Make static.
9352 * python/py-newobjfileevent.c (create_new_objfile_event_object):
9353 Make static.
9354 * python/py-utils.c (unicode_to_target_python_string): Make
9355 static.
9356 * python/py-value.c: Include python.h.
9357
9358 2012-03-01 Pedro Alves <palves@redhat.com>
9359
9360 * inferior.c (delete_threads_of_inferior): Delete.
9361
9362 2012-03-01 Pedro Alves <palves@redhat.com>
9363
9364 Import fallback definitions from glibc.
9365
9366 * gdb_proc_service.h [!HAVE_PROC_SERVICE_H] (struct
9367 ps_prochandle): Forward declare.
9368 (ps_err_e): Use glibc's comments.
9369 [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread)
9370 (ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
9371 (ps_lsetfpregs, ps_getpid, ps_get_thread_area, ps_pglobal_lookup)
9372 (ps_pstop, ps_pcontinue, ps_lstop, ps_lcontinue, ps_lgetxregsize)
9373 (ps_lgetxregs, ps_lsetxregs, ps_plog): Declare.
9374 (struct ps_prochandle): Adjust comment.
9375
9376 2012-03-01 Pedro Alves <palves@redhat.com>
9377
9378 * ada-lang.c (ada_modulus_from_name): Delete.
9379 * ada-lex.l (lexer_init): Make static.
9380
9381 2012-03-01 Pedro Alves <palves@redhat.com>
9382
9383 PR gdb/13767
9384
9385 * frame.c (read_frame_register_unsigned): New.
9386 * frame.h (read_frame_register_unsigned): Declare.
9387 * i387-tdep.c (print_i387_status_word): New parameter `status_p'.
9388 Handle it.
9389 (print_i387_control_word): New parameter `control_p'. Handle it.
9390 (i387_print_float_info): Handle unavailable float registers.
9391
9392 2012-03-01 Keith Seitz <keiths@redhat.com>
9393
9394 * linespec.c (decode_line_2): Sort the list of methods
9395 alphabetically before presenting the user with a selection
9396 menu.
9397
9398 2012-03-01 Doug Evans <dje@google.com>
9399
9400 * dwarf2read.c (dwarf2_cu): Remove unused members has_form_ref_addr,
9401 has_namespace_info.
9402 (dwarf2_read_abbrevs): Remove corresponding initialization.
9403
9404 2012-03-01 Scott J. Goldman <scottjg@vmware.com>
9405
9406 * NEWS: Mention new python command class gdb.COMMAND_USER.
9407 * cli/cli-cmds.c (show_user): Print error when used on a python
9408 command.
9409 (init_cli_cmds): Update documentation strings for "show user" and
9410 "set/show max-user-call-depth" to clarify that it does not apply to
9411 python commands.
9412 * python/py-cmd.c (cmdpy_init): Treat class_user as a valid class in
9413 error check.
9414 (gdbpy_initialize_commands): Add COMMAND_USER as a constant in
9415 gdb python api.
9416 * top.c (execute_command): Only execute a user-defined command as a
9417 legacy macro if c->user_commands is set.
9418
9419 2012-03-01 Tom Tromey <tromey@redhat.com>
9420
9421 * valprint.h (struct generic_val_print_decorations): New.
9422 (generic_val_print): Declare.
9423 * valprint.c (generic_val_print): New function.
9424 * p-valprint.c (p_decorations): New global.
9425 (pascal_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM,
9426 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_RANGE, TYPE_CODE_INT,
9427 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ERROR, TYPE_CODE_UNDEF,
9428 TYPE_CODE_BOOL, TYPE_CODE_CHAR>: Call generic_val_print.
9429 * m2-valprint.c (m2_decorations): New global.
9430 (m2_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, TYPE_CODE_FUNC,
9431 TYPE_CODE_BOOL, TYPE_CODE_RANGE, TYPE_CODE_INT, TYPE_CODE_CHAR,
9432 TYPE_CODE_FLT, TYPE_CODE_METHOD, TYPE_CODE_VOID, TYPE_CODE_UNDEF,
9433 TYPE_CODE_ERROR>: Call generic_val_print.
9434 * f-valprint.c (f_decorations): New global.
9435 (f_val_print): Use print_function_pointer_address.
9436 <TYPE_CODE_REF, TYPE_CODE_FUNC, TYPE_CODE_CHAR, TYPE_CODE_FLAGS,
9437 TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ENUM, TYPE_CODE_RANGE,
9438 TYPE_CODE_BOOL, TYPE_CODE_COMPLEX, TYPE_CODE_UNDEF>: Call
9439 generic_val_print.
9440 * c-valprint.c (c_decorations): New global.
9441 (c_val_print) <TYPE_CODE_MEMBERPTR, TYPE_CODE_REF, TYPE_CODE_ENUM,
9442 TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_METHOD, TYPE_CODE_BOOL,
9443 TYPE_CODE_RANGE, TYPE_CODE_CHAR, TYPE_CODE_FLT,
9444 TYPE_CODE_DECFLOAT, TYPE_CODE_VOID, TYPE_CODE_ERROR,
9445 TYPE_CODE_UNDEF, TYPE_CODE_COMPLEX>: Call generic_val_print.
9446 * ada-valprint.c (ada_val_print_1) <TYPE_CODE_FLAGS>: Remove
9447 case.
9448
9449 2012-03-01 Tom Tromey <tromey@redhat.com>
9450
9451 * valprint.c (val_print): Update.
9452 * p-valprint (pascal_val_print): Return void.
9453 * p-lang.h (pascal_val_print): Return void.
9454 * m2-valprint.c (m2_val_print): Return void.
9455 * m2-lang.h (m2_val_print): Return void.
9456 * language.h (struct language_defn) <la_val_print>: Return void.
9457 * language.c (unk_lang_val_print): Return void.
9458 * jv-valprint.c (java_val_print): Return void.
9459 * jv-lang.h (java_val_print): Return void.
9460 * f-valprint.c (f_val_print): Return void.
9461 * f-lang.h (f_val_print): Return void.
9462 * d-valprint.c (d_val_print): Return void.
9463 (dynamic_array_type): Update.
9464 * d-lang.h (d_val_print): Return void.
9465 * c-valprint.c (c_val_print): Return void.
9466 * c-lang.h (c_val_print): Return void.
9467 * ada-valprint.c (ada_vada_val_print, ada_val_print_1): Return
9468 void.
9469 * ada-lang.h (ada_val_print): Return void.
9470
9471 2012-03-01 Tom Tromey <tromey@redhat.com>
9472
9473 * value.h (val_print): Return void.
9474 * valprint.c (val_print): Return void.
9475
9476 2012-03-01 Tom Tromey <tromey@redhat.com>
9477
9478 * value.h (common_val_print): Return void.
9479 * valprint.c (common_val_print): Return void.
9480
9481 2012-03-01 Tom Tromey <tromey@redhat.com>
9482
9483 * value.h (value_print): Return void.
9484 * valprint.c (value_print): Return void.
9485 * p-valprint.c (pascal_value_print): Return void.
9486 * p-lang.h (pascal_value_print): Return void.
9487 * language.h (struct language_defn) <la_value_print>: Return
9488 void.
9489 * language.c (unk_lang_value_print): Return void.
9490 * jv-valprint.c (java_value_print): Return void.
9491 * jv-lang.h (java_value_print): Return void.
9492 * f-valprint.c (c_value_print): Don't declare.
9493 Include c-lang.h.
9494 * c-valprint.c (c_value_print): Return void.
9495 * c-lang.h (c_value_print): Return void.
9496 * ada-valprint.c (ada_value_print): Return void.
9497 * ada-lang.h (ada_value_print): Return void.
9498
9499 2012-03-01 Tom Tromey <tromey@redhat.com>
9500
9501 * value.c (value_primitive_field): Handle virtual base classes.
9502
9503 2012-03-01 Tom Tromey <tromey@redhat.com>
9504
9505 * gdbtypes.h (struct vbase): Remove.
9506
9507 2012-03-01 Tom Tromey <tromey@redhat.com>
9508
9509 * c-valprint.c (print_function_pointer_address): Move...
9510 * valprint.c: ... here. Make non-static.
9511 * m2-valprint.c (print_function_pointer_address): Remove.
9512 * valprint.h (print_function_pointer_address): Declare.
9513
9514 2012-03-01 Joel Brobecker <brobecker@adacore.com>
9515
9516 * NEWS: Document the fact that one can provide a condition when
9517 creating an Ada exception catchpoint.
9518
9519 2012-03-01 Tom Tromey <tromey@redhat.com>
9520
9521 * valprint.c (val_print_type_code_flags): Fix placement of
9522 trailing brace.
9523
9524 2012-03-01 Joel Brobecker <brobecker@adacore.com>
9525
9526 * copyright.py (MULTILINE_COMMENT_PREFIXES): Delete.
9527 (update_files): Do not set MULTILINE_COMMENT_PREFIXES
9528 environment variable before calling update-copyright.
9529
9530 2012-03-01 Joel Brobecker <brobecker@adacore.com>
9531
9532 * gnulib/extra/update-copyright: Update to the latest from
9533 gnulib's git repository.
9534 * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment
9535 variable to 2 instead of 1.
9536
9537 2012-02-29 Joel Brobecker <brobecker@adacore.com>
9538
9539 * varobj.c (c_value_of_variable): Remove dead code.
9540
9541 2012-02-29 Joel Brobecker <brobecker@adacore.com>
9542
9543 * ada-lex.p (processId): Do not modify already encoded IDs.
9544 Update function documentation.
9545
9546 2012-02-29 Joel Brobecker <brobecker@adacore.com>
9547
9548 * ada-lang.h (ada_find_renaming_symbol): Replace parameter
9549 "name" with "struct symbol *name_sym".
9550 * ada-exp.y (write_var_or_type): Update call to
9551 ada_find_renaming_symbol.
9552 "name" with "struct symbol *name_sym". Adjust Implementation
9553 accordingly. Adjust the function documentation.
9554
9555 2012-02-29 Joel Brobecker <brobecker@adacore.com>
9556
9557 * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete.
9558 * ada-lang.c (ada_find_any_type): Add advance declaration.
9559 Make static. Replace ada_find_any_symbol by
9560 ada_find_any_type_symbol.
9561 (ada_find_any_type_symbol): Renames ada_find_any_symbol.
9562 Improve function description. Make static.
9563 (ada_find_renaming_symbol, find_old_style_renaming_symbol):
9564 Replace ada_find_any_symbol by ada_find_any_type_symbol.
9565
9566 2012-02-29 Joel Brobecker <brobecker@adacore.com>
9567
9568 * ada-lang.c (struct tag_args): Delete.
9569 (ada_get_tsd_type): Function body moved up in source file.
9570 (ada_tag_name_1, ada_tag_name_2): Delete.
9571 (ada_get_tsd_from_tag): New function.
9572 (ada_tag_name_from_tsd): New function.
9573 (ada_tag_name): Use a TRY_CATCH block instead of catch_errors
9574 to determine the tag name.
9575
9576 2012-02-29 Joel Brobecker <brobecker@adacore.com>
9577
9578 * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add
9579 declaration.
9580 * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New
9581 function.
9582
9583 2012-02-29 Joel Brobecker <brobecker@adacore.com>
9584
9585 * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment.
9586
9587 2012-02-29 Joel Brobecker <brobecker@adacore.com>
9588
9589 * ada-lang.c (ada_lookup_symbol_list): Only cache the result of
9590 full searches.
9591
9592 2012-02-29 Joel Brobecker <brobecker@adacore.com>
9593
9594 * ada-lang.c (constrained_packed_array_type): If there is a
9595 parallel XA type, use it to determine the array index type.
9596
9597 2012-02-29 Joel Brobecker <brobecker@adacore.com>
9598
9599 * ada-valprint.c (ada_val_print_1): If our value is a reference
9600 to an array descriptor, dereference it before converting it
9601 to a simple array.
9602
9603 2012-02-29 Joel Brobecker <brobecker@adacore.com>
9604
9605 * ada-lang.c (ada_to_fixed_value): Call unwrap_value before
9606 creating fixed value.
9607 (ada_value_ind, ada_coerce_ref, assign_component)
9608 (ada_evaluate_subexp): Remove call to unwrap_value before
9609 call to ada_to_fixed_value.
9610
9611 2012-02-29 Joel Brobecker <brobecker@adacore.com>
9612
9613 * ada-lang.c (to_fixed_array_type): Set result's type name.
9614
9615 2012-02-29 Joel Brobecker <brobecker@adacore.com>
9616
9617 * ada-lang.c (catch_ada_exception_command_split): Add new
9618 argument cond_string. Add support for condition at end of
9619 "catch exception" commands.
9620 (ada_decode_exception_location): Add new argument cond_string.
9621 Update call to catch_ada_exception_command_split.
9622 (create_ada_exception_catchpoint): Add new argument cond_string.
9623 Set the breakpoint condition if needed.
9624 (catch_ada_exception_command): Update call to
9625 ada_decode_exception_location.
9626 (ada_decode_assert_location): Add function documentation.
9627 Add support for condition at end of "catch assert" command.
9628 (catch_assert_command): Update calls to ada_decode_assert_location
9629 and create_ada_exception_catchpoint.
9630
9631 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
9632
9633 Fix disp-step-syscall.exp: fork: single step over fork.
9634 * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ...
9635 (i386_linux_get_syscall_number_from_regcache): ... here, new function
9636 comment, change parameters gdbarch and ptid to regcache. Remove
9637 parameter regcache, initialize gdbarch from regcache here.
9638 (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn):
9639 New functions.
9640 (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn
9641 instead.
9642 * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and
9643 'syscall'. Make the 'int' check more strict.
9644
9645 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
9646
9647 Fix reverse mode for syscall on AMD CPUs in 32-bit mode.
9648 * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ...
9649 (i386_linux_intx80_sysenter_syscall_record): ... here.
9650 (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD.
9651 Use the renamed function name.
9652
9653 2012-02-29 Jan Kratochvil <jan.kratochvil@redhat.com>
9654
9655 * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME.
9656 * breakpoint.c (until_break_command): Likewise.
9657 * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise.
9658 * infcall.c (call_function_by_hand): Likewise.
9659 * infcmd.c (finish_forward): Likewise.
9660 * infrun.c (insert_exception_resume_breakpoint): Likewise.
9661
9662 2012-02-28 Tristan Gingold <gingold@adacore.com>
9663
9664 * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to
9665 avoid variable assignments inside condition.
9666
9667 2012-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
9668
9669 Fix static analysis issue found by cppcheck.
9670 * microblaze-tdep.c (microblaze_extract_return_value): Fix
9671 uninitialized BUF for size 2.
9672
9673 2012-02-27 Chris Dearman <chris@mips.com>
9674 Nathan Froyd <froydnj@codesourcery.com>
9675 Maciej W. Rozycki <macro@codesourcery.com>
9676
9677 * mips-tdep.c (mips32_instruction_has_delay_slot): New function.
9678 (mips16_instruction_has_delay_slot): Likewise.
9679 (mips_segment_boundary): Likewise.
9680 (mips_adjust_breakpoint_address): Likewise.
9681 (mips_gdbarch_init): Use mips_adjust_breakpoint_address.
9682
9683 2012-02-27 Maciej W. Rozycki <macro@mips.com>
9684 Maciej W. Rozycki <macro@codesourcery.com>
9685
9686 * infrun.c (handle_inferior_event): Don't proceed through
9687 shared library trampolines if stepping at the machine
9688 instruction level.
9689
9690 2012-02-27 Maciej W. Rozycki <macro@codesourcery.com>
9691
9692 * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs
9693 too.
9694
9695 2012-02-27 Thomas Schwinge <thomas@codesourcery.com>
9696
9697 * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id)
9698 (sh_stub_unwind_sniffer): New functions.
9699 (sh_stub_unwind): New variable.
9700 (sh_gdbarch_init): Wire everything.
9701
9702 2012-02-27 Pedro Alves <palves@redhat.com>
9703
9704 * linux-nat.c (pid_is_stopped): Delete, moved to common/.
9705 (linux_nat_post_attach_wait): Adjust to use
9706 linux_proc_pid_is_stopped.
9707 * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare.
9708 * common/linux-procfs.c (linux_proc_pid_is_stopped): New function,
9709 based on pid_is_stopped from both linux-nat.c and
9710 gdbserver/linux-low.c, and renamed.
9711
9712 2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
9713
9714 * remote.c (remote_watchpoint_addr_within_range): New function.
9715 (init_remote_ops): Use it.
9716
9717 2012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
9718
9719 * target.h (target_watchpoint_addr_within_range): Document macro.
9720
9721 2012-02-24 Pedro Alves <palves@redhat.com>
9722
9723 * stack.c (set_last_displayed_sal): Issue internal_error instead
9724 of warning, and issue it after clearing the last displayed sal.
9725
9726 2012-02-24 Jan Kratochvil <jan.kratochvil@redhat.com>
9727 Pedro Alves <palves@redhat.com>
9728
9729 * breakpoint.c (until_break_command): Install breakpoints after
9730 all frame manipulations.
9731
9732 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
9733
9734 * remote.c (remote_supports_cond_breakpoints): New forward
9735 declaration.
9736 (remote_add_target_side_condition): New function.
9737 (remote_insert_breakpoint): Add target-side breakpoint
9738 conditional if supported.
9739 (remote_insert_hw_breakpoint): Likewise.
9740 (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions
9741 hook.
9742
9743 * target.c (update_current_target): Inherit
9744 to_supports_evaluation_of_breakpoint_conditions.
9745 Default to_supports_evaluation_of_breakpoint_conditions to return_zero.
9746
9747 * target.h (struct target_ops)
9748 <to_supports_evaluation_of_breakpoint_conditions>: New field.
9749 (target_supports_evaluation_of_breakpoint_conditions): New #define.
9750
9751 * breakpoint.c (get_first_locp_gte_addr): New forward declaration.
9752 (condition_evaluation_both, condition_evaluation_auto,
9753 condition_evaluation_host, condition_evaluation_target,
9754 condition_evaluation_enums, condition_evaluation_mode_1,
9755 condition_evaluation_mode): New static globals.
9756 (translate_condition_evaluation_mode): New function.
9757 (breakpoint_condition_evaluation_mode): New function.
9758 (gdb_evaluates_breakpoint_condition_p): New function.
9759 (ALL_BP_LOCATIONS_AT_ADDR): New helper macro.
9760 (mark_breakpoint_modified): New function.
9761 (mark_breakpoint_location_modified): New function.
9762 (set_condition_evaluation_mode): New function.
9763 (show_condition_evaluation_mode): New function.
9764 (bp_location_compare_addrs): New function.
9765 (get_first_location_gte_addr): New helper function.
9766 (set_breakpoint_condition): Free condition bytecode if locations
9767 has become unconditional. Call mark_breakpoint_modified (...).
9768 (condition_command): Call update_global_location_list (1) for
9769 breakpoints.
9770 (breakpoint_xfer_memory): Use is_breakpoint (...).
9771 (is_breakpoint): New function.
9772 (parse_cond_to_aexpr): New function.
9773 (build_target_condition_list): New function.
9774 (insert_bp_location): Handle target-side conditional
9775 breakpoints and call build_target_condition_list (...).
9776 (update_inserted_breakpoint_locations): New function.
9777 (insert_breakpoint_locations): Handle target-side conditional
9778 breakpoints.
9779 (bpstat_check_breakpoint_conditions): Add comment.
9780 (bp_condition_evaluator): New function.
9781 (bp_location_condition_evaluator): New function.
9782 (print_breakpoint_location): Print information on where the condition
9783 will be evaluated.
9784 (print_one_breakpoint_location): Likewise.
9785 (init_bp_location): Call mark_breakpoint_location_modified (...) for
9786 breakpoint location.
9787 (force_breakpoint_reinsertion): New functions.
9788 (update_global_location_list): Handle target-side breakpoint
9789 conditions.
9790 Reinsert locations that are already inserted if conditions have
9791 changed.
9792 (bp_location_dtor): Free agent expression bytecode.
9793 (disable_breakpoint): Call mark_breakpoint_modified (...).
9794 Call update_global_location_list (...) with parameter 1 for breakpoints.
9795 (disable_command): Call mark_breakpoint_location_modified (...).
9796 Call update_global_location_list (...) with parameter 1 for breakpoints.
9797 (enable_breakpoint_disp): Call mark_breakpoint_modified (...).
9798 (enable_command): mark_breakpoint_location_modified (...).
9799 (_initialize_breakpoint): Update documentation and add
9800 condition-evaluation breakpoint subcommand.
9801
9802 * breakpoint.h: Include ax.h.
9803 (condition_list): New data structure.
9804 (condition_status): New enum.
9805 (bp_target_info) <cond_list>: New field.
9806 (bp_location) <condition_changed, cond_bytecode>: New fields.
9807 (is_breakpoint): New prototype.
9808
9809 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
9810
9811 * remote.c (remote_state) <cond_breakpoints>: New field.
9812 (PACKET_ConditionalBreakpoints): New enum.
9813 (remote_cond_breakpoint_feature): New function.
9814 (remote_protocol_features): Add new ConditionalBreakpoints entry.
9815 (remote_supports_cond_breakpoints): New function.
9816 (_initialize_remote): Add new packet configuration for
9817 target-side conditional breakpoints.
9818
9819 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
9820
9821 * NEWS: Mention target-side conditional breakpoint support,
9822 new condition-evaluation breakpoint subcommand and remote
9823 packet extensions.
9824
9825 2012-02-24 Luis Machado <lgustavo@codesourcery.com>
9826
9827 * breakpoint.c (bp_location_compare): Sort by pspace before sorting by
9828 number.
9829
9830 2012-02-24 Thomas Schwinge <thomas@codesourcery.com>
9831
9832 * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal.
9833 (after_prologue): Remove.
9834
9835 2012-02-23 Tom Tromey <tromey@redhat.com>
9836
9837 * jv-valprint.c (java_val_print): Remove dead code.
9838
9839 2012-02-23 Tristan Gingold <gingold@adacore.com>
9840
9841 * ada-tasks.c (struct ada_tasks_inferior_data): Add
9842 known_tasks_element and known_tasks_length fields.
9843 (read_known_tasks_array): Change argument type. Use pointer type
9844 and number of elements from DATA. Adjust.
9845 (read_known_tasks_list): Likewise.
9846 (get_known_tasks_addr): Remove.
9847 (ada_set_current_inferior_known_tasks_addr): Renamed to ...
9848 (ada_tasks_inferior_data_sniffer): ... this. Use symtab for element
9849 type and array length. Merge former get_known_tasks_addr code.
9850
9851 2012-02-23 Jan Kratochvil <jan.kratochvil@redhat.com>
9852
9853 PR backtrace/13716
9854 * infcmd.c (finish_forward): New variable frame_id, initialize it, use
9855 it after set_momentary_breakpoint.
9856
9857 2012-02-22 Sterling Augustine <saugustine@google.com>
9858
9859 PR 13689:
9860 * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
9861
9862 2012-02-22 Gary Benson <gbenson@redhat.com>
9863
9864 * dwarf2read.c (dwarf2_read_index): Correct misspelling.
9865 (find_slot_in_mapped_hash): Likewise.
9866
9867 2012-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
9868
9869 PR build/13638
9870 * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR.
9871 (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR.
9872 * configure: Regenerate.
9873
9874 2012-02-21 Tristan Gingold <gingold@adacore.com>
9875 Pedro Alves <palves@redhat.com>
9876
9877 * ia64-tdep.c: Do not include libunwind-ia64.h.
9878 * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard.
9879 Include libunwind-ia64.h instead of libunwind.h.
9880 * configure.ac (--with-libunwind, $enable_libunwind): Don't check
9881 for libunwind.h existence.
9882 * configure, config.in: Regenerate.
9883
9884 2012-02-21 Anton Gorenkov <xgsa@yandex.ru>
9885
9886 * c-valprint.c (c_value_print): Use value_rtti_indirect_type
9887 instead of value_rtti_target_type.
9888 * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type
9889 instead of value_rtti_target_type.
9890 * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of
9891 value_rtti_target_type.
9892 * valops.c (value_ind): Extract function readjust_indirect_value_type.
9893 (value_rtti_target_type): Rename to ...
9894 (value_rtti_indirect_type): ... here and make it indirect. Update
9895 function comment.
9896 * value.c (readjust_indirect_value_type): New function.
9897 (coerce_ref): Support for enclosing type setting for references
9898 with readjust_indirect_value_type.
9899 * value.h (readjust_value_type): New declaration.
9900 (value_rtti_target_type): Rename to ...
9901 (value_rtti_indirect_type): ... here.
9902
9903 2012-02-21 Anton Gorenkov <xgsa@yandex.ru>
9904
9905 * MAINTAINERS (Write After Approval): Add myself to the list.
9906
9907 2012-02-20 Doug Evans <dje@google.com>
9908
9909 * objfiles.c (add_to_objfile_sections): Remove outdated comments.
9910 Rename objfile_p_char parameter to objfilep.
9911 (build_objfile_section_table): Result is now void. All callers
9912 updated.
9913 * objfiles.h (struct objfile): Tweak comments, whitespace.
9914 (build_objfile_section_table): Update.
9915
9916 * elfread.c (elf_symfile_segments): Fix warning text.
9917
9918 2012-02-20 Tom Tromey <tromey@redhat.com>
9919
9920 PR gdb/13498:
9921 * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a
9922 particular set of file names once.
9923 (dw2_map_symbol_filenames): Likewise.
9924
9925 2012-02-20 Jan Kratochvil <jan.kratochvil@redhat.com>
9926
9927 Code cleanup.
9928 * main.c (write_files): Remove the declaration.
9929 (external_editor_command): Move the declaration ...
9930 [GDBTK] (external_editor_command): ... here. Fix the comment.
9931
9932 2012-02-20 Tom Tromey <tromey@redhat.com>
9933
9934 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove
9935 extraneous block.
9936
9937 2012-02-20 Tristan Gingold <gingold@adacore.com>
9938
9939 * darwin-nat.h (enum darwin_msg_state): Add comments.
9940
9941 2012-02-20 Tristan Gingold <gingold@adacore.com>
9942
9943 * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset
9944 value.
9945
9946 2012-20-18 Joel Brobecker <brobecker@adacore.com>
9947
9948 * breakpoint.c (watchpoint_exp_is_const): Add missing empty line
9949 between function description and implementation.
9950
9951 2012-02-17 Tom Tromey <tromey@redhat.com>
9952
9953 PR python/12070:
9954 * python/py-event.c (event_object_getset): New global.
9955 (event_object_type): Reference it.
9956 * python/py-type.c (field_object_getset): New global.
9957 (field_object_type): Reference it.
9958 * python/python-internal.h (gdb_py_generic_dict): Declare.
9959 * python/py-utils.c (gdb_py_generic_dict): New function.
9960
9961 2012-02-17 Tristan Gingold <gingold@adacore.com>
9962
9963 * solib-darwin.c (darwin_current_sos): Check magic and filetype
9964
9965 2012-02-17 Thomas Schwinge <thomas@codesourcery.com>
9966
9967 * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of
9968 TYPE_CALLING_CONVENTION annotation.
9969
9970 2012-02-16 Kevin Buettner <kevinb@redhat.com>
9971
9972 * MAINTAINERS: Add rx to target ISA section.
9973 * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o.
9974 (ALLDEPFILES): Add rx-tdep.c.
9975
9976 2012-02-16 Tom Tromey <tromey@redhat.com>
9977
9978 * symfile.c (symbol_file_add_main_1): Use inferior's
9979 symfile_flags.
9980 * solib.c (solib_read_symbols): Use inferior's symfile_flags.
9981 * linux-nat.c (linux_child_follow_fork): Set symfile_flags on
9982 inferior.
9983 * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on
9984 inferior.
9985 (follow_exec): Use inferior's symfile_flags.
9986 * inferior.h (struct inferior) <symfile_flags>: New field.
9987
9988 2012-02-16 Mike Frysinger <vapier@gentoo.org>
9989
9990 PR gdb/9734:
9991 * remote-sim.c (gdbsim_create_inferior): Call error() when
9992 sim_create_inferior() fails.
9993
9994 2012-02-16 Josh Matthews <josh@joshmatthews.net>
9995
9996 * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure.
9997
9998 2012-02-16 Tom Tromey <tromey@redhat.com>
9999
10000 PR c++/13653:
10001 * thread.c (struct current_thread_cleanup) <was_removable>: New
10002 field.
10003 (restore_current_thread_cleanup_dtor): Restore 'removable' field.
10004 (make_cleanup_restore_current_thread): Initialize new field.
10005
10006 2012-02-15 Kevin Buettner <kevinb@redhat.com>
10007
10008 * MAINTAINERS: Add rl78 to target ISA section.
10009 * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o.
10010 (ALLDEPFILES): Add rl78-tdep.c.
10011 * NEWS: Mention rl78 as a new target.
10012
10013 2012-02-15 Aleksandar Ristovski <aristovski@qnx.com>
10014
10015 * frame.c (find_frame_sal): Initialize sal->pspace field from frame
10016 data.
10017 * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL.
10018
10019 2012-02-15 Tom Tromey <tromey@redhat.com>
10020
10021 PR gdb/12659:
10022 * infcmd.c (registers_info): Print just the current register's
10023 name.
10024
10025 2012-02-15 Tom Tromey <tromey@redhat.com>
10026
10027 * python/py-symbol.c (sympy_value): Use _().
10028
10029 2012-02-15 Pedro Alves <palves@redhat.com>
10030
10031 * remote.c (remote_detach_1, extended_remote_attach_1): Tweak
10032 output to be like native targets'.
10033 (remote_pid_to_str): Special case the null ptid.
10034
10035 2012-02-14 Stan Shebs <stan@codesourcery.com>
10036
10037 * NEWS: Mention enable count command.
10038 * breakpoint.h (struct breakpoint): New field enable_count.
10039 * breakpoint.c (enable_breakpoint_disp): Add count argument.
10040 (enable_breakpoint): Add arg to call.
10041 (struct disp_data): New struct.
10042 (do_enable_breakpoint_disp): Interp arg as disp_data and unpack.
10043 (do_map_enable_once_breakpoint): Create a struct and pass it.
10044 (do_map_enable_delete_breakpoint): Ditto.
10045 (do_map_enable_count_breakpoint): New function.
10046 (enable_count_command): New function.
10047 (bpstat_stop_status): Decrement enable_count.
10048 (print_one_breakpoint_location): Report enable count.
10049 (_initialize_breakpoint): Add enable count command.
10050
10051 2012-02-14 Kevin Buettner <kevinb@redhat.com>
10052
10053 * rl78-tdep.c (reggroups.h): Include.
10054 (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM)
10055 (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM)
10056 (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM)
10057 (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM)
10058 (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM)
10059 (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM)
10060 (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM)
10061 (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM)
10062 (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM)
10063 (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM)
10064 (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM)
10065 (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM)
10066 (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM)
10067 (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM)
10068 (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM)
10069 (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to
10070 beginning of register list.
10071 (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM)
10072 (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM)
10073 (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM)
10074 (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM)
10075 (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM)
10076 (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM)
10077 (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM)
10078 (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM)
10079 (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM)
10080 (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM)
10081 (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into
10082 the pseudo registers. Rearrange other pseudo registers too so
10083 that the bank registers appear at the end.
10084 (rl78_register_type): Account for the fact that the byte sized
10085 bank registers are now pseudo-registers.
10086 (rl78_register_name): Rearrange the register name array. Make
10087 initial set of raw banked registers inaccessible.
10088 (rl78_register_reggroup_p, rl78_register_sim_regno): New functions.
10089 (rl78_pseudo_register_read, rl78_pseudo_register_write): Add
10090 case for copying bytes back and forth between raw and pseudo
10091 versions of the banked registers. Update other cases to reflect
10092 the changed names.
10093 (rl78_return_value): Update to account for changed names of
10094 raw registers.
10095 (rl78_gdbarch_init): Register rl78_register_reggroup_p() and
10096 rl78_register_sim_regno().
10097
10098 2012-02-14 Kevin Buettner <kevinb@redhat.com>
10099
10100 * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of
10101 the name parameter being passed to find_pc_partial_function().
10102
10103 2012-02-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10104
10105 * MAINTAINERS: Step down from being ia64 target maintainer.
10106
10107 2012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
10108
10109 * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing
10110 compilation warning.
10111
10112 2012-02-12 Jan Kratochvil <jan.kratochvil@redhat.com>
10113
10114 Fix crash on loaded shlibs without loaded exec_bfd.
10115 * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD.
10116 (set_section_command): Replace exec_bfd by p->bfd.
10117
10118 2012-02-10 Tom Tromey <tromey@redhat.com>
10119
10120 * linespec.c (decode_line_internal): Skip symtabs_from_filename
10121 when we have a C++ qualified name.
10122
10123 2012-02-10 Pedro Alves <palves@redhat.com>
10124
10125 * inferior.c (inferior_pid_to_str): New.
10126 (print_inferior, inferior_command): Use it.
10127
10128 2012-02-10 Pedro Alves <palves@redhat.com>
10129
10130 * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
10131 the test CFLAGS.
10132 * configure: Regenerate.
10133
10134 2012-02-10 Jan Kratochvil <jan.kratochvil@redhat.com>
10135
10136 * linespec.c (decode_line_internal): Fix comment correctness.
10137
10138 2012-02-09 Valery Khromov <valery.khromov@gmail.com>
10139
10140 PR gdb/12953
10141 * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
10142 * amd64bsd-nat.c: Add support for debug registers (adapted from
10143 i386bsd-nat.c).
10144 [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
10145 (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
10146 (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
10147 (amd64bsd_dr_get_control): New functions.
10148 * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
10149 * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
10150 [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
10151 watchpoints initialization.
10152 * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
10153
10154 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
10155
10156 * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
10157 flds_bnds.fields.
10158 (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
10159
10160 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
10161
10162 * breakpoint.c (bp_location_compare): Fix comment. Reindent the code.
10163
10164 2012-02-08 Joel Brobecker <brobecker@adacore.com>
10165
10166 * language.h (symbol_name_cmp_ftype): Renames
10167 symbol_name_match_p_ftype.
10168 (struct language_defn)[la_get_symbol_name_cmp]: Renames
10169 la_get_symbol_name_match_p.
10170 * ada-lang.c (ada_get_symbol_name_cmp): Renames
10171 ada_get_symbol_name_match_p. Update comment.
10172 (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
10173 * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
10174 Renames symbol_name_match_p. Update field type.
10175 (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
10176 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
10177 opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
10178 "la_get_symbol_name_cmp" in comments.
10179 * language.c: Likewise.
10180
10181 2012-02-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
10182
10183 * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
10184 %eflags offset.
10185 * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
10186 (amd64_sol2_gregset32_reg_offs): Likewise.
10187
10188 2012-02-08 Joel Brobecker <brobecker@adacore.com>
10189
10190 * solib-darwin.c (darwin_bfd_open): Make sure that the filename
10191 of the returned BFD is allocated by GDB.
10192
10193 2012-02-07 Tom Tromey <tromey@redhat.com>
10194
10195 PR python/12027:
10196 * python/python-internal.h (frame_object_type): Declare.
10197 * python/py-symbol.c (sympy_needs_frame): New function.
10198 (sympy_value): New function.
10199 (symbol_object_getset): Add "needs_frame".
10200 (symbol_object_methods): Add "value".
10201 * python/py-frame.c (frame_object_type): No longer static.
10202
10203 2012-02-07 Tom Tromey <tromey@redhat.com>
10204
10205 PR python/13599:
10206 * python/py-symbol.c (sympy_line): New function.
10207 (symbol_object_getset): Add "line".
10208
10209 2012-02-07 Tom Tromey <tromey@redhat.com>
10210
10211 * charset.c (find_charset_names): Check 'in' against NULL.
10212
10213 2012-02-06 Doug Evans <dje@google.com>
10214
10215 * gdbtypes.h (struct main_type): Change type of name,tag_name,
10216 and fields.name members from char * to const char *. All uses updated.
10217 (struct cplus_struct_type): Change type of fn_fieldlists.name member
10218 from char * to const char *. All uses updated.
10219 (type_name_no_tag): Update.
10220 (lookup_unsigned_typename, lookup_signed_typename): Update.
10221 * gdbtypes.c (type_name_no_tag): Change result type
10222 from char * to const char *. All callers updated.
10223 (lookup_unsigned_typename, lookup_signed_typename): Change type of
10224 name parameter from char * to const char *.
10225 * symtab.h (struct cplus_specific): Change type of demangled_name
10226 member from char * to const char *. All uses updated.
10227 (struct general_symbol_info): Change type of name and
10228 mangled_lang.demangled_name members from char * to const char *.
10229 All uses updated.
10230 (symbol_get_demangled_name, symbol_natural_name): Update.
10231 (symbol_demangled_name, symbol_search_name): Update.
10232 * symtab.c (symbol_get_demangled_name): Change result type
10233 from char * to const char *. All callers updated.
10234 (symbol_natural_name, symbol_demangled_name): Ditto.
10235 (symbol_search_name): Ditto.
10236 (completion_list_add_name): Change type of symname,sym_text,
10237 text,word parameters from char * to const char *.
10238 (completion_list_objc_symbol): Change type of sym_text,
10239 text,word parameters from char * to const char *.
10240 * ada-lang.c (find_struct_field): Change type of name parameter
10241 from char * to const char *.
10242 (encoded_ordered_before): Similarly for N0,N1 parameters.
10243 (old_renaming_is_invisible): Similarly for function_name parameter.
10244 (ada_type_name): Change result type from char * to const char *.
10245 All callers updated.
10246 * ada-lang.h (ada_type_name): Update.
10247 * buildsym.c (hashname): Change type of name parameter
10248 from char * to const char *.
10249 * buildsym.h (hashname): Update.
10250 * dbxread.c (end_psymtab): Change type of include_list parameter
10251 from char ** to const char **.
10252 * dwarf2read.c (determine_prefix): Change result type
10253 from char * to const char *. All callers updated.
10254 * f-lang.c (find_common_for_function): Change type of name, funcname
10255 parameters from char * to const char *.
10256 * f-lang.c (find_common_for_function): Update.
10257 * f-valprint.c (list_all_visible_commons): Change type of funcname
10258 parameters from char * to const char *.
10259 * gdbarch.sh (static_transform_name): Change type of name parameter
10260 and result from char * to const char *.
10261 * gdbarch.c: Regenerate.
10262 * gdbarch.h: Regenerate.
10263 * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
10264 of name parameter from char * to const char *.
10265 * jv-lang.c (java_primitive_type_from_name): Ditto.
10266 (java_demangled_signature_length): Similarly for signature parameter.
10267 (java_demangled_signature_copy): Ditto.
10268 (java_demangle_type_signature): Ditto.
10269 * jv-lang.h (java_primitive_type_from_name): Update.
10270 (java_demangle_type_signature): Update.
10271 * objc-lang.c (specialcmp): Change type of a,b parameters
10272 from char * to const char *.
10273 * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
10274 from char * to const char *. All callers updated.
10275 * p-lang.h (is_pascal_string_type): Update.
10276 * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
10277 of name parameter from char * to const char *.
10278 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
10279 * utils.c (fprintf_symbol_filtered): Ditto.
10280 * defs.h (fprintf_symbol_filtered): Update.
10281 * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
10282 * stabsread.h (end_psymtab): Update.
10283 * stack.c (find_frame_funname): Change type of funname parameter
10284 from char ** to const char **.
10285 * stack.h (find_frame_funname): Update.
10286 * typeprint.c (type_print): Change type of varstring parameter
10287 from char * to const char *.
10288 * value.h (type_print): Update.
10289 * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
10290 from char * to const char *. All callers updated.
10291 (xcoff_end_psymtab): Change type of include_list parameter
10292 from char ** to const char **. All callers updated.
10293 (swap_sym): Similarly for name parameter. All callers updated.
10294 * coffread.c (patch_type): Add (char*) cast to xfree parameter.
10295 Use xstrdup.
10296 (process_coff_symbol): Use xstrdup.
10297 * stabsread.c (stabs_method_name_from_physname): Renamed from
10298 update_method_name_from_physname. Change result type from void
10299 to char *. All callers updated.
10300 (read_member_functions): In has_destructor case, store name in objfile
10301 obstack instead of malloc space. In !has_stub case, fix mem leak.
10302
10303 2012-02-06 Luca Pizzamiglio <luca.pizzamiglio@gmail.com>
10304
10305 * configure: Rebuild.
10306 * configure.ac: Put -L../bfd and -L../libiberty at the front of
10307 LDFLAGS.
10308
10309 2012-02-03 Kevin Buettner <kevinb@redhat.com>
10310
10311 * configure.tgt (rl78-*-elf): New target.
10312 * rl78-tdep.c: New file.
10313
10314 2012-02-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
10315
10316 * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
10317 and continue the loop. Add QUIT statement.
10318
10319 2012-02-03 Tom Tromey <tromey@redhat.com>
10320
10321 PR gdb/13596:
10322 * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
10323 bfd_lookup_symbol_from_symtab.
10324 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
10325 gdb_bfd_lookup_symbol_from_symtab.
10326
10327 2012-02-03 Joel Brobecker <brobecker@adacore.com>
10328
10329 * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
10330 use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
10331 symbol. Add assertion that sym2 is never NULL.
10332
10333 2012-02-02 Doug Evans <dje@google.com>
10334
10335 * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
10336 "name" parameter to const char ** from char **. All callers updated.
10337 (find_pc_partial_function): Ditto.
10338 (cache_pc_function_name): Change type to const char * from char *.
10339 * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
10340 (find_pc_partial_function): Update.
10341 * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
10342 type of "name" parameter to const char * from char *.
10343 All uses updated.
10344 * arch-utils.c (generic_in_solib_return_trampoline): Change
10345 type of "name" parameter to const char * from char *.
10346 * arch-utils.h (generic_in_solib_return_trampoline): Update.
10347 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
10348 type of "name" parameter to const char * from char *.
10349 * gdbarch.sh (in_solib_return_trampoline): Ditto.
10350 * gdbarch.c: Regenerate.
10351 * gdbarch.h: Regenerate.
10352 * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
10353 * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
10354 * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
10355 type of "name" parameter to const char * from char *.
10356 * skip.c (skip_function_pc): Ditto.
10357 * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
10358 * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
10359 * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
10360 * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
10361 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
10362 * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
10363 * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
10364 * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
10365 * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
10366
10367 2012-02-02 Pedro Alves <palves@redhat.com>
10368
10369 * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
10370 the current inferior has no execution. Make sure the current
10371 remote process matches gdb's current inferior.
10372
10373 2012-02-02 Tom Tromey <tromey@redhat.com>
10374
10375 PR gdb/13405:
10376 * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
10377 read-only memory.
10378
10379 2012-02-02 Tom Tromey <tromey@redhat.com>
10380
10381 PR gdb/9307:
10382 * symtab.c (lookup_language_this): Set block_found.
10383
10384 2012-02-01 Tom Tromey <tromey@redhat.com>
10385
10386 PR gdb/13431:
10387 * jit.c (struct jit_inferior_data): Rewrite.
10388 (struct jit_objfile_data): New.
10389 (get_jit_objfile_data): New function.
10390 (add_objfile_entry): Update.
10391 (jit_read_descriptor): Return int. Replace descriptor_addr
10392 argument with inf_data. Update. Don't call error.
10393 (jit_breakpoint_re_set_internal): Reorder logic. Update. Look up
10394 descriptor here.
10395 (jit_inferior_init): Don't look up descriptor. Don't call error.
10396 (jit_reset_inferior_data_and_breakpoints)
10397 (jit_inferior_created_observer): Remove.
10398 (jit_inferior_exit_hook): Update.
10399 (jit_executable_changed_observer): Remove.
10400 (jit_event_handler): Update.
10401 (free_objfile_data): Reset inferior data if needed.
10402 (_initialize_jit): Update.
10403
10404 2012-02-01 Tom Tromey <tromey@redhat.com>
10405
10406 * jit.c (bfd_open_from_target_memory): Move higher in file.
10407
10408 2012-02-01 Tristan Gingold <gingold@adacore.com>
10409
10410 * libunwind-frame.c (libunwind_load): Display message if dlopen
10411 failed.
10412
10413 2012-02-01 Gary Benson <gbenson@redhat.com>
10414
10415 * symtab.h (symbol_found_callback_ftype): New typedef.
10416 (iterate_over_symbols): Use the above.
10417 * symtab.c (iterate_over_symbols): Likewise.
10418 * language.h (language_defn->la_iterate_over_symbols): Likewise.
10419 * ada-lang.c (ada_iterate_over_symbols): Likewise.
10420 * linespec.c (iterate_over_all_matching_symtabs): Likewise.
10421 (iterate_name_matcher): Document return values.
10422 (collect_one_symbol): Likewise.
10423 (collect_function_symbols): Likewise.
10424 (collect_symbols): Likewise.
10425
10426 2012-02-01 Tom Tromey <tromey@redhat.com>
10427
10428 * ada-lang.c (resolve_subexp): Update.
10429 (ada_lookup_symbol_list): Add 'full_search' argument.
10430 (ada_iterate_over_symbols): Pass 0 as full_search argument to
10431 ada_lookup_symbol_list.
10432 (ada_lookup_encoded_symbol): Update.
10433 (get_var_value): Update.
10434 * ada-exp.y (block_lookup): Update.
10435 (write_var_or_type): Update.
10436 (write_name_assoc): Update.
10437 * ada-lang.h (ada_lookup_symbol_list): Update.
10438
10439 2012-01-31 Tom Tromey <tromey@redhat.com>
10440
10441 * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
10442 comment.
10443
10444 2012-01-31 Doug Evans <dje@google.com>
10445
10446 * symtab.h: Remove outdated comment.
10447 (SYMBOL_MATCHES_NATURAL_NAME): Delete.
10448
10449 2012-02-01 Josh Matthews <josh@joshmatthews.net> (tiny change)
10450
10451 Fix build error in Darwin port.
10452 * i386-darwin-nat.c: Include i386-nat.h.
10453
10454 2012-01-30 Tom Tromey <tromey@redhat.com>
10455
10456 PR breakpoints/13568:
10457 * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
10458 argument. Check for recursive includes.
10459 (dwarf_decode_macros): Create an include hash.
10460
10461 2012-01-30 Michael Eager <eager@eagercon.com>
10462
10463 * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
10464 * ppc-linux-tdep.c: Include glibc-tdep.h.
10465 (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
10466 (powerpc_linux_in_plt_stub): New function.
10467 (powerpc_linux_in_dynsym_resolve_code): New function.
10468 (ppc_skip_trampoline_code): New function.
10469 (ppc_linux_init_abi): Use PPC specific functions rather than generic.
10470 Use glibc_skip_solib_resolver.
10471
10472 2012-01-28 Jan Kratochvil <jan.kratochvil@redhat.com>
10473
10474 Code cleanup: Make 1440 bytes of data segment read-only.
10475 * arch-utils.c (endian_enum): Make it const char *const [].
10476 * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
10477 Likewise.
10478 * breakpoint.c (always_inserted_enums): Likewise.
10479 * cli/cli-cmds.c (script_ext_enums): Likewise.
10480 * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
10481 enumlist parameter const char *const *.
10482 * cli/cli-decode.h (struct cmd_list_element): Make the enums field
10483 const char *const *.
10484 * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
10485 parameter const char *const *.
10486 * cris-tdep.c (cris_modes): Make it const char *const [].
10487 * filesystem.c (target_file_system_kinds): Likewise.
10488 * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
10489 * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
10490 (can_use_displaced_stepping_enum, scheduler_enums)
10491 (exec_direction_names): Likewise.
10492 * language.c (_initialize_language): Make the type_or_range_names and
10493 case_sensitive_names variables const char *const [].
10494 * mips-tdep.c (mips_abi_strings): Make it const char *const [].
10495 * python/python.c (python_excp_enums): Likewise.
10496 * remote.c (interrupt_sequence_modes): Likewise.
10497 * rs6000-tdep.c (powerpc_vector_strings): Likewise.
10498 * serial.c (logbase_enums): Likewise.
10499 * sh-tdep.c (sh_cc_enum): Likewise.
10500 * stack.c (print_frame_arguments_choices, print_entry_values_choices):
10501 Likewise.
10502 * symtab.c (multiple_symbols_modes): Likewise.
10503 * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
10504 Likewise.
10505 * utils.c (internal_problem_modes): Likewise.
10506
10507 2012-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
10508
10509 Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
10510 * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
10511 result.
10512
10513 2012-01-27 Doug Evans <dje@google.com>
10514
10515 * configure.ac (with_python): Fix absolute path handling for win32.
10516 * configure: Regenerate.
10517
10518 2012-01-26 Doug Evans <dje@google.com>
10519
10520 * symtab.c: Whitespace cleanup, no code changes.
10521
10522 * symtab.c (lookup_symbol_in_language): Improve comment.
10523 (lookup_symbol_aux): Fix comment.
10524
10525 * psymtab.c (add_psymbol_to_list): Result is now "void".
10526 * psympriv.h (add_psymbol_to_list): Update.
10527
10528 * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
10529
10530 2012-01-26 Jan Kratochvil <jan.kratochvil@redhat.com>
10531
10532 Do not open script filenames twice.
10533 * cli/cli-cmds.c (source_script_from_stream): Pass to
10534 source_python_script also STREAM.
10535 * python/py-auto-load.c (source_section_scripts): Pass to
10536 source_python_script_for_objfile also STREAM.
10537 (auto_load_objfile_script): Pass to source_python_script_for_objfile
10538 also INPUT.
10539 * python/python-internal.h (source_python_script_for_objfile): New
10540 parameter file, rename parameter file to filename.
10541 * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
10542 instead if !_WIN32. Update the function comment.
10543 (source_python_script, source_python_script_for_objfile)
10544 (source_python_script): New parameter file, rename parameter file to
10545 filename. Pass FILENAME to python_run_simple_file.
10546 * python/python.h (source_python_script): New parameter file, rename
10547 parameter file to filename.
10548
10549 2012-01-26 Pedro Alves <palves@redhat.com>
10550
10551 * corelow.c (core_has_fake_pid): Delete.
10552 (core_close): Delete references to `core_has_fake_pid'.
10553 (add_to_thread_list): Adjust to mark the inferior's pid as fake.
10554 (core_open): Delete references to `core_has_fake_pid'.
10555 (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
10556 the removed global.
10557
10558 2012-01-26 Joel Brobecker <brobecker@adacore.com>
10559
10560 * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
10561 Remove language parameter from name_matcher. Adjust the comment.
10562 * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
10563 Remove language parameter.
10564 * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
10565 * linespec.c (iterate_name_matcher): Likewise.
10566 * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
10567 name_matcher. Adjust call accordingly.
10568 * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
10569 (maintenance_check_symtabs): Adjust type of parameter "fun".
10570 * psymtab.h (maintenance_check_symtabs): Likewise.
10571
10572 2012-01-26 Joel Brobecker <brobecker@adacore.com>
10573
10574 * language.h (symbol_name_match_p_ftype): New typedef.
10575 (struct language_defn): Replace field la_symbol_name_compare
10576 by la_get_symbol_name_match_p.
10577 * ada-lang.c (ada_get_symbol_name_match_p): New function.
10578 (ada_language_defn): Use it.
10579 * linespec.c (struct symbol_matcher_data): New type.
10580 (iterate_name_matcher): Rewrite.
10581 (iterate_over_all_matching_symtabs): Pass a pointer to
10582 a symbol_matcher_data struct to expand_symtabs_matching
10583 instead of just the lookup name.
10584 * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
10585 opencl-lang.c, p-lang.c, language.c: Delete field
10586 la_symbol_name_compare, and replace by NULL for new field
10587 la_get_symbol_name_match_p.
10588 * symfile.h (struct quick_symbol_functions): Update comment.
10589
10590 2012-01-25 Tom Tromey <tromey@redhat.com>
10591
10592 * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
10593 dereferencing.
10594
10595 2012-01-24 Tom Tromey <tromey@redhat.com>
10596
10597 PR symtab/12406:
10598 * solib.c (update_solib_list): Update the program space's
10599 added_solibs and deleted_solibs fields.
10600 * progspace.h (struct program_space) <added_solibs,
10601 deleted_solibs>: New fields.
10602 (clear_program_space_solib_cache): Declare.
10603 * progspace.c (release_program_space): Call
10604 clear_program_space_solib_cache.
10605 (clear_program_space_solib_cache): New function.
10606 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
10607 bpstat_stop_status. Use handle_solib_event.
10608 * breakpoint.c: Include gdb_regex.h.
10609 (print_solib_event): New function.
10610 (bpstat_print): Use print_solib_event.
10611 (bpstat_stop_status): Add special case for bp_shlib_event.
10612 (handle_solib_event): New function.
10613 (bpstat_what): Use handle_solib_event.
10614 (struct solib_catchpoint): New.
10615 (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
10616 (breakpoint_hit_catch_solib, check_status_catch_solib)
10617 (print_it_catch_solib, print_one_catch_solib)
10618 (print_mention_catch_solib, print_recreate_catch_solib): New
10619 functions.
10620 (catch_solib_breakpoint_ops): New global.
10621 (catch_load_or_unload, catch_load_command_1)
10622 (catch_unload_command_1): New functions.
10623 (internal_bkpt_check_status): Add special case for
10624 bp_shlib_event.
10625 (internal_bkpt_print_it): Use print_solib_event.
10626 (initialize_breakpoint_ops): Initialize
10627 catch_solib_breakpoint_ops.
10628 (_initialize_breakpoint): Register "catch load" and "catch
10629 unload".
10630 * breakpoint.h (handle_solib_event): Declare.
10631 * NEWS: Add entry for "catch load" and "catch unload".
10632
10633 2012-01-24 Tom Tromey <tromey@redhat.com>
10634
10635 * ada-lang.c: Include gdb_vecs.h.
10636 * charset.c: Include gdb_vecs.h.
10637 * tracepoint.h: Include gdb_vecs.h.
10638 * gdb_vecs.h: New file.
10639
10640 2012-01-24 Pedro Alves <pedro@codesourcery.com>
10641
10642 * breakpoint.c (breakpoint_hit_catch_fork)
10643 (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
10644 (breakpoint_hit_catch_exec): Make use of the `ws' argument.
10645 * infrun.c (inferior_has_forked, inferior_has_vforked)
10646 (inferior_has_execd, inferior_has_called_syscall): Delete.
10647 (handle_syscall_event): Get syscall_number from the execution
10648 control state's wait status.
10649 (wait_for_inferior): Don't clear syscall_number.
10650
10651 2012-01-24 Pedro Alves <palves@redhat.com>
10652
10653 * breakpoint.c (bpstat_check_location, bpstat_stop_status,
10654 pc_at_non_inline_function): Add `ws' parameter, and pass it down.
10655 (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
10656 (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
10657 `ws' parameter.
10658 (breakpoint_hit_ranged_breakpoint): Add `ws' parameter. Return
10659 false for events other than TARGET_SIGNAL_TRAP.
10660 (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
10661 Add `ws' parameter.
10662 (bkpt_breakpoint_hit): Add `ws' parameter. Return false for
10663 events other than TARGET_SIGNAL_TRAP.
10664 (tracepoint_breakpoint_hit): Add `ws' parameter.
10665 * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
10666 parameter.
10667 (bpstat_stop_status): Same.
10668 (pc_at_non_inline_function): Same.
10669 * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
10670 to pass the current event's waitstatus to bpstat_stop_status
10671 and pc_at_non_inline_function.
10672
10673 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
10674
10675 Code cleanup.
10676 * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
10677 Update the function comment for it.
10678 (source_script_with_search): Call make_cleanup_fclose for STREAM.
10679 * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
10680 for STREAM.
10681
10682 2012-01-24 Pedro Alves <palves@redhat.com>
10683
10684 * breakpoint.c (bpstat_stop_status): Moving clearing print_it
10685 outside `bs->stop' block.
10686 (bpstat_what): Rework bp_shlib_event handling.
10687 (internal_bkpt_check_status): If the breakpoint is a
10688 bp_shlib_event, then set bs->stop and bs->print if
10689 stop_on_solib_events is set.
10690
10691 2012-01-24 Gary Benson <gbenson@redhat.com>
10692
10693 Delete #if 0'd out code.
10694 * stack.c (print_frame_label_vars): Remove.
10695 (catch_info): Likewise.
10696 (_initialize_stack): Remove "info catch" command.
10697 * NEWS: Mention the above.
10698
10699 2012-01-24 Pedro Alves <palves@redhat.com>
10700
10701 * remote.c (remote_add_inferior): New `fake_pid_p' parameter. Use
10702 it.
10703 (remote_notice_new_inferior): If the remote end doesn't support
10704 the multiprocess extensions, then the PID is fake.
10705 (add_current_inferior_and_thread): New.
10706 (remote_start_remote): Use it.
10707 (extended_remote_attach_1): Adjust.
10708 (extended_remote_create_inferior_1): Use
10709 add_current_inferior_and_thread.
10710
10711 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
10712
10713 Fix watchpoints to be specific for each inferior.
10714 * breakpoint.c (watchpoint_in_thread_scope): Verify also
10715 current_program_space.
10716 * i386-nat.c (i386_inferior_data_cleanup): New.
10717 (i386_inferior_data_get): Replace variable inf_data_local by an
10718 inferior_data call.
10719 (i386_use_watchpoints): Initialize i386_inferior_data.
10720 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
10721 specific iterate_over_lwps.
10722
10723 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
10724
10725 Fix watchpoints across inferior fork.
10726 * amd64-linux-nat.c (update_debug_registers_callback): Update the
10727 comment for linux_nat_iterate_watchpoint_lwps.
10728 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
10729 linux_nat_iterate_watchpoint_lwps.
10730 (amd64_linux_prepare_to_resume): New comment on Linux kernel.
10731 * i386-linux-nat.c (update_debug_registers_callback): Update the
10732 comment for linux_nat_iterate_watchpoint_lwps.
10733 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
10734 linux_nat_iterate_watchpoint_lwps.
10735 (i386_linux_prepare_to_resume): New comment on Linux kernel.
10736 * i386-nat.c: Include inferior.h.
10737 (dr_mirror): Remove.
10738 (i386_inferior_data, struct i386_inferior_data)
10739 (i386_inferior_data_get): New.
10740 (i386_debug_reg_state): Use i386_inferior_data_get.
10741 (i386_cleanup_dregs, i386_update_inferior_debug_regs)
10742 (i386_insert_watchpoint, i386_remove_watchpoint)
10743 (i386_stopped_data_address, i386_insert_hw_breakpoint)
10744 (i386_remove_hw_breakpoint): New variable state, use
10745 i386_debug_reg_state instead of DR_MIRROR.
10746 * linux-nat.c (delete_lwp): New declaration.
10747 (num_lwps): Move here from downwards.
10748 (delete_lwp_cleanup): New.
10749 (linux_child_follow_fork): Create new child_lp, call
10750 linux_nat_new_thread and linux_nat_prepare_to_resume before calling
10751 PTRACE_DETACH.
10752 (num_lwps): Move upwards.
10753 (linux_nat_iterate_watchpoint_lwps): New.
10754 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
10755 (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
10756
10757 2012-01-24 Joel Brobecker <brobecker@adacore.com>
10758
10759 GDB 7.4 released.
10760
10761 2012-01-23 Pedro Alves <palves@redhat.com>
10762
10763 * top.c (caution): Rename to ...
10764 (confirm): ... this.
10765 (show_caution): Rename to ...
10766 (show_confirm): ... this.
10767 (quit_cover): Adjust.
10768 (init_main): Adjust.
10769 * top.h (caution): Rename to ...
10770 (confirm): ... this.
10771 * utils.c (internal_vproblem, defaulted_query): Adjust.
10772
10773 2012-01-23 Pedro Alves <palves@redhat.com>
10774
10775 * top.c (caution): Update comment.
10776 (execute_command): Don't consider the current value of `caution'.
10777
10778 2012-01-23 Jan Kratochvil <jan.kratochvil@redhat.com>
10779
10780 * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
10781
10782 2012-01-23 Ulrich Weigand <ulrich.weigand@linaro.org>
10783
10784 * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
10785 * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
10786 * target.c (target_fileio_pwrite): Remove buffer address from
10787 debug output.
10788 (target_fileio_pread): Likewise.
10789
10790 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
10791
10792 * NEWS: Document remote "info proc" and "generate-core-file".
10793
10794 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
10795
10796 * gdbarch.sh (find_memory_regions): New callback.
10797 * gdbarch.c, gdbarch.h: Regenerate.
10798
10799 * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
10800 callback before falling back to target method.
10801
10802 * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
10803 (linux_target_install_ops): No longer install it.
10804
10805 * linux-tdep.c (linux_find_memory_regions): New function.
10806 (linux_init_abi): Install it.
10807
10808 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
10809
10810 * gdbarch.sh (make_corefile_notes): New architecture callback.
10811 * gdbarch.c: Regenerate.
10812 * gdbarch.h: Likewise.
10813
10814 * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
10815 before target_make_corefile_notes. If NULL is returned, the
10816 target does not support core file generation.
10817
10818 * linux-nat.c: Include "linux-tdep.h".
10819 (find_signalled_thread, find_stop_signal): Remove.
10820 (linux_nat_do_thread_registers): Likewise.
10821 (struct linux_nat_corefile_thread_data): Likewise.
10822 (linux_nat_corefile_thread_callback): Likewise.
10823 (iterate_over_spus): Likewise.
10824 (struct linux_spu_corefile_data): Likewise.
10825 (linux_spu_corefile_callback): Likewise.
10826 (linux_spu_make_corefile_notes): Likewise.
10827 (linux_nat_collect_thread_registers): New function.
10828 (linux_nat_make_corefile_notes): Replace contents by call to
10829 linux_make_corefile_notes passing linux_nat_collect_thread_registers
10830 as native-only callback.
10831
10832 * linux-tdep.h: Include "bfd.h".
10833 (struct regcache): Add forward declaration.
10834 (linux_collect_thread_registers_ftype): New typedef.
10835 (linux_make_corefile_notes): Add prototype.
10836 * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
10837 "regset.h", and "elf-bfd.h".
10838 (find_signalled_thread, find_stop_signal): New functions.
10839 (linux_spu_make_corefile_notes): Likewise.
10840 (linux_collect_thread_registers): Likewise.
10841 (struct linux_corefile_thread_data): New data structure.
10842 (linux_corefile_thread_callback): New funcion.
10843 (linux_make_corefile_notes): Likewise.
10844 (linux_make_corefile_notes_1): Likewise.
10845 (linux_init_abi): Install it.
10846
10847 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
10848
10849 * gdbarch.sh (info_proc): New callback.
10850 * gdbarch.c, gdbarch.h: Regenerate.
10851
10852 * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
10853 before falling back to the target info_proc callback.
10854
10855 * linux-nat.c: Do not include "cli/cli-utils.h".
10856 (linux_nat_info_proc): Remove.
10857 (linux_target_install_ops): No longer install it.
10858
10859 * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
10860 (read_mapping): New function.
10861 (linux_info_proc): Likewise.
10862 (linux_init_abi): Install it.
10863
10864 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
10865
10866 * defs.h (enum info_proc_what): Moved here from linux-nat.c
10867 * infcmd.c: (info_proc_cmd_1): New function.
10868 (info_proc_cmd): New function, moved here from equivalent routine
10869 orignally in linux-nat.c.
10870 (info_proc_cmd_mappings): Likewise.
10871 (info_proc_cmd_stat): Likewise.
10872 (info_proc_cmd_status): Likewise.
10873 (info_proc_cmd_cwd): Likewise.
10874 (info_proc_cmd_cmdline): Likewise.
10875 (info_proc_cmd_exe): Likewise.
10876 (info_proc_cmd_all): Likewise.
10877 (_initialize_infcmd): Install "info proc" command and subcommands.
10878
10879 * target.h (struct target_ops): Add to_info_proc.
10880 (target_info_proc): Add prototype.
10881 * target.c (target_info_proc): New function.
10882
10883 * procfs.c (procfs_info_proc): Add prototype.
10884 (info_proc_cmd): Rename into ...
10885 (procfs_info_proc): ... this. Update argument types as appropriate
10886 for a to_info_proc implementation. Handle "what" argument.
10887 (procfs_target): Install procfs_info_proc.
10888 (_initialize_procfs): No longer install "info proc" command.
10889
10890 * linux-nat.c: (enum info_proc_what): Remove.
10891 (linux_nat_info_proc_cmd_1): Rename into ...
10892 (linux_nat_info_proc): ... this. Update argument types as appropriate
10893 for a to_info_proc implementation.
10894 (linux_nat_info_proc_cmd): Remove.
10895 (linux_nat_info_proc_cmd_mappings): Likewise.
10896 (linux_nat_info_proc_cmd_stat): Likewise.
10897 (linux_nat_info_proc_cmd_status): Likewise.
10898 (linux_nat_info_proc_cmd_cwd): Likewise.
10899 (linux_nat_info_proc_cmd_cmdline): Likewise.
10900 (linux_nat_info_proc_cmd_exe): Likewise.
10901 (linux_nat_info_proc_cmd_all): Likewise.
10902 (linux_target_install_ops): Install linux_nat_info_proc.
10903 (_initialize_linux_nat): No longer install "info proc" command
10904 and subcommands.
10905
10906 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
10907
10908 * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
10909 * config.in, configure: Regenerate.
10910
10911 * target.h (struct target_ops): Add to_fileio_readlink.
10912 (target_fileio_readlink): Add prototype.
10913 * target.c (target_fileio_readlink): New function.
10914
10915 * inf-child.c: Conditionally include <sys/param.h>.
10916 (inf_child_fileio_readlink): New function.
10917 (inf_child_target): Install it.
10918
10919 * remote.c (PACKET_vFile_readlink): New enum value.
10920 (remote_hostio_readlink): New function.
10921 (init_remote_ops): Install it.
10922 (_initialize_remote): Handle vFile:readlink packet type.
10923
10924 2012-01-20 Pedro Alves <palves@redhat.com>
10925 Ulrich Weigand <ulrich.weigand@linaro.org>
10926
10927 * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
10928 * config.in, configure: Regenerate.
10929
10930 * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
10931 to_fileio_pread, to_fileio_close, to_fileio_unlink.
10932 (target_fileio_open): Add prototype.
10933 (target_fileio_pwrite): Likewise.
10934 (target_fileio_pread): Likewise.
10935 (target_fileio_close): Likewise.
10936 (target_fileio_unlink): Likewise.
10937 (target_fileio_read_alloc): Likewise.
10938 (target_fileio_read_stralloc): Likewise.
10939
10940 * target.c: Include "gdb/fileio.h".
10941 (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
10942 (default_fileio_target): New function.
10943 (target_fileio_open): Likewise.
10944 (target_fileio_pwrite): Likewise.
10945 (target_fileio_pread): Likewise.
10946 (target_fileio_close): Likewise.
10947 (target_fileio_unlink): Likewise.
10948 (target_fileio_close_cleanup): Likewise.
10949 (target_fileio_read_alloc_1): Likewise.
10950 (target_fileio_read_alloc): Likewise.
10951 (target_fileio_read_stralloc): Likewise.
10952
10953 * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
10954 <fcntl.h>, and <unistd.h>.
10955 (inf_child_fileio_open_flags_to_host): New function.
10956 (inf_child_errno_to_fileio_error): Likewise.
10957 (inf_child_fileio_open): Likewise.
10958 (inf_child_fileio_pwrite): Likewise.
10959 (inf_child_fileio_pread): Likewise.
10960 (inf_child_fileio_close): Likewise.
10961 (inf_child_fileio_unlink): Likewise.
10962 (inf_child_target): Install to_fileio routines.
10963
10964 * remote.c (init_remote_ops): Install to_fileio routines.
10965
10966 2012-01-20 Pedro Alves <palves@redhat.com>
10967 Ulrich Weigand <ulrich.weigand@linaro.org>
10968
10969 * remote.c (remote_multi_process_p): Only check for multi-process
10970 protocol feature, do not check for extended protocol.
10971 (remote_supports_multi_process): Check for extended protocol here.
10972 (set_general_process): Likewise.
10973 (extended_remote_kill): Likewise.
10974 (remote_pid_to_str): Likewise.
10975 (remote_query_supported): Always query multiprocess mode.
10976
10977 2012-01-20 Pedro Alves <palves@redhat.com>
10978 Ulrich Weigand <ulrich.weigand@linaro.org>
10979
10980 * inferior.h (struct inferior): Add fake_pid_p.
10981 * inferior.c (exit_inferior_1): Clear fake_pid_p.
10982 * remote.c (remote_start_remote): Set fake_pid_p if we have to use
10983 magic_null_ptid since the remote side doesn't provide a real PID.
10984
10985 2012-01-19 Tom Tromey <tromey@redhat.com>
10986
10987 * NEWS: Combine the two Python sections.
10988
10989 2012-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
10990
10991 * target.h (target_close): Update comment on the target's unpush state.
10992
10993 2012-01-19 Pedro Alves <palves@redhat.com>
10994
10995 * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
10996 linux_nat_async directly instead of going through the target
10997 vector.
10998 * target.c (unpush_target): Close target after unpushing it, not
10999 before.
11000
11001 2012-01-19 Gary Benson <gbenson@redhat.com>
11002
11003 * mdebugread.c (sort_blocks): Replace integer constants with ones
11004 derived from FIRST_LOCAL_BLOCK.
11005
11006 2012-01-18 Paul Pluzhnikov <ppluzhnikov@google.com>
11007 Jan Kratochvil <jan.kratochvil@redhat.com>
11008
11009 PR gdb/9538
11010 * symfile.c (find_separate_debug_file): New function.
11011 (terminate_after_last_dir_separator): Likewise.
11012 (find_separate_debug_file_by_debuglink): Also try realpath.
11013 * configure.ac (AC_CHECK_FUNCS): Add lstat.
11014 * configure: Regenerate.
11015 * config.in: Regenerate.
11016
11017 2012-01-18 Doug Evans <dje@google.com>
11018
11019 * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
11020 (main.o): Remove rule.
11021 * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
11022 (--with-sysroot): Rewrite.
11023 * configure: Regenerate.
11024 * config.in: Regenerate.
11025
11026 2012-01-18 Sergio Durigan Junior <sergiodj@redhat.com>
11027
11028 * parse.c (initialize_expout): New function.
11029 (reallocate_expout): Likewise.
11030 (parse_exp_in_context): Use `initialize_expout' and
11031 `reallocate_expout' when appropriate.
11032
11033 2012-01-18 Pedro Alves <palves@redhat.com>
11034
11035 * record.c (struct record_breakpoint, record_breakpoint_p)
11036 (record_breakpoints): New.
11037 (record_insert_breakpoint, record_remove_breakpoint): Manage
11038 record breakpoints list. Only remove breakpoints from the
11039 inferior if they had been inserted there in the first place.
11040
11041 2012-01-17 Doug Evans <dje@google.com>
11042
11043 * linespec.c (decode_line_internal): Don't call symtabs_from_filename
11044 if we know we don't have a file name to look for.
11045
11046 2012-01-17 Pedro Alves <palves@redhat.com>
11047
11048 * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
11049 the frame's stop reason is UNWIND_UNAVAILABLE.
11050
11051 2012-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
11052
11053 Fix compilation error.
11054 * m2-exp.y (yyerror): Use ANSI C prototype.
11055
11056 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
11057
11058 * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
11059 (growbuf_by_size): Likewise.
11060 (yyerror): Likewise.
11061 * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
11062 (modblock): Remove variable (was #if 0'ed).
11063 (parse_number): Convert prototype from K&R to ANSI C.
11064 (yyerror): Likewise.
11065 * objc-exp.y (parse_number): Likewise.
11066 (yyerror): Likewise.
11067 (yylex): Remove #if 0'ed code.
11068 * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
11069 (yyerror): Likewise.
11070
11071 2012-01-16 Tom Tromey <tromey@redhat.com>
11072
11073 * NEWS: Add item.
11074 * symtab.h (compare_filenames_for_search): Declare.
11075 * symtab.c (compare_filenames_for_search): New function.
11076 (iterate_over_some_symtabs): Use it.
11077 * symfile.h (struct quick_symbol_functions)
11078 <map_symtabs_matching_filename>: Change spec.
11079 * psymtab.c (partial_map_symtabs_matching_filename): Use
11080 compare_filenames_for_search. Update for new spec.
11081 * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
11082 compare_filenames_for_search. Update for new spec.
11083 * breakpoint.c (clear_command): Use compare_filenames_for_search.
11084
11085 2012-01-16 Tom Tromey <tromey@redhat.com>
11086
11087 PR python/13281:
11088 * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
11089 (struct main_type) <flag_flag_enum>: New field.
11090 * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
11091 * NEWS: Add entries.
11092 * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
11093 enums.
11094 * python/lib/gdb/printing.py (_EnumInstance): New class.
11095 (FlagEnumerationPrinter): Likewise.
11096
11097 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
11098
11099 * breakpoint.c (create_sals_from_address_default): New function.
11100 (create_breakpoints_sal_default): Likewise.
11101 (decode_linespec_default): Likewise.
11102 (is_marker_spec): Removed.
11103 (strace_marker_p): New function.
11104 (init_breakpoint_sal): Using `strace_marker_p' instead of
11105 `is_marker_spec'.
11106 (create_breakpoint): Call method `create_sals_from_address' from
11107 breakpoint_ops, replacing code that created SALs conditionally
11108 on the type of the breakpoint. Call method `create_breakpoints_sal',
11109 replacing code that created breakpoints conditionally on the type
11110 wanted.
11111 (base_breakpoint_create_sals_from_address): New function.
11112 (base_breakpoint_create_breakpoints_sal): Likewise.
11113 (base_breakpoint_decode_linespec): Likewise.
11114 (base_breakpoint_ops): Add methods
11115 `base_breakpoint_create_sals_from_address',
11116 `base_breakpoint_create_breakpoints_sal' and
11117 `base_breakpoint_decode_linespec'.
11118 (bkpt_create_sals_from_address): New function.
11119 (bkpt_create_breakpoints_sal): Likewise.
11120 (bkpt_decode_linespec): Likewise.
11121 (tracepoint_create_sals_from_address): Likewise.
11122 (tracepoint_create_breakpoints_sal): Likewise.
11123 (tracepoint_decode_linespec): Likewise.
11124 (strace_marker_create_sals_from_address): Likewise.
11125 (strace_marker_create_breakpoints_sal): Likewise.
11126 (strace_marker_decode_linespec): Likewise.
11127 (strace_marker_breakpoint_ops): New variable.
11128 (addr_string_to_sals): Remove `marker_spec'. Call method
11129 `decode_linespec' from breakpoint_ops, replacing code that decoded
11130 an address string into a SAL. Use `strace_marker_p' instead of
11131 `marker_spec'.
11132 (strace_command): Decide whether we are dealing with a static
11133 tracepoint with marker or not. Use the appropriate breakpoint_ops.
11134 (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
11135 * breakpoint.h (linespec_result, linespec_sals): New forward
11136 declarations.
11137 (breakpoint_ops) <create_sals_from_address>,
11138 <create_breakpoints_sal>, <decode_linespec>: New methods.
11139
11140 2012-01-14 Doug Evans <dje@google.com>
11141
11142 * NEWS: Update text for "maint set python print-stack".
11143 It is deprecated in gdb 7.4 and deleted in 7.5.
11144
11145 2012-01-13 Eli Zaretskii <eliz@gnu.org>
11146
11147 * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
11148 including curses.h.
11149
11150 2012-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
11151
11152 * configure: Regenerate.
11153 * config.in: Regenerate.
11154
11155 2012-01-12 Keith Seitz <keiths@redhat.com>
11156
11157 PR mi/10586
11158 * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
11159 (ANONYMOUS_UNION_NAME): Define.
11160 (is_path_expr_parent): New function.
11161 (get_path_expr_parent): New function.
11162 (is_anonymous_child): New function.
11163 (create_child_with_value): If the child is anonymous and without
11164 a name, assign an object name to it.
11165 (c_describe_child): Use get_path_expr_parent to determine
11166 the parent expression.
11167 If there field represents an anonymous struct or union and
11168 has no name, set an appropriate display name and expression.
11169 (cplus_describe_child): Likewise.
11170
11171 2012-01-12 Pedro Alves <palves@redhat.com>
11172
11173 * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
11174 available when %ebp is found to be zero (outermost).
11175
11176 2012-01-11 Andreas Tobler <andreast@fgznet.ch>
11177
11178 * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
11179 an internal gdb_static_assert.
11180 * mi/mi-common.c: Rename static_assert to gdb_static_assert.
11181
11182 2012-01-11 Tom Tromey <tromey@redhat.com>
11183
11184 PR gdb/9598:
11185 * breakpoint.c (_initialize_breakpoint): Fix help for "catch
11186 catch" and "catch throw".
11187
11188 2012-01-11 Paul Hilfinger <hilfingr@adacore.com>
11189
11190 * blockframe.c (block_innermost_frame): Start search from selected
11191 frame, if present, or otherwise the current frame.
11192
11193 * c-exp.y (variable): Update innermost_block for
11194 'block COLONCOLON NAME' clause.
11195 * m2-exp.y (variable): Ditto.
11196 * objc-exp.y (variable): Ditto.
11197
11198 2012-01-10 Tom Tromey <tromey@redhat.com>
11199
11200 PR python/13199:
11201 * python/python.c (finish_python_initialization): Set sys.argv.
11202
11203 2012-01-10 Doug Evans <dje@google.com>
11204
11205 * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd". New arg
11206 "want_line_info". All callers updated.
11207 (dwarf_decode_lines_1): New function.
11208 (handle_DW_AT_stmt_list): Add function comment.
11209 New arg "want_line_info". All callers updated.
11210 (read_file_scope,read_type_unit_scope): Move comment from
11211 handle_DW_AT_stmt_list to here.
11212
11213 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
11214
11215 Fix regression after libiberty/ update for GCC PR 6057 and others.
11216 * c-exp.y (operator) <OPERATOR DELETE>
11217 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
11218 * cp-name-parser.y (fill_comp, make_operator, make_dtor)
11219 (make_builtin_type, make_name): New variable i, add gdb_assert.
11220 (operator) <OPERATOR NEW>: Update ARGS to 3.
11221 (operator) <OPERATOR DELETE>: Add trailing space.
11222 (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
11223 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
11224 * cp-support.c (cp_canonicalize_string): Check NULL from
11225 cp_comp_to_string, call warning and return.
11226
11227 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
11228
11229 Fix duplicate .o files after omitting libbfd.a.
11230 * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
11231 (SFILES): Add corelow.c.
11232 (COMMON_OBS): Add corelow.o.
11233 (ALLDEPFILES): Remove corelow.c.
11234 * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
11235 * config/alpha/alpha-osf3.mh: Likewise.
11236 * config/alpha/fbsd.mh: Likewise.
11237 * config/arm/nbsdaout.mh: Likewise.
11238 * config/arm/nbsdelf.mh: Likewise.
11239 * config/i386/i386gnu.mh: Likewise.
11240 * config/ia64/hpux.mh: Likewise.
11241 * config/ia64/linux.mh: Likewise.
11242 * config/m32r/linux.mh: Likewise.
11243 * config/m68k/linux.mh: Likewise.
11244 * config/mips/irix5.mh: Likewise.
11245 * config/mips/irix6.mh: Likewise.
11246 * config/pa/hpux.mh: Likewise.
11247 * config/pa/linux.mh: Likewise.
11248 * config/powerpc/aix.mh: Likewise.
11249 * config/sparc/linux.mh: Likewise.
11250 * config/sparc/linux64.mh: Likewise.
11251 * config/sparc/sol2.mh: Likewise.
11252 * config/vax/vax.mh: Likewise.
11253 * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
11254 (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
11255 (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
11256 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
11257 (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
11258 (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
11259 (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
11260 (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
11261 (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
11262 (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
11263 (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
11264 (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
11265 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
11266 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
11267 (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
11268 (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
11269 (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
11270 (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
11271 (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
11272 (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
11273 (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
11274 (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
11275 corelow.o from gdb_target_obs.
11276 * corefile.c (core_target): Update the comment on NULL value.
11277 (core_file_command): Replace error by gdb_assert on CORE_TARGET.
11278 * corelow.c (sniff_core_bfd): Call error instead of warning on zero
11279 MATCHES. Drop YUMMY set on NULL.
11280 (core_close): Do not call exit_inferior_silent on zero PID. Do not
11281 reclaim CORE_DATA if it is already NULL.
11282
11283 2012-01-09 Doug Evans <dje@google.com>
11284
11285 * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
11286 * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
11287
11288 2012-01-09 Keith Seitz <keiths@redhat.com>
11289
11290 * breakpoint.c (wrapper.h): Don't include.
11291
11292 2012-01-09 Keith Seitz <keiths@redhat.com>
11293
11294 * Makefile.in (SFILES): Remove wrapper.c.
11295 (HFILES_NO_SRCDIR): Remove wrapper.h.
11296 (COMMON_OBS): Remove wrapper.o.
11297 * cli/cli-interp.c: Don't inlude wrapper.h.
11298 * corelow.c: Likewise.
11299 (core_open): Replace gdb_target_find_new_threads with
11300 TRY_CATCH around target_find_new_threads.
11301 * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
11302 * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
11303 * varobj.c (varobj_create): Likewise for parse_exp_1 and
11304 evaluate_expression.
11305 (varobj_set_value): Likewise for evaluate_expression and
11306 value_assign.
11307 (install_new_variable): Likewise for value_fetch_lazy.
11308 (adjust_value_for_child_access): Likewise for value_ind.
11309 (c_describe_child): Likewise for value_subscript and
11310 value_ind.
11311 (c_value_of_root): Likewise for evaluate_expression.
11312 * wrapper.c: Remove.
11313 * wrapper.h: Remove.
11314
11315 2012-01-09 Doug Evans <dje@google.com>
11316
11317 * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
11318 partial_read_comp_unit_head. Replace "buffer", "buffer_size" and
11319 "abfd" args with "section". All callers updated.
11320 Error checking code moved ...
11321 (error_check_comp_unit_head): ... here. New function.
11322 (read_and_check_type_unit_head): Renamed from read_type_unit_head.
11323 Delete arg "abfd". New arg "type_offset". All callers updated.
11324 (create_debug_types_hash_table): Simplify by using
11325 read_and_check_type_unit_head.
11326
11327 * parser-defs.h (namecopy): Delete.
11328 * parse.c (namecopy, namecopy_size): Move into copy_name.
11329
11330 2012-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
11331
11332 Partially fix duplicate .o files after omitting libbfd.a.
11333 * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
11334 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
11335 * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
11336 * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
11337 * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
11338 * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
11339 * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
11340
11341 2012-01-09 Pedro Alves <palves@redhat.com>
11342
11343 * MAINTAINERS: Update my email address.
11344
11345 2012-01-08 Doug Evans <dje@google.com>
11346
11347 * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
11348 n_type_units. Rename type_comp_units to all_type_units.
11349 All uses updated.
11350 (add_signatured_type_cu_to_table): Renamed from
11351 add_signatured_type_cu_to_list. All callers updated.
11352
11353 * gdbtypes.h (struct cplus_struct_type): Delete member
11354 nfn_fields_total. All uses removed.
11355
11356 2012-01-06 Doug Evans <dje@google.com>
11357
11358 * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
11359 to top of file.
11360 (dwarf2_find_comp_unit): Delete.
11361 (process_psymtab_comp_unit): Make result "void".
11362 Delete args buffer, info_ptr, buffer_size, and replace with
11363 "section". All callers updated.
11364 (dwarf2_build_psymtabs_hard): Simplify.
11365
11366 2012-01-06 Sergio Durigan Junior <sergiodj@redhat.com>
11367 Thiago Jung Bauermann <bauerman@br.ibm.com>
11368
11369 * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
11370 before `struct gdb_exception'.
11371 * breakpoint.c (update_global_location_list_nothrow)
11372 (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
11373 * cp-abi.c (value_rtti_type): Likewise.
11374 * cp-support.c (cp_validate_operator): Likewise.
11375 * infrun.c (insert_exception_resume_breakpoint)
11376 (check_exception_resume, keep_going): Likewise.
11377 * mi-interp.c (mi_breakpoint_created)
11378 (mi_breakpoint_modified): Likewise.
11379 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
11380 * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
11381 (ia64_hpux_handle_dld_breakpoint_1): Likewise.
11382
11383 2012-01-05 Doug Evans <dje@google.com>
11384
11385 * dwarf2read.c (statement_prologue): Delete, unused.
11386
11387 * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
11388 * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
11389
11390 * dwarf2read.c (comp_unit_header): Delete, unused.
11391
11392 2012-01-05 Ulrich Weigand <uweigand@de.ibm.com>
11393
11394 * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
11395 * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
11396
11397 2012-01-05 Khoo Yit Phang <khooyp@cs.umd.edu>
11398
11399 * infrun.c (normal_stop): Don't skip calling the normal_stop
11400 observers if the thread was doing a multi-step, but stopped for
11401 some reason other than stepping.
11402
11403 2012-01-05 Pedro Alves <alves.ped@gmail.com>
11404
11405 * cli/cli-decode.h: Add comments.
11406 (CMD_LIST_AMBIGUOUS): Moved to command.h
11407 (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
11408 (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
11409 (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
11410 (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
11411 (add_com, add_com_alias, add_info, add_info_alias)
11412 (complete_on_cmdlist, complete_on_enum, help_list): Remove
11413 declarations.
11414 * command.h: Add and adjust comments.
11415 (CMD_LIST_AMBIGUOUS): Moved here.
11416 (help_cmd, help_cmd_list): Delete declarations.
11417
11418 2012-01-04 Doug Evans <dje@google.com>
11419
11420 * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
11421 All callers updated.
11422 (load_full_type_unit): Renamed from read_signatured_type_at_offset.
11423 Replace all arguments with "per_cu". All callers updated.
11424
11425 * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
11426
11427 * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
11428 New arg "per_cu". All callers updated.
11429
11430 Delete #if 0'd out code.
11431 * language.c (binop_result_type): Delete.
11432 (simple_type, ordered_type, same_type, integral_type): Delete.
11433 (numeric_type, character_type, string_type, boolean_type): Delete.
11434 (float_type, structured_type): Delete.
11435 * language.h: Update.
11436
11437 2012-01-04 Tom Tromey <tromey@redhat.com>
11438
11439 * python/py-value.c (valpy_binop): Initialize 'res_val'.
11440
11441 2012-01-04 Joel Brobecker <brobecker@adacore.com>
11442
11443 * corefile.c (close_exec_file): Delete.
11444 (reopen_exec_file): Remove commented out code that seems related
11445 to close_exec_file, which is being deleted here.
11446 * inferior.h (close_exec_file): Delete.
11447 * fork-child.c (fork_inferior): Remove call to fork_inferior.
11448
11449 2012-01-04 Joel Brobecker <brobecker@adacore.com>
11450
11451 * ada-lang.c: #include "cli/cli-utils.h".
11452 (get_selections): Use skip_spaces.
11453 (ada_get_next_arg): Use skip_spaces and skip_to_space.
11454 (catch_ada_exception_command_split): Use skip_spaces.
11455 (ada_decode_assert_location): Likewise.
11456
11457 2012-01-04 Joel Brobecker <brobecker@adacore.com>
11458
11459 * linespec.c (decode_line_internal): Check for C++ or Java
11460 compound constructs only if the current language is C, C++
11461 or Java.
11462
11463 2012-01-04 Jan Kratochvil <jan.kratochvil@redhat.com>
11464
11465 Revert:
11466 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
11467 Joel Brobecker <brobecker@adacore.com>
11468 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
11469 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
11470 3 times.
11471 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
11472 fall through into AT_ENTRY_POINT.
11473 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
11474 DUMMY_ADDR with it.
11475 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
11476 PPC_INSN_SIZE skip to 3 times.
11477
11478 2012-01-04 Joel Brobecker <brobecker@adacore.com>
11479
11480 * linespec.c (add_minsym): Preserve function descriptors.
11481
11482 2012-01-04 Ulrich Weigand <uweigand@de.ibm.com>
11483
11484 * breakpoint.c (all_locations_are_pending): Consider locations
11485 in program spaces executing during startup pending as well.
11486
11487 2012-01-04 Joel Brobecker <brobecker@adacore.com>
11488
11489 Copyright year update in most files of the GDB Project.
11490
11491 2012-01-04 Joel Brobecker <brobecker@adacore.com>
11492
11493 * copyright.sh: Delete.
11494 * copyright.py: Rewrite.
11495
11496 2012-01-04 Joel Brobecker <brobecker@adacore.com>
11497
11498 * gnulib/extra/update-copyright: New file, imported from gnulib.
11499
11500 2012-01-04 Joel Brobecker <brobecker@adacore.com>
11501
11502 * README (Copyright and License Notices): New section.
11503
11504 2012-01-03 Tom Tromey <tromey@redhat.com>
11505
11506 PR python/12533:
11507 * python/py-value.c (valpy_dereference, valpy_get_address
11508 valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
11509 (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
11510 (valpy_absolute, valpy_richcompare): Free intermediate values.
11511
11512 2011-01-03 Joel Brobecker <brobecker@adacore.com>
11513
11514 * ada-lang.c: Reformat the copyright notice.
11515
11516 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
11517
11518 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
11519 * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
11520 (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
11521 (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
11522 Revert this part of:
11523 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
11524 Build gdb directly from *.o files not using libgdb.a.
11525 * Makefile.in (COMMON_OBS): Remove solib-target.o.
11526
11527 2012-01-02 Joel Brobecker <brobecker@adacore.com>
11528
11529 * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
11530 gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
11531 Reformat the copyright header.
11532
11533 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
11534
11535 Revert this part of:
11536 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
11537 Remove the gdbtui binary.
11538 * gdb.c (main): Remove args.interpreter_p initialization.
11539 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
11540 * main.h (struct captured_main_args): Remove interpreter_p.
11541
11542 2012-01-02 Joel Brobecker <brobecker@adacore.com>
11543
11544 * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
11545
11546 2012-01-02 Joel Brobecker <brobecker@adacore.com>
11547
11548 * top.c (print_gdb_version): Update copyright year.
11549
11550 2012-01-02 Yao Qi <yao@codesourcery.com>
11551
11552 * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
11553
11554 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
11555 Joel Brobecker <brobecker@adacore.com>
11556
11557 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
11558 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
11559 3 times.
11560 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
11561 fall through into AT_ENTRY_POINT.
11562 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
11563 DUMMY_ADDR with it.
11564 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
11565 PPC_INSN_SIZE skip to 3 times.
11566
11567 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
11568
11569 * amd64-linux-nat.c (update_debug_registers_callback): New comment on
11570 the return value.
11571 * i386-linux-nat.c (update_debug_registers_callback): Likewise.
11572
11573 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
11574
11575 Build gdb directly from *.o files not using libgdb.a.
11576 * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
11577 (COMMON_OBS): Remove solib-target.o.
11578 (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
11579 (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
11580 (LIBGDB_OBS, libgdb.a): Move it above.
11581 * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
11582 (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
11583 (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
11584 (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
11585 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
11586 (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
11587 (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
11588 (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
11589 (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
11590 (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
11591 (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
11592 (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
11593 (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
11594 (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
11595 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
11596 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
11597 (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
11598 (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
11599 (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
11600 (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
11601 (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
11602 (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
11603 (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
11604 (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
11605 (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
11606 (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
11607 (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
11608
11609 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
11610
11611 Remove the gdbtui binary.
11612 * .gitignore (/gdbtui): Remove.
11613 * Makefile.in (TUI): Remove.
11614 (SUBDIR_TUI_OBS): Remove tui-main.o.
11615 (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
11616 (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
11617 (tui-main.o): Remove.
11618 (all_object_files): Remove tui-main.o.
11619 * NEWS: New note for the gdbtui removal.
11620 * configure: Rebuilt.
11621 * configure.ac: No longer add all-tui, clean-tui, install-tui and
11622 uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
11623 CONFIG_UNINSTALL respectively.
11624 * gdb.c (main): Remove args.interpreter_p initialization.
11625 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
11626 * main.h (struct captured_main_args): Remove interpreter_p.
11627 * tui/tui-main.c: Remove.
11628
11629 2012-01-01 Doug Evans <dje@google.com>
11630
11631 * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
11632 (dwarf2_physname, read_import_statement): Ditto.
11633 (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
11634 (process_structure_scope read_subroutine_type): Ditto.
11635 (read_typedef, load_partial_dies, read_partial_die): Ditto.
11636 (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
11637 (dwarf2_fetch_die_location_block): Ditto.
11638 (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
11639
11640 * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
11641 All callers updated.
11642 (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
11643 (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
11644 (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
11645
11646 * dwarf2read.c (load_cu): Move assert to more useful location.
11647
11648 * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
11649 All callers updated.
11650
11651 * dwarf2read.c (dwarf2_per_objfile): Add comment.
11652 (dwarf2_elf_names): Minor reformat.
11653 (dwarf2_per_cu_data): Tweak comment.
11654 (dwarf2_read_section): Fix comment.
11655 (create_all_comp_units): Fix comment.
11656 (load_full_comp_unit): Fix comment.
11657 (process_full_comp_unit): Fix comment.
11658 (read_signatured_type): Fix comment.
11659
11660 For older changes see ChangeLog-2011.
11661 \f
11662 Local Variables:
11663 mode: change-log
11664 left-margin: 8
11665 fill-column: 74
11666 version-control: never
11667 coding: utf-8
11668 End:
This page took 0.264832 seconds and 3 git commands to generate.