[dwarf] Anonymous nested function causes SEGV during psymbol read
[binutils-gdb.git] / gdb / ChangeLog
1 2010-03-18 Tom Tromey <tromey@redhat.com>
2
3 * infcmd.c (finish_command_continuation): Wrap print_return_value
4 in TRY_CATCH.
5
6 2010-03-18 Joel Brobecker <brobecker@adacore.com>
7
8 * dwarf2read.c (add_partial_subprogram): Make sure the subprogram
9 DIE has a name before creating the associated partial symbol.
10 (read_func_scope): Emit a complaint if the subprogram does not
11 have a name or when we can't extract the subprogram PC bounds.
12
13 2010-03-18 Ulrich Weigand <uweigand@de.ibm.com>
14
15 * mi/mi-main.c (mi_cmd_list_thread_groups): Use get_current_arch
16 instead of selected frame architecture.
17
18 2010-03-18 Pedro Alves <pedro@codesourcery.com>
19
20 * infcmd.c (until_command): Use ERROR_NO_INFERIOR. Ensure there's
21 a valid selected thread, and that it is not running.
22 (advance_command): Ditto.
23 (finish_command): Ditto.
24
25 2010-03-17 Stan Shebs <stan@codesourcery.com>
26
27 * ax-gdb.c (require_rvalue): Disallow non-scalars.
28
29 * infcall.c: Include tracepoint.h.
30 (call_function_by_hand): Disallow calls in tfind mode.
31 * infcmd.c: Include tracepoint.h.
32 (ensure_not_tfind_mode): New function.
33 (continue_1): Call it.
34 (step_1) Ditto.
35 (jump_command): Ditto.
36 (signal_command): Ditto.
37 (advance_command): Ditto.
38 (until_command): Ditto.
39 (finish_command): Ditto.
40 * tracepoint.h (disconnect_or_stop_tracing): Declare.
41
42 * ax-gdb.h (struct axs_value): New field optimized_out.
43 (gen_trace_for_var): Add gdbarch argument.
44 * ax-gdb.c (gen_trace_static_fields): New function.
45 (gen_traced_pop): Call it, add gdbarch argument.
46 (gen_trace_for_expr): Update call to it.
47 (gen_trace_for_var): Ditto, and report optimized-out variables.
48 (gen_struct_ref_recursive): Check for optimized-out value.
49 (gen_struct_elt_for_reference): Ditto.
50 (gen_static_field): Pass gdbarch instead of expression, assume
51 optimization if field not found.
52 (gen_var_ref): Set the optimized_out flag.
53 (gen_expr): Error on optimized-out variable.
54 * tracepoint.c (collect_symbol): Handle struct-valued vars as
55 expressions, skip optimized-out variables with computed locations.
56 * dwarf2loc.c (dwarf2_tracepoint_var_ref): Flag instead of
57 erroring out if location expression missing.
58 (loclist_tracepoint_var_ref): Don't error out here.
59
60 2010-03-17 Tom Tromey <tromey@redhat.com>
61
62 * dwarf2read.c (dwarf2_get_section_info): Handle case where no
63 DWARF data is available.
64
65 2010-03-17 Daniel Jacobowitz <dan@codesourcery.com>
66
67 * symfile.c (generic_load): Reset breakpoints after loading.
68
69 2010-03-17 Tom Tromey <tromey@redhat.com>
70
71 * linux-nat.c (linux_nat_detach): Check debug_linux_nat.
72
73 2010-03-17 Jan Kratochvil <jan.kratochvil@redhat.com>
74
75 * spu-tdep.c (spu_catch_start): Replace set_breakpoint call with the
76 create_breakpoint call, adjust the parameters.
77
78 2010-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
79 Chandru <chandru@in.ibm.com>
80
81 * dwarf2read.c (read_subrange_type): Set TYPE_HIGH_BOUND_UNDEFINED.
82 * valarith.c (value_subscripted_rvalue): Suppress error if
83 TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED.
84
85 2010-03-16 Holger Hans Peter Freyther <zecke@selfish.org>
86
87 * linux-record.c (record_linux_msghdr): Remove unintended semicolons.
88
89 2010-03-16 Joel Brobecker <brobecker@adacore.com>
90
91 * ada-tasks.c (task_command_1): Check that the task ptid is valid
92 before doing the associated thread switch.
93
94 2010-03-16 Daniel Jacobowitz <dan@codesourcery.com>
95
96 * MAINTAINERS: Update my email address.
97
98 2010-03-16 Vladimir Prus <vladimir@codesourcery.com>
99
100 Simplify MI breakpoint setting.
101
102 * breakpoint.c (break_command_really): Make nonstatic and
103 rename to...
104 (create_breakpoint): ...this. Rename prior function by this name
105 to...
106 (create_breakpoint_sal): ...this.
107 (create_breakpoints): Rename to...
108 (create_breakpoints_sal): ...this.
109 (set_breakpoint): Remove.
110 * breakpoint.h: Adjust to above changes.
111 * mi/mi-cmd-break.c (mi_cmd_break_insert): Simplify.
112
113 2010-03-15 Stan Shebs <stan@codesourcery.com>
114
115 * ax-gdb.c: Include cp-support.h.
116 (find_field): Remove.
117 (gen_primitive_field): New function.
118 (gen_struct_ref_recursive): New function.
119 (gen_struct_ref): Rewrite to call gen_struct_ref_recursive instead
120 of find_field.
121 (gen_static_field): New function.
122 (gen_struct_elt_for_reference): New.
123 (gen_namespace_elt): New.
124 (gen_maybe_namespace_elt): New.
125 (gen_aggregate_elt_ref): New.
126 (gen_expr): Add OP_SCOPE, display opcode name in error message.
127
128 2010-03-15 Tom Tromey <tromey@redhat.com>
129
130 * dwarf2read.c (die_needs_namespace): Also return 0 for
131 DW_TAG_subprogram.
132
133 2010-03-15 Sami Wagiaalla <swagiaal@redhat.com>
134
135 PR c++/7936:
136 * cp-support.h: Added char *declaration element to using_direct
137 data struct.
138 (cp_add_using): Added char *declaration argument.
139 (cp_add_using_directive): Ditto.
140 (cp_lookup_symbol_imports): made extern.
141 * cp-namespace.c: Updated with the above changes.
142 * dwarf2read.c (read_import_statement): Ditto.
143 (read_namespace): Ditto.
144 (read_import_statement): Support import declarations.
145 * cp-namespace.c (cp_lookup_symbol_imports): Check for imported
146 declarations.
147 Added support for 'declaration_only' search.
148 (cp_lookup_symbol_namespace): Attempt to search for the name as
149 is before consideration of imports.
150 * symtab.c (lookup_symbol_aux_local): Added a 'declaration_only'
151 search at every block level search.
152 Now takes language argument.
153 (lookup_symbol_aux): Updated.
154
155 2010-03-15 Tom Tromey <tromey@redhat.com>
156
157 * c-exp.y (name_not_typename): Add 'operator' clause.
158
159 2010-03-15 Ralf Corsepius <ralf.corsepius@rtems.org> (tiny change)
160
161 * configure.ac: Exit if ${gdb_target_obs}" is not set.
162 * configure: Regenerate.
163
164 2010-03-15 Jan Kratochvil <jan.kratochvil@redhat.com>
165
166 * symfile.c (addr_info_make_relative): Ignore also missing ".dynbss"
167 and ".sdynbss". Update the comment.
168
169 2010-03-15 Jie Zhang <jie@codesourcery.com>
170
171 * MAINTAINERS: Update my email address.
172
173 2010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
174
175 * gdbtypes.h (TYPE_IS_OPAQUE): Correct HAVE_CPLUS_STRUCT check.
176
177 2010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
178
179 * charset.c [USE_WIN32API]: Include <windows.h>.
180 (_initialize_charset): Correct type of w32_host_default_charset.
181
182 2010-03-14 Pedro Alves <pedro@codesourcery.com>
183
184 * infrun.c (ptid_match): Don't assert that PTID is not a pid ptid.
185
186 2010-03-12 Tom Tromey <tromey@redhat.com>
187
188 PR c++/9708:
189 * dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: A variable
190 in a lexical block does not need a namespace.
191 (new_symbol) <DW_TAG_variable>: Put extern variables on
192 list_in_scope in all cases.
193
194 2010-03-12 Stan Shebs <stan@codesourcery.com>
195
196 * ax-gdb.c (gen_expr): Add shift expressions.
197 (gen_expr_binop_rest): Ditto.
198
199 2010-03-12 Sami Wagiaalla <swagiaal@redhat.com>
200
201 * buildsym.c (finish_block): Reset using_directives pointer
202 after block initialization.
203
204 2010-03-12 H.J. Lu <hongjiu.lu@intel.com>
205
206 * amd64-tdep.c (amd64_word_names): Replace "sp" with "".
207 * i386-tdep.c (i386_word_names): Likewise.
208
209 2010-03-12 Pedro Alves <pedro@codesourcery.com>
210
211 * target.c (memory_xfer_partial): Don't use the stack cache if
212 inspecting trace frames.
213 * tracepoint.c (finish_tfind_command): Invalidate the target
214 dcache.
215
216 2010-03-11 Jan Kratochvil <jan.kratochvil@redhat.com>
217
218 * solib-svr4.c (LM_ADDR_CHECK) <info_verbose>: Use printf_unfiltered
219 for the PIC displacement, print also the displacement value.
220 (svr4_exec_displacement): Print DISPLACEMENT if INFO_VERBOSE.
221
222 2010-03-10 Kevin Buettner <kevinb@redhat.com>
223
224 * remote-mips.c (close_ports, mips_initialize_cleanups)
225 (mips_exit_cleanups, mips_send_command, mips_open, pmon_open)
226 (ddb_open, lsi_open, mips_remove_breakpoint, mips_remove_watchpoint)
227 (mips_stopped_by_watchpoint, send_srec, pmon_checkset)
228 (pmon_make_fastrec, pmon_check_ack, mips_expect_download)
229 (pmon_check_entry_address, pmon_check_total, pmon_end_download)
230 (pmon_download, pmon_load_fast, _initialize_remote_mips): Add
231 comments describing each of these functions.
232 (mips_enter_debug, mips_exit_debug, common_open)
233 (mips_signal_from_protocol, pmon_makeb64, pmon_zeroset): Add
234 blank line after the comment describing the function.
235
236 2010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
237
238 * solib-svr4.c (svr4_exec_displacement): Return now success, new
239 parameter displacementp. Update comment.
240 (svr4_relocate_main_executable): Return if non-zero SECTION_OFFSETS
241 element exists. Return if svr4_exec_displacement was not successful.
242 Update comment.
243
244 2010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
245 Daniel Jacobowitz <dan@codesourcery.com>
246
247 * solib-svr4.c (read_program_header): Support type == -1 to read
248 all program headers.
249 (read_program_headers_from_bfd): New function.
250 (svr4_static_exec_displacement): Remove and move the comment ...
251 (svr4_exec_displacement): ... here. Remove variable found. New
252 variable displacement. Check also DYNAMIC. Verify DISPLACEMENT
253 alignment for ELF targets. Compare target vs. exec_bfd PHDRs for ELF
254 targets using read_program_headers_from_bfd. Remove the call of
255 svr4_static_exec_displacement.
256
257 2010-03-10 Tom Tromey <tromey@redhat.com>
258
259 * dwarf2read.c (struct pubnames_header): Remove.
260 (_PUBNAMES_HEADER): Remove.
261 (_ACTUAL_PUBNAMES_HEADER_SIZE): Remove.
262 (struct aranges_header): Remove.
263 (_ARANGES_HEADER, _ACTUAL_ARANGES_HEADER_SIZE): Remove.
264 (struct dwarf2_per_objfile) <pubnames, aranges>: Remove.
265 (PUBNAMES_SECTION): Remove.
266 (ARANGES_SECTION): Remove.
267 (dwarf2_locate_sections): Don't handle pubnames or aranges.
268 (dwarf2_build_psymtabs): Remove dead code.
269 (dwarf2_build_psymtabs_easy): Remove.
270
271 2010-03-10 Tom Tromey <tromey@redhat.com>
272
273 * elfread.c (elf_symfile_read): Don't call
274 dwarf2_build_frame_info.
275 * dwarf2read.c (struct dwarf2_section_info) <readin>: New field.
276 (struct dwarf2_per_objfile) <objfile>: New field.
277 (dwarf2_has_info): Now idempotent. Set objfile field.
278 (dwarf2_read_section): Check and set readin field. Call
279 posix_madvise.
280 (dwarf2_build_psymtabs): Don't read all sections.
281 (read_type_comp_unit_head): Read types section.
282 (create_debug_types_hash_table): Likewise.
283 (init_cu_die_reader): Add asserts.
284 (process_type_comp_unit): Add assert.
285 (dwarf2_build_psymtabs_hard): Read info section.
286 (load_partial_comp_unit): Add assert.
287 (create_all_comp_units): Read info section.
288 (load_full_comp_unit): Likewise.
289 (dwarf2_ranges_read): Read ranges section.
290 (dwarf2_record_block_ranges): Add assert.
291 (dwarf2_read_abbrevs): Read abbrev section.
292 (read_indirect_string): Read str section.
293 (dwarf_decode_line_header): Read line section.
294 (read_signatured_type_at_offset): Read types section.
295 (dwarf_decode_macros): Read macinfo section.
296 (dwarf2_symbol_mark_computed): Read loc section.
297 * dwarf2-frame.c (dwarf2_frame_find_fde): Call
298 dwarf2_build_frame_info.
299 (dwarf2_build_frame_info): Unconditionally set
300 dwarf2_frame_objfile_data on the objfile.
301 * configure.ac: Check for posix_madvise.
302 * config.in, configure: Rebuild.
303
304 2010-03-10 Tom Tromey <tromey@redhat.com>
305
306 * xcoffread.c (xcoff_start_psymtab): Update.
307 (xcoff_end_psymtab): Update.
308 * psymtab.c (allocate_psymtab): Remove dead code.
309 * psympriv.h (struct partial_symtab) <read_symtab_private>: Now
310 void*.
311 * mdebugread.c (parse_partial_symbols): Update.
312 (new_psymtab): Likewise.
313 * dwarf2read.c (process_psymtab_comp_unit): Update.
314 (psymtab_to_symtab_1): Update.
315 * dbxread.c (start_psymtab): Update.
316 (end_psymtab): Likewise.
317
318 2010-03-10 Tom Tromey <tromey@redhat.com>
319
320 * xcoffread.c: Include psymtab.h.
321 (xcoff_sym_fns): Update.
322 * symtab.h (struct partial_symbol): Remove.
323 (PSYMBOL_DOMAIN, PSYMBOL_CLASS): Remove.
324 (struct partial_symtab): Remove.
325 (PSYMTAB_TO_SYMTAB): Remove.
326 (lookup_partial_symbol, lookup_partial_symtab, find_pc_psymtab)
327 (find_pc_sect_psymtab): Remove.
328 (find_pc_sect_symtab_via_partial): Declare.
329 (find_pc_psymtab, find_pc_sect_psymbol, psymtab_to_symtab)
330 (find_main_psymtab): Remove.
331 (find_main_filename): Declare.
332 (fixup_psymbol_section): Remove.
333 (fixup_section): Declare.
334 * symtab.c: Include psymtab.h.
335 (lookup_symtab): Use lookup_symtab method.
336 (lookup_partial_symtab): Remove.
337 (find_pc_sect_psymtab_closer): Remove.
338 (find_pc_sect_psymtab): Remove.
339 (find_pc_sect_symtab_via_partial): New function.
340 (find_pc_psymtab, find_pc_sect_psymbol, find_pc_psymbol): Remove.
341 (fixup_section): No longer static.
342 (fixup_psymbol_section): Remove.
343 (lookup_symbol_aux): Use lookup_symbol_aux_quick.
344 (lookup_global_symbol_from_objfile): Likewise.
345 (lookup_symbol_aux_psymtabs): Remove.
346 (lookup_symbol_aux_quick): New function.
347 (lookup_symbol_global): Use lookup_symbol_aux_quick.
348 (lookup_partial_symbol): Remove.
349 (basic_lookup_transparent_type_quick): New function.
350 (basic_lookup_transparent_type): Use it.
351 (find_main_psymtab): Remove.
352 (find_main_filename): New function.
353 (find_pc_sect_symtab): Use find_pc_sect_symtab method.
354 (find_line_symtab): Use expand_symtabs_with_filename method.
355 (output_partial_symbol_filename): New function.
356 (sources_info): Use map_partial_symbol_filenames.
357 (struct search_symbols_data): New type.
358 (search_symbols_file_matches): New function.
359 (search_symbols_name_matches): Likewise.
360 (search_symbols): Use expand_symtabs_matching method.
361 (struct add_name_data): Rename from add_macro_name_data.
362 (add_macro_name): Update.
363 (add_partial_symbol_name): New function.
364 (default_make_symbol_completion_list): Use
365 map_partial_symbol_names.
366 (struct add_partial_symbol_name): New type.
367 (maybe_add_partial_symtab_filename): New function.
368 (make_source_files_completion_list): Use
369 map_partial_symbol_filenames.
370 (expand_line_sal): Use expand_symtabs_with_filename method.
371 * symmisc.c: Include psymtab.h.
372 (print_objfile_statistics): Use print_stats method.
373 (dump_objfile): Use dump method.
374 (dump_psymtab, maintenance_print_psymbols)
375 (maintenance_info_psymtabs, maintenance_check_symtabs)
376 (extend_psymbol_list): Remove.
377 * symfile.h (struct quick_symbol_functions): New struct.
378 (struct sym_fns) <qf>: New field.
379 (sort_pst_symbols): Remove.
380 (increment_reading_symtab): Declare.
381 * symfile.c: Include psymtab.h.
382 (compare_psymbols, sort_pst_symbols): Remove.
383 (psymtab_to_symtab): Remove.
384 (increment_reading_symtab): New function.
385 (symbol_file_add_with_addrs_or_offsets): Use expand_all_symtabs
386 method.
387 (set_initial_language): Use find_main_filename.
388 (allocate_psymtab, discard_psymtab, cashier_psymtab): Remove.
389 (free_named_symtabs): Remove unused code.
390 (start_psymtab_common, add_psymbol_to_bcache)
391 (append_psymbol_to_list, add_psymbol_to_list, init_psymbol_list):
392 Remove.
393 * stack.c: Include psymtab.h, symfile.h.
394 (backtrace_command_1): Use find_pc_sect_symtab_via_partial.
395 * source.h (psymtab_to_fullname): Don't declare.
396 * source.c: Include psymtab.h.
397 (select_source_symtab): Use find_last_source_symtab method.
398 (forget_cached_source_info): Use forget_cached_source_info
399 method.
400 (find_and_open_source): No longer static.
401 (psymtab_to_fullname): Remove.
402 * somread.c: Include psymtab.h.
403 (som_sym_fns): Update.
404 * psympriv.h: New file.
405 * psymtab.h: New file.
406 * psymtab.c: New file.
407 * objfiles.h: (ALL_OBJFILE_PSYMTABS): Remove.
408 (ALL_PSYMTABS, ALL_PSPACE_PSYMTABS): Likewise.
409 * objfiles.c: Include psymtab.h.
410 (objfile_relocate1): Use relocate method.
411 (objfile_has_partial_symbols): Use has_symbols method.
412 * mipsread.c: Include psymtab.h.
413 (ecoff_sym_fns): Update.
414 * mi/mi-cmd-file.c: Include psymtab.h.
415 (print_partial_file_name): New function.
416 (mi_cmd_file_list_exec_source_files): Use
417 map_partial_symbol_filenames.
418 * mdebugread.c: Include psympriv.h.
419 * machoread.c: Include psympriv.h.
420 (macho_sym_fns): Update.
421 * m2-exp.y (yylex): Use lookup_symtab.
422 * elfread.c: Include psympriv.h.
423 (elf_sym_fns): Update.
424 * dwarf2read.c: Include psympriv.h.
425 * dbxread.c: Include psympriv.h.
426 (aout_sym_fns): Update.
427 * cp-support.c: Include psymtab.h.
428 (read_in_psymtabs): Remove.
429 (make_symbol_overload_list_qualified): Use
430 expand_symtabs_for_function method.
431 * coffread.c: Include psympriv.h.
432 (coff_sym_fns): Update.
433 * blockframe.c: Include psymtab.h.
434 (find_pc_partial_function): Use find_pc_sect_symtab method.
435 * ada-lang.h (ada_update_initial_language): Update.
436 * ada-lang.c: Include psymtab.h.
437 (ada_update_initial_language): Remove 'main_pst' argument.
438 (ada_lookup_partial_symbol): Remove.
439 (struct ada_psym_data): New type.
440 (ada_add_psyms): New function.
441 (ada_add_non_local_symbols): Use map_ada_symtabs method.
442 (struct add_partial_datum): New type.
443 (ada_add_partial_symbol_completions): New function.
444 (ada_make_symbol_completion_list): Use map_partial_symbol_names.
445 (ada_exception_support_info_sniffer): Update.
446 * Makefile.in (SFILES): Add psymtab.c.
447 (COMMON_OBS): Add psymtab.o.
448 (HFILES_NO_SRCDIR): Add psymtab.h, psympriv.h.
449
450 2010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
451
452 * remote-fileio.c (cygwin_conv_path): Define macro for old cygwin API.
453
454 2010-03-10 Sami Wagiaalla <swagiaal@redhat.com>
455
456 PR C++/11236:
457 * cp-namespace.c (cp_add_using): Deleted.
458 (cp_add_using_directive): Use obstack allocations.
459 Merged the function cp_add_using into this one.
460 Added 'struct obstack *' argument.
461 (cp_scan_for_anonymous_namespaces): Updated.
462 * cp-support.h: Updated.
463 * dwarf2read.c (read_import_statement): Updated.
464 (read_namespace): Updated.
465
466 2010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
467
468 * windows-nat.c (cygwin_conv_path): Remove old macro.
469
470 2010-03-10 Pedro Alves <pedro@codesourcery.com>
471
472 * breakpoint.c (condition_command): Handle watchpoint conditions.
473 (is_hardware_watchpoint): Add comment.
474 (is_watchpoint): New.
475 (update_watchpoint): Don't reparse the watchpoint's condition
476 unless necessary.
477 (WP_IGNORE): New.
478 (watchpoint_check): Use it.
479 (bpstat_check_watchpoint): Handle it.
480 (bpstat_check_breakpoint_conditions): Evaluate watchpoint local
481 conditions in a frame where it makes sense.
482 (watch_command_1): Store the innermost block of the condition
483 expression.
484 (delete_breakpoint): Delete the watchpoint condition expression.
485 * breakpoint.h (struct bp_location) <cond>: Update comment.
486 (struct breakpoint): New field `cond_exp_valid_block'.
487
488 2010-03-09 Joel Brobecker <brobecker@adacore.com>
489
490 Adjust handling of Ada DIEs after dwarf2_physname patch.
491 * dwarf2read.c (dwarf2_compute_name): Add handling of Ada DIEs.
492
493 2010-03-09 Christopher Faylor <me+cygwin@cgf.cx>
494 Pierre Muller <muller@ics.u-strasbg.fr>
495
496 * windows-nat.c (cygwin_conv_path): Redefine to properly convert
497 from/to posix/win32.
498 (windows_make_so): Use non-Cygwin 1.7 specific function.
499 (windows_create_inferior): Make sure that cygallargs points to
500 original args in non Cygwin 1.7. case.
501
502 2010-03-09 Michael Snyder <msnyder@vmware.com>
503
504 * i386-tdep.c (i386_record_lea_modrm_addr): Use extract_signed_int
505 after target_read_memory to get host byte order.
506 (i386_process_record): Ditto.
507
508 2010-03-09 Keith Seitz <keiths@redhat.com>
509
510 Based on work from Daniel Jacobowitz <dan@codesourcery.com>
511 * c-typeprint.c (cp_type_print_method_args): For non-static methods,
512 print out const or volatile qualifiers, too.
513 (c_type_print_args): Add parameters show_artificial and language.
514 Skip artificial parameters when requested.
515 Use the appropriate language printer.
516 (c_type_print_varspec): Tell c_type_print_args to skip artificial
517 parameters and pass language_c.
518 * dwarf2read.c (die_list): New file global.
519 (struct partial_die_info): Update comments for name field.
520 (pdi_needs_namespace): Renamed to ...
521 (die_needs_namespace): ... this. Rewrite.
522 (dwarf2_linkage_name): Remove.
523 (add_partial_symbol): Do not predicate the call to
524 partial_die_full_name based on pdi_needs_namespace.
525 Remove call to cp_check_possible_namespace_symbols and associated
526 outdated comments.
527 (guess_structure_name): Do not inspect child subprogram DIEs.
528 (dwarf2_fullname): Update comments.
529 Use die_needs_namespace to assist in computing the name.
530 (read_func_scope): Use dwarf2_name to get the DIE's name.
531 Use dwarf2_physname to get the "linkage name" of the DIE.
532 (dwarf2_add_member_field): Use dwarf2_physname instead of
533 dwarf2_linkage_name.
534 (read_structure_type): For structs and classes, set TYPE_NAME, too.
535 (determine_class): Remove.
536 (read_partial_die): Ignore DW_AT_MIPS_linkage_name for all languages
537 except Ada.
538 (new_symbol): Unconditionally call dwarf2_name.
539 Compute the "linkage name" using dwarf2_physname.
540 Use dwarf2_name instead of dwarf2_full_name for enumerator DIEs.
541 When determining to scan for anonymous C++ namespaces, ignore
542 the linkage name.
543 (dwarf2_physname): New function.
544 (dwarf2_full_name): Move content to new function and call
545 that.
546 (dwarf2_compute_name): "New" function.
547 (_initialize_dwarf2_read): Initialize die_list.
548 * gnu-v3-eabi.c (gnu_v3_find_method_in): Remove unused variable
549 physname.
550 (gnu_v3_print_method_ptr): Use the physname for virtual methods
551 without a demangled name.
552 Print out type information for non-virtual methods.
553 * linespec.c (decode_line_1): Force ANY string using "::" (or
554 "." for java) to use decode_compound, and clean up any stray quoting.
555 If we found a file symtab, re-evaluate whether the remainder is_quoted.
556 (decode_compound): Stop consuming at an open parenthesis.
557 Keep template parameters.
558 Keep any overload information.
559 Keep keywords like "const".
560 Remove paren_pointer.
561 Move is_quoted check from set_flags to here.
562 Remove #if 0 code from 2000. Ten years is long enough.
563 (find_method): Before comparing symbol names, canonicalize the string
564 from the user.
565 If a specific overload is requested, find it. Otherwise throw an error.
566 (find_method_overload_end): New function.
567 (set_flags): Remove.
568 (decode_compound): Assume that parentheses are matched.
569 It's a lot easier.
570 * symtab.c (symbol_find_demangled_name): Add DMGL_VERBOSE flag
571 to cplus_demangle.
572 * linespec.c (decode_line_1): Keep important keywords like
573 "const" and "volatile".
574 * symtab.h (SYMBOL_CPLUS_DEMANGLED_NAME): Remove.
575 * typeprint.h (c_type_print_args): Add declaration.
576 * ui-file.c (do_ui_file_obsavestring): New function.
577 (ui_file_obsavestring): New function.
578 * ui-file.h (ui_file_obsavestring): Add declaration.
579 * valops.c (find_overload_match): Resolve the object to
580 a non-pointer type.
581 If the object is a data member, search the object for the member
582 and return with staticp set.
583 Use SYMBOL_NATURAL_NAME instead of SYMBOL_CPLUS_DEMANGLED_NAME.
584 Do not attempt to extract a function name from non-function types.
585 If the extracted function name and the original name are the same,
586 we don't have a C++ method.
587
588 From Jan Kratochvil <jan.kratochvil@redhat.com>:
589 * dwarf2read.c (new_symbol <DW_TAG_enumerator>): Call dwarf2_full_name.
590
591 * ada-lang.c (ada_lookup_symbol): Remove linkage_name parameters
592 and arguments from symbol lookups.
593 * ax-gdb.c (gen_expr): Likewise.
594 * cp-namespace.c (cp_lookup_symbol_nonlocal, lookup_namespace_scope,
595 cp_lookup_symbol_namespace, lookup_symbol_file, lookup_nested_type,
596 lookup_possible_namespace_symbol): Likewise.
597 * cp-support.c (read_in_psymtabs): Likewise.
598 * cp-support.h (cp_lookup_symbol_nonlocal): Likewise.
599 * language.h (la_lookup_symbol_nonlocal): Likewise.
600 * scm-valprint.c (scm_inferior_print): Likewise.
601 * solib-darwin.c (darwin_relocate_section_addresses): Likewise.
602 * solib-svr.c (elf_lookup_lib): Likewise.
603 * solib.c (show_auto_solib_add): Likewise.
604 * solist.h (lookup_lib_global, solib_global_lookup): Likewise.
605 * symmisc.c (maintenance_check_symtabs): Likewise.
606 * symtab.c (lookup_symbol_in_language, lookup_symbol_aux,
607 lookup_symbol_aux_local, lookup_symbol_aux_block,
608 lookup_symbol_from_objfile, lookup_symbol_aux_symtabs,
609 lookup_symbol_aux_psymtabs,basic_lookup_symbol_nonlocal,
610 lookup_symbol_static, lookup_symbol_global, symbol_matches_domain,
611 basic_lookup_transparent_type, find_main_psymtab,
612 lookup_block_symbol): Likewise.
613 * symtab.h (basic_lookp_symbol_nonlocal, lookup_symbol_static,
614 lookup_symbol_global, lookup_symbol_aux_block,
615 lookup_symbol_partial_symbol, lookup_block_symbol,
616 lookup_global_symbol, value_maybe_namespace_elt): Likewise.
617
618 2010-03-09 Pierre Muller <muller@ics.u-strasbg.fr>
619
620 * python/python-internal.h: Include symtab.h.
621
622 2010-03-09 Joel Brobecker <brobecker@adacore.com>
623 Pierre Muller <muller@ics.u-strasbg.fr>
624
625 * p-lang.c (is_pascal_string_type): Remove unneeded parentheses.
626 * p-valprint.c (pascal_val_print): Remove undeed block and fix
627 indentation.
628
629 2010-03-08 Tom Tromey <tromey@redhat.com>
630
631 * breakpoint.c (breakpoint_1): Add "QUIT".
632
633 2010-03-08 Daniel Jacobowitz <dan@codesourcery.com>
634 Pedro Alves <pedro@codesourcery.com>
635
636 * solib.c (solib_find): Replace extension if
637 solib_symbols_extension is set in the target gdbarch.
638 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
639 solib_symbols_extension to "sym".
640 * gdbarch.sh (solib_symbols_extension): New variable.
641 (pstring): New function.
642 * gdbarch.h, gdbarch.c: Regenerate.
643
644 2010-03-08 Tom Tromey <tromey@redhat.com>
645
646 PR cli/9591:
647 * NEWS: Update.
648 * utils.c: Include main.h.
649 (fputs_maybe_filtered): Don't paginate if `batch_flag'.
650 (defaulted_query): Use default answer if `batch_flag'.
651 * main.h (batch_flag): Declare.
652 * main.c (batch_flag): New global.
653 (captured_main): Remove 'batch'. Update.
654
655 2010-03-08 Kevin Buettner <kevinb@redhat.com>
656
657 From Richard Sandiford, Martin M. Hunt, Corinna Vinschen,
658 and Kevin Buettner:
659
660 * remote-mips.c (rockhopper_ops): New target_ops struct.
661 (MON_ROCKHOPPER): New mips_monitor_type.
662 (read_hex_value): New function.
663 (mips_request): Send 8-byte values with a 'T' packet. Read the
664 packet argument as a string and use read_hex_value to parse it.
665 (mips_exit_debug): Wait for response when using MON_ROCKHOPPER.
666 (rockhopper_open): New function.
667 (mips_wait): Read the PC, FP and SP fields as strings. Use
668 read_hex_value to parse them and mips_set_register to commit them.
669 (mips_set_register): New function.
670 (mips_fetch_registers): Do not cast register value to "unsigned"
671 when reading a MON_ROCKHOPPER 't' packet. Use mips_set_register.
672 (mips_store_registers): Use a 'T' packet to set registers when
673 using MON_ROCKHOPPER.
674 (pmon_end_download): Don't run initEther if using MON_ROCKHOPPER
675 and expect the total to be printed before the entry address.
676 (_initialize_remote_mips): Initialize and add rockhopper_ops.
677
678 2010-03-08 Kevin Buettner <kevinb@redhat.com>
679
680 * remote-mips.c (mips_fetch_word): Add new parameter, `valp'.
681 Change return value to int. Store value fetched in location
682 addressed by `val'. Use function's return value as success
683 or failure indicator. Adjust all callers.
684
685 2010-03-08 Pierre Muller <muller@ics.u-strasbg.fr>
686
687 * p-lang.c (is_pascal_string_type): Check that TYPE arg is non NULL.
688
689 2010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
690 Hui Zhu <teawater@gmail.com>
691
692 * record.c (record_open_1): Check tmp_to_stopped_by_watchpoint and
693 tmp_to_stopped_data_address.
694 (record_open): Reset tmp_to_stopped_by_watchpoint and
695 tmp_to_stopped_data_address.
696 * target.c (init_dummy_target): Add to_stopped_by_watchpoint and
697 to_stopped_data_address.
698
699 2010-03-08 Hui Zhu <teawater@gmail.com>
700
701 * i386-tdep.c (i386_process_record): Initialize regnum.
702
703 2010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
704
705 * symfile.c (addr_info_make_relative): New variable sect_name, use it.
706 Do not warn on ".gnu.liblist" and ".gnu.conflict".
707
708 2010-03-08 Joel Brobecker <brobecker@adacore.com>
709
710 Memory error when reading wrong core file.
711 * solib-svr4.c (solib_svr4_r_map): catch and print all exception
712 errors while reading the inferior memory, and return zero if
713 an exception was raised.
714
715 2010-03-07 Michael Snyder <msnyder@vmware.com>
716
717 * record.c (record_restore): Rename tmpu8 to rectype.
718
719 * i386-tdep.c (i386_record_lea_modrm_addr): Rename local variables
720 tmpu8, tmpi16, tmpi32, tmpulongest to addr8, addr16, addr32, addr64.
721
722 (i386_record_push): Rename local tmpulongest to addr.
723
724 (i386_process_record): Rename local tmpulongest to addr.
725
726 Rename local variables tmpu16, tmpu32, tmpu64 to addr16, addr32,
727 addr64.
728
729 Rename local variable tmpu8 to opcode8 and regnum.
730
731 2010-03-07 Joel Brobecker <brobecker@adacore.com>
732
733 * remote.c (remote_get_ada_task_ptid): New function.
734 (init_remote_ops): Set remote_ops.to_get_ada_task_ptid.
735
736 2010-03-06 Christopher Faylor <me+cygwin@cgf.cx>
737
738 * windows-nat.c: Reorganize #ifdef __CYGWIN__ considerations into one
739 block. Define helper macros to reduce ifdefs in code.
740 (get_module_name): Use cygwin_buf_t for buffer and __PMAX for buffer
741 size. Call unadorned GetModuleFileNameEx rather than
742 GetModuleFileNameEx*.
743 (windows_make_so): Use __PMAX to denote maximum buffer size and
744 cygwin_buf_t for buffer type. Use GetSystemDirectory{W,A} as
745 appropriate.
746 (get_image_name): Use __PMAX to denote maximum buffer size.
747 (handle_load_dll): Likewise.
748 (windows_pid_to_exec_file): Likewise.
749 (windows_create_inferior): Add many accommodations for older Cygwin and
750 non-Cygwin.
751 (bad_GetModuleFileNameExW): Control inclusion of this function based on
752 __USEWIDE conditional.
753 (bad_GetModuleFileNameExA): Likewise.
754 (_initialize_loadable): Just use real function names without the dyn_
755 part since they are defined earlier.
756
757 2010-03-05 Corinna Vinschen <vinschen@redhat.com>
758 Tom Tromey <tromey@redhat.com>
759
760 * utils.c (host_char_to_target): Add 'gdbarch' argument.
761 (parse_escape): Likewise.
762 * python/py-utils.c (unicode_to_target_string): Update.
763 (unicode_to_target_python_string): Update.
764 (target_string_to_unicode): Update.
765 * printcmd.c (printf_command): Update.
766 * p-exp.y (yylex): Update.
767 * objc-exp.y (yylex): Update.
768 * mi/mi-parse.c: Include charset.h.
769 (mi_parse_escape): New function.
770 (mi_parse_argv): Use it.
771 * jv-exp.y (yylex): Update.
772 * i386-cygwin-tdep.c (i386_cygwin_auto_wide_charset): New
773 function.
774 (i386_cygwin_init_abi): Call set_gdbarch_auto_wide_charset.
775 * gdbarch.sh (auto_charset, auto_wide_charset): New.
776 * gdbarch.c: Rebuild.
777 * gdbarch.h: Rebuild.
778 * defs.h (parse_escape): Update.
779 * cli/cli-setshow.c: Include arch-utils.h.
780 (do_setshow_command): Update.
781 * cli/cli-cmds.c (echo_command): Update.
782 * charset.h (target_charset, target_wide_charset): Update.
783 * charset.c: Include arch-utils.h.
784 (target_charset_name): Default to "auto".
785 (target_wide_charset_name): Likewise.
786 (show_target_charset_name): Handle "auto".
787 (show_target_wide_charset_name): Likewise.
788 (be_le_arch): New global.
789 (set_be_le_names): Add 'gdbarch' argument.
790 (validate): Likewise. Don't call set_be_le_names.
791 (set_charset_sfunc, set_host_charset_sfunc)
792 (set_target_charset_sfunc, set_target_wide_charset_sfunc):
793 Update.
794 (target_charset): Add 'gdbarch' argument.
795 (target_wide_charset): Likewise. Remove 'byte_order' argument.
796 (auto_target_charset_name): New global.
797 (default_auto_charset, default_auto_wide_charset): New functions.
798 (_initialize_charset): Set auto_target_charset_name. Allow "auto"
799 for target charsets. Copy result of nl_langinfo. Use GetACP if
800 USE_WIN32API.
801 * c-lang.c (charset_for_string_type): Add 'gdbarch' argument,
802 remove 'byte_order' argument. Update.
803 (classify_type): Likewise.
804 (c_emit_char): Update.
805 (c_printchar): Update.
806 (c_printstr): Update.
807 (c_get_string): Update.
808 (evaluate_subexp_c): Update.
809 * arch-utils.h (default_auto_charset, default_auto_wide_charset):
810 Declare.
811 * python/python.c (gdbpy_target_charset): New function.
812 (gdbpy_target_wide_charset): Likewise.
813 (GdbMethods): Update.
814 * NEWS: Update.
815
816 2010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
817
818 * symfile.c (build_section_addr_info_from_objfile): Do not mask
819 off high address bits.
820
821 2010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
822
823 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Extract
824 address as UnsignedLongLong, not LongLong.
825
826 2010-03-05 Kevin Buettner <kevinb@redhat.com>
827 Pedro Alves <pedro@codesourcery.com>
828
829 * remote-mips.c (gdbthread.h): Include.
830 (remote_mips_ptid): Declare.
831 (mips_error): Only mourn the inferior when inferior_ptid is non-null.
832 (common_open): Set inferior_ptid, add it as an inferior, and
833 as a thread too. Delete FIXME comment regarding start_remote().
834 (mips_close): Invoke generic_mourn_inferior().
835 (mips_kill): Make sure that target_mourn_inferior is invoked.
836 (mips_mourn_inferior): Don't invoke generic_mourn_inferior, as
837 it's now invoked from mips_close().
838 (mips_load): Don't null out inferior_ptid. Don't call
839 clear_symtab_users().
840 (mips_thread_alive, mips_pid_to_str): New functions.
841 (_initialize_remote_mips): Initialize remote_mips_ptid. Initialize
842 to_thread_alive and to_pid_to_str operations.
843
844 2010-03-04 Tom Tromey <tromey@redhat.com>
845
846 * dwarf2read.c (skip_one_die) <DW_FORM_ref_addr>: Use offset size
847 in DWARF 3 and later.
848 (read_attribute_value) <DW_FORM_ref_addr>: Likewise.
849
850 2010-03-04 Keith Seitz <keiths@redhat.com>
851
852 * linespec.c (decode_line_1): Update comments for is_quote_enclosed.
853 If the filename portion of the linespec was quoted, recheck the
854 remainder for additional quoting.
855 (locate_first_half): Skip over completer chars, too.
856
857 2010-03-04 Tom Tromey <tromey@redhat.com>
858
859 * printcmd.c (printf_command): Pass dummy argument to
860 printf_filtered.
861
862 2010-03-04 Doug Evans <dje@google.com>
863
864 * arm-tdep.c (arm_make_stub_cache): Delete unused locals reg,
865 unwound_fp.
866
867 * arm-tdep.c (arm_stub_unwind_sniffer): Add comment.
868
869 2010-03-04 Pedro Alves <pedro@codesourcery.com>
870
871 * breakpoint.c (update_watchpoint): Create a sentinel location if
872 the software watchpoint isn't watching any memory.
873 (breakpoint_address_bits): Skip dummy software watchpoint locations.
874
875 2010-03-04 Pedro Alves <pedro@codesourcery.com>
876
877 * utils.c (fputs_maybe_filtered): Check if there's already a top
878 level interpreter before dereferencing it. If there isn't one,
879 don't paginate either.
880
881 2010-03-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
882
883 * arm-tdep.c (arm_pc_is_thumb): Add heuristic that tries to get
884 the state right when single stepping.
885 (arm_get_next_pc_raw, thumb_get_next_pc_raw): New functions.
886 Get the next PC along with the instruction state.
887 (thumb_get_next_pc): Remove.
888 (arm_get_next_pc): Modified to use arm_get_next_pc_raw.
889
890 2010-03-04 Hui Zhu <teawater@gmail.com>
891
892 * i386-tdep.c (i386_process_record): Change "addr" to "tmpu64".
893
894 2010-03-03 Pedro Alves <pedro@codesourcery.com>
895
896 * utils.c (fputs_maybe_filtered): Always disable pagination if the
897 top level interpreter is MI.
898
899 2010-03-03 Stan Shebs <stan@codesourcery.com>
900
901 * remote.c (remote_download_tracepoint): Iterate over locations.
902 * tracepoint.c (validate_actionline): Ditto.
903 (encode_actions): Add location argument.
904 (trace_dump_command): Check all locations to see if stepping
905 frame.
906
907 2010-03-03 H.J. Lu <hongjiu.lu@intel.com>
908 Eli Zaretskii <eliz@gnu.org>
909
910 * NEWS: Add X86 general purpose registers section.
911
912 2010-03-03 Tom Tromey <tromey@redhat.com>
913
914 PR mi/11098:
915 * varobj.c (install_new_value): Handle case where new print_value
916 is NULL.
917
918 2010-03-03 Dainis Jonitis <jonitis@gmail.com>
919
920 PR gdb/11345:
921 * printcmd.c (printf_command): Print end of format string using
922 printf_filtered.
923
924 2010-03-02 Tom Tromey <tromey@redhat.com>
925
926 * mi/mi-cmd-break.c (mi_read_next_line): Add missing 'void'.
927 * defs.h (read_command_lines_1): Add missing 'void'.
928 * cli/cli-script.c (recurse_read_control_structure): Add missing
929 'void'.
930 (read_next_line): Likewise.
931 (read_command_lines_1): Likewise.
932
933 2010-03-02 Ulrich Weigand <uweigand@de.ibm.com>
934
935 * spu-tdep.c (spu_analyze_prologue): Track instruction to
936 store backchain as part of prologue.
937
938 2010-03-02 Daniel Jacobowitz <dan@codesourcery.com>
939
940 * progspace.c (update_address_spaces): Update inferior address spaces
941 also.
942
943 2010-03-02 Doug Evans <dje@google.com>
944
945 * dwarf2read.c (add_partial_subprogram): Add missing baseaddr to
946 lowpc,highpc args to addrmap_set_empty.
947
948 2010-03-02 H.J. Lu <hongjiu.lu@intel.com>
949
950 * amd64-tdep.c (amd64_byte_names): New.
951 (amd64_word_names): Likewise.
952 (amd64_dword_names): Likewise.
953 (amd64_pseudo_register_name): Likewise.
954 (amd64_pseudo_register_read): Likewise.
955 (amd64_pseudo_register_write): Likewise.
956 (amd64_init_abi): Set num_byte_regs, num_word_regs, num_dword_regs
957 and num_mmx_regs. Call set_gdbarch_pseudo_register_read,
958 set_gdbarch_pseudo_register_write and
959 set_tdesc_pseudo_register_name. Don't call
960 set_gdbarch_num_pseudo_regs. Don't set mm0_regnum.
961
962 * i386-tdep.c (i386_num_mmx_regs): Removed.
963 (i386_num_pseudo_regs): Likewise.
964 (i386_byte_names): New.
965 (i386_word_names): Likewise.
966 (i386_byte_regnum_p): Likewise.
967 (i386_word_regnum_p): Likewise.
968 (i386_mmx_regnum_p): Updated.
969 (i386_pseudo_register_name): Make it global. Handle byte and
970 word pseudo-registers.
971 (i386_pseudo_register_read): Likewise.
972 (i386_pseudo_register_write): Likewise.
973 (i386_pseudo_register_type): Handle byte, word and dword
974 pseudo-registers
975 (i386_register_reggroup_p): Don't include pseudo
976 registers, except for MXX, in any register groups. Don't
977 include pseudo byte, word, dword registers in general_reggroup.
978 (i386_gdbarch_init): Set num_byte_regs, num_word_regs,
979 num_dword_regs, al_regnum, ax_regnum and eax_regnum. Put MMX
980 pseudo-registers after word pseudo-registers. Call
981 set_gdbarch_num_pseudo_regs after calling gdbarch_init_osabi.
982
983 * i386-tdep.h (gdbarch_tdep): Add num_mmx_regs, num_byte_regs,
984 al_regnum, num_word_regs, ax_regnum, num_dword_regs and
985 eax_regnum.
986 (i386_byte_regnum_p): New.
987 (i386_word_regnum_p): Likewise.
988 (i386_dword_regnum_p): Likewise.
989 (i386_pseudo_register_name): Likewise.
990 (i386_pseudo_register_read): Likewise.
991 (i386_pseudo_register_write): Likewise.
992
993 2010-03-01 H.J. Lu <hongjiu.lu@intel.com>
994
995 * target-descriptions.c (tdesc_type): Remove
996 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
997 (tdesc_predefined_types): Likewise.
998 (tdesc_gdb_type): Likewise. Pass NULL to append_flags_type_flag
999 if flag name is empty.
1000 (maint_print_c_tdesc_cmd): Handle TDESC_TYPE_FLAGS.
1001
1002 * features/i386/32bit-core.xml: Define i386_eflags.
1003 * features/i386/64bit-core.xml: Likewise.
1004
1005 * features/i386/32bit-sse.xml: Define i386_mxcsr.
1006 * features/i386/64bit-sse.xml: Likewise.
1007
1008 * features/i386/amd64-linux.c: Regenerated.
1009 * features/i386/amd64.c: Likewise.
1010 * features/i386/i386-linux.c: Likewise.
1011 * features/i386/i386.c: Likewise.
1012
1013 2010-03-01 Daniel Jacobowitz <dan@codesourcery.com>
1014
1015 * gdbtypes.c (append_composite_type_field_raw): New.
1016 (append_composite_type_field_aligned): Use the new function.
1017 * gdbtypes.h (append_composite_type_field_raw): Declare.
1018 * target-descriptions.c (struct tdesc_type_field): Add start and end.
1019 (struct tdesc_type_flag): New type.
1020 (struct tdesc_type): Add TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS to
1021 kind. Add size to u.u. Add u.f for flags.
1022 (tdesc_gdb_type): Handle TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS.
1023 (tdesc_free_type): Likewise.
1024 (tdesc_create_struct, tdesc_set_struct_size, tdesc_create_flags): New.
1025 (tdesc_add_field): Handle TDESC_TYPE_STRUCT.
1026 (tdesc_add_bitfield, tdesc_add_flag): New.
1027 * target-descriptions.h (tdesc_create_struct, tdesc_set_struct_size)
1028 (tdesc_create_flags, tdesc_add_bitfield, tdesc_add_flag): Declare.
1029 * xml-tdesc.c (struct tdesc_parsing_data): Rename current_union to
1030 current_type. Add current_type_size and current_type_is_flags.
1031 (tdesc_start_union): Clear the new fields.
1032 (tdesc_start_struct, tdesc_start_flags): New.
1033 (tdesc_start_field): Handle struct fields, including bitfields.
1034 (field_attributes): Make type optional. Add start and end.
1035 (union_children): Rename to struct_union_children.
1036 (union_attributes): Rename to struct_union_attributes. Add optional
1037 size.
1038 (flags_attributes): New.
1039 (feature_children): Add struct and flags.
1040 * features/gdb-target.dtd: Add flags and struct to features.
1041 Make field type optional. Add field start and end.
1042
1043 2010-03-01 H.J. Lu <hongjiu.lu@intel.com>
1044
1045 * amd64-linux-nat.c (AMD64_LINUX_USER64_CS): New.
1046 (amd64_linux_read_description): Likewise.
1047 (_initialize_amd64_linux_nat): Set to_read_description to
1048 amd64_linux_read_description.
1049
1050 * amd64-linux-tdep.c: Include "features/i386/amd64-linux.c".
1051 (amd64_linux_register_name): Removed.
1052 (amd64_linux_register_type): Likewise.
1053 (amd64_linux_core_read_description): New.
1054 (amd64_linux_init_abi): Set target description to
1055 tdesc_amd64_linux if needed. Support orig_rax in target
1056 description. Don't call set_gdbarch_register_name nor
1057 set_gdbarch_register_type. Call
1058 set_gdbarch_core_read_description.
1059 (_initialize_amd64_linux_tdep): Call
1060 initialize_tdesc_amd64_linux.
1061
1062 * amd64-linux-tdep.h (tdesc_amd64_linux): New.
1063
1064 * amd64-tdep.c: Include "features/i386/amd64.c".
1065 (amd64_register_names): Removed.
1066 (amd64_register_name): Likewise.
1067 (amd64_register_type): Likewise.
1068 (amd64_init_abi): Set num_core_regs and register_names. Set
1069 target description to tdesc_amd64 if needed. Don't call
1070 set_gdbarch_register_name nor set_gdbarch_register_type.
1071 (_initialize_amd64_tdep): New.
1072
1073 * i386-linux-nat.c (i386_linux_read_description): New.
1074 (_initialize_i386_linux_nat): Set to_read_description to
1075 i386_linux_read_description.
1076
1077 * i386-linux-tdep.c: Include "features/i386/i386-linux.c".
1078 (i386_linux_register_name): Removed.
1079 (i386_linux_core_read_description): New.
1080 (i386_linux_read_description): Likewise.
1081 (i386_linux_init_abi): Don't call set_gdbarch_register_name.
1082 Set target description to tdesc_i386_linux if needed. Support
1083 orig_eax. Set register_reggroup_p. Call
1084 set_gdbarch_core_read_description.
1085 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_linux.
1086
1087 * i386-linux-tdep.h (tdesc_i386_linux): New.
1088
1089 * i386-nto-tdep.c (i386nto_regset_id): Replace I386_NUM_FREGS
1090 with I387_NUM_REGS.
1091
1092 * i386-tdep.c: Include "features/i386/i386.c".
1093 (i386_register_names): Make it const.
1094 (i386_mmx_names): Likewise.
1095 (i386_num_register_names): Removed.
1096 (i386_register_name): Likewise.
1097 (i386_eflags_type): Likewise.
1098 (i386_mxcsr_type): Likewise.
1099 (i386_sse_type): Likewise.
1100 (i386_register_type): Likewise.
1101 (i387_ext_type): Call tdesc_find_type instead of arch_float_type.
1102 (i386_pseudo_register_name): New.
1103 (i386_pseudo_register_type): Likewise.
1104 (i386_mmx_type): Make it static.
1105 (i386_gdbarch_init): Check arch. Replace I386_NUM_FREGS with
1106 I387_NUM_REGS. Set num_core_regs and register_names. Don't
1107 call set_gdbarch_register_name nor set_gdbarch_register_type.
1108 Set register_reggroup_p. Set target description to tdesc_i386
1109 if needed. Call set_tdesc_pseudo_register_type,
1110 set_tdesc_pseudo_register_name and tdesc_use_registers.
1111 (_initialize_i386_tdep): Call initialize_tdesc_i386.
1112 initialize_tdesc_x86_64.
1113
1114 * i386-tdep.h (gdbarch_tdep): Remove i386_eflags_type,
1115 i386_mxcsr_type and i386_sse_type. Add num_core_regs,
1116 register_names, tdesc and register_reggroup_p.
1117 (I386_NUM_FREGS): Removed.
1118 (i386_eflags_type): Likewise.
1119 (i386_mxcsr_type): Likewise.
1120 (i386_mmx_type): Likewise.
1121 (i386_sse_type): Likewise.
1122 (i386_register_name): Likewise.
1123 (i386_regnum): Add I386_MXCSR_REGNUM.
1124 (I386_SSE_NUM_REGS): Defined with I386_MXCSR_REGNUM.
1125
1126 * i387-tdep.h (I387_NUM_REGS): New.
1127
1128 * regformats/i386/i386-linux.dat: Generated.
1129 * regformats/i386/i386.dat: Likewise.
1130 * regformats/i386/amd64-linux.dat: Likewise.
1131 * regformats/i386/amd64.dat: Likewise.
1132
1133 * regformats/reg-i386-linux.dat: Removed.
1134 * regformats/reg-i386.dat: Likewise.
1135 * regformats/reg-x86-64-linux.dat: Likewise.
1136 * regformats/reg-x86-64.dat: Likewise.
1137
1138 2010-03-01 Corinna Vinschen <vinschen@redhat.com>
1139
1140 * remote-fileio.c (remote_fileio_func_rename): Use Cygwin 1.7
1141 cygwin_conv_path API rather than the deprecated
1142 cygwin_conv_to_full_posix_path.
1143 * windows-nat.c:
1144 (GetModuleFileNameExA): Undefine for Cygwin.
1145 (GetModuleFileNameExW): Define for Cygwin.
1146 (get_module_name): Change size of pathbuf to PATH_MAX for Cygwin.
1147 Call GetModuleFileNameExW and convert path to POSIX using
1148 cygwin_conv_path.
1149 (windows_make_so): Always define p. Drop unused variable m.
1150 Don't use Win32 functions to check file existance, rather use
1151 access on Cygwin. Fetch system directory using GetSystemDirectoryW.
1152 Use canonicalize_file_name to get full path.
1153 (get_image_name): Use wcstombs, rather than WideCharToMultiByte
1154 to convert Unicode pathname to multibyte on Cygwin. Otherwise,
1155 use correct target buffer size in call to WideCharToMultiByte.
1156 (handle_load_dll): Change size of dll_buf to PATH_MAX for Cygwin.
1157 (windows_pid_to_exec_file): Change size of path to PATH_MAX for Cygwin.
1158 (windows_create_inferior): Convert all paths and arguments to wchar_t
1159 and use CreateProcessW on Cygwin.
1160 (_initialize_windows_nat): Disable DOS-style path warning on Cygwin.
1161 (bad_GetModuleFileNameExA): Undefine for Cygwin.
1162 (bad_GetModuleFileNameExW): Define for Cygwin.
1163 (_initialize_loadable): Load GetModuleFileNameExW into
1164 dyn_GetModuleFileNameExW on Cygwin. Don't load ANSI function on Cygwin.
1165
1166 2010-02-28 Phil Muldoon <pmuldoon@redhat.com>
1167
1168 PR python/11036
1169 * python/py-frame.c (frapy_read_var): Add block argument and logic
1170 to cope with user provided blocks.
1171
1172 2010-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1173
1174 * infcall.c (call_function_by_hand): Remove gdb_assert on sp and old_sp.
1175 New comment.
1176
1177 2010-02-28 Corinna Vinschen <vinschen@redhat.com>
1178
1179 * Makefile.in (SUBDIR_MI_OBS): Move mi-common.o from here...
1180 (COMMON_OBS): ... to here since it's used unconditionally.
1181 (SUBDIR_MI_SRCS): Move mi/mi-common.c from here...
1182 (SFILES): To here.
1183
1184 2010-02-26 David Daney <ddaney@caviumnetworks.com>
1185
1186 * mips-linux-tdep.c: Update struct sigframe comments.
1187 (SIGFRAME_CODE_OFFSET): Delete macro.
1188 (mips_linux_o32_sigframe_init): Calculate sigcontext_base using
1189 this_frame's sp.
1190 (mips_linux_n32n64_sigframe_init): Same.
1191
1192 2010-02-26 Kevin Buettner <kevinb@redhat.com>
1193
1194 * remote-mips.c (mips_load): Don't use pseudo-register when
1195 invalidating regcache.
1196
1197 2010-02-26 Daniel Jacobowitz <dan@codesourcery.com>
1198
1199 * arm-tdep.c (thumb_get_next_pc): Correct conditional branch opcode.
1200
1201 2010-02-26 Pedro Alves <pedro@codesourcery.com>
1202
1203 * NEWS: Add "New targets" section, and mention ARM Symbian
1204 support.
1205
1206 2010-02-26 Ulrich Weigand <uweigand@de.ibm.com>
1207
1208 * dwarf2loc.c (struct piece_closure): Remove ARCH member,
1209 add ADDR_SIZE member.
1210 (allocate_piece_closure): Update.
1211 (copy_pieced_value_closure): Likewise.
1212 (dwarf2_evaluate_loc_desc): Likewise.
1213 (read_pieced_value): Use DWARF address size instead of
1214 GDB's gdbarch_addr_bit as size of values on the DWARF stack.
1215
1216 2010-02-26 Phil Muldoon <pmuldoon@redhat.com>
1217 Tom Tromey <tromey@redhat.com>
1218
1219 * python/py-type.c (typy_lookup_typename): Add in block argument.
1220 If provided restrict lookup to specified blocks.
1221 (gdbpy_lookup_type): Likewise.
1222 (typy_lookup_type): Likewise.
1223
1224 2010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
1225
1226 Symbian config
1227
1228 gdb/
1229 * arm-symbian-tdep.c: New.
1230 * configure.tgt (arm*-*-symbianelf*): New target.
1231 (*-*-symbianelf*): New OS.
1232 * osabi.c (gdb_osabi_names): Add Symbian.
1233 * defs.h (gdb_osabi): Add GDB_OSABI_SYMBIAN.
1234 * Makefile.in (ALL_TARGET_OBJS): Add arm-symbian-tdep.o.
1235 (ALLDEPFILES): Add arm-symbian-tdep.c.
1236
1237 2010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
1238
1239 * symfile.c (find_lowest_section): Include SEC_ALLOC sections.
1240
1241 2010-02-24 Pedro Alves <pedro@codesourcery.com>
1242
1243 * mi/mi-main.c (mi_cmd_execute): Fix typo.
1244
1245 2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
1246 Tom Tromey <tromey@redhat.com>
1247 Thiago Jung Bauermann <bauerman@br.ibm.com>
1248
1249 * python/python.c (_initialize_python): Call
1250 gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
1251 gdbpy_initialize_blocks.
1252 * python/python-internal.h: Declare struct symbol, block and
1253 symtab_and_line. Declare block_object_type and
1254 symbol_object_type
1255 (gdbpy_lookup_symbol gdbpy_block_for_pc)
1256 (symtab_and_line_to_sal_object, symtab_to_symtab_object)
1257 (symbol_to_symbol_object, block_to_block_object)
1258 (gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
1259 (gdbpy_initialize_blocks ): Declare.
1260 * python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
1261 (frapy_select): Add methods.
1262 (frapy_read_var): Add symbol branch.
1263 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
1264 py-block.
1265 (SUBDIR_PYTHON_SRCS): Likewise.
1266 (py-symbol.o): New rule.
1267 (py-symtab.o): Likewise.
1268 (py-block.o): Likewise.
1269 * python/py-symbol.c: New file.
1270 * python/py-symtab.c: Likewise.
1271 * python/py-block.c: Likewise.
1272
1273 2010-02-24 Pedro Alves <pedro@codesourcery.com>
1274
1275 PR gdb/11321
1276
1277 * inferior.h (prepare_for_detach): Declare.
1278 (struct inferior) <detaching>: New field.
1279 * infrun.c (prepare_for_detach): New.
1280 (handle_inferior_event) <random signal>: Don't stop if detaching.
1281 * target.c (target_detach): Call prepare_for_detach.
1282
1283 2010-02-24 Pedro Alves <pedro@codesourcery.com>
1284
1285 Per-process displaced stepping queue.
1286
1287 * infrun.c (displaced_step_ptid, displaced_step_request_queue)
1288 (displaced_step_gdbarch, displaced_step_closure,
1289 (displaced_step_original, displaced_step_copy): Move globals to
1290 this...
1291 (struct displaced_step_inferior_state): ... new structure.
1292 (displaced_step_inferior_states): New global.
1293 (get_displaced_stepping_state, add_displaced_stepping_state)
1294 (remove_displaced_stepping_state, infrun_inferior_exit): New
1295 functions.
1296 (displaced_step_clear): Add displaced_step_inferior_state
1297 parameter, and adjust to handle it.
1298 (displaced_step_clear_cleanup): Parameter is now a
1299 displaced_step_inferior_state. Adjust.
1300 (displaced_step_prepare): Adjust.
1301 (displaced_step_fixup, displaced_step_fixup)
1302 (infrun_thread_ptid_changed, resume): Adjust.
1303 (init_wait_for_inferior): Don't call displaced_step_clear.
1304 (infrun_thread_stop_requested): Rewrite.
1305 (_initialize_infrun): Install infrun_inferior_exit as
1306 inferior_exit observer.
1307
1308 2010-02-24 Pedro Alves <pedro@codesourcery.com>
1309
1310 * inferior.h (ptid_match): Declare.
1311 * infrun.c (ptid_match): New.
1312 * remote.c (queued_stop_reply): Rewrite and use ptid_match.
1313 (handle_notification): Add debug output.
1314 * linux-nat.c (ptid_match): Delete.
1315
1316 2010-02-24 David S. Miller <davem@davemloft.net>
1317
1318 * gdb_ptrace.h (PT_SYSCALL): If PTRACE_SYSCALL is available, use it.
1319 * syscalls/sparc-linux.xml: New.
1320 * syscalls/sparc64-linux.xml: New.
1321 * Makefile.in (XML_SYSCALL_FILES): Add new syscall XML files.
1322 * sparc-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC32): Define.
1323 (sparc32_linux_get_syscall_number): New function.
1324 (sparc32_linux_init_abi): Set syscall XML file name and hook up
1325 syscall number fetcher.
1326 * sparc64-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC64): Define.
1327 (sparc64_linux_get_syscall_number): New function.
1328 (sparc64_linux_init_abi): Set syscall XML file name and hook up
1329 syscall number fetcher.
1330
1331 2010-02-24 Vladimir Prus <vladimir@codesourcery.com>
1332
1333 Multiexec MI
1334
1335 * breakpoint.c (clear_syscall_counts): Take struct inferior*.
1336 * inferior.c (add_inferior_silent): Notify inferior_added
1337 observer.
1338 (delete_inferior_1): Notify inferior_removed observer.
1339 (exit_inferior_1): Pass inferior, not pid, to observer.
1340 (inferior_appeared): Likewise.
1341 (add_inferior_with_spaces): New.
1342 (add_inferior_command): Use the above.
1343 * inferior.h (delete_inferior_1, add_inferior_with_spaces):
1344 Declare.
1345
1346 * inflow.c (inflow_inferior_exit): Likewise.
1347 * jit.c (jit_inferior_exit_hook): Likewise.
1348
1349 * mi/mi-cmds.c (mi_cmds): Register add-inferior and
1350 remove-inferior.
1351 * mi/mi-cmds.h (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
1352 * mi/mi-interp.c (mi_inferior_added, mi_inferior_removed): New.
1353 (report_initial_inferior): New.
1354 (mi_inferior_removed): Register the above. Make sure
1355 inferior_added observer is called on the first inferior.
1356 (mi_new_thread, mi_thread_exit): Thread group is now identified by
1357 inferior number, not pid.
1358 (mi_solib_loaded, mi_solib_unloaded): Report which inferiors are
1359 affected.
1360 * mi/mi-main.c (current_context): New.
1361 (proceed_thread_callback): Use typed closure.
1362 Proceed everything if pid is 0. Most implementation split into
1363 (proceed_thread): ... this.
1364 (run_one_inferior): New.
1365 (mi_cmd_exec_continue, mi_cmd_exec_interrupt, mi_cmd_exec_run):
1366 Adjust for multiexec behaviour.
1367 (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
1368 (mi_cmd_execute): Handle the 'thread-group' option here.
1369 Do some extra checks.
1370 * mi-parse.c (mi_parse): Handle the --all and --thread-group
1371 options.
1372 * mi-parse.h (struct mi_parse): New fields all and thread_group.
1373
1374 2010-02-24 Vladimir Prus <vladimir@codesourcery.com>
1375
1376 Make -exec-run a proper MI commands.
1377
1378 * mi/mi-cmds.h (mi_cmd_exec_run): Declare.
1379 * mi/mi-cmds.c (mi_cmds): Adjust.
1380 * mi/mi-main.c (mi_cmd_exec_run): New.
1381
1382 2010-02-24 Pedro Alves <pedro@codesourcery.com>
1383 Stan Shebs <stan@codesourcery.com>
1384
1385 * tracepoint.h (set_traceframe_number)
1386 (cleanup_restore_current_traceframe): Declare.
1387 * tracepoint.c (set_traceframe_number): New.
1388 (struct current_traceframe_cleanup): New.
1389 (do_restore_current_traceframe_cleanup)
1390 (restore_current_traceframe_cleanup_dtor)
1391 (make_cleanup_restore_current_traceframe): New.
1392 * infrun.c: Include tracepoint.h.
1393 (fetch_inferior_event): Switch out and in of tfind mode.
1394
1395 2010-02-24 Pedro Alves <pedro@codesourcery.com>
1396
1397 * breakpoint.c (breakpoint_init_inferior): Also delete
1398 bp_shlib_event breakpoints.
1399 * solib-frv.c (enable_break): Remove call to
1400 remove_solib_event_breakpoints.
1401 * solib-svr4.c (enable_break): Ditto.
1402 * solib-darwin.c (darwin_solib_create_inferior_hook): Ditto.
1403 * solib-pa64.c (pa64_solib_create_inferior_hook): Ditto.
1404 * solib-som.c (som_solib_create_inferior_hook): Ditto.
1405 * solib-spu.c (spu_enable_break): Ditto.
1406
1407 2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
1408
1409 * c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE.
1410
1411 2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
1412
1413 * varobj.c (varobj_update): Avoid non-constants in initializers.
1414
1415 2010-02-23 Tom Tromey <tromey@redhat.com>
1416
1417 * dwarf2loc.c (read_pieced_value) <DWARF_VALUE_STACK>: Correctly
1418 handle big-endian values.
1419 (dwarf2_evaluate_loc_desc) <DWARF_VALUE_STACK>: Likewise.
1420
1421 2010-02-22 Pedro Alves <pedro@codesourcery.com>
1422
1423 PR9605
1424
1425 gdb/
1426 * breakpoint.c (insert_bp_location): If inserting the read
1427 watchpoint failed, fallback to an access watchpoint.
1428 (bpstat_check_watchpoint): Stop for read watchpoint triggers even
1429 if the value changed, if not watching the same memory for writes.
1430 (watchpoint_locations_match): Add comment.
1431 (update_global_location_list): Copy the location's watchpoint type.
1432 * i386-nat.c (i386_length_and_rw_bits): It's an internal error to
1433 handle read watchpoints here.
1434 (i386_insert_watchpoint): Read watchpoints aren't supported.
1435 * remote.c (remote_insert_watchpoint): Return 1 for unsupported
1436 packets.
1437 * target.h (target_insert_watchpoint): Update description.
1438
1439 2010-02-19 Tom Tromey <tromey@redhat.com>
1440
1441 * p-typeprint.c (pascal_type_print_varspec_prefix): Update.
1442 * m2-typeprint.c (m2_print_type): Update.
1443 * gdbtypes.c (recursive_dump_type): Update.
1444 (copy_type_recursive): Update.
1445 * c-typeprint.c (c_type_print_varspec_prefix): Update.
1446 (c_type_print_base): Update.
1447 * gdbtypes.h (TYPE_CODE_TEMPLATE, TYPE_CODE_TEMPLATE_ARG):
1448 Remove.
1449 (struct cplus_struct_type) <ntemplate_args>: Remove.
1450 <struct template_arg>: Remove.
1451 <is_dynamic>: Move earlier.
1452 (TYPE_TEMPLATE_ARGS): Remove.
1453 (TYPE_NTEMPLATE_ARGS): Remove.
1454 (TYPE_TEMPLATE_ARG): Remove.
1455
1456 2010-02-19 Tom Tromey <tromey@redhat.com>
1457
1458 PR c++/8693, PR c++/9496:
1459 * cp-namespace.c (cp_lookup_nested_type): Handle TYPE_CODE_UNION.
1460 * c-exp.y (lex_one_token): Rename from yylex. Don't call
1461 write_dollar_variable. Don't try to classify NAME tokens.
1462 (token_and_value): New type.
1463 (token_fifo, popping, name_obstack): New globals.
1464 (classify_name): New function.
1465 (classify_inner_name): Likewise.
1466 (yylex): Likewise.
1467 (VARIABLE): Now has type sval.
1468 (exp : VARIABLE): Call write_dollar_variable.
1469 (qualified_name): Use TYPENAME, not typebase. Add production for
1470 multiple "::" instances.
1471 (variable): Use name_not_typename.
1472 (qualified_type): Remove.
1473 (typebase): Update.
1474
1475 2010-02-19 Jan Kratochvil <jan.kratochvil@redhat.com>
1476
1477 * symfile.c (addr_info_make_relative): Extend comment. Move SECT to
1478 a more inner block. Initialize ADDR by LOWER_OFFSET only if it was
1479 found by bfd_get_section_by_name.
1480 * symfile.h (struct section_addr_info) <sectindex>: New comment.
1481
1482 2010-02-19 Joel Brobecker <brobecker@adacore.com>
1483
1484 * NEWS: Add new "[...] since 7.1" section. Rename the "[...] since
1485 7.0 section" into "Changes in 7.1".
1486
1487 2010-02-19 Joel Brobecker <brobecker@adacore.com>
1488
1489 GDB 7.1 branch created (branch timestamp: 2010-02-18 20:00 UTC)
1490 * version.in: Bump version to 7.1.50.20100219-cvs.
1491
1492 2010-02-18 Harald Koenig <H.Koenig@science-computing.de>
1493
1494 * mi/mi-main.c (mi_cmd_exec_jump): Drop unneeded `return'.
1495 * symfile.c (symfile_map_offsets_to_segments): Fix assertion.
1496
1497 2010-02-17 Tom Tromey <tromey@redhat.com>
1498
1499 * NEWS: Add Python API Improvements section.
1500
1501 2010-02-18 Daniel Jacobowitz <dan@codesourcery.com>
1502
1503 * NEWS: Correct typo.
1504
1505 2010-02-17 Tom Tromey <tromey@redhat.com>
1506
1507 * objfiles.c (gdb_bfd_ref): Handle abfd==NULL.
1508
1509 2010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
1510
1511 * symfile.c (build_section_addr_info_from_objfile): Include sections
1512 only if they are SEC_ALLOC or SEC_LOAD.
1513
1514 2010-02-17 H.J. Lu <hongjiu.lu@intel.com>
1515
1516 PR shlibs/11293
1517 * solib-svr4.c (enable_break): Check size of CORE_ADDR instead
1518 of ULONGEST for address size.
1519
1520 2010-02-17 Tom Tromey <tromey@redhat.com>
1521
1522 * NEWS: Add C++ improvements section.
1523
1524 2010-02-17 Ulrich Weigand <uweigand@de.ibm.com>
1525
1526 * python/python-internal.h [!WITH_THREAD] (PyGILState_Release,
1527 PyThreadState_Swap): Avoid "statement with no effect" warning.
1528
1529 2010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
1530
1531 * solib-svr4.c (enable_break <target_auxv_search>): New variable
1532 addr_bit. Adjust LOAD_ADDR sign for cross-arch inferiors.
1533
1534 2010-02-17 Tristan Gingold <gingold@adacore.com>
1535 Petr Hluzín <petr.hluzin@gmail.com>
1536
1537 * avr-tdep.c (avr_scan_prologue): Convert an if statement to a
1538 gdb_assert. Fix info->size for SIG prologue.
1539
1540 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
1541
1542 * infcmd.c (show_inferior_tty_command): Check for NULL.
1543 Correct output message.
1544
1545 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
1546
1547 * linespec.c (decode_line_1): Handle FILE:FUNCTION even if
1548 FUNCTION contains parentheses. Improve removal of a trailing
1549 single quote.
1550
1551 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
1552
1553 * gcore.c (do_bfd_delete_cleanup): New function.
1554 (gcore_command): Use it. Discard the cleanup after success.
1555 (gcore_copy_callback): Delete dead code.
1556
1557 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
1558
1559 * symfile.c (addr_info_make_relative): Always use
1560 find_lowest_section.
1561
1562 2010-02-16 Sami Wagiaalla <swagiaal@redhat.com>
1563
1564 * NEWS: Added entry for namespace fixes.
1565
1566 2010-02-15 Tom Tromey <tromey@redhat.com>
1567
1568 * dwarf2read.c (guess_structure_name): Allocate name on the
1569 objfile obstack.
1570
1571 2010-02-15 Tom Tromey <tromey@redhat.com>
1572
1573 * c-typeprint.c (c_type_print_base): Reverse order of test.
1574
1575 2010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1576
1577 * solib-svr4.c (LM_ADDR_CHECK): New variable minpagesize. Optionally
1578 initialize it from ELF BFD. Extend the prelink condition by it.
1579
1580 2010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1581
1582 * defs.h (parse_pid_to_attach): New.
1583 * utils.c (parse_pid_to_attach): New.
1584 * darwin-nat.c (darwin_attach): Replace ARGS parsing by parse_pid.
1585 * gnu-nat.c (gnu_attach): Likewise.
1586 * nto-procfs.c (procfs_attach): Likewise.
1587 * procfs.c (procfs_attach): Likewise.
1588 * windows-nat.c (windows_attach): Likewise.
1589 * inf-ptrace.c (inf_ptrace_attach): Likewise. Remove variable dummy.
1590 * inf-ttrace.c (inf_ttrace_attach): Likewise.
1591 * remote.c (extended_remote_attach_1): Likewise. New comment on getpid
1592 check.
1593
1594 2010-02-14 Masaki Muranaka <monaka@monami-software.com>
1595
1596 * MAINTAINERS: Add myself for write after approval privileges.
1597
1598 2010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1599
1600 * solib-svr4.c: (LM_ADDR_CHECK): Move variable align to a more inner
1601 block.
1602
1603 2010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1604
1605 * solib-svr4.c: (LM_ADDR_CHECK): Print successful prelink adjustment
1606 only if INFO_VERBOSE.
1607
1608 2010-02-12 Tomas Holmberg <th@virtutech.com>
1609
1610 * mi/mi-main.c: Added the --reverse flag to the following MI
1611 commands: exec-continue, exec-finish, exec-next, exec-step,
1612 exec-next-instruction, exec-step-instruction. This is to
1613 support reverse execution over the MI interface to gdb.
1614
1615 2010-02-12 Pedro Alves <pedro@codesourcery.com>
1616
1617 * tracepoint.c (_initialize_tracepoint): Specify that the address
1618 range of `tfind outsize' is exclusive, and that the address range
1619 of `tfind range' is inclusive, in the commands' help strings.
1620
1621 2010-02-12 Joel Brobecker <brobecker@adacore.com>
1622
1623 Spurious "dll not found" error messages on x64-windows.
1624 * windows-nat.c: Add include of complaints.h.
1625 (handle_unload_dll): Change dll-not-found error into a complaint.
1626
1627 2010-02-12 Pedro Alves <pedro@codesourcery.com>
1628
1629 * breakpoint.c (allocate_bp_location): Use bp_loc_other for
1630 bp_tracepoint and bp_fast_tracepoint, not
1631 bp_loc_software_breakpoint.
1632 (update_global_location_list): Tracepoints are never duplicates of
1633 anything.
1634
1635 2010-02-12 Pedro Alves <pedro@codesourcery.com>
1636
1637 * breakpoint.c (break_command_really): Change return type to int.
1638 Return false if no breakpoint was created, true otherwise.
1639 (trace_command): Don't set the tracepoint count if no tracepoint
1640 was created.
1641 (ftrace_command): Ditto.
1642 (create_tracepoint_from_upload): Bail out if the tracepoint wasn't
1643 created in the breakpoints table.
1644
1645 2010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
1646 Ulrich Weigand <uweigand@de.ibm.com>
1647
1648 * solib-svr4.c (LM_ADDR_CHECK): New comment on PPC-aware condition.
1649
1650 2010-02-11 Pedro Alves <pedro@codesourcery.com>
1651
1652 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out if
1653 the offset value isn't of integral type.
1654
1655 2010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
1656
1657 * breakpoint.c (delete_breakpoint) <bpt->related_breakpoint != NULL>:
1658 New.
1659
1660 2010-02-11 Pedro Alves <pedro@codesourcery.com>
1661
1662 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out on
1663 non-subscriptable types.
1664 * valarith.c (binop_types_user_defined_p): New, abstracted out
1665 from ...
1666 (binop_user_defined_p): ... this.
1667 * value.h (binop_types_user_defined_p): Declare.
1668
1669 2010-02-11 Pedro Alves <pedro@codesourcery.com>
1670
1671 * tracepoint.c (tfile_open): Remove spurious discard_cleanups.
1672 Merge uploaded TSVs before merging uploaded tracepoints.
1673
1674 2010-02-11 Pedro Alves <pedro@codesourcery.com>
1675
1676 * ax-gdb.c (gen_deref): Don't allow dereferencing void pointers.
1677
1678 2010-02-11 Vladimir Prus <vladimir@codesourcery.com>
1679
1680 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Add extra
1681 whitespace character after a dot in comment.
1682 (mi_cmd_stack_list_arguments, mi_cmd_stack_list_variables):
1683 Likewise.
1684 (list_args_or_locals): For the 'all' (that is
1685 -stack-list-variables) case, always output list of tuples.
1686 Output 'arg' field if variable is argument.
1687
1688 2010-02-10 Tom Tromey <tromey@redhat.com>
1689
1690 * parser-defs.h (parser_debug): Declare.
1691 * parse.c (_initialize_parse): Install "debug parser" set/show
1692 command.
1693 (parser_debug): New global.
1694 (show_parserdebug): New function.
1695 * c-exp.y (c_parse): Set yydebug.
1696
1697 2010-02-10 H.J. Lu <hongjiu.lu@intel.com>
1698
1699 * target-descriptions.c (tdesc_type): Add TDESC_TYPE_I387_EXT,
1700 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
1701 (tdesc_predefined_types): Add i387_ext, i386_eflags and
1702 i386_mxcsr.
1703 (tdesc_find_type): New.
1704 (tdesc_gdb_type): Use tdesc_find_type. Handle TDESC_TYPE_I387_EXT,
1705 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
1706
1707 * target-descriptions.h (tdesc_find_type): New.
1708
1709 2010-02-10 Michael Snyder <msnyder@vmware.com>
1710
1711 * gdb-gdb.py: Comment fix.
1712
1713 2010-02-09 Tristan Gingold <gingold@adacore.com>
1714
1715 * machoread.c (macho_symfile_relocate): New function.
1716 (macho_sym_fns): Use macho_symfile_relocate instead of
1717 default_symfile_relocate.
1718 (macho_oso_data): New type.
1719 (current_oso): New variable.
1720 (macho_add_oso_symfile): Do not compute section_addr_info, but
1721 instead set vma of sections.
1722 Do not set SYMFILE_VERBOSE to call symbol_file_add_from_bfd.
1723 Set and clear current_oso.
1724
1725 2010-02-09 Joel Brobecker <brobecker@adacore.com>
1726
1727 Wrong type description for tagged type parameter.
1728 * ada-lang.c (ada_evaluate_subexp) [OP_VAR_VALUE]: When noside is
1729 EVAL_AVOID_SIDE_EFFECTS, also handle the case when type is a
1730 reference to a tagged type.
1731
1732 2010-02-09 Tristan Gingold <gingold@adacore.com>
1733
1734 * objfiles.c (objfile_separate_debug_iterate): Do not iterate on
1735 brothers of the parent.
1736
1737 2010-02-08 Tom Tromey <tromey@redhat.com>
1738
1739 PR c++/8017:
1740 * value.h: Update.
1741 * valops.c (search_struct_field): Make 'name' const.
1742 (search_struct_method): Likewise.
1743 (find_method_list): Make 'method' const.
1744 (value_struct_elt): Make 'name' and 'err' const.
1745 (value_find_oload_method_list): Make 'method' const.
1746 (find_overload_match): Make 'name' const.
1747 * eval.c (evaluate_subexp_standard): New locals function,
1748 function_name.
1749 <OP_FUNCALL>: Handle OP_SCOPE specially.
1750
1751 2010-02-08 Ulrich Weigand <uweigand@de.ibm.com>
1752
1753 * infrun.c (handle_inferior_event): Do not look up regcache
1754 for exited processes.
1755
1756 Mon Feb 8 13:17:10 2010 Chris Moller <moller@mollerware.com>
1757
1758 PR gdb/10728
1759 * valarith.c (value_ptrdiff): Added a test for a zero type length,
1760 warn if found, and assume length = 1.
1761
1762 2010-02-08 Chris Moller <cmoller@redhat.com>
1763
1764 PR gdb/9067
1765 * cp-valprint.c (cp_print_value_fields) Fix use of obstacks.
1766 cp_print_static_field) Fix use of obstacks.
1767
1768 2010-02-08 Pedro Alves <pedro@codesourcery.com>
1769
1770 * linux-nat.c (linux_nat_resume): In non-stop, also only tag
1771 resumed LWPs as resumed.
1772 (linux_nat_wait_1): If there's no resumed LWP in the set of LWPs
1773 we're waiting for, bail out with TARGET_WAITKIND_IGNORE, instead
1774 of throwing an internal error. If an LWP of a process we're not
1775 waiting for reports a signal, don't force collecting a SIGSTOP,
1776 and if it was breakpoint hit in non-stop mode, cancel it. Don't
1777 go through all LWPs cancelling breakpoints in non-stop mode.
1778 (resume_stopped_resumed_lwps): New.
1779 (linux_nat_wait): Use it.
1780
1781 2010-02-07 H.J. Lu <hongjiu.lu@intel.com>
1782
1783 * features/Makefile (WHICH): Add i386/i386, i386/i386-linux,
1784 i386/amd64 and i386/amd64-linux.
1785 (i386/i386-expedite): New.
1786 (i386/i386-linux-expedite): Likewise.
1787 (i386/amd64-expedite):Likewise.
1788 (i386/amd64-linux-expedite): Likewise.
1789 ($(outdir)/i386/i386-linux.dat): Likewise.
1790 ($(outdir)/i386/amd64.dat): Likewise.
1791 ($(outdir)/i386/amd64-linux.dat): Likewise.
1792
1793 * features/i386/32bit-core.xml: New.
1794 * features/i386/32bit-linux.xml: Likewise.
1795 * features/i386/32bit-sse.xml: Likewise.
1796 * features/i386/64bit-core.xml: Likewise.
1797 * features/i386/64bit-linux.xml: Likewise.
1798 * features/i386/64bit-sse.xml: Likewise.
1799 * features/i386/i386-linux.xml: Likewise.
1800 * features/i386/i386.xml: Likewise.
1801 * features/i386/amd64-linux.xml: Likewise.
1802 * features/i386/amd64.xml: Likewise.
1803 * features/i386/i386-linux.c: Likewise.
1804 * features/i386/i386.c: Likewise.
1805 * features/i386/amd64-linux.c: Likewise.
1806 * features/i386/amd64.c: Likewise.
1807
1808 2010-02-05 Sami Wagiaalla <swagiaal@redhat.com>
1809
1810 PR c++/7935:
1811 * cp-support.h: Added char* alias element to using_direct data
1812 struct.
1813 (cp_add_using): Added char* alias argument.
1814 (cp_add_using_directive): Ditto.
1815 * cp-namespace.c: Updated with the above changes.
1816 (cp_lookup_symbol_imports): Check for aliases.
1817 * dwarf2read.c (read_import_statement): Figure out local alias
1818 for the import and pass it on to cp_add_using.
1819 (read_namespace): Pass alias argument to cp_add_using.
1820
1821 2010-02-05 Hui Zhu <teawater@gmail.com>
1822
1823 * defs.h (gdb_bfd_errmsg): New extern.
1824 * exec.c (exec_file_attach): Change bfd_errmsg to
1825 gdb_bfd_errmsg.
1826 * utils.c (AMBIGUOUS_MESS1): New macro.
1827 (AMBIGUOUS_MESS2): New macro.
1828 (gdb_bfd_errmsg): New function.
1829
1830 2010-02-04 Doug Evans <dje@google.com>
1831
1832 * solib-svr4.c (enable_break): Add comment.
1833
1834 2010-02-04 Anthony Green <green@moxielogic.com>
1835
1836 * moxie-tdep.c (moxie_analyze_prologue): Fail protocol analysis
1837 gracefully.
1838
1839 2010-02-04 Tom Tromey <tromey@redhat.com>
1840
1841 * valops.c (search_struct_field): Account for
1842 value_embedded_offset. Fix check for virtual base past the end of
1843 the object. Use value_copy when making a slice of the value.
1844
1845 2010-02-04 H.J. Lu <hongjiu.lu@intel.com>
1846
1847 PR tui/9622
1848 * tui/tui-interp.c (tui_init): Call tui_initialize_readline
1849 only if gdb_stdout is a tty.
1850
1851 2010-02-04 H.J. Lu <hongjiu.lu@intel.com>
1852
1853 * target-descriptions.c: Include "osabi.h".
1854 (maint_print_c_tdesc_cmd): Generate set_tdesc_osabi for valid
1855 OSABI.
1856
1857 2010-02-04 Tristan Gingold <gingold@adacore.com>
1858
1859 * machoread.c (macho_add_oso): Renamed to macho_register_oso.
1860 (macho_symtab_read): Adjust calls to macho_add_oso.
1861 (macho_oso_symfile): Renamed to macho_symfile_read_all_oso.
1862 (macho_symfile_read): Adjust call to macho_oso_symfile.
1863 (macho_new_init): Move this function after declarations.
1864 (macho_symfile_init): Ditto.
1865 * darwin-nat-info.c (darwin_lib_gdb_ports): Remove.
1866 * darwin-nat.c (darwin_lookup_task): Remove unused prototype.
1867
1868 2010-02-04 Vladimir Prus <vladimir@codesourcery.com>
1869
1870 Include MI command in remotelog.
1871
1872 * mi/mi-main.c (mi_execute_command): Call target_log_command.
1873
1874 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
1875
1876 * remote.c (remote_state): Remove gdbarch.
1877 (init_remote_state): Don't set gdbarch.
1878 (remote_query_supported): Pass target_gdbarch instead of
1879 rs->gdbarch to gdbarch_qsupported.
1880
1881 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
1882
1883 * gdbarch.sh: Add qsupported.
1884
1885 * gdbarch.c: Regenerated.
1886 * gdbarch.h: Likewise.
1887
1888 * remote.c (remote_state): Add gdbarch.
1889 (init_remote_state): Set gdbarch.
1890 (remote_query_supported): Support gdbarch_qsupported.
1891
1892 2010-02-03 Daniel Jacobowitz <dan@codesourcery.com>
1893
1894 * amd64fbsd-nat.c (amd64fbsd_supply_pcb): Also check for
1895 __FreeBSD_kernel_version.
1896
1897 2010-02-03 Tristan Gingold <gingold@adacore.com>
1898
1899 * symfile.h (struct sym_fns): Add sym_relocate field.
1900 (default_symfile_relocate): New prototype.
1901 (symfile_relocate_debug_section): First argument is now an objfile.
1902 * symfile.c (default_symfile_relocate): Rename from
1903 symfile_relocate_debug_section, first argument is now an objfile.
1904 (symfile_relocate_debug_section): New function.
1905 * coffread.c (coff_sym_fns): Set sym_relocate field.
1906 * somread.c (som_sym_fns): Ditto.
1907 * mipsread.c (ecoff_sym_fns): Ditto.
1908 * machoread.c (macho_sym_fns): Ditto.
1909 * elfread.c (elf_sym_fns): Ditto.
1910 * dwarf2read.c (dwarf2_read_section): Ditto.
1911 * xcoffread.c (xcoff_sym_fns): Ditto.
1912 * dbxread.c (aout_sym_fns): Ditto.
1913 (dbx_psymtab_to_symtab): Adjust call to symfile_relocate_debug_section.
1914 (elfstab_build_psymtabs): Ditto.
1915
1916 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
1917
1918 * defs.h (MAX_REGISTER_SIZE): Increase to 32.
1919
1920 2010-02-02 Tom Tromey <tromey@redhat.com>
1921
1922 * valops.c (value_cast_structs): Try downcasting using the RTTI
1923 type.
1924
1925 2010-02-02 Tom Tromey <tromey@redhat.com>
1926
1927 * gnu-v2-abi.c: Don't include gnu-v2-abi.h.
1928 (gnuv2_baseclass_offset): Now static.
1929 * Makefile.in (HFILES_NO_SRCDIR): Remove gnu-v2-abi.h.
1930 * gnu-v2-abi.h: Remove.
1931
1932 2010-02-02 Tom Tromey <tromey@redhat.com>
1933
1934 * m2-typeprint.c (m2_record_fields): Don't use
1935 TYPE_DECLARED_TYPE.
1936 * gdbtypes.h (TYPE_DECLARED_CLASS): New macro.
1937 (struct main_type) <flag_declared_class>: New field.
1938 (struct cplus_struct_type) <declared_type>: Remove.
1939 <ntemplate_args>: Move earlier.
1940 (DECLARED_TYPE_CLASS, DECLARED_TYPE_UNION, DECLARED_TYPE_STRUCT)
1941 (DECLARED_TYPE_TEMPLATE): Remove.
1942 (TYPE_DECLARED_TYPE): Remove.
1943 * gdbtypes.c (lookup_union): Don't use TYPE_DECLARED_TYPE.
1944 * dwarf2read.c (read_structure_type): Set TYPE_DECLARED_CLASS.
1945 * c-typeprint.c (c_type_print_base): Use TYPE_DECLARED_CLASS, not
1946 TYPE_DECLARED_TYPE.
1947
1948 2010-02-02 Tom Tromey <tromey@redhat.com>
1949
1950 PR c++/11226, PR c++/9629, PR c++/9688, PR c++/8890:
1951 * valops.c (search_struct_field): Compute nbases after calling
1952 CHECK_TYPEDEF.
1953 (check_field): Call CHECK_TYPEDEF.
1954 * cp-valprint.c (cp_print_value): Pass correct address to
1955 baseclass_offset. Fix check for virtual base past the end of the
1956 object. Don't offset address passed to cp_print_value_fields or
1957 apply_val_pretty_printer.
1958 (cp_print_value_fields): Fix call to val_print.
1959 (cp_print_value_fields_rtti): New function.
1960 * c-valprint.c (c_val_print): Use cp_print_value_fields_rtti.
1961 * p-valprint.c (pascal_object_print_value_fields): Fix call to
1962 val_print.
1963 * python/py-prettyprint.c (apply_val_pretty_printer): Add embedded
1964 offset to address.
1965 * language.h (struct language_defn) <la_val_print>: Document.
1966 * c-lang.h (cp_print_value_fields_rtti): Declare.
1967
1968 2010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
1969
1970 PR libc/11214:
1971 * linux-low.c (linux_tracefork_child) [!(__UCLIBC__ && HAS_NOMMU)]: New.
1972 (linux_test_for_tracefork): Move `stack' into [__UCLIBC__ && HAS_NOMMU].
1973 (linux_test_for_tracefork) [!(__UCLIBC__ && HAS_NOMMU)]: New.
1974
1975 2010-02-01 Michael Matz <matz@suse.de>
1976 Daniel Jacobowitz <dan@codesourcery.com>
1977
1978 * i386-tdep.c (i386_frame_cache): Assume valid anonymous
1979 functions use a frame pointer.
1980
1981 2010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
1982
1983 * solib-svr4.c (scan_dyntag): New variable dyn_addr. Replace gdb_assert
1984 by a conditional setting DYN_ADDR. Use DYN_ADDR.
1985 * config/djgpp/fnchange.lst: Add translations for
1986 symbol-without-target_section.exp and symbol-without-target_section.c.
1987
1988 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
1989
1990 * gdbarch.sh: Set LANG and LC_ALL to C, not c.
1991 (remote_breakpoint_for_pc): Correct invalid_p check.
1992 * gdbarch.c: Regenerated.
1993
1994 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
1995
1996 * arm-tdep.c (arm_find_mapping_symbol): New function, from
1997 arm_pc_is_thumb.
1998 (arm_pc_is_thumb): Use arm_find_mapping_symbol.
1999 (extend_buffer_earlier): New function.
2000 (MAX_IT_BLOCK_PREFIX, IT_SCAN_THRESHOLD): New constants.
2001 (arm_adjust_breakpoint_address): New function.
2002 (arm_gdbarch_init): Register arm_adjust_breakpoint_address.
2003
2004 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
2005
2006 * arm-linux-tdep.c (arm_linux_thumb2_be_breakpoint)
2007 (arm_linux_thumb2_le_breakpoint): New constants.
2008 (arm_linux_init_abi): Set thumb2_breakpoint and
2009 thumb2_breakpoint_size.
2010 * arm-tdep.c (thumb_insn_size, thumb_advance_itstate): New functions.
2011 (thumb_get_next_pc): Add a comment. Rename IT to ITSTATE.
2012 Implement support for single stepping through IT blocks if
2013 a 32-bit Thumb breakpoint instruction is available.
2014 (arm_breakpoint_from_pc): If a 32-bit Thumb breakpoint instruction
2015 is available, use it when needed.
2016 (arm_remote_breakpoint_from_pc): New function.
2017 (arm_gdbarch_init): Register arm_remote_breakpoint_from_pc.
2018 * arm-tdep.h (struct gdbarch_tdep): Correct thumb_breakpoint
2019 comment. Add thumb2_breakpoint and thumb2_breakpoint_size.
2020
2021 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
2022
2023 * arch-utils.c (default_remote_breakpoint_from_pc): New function.
2024 * arch-utils.h (default_remote_breakpoint_from_pc): Declare.
2025 * gdbarch.c, gdbarch.h: Regenerated.
2026 * gdbarch.sh (remote_breakpoint_from_pc): New architecture method.
2027 * remote.c (remote_insert_breakpoint, remote_insert_hw_breakpoint): Use
2028 gdbarch_remote_breakpoint_from_pc.
2029
2030 2010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
2031
2032 * infrun.c (prepare_to_proceed): Handle other signals which might
2033 match a breakpoint.
2034 (handle_inferior_event): Move the check for unusual breakpoint
2035 signals earlier.
2036
2037 2010-01-29 Paul Hilfinger <hilfinger@adacore.com>
2038
2039 amd64 - function returning record with field straddling 2 registers.
2040 * amd64-tdep.c (amd_classify_aggregate): Handle the case of
2041 a record of length <= 16 in which a field straddles the two
2042 eightbytes.
2043
2044 2010-01-29 Joel Brobecker <brobecker@adacore.com>
2045
2046 Implement return values on amd64-windows.
2047 * amd64-windows-tdep.c: #include gdbcore.h and regcache.h.
2048 (amd64_windows_return_value): New function.
2049 (amd64_windows_init_abi): Call set_gdbarch_return_value with
2050 amd64_windows_return_value.
2051
2052 2010-01-29 Joel Brobecker <brobecker@adacore.com>
2053
2054 amd64-windows: 32 bytes allocated on stack by caller for integer
2055 parameter registers.
2056 * i386-tdep.h (struct gdbarch_tdep): Add new field
2057 integer_param_regs_saved_in_caller_frame.
2058 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
2059 tdep->integer_param_regs_saved_in_caller_frame to 1.
2060 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
2061 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
2062
2063 2010-01-29 Joel Brobecker <brobecker@adacore.com>
2064
2065 amd64-windows: memory args passed by pointer during function calls.
2066 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
2067 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
2068 where tdep->memory_args_by_pointer is non-zero.
2069 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
2070 tdep->memory_args_by_pointer to 1.
2071
2072 2010-01-29 Joel Brobecker <brobecker@adacore.com>
2073
2074 amd64-windows: Integer parameters in function calls.
2075 * i386-tdep.h (enum amd64_reg_class): New, moved here from
2076 amd64-tdep.c.
2077 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
2078 call_dummy_integer_regs, and classify.
2079 * amd64-tdep.h (amd64_classify): Add declaration.
2080 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
2081 (amd64_reg_class): Delete, moved to i386-tdep.h.
2082 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
2083 Replace call to amd64_classify by call to tdep->classify.
2084 (amd64_push_arguments): Get the list of registers to use for
2085 passing integer parameters from the gdbarch tdep structure,
2086 rather than using a hardcoded one. Replace calls to amd64_classify
2087 by calls to tdep->classify.
2088 (amd64_push_dummy_call): Get the register number used for
2089 the "hidden" argument from tdep->call_dummy_integer_regs.
2090 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
2091 and tdep->call_dummy_integer_regs. Set tdep->classify.
2092 * amd64-windows-tdep.c: Add include of gdbtypes.h.
2093 (amd64_windows_dummy_call_integer_regs): New static global.
2094 (amd64_windows_classify): New function.
2095 (amd64_windows_init_abi): Initialize tdep->call_dummy_num_integer_regs
2096 tdep->call_dummy_integer_regs and tdep->classify.
2097
2098 2010-01-28 Daniel Jacobowitz <dan@codesourcery.com>
2099
2100 * regcache.c (regcache_xmalloc): Add aspace argument. Use it
2101 for the new regcache. All callers updated.
2102 (regcache_cpy, regcache_cpy_no_passthrough): Do not set aspace here.
2103 (get_thread_arch_regcache): Do not set aspace here.
2104 * regcache.h (regcache_xmalloc): Update declaration.
2105
2106 * frame.c, infcall.c, ppc-linux-tdep.c: Calls to
2107 regcache_xmalloc updated.
2108
2109 2010-01-28 Joel Brobecker <brobecker@adacore.com>
2110
2111 Another -Wunused-function error in procfs.c (sparc-solaris)
2112 * procfs.c (insert_dbx_link_breakpoint): Delete declaration. Move up.
2113 Only define if SYS_syssgi is defined.
2114 (remove_dbx_link_breakpoint): Delete declaration. Move up.
2115 (dbx_link_addr, insert_dbx_link_bpt_in_file)
2116 (insert_dbx_link_bpt_in_region): Move up. Only define if SYS_syssgi
2117 is itself defined.
2118
2119 2010-01-27 Christopher Faylor <me+cygwin@cgf.cx>
2120
2121 * windows-nat.c (windows_initialization_done): New variable.
2122 (get_windows_debug_event): Issue error when process dies before
2123 completely initializing.
2124 (do_initial_windows_stuff): Set flag to indicate when we are done with
2125 the initial steps of attaching to the child.
2126
2127 2010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2128
2129 * symtab.h (struct symbol <symtab>): New comment on NULL values.
2130
2131 2010-01-27 Doug Evans <dje@google.com>
2132
2133 * solib-svr4.c (solib_break_names): Add __dl_rtld_db_dlactivity.
2134
2135 * breakpoint.c (bpstat_stop_status): Delete useless code.
2136
2137 2010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2138
2139 * printcmd.c (display_uses_solib_p): Remove variable section. Access
2140 objfile via SYMBOL_SYMTAB.
2141
2142 2010-01-26 Tom Tromey <tromey@redhat.com>
2143
2144 PR exp/7643:
2145 * eval.c (evaluate_subexp_for_address) <UNOP_IND>: Call
2146 coerce_array on result.
2147
2148 2010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
2149
2150 * cp-namespace.c (cp_lookup_symbol_namespace): Added
2151 search_parent argument.
2152 (cp_add_using): Initialize 'searched' field.
2153 (reset_directive_searched): New function.
2154 * cp-support.h: Add 'searched' field to using_direct struct.
2155 (cp_lookup_symbol_imports): Ditto.
2156 * cp-namespace.c (cp_lookup_symbol_imports): Ditto.
2157 Perform recursive search.
2158 Implement non parent search.
2159 * valops.c (value_maybe_namespace_elt): Updated.
2160
2161 2010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
2162
2163 PR gdb/10929:
2164 * dwarf2read.c (read_lexical_block_scope): Create blocks for
2165 scopes which contain using directives even if they contain no
2166 declarations.
2167 * symtab.c (lookup_symbol_aux): Pass lowest level block to
2168 la_lookup_symbol_nonlocal.
2169 * cp-namespace.c (cp_lookup_symbol_nonlocal): call
2170 cp_lookup_symbol_namespace.
2171 (cp_lookup_symbol_namespace): Perform an import lookup at every
2172 block level.
2173 (cp_lookup_symbol_imports): New function.
2174 (cp_lookup_symbol_in_namespace): New function.
2175
2176 2010-01-25 Tom Tromey <tromey@redhat.com>
2177
2178 PR gdb/11049:
2179 * c-valprint.c (c_val_print): Fix test of extract_unsigned_integer
2180 result.
2181
2182 2010-01-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2183
2184 * configure.ac: Only use host_os part when disabling TUI on osf.
2185 Use test to check variables, prefix strings with x.
2186 * configure: Regenerate.
2187
2188 * solib-osf.c (osf_current_sos): Initialize tail.
2189
2190 2010-01-25 gingold <gingold@adacore.com>
2191
2192 * windows-nat.c (windows_continue): Use %x to print thread id.
2193 (get_windows_debug_event): Ditto.
2194
2195 2010-01-22 Tom Tromey <tromey@redhat.com>
2196
2197 PR symtab/11199:
2198 * dwarf2read.c (quirk_gcc_member_function_pointer): Change return
2199 type and arguments. Use smash_to_methodptr_type.
2200 (read_structure_type): Call quirk_gcc_member_function_pointer
2201 later.
2202 * gdbtypes.h (smash_to_methodptr_type): Declare.
2203 * gdbtypes.c (smash_to_methodptr_type): New function.
2204 (lookup_methodptr_type): Use it.
2205
2206 2010-01-21 Tom Tromey <tromey@redhat.com>
2207
2208 PR symtab/11198:
2209 * symtab.h (lookup_minimal_symbol_and_objfile): Declare.
2210 * minsyms.c (lookup_minimal_symbol_and_objfile): New function.
2211 * glibc-tdep.c (find_minsym_and_objfile): Remove.
2212 (glibc_skip_solib_resolver): Use
2213 lookup_minimal_symbol_and_objfile.
2214
2215 2010-01-21 Kai Tietz <kai.tietz@onevision.com>
2216
2217 * inflow.c (check_syscall): Guard by #if clause for GO32 and
2218 WIN32 targets.
2219
2220 2010-01-20 Tom Tromey <tromey@redhat.com>
2221
2222 PR backtrace/10770:
2223 * valarith.c (value_binop): Handle BINOP_GTR, BINOP_LEQ, and
2224 BINOP_GEQ. Handle BINOP_NOTEQUAL in the signed case.
2225 * dwarf2expr.c (new_dwarf_expr_context): Allocate
2226 dwarf_stack_values, not CORE_ADDRs.
2227 (execute_stack_op): Change DW_OP_div and comparison operators to
2228 use signed operands.
2229
2230 2010-01-20 Vladimir Prus <vladimir@codesourcery.com>
2231
2232 Per-inferior args and tty and environment.
2233
2234 * infcmd.c (inferior_args): Rename to ...
2235 (inferior_args_scratch): ... this.
2236 (inferior_io_terminal): Rename to ...
2237 (inferior_io_terminal_scratch): ... this.
2238 (inferior_argc, inferior_argv): Remove.
2239 (set_inferior_io_terminal, get_inferior_io_terminal): Store
2240 inside current_inferior().
2241 (set_inferior_tty_command, show_inferior_tty_command): New.
2242 (get_inferior_args, set_inferior_args): Store inside
2243 current_inferior().
2244 (notice_args_set): Likewise and rename to...
2245 (set_args_command): ... this.
2246 (set_inferior_args_vector): Likewise.
2247 (notice_args_read): Rename to...
2248 (show_args_command): ...new.
2249 (tty_command): Remove.
2250 (run_command_1): Don't free old args, as they are freed by
2251 set_inferior_arg now.
2252 (run_no_args_command): Likewise.
2253 (inferior_environ): Remove.
2254 (run_command_1): Use environment of the current inferior.
2255 (environment_info, set_environment_command)
2256 (unset_environment_command, path_info, path_command): Likewise.
2257 (_initialize_infcmd): Adjust for function and variable renames.
2258 Do not init inferior_environ.
2259 * inferior.h (set_inferior_arg): Adjust prototype.
2260 (struct inferior): New fields args, argc, argv, terminal, environment.
2261 (inferior_environ): Remove declaration.
2262 * inferior.c (free_inferior): Free new fields.
2263 (add_inferior_silent): Initialize 'environment' field.
2264 * main.c (captured_main): Set arguments only after the initial
2265 inferior has been created. Set set_inferior_io_terminal,
2266 not tty_command.
2267 * mi/mi-main.c (mi_cmd_env_path): Use environment of the current
2268 inferior.
2269 (_initialize_mi_cmd_env): Adjust for disappearance of global
2270 inferior_environ.
2271 * solib.c (solib_find): Use environment of the current inferior.
2272
2273 2010-01-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2274
2275 * varobj.c (varobj_add_child, install_dynamic_child): Wrap into #if
2276 HAVE_PYTHON.
2277 (instantiate_pretty_printer): Move HAVE_PYTHON outside of the function.
2278
2279 2010-01-20 Joel Brobecker <brobecker@adacore.com>
2280
2281 Get rid of ada-lang.c:function_name_from_pc.
2282 * ada-lang.c: Add "stack.h" #include.
2283 (function_name_from_pc): Delete.
2284 (is_known_support_routine): Replace call to function_name_from_pc
2285 by call to find_frame_funname.
2286 (ada_unhandled_exception_name_addr_from_raise): Likewise.
2287
2288 2010-01-19 Tom Tromey <tromey@redhat.com>
2289
2290 PR c++/11026:
2291 * dwarf2read.c (read_partial_die): Allocate partial DIE's name on
2292 objfile obstack.
2293
2294 2010-01-19 Tom Tromey <tromey@redhat.com>
2295
2296 * top.c (stop_sig, float_handler, do_nothing): Remove.
2297
2298 2010-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
2299
2300 * breakpoint.c (watchpoint_check): Check the call
2301 gdbarch_in_function_epilogue_p before calling frame_find_by_id.
2302 Extend the comment.
2303 * config/djgpp/fnchange.lst: Add translations for
2304 watchpoint-cond-gone.exp, watchpoint-cond-gone.c and
2305 watchpoint-cond-gone-stripped.c.
2306
2307 2010-01-19 Tom Tromey <tromey@redhat.com>
2308
2309 PR c++/8000:
2310 * dwarf2read.c (partial_die_parent_scope): Put enumeration type
2311 into parent scope, and enumerator into grandparent scope.
2312
2313 2010-01-19 Joel Brobecker <brobecker@adacore.com>
2314
2315 * NEWS: Add entry for "set/show ada trust-PAD-over-XVS" commands.
2316
2317 2010-01-19 Joel Brobecker <brobecker@adacore.com>
2318
2319 * configure.host: Make x86_64-*-solaris2.1[0-9]* an alias of
2320 i[34567]86-*-solaris2.1[0-9]*.
2321 * configure.tgt: Likewise.
2322
2323 2010-01-19 Joel Brobecker <brobecker@adacore.com>
2324
2325 * NEWS: Document the source command enhancement allowing it
2326 to load Python scripts. Document the "set/show script-extension"
2327 commands.
2328
2329 2010-01-19 Joel Brobecker <brobecker@adacore.com>
2330
2331 Add -Wunused-function to compile flags.
2332 * configure.ac: Add -Wunused-function to build_warnings.
2333 * configure: Regenerate.
2334
2335 2010-01-19 Joel Brobecker <brobecker@adacore.com>
2336
2337 "delete" ada-lex.c:input function, not used.
2338 * ada-lex.l: #define YY_NO_INPUT.
2339
2340 2010-01-19 Joel Brobecker <brobecker@adacore.com>
2341
2342 Delete free_named_symtabs and associated cleanup.
2343 * symfile.h (free_named_symtabs): Delete declaration.
2344 * symfile.c: Remove some commented out code (clear_symtab_users_once).
2345 (cashier_psymtab): Comment function out.
2346 Delete declaration.
2347 (free_named_symtabs): Delete.
2348 * coffread.c (coff_end_symtab): Remove call to free_named_symtabs.
2349 * dbxread.c (end_psymtab): Likewise.
2350 * dwarf2read.c (process_psymtab_comp_unit): Ditto.
2351 * exec.c (exec_close_1): Ditto.
2352 * xcoffread.c (xcoff_end_psymtab): Likewise.
2353
2354 2010-01-19 Joel Brobecker <brobecker@adacore.com>
2355
2356 * stack.c (print_block_frame_labels): Comment function out.
2357
2358 2010-01-19 Joel Brobecker <brobecker@adacore.com>
2359
2360 Delete unused or undefined functions.
2361 * breakpoint.c (ep_parse_optional_filename): Delete.
2362 * dcache.c (dcache_write_line): Remove declaration.
2363 * infrun.c (build_infrun): Remove declaration.
2364 * tracepoint.c (tracepoint_save_command): Remove declaration.
2365 * linux-nat.c (init_lwp_list): Delete. No longer used.
2366 * event-loop.c (check_async_signal_handlers): Delete declaration.
2367 * infrun.c (init_execution_control_state): Delete.
2368 (proceed): Update comment to avoid mentioning
2369 init_execution_control_state.
2370 * target.c (kill_or_be_killed, nosupport_runtime): Delete.
2371 * ada-lang.c (ada_to_static_fixed_value): Delete.
2372 * scm-lang.c (evaluate_subexp_scm): Delete declaration.
2373 * cp-namespace.c (cp_copy_usings): Delete.
2374 * xml-syscall.c (xml_number_of_syscalls): Delete.
2375 * progspace.c (find_program_space_by_num): Delete.
2376 * inflow.c (handle_sigio): Delete declaration.
2377 * hppa-tdep.c (hppa_alignof): Delete.
2378 * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset)
2379 (mipsnbsd_core_osabi_sniffer): Delete.
2380
2381 2010-01-18 Tom Tromey <tromey@redhat.com>
2382
2383 PR c++/9680:
2384 * c-exp.y (REINTERPRET_CAST, DYNAMIC_CAST, STATIC_CAST)
2385 (CONST_CAST): New tokens.
2386 (exp): Add new productions.
2387 (ident_tokens): Add const_cast, dynamic_cast, static_cast, and
2388 reinterpret_cast.
2389 (is_cast_operator): New function.
2390 (yylex): Handle cast operators specially.
2391 * eval.c (evaluate_subexp_standard) <UNOP_DYNAMIC_CAST,
2392 UNOP_REINTERPRET_CAST>: New cases.
2393 * expprint.c (print_subexp_standard): Likewise.
2394 (op_name_standard): Likewise.
2395 (dump_subexp_body_standard): Likewise.
2396 * parse.c (operator_length_standard): Likewise.
2397 * expression.h (enum exp_opcode): New constants UNOP_DYNAMIC_CAST,
2398 UNOP_REINTERPRET_CAST.
2399 * gdbtypes.c (class_types_same_p): New function.
2400 (is_ancestor): Use it.
2401 (is_public_ancestor): New function.
2402 (is_unique_ancestor_worker): Likewise.
2403 (is_unique_ancestor): Likewise.
2404 * gdbtypes.h (class_types_same_p, is_public_ancestor)
2405 (is_unique_ancestor): Declare.
2406 * valops.c (value_reinterpret_cast): New function.
2407 (dynamic_cast_check_1): Likewise.
2408 (dynamic_cast_check_2): Likewise.
2409 (value_dynamic_cast): Likewise.
2410 * value.h (value_reinterpret_cast, value_dynamic_cast): Declare.
2411
2412 2010-01-18 Joel Brobecker <brobecker@adacore.com>
2413
2414 Fix build failure when building without Python support.
2415 * python/python.c: Always include exceptions.h, even when HAVE_PYTHON
2416 is not defined.
2417
2418 2010-01-18 Joel Brobecker <brobecker@adacore.com>
2419
2420 Use XVS field type instead of doing a parallel lookup.
2421 * ada-lang.c (ada_get_base_type): Follow the XVS field type
2422 if it is a reference type instead of doing a type lookup using
2423 the XVS field name.
2424
2425 2010-01-18 Joel Brobecker <brobecker@adacore.com>
2426
2427 Trust PAD types instead of using PAD___XVS.
2428 * ada-lang.c (trust_pad_over_xvs): New static variable.
2429 (ada_is_aligner_type): If !trust_pad_over_xvs and there is a
2430 parallel XVS type, follow the XVS type instead of the PAD type.
2431 (unwrap_value): Make sure that there is no parallel XVE type
2432 before returning the value as is.
2433 (set_ada_list, show_ada_list): New static variables.
2434 (set_ada_command, show_ada_command): New functions.
2435 (_initialize_ada_language): Add new "set/show ada" prefix commands.
2436 Add new "set/show ada trust-PAD-over-XVS" setting.
2437
2438 2010-01-18 Tom Tromey <tromey@redhat.com>
2439 Thiago Jung Bauermann <bauerman@br.ibm.com>
2440
2441 Allow "source" to load python scripts.
2442 * exceptions.h (enum errors): Add UNSUPPORTED_ERROR.
2443 * python/python.c (source_python_script): New function.
2444 * python/python.h (source_python_script): Add declaration.
2445 * cli/cli-cmds.c: #include exceptions.h and python/python.h.
2446 (script_ext_off, script_ext_soft, script_ext_strict)
2447 (script_ext_enums, script_ext_mode): New static constants.
2448 (show_script_ext_mode, find_and_open_script): New functions.
2449 (source_script): Enhance to handle Python scripts.
2450 (init_cli_cmds): Add set/show script-extension commands.
2451
2452 2010-01-16 Stan Shebs <stan@codesourcery.com>
2453
2454 * tracepoint.h (struct trace_status): Use unsigned long long
2455 instead of size_t.
2456 * tracepoint.c (trace_status_command): Fix printf directive.
2457 (trace_save_command): Check fwrite returns, fix printf directive.
2458 (trace_filename): New global.
2459 (tfile_open): Set it, check read returns.
2460 (tfile_close): Free trace_filename.
2461 (tfile_get_traceframe_address): Check read returns.
2462 (tfile_trace_find): Ditto.
2463 (tfile_fetch_registers): Ditto.
2464 (tfile_xfer_partial): Ditto.
2465 (tfile_get_trace_state_variable_value): Ditto.
2466
2467 2010-01-15 Stan Shebs <stan@codesourcery.com>
2468
2469 Add trace file support.
2470 * tracepoint.h (enum trace_stop_reason): New enum.
2471 (struct trace_status): New struct.
2472 (parse_trace_status): Declare.
2473 (struct uploaded_tp): Move here from remote.c,
2474 add fields for actions.
2475 (struct uploaded_tsv): New struct.
2476 * tracepoint.c (tfile_ops): New target vector.
2477 (trace_fd): New global.
2478 (tfile_open): New function.
2479 (tfile_close): New function.
2480 (tfile_files_info): New function.
2481 (tfile_get_trace_status): New function.
2482 (tfile_get_traceframe_address): New function.
2483 (tfile_trace_find): New function.
2484 (tfile_fetch_registers): New function.
2485 (tfile_xfer_partial): New function.
2486 (tfile_get_trace_state_variable_value): New function.
2487 (init_tfile_ops): New function.
2488 (_initialize_tracepoint): Call it, add tfile target.
2489 (trace_status): New global.
2490 (current_trace_status): New function.
2491 (trace_running_p): Remove, change all users to get from
2492 current_trace_status()->running.
2493 (get_trace_status): Remove.
2494 (trace_status_command): Call target_get_trace_status directly,
2495 report more detail including tracing stop reasons.
2496 (trace_find_command): Always allow tfind on a file.
2497 (trace_find_pc_command): Ditto.
2498 (trace_find_tracepoint_command): Ditto.
2499 (trace_find_line_command): Ditto.
2500 (trace_find_range_command): Ditto.
2501 (trace_find_outside_command): Ditto.
2502 (trace_frames_offset, cur_offset): Declare as off_t.
2503 (trace_regblock_size): Rename from reg_size, update users.
2504 (parse_trace_status): New function.
2505 (tfile_interp_line): New function.
2506 (disconnect_or_stop_tracing): Ensure current trace
2507 status before asking what to do.
2508 (stop_reason_names): New global.
2509 (trace_save_command): New command.
2510 (get_uploaded_tp): Move here from remote.c.
2511 (find_matching_tracepoint): Ditto.
2512 (merge_uploaded_tracepoints): New function.
2513 (parse_trace_status): Use stop_reason_names.
2514 (_initialize_tracepoint): Define tsave command.
2515 * target.h (target_ops): New fields to_save_trace_data,
2516 to_upload_tracepoints, to_upload_trace_state_variables,
2517 to_get_raw_trace_data, change to_get_trace_status
2518 to take a pointer to a status struct.
2519 (target_save_trace_data): New macro.
2520 (target_upload_tracepoints): New macro.
2521 (target_upload_trace_state_variables): New macro.
2522 (target_get_raw_trace_data): New macro.
2523 * target.c (update_current_target): Add new methods, change
2524 signature of to_get_trace_status.
2525 * remote.c (hex2bin): Make globally visible.
2526 (bin2hex): Ditto.
2527 (remote_download_trace_state_variable): Download name also.
2528 (remote_get_trace_status): Update parameter, use
2529 parse_trace_status.
2530 (remote_save_trace_data): New function.
2531 (remote_upload_tracepoints): New function.
2532 (remote_upload_trace_state_variables): New function.
2533 (remote_get_raw_trace_data): New function.
2534 (remote_start_remote): Use them.
2535 (_initialize_remote_ops): Add operations.
2536 * ax-gdb.c: Include breakpoint.h.
2537 * breakpoint.c (create_tracepoint_from_upload): Use
2538 break_command_really, return tracepoint, warn about unimplemented
2539 parts.
2540 * NEWS: Mention trace file addition.
2541
2542 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2543
2544 Fix compilation warning on gcc-3.4.
2545 * exec.c (print_section_info): Move the `displacement' variable
2546 initialization to its declaration.
2547
2548 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2549
2550 * gdb-gdb.py (StructMainTypePrettyPrinter): Fix TYPE_CODE_RANGE
2551 comparison.
2552
2553 2010-01-15 Eric Botcazou <botcazou@adacore.com>
2554
2555 "info tasks" broken by typedefs in ATCB type definitions.
2556 * ada-lang.c (ada_template_to_fixed_record_type_1): Add call to
2557 ada_check_typedef before retrieving the length of the type for
2558 regular fields.
2559
2560 2010-01-15 Joel Brobecker <brobecker@adacore.com>
2561
2562 Do not use name-based lookup for unconstrained packed arrays.
2563 * ada-lang.c (find_parallel_type_by_descriptive_type):
2564 Limit the fallback to name-based lookups to the case where
2565 the type is a constrained packed array.
2566
2567 2010-01-15 Joel Brobecker <brobecker@adacore.com>
2568
2569 Enhance gdb-gdb.py to handle main_type.type_specific.
2570 * gdb-gdb.py: Print the type-specific part of struct main_type.
2571
2572 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2573
2574 * configure.ac (AC_CHECK_FUNCS): Check for setrlimit and getrlimit.
2575 * configure: Regenerate.
2576 * config.in: Regenerate.
2577 * utils.c: Include sys/resource.h.
2578 (dump_core, can_dump_core): New.
2579 (internal_vproblem): Update the comment. Check can_dump_core while
2580 setting dump_core_p. Replace two abort calls by dump_core calls.
2581
2582 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
2583 Eli Zaretskii <eliz@gnu.org>
2584
2585 * NEWS: Document the PIE support.
2586
2587 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
2588
2589 * linux-tdep.c: Remove includes gdbcore.h, observer.h and elf-bfd.h.
2590 (check_is_pie_binary, _initialize_linux_tdep): Remove.
2591
2592 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
2593
2594 * solib-svr4.c (svr4_exec_displacement): New comment for entry_point.
2595 Replace exec_entry_point call by bfd_get_start_address.
2596
2597 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
2598
2599 Support Valgrind attachments broken by the PIE support.
2600 * auxv.c: Include gdbcore.h.
2601 (procfs_xfer_auxv): Make static. Reduce its comment. Drop its
2602 parameters ops, object and annex. Remove their assertions.
2603 (ld_so_xfer_auxv, memory_xfer_auxv): New function.
2604 * auxv.h (procfs_xfer_auxv): Remove comment. Rename to ...
2605 (memory_xfer_auxv): ... here.
2606 * linux-nat.c (linux_xfer_partial): Rename procfs_xfer_auxv to
2607 memory_xfer_auxv.
2608 * procfs.c (procfs_xfer_partial): Likewise.
2609 * solib-svr4.c (svr4_relocate_main_executable): New prototype.
2610 (svr4_special_symbol_handling): Call svr4_relocate_main_executable.
2611 (svr4_solib_create_inferior_hook): Conditionalize the
2612 svr4_relocate_main_executable call.
2613
2614 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
2615
2616 * solib-svr4.c (scan_dyntag): Remove variable dyn_addr. New variable
2617 target_section. Find SECT in current_target_sections, gdb_assert it.
2618 (elf_lookup_lib_symbol): Pass the binary file if given symfile_objfile.
2619 New variable abfd.
2620 * symtab.c (lookup_objfile_from_block): Return the binary file instead
2621 of separate debug info file.
2622
2623 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
2624
2625 Support PIEs with no symfile_objfile.
2626 * exec.c (print_section_info <abfd == exec_bfd>): Relocate Entry point.
2627 * solib-svr4.c (svr4_relocate_main_executable <exec_bfd>): New block.
2628
2629 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
2630
2631 * solib-svr4.c (svr4_relocate_main_executable): Move the static exec
2632 code part to ...
2633 (svr4_static_exec_displacement): ... a new function.
2634 (svr4_exec_displacement): New function.
2635 (svr4_relocate_main_executable): Call svr4_exec_displacement. Allocate
2636 new_offsets using alloca now. Remove variable old_chain and changed.
2637 Call objfile_relocate unconditionally now.
2638
2639 2010-01-14 Doug Evans <dje@google.com>
2640
2641 * gdbtypes.c (arch_flags_type): Fix comment.
2642 * gdbtypes.h (arch_composite_type): Fix comment.
2643
2644 2009-01-14 Tristan Gingold <gingold@adacore.com>
2645
2646 * machoread.c (macho_add_oso_symfile): Add symfile_flags parameter.
2647 Call xstrdup for abfd->filename. Pass symfile_flags and objfile flags
2648 to symbol_file_add_from_bfd. Add OSO as separate objfile.
2649 (macho_oso_symfile): Add symfile_flags parameter. Pass it to
2650 macho_add_oso_symfile.
2651 (macho_symfile_read): Pass symfile_flags to macho_oso_symfile.
2652
2653 2010-01-14 Joel Brobecker <brobecker@adacore.com>
2654
2655 Tru64: Dead threads are never deleted.
2656 * dec-thread.c (dec_thread_ptid_is_alive): New function.
2657 (dec_thread_count_gdb_threads): Fix counter increment.
2658 (dec_thread_add_gdb_thread): Fix *listp increment.
2659 (resync_thread_list): Fix bug in deletion of dead threads that
2660 caused all threads to be deleted, instead of just the dead ones.
2661
2662 2010-01-13 Phil Muldoon <pmuldoon@redhat.com>
2663
2664 PR python/10705
2665
2666 * python/python-internal.h: Add lazy_string_object_type
2667 definition.
2668 (create_lazy_string_object, gdbpy_initialize_lazy_string)
2669 (gdbpy_is_lazystring, gdbpy_extract_lazy_string): Define.
2670 * python/py-value.c (valpy_lazy_string): New function.
2671 (convert_value_from_python): Add lazy string conversion.
2672 * python/py-prettyprint.c (pretty_print_one_value): Check if
2673 return is also a lazy string.
2674 (print_string_repr): Add lazy string printing branch.
2675 (print_children): Likewise.
2676 * python/py-lazy-string.c: New file. Implement lazy strings.
2677 * python/python.c (_initialize_python): Call
2678 gdbpy_initialize_lazy_string.
2679 * varobj.c (value_get_print_value): Add lazy string printing
2680 branch. Account for encoding.
2681 * c-lang.c (c_printstr): Account for new encoding argument. If
2682 encoding is NULL, find encoding suited for type, otherwise use
2683 user encoding.
2684 * language.h (language_defn): Add encoding argument.
2685 (LA_PRINT_STRING): Likewise.
2686 * language.c (unk_lang_printstr): Update to reflect new encoding
2687 argument to language_defn.
2688 * ada-lang.h (ada_printstr): Likewise.
2689 * c-lang.h (c_printstr): Likewise.
2690 * p-lang.h (pascal_printstr);
2691 * f-lang.c (f_printstr): Likewise.
2692 * m2-lang.c (m2_printstr): Likewise.
2693 * objc-lang.c (objc_printstr): Likewise.
2694 * p-lang.c (pascal_printstr): Likewise.
2695 * scm-lang.c (scm_printstr): Likewise.
2696 * c-valprint.c (c_val_print): Update LA_PRINT_STRING call for
2697 encoding argument.
2698 * ada-valprint.c (ada_printstr): Likewise.
2699 * f-valprint.c (f_val_print): Likewise
2700 * m2-valprint.c (m2_val_print): Likewise.
2701 * p-valprint.c (pascal_val_print): Likewise.
2702 * expprint.c (print_subexp_standard): Likewise.
2703 * valprint.c (val_print_string): Likewise.
2704 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-lazy-string.
2705 (SUBDIR_PYTHON_SRCS): Likewise.
2706 (py-lazy-string.o): New rule.
2707
2708 2010-01-13 Doug Evans <dje@google.com>
2709
2710 * mi/mi-main.c (list_available_thread_groups): Avoid "may be used
2711 uninitialized" warning from gcc on local `tree'.
2712
2713 2010-01-13 Vladimir Prus <vladimir@codesourcery.com>
2714
2715 Implement core awareness.
2716
2717 * bcache.c (compare_ints): Remove
2718 (print_percentage): Use compare_positive_ints.
2719 * defs.h (compare_positive_ints): Declare.
2720 * linux-nat.h (struct lin_lwp): New field core.
2721 (linux_nat_core_of_thread_1): Declare.
2722 * linux-nat.c (add_lwp): Init the 'core' field.
2723 (linux_nat_wait_1): Record the core.
2724 (linux_nat_core_of_thread_1, linux_nat_core_of_thread): New.
2725 (linux_nat_add_target): Register the above.
2726 * linux-thread-db.c (update_thread_core): New.
2727 (thread_db_find_new_threads): Update core information for
2728 every thread.
2729 * remote.c (struct private_thread_info): New.
2730 (free_private_thread_info, demand_private_info): New.
2731 (PACKET_qXfer_threads, use_osdata_threads): New.
2732 (struct thread_item, threads_parsing_context
2733 (start_thread, end_thread, thread_attributes)
2734 (thread_children, threads_children, threads_elements): New.
2735 (remote_threads_info): Try qXfer:threads before anything
2736 else.
2737 (remote_protocol_packets): Register qXfer:threads.
2738 (remote_open_1): Init use_osdata_threads.
2739 (struct stop_reply): New field 'core'.
2740 (remote_parse_stop_reply): Parse core number.
2741 (process_stop_reply): Record core number.
2742 (remote_xfer_partial): Handle qXfer:threads.
2743 (remote_core_of_thread): New.
2744 (init_remote_ops): Register remote_core_of_thread.
2745 (_initialize_remote): Register qXfer:read.
2746 * target.c (target_core_of_thread): New
2747 * target.h (enum target_object): New value TARGET_OBJECT_THREADS.
2748 (struct target_ops): New field to_core_of_threads.
2749 (target_core_of_thread): Declare.
2750 * gdbthread.h (struct thread_info): New field private_dtor.
2751 * thread.c (print_thread_info): Report the core.
2752 * ui-out.c (MAX_UI_OUT_LEVELS): Increase.
2753 * utils.c (compare_positive_ints): New.
2754 * features/threads.dtd: New.
2755 * mi/mi-interp.c (mi_on_normal_stop): Report the core.
2756 * mi/mi-main.c (struct collect_cores_data, collect_cores)
2757 (do_nothing, free_vector_of_osdata_items)
2758 (splay_tree_int_comparator, free_splay_tree): New.
2759 (print_one_inferior_data): Implemented printing of selected
2760 inferiors. Collect and print cores.
2761 (output_cores): New.
2762 (mi_cmd_list_thread_groups): Support --recurse. Permit specifying
2763 thread groups together with --available.
2764
2765 2010-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
2766
2767 * configure: Regenerate (for _STRUCTURED_PROC).
2768
2769 2010-01-12 Joel Brobecker <brobecker@adacore.com>
2770
2771 Delete dead function.
2772 * ada-lang.c (extract_string): Delete. No longer used.
2773
2774 2010-01-12 Joel Brobecker <brobecker@adacore.com>
2775
2776 Fix -Wunused warning in dec-thread.c.
2777 * dec-thread.c (dec_thread_count_gdb_threads)
2778 (dec_thread_add_gdb_thread): Prevent -Wunused warning.
2779
2780 2010-01-12 Joel Brobecker <brobecker@adacore.com>
2781
2782 * ada-valprint.c (ada_print_floating): Remove trailing space.
2783
2784 2010-01-12 Joel Brobecker <brobecker@adacore.com>
2785
2786 Add support for DW_AT_GNAT_descriptive_type.
2787 * gdbtypes.h (enum type_specific_kind): New enum.
2788 (struct main_type) [type_specific_field]: New component.
2789 [type_specific]: Add new component "gnat_stuff".
2790 (struct gnat_aux_type): New type.
2791 (INIT_CPLUS_SPECIFIC): Also set TYPE_SPECIFIC_FIELD (type).
2792 (HAVE_CPLUS_STRUCT): Also check TYPE_SPECIFIC_FIELD (type).
2793 (gnat_aux_default, allocate_gnat_aux_type): Add declaration.
2794 (INIT_GNAT_SPECIFIC, ALLOCATE_GNAT_AUX_TYPE, HAVE_GNAT_AUX_INFO)
2795 (TYPE_SPECIFIC_FIELD): New macros.
2796 (TYPE_CPLUS_SPECIFIC): Return cplus_struct_default if the given
2797 type does not hold any cplus-specific data.
2798 (TYPE_RAW_CPLUS_SPECIFIC): New macro.
2799 (TYPE_GNAT_SPECIFIC, TYPE_DESCRIPTIVE_TYPE): New macros.
2800 (TYPE_IS_OPAQUE): Use HAVE_CPLUS_STRUCT to check if type has
2801 cplus-specific data.
2802 * gdbtypes.c (allocate_cplus_struct_type): Minor stylistic rewrite.
2803 Set new component TYPE_SPECIFIC_FIELD (type).
2804 (gnat_aux_default): New constant.
2805 (allocate_gnat_aux_type): New function.
2806 (init_type): Add initialization the type-specific stuff for
2807 TYPE_CODE_FLT and TYPE_CODE_FUNC types.
2808 (print_gnat_stuff): New function.
2809 (recursive_dump_type): Use HAVE_CPLUS_STRUCT to check for cplus-
2810 specific data. Adjust code that prints the contents of the
2811 type-specific union using the TYPE_SPECIFIC_FIELD value.
2812 * dwarf2read.c (dwarf2_attach_fields_to_type): Do not allocate
2813 the type cplus stuff for Ada types.
2814 (dwarf2_add_member_fn, dwarf2_attach_fn_fields_to_type):
2815 Error out if these routines are called with an Ada type.
2816 (read_structure_type, read_array_type, read_subrange_type):
2817 Add call to set_descriptive_type.
2818 (set_die_type): Initialize the gnat-specific data if necessary.
2819 (need_gnat_info, die_descriptive_type, set_descriptive_type):
2820 New functions.
2821 * ada-lang.c (decode_constrained_packed_array_type): Use
2822 decode_constrained_packed_array_type instead of doing a standard
2823 lookup to locate a parallel type.
2824 (find_parallel_type_by_descriptive_type): New function.
2825 (ada_find_parallel_type_with_name): New function.
2826 (ada_find_parallel_type): Reimplement using
2827 ada_find_parallel_type_with_name.
2828 * ada-valprint.c (print_field_values): Use HAVE_CPLUS_STRUCT
2829 to check if type has a cplus stuff.
2830 * linespec.c (total_number_of_methods): Likewise.
2831 * mdebugread.c (new_type): Likewise.
2832
2833 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2834
2835 * NEWS: Document the 0b binary number prefix parsing.
2836
2837 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2838
2839 * objfiles.c (objfile_relocate1): Change the return type to int.
2840 Describe the new return value. Return non-zero if data changed.
2841 (objfile_relocate): New variable changed. Set it. Call
2842 breakpoint_re_set depending on CHANGED.
2843
2844 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2845
2846 Implement binary numbers parsing.
2847 * c-exp.y (parse_number): New case 'b' and 'B'.
2848
2849 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2850 Tristan Gingold <gingold@adacore.com>
2851
2852 * solib.c (info_sharedlibrary_command): Replace
2853 objfile_has_partial_symbols and objfile_has_full_symbols calls by
2854 objfile_has_symbols.
2855
2856 2010-01-10 Joel Brobecker <brobecker@adacore.com>
2857
2858 * NEWS: Document the improvements made to the mips-irix port.
2859
2860 2010-01-09 Joel Brobecker <brobecker@adacore.com>
2861
2862 Fix the documentation of valprint.c:value_print.
2863 * valprint.c (value_print): Update the function description to
2864 mention that the syntax of the output follows the current_language,
2865 not necessarily C.
2866
2867 2010-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
2868
2869 Fix displacement of separate debug info files.
2870 * objfiles.c (objfile_relocate): Rename to ...
2871 (objfile_relocate1): ... here and make it static. Extend the comment.
2872 (objfile_relocate): New function.
2873 * solib-spu.c (spu_relocate_main_executable): Explicitly check if
2874 SYMFILE_OBJFILE is NULL. Remove variables objfile and old_chain.
2875 Remove following of SEPARATE_DEBUG_OBJFILE. new_offsets is now
2876 allocated using alloca.
2877 * symfile.c (copy_section_addr_info): Remove.
2878 (build_section_addr_info_from_objfile): Make it global. New variables
2879 addr_bit and mask, use them.
2880 * symfile.h (build_section_addr_info_from_objfile): New prototype.
2881 (copy_section_addr_info): Remove.
2882
2883 2010-01-09 Joel Brobecker <brobecker@adacore.com>
2884
2885 Signal unwinder for mips-irix N32.
2886 * mips-irix-tdep.c: #include mips-tdep.h, trad-frame.h, and
2887 tramp-frame.h.
2888 (SIGTRAMP_FRAME_SIZE, SIGCONTEXT_PC_OFF, SIGCONTEXT_REGS_OFF)
2889 (SIGCONTEXT_FPREGS_OFF, SIGCONTEXT_FPCSR_OFF, SIGCONTEXT_HI_OFF)
2890 (SIGCONTEXT_LO_OFF): New macros.
2891 (mips_irix_n32_tramp_frame_init): New function.
2892 (mips_irix_n32_tramp_frame): New static constant.
2893 (mips_irix_init_abi): Prepend the mips_irix_n32_tramp_frame unwinder.
2894
2895 2010-01-09 Joel Brobecker <brobecker@adacore.com>
2896
2897 Breakpoint in shared library does not work on mips-irix.
2898 * procfs.c: #include "observer.h".
2899 (procfs_inferior_created): New function, moving here the code
2900 which unsets the syssgi syscall-exit notifications.
2901 (procfs_create_inferior): Remove the code which unsets the syssgi
2902 syscall-exit notifications. It is too early to do this here.
2903 (_initialize_procfs): Attach the procfs_inferior_created observer.
2904
2905 2010-01-09 Joel Brobecker <brobecker@adacore.com>
2906
2907 Wrong return convention for arrays (mips-irix).
2908 * mips-tdep.c (mips_n32n64_return_value): Arrays whose size is
2909 128 bits or smaller are returned the same way as structs
2910 and unions of the the same size.
2911
2912 2010-01-09 Joel Brobecker <brobecker@adacore.com>
2913
2914 Cannot set the PC on mips-irix.
2915 * irix5-nat.c (fill_gregset): Check regno against the raw PC
2916 register number, no the cooked one.
2917
2918 2010-01-09 Joel Brobecker <brobecker@adacore.com>
2919
2920 Error while loading core file on mips-irix.
2921 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing
2922 if debugging from a core file.
2923
2924 2010-01-09 Joel Brobecker <brobecker@adacore.com>
2925
2926 GDB hangs when attaching to process on mips-irix.
2927 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing if
2928 attaching to a process.
2929
2930 2010-01-09 Joel Brobecker <brobecker@adacore.com>
2931
2932 Use the correct breakpoint instruction on mips-irix.
2933 * mips-tdep.c (mips_breakpoint_from_pc): Add new static variable
2934 containing the correct breakpoint instruction to use on mips-irix.
2935 Use it when the osabi is GDB_OSABI_IRIX.
2936
2937 2010-01-09 Joel Brobecker <brobecker@adacore.com>
2938
2939 -Wunused warning in procfs.c (mips-irix only).
2940 * procfs.c (gdb_praddset, gdb_prdelset): New macros. Use them
2941 throughout instead of using praddset and prdelset respectively.
2942
2943 2010-01-09 Joel Brobecker <brobecker@adacore.com>
2944
2945 GDB crash while stepping into function.
2946 * infrun.c (handle_inferior_event): Refetch the current frame
2947 after handling what.main_action, in case that pointer became
2948 dangling.
2949
2950 2010-01-09 Joel Brobecker <brobecker@adacore.com>
2951
2952 Fix build failure of solaris-hosted cross debuggers.
2953 * ada-valprint.c, parse.c: Include defs.h before including ctype.h.
2954
2955 2010-01-09 Daniel Gutson <dgutson@codesourcery.com>
2956
2957 Fix build failure on sparc-solaris.
2958 * procfs.c: (procfs_do_thread_registers) Use elfcore_write_lwpstatus.
2959
2960 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
2961
2962 Move some symfile code into subroutines.
2963 * symfile.h (relative_addr_info_to_section_offsets)
2964 (addr_info_make_relative): New prototypes.
2965 * symfile.c (default_symfile_offsets): Move a part to ...
2966 (relative_addr_info_to_section_offsets): ... this new function.
2967 (default_symfile_offsets): Call it.
2968 (syms_from_objfile <!mainline && addrs && addrs->other[0].name>): Move
2969 this part to ...
2970 (addr_info_make_relative): ... this new function.
2971
2972 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
2973
2974 Add from_tty to solib_create_inferior_hook.
2975 * infcmd.c (post_create_inferior): Move solib_add after
2976 solib_create_inferior_hook. Pass from_tty to
2977 solib_create_inferior_hook. Call solib_add and SOLIB_ADD with
2978 0 from_tty and comment why.
2979 * infrun.c (follow_exec): Pass from_tty solib_create_inferior_hook as 0.
2980 * linux-nat.c (linux_child_follow_fork): Likewise.
2981 * nto-procfs.c (procfs_post_attach, procfs_create_inferior): Likewise.
2982 * solib-darwin.c (darwin_solib_create_inferior_hook): New parameter
2983 from_tty.
2984 * solib-frv.c (frv_solib_create_inferior_hook): Likewise.
2985 * solib-irix.c (irix_solib_create_inferior_hook): Likewise.
2986 * solib-null.c (null_solib_create_inferior_hook): Likewise.
2987 * solib-osf.c (osf_solib_create_inferior_hook): Likewise.
2988 * solib-pa64.c (pa64_solib_create_inferior_hook): Likewise.
2989 * solib-som.c (som_solib_create_inferior_hook): Likewise.
2990 * solib-spu.c (spu_solib_create_inferior_hook): New parameter from_tty.
2991 Pass it to svr4_so_ops.solib_create_inferior_hook.
2992 * solib-sunos.c (sunos_solib_create_inferior_hook): New parameter
2993 from_tty.
2994 * solib-svr4.c (enable_break): New parameter from_tty. Pass it to
2995 solib_add.
2996 (svr4_solib_create_inferior_hook): New parameter from_tty. Pass it to
2997 enable_break.
2998 * solib-target.c (solib_target_solib_create_inferior_hook): New
2999 parameter from_tty.
3000 * solib.c (solib_create_inferior_hook): New parameter from_tty. Pass
3001 it to ops->solib_create_inferior_hook.
3002 (reload_shared_libraries): Pass from_tty to solib_create_inferior_hook.
3003 Move solib_add after solib_create_inferior_hook, call it now with
3004 from_tty as 0. New comment there.
3005 * solib.h (solib_create_inferior_hook): New parameter from_tty.
3006 * solist.h (struct target_so_ops <solib_create_inferior_hook>):
3007 Likewise.
3008
3009 2010-01-08 Vladimir Prus <vladimir@codesourcery.com>
3010
3011 Fix multiexec race.
3012 * infrun.c (handle_inferior_event): Use get_thread_regcache
3013 with events ptid, not get_current_regcache.
3014
3015 2009-01-08 Joel Brobecker <brobecker@adacore.com>
3016
3017 GDB crash with empty executable name (MinGW).
3018 * source.c (openp): Add assert that parameter string is not NULL.
3019 if parameter string is an empty string, then return with a failure
3020 immediately.
3021
3022 2009-01-08 Joel Brobecker <brobecker@adacore.com>
3023
3024 Get rid of support for VAX Floats.
3025 * ada-lang.h (ada_is_vax_floating_type, ada_vax_float_type_suffix)
3026 (ada_vax_float_print_function): Delete.
3027 * ada-lang.c (ada_is_vax_floating_type, ada_vax_float_type_suffix)
3028 (ada_vax_float_print_function): Delete.
3029 * ada-typeprint.c (print_vax_floating_point_type): Delete.
3030 (ada_print_type): Remove support for VAX floats.
3031 * ada-valprint.c (ada_val_print_1): Remove support for VAX floats.
3032
3033 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
3034
3035 * stabsread.c (read_args): Handle zero arguments.
3036
3037 2009-01-08 Joel Brobecker <brobecker@adacore.com>
3038
3039 Cannot find in-tree libiconv.a after reconfigure.
3040 * acinclude.m4 (AM_ICONV): If we find an in-tree libiconv.a
3041 that we can use, then cache the path to this archive.
3042 * configure: Regenerate.
3043
3044 2010-01-07 Stan Shebs <stan@codesourcery.com>
3045
3046 Make tracepoint operations go through target vector.
3047 * target.h (enum trace_find_type): New enum.
3048 (struct target_ops): New fields to_trace_init,
3049 to_download_tracepoint, to_download_trace_state_variable,
3050 to_trace_set_readonly_regions, to_trace_start, to_get_trace_status,
3051 to_trace_stop, to_trace_find, to_get_trace_state_variable_value,
3052 to_set_disconnected_tracing.
3053 (target_trace_init): New macro.
3054 (target_download_tracepoint): New macro.
3055 (target_download_trace_state_variable): New macro.
3056 (target_trace_start): New macro.
3057 (target_trace_set_readonly_regions): New macro.
3058 (target_get_trace_status): New macro.
3059 (target_trace_stop): New macro.
3060 (target_trace_find): New macro.
3061 (target_get_trace_state_variable_value): New macro.
3062 (target_set_disconnected_tracing): New macro.
3063 * target.c (update_current_target): Inherit and set defaults for
3064 tracepoint operations.
3065 * tracepoint.c (default_collect): Make globally visible.
3066 (target_is_remote): Remove, along with all calls.
3067 (tvariables_info): Call target_get_trace_state_variable_value.
3068 (remote_set_transparent_ranges): Remove.
3069 (trace_start_command): Call target_trace_init,
3070 target_download_tracepoint, etc.
3071 (download_tracepoint): Remove.
3072 (trace_stop_command): Simplify.
3073 (stop_tracing): Call target_trace_stop.
3074 (get_trace_status): Call target_get_trace_status.
3075 (trace_status_command): Add case for targets that cannot trace.
3076 (finish_tfind_command): Change to take numerical arguments, call
3077 target_trace_find.
3078 (trace_find_command): Update call to finish_tfind_command.
3079 (trace_find_pc_command): Ditto.
3080 (trace_find_tracepoint_command): Ditto.
3081 (trace_find_line_command): Ditto.
3082 (trace_find_range_command): Ditto.
3083 (trace_find_outside_command): Ditto.
3084 (set_disconnected_tracing_value): Call
3085 target_set_disconnected_tracing.
3086 * remote.c: Add protocol encoding bits from tracepoint.c.
3087 (trace_error): Move from tracepoint.c.
3088 (remote_get_noisy_reply): Ditto.
3089 (free_actions_list_cleanup_wrapper): Ditto.
3090 (free_actions_list): Ditto.
3091 (remote_trace_init): New function.
3092 (remote_download_tracepoint): New function.
3093 (remote_download_trace_state_variable): New function.
3094 (remote_trace_set_readonly_regions): New function.
3095 (remote_trace_start): New function.
3096 (remote_get_trace_status): New function.
3097 (remote_trace_stop): New function.
3098 (remote_trace_find): New function.
3099 (remote_download_trace_state_variable): New function.
3100 (remote_set_disconnected_tracing): New function.
3101 (init_remote_ops): Add tracepoint operations.
3102
3103 * tracepoint.c (trace_dump_command): Don't decr_pc_after_break.
3104
3105 2010-01-07 Tristan Gingold <gingold@adacore.com>
3106
3107 * symfile.c (build_section_addr_info_from_objfile): New function.
3108 (symbol_file_add_separate): Don't use offsets from objfile but
3109 built an addr info.
3110
3111 2010-01-06 Stan Shebs <stan@codesourcery.com>
3112
3113 Support disconnected tracing.
3114 * infcmd.c (detach_command): Ask whether to stop tracing.
3115 * cli/cli-cmds.c (quit_command): Ditto.
3116 * breakpoint.h (struct breakpoint): New field number_on_target.
3117 * breakpoint.c (create_tracepoint_from_upload): New function.
3118 (get_tracepoint_by_number_on_target): New function.
3119 * remote.c (struct remote): New field disconnected_tracing.
3120 (remote_disconnected_tracing_feature): New function.
3121 (remote_protocol_features): Add DisconnectedTracing.
3122 (struct uploaded_tp): New struct.
3123 (uploaded_tps): New global.
3124 (get_uploaded_tp): New function.
3125 (find_matching_tracepoint): New function.
3126 (remote_get_tracing_state): New function.
3127 (remote_start_remote): Call it.
3128 * tracepoint.c (disconnected_tracing): New global.
3129 (trace_start_command): Initialize number_on_target.
3130 (stop_tracing): New function, split out from...
3131 (trace_stop_command): Call stop_tracing.
3132 (get_trace_status): New function, split out from...
3133 (trace_status_command): Call get_trace_status, add info on
3134 disconnection behavior.
3135 (disconnect_or_stop_tracing): New function.
3136 (finish_tfind_command): Translate from number on target.
3137 (trace_find_tracepoint_command): Translate to number on target.
3138 (send_disconnected_tracing_value): New function.
3139 (set_disconnected_tracing): New function.
3140 (_initialize_tracepoint): Add disconnected-tracing variable.
3141 * NEWS: Mention disconnected tracing.
3142
3143 2010-01-06 Tristan Gingold <gingold@adacore.com>
3144
3145 * symtab.c (lookup_global_symbol_from_objfile): Rename objfile
3146 parameter to main_objfile. Iterate on all separate debug objfiles.
3147 * symfile.h (symbol_file_add_separate)
3148 (find_separate_debug_file_by_debuglink): Remove parameter names.
3149 * symfile.c (symbol_file_add_separate): Use add_separate_objfile.
3150 (reread_symbols): Use free_objfile_separate_debug.
3151 * objfiles.h (struct objfile): Add separate_debug_objfile_link.
3152 Adjust comment.
3153 (objfile_separate_debug_iterate, add_separate_debug_objfile)
3154 (free_objfile_separate_debug): New prototypes.
3155 * objfiles.c (objfile_separate_debug_iterate): New function.
3156 (add_separate_debug_objfile, free_objfile_separate_debug): New
3157 functions.
3158 (free_objfile): Use free_objfile_separate_debug. Adjust for
3159 multiple separate debug objfile.
3160 (objfile_has_symbols): Adjust comment. Iterate on all separate
3161 debug objfiles.
3162 * minsyms.c (lookup_minimal_symbol): Adjust for multiple separate
3163 debug objfile.
3164 (lookup_minimal_symbol_text): Ditto.
3165 (lookup_minimal_symbol_by_pc_name): Ditto.
3166 (lookup_minimal_symbol_solib_trampoline): Ditto.
3167 (lookup_minimal_symbol_by_pc_section_1): Iterate on all separate
3168 debug objfiles.
3169
3170 2010-01-05 Stan Shebs <stan@codesourcery.com>
3171
3172 Add fast tracepoints.
3173 * arch-utils.h (default_fast_tracepoint_valid_at): Declare.
3174 * arch-utils.c (default_fast_tracepoint_valid_at): New function.
3175 * breakpoint.h (enum bptype): Add bp_fast_tracepoint.
3176 * breakpoint.c (tracepoint_type): New function.
3177 (ALL_TRACEPOINTS): Use it.
3178 (should_be_inserted): Ditto.
3179 (bpstat_check_location): Ditto.
3180 (print_one_breakpoint_location): Ditto.
3181 (user_settable_breakpoint): Ditto.
3182 (set_breakpoint_location_function): Ditto.
3183 (disable_breakpoints_in_shlibs): Ditto.
3184 (delete_trace_command): Ditto.
3185 (print_it_typical): Add bp_fast_tracepoint case.
3186 (bpstat_what): Ditto.
3187 (print_one_breakpoint_location): Ditto.
3188 (allocate_bp_location): Ditto.
3189 (mention): Ditto.
3190 (breakpoint_re_set_one): Ditto.
3191 (disable_command): Ditto.
3192 (enable_command): Ditto.
3193 (check_fast_tracepoint_sals): New function.
3194 (break_command_really): Call it.
3195 (ftrace_command): New function.
3196 (_initialize_breakpoint): Add ftrace command.
3197 * gdbarch.sh (fast_tracepoint_valid_at): New.
3198 * gdbarch.h, gdbarch.c: Regenerate.
3199 * i386-tdep.c (i386_fast_tracepoint_valid_at): New function.
3200 (i386_gdbarch_init): Use it.
3201 * remote.c (struct remote_state): New field fast_tracepoints.
3202 (PACKET_FastTracepoints): New packet config type.
3203 (remote_fast_tracepoint_feature): New function.
3204 (remote_protocol_features): Add FastTracepoints.
3205 (remote_supports_fast_tracepoints): New function.
3206 (_initialize_remote): Add FastTracepoints.
3207 * tracepoint.c (download_tracepoint): Add fast tracepoint option.
3208 * NEWS: Mention fast tracepoints.
3209
3210 2010-01-06 Joel Brobecker <brobecker@adacore.com>
3211
3212 * gdb-gdb.py: New file.
3213
3214 2010-01-05 Michael Snyder <msnyder@vmware.com>
3215
3216 * infrun.c (handle_inferior_event): Fix typo in comment.
3217
3218 2010-01-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3219
3220 * symfile.c (syms_from_objfile): Remove the !MAINLINE conditional.
3221
3222 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
3223
3224 * features/Makefile (WHICH): Add s390-linux32, s390-linux64,
3225 and s390x-linux64.
3226 (s390-linux32-expedite): Define.
3227 (s390-linux64-expedite): Define.
3228 (s390x-linux64-expedite): Define.
3229 * features/s390-acr.xml: New file.
3230 * features/s390-fpr.xml: New file.
3231 * features/s390-core32.xml: New file.
3232 * features/s390-core64.xml: New file.
3233 * features/s390x-core64.xml: New file.
3234 * features/s390-linux32.xml: New file.
3235 * features/s390-linux64.xml: New file.
3236 * features/s390x-linux64.xml: New file.
3237 * features/s390-linux32.c: New generated file.
3238 * features/s390-linux64.c: New generated file.
3239 * features/s390x-linux64.c: New generated file.
3240
3241 * regformats/s390-linux32.dat: New generated file.
3242 * regformats/s390-linux64.dat: New generated file.
3243 * regformats/s390x-linux64.dat: New generated file.
3244 * regformats/reg-s390.dat: Remove.
3245 * regformats/reg-s390x.dat: Remove.
3246
3247 * s390-nat.c: Include "auxv.h" and <elf.h>.
3248 (HWCAP_S390_HIGH_GPRS): Define if undefined.
3249 (s390_target_wordsize): New function.
3250 (s390_auxv_parse): Likewise.
3251 (s390_get_hwcap): Likewise.
3252 (s390_read_description): Likewise.
3253 (_initialize_s390_nat): Install s390_auxv_parse and
3254 s390_read_description.
3255
3256 * s390-tdep.c: Include "features/s390-linux32.c",
3257 "features/s390-linux64.c", and "features/s390x-linux64.c".
3258 (struct gdbarch_tdep): Add gpr_full_regnum, pc_regnum, and cc_regnum.
3259 (s390_register_call_saved): New function.
3260 (s390_register_name): Remove.
3261 (s390_register_type): Remove.
3262 (s390_dwarf_regmap): Add lower half GPR pseudo DWARF CFI regnums.
3263 (s390_dwarf_reg_to_regnum): Remap GPR regnums to full GPRs.
3264 (s390_adjust_frame_regnum): Remap GPR regnums to lower halves for CFI.
3265 (s390_pseudo_register_name): New function.
3266 (s390_pseudo_register_type): New function.
3267 (s390_pseudo_register_read): Handle both 32-bit and 64-bit cases.
3268 Handle full GPR pesudos and varying pseudo register numbers.
3269 (s390_pseudo_register_write): Likewise
3270 (s390x_pseudo_register_read): Remove.
3271 (s390x_pseudo_register_write): Likewise.
3272 (s390_register_group): Remove.
3273 (s390_pseudo_register_group): New function.
3274 (s390_regmap_gregset): Add GPR upper halves.
3275 (s390x_regmap_gregset): Likewise.
3276 (s390_regmap_fpregset): Likewise.
3277 (s390_regmap_upper): New global variable.
3278 (s390_upper_regset): New global variable.
3279 (s390_upper_regset_sections): New global variable.
3280 (s390_regset_from_core_section): Handle GPR upper halves.
3281 (s390_core_read_description): New function.
3282 (s390_prologue_frame_unwind_cache): Set up ABI call-saved/clobbered
3283 register information. Handle varying pseudo register numbers.
3284 (s390_backchain_frame_unwind_cache): Likewise.
3285 (s390_frame_prev_register): Unwind full GPRs to show lower halves.
3286 (s390_stub_frame_unwind_cache): Handle varying pseudo register numbers.
3287 (s390_sigtramp_frame_unwind_cache): Unwind PSWM and PSWA as well as
3288 PC and CC pseudos. Unwind upper halves and full GPRs as appropriate.
3289 Handle varying pseudo register numbers.
3290 (s390_unwind_pc): Handle varying pseudo register numbers.
3291 (s390_dwarf2_prev_register): New function.
3292 (s390_dwarf2_frame_init_reg): Set up ABI call-saved/clobbered
3293 register information. Handle varying pseudo register numbers.
3294 Install s390_dwarf2_prev_register to unwind full GPRs.
3295 (s390_gdbarch_init): Handle target descriptions. Assign varying
3296 pseudo register numbers. Install s390_adjust_frame_regnum.
3297 (_initialize_s390_tdep): Initialize target descriptions.
3298
3299 * s390-tdep.h (S390_R0_UPPER_REGNUM .. S390_R15_UPPER_REGNUM): Define.
3300 (S390_NUM_REGS): Redefine to include upper half registers.
3301 (S390_PC_REGNUM, S390_CC_REGNUM): Remove.
3302 (S390_NUM_PSEUDO_REGS, S390_NUM_TOTAL_REGS): Likewise.
3303 (tdesc_s390_linux32): Add declaration.
3304 (tdesc_s390_linux64): Likewise.
3305 (tdesc_s390x_linux64): Likewise.
3306
3307 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
3308
3309 * regset.h (struct core_regset_section): Add HUMAN_NAME.
3310 * i386-linux-tdep.c (i386_linux_regset_sections): Fill in HUMAN_NAME.
3311 * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
3312 (ppc_linux_vmx_regset_sections): Likewise.
3313 (ppc_linux_fp_regset_sections): Likewise.
3314
3315 * corelow.c (get_core_register_section): Constify arguments.
3316 (get_core_registers): Use gdbarch_core_regset_sections instead
3317 of hard-coded platform-specific register section names.
3318
3319 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
3320
3321 * dwarf2loc.c (read_pieced_value): If a piece occupies part of
3322 a register, assume the least-significant part is used.
3323 (write_pieced_value): Likewise.
3324
3325 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
3326
3327 * printcmd.c: Include "arch-utils.h".
3328 (do_one_display): Re-parse expression if current architecture changed.
3329
3330 2010-01-03 Jan Kratochvil <jan.kratochvil@redhat.com>
3331 Joel Brobecker <brobecker@adacore.com>
3332
3333 * gdbtypes.c (check_typedef): New comment on type length.
3334 * value.c (allocate_value_lazy): Remove the unused atype variable. New
3335 comment on type length.
3336 (value_primitive_field): Keep the original TYPE value, new comment.
3337
3338 2010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
3339
3340 * cli/cli-script.c (process_next_line): Rename p1 as p_end and p2 as
3341 p_start. Change != comparisons to > and < comparisons.
3342
3343 2010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
3344
3345 * cli/cli-script.c (process_next_line): Check P2 overrun.
3346
3347 2009-01-01 Joel Brobecker <brobecker@adacore.com>
3348
3349 Update the copyright hearder to add year 2010 for most GDB files.
3350
3351 2009-01-01 Joel Brobecker <brobecker@adacore.com>
3352
3353 Fix build failure in inf-ptrace.c.
3354 * inf-ptrace.c (inf_ptrace_follow_fork): Fix typo.
3355
3356 2010-01-01 Joel Brobecker <brobecker@adacore.com>
3357
3358 * top.c (print_gdb_version): Update copyright year.
3359
3360 2010-01-01 Joel Brobecker <brobecker@adacore.com>
3361
3362 Fix break *FUN'address thread NUM.
3363 * ada-lex.l (task): Expand rule to also match the thread keyword.
3364
3365 2010-01-01 Joel Brobecker <brobecker@adacore.com>
3366
3367 Fix break *FUN'address task NUM.
3368 * ada-lex.l (task): New rule.
3369 * ada-lang.c (valid_task_id): Make sure the Ada task list has
3370 been built before using it.
3371
3372 For older changes see ChangeLog-2009.
3373 \f
3374 Local Variables:
3375 mode: change-log
3376 left-margin: 8
3377 fill-column: 74
3378 version-control: never
3379 coding: utf-8
3380 End: