2012-02-10 Pedro Alves <palves@redhat.com>
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2012-02-10 Pedro Alves <palves@redhat.com>
2
3 * inferior.c (inferior_pid_to_str): New.
4 (print_inferior, inferior_command): Use it.
5
6 2012-02-10 Pedro Alves <palves@redhat.com>
7
8 * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of
9 the test CFLAGS.
10 * configure: Regenerate.
11
12 2012-02-10 Jan Kratochvil <jan.kratochvil@redhat.com>
13
14 * linespec.c (decode_line_internal): Fix comment correctness.
15
16 2012-02-09 Valery Khromov <valery.khromov@gmail.com>
17
18 PR gdb/12953
19 * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h.
20 * amd64bsd-nat.c: Add support for debug registers (adapted from
21 i386bsd-nat.c).
22 [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set)
23 (amd64bsd_dr_set_control, amd64bsd_dr_set_addr)
24 (amd64bsd_dr_get_addr, amd64bsd_dr_get_status)
25 (amd64bsd_dr_get_control): New functions.
26 * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h).
27 * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h".
28 [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware
29 watchpoints initialization.
30 * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o.
31
32 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
33
34 * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print
35 flds_bnds.fields.
36 (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds.
37
38 2012-02-09 Jan Kratochvil <jan.kratochvil@redhat.com>
39
40 * breakpoint.c (bp_location_compare): Fix comment. Reindent the code.
41
42 2012-02-08 Joel Brobecker <brobecker@adacore.com>
43
44 * language.h (symbol_name_cmp_ftype): Renames
45 symbol_name_match_p_ftype.
46 (struct language_defn)[la_get_symbol_name_cmp]: Renames
47 la_get_symbol_name_match_p.
48 * ada-lang.c (ada_get_symbol_name_cmp): Renames
49 ada_get_symbol_name_match_p. Update comment.
50 (ada_language_defn)[la_get_symbol_name_cmp]: Update value.
51 * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]:
52 Renames symbol_name_match_p. Update field type.
53 (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust.
54 * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
55 opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by
56 "la_get_symbol_name_cmp" in comments.
57 * language.c: Likewise.
58
59 2012-02-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
60
61 * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct
62 %eflags offset.
63 * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs)
64 (amd64_sol2_gregset32_reg_offs): Likewise.
65
66 2012-02-08 Joel Brobecker <brobecker@adacore.com>
67
68 * solib-darwin.c (darwin_bfd_open): Make sure that the filename
69 of the returned BFD is allocated by GDB.
70
71 2012-02-07 Tom Tromey <tromey@redhat.com>
72
73 PR python/12027:
74 * python/python-internal.h (frame_object_type): Declare.
75 * python/py-symbol.c (sympy_needs_frame): New function.
76 (sympy_value): New function.
77 (symbol_object_getset): Add "needs_frame".
78 (symbol_object_methods): Add "value".
79 * python/py-frame.c (frame_object_type): No longer static.
80
81 2012-02-07 Tom Tromey <tromey@redhat.com>
82
83 PR python/13599:
84 * python/py-symbol.c (sympy_line): New function.
85 (symbol_object_getset): Add "line".
86
87 2012-02-07 Tom Tromey <tromey@redhat.com>
88
89 * charset.c (find_charset_names): Check 'in' against NULL.
90
91 2012-02-06 Doug Evans <dje@google.com>
92
93 * gdbtypes.h (struct main_type): Change type of name,tag_name,
94 and fields.name members from char * to const char *. All uses updated.
95 (struct cplus_struct_type): Change type of fn_fieldlists.name member
96 from char * to const char *. All uses updated.
97 (type_name_no_tag): Update.
98 (lookup_unsigned_typename, lookup_signed_typename): Update.
99 * gdbtypes.c (type_name_no_tag): Change result type
100 from char * to const char *. All callers updated.
101 (lookup_unsigned_typename, lookup_signed_typename): Change type of
102 name parameter from char * to const char *.
103 * symtab.h (struct cplus_specific): Change type of demangled_name
104 member from char * to const char *. All uses updated.
105 (struct general_symbol_info): Change type of name and
106 mangled_lang.demangled_name members from char * to const char *.
107 All uses updated.
108 (symbol_get_demangled_name, symbol_natural_name): Update.
109 (symbol_demangled_name, symbol_search_name): Update.
110 * symtab.c (symbol_get_demangled_name): Change result type
111 from char * to const char *. All callers updated.
112 (symbol_natural_name, symbol_demangled_name): Ditto.
113 (symbol_search_name): Ditto.
114 (completion_list_add_name): Change type of symname,sym_text,
115 text,word parameters from char * to const char *.
116 (completion_list_objc_symbol): Change type of sym_text,
117 text,word parameters from char * to const char *.
118 * ada-lang.c (find_struct_field): Change type of name parameter
119 from char * to const char *.
120 (encoded_ordered_before): Similarly for N0,N1 parameters.
121 (old_renaming_is_invisible): Similarly for function_name parameter.
122 (ada_type_name): Change result type from char * to const char *.
123 All callers updated.
124 * ada-lang.h (ada_type_name): Update.
125 * buildsym.c (hashname): Change type of name parameter
126 from char * to const char *.
127 * buildsym.h (hashname): Update.
128 * dbxread.c (end_psymtab): Change type of include_list parameter
129 from char ** to const char **.
130 * dwarf2read.c (determine_prefix): Change result type
131 from char * to const char *. All callers updated.
132 * f-lang.c (find_common_for_function): Change type of name, funcname
133 parameters from char * to const char *.
134 * f-lang.c (find_common_for_function): Update.
135 * f-valprint.c (list_all_visible_commons): Change type of funcname
136 parameters from char * to const char *.
137 * gdbarch.sh (static_transform_name): Change type of name parameter
138 and result from char * to const char *.
139 * gdbarch.c: Regenerate.
140 * gdbarch.h: Regenerate.
141 * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type
142 of name parameter from char * to const char *.
143 * jv-lang.c (java_primitive_type_from_name): Ditto.
144 (java_demangled_signature_length): Similarly for signature parameter.
145 (java_demangled_signature_copy): Ditto.
146 (java_demangle_type_signature): Ditto.
147 * jv-lang.h (java_primitive_type_from_name): Update.
148 (java_demangle_type_signature): Update.
149 * objc-lang.c (specialcmp): Change type of a,b parameters
150 from char * to const char *.
151 * p-lang.c (is_pascal_string_type): Change type of arrayname parameter
152 from char * to const char *. All callers updated.
153 * p-lang.h (is_pascal_string_type): Update.
154 * solib-frv.c (find_canonical_descriptor_in_load_object): Change type
155 of name parameter from char * to const char *.
156 * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto.
157 * utils.c (fprintf_symbol_filtered): Ditto.
158 * defs.h (fprintf_symbol_filtered): Update.
159 * sparc-tdep.h (sparc_sol2_static_transform_name): Update.
160 * stabsread.h (end_psymtab): Update.
161 * stack.c (find_frame_funname): Change type of funname parameter
162 from char ** to const char **.
163 * stack.h (find_frame_funname): Update.
164 * typeprint.c (type_print): Change type of varstring parameter
165 from char * to const char *.
166 * value.h (type_print): Update.
167 * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter
168 from char * to const char *. All callers updated.
169 (xcoff_end_psymtab): Change type of include_list parameter
170 from char ** to const char **. All callers updated.
171 (swap_sym): Similarly for name parameter. All callers updated.
172 * coffread.c (patch_type): Add (char*) cast to xfree parameter.
173 Use xstrdup.
174 (process_coff_symbol): Use xstrdup.
175 * stabsread.c (stabs_method_name_from_physname): Renamed from
176 update_method_name_from_physname. Change result type from void
177 to char *. All callers updated.
178 (read_member_functions): In has_destructor case, store name in objfile
179 obstack instead of malloc space. In !has_stub case, fix mem leak.
180
181 2012-02-06 Luca Pizzamiglio <luca.pizzamiglio@gmail.com>
182
183 * configure: Rebuild.
184 * configure.ac: Put -L../bfd and -L../libiberty at the front of
185 LDFLAGS.
186
187 2012-02-03 Kevin Buettner <kevinb@redhat.com>
188
189 * configure.tgt (rl78-*-elf): New target.
190 * rl78-tdep.c: New file.
191
192 2012-02-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
193
194 * remote.c (remote_rcmd): Use getpkt_sane to detect timeout
195 and continue the loop. Add QUIT statement.
196
197 2012-02-03 Tom Tromey <tromey@redhat.com>
198
199 PR gdb/13596:
200 * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from
201 bfd_lookup_symbol_from_symtab.
202 * solib-pa64.c (pa64_solib_create_inferior_hook): Use
203 gdb_bfd_lookup_symbol_from_symtab.
204
205 2012-02-03 Joel Brobecker <brobecker@adacore.com>
206
207 * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols,
208 use SYMBOL_LINKAGE_NAME to find the corresponding non-argument
209 symbol. Add assertion that sym2 is never NULL.
210
211 2012-02-02 Doug Evans <dje@google.com>
212
213 * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of
214 "name" parameter to const char ** from char **. All callers updated.
215 (find_pc_partial_function): Ditto.
216 (cache_pc_function_name): Change type to const char * from char *.
217 * symtab.h ((find_pc_partial_function_gnu_ifunc): Update.
218 (find_pc_partial_function): Update.
219 * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change
220 type of "name" parameter to const char * from char *.
221 All uses updated.
222 * arch-utils.c (generic_in_solib_return_trampoline): Change
223 type of "name" parameter to const char * from char *.
224 * arch-utils.h (generic_in_solib_return_trampoline): Update.
225 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change
226 type of "name" parameter to const char * from char *.
227 * gdbarch.sh (in_solib_return_trampoline): Ditto.
228 * gdbarch.c: Regenerate.
229 * gdbarch.h: Regenerate.
230 * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update.
231 * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update.
232 * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change
233 type of "name" parameter to const char * from char *.
234 * skip.c (skip_function_pc): Ditto.
235 * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto.
236 * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update.
237 * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto.
238 * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto.
239 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto.
240 * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto.
241 * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto.
242 * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name".
243 * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update.
244
245 2012-02-02 Pedro Alves <palves@redhat.com>
246
247 * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if
248 the current inferior has no execution. Make sure the current
249 remote process matches gdb's current inferior.
250
251 2012-02-02 Tom Tromey <tromey@redhat.com>
252
253 PR gdb/13405:
254 * tui/tui-win.c (parse_scrolling_args): Don't write to possibly
255 read-only memory.
256
257 2012-02-02 Tom Tromey <tromey@redhat.com>
258
259 PR gdb/9307:
260 * symtab.c (lookup_language_this): Set block_found.
261
262 2012-02-01 Tom Tromey <tromey@redhat.com>
263
264 PR gdb/13431:
265 * jit.c (struct jit_inferior_data): Rewrite.
266 (struct jit_objfile_data): New.
267 (get_jit_objfile_data): New function.
268 (add_objfile_entry): Update.
269 (jit_read_descriptor): Return int. Replace descriptor_addr
270 argument with inf_data. Update. Don't call error.
271 (jit_breakpoint_re_set_internal): Reorder logic. Update. Look up
272 descriptor here.
273 (jit_inferior_init): Don't look up descriptor. Don't call error.
274 (jit_reset_inferior_data_and_breakpoints)
275 (jit_inferior_created_observer): Remove.
276 (jit_inferior_exit_hook): Update.
277 (jit_executable_changed_observer): Remove.
278 (jit_event_handler): Update.
279 (free_objfile_data): Reset inferior data if needed.
280 (_initialize_jit): Update.
281
282 2012-02-01 Tom Tromey <tromey@redhat.com>
283
284 * jit.c (bfd_open_from_target_memory): Move higher in file.
285
286 2012-02-01 Tristan Gingold <gingold@adacore.com>
287
288 * libunwind-frame.c (libunwind_load): Display message if dlopen
289 failed.
290
291 2012-02-01 Gary Benson <gbenson@redhat.com>
292
293 * symtab.h (symbol_name_match_p_ftype): New typedef.
294 (iterate_over_symbols): Use the above.
295 * symtab.c (iterate_over_symbols): Likewise.
296 * language.h (language_defn->la_iterate_over_symbols): Likewise.
297 * ada-lang.c (ada_iterate_over_symbols): Likewise.
298 * linespec.c (iterate_over_all_matching_symtabs): Likewise.
299 (iterate_name_matcher): Document return values.
300 (collect_one_symbol): Likewise.
301 (collect_function_symbols): Likewise.
302 (collect_symbols): Likewise.
303
304 2012-02-01 Tom Tromey <tromey@redhat.com>
305
306 * ada-lang.c (resolve_subexp): Update.
307 (ada_lookup_symbol_list): Add 'full_search' argument.
308 (ada_iterate_over_symbols): Pass 0 as full_search argument to
309 ada_lookup_symbol_list.
310 (ada_lookup_encoded_symbol): Update.
311 (get_var_value): Update.
312 * ada-exp.y (block_lookup): Update.
313 (write_var_or_type): Update.
314 (write_name_assoc): Update.
315 * ada-lang.h (ada_lookup_symbol_list): Update.
316
317 2012-01-31 Tom Tromey <tromey@redhat.com>
318
319 * language.h (struct language_defn) <la_iterate_over_symbols>: Fix
320 comment.
321
322 2012-01-31 Doug Evans <dje@google.com>
323
324 * symtab.h: Remove outdated comment.
325 (SYMBOL_MATCHES_NATURAL_NAME): Delete.
326
327 2012-02-01 Josh Matthews <josh@joshmatthews.net> (tiny change)
328
329 Fix build error in Darwin port.
330 * i386-darwin-nat.c: Include i386-nat.h.
331
332 2012-01-30 Tom Tromey <tromey@redhat.com>
333
334 PR breakpoints/13568:
335 * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash'
336 argument. Check for recursive includes.
337 (dwarf_decode_macros): Create an include hash.
338
339 2012-01-30 Michael Eager <eager@eagercon.com>
340
341 * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o.
342 * ppc-linux-tdep.c: Include glibc-tdep.h.
343 (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates.
344 (powerpc_linux_in_plt_stub): New function.
345 (powerpc_linux_in_dynsym_resolve_code): New function.
346 (ppc_skip_trampoline_code): New function.
347 (ppc_linux_init_abi): Use PPC specific functions rather than generic.
348 Use glibc_skip_solib_resolver.
349
350 2012-01-28 Jan Kratochvil <jan.kratochvil@redhat.com>
351
352 Code cleanup: Make 1440 bytes of data segment read-only.
353 * arch-utils.c (endian_enum): Make it const char *const [].
354 * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings):
355 Likewise.
356 * breakpoint.c (always_inserted_enums): Likewise.
357 * cli/cli-cmds.c (script_ext_enums): Likewise.
358 * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the
359 enumlist parameter const char *const *.
360 * cli/cli-decode.h (struct cmd_list_element): Make the enums field
361 const char *const *.
362 * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist
363 parameter const char *const *.
364 * cris-tdep.c (cris_modes): Make it const char *const [].
365 * filesystem.c (target_file_system_kinds): Likewise.
366 * i386-tdep.c (valid_flavors, valid_conventions): Likewise.
367 * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names)
368 (can_use_displaced_stepping_enum, scheduler_enums)
369 (exec_direction_names): Likewise.
370 * language.c (_initialize_language): Make the type_or_range_names and
371 case_sensitive_names variables const char *const [].
372 * mips-tdep.c (mips_abi_strings): Make it const char *const [].
373 * python/python.c (python_excp_enums): Likewise.
374 * remote.c (interrupt_sequence_modes): Likewise.
375 * rs6000-tdep.c (powerpc_vector_strings): Likewise.
376 * serial.c (logbase_enums): Likewise.
377 * sh-tdep.c (sh_cc_enum): Likewise.
378 * stack.c (print_frame_arguments_choices, print_entry_values_choices):
379 Likewise.
380 * symtab.c (multiple_symbols_modes): Likewise.
381 * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums):
382 Likewise.
383 * utils.c (internal_problem_modes): Likewise.
384
385 2012-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
386
387 Fix the 2012-01-26 regression by la_get_symbol_name_match_p.
388 * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P
389 result.
390
391 2012-01-27 Doug Evans <dje@google.com>
392
393 * configure.ac (with_python): Fix absolute path handling for win32.
394 * configure: Regenerate.
395
396 2012-01-26 Doug Evans <dje@google.com>
397
398 * symtab.c: Whitespace cleanup, no code changes.
399
400 * symtab.c (lookup_symbol_in_language): Improve comment.
401 (lookup_symbol_aux): Fix comment.
402
403 * psymtab.c (add_psymbol_to_list): Result is now "void".
404 * psympriv.h (add_psymbol_to_list): Update.
405
406 * dwarf2read.c (add_partial_symbol): Delete local psym, unused.
407
408 2012-01-26 Jan Kratochvil <jan.kratochvil@redhat.com>
409
410 Do not open script filenames twice.
411 * cli/cli-cmds.c (source_script_from_stream): Pass to
412 source_python_script also STREAM.
413 * python/py-auto-load.c (source_section_scripts): Pass to
414 source_python_script_for_objfile also STREAM.
415 (auto_load_objfile_script): Pass to source_python_script_for_objfile
416 also INPUT.
417 * python/python-internal.h (source_python_script_for_objfile): New
418 parameter file, rename parameter file to filename.
419 * python/python.c (python_run_simple_file): Call PyRun_SimpleFile
420 instead if !_WIN32. Update the function comment.
421 (source_python_script, source_python_script_for_objfile)
422 (source_python_script): New parameter file, rename parameter file to
423 filename. Pass FILENAME to python_run_simple_file.
424 * python/python.h (source_python_script): New parameter file, rename
425 parameter file to filename.
426
427 2012-01-26 Pedro Alves <palves@redhat.com>
428
429 * corelow.c (core_has_fake_pid): Delete.
430 (core_close): Delete references to `core_has_fake_pid'.
431 (add_to_thread_list): Adjust to mark the inferior's pid as fake.
432 (core_open): Delete references to `core_has_fake_pid'.
433 (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of
434 the removed global.
435
436 2012-01-26 Joel Brobecker <brobecker@adacore.com>
437
438 * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]:
439 Remove language parameter from name_matcher. Adjust the comment.
440 * symtab.c (search_symbols_name_matches, expand_partial_symbol_name):
441 Remove language parameter.
442 * ada-lang.c (ada_expand_partial_symbol_name): Likewise.
443 * linespec.c (iterate_name_matcher): Likewise.
444 * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of
445 name_matcher. Adjust call accordingly.
446 * psymtab.c (expand_symtabs_matching_via_partial): Likewise.
447 (maintenance_check_symtabs): Adjust type of parameter "fun".
448 * psymtab.h (maintenance_check_symtabs): Likewise.
449
450 2012-01-26 Joel Brobecker <brobecker@adacore.com>
451
452 * language.h (symbol_name_match_p_ftype): New typedef.
453 (struct language_defn): Replace field la_symbol_name_compare
454 by la_get_symbol_name_match_p.
455 * ada-lang.c (ada_get_symbol_name_match_p): New function.
456 (ada_language_defn): Use it.
457 * linespec.c (struct symbol_matcher_data): New type.
458 (iterate_name_matcher): Rewrite.
459 (iterate_over_all_matching_symtabs): Pass a pointer to
460 a symbol_matcher_data struct to expand_symtabs_matching
461 instead of just the lookup name.
462 * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c,
463 opencl-lang.c, p-lang.c, language.c: Delete field
464 la_symbol_name_compare, and replace by NULL for new field
465 la_get_symbol_name_match_p.
466 * symfile.h (struct quick_symbol_functions): Update comment.
467
468 2012-01-25 Tom Tromey <tromey@redhat.com>
469
470 * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
471 dereferencing.
472
473 2012-01-24 Tom Tromey <tromey@redhat.com>
474
475 PR symtab/12406:
476 * solib.c (update_solib_list): Update the program space's
477 added_solibs and deleted_solibs fields.
478 * progspace.h (struct program_space) <added_solibs,
479 deleted_solibs>: New fields.
480 (clear_program_space_solib_cache): Declare.
481 * progspace.c (release_program_space): Call
482 clear_program_space_solib_cache.
483 (clear_program_space_solib_cache): New function.
484 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call
485 bpstat_stop_status. Use handle_solib_event.
486 * breakpoint.c: Include gdb_regex.h.
487 (print_solib_event): New function.
488 (bpstat_print): Use print_solib_event.
489 (bpstat_stop_status): Add special case for bp_shlib_event.
490 (handle_solib_event): New function.
491 (bpstat_what): Use handle_solib_event.
492 (struct solib_catchpoint): New.
493 (dtor_catch_solib, insert_catch_solib, remove_catch_solib)
494 (breakpoint_hit_catch_solib, check_status_catch_solib)
495 (print_it_catch_solib, print_one_catch_solib)
496 (print_mention_catch_solib, print_recreate_catch_solib): New
497 functions.
498 (catch_solib_breakpoint_ops): New global.
499 (catch_load_or_unload, catch_load_command_1)
500 (catch_unload_command_1): New functions.
501 (internal_bkpt_check_status): Add special case for
502 bp_shlib_event.
503 (internal_bkpt_print_it): Use print_solib_event.
504 (initialize_breakpoint_ops): Initialize
505 catch_solib_breakpoint_ops.
506 (_initialize_breakpoint): Register "catch load" and "catch
507 unload".
508 * breakpoint.h (handle_solib_event): Declare.
509 * NEWS: Add entry for "catch load" and "catch unload".
510
511 2012-01-24 Tom Tromey <tromey@redhat.com>
512
513 * ada-lang.c: Include gdb_vecs.h.
514 * charset.c: Include gdb_vecs.h.
515 * tracepoint.h: Include gdb_vecs.h.
516 * gdb_vecs.h: New file.
517
518 2012-01-24 Pedro Alves <pedro@codesourcery.com>
519
520 * breakpoint.c (breakpoint_hit_catch_fork)
521 (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall)
522 (breakpoint_hit_catch_exec): Make use of the `ws' argument.
523 * infrun.c (inferior_has_forked, inferior_has_vforked)
524 (inferior_has_execd, inferior_has_called_syscall): Delete.
525 (handle_syscall_event): Get syscall_number from the execution
526 control state's wait status.
527 (wait_for_inferior): Don't clear syscall_number.
528
529 2012-01-24 Pedro Alves <palves@redhat.com>
530
531 * breakpoint.c (bpstat_check_location, bpstat_stop_status,
532 pc_at_non_inline_function): Add `ws' parameter, and pass it down.
533 (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork)
534 (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add
535 `ws' parameter.
536 (breakpoint_hit_ranged_breakpoint): Add `ws' parameter. Return
537 false for events other than TARGET_SIGNAL_TRAP.
538 (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit):
539 Add `ws' parameter.
540 (bkpt_breakpoint_hit): Add `ws' parameter. Return false for
541 events other than TARGET_SIGNAL_TRAP.
542 (tracepoint_breakpoint_hit): Add `ws' parameter.
543 * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws'
544 parameter.
545 (bpstat_stop_status): Same.
546 (pc_at_non_inline_function): Same.
547 * infrun.c (handle_syscall_event, handle_inferior_event): Adjust
548 to pass the current event's waitstatus to bpstat_stop_status
549 and pc_at_non_inline_function.
550
551 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
552
553 Code cleanup.
554 * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM.
555 Update the function comment for it.
556 (source_script_with_search): Call make_cleanup_fclose for STREAM.
557 * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose
558 for STREAM.
559
560 2012-01-24 Pedro Alves <palves@redhat.com>
561
562 * breakpoint.c (bpstat_stop_status): Moving clearing print_it
563 outside `bs->stop' block.
564 (bpstat_what): Rework bp_shlib_event handling.
565 (internal_bkpt_check_status): If the breakpoint is a
566 bp_shlib_event, then set bs->stop and bs->print if
567 stop_on_solib_events is set.
568
569 2012-01-24 Gary Benson <gbenson@redhat.com>
570
571 Delete #if 0'd out code.
572 * stack.c (print_frame_label_vars): Remove.
573 (catch_info): Likewise.
574 (_initialize_stack): Remove "info catch" command.
575 * NEWS: Mention the above.
576
577 2012-01-24 Pedro Alves <palves@redhat.com>
578
579 * remote.c (remote_add_inferior): New `fake_pid_p' parameter. Use
580 it.
581 (remote_notice_new_inferior): If the remote end doesn't support
582 the multiprocess extensions, then the PID is fake.
583 (add_current_inferior_and_thread): New.
584 (remote_start_remote): Use it.
585 (extended_remote_attach_1): Adjust.
586 (extended_remote_create_inferior_1): Use
587 add_current_inferior_and_thread.
588
589 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
590
591 Fix watchpoints to be specific for each inferior.
592 * breakpoint.c (watchpoint_in_thread_scope): Verify also
593 current_program_space.
594 * i386-nat.c (i386_inferior_data_cleanup): New.
595 (i386_inferior_data_get): Replace variable inf_data_local by an
596 inferior_data call.
597 (i386_use_watchpoints): Initialize i386_inferior_data.
598 * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID
599 specific iterate_over_lwps.
600
601 2012-01-24 Jan Kratochvil <jan.kratochvil@redhat.com>
602
603 Fix watchpoints across inferior fork.
604 * amd64-linux-nat.c (update_debug_registers_callback): Update the
605 comment for linux_nat_iterate_watchpoint_lwps.
606 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
607 linux_nat_iterate_watchpoint_lwps.
608 (amd64_linux_prepare_to_resume): New comment on Linux kernel.
609 * i386-linux-nat.c (update_debug_registers_callback): Update the
610 comment for linux_nat_iterate_watchpoint_lwps.
611 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
612 linux_nat_iterate_watchpoint_lwps.
613 (i386_linux_prepare_to_resume): New comment on Linux kernel.
614 * i386-nat.c: Include inferior.h.
615 (dr_mirror): Remove.
616 (i386_inferior_data, struct i386_inferior_data)
617 (i386_inferior_data_get): New.
618 (i386_debug_reg_state): Use i386_inferior_data_get.
619 (i386_cleanup_dregs, i386_update_inferior_debug_regs)
620 (i386_insert_watchpoint, i386_remove_watchpoint)
621 (i386_stopped_data_address, i386_insert_hw_breakpoint)
622 (i386_remove_hw_breakpoint): New variable state, use
623 i386_debug_reg_state instead of DR_MIRROR.
624 * linux-nat.c (delete_lwp): New declaration.
625 (num_lwps): Move here from downwards.
626 (delete_lwp_cleanup): New.
627 (linux_child_follow_fork): Create new child_lp, call
628 linux_nat_new_thread and linux_nat_prepare_to_resume before calling
629 PTRACE_DETACH.
630 (num_lwps): Move upwards.
631 (linux_nat_iterate_watchpoint_lwps): New.
632 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New.
633 (linux_nat_iterate_watchpoint_lwps_ftype): New declaration.
634
635 2012-01-24 Joel Brobecker <brobecker@adacore.com>
636
637 GDB 7.4 released.
638
639 2012-01-23 Pedro Alves <palves@redhat.com>
640
641 * top.c (caution): Rename to ...
642 (confirm): ... this.
643 (show_caution): Rename to ...
644 (show_confirm): ... this.
645 (quit_cover): Adjust.
646 (init_main): Adjust.
647 * top.h (caution): Rename to ...
648 (confirm): ... this.
649 * utils.c (internal_vproblem, defaulted_query): Adjust.
650
651 2012-01-23 Pedro Alves <palves@redhat.com>
652
653 * top.c (caution): Update comment.
654 (execute_command): Don't consider the current value of `caution'.
655
656 2012-01-23 Jan Kratochvil <jan.kratochvil@redhat.com>
657
658 * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen.
659
660 2012-01-23 Ulrich Weigand <ulrich.weigand@linaro.org>
661
662 * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>.
663 * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning.
664 * target.c (target_fileio_pwrite): Remove buffer address from
665 debug output.
666 (target_fileio_pread): Likewise.
667
668 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
669
670 * NEWS: Document remote "info proc" and "generate-core-file".
671
672 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
673
674 * gdbarch.sh (find_memory_regions): New callback.
675 * gdbarch.c, gdbarch.h: Regenerate.
676
677 * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions
678 callback before falling back to target method.
679
680 * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove.
681 (linux_target_install_ops): No longer install it.
682
683 * linux-tdep.c (linux_find_memory_regions): New function.
684 (linux_init_abi): Install it.
685
686 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
687
688 * gdbarch.sh (make_corefile_notes): New architecture callback.
689 * gdbarch.c: Regenerate.
690 * gdbarch.h: Likewise.
691
692 * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes
693 before target_make_corefile_notes. If NULL is returned, the
694 target does not support core file generation.
695
696 * linux-nat.c: Include "linux-tdep.h".
697 (find_signalled_thread, find_stop_signal): Remove.
698 (linux_nat_do_thread_registers): Likewise.
699 (struct linux_nat_corefile_thread_data): Likewise.
700 (linux_nat_corefile_thread_callback): Likewise.
701 (iterate_over_spus): Likewise.
702 (struct linux_spu_corefile_data): Likewise.
703 (linux_spu_corefile_callback): Likewise.
704 (linux_spu_make_corefile_notes): Likewise.
705 (linux_nat_collect_thread_registers): New function.
706 (linux_nat_make_corefile_notes): Replace contents by call to
707 linux_make_corefile_notes passing linux_nat_collect_thread_registers
708 as native-only callback.
709
710 * linux-tdep.h: Include "bfd.h".
711 (struct regcache): Add forward declaration.
712 (linux_collect_thread_registers_ftype): New typedef.
713 (linux_make_corefile_notes): Add prototype.
714 * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h",
715 "regset.h", and "elf-bfd.h".
716 (find_signalled_thread, find_stop_signal): New functions.
717 (linux_spu_make_corefile_notes): Likewise.
718 (linux_collect_thread_registers): Likewise.
719 (struct linux_corefile_thread_data): New data structure.
720 (linux_corefile_thread_callback): New funcion.
721 (linux_make_corefile_notes): Likewise.
722 (linux_make_corefile_notes_1): Likewise.
723 (linux_init_abi): Install it.
724
725 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
726
727 * gdbarch.sh (info_proc): New callback.
728 * gdbarch.c, gdbarch.h: Regenerate.
729
730 * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback
731 before falling back to the target info_proc callback.
732
733 * linux-nat.c: Do not include "cli/cli-utils.h".
734 (linux_nat_info_proc): Remove.
735 (linux_target_install_ops): No longer install it.
736
737 * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>.
738 (read_mapping): New function.
739 (linux_info_proc): Likewise.
740 (linux_init_abi): Install it.
741
742 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
743
744 * defs.h (enum info_proc_what): Moved here from linux-nat.c
745 * infcmd.c: (info_proc_cmd_1): New function.
746 (info_proc_cmd): New function, moved here from equivalent routine
747 orignally in linux-nat.c.
748 (info_proc_cmd_mappings): Likewise.
749 (info_proc_cmd_stat): Likewise.
750 (info_proc_cmd_status): Likewise.
751 (info_proc_cmd_cwd): Likewise.
752 (info_proc_cmd_cmdline): Likewise.
753 (info_proc_cmd_exe): Likewise.
754 (info_proc_cmd_all): Likewise.
755 (_initialize_infcmd): Install "info proc" command and subcommands.
756
757 * target.h (struct target_ops): Add to_info_proc.
758 (target_info_proc): Add prototype.
759 * target.c (target_info_proc): New function.
760
761 * procfs.c (procfs_info_proc): Add prototype.
762 (info_proc_cmd): Rename into ...
763 (procfs_info_proc): ... this. Update argument types as appropriate
764 for a to_info_proc implementation. Handle "what" argument.
765 (procfs_target): Install procfs_info_proc.
766 (_initialize_procfs): No longer install "info proc" command.
767
768 * linux-nat.c: (enum info_proc_what): Remove.
769 (linux_nat_info_proc_cmd_1): Rename into ...
770 (linux_nat_info_proc): ... this. Update argument types as appropriate
771 for a to_info_proc implementation.
772 (linux_nat_info_proc_cmd): Remove.
773 (linux_nat_info_proc_cmd_mappings): Likewise.
774 (linux_nat_info_proc_cmd_stat): Likewise.
775 (linux_nat_info_proc_cmd_status): Likewise.
776 (linux_nat_info_proc_cmd_cwd): Likewise.
777 (linux_nat_info_proc_cmd_cmdline): Likewise.
778 (linux_nat_info_proc_cmd_exe): Likewise.
779 (linux_nat_info_proc_cmd_all): Likewise.
780 (linux_target_install_ops): Install linux_nat_info_proc.
781 (_initialize_linux_nat): No longer install "info proc" command
782 and subcommands.
783
784 2012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
785
786 * configure.ac [AC_CHECK_FUNCS]: Check for readlink.
787 * config.in, configure: Regenerate.
788
789 * target.h (struct target_ops): Add to_fileio_readlink.
790 (target_fileio_readlink): Add prototype.
791 * target.c (target_fileio_readlink): New function.
792
793 * inf-child.c: Conditionally include <sys/param.h>.
794 (inf_child_fileio_readlink): New function.
795 (inf_child_target): Install it.
796
797 * remote.c (PACKET_vFile_readlink): New enum value.
798 (remote_hostio_readlink): New function.
799 (init_remote_ops): Install it.
800 (_initialize_remote): Handle vFile:readlink packet type.
801
802 2012-01-20 Pedro Alves <palves@redhat.com>
803 Ulrich Weigand <ulrich.weigand@linaro.org>
804
805 * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite.
806 * config.in, configure: Regenerate.
807
808 * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite,
809 to_fileio_pread, to_fileio_close, to_fileio_unlink.
810 (target_fileio_open): Add prototype.
811 (target_fileio_pwrite): Likewise.
812 (target_fileio_pread): Likewise.
813 (target_fileio_close): Likewise.
814 (target_fileio_unlink): Likewise.
815 (target_fileio_read_alloc): Likewise.
816 (target_fileio_read_stralloc): Likewise.
817
818 * target.c: Include "gdb/fileio.h".
819 (target_read_stralloc): Accept trailing, but not embedded NUL bytes.
820 (default_fileio_target): New function.
821 (target_fileio_open): Likewise.
822 (target_fileio_pwrite): Likewise.
823 (target_fileio_pread): Likewise.
824 (target_fileio_close): Likewise.
825 (target_fileio_unlink): Likewise.
826 (target_fileio_close_cleanup): Likewise.
827 (target_fileio_read_alloc_1): Likewise.
828 (target_fileio_read_alloc): Likewise.
829 (target_fileio_read_stralloc): Likewise.
830
831 * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>,
832 <fcntl.h>, and <unistd.h>.
833 (inf_child_fileio_open_flags_to_host): New function.
834 (inf_child_errno_to_fileio_error): Likewise.
835 (inf_child_fileio_open): Likewise.
836 (inf_child_fileio_pwrite): Likewise.
837 (inf_child_fileio_pread): Likewise.
838 (inf_child_fileio_close): Likewise.
839 (inf_child_fileio_unlink): Likewise.
840 (inf_child_target): Install to_fileio routines.
841
842 * remote.c (init_remote_ops): Install to_fileio routines.
843
844 2012-01-20 Pedro Alves <palves@redhat.com>
845 Ulrich Weigand <ulrich.weigand@linaro.org>
846
847 * remote.c (remote_multi_process_p): Only check for multi-process
848 protocol feature, do not check for extended protocol.
849 (remote_supports_multi_process): Check for extended protocol here.
850 (set_general_process): Likewise.
851 (extended_remote_kill): Likewise.
852 (remote_pid_to_str): Likewise.
853 (remote_query_supported): Always query multiprocess mode.
854
855 2012-01-20 Pedro Alves <palves@redhat.com>
856 Ulrich Weigand <ulrich.weigand@linaro.org>
857
858 * inferior.h (struct inferior): Add fake_pid_p.
859 * inferior.c (exit_inferior_1): Clear fake_pid_p.
860 * remote.c (remote_start_remote): Set fake_pid_p if we have to use
861 magic_null_ptid since the remote side doesn't provide a real PID.
862
863 2012-01-19 Tom Tromey <tromey@redhat.com>
864
865 * NEWS: Combine the two Python sections.
866
867 2012-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
868
869 * target.h (target_close): Update comment on the target's unpush state.
870
871 2012-01-19 Pedro Alves <palves@redhat.com>
872
873 * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and
874 linux_nat_async directly instead of going through the target
875 vector.
876 * target.c (unpush_target): Close target after unpushing it, not
877 before.
878
879 2012-01-19 Gary Benson <gbenson@redhat.com>
880
881 * mdebugread.c (sort_blocks): Replace integer constants with ones
882 derived from FIRST_LOCAL_BLOCK.
883
884 2012-01-18 Paul Pluzhnikov <ppluzhnikov@google.com>
885 Jan Kratochvil <jan.kratochvil@redhat.com>
886
887 PR gdb/9538
888 * symfile.c (find_separate_debug_file): New function.
889 (terminate_after_last_dir_separator): Likewise.
890 (find_separate_debug_file_by_debuglink): Also try realpath.
891 * configure.ac (AC_CHECK_FUNCS): Add lstat.
892 * configure: Regenerate.
893 * config.in: Regenerate.
894
895 2012-01-18 Doug Evans <dje@google.com>
896
897 * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete.
898 (main.o): Remove rule.
899 * configure.ac (BINDIR): Define with AC_DEFINE_DIR.
900 (--with-sysroot): Rewrite.
901 * configure: Regenerate.
902 * config.in: Regenerate.
903
904 2012-01-18 Sergio Durigan Junior <sergiodj@redhat.com>
905
906 * parse.c (initialize_expout): New function.
907 (reallocate_expout): Likewise.
908 (parse_exp_in_context): Use `initialize_expout' and
909 `reallocate_expout' when appropriate.
910
911 2012-01-18 Pedro Alves <palves@redhat.com>
912
913 * record.c (struct record_breakpoint, record_breakpoint_p)
914 (record_breakpoints): New.
915 (record_insert_breakpoint, record_remove_breakpoint): Manage
916 record breakpoints list. Only remove breakpoints from the
917 inferior if they had been inserted there in the first place.
918
919 2012-01-17 Doug Evans <dje@google.com>
920
921 * linespec.c (decode_line_internal): Don't call symtabs_from_filename
922 if we know we don't have a file name to look for.
923
924 2012-01-17 Pedro Alves <palves@redhat.com>
925
926 * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if
927 the frame's stop reason is UNWIND_UNAVAILABLE.
928
929 2012-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
930
931 Fix compilation error.
932 * m2-exp.y (yyerror): Use ANSI C prototype.
933
934 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
935
936 * f-exp.y (parse_number): Convert prototype from K&R to ANSI C.
937 (growbuf_by_size): Likewise.
938 (yyerror): Likewise.
939 * m2-exp.y (make_qualname): Remove function (was #if 0'ed).
940 (modblock): Remove variable (was #if 0'ed).
941 (parse_number): Convert prototype from K&R to ANSI C.
942 (yyerror): Likewise.
943 * objc-exp.y (parse_number): Likewise.
944 (yyerror): Likewise.
945 (yylex): Remove #if 0'ed code.
946 * p-exp.y (uptok): Convert prototype from K&R to ANSI C.
947 (yyerror): Likewise.
948
949 2012-01-16 Tom Tromey <tromey@redhat.com>
950
951 * NEWS: Add item.
952 * symtab.h (compare_filenames_for_search): Declare.
953 * symtab.c (compare_filenames_for_search): New function.
954 (iterate_over_some_symtabs): Use it.
955 * symfile.h (struct quick_symbol_functions)
956 <map_symtabs_matching_filename>: Change spec.
957 * psymtab.c (partial_map_symtabs_matching_filename): Use
958 compare_filenames_for_search. Update for new spec.
959 * dwarf2read.c (dw2_map_symtabs_matching_filename): Use
960 compare_filenames_for_search. Update for new spec.
961 * breakpoint.c (clear_command): Use compare_filenames_for_search.
962
963 2012-01-16 Tom Tromey <tromey@redhat.com>
964
965 PR python/13281:
966 * gdbtypes.h (TYPE_FLAG_ENUM): New macro.
967 (struct main_type) <flag_flag_enum>: New field.
968 * dwarf2read.c (process_enumeration_scope): Detect "flag" enums.
969 * NEWS: Add entries.
970 * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag"
971 enums.
972 * python/lib/gdb/printing.py (_EnumInstance): New class.
973 (FlagEnumerationPrinter): Likewise.
974
975 2012-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
976
977 * breakpoint.c (create_sals_from_address_default): New function.
978 (create_breakpoints_sal_default): Likewise.
979 (decode_linespec_default): Likewise.
980 (is_marker_spec): Removed.
981 (strace_marker_p): New function.
982 (init_breakpoint_sal): Using `strace_marker_p' instead of
983 `is_marker_spec'.
984 (create_breakpoint): Call method `create_sals_from_address' from
985 breakpoint_ops, replacing code that created SALs conditionally
986 on the type of the breakpoint. Call method `create_breakpoints_sal',
987 replacing code that created breakpoints conditionally on the type
988 wanted.
989 (base_breakpoint_create_sals_from_address): New function.
990 (base_breakpoint_create_breakpoints_sal): Likewise.
991 (base_breakpoint_decode_linespec): Likewise.
992 (base_breakpoint_ops): Add methods
993 `base_breakpoint_create_sals_from_address',
994 `base_breakpoint_create_breakpoints_sal' and
995 `base_breakpoint_decode_linespec'.
996 (bkpt_create_sals_from_address): New function.
997 (bkpt_create_breakpoints_sal): Likewise.
998 (bkpt_decode_linespec): Likewise.
999 (tracepoint_create_sals_from_address): Likewise.
1000 (tracepoint_create_breakpoints_sal): Likewise.
1001 (tracepoint_decode_linespec): Likewise.
1002 (strace_marker_create_sals_from_address): Likewise.
1003 (strace_marker_create_breakpoints_sal): Likewise.
1004 (strace_marker_decode_linespec): Likewise.
1005 (strace_marker_breakpoint_ops): New variable.
1006 (addr_string_to_sals): Remove `marker_spec'. Call method
1007 `decode_linespec' from breakpoint_ops, replacing code that decoded
1008 an address string into a SAL. Use `strace_marker_p' instead of
1009 `marker_spec'.
1010 (strace_command): Decide whether we are dealing with a static
1011 tracepoint with marker or not. Use the appropriate breakpoint_ops.
1012 (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops.
1013 * breakpoint.h (linespec_result, linespec_sals): New forward
1014 declarations.
1015 (breakpoint_ops) <create_sals_from_address>,
1016 <create_breakpoints_sal>, <decode_linespec>: New methods.
1017
1018 2012-01-14 Doug Evans <dje@google.com>
1019
1020 * NEWS: Update text for "maint set python print-stack".
1021 It is deprecated in gdb 7.4 and deleted in 7.5.
1022
1023 2012-01-13 Eli Zaretskii <eliz@gnu.org>
1024
1025 * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before
1026 including curses.h.
1027
1028 2012-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
1029
1030 * configure: Regenerate.
1031 * config.in: Regenerate.
1032
1033 2012-01-12 Keith Seitz <keiths@redhat.com>
1034
1035 PR mi/10586
1036 * varobj.c (ANONYMOUS_STRUCT_NAME): Define.
1037 (ANONYMOUS_UNION_NAME): Define.
1038 (is_path_expr_parent): New function.
1039 (get_path_expr_parent): New function.
1040 (is_anonymous_child): New function.
1041 (create_child_with_value): If the child is anonymous and without
1042 a name, assign an object name to it.
1043 (c_describe_child): Use get_path_expr_parent to determine
1044 the parent expression.
1045 If there field represents an anonymous struct or union and
1046 has no name, set an appropriate display name and expression.
1047 (cplus_describe_child): Likewise.
1048
1049 2012-01-12 Pedro Alves <palves@redhat.com>
1050
1051 * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as
1052 available when %ebp is found to be zero (outermost).
1053
1054 2012-01-11 Andreas Tobler <andreast@fgznet.ch>
1055
1056 * common/gdb_assert.h (gdb_static_assert): Rename static_assert to
1057 an internal gdb_static_assert.
1058 * mi/mi-common.c: Rename static_assert to gdb_static_assert.
1059
1060 2012-01-11 Tom Tromey <tromey@redhat.com>
1061
1062 PR gdb/9598:
1063 * breakpoint.c (_initialize_breakpoint): Fix help for "catch
1064 catch" and "catch throw".
1065
1066 2012-01-11 Paul Hilfinger <hilfingr@adacore.com>
1067
1068 * blockframe.c (block_innermost_frame): Start search from selected
1069 frame, if present, or otherwise the current frame.
1070
1071 * c-exp.y (variable): Update innermost_block for
1072 'block COLONCOLON NAME' clause.
1073 * m2-exp.y (variable): Ditto.
1074 * objc-exp.y (variable): Ditto.
1075
1076 2012-01-10 Tom Tromey <tromey@redhat.com>
1077
1078 PR python/13199:
1079 * python/python.c (finish_python_initialization): Set sys.argv.
1080
1081 2012-01-10 Doug Evans <dje@google.com>
1082
1083 * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd". New arg
1084 "want_line_info". All callers updated.
1085 (dwarf_decode_lines_1): New function.
1086 (handle_DW_AT_stmt_list): Add function comment.
1087 New arg "want_line_info". All callers updated.
1088 (read_file_scope,read_type_unit_scope): Move comment from
1089 handle_DW_AT_stmt_list to here.
1090
1091 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
1092
1093 Fix regression after libiberty/ update for GCC PR 6057 and others.
1094 * c-exp.y (operator) <OPERATOR DELETE>
1095 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
1096 * cp-name-parser.y (fill_comp, make_operator, make_dtor)
1097 (make_builtin_type, make_name): New variable i, add gdb_assert.
1098 (operator) <OPERATOR NEW>: Update ARGS to 3.
1099 (operator) <OPERATOR DELETE>: Add trailing space.
1100 (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3.
1101 (operator) <OPERATOR DELETE '[' ']'>: Add trailing space.
1102 * cp-support.c (cp_canonicalize_string): Check NULL from
1103 cp_comp_to_string, call warning and return.
1104
1105 2012-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
1106
1107 Fix duplicate .o files after omitting libbfd.a.
1108 * Makefile.in (ALL_TARGET_OBS): Remove corelow.o.
1109 (SFILES): Add corelow.c.
1110 (COMMON_OBS): Add corelow.o.
1111 (ALLDEPFILES): Remove corelow.c.
1112 * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o.
1113 * config/alpha/alpha-osf3.mh: Likewise.
1114 * config/alpha/fbsd.mh: Likewise.
1115 * config/arm/nbsdaout.mh: Likewise.
1116 * config/arm/nbsdelf.mh: Likewise.
1117 * config/i386/i386gnu.mh: Likewise.
1118 * config/ia64/hpux.mh: Likewise.
1119 * config/ia64/linux.mh: Likewise.
1120 * config/m32r/linux.mh: Likewise.
1121 * config/m68k/linux.mh: Likewise.
1122 * config/mips/irix5.mh: Likewise.
1123 * config/mips/irix6.mh: Likewise.
1124 * config/pa/hpux.mh: Likewise.
1125 * config/pa/linux.mh: Likewise.
1126 * config/powerpc/aix.mh: Likewise.
1127 * config/sparc/linux.mh: Likewise.
1128 * config/sparc/linux64.mh: Likewise.
1129 * config/sparc/sol2.mh: Likewise.
1130 * config/vax/vax.mh: Likewise.
1131 * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu)
1132 (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*)
1133 (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*)
1134 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*)
1135 (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*)
1136 (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*)
1137 (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*)
1138 (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*)
1139 (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*)
1140 (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu)
1141 (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*)
1142 (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*)
1143 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
1144 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*)
1145 (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*)
1146 (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
1147 (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*)
1148 (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu)
1149 (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*)
1150 (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*)
1151 (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*)
1152 (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove
1153 corelow.o from gdb_target_obs.
1154 * corefile.c (core_target): Update the comment on NULL value.
1155 (core_file_command): Replace error by gdb_assert on CORE_TARGET.
1156 * corelow.c (sniff_core_bfd): Call error instead of warning on zero
1157 MATCHES. Drop YUMMY set on NULL.
1158 (core_close): Do not call exit_inferior_silent on zero PID. Do not
1159 reclaim CORE_DATA if it is already NULL.
1160
1161 2012-01-09 Doug Evans <dje@google.com>
1162
1163 * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy.
1164 * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy.
1165
1166 2012-01-09 Keith Seitz <keiths@redhat.com>
1167
1168 * breakpoint.c (wrapper.h): Don't include.
1169
1170 2012-01-09 Keith Seitz <keiths@redhat.com>
1171
1172 * Makefile.in (SFILES): Remove wrapper.c.
1173 (HFILES_NO_SRCDIR): Remove wrapper.h.
1174 (COMMON_OBS): Remove wrapper.o.
1175 * cli/cli-interp.c: Don't inlude wrapper.h.
1176 * corelow.c: Likewise.
1177 (core_open): Replace gdb_target_find_new_threads with
1178 TRY_CATCH around target_find_new_threads.
1179 * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy.
1180 * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type.
1181 * varobj.c (varobj_create): Likewise for parse_exp_1 and
1182 evaluate_expression.
1183 (varobj_set_value): Likewise for evaluate_expression and
1184 value_assign.
1185 (install_new_variable): Likewise for value_fetch_lazy.
1186 (adjust_value_for_child_access): Likewise for value_ind.
1187 (c_describe_child): Likewise for value_subscript and
1188 value_ind.
1189 (c_value_of_root): Likewise for evaluate_expression.
1190 * wrapper.c: Remove.
1191 * wrapper.h: Remove.
1192
1193 2012-01-09 Doug Evans <dje@google.com>
1194
1195 * dwarf2read.c (read_and_check_comp_unit_head): Renamed from
1196 partial_read_comp_unit_head. Replace "buffer", "buffer_size" and
1197 "abfd" args with "section". All callers updated.
1198 Error checking code moved ...
1199 (error_check_comp_unit_head): ... here. New function.
1200 (read_and_check_type_unit_head): Renamed from read_type_unit_head.
1201 Delete arg "abfd". New arg "type_offset". All callers updated.
1202 (create_debug_types_hash_table): Simplify by using
1203 read_and_check_type_unit_head.
1204
1205 * parser-defs.h (namecopy): Delete.
1206 * parse.c (namecopy, namecopy_size): Move into copy_name.
1207
1208 2012-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
1209
1210 Partially fix duplicate .o files after omitting libbfd.a.
1211 * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o.
1212 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
1213 * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o.
1214 * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o.
1215 * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o.
1216 * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o.
1217 * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o.
1218
1219 2012-01-09 Pedro Alves <palves@redhat.com>
1220
1221 * MAINTAINERS: Update my email address.
1222
1223 2012-01-08 Doug Evans <dje@google.com>
1224
1225 * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to
1226 n_type_units. Rename type_comp_units to all_type_units.
1227 All uses updated.
1228 (add_signatured_type_cu_to_table): Renamed from
1229 add_signatured_type_cu_to_list. All callers updated.
1230
1231 * gdbtypes.h (struct cplus_struct_type): Delete member
1232 nfn_fields_total. All uses removed.
1233
1234 2012-01-06 Doug Evans <dje@google.com>
1235
1236 * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard
1237 to top of file.
1238 (dwarf2_find_comp_unit): Delete.
1239 (process_psymtab_comp_unit): Make result "void".
1240 Delete args buffer, info_ptr, buffer_size, and replace with
1241 "section". All callers updated.
1242 (dwarf2_build_psymtabs_hard): Simplify.
1243
1244 2012-01-06 Sergio Durigan Junior <sergiodj@redhat.com>
1245 Thiago Jung Bauermann <bauerman@br.ibm.com>
1246
1247 * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword
1248 before `struct gdb_exception'.
1249 * breakpoint.c (update_global_location_list_nothrow)
1250 (update_breakpoint_locations, enable_breakpoint_disp): Likewise.
1251 * cp-abi.c (value_rtti_type): Likewise.
1252 * cp-support.c (cp_validate_operator): Likewise.
1253 * infrun.c (insert_exception_resume_breakpoint)
1254 (check_exception_resume, keep_going): Likewise.
1255 * mi-interp.c (mi_breakpoint_created)
1256 (mi_breakpoint_modified): Likewise.
1257 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise.
1258 * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p)
1259 (ia64_hpux_handle_dld_breakpoint_1): Likewise.
1260
1261 2012-01-05 Doug Evans <dje@google.com>
1262
1263 * dwarf2read.c (statement_prologue): Delete, unused.
1264
1265 * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int.
1266 * dwarf2loc.h (dwarf2_per_cu_addr_size): Update.
1267
1268 * dwarf2read.c (comp_unit_header): Delete, unused.
1269
1270 2012-01-05 Ulrich Weigand <uweigand@de.ibm.com>
1271
1272 * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o.
1273 * config/s390/s390.mh (NATDEPFILES): Remove corelow.o.
1274
1275 2012-01-05 Khoo Yit Phang <khooyp@cs.umd.edu>
1276
1277 * infrun.c (normal_stop): Don't skip calling the normal_stop
1278 observers if the thread was doing a multi-step, but stopped for
1279 some reason other than stepping.
1280
1281 2012-01-05 Pedro Alves <alves.ped@gmail.com>
1282
1283 * cli/cli-decode.h: Add comments.
1284 (CMD_LIST_AMBIGUOUS): Moved to command.h
1285 (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd)
1286 (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq)
1287 (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1)
1288 (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition)
1289 (add_com, add_com_alias, add_info, add_info_alias)
1290 (complete_on_cmdlist, complete_on_enum, help_list): Remove
1291 declarations.
1292 * command.h: Add and adjust comments.
1293 (CMD_LIST_AMBIGUOUS): Moved here.
1294 (help_cmd, help_cmd_list): Delete declarations.
1295
1296 2012-01-04 Doug Evans <dje@google.com>
1297
1298 * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd".
1299 All callers updated.
1300 (load_full_type_unit): Renamed from read_signatured_type_at_offset.
1301 Replace all arguments with "per_cu". All callers updated.
1302
1303 * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment.
1304
1305 * dwarf2read.c (init_one_comp_unit): Delete arg "objfile".
1306 New arg "per_cu". All callers updated.
1307
1308 Delete #if 0'd out code.
1309 * language.c (binop_result_type): Delete.
1310 (simple_type, ordered_type, same_type, integral_type): Delete.
1311 (numeric_type, character_type, string_type, boolean_type): Delete.
1312 (float_type, structured_type): Delete.
1313 * language.h: Update.
1314
1315 2012-01-04 Tom Tromey <tromey@redhat.com>
1316
1317 * python/py-value.c (valpy_binop): Initialize 'res_val'.
1318
1319 2012-01-04 Joel Brobecker <brobecker@adacore.com>
1320
1321 * corefile.c (close_exec_file): Delete.
1322 (reopen_exec_file): Remove commented out code that seems related
1323 to close_exec_file, which is being deleted here.
1324 * inferior.h (close_exec_file): Delete.
1325 * fork-child.c (fork_inferior): Remove call to fork_inferior.
1326
1327 2012-01-04 Joel Brobecker <brobecker@adacore.com>
1328
1329 * ada-lang.c: #include "cli/cli-utils.h".
1330 (get_selections): Use skip_spaces.
1331 (ada_get_next_arg): Use skip_spaces and skip_to_space.
1332 (catch_ada_exception_command_split): Use skip_spaces.
1333 (ada_decode_assert_location): Likewise.
1334
1335 2012-01-04 Joel Brobecker <brobecker@adacore.com>
1336
1337 * linespec.c (decode_line_internal): Check for C++ or Java
1338 compound constructs only if the current language is C, C++
1339 or Java.
1340
1341 2012-01-04 Jan Kratochvil <jan.kratochvil@redhat.com>
1342
1343 Revert:
1344 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1345 Joel Brobecker <brobecker@adacore.com>
1346 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
1347 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
1348 3 times.
1349 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
1350 fall through into AT_ENTRY_POINT.
1351 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
1352 DUMMY_ADDR with it.
1353 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
1354 PPC_INSN_SIZE skip to 3 times.
1355
1356 2012-01-04 Joel Brobecker <brobecker@adacore.com>
1357
1358 * linespec.c (add_minsym): Preserve function descriptors.
1359
1360 2012-01-04 Ulrich Weigand <uweigand@de.ibm.com>
1361
1362 * breakpoint.c (all_locations_are_pending): Consider locations
1363 in program spaces executing during startup pending as well.
1364
1365 2012-01-04 Joel Brobecker <brobecker@adacore.com>
1366
1367 Copyright year update in most files of the GDB Project.
1368
1369 2012-01-04 Joel Brobecker <brobecker@adacore.com>
1370
1371 * copyright.sh: Delete.
1372 * copyright.py: Rewrite.
1373
1374 2012-01-04 Joel Brobecker <brobecker@adacore.com>
1375
1376 * gnulib/extra/update-copyright: New file, imported from gnulib.
1377
1378 2012-01-04 Joel Brobecker <brobecker@adacore.com>
1379
1380 * README (Copyright and License Notices): New section.
1381
1382 2012-01-03 Tom Tromey <tromey@redhat.com>
1383
1384 PR python/12533:
1385 * python/py-value.c (valpy_dereference, valpy_get_address
1386 valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
1387 (valpy_getitem, valpy_call, valpy_binop, valpy_negative)
1388 (valpy_absolute, valpy_richcompare): Free intermediate values.
1389
1390 2011-01-03 Joel Brobecker <brobecker@adacore.com>
1391
1392 * ada-lang.c: Reformat the copyright notice.
1393
1394 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1395
1396 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
1397 * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*)
1398 (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*)
1399 (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o.
1400 Revert this part of:
1401 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1402 Build gdb directly from *.o files not using libgdb.a.
1403 * Makefile.in (COMMON_OBS): Remove solib-target.o.
1404
1405 2012-01-02 Joel Brobecker <brobecker@adacore.com>
1406
1407 * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c,
1408 gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c:
1409 Reformat the copyright header.
1410
1411 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1412
1413 Revert this part of:
1414 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1415 Remove the gdbtui binary.
1416 * gdb.c (main): Remove args.interpreter_p initialization.
1417 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
1418 * main.h (struct captured_main_args): Remove interpreter_p.
1419
1420 2012-01-02 Joel Brobecker <brobecker@adacore.com>
1421
1422 * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011.
1423
1424 2012-01-02 Joel Brobecker <brobecker@adacore.com>
1425
1426 * top.c (print_gdb_version): Update copyright year.
1427
1428 2012-01-02 Yao Qi <yao@codesourcery.com>
1429
1430 * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent.
1431
1432 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1433 Joel Brobecker <brobecker@adacore.com>
1434
1435 Fix regression for gdb.cp/gdb2495.exp with gcc-4.7.
1436 * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to
1437 3 times.
1438 * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and
1439 fall through into AT_ENTRY_POINT.
1440 (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust
1441 DUMMY_ADDR with it.
1442 * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase
1443 PPC_INSN_SIZE skip to 3 times.
1444
1445 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1446
1447 * amd64-linux-nat.c (update_debug_registers_callback): New comment on
1448 the return value.
1449 * i386-linux-nat.c (update_debug_registers_callback): Likewise.
1450
1451 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1452
1453 Build gdb directly from *.o files not using libgdb.a.
1454 * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o.
1455 (COMMON_OBS): Remove solib-target.o.
1456 (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule.
1457 (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS).
1458 (LIBGDB_OBS, libgdb.a): Move it above.
1459 * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*)
1460 (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu)
1461 (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe)
1462 (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu)
1463 (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*)
1464 (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*)
1465 (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu)
1466 (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*)
1467 (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*)
1468 (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*)
1469 (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
1470 (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*)
1471 (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*)
1472 (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*)
1473 (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*)
1474 (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*)
1475 (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*)
1476 (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*)
1477 (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*)
1478 (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu)
1479 (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*)
1480 (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*)
1481 (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*)
1482 (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*)
1483 (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu)
1484 (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*)
1485 (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs.
1486
1487 2012-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1488
1489 Remove the gdbtui binary.
1490 * .gitignore (/gdbtui): Remove.
1491 * Makefile.in (TUI): Remove.
1492 (SUBDIR_TUI_OBS): Remove tui-main.o.
1493 (SUBDIR_TUI_SRCS): Remove tui/tui-main.c.
1494 (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui)
1495 (tui-main.o): Remove.
1496 (all_object_files): Remove tui-main.o.
1497 * NEWS: New note for the gdbtui removal.
1498 * configure: Rebuilt.
1499 * configure.ac: No longer add all-tui, clean-tui, install-tui and
1500 uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and
1501 CONFIG_UNINSTALL respectively.
1502 * gdb.c (main): Remove args.interpreter_p initialization.
1503 * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE.
1504 * main.h (struct captured_main_args): Remove interpreter_p.
1505 * tui/tui-main.c: Remove.
1506
1507 2012-01-01 Doug Evans <dje@google.com>
1508
1509 * dwarf2read.c (dwarf2_compute_name): Simplify objfile references.
1510 (dwarf2_physname, read_import_statement): Ditto.
1511 (read_call_site_scope, dwarf2_record_block_ranges): Ditto.
1512 (process_structure_scope read_subroutine_type): Ditto.
1513 (read_typedef, load_partial_dies, read_partial_die): Ditto.
1514 (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto.
1515 (dwarf2_fetch_die_location_block): Ditto.
1516 (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto.
1517
1518 * dwarf2read.c (read_signatured_type): Delete `objfile' arg.
1519 All callers updated.
1520 (load_full_comp_unit, queue_comp_unit, process_queue): Ditto.
1521 (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto.
1522 (process_psymtab_comp_unit, load_partial_comp_unit): Ditto.
1523
1524 * dwarf2read.c (load_cu): Move assert to more useful location.
1525
1526 * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit.
1527 All callers updated.
1528
1529 * dwarf2read.c (dwarf2_per_objfile): Add comment.
1530 (dwarf2_elf_names): Minor reformat.
1531 (dwarf2_per_cu_data): Tweak comment.
1532 (dwarf2_read_section): Fix comment.
1533 (create_all_comp_units): Fix comment.
1534 (load_full_comp_unit): Fix comment.
1535 (process_full_comp_unit): Fix comment.
1536 (read_signatured_type): Fix comment.
1537
1538 For older changes see ChangeLog-2011.
1539 \f
1540 Local Variables:
1541 mode: change-log
1542 left-margin: 8
1543 fill-column: 74
1544 version-control: never
1545 coding: utf-8
1546 End:
This page took 0.061552 seconds and 4 git commands to generate.