a9ebb8ff9c389d21c2bef991eb948adc09b0c4d1
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2010-10-11 Doug Evans <dje@google.com>
2
3 * c-typeprint.c (c_type_print_modifier): Add note that this prints
4 the address space id too.
5
6 2010-10-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7
8 Fix attaching to re-prelinked executables on ppc64.
9 * solib-svr4.c (svr4_exec_displacement): New variable plt2_asect,
10 initialize it, try to adjust FILESZ field by it.
11
12 2010-10-08 Daniel Jacobowitz <dan@codesourcery.com>
13
14 * tracepoint.c (merge_uploaded_trace_state_variables): Only print
15 messages if info_verbose.
16
17 2010-10-08 Ken Werner <ken.werner@de.ibm.com>
18
19 * valops.c (value_cast): Handle vector types.
20 * valarith.c (value_binop): Widen scalar to vector if appropriate.
21
22 2010-10-08 Ulrich Weigand <uweigand@de.ibm.com>
23
24 * arm-tdep.c (thumb_expand_immediate): New function.
25 (thumb_instruction_changes_pc): Likewise.
26 (thumb2_instruction_changes_pc): Likewise.
27 (thumb_analyze_prologue): Handle 32-bit Thumb instructions during
28 prologue parsing. Improved support for optimized code.
29 (thumb_scan_prologue): Do not reply on line-number information,
30 use same heuristics as arm_scan_prologue insead.
31 (skip_prologue_function): Accept functions
32 "__tls_get_addr" and "__aeabi_read_tp".
33
34 2010-10-08 Ulrich Weigand <uweigand@de.ibm.com>
35 Daniel Jacobowitz <dan@codesourcery.com>
36
37 * arm-tdep.c (thumb_in_function_epilogue_p)
38 (arm_in_function_epilogue_p): New.
39 (arm_gdbarch_init): Install arm_in_function_epilogue_p as
40 gdbarch_in_function_epilogue_p callback.
41
42 2010-10-07 Doug Evans <dje@google.com>
43
44 * cc-with-index.sh (output_file): Default to a.out.
45
46 * dwarf2read.c (mapped_index): Rename member index_table to
47 symbol_table and index_table_slots to symbol_table_slots.
48 All uses updated.
49 (create_symbol_hash_table): Renamed from create_index_table.
50 All callers updated.
51 (add_indices_to_cpool): Rename arg index_table to symbol_hash_table.
52 (write_hash_table): Rename local index_table to symbol_hash_table.
53
54 * addrmap.h (addrmap_foreach_fn): New typedef.
55 (addrmap_foreach): Declare.
56 * addrmap.c (struct addrmap_funcs): New member foreach.
57 (addrmap_foreach): New function.
58 (addrmap_fixed_foreach): New function.
59 (addrmap_fixed_funcs): Update.
60 (struct mutable_foreach_data): New struct.
61 (addrmap_mutable_foreach_worker): New function.
62 (addrmap_mutable_foreach): New function.
63 (addrmap_mutable_funcs): Update.
64
65 2010-10-07 Paul Hilfinger <hilfinger@adacore.com>
66
67 * dictionary.c (dict_hash): Revert to msymbol_hash_iw in
68 more cases.
69
70 2010-10-07 Paul Hilfinger <hilfinger@adacore.com>
71
72 * ada-lang.c (full_match): Declare.
73 (ada_match_name): Rename to match_name (we should avoid prefixing static
74 symbols with "ada_").
75 (match_name): New name for ada_match_name.
76 (struct ada_psym_data): Remove and replace with...
77 (struct match_data): User data for map_matching_symbols.
78 (ada_add_psyms): Remove.
79 (aux_add_nonlocal_symbols): New function, used as callback for
80 map_matching_symbols.
81 (compare_names): Ordering function adopted from strcmp_iw for Ada-encoded
82 symbols.
83 (ada_add_non_local_symbols): Rename to add_nonlocal_symbols.
84 (add_nonlocal_symbols): Renamed from ada_add_non_local_symbols.
85 Rework to use map_matching_symbols instead of map_ada_symtabs.
86 (ada_lookup_symbol_list): Use add_nonlocal_symbols.
87 * psymtab.c: Include dependency on dictionary.h.
88 (match_partial_symbol): New function.
89 (ada_lookup_partial_symbol): Remove.
90 (map_block): New function, auxiliary to map_matching_symbols_psymtab.
91 (map_matching_symbols_psymtab): New function.
92 (psym_functions): Replace map_ada_symtabs with map_matching_symbols_psymtab.
93 * symfile.h: Replace map_ada_symtabs definition with map_matching_symbols.
94
95 2010-10-06 Paul Hilfinger <hilfinger@adacore.com>
96
97 * ada-lang.c (ada_match_name): Use new API for wild_match.
98 (wild_match): Change API to be consistent with that of strcmp_iw;
99 return 0 for a match, and switch operand order.
100 (full_match): New function.
101 (ada_add_block_symbols): Use dict_iter_match_{first,next} for
102 matching to allow use of hashing.
103 * dictionary.c (struct dict_vector): Generalize iter_name_first,
104 iter_name_next ot iter_match_first, iter_match_next.
105 (iter_name_first_hashed): Replace with iter_match_first_hashed.
106 (iter_name_next_hashed): Replace with iter_match_next_hashed.
107 (iter_name_first_linear): Replace with iter_match_first_linear.
108 (iter_name_next_linear): Replace with iter_match_next_linear.
109 (dict_iter_name_first): Re-implement to use dict_iter_match_first.
110 (dict_iter_name_next): Re-implement to use dict_iter_match_next.
111 (dict_iter_match_first): New function.
112 (dict_iter_match_next): New function.
113 (dict_hash): New function.
114 * dictionary.h (dict_iter_match_first, dict_iter_match_next): Declare.
115 * psymtab.c (ada_lookup_partial_symbol): Use new wild_match API.
116
117 2010-10-06 Doug Evans <dje@google.com>
118
119 * data-directory/Makefile.in: Remove @host_makefile_frag@, @frags@.
120
121 2010-10-06 Ken Werner <ken.werner@de.ibm.com>
122
123 * dwarf2read.c (read_tag_const_type): Handle const arrays.
124
125 2010-10-06 Doug Evans <dje@google.com>
126
127 * Makefile.in (REQUIRED_SUBDIRS): New var.
128 (subdir_do): Verify required subdir Makefiles exist.
129
130 Create subdir data-directory.
131 * Makefile.in (XML_SYSCALL_DIR, XML_SYSCALL_FILES): Moved to
132 data-directory/Makefile.in.
133 (SUBDIRS): Add data-directory.
134 (all): Remove xml-syscall-copy dependency.
135 (xml-syscall-copy): Moved to data-directory/Makefile.in as
136 stamp-syscalls.
137 (xml-syscall-install): Moved to data-directory/Makefile.in as
138 install-syscalls.
139 (install-only): Remove xml-syscall-install dependency.
140 (all-data-directory): New rule.
141 (data-directory/Makefile): New rule.
142 * configure.ac (AC_OUTPUT): Add data-directory/Makefile.
143 * configure: Regenerate.
144 * data-directory/Makefile.in: New file.
145 * python/lib/gdb/__init__.py: New file.
146
147 2010-10-06 Joel Brobecker <brobecker@adacore.com>
148
149 Fix ARI warnings in advance_wild_match.
150 * ada-lang.c (advance_wild_match): Delete local variable t2.
151 Adjust code accordingly. Minor reformatting.
152
153 2010-10-06 Ken Werner <ken.werner@de.ibm.com>
154
155 * gdbtypes.h (struct main_type): Remove flag_nottext.
156 (enum type_flag_value): Remove TYPE_FLAG_NOTTEXT.
157 (enum type_instance_flag_value): Add TYPE_INSTANCE_FLAG_NOTTEXT.
158 (TYPE_NOTTEXT): Use TYPE_INSTANCE_FLAG_NOTTEXT instead of flag_nottext.
159 * gdbtypes.c (make_vector_type): Use TYPE_INSTANCE_FLAG_NOTTEXT instead
160 of TYPE_FLAG_NOTTEXT.
161 (init_type): Remove the initialization of the flag_nottext field.
162 (gdbtypes_post_init): Use TYPE_INSTANCE_FLAG_NOTTEXT instead of
163 TYPE_FLAG_NOTTEXT.
164 * c-valprint.c (c_val_print): Remove TYPE_VECTOR check.
165
166 2010-10-04 Doug Evans <dje@google.com>
167
168 * cc-with-index.sh: New file.
169
170 * dwarf2read.c (dw2_do_instantiate_symtab): Insert blank line after
171 function comment.
172 (dw2_instantiate_symtab, dw2_get_cu, extract_cu_value): Ditto.
173 (create_cus_from_index, create_addrmap_from_index): Ditto.
174 (mapped_index_string_hash, find_slot_in_mapped_hash): Ditto.
175 (dw2_setup, dw2_require_line_header, dw2_require_full_path): Ditto.
176 (dw2_do_expand_symtabs_matching): Ditto.
177 (eq_strtab_entry, create_strtab, add_string): Ditto.
178 (hash_strtab_entry): Ditto.
179 (hash_symtab_entry, eq_symtab_entry, delete_symtab_entry): Ditto.
180 (create_index_table, create_mapped_symtab, find_slot): Ditto.
181 (hash_expand, add_index_entry, add_indices_to_cpool): Ditto.
182 (write_hash_table, add_address_entry, write_psymbols): Ditto.
183 (write_obstack, unlink_if_set, write_one_signatured_type): Ditto.
184 (write_psymtabs_to_index): Ditto.
185
186 2010-10-04 Joel Brobecker <brobecker@adacore.com>
187
188 * ada-lang.c: #include "value.h".
189 (ensure_lval): Delete advance declaration. Remove gdbarch and sp
190 arguments. Implement using value_allocate_space_in_inferior
191 instead of allocating memory from the stack.
192 (make_array_descriptor): Remove gdbarch and sp parameters. Update
193 calls to ensure_lval.
194 (ada_convert_actual): Remove gdbarch and sp parameters. Update
195 calls to make_array_descriptor and ensure_lval.
196 * ada-lang.h (ada_convert_actual): Update declaration.
197 * infcall.c (value_arg_coerce): Update call to ada_convert_actual.
198
199 2010-10-04 Doug Evans <dje@google.com>
200
201 * python/python.c (_initialize_python): Define new function
202 GdbSetPythonDirectory in python. Use it to update sys.path and
203 gdb.__path__.
204
205 2010-10-03 Paul Hilfinger <hilfinger@adacore.com>
206
207 * gdb/ada-typeprint.c (print_selected_record_field_types): New function,
208 incorporating and generalizing print_record_field_types.
209 (print_record_field_types): Change return value and update comment.
210 Re-implement using print_selected_record_field_types.
211 (print_choices): Print "=>" here.
212 Handle case of unencoded variant branch.
213 (print_variant_clauses): Reformat comment.
214 Special-case unencoded variant branch.
215
216 2010-10-03 Paul Hilfinger <hilfinger@adacore.com>
217
218 * ada-lang.c (wild_match): Reimplement.
219 Change API to eliminate unused length argument, reverse arguments and
220 make 0 the 'true' return value.
221 (advance_wild_match): New auxiliary function for wild_match to improve
222 readability.
223 (ada_match_name, ada_add_block_symbols): Use new API for wild_match.
224 * psymtab.c (ada_lookup_partial_symbol, map_ada_symtabs): Use new
225 API for wild_match.
226 * symfile.h (map_ada_symtabs): Modify declaration to use new API for
227 wild_match.
228 * dwarf2read.c (dw2_map_ada_symtabs): Ditto.
229
230 2010-10-01 Doug Evans <dje@google.com>
231
232 * dwarf2read.c (_initialize_dwarf2_read): Add usage info to help text
233 for `save gdb-index' command.
234
235 2010-10-01 Tom Tromey <tromey@redhat.com>
236
237 * symfile.h (allocate_symtab): Update.
238 * symfile.c (allocate_symtab): Make 'filename' const.
239 * psymtab.c (add_psymbol_to_bcache): Make 'name' const.
240 (add_psymbol_to_list): Likewise.
241 * psympriv.h (struct partial_symtab) <filename, dirname>: Now
242 const.
243 (add_psymbol_to_list): Update.
244 * mdebugread.c (new_symtab): Make 'name' const.
245 (psymtab_to_symtab_1): Make 'filename' const.
246 * elfread.c (elfstab_offset_sections): Update.
247 * dwarf2read.c (dwarf_decode_lines): Make 'comp_dir' const.
248 (dwarf2_start_subfile): Make 'dirname' and 'comp_dir' const.
249 (psymtab_include_file_name): Update.
250 * dbxread.c (find_stab_function_addr): Make 'filename' const.
251 * buildsym.h (start_subfile): Update.
252 * buildsym.c (start_subfile): Make arguments const.
253
254 2010-09-30 Ali Lakhia <lakhia@alumni.utexas.net>
255
256 * fork-child.c (breakup_args): Fix crash if shell forking is
257 disabled at compile time.
258
259 2010-10-01 Joel Brobecker <brobecker@adacore.com>
260
261 * ada-lang.c (desc_bounds): Add handling of the case where
262 the P_BOUNDS field is a pointer to a stub.
263 (desc_data_target_type): Same for P_ARRAY field.
264 (ada_check_typedef): Strip the typedef layers from the type
265 found by ada_find_any_type.
266
267 2010-10-01 Joel Brobecker <brobecker@adacore.com>
268
269 * sparc-tdep.c (sparc32_frame_align): New function.
270 (sparc32_gdbarch_init): Set the frame_align gdbarch method.
271 * sparc64-tdep.c (sparc64_frame_align): New function.
272 (sparc64_gdbarch_init): Set the frame_align gdbarch method.
273
274 2010-09-30 H.J. Lu <hongjiu.lu@intel.com>
275
276 * defs.h (MAX_REGISTER_SIZE): Set to 64.
277
278 2010-09-30 Tom Tromey <tromey@redhat.com>
279
280 * symfile.h (struct sym_fns) <next>: Remove.
281 (add_symtab_fns): Update.
282 * symfile.c (sym_fns_ptr): New typedef.
283 (symtab_fns): Now a VEC.
284 (add_symtab_fns): Update. Change argument type.
285 (find_sym_fns): Update. Change return type.
286 (get_symfile_segment_data): Update.
287 * objfiles.h (struct objfile) <sf>: Now const.
288 * somread.c (som_sym_fns): Now const. Update.
289 * xcoffread.c (xcoff_sym_fns): Now const. Update.
290 * mipsread.c (ecoff_sym_fns): Now const. Update.
291 * machoread.c (macho_sym_fns): Now const. Update.
292 * elfread.c (elf_sym_fns): Now const. Update.
293 (elf_sym_fns_gdb_index): Likewise.
294 * dbxread.c (aout_sym_fns): Now const. Update.
295 * coffread.c (coff_sym_fns): Now const. Update.
296
297 2010-09-30 Tom Tromey <tromey@redhat.com>
298
299 * value.c (value_primitive_field): Take 'offset' into account for
300 packed field.
301
302 2010-09-30 Tom Tromey <tromey@redhat.com>
303
304 * completer.c (count_struct_fields): Handle anonymous structs and
305 unions.
306 (add_struct_fields): Likewise.
307
308 2010-09-30 Jan Kratochvil <jan.kratochvil@redhat.com>
309
310 Fix printing parameters of inlined functions.
311 * ada-lang.c (is_known_support_routine)
312 (ada_unhandled_exception_name_addr_from_raise): Provide NULL parameter
313 for find_frame_funname.
314 * python/py-frame.c (frapy_name): Likewise.
315 * stack.c (find_frame_funname): New parameter funcp. Update the
316 function comment. Fill it in.
317 (print_frame): New variable func. Initialize it by
318 find_frame_funname. Print arguments only if FUNC is not NULL. Use
319 FUNC as the parameter of print_args_stub.
320 * stack.h (find_frame_funname): New parameter funcp. Remove the
321 function declaration comment.
322
323 2010-09-30 Jan Kratochvil <jan.kratochvil@redhat.com>
324
325 PR corefiles/12071.
326 * inferior.c (have_live_inferiors): New variables old_chain, inf and
327 tp. Iterate INFERIOR_LIST and call target_has_execution.
328
329 2010-09-29 Jan Kratochvil <jan.kratochvil@redhat.com>
330
331 Fix GDB crash on inferior calls with self-referencing classes.
332 * gnu-v3-abi.c (gnuv3_pass_by_reference): Do not call itself on static
333 member fields.
334
335 2010-09-29 Doug Evans <dje@google.com>
336
337 Workaround for gcc/45682.
338 * dwarf2read.c (partial_die_info): New fields fixup_called,
339 linkage_name.
340 (guess_partial_die_structure_name): Renamed from guess_structure_name.
341 Move definition next to use. Use linkage_name to determine if class
342 is in a namespace. All callers updated.
343 (fixup_partial_die): Return early if already called.
344 Set fixup_called when done.
345 (guess_full_die_structure_name): New function.
346 (determine_prefix): Call it for class/struct/union dies if c++ and
347 .debug_types section is present and parent is DW_TAG_compile_unit.
348
349 2010-09-28 Joel Brobecker <brobecker@adacore.com>
350
351 * configure.tgt (sparc-*-*): Set gdb_sim to ../sim/erc32/libsim.a.
352 (sparc-*-rtems*): Delete. Now redundant with sparc-*-*.
353
354 2010-09-28 Joel Brobecker <brobecker@adacore.com>
355
356 * NEWS: Announce Ravenscar Profile support.
357
358 2010-09-28 Joel Brobecker <brobecker@adacore.com>
359 Jerome Guitton <guitton@adacore.com>
360
361 * ravenscar-thread.c, ravenscar-thread.h, ravenscar-sparc-thread.c:
362 New files.
363 * configure.tgt (sparc-*-*): Add ravenscar-thread.o and
364 ravenscar-sparc-thread.o to gdb_target_obs.
365
366 2010-09-28 Joel Brobecker <brobecker@adacore.com>
367
368 * ada-tasks.c (iterate_over_live_ada_tasks): New function.
369 * ada-lang.h (iterate_over_live_ada_tasks): Declare.
370
371 2010-09-27 Pierre Muller <muller@ics.u-strasbg.fr>
372
373 * amd64-windows-tdep.c (amd64_skip_main_prologue): New function.
374 (amd64_windows_init_abi): Register amd64_skip_main_prologue as gdbarch
375 skip_main_prologue method.
376
377 2010-09-27 Tom Tromey <tromey@redhat.com>
378
379 * dwarf2read.c (dwarf2_read_index): Only allow version 3.
380 (write_psymbols): Add 'psyms_seen' and 'is_static' arguments.
381 Only emit a given psymbol once.
382 (struct signatured_type_index_data) <psyms_seen>: New field.
383 (write_one_signatured_type): Update.
384 (cleanup_htab): New function.
385 (write_psymtabs_to_index): Update. Create psyms_seen hash. Bump
386 version to 3.
387 (save_gdb_index_command): Update index documentation.
388
389 2010-09-27 Tom Tromey <tromey@redhat.com>
390
391 * bcache.c (expand_hash_table): Use hash_function, not hash.
392
393 2010-09-27 Tom Tromey <tromey@redhat.com>
394
395 * gdb_wchar.h: Change minimum libiconv to 0x108.
396
397 2010-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
398
399 Fix lost siginfo_t for inferior calls.
400 * infrun.c
401 (struct inferior_thread_state) <siginfo_gdbarch, siginfo_data>: New.
402 (save_inferior_thread_state): New variables regcache, gdbarch and
403 siginfo_data. Initialize SIGINFO_DATA if gdbarch_get_siginfo_type_p.
404 Move INF_STATE allocation later, pre-clear it. Initialize REGISTERS
405 using REGCACHE.
406 (restore_inferior_thread_state): New variables regcache and gdbarch.
407 Restore SIGINFO_DATA for matching GDBARCH. Restore REGISTERS using
408 REGCACHE. Free also SIGINFO_DATA.
409
410 2010-09-24 Tom Tromey <tromey@redhat.com>
411
412 * dwarf2read.c (dw2_expand_symtabs_matching): Add missing
413 MAYBE_SWAPs.
414 (dw2_map_symbol_names): Likewise.
415
416 2010-09-24 Sami Wagiaalla <swagiaal@redhat.com>
417
418 * valops.c (find_oload_champ_namespace_loop): replace incorrect
419 discard_cleanups do_cleanups.
420
421 2010-09-24 Pedro Alves <pedro@codesourcery.com>
422
423 PR gdb/11842
424
425 * amd64-linux-nat.c (compat_siginfo_from_siginfo)
426 (siginfo_from_compat_siginfo): Also copy si_pid and si_uid when
427 si_code is < 0. Check for si_code == SI_TIMER before checking for
428 si_code < 0.
429
430 2010-09-24 Pedro Alves <pedro@codesourcery.com>
431
432 * objfiles.h (ALL_OBJSECTIONS): Handle breaks in the inner loop.
433
434 2010-09-22 Joel Brobecker <brobecker@adacore.com>
435
436 * ada-tasks.c (read_atcb): Do not compute the task ptid when
437 debugging a core file.
438
439 2010-09-22 Jan Kratochvil <jan.kratochvil@redhat.com>
440
441 Code cleanup.
442 * objfiles.c (allocate_objfile) <objfile->name != NULL>: Remove.
443 (free_objfile) <objfile->name != NULL>: Remove the conditional around
444 xfree.
445 * objfiles.h (struct objfile) <name>: New comment it is never NULL.
446 * python/py-auto-load.c (auto_load_new_objfile) <!objfile->name>:
447 Remove.
448 * python/py-objfile.c (objfpy_get_filename) <obj->objfile->name>
449 Remove the conditional.
450 * python/py-progspace.c (pspy_get_filename) <objfile->name>: Likewise.
451
452 2010-09-22 Jan Kratochvil <jan.kratochvil@redhat.com>
453
454 * main.c: Include objfiles.h.
455 (captured_main): New variable objfile. Call
456 load_auto_scripts_for_objfile for ALL_OBJFILES.
457
458 2010-09-22 Jan Kratochvil <jan.kratochvil@redhat.com>
459
460 * dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: Add also
461 DW_TAG_constant.
462
463 2010-09-22 Joel Brobecker <brobecker@adacore.com>
464
465 * dwarf2read.c (scan_partial_symbols): Add handling of
466 DW_TAG_constant DIEs.
467 (add_partial_symbol, load_partial_dies, new_symbol): Likewise.
468
469 2010-09-22 Joel Brobecker <brobecker@adacore.com>
470
471 * configure.ac: Add support for --enable-gdbserver.
472 * configure: Regenerate.
473
474 2010-09-22 Sami Wagiaalla <swagiaal@redhat.com>
475
476 PR C++/12028
477 * valops.c (find_oload_champ_namespace_loop): removed incorrect
478 'old_cleanups' reassignment.
479
480 2010-09-16 Jan Kratochvil <jan.kratochvil@redhat.com>
481
482 * charset.c (wchar_iterate) <EILSEQ>: Return any possibly converted
483 characters.
484
485 2010-09-16 Phil Muldoon <pmuldoon@redhat.com>
486
487 PR mi/11407
488 * mi/mi-cmd-stack.c (list_args_or_locals): Catch exceptions from
489 read_var_value and common_val_print and print a warning.
490
491 2010-09-15 Jan Kratochvil <jan.kratochvil@redhat.com>
492
493 * MAINTAINERS (GLOBAL MAINTAINERS) <Jan Kratochvil>: Move the entry to
494 keep the list in alphabetical order. Use longer e-mail address.
495
496 2010-09-15 Tom Tromey <tromey@redhat.com>
497
498 * MAINTAINERS (GLOBAL MAINTAINERS): Add Jan Kratochvil.
499
500 2010-09-15 Tom Tromey <tromey@redhat.com>
501
502 * charset.c (iconv_open): New define.
503 (iconv): Likewise.
504 (iconv_close): Likewise.
505 (phony_iconv_open): Add "phony_" prefix.
506 (phony_iconv_close): Likewise.
507 (phony_iconv): Likewise.
508 * gdb_wchar.h: Check _LIBICONV_VERSION, __STDC_ISO_10646__.
509 Change how INTERMEDIATE_ENCODING is defined.
510
511 2010-09-15 Doug Evans <dje@google.com>
512
513 * dwarf2read.c (struct die_info): Fix comment.
514
515 2010-09-15 Alan Modra <amodra@gmail.com>
516
517 PR 4606
518 * gcore.c (gcore_create_callback): Clear SEC_HAS_CONTENTS rather
519 than setting SEC_NEVER_LOAD on sections that need not be copied.
520
521 2010-09-14 Tom Tromey <tromey@redhat.com>
522
523 * psympriv.h (add_psymbol_to_list, init_psymbol_list)
524 (start_psymtab_common, allocate_psymtab, discard_psymtab):
525 Declare.
526 * symfile.h (extend_psymbol_list): Remove.
527 (add_psymbol_to_list, init_psymbol_list, start_psymtab_common)
528 (allocate_psymtab, discard_psymtab): Move to psympriv.h.
529 * psymtab.c (extend_psymbol_list): Move earlier. Now static.
530
531 2010-09-14 Jan Kratochvil <jan.kratochvil@redhat.com>
532
533 * dwarf2read.c (dw2_map_ada_symtabs): Remove the internal_error.
534 Update the comment.
535
536 2010-09-14 Tom Tromey <tromey@redhat.com>
537
538 PR symtab/8399:
539 * dwarf2loc.c (locexpr_describe_location_piece): Don't call error
540 for unrecognized frame base expression.
541
542 2010-09-14 Tom Tromey <tromey@redhat.com>
543
544 PR exp/11803:
545 * value.c (value_static_field): Use value_of_variable.
546
547 2010-09-14 Pierre Muller <muller@ics.u-strasbg.fr>
548
549 * m32r-rom.c: Replace winsock.h with winsock2.h header.
550 * remote-m32r-sdi.c: Replace winsock.h by winsock2.h.
551
552 2010-09-13 Sami Wagiaalla <swagiaal@redhat.com>
553
554 PR symtab/11992:
555 * c-exp.y (classify_name): Check is_a_member_of_this before returning
556 UNKNOWN_CPP_NAME.
557
558 2010-09-13 Joel Brobecker <brobecker@adacore.com>
559
560 * NEWS: Add x86-lynxos to the list of platforms supported by
561 gdbserver.
562
563 2010-09-13 Joel Brobecker <brobecker@adacore.com>
564
565 * NEWS: Announce GDBserver support for version 5.x of ppc-lynxos.
566
567 2010-09-13 Tom Tromey <tromey@redhat.com>
568
569 * Makefile.in (HFILES_NO_SRCDIR): Add progspace.h.
570
571 2010-09-13 H.J. Lu <hongjiu.lu@intel.com>
572
573 * i386-tdep.c (i386_ymm_type): Set type name to
574 builtin_type_vec256i.
575
576 2010-09-12 Michael Snyder <msnyder@vmware.com>
577
578 * i386-tdep.c (i386_gdbarch_init): Fix typo in comments.
579
580 2010-09-12 H.J. Lu <hongjiu.lu@intel.com>
581
582 * i386-tdep.c (i386_gdbarch_init): Fix typo in comments.
583
584 2010-09-11 H.J. Lu <hongjiu.lu@intel.com>
585
586 * amd64-tdep.c (amd64_register_name): Removed.
587 (amd64_init_abi): Don't call set_gdbarch_register_name.
588
589 * i386-tdep.c (i386_ymmh_regnum_p): Make it static.
590
591 * i386-tdep.h (i386_ymmh_regnum_p): Removed.
592
593 2010-09-11 Jan Kratochvil <jan.kratochvil@redhat.com>
594 Paul Bolle <pebolle@tiscali.nl>
595
596 Redirect also uiout and stdtarg{,err} in execute_command_to_string.
597 * cli-logging.c (struct saved_output_files) <targerr>: New.
598 (set_logging_redirect, pop_output_files, handle_redirections):
599 Redirect also gdb_stdtargerr.
600 * defs.h (struct ui_out, make_cleanup_ui_out_redirect_pop): New
601 declarations.
602 * event-top.c (gdb_setup_readline, gdb_disable_readline): Redirect
603 also gdb_stdtargerr.
604 * top.c (execute_command_to_string): Move make_cleanup_ui_file_delete
605 to the top. Redirect also gdb_stdlog, gdb_stdtarg and gdb_stdtargerr.
606 Use ui_out_redirect, register make_cleanup_ui_out_redirect_pop.
607 * tui/tui-io.c (tui_setup_io): Redirect also gdb_stdtargerr.
608 * utils.c (do_ui_out_redirect_pop, make_cleanup_ui_out_redirect_pop):
609 New functions.
610
611 2010-09-10 Pierre Muller <muller@ics.u-strasbg.fr>
612
613 * hppa-tdep.c (unwind_command): Use host_address_to_string function
614 to display a host address.
615 * monitor.c (monitor_read_memory): Likewise.
616 * xtensa-tdep.c (xtensa_push_dummy_call): Likewise.
617
618 2010-09-10 Pierre Muller <muller@ics.u-strasbg.fr>
619
620 * coffread.c (struct coff_symbol): Change c_value type from `long' to
621 `CORE_ADDRESS' as it might contain target addresses.
622
623 2010-09-10 Pierre Muller <muller@ics.u-strasbg.fr>
624
625 * alpha-mdebug-tdep.c (find_proc_desc): Use SYMBOL_VALUE_BYTES macro
626 before cast to pointer to avoid warning.
627
628 2010-09-09 Kevin Buettner <kevinb@redhat.com>
629
630 * v850-tdep.c (v850_gdbarch_init): Change the v850's `char'
631 type to be signed.
632
633 2010-09-09 Ulrich Weigand <uweigand@de.ibm.com>
634
635 * dwarf2read.c (fixup_partial_die): Do not set dummy name for
636 anonymous class partial DIEs.
637
638 2010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
639
640 * dwarf2read.c (dwarf2_compute_name): Check that the first
641 argument is a pointer.
642
643 2010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
644
645 * dwarf2read.c (read_func_scope, read_structure_type)
646 (read_common_block): Check for a NULL return from new_symbol.
647
648 2010-09-08 Jan Kratochvil <jan.kratochvil@redhat.com>
649
650 * dwarf2read.c (dwarf2_read_index): Return on no SEC_HAS_CONTENTS.
651
652 2010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
653
654 * dwarf2read.c (read_structure_type): Move processing of
655 fields and member functions from here...
656 (process_structure_scope): ... to here.
657
658 2010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
659
660 * gnu-v3-abi.c (gnuv3_print_method_ptr): Do not use
661 the domain type.
662 (gnuv3_make_method_ptr): Likewise.
663
664 2010-09-08 Tom Tromey <tromey@redhat.com>
665
666 * breakpoint.c (create_breakpoint): Add missing _().
667
668 2010-09-08 Doug Evans <dje@google.com>
669
670 * dwarf2-frame.h (dwarf2_frame_build_info): Delete, unused.
671
672 2010-09-08 Tom Tromey <tromey@redhat.com>
673
674 Revert:
675 2010-09-01 Tom Tromey <tromey@redhat.com>
676 * dwarf2read.c, gdbtypes.c, psymtab.c, symfile.h, symtab.c,
677 symtab.h: Revert earlier change.
678
679 2010-09-09 Sami Wagiaalla <swagiaal@redhat.com>
680
681 * psymtab.c (add_psymbol_to_bcache): Initialize
682 obj_section.
683 memset psymbol.ginfo.value to 0.
684
685 2010-09-06 Pedro Alves <pedro@codesourcery.com>
686
687 * infrun.c (resume): Extend comment on ignoring single-step
688 requests on vfork parents waiting for a vfork-done.
689
690 2010-09-06 Jan Kratochvil <jan.kratochvil@redhat.com>
691 Pedro Alves <pedro@codesourcery.com>
692
693 * corelow.c (core_open): Use target_signal_from_host if CORE_GDBARCH
694 is NULL.
695 * fork-child.c (startup_inferior) <resume_signal>: Use enum
696 target_signal type.
697 * linux-nat.c (linux_nat_resume): Use target_signal_to_host before
698 calling strsignal. Use enum target_signal type for saved_signo.
699 (linux_handle_extended_wait) <signo>: Use enum target_signal type.
700 (linux_nat_wait_1): Use enum target_signal type for signo. Use
701 target_signal_to_host before calling strsignal.
702 * remote-m32r-sdi.c (m32r_wait, m32r_detach): Replace 0 by
703 TARGET_SIGNAL_0.
704
705 2010-09-06 Pedro Alves <pedro@codesourcery.com>
706 Jan Kratochvil <jan.kratochvil@redhat.com>
707
708 * common/signals.c (ANY): Remove.
709 (SET): No longer use ANY.
710
711 2010-09-06 Yao Qi <yao@codesourcery.com>
712
713 * infrunc(resume): When inferior is waiting_for_vfork_done,
714 clear step and don't use displaced stepping.
715
716 2010-09-04 Daniel Jacobowitz <dan@codesourcery.com>
717
718 * breakpoint.c (can_use_hardware_watchpoint): Handle the first
719 value specially.
720
721 2010-09-04 Jan Kratochvil <jan.kratochvil@redhat.com>
722
723 Code cleanup - split print_stop_reason.
724 * infrun.c (enum inferior_stop_reason): Remove.
725 (print_stop_reason): Remove by splitting into ...
726 (print_exited_reason, print_signal_exited_reason)
727 (print_no_history_reason, print_signal_received_reason)
728 (print_end_stepping_range_reason): ... these new functions. Update
729 the preceding comment.
730 (handle_inferior_event): Change the calls to print_exited_reason,
731 print_signal_exited_reason, print_no_history_reason,
732 print_signal_received_reason, print_end_stepping_range_reason.
733 (handle_step_into_function, handle_step_into_function_backward):
734 Change the calls to print_end_stepping_range_reason.
735
736 2010-09-03 Jan Kratochvil <jan.kratochvil@redhat.com>
737
738 * breakpoint.c (save_breakpoints): Use RETURN_MASK_ALL.
739 * cli-out.c: Include vec.h.
740 (cli_field_fmt, cli_spaces, cli_text, cli_message, cli_flush): New
741 variable stream, initialize it, use it.
742 (cli_redirect): New function comment. Replace the stream and
743 original_stream fields by the new streams field. Remove the
744 original_stream != NULL conditional, assert error on NULL instead.
745 (out_field_fmt, field_separator): New variable stream, initialize it, use it.
746 (cli_out_data_ctor): Assert non-NULL stream. Replace the stream and
747 original_stream fields by the new streams field.
748 (cli_out_set_stream): Replace the stream field by the new streams
749 field.
750 * cli-out.h: Include vec.h.
751 (ui_filep): New typedef, call DEF_VEC_P for it.
752 (struct cli_ui_out_data): Replace the stream and original_stream
753 fields by the new streams field.
754 * cli/cli-logging.c (set_logging_redirect): Call ui_out_redirect with
755 NULL first. Extend the comment.
756 (handle_redirections): Call ui_out_redirect with output.
757 * python/py-breakpoint.c (bppy_get_commands): Move ui_out_redirect
758 calls outside of the TRY_CATCH block.
759
760 2010-09-03 Joel Brobecker <brobecker@adacore.com>
761
762 GDB 7.2 released.
763
764 2010-09-02 Joel Brobecker <brobecker@adacore.com>
765
766 Back out the following change:
767 | 2010-06-29 Hui Zhu <teawater@gmail.com>
768 | * record.c (set_record_pic_cmdlist,
769 | show_record_pic_cmdlist): New variables.
770 | (set_record_pic_command,
771 | show_record_pic_command): New functions.
772 | (record_pic_function, record_pic_line, record_pic_enum,
773 | set_record_pic_type, record_pic_hide_nofunction,
774 | record_pic_hide_nosource, record_pic_hide_same): New variables.
775 | (record_pic_fputs): New function.
776 | (function_list, node_list, edge_list): New struct.
777 | (function_list, node_list, edge_list): New variables.
778 | (record_pic_cleanups, record_pic_node,
779 | record_pic_edge, cmd_record_pic): New functions.
780 | (_initialize_record): Add new commands for record pic.
781
782 2010-09-02 Daniel Jacobowitz <dan@codesourcery.com>
783
784 * config.in, configure: Regenerated.
785 * configure.ac: Check for waitpid.
786 * ser-pipe.c (pipe_close): Wait for the program to exit.
787
788 2010-09-02 Jan Kratochvil <jan.kratochvil@redhat.com>
789
790 * cli/cli-logging.c: Include gdb_assert.h.
791 (set_logging_overwrite): New function.
792 (logging_redirect): New comment.
793 (logging_no_redirect_file, set_logging_redirect)
794 (pop_output_files) <logging_no_redirect_file>: New.
795 (handle_redirections) <!logging_redirect>: New variable
796 no_redirect_file. Remove file autoclose for tee_file_new. No longer
797 discard cleanup for the close of former OUTPUT. Set
798 LOGGING_NO_REDIRECT_FILE.
799 (handle_redirections) <logging_redirect>: gdb_assert
800 LOGGING_NO_REDIRECT_FILE.
801 (show_logging_command) <logging_redirect handling>: Adjust messages
802 for SAVED_FILENAME not NULL.
803 (_initialize_cli_logging): Install set_logging_overwrite and
804 set_logging_redirect.
805
806 2010-09-02 Jan Kratochvil <jan.kratochvil@redhat.com>
807
808 * iq2000-tdep.c (iq2000_scan_prologue): Initialize SAL.END.
809
810 2010-09-02 Jan Kratochvil <jan.kratochvil@redhat.com>
811
812 * Makefile.in (GDB_WARN_CFLAGS_NO_FORMAT): Convert it to the no- form.
813 (monitor.o): Replace $(INTERNAL_WARN_CFLAGS) by $(INTERNAL_CFLAGS) and
814 add $(GDB_WARN_CFLAGS_NO_FORMAT).
815 (printcmd.o): Replace $(INTERNAL_CFLAGS_BASE) by $(INTERNAL_CFLAGS).
816
817 2010-09-02 Yao Qi <yao@codesourcery.com>
818
819 * linux-nat.c (status_to_str): Use WTERMSIG to extract the signal
820 number from a WIFSIGNALED status.
821
822 2010-09-01 Tom Tromey <tromey@redhat.com>
823
824 * symtab.h (lookup_type_symbol): Declare.
825 * symtab.c (lookup_symbol_in_language_full): Rename from
826 lookup_symbol_in_language. Add 'for_type' argument.
827 (lookup_symbol_in_language): New function.
828 (lookup_type_symbol): Likewise.
829 (lookup_symbol_aux): Add 'for_type' argument.
830 (match_symbol_aux): New function.
831 (lookup_symbol_aux_symtabs): Use expand_one_symtab_matching.
832 (match_transparent_type): New function.
833 (basic_lookup_transparent_type): Use expand_one_symtab_matching.
834 * symfile.h (struct quick_symbol_functions)
835 <pre_expand_symtabs_matching>: Remove.
836 <expand_one_symtab_matching>: New field.
837 * psymtab.c (expand_one_symtab_matching_psymtabs): New function.
838 (pre_expand_symtabs_matching_psymtabs): Remove.
839 (psym_functions): Update.
840 * gdbtypes.c (lookup_typename): Use lookup_type_symbol.
841 * dwarf2read.c (dw2_lookup_symbol): Update comment.
842 (dw2_pre_expand_symtabs_matching): Remove.
843 (dw2_expand_one_symtab_matching): New function.
844 (dwarf2_gdb_index_functions): Update.
845
846 2010-09-01 Joel Brobecker <brobecker@adacore.com>
847
848 * NEWS: Add entry announcing GDBserver support on powerpc-lynxos.
849
850 2010-09-01 Marc Khouzam <marc.khouzam@ericsson.com>
851
852 * mi/mi-main.c (mi_cmd_list_target_features): Add `reverse'
853 as a feature reported by -list-target-features.
854
855 2010-09-01 Joel Brobecker <brobecker@adacore.com>
856
857 * features/Makefile (WHICH): Add rs6000/powerpc-32.
858 (powerpc-32.o, powerpc-32.c): New rules.
859 (clean): Also remove powerpc-32.c.
860 * regformats/rs6000/powerpc-32.dat: Generate.
861
862 2010-08-31 Sami Wagiaalla <swagiaal@redhat.com>
863
864 * symfile.c (reread_symbols): Use psymbol_bcache_free, and
865 psymbol_bcache_init.
866 * psymtab.h (psymbol_bcache_init): New function prototype.
867 (psymbol_bcache_free): New function prototype.
868 (psymbol_bcache_get_bcache): New function prototype.
869 * psymtab.c (psymbol_bcache_init): New function.
870 (psymbol_bcache_free): New function.
871 (psymbol_bcache_full): New function.
872 (psymbol_bcache_get_bcache): New function.
873 (add_psymbol_to_bcache): use psymbol_bcache_full.
874 * objfiles.h (psymbol_cache): Change type of psymbol_cache to
875 psymbol_bcache.
876 * symmisc.c (print_symbol_bcache_statistics): Updated.
877 (print_objfile_statistics): Updated.
878 * objfiles.c (allocate_objfile): Use psymbol_bcache_init to initialize
879 psymbol_cache.
880 (free_objfile): Use psymbol_bcache_free.
881
882 2010-08-31 Tom Tromey <tromey@redhat.com>
883
884 PR c++/11961:
885 * dwarf2read.c (new_symbol_full) <DW_TAG_template_type_param>:
886 Don't set TYPE_NAME on the type.
887
888 2010-08-31 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
889
890 * infrun.c (set_exec_direction_func): Error out if target does not
891 support reverse execution.
892
893 2010-08-31 Jan Kratochvil <jan.kratochvil@redhat.com>
894
895 Make linux_get_siginfo_type `type *' unique.
896 * linux-tdep.c (linux_gdbarch_data_handle, struct linux_gdbarch_data)
897 (init_linux_gdbarch_data, get_linux_gdbarch_data): New.
898 (linux_get_siginfo_type): New variable linux_gdbarch_data. Initialize
899 it. Use linux_gdbarch_data->siginfo_type as a persistent storage.
900 (_initialize_linux_tdep): New.
901
902 2010-08-31 Jan Kratochvil <jan.kratochvil@redhat.com>
903
904 Code cleanup.
905 * defs.h (find_memory_region_ftype): New typedef.
906 (exec_set_find_memory_regions): Use it.
907 * exec.c (exec_set_find_memory_regions): Use find_memory_region_ftype.
908 * fbsd-nat.c (fbsd_find_memory_regions): Likewise.
909 * gcore.c (objfile_find_memory_regions): Likewise.
910 * gnu-nat.c (gnu_find_memory_regions): Likewise.
911 * linux-nat.c (linux_nat_find_memory_regions): Likewise.
912 * procfs.c (iterate_over_mappings_cb_ftype): Remove.
913 (iterate_over_mappings): Rename iterate_over_mappings_cb_ftype to
914 find_memory_region_ftype.
915 (insert_dbx_link_bpt_in_region): Likewise.
916 (iterate_over_mappings): Likewise. Drop the comment part about the
917 function prototype.
918 (find_memory_regions_callback): Use find_memory_region_ftype.
919 (proc_find_memory_regions): Likewise.
920 (info_mappings_callback): Rename iterate_over_mappings_cb_ftype to
921 find_memory_region_ftype.
922 * target.c (dummy_find_memory_regions): Use find_memory_region_ftype.
923 * target.h (struct target_ops) <to_find_memory_regions>: Likewise.
924
925 2010-08-31 Sami Wagiaalla <swagiaal@redhat.com>
926
927 * psymtab.c (add_psymbol_to_bcache): Remove 'static' from
928 'static partial_symbol psymbol'.
929 (psymbol_hash): New function.
930 (psymbol_compare): New function.
931 * bcache.c (hash_continue): New.
932 (hash): Use hash_continue.
933 * bcache.c: Add hash_function and compare_function
934 pointers to bcache struct.
935 (bcache_full): Use bcache->hash_function, and
936 bcache->compare_function.
937 (bcache_compare): New function.
938 (bcache_xmalloc): Take hash_function and
939 compare_function arguments and initialize the
940 bcach's pointers.
941 Updated comment.
942 * objfiles.c (allocate_objfile): Updated.
943 * symfile.c (reread_symbols): Updated.
944 * python/py-type.c (typy_richcompare): Updated.
945
946 2010-08-30 Andre Poenitz <andre.poenitz@nokia.com>
947 Tom Tromey <tromey@redhat.com>
948
949 PR python/11792:
950 * python/py-value.c (valpy_get_dynamic_type): New function.
951 (value_object_getset): Add "dynamic_type".
952 (valpy_get_type): Fail on error.
953
954 2010-08-30 Yao Qi <yao@codesourcery.com>
955
956 * arm-linux-tdep.c (arm_linux_sigreturn_return_addr): New.
957 (arm_linux_syscall_next_pc): New.
958 (arm_linux_copy_svc): Use arm_linux_sigreturn_return_addr instead.
959 (arm_linux_init_abi): Initialize syscall_next_pc.
960 * arm-tdep.c (thumb_get_next_pc_raw): Get next pc of SWI in Thumb mode.
961 (arm_get_next_pc_raw): Get next pc of SWI in ARM mode.
962 * arm-tdep.h (struct gdbarch_tdep): Add a function pointer syscall_next_pc.
963 Declare arm_frame_is_thumb.
964
965 2010-08-30 Jan Kratochvil <jan.kratochvil@redhat.com>
966
967 Code cleanup.
968 * breakpoint.c (bpstat_alloc): Remove unused prototype.
969 (bpstat_alloc): Change parameters cbs to bs_link_pointer. Adjust the
970 code.
971 (bpstat_stop_status): Change root_bs into bs_head and bs_link. Adjust
972 calls of bpstat_alloc. Remove explicit bs chain termination.
973
974 2010-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
975
976 Code cleanup.
977 * linux-nat.c (pull_pid_from_list): Rename status to statusp.
978 (my_waitpid): Likewise.
979
980 2010-08-27 Doug Evans <dje@google.com>
981
982 * dwarf2read.c (dw2_require_line_header): Read from .debug_types
983 as appropriate.
984
985 2010-08-27 Tom Tromey <tromey@redhat.com>
986
987 * dwarf2read.c (dwarf2_attach_fields_to_type): Don't set
988 TYPE_FIELD_IGNORE_BITS.
989
990 2010-08-27 Doug Evans <dje@google.com>
991
992 * dwarf2read.c (dwarf2_per_objfile_free): Reorganize buffers to match
993 the order they're defined in. munmap .debug_types buffer.
994
995 2010-08-26 Doug Evans <dje@google.com>
996
997 * dwarf2read.c (dw2_require_full_path): Rename parameter cu to per_cu.
998 (dw2_forget_cached_source_info): Rename local cu to per_cu.
999 (dw2_lookup_symtab, dw2_do_expand_symtabs_matching): Ditto.
1000 (dw2_print_stats, dw2_expand_all_symtabs): Ditto.
1001 (dw2_expand_symtabs_with_filename, dw2_find_symbol_file): Ditto.
1002 (dw2_find_symbol_file, dw2_expand_symtabs_matching): Ditto.
1003 (dw2_map_symbol_filenames, dwarf2_initialize_objfile): Ditto.
1004 (dwarf2_free_objfile, write_one_signatured_type): Ditto.
1005 (write_psymtabs_to_index): Ditto.
1006
1007 2010-08-26 Pedro Alves <pedro@codesourcery.com>
1008
1009 * NEWS: Mention libthread_db debugging with core files.
1010
1011 2010-08-26 Doug Evans <dje@google.com>
1012
1013 * dwarf2read.c (dwarf2_build_include_psymtabs): Remove unnecessary
1014 forward decl. Pass pst->dirname to dwarf_decode_lines.
1015 (psymtab_include_file_name): New function.
1016 (dwarf_decode_lines): Call it. Update comments.
1017
1018 2010-08-25 Pedro Alves <pedro@codesourcery.com>
1019
1020 * dwarf2read.c (inherit_abstract_dies): Handle origin die's
1021 compilation unit being different from target die's.
1022
1023 2010-08-24 Doug Evans <dje@google.com>
1024
1025 PR symtab/11942
1026 * dwarf2read.c (dwarf2_per_objfile): New members debug_info_type_hash,
1027 debug_types_type_hash.
1028 (dwarf2_cu, dwarf2_per_cu_data): Delete member type_hash.
1029 All uses updated.
1030 (lookup_die_type): Renamed from tag_type_to_tag. First look in
1031 appropriate type_hash table. All callers updated.
1032 (allocate_signatured_type_table): Renamed from
1033 allocate_signatured_type_hash_table. All callers updated.
1034 (create_signatured_type_table_from_index): Renamed from
1035 create_signatured_type_hash_from_index. All callers updated.
1036 (read_die_type): Add comment. Move actual reading to ...
1037 (read_die_type_1): ... here. New function.
1038 (follow_die_ref_or_sig): Tweak comment.
1039 (set_die_type): Rewrite to use appropriate choice of
1040 debug_info_type_hash or debug_types_type_hash.
1041 (get_die_type_at_offset): New function.
1042 (get_die_type): Call it.
1043
1044 2010-08-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1045
1046 * python/py-type.c (typy_richcompare): Initialize worklist.
1047
1048 2010-08-24 Daniel Jacobowitz <dan@codesourcery.com>
1049 Kazu Hirata <kazu@codesourcery.com>
1050 Jonathan Larmour <jifl@eCosCentric.com>
1051
1052 * arm-tdep.c: Include features/arm-with-m.c.
1053 (arm_psr_thumb_bit): New. Update all uses of CPSR_T to
1054 call this function.
1055 (arm_pc_is_thumb): Add a gdbarch argument. Update all callers.
1056 Check is_m after force-mode.
1057 (arm_gdbarch_init): Check the binary before the target description.
1058 Add check for M profile attribute. If we have an M-profile device,
1059 but no target register description, use arm-with-m. Recognize the
1060 new org.gnu.gdb.arm.m-profile feature and its xpsr register.
1061 (_initialize_arm_tdep): Call initialize_tdesc_arm_with_m.
1062 * arm-tdep.h (XPSR_T): Define.
1063 (struct gdbarch_tdep): Add is_m member.
1064 * features/arm-m-profile.xml, features/arm-with-m.c,
1065 features/arm-with-m.xml: New files.
1066
1067 2010-08-23 Doug Evans <dje@google.com>
1068
1069 * dwarf2read.c (read_structure_type): Add comment.
1070 (read_enumeration_type): Add comment.
1071 (process_enumeration_scope): Move definition of some locals
1072 closer to their use.
1073 (read_namespace_type): Add comment.
1074 (set_die_type): Fix typo in comment.
1075
1076 2010-08-23 Tom Tromey <tromey@redhat.com>
1077
1078 PR python/11145:
1079 * python/py-value.c: Include expression.h.
1080 (valpy_do_cast): New function.
1081 (valpy_cast): Use it.
1082 (valpy_dynamic_cast): New function.
1083 (valpy_reinterpret_cast): Likewise.
1084 (value_object_methods): Add dynamic_cast, reinterpret_cast.
1085
1086 2010-08-23 Tom Tromey <tromey@redhat.com>
1087
1088 PR python/11391:
1089 * python/py-value.c (valpy_nonzero): Don't throw error for other
1090 Value types.
1091
1092 2010-08-23 Tom Tromey <tromey@redhat.com>
1093
1094 PR python/10676:
1095 * python/py-type.c: Include bcache.h, vec.h.
1096 (struct type_equality_entry): New.
1097 (compare_strings): New function.
1098 (check_types_equal): Likewise.
1099 (check_types_worklist): Likewise.
1100 (typy_richcompare): Likewise.
1101 (type_object_type): Set tp_richcompare field.
1102
1103 2010-08-23 Tom Tromey <tromey@redhat.com>
1104
1105 PR python/10953:
1106 * python/py-type.c (typy_fields): Call check_typedef.
1107 (typy_template_argument): Add TRY_CATCH.
1108
1109 2010-08-23 Tom Tromey <tromey@redhat.com>
1110
1111 PR python/11915:
1112 * python/py-type.c (typy_array): New function.
1113 (type_object_methods): Add "array".
1114
1115 2010-08-20 Pedro Alves <pedro@codesourcery.com>
1116
1117 * python/python.c: Include "serial.h".
1118 (gdbpy_event_fds): Change type to `struct serial *' a array from
1119 int array.
1120 (gdbpy_run_events): Change parameters. Use serial_readchar in
1121 place of read.
1122 (gdbpy_post_event): Use serial_write in place of write.
1123 (gdbpy_initialize_events): Use serial_pipe instead of pipe, and
1124 serial_async in place of add_file_handler.
1125
1126 2010-08-20 Pedro Alves <pedro@codesourcery.com>
1127
1128 * serial.h (gdb_pipe, serial_pipe): Declare.
1129 * serial.c (serial_interface_lookup): Take a const char pointer.
1130 (serial_fdopen): Rename to ...
1131 (serial_fdopen_ops): ... this. Add an OPS parameter and use it.
1132 Call the OPS' fdopen function if there is one.
1133 (serial_fdopen): Rewrite as wrapper to serial_fdopen_ops.
1134 (serial_pipe): New.
1135 (struct serial_ops) <fdopen>: New field.
1136
1137 * ser-mingw.c (free_pipe_state):
1138 (free_pipe_state): Close output on non-pex pipes.
1139 (pipe_windows_fdopen): New.
1140 (gdb_pipe): New.
1141 (_initialize_ser_windows): Register pipe_windows_fdopen.
1142 * ser-go32.c (gdb_pipe): New.
1143 * ser-pipe.c (pipe_close): Close file descriptor even if there's
1144 no state pointer.
1145 (pipe_ops): Delete.
1146 (gdb_pipe): New.
1147
1148 2010-08-20 Keith Seitz <keiths@redhat.com>
1149
1150 PR symtab/11465:
1151 * dwarf2read.c (struct delayed_method_info): New struct.
1152 (struct dwarf2_cu): Add vector method_list.
1153 (scan_partial_symbols): Count methods for union, class, structure,
1154 and interface types.
1155 (add_to_method_list): New function.
1156 (free_delayed_list): New function.
1157 (compute_delayed_physnames): New function.
1158 (process_full_comp_unit): Make a cleanup for the CU's delayed
1159 physname list, compute the delayed physnames, and free the
1160 the list.
1161 (dwarf2_add_member_fn): For C++ and Java, delay the computation
1162 of the physname until after the CU is read.
1163
1164 * dwarf2read.c (read_structure_type): Check if the current
1165 DIE's type was already completed after dwarf2_full_name
1166 was called.
1167
1168 2010-08-19 Stan Shebs <stan@codesourcery.com>
1169
1170 * NEWS: Mention some additional changes.
1171
1172 2010-08-19 Tom Tromey <tromey@redhat.com>
1173
1174 * Makefile.in (install-python): Add DESTDIR.
1175
1176 2010-08-19 Doug Evans <dje@google.com>
1177
1178 PR exp/11926
1179 * parser-defs.h (parse_float, parse_c_float): Declare.
1180 * parse.c (parse_float, parse_c_float): New function.
1181 * c-exp.y (parse_number): Call parse_c_float.
1182 * objc-exp.y (parse_number): Ditto.
1183 * p-exp.y (parse_number): Ditto. Use ANSI/ISO-style definition.
1184 * jv-exp.y (parse_number): Call parse_float, fix suffix handling.
1185
1186 2010-08-19 Joel Brobecker <brobecker@adacore.com>
1187
1188 * psymtab.c (map_symbol_filenames_psymtab): Call FUN with
1189 the arguments in the correct order.
1190 * symtab.c (maybe_add_partial_symtab_filename): Declare
1191 the arguments in the correct order.
1192
1193 2010-08-19 Jan Kratochvil <jan.kratochvil@redhat.com>
1194
1195 * varobj.c (varobj_create): Replace variable old_fi with old_id,
1196 initialize it by null_frame_id, wrap its usage by get_frame_id,
1197 frame_id_p and frame_find_by_id.
1198
1199 2010-08-18 Tom Tromey <tromey@redhat.com>
1200
1201 PR python/11900:
1202 * configure: Rebuild.
1203 * configure.ac: Add install-python to CONFIG_INSTALL.
1204 * Makefile.in (install-python): New.
1205
1206 2010-08-18 Doug Evans <dje@google.com>
1207
1208 * gdb_assert.h (gdb_assert_not_reached): New macro.
1209 (gdb_assert_fail): Fix typo in comment.
1210 * avr-tdep.c (avr_return_value): Use gdb_assert_not_reached instead of
1211 gdb_assert (0).
1212 * darwin-nat.c (darwin_check_new_threads): Ditto.
1213 * dwarf2read.c (dwarf2_get_section_info): Ditto.
1214 (munmap_section_buffer): Ditto.
1215 * m32c-tdep.c (make_types): Ditto.
1216 (m32c_decode_srcdest4, m32c_decode_sd23, m32c_frame_base): Ditto.
1217 * macroexp.c (get_character_constant): Ditto.
1218 (get_string_literal): Ditto.
1219 * mep-tdep.c (mep_pseudo_cr_size): Ditto.
1220 (mep_pseudo_cr_index, mep_register_type): Ditto.
1221 (mep_pseudo_register_read, mep_pseudo_register_write): Ditto.
1222 (mep_get_insn, mep_analyze_prologue): Ditto.
1223 * objfiles.c (qsort_cmp): Ditto.
1224 * prologue-value.c (pv_is_identical): Ditto.
1225 * record.c (record_get_loc): Ditto.
1226 * value.c (value_static_field): Ditto.
1227 * xtensa-tdep.c (call0_track_op): Ditto.
1228
1229 2010-08-18 Tom Tromey <tromey@redhat.com>
1230
1231 PR symtab/11919:
1232 * gdbtypes.c (lookup_struct_elt_type): Clean up error emission.
1233 * parse.c (parse_field_expression): Use RETURN_MASK_ERROR. Move
1234 name-copying lower. Document exception behavior.
1235 * completer.c (expression_completer): Catch exceptions from
1236 parse_field_expression.
1237
1238 2010-08-18 Pedro Alves <pedro@codesourcery.com>
1239
1240 PR corefile/8210
1241
1242 * linux-thread-db.c (add_thread_db_info): Skip glibc/BZ5983
1243 workaround on core files.
1244 (try_thread_db_load_1): Don't try enabling thread event reporting
1245 on core files.
1246 (thread_db_load): Allow thread_db on core files.
1247 (attach_thread): Don't check thread signals on core files, nor try
1248 really attaching to the thread, nor enabling thread event event
1249 reporting.
1250 (thread_db_detach): Don't try disabing thread event reporting or
1251 removing thread event breakpoints when debugging a core file.
1252 (find_new_threads_callback): Don't try enabling thread event
1253 reporting on core files.
1254 (thread_db_find_new_threads_2): Don't look for a stopped lwp when
1255 debugging a core file.
1256 (thread_db_find_new_threads): Don't update thread
1257 cores (processors) when debugging a core (dump).
1258
1259 2010-08-18 Pedro Alves <pedro@codesourcery.com>
1260
1261 PR corefile/8210
1262
1263 * corelow.c (add_to_thread_list): Don't use
1264 gdbarch_core_reg_section_encodes_pid. Use bfd_core_file_pid.
1265 (get_core_register_section): Don't use
1266 gdbarch_core_reg_section_encodes_pid.
1267
1268 * gdbarch.sh (core_reg_section_encodes_pid): Delete.
1269 * gdbarch.h, gdbarch.c: Regenerate.
1270 * amd64-sol2-tdep.c (amd64_sol2_init_abi): Don't set
1271 gdbarch_core_reg_section_encodes_pid.
1272 * i386-sol2-tdep.c (i386_sol2_init_abi): Ditto.
1273 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Ditto.
1274 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Ditto.
1275
1276 2010-08-18 Yao Qi <yao@codesourcery.com>
1277
1278 * MAINTAINERS : Add myself under Write After Approval.
1279
1280 2010-08-17 Tom Tromey <tromey@redhat.com>
1281
1282 * NEWS: Mention template parameter support.
1283
1284 2010-08-17 Pedro Alves <pedro@codesourcery.com>
1285
1286 PR breakpoints/11371
1287
1288 * breakpoint.c (decref_bp_location): Assert the reference count is
1289 sane.
1290
1291 2010-08-17 Pedro Alves <pedro@codesourcery.com>
1292
1293 PR breakpoints/11371
1294
1295 * breakpoint.c (breakpoint_init_inferior): Decrement the
1296 location's reference count instead of deleting right away.
1297 (bpstat_free): Decrement the location's reference count. Make
1298 static.
1299 (bpstat_copy): Increment the location's reference count.
1300 (bpstat_find_breakpoint): Adjust.
1301 (bpstat_num): Adjust.
1302 (print_it_typical): Adjust. Use the breakpoint pointer in the
1303 bpstat instead of the location's owner.
1304 (bpstat_alloc): Remove const qualifier from the 'bl' parameter.
1305 Adjust to record the location's owner in the bpstat.
1306 (watchpoint_check): Use the breakpoint pointer in the bpstat
1307 instead of the location's owner.
1308 (bpstat_check_breakpoint_conditions): Don't handle
1309 bp_watchpoint_scope here. Use the breakpoint pointer in the
1310 bpstat instead of the location's owner.
1311 (bpstat_stop_status): Defer inferior function calls to after
1312 building the bpstat list. Handle bp_watchpoint_scope here. Use
1313 the breakpoint pointer in the bpstat instead of the location's
1314 owner.
1315 (bpstat_what): Use the breakpoint pointer in the bpstat instead of
1316 the location's owner.
1317 (free_bp_location): Don't walk bpstats clearing locations.
1318 (incref_bp_location): New.
1319 (decref_bp_location): New.
1320 (breakpoint_auto_delete): Use the breakpoint pointer in the bpstat
1321 instead of the location's owner.
1322 (update_global_location_list): Clear the location's owner, and
1323 decrement the location's reference count instead of deleting it
1324 right away.
1325 (breakpoint_retire_moribund): Decrement the location's reference
1326 count instead of deleting it right away.
1327 (bpstat_remove_bp_location): Delete.
1328 (bpstat_remove_breakpoint): New.
1329 (bpstat_remove_bp_location_callback): Delete.
1330 (bpstat_remove_breakpoint_callback): New.
1331 (delete_breakpoint): Iterate over all threads' stop_bpstat's
1332 clearing references to the breakpoint that is being deleted.
1333
1334 * breakpoint.h (struct bp_location) <refc>: New field.
1335 <owner>: Update comments.
1336 (bpstat_free): Delete declaration.
1337 (struct bpstats): Change the type of the breakpoint_at field to
1338 struct breakpoint point, from struct bp_location pointer. Add new
1339 field bp_location_at.
1340
1341 2010-08-16 Tom Tromey <tromey@redhat.com>
1342
1343 * NEWS: Fix typo.
1344
1345 2010-08-16 Tom Tromey <tromey@redhat.com>
1346
1347 * NEWS: Mention watch -location.
1348
1349 2010-08-16 Jan Kratochvil <jan.kratochvil@redhat.com>
1350
1351 * breakpoint.c (update_watchpoint): Add source empty line. Prefer
1352 EXP_STRING_REPARSE to EXP_STRING.
1353 (watch_command_1): Set also EXP_STRING_REPARSE.
1354 (delete_breakpoint): Free also EXP_STRING_REPARSE.
1355 * breakpoint.h (struct breakpoint): New field exp_string_reparse.
1356 Update comment for exp_string.
1357
1358 2010-08-16 Tom Tromey <tromey@redhat.com>
1359
1360 * value.c (release_value): Clear 'next' pointer.
1361 * breakpoint.c (watch_command_1): Add 'just_location' argument.
1362 (watch_command_wrapper): Update.
1363 (watch_maybe_just_location): New function.
1364 (watch_command): Update.
1365 (rwatch_command_wrapper): Update.
1366 (rwatch_command): Update.
1367 (awatch_command_wrapper): Update.
1368 (awatch_command): Update.
1369 (check_for_argument): New function.
1370 (_initialize_breakpoint): Update help text.
1371
1372 2010-08-14 Ulrich Weigand <uweigand@de.ibm.com>
1373
1374 * arm-tdep.c (arm_push_dummy_call): Handle pointers to
1375 typedef'ed function types correctly.
1376
1377 2010-08-13 Tom Tromey <tromey@redhat.com>
1378
1379 * python/python-internal.h (gdbpy_get_hook_function): Don't
1380 declare.
1381
1382 2010-08-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1383
1384 * cli/cli-logging.c (logging_overwrite, logging_redirect): Make them
1385 static.
1386
1387 2010-08-13 Ken Werner <ken.werner@de.ibm.com>
1388
1389 * python/python.c (gdbpy_solib_name): Remove the const qualifier of
1390 the format strings to be compatible with Python 2.4.
1391
1392 2010-08-13 Vladimir Prus <vladimir@codesourcery.com>
1393
1394 Easier and more stubborn MI memory read commands.
1395
1396 * mi/mi-cmds.c (mi_cmds): Register data-read-memory-bytes
1397 and data-write-memory-bytes.
1398 * mi/mi-cmds.h (mi_cmd_data_read_memory_bytes)
1399 (mi_cmd_data_write_memory_bytes): New.
1400 * mi/mi-main.c (mi_cmd_data_read_memory): Use regular target_read.
1401 (mi_cmd_data_read_memory_bytes, mi_cmd_data_write_memory_bytes):
1402 New.
1403 (mi_cmd_list_features): Add "data-read-memory-bytes" feature.
1404 * target.c (target_read_until_error): Remove.
1405 (read_whatever_is_readable, free_memory_read_result_vector)
1406 (read_memory_robust): New.
1407 * target.h (target_read_until_error): Remove.
1408 (struct memory_read_result, free_memory_read_result_vector)
1409 (read_memory_robust): New.
1410
1411 2010-08-13 Hui Zhu <teawater@gmail.com>
1412
1413 * dwarf2read.c (load_partial_comp_unit): Initialize free_cu_cleanup.
1414 (read_comp_unit): Initialize back_to.
1415
1416 2010-08-12 Daniel Jacobowitz <dan@codesourcery.com>
1417 Pedro Alves <pedro@codesourcery.com>
1418
1419 * dwarf2read.c: Include "c-lang.h" and "valprint.h".
1420 (struct dwarf2_per_objfile) <reading_partial_symbols>: New field.
1421 (struct partial_die_info) <has_template_arguments>: New field.
1422 <num_attrs>: Change type to unsigned char.
1423 <building_fullname>: New field.
1424 (dwarf2_build_psymtabs_hard): Set reading_partial_symbols. Only
1425 allocate a CU if we don't have one already. Add a cleanup for the
1426 CU.
1427 (partial_die_full_name): Handle template arguments not in
1428 DW_AT_name.
1429 (dwarf2_psymtab_to_symtab): Clear reading_partial_symbols.
1430 (load_full_comp_unit): Only allocate a CU if we don't have one
1431 already.
1432 (do_ui_file_peek_last): New.
1433 (dwarf2_compute_name): Handle template parameters not in
1434 DW_AT_name.
1435 (read_comp_unit): Read and free abbrevs if not read yet.
1436 (load_partial_dies): Handle template arguments not in DW_AT_name.
1437 (find_partial_die): If we have a CU, but no a partial dies yet,
1438 also read in the CU.
1439 (dwarf2_const_value_attr): New, abstracted out from
1440 dwarf2_const_value.
1441 (dwarf2_const_value, dwarf2_const_value_data): Adjust to use
1442 dwarf2_const_value_attr.
1443 (determine_prefix): Detect and break loops created by RCVT's debug
1444 info.
1445 (maybe_queue_comp_unit): Bail out early if reading partial
1446 symbols.
1447 (follow_die_offset): Load full CU if we have no dies.
1448 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Make public.
1449 * dwarf2loc.h (dwarf2_evaluate_loc_desc): Declare.
1450
1451 2010-08-11 Tom Tromey <tromey@redhat.com>
1452 Phil Muldoon <pmuldoon@redhat.com>
1453
1454 * python/python.c (gdbpy_run_events): New function.
1455 (gdbpy_post_event): Likewise.
1456 (gdbpy_initialize_events): Likewise.
1457 (_initialize_python): Call gdbpy_initialize_events.
1458
1459 2010-08-11 Ken Werner <ken.werner@de.ibm.com>
1460
1461 * gdb/valarith.c (vector_binop): New function.
1462 (scalar_binop): Likewise.
1463 (value_binop): Call scalar_binop or vector_binop depending on the types.
1464 * gdb/eval.c (ptrmath_type_p): Return 0 in case of TYPE_VECTOR.
1465 (evaluate_subexp_with_coercion): Add vector check to not convert vectors
1466 to pointers.
1467 * gdb/value.c (coerce_array): Add vector check to not coerce vectors.
1468
1469 2010-08-11 Brad Roberts <braddr@puremagic.com>
1470
1471 * d-lang.c (extract_identifiers): Handle multiple digits.
1472
1473 2010-08-11 Jan Kratochvil <jan.kratochvil@redhat.com>
1474
1475 Code cleanup.
1476 * dummy-frame.c (dummy_frame_unwinder): Remove its static qualifier.
1477 Rename to dummy_frame_unwind.
1478 (dummy_frame_unwind): Remove.
1479 * dummy-frame.h (dummy_frame_unwind): Reference directly the struct.
1480 * frame-unwind.c (frame_unwind_init): Use address of
1481 dummy_frame_unwind and inline_frame_unwind.
1482 * frame.c (create_sentinel_frame): Use address of
1483 sentinel_frame_unwind.
1484 * inline-frame.c (inline_frame_unwinder): Rename to
1485 inline_frame_unwind.
1486 (inline_frame_unwind): Remove.
1487 * inline-frame.h (inline_frame_unwind): Reference directly the struct.
1488 * sentinel-frame.c (sentinel_frame_unwinder): Rename to
1489 sentinel_frame_unwind.
1490 (sentinel_frame_unwind): Remove.
1491 * sentinel-frame.h (sentinel_frame_unwind): Reference directly the
1492 struct.
1493
1494 2010-08-11 Jan Kratochvil <jan.kratochvil@redhat.com>
1495
1496 Code cleanup.
1497 * frame-unwind.c (frame_unwind_find_by_frame): Remove the return type
1498 and returned value. New comment from frame-unwind.h.
1499 * frame-unwind.h (frame_unwind_find_by_frame): Remove the return type.
1500 Extend the comment.
1501 * frame.c (get_frame_id, frame_unwind_register_value)
1502 (create_new_frame, get_prev_frame_1, frame_unwinder_is)
1503 (get_frame_type, frame_unwind_arch): Do not use the return value of
1504 frame_unwind_find_by_frame.
1505
1506 2010-08-11 Phil Muldoon <pmuldoon@redhat.com>
1507 Thiago Jung Bauermann <bauerman@br.ibm.com>
1508 Tom Tromey <tromey@redhat.com>
1509
1510 * python/python.c (gdbpy_solib_address): New function.
1511 (gdbpy_decode_line): Likewise.
1512
1513 2010-08-10 Tom Tromey <tromey@redhat.com>
1514
1515 Revert gdb-add-index addition:
1516 * Makefile.in (install-only): Don't install gdb-add-index.
1517 * gdb-add-index.sh: Remove.
1518
1519 2010-08-09 Kevin Buettner <kevinb@redhat.com>
1520
1521 * remote-sim.c (gdbsim_xfer_inferior_memory): Replace
1522 `target_has_execution' check with `to_has_memory' check.
1523 (gdbsim_has_all_memory, gdbsim_has_memory): New functions.
1524 (init_gdbsym_ops): Initialize relevant fields of `gdbsim_ops'
1525 with `gdbsim_has_all_memory' and `gdbsim_has_memory'.
1526
1527 2010-08-09 Kevin Buettner <kevinb@redhat.com>
1528
1529 * remote-sim.c (program_loaded, gdbsim_desc, remote_sim_ptid)
1530 (resume_siggnal, resume_step): Move these static globals...
1531 (struct sim_inferior_data): ...into this new struct.
1532 (sim_inferior_data_key, next_pid, sim_argv, gdbsim_is_open):
1533 New static globals.
1534 (gdb_callback, callbacks_initialized): Move these globals to
1535 a point earlier in the file.
1536 (check_for_duplicate_sim_descriptor, get_sim_inferior_data)
1537 (get_sim_inferior_data_by_ptid, sim_inferior_data_cleanup)
1538 (gdbsim_close_inferior, gdbsim_resume_inferior)
1539 (gdbsim_stop_inferior): New functions.
1540 (SIM_INSTANCE_NOT_NEEDED, SIM_INSTANCE_NEEDED, INITIAL_PID):
1541 New constants.
1542 (gdbsim_fetch_register, gdbsim_store_register, gdbsim_load)
1543 (gdbsim_create_inferior, gdbsim_open, gdbsim_close, gdbsim_resume)
1544 (gdbsim_stop, gdbsim_cntrl_c, gdbsim_wait)
1545 (gdbsim_xfer_inferior_memory, gdbsim_files_info)
1546 (gdbsim_mourn_inferior, simulator_command, gdbsim_thread_alive,
1547 (gdbsim_pid_to_str): Invoke `get_sim_inferior_data' to set
1548 new local variable `sim_data' in each of these functions. Use
1549 `sim_data' to reference former globals `program_loaded',
1550 `gdbsim_desc', `remote_sim_ptid', `resume_siggnal', and
1551 `resume_step'.
1552 (gdbsim_open): Remove local variable `argv'. Put results of call
1553 to `gdb_buildargv' in `sim_argv' rather than in `argv'. Don't
1554 make a cleanup for it. Free it though when a sim instance cannot
1555 be obtained.
1556 (gdbsim_close): Free sim_argv and null it out as appropriate.
1557 Close sim instances in all inferiors.
1558 (gdbsim_cntrl_c): Stop all inferiors.
1559 (gdbsim_wait):
1560 (_initialize_remote_sim): Initialize `sim_inferior_data_key'.
1561
1562 2010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
1563
1564 * dwarf2read.c (new_symbol): Add symbol to variable list at end of
1565 function after symbol construction is complete.
1566 Do the same for template symbol addition to template_symbols list.
1567
1568 2010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
1569
1570 * symtab.c (symbol_get_demangled_name): Remove assertion and
1571 return NULL when language_specific.cplus_specific is not initialized.
1572 * stabsread.c (define_symbol): Set the name before calling
1573 cp_scan_for_anonymous_namespaces.
1574
1575 2010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
1576
1577 * symtab.h: Renamed SYMBOL_INIT_LANGUAGE_SPECIFIC to
1578 SYMBOL_SET_LANGUAGE.
1579 (symbol_init_language_specific): Renamed to symbol_set_language.
1580 * symtab.c (symbol_init_language_specific): Removed redundant check
1581 for language_cplus.
1582 Renamed to symbol_set_language.
1583 * stabsread.c (define_symbol): Updated.
1584 (read_enum_type): Updated
1585 * psymtab.c (add_psymbol_to_bcache): Updated.
1586 * minsyms.c (install_minimal_symbols): Updated.
1587 * coffread.c (process_coff_symbol): SYMBOL_SET_LANGUAGE instead of
1588 SYMBOL_LANGUAGE to set the language.
1589 * minsyms.c (prim_record_minimal_symbol_full): Ditto.
1590 * mdebugread.c (new_symbol): Ditto.
1591 * cp-namespace.c (check_one_possible_namespace_symbol): Ditto.
1592 * dwarf2read.c (new_symbol_full): Ditto.
1593 * jv-lang.c (add_class_symbol): Ditto.
1594
1595 2010-08-07 Jan Kratochvil <jan.kratochvil@redhat.com>
1596
1597 * defs.h (make_cleanup_restore_uinteger, make_cleanup_restore_ui_file)
1598 (make_cleanup_restore_page_info)
1599 (set_batch_flag_and_make_cleanup_restore_page_info): New declarations.
1600 * gdbcmd.h (execute_command_to_string): New declaration.
1601 * python/python.c (struct restore_ui_file_closure, restore_ui_file)
1602 (make_cleanup_restore_ui_file): Move to utils.c
1603 (execute_gdb_command) <to_string>: Move ...
1604 * top.c (execute_command_to_string): ... here. Call
1605 set_batch_flag_and_make_cleanup_restore_page_info.
1606 * utils.c (make_cleanup_restore_integer): New source file blank line.
1607 (make_cleanup_restore_uinteger): New.
1608 (struct restore_ui_file_closure, do_restore_ui_file)
1609 (make_cleanup_restore_ui_file): Move here from python/python.c.
1610 (init_page_info) <batch_flag>
1611 (do_restore_page_info_cleanup, make_cleanup_restore_page_info)
1612 (set_batch_flag_and_make_cleanup_restore_page_info): New.
1613
1614 2010-08-06 Maciej W. Rozycki <macro@codesourcery.com>
1615
1616 * thread.c (add_thread_silent): Use null_ptid instead of
1617 minus_one_ptid while getting rid of stale inferior_ptid.
1618
1619 2010-08-06 Corinna Vinschen <vinschen@redhat.com>
1620
1621 * dwarf2-frame.c (struct dwarf2_cie): Add ptr_size member.
1622 Throughout, call read_encoded_value with ptr_size rather than addr_size.
1623 (decode_frame_entry_1): Remove redundant setting of
1624 addr_size. Call gdbarch_dwarf2_addr_size rather than gdbarch_ptr_bit
1625 to determine addr_size in Dwarf versions < 4. Set ptr_size dependent
1626 on examined frame section. Add comment to explain why.
1627 * gdbarch.sh (dwarf2_addr_size): Define as variable. Add lengthy
1628 comment to explain usage.
1629 * gdbarch.c: Regenerate.
1630 * gdbarch.h: Regenerate.
1631
1632 * xstormy16-tdep.c (xstormy16_gdbarch_init): Set dwarf2_addr_size to 4.
1633
1634 2010-08-06 Jan Kratochvil <jan.kratochvil@redhat.com>
1635
1636 Code cleanup.
1637 * varobj.c (varobj_create): Move variables fi, old_fi and block to
1638 a more inner block.
1639
1640 2010-08-05 Pedro Alves <pedro@codesourcery.com>
1641
1642 * configure.tgt (alpha*-*-linux*, am33_2.0*-*-linux*, frv-*-*)
1643 (hppa*-*-linux*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
1644 (microblaze*-linux-*, mips*-*-linux*, sh*-*-linux*)
1645 (sparc-*-linux*, sparc64-*-linux*, xtensa*-*-linux*): Add
1646 linux-tdep.o to gdb_target_obs.
1647
1648 2010-08-05 Marc Khouzam <marc.khouzam@ericsson.com>
1649
1650 * mi/mi-main.c (mi_cmd_remove_inferior): Properly access first
1651 argument.
1652
1653 2010-08-05 Hui Zhu <teawater@gmail.com>
1654
1655 * mips-linux-tdep.c(regset.h): New include.
1656 (mips_supply_gregset_wrapper, mips_fill_gregset_wrapper,
1657 mips_supply_fpregset_wrapper, mips_fill_fpregset_wrapper,
1658 mips64_supply_gregset_wrapper, mips64_fill_gregset_wrapper,
1659 mips64_supply_fpregset_wrapper, mips64_fill_fpregset_wrapper,
1660 mips_linux_regset_from_core_section): New functions.
1661 (fetch_core_registers, regset_core_fns): Deleted.
1662 (mips_linux_init_abi): Add mips_linux_regset_from_core_section.
1663 Deleted regset_core_fns.
1664 * mips-tdep.c(mips_gdbarch_init): Initialize tdep->gregset,
1665 tdep->gregset64, tdep->fpregset and tdep->fpregset64.
1666 * mips-tdep.h(gdbarch_tdep): Add gregset, gregset64, fpregset
1667 and fpregset64.
1668
1669 2010-08-04 Pedro Alves <pedro@codesourcery.com>
1670
1671 * s390-tdep.c: Include linux-tdep.h.
1672 (s390_gdbarch_init): Call linux_init_abi.
1673
1674 2010-08-04 Pedro Alves <pedro@codesourcery.com>
1675
1676 * corelow.c (core_pid_to_str): Default to using normal_pid_to_str
1677 instead of printing "Thread" here.
1678 * linux-tdep.c: Include inferior.h.
1679 (linux_core_pid_to_str): New.
1680 (linux_init_abi): New.
1681 * linux-tdep.h (linux_init_abi): Declare.
1682 * alpha-linux-tdep.c: Include linux-tdep.h.
1683 (alpha_linux_init_abi): Call linux_init_abi.
1684 * amd64-linux-tdep.c (amd64_linux_init_abi): Call linux_init_abi.
1685 * arm-linux-tdep.c (arm_linux_init_abi): Call linux_init_abi.
1686 * frv-linux-tdep.c: Include linux-tdep.h
1687 (frv_linux_init_abi): Call linux_init_abi.
1688 * hppa-linux-tdep.c: Include linux-tdep.h
1689 (hppa_linux_init_abi): Call linux_init_abi.
1690 * i386-linux-tdep.c (i386_linux_init_abi): Call linux_init_abi.
1691 * ia64-linux-tdep.c: Include linux-tdep.h.
1692 (ia64_linux_init_abi): Call linux_init_abi.
1693 * m32r-linux-tdep.c: Include linux-tdep.h.
1694 (m32r_linux_init_abi): Call linux_init_abi.
1695 * m68klinux-tdep.c: Include linux-tdep.h.
1696 (m68k_linux_init_abi): Call linux_init_abi.
1697 * microblaze-linux-tdep.c: Include linux-tdep.h.
1698 (microblaze_linux_init_abi): Call linux_init_abi.
1699 * mips-linux-tdep.c: Include linux-tdep.h.
1700 (mips_linux_init_abi): Call linux_init_abi.
1701 * mn10300-linux-tdep.c: Include linux-tdep.h.
1702 (am33_linux_init_osabi): Call linux_init_abi. Rename the
1703 'gdbinfo' parameter to 'info'.
1704 * ppc-linux-tdep.c: Include linux-tdep.h.
1705 (ppc_linux_init_abi): Call linux_init_abi.
1706 * sh-linux-tdep.c: Include linux-tdep.h.
1707 (sh_linux_init_abi): Call linux_init_abi.
1708 * sparc-linux-tdep.c: Include linux-tdep.h.
1709 (sparc32_linux_init_abi): Call linux_init_abi.
1710 * sparc64-linux-tdep.c: Include linux-tdep.h.
1711 (sparc64_linux_init_abi): Call linux_init_abi.
1712 * xtensa-linux-tdep.c: Include linux-tdep.h.
1713 (xtensa_linux_init_abi): Call linux_init_abi.
1714 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): New.
1715 (i386_cygwin_init_abi): Install it as gdbarch_core_pid_to_str
1716 callback.
1717
1718 2010-08-03 Doug Evans <dje@google.com>
1719
1720 * breakpoint.c (bpdisp_text): Constify bpdisps.
1721 * solib-svr4.c (solib_break_names): Constify.
1722 (bkpt_names, main_name_list): Constify.
1723 (match_main): Constify soname arg.
1724 (bfd_lookup_symbol): Remove unnecessary forward decl.
1725 Constify symname arg.
1726 (enable_break): Constify bkpt_namep.
1727 * symtab.c (search_symbols): Constify types, types2, types3, types4.
1728 (symtab_symbol_info): Constify classnames.
1729
1730 2010-08-03 Phil Muldoon <pmuldoon@redhat.com>
1731
1732 * NEWS: Document Python value inferior function calls.
1733
1734 2010-08-02 Doug Evans <dje@google.com>
1735
1736 * dwarf2read.c (dwarf_attr_name): Add DW_AT_GNU_odr_signature.
1737
1738 2010-07-31 Paul Pluzhnikov <ppluzhnikov@google.com>
1739
1740 * linux-thread-db.c (libthread_db_debug): New variable.
1741 (thread_db_find_new_threads_silently): Control verbosity with it.
1742 (try_thread_db_load_1, try_thread_db_load): Likewise.
1743 (find_new_threads_once): Likewise.
1744 (_initialize_thread_db): Set/show it.
1745
1746 2010-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
1747
1748 * common/signals.c (signals): Move the content to signals.def.
1749 Include it. Remove the INDENT comments.
1750
1751 2010-07-30 Tom Tromey <tromey@redhat.com>
1752
1753 * Makefile.in (install-only): Install gdb-add-index.
1754 * gdb-add-index.sh: New file.
1755
1756 2010-07-31 Renquan Cheng <crq@gcc.gnu.org>
1757
1758 * MAINTAINERS: Add myself for write after approval privileges.
1759
1760 2010-07-30 Jan Kratochvil <jan.kratochvil@redhat.com>
1761
1762 * symfile.c (addr_section_name): New function.
1763 (addrs_section_compar): Use it.
1764 (addr_info_make_relative): Use it. Move variable sect_name into a more
1765 inner block. Make ".dynbss" and ".sdynbss" checks more strict.
1766
1767 2010-07-30 Tom Tromey <tromey@redhat.com>
1768
1769 * configure: Rebuild.
1770 * configure.ac: Add missing case for Python 2.7.
1771
1772 2010-07-29 DJ Delorie <dj@redhat.com>
1773
1774 * rx-tdep.c (rx_analyze_prologue): Don't require branches to have
1775 conditions.
1776
1777 2010-07-29 Pedro Alves <pedro@codesourcery.com>
1778
1779 * PROBLEMS: Remove mention of all problems.
1780
1781 2010-07-28 Pedro Alves <pedro@codesourcery.com>
1782
1783 PR build/11848
1784 * configure.ac: Check for wresize.
1785 * configure, config.in: Regenerate.
1786 * tui/tui-win.c (make_visible_with_new_height): Wrap wresize call
1787 with HAVE_WRESIZE.
1788
1789 2010-07-28 Tom Tromey <tromey@redhat.com>
1790
1791 PR python/11060:
1792 * python/py-type.c (typy_legacy_template_argument): New function,
1793 extracted from typy_template_argument.
1794 (typy_template_argument): Use TYPE_TEMPLATE_ARGUMENT. Return a
1795 value when needed.
1796
1797 2010-07-28 Oleg Nesterov <oleg@redhat.com>
1798
1799 * remote.c (readchar): Call pop_target in case of SERIAL_ERROR.
1800
1801 2010-07-27 Tom Tromey <tromey@redhat.com>
1802
1803 * dwarf2read.c (dwarf2_const_value_data): Never sign extend.
1804
1805 2010-07-28 Daniel Jacobowitz <dan@codesourcery.com>
1806
1807 * dwarf2read.c (read_subroutine_type): Improve THIS detection,
1808 handling DW_AT_object_pointer, and workaround GCC PR 43053.
1809
1810 2010-07-28 Tom Tromey <tromey@redhat.com>
1811
1812 * Makefile.in (HFILES_NO_SRCDIR): Remove link-warning.h.
1813
1814 2010-07-28 Joel Brobecker <brobecker@adacore.com>
1815
1816 * remote.c (remote_download_tracepoint): Add missing gettext markup.
1817 * tracepoint.c (parse_static_tracepoint_marker_definition): Likewise.
1818
1819 2010-07-28 Joel Brobecker <brobecker@adacore.com>
1820
1821 * breakpoint.c (breakpoint_re_set_one): Move call to set_language
1822 down, just before the block that parse the breakpoint addr_string.
1823
1824 2010-07-28 Tom Tromey <tromey@redhat.com>
1825
1826 PR c++/9946:
1827 * symfile.c (reread_symbols): Clear template_symbols.
1828 * symtab.h (struct symbol) <is_cplus_template_function>: New
1829 field.
1830 (SYMBOL_IS_CPLUS_TEMPLATE_FUNCTION): New macro.
1831 (struct template_symbol): New.
1832 * symtab.c (lookup_symbol_aux_local): Use
1833 cp_lookup_symbol_imports_or_template.
1834 * objfiles.h (struct objfile) <template_symbols>: New field.
1835 * objfiles.c (relocate_one_symbol): New function.
1836 (objfile_relocate1): Use it. Relocate isolated symbols.
1837 * gdbtypes.h (struct cplus_struct_type) <n_template_arguments,
1838 template_arguments>: New fields.
1839 (TYPE_N_TEMPLATE_ARGUMENTS): New macro.
1840 (TYPE_TEMPLATE_ARGUMENTS): Likewise.
1841 (TYPE_TEMPLATE_ARGUMENT): Likewise.
1842 (lookup_typename): Update.
1843 * gdbtypes.c (lookup_typename): Constify "block" argument.
1844 * dwarf2read.c: Include vec.h.
1845 (symbolp): New typedef.
1846 (read_func_scope): Read template arguments. Allocate a
1847 template_symbol when needed.
1848 (read_structure_type): Read template arguments.
1849 (new_symbol_full): New function, from new_symbol. Handle
1850 DW_TAG_template_type_param and DW_TAG_template_value_param.
1851 (new_symbol): Rewrite as wrapper.
1852 * cp-support.h (cp_lookup_symbol_imports_or_template): Declare.
1853 * cp-namespace.c: Include language.h.
1854 (search_symbol_list): New function.
1855 (cp_lookup_symbol_imports_or_template): Likewise.
1856
1857 2010-07-28 Balazs Kezes <rlblaster@gmail.com>
1858
1859 * tui/tui-win.c (make_visible_with_new_height): Resize and move
1860 the command window to the new size and position.
1861
1862 2010-07-28 Balazs Kezes <rlblaster@gmail.com>
1863
1864 * tui/tui-win.c (tui_resize_all): Update the locator's origin's
1865 coordinates.
1866
1867 2010-07-28 Balazs Kezes <rlblaster@gmail.com>
1868
1869 * tui/tui-io.c (tui_handle_resize_during_io): Call tui_resize_all
1870 after a detecting a resize.
1871 * tui/tui-win.c (tui_resize_all): Remove tui_set_win_resized_to
1872 call.
1873
1874 2010-07-28 Pedro Alves <pedro@codesourcery.com>
1875
1876 * configure.ac: Check for resize_term.
1877 * configure, config.in: Regenerate.
1878
1879 2010-07-27 Joel Brobecker <brobecker@adacore.com>
1880
1881 * MAINTAINERS (Write After Approval): Reorder a couple of entries.
1882
1883 2010-07-27 Daniel Jacobowitz <dan@codesourcery.com>
1884
1885 * dwarf2read.c (read_string): Rename to ...
1886 (read_direct_string): ... this.
1887 (skip_one_die, read_attribute_value, dwarf_decode_line_header)
1888 (dwarf_decode_lines, dwarf_decode_macros): Adjust.
1889
1890 2010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1891
1892 * linux-nat.c (linux_nat_lp_status_is_event): New function.
1893 (count_events_callback, select_event_lwp_callback)
1894 (cancel_breakpoints_callback, linux_nat_wait_1): Use it.
1895
1896 2010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1897
1898 * ia64-linux-nat.c (ia64_linux_status_is_event): New function.
1899 (_initialize_ia64_linux_nat): Install it.
1900 * linux-nat.c (sigtrap_is_event, linux_nat_status_is_event)
1901 (linux_nat_set_status_is_event): New.
1902 (stop_wait_callback, count_events_callback, select_event_lwp_callback)
1903 cancel_breakpoints_callback, linux_nat_filter_event)
1904 (linux_nat_wait_1): Use linux_nat_status_is_event.
1905 * linux-nat.h (linux_nat_set_status_is_event): New prototype.
1906
1907 2010-07-27 Tom Tromey <tromey@redhat.com>
1908
1909 * NEWS: Mention labels, .gdb_index.
1910
1911 2010-07-28 CHENG Renquan <rqcheng@smu.edu.sg>
1912
1913 * cli/cli-cmds.c (disassemble_command): Add support of disassemble
1914 "start,+length" form of arguments.
1915 * NEWS: Add "Changed commands" (disassemble) section for "Changes
1916 since GDB 7.1"; and merge two separated paragraphs of disassemble
1917 description in "Changes in GDB 7.0".
1918
1919 2010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1920
1921 * top.c (input_from_terminal_p): Return 0 on BATCH_FLAG.
1922 * utils.c (defaulted_query): Do not explicitly check for BATCH_FLAG.
1923 (fputs_maybe_filtered): Do not do filtering also on
1924 ! INPUT_FROM_TERMINAL_P.
1925
1926 2010-07-27 Joel Brobecker <brobecker@adacore.com>
1927
1928 * dwarf2read.c (dw2_find_pc_sect_symtab): Remove trailing newline
1929 in warning message.
1930
1931 2010-07-27 Phil Muldoon <pmuldoon@redhat.com>
1932
1933 * python/py-value.c (valpy_call): New Function.
1934
1935 2010-07-27 Ken Werner <ken.werner@de.ibm.com>
1936
1937 * dwarf2read.c (dwarf2_read_index): Initialize the types_list and
1938 types_list_elements variables.
1939
1940 2010-07-26 Tom Tromey <tromey@redhat.com>
1941
1942 * dwarf2loc.c (locexpr_describe_location_piece): Also recognize
1943 TLS with DW_OP_const4u or DW_OP_const8u.
1944
1945 2010-07-26 Thiago Jung Bauermann <bauerman@br.ibm.com>
1946
1947 * ppc-linux-nat.c (store_vsx_register): Use PTRACE_GETVSXREGS to get
1948 VSX registers contents.
1949
1950 2010-07-26 Jerome Guitton <guitton@adacore.com>
1951
1952 * dwarf2read.c (add_partial_symbol): Do not add a global variable if
1953 its adress is null. Add comment to explain why.
1954 (new_symbol): Ditto.
1955
1956 2010-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
1957
1958 * linux-nat.c (linux_nat_do_thread_registers): Convert STOP_SIGNAL to
1959 the host signal first.
1960
1961 2010-07-23 Tom Tromey <tromey@redhat.com>
1962
1963 * dwarf2read.c (struct dwarf2_per_objfile) <n_type_comp_units,
1964 type_comp_units>: New fields.
1965 (dw2_get_cu): New function.
1966 (create_cus_from_index): Remove unused argument.
1967 (create_signatured_type_hash_from_index): New function.
1968 (create_addrmap_from_index): Update.
1969 (dwarf2_read_index): Handle version 2.
1970 (dw2_find_last_source_symtab, dw2_forget_cached_source_info)
1971 (dw2_lookup_symtab, dw2_do_expand_symtabs_matching)
1972 (dw2_print_stats, dw2_expand_all_symtabs)
1973 (dw2_expand_symtabs_with_filename, dw2_find_symbol_file)
1974 (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Update.
1975 (dwarf2_initialize_objfile): Call create_debug_types_hash_table.
1976 (allocate_signatured_type_hash_table): New function.
1977 (add_signatured_type_cu_to_list): Likewise.
1978 (create_debug_types_hash_table): Use them. Set type_comp_units.
1979 (read_signatured_type): Ensure section data is available.
1980 (add_address_entry): Don't record empty ranges.
1981 (struct signatured_type_index_data): New.
1982 (write_one_signatured_type): New function.
1983 (write_psymtabs_to_index): Write type CUs.
1984 (save_gdb_index_command): Update comment.
1985 (process_type_comp_unit): Move inititalization of
1986 from_debug_types...
1987 (create_debug_types_hash_table): ... here.
1988
1989 2010-07-23 Jan Kratochvil <jan.kratochvil@redhat.com>
1990
1991 * gdb_gcore.sh (tmpfile): Remove the variable, its initialization,
1992 cleanup and generating of gdb script to it.
1993 (gdb): Use redirection from /dev/null. Use --nx. Turn off pagination
1994 and terminal size. Convert $tmpfile to a series of -ex-es.
1995
1996 2010-07-23 Keith Seitz <keiths@redhat.com>
1997
1998 * symtab.c (basic_lookup_transparent_type): Call pre-expand
1999 hook for STATIC_BLOCK types, too.
2000
2001 2010-07-23 Keith Seitz <keiths@redhat.com>
2002
2003 * dwarf2read.c: Remove unused typedef dwarf2_cu_per_cu_data_ptr
2004 and vector definition.
2005
2006 2010-07-23 Jan Kratochvil <jan.kratochvil@redhat.com>
2007
2008 * linux-nat.c (cancel_breakpoint): Remove unused forward declaration.
2009
2010 2010-07-22 Jan Kratochvil <jan.kratochvil@redhat.com>
2011
2012 * dwarf2read.c: Include completer.h.
2013 (save_gdb_index_command): Use matching usage command name.
2014 (_initialize_dwarf2_read): New variable c, initialize it by add_cmd.
2015 Set filename_completer for it.
2016
2017 2010-07-22 Tom Tromey <tromey@redhat.com>
2018
2019 * dwarf2read.c (create_debug_types_hash_table): Set objfile on
2020 type signature's per-CU data.
2021
2022 2010-07-22 Pedro Alves <pedro@codesourcery.com>
2023
2024 * NEWS: Mention target reported shared libraries support by
2025 default.
2026
2027 2010-07-21 Pedro Alves <pedro@codesourcery.com>
2028
2029 PR symtab/11827
2030
2031 Revert:
2032 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
2033 * dwarf2read.c (process_die): Also allow DW_TAG_const_type
2034 and DW_TAG_volatile_type.
2035 (new_symbol): Likewise.
2036
2037 2010-07-21 Sami Wagiaalla <swagiaal@redhat.com>
2038
2039 * eval.c (evaluate_subexp_standard): Disabled evaluation of C++
2040 function symbols before overload resolution.
2041
2042 2010-07-21 Pedro Alves <pedro@codesourcery.com>
2043
2044 * breakpoint.c (bptype_string): New, abstracted out from
2045 print_one_breakpoint_location.
2046 (print_one_breakpoint_location): Adjust.
2047 (breakpoint_1): Adjust the type column width dynamically.
2048
2049 2010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2050
2051 * symfile.c (find_separate_debug_file_by_debuglink): Remove
2052 a gdb_assert call, new comment.
2053
2054 2010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2055
2056 * linux-nat.c (linux_handle_extended_wait): Handle case when
2057 event == PTRACE_EVENT_CLONE && stopping && WSTOPSIG (status) != SIGSTOP.
2058
2059 2010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
2060
2061 Code cleanup.
2062 * linux-nat.c (linux_nat_wait_1): Reset STATUS after calling
2063 linux_nat_wait_1. Use always LP->STATUS afterwards.
2064
2065 2010-07-20 Hui Zhu <teawater@gmail.com>
2066
2067 * inf-ptrace.c (inf_ptrace_create_inferior): Initialize back_to.
2068 (inf_ptrace_attach): Ditto.
2069
2070 2010-07-19 Jan Kratochvil <jan.kratochvil@redhat.com>
2071
2072 Make core files the process_stratum.
2073 * corefile.c (core_target): New variable.
2074 (core_file_command): Remove variable t, use core_target.
2075 * corelow.c (core_ops): Make it static.
2076 (init_core_ops): Change to process_stratum. Initialize CORE_TARGET.
2077 * defs.h (make_cleanup_unpush_target): New prototype.
2078 * gdbarch.h: Regenerate.
2079 * gdbarch.sh (core_pid_to_str): Remove core_stratum from its comment.
2080 * gdbcore.h (core_target): New declaration.
2081 * inf-ptrace.c (inf_ptrace_create_inferior, inf_ptrace_attach): New
2082 variables ops_already_pushed and back_to. Use push_target,
2083 make_cleanup_unpush_target and discard_cleanups calls.
2084 * record.c (record_open): Replace core_stratum by a core_bfd check.
2085 * target.c (target_is_pushed): New function.
2086 (find_core_target): Remove.
2087 * target.h (enum strata) <core_stratum>: Remove.
2088 (target_is_pushed): New declaration.
2089 (find_core_target): Remove declaration.
2090 * tracepoint.c (init_tfile_ops) <to_stratum>: Remove comment.
2091 * utils.c (do_unpush_target, make_cleanup_unpush_target): New functions.
2092
2093 2010-07-19 Hui Zhu <teawater@gmail.com>
2094
2095 * breakpoint.c (single_step_breakpoints_inserted): New
2096 function.
2097 * breakpoint.h (single_step_breakpoints_inserted): Extern.
2098 * infrun.c (maybe_software_singlestep): Add check code.
2099 * record.c (record_resume): Add code for software single step.
2100 (record_wait): Ditto.
2101
2102 2010-07-18 Jan Kratochvil <jan.kratochvil@redhat.com>
2103
2104 * linux-nat.c (linux_handle_extended_wait): Move variable new_lp into
2105 a more inner block. Remove its unused declaration initializer.
2106
2107 2010-07-16 Thiago Jung Bauermann <bauerman@br.ibm.com>
2108
2109 * NEWS: Mention support for the new ptrace interface and hardware
2110 accelerated watchpoint conditions on powerpc-linux.
2111
2112 2010-07-16 Ozkan Sezer <sezeroz@gmail.com>
2113
2114 * target.c (debug_to_insert_breakpoint): Instead of casting to unsigned
2115 long and %ld, use core_addr_to_string() and %s to print CORE_ADDR vars
2116 and host_address_to_string() and %s for pointers.
2117 (debug_to_remove_breakpoint): Likewise.
2118 (debug_to_region_ok_for_hw_watchpoint): Likewise.
2119 (debug_to_can_accel_watchpoint_condition): Likewise.
2120 (debug_to_stopped_data_address): Likewise.
2121 (debug_to_watchpoint_addr_within_range): Likewise.
2122 (debug_to_insert_hw_breakpoint): Likewise.
2123 (debug_to_remove_hw_breakpoint): Likewise.
2124 (debug_to_insert_watchpoint): Likewise.
2125 (debug_to_remove_watchpoint): Likewise.
2126
2127 2010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
2128
2129 * symtab.h (symbol_set_demangled_name): Now takes an optional objfile*
2130 argument.
2131 (cplus_specific): New struct.
2132 * symtab.c (symbol_set_demangled_name): Updated.
2133 Use cplus_specific for cplus symbols.
2134 (symbol_get_demangled_name): Retrive the name from the cplus_specific
2135 struct for cplus symbols.
2136 (symbol_init_language_specific): Set cplus_specific for cplus symbols.
2137 (symbol_set_names): Pass objfile to symbol_set_demangled_name.
2138 * symtab.c (symbol_init_cplus_specific): New function.
2139
2140 2010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
2141
2142 * symtab.h (symbol_set_demangled_name): New function.
2143 (symbol_get_demangled_name): New function.
2144 * symtab.c (symbol_set_demangled_name): New function.
2145 (symbol_get_demangled_name): New function.
2146 (symbol_init_language_specific): Use demangled_name setter and getter.
2147 (symbol_set_names): Ditto.
2148 (symbol_natural_name): Ditto.
2149 (symbol_demangled_name): Ditto.
2150 * dwarf2read.c (new_symbol): Ditto.
2151
2152 2010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
2153
2154 * symtab.h: Renamed cplus_specific to mangled_lang.
2155 * symtab.c (symbol_init_language_specific): Updated.
2156 (symbol_set_names): Updated.
2157 (symbol_natural_name): Updated.
2158 (symbol_demangled_name): Updated.
2159 * ada-lang.c (ada_decode_symbol): Updated.
2160 * dwarf2read.c (new_symbol): Updated.
2161
2162 2010-07-14 Ken Werner <ken.werner@de.ibm.com>
2163
2164 * valops.c (value_assign): Do not call to value_coerce_to_target.
2165 (value_must_coerce_to_target): Return 0 in case of TYPE_VECTOR.
2166
2167 2010-07-14 Ken Werner <ken.werner@de.ibm.com>
2168
2169 * MAINTAINERS: Add myself for write after approval privileges.
2170
2171 2010-07-13 Emmanuel Thomé <Emmanuel.Thome@gmail.com>
2172
2173 * c-valprint.c (c_val_print): Add embedded_offset to address in
2174 call to val_print_array_elements.
2175
2176 2010-07-13 Tom Tromey <tromey@redhat.com>
2177
2178 * dwarf2read.c (dwarf2_read_index): Correctly set 'total_size'.
2179
2180 2010-07-13 Tom Tromey <tromey@redhat.com>
2181
2182 * dwarf2read.c (dwarf2_per_cu_text_offset): Fix reference to
2183 objfile.
2184
2185 2010-07-13 Tom Tromey <tromey@redhat.com>
2186
2187 * symfile.c (set_initial_language): Update.
2188 (deduce_language_from_filename): Argument type now const.
2189 * symtab.h (find_main_filename): Update.
2190 (deduce_language_from_filename): Update.
2191 * symtab.c (find_main_filename): Make result const.
2192 * dwarf2read.c (dw2_find_symbol_file): Change return type.
2193 * psymtab.c (find_symbol_file_from_partial): Change return type.
2194 * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
2195 Make result const.
2196
2197 2010-07-13 Tom Tromey <tromey@redhat.com>
2198
2199 * breakpoint.c (save_cmdlist): No longer static.
2200 * gdbcmd.h (save_cmdlist): Declare.
2201 * symfile.c (symbol_file_add_with_addrs_or_offsets): Set
2202 OBJF_READNOW on objfile if readnow_symbol_files.
2203 * elfread.c (elf_symfile_read): Use dwarf2_initialize_objfile.
2204 (elf_sym_fns_gdb_index): New global.
2205 * dwarf2read.c: Include exceptions.h.
2206 (offset_type): New.
2207 (struct mapped_index): New.
2208 (dwarf2_per_cu_data_ptr): New typedef.
2209 (struct dwarf2_per_objfile) <using_index, index_table, gdb_index>:
2210 New fields.
2211 (GDB_INDEX_SECTION): New define.
2212 (struct dwarf2_per_cu_quick_data): New.
2213 (struct dwarf2_per_cu_data) <objfile>: New field.
2214 <psymtab>: Removed.
2215 <v>: New field.
2216 (byte_swap): New function.
2217 (MAYBE_SWAP): New macro.
2218 (INDEX_SUFFIX): New macro.
2219 (dw2_do_instantiate_symtab): New function.
2220 (dw2_instantiate_symtab): Likewise.
2221 (create_cus_from_index): Likewise.
2222 (create_addrmap_from_index): Likewise.
2223 (mapped_index_string_hash): Likewise.
2224 (find_slot_in_mapped_hash): Likewise.
2225 (dwarf2_read_index): Likewise.
2226 (dw2_setup): Likewise.
2227 (dw2_require_line_header): Likewise.
2228 (dw2_require_full_path): Likewise.
2229 (dw2_find_last_source_symtab): Likewise.
2230 (dw2_forget_cached_source_info): Likewise.
2231 (dw2_lookup_symtab): Likewise.
2232 (dw2_lookup_symbol): Likewise.
2233 (dw2_do_expand_symtabs_matching): Likewise.
2234 (dw2_pre_expand_symtabs_matching): Likewise.
2235 (dw2_print_stats): Likewise.
2236 (dw2_dump): Likewise.
2237 (dw2_relocate): Likewise.
2238 (dw2_expand_symtabs_for_function): Likewise.
2239 (dw2_expand_all_symtabs): Likewise.
2240 (dw2_expand_symtabs_with_filename): Likewise.
2241 (dw2_find_symbol_file): Likewise.
2242 (dw2_map_ada_symtabs): Likewise.
2243 (dw2_expand_symtabs_matching): Likewise.
2244 (dw2_find_pc_sect_symtab): Likewise.
2245 (dw2_map_symbol_names): Likewise.
2246 (dw2_map_symbol_filenames): Likewise.
2247 (dw2_has_symbols): Likewise.
2248 (dwarf2_gdb_index_functions): New global.
2249 (dwarf2_initialize_objfile): New function.
2250 (process_psymtab_comp_unit): Update.
2251 (add_partial_subprogram): Likewise.
2252 (dwarf2_psymtab_to_symtab): Likewise.
2253 (psymtab_to_symtab_1): Use dw2_do_instantiate_symtab.
2254 (process_full_comp_unit): Update.
2255 (find_file_and_directory): New function.
2256 (read_file_scope): Use find_file_and_directory.
2257 (dwarf2_per_cu_objfile): Update.
2258 (dwarf2_per_cu_addr_size): Update.
2259 (dwarf2_per_cu_offset_size): Update.
2260 (dwarf2_free_objfile): Free the index, if needed.
2261 (dwarf2_per_objfile_free): Unmap the index, if needed.
2262 (struct strtab_entry): New.
2263 (hash_strtab_entry): New function.
2264 (eq_strtab_entry): Likewise.
2265 (create_strtab): Likewise.
2266 (add_string): Likewise.
2267 (struct symtab_index_entry): New.
2268 (struct mapped_symtab): New.
2269 (hash_symtab_entry): New function.
2270 (eq_symtab_entry): Likewise.
2271 (delete_symtab_entry): Likewise.
2272 (create_index_table): Likewise.
2273 (create_mapped_symtab): Likewise.
2274 (cleanup_mapped_symtab): Likewise.
2275 (find_slot): Likewise.
2276 (hash_expand): Likewise.
2277 (add_index_entry): Likewise.
2278 (add_indices_to_cpool): Likewise.
2279 (write_hash_table): Likewise.
2280 (add_address_entry): Likewise.
2281 (write_psymbols): Likewise.
2282 (write_obstack): Likewise.
2283 (unlink_if_set): Likewise.
2284 (write_psymtabs_to_index): Likewise.
2285 (save_gdb_index_command): Likewise.
2286 (_initialize_dwarf2_read): Install "save gdb-index"
2287 command.
2288 (create_all_comp_units): Initialize 'objfile' field of CU.
2289 (dwarf2_locate_sections): Check for .gdb_index.
2290 * psymtab.h (dwarf2_gdb_index_functions): Declare.
2291 * symfile.h (dwarf2_initialize_objfile): Declare.
2292
2293 2010-07-13 Tom Tromey <tromey@redhat.com>
2294
2295 * symtab.c (lookup_symbol_aux_symtabs): Call pre-expand hook.
2296 (basic_lookup_transparent_type): Likewise.
2297 * symfile.h (struct quick_symbol_functions)
2298 <pre_expand_symtabs_matching>: New field.
2299 * psymtab.c (pre_expand_symtabs_matching_psymtabs): New function.
2300 (psym_functions): Update.
2301
2302 2010-07-13 Tom Tromey <tromey@redhat.com>
2303
2304 PR breakpoints/8357:
2305 * symtab.h (domain_enum_tag) <LABEL_DOMAIN>: Update comment.
2306 * linespec.c (decode_line_1): Update comment. Call decode_label.
2307 (decode_label): New function.
2308 (symbol_found): Handle LOC_LABEL.
2309 * dwarf2read.c (new_symbol) <DW_TAG_label>: Set symbol's type and
2310 domain. Call add_symbol_to_list.
2311
2312 2010-07-13 Tom Tromey <tromey@redhat.com>
2313
2314 * dwarf2loc.h (dwarf2_per_cu_text_offset): Declare.
2315 * dwarf2loc.c (find_location_expression): Use
2316 dwarf2_per_cu_text_offset.
2317 (dwarf2_evaluate_loc_desc): Likewise.
2318 (dwarf2_loc_desc_needs_frame): Likewise.
2319 (compile_dwarf_to_ax): Likewise.
2320 (loclist_describe_location): Likewise.
2321 * dwarf2read.c (dwarf2_per_cu_text_offset): New function.
2322 (dwarf2_per_cu_objfile): Update comment.
2323
2324 2010-07-12 Jan Kratochvil <jan.kratochvil@redhat.com>
2325
2326 * dwarf2read.c (read_subrange_type): Call read_subrange_type.
2327 * p-lang.c (pascal_printstr): Likewise.
2328
2329 2010-07-09 Tom Tromey <tromey@redhat.com>
2330
2331 * python/py-prettyprint.c (gdbpy_get_display_hint): Don't use
2332 'hint' if it is NULL.
2333
2334 2010-07-09 Hui Zhu <teawater@gmail.com>
2335
2336 * source.c (print_source_lines_base): Add check for noprint.
2337
2338 2010-07-08 Joel Brobecker <brobecker@adacore.com>
2339
2340 * python/python-config.py: Resync with Python 2.7 version of this
2341 script.
2342
2343 2010-07-08 Joel Brobecker <brobecker@adacore.com>
2344
2345 * NEWS: Fix typo in section name (s/GDB 7.1/GDB 7.2).
2346
2347 2010-07-07 Joel Brobecker <brobecker@adacore.com>
2348
2349 * NEWS: Create a new section for the next release branch.
2350 Rename the section of the current branch, now that it has
2351 been cut.
2352
2353 2010-07-07 Joel Brobecker <brobecker@adacore.com>
2354
2355 GDB 7.2 branch created (branch timestamp: 2010-07-07 17:00 UTC)
2356 * version.in: Bump version to 7.2.50.20100707-cvs.
2357
2358 2010-07-07 Tom Tromey <tromey@redhat.com>
2359
2360 * dwarf2read.c (dwarf2_const_value) <DW_form_addr>: Create a
2361 LOC_COMPUTED symbol.
2362 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Set new field.
2363 (dwarf2_loc_desc_needs_frame): Likewise.
2364 (compile_dwarf_to_ax) <DW_OP_addr>: Use offset.
2365 * dwarf2expr.h (struct dwarf_expr_context) <offset>: New field.
2366 * dwarf2expr.c (execute_stack_op) <DW_OP_addr>: Use offset.
2367 * dwarf2-frame.c (execute_stack_op): Set 'offset' field. Add
2368 'offset' argument.
2369 (struct dwarf2_frame_cache) <text_offset>: New field.
2370 (dwarf2_frame_cache): Set new field.
2371 (dwarf2_frame_prev_register): Update.
2372 (dwarf2_frame_sniffer): Update.
2373 (dwarf2_frame_base_sniffer): Update.
2374 (dwarf2_frame_find_fde): Add 'out_offset' argument.
2375
2376 2010-07-07 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
2377 Thiago Jung Bauermann <bauerman@br.ibm.com>
2378
2379 Support for hw accelerated condition watchpoints in booke powerpc.
2380
2381 * breakpoint.c (fetch_watchpoint_value): Rename to fetch_subexp_value
2382 and move to eval.c. Change callers.
2383 (insert_bp_location): Pass watchpoint condition in
2384 target_insert_watchpoint.
2385 (remove_breakpoint_1) Pass watchpoint condition in
2386 target_remove_watchpoint.
2387 (watchpoint_locations_match): Call
2388 target_can_accel_watchpoint_condition.
2389 * eval.c: Include wrapper.h.
2390 (fetch_subexp_value): Moved from breakpoint.c.
2391 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint):
2392 Formatting fix.
2393 (can_use_watchpoint_cond_accel): New function.
2394 (calculate_dvc): Likewise.
2395 (num_memory_accesses): Likewise.
2396 (check_condition): Likewise.
2397 (ppc_linux_can_accel_watchpoint_condition): Likewise
2398 (ppc_linux_insert_watchpoint): Call can_use_watchpoint_cond_accel,
2399 check_condition and calculate_dvc.
2400 (ppc_linux_remove_watchpoint): Likewise.
2401 (_initialize_ppc_linux_nat): Set to_can_accel_watchpoint_condition to
2402 ppc_linux_can_accel_watchpoint_condition
2403 * target.c (debug_to_insert_watchpoint): Add argument for watchpoint
2404 condition.
2405 (debug_to_remove_watchpoint): Likewise.
2406 (debug_to_can_accel_watchpoint_condition): New function.
2407 (update_current_target): Set to_can_accel_watchpoint_condition.
2408 (setup_target_debug): Set to_can_accel_watchpoint_condition.
2409 * target.h: Add opaque declaration for struct expression.
2410 (struct target_ops) <to_insert_watchpoint>,
2411 <to_remove_watchpoint>: Add new arguments to pass the watchpoint
2412 <to_can_accel_watchpoint_condition>: New member.
2413 condition. Update all callers and implementations.
2414 (target_can_accel_watchpoint_condition): New macro.
2415 * value.c (free_value_chain): New function.
2416 * value.h (fetch_subexp_value): New prototype.
2417 (free_value_chain): Likewise.
2418
2419 2010-07-07 Ulrich Weigand <uweigand@de.ibm.com>
2420
2421 * linux-nat.c (linux_nat_do_thread_registers): Use section size
2422 from gdbarch_core_regset_sections also for .reg if present.
2423
2424 * amd64-linux-tdep.c (amd64_linux_regset_sections): Fix incorrect
2425 section size for .reg.
2426 * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
2427 (ppc_linux_vmx_regset_sections): Likewise.
2428 (ppc_linux_fp_regset_sections): Likewise.
2429 (ppc64_linux_vsx_regset_sections): New variable.
2430 (ppc64_linux_vmx_regset_sections): Likewise.
2431 (ppc64_linux_fp_regset_sections): Likewise.
2432 (ppc_linux_init_abi): Install core_regset_section lists appropriate
2433 for current word size.
2434
2435 2010-07-06 Joel Brobecker <brobecker@adacore.com>
2436
2437 * server.c (myresume): Make static.
2438
2439 2010-07-06 Tom Tromey <tromey@redhat.com>
2440
2441 * configure, config.in: Rebuild.
2442 * configure.ac (HAVE_LIBPYTHON2_7): New define.
2443 * python/python-internal.h: Handle HAVE_LIBPYTHON2_7.
2444
2445 2010-07-06 Andreas Schwab <schwab@linux-m68k.org>
2446
2447 * breakpoint.c (_initialize_breakpoint): Add "cl" as alias for
2448 "clear".
2449
2450 2010-07-06 Ken Werner <ken.werner@de.ibm.com>
2451
2452 * gdbtypes.h (floatformats_ieee_half): Add declaration.
2453 * gdbtypes.c (floatformats_ieee_half): New variable.
2454 * doublest.c (floatformat_from_length): Set format to
2455 gdbarch_half_format if length matches.
2456 * gdbarch.sh (half_bit): New architecture method.
2457 (half_format): Likewise.
2458 * gdbarch.h: Regenerate.
2459 * gdbarch.c: Likewise.
2460
2461 2010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2462 Joel Brobecker <brobecker@adacore.com>
2463
2464 Fix re-run of PIE executable, PR shlibs/11776.
2465 * solib-svr4.c (svr4_relocate_main_executable) <symfile_objfile>: Remove
2466 the part of pre-set SYMFILE_OBJFILE->SECTION_OFFSETS.
2467
2468 2010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2469 Joel Brobecker <brobecker@adacore.com>
2470
2471 * auxv.c (memory_xfer_auxv): Update attach comment.
2472 * solib-svr4.c (svr4_special_symbol_handling): Remove the call to
2473 svr4_relocate_main_executable.
2474 (svr4_solib_create_inferior_hook): Make the call to
2475 svr4_relocate_main_executable unconditional.
2476
2477 2010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2478 Joel Brobecker <brobecker@adacore.com>
2479
2480 * auxv.c (ld_so_xfer_auxv): Do not error on failed read of data_address.
2481
2482 2010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2483 Joel Brobecker <brobecker@adacore.com>
2484
2485 Fix attaching to PIEs prelinked on the disk after the process was
2486 started.
2487 * solib-svr4.c (svr4_exec_displacement): New variable arch_size.
2488 Verify it against bfd_get_arch_size. Try to match arbitrary
2489 displacement for the phdrs comparison.
2490
2491 2010-07-02 Tom Tromey <tromey@redhat.com>
2492
2493 PR exp/11780:
2494 * libunwind-frame.c (libunwind_frame_prev_register): Don't set
2495 value as optimized-out.
2496
2497 2010-07-02 Ulrich Weigand <uweigand@de.ibm.com>
2498 Thiago Jung Bauermann <bauerman@br.ibm.com>
2499
2500 * breakpoint.c (can_use_hardware_watchpoint): Answer "what does this
2501 represent?" question in comment. Change comment to a proper sentence.
2502
2503 2010-07-02 Ken Werner <ken.werner@de.ibm.com>
2504
2505 * c-valprint.c (c_val_print): Fix printing of character vectors.
2506
2507 2010-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2508
2509 * spu-tdep.c (spu_catch_start): Adjust the caller of changed
2510 create_breakpoint prototype.
2511
2512 2010-07-01 Pedro Alves <pedro@codesourcery.com>
2513
2514 * breakpoint.c (BREAK_ARGS_HELP, _initialize_breakpoint): Clarify
2515 usefulness suggestion of multiple breakpoints at same location.
2516
2517 2010-07-01 Pedro Alves <pedro@codesourcery.com>
2518
2519 * breakpoint.c (BREAK_ARGS_HELP): Add missing `the'.
2520
2521 2010-07-01 Pedro Alves <pedro@codesourcery.com>
2522
2523 * dwarf2loc.c (locexpr_tracepoint_var_ref)
2524 (loclist_tracepoint_var_ref): Handle optimized out values.
2525
2526 2010-07-01 Pedro Alves <pedro@codesourcery.com>
2527
2528 * breakpoint.c (update_watchpoint, _initialize_breakpoint): Remove
2529 unnecessary space in string.
2530 * filesystem.c (_initialize_filesystem): Ditto.
2531 * frame.c (_initialize_frame): Ditto.
2532 * infcmd.c (step_once): Ditto.
2533 * infrun.c (_initialize_infrun): Ditto.
2534 * linux-nat.c (linux_child_follow_fork): Ditto.
2535 * maint.c (maintenance_deprecate): Ditto.
2536 * memattr.c (_initialize_mem): Ditto.
2537 * mips-tdep.c (_initialize_mips_tdep): Ditto.
2538 * monitor.c (monitor_open): Ditto.
2539 * procfs.c (procfs_xfer_memory): Ditto.
2540 * reverse.c (bookmarks_info): Ditto.
2541 * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs): Ditto.
2542 * stack.c (_initialize_stack): Ditto.
2543 * tracepoint.c (_initialize_tracepoint): Ditto.
2544 * xtensa-tdep.c (xtensa_supply_gregset,
2545 xtensa_regset_from_core_section): Ditto.
2546
2547 2010-07-01 Tom Tromey <tromey@redhat.com>
2548
2549 * value.h (struct lval_funcs) <check_any_valid>: Rename from
2550 check_all_valid.
2551 * value.c (value_entirely_optimized_out): Invert result. Update
2552 for new function name.
2553
2554 2010-07-01 Pedro Alves <pedro@codesourcery.com>
2555
2556 Static tracepoints support.
2557
2558 * NEWS: Mention new support for static tracepoints.
2559 (New packets): Mention qTfSTM, qTsSTM, qTSTMat and
2560 qXfer:statictrace:read.
2561 (New features in the GDB remote stub, GDBserver): Mention static
2562 tracepoints support using an UST based backend.
2563 (New commands): Mention "info static-tracepoint-markers" and
2564 "strace".
2565 * breakpoint.c (is_marker_spec): New.
2566 (is_tracepoint): Handle static tracepoints.
2567 (validate_commands_for_breakpoint): Static tracepoints can't do
2568 while-stepping.
2569 (static_tracepoints_here): New.
2570 (bpstat_what): Handle static tracepoints.
2571 (print_one_breakpoint_location, allocate_bp_location, mention):
2572 Ditto.
2573 (create_breakpoint_sal): Ditto.
2574 (decode_static_tracepoint_spec): New.
2575 (create_breakpoint): Replace `hardwareflag', and `traceflag' with
2576 `type_wanted'. Adjust. Handle static tracepoint marker
2577 locations.
2578 (break_command_1): Adjust.
2579 (update_static_tracepoint): New.
2580 (update_breakpoint_locations): Handle static tracepoints.
2581 (breakpoint_re_set_one): Handle static tracepoint marker
2582 locations.
2583 (disable_command, enable_command): Handle static tracepoints.
2584 (trace_command, ftrace_command): Adjust.
2585 (strace_command): New.
2586 (create_tracepoint_from_upload): Adjust.
2587 (save_breakpoints): Handle static tracepoints.
2588 (_initialize_breakpoint): Install the "strace" command.
2589 * breakpoint.h (enum bptype): New bp_static_tracepoint type.
2590 (struct breakpoint): New fields static_trace_marker_id and
2591 static_trace_marker_id_idx.
2592 (breakpoints_here_p): Declare.
2593 (create_breakpoint): Adjust.
2594 (static_tracepoints_here): Declare.
2595 * remote.c (struct remote_state) <static_tracepoints>: New field.
2596 (PACKET_qXfer_statictrace_read, PACKET_StaticTracepoints): New.
2597 (remote_static_tracepoint_marker_at): New.
2598 (remote_static_tracepoint_markers_by_strid): New.
2599 (remote_static_tracepoint_feature): New.
2600 (remote_disconnected_tracing_feature): Handle "StaticTracepoints".
2601 (remote_xfer_partial): Handle TARGET_OBJECT_STATIC_TRACE_DATA.
2602 (remote_supports_static_tracepoints): New.
2603 (remote_download_tracepoint): Download static tracepoints.
2604 (init_remote_ops): Install remote_static_tracepoint_marker_at and
2605 remote_static_tracepoint_markers_by_strid.
2606 (_initialize_remote): Install set|show remote static-tracepoints,
2607 and set|show remote read-sdata-object commands.
2608 * target.c (update_current_target): Inherit and default
2609 to_static_tracepoint_marker_at, and
2610 to_static_tracepoint_markers_by_strid.
2611 * target.h (static_tracepoint_marker): Forward declare.
2612 (enum target_object): New object TARGET_OBJECT_STATIC_TRACE_DATA.
2613 (static_tracepoint_marker_p): New typedef.
2614 (DEF_VEC_P(static_tracepoint_marker_p)): New VEC type.
2615 (struct target_ops): New fields to_static_tracepoint_marker_at and
2616 to_static_tracepoint_markers_by_strid.
2617 (target_static_tracepoint_marker_at)
2618 (target_static_tracepoint_markers_by_strid): New.
2619 * tracepoint.c: Include source.h.
2620 (validate_actionline): Handle $_sdata.
2621 (struct collection_list): New field strace_data.
2622 (add_static_trace_data): New.
2623 (clear_collection_list): Clear strace_data.
2624 (stringify_collection_list): Account for a possible static trace
2625 data collection.
2626 (encode_actions_1): Encode an $_sdata collection.
2627 (parse_tracepoint_definition): Handle static tracepoints.
2628 (parse_static_tracepoint_marker_definition): New.
2629 (release_static_tracepoint_marker): New.
2630 (print_one_static_tracepoint_marker): New.
2631 (info_static_tracepoint_markers_command): New.
2632 (sdata_make_value): New.
2633 (_initialize_tracepoint): Create the $_sdata convenience variable.
2634 Add the "info static-tracepoint-markers" command.
2635 Mention $_sdata in the "collect" command's help output.
2636 * tracepoint.h (struct static_tracepoint_marker): New.
2637 (parse_static_tracepoint_marker_definition)
2638 (release_static_tracepoint_marker): Declare.
2639 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
2640 * python/py-breakpoint.c (bppy_new): Adjust.
2641
2642 2010-06-30 Joel Brobecker <brobecker@adacore.com>
2643
2644 * python/python-internal.h (_XOPEN_SOURCE): Undefine before
2645 including Python.h.
2646
2647 2010-06-29 Doug Evans <dje@google.com>
2648
2649 PR gdb/11702
2650 * dwarf2read.c (dwarf2_add_field): Only create a symbol if
2651 DW_AT_external is present.
2652
2653 PR gdb/11702
2654 * NEWS: Add entry.
2655 * dwarf2read.c (dwarf2_add_field): If DW_AT_const_value is present,
2656 create a symbol for the field and record the value.
2657 (new_symbol): Handle DW_TAG_member.
2658 * gdbtypes.c (field_is_static): Remove FIXME.
2659 * symtab.c (search_symbols): When searching for VARIABLES_DOMAIN,
2660 only ignore LOC_CONST symbols that are enums.
2661
2662 * dwarf2read.c: Remove trailing whitespace.
2663
2664 Delete FIELD_LOC_KIND_DWARF_BLOCK, unused.
2665 * gdbtypes.h (enum field_loc_kind): Delete FIELD_LOC_KIND_DWARF_BLOCK.
2666 (struct main_type, field loc): Delete dwarf_block.
2667 (FIELD_DWARF_BLOCK): Delete.
2668 (SET_FIELD_DWARF_BLOCK): Delete.
2669 (TYPE_FIELD_DWARF_BLOCK): Delete.
2670 * gdb-gdb.py (StructMainTypePrettyPrinter.struct_field_location_img):
2671 Update.
2672
2673 2010-06-29 Hui Zhu <teawater@gmail.com>
2674
2675 * record.c (set_record_pic_cmdlist,
2676 show_record_pic_cmdlist): New variables.
2677 (set_record_pic_command,
2678 show_record_pic_command): New functions.
2679 (record_pic_function, record_pic_line, record_pic_enum,
2680 set_record_pic_type, record_pic_hide_nofunction,
2681 record_pic_hide_nosource, record_pic_hide_same): New variables.
2682 (record_pic_fputs): New function.
2683 (function_list, node_list, edge_list): New struct.
2684 (function_list, node_list, edge_list): New variables.
2685 (record_pic_cleanups, record_pic_node,
2686 record_pic_edge, cmd_record_pic): New functions.
2687 (_initialize_record): Add new commands for record pic.
2688
2689 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2690
2691 * dwarf2read.c (read_structure_type) <fi.typedef_field_list>: Call
2692 ALLOCATE_CPLUS_STRUCT_TYPE.
2693
2694 2010-06-28 Phil Muldoon <pmuldoon@redhat.com>
2695 Tom Tromey <tromey@redhat.com>
2696 Thiago Jung Bauermann <bauerman@br.ibm.com>
2697
2698 * value.c (pack_unsigned_long): New function.
2699 (value_from_ulongest): New function.
2700 * value.h (value_from_ulongest): Declare.
2701 * python/python.c (_initialize_python): Call
2702 gdbpy_initialize_thread and gdbpy_initialize_inferior.
2703 * python/python-internal.h: Define thread_object.
2704 (gdbpy_inferiors, gdbpy_selected_thread)
2705 (frame_info_to_frame_object, create_thread_object)
2706 (find_thread_object, find_inferior_object)
2707 (gdbpy_initialize_thread, gdbpy_initialize_inferiors)
2708 (gdbpy_is_value_object, get_addr_from_python): Declare.
2709 * python/py-value.c (builtin_type_upylong): Define.
2710 (convert_value_from_python): Add logic for ulongest.
2711 (gdbpy_is_value_object): New function.
2712 * python/py-utils.c (get_addr_from_python): New function.
2713 * python/py-frame.c (frame_info_to_frame_object): Return a PyObject.
2714 (gdbpy_selected_frame): Use PyObject over frame_info.
2715 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-inferior and
2716 py-infthread.
2717 (SUBDIR_PYTHON_SRCS): Likewise.
2718 (py-inferior.o): New Rule.
2719 (py-infthread.o): New Rule.
2720 * python/py-inferior.c: New File.
2721 * python/py-infthread.c: New File.
2722
2723 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2724
2725 * c-typeprint.c (c_type_print_base): For no fields check include also
2726 TYPE_TYPEDEF_FIELD_COUNT. Print new typedefs section.
2727 * dwarf2read.c (struct typedef_field_list)
2728 (struct field_info) <typedef_field_list, typedef_field_list_count>: New.
2729 (dwarf2_add_typedef): New.
2730 (read_structure_type): Call dwarf2_add_typedef for DW_TAG_typedef.
2731 Copy also FI.TYPEDEF_FIELD_LIST.
2732 * gdbtypes.h (struct typedef_field)
2733 (struct cplus_struct_type) <typedef_field, typedef_field_count>
2734 (TYPE_TYPEDEF_FIELD_ARRAY, TYPE_TYPEDEF_FIELD, TYPE_TYPEDEF_FIELD_NAME)
2735 (TYPE_TYPEDEF_FIELD_TYPE, TYPE_TYPEDEF_FIELD_COUNT): New.
2736
2737 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2738
2739 * cp-namespace.c (cp_lookup_nested_type): New variable
2740 concatenated_name. Turn the current return condition into a reverse
2741 one. Call also lookup_static_symbol_aux on the constructed qualified
2742 name.
2743 * symtab.c (lookup_symbol_aux): Move variable objfile and searching in
2744 other files into a called ...
2745 (lookup_static_symbol_aux): ... new function here.
2746 * symtab.h (lookup_static_symbol_aux): New prototype.
2747 * valops.c (value_maybe_namespace_elt): Call also
2748 lookup_static_symbol_aux if we failed otherwise.
2749
2750 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2751
2752 Fix PR c++/11703 and PR gdb/1448.
2753 * c-exp.y (yylex) <last_was_coloncolon && first_was_coloncolon>: Add
2754 FIRST_ITER check.
2755
2756 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2757
2758 Fix modification of cplus_struct_default.
2759 * dwarf2read.c (dwarf2_add_member_fn) <no DW_AT_vtable_elem_location>:
2760 Call ALLOCATE_CPLUS_STRUCT_TYPE.
2761 * gdbtypes.c (cplus_struct_default): New empty initializer, comment it.
2762
2763 2010-06-28 Joel Brobecker <brobecker@adacore.com>
2764
2765 * NEWS: Add entry announcing the python directory.
2766
2767 2010-06-28 Tom Tromey <tromey@redhat.com>
2768
2769 * dwarf2read.c (read_structure_type): Allocate null cleanup later.
2770
2771 2010-06-28 Doug Evans <dje@google.com>
2772
2773 * breakpoint.c (breakpoint_sals_to_pc): Delete arg address, unused.
2774 All callers updated.
2775
2776 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2777
2778 * cp-valprint.c (cp_print_value_fields) <recurse == 0>: Call
2779 obstack_begin after each obstack_free.
2780
2781 2010-06-27 Doug Evans <dje@google.com>
2782
2783 * value.c (value_static_field): Use `switch' instead of `if'.
2784 Assert-fail if passed invalid TYPE_FIELD_LOC_KIND.
2785
2786 * valops.c (search_struct_field): Fix typo in error message.
2787
2788 2010-06-26 Ulrich Weigand <uweigand@de.ibm.com>
2789
2790 * dwarf2expr.c (execute_stack_op): Place preprocessor
2791 directives at the start of the source line.
2792
2793 2010-06-25 Paul Hilfinger <hilfinger@adacore.com>
2794
2795 * defs.h (make_command_stats_cleanup): Declare.
2796 (set_display_time): Declare.
2797 (set_display_space): Declare.
2798 * event-top.c (command_handler): Use make_command_stats_cleanup.
2799 * main.c (display_time, display_space): Move definitions to utils.c.
2800 (captured_main): Use make_command_stats_cleanup to get start-up
2801 statistics.
2802 Use set_display_time and set_display_space for processing OPT_STATISTICS
2803 case.
2804 * maint.c (maintenance_time_display): Use set_display_time.
2805 (maintenance_space_display): Use set_display_space.
2806 * top.c (execute_command): Remove obsolete 'maint time' code.
2807 (command_loop): Use make_command_stats_cleanup.
2808 * utils.c (struct cmd_stats): Structure for storing initial time
2809 and space usage.
2810 (display_time, display_space): Move definitions here from utils.c.
2811 (set_display_time): New function.
2812 (set_display_space): New function.
2813 (make_command_stats_cleanup): New function.
2814 (report_command_stats): New auxiliary function for
2815 make_command_stats_cleanup.
2816
2817 2010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
2818
2819 * solib-spu.c (append_ocl_sos): Fix xsnprintf statement for
2820 hosts where CORE_ADDR is long long.
2821
2822 2010-06-25 Tom Tromey <tromey@redhat.com>
2823
2824 PR python/10808:
2825 * python/python.c (execute_gdb_command): Add keywords. Accept
2826 "to_string" argument.
2827 (struct restore_ui_file_closure): New.
2828 (restore_ui_file): New function.
2829 (make_cleanup_restore_ui_file): Likewise.
2830 (GdbMethods) <execute>: Update.
2831
2832 2010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
2833
2834 * s390-tdep.c (s390_push_dummy_call): Error on stack overflow
2835 during inferior call stack frame setup.
2836
2837 2010-06-25 Ken Werner <ken.werner@de.ibm.com>
2838
2839 * solib-spu.c: Include "exception.h".
2840 (ocl_program_data_key): New variable.
2841 (append_ocl_sos): New function.
2842 (ocl_enable_break): Likewise.
2843 (spu_current_sos): Call append_ocl_sos.
2844 (spu_solib_loaded): Call ocl_enable_break.
2845 (_initialize_spu_solib): Register ocl_program_data_key.
2846
2847 2010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
2848
2849 * cp-support.c (reset_directive_searched): New function.
2850 (make_symbol_overload_list_using): Prevent recursive calls.
2851
2852 2010-06-25 Phil Muldoon <pmuldoon@redhat.com>
2853
2854 * printcmd.c (print_variable_and_value): Print error message on
2855 caught exception.
2856
2857 2010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
2858
2859 * dwarf2expr.h (struct dwarf_value_location): Use ULONGEST as type
2860 of stack values.
2861 (struct dwarf_expr_piece): Rename "expr" member to "mem". Add new
2862 "value" member.
2863 (dwarf_expr_push): Change input type to ULONGEST.
2864 (dwarf_expr_fetch): Change return type to ULONGEST.
2865 (dwarf_expr_fetch_address): Add prototype.
2866 (dwarf2_read_address): Remove prototype.
2867 * dwarf2expr.c (dwarf_expr_push): Use ULONGEST as type of stack values.
2868 Truncate stack values to ctx->addr_size bytes.
2869 (dwarf_expr_fetch): Change return value to ULONGEST.
2870 (dwarf_expr_fetch_address): New function.
2871 (add_piece): Use dwarf_expr_fetch_address instead of dwarf_expr_fetch
2872 when appropriate. Update for struct dwarf_expr_piece changes.
2873 (dwarf2_read_address): Remove.
2874 (unsigned_address_type): Remove.
2875 (signed_address_type): Remove.
2876 (execute_stack_op): Use dwarf_expr_fetch_address instead of
2877 dwarf_expr_fetch when appropriate. Use ULONGEST as type of stack
2878 values. Perform operations on ULONGEST instead of on GDB values,
2879 sign-extending from ctx->addr_size bytes as needed. Read DW_OP_addr
2880 values and DW_OP_deref results as unsigned integers.
2881 * dwarf2loc.c (read_pieced_value): Update for struct dwarf_expr_piece
2882 changes.
2883 (write_pieced_value): Likewise.
2884 (dwarf2_evaluate_loc_desc): Use dwarf_expr_fetch_address instead of
2885 dwarf_expr_fetch when appropriate.
2886 (compile_dwarf_to_ax): Read DW_OP_addr values as unsigned integers.
2887 * dwarf2-frame.c (execute_stack_op): Use dwarf_expr_fetch_address
2888 instead of dwarf_expr_fetch when appropriate.
2889
2890 2010-06-25 Pierre Muller <muller@ics.u-strasbg.fr>
2891
2892 * c-typeprint.c (c_print_typedef): Append new type name for typedefs.
2893
2894 2010-06-24 Joel Brobecker <brobecker@adacore.com>
2895
2896 * python/python.c (_initialize_python): Add new "constant"
2897 PYTHONDIR in gdb module. Insert this path at the head of
2898 sys.path. Set gdb.__path__ to gdb.PYTHONDIR + '/gdb' and
2899 exec its __init__.py script if it exists in that directory.
2900
2901 2010-06-24 Kevin Buettner <kevinb@redhat.com>
2902
2903 * rx-tdep.c (RX_ACC_REGNUM): Define.
2904 (RX_NUM_REGS): Redefine to 26.
2905 (rx_register_name): Add register "acc". Change order of several
2906 registers. Change name of "vct" register to "fintv" to match RX
2907 documentation.
2908 (rx_register_type): Add case for RX_ACC_REGNUM.
2909
2910 2010-06-24 Tom Tromey <tromey@redhat.com>
2911
2912 * psymtab.c (lookup_partial_symbol): Mark definition as static.
2913
2914 2010-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2915 Tom Tromey <tromey@redhat.com>
2916
2917 Fix GDB startup on readonly filesystem.
2918 * charset.c (find_charset_names): Use PEX_USE_PIPES for pex_init.
2919
2920 2010-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2921 Pedro Alves <pedro@codesourcery.com>
2922
2923 Fix PR 9436.
2924 * breakpoint.c (handle_jit_event): New function.
2925 (bpstat_what): Remove enum class, kc, ss, sn, sgl, slr, clr, sr, shl,
2926 jit, err, table and bs_class. New variables shlib_event, jit_event,
2927 this_action and bptype. Change bs_class assignments to this_action
2928 assignments. new unhandled bptype internal error. Move here
2929 shlib_event and jit_event handling from handle_inferior_event.
2930 * breakpoint.h (enum bpstat_what_main_action): Extend the comment.
2931 Reorder items. Remove BPSTAT_WHAT_CHECK_SHLIBS and
2932 BPSTAT_WHAT_CHECK_JIT.
2933 * inferior.h (debug_infrun, stop_on_solib_events): New declarations.
2934 * infrun.c (debug_infrun, stop_on_solib_events): Remove static.
2935 (handle_inferior_event): Reinitialize frame and gdbarch after
2936 bpstat_what call. Move BPSTAT_WHAT_CHECK_SHLIBS and
2937 BPSTAT_WHAT_CHECK_JIT handling to bpstat_what. Reinitialize even
2938 gdbarch when frame gets reinitialized.
2939
2940 2010-06-24 Hui Zhu <teawater@gmail.com>
2941
2942 * printcmd.c (ui_printf): New function.
2943 (printf_command): Call ui_printf.
2944 (_initialize_printcmd): New command "eval".
2945
2946 2010-06-23 Ulrich Weigand <uweigand@de.ibm.com>
2947
2948 * infrun.c (handle_inferior_event): Handle presence of single-step
2949 breakpoints for TARGET_WAITKIND_FORKED and TARGET_WAITKIND_VFORKED.
2950 Cancel single-step breakpoints for TARGET_WAITKIND_EXITED,
2951 TARGET_WAITKIND_SIGNALED, and TARGET_WAITKIND_EXECD.
2952 * breakpoint.c (detach_single_step_breakpoints): New function.
2953 (detach_breakpoints): Call it.
2954 (cancel_single_step_breakpoints): New function.
2955 * breakpoint.h (cancel_single_step_breakpoints): Add prototype.
2956
2957 * spu-tdep.c (spu_memory_remove_breakpoint): New function.
2958 (spu_gdbarch_init): Install it.
2959
2960 2010-06-23 Jan Kratochvil <jan.kratochvil@redhat.com>
2961
2962 * configure.ac: Always set RDYNAMIC at least as `-rdynamic'.
2963 * configure: Regenerate.
2964
2965 2010-06-22 Hui Zhu <teawater@gmail.com>
2966
2967 * i386-tdep.c (i386_record_lea_modrm): Change warning to query.
2968 (i386_process_record): Ditto.
2969 * record.c (record_memory_query): New variable.
2970 (_initialize_record): New command "set record memory-query".
2971 * record.h (record_memory_query): New extern.
2972
2973 2010-06-21 Doug Evans <dje@google.com>
2974
2975 * i386-tdep.h (i386_displaced_step_copy_insn): Declare.
2976 * i386-tdep.c (i386_displaced_step_copy_insn): New function.
2977 (i386_syscall_p): Change type of lengthp to int.
2978 (i386_displaced_step_fixup): Handle kernels that run one past a
2979 syscall insn.
2980 * i386-linux-tdep.c (i386_linux_init_abi): Use
2981 i386_displaced_step_copy_insn instead of
2982 simple_displaced_step_copy_insn.
2983
2984 2010-06-21 Tom Tromey <tromey@redhat.com>
2985
2986 * dwarf2read.c (read_base_type): Handle DW_ATE_UTF.
2987 (dwarf_type_encoding_name): Likewise.
2988
2989 2010-06-21 Tom Tromey <tromey@redhat.com>
2990
2991 * p-valprint.c (pascal_val_print): Use TYPE_ERROR_NAME.
2992 * p-typeprint.c (pascal_type_print_base): Use TYPE_ERROR_NAME.
2993 * m2-valprint.c (m2_val_print): Use TYPE_ERROR_NAME.
2994 * gdbtypes.h (TYPE_ERROR_NAME): New macro.
2995 * f-valprint.c (f_val_print): Use TYPE_ERROR_NAME.
2996 * f-typeprint.c (f_type_print_base): Use TYPE_ERROR_NAME.
2997 * dwarf2read.c (tag_type_to_type): Create a new error type on
2998 failure.
2999 * c-valprint.c (c_val_print): Use TYPE_ERROR_NAME.
3000 * c-typeprint.c (c_type_print_base): Use TYPE_ERROR_NAME.
3001
3002 2010-06-21 Michael Snyder <msnyder@vmware.com>
3003
3004 * breakpoint.c (_initialize_breakpoint): Use add_prefix_cmd,
3005 not add_abbrev_prefix_cmd, for "enable breakpoints".
3006
3007 2010-06-21 Ulrich Weigand <uweigand@de.ibm.com>
3008
3009 * dwarf2loc.c (find_location_expression): Add relocation offset
3010 to base-address-selection entry base addresses. Read addresses
3011 (and offsets) as signed/unsigned integers, depending on the
3012 BFD's sign_extend_vma flag. Do not call dwarf2_read_address.
3013 (loclist_describe_location): Likewise.
3014 (disassemble_dwarf_expression): Read DW_OP_addr operand as
3015 unsigned integer. Do not call dwarf2_read_address.
3016 (locexpr_describe_location): Likewise for DW_OP_GNU_push_tls_address.
3017
3018 2010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
3019
3020 * spu-tdep.c (spu_frame_unwind_cache): Use LSLR register
3021 value instead of hard-coded SPU_LS_SIZE.
3022 (spu_software_single_step): Likewise.
3023 * spu-tdep.h (SPU_LS_SIZE): Remove.
3024
3025 2010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
3026
3027 * spu-multiarch.c (spu_xfer_partial): Wrap around local store
3028 limit on local store memory accesses.
3029 * spu-linux-nat.c (spu_xfer_partial): Likewise.
3030 * spu-tdep.c (spu_lslr): Remove.
3031 (spu_pointer_to_address): Do not truncate addresses.
3032 (spu_integer_to_address): Likewise.
3033 (spu_overlay_new_objfile): Use SPU_OVERLAY_LMA.
3034 * spu-tdep.h: Add comments.
3035 (SPUADDR_SPU): Respect SPU_OVERLAY_LMA bit.
3036 (SPU_OVERLAY_LMA): Define.
3037
3038 2010-06-18 Stan Shebs <stan@codesourcery.com>
3039
3040 * osdata.c (get_osdata): Warn separately if target does not report
3041 type list.
3042 (info_osdata_command): Allow empty type, report error if target
3043 does not return available types of OS data.
3044 * linux-nat.c (linux_nat_xfer_osdata): Report list of OS data
3045 types if no annex supplied.
3046
3047 * thread.c (thread_id_make_value): Make a value representing the
3048 current thread.
3049 (_initialize_thread): Create $_thread.
3050
3051 2010-06-17 Joel Brobecker <brobecker@adacore.com>
3052
3053 * dwarf2read.c (psymtabs_addrmap_cleanup): Add empty line after
3054 last local variable declaration. No real code change.
3055
3056 2010-06-17 Tom Tromey <tromey@redhat.com>
3057
3058 * dwarf2read.c (psymtabs_addrmap_cleanup): New function.
3059 (dwarf2_build_psymtabs_hard): Use it. Create addrmap on a
3060 temporary obstack.
3061
3062 2010-06-16 Sergio Durigan Junior <sergiodj@redhat.com>
3063 Jan Kratochvil <jan.kratochvil@redhat.com>
3064
3065 * breakpoint.c: Include parser-defs.h.
3066 (watchpoint_exp_is_const): New function.
3067 (watch_command_1): Call watchpoint_exp_is_const to check
3068 if the expression is constant.
3069
3070 2010-06-15 Andreas Schwab <schwab@linux-m68k.org>
3071
3072 * configure.ac: Check for RDYNAMIC also for cross builds.
3073 * configure: Regenerate.
3074
3075 2010-06-15 Pedro Alves <pedro@codesourcery.com>
3076
3077 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
3078 (SFILES): Remove solib-null.c, add solib-target.c.
3079 (COMMON_OBS): Remove solib-null.o, add solib-target.o.
3080 (ALLDEPFILES): Remove solib-target.c.
3081 * solib-target.c (_initialize_solib_target): Set
3082 current_target_so_ops to solib_target_so_ops if not already set.
3083 * solib-null.c: Delete.
3084
3085 2010-06-14 Pedro Alves <pedro@codesourcery.com>
3086
3087 * NEWS: Mention GDBserver's JIT compilation of tracepoint
3088 bytecode.
3089
3090 2010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
3091
3092 * cp-valprint.c (cp_print_static_field): Members of
3093 dont_print_stat_array_obstack are of type "struct type *".
3094 (_initialize_cp_valprint): Likewise.
3095
3096 2010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
3097
3098 * frame.c (frame_register_unwind): Do not access contents
3099 of "optimized out" unwound register value.
3100
3101 2010-06-14 Jan Kratochvil <jan.kratochvil@redhat.com>
3102
3103 * ada-lang.h (ada_print_type): Make varstring const.
3104 * ada-typeprint.c (print_func_type): Make name const.
3105 (ada_print_type): Make varstring const.
3106 * c-lang.h (c_print_type): Make varstring const.
3107 * c-typeprint.c (c_print_type): Likewise.
3108 * f-lang.h (f_print_type): Likewise.
3109 * f-typeprint.c (f_print_type): Likewise.
3110 * jv-lang.h (java_print_type): Likewise.
3111 * jv-typeprint.c (java_print_type): Likewise.
3112 * language.c (unk_lang_print_type): Likewise.
3113 * language.h (struct language_defn) <la_print_type>: Likewise.
3114 * m2-lang.h (m2_print_type): Likewise.
3115 * m2-typeprint.c (m2_print_type): Likewise.
3116 * p-lang.h (pascal_print_type): Likewise.
3117 * p-typeprint.c (pascal_print_type): Likewise.
3118
3119 2010-06-11 Stan Shebs <stan@codesourcery.com>
3120
3121 Add per-operation permission flags.
3122
3123 * target.h (struct target_ops): New method to_set_permissions.
3124 (target_set_permissions): New macro.
3125 (target_insert_breakpoint): Change macro to function.
3126 (target_remove_breakpoint): Ditto.
3127 (target_stop): Ditto.
3128 (may_write_registers): Declare.
3129 (may_write_memory): Declare.
3130 (may_insert_breakpoints): Declare.
3131 (may_insert_tracepoints): Declare.
3132 (may_insert_fast_tracepoints): Declare.
3133 (may_stop): Declare.
3134 * target.c (may_write_registers, may_write_registers_1): New globals.
3135 (may_write_memory, may_write_memory_1): New globals.
3136 (may_insert_breakpoints, may_insert_breakpoints_1): New globals.
3137 (may_insert_tracepoints, may_insert_tracepoints_1): New globals.
3138 (may_insert_fast_tracepoints, may_insert_fast_tracepoints_1): New
3139 globals.
3140 (may_stop, may_stop_1): New global.
3141 (target_xfer_partial): Test for write permission.
3142 (target_store_registers): Ditto.
3143 (target_insert_breakpoint): New function.
3144 (target_remove_breakpoint): New function.
3145 (target_stop): New function.
3146 (_initialize_targets): Add new set/show variables.
3147 (set_write_memory_permission): New function.
3148 (update_target_permissions): New function.
3149 (set_target_permissions): New function.
3150 (update_current_target): Default to_set_permissions.
3151 (_initialize_targets): Use new globals and setter function.
3152 * tracepoint.c (start_tracing): Test for permission.
3153 * inferior.h (update_observer_mode): Declare.
3154 * infrun.c (non_stop_1): Define earlier.
3155 (observer_mode, observer_mode_1): New globals.
3156 (set_observer_mode, show_observer_mode): New functions.
3157 (update_observer_mode): New function.
3158 (_initialize_infrun): Define "set observer" command.
3159 * remote.c (PACKET_QAllow): New optional packet.
3160 (remote_protocol_features): Add QAllow.
3161 (remote_set_permissions): New function.
3162 (remote_start_remote): Call it.
3163 (init_remote_ops): Add it to target vector.
3164 (_initialize_remote): Add config command for QAllow.
3165
3166 2010-06-11 Tom Tromey <tromey@redhat.com>
3167
3168 * dwarf2read.c (dwarf2_add_member_fn): Handle correct form of
3169 DW_AT_vtable_elem_location even when GCC extension is seen.
3170
3171 2010-06-11 Tom Tromey <tromey@redhat.com>
3172
3173 PR gdb/9977, PR exp/11636:
3174 * value.h (value_offset): Update.
3175 (struct lval_funcs) <check_validity>: New field.
3176 <copy_closure>: Make argument const.
3177 (value_computed_closure): Update.
3178 (value_contents_for_printing): Declare.
3179 (value_bits_valid): Likewise.
3180 (val_print): Likewise.
3181 (set_value_component_location): Update.
3182 (value_entirely_optimized_out): Declare.
3183 * value.c (value_offset): Argument now const.
3184 (require_not_optimized_out): New function.
3185 (value_contents_for_printing): New function.
3186 (value_contents_all): Call require_not_optimized_out.
3187 (value_contents): Likewise.
3188 (value_bits_valid): New function.
3189 (value_computed_closure): Argument now const.
3190 (set_value_component_location): Make 'whole' argument const.
3191 (value_entirely_optimized_out): New function.
3192 (value_bitsize): Argument now 'const'.
3193 (value_bitpos): Likewise.
3194 (value_type): Likewise.
3195 * valprint.h (val_print_array_elements): Update.
3196 * valprint.c (val_print): Add 'val' argument. Use
3197 valprint_check_validity.
3198 (valprint_check_validity): New function.
3199 (value_check_printable): Use value_entirely_optimized_out.
3200 (common_val_print): Update.
3201 (value_print): Likewise.
3202 (val_print_array_elements): Add 'val' argument.
3203 * valops.c (value_fetch_lazy): Use value_contents_for_printing,
3204 value_bits_valid. Reinit frame cache for lval_computed.
3205 * sh64-tdep.c (sh64_do_register): Update.
3206 * scm-valprint.c (scm_val_print): Add 'val' argument.
3207 * scm-lang.h (scm_val_print): Update.
3208 * python/python.h (apply_val_pretty_printer): Update.
3209 * python/py-prettyprint.c (apply_val_pretty_printer): Add 'val'
3210 argument. Call set_value_component_location.
3211 * printcmd.c (print_scalar_formatted): Update.
3212 * p-valprint.c (pascal_val_print): Add 'val' argument.
3213 (pascal_object_print_value_fields): Likewise.
3214 (pascal_object_print_value): Likewise.
3215 (pascal_object_print_static_field): Update.
3216 * p-lang.h (pascal_val_print): Update.
3217 (pascal_object_print_value_fields): Update.
3218 * mt-tdep.c (mt_registers_info): Update.
3219 * mi/mi-main.c (get_register): Update.
3220 (mi_cmd_data_evaluate_expression): Use common_val_print.
3221 * m2-valprint.c (m2_print_array_contents): Add 'val' argument.
3222 (m2_print_unbounded_array): Likewise.
3223 (m2_val_print): Likewise.
3224 * m2-lang.h (m2_val_print): Update.
3225 * language.h (struct language_defn) <la_val_print>: Add 'val'
3226 argument.
3227 (LA_VAL_PRINT): Likewise.
3228 * language.c (unk_lang_val_print): Add 'val' argument.
3229 * jv-valprint.c (java_print_value_fields): Add 'val' argument.
3230 (java_val_print): Likewise.
3231 * jv-lang.h (java_val_print): Add 'val' argument.
3232 * infcmd.c (default_print_registers_info): Update.
3233 * f-valprint.c (f77_print_array_1): Add 'val' argument.
3234 (f77_print_array): Likewise.
3235 (f_val_print): Likewise.
3236 * f-lang.h (f_val_print): Add 'val' argument.
3237 * dwarf2loc.c (read_pieced_value): Use value_bitsize and
3238 value_bitpos.
3239 <DWARF_VALUE_OPTIMIZED_OUT>: Don't print warning. Call
3240 set_value_optimized_out.
3241 (write_pieced_value): Use value_bitsize and value_bitpos.
3242 <default>: Don't exit loop.
3243 (check_pieced_value_validity): New function.
3244 (pieced_value_funcs): Reference check_pieced_value_validity,
3245 check_pieced_value_invalid.
3246 (copy_pieced_value_closure): Update.
3247 (check_pieced_value_bits): New function.
3248 (check_pieced_value_invalid): New function.
3249 * d-valprint.c (dynamic_array_type): Add 'val' argument.
3250 (d_val_print): Likewise.
3251 * d-lang.h (d_val_print): Update.
3252 * cp-valprint.c (cp_print_value_fields): Add 'val' argument.
3253 (cp_print_value_fields_rtti): Likewise.
3254 (cp_print_value): Likewise.
3255 (cp_print_static_field): Update.
3256 * c-valprint.c (c_val_print): Add 'val' argument.
3257 (c_value_print): Update.
3258 * c-lang.h (c_val_print): Update.
3259 (cp_print_value_fields): Likewise.
3260 (cp_print_value_fields_rtti): Likewise.
3261 * ada-valprint.c (struct ada_val_print_args): Remove.
3262 (val_print_packed_array_elements): Add 'val' argument.
3263 (ada_val_print): Likewise. Rewrite.
3264 (ada_val_print_stub): Remove.
3265 (ada_val_print_array): Add 'val' argument.
3266 (ada_val_print_1): Likewise.
3267 (print_variant_part): Likewise.
3268 (ada_value_print): Update.
3269 (print_record): Add 'val' argument.
3270 (print_field_values): Likewise.
3271 * ada-lang.h (ada_val_print): Update.
3272
3273 2010-06-11 Tom Tromey <tromey@redhat.com>
3274
3275 * vec.h (VEC_cleanup): New macro.
3276 (DEF_VEC_ALLOC_FUNC_I): Update.
3277 (DEF_VEC_ALLOC_FUNC_P): Likewise.
3278 (DEF_VEC_ALLOC_FUNC_O): Likewise.
3279 * dwarf2loc.c (struct axs_var_loc): Remove.
3280 (unimplemented): New function.
3281 (translate_register): Likewise.
3282 (access_memory): Likewise.
3283 (compile_dwarf_to_ax): Likewise.
3284 (dwarf2_tracepoint_var_loc): Remove.
3285 (dwarf2_tracepoint_var_access): Likewise.
3286 (dwarf2_tracepoint_var_ref): Likewise.
3287 (locexpr_tracepoint_var_ref): Use compile_dwarf_to_ax.
3288 (loclist_tracepoint_var_ref): Likewise.
3289 * dwarf2expr.h (dwarf_expr_require_composition): Declare.
3290 * dwarf2expr.c (dwarf_expr_require_composition): Rename from
3291 require_composition. No longer static.
3292 (execute_stack_op): Update.
3293 * ax-gdb.h (trace_kludge): Declare.
3294
3295 2010-06-11 Jan Kratochvil <jan.kratochvil@redhat.com>
3296
3297 * breakpoint.c (breakpoint_restore_shadows): New OWNER comment.
3298 (should_be_inserted): Return zero also on NULL OWNER.
3299 (breakpoint_program_space_exit): New OWNER comment.
3300 (insert_breakpoint_locations): Extend comment for OWNER.
3301 (remove_breakpoint_1, remove_breakpoint): Assert on OWNER.
3302 (breakpoint_init_inferior, breakpoint_here_p, breakpoint_thread_match):
3303 New OWNER comment.
3304 (print_it_typical): Return PRINT_UNKNOWN on NULL OWNER.
3305 (watchpoint_check): New assert on BREAKPOINT_AT and OWNER.
3306 (bpstat_check_location): New assert on OWNER.
3307 (bpstat_check_watchpoint, bpstat_check_breakpoint_conditions): Move BL
3308 and B initializations to the code block. New assert on them.
3309 (print_one_breakpoint_location): New OWNER comment.
3310 (watchpoint_locations_match): Assert on OWNER.
3311 (breakpoint_locations_match): Move HW_POINT1 and HW_POINT2
3312 initializations to the code block. New assert on OWNER.
3313 (set_breakpoint_location_function): New assert on OWNER.
3314 (disable_breakpoints_in_shlibs, disable_breakpoints_in_unloaded_shlib)
3315 (bp_location_compare, update_global_location_list)
3316 (update_global_location_list): New OWNER comment.
3317
3318 2010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
3319
3320 * Makefile.in (HFILES_NO_SRCDIR): Remove config/i386/nm-linux.h
3321
3322 2010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
3323
3324 * config/nm-linux.h (struct target_ops): Remove forward declaration.
3325 (lin_thread_get_thread_signals): Remove prototype.
3326 (GET_THREAD_SIGNALS): Remove.
3327 * linux-nat.h (lin_thread_get_thread_signals): Add prototype.
3328 * linux-thread-db.c (check_thread_signals): Directly call
3329 lin_thread_get_thread_signals; do not check GET_THREAD_SIGNALS.
3330
3331 2010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
3332
3333 * gregset.h (GDB_FPXREGSET_T): Remove.
3334 (gdb_fpxregset_t): Likewise.
3335 (supply_fpxregset): Remove prototype.
3336 (fill_fpxregset): Likewise.
3337 * i386-linux-nat.c (supply_fpxregset): Remove.
3338 (fill_fpxregset): Likewise.
3339 (fetch_fpxregs): Inline supply_fpxregset call.
3340 (store_fpxregs): Inline fill_fpxregset call.
3341
3342 * config/i386/linux.mh: Set NAT_FILE to config/nm-linux.h.
3343 * config/i386/nm-linux.h: Remove file.
3344
3345 2010-06-09 Michael Snyder <msnyder@vmware.com>
3346
3347 * target.c (update_current_target): Fix spelling error in comment.
3348 (target_mourn_inferior): Fix spelling error in error message.
3349
3350 2010-06-08 Paul Hilfinger <hilfingr@adacore.com>
3351
3352 * dictionary.h (dict_iter_name_first, dict_iter_name_next): Refer to
3353 SYMBOL_SEARCH_NAME, not SYMBOL_BEST_NAME, in comments.
3354
3355 2010-06-08 Michael Snyder <msnyder@vmware.com>
3356
3357 * remote.c (remote_close): Set inferior_ptid to null_ptid.
3358
3359 2010-06-08 Jan Kratochvil <jan.kratochvil@redhat.com>
3360
3361 * configure.ac <"${have_libpython}" != no>: New workaround of
3362 python#4434.
3363 * configure: Regenerate.
3364
3365 2010-06-08 Hui Zhu <teawater@gmail.com>
3366
3367 * record.c (record_wait): Move signal out of replay code.
3368
3369 2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3370
3371 Fix PR 10640.
3372 * dwarf2-frame.c (no_dwarf_call): New function.
3373 (execute_stack_op): Set CTX->DWARF_CALL.
3374 * dwarf2expr.c (execute_stack_op) <DW_OP_call2, DW_OP_call4>: New.
3375 * dwarf2expr.h (struct dwarf_expr_context) <dwarf_call>: New.
3376 (struct dwarf_expr_context) <get_subr>: Remove the #if0-ed field.
3377 * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call): New functions.
3378 (dwarf2_evaluate_loc_desc): Initialize CTX->DWARF_CALL.
3379 (needs_frame_dwarf_call): New function.
3380 (dwarf2_loc_desc_needs_frame): Initialize CTX->DWARF_CALL.
3381 * dwarf2read.c (follow_die_offset): Based on former follow_die_ref.
3382 Update the comment. Move variables die, offset and error call to ...
3383 (follow_die_ref): ... a new function.
3384 (dwarf2_fetch_die_location_block): New function.
3385 * dwarf2loc.h (dwarf2_fetch_die_location_block): New prototype.
3386
3387 2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3388
3389 * dwarf2loc.c (struct dwarf_expr_baton) Replace objfile by per_cu.
3390 (dwarf_expr_tls_address): Use per_cu instead of objfile.
3391 (dwarf2_evaluate_loc_desc): Drop initialization of BATON.OBJFILE.
3392 Initialize new BATON.PER_CU. Adjust CTX->GDBARCH initialization for
3393 this change.
3394 (struct needs_frame_baton): New field per_cu.
3395 (dwarf2_loc_desc_needs_frame): Initialize new BATON.PER_CU.
3396 * dwarf2read.c (struct dwarf2_per_cu_data) <cu>: Extend the comment.
3397
3398 2010-06-07 Sami Wagiaalla <swagiaal@redhat.com>
3399
3400 * cp-support.c (make_symbol_overload_list_namespace): Only search
3401 static and global blocks.
3402 (make_symbol_overload_list_block): New function.
3403 (make_symbol_overload_list): Separate namespace search from block
3404 search.
3405 (make_symbol_overload_list_qualified): Use
3406 make_symbol_overload_list_block.
3407
3408 2010-06-07 Sami Wagiaalla <swagiaal@redhat.com>
3409
3410 * value.h: Created oload_search_type enum.
3411 (find_overload_match): Use oload_search_type enum.
3412 * valops.c (find_overload_match): Support combined member and
3413 non-member search.
3414 * eval.c (evaluate_subexp_standard): Calls to
3415 find_overload_match now use oload_search_type enum.
3416 (oload_method_static): Verify index is a proper value.
3417 * valarith.c (value_user_defined_cpp_op): Search for and handle
3418 both member and non-member operators.
3419 (value_user_defined_cpp_op): New function.
3420 (value_user_defined_op): New function.
3421 (value_x_unop): Use value_user_defined_op.
3422 (value_x_binop): Ditto.
3423 * cp-support.c (make_symbol_overload_list_using): Added block
3424 iteration.
3425 Add check for namespace aliases and imported declarations.
3426
3427 2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3428
3429 * breakpoint.h (owner): Extend the comment.
3430
3431 2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3432
3433 Clear stale specific bp_location from former whole breakpoint.
3434 * breakpoint.c (delete_breakpoint): Move the stale referencing clear
3435 code ...
3436 (free_bp_location): ... here. Rename there the called function to
3437 bpstat_remove_bp_location_callback.
3438 (bpstat_remove_breakpoint_callback): Rename to ...
3439 (bpstat_remove_bp_location_callback): ... here, change DATA resolution
3440 to struct bp_location. Change the called function to
3441 bpstat_remove_bp_location. Create new declaration for the function.
3442 (bpstat_remove_breakpoint): Rename to ...
3443 (bpstat_remove_bp_location): ..., change the parameter to loc, adjust
3444 code for the new parameter type.
3445
3446 2010-06-07 Nathan Sidwell <nathan@codesourcery.com>
3447
3448 * README: Make version-agnostic.
3449
3450 2010-06-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3451
3452 Fix duplicate types for single DIE.
3453 * dwarf2read.c (read_structure_type): Move set_descriptive_type after
3454 set_die_type.
3455 (read_array_type): Remove type initialization. Recheck get_die_type
3456 after initial die_type. Move set_die_type before set_descriptive_type.
3457 (read_set_type): New variable domain_type. Recheck get_die_type after
3458 initial die_type. Move attr initialization later.
3459 (read_tag_pointer_type, read_tag_reference_type): New variable
3460 target_type. Recheck get_die_type after initial die_type.
3461 (read_tag_ptr_to_member_type): Recheck get_die_type after initial
3462 die_type and die_containing_type.
3463 (read_tag_const_type, read_tag_volatile_type, read_subroutine_type):
3464 Recheck get_die_type after initial die_type.
3465 (read_subrange_type): Recheck get_die_type after initial die_type.
3466 Move set_die_type before set_descriptive_type.
3467 (set_die_type): Extend the function comment. Call complaint if DIE has
3468 some type already set.
3469
3470 2010-06-05 Vladimir Prus <vladimir@codesourcery.com>
3471
3472 * mi/mi-main.c (mi_cmd_list_thread_groups): Adjust
3473 for current naming of thread groups (iN, not N).
3474
3475 2010-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
3476
3477 * ada-lang.c (ada_operator_length): Constify `struct expression'.
3478 * parse.c (operator_length): Likewise.
3479 (operator_length_standard): Likewise.
3480 * parser-defs.h (operator_length): Likewise.
3481 (operator_length_standard): Likewise.
3482 (struct exp_descriptor <operator_length>): Likewise.
3483
3484 2010-06-04 Doug Evans <dje@google.com>
3485
3486 Add support for enabling/disabling individual pretty-printers.
3487 * python/py-prettyprint.c (search_pp_list): Skip disabled printers.
3488 * python/python-internal.h (gdbpy_enabled_cst): Declare.
3489 * python/python.c (gdbpy_enabled_cst): Define.
3490 (_initialize_python): Initialize gdbpy_enabled_cst.
3491 * NEWS: Add entry.
3492
3493 2010-06-04 Jan Kratochvil <jan.kratochvil@redhat.com>
3494
3495 * breakpoint.c (update_global_location_list): Fix comment typo.
3496
3497 2010-06-04 Hui Zhu <teawater@gmail.com>
3498
3499 * dwarf2loc.c (disassemble_dwarf_expression): Change ul to l.
3500
3501 2010-06-03 Doug Evans <dje@google.com>
3502
3503 * configure.ac: Don't fail if python is unusable when
3504 configured with --with-python=auto.
3505 * configure: Regenerate.
3506
3507 2010-06-03 Sami Wagiaalla <swagiaal@redhat.com>
3508
3509 * dwarf2read.c (new_symbol): Remove redundant naming of symbol.
3510
3511 2010-06-03 Pierre Muller <muller@ics.u-strasbg.fr>
3512
3513 * valprint.h (get_array_bounds): Change low and high parameter types
3514 to LONGEST *.
3515 * valprint.c (get_array_bounds): Use get_discrete_bounds call to
3516 compute bounds.
3517 (val_print_array_elements): Adapt to change above.
3518 * ada-valprint.c (print_optional_low_bound): Adapt to change above.
3519 * p-valprint.c (pascal_val_print): Likewise.
3520
3521 2010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3522
3523 * symfile.c (init_filename_language_table): New extensions .for, .FOR,
3524 .ftn, .FTN, .fpp, .FPP, .f90, .F90, .f95, .F95, .f03, .F03, .f08 and
3525 .F08.
3526
3527 2010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3528
3529 Support DW_TAG_module as separate namespaces.
3530 * dwarf2read.c (typename_concat): New parameter physname.
3531 (read_module_type): New function and declaration.
3532 (scan_partial_symbols): Scan also DW_TAG_module children.
3533 (partial_die_parent_scope): Accept scope even from DW_TAG_module. Pass
3534 to typename_concat backward compatible physname value 0.
3535 (partial_die_full_name, read_namespace_type): Pass to typename_concat
3536 backward compatible physname value 0.
3537 (add_partial_module, read_module): Remove FIXME comment.
3538 (process_die) <DW_TAG_module>: Set PROCESSING_HAS_NAMESPACE_INFO.
3539 (die_needs_namespace) <DW_TAG_variable>: Allow returning true even for
3540 DIEs under DW_TAG_module.
3541 (dwarf2_compute_name): Move the ada block for DW_AT_linkage_name and
3542 DW_AT_MIPS_linkage_name first, extend it for language_fortran
3543 && physname and return there instead of just setting NAME. Extend
3544 the main block for language_fortran. Pass physname parameter to the
3545 typename_concat call.
3546 (read_import_statement, read_func_scope, get_scope_pc_bounds)
3547 (load_partial_dies, determine_prefix): Support also DW_TAG_module.
3548 (new_symbol): Fill in cplus_specific.demangled_name if it is still
3549 missing from SYMBOL_SET_NAMES in the language_fortran case.
3550 (new_symbol) <DW_TAG_variable>: Force LOC_UNRESOLVED for gfortran module
3551 variables.
3552 (read_type_die) <DW_TAG_module>: New.
3553 (MAX_SEP_LEN): Increase to 7.
3554 (typename_concat): New parameter physname. New variable lead. Support
3555 also language_fortran.
3556 * f-exp.y (yylex): Consider : also as a symbol name character class.
3557 * f-lang.c: Include cp-support.h.
3558 (f_word_break_characters, f_make_symbol_completion_list): New functions.
3559 (f_language_defn): Use cp_lookup_symbol_nonlocal,
3560 f_word_break_characters and f_make_symbol_completion_list.
3561 * f-typeprint.c (f_type_print_base) <TYPE_CODE_MODULE>: New.
3562 * gdbtypes.h (enum type_code) <TYPE_CODE_MODULE>: New.
3563 * symtab.c (symbol_init_language_specific): Support language_fortran.
3564 (symbol_find_demangled_name): New comment on language_fortran.
3565 (symbol_natural_name, symbol_demangled_name): Use demangled_name even
3566 for language_fortran.
3567 (lookup_symbol_aux_local): Check imports also for language_fortran.
3568 (default_make_symbol_completion_list): Rename to ...
3569 (default_make_symbol_completion_list_break_on): ... this name. New
3570 parameter break_on, use it.
3571 (default_make_symbol_completion_list): New stub.
3572 * symtab.h (default_make_symbol_completion_list_break_on): New
3573 prototype.
3574
3575 2010-06-02 Joel Brobecker <brobecker@adacore.com>
3576
3577 * remote.c (remote_get_noisy_reply): Remove trailing "\n" in call
3578 to error.
3579
3580 2010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3581
3582 * dwarf2read.c (typename_concat): Add const to the variable sep.
3583
3584 2010-06-02 Tom Tromey <tromey@redhat.com>
3585
3586 * dwarf2loc.h (dwarf2_per_cu_data): Declare.
3587 * dwarf2read.c (dwarf_stack_op_name): No longer static. Return
3588 type is const. Add 'def' argument. Add missing operators, remove
3589 unhandled ones.
3590 (decode_locdesc): Update.
3591 (dwarf2_always_disassemble): New global.
3592 (show_dwarf2_always_disassemble): New function.
3593 (_initialize_dwarf2_read): Add always-disassemble.
3594 (dwarf2_per_cu_offset_size): New function.
3595 * dwarf2loc.c (dwarf2_always_disassemble): Declare.
3596 (piece_end_p): New function.
3597 (locexpr_describe_location_piece): Replace 'size' argument with
3598 'end'. Use piece_end_p. Rewrite recognition of TLS. Recognize
3599 some constants. Remove errors.
3600 (disassemble_dwarf_expression): New function.
3601 (locexpr_describe_location_1): Use disassemble_dwarf_expression.
3602 Add 'offset_size' argument.
3603 (loclist_describe_location): Change output formatting.
3604 * dwarf2expr.h (dwarf_stack_op_name): Declare.
3605
3606 2010-06-02 Sami Wagiaalla <swagiaal@redhat.com>
3607
3608 * cp-support.c (make_symbol_overload_list_adl_namespace): Handle
3609 anonymous type case.
3610
3611 2010-06-02 Pierre Muller <muller@ics.u-strasbg.fr>
3612
3613 * dwarf2read.c (read_subrange_type): Handle missing base type
3614 according to Dwarf-2 specifications.
3615
3616 2010-06-01 Sergio Durigan Junior <sergiodj@redhat.com>
3617
3618 * expprint.c (print_subexp_standard): Remove exp_opcodes BINOP_INCL,
3619 BINOP_EXCL.
3620 (op_name_standard): Remove exp_opcodes BINOP_INCL, BINOP_EXCL,
3621 UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH.
3622 (dump_subexp_body_standard): Remove exp_opcodes BINOP_INCL,
3623 BINOP_EXCL, UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH, UNOP_CARD,
3624 UNOP_CHMAX, UNOP_CHMIN.
3625 * expression.h (enum exp_opcode) <BINOP_INCL, BINOP_EXCL,
3626 UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH, UNOP_CARD, UNOP_CHMAX,
3627 UNOP_CHMIN>: Remove opcodes.
3628
3629 2010-06-01 Pierre Muller <muller@ics.u-strasbg.fr>
3630
3631 * dwarf2read.c (read_func_scope): Do not complain for
3632 external function if bounds are not found.
3633
3634 2010-06-01 Pedro Alves <pedro@codesourcery.com>
3635
3636 * NEWS: Mention gdbserver fast tracepoints support.
3637
3638 2010-05-31 Pierre Muller <muller@ics.u-strasbg.fr>
3639
3640 * windows-nat.c (GetConsoleFontSize, GetCurrentConsoleFont):
3641 New macros.
3642 (windows_set_console_info): New function.
3643 (windows_create_inferior): Call windows_set_console_info
3644 if NEW_CONSOLE is true.
3645 (bad_GetCurrentConsoleFont, bad_GetConsoleFontSize): New functions.
3646 (_initialize_loadable): Initialize GetConsoleFontSize and
3647 GetCurrentConsoleFont.
3648
3649 2010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3650
3651 * Makefile.in (RDYNAMIC): New.
3652 (SFILES): Add proc-service.list.
3653 * config/alpha/alpha-linux.mh (NAT_CDEPS): New.
3654 (LOADLIBES): Replace -rdynamic by $(RDYNAMIC).
3655 * config/arm/linux.mh: Likewise.
3656 * config/i386/linux.mh: Likewise.
3657 * config/i386/linux64.mh: Likewise.
3658 * config/ia64/linux.mh: Likewise.
3659 * config/m32r/linux.mh: Likewise.
3660 * config/m68k/linux.mh: Likewise.
3661 * config/mips/linux.mh: Likewise.
3662 * config/pa/linux.mh: Likewise.
3663 * config/powerpc/linux.mh: Likewise.
3664 * config/powerpc/ppc64-linux.mh: Likewise.
3665 * config/s390/s390.mh: Likewise.
3666 * config/sparc/linux.mh: Likewise.
3667 * config/sparc/linux64.mh: Likewise.
3668 * config/xtensa/linux.mh: Likewise.
3669 * configure.ac: New RDYNAMIC on native host and GCC.
3670 (solaris*): Replace -Wl,-export-dynamic by $RDYNAMIC.
3671 * configure: Regenerate.
3672 * proc-service.list: New.
3673
3674 2010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3675
3676 * linux-nat.c (linux_nat_core_of_thread_1): Fix crash on invalid
3677 CONTENT.
3678
3679 2010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3680
3681 * linux-nat.c (linux_nat_wait_1): Do not call
3682 linux_nat_core_of_thread_1 on TARGET_WAITKIND_EXITED or
3683 TARGET_WAITKIND_SIGNALLED.
3684
3685 2010-05-27 Joel Brobecker <brobecker@adacore.com>
3686
3687 * ada-lang.c (ada_inferior_data): New struct.
3688 (ada_inferior_data): New static global.
3689 (ada_inferior_data_cleanup, get_ada_inferior_data, ada_inferior_exit)
3690 (ada_get_tsd_type): New functions.
3691 (ada_tag_name_2): Use ada_get_tsd_type instead of ada_find_any_type
3692 to look the tsd type up.
3693 (_initialize_ada_language): Attach ada_inferior_exit to inferior_exit
3694 event. Set ada_inferior_data.
3695
3696 2010-05-27 Pedro Alves <pedro@codesourcery.com>
3697
3698 * remote.c (unpack_varlen_hex): Remove forward declaration.
3699 (remote_console_output): Make static, and add forward declaration.
3700 * remote.h: Drop FIXME comment.
3701 (unpack_varlen_hex): Declare.
3702 (remote_console_output, remote_cisco_objfile_relocate)
3703 (deprecated_target_resume_hook, deprecated_target_wait_loop_hook):
3704 Delete declarations.
3705 * tracepoint.c: Include "remote.h".
3706 (unpack_varlen_hex): Delete declaration.
3707
3708 2010-05-27 Tom Tromey <tromey@redhat.com>
3709
3710 * dwarf2loc.c (struct piece_closure) <refc>: New field.
3711 (allocate_piece_closure): Initialize refc.
3712 (copy_pieced_value_closure): Use refc.
3713 (free_pieced_value_closure): Likewise.
3714
3715 2010-05-27 Tom Tromey <tromey@redhat.com>
3716
3717 * arm-tdep.c (push_stack_item): 'contents' now const.
3718 (arm_push_dummy_call): Make 'val' const. Use value_contents, not
3719 value_contents_writeable. Introduce new temporary.
3720
3721 2010-05-27 Tom Tromey <tromey@redhat.com>
3722
3723 * findcmd.c (parse_find_args): Use value_contents, not
3724 value_contents_raw.
3725
3726 2010-05-27 Tom Tromey <tromey@redhat.com>
3727
3728 * alpha-tdep.c (alpha_push_dummy_call): Make alpha_arg.contents
3729 const. Use value_contents, not value_contents_writeable.
3730
3731 2010-05-27 Joel Brobecker <brobecker@adacore.com>
3732
3733 * ada-lang.c (ensure_lval): Replace call to value_contents_raw
3734 by call to value_contents.
3735
3736 2010-05-27 Ozkan Sezer <sezeroz@gmail.com>
3737
3738 * MAINTAINERS: Add myself for write after approval privileges.
3739
3740 2010-05-26 Doug Evans <dje@google.com>
3741
3742 Allow python to find its files if moved from original location.
3743 * acinclude.m4 (GDB_AC_DEFINE_RELOCATABLE): New function.
3744 (GDB_AC_WITH_DIR): Call it.
3745 * configure.ac: Define WITH_PYTHON_PATH if we can find the
3746 python installation directory.
3747 * config.in: Regenerate.
3748 * configure: Regenerate.
3749 * defs.h (python_libdir): Declare.
3750 * main.c (python_libdir): Define.
3751 (captured_main): Initialize python_libdir.
3752 * python/python.c (_initialize_python): #ifdef WITH_PYTHON_PATH,
3753 call Py_SetProgramName to make sure python can find its libraries
3754 and modules.
3755
3756 * configure.ac: Try to use python's distutils to fetch compilation
3757 parameters.
3758 * configure: Regenerate.
3759 * python/python-config.py: New file.
3760
3761 2010-05-26 Ozkan Sezer <sezeroz@gmail.com>
3762
3763 * ser-tcp.c (net_open): Check error return from socket() call by its
3764 equality to -1 not by it being negative.
3765 (net_close): Likewise.
3766
3767 2010-05-26 Pedro Alves <pedro@codesourcery.com>
3768
3769 * NEWS: Mention the `qRelocInsn' feature.
3770 * gdbarch.sh (relocate_instruction): New.
3771 * amd64-tdep.c (rip_relative_offset): New.
3772 (append_insns): New.
3773 (amd64_relocate_instruction): New.
3774 (amd64_init_abi): Install it.
3775 * i386-tdep.c (append_insns): New.
3776 (i386_relocate_instruction): New.
3777 (i386_gdbarch_init): Install it.
3778 * remote.c (remote_get_noisy_reply): Handle qRelocInsn requests.
3779 * gdbarch.h, gdbarch.c: Regenerate.
3780
3781 2010-05-26 Tom Tromey <tromey@redhat.com>
3782
3783 * dwarf2loc.h (struct dwarf2_locexpr_baton) <data>: Now const.
3784 (struct dwarf2_loclist_baton) <data>: Likewise.
3785 * dwarf2loc.c (find_location_expression): Constify return type.
3786 (dwarf2_evaluate_loc_desc): Make 'data' argument const.
3787 (dwarf2_loc_desc_needs_frame): Likewise.
3788 (loclist_read_variable): Constify.
3789 (loclist_describe_location): Likewise.
3790 (loclist_tracepoint_var_ref): Likewise.
3791
3792 2010-05-25 Tom Tromey <tromey@redhat.com>
3793
3794 * dwarf2loc.c (dwarf_expr_frame_base): Constify.
3795 (dwarf_expr_frame_base_1): Likewise.
3796 (read_pieced_value): Update.
3797 (needs_frame_frame_base): Constify.
3798 (dwarf2_tracepoint_var_loc): Likewise.
3799 (dwarf2_tracepoint_var_access): Likewise.
3800 (locexpr_describe_location_piece): Likewise.
3801 (locexpr_describe_location_1): Likewise.
3802 * dwarf2expr.h (struct dwarf_expr_context) <get_frame_base>:
3803 Constify.
3804 (data): Now const.
3805 (struct dwarf_expr_piece) <v.literal.data>: Likewise.
3806 (dwarf_expr_eval, read_uleb128, read_sleb128)
3807 (dwarf2_read_address): Update.
3808 * dwarf2expr.c (dwarf_expr_eval): Constify.
3809 (read_uleb128): Likewise.
3810 (read_sleb128): Likewise.
3811 (dwarf2_read_address): Likewise.
3812 (require_composition): Likewise.
3813 (execute_stack_op): Likewise.
3814 * dwarf2-frame.h (struct dwarf2_frame_state_reg) <loc.exp>: Now a
3815 "const gdb_byte *".
3816 * dwarf2-frame.c (struct dwarf2_frame_state_reg_info) <cfa_exp>:
3817 Now const.
3818 (no_get_frame_base): Constify.
3819 (execute_stack_op): Likewise.
3820 (execute_cfa_program): Likewise.
3821 (read_encoded_value): Likewise.
3822
3823 2010-05-25 Doug Evans <dje@google.com>
3824
3825 * ser-pipe.c (pipe_open): Ignore SIGINTs in child.
3826
3827 * event-loop.h (GDB_READABLE, GDB_WRITABLE, GDB_EXCEPTION): Move to ...
3828 * event-loop.c: ... here.
3829 * tui/tui-io.c (tui_readline_output): Rename parameter `code' to
3830 `error' for clarity.
3831 (tui_getc): Pass correct value for `error' parameter to
3832 tui_readline_output.
3833
3834 Add python gdb.GdbError and gdb.string_to_argv.
3835 * NEWS: Document them.
3836 * python/py-cmd.c (cmdpy_function): Don't print a traceback if
3837 the exception is gdb.GdbError. Print a second traceback if there's
3838 an error computing the error message.
3839 (gdbpy_string_to_argv): New function.
3840 * python/py-utils.c (gdbpy_obj_to_string): New function.
3841 (gdbpy_exception_to_string): New function.
3842 * python/python-internal.h (gdbpy_string_to_argv): Declare.
3843 (gdbpy_obj_to_string, gdbpy_exception_to_string): Declare.
3844 (gdbpy_gdberror_exc): Declare.
3845 * python/python.c (gdbpy_gdberror_exc): New global.
3846 (_initialize_python): Initialize gdbpy_gdberror_exc and create
3847 gdb.GdbError.
3848 (GdbMethods): Add string_to_argv.
3849
3850 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
3851
3852 * windows-nat.c (display_selector): Call GetLastError to give better
3853 failure explanation.
3854
3855 2010-05-24 Pedro Alves <pedro@codesourcery.com>
3856
3857 * config.in: Regenerate.
3858
3859 2010-05-23 Jan Kratochvil <jan.kratochvil@redhat.com>
3860
3861 Code cleanup.
3862 * target.c (push_target): Return only void. Remove the return value
3863 comment.
3864 * target.h (push_target): Return only void.
3865
3866 2010-05-23 Pedro Alves <pedro@codesourcery.com>
3867
3868 Update gnulib from latest git.
3869 (250b80067c1e1d8faa0c42fb572f721975b929c5)
3870
3871 * gnulib/memcmp.c: Removed.
3872 * gnulib/memchr.valgrind: New.
3873 * gnulib/stddef.in.h: New.
3874 * gnulib/Makefile.am: Updated.
3875 * gnulib/memchr.c: Updated.
3876 * gnulib/memmem.c: Updated.
3877 * gnulib/stdint.in.h: Updated.
3878 * gnulib/str-two-way.h: Updated.
3879 * gnulib/string.in.h: Updated.
3880 * gnulib/wchar.in.h: Updated.
3881
3882 * gnulib/extra/link-warning.h: Removed.
3883 * gnulib/extra/c++defs.h: New.
3884 * gnulib/extra/warn-on-use.h: New.
3885 * gnulib/extra/arg-nonnull.h: Updated.
3886
3887 * gnulib/m4/extensions.m4: Updated.
3888 * gnulib/m4/gnulib-cache.m4: Updated.
3889 * gnulib/m4/gnulib-common.m4: Updated.
3890 * gnulib/m4/gnulib-comp.m4: Updated.
3891 * gnulib/m4/gnulib-tool.m4: Updated.
3892 * gnulib/m4/include_next.m4: Updated.
3893 * gnulib/m4/longlong.m4: Updated.
3894 * gnulib/m4/memchr.m4: Updated.
3895 * gnulib/m4/memmem.m4: Updated.
3896 * gnulib/m4/stdint.m4: Updated.
3897 * gnulib/m4/string_h.m4: Updated.
3898 * gnulib/m4/memcmp.m4: Removed.
3899 * gnulib/m4/onceonly_2_57.m4: Removed.
3900 * gnulib/m4/00gnulib.m4: New.
3901 * gnulib/m4/mmap-anon.m4: New.
3902 * gnulib/m4/multiarch.m4: New.
3903 * gnulib/m4/onceonly.m4: New.
3904 * gnulib/m4/stddef_h.m4: New.
3905 * gnulib/m4/warn-on-use.m4: New.
3906 * gnulib/m4/wchar.m4: Removed.
3907 * gnulib/m4/wchar_h.m4: New.
3908 * gnulib/m4/wchar_t.m4: New.
3909 * gnulib/m4/wint_t.m4: New.
3910
3911 * aclocal.m4: Regenerate.
3912 * config.in: Likewise.
3913 * configure: Likewise.
3914 * gnulib/Makefile.in: Likewise.
3915
3916 2010-05-21 Tom Tromey <tromey@redhat.com>
3917
3918 * dwarf2loc.c (extract_bits_primitive): New function.
3919 (extract_bits): Likewise.
3920 (insert_bits): Likewise.
3921 (copy_bitwise): Likewise.
3922 (read_pieced_value): Do all operations in bits.
3923 (write_pieced_value): Likewise.
3924 * dwarf2expr.h (struct dwarf_expr_piece) <offset>: New field.
3925 * dwarf2expr.c (add_piece): New arguments bit_piece, offset.
3926 Always use xrealloc to resize piece array.
3927 (execute_stack_op) <DW_OP_reg0>: Handle DW_OP_bit_piece.
3928 <DW_OP_piece>: Update.
3929 <DW_OP_bit_piece>: New case.
3930
3931 2010-05-21 Tom Tromey <tromey@redhat.com>
3932
3933 * dwarf2loc.c (read_pieced_value): Exit loop when result is full.
3934 <DWARF_VALUE_OPTIMIZED_OUT>: New case.
3935 * dwarf2expr.h (enum dwarf_value_location)
3936 <DWARF_VALUE_OPTIMIZED_OUT>: New constant.
3937 * dwarf2expr.c (dwarf_expr_stack_empty_p): New function.
3938 (add_piece): Handle empty piece.
3939 (execute_stack_op) <DW_OP_piece>: Handle
3940 DWARF_VALUE_OPTIMIZED_OUT.
3941
3942 2010-05-21 Tom Tromey <tromey@redhat.com>
3943
3944 * eval.c (evaluate_subexp_standard) <BINOP_SUBSCRIPT>: Call
3945 evaluate_subexp, not evaluate_subexp_with_coercion.
3946
3947 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
3948
3949 * dwarf2read.c (new_symbol): Handle DW_AT_variable_parameter
3950 attribute.
3951
3952 2010-05-21 Tom Tromey <tromey@redhat.com>
3953
3954 * dwarf2loc.c (read_pieced_value): Work properly when 'v' has an
3955 offset.
3956 (write_pieced_value): Likewise.
3957
3958 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
3959
3960 * dwarf2read.c (process_die): Also allow DW_TAG_const_type
3961 and DW_TAG_volatile_type.
3962 (new_symbol): Likewise.
3963
3964 2010-05-20 Pierre Muller <muller@ics.u-strasbg.fr>
3965
3966 * p-valprint.c (pascal_val_print): Call get_array_bounds
3967 to obtain the number of elements in an array.
3968
3969 2010-05-19 Doug Evans <dje@google.com>
3970
3971 * python.c (gdbpy_print_stack): Ensure output ends with a newline.
3972
3973 * python.c (source_python_script): Add comment.
3974 (source_python_script_for_objfile): Remove unnecessary call to
3975 gdbpy_print_stack.
3976
3977 2010-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
3978 Sergio Durigan Junior <sergiodj@redhat.com>
3979
3980 Code cleanup.
3981 * parse.c (exp_iterate): Use operator_length wrapper function.
3982
3983 2010-05-18 Michael Snyder <msnyder@vmware.com>
3984
3985 * ada-lang.c: White space.
3986 * ada-typeprint.c: White space.
3987 * ada-valprint.c: White space.
3988 * addrmap.c: White space.
3989 * auxv.c: White space.
3990 * ax-gdb.c: White space.
3991
3992 2010-05-18 Hui Zhu <teawater@gmail.com>
3993
3994 * linux-fork.c (inferior_call_waitpid_cleanup): Add check
3995 for oldfp.
3996 (inferior_call_waitpid): Move make_cleanup out of check.
3997 Check the return of waitpid.
3998 (delete_checkpoint_command): Add pptid to save fi->parent_ptid.
3999
4000 2010-05-17 Michael Snyder <msnyder@vmware.com>
4001
4002 * tui/tui.c: White space.
4003 * tui/tui-data.c: White space.
4004 * tui/tui-disasm.c: White space.
4005 * tui/tui-file.c: White space.
4006 * tui/tui-interp.c: White space.
4007 * tui/tui-main.c: White space.
4008 * tui/tui-out.c: White space.
4009 * tui/tui-regs.c: White space.
4010 * tui/tui-source.c: White space.
4011 * tui/tui-stack.c: White space.
4012 * tui/tui-win.c: White space.
4013 * tui/tui-winsource.c: White space.
4014
4015 * procfs.c: White space.
4016
4017 * python/py-auto-load.c: White space.
4018 * python/py-block.c: White space.
4019 * python/py-breakpoint.c: White space.
4020 * python/py-cmd.c: White space.
4021 * python/py-function.c: White space.
4022 * python/py-lazy-string.c: White space.
4023 * python/py-objfile.c: White space.
4024 * python/py-param.c: White space.
4025 * python/py-prettyprint.c: White space.
4026 * python/py-progspace.c: White space.
4027 * python/py-symtab.c: White space.
4028 * python/python.c: White space.
4029 * python/py-type.c: White space.
4030 * python/py-utils.c: White space.
4031 * python/py-value.c: White space.
4032
4033 * mi/mi-cmd-break.c: White space.
4034 * mi/mi-cmd-env.c: White space.
4035 * mi/mi-cmds.c: White space.
4036 * mi/mi-cmd-stack.c: White space.
4037 * mi/mi-cmd-var.c: White space.
4038 * mi/mi-console.c: White space.
4039 * mi/mi-getopt.c: White space.
4040 * mi/mi-interp.c: White space.
4041 * mi/mi-main.c: White space.
4042 * mi/mi-out.c: White space.
4043 * mi/mi-parse.c: White space.
4044
4045 * cli/cli-cmds.c: White space.
4046 * cli/cli-decode.c: White space.
4047 * cli/cli-dump.c: White space.
4048 * cli/cli-interp.c: White space.
4049 * cli/cli-logging.c: White space.
4050 * cli/cli-script.c: White space.
4051 * cli/cli-setshow.c: White space.
4052
4053 * valarith.c: White space.
4054 * valops.c: White space.
4055 * valprint.c: White space.
4056 * value.c: White space.
4057 * varobj.c: White space.
4058 * xcoffread.c: White space.
4059 * xml-support.c: White space.
4060 * xml-tdesc.c: White space.
4061
4062 2010-05-17 Andreas Schwab <schwab@redhat.com>
4063
4064 PR gdb/11092
4065 * c-lang.c (c_printstr): Compute real length of NUL terminated
4066 string at first.
4067
4068 2010-05-17 Joel Brobecker <brobecker@adacore.com>
4069
4070 * parse.c (parse_exp_in_context): When block is not NULL, use
4071 its associated language to parse the expression instead of
4072 the current_language.
4073
4074 2010-05-17 Joel Brobecker <brobecker@adacore.com>
4075
4076 * jv-lang.c (java_lookup_class): Remove commented out code.
4077 (type_from_class): Likewise.
4078 (java_op_print_tab): Remove commented-out elements.
4079
4080 2010-05-17 Joel Brobecker <brobecker@adacore.com>
4081
4082 * ada-lang.c (to_fixed_range_type): The the raw index type as
4083 argument instead of the raw type name. Remove orig_type parameter.
4084 Update calls throughout.
4085 (ada_fixup_array_indexes_type): New function.
4086 (ada_array_bound_from_type): Add call to ada_fixup_array_indexes_type.
4087 * ada-lang.h (ada_fixup_array_indexes_type): Add declaration.
4088 * ada-typeprint.c (print_range_type): Renames print_range_type_named.
4089 Remove name parameter.
4090 (print_array_type): Add call to ada_fixup_array_indexes_type.
4091 Update calls to print_range_type.
4092 (ada_print_type): Update calls to print_range_type.
4093
4094 2010-05-17 Pierre Muller <muller@ics.u-strasbg.fr>
4095
4096 * dwarf2read.c (read_set_type): Set type length if
4097 DW_AT_byte_size attribute is present.
4098
4099 2010-05-17 Pierre Muller <muller@ics.u-strasbg.fr>
4100
4101 * p-valprint.c (pascal_val_print): Handle set type if range limits
4102 are undefined but size is known.
4103
4104 2010-05-17 Pedro Alves <pedro@codesourcery.com>
4105
4106 * procfs.c: Reformat.
4107
4108 2010-05-16 Michael Snyder <msnyder@vmware.com>
4109
4110 * target.c: White space.
4111 * target-descriptions.c: White space.
4112 * target-memory.c: White space.
4113 * thread.c: White space.
4114 * top.c: White space.
4115 * tracepoint.c: White space.
4116 * trad-frame.c: White space.
4117 * tramp-frame.c: White space.
4118 * ui-file.c: White space.
4119 * ui-out.c: White space.
4120 * user-regs.c: White space.
4121 * utils.c: White space.
4122
4123 * scm-exp.c: White space.
4124 * scm-lang.c: White space.
4125 * scm-valprint.c: White space.
4126 * sentinel-frame.c: White space.
4127 * ser-base.c: White space.
4128 * ser-go32.c: White space.
4129 * serial.c: White space.
4130 * ser-mingw.c: White space.
4131 * ser-pipe.c: White space.
4132 * ser-tcp.c: White space.
4133 * ser-unix.c: White space.
4134 * solib.c: White space.
4135 * solib-darwin.c: White space.
4136 * solib-frv.c: White space.
4137 * solib-irix.c: White space.
4138 * solib-osf.c: White space.
4139 * solib-pa64.c: White space.
4140 * solib-som.c: White space.
4141 * solib-spu.c: White space.
4142 * solib-svr4.c: White space.
4143 * solib-target.c: White space.
4144 * source.c: White space.
4145 * stabsread.c: White space.
4146 * stack.c: White space.
4147 * std-regs.c: White space.
4148 * symfile.c: White space.
4149 * symmisc.c: White space.
4150 * symtab.c: White space.
4151
4152 2010-05-16 Michael Snyder <msnyder@vmware.com>
4153
4154 * source.c (_initialize_source): Add "rev" as an abbreviation
4155 for the "reverse-search" command.
4156
4157 2010-05-16 Michael Snyder <msnyder@vmware.com>
4158
4159 * record.c: White space.
4160 * regcache.c: White space.
4161 * reggroups.c: White space.
4162 * remote-fileio.c: White space.
4163 * remote-m32r-sdi.c: White space.
4164 * remote-mips.c: White space.
4165 * remote-sim.c: White space.
4166 * remote.c: White space.
4167 (process_g_packet): Remove orphan braces.
4168
4169 2010-05-15 Michael Snyder <msnyder@vmware.com>
4170
4171 * parse.c: White space.
4172 * p-lang.c: White space.
4173 * posix-hdep.c: White space.
4174 * printcmd.c: White space.
4175 * progspace.c: White space.
4176 * prologue-value.c: White space.
4177 * psymtab.c: White space.
4178 * p-typeprint.c: White space.
4179 * p-valprint.c: White space.
4180
4181 * objc-lang.c: White space.
4182 * objfiles.c: White space.
4183 * observer.c: White space.
4184 * osabi.c: White space.
4185 * osdata.c: White space.
4186
4187 * m2-lang.c: White space.
4188 * m2-valprint.c: White space.
4189 * macrocmd.c: White space.
4190 * macroexp.c: White space.
4191 * macroscope.c: White space.
4192 * macrotab.c: White space.
4193 * main.c: White space.
4194 * maint.c: White space.
4195 * mdebugread.c: White space.
4196 * memattr.c: White space.
4197 * minsyms.c: White space.
4198 * monitor.c: White space.
4199
4200 2010-05-14 Michael Snyder <msnyder@vmware.com>
4201
4202 * jv-lang.c: White space.
4203 * jv-typeprint.c: White space.
4204 * jv-valprint.c: White space.
4205 * language.c: White space.
4206 * libunwind-frame.c: White space.
4207 * linespec.c: White space.
4208 * linux-nat.c: White space.
4209 * linux-record.c: White space.
4210 * linux-thread-db.c: White space.
4211
4212 * infcall.c: White space.
4213 * inf-child.c: White space.
4214 * infcmd.c: White space.
4215 * inferior.c: White space.
4216 * inf-loop.c: White space.
4217 * inflow.c: White space.
4218 * inline-frame.c: White space.
4219 * interps.c: White space.
4220
4221 * gcore.c: White space.
4222 * gdb.c: White space.
4223 * gdbtypes.c: White space.
4224 * gnu-nat.c: White space.
4225 * gnu-v2-abi.c: White space.
4226 * gnu-v3-abi.c: White space.
4227
4228 * findcmd.c: White space.
4229 * findvar.c: White space.
4230 * fork-child.c: White space.
4231 * frame-base.c: White space.
4232 * frame.c: White space.
4233 * frame-unwind.c: White space.
4234 * f-valprint.c: White space.
4235
4236 * elfread.c: White space.
4237 * environ.c: White space.
4238 * eval.c: White space.
4239 * event-loop.c: White space.
4240 * event-top.c: White space.
4241 * exceptions.c: White space.
4242 * exec.c: White space.
4243 * expprint.c: White space.
4244
4245 * dbxread.c: White space.
4246 * dcache.c: White space.
4247 * disasm.c: White space.
4248 * doublest.c: White space.
4249 * dsrec.c: White space.
4250 * dummy-frame.c: White space.
4251 * dwarf2expr.c: White space.
4252 * dwarf2-frame.c: White space.
4253 * dwarf2loc.c: White space.
4254 * dwarf2read.c: White space.
4255
4256 2010-05-14 Phil Muldoon <pmuldoon@redhat.com>
4257
4258 PR python/11482
4259
4260 * python/py-value.c (valpy_hash): New function.
4261 (value_object_type): Register valpy_hash.
4262
4263 2010-05-14 Hui Zhu <teawater@gmail.com>
4264 Michael Snyder <msnyder@vmware.com>
4265
4266 * linux-fork.c (gdbthread.h): New include.
4267 (fork_info): Add parent_ptid.
4268 (inferior_call_waitpid_cleanup, inferior_call_waitpid): New
4269 functions.
4270 (delete_checkpoint_command): Call inferior_call_waitpid.
4271 (checkpoint_command): Set parent_ptid.
4272
4273 2010-05-13 Michael Snyder <msnyder@vmware.com>
4274
4275 * dictionary.c: Re-indent to GNU coding standard.
4276
4277 * charset.c: White space.
4278 * c-lang.c: White space.
4279 * cli-out.c: White space.
4280 * coffread.c: White space.
4281 * complaints.c: White space.
4282 * completer.c: White space.
4283 * corefile.c: White space.
4284 * corelow.c: White space.
4285 * cp-abi.c: White space.
4286 * cp-namespace.c: White space.
4287 * cp-support.c: White space.
4288 * cp-valprint.c: White space.
4289 * c-typeprint.c: White space.
4290 * c-valprint.c: White space.
4291 * blockframe.c: White space.
4292 * breakpoint.c: White space.
4293 * buildsym.c: White space.
4294 * blockframe.c: White space.
4295 * bcache.c: White space.
4296 * gdbarch.sh: White space, add blank lines.
4297 * arch-utils.c: Ditto.
4298 * gdbarch.c: Regenerate.
4299 * frame.c: White space, add blank lines.
4300 * stack.c: White space, add blank lines.
4301 (initialize_stack): Remove long-dead code.
4302
4303 2010-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4304
4305 Code cleanup.
4306 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Change the parameter to type.
4307 (locexpr_read_variable, loclist_read_variable): Update the callers.
4308
4309 2010-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4310
4311 Code cleanup.
4312 * dwarf2read.c (die_type, die_descriptive_type): Remove variable type.
4313 Remove check of NULL returned by tag_type_to_type.
4314 (die_containing_type): Remove variable type. Remove type_die variable
4315 initialization. Remove check of NULL returned by tag_type_to_type.
4316
4317 2010-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
4318
4319 PR exp/11530.
4320 * gdbtypes.c (lookup_struct_elt_type): Also lookup
4321 names of unnamed structures or unions.
4322
4323 2010-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
4324
4325 * procfs.c (proc_watchpoint_address): New function.
4326 (procfs_stopped_by_watchpoint): Remove useless check after
4327 find_procinfo_or_die call.
4328 (procfs_stopped_data_address): New function.
4329 (procfs_use_watchpoints): Register new watchpoint related function.
4330
4331 2010-05-11 Tom Tromey <tromey@redhat.com>
4332
4333 * eval.c (evaluate_subexp_standard): Revert inadvertent change.
4334
4335 2010-05-10 Michael Snyder <msnyder@vmware.com>
4336
4337 * utils.c: White space cleanup.
4338
4339 2010-05-10 Tom Tromey <tromey@redhat.com>
4340
4341 * eval.c (ptrmath_type_p): Add 'lang' argument.
4342 (evaluate_subexp_standard): Update.
4343 (evaluate_subexp_with_coercion): Update.
4344 * language.h (CAST_IS_CONVERSION): Add 'LANG' argument.
4345
4346 2010-05-10 Michael Snyder <msnyder@vmware.com>
4347
4348 * utils.c (do_fclose_cleanup) Restore local variable.
4349
4350 2010-05-09 Doug Evans <dje@google.com>
4351
4352 * record.c (init_record_core_ops): Rename record_core to record-core.
4353
4354 2010-05-08 Joel Brobecker <brobecker@adacore.com>
4355
4356 Implement task switching on pa-hpux.
4357 * inf-ttrace.c (inf_ttrace_get_ada_task_ptid): New function.
4358 (inf_ttrace_target): Set t->to_get_ada_task_ptid.
4359
4360 2010-05-08 Pierre Muller <muller@ics.u-strasbg.fr>
4361
4362 * valops.c (find_overload_match): Add missing i18n markup.
4363
4364 2010-05-08 Pierre Muller <muller@ics.u-strasbg.fr>
4365
4366 * p-exp.y (exp : SIZEOF '(' exp ')'): New rule.
4367
4368 2010-05-08 Jan Kratochvil <jan.kratochvil@redhat.com>
4369
4370 * dwarf2read.c (typename_concat): Use (char *) NULL terminated stdarg
4371 list for the obconcat call.
4372 * mdebugread.c (parse_symbol): Likewise.
4373 * stabsread.c (define_symbol, read_member_functions, read_cpp_abbrev):
4374 Likewise.
4375 * symfile.c (obconcat): Replace the s1, s2 and s3 parameters by `...'.
4376 New variable ap. Remove variables len and val.
4377 * symfile.h (obconcat): Likewise for the prototype.
4378
4379 2010-05-07 Michael Snyder <msnyder@vmware.com>
4380
4381 * python/python.c (execute_gdb_command): Remove unused variables.
4382 * python/py-block.c (gdbpy_block_for_pc): Remove unused variable.
4383 * python/py-breakpoint.c (gdbpy_breakpoint_created):
4384 Remove unused variable.
4385 * python/py-cmd.c (cmdpy_function): Remove unused variable.
4386 (cmdpy_completer): Remove unused variable.
4387 * python/py-frame.c (frapy_find_sal): Remove unused variable.
4388 * python/py-function.c (fnpy_call): Remove unused variable.
4389 * python/py-objfile.c (objfile_to_objfile_object):
4390 Remove unused variable.
4391 * python/py-param.c (parmpy_init): Remove unused variable.
4392 * python/py-prettyprint.c (apply_varobj_pretty_printer):
4393 Remove unused variable.
4394 (gdbpy_default_visualizer): Remove unused variable.
4395 * python/py-progspace.c (pspace_to_pspace_object):
4396 Remove unused variable.
4397 * python/py-symtab.c (symtab_and_line_to_sal_object):
4398 Remove unused variable.
4399 * python/py-type.c (typy_template_argument):
4400 Remove unused variable.
4401 * python/py-value.c (valpy_string): Remove unused variable.
4402 (convert_value_from_python): Remove unused variables.
4403
4404 2010-05-07 Michael Snyder <msnyder@vmware.com>
4405
4406 * valops.c (value_cast_pointers): Restore unused variable 'type1',
4407 and use it to compute variable 't1'.
4408
4409 2010-05-07 Joel Brobecker <brobecker@adacore.com>
4410
4411 * ada-lang.c (assign_aggregate): Remove unused variable.
4412
4413 2010-05-07 Sami Wagiaalla <swagiaal@redhat.com>
4414
4415 PR C++/7943:
4416 * valops.c (find_overload_match): Handle fsym == NULL case.
4417 Add int no_adl argument.
4418 (find_oload_champ_namespace_loop): Call make_symbol_overload_list_adl
4419 when appropriate.
4420 Add int no_adl argument.
4421 (find_oload_champ_namespace): Add int no_adl argument.
4422 * parse.c (operator_length_standard): Return length for OP_ADL_FUNC
4423 expression.
4424 * expprint.c (op_name_standard): Added string for OP_ADL_FUNC case.
4425 * eval.c (evaluate_subexp_standard): Added OP_ADL_FUNC case.
4426 Evaluate arguments and use them to perform ADL lookup.
4427 Pass no_adl argument to find_overload_match.
4428 Disable adl lookup when evaluating a fully qualified OP_FUNCALL.
4429 * cp-support.h: Added prototype for
4430 make_symbol_overload_list_namespace.
4431 * cp-support.c (make_symbol_overload_list_namespace): New function.
4432 (make_symbol_overload_list_adl_namespace): New function.
4433 (make_symbol_overload_list_adl): New function.
4434 (make_symbol_overload_list_using): Moved code to add function to
4435 overload set to make_symbol_overload_list_namespace.
4436 * c-exp.y: create UNKNOWN_CPP_NAME token.
4437 Add parse rule for ADL functions.
4438 (classify_name): Recognize an UNKNOWN_CPP_NAME.
4439
4440 2010-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4441
4442 * fbsd-nat.c (fbsd_make_corefile_notes): Add cast to NULL used as
4443 sentinel.
4444
4445 2010-05-07 Joel Brobecker <brobecker@adacore.com>
4446
4447 Implement task switching on solaris targets.
4448 * sol-thread.c (thread_db_find_thread_from_tid)
4449 (sol_get_ada_task_ptid): New functions.
4450 (init_sol_thread_ops): Set sol_thread_ops.to_get_ada_task_ptid.
4451
4452 2010-05-07 Pedro Alves <pedro@codesourcery.com>
4453
4454 * remote.c (remote_query_supported_append): Use reconcat.
4455 (remote_query_supported): Install a cleanup. Use reconcat.
4456
4457 2010-05-07 Pedro Alves <pedro@codesourcery.com>
4458
4459 * gdbarch.sh (qsupported): Delete.
4460 * gdbarch.h, gdbarch.c: Regenerate.
4461 * remote.c (remote_query_supported): Remove use of
4462 gdbarch_qsupported.
4463
4464 2010-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
4465
4466 * xml-syscall.c (syscall_start_syscalls_info): Remove unused
4467 function.
4468
4469 2010-05-06 Michael Snyder <msnyder@vmware.com>
4470
4471 * xml-support.c (xinclude_start_include): Delete unused variable.
4472 (xml_process_xincludes): Delete unused variable.
4473 * xml-syscall.c (syscall_parse_xml): Delete unused variable.
4474 * target-descriptions.c (tdesc_gdb_type): Delete unused variable.
4475 (tdesc_find_arch_register): Delete unused variable.
4476 (tdesc_use_registers): Delete unused variable.
4477 * xml-tdesc.c (tdesc_start_target): Delete unused variable.
4478 * inferior.c (print_inferior): Delete unused variable.
4479 * record.c (record_open_1): Delete unused variable.
4480 (record_restore): Delete unused variable.
4481 (cmd_record_save): Delete unused variable.
4482 * gcore.c (derive_heap_segment): Delete unused variable.
4483 (objfile_find_memory_regions): Use unused variable.
4484 * jit.c (jit_inferior_init): Delete unused variable.
4485 * progspace.c (clone_program_space): Delete unused variable.
4486 (pspace_empty_p): Delete unused variable.
4487
4488 * frame-unwind.c (frame_unwind_find_by_frame):
4489 Delete unused variable.
4490 * gnu-v2-abi.c (gnuv2_value_rtti_type): Delete unused variable.
4491 * cp-support.c (mangled_name_to_comp): Delete unused variable.
4492 (method_name_from_physname): Delete unused variable.
4493 (cp_func_name): Delete unused variable.
4494 (cp_validate_operator): Delete unused variable.
4495 * cp-namespace.c (cp_scan_for_anonymous_namespaces):
4496 Delete unused variable.
4497 * trad-frame.c (trad_frame_get_prev_register):
4498 Delete unused variable.
4499 * tramp-frame.c (tramp_frame_cache): Delete unused variable.
4500
4501 * serial.c (serial_for_fd): Delete unused variable.
4502 * mdebugread.c (psymtab_to_symtab_1): Delete unused variable.
4503 * top.c (execute_command): Delete unused variable.
4504 (init_main): Delete unused variable.
4505 * utils.c (do_fclose_cleanup): Delete unused variable.
4506 (do_all_inferior_continuations): Delete unused variable.
4507 (initialize_utils): Delete unused variable.
4508 (internal_problem_mode): Delete unused global.
4509 * frame.c (get_prev_frame): Delete unused global.
4510 (get_frame_locals_address): Delete unused global.
4511 (get_frame_args_address): Delete unused global.
4512
4513 * p-typeprint.c (pascal_type_print_base): Delete unused variable.
4514 (pascal_type_print_varspec_prefix): Delete unused variable.
4515 * f-typeprint.c (f_type_print_base): Delete unused variable.
4516 (f_type_print_varspec_suffix): Delete unused variable.
4517 * m2-typeprint.c (m2_print_type): Delete unused variable.
4518 (m2_long_set): Delete unused variable.
4519 * ada-valprint.c (ada_val_print_1): Delete unused variable.
4520 * d-valprint.c (dynamic_array_type): Delete unused variable.
4521 * f-valprint.c (f77_get_dynamic_length_of_aggregate):
4522 Delete unused variable.
4523 (f77_create_arrayprint_offset_tbl): Delete unused variable.
4524 * m2-valprint.c (m2_val_print): Delete unused variable.
4525
4526 * ui-out.c (ui_out_field_int): Delete unused variable.
4527 (ui_out_field_fmt_int): Delete unused variable.
4528 * varobj.c (varobj_list_children): Delete unused variable.
4529 (varobj_set_value): Delete unused variable.
4530 (install_new_value_visualizer): Delete unused variable.
4531 (varobj_set_visualizer): Delete unused variable.
4532 (varobj_update): Delete unused variable.
4533 (varobj_editable_p): Delete unused variable.
4534 (c_value_of_root): Delete unused variable.
4535 (cplus_describe_child): Delete unused variable.
4536
4537 * ada-lang.c (add_defn_to_vec): Delete unused variable.
4538 (decode_constrained_packed_array_type): Delete unused variable.
4539 (add_defn_to_vec): Delete unused variable.
4540 (symbol_completion_match): Delete unused variable.
4541 (value_tag_from_contents_and_address): Delete unused variable.
4542 (ada_evaluate_subexp): Delete unused variable.
4543 * c-lang.c (classify_type): Delete unused variable.
4544 * f-lang.c (f_printstr): Delete unused variable.
4545 * objc-lang.c (objc_printstr): Delete unused variable.
4546 * ada-tasks.c (get_known_tasks_addr): Delete unused variable.
4547 * jv-lang.c (type_from_class): ifdef unused variable.
4548 (java_class_name_from_physname): Delete unused variable.
4549 * m2-lang.c (m2_printstr): Delete unused variable.
4550
4551 * objfiles.c (objfile_relocate): Delete unused variable.
4552 * maint.c (_initialize_maint_cmds): Delete unused variable.
4553 * demangle.c (_initialize_demangler): Delete unused variable.
4554 * corefile.c (reopen_exec_file): Delete unused variable.
4555 * dwarf2expr.c (dwarf2_read_address): Delete unused variable.
4556 * dwarf2-frame.c (decode_frame_entry): Delete unused variable.
4557
4558 * osabi.c (_initialize_gdb_osabi): Delete unused variable.
4559 * memattr.c (mem_delete): Delete unused variable.
4560 (invalidate_target_mem_regions): Delete unused variable.
4561 * mem-break.c (default_memory_insert_breakpoint):
4562 Delete unused variable.
4563 * target.c (target_get_osdata): Delete unused variable.
4564 * parse.c (length_of_subexp): Delete unused variable.
4565 (prefixify_subexp): Delete unused variable.
4566 (exp_iterate): Delete unused variable.
4567 * reverse.c (delete_bookmark_command): Delete unused variable.
4568
4569 * macrocmd.c (_initialize_macrocmd): Delete unused variable.
4570 * macroexp.c (gather_arguments): Delete unused variable.
4571 (substitute_args): Delete unused variable.
4572 * completer.c (gdb_completer_loc_break_characters): Unused, delete.
4573 * gdbarch.sh (gdbarch_printable_names): Delete unused variable.
4574 (_initialize_gdbarch): Delete unused variable.
4575 * gdbarch.c, gdbarch.h: Regenerate.
4576 * arch-utils.c (initialize_current_architecture):
4577 Delete unused variable.
4578 (_initialize_gdbarch_utils): Delete unused variable.
4579 * gdbtypes.c (make_cv_type): Delete unused variable.
4580 (make_type_with_address_space): Delete unused variable.
4581
4582 * linespec.c (decode_compound): Delete unused variable.
4583 * dictionary.c (iterator_next_hashed): Delete unused variable.
4584 * infcall.c (call_function_by_hand): Delete unused variable.
4585 * infcmd.c (step_1): Delete unused variable.
4586 (registers_info): Delete unused variable.
4587 (attach_command): Delete unused variable.
4588 * infrun.c (follow_exec): Delete unused variable.
4589 (handle_step_into_function_backwards): Delete unused variable.
4590 (_initialize_infrun): Delete unused variable.
4591 * stack.c (parse_frame_specification_1): Delete unused variable.
4592 (frame_info): Delete unused variable.
4593 (backtrace_command_1): Delete unused variable.
4594 (catch_info): Delete unused variable.
4595
4596 * eval.c (evaluate_subexp_standard): Delete unused variable.
4597 * valops.c (value_cast_pointers): Delete unused variable.
4598 (value_dynamic_cast): Delete unused variable.
4599 (value_array): Delete unused variable.
4600 (find_overload_match): Delete unused variable.
4601 * valarith.c (value_subscript): Delete unused variable.
4602 (value_binop): Delete unused variable.
4603 * valprint.c (_initialize_valprint): Delete unused variable.
4604 * printcmd.c (print_command_1): Delete unused variable.
4605 (address_info): Delete unused variable.
4606 (printf_command): Delete unused variable.
4607
4608 * auxv.c (target_auxv_search): Delete unused variable.
4609 * blockframe.c (get_frame_block): Delete unused variable.
4610 * regcache.c (regcache_cpy): Delete unused variable.
4611 (regcache_cpy_no_passthrough): Delete unused variable.
4612 * charset.c (wchar_iterate): Delete unused variable.
4613 (find_charset_names): Delete unused variable.
4614 (_initialize_charset): Delete unused variable.
4615 * disasm.c (do_mixed_source_and_assembly):
4616 Delete unused variable.
4617 * source.c (set_default_source_symtab_and_line):
4618 Delete unused variable.
4619 (set_substitute_path_command): Delete unused variable.
4620 * value.c (preserve_values): Delete unused variable.
4621 (value_from_double): Delete unused variable.
4622
4623 2010-05-05 Michael Snyder <msnyder@vmware.com>
4624
4625 * psymtab.c (lookup_partial_symbol): Delete unused variable.
4626 (find_last_source_symtab_from_partial): Delete unused variable.
4627 * symfile.c (place_section): Delete unused variable.
4628 (default_symfile_offsets): Delete unused variable.
4629 (get_debug_link_info): Delete unused variable.
4630 (find_separate_debug_file_by_debuglink): Delete unused variable.
4631 (add_symbol_file_command): Delete unused variable.
4632 (symfile_find_segment_sections): Delete unused variable.
4633 * symmisc.c (free_symtab): Delete unused variable.
4634 (dump_symtab_1): Delete unused variable.
4635 * symtab.c (lookup_symbil_aux_quick): Delete unused variable.
4636 (find_pc_sect_symtab): Delete unused variable.
4637 (skip_prologue_using_lineinfo): Delete unused variable.
4638 (sources_info): Delete unused variable.
4639 (completion_list_add_name): Delete unused variable.
4640 (expand_line_sal): Delete unused variable.
4641
4642 * breakpoint.c (validate_commands_for_breakpoint):
4643 Delete unused variables.
4644 (insert_catchpoint): Delete unused variable.
4645 (update_watchpoint): Delete unused variable.
4646 (insert_bp_location): Delete unused variable.
4647 (insert_breakpoint_locations): Delete unused variable.
4648 (remove_breakpoint_1): Delete unused variable.
4649 (software_breakpoint_inserted_here_p): Delete unused variable.
4650 (watchpoints_triggered): Delete unused variable.
4651 (bpstat_check_watchpoint): Delete unused variable.
4652 (bpstat_stop_status): Delete unused variable.
4653 (print_one_breakpoint_location): Delete unused variable.
4654 (allocate_bp_location): Delete unused variable.
4655 (create_breakpoint): Delete unused variable.
4656 (watch_command_1): Delete unused variable.
4657 (catch_exception_command_1): Delete unused variable.
4658 (catch_ada_exception_command): Delete unused variable.
4659 (delete_breakpoint): Delete unused variable.
4660 (breakpoint_re_set_one): Delete unused variable.
4661 (do_enable_breakpoint): Delete unused variable.
4662
4663 2010-05-06 Pedro Alves <pedro@codesourcery.com>
4664
4665 * amd64-tdep.c: Include disasm.h.
4666 (amd64_insn_length_fprintf, amd64_insn_length_init_dis)
4667 (amd64_insn_length): Moved to disasm.c and renamed.
4668 (fixup_riprel): Adjust.
4669 * disasm.c (do_ui_file_delete): New.
4670 (gdb_insn_length): New.
4671 (gdb_buffered_insn_length_fprintf)
4672 (gdb_buffered_insn_length_init_dis)
4673 (gdb_buffered_insn_length): New, moved from amd64-tdep.c, and
4674 renamed.
4675 * disasm.h (gdb_insn_length): Declare.
4676 (gdb_buffered_insn_length): Declare.
4677
4678 2010-05-06 Pedro Alves <pedro@codesourcery.com>
4679
4680 * remote.c (clear_threads_parsing_context): New.
4681 (remote_threads_info): Delete unused null_cleanup. Install a
4682 cleanup to clear the threads_parsing_context in case parsing
4683 throws.
4684
4685 2010-05-05 Michael Snyder <msnyder@vmware.com>
4686
4687 * c-exp.y (parse_string_or_char): Delete unused variable.
4688 (c_lex): Delete unused variable.
4689 * cp-name-parser.y (cpname_lex): Delete unused variable.
4690 * ada-exp.y (find_primitive_type): Delete unused variable.
4691 (write_var_or_type): Delete unused variable.
4692 * jv-exp.y (java_parse): Delete unused variable.
4693 (push_expression_name): Delete unused variable.
4694 * p-exp.y (pascal_lex): Delete unused variable.
4695
4696 2010-05-05 Pedro Alves <pedro@codesourcery.com>
4697
4698 * remote.c (remote_threads_info): Really revert previous previous
4699 change.
4700
4701 2010-05-05 Michael Snyder <msnyder@vmware.com>
4702
4703 * elfread.c (elf_symtab_read): Delete unused variable.
4704 (find_separate_debug_file_by_buildid): Delete unused variables.
4705 (elf_symfile_read): Delete unused variable.
4706
4707 * coffread.c (coff_symfile_read): Delete unused variables.
4708
4709 * coff-pe-read.c (add_pe_exported_sym): Delete unused variable.
4710 (read_pe_exported_syms): Delete unused variable.
4711
4712 * stabsread.c (define_symbol): Delete unused variable.
4713
4714 * dwarf2read.c (read_type_comp_unit_head): Delete unused variable.
4715 (process_psymtab_comp_unit): Delete unused variable.
4716 (dwarf2_build_psymtabs_hard): Delete unused variable.
4717 (load_partial_comp_unit): Delete unused variable.
4718 (create_all_comp_units): Delete unused variable.
4719 (scan_partial_symbols): Delete unused variable.
4720 (add_partial_symbol): Delete unused variable.
4721 (add_partial_namespace): Delete unused variable.
4722 (add_partial_enumeration): Delete unused variable.
4723 (load_full_comp_unit): Delete unused variable.
4724 (process_full_comp_unit): Delete unused variable.
4725 (read_file_scope): Delete unused variable.
4726 (read_type_unit_scope): Delete unused variable.
4727 (process_structure_scope): Delete unused variable.
4728 (process_enumeration_scope): Delete unused variable.
4729 (read_tag_ptr_to_member_type): Delete unused variable.
4730 (read_typedef): Delete unused variable.
4731 (read_partial_die): Delete unused variable.
4732 (decode_locdesc): Delete unused variable.
4733 (zeroed_partial_die): Delete unused global variable.
4734
4735 * tui/tui-interp.c (_initialize_tui_interp):
4736 Delete unused variable.
4737 * tui/tui-regs.c tui_display_registers_from):
4738 Delete unused variable.
4739 (tui_check_register_values): Delete unused variable.
4740 (tui_register_format): Delete unused variable.
4741 * tui/tui-win.c (_initialize_tui_win): Delete unused variable.
4742 * tui/tui-windata.c (tui_display_data_from_line):
4743 Delete unused variables.
4744 (tui_vertical_data_scroll): Delete unused variables.
4745
4746 2010-05-05 Michael Snyder <msnyder@vmware.com>
4747
4748 * remote.c (remote_threads_info): Revert questionable part of
4749 the previous change.
4750
4751 2010-05-05 Michael Snyder <msnyder@vmware.com>
4752
4753 * mi/mi-out.c (mi_table_begin): Delete unused variable.
4754 * mi/mi-cmd-var.c (print_varobj): Delete unused variable.
4755 (mi_cmd_var_list_children): Delete unused variable.
4756 (varobj_update_one): Delete unused variable.
4757 * mi/mi-cmd-break.c (mi_cmd_break_insert): Delete unused variables.
4758 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals):
4759 Delete unused variable.
4760 (mi_cmd_stack_list_variables): Delete unused variable.
4761 (list_args_or_locals): Delete unused variable.
4762 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file):
4763 Delete unused variables.
4764 (mi_cmd_file_list_exec_source_files): Delete unused variable.
4765 * mi/mi-cmd-target.c (mi_cmd_target_file_delete):
4766 Delete unused variable.
4767 * mi/mi-interp.c (mi_interpreter_exec): Delete unused variable.
4768 (mi_cmd_interpreter_exec): Delete unused variable.
4769 (mi_on_normal_stop): Delete unused variable.
4770 * mi/mi-main.c (run_one_inferior): Delete unused variable.
4771 (print_one_inferior): Delete unused variables.
4772 (mi_execute_command): Delete unused variable.
4773 (mi_cmd_execute): Delete unused variable.
4774 (timestamp): Delete unused variable.
4775
4776 * cli/cli-dump.c (dump_memory_to_file): Delete unused variable.
4777 (restore_binary_file): Delete unused variable.
4778 * cli/cli-decode.c (deprecated_cmd_warning): Delete unused variables.
4779 * cli/cli-script.c (define_command): Delete unused variables.
4780 (recurse_read_control_structure): Delete unused variable.
4781 (script_from_file): Delete unused variable.
4782 * cli/cli-cmds.c (complete_command): Delete unused variable.
4783 (disassemble_command): Delete unused variable.
4784
4785 * ax-gdb.c (gen_struct_elt_for_reference): Delete unused variables.
4786 * tracepoint.c (delete_trace_variable_command):
4787 Delete unused variables.
4788 (encode_actions_1): Delete unused variables.
4789 (start_tracing): Delete unused variable.
4790 (trace_status_mi): Delete unused variable.
4791 (tfind_1): Delete unused variable.
4792 (trace_find_pc_command): Delete unused variable.
4793 (trace_find_line_command): Delete unused variables.
4794 (trace_find_range_command): Delete unused variables.
4795 (trace_find_outside_command): Delete unused variables.
4796 (parse_tracepoint_definition): Delete unused variables.
4797 (tfile_fetch_registers): Delete unused variable.
4798
4799 * dcache.c (dcache_init): Delete unused variable.
4800 (dcache_info): Delete unused variable.
4801
4802 * remote.c (remote_threads_info): Delete unused variable.
4803 (process_stop_reply) :Delete unused variable.
4804 (remote_get_trace_status): Delete unused variables.
4805
4806 * linux-thread-db.c (add_thread_db_info): Delete unused variable.
4807 (thread_from_lwp): Delete unused variable.
4808 (enable_thread_event_reporting): Delete unused variable.
4809 (check_for_thread_db): Delete unused variables.
4810 (thread_db_find_new_threads_2): Delete unused variable.
4811
4812 * linux-fork.c (info_checkpoints_command): Delete unused variables.
4813 (checkpoint_command): Delete unused variable.
4814 (linux_fork_context): Delete unused variables.
4815
4816 * linux-nat.c (linux_parent_pid): Delete unused global variable.
4817 (linux_tracefork_child): Delete unused variable.
4818 (linux_child_follow_fork): Delete unused variable.
4819 (linux_nat_detach): Delete unused variable.
4820 (linux_handle_extended_wait): Delete unused variable.
4821 (linux_nat_has_pending_sigint): Delete unused variable.
4822 (linux_nat_find_memory_regions): Delete unused variable.
4823 (linux_nat_make_corefile_notes): Delete unused variables.
4824 (linux_nat_info_proc_cmd): Delete unused variable.
4825 (linux_proc_pending_signals): Delete unused variable.
4826 (linux_nat_stop_lwp): Delete unused variables.
4827 (_initialize_linux_nat): Delete unused variable.
4828
4829 * ser-pipe.c (pipe_ops): Delete unused global variable.
4830
4831 * linux-record.c (record_linux_system_call):
4832 Delete unused variables.
4833
4834 * corelow.c (core_xfer_partial): Delete unused variables.
4835
4836 * solib-svr4.c (find_program_interpreter): Delete unused variable.
4837 (svr4_solib_create_inferior_hook): Add ifdef around
4838 conditionally-used variable declarations.
4839
4840 * solib.c (solib_find): Delete unused variable.
4841 (free_so_symbols): Delete unused variable.
4842 (info_sharedlibrary_command): Delete unused variable.
4843 (reload_shared_libraries_1): Delete unused variable.
4844 (_initialize_solib): Delete unused variable.
4845
4846 * i386-tdep.c (i386_supply_xstateregset) Delete unused variable.
4847 (i386_collect_xstateregset): Delete unused variable.
4848 * i387-tdep.c (i387_print_float_info): Delete unused variable.
4849
4850 * features/i386/i386-mmx.c (initialize_tdesc_i386_mmx):
4851 Delete unused variable 'type'.
4852
4853 2010-05-05 Joel Brobecker <brobecker@adacore.com>
4854
4855 * gdbtypes.h (MAX_OF_TYPE, MIN_OF_TYPE): Delete macros. *
4856 ada-lang.c: Remove comment mentioning these macros.
4857 * m2-exp.y: Delete commented out code.
4858
4859 2010-05-05 Joel Brobecker <brobecker@adacore.com>
4860
4861 * sparc-tdep.c (sparc_structure_or_union_p): Return non-zero
4862 for array types.
4863 * sparc64-tdep.c (sparc64_structure_or_union_p): Likewise.
4864
4865 2010-05-04 Pierre Muller <muller@ics.u-strasbg.fr>
4866
4867 ARI fix: Remove ATTRIBUTE_UNUSED throughout.
4868 * arm-linux-tdep.c (arm_linux_cleanup_svc): Remove
4869 ATTRIBUTE_UNUSED.
4870 (cleanup_kernel_helper_return): Likewise.
4871 * arm-tdep.c (copy_unmodified): Likewise.
4872 (copy_preload): Likewise.
4873 (copy_copro_load_store): Likewise.
4874 (cleanup_branch): Likewise.
4875 (copy_b_bl_blx): Likewise.
4876 (copy_bx_blx_reg): Likewise.
4877 (copy_alu_imm): Likewise.
4878 (copy_alu_reg): Likewise.
4879 (copy_alu_shifted_reg): Likewise.
4880 (cleanup_load): Likewise.
4881 (cleanup_store): Likewise.
4882 (cleanup_block_load_pc): Likewise.
4883 (cleanup_svc): Likewise.
4884 (copy_undef): Likewise.
4885 (copy_unpred): Likewise.
4886 * remote.c (register_remote_support_xml): Likewise.
4887
4888 2010-05-05 Hui Zhu <teawater@gmail.com>
4889
4890 * gdbarch.h (gdbarch_has_dos_based_file_system): Update comment.
4891
4892 2010-05-04 Mark Kettenis <kettenis@gnu.org>
4893
4894 * remote.c (register_remote_support_xml)
4895 (remote_query_supported_append, remote_query_supported): Add cast
4896 to NULL used as sentinel.
4897 * tracepoint.c (tvariables_info_1): Likewise.
4898 * utils.c (add_internal_problem_command): Likewise.
4899
4900 2010-05-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
4901
4902 * dwarf2loc.c (read_pieced_value, write_pieced_value,
4903 dwarf2_evaluate_loc_desc): Handle not being able to access DWARF
4904 registers gracefully.
4905
4906 2010-05-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
4907
4908 * exec.c (print_section_info): Display entry point without arch
4909 specific parts.
4910
4911 2010-05-04 Pierre Muller <muller@ics.u-strasbg.fr>
4912
4913 PR exp/11349.
4914 * printcmd.c (x_command): Only dereference once implicitly for
4915 TYPE_CODE_REF.
4916
4917 2010-05-03 Doug Evans <dje@google.com>
4918
4919 * event-loop.c (gdb_timer): Delete unused global.
4920 (create_timer): Update.
4921
4922 2010-05-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4923
4924 * cp-namespace.c (cp_lookup_symbol_imports): Support ALIAS for the
4925 CURRENT->DECLARATION case.
4926 * cp-support.h (struct using_direct): Provide extended comment.
4927
4928 2010-05-03 Mark Kettenis <kettenis@gnu.org>
4929
4930 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Renamed from
4931 HPPABSD_SIZEOF_GREGS.
4932 (HPPAOBSD_SIZEOF_FPREGS): New define.
4933 (hppaobsd_supply_gregset): Renamed from hppabsd_supply_gregset.
4934 (hppaobsd_supply_fpregset): New function.
4935 (hppaobsd_gregset): Renamed from hppabsd_gregset.
4936 (hppaobsd_fpregset): New variable.
4937 (hppaobsd_regset_from_core_section): Handle floating-point registers.
4938 (_initialize_hppabsd_tdep): Remove spurious blank line.
4939
4940 2010-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
4941
4942 PR pascal/11349.
4943 * p-valprint.c (pascal_value_print): Always dereference a value with
4944 type code TYPE_CODE_REF.
4945
4946 2010-05-03 Pedro Alves <pedro@codesourcery.com>
4947
4948 * remote.c (remote_notice_signals): New.
4949 (remote_start_remote): In non-stop mode, update the remote end on
4950 which signals it can silently pass.
4951 (init_remote_ops): Install remote_notice_signals.
4952
4953 2010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4954
4955 * cli/cli-cmds.h (error_no_arg): Remove. Move the comment ...
4956 * command.h (error_no_arg): ... here. Remove NORETURN, change
4957 ATTR_NORETURN to ATTRIBUTE_NORETURN.
4958 * defs.h (NORETURN, ATTR_NORETURN): Remove.
4959 (perror_with_name, verror, error, error_stream, vfatal, fatal)
4960 (internal_verror, internal_error, nomem): Remove NORETURN, change
4961 ATTR_NORETURN to ATTRIBUTE_NORETURN.
4962 * exceptions.c (throw_exception, deprecated_throw_reason, throw_verror)
4963 (throw_vfatal, throw_error): Remove NORETURN.
4964 (throw_it): Remove NORETURN, change ATTR_NORETURN to ATTRIBUTE_NORETURN.
4965 * exceptions.h (throw_exception, throw_verror, throw_vfatal)
4966 (throw_error, deprecated_throw_reason): Remove NORETURN, change
4967 ATTR_NORETURN to ATTRIBUTE_NORETURN.
4968 * linespec.c (cplusplus_error): Remove NORETURN, change ATTR_NORETURN
4969 to ATTRIBUTE_NORETURN for prototype, for the definition only remove
4970 NORETURN.
4971 * remote-mips.c (mips_error): Change NORETURN to ATTRIBUTE_NORETURN.
4972 * remote-sim.c (gdb_os_error): Change ATTR_NORETURN to
4973 ATTRIBUTE_NORETURN.
4974 * target.c (tcomplain): Likewise.
4975 * target.h (noprocess): Remove NORETURN, change ATTR_NORETURN to
4976 ATTRIBUTE_NORETURN.
4977 * utils.c (verror, error, vfatal, fatal, error_stream, internal_verror)
4978 (internal_error, perror_with_name, nomem): Remove NORETURN.
4979 * xml-support.h (gdb_xml_error): Change ATTR_NORETURN to
4980 ATTRIBUTE_NORETURN.
4981
4982 2010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4983
4984 * ada-lang.c (lim_warning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
4985 * amd64-tdep.c (amd64_insn_length_fprintf): Likewise.
4986 * cli-out.c (cli_field_fmt): New ATTRIBUTE_PRINTF.
4987 (cli_message, out_field_fmt): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
4988 * complaints.c (find_complaint): New ATTRIBUTE_PRINTF.
4989 (vcomplaint): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
4990 * complaints.h (complaint, internal_complaint): Likewise.
4991 * defs.h: Change ATTR_FORMAT to ATTRIBUTE_PRINTF in the top comment.
4992 (ATTR_FORMAT): Remove.
4993 (query, nquery, yquery, vprintf_filtered, vfprintf_filtered)
4994 (fprintf_filtered, fprintfi_filtered, printf_filtered, printfi_filtered)
4995 (vprintf_unfiltered, vfprintf_unfiltered, fprintf_unfiltered)
4996 (printf_unfiltered, xasprintf, xvasprintf, xstrprintf, xstrvprintf)
4997 (xsnprintf, verror, error, vfatal, fatal, internal_verror)
4998 (internal_error, internal_vwarning, internal_warning, warning)
4999 (vwarning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
5000 * disasm.c (fprintf_disasm): Likewise.
5001 * exceptions.c (throw_it): Likewise.
5002 * exceptions.h (exception_fprintf, throw_verror, throw_vfatal)
5003 (throw_error): Likewise.
5004 * language.h (type_error, range_error): Likewise.
5005 * linespec.c (cplusplus_error): Likewise.
5006 * mi/mi-interp.c (mi_interp_query_hook): Likewise.
5007 * mi/mi-out.c (mi_field_fmt, mi_message): Likewise.
5008 * monitor.c (monitor_debug): Likewise.
5009 * parser-defs.h (parser_fprintf): Likewise.
5010 * serial.h (serial_printf): Likewise.
5011 * tui/tui-hooks.c (tui_query_hook): Likewise.
5012 * ui-out.c (default_field_fmt, default_message, uo_field_fmt)
5013 (uo_message): Likewise.
5014 * ui-out.h (ui_out_field_fmt, ui_out_message): Likewise.
5015 * utils.c (vfprintf_maybe_filtered, internal_vproblem, defaulted_query):
5016 Likewise.
5017 * xml-support.h (gdb_xml_debug, gdb_xml_error): Likewise.
5018
5019 2010-05-02 Pedro Alves <pedro@codesourcery.com>
5020
5021 * cli-out.c (cli_table_begin, cli_table_body, cli_table_end)
5022 (cli_table_header, cli_begin, cli_end, cli_field_int)
5023 (cli_field_skip, cli_field_string, cli_field_fmt, cli_spaces)
5024 (cli_text, cli_message, cli_wrap_hint, cli_flush, cli_redirect):
5025 Delete forward declarations.
5026 (cli_ui_out_impl): Move below the callbacks.
5027 (_initialize_cli_out): Delete.
5028
5029 2010-05-02 Pedro Alves <pedro@codesourcery.com>
5030
5031 * README: Use consistent `GDB' and `GDBserver' spellings.
5032
5033 2010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5034
5035 * cli/cli-dump.h (parse_and_eval_with_error): Remove the declaration.
5036
5037 2010-05-01 Pedro Alves <pedro@codesourcery.com>
5038
5039 * infrun.c (prepare_for_detach): In non-stop, context switch to
5040 the thread that got the event before handling the event.
5041
5042 2010-04-30 Tom Tromey <tromey@redhat.com>
5043
5044 * symtab.c (symbol_set_names): Fix typo.
5045
5046 2010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
5047
5048 * python/py-param.c (parm_constants): Avoid ARI warning
5049 by adding ARI comment.
5050 (parmpy_init): Likewise.
5051
5052 2010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
5053
5054 * windows-tdep.c (windows_get_tlb_type): Remember last GDBARCH
5055 and created type for re-use.
5056
5057 2010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
5058
5059 * NEWS: Mention gdbserver support for x86_64 Windows 64-bit.
5060
5061 2010-04-29 Doug Evans <dje@google.com>
5062
5063 * ser-base.h (reschedule): Delete prototype.
5064 * ser-base.c (reschedule): Make static.
5065
5066 2010-04-29 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
5067
5068 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Remove.
5069 (ARM_LINUX_JB_PC_FPA): Add, offset of PC in longjmp buffer for FPA.
5070 (ARM_LINUX_JB_PC_EABI): Add, offset of PC in longjmp buffer for
5071 EABI.
5072 (arm_linux_init_abi): Set up JB_PC field dependent on FP model in
5073 use.
5074
5075 2010-04-29 Pedro Alves <pedro@codesourcery.com>
5076
5077 PR gdb/11557
5078
5079 * regcache.c (registers_changed): Rename to ...
5080 (registers_changed_ptid): ... this, and only delete register cache
5081 entries matching the ptid filter argument.
5082 (registers_changed): Reimplement on top of registers_changed_ptid.
5083 * regcache.h (registers_changed_ptid): Declare.
5084 * target.c (target_resume): Flush register caches.
5085
5086 2010-04-29 Phil Muldoon <pmuldoon@redhat.com>
5087 Tom Tromey <tromey@redhat.com>
5088 Thiago Jung Bauermann <bauerman@br.ibm.com>
5089
5090 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-parameter.
5091 (SUBDIR_PYTHON_SRCS): Likewise.
5092 (py-parameter.o): New rule.
5093 * python/py-parameter.c: New file.
5094 * python/python-internal.h (gdbpy_initialize_parameter)
5095 (gdbpy_parameter, gdbpy_parameter_value)
5096 (gdbpy_parse_command_name): Declare.
5097 * python/py-cmd.c (parse_command_name): Rename to
5098 gdbpy_parse_command_name.
5099 (gdbpy_parse_command_name): Accept a starting list parameter and
5100 use over cmdlist.
5101 (cmdpy_init): Use gdbpy_parse_command_name.
5102 * python/python.c (parameter_to_python): Rename to
5103 gdbpy_parameter_to_python. Accept enum var_types and value.
5104 (gdbpy_parameter): Use gdbpy_parameter_value.
5105 (_initialize_python): Call gdbpy_initialize_parameters.
5106
5107 2010-04-29 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
5108
5109 * MAINTAINERS: Add myself for write after approval privileges.
5110
5111 2010-04-29 Mihail Zenkov <mihail.zenkov@gmail.com>
5112
5113 D language support.
5114 * Makefile.in (SFILES): Add d-lang.c d-valprint.c.
5115 (COMMON_OBS): Add d-lang.o d-valprint.o.
5116 (HFILES_NO_SRCDIR): Add d-lang.h.
5117 * NEWS: Mention D language support.
5118 * c-lang.c (c_emit_char, exp_descriptor_c): Make public.
5119 * c-lang.h (c_emit_char, exp_descriptor_c): Add declaration.
5120 * d-lang.c: New file.
5121 * d-lang.h: New file.
5122 * d-valprint.c: New file.
5123 * defs.h (enum language): Add language_d.
5124 * dwarf2read.c (set_cu_language): Add DW_LANG_D.
5125 * language.c (binop_result_type, integral_type, character_type)
5126 (string_type, boolean_type, structured_type): Add language_d.
5127 * symfile.c (init_filename_language_table): Add language_d.
5128 * symtab.c: Include d-lang.h.
5129 (symbol_init_language_specific, symbol_find_demangled_name)
5130 (symbol_natural_name, lookup_symbol_in_language)
5131 (symbol_demangled_name, symbol_matches_domain): Add language_d.
5132
5133 2010-04-27 Joel Brobecker <brobecker@adacore.com>
5134
5135 * solib-svr4.c (solib_svr4_r_map): Expand function description.
5136
5137 2010-04-27 Joel Brobecker <brobecker@adacore.com>
5138
5139 * symfile.c (init_filename_language_table): Register .dg files
5140 with language_ada.
5141
5142 2010-04-27 Joel Brobecker <brobecker@adacore.com>
5143
5144 * gdbtypes.h (struct main_type): Expand comment about target_type
5145 field.
5146
5147 2010-04-27 Pedro Alves <pedro@codesourcery.com>
5148 Tristan Gingold <gingold@adacore.com>
5149
5150 * symfile.c (reread_symbols): Also search for file in libraries.
5151 Update comment.
5152
5153 2010-04-27 Joel Brobecker <brobecker@adacore.com>
5154
5155 * configure.tgt: Treat x86-lynxos targets as x86 bareboard targets
5156 in terms of configuration.
5157
5158 2010-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
5159
5160 * objfiles.c: Include solist.h.
5161 (free_all_objfiles): New variable so. Check stale solist objfiles.
5162 * symfile.c (symbol_file_clear): Swap the order of free_all_objfiles
5163 and no_shared_libraries.
5164
5165 2010-04-27 Joel Brobecker <brobecker@adacore.com>
5166
5167 ARI warning fix.
5168 * python/py-auto-load.c (source_section_scripts): Remove trailing
5169 new-line in i18n string.
5170
5171 2010-04-26 Doug Evans <dje@google.com>
5172
5173 * serial.c (serial_write): Handle serial_debug_p akin to serial_read.
5174
5175 2010-04-26 Tom Tromey <tromey@redhat.com>
5176
5177 * cli/cli-decode.c (complete_on_cmdlist): Make two passes over the
5178 command list.
5179
5180 2010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
5181
5182 Removal of config/i386/nm-i386sol2.h native configuration file.
5183 * config/i386/nm-i386sol2.h: Remove file.
5184 * config/i386/i386sol2.mh: Remove NAT_FILE definition.
5185 * config/i386/sol2-64.mh: Idem.
5186 * config/djgpp/fnchange.lst: Remove reference to that file.
5187 * Makefile.in (HFILES_NO_SRCDIR): Idem.
5188
5189 2010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
5190
5191 PR breakpoints/11531.
5192 * config/i386/nm-i386sol2.h (CANNOT_STEP_HW_WATCHPOINTS): Remove
5193 macro definition and related comment.
5194 * infrun.c (CANNOT_STEP_HW_WATCHPOINTS): Remove macro.
5195 (resume): Remove code and comment related to this macro.
5196
5197 2010-04-26 Jan Kratochvil <jan.kratochvil@redhat.com>
5198
5199 * cp-namespace.c (cp_lookup_symbol_in_namespace): Fix alloca size.
5200 Fix whitespace.
5201
5202 2010-04-24 Pedro Alves <pedro@codesourcery.com>
5203
5204 * defs.h: Adjust comment.
5205 * filesystem.h, filesystem.c: New files.
5206 * Makefile.in (SFILES): Add filesystem.c.
5207 (COMMON_OBS): Add filesystem.o.
5208 * solib.c (solib_find): Handle DOS-based filesystems. Handle
5209 different target and host path flavours.
5210 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
5211 has_dos_based_file_system on the gdbarch.
5212 * arm-wince-tdep.c (arm_wince_init_abi): Ditto.
5213 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Ditto.
5214 * i386-tdep.c (i386_go32_init_abi): Ditto.
5215 * gdbarch.sh (has_dos_based_file_system): New.
5216 * gdbarch.h, gdbarch.c: Regenerate.
5217 * NEWS: Mention improved support for remote targets with DOS-based
5218 filesystems. Mention new `set/show target-file-system-kind'
5219 commands.
5220
5221 2010-04-23 Stan Shebs <stan@codesourcery.com>
5222
5223 * ax.h (struct agent_expr): Merge in agent_reqs fields, add some
5224 comments.
5225 (struct agent_reqs): Remove.
5226 (ax_reg_mask): Declare.
5227 * ax-general.c (new_agent_expr): Add gdbarch argument, set new fields.
5228 (free_agent_expr): Free reg_mask.
5229 (ax_print): Add scope and register mask info.
5230 (ax_reqs): Remove agent_reqs argument, use agent expression
5231 fields, and move part of register mask computation to...
5232 (ax_reg_mask): New function.
5233 * ax-gdb.c (gen_trace_static_fields): Call it.
5234 (gen_traced_pop): Ditto.
5235 (is_nontrivial_conversion): Add dummy gdbarch to new_agent_expr.
5236 (gen_trace_for_var): Pass gdbarch to new_agent_expr.
5237 (gen_trace_for_expr): Ditto, and clear optimized_out flag.
5238 (gen_eval_for_expr): Ditto, and require an rvalue.
5239 (agent_command): Call ax_reqs.
5240 (agent_eval_command): Ditto.
5241 * tracepoint.c (report_agent_reqs_errors): Use agent expression fields.
5242 (validate_action_line): Ditto.
5243 (collect_symbol): Ditto.
5244 (encode_actions_1): Ditto.
5245
5246 2010-04-23 Daniel Jacobowitz <dan@codesourcery.com>
5247 Paul Pluzhnikov <ppluzhnikov@google.com>
5248 Jan Kratochvil <jan.kratochvil@redhat.com>
5249
5250 Fix deadlock on looped list of loaded shared objects.
5251 * solib-svr4.c (LM_PREV): New function.
5252 (IGNORE_FIRST_LINK_MAP_ENTRY): Use it.
5253 (svr4_current_sos): Check for correct l_prev. New variables prev_lm
5254 and next_lm. Clear prev_lm for solib_svr4_r_ldsomap.
5255 * config/djgpp/fnchange.lst: Add translation for solib-corrupted.exp.
5256
5257 2010-04-23 Doug Evans <dje@google.com>
5258
5259 * configure.ac (CONFIG_SRCS): Add py-auto-load.o even if not using
5260 python.
5261 * configure: Regenerate.
5262 * main.c: #include "python/python.h".
5263 (captured_main): Defer loading auto-loaded scripts until after
5264 local_gdbinit has been sourced.
5265 * python/py-auto-load.c (gdbpy_global_auto_load): New global.
5266 (load_auto_scripts_for_objfile): New function.
5267 (auto_load_new_objfile): Call it.
5268 * python/python.h (gdbpy_global_auto_load): Declare.
5269 (load_auto_scripts_for_objfile): Declare.
5270
5271 Add support for auto-loading scripts from .debug_gdb_scripts section.
5272 * NEWS: Add entry for .debug_gdb_scripts.
5273 * Makefile.in SUBDIR_PYTHON_OBS): Add py-auto-load.o.
5274 (SUBDIR_PYTHON_SRCS): Add py-auto-load.c.
5275 (py-auto-load.o): New rule.
5276 * cli/cli-cmds.c (find_and_open_script): Make externally visible.
5277 * cli/cli-cmds.h (find_and_open_script): Update prototype.
5278 * python/py-auto-load.c: New file.
5279 * python/python-internal.h: #include <stdio.h>.
5280 (set_python_list, show_python_list): Declare.
5281 (gdbpy_initialize_auto_load): Declare.
5282 (source_python_script_for_objfile): Declare.
5283 * python/python.c: Remove #include of observer.h.
5284 (gdbpy_auto_load): Moved to py-auto-load.c.
5285 (GDBPY_AUTO_FILENAME): Ditto.
5286 (gdbpy_new_objfile): Delete.
5287 (source_python_script_for_objfile): New function.
5288 (set_python_list, show_python_list): Make externally visible.
5289 (_initialize_python): Move "auto-load" command to py-auto-load.c
5290 and observer_attach_new_objfile to py-auto-load.c.
5291
5292 2010-04-23 Jerome Guitton <guitton@adacore.com>
5293
5294 * alpha-tdep.c (INSN_OPCODE, MEM_RA, MEM_RB, MEM_DISP, BR_RA)
5295 (OPR_FUNCTION, OPR_HAS_IMMEDIATE, OPR_RA, OPR_RC, OPR_LIT): New macros.
5296 (lda_opcode, stq_opcode, bne_opcode, subq_opcode, subq_function):
5297 New constants.
5298 (alpha_heuristic_analyze_probing_loop): New function.
5299 (alpha_heuristic_frame_unwind_cache): In the prologue analysis, detect
5300 and handle cases when a stack probe loop is generated.
5301 * alpha-mdebug-tdep.c (alpha_mdebug_frameless): New function.
5302 (alpha_mdebug_max_frame_size_exceeded): New function.
5303 (alpha_mdebug_after_prologue): Use alpha_mdebug_frameless.
5304 (alpha_mdebug_frame_sniffer, alpha_mdebug_frame_base_sniffer):
5305 Return 0 when the maximum debuggable frame size has been exceeded.
5306
5307 2010-04-23 Joel Brobecker <brobecker@adacore.com>
5308
5309 Fix ARI warning.
5310 * ppc-linux-nat.c (booke_cmp_hw_point): Do not mark inline.
5311
5312 2010-04-20 Chris Moller <cmoller@redhat.com>
5313
5314 PR 10179
5315
5316 * symtab.c (rbreak_command): Added code to include a filename
5317 specification in the rbreak argument.
5318 * NEWS: Added a brief description of filename-qualified rbreak.
5319
5320 2010-04-22 Jan Kratochvil <jan.kratochvil@redhat.com>
5321
5322 Fix crashes on dangling display expressions.
5323 * ada-lang.c (ada_operator_check): New function.
5324 (ada_exp_descriptor): Fill-in the field operator_check.
5325 * c-lang.c (exp_descriptor_c): Fill-in the field operator_check.
5326 * jv-lang.c (exp_descriptor_java): Likewise.
5327 * m2-lang.c (exp_descriptor_modula2): Likewise.
5328 * scm-lang.c (exp_descriptor_scm): Likewise.
5329 * parse.c (exp_descriptor_standard): Likewise.
5330 (operator_check_standard): New function.
5331 (exp_iterate, exp_uses_objfile_iter, exp_uses_objfile): New functions.
5332 * parser-defs.h (struct exp_descriptor): New field operator_check.
5333 (operator_check_standard, exp_uses_objfile): New declarations.
5334 * printcmd.c: Remove the inclusion of solib.h.
5335 (display_uses_solib_p): Remove the function.
5336 (clear_dangling_display_expressions): Call lookup_objfile_from_block
5337 and exp_uses_objfile instead of display_uses_solib_p.
5338 * solist.h (struct so_list) <objfile>: New comment.
5339 * symtab.c (lookup_objfile_from_block): Remove the static qualifier.
5340 * symtab.h (lookup_objfile_from_block): New declaration.
5341 (struct general_symbol_info) <obj_section>: Extend the comment.
5342
5343 2010-04-22 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
5344 Thiago Jung Bauermann <bauerman@br.ibm.com>
5345
5346 * ppc-linux-nat.c (PTRACE_GET_DEBUGREG): Update comment.
5347 (PPC_PTRACE_GETWDBGINFO, PPC_PTRACE_SETHWDEBUG, PPC_PTRACE_DELHWDEBUG,
5348 ppc_debug_info, PPC_DEBUG_FEATURE_INSN_BP_RANGE,
5349 PPC_DEBUG_FEATURE_INSN_BP_MASK, PPC_DEBUG_FEATURE_DATA_BP_RANGE,
5350 PPC_DEBUG_FEATURE_DATA_BP_MASK, ppc_hw_breakpoint,
5351 PPC_BREAKPOINT_TRIGGER_EXECUTE, PPC_BREAKPOINT_TRIGGER READ,
5352 PPC_BREAKPOINT_TRIGGER_WRITE, PPC_BREAKPOINT_TRIGGER_RW,
5353 PPC_BREAKPOINT_MODE_EXACT PPC_BREAKPOINT_MODE_RANGE_INCLUSIVE,
5354 PPC_BREAKPOINT_MODE_RANGE_EXCLUSIVE, PPC_BREAKPOINT_MODE_MASK,
5355 PPC_BREAKPOINT_CONDITION_NONE, PPC_BREAKPOINT_CONDITION_AND,
5356 PPC_BREAKPOINT_CONDITION_EXACT, PPC_BREAKPOINT_CONDITION_OR,
5357 PPC_BREAKPOINT_CONDITION_AND_OR, PPC_BREAKPOINT_CONDITION_BE_ALL,
5358 PPC_BREAKPOINT_CONDITION_BE_SHIFT, PPC_BREAKPOINT_CONDITION_BE):
5359 Define, in case <ptrace.h> doesn't provide it.
5360 (booke_debug_info): New variable.
5361 (max_slots_number): Ditto.
5362 (hw_break_tuple): New struct.
5363 (thread_points): Ditto.
5364 (ppc_threads): New variable.
5365 (PPC_DEBUG_CURRENT_VERSION): New define.
5366 (have_ptrace_new_debug_booke): New function.
5367 (ppc_linux_check_watch_resources): Renamed to ...
5368 (ppc_linux_can_use_hw_breakpoint): ... this. Handle BookE processors.
5369 (ppc_linux_region_ok_for_hw_watchpoint): Handle BookE processors.
5370 (booke_cmp_hw_point): New function.
5371 (booke_find_thread_points_by_tid): Ditto.
5372 (booke_insert_point): Ditto.
5373 (booke_remove_point): Ditto.
5374 (ppc_linux_insert_hw_breakpoint): Ditto.
5375 (ppc_linux_remove_hw_breakpoint): Ditto.
5376 (get_trigger_type): Ditto.
5377 (ppc_linux_insert_watchpoint): Handle BookE processors.
5378 (ppc_linux_remove_watchpoint): Ditto.
5379 (ppc_linux_new_thread): Ditto.
5380 (ppc_linux_thread_exit): New function..
5381 (ppc_linux_stopped_data_address): Handle BookE processors.
5382 (ppc_linux_watchpoint_addr_within_range): Ditto.
5383 (_initialize_ppc_linux_nat): Initialize to_insert_hw_breakpoint and
5384 to_remove_hw_breakpoint fields of the target operations struct.
5385 Add observe for the thread_exit event.
5386
5387 2010-04-22 H.J. Lu <hongjiu.lu@intel.com>
5388
5389 * i386-linux-nat.c (regmap): Removed.
5390 (fetch_register): Replace regmap with
5391 i386_linux_gregset_reg_offset.
5392 (store_register): Likewise.
5393 (supply_gregset): Likewise.
5394 (fill_gregset): Likewise.
5395
5396 * i386-linux-tdep.c (i386_linux_gregset_reg_offset): Make it
5397 global.
5398
5399 * i386-linux-tdep.h (i386_linux_gregset_reg_offset): New.
5400
5401 2010-04-22 Chris Moller <cmoller@redhat.com>
5402
5403 * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
5404 method of popping recursion-detection stack with a method based on
5405 obstack_object_size(). (Similar to the PR9167 patch below, but for
5406 the static array obstack rather than the static member obstack.)
5407
5408 2010-04-22 H.J. Lu <hongjiu.lu@intel.com>
5409
5410 * amd64-linux-nat.c (amd64_linux_gregset64_reg_offset): Removed.
5411 (_initialize_amd64_linux_nat): Replace
5412 amd64_linux_gregset64_reg_offset with
5413 amd64_linux_gregset_reg_offset.
5414
5415 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Make it
5416 global.
5417
5418 * amd64-tdep.h (amd64_linux_gregset_reg_offset): New.
5419
5420 2010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
5421
5422 PR stabs/11479.
5423 * stabsread.c (set_length_in_type_chain): New function.
5424 (read_struct_type): Call set_length_in_type_chain function.
5425 (read_enum_type): Idem.
5426
5427 2010-04-21 Stan Shebs <stan@codesourcery.com>
5428 Nathan Sidwell <nathan@codesourcery.com>
5429
5430 * tracepoint.c (trace_save): Open in binary mode.
5431
5432 2010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
5433
5434 * gdbtypes.h (builtin_type): Add builtin_char16 and builtin_char32
5435 fields.
5436 * gdbtypes.c (gdbtypes_post_init): Set builtin_char16 and
5437 builtin_char32 fields.
5438 * printcmd.c (decode_format): Set char size to '\0'
5439 for strings unless explicit size is given.
5440 (print_formatted): Correct calculation of NEXT_ADDRESS
5441 for 16 or 32 bit strings.
5442 (do_examine): Do not force byte size for strings.
5443 Use builtin_char16 and builtin_char32 types to display
5444 16 or 32 bit-wide strings.
5445 (x_command): Set LAST_SIZE to 'b' for string type.
5446
5447 2010-04-21 H.J. Lu <hongjiu.lu@intel.com>
5448
5449 PR corefiles/11523
5450 * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
5451 XCR0 first.
5452
5453 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Return 0 if
5454 there is no .reg-xstate section.
5455 (i386_linux_core_read_description): Check XCR0 first.
5456
5457 2010-04-21 Mike Frysinger <vapier@gentoo.org>
5458
5459 * gdb/sparc-tdep.c (sparc32_store_return_value): Add gdb_assert ()
5460 for len <= 8.
5461
5462 2010-04-21 Chris Moller <cmoller@redhat.com>
5463
5464 PR 9167
5465 * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
5466 method of popping recursion-detection stack with a method based on
5467 obstack_object_size().
5468
5469 2010-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
5470
5471 PR pascal/11492.
5472 * p-valprint.c (pascal_val_print): Fix default printing of integer
5473 arrays.
5474
5475 2010-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
5476
5477 Fix compilation warning on gcc-4.1.2.
5478 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Initialize
5479 local variable`pc' to zero.
5480
5481 2010-04-20 Joel Brobecker <brobecker@adacore.com>
5482
5483 Implement thread support with core files on alpha-tru64.
5484 * dec-thread.c (dec_thread_find_new_threads): New function,
5485 extracted from resync_thread_list.
5486 (resync_thread_list): Add OPS parameter. Replace extracted-out
5487 code by call to dec_thread_find_new_threads.
5488 (dec_thread_wait): Update call to resync_thread_list.
5489 (init_dec_thread_ops): Set dec_thread_ops.to_find_new_threads.
5490
5491 2010-04-20 Joel Brobecker <brobecker@adacore.com>
5492
5493 * ada-lang.c (value_pointer): New function.
5494 (make_array_descriptor): Call value_pointer to convert addresses to
5495 pointers.
5496
5497 2010-04-20 Joel Brobecker <brobecker@adacore.com>
5498
5499 * rs6000-aix-tdep.c: #include exceptions.h.
5500 (rs6000_convert_from_func_ptr_addr): If an exception is thrown
5501 while reading the memory at ADDR, then ADDR cannot be a function
5502 descriptor.
5503
5504 2010-04-20 Joel Brobecker <brobecker@adacore.com>
5505
5506 * ada-typeprint.c (ada_print_typedef): New function.
5507 * ada-lang.h (ada_print_typedef): Add declaration.
5508 * ada-lang.c (ada_language_defn): set la_print_typdef field
5509 to ada_print_typedef.
5510
5511 2010-04-20 Joel Brobecker <brobecker@adacore.com>
5512
5513 * procfs.c (procfs_address_to_host_pointer): Only define when used.
5514
5515 2010-04-20 Joel Brobecker <brobecker@adacore.com>
5516
5517 * procfs.c (iterate_over_mappings_cb_ftype): New typedef.
5518 (iterate_over_mappings): Adjust function profile. Add declaration.
5519 (insert_dbx_link_bpt_in_region, info_mappings_callback):
5520 Adjust accordingly.
5521
5522 2010-04-20 Joel Brobecker <brobecker@adacore.com>
5523
5524 * procfs.c (solib_mappings_callback): Move function up to avoid
5525 a compiler warning.
5526
5527 2010-04-20 Joel Brobecker <brobecker@adacore.com>
5528
5529 * procfs.c (find_signalled_thread, find_stop_signal): Move
5530 these functions down to define them only when used.
5531
5532 2010-04-20 Joel Brobecker <brobecker@adacore.com>
5533
5534 * valprint.c (common_val_print): Fix the value before extracting
5535 its contents.
5536 * ada-lang.c (ada_to_fixed_value): Make this function extern.
5537 * ada-lang.h (ada_to_fixed_value): New function declaration.
5538 * ada-valprint.c (ada_value_print): Use ada_to_fixed_value
5539 to avoid code duplication and fix a bug in the handling of
5540 fixed types contents.
5541
5542 2010-04-20 Tom Tromey <tromey@redhat.com>
5543
5544 * dwarf2read.c (dwarf2_compute_name): Handle DW_AT_linkage_name.
5545 (read_partial_die): Likewise.
5546 (dwarf_attr_name): Likewise.
5547
5548 2010-04-20 Chris Moller <cmoller@redhat.com>
5549
5550 PR 10867
5551
5552 * cp-valprint.c (global): Adding new static array recursion
5553 detection obstack.
5554 (cp_print_value_fields, cp_print_static_field): Added new static
5555 array recursion detection code.
5556
5557 2010-04-20 Mark Kettenis <kettenis@gnu.org>
5558
5559 * i386-linux-tdep.c (i386_linux_regset_sections): Size of the
5560 general-purpose register set should be 68 instead of 144.
5561 (i386_linux_sse_regset_sections): Likewise.
5562 (i386_linux_avx_regset_sections): Likewise.
5563
5564 2010-04-20 Stan Shebs <stan@codesourcery.com>
5565 Nathan Sidwell <nathan@codesourcery.com>
5566
5567 * dwarf2loc.c (struct axs_var_loc): New struct.
5568 (dwarf2_tracepoint_var_loc): New function.
5569 (dwarf2_tracepoint_var_access): New function.
5570 (dwarf2_tracepoint_var_ref): Use dwarf2_tracepoint_var_loc, deal
5571 with DW_OP_piece.
5572 (locexpr_describe_location_piece): New function.
5573 (locexpr_describe_location_1): New function.
5574 (locexpr_describe_location): Call it, update signature.
5575 (loclist_describe_location): Rewrite to loop over locations,
5576 update signature.
5577 * symtab.h (struct symbol_computed_ops): Add address to
5578 describe_location arguments, return void.
5579 * printcmd.c (address_info): Get context PC, pass to computed
5580 location description.
5581 * tracepoint.c (scope_info): Ditto.
5582 * ax-gdb.c (trace_kludge): Export.
5583
5584 2010-04-20 Tom Tromey <tromey@redhat.com>
5585
5586 * dwarf2-frame.c (decode_frame_entry_1): Handle CIE version 4.
5587 (struct dwarf2_cie) <segment_size>: New field.
5588 * dwarf2read.c (partial_read_comp_unit_head): Accept DWARF 4.
5589 (skip_one_die): Handle DW_FORM_flag_present, DW_FORM_sec_offset,
5590 DW_FORM_exprloc.
5591 (read_attribute_value): Handle DW_FORM_flag_present,
5592 DW_FORM_sec_offset, DW_FORM_exprloc.
5593 (dump_die_shallow): Likewise.
5594 (attr_form_is_section_offset): Handle DW_FORM_sec_offset.
5595 (dwarf2_const_value): Handle DW_FORM_exprloc.
5596 (attr_form_is_block): Likewise.
5597 (struct line_header) <maximum_ops_per_instruction>: New field.
5598 (dwarf_decode_line_header): Set new field.
5599 (dwarf_decode_lines): Handle new field.
5600
5601 2010-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
5602
5603 * f-exp.y: Add new production to recognize the `logical*8' type.
5604 (LOGICAL_S8_KEYWORD): New token.
5605 * f-lang.c (enum f_primitive_types)
5606 <f_primitive_type_logical_s8>: New field.
5607 (f_language_arch_info): Handling `logical*8' type.
5608 (build_fortran_types): Building `logical*8' type.
5609 * f-lang.h (struct builtin_f_type) <builtin_logical_s8>: New field.
5610
5611 2010-04-19 Doug Evans <dje@google.com>
5612
5613 * ser-base.c (generic_readchar): Watch for EOF in read of error_fd.
5614 * ser-pipe.c (pipe_open): Fix file descriptor leaks.
5615 (pipe_close): Ditto.
5616
5617 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
5618
5619 * configure.tgt (x86_64-*-mingw*): Set BUILD_GDBSERVER to yes.
5620
5621 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
5622
5623 * windows-tdep.c (windows_get_tlb_type): Change current_seh.handle
5624 type to void function.
5625
5626 2010-04-19 Stan Shebs <stan@codesourcery.com>
5627 Vladimir Prus <vladimir@codesourcery.com>
5628
5629 * tracepoint.c (tfind_1): Add missing newline, report exit from
5630 tfind mode as such.
5631 * target.c (update_current_target): Make default
5632 to_trace_find return -1.
5633
5634 2010-04-19 Mike Frysinger <vapier@gentoo.org>
5635
5636 * objc-lang.c (find_methods): Move symname check up.
5637
5638 2010-04-19 Pedro Alves <pedro@codesourcery.com>
5639
5640 * ada-lang.c (print_recreate_exception)
5641 <ex_catch_exception_unhandled>: It's "catch exception unhandled",
5642 not "catch unhandled".
5643
5644 2010-04-19 Pedro Alves <pedro@codesourcery.com>
5645
5646 PR breakpoints/8554.
5647
5648 Implement `save-breakpoints'.
5649
5650 * breakpoint.c (save_cmdlist): New.
5651 (breakpoint_set_cmdlist, breakpoint_show_cmdlist): Moved up close
5652 to save_cmdlist.
5653 (print_recreate_catch_fork): New.
5654 (catch_fork_breakpoint_ops): Install it.
5655 (print_recreate_catch_vfork): New.
5656 (catch_vfork_breakpoint_ops): Install it.
5657 (print_recreate_catch_syscall): New.
5658 (catch_syscall_breakpoint_ops): Install it.
5659 (print_recreate_catch_exec): New.
5660 (catch_exec_breakpoint_ops): Install it.
5661 (print_recreate_exception_catchpoint): New.
5662 (gnu_v3_exception_catchpoint_ops): Install it.
5663 (save_breakpoints): New, based on tracepoint_save_command, but
5664 handle all breakpoint types.
5665 (save_breakpoints_command): New.
5666 (tracepoint_save_command): Rename to...
5667 (save_tracepoints_command): ... this, and reimplement using
5668 save_breakpoints.
5669 (save_command): New.
5670 (_initialize_breakpoints): Install the "save" command prefix.
5671 Install the "save breakpoints" command. Make "save-tracepoints" a
5672 deprecated alias for "save tracepoints".
5673 * breakpoint.h (struct breakpoint_ops): New field `print_recreate'.
5674 * ada-lang.c (print_recreate_exception): New.
5675 (print_recreate_catch_exception): New.
5676 (catch_exception_breakpoint_ops): Install it.
5677 (print_recreate_catch_exception_unhandled): New.
5678 (catch_exception_unhandled_breakpoint_ops): Install it.
5679 (print_recreate_catch_assert): New.
5680 (catch_assert_breakpoint_ops): Install it.
5681
5682 * NEWS: Mention the new `save breakpoints' command. Mention the
5683 new `save tracepoints' alias and that `save-tracepoints' is now
5684 deprecated.
5685
5686 2010-04-18 Pedro Alves <pedro@codesourcery.com>
5687
5688 PR tui/9217
5689
5690 * tui/tui-out.c: Include cli-out.h.
5691 (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
5692 (tui_begin, tui_end, tui_field_int, tui_field_skip)
5693 (tui_field_string, tui_field_fmt, tui_spaces, tui_text)
5694 (tui_message, tui_wrap_hint, tui_flush): Delete forward
5695 declarations.
5696 (struct ui_out_data): Rename to...
5697 (struct tui_ui_out_data): ... this. Remove `stream' and
5698 `suppress_output' fields, and inherit cli_ui_out_data.
5699 (tui_out_data): New typedef.
5700 (tui_ui_out_impl): Don't initialize fields staticaly.
5701 (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
5702 (tui_begin, tui_end): Delete.
5703 (tui_field_int): Adjust to delegate most work to the base type.
5704 (tui_field_skip): Delete.
5705 (tui_field_string, tui_field_fmt): Adjust comment. Adjust to
5706 delegate most work to the base type.
5707 (tui_spaces): Delete.
5708 (tui_text): Adjust to delegate most work to the base type.
5709 (tui_message): Delete.
5710 (tui_wrap_hint): Delete.
5711 (tui_flush): Delete.
5712 (out_field_fmt): Delete.
5713 (field_separator): Delete.
5714 (tui_out_new): Adjust to initialize the base type.
5715 (_initialize_tui_out): Initialize tui_ui_out_impl.
5716 * cli-out.c (struct ui_out_data): Moved out to cli-out.h, renamed
5717 cli_ui_out_data.
5718 (cli_out_data): Adjust.
5719 (cli_ui_out_impl): Make extern.
5720 (cli_table_header, cli_field_int, cli_field_skip): Use
5721 uo_field_string instead of cli_field_string.
5722 (cli_redirect): Adjust to use cli_out_data.
5723 (cli_out_data_ctor): New.
5724 (cli_out_new): Use it.
5725 * cli-out.h (struct ui_file): Remove forward declaration.
5726 (struct cli_ui_out_data): New, moved from cli-out.c, and renamed.
5727 (cli_ui_out_impl): Declare.
5728 (cli_out_data_ctor): Declare.
5729 * ui-out.c (struct ui_out) <data>: Change type to void pointer.
5730 (uo_field_string): No longer static.
5731 (ui_out_data): Change return type to void pointer.
5732 (ui_out_new): Change `data' parameter type to void pointer.
5733 * ui-out.h (struct ui_out_data): Don't forward declare.
5734 (ui_out_data): Change return type to void pointer.
5735 (ui_out_new): Change `data' parameter type to void pointer.
5736 (uo_field_string): Declare.
5737
5738 2010-04-17 Pedro Alves <pedro@codesourcery.com>
5739
5740 * ui-file.c (tee_file_isatty): Return whether `tee->one' is a tty,
5741 instead of always false.
5742
5743 2010-04-17 H.J. Lu <hongjiu.lu@intel.com>
5744
5745 PR corefiles/11511
5746 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Support
5747 orig_rax.
5748
5749 2010-04-17 Pedro Alves <pedro@codesourcery.com>
5750
5751 * breakpoint.c (watchpoints_triggered): Use
5752 is_hardware_watchpoint.
5753 (watchpoints_triggered): Ditto.
5754 (bpstat_check_location): Use is_watchpoint and
5755 is_hardware_watchpoint.
5756 (bpstat_check_watchpoint): Use is_watchpoint and
5757 is_hardware_watchpoint.
5758 (bpstat_stop_status): Fix comment.
5759 (user_settable_breakpoint): Use is_watchpoint.
5760 (hw_watchpoint_used_count): Use is_hardware_watchpoint.
5761 (disable_watchpoints_before_interactive_call_start): Use
5762 is_watchpoint.
5763 (enable_watchpoints_after_interactive_call_stop): Use
5764 is_watchpoint.
5765 (clear_command): Use is_watchpoint.
5766 (do_enable_breakpoint): Use is_watchpoint.
5767
5768 2010-04-16 Mike Frysinger <vapier@gentoo.org>
5769
5770 * solib-frv.c (enable_break1_done): Delete.
5771 (enable_break2): Do not check enable_break1_done. Move the
5772 enable_break2_done setting and call to
5773 remove_solib_event_breakpoints() to the end. Return without
5774 warning when the contents of _dl_debug_addr are 0.
5775 (enable_break): Do not set enable_break1_done.
5776 (frv_clear_solib): Likewise.
5777
5778 2010-04-16 Kevin Buettner <kevinb@redhat.com>
5779
5780 * m32c-tdep.c (m32c_m16c_address_to_pointer): Print warning
5781 instead of an error if no PLT entry is found. Return a
5782 potentially useful result.
5783 (m32c_m16c_pointer_to_address): Add code to search for function
5784 address when no .plt entry is found.
5785
5786 2010-04-16 Stan Shebs <stan@codesourcery.com>
5787
5788 * tracepoint.c (trace_variable_command): Run a cleanup.
5789
5790 2010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
5791
5792 * p-lang.c (pascal_one_char): Do not restrict C to 0..255 range.
5793
5794 2010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
5795
5796 Support for Windows OS Thread Information Block.
5797 * NEWS: Document new feature.
5798 * remote.c (PACKET_qGetTIBAddr): New enum element.
5799 (remote_get_tib_address): New function.
5800 (init_remote_ops): Set to_get_tib_address field
5801 to remote_get_tib_address.
5802 (_initialize_remote): Add add_packet_config_cmd
5803 for PACKET_qGetTIBAddr.
5804 * target.c (update_current_target): Set default value for
5805 new to_get_tib_address field.
5806 * target.h (target_ops): New field to_get_tib_address.
5807 (target_get_tib_address): New macro.
5808 * windows-nat.c (thread_info): Add thread_local_base field.
5809 (windows_add_thread): Add tlb argument of type 'void *'.
5810 (fake_create_process): Adapt windows_add_thread call.
5811 (get_windows_debug_event): Idem.
5812 (windows_get_tib_address): New function.
5813 (init_windows_ops): Set to_get_tib_address field
5814 to remote_get_tib_address.
5815 (_initialize_windows_nat): Replace info_w32_cmdlist
5816 initialization by a call to init_w32_command_list.
5817 (info_w32_command, info_w32_cmdlist): Removed from here...
5818 to windows-tdep.c file.
5819 * windows-tdep.h (info_w32_cmdlist): Declare.
5820 (init_w32_command_list): New external function
5821 declaration.
5822 * windows-tdep.c: Add several headers.
5823 (info_w32_cmdlist): to here, made global.
5824 (thread_information_32): New struct.
5825 (thread_information_64): New struct.
5826 (TIB_NAME): New char array.
5827 (MAX_TIB32, MAX_TIB64, FULL_TIB_SIZE): New constants.
5828 (maint_display_all_tib): New static variable.
5829 (windows_get_tlb_type): New function.
5830 (tlb_value_read, tlb_value_write): New functions.
5831 (tlb_value_funcs): New static struct.
5832 (tlb_make_value): New function.
5833 (display_one_tib): New function.
5834 (display_tib): New function.
5835 (show_maint_show_all_tib):New function.
5836 (info_w32_command): Moved from windows-nat.c.
5837 (init_w32_command_list): New function.
5838 (_initialize_windows_tdep): New function.
5839 New "maint set/show show-all-tib" command
5840 New "$_tlb" internal variable.
5841
5842 2010-04-16 Joel Brobecker <brobecker@adacore.com>
5843
5844 * tui/tui-regs.c (tui_display_register): Add comment about
5845 a couple of casts.
5846 * tui/tui-stack.c (tui_show_locator_content): Ditto.
5847
5848 2010-04-15 Stan Shebs <stan@codesourcery.com>
5849
5850 * frame.c: Include tracepoint.h.
5851 (get_current_frame): Allow a trace frame to be an alternate source
5852 of stack frame data.
5853 * tracepoint.c (tfind_1): Don't try to get current stack frame if
5854 it won't succeed.
5855
5856 2010-04-15 Pedro Alves <pedro@codesourcery.com>
5857
5858 * ppc-linux-tdep.c (bsd_uthread_solib_loaded): Always pass 0 for
5859 flags.
5860 * solib-spu.c (spu_solib_loaded): Always pass 0 for flags.
5861
5862 2010-04-15 Doug Evans <dje@google.com>
5863
5864 * NEWS: Add entry for python program space support.
5865 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-progspace.o.
5866 (SUBDIR_PYTHON_SRCS): Add py-progspace.c.
5867 (py-progspace.o): New rule.
5868 * python/py-prettyprint.c (find_pretty_printer_from_objfiles): New
5869 function.
5870 (find_pretty_printer_from_progspace): New function.
5871 (find_pretty_printer_from_gdb): New function.
5872 (find_pretty_printer): Rewrite.
5873 * python/py-progspace.c: New file.
5874 * python/python-internal.h (program_space): Add forward decl.
5875 (pspace_to_pspace_object, pspy_get_printers): Declare.
5876 (gdbpy_initialize_pspace): Declare.
5877 * python/python.c: #include "progspace.h".
5878 (gdbpy_get_current_progspace, gdbpy_progspaces): New functions.
5879 (_initialize_python): Call gdbpy_initialize_pspace.
5880 (GdbMethods): Add current_progspace, progspaces.
5881
5882 Add -s option to source command.
5883 * NEWS: Document new option.
5884 * cli/cli-cmds.c (find_and_open_script): Add function comment.
5885 Delete from_tty and cleanupp args. Split filep arg into file and
5886 full_pathp. New arg search_path.
5887 (source_script_from_stream): New function.
5888 (source_script_with_search): New function.
5889 (source_script): Rewrite.
5890 (source_command): Parse "-s" option.
5891 (init_cli_cmds): Add "-s" docs to source command help, and reformat.
5892 * python/python.c (source_python_script): Make file arg a const char *.
5893 Don't call fclose, leave for caller.
5894 * python/python.h (source_python_script): Update.
5895
5896 2010-04-14 Daniel Jacobowitz <dan@codesourcery.com>
5897 Pedro Alves <pedro@codesourcery.com>
5898
5899 Avoid rereading shared libraries that haven't changed.
5900
5901 * solib.c (free_so_symbols): New function, from ...
5902 (free_so): ... here. Call it.
5903 (solib_read_symbols): Don't warn here if symbols have already been
5904 loaded.
5905 (solib_add): Warn here instead, if a pattern was specified.
5906 (reload_shared_libraries_1): New.
5907 (reload_shared_libraries): Rewrite to not fetch the library list.
5908
5909 2010-04-14 Doug Evans <dje@google.com>
5910
5911 * source.c (openp): Strip DOS drive letter if present before
5912 concatenating string to search path.
5913
5914 2010-04-14 Pedro Alves <pedro@codesourcery.com>
5915
5916 * objfiles.h (gdb_bfd_close_or_warn): Declare.
5917 * objfiles.c (gdb_bfd_close_or_warn): New.
5918 * corelow.c: Include objfiles.h
5919 (core_close): Use gdb_bfd_close_or_warn.
5920 * elfread.c (build_id_verify): Ditto.
5921 * exec.c (exec_close, exec_close_1): Ditto.
5922
5923 2010-04-14 Daniel Jacobowitz <dan@codesourcery.com>
5924 Pedro Alves <pedro@codesourcery.com>
5925
5926 Group errors for many missing shared libraries.
5927
5928 * solist.h (struct so_list): Remove from_tty.
5929 * solib.c (solib_bfd_open): Return NULL if we failed to open a BFD.
5930 (solib_map_sections): Take so_list argument. Return 0 if we
5931 failed to open a BFD. Add target sections here.
5932 (symbol_add_stub): Delete.
5933 (solib_read_symbols): Inline symbol_add_stub. Use current flags,
5934 not from_tty copied from the so_list. Don't warn a second time
5935 for a missing library.
5936 (update_solib_list): Don't save from_tty. Use TRY_CATCH. Do not
5937 add to the section table here. Print out a single warning for all
5938 missing libraries.
5939 * bsd-uthread.c (bsd_uthread_solib_loaded): Always pass 0 for
5940 flags.
5941
5942 2010-04-14 Phil Muldoon <pmuldoon@redhat.com>
5943
5944 * python/py-block.c (gdbpy_block_for_pc): Use i8n to encompass
5945 error/warning messages. Capitalize and use complete sentences.
5946 (blpy_block_syms_iternext): Likewise.
5947 * python/py-cmd.c (parse_command_name, cmdpy_init): Likewise.
5948 * python/py-frame.c (FRAPY_REQUIRE_VALID, frapy_block)
5949 (frame_info_to_frame_object, frapy_read_var)
5950 (gdbpy_frame_stop_reason_string): Likewise.
5951 * python/py-lazy-string.c (stpy_convert_to_value)
5952 (gdbpy_create_lazy_string_object): Likewise.
5953 * python/py-objfile.c (objfpy_set_printers): Likewise.
5954 * python/py-prettyprint.c (gdbpy_default_visualizer): Likewise.
5955 * python/python.c (parameter_to_python): Likewise.
5956 * python/py-type.c (typy_range, typy_target): Likewise.
5957 * python/py-value.c (valpy_cast, valpy_length, valpy_getitem)
5958 (valpy_richcompare, valpy_int, valpy_long, valpy_float): Likewise.
5959
5960
5961 2010-04-14 Phil Muldoon <pmuldoon@redhat.com>
5962
5963 PR python/11381
5964
5965 * python/py-prettyprint.c (pretty_print_one_value): Test for
5966 Py_None.
5967 (print_string_repr): Test for Py_None. Set flags accordingly.
5968 Return value depending on return type.
5969 (print_children): Take a value indicating whether data was printed
5970 before this function was called. Alter output accordingly.
5971 (apply_val_pretty_printer): Capture return value from
5972 print_string_repr and pass to print_children.
5973
5974 2010-04-13 Mark Kettenis <kettenis@gnu.org>
5975
5976 PR corefiles/11481
5977 * i386-linux-tdep.c (i386_linux_regset_sections): Remove extended
5978 register note sections.
5979 (i386_linux_sse_regset_sections, i386_linux_avx_regset_sections):
5980 New variables.
5981 (i386_linux_init_abi): Install list of supported register note
5982 sections that matches the target description.
5983
5984 2010-04-13 Pedro Alves <pedro@codesourcery.com>
5985
5986 * remote.c (remote_get_noisy_reply): Don't error out on empty
5987 replies.
5988 (remote_start_remote): Update and merge tracepoints and trace
5989 state variables as long as the target supports tracepoints.
5990 (remote_trace_init): Fix prototype.
5991 (remote_download_trace_state_variable): Validate reply.
5992 (remote_trace_set_readonly_regions): Fix prototype.
5993 (remote_trace_start): Fix prototype. Check for empty reply.
5994 (remote_get_trace_status): Small cleanup.
5995 (remote_trace_stop): Fix prototype. Check for empty reply.
5996 (remote_trace_find): Check for empty reply.
5997 (remote_save_trace_data): Validate reply.
5998 (remote_set_disconnected_tracing): Check for empty reply, and
5999 validate reply.
6000 (remote_set_circular_trace_buffer): Ditto.
6001
6002 2010-04-13 Pierre Muller <muller@ics.u-strasbg.fr>
6003
6004 Suppress unused value warning during compilation.
6005 * tui/tui-regs.c (tui_display_register): Cast wstandout and wstandend
6006 calls to void.
6007 * tui/tui-stack.c (tui_show_locator_content): Likewise.
6008
6009 2010-04-12 Stan Shebs <stan@codesourcery.com>
6010
6011 * tracepoint.c (tfile_xfer_partial): Check read result.
6012
6013 2010-04-12 Mike Frysinger <vapier@gentoo.org>
6014
6015 * remote-m32r-sdi.c (m32r_files_info): Add const to local "file" var.
6016 * remote-sim.c (gdbsim_files_info): Likewise.
6017
6018 2010-04-12 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
6019
6020 * arm-tdep.h (gdb_regnum): Add ARM_FPSCR_REGNUM
6021 * arm-linux-nat.c (arm_linux_vfp_register_count): New
6022 variable.
6023 (fetch_vfp_registers): New function to fetch VFP registers.
6024 (store_vfp_registers): New function to store VFP registers.
6025 (arm_linux_fetch_inferior_registers): Add support for VFP
6026 registers.
6027 (arm_linux_store_inferior_registers): Likewise.
6028 (arm_linux_read_description): Likewise.
6029 (_initialize_arm_linux_nat): Delay initialising iWMMX tdesc
6030 until we need it.
6031
6032 2010-04-11 H.J. Lu <hongjiu.lu@intel.com>
6033
6034 * amd64-tdep.c (amd64_supply_xstateregset): Remove the unused
6035 tdep.
6036 (amd64_collect_xstateregset): Likewise.
6037
6038 2010-04-09 Stan Shebs <stan@codesourcery.com>
6039
6040 * tracepoint.c (trace_status_mi): Report frames created.
6041
6042 * tracepoint.c (trace_dump_command): Include default-collect
6043 expressions.
6044
6045 2010-04-09 Ulrich Weigand <uweigand@de.ibm.com>
6046
6047 * symtab.c (find_function_start_sal): Never return SAL pointing
6048 before function start address, even if line info is missing.
6049
6050 2010-04-09 Pedro Alves <pedro@codesourcery.com>
6051
6052 * NEWS: Mention tracepoints support.
6053
6054 2010-04-09 Pedro Alves <pedro@codesourcery.com>
6055
6056 * tracepoint.c (trace_status_mi): Report disconnected tracing and
6057 circular trace buffer statuses.
6058
6059 2010-04-09 Jan Kratochvil <jan.kratochvil@redhat.com>
6060
6061 * config/djgpp/fnchange.lst: Fix typo in translations for
6062 symbol-without-target_section.exp and symbol-without-target_section.c.
6063
6064 2010-04-09 Pedro Alves <pedro@codesourcery.com>
6065
6066 * breakpoint.c (condition_command): Pass condition expression to
6067 set_breakpoint_condition stripped from breakpoint number.
6068
6069 2010-04-09 Phil Muldoon <pmuldoon@redhat.com>
6070 Thiago Jung Bauermann <bauerman@br.ibm.com>
6071 Tom Tromey <tromey@redhat.com>
6072
6073 * breakpoint.c (condition_command): Simplify. Move condition
6074 setting code to ...
6075 (set_breakpoint_condition): ... here. New function.
6076 * breakpoint.h (set_breakpoint_condition): Declare.
6077 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-breakpoint.
6078 (SUBDIR_PYTHON_SRCS): Likewise.
6079 (py-breakpoint.o): New rule.
6080 * python/py-breakpoint.c: New file.
6081 * python/python-internal.h (gdbpy_breakpoints)
6082 (gdbpy_initialize_breakpoints): Declare.
6083 (GDB_PY_SET_HANDLE_EXCEPTION) Define.
6084
6085 2010-04-09 Pedro Alves <pedro@codesourcery.com>
6086
6087 * regformats/regdat.sh: Include server.h. Don't include
6088 regcache.h.
6089
6090 2010-04-08 Stan Shebs <stan@codesourcery.com>
6091 Pedro Alves <pedro@codesourcery.com>
6092
6093 * tracepoint.h (struct trace_status): New fields disconnected_tracing
6094 and circular_buffer.
6095 (disconnect_tracing): Rename from disconnect_or_stop_tracing.
6096 * tracepoint.c (trace_status_command): Display target's status for
6097 disconnected tracing and circular buffer.
6098 (disconnect_tracing): Rename from disconnect_or_stop_tracing, add
6099 query for non-disconnected-tracing case, remove the stop_tracing
6100 call.
6101 (tfile_open): Clear disconnected and circular buffer status.
6102 (trace_save): Save disconnected and circular buffer status.
6103 (parse_trace_status): Parse disconnected and circular buffer status,
6104 also recognize disconnected as a stop reason.
6105 * remote.c (remote_set_disconnected_tracing): Only set
6106 QTDisconnected if the remote end supports disconnected tracing.
6107 Warn otherwise, if trying to enable disconnected tracing.
6108 * infcmd.c (detach_command): Update disconnect_tracing call.
6109 * cli/cli-cmds.c (quit_command): Ditto.
6110
6111 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
6112
6113 * i387-tdep.c (i387_collect_xsave): Replace abort with
6114 internal_error.
6115
6116 2010-04-08 Stan Shebs <stan@codesourcery.com>
6117
6118 * breakpoint.c (default_collect_info): New function.
6119 (breakpoints_info): Call it.
6120 (maintenance_info_breakpoints): Ditto.
6121 (tracepoints_info): Ditto.
6122
6123 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
6124
6125 * i387-tdep.c (i387_collect_xsave): Re-indent.
6126
6127 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
6128
6129 * i386-linux-nat.c (have_ptrace_getfpxregs): Initialize to -1
6130 if HAVE_PTRACE_GETFPXREGS is defined.
6131 (i386_linux_read_description): Set have_ptrace_getfpxregs and
6132 have_ptrace_getregset to 0 if ptrace PTRACE_GETFPXREGS failed.
6133
6134 * i386-linux-tdep.c: Include "features/i386/i386-mmx-linux.c"
6135 (i386_linux_core_read_description): Return tdesc_i386_mmx_linux
6136 if .reg-xfp section doesn't exist.
6137 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_mmx_linux.
6138
6139 * i386-linux-tdep.h (tdesc_i386_mmx_linux): New.
6140
6141 * i386-tdep.c: Include "features/i386/i386-mmx.c".
6142 (i386_go32_init_abi): Set tdesc to tdesc_i386_mmx.
6143 (i386_validate_tdesc_p): Make org.gnu.gdb.i386.sse optional. Set
6144 xcr0 to I386_XSTATE_X87_MASK if SSE isn't available.
6145 (i386_gdbarch_init): Update comments.
6146 (_initialize_i386_tdep): Call initialize_tdesc_i386_mmx.
6147
6148 * common/i386-xstate.h (I386_XSTATE_X87_MASK): New.
6149
6150 * config/djgpp/fnchange.lst: Add i386 MMX XML files.
6151
6152 * features/Makefile (i386/i386-mmx-expedite): New.
6153 (i386/i386-mmx-linux-expedite): Likewise.
6154 ($(outdir)/i386/i386-mmx.dat): Likewise.
6155 ($(outdir)/i386/i386-mmx-linux.dat): Likewise.
6156
6157 * features/i386/i386-mmx-linux.c: New.
6158 * features/i386/i386-mmx-linux.xml: Likewise.
6159 * features/i386/i386-mmx.c: Likewise.
6160 * features/i386/i386-mmx.xml: Likewise.
6161 * regformats/i386/i386-mmx-linux.dat: Likewise.
6162 * regformats/i386/i386-mmx.dat: Likewise.
6163
6164 * features/Makefile (WHICH): Add i386/i386-mmx and
6165 i386/i386-mmx-linux.
6166
6167 2010-04-08 Doug Evans <dje@google.com>
6168
6169 * source.c (openp): Skip $cdir in PATH.
6170
6171 2010-04-08 Phil Muldoon <pmuldoon@redhat.com>
6172
6173 PR python/11417
6174 * python/py-lazy-string.c (stpy_convert_to_value): Check for
6175 a NULL address.
6176 (gdbpy_create_lazy_string_object): Allow strings with a NULL
6177 address and a zero length.
6178
6179 2010-04-08 Hui Zhu <teawater@gmail.com>
6180
6181 * i386-tdep.c (i386_process_record): Add support for insn
6182 rdtsc.
6183
6184 2010-04-07 Doug Evans <dje@google.com>
6185
6186 * python/python.c (source_python_script): Use ensure_python_env
6187 to prepare environment for script.
6188
6189 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
6190
6191 * amd64-linux-nat.c: Include "regset.h", "elf/common.h",
6192 <sys/uio.h> and "i386-xstate.h".
6193 (PTRACE_GETREGSET): New.
6194 (PTRACE_SETREGSET): Likewise.
6195 (have_ptrace_getregset): Likewise.
6196 (amd64_linux_gregset64_reg_offset): Include 16 upper YMM
6197 registers.
6198 (amd64_linux_gregset32_reg_offset): Include 8 upper YMM
6199 registers.
6200 (amd64_linux_fetch_inferior_registers): Support PTRACE_GETFPREGS.
6201 (amd64_linux_store_inferior_registers): Likewise.
6202 (amd64_linux_read_description): Check and enable AVX target
6203 descriptions.
6204
6205 * amd64-linux-tdep.c: Include "regset.h", "i386-linux-tdep.h"
6206 and "features/i386/amd64-avx-linux.c".
6207 (amd64_linux_regset_sections): New.
6208 (amd64_linux_core_read_description): Check and enable AVX
6209 target description.
6210 (amd64_linux_init_abi): Set xsave_xcr0_offset. Call
6211 set_gdbarch_core_regset_sections.
6212 (_initialize_amd64_linux_tdep): Call
6213 initialize_tdesc_amd64_avx_linux.
6214
6215 * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM): Replace
6216 AMD64_MXCSR_REGNUM with AMD64_YMM15H_REGNUM.
6217 (tdesc_amd64_avx_linux): New.
6218 (amd64_linux_update_xstateregset): Likewise.
6219
6220 * amd64-tdep.c: Include "features/i386/amd64-avx.c".
6221 (amd64_ymm_names): New.
6222 (amd64_ymmh_names): Likewise.
6223 (amd64_register_name): Likewise.
6224 (amd64_supply_xstateregset): Likewise.
6225 (amd64_collect_xstateregset): Likewise.
6226 (amd64_supply_xsave): Likewise.
6227 (amd64_collect_xsave): Likewise.
6228 (AMD64_NUM_REGS): Removed.
6229 (amd64_dwarf_reg_to_regnum): Return %ymmN register number for
6230 %xmmN if AVX is available.
6231 (amd64_pseudo_register_name): Support pseudo YMM registers.
6232 (amd64_regset_from_core_section): Support .reg-xstate section.
6233 (amd64_init_abi): Set ymmh_register_names, num_ymm_regs
6234 and ymm0h_regnum. Call set_gdbarch_register_name.
6235 (amd64_init_abi): Call initialize_tdesc_amd64_avx.
6236
6237 * amd64-tdep.h (amd64_regnum): Add AMD64_YMM0H_REGNUM and
6238 AMD64_YMM15H_REGNUM.
6239 (AMD64_NUM_REGS): New.
6240 (amd64_supply_xsave): Likewise.
6241 (amd64_collect_xsave): Likewise.
6242 (amd64_register_name): Removed.
6243 (amd64_register_type): Likewise.
6244
6245 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
6246
6247 * i387-tdep.c: Include "i386-xstate.h".
6248 (XSAVE_XSTATE_BV_ADDR): New.
6249 (xsave_avxh_offset): Likewise.
6250 (XSAVE_AVXH_ADDR): Likewise.
6251 (i387_supply_xsave): Likewise.
6252 (i387_collect_xsave): Likewise.
6253
6254 * i387-tdep.h (I387_NUM_YMM_REGS): New.
6255 (I387_YMM0H_REGNUM): Likewise.
6256 (I387_YMMENDH_REGNUM): Likewise.
6257 (i387_supply_xsave): Likewise.
6258 (i387_collect_xsave): Likewise.
6259
6260 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
6261
6262 * i386-linux-nat.c: Include "regset.h", "elf/common.h",
6263 <sys/uio.h> and "i386-xstate.h".
6264 (PTRACE_GETREGSET): New.
6265 (PTRACE_SETREGSET): Likewise.
6266 (fetch_xstateregs): Likewise.
6267 (store_xstateregs): Likewise.
6268 (GETXSTATEREGS_SUPPLIES): Likewise.
6269 (regmap): Include 8 upper YMM registers.
6270 (i386_linux_fetch_inferior_registers): Support XSAVE extended
6271 state.
6272 (i386_linux_store_inferior_registers): Likewise.
6273 (i386_linux_read_description): Check and enable AVX target
6274 descriptions.
6275
6276 * i386-linux-tdep.c: Include "regset.h", "i387-tdep.h",
6277 "i386-xstate.h" and "features/i386/i386-avx-linux.c".
6278 (i386_linux_regset_sections): Add ".reg-xstate".
6279 (i386_linux_gregset_reg_offset): Include 8 upper YMM registers.
6280 (i386_linux_core_read_xcr0): New.
6281 (i386_linux_core_read_description): Check and enable AVX target
6282 description.
6283 (i386_linux_init_abi): Set xsave_xcr0_offset.
6284 (_initialize_i386_linux_tdep): Call
6285 initialize_tdesc_i386_avx_linux.
6286
6287 * i386-linux-tdep.h (I386_LINUX_ORIG_EAX_REGNUM): Replace
6288 I386_SSE_NUM_REGS with I386_AVX_NUM_REGS.
6289 (i386_linux_core_read_xcr0): New.
6290 (tdesc_i386_avx_linux): Likewise.
6291 (I386_LINUX_XSAVE_XCR0_OFFSET): Likewise.
6292
6293 * i386-tdep.c: Include "i386-xstate.h" and
6294 "features/i386/i386-avx.c".
6295 (i386_ymm_names): New.
6296 (i386_ymmh_names): Likewise.
6297 (i386_ymmh_regnum_p): Likewise.
6298 (i386_ymm_regnum_p): Likewise.
6299 (i386_xmm_regnum_p): Likewise.
6300 (i386_register_name): Likewise.
6301 (i386_ymm_type): Likewise.
6302 (i386_supply_xstateregset): Likewise.
6303 (i386_collect_xstateregset): Likewise.
6304 (i386_sse_regnum_p): Removed.
6305 (i386_pseudo_register_name): Support pseudo YMM registers.
6306 (i386_pseudo_register_type): Likewise.
6307 (i386_pseudo_register_read): Likewise.
6308 (i386_pseudo_register_write): Likewise.
6309 (i386_dbx_reg_to_regnum): Return %ymmN register number for
6310 %xmmN if AVX is available.
6311 (i386_regset_from_core_section): Support .reg-xstate section.
6312 (i386_register_reggroup_p): Supper upper YMM and YMM registers.
6313 (i386_process_record): Replace i386_sse_regnum_p with
6314 i386_xmm_regnum_p.
6315 (i386_validate_tdesc_p): Support org.gnu.gdb.i386.avx feature.
6316 Set ymmh_register_names, num_ymm_regs, ymm0h_regnum and xcr0.
6317 (i386_gdbarch_init): Set xstateregset. Set xsave_xcr0_offset.
6318 Call set_gdbarch_register_name. Replace I386_SSE_NUM_REGS with
6319 I386_AVX_NUM_REGS. Set ymmh_register_names, ymm0h_regnum and
6320 num_ymm_regs. Add num_ymm_regs to set_gdbarch_num_pseudo_regs.
6321 Set ymm0_regnum.
6322 (_initialize_i386_tdep): Call initialize_tdesc_i386_avx.
6323
6324 * i386-tdep.h (gdbarch_tdep): Add xstateregset, ymm0_regnum,
6325 xcr0, xsave_xcr0_offset, ymm0h_regnum, ymmh_register_names and
6326 i386_ymm_type.
6327 (i386_regnum): Add I386_YMM0H_REGNUM, and I386_YMM7H_REGNUM.
6328 (I386_AVX_NUM_REGS): New.
6329 (i386_xmm_regnum_p): Likewise.
6330 (i386_ymm_regnum_p): Likewise.
6331 (i386_ymmh_regnum_p): Likewise.
6332
6333 * common/i386-xstate.h: New.
6334
6335 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
6336
6337 * config/djgpp/fnchange.lst: Add x86 AVX XML files.
6338
6339 * features/Makefile (WHICH): Add i386/i386-avx,
6340 i386/i386-avx-linux, i386/x86-64-avx and i386/x86-64-avx-linux.
6341 (i386/i386-avx-expedite): New.
6342 (i386/i386-avx-linux-expedite): Likewise.
6343 (i386/x86-64-avx-expedite):Likewise.
6344 (i386/x86-64-avx-linux-expedite): Likewise.
6345 ($(outdir)/i386/i386-avx.dat): New dependency.
6346 ($(outdir)/i386/i386-avx-linux.dat): Likewise.
6347 ($(outdir)/i386/x86-avx-64.dat): Likewise.
6348 ($(outdir)/i386/x86-64-avx-linux.dat): Likewise.
6349
6350 * features/i386/32bit-avx.xml: New.
6351 * features/i386/64bit-avx.xml: Likewise.
6352 * features/i386/i386-avx-linux.c: Likewise.
6353 * features/i386/i386-avx-linux.xml: Likewise.
6354 * features/i386/i386-avx.c: Likewise.
6355 * features/i386/i386-avx.xml: Likewise.
6356 * features/i386/x86-64-avx-linux.c: Likewise.
6357 * features/i386/x86-64-avx-linux.xml: Likewise.
6358 * features/i386/x86-64-avx.c: Likewise.
6359 * features/i386/x86-64-avx.xml: Likewise.
6360 * regformats/i386/i386-avx-linux.dat: Likewise.
6361 * regformats/i386/i386-avx.dat: Likewise.
6362 * regformats/i386/x86-64-avx-linux.dat: Likewise.
6363 * regformats/i386/x86-64-avx.dat: Likewise.
6364
6365 2010-04-07 Doug Evans <dje@google.com>
6366
6367 * top.c (source_file_name): Make const char *.
6368 * top.h (source_file_name): Update.
6369 * cli/cli-script.c (source_cleanup_lines_args): Make old_file
6370 const char *.
6371 (script_from_file): Change `file' arg to const char *.
6372 * cli/cli-script.h (script_from_file): Update.
6373
6374 2010-04-06 Doug Evans <dje@google.com>
6375
6376 * cli/cli-cmds.c (source_command): Run cleanups.
6377
6378 2010-04-06 Stan Shebs <stan@codesourcery.com>
6379
6380 * defs.h (char_ptr): Move typedef here from...
6381 * ada-lang.c (char_ptr): Remove.
6382 * charset.c (char_ptr): Remove.
6383 * tracepoint.h (struct uploaded_string): Remove.
6384 (struct uploaded_tp): Use vectors for string arrays.
6385 * tracepoint.c (trace_save): Use vectors of actions.
6386 (parse_tracepoint_definition): Ditto.
6387 (get_uploaded_tp): Clear vectors.
6388 * breakpoint.c (create_tracepoint_from_upload): Use vectors.
6389 (next_cmd): Change to an int.
6390 (read_next_cmd): Use vector of command strings.
6391
6392 2010-04-06 Doug Evans <dje@google.com>
6393
6394 * top.h (source_script, cd_command): Delete.
6395 * main.c: #include "cli/cli-cmds.h"
6396
6397 2010-04-06 Kevin Buettner <kevinb@redhat.com>
6398
6399 * m32c-tdep.c (make_types): When calling `arch_type', pass size of
6400 type in bytes, not bits.
6401
6402 2010-04-06 Pierre Muller <muller@ics.u-strasbg.fr>
6403
6404 * stabsread.c (define_symbol): Add support for char
6405 and string constants.
6406
6407 2010-04-06 Pierre Muller <muller@ics.u-strasbg.fr>
6408
6409 Remove remaining "%ll" uses.
6410 * go32-nat.c (go32_pte_for_address): Replace "0x%llx" using
6411 hex_string call.
6412 * rs6000-nat.c (rs6000_ptrace64): Idem.
6413 * solib-pa64.c (pa64_current_sos): Idem.
6414 * solib-spu.c (spu_current_sos): Idem.
6415 * linux-nat.c (linux_nat_find_memory_regions): Replace "%lld" using
6416 plongest call.
6417 * nto-procfs.c (procfs_meminfo): Replace "0x%016llx" using
6418 phex (VAR, 8) call.
6419 * sh64-tdep.c (sh64_show_media_regs): Idem.
6420
6421 2010-04-05 Stan Shebs <stan@codesourcery.com>
6422
6423 * tracepoint.c: Include gdbcore.h.
6424 (tfile_xfer_partial): Return partial results, also try reading
6425 from executable.
6426 (tfile_has_all_memory): New function.
6427 (init_tfile_ops): Use it.
6428
6429 2010-04-05 Sergio Durigan Junior <sergiodj@redhat.com>
6430
6431 PR gdb/10736:
6432 * xml-syscall.c (my_gdb_datadir): New variable to keep track of
6433 the changes in data-directory.
6434 (init_sysinfo): Reload the syscall XML file if the data-directory
6435 has changed.
6436
6437 2010-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6438
6439 Code cleanup.
6440 * breakpoint.c (bpstat_stop_status): Use bpstat_causes_stop.
6441
6442 2010-04-04 Stan Shebs <stan@codesourcery.com>
6443 Nathan Sidwell <nathan@codesourcery.com>
6444
6445 * breakpoint.c (breakpoint_1): Add filter argument, return number of
6446 breakpoints printed.
6447 (is_hardware_watchpoint): Make argument const.
6448 (is_watchpoint): Ditto.
6449 (is_tracepoint): Merge of tracepoint_type and breakpoint_is_tracepoint,
6450 use it everywhere.
6451 (breakpoints_info): Pass NULL to breakpoint_1.
6452 (maintenance_info_breakpoints): Ditto.
6453 (watchpoints_info): New function.
6454 (tracepoints_info): Use breakpoint_1 filter.
6455 (set_ignore_count): Warn that tracepoint ignore count will be ignored.
6456 (_initialize_breakpoint): Make "info watchpoints" its own command.
6457 * breakpoint.h (is_tracepoint): Rename from breakpoint_is_tracepoint.
6458 * mi/mi-cmd-break.c (mi_cmd_break_commands): Use is_tracepoint.
6459
6460 2010-04-04 Stan Shebs <stan@codesourcery.com>
6461
6462 * tracepoint.c (tfile_fetch_registers): Add fallback case.
6463
6464 2010-04-04 Jan Kratochvil <jan.kratochvil@redhat.com>
6465
6466 * infcmd.c (run_command_1): Call proceed with regcache_read_pc address.
6467 * config/djgpp/fnchange.lst: Add translation for break-entry.exp.
6468
6469 2010-04-04 Jan Kratochvil <jan.kratochvil@redhat.com>
6470
6471 * breakpoint.c (bpstat_find_step_resume_breakpoint): Remove.
6472 * breakpoint.h (bpstat_find_step_resume_breakpoint): Remove.
6473
6474 2010-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
6475
6476 * dwarf2read.c (read_namespace_type): Use common "return set_die_type"
6477 code form.
6478
6479 2010-04-02 Hui Zhu <teawater@gmail.com>
6480
6481 * i386-tdep.c (OT_DQUAD): New enum.
6482 (i386_process_record): Add code for MMX, 3DNow!, SSE, SSE2,
6483 SSE3, SSSE3 and SSE4.
6484
6485 2010-04-02 Hui Zhu <teawater@gmail.com>
6486
6487 * i386-tdep.c (i386_record_lea_modrm_addr): Remove useless
6488 "*addr = 0".
6489
6490 2010-04-02 Pedro Alves <pedro@codesourcery.com>
6491
6492 * tracepoint.c (trace_dump_actions): New, factored out from
6493 trace_dump_command, and adjusted to recurse into while-stepping's
6494 action list.
6495 (trace_dump_command): Use it.
6496
6497 2010-04-02 Pedro Alves <pedro@codesourcery.com>
6498
6499 * breakpoint.h (struct counted_command_line): Moved definition to
6500 breakpoint.c, and forward declare.
6501 (breakpoint_commands): Declare.
6502 * breakpoint.c (struct counted_command_line): Moved here.
6503 (breakpoint_commands): New.
6504 * tracepoint.c (encode_actions): Use breakpoint_commands.
6505 * remote.c (remote_download_tracepoint): Ditto.
6506
6507 2010-04-01 H.J. Lu <hongjiu.lu@intel.com>
6508
6509 * remote.c (remote_parse_stop_reply): Use hex_string instead
6510 of phex_nz for error.
6511
6512 2010-04-01 Stan Shebs <stan@codesourcery.com>
6513 Nathan Sidwell <nathan@codesourcery.com>
6514
6515 * tracepoint.h (enum actionline_type): Remove.
6516 (validate_actionline): Change return to void.
6517 * tracepoint.c (report_agent_reqs_errors): New function.
6518 (validate_actionline): Call it, change return to void, report errors
6519 more consistently.
6520 (collect_symbol): Call report_agent_reqs_errors.
6521 (encode_actions_1): Ditto.
6522 (encode_actions): Don't expect a result from validate_actionline.
6523
6524 2010-04-01 Stan Shebs <stan@codesourcery.com>
6525
6526 * tracepoint.c (trace_start_command): Confirm if trace is running.
6527 (trace_stop_command): Error if trace not running.
6528
6529 2010-04-01 H.J. Lu <hongjiu.lu@intel.com>
6530
6531 * amd64-tdep.c (amd64_byte_names): Add "ah", "bh", "ch", "dh".
6532 (AMD64_NUM_LOWER_BYTE_REGS): New.
6533 (amd64_pseudo_register_read): Handle "ah", "bh", "ch", "dh".
6534 (amd64_pseudo_register_write): Likewise.
6535 (amd64_init_abi): Set num_byte_regs to 20.
6536
6537 2010-04-01 Pedro Alves <pedro@codesourcery.com>
6538
6539 * breakpoint.c (multi_start, multi_end, last_was_multi): Delete.
6540 (prev_breakpoint_count): New.
6541 (set_breakpoint_count): Adjust.
6542 (rbreak_start_breakpoint_count): New.
6543 (start_rbreak_breakpoints): Adjust.
6544 (end_rbreak_breakpoints): Adjust.
6545 (struct commands_info) <arg>: New field.
6546 (do_map_commands_command): Tweak output to include breakpoint spec
6547 range.
6548 (commands_command_1): Adjust. Avoid setting an xfree cleanup if
6549 ARG was empty on entry. Set INFO's arg.
6550 (create_breakpoint): Adjust.
6551
6552 * NEWS: Clarify `commands' changes.
6553
6554 2010-04-01 Pedro Alves <pedro@codesourcery.com>
6555
6556 * tracepoint.c: Include stack.h.
6557 (struct add_local_symbols_data): New.
6558 (do_collect_symbol): New.
6559 (add_local_symbols): Rewrite using iterate_over_block_arg_vars and
6560 iterate_over_block_local_vars.
6561 * stack.c (print_block_frame_locals): Rewrite as ...
6562 (iterate_over_block_locals): ... this. Take a callback function
6563 pointer and generic data pointer, and call that instead of
6564 print_variable_and_value.
6565 (struct print_variable_and_value_data): New.
6566 (do_print_variable_and_value): New.
6567 (iterate_over_block_local_vars): New, abstracted out from
6568 print_frame_local_vars.
6569 (print_frame_local_vars): Rewrite using
6570 iterate_over_block_local_vars.
6571 (iterate_over_block_arg_vars): New, abstracted out from
6572 print_frame_arg_vars.
6573 (print_frame_arg_vars): Rewrite using iterate_over_block_arg_vars.
6574 * stack.h (iterate_over_block_arg_local_vars_cb): New typedef.
6575 (iterate_over_block_arg_vars, iterate_over_block_local_vars): Declare.
6576
6577 2010-03-31 Richard Earnshaw <rearnsha@arm.com>
6578
6579 * arm-tdep.c (thumb_get_next_pc_raw): Correctly detect TBH
6580 instructions. Use the PC+4 if the base of the TBB or TBH is the
6581 PC register.
6582
6583 2010-03-31 Jan Kratochvil <jan.kratochvil@redhat.com>
6584
6585 Fix crash on reading wrong function declaration DWARF.
6586 * dwarf2read.c (read_subroutine_type): New variable void_type.
6587 Pre-fill all TYPE_FIELD_TYPEs. Move nparams and iparams initialization
6588 more close to their use.
6589
6590 2010-03-31 Stan Shebs <stan@codesourcery.com>
6591
6592 * breakpoint.c (tracepoint_save_command): Include variables,
6593 conditionals, tracepoint types, and default-collect.
6594 * tracepoint.c (save_trace_state_variables): New function.
6595 * tracepoint.h (save_trace_state_variables): Declare it.
6596
6597 2010-03-31 Pierre Muller <muller@ics.u-strasbg.fr>
6598
6599 * remote.c (end_thread): ARI fix: Use xstrdup instead of strdup.
6600
6601 2010-03-30 Keith Seitz <keiths@redhat.com>
6602
6603 * c-typeprint.c (c_type_print_args): Don't print "void"
6604 for java, regardless of whether it is TYPE_PROTOTYPED.
6605 Use the passed-in language instead of current_language.
6606 (c_type_print_varspec_suffix): Use current_language instead
6607 of assuming language_c.
6608 * jv-typeprint.c (java_type_print_base): (bz 9320) Strip off
6609 any return type specifier from the physname.
6610
6611 2010-03-30 Pedro Alves <pedro@codesourcery.com>
6612
6613 * tui/tui-interp.c (tui_is_toplevel): New.
6614 (tui_init): Set it.
6615 (tui_allowed_p): New.
6616 * tui/tui.c (tui_enable): Check if the TUI is allowed before
6617 enabling it.
6618 * tui/tui.h (tui_allowed_p): Declare.
6619
6620 2010-03-30 Ozkan Sezer <sezeroz@gmail.com>
6621
6622 * serial.h: Include winsock2.h before windows.h.
6623
6624 2010-03-30 H.J. Lu <hongjiu.lu@intel.com>
6625
6626 * NEWS: Mention xmlRegisters= in qSupported packet.
6627
6628 * i386-tdep.c: Include "remote.h".
6629 (_initialize_i386_tdep): Call register_remote_support_xml.
6630
6631 * remote.c (remote_support_xml): New.
6632 (register_remote_support_xml): Likewise.
6633 (remote_query_supported_append): Likewise.
6634 (remote_query_supported): Support remote_support_xml.
6635
6636 * remote.h (register_remote_support_xml): New.
6637
6638 2010-03-29 Stan Shebs <stan@codesourcery.com>
6639
6640 * tracepoint.c (trace_find_line_command): Remove dead code.
6641
6642 * tracepoint.h (struct uploaded_string): New struct.
6643 (struct uploaded_tp): New fields for source strings.
6644 * breakpoint.c (this_utp, next_cmd): New globals.
6645 (read_uploaded_action): New function.
6646 (create_tracepoint_from_upload): Fill in more parts
6647 of a tracepoint.
6648 * tracepoint.c (encode_source_string): New function.
6649 (trace_save): Write out source strings, fix error checks.
6650 (parse_tracepoint_definition): Add source string parsing.
6651 * remote.c (PACKET_TracepointSource): New packet type.
6652 (remote_download_command_source): New function.
6653 (remote_download_tracepoint): Download source pieces also.
6654 (_initialize_remote): Add packet config command.
6655
6656 * tracepoint.c (collect_symbol): Send LOC_UNRESOLVED symbols to
6657 expression handler.
6658
6659 * tracepoint.c (start_tracing): Check tracepoints before sending
6660 commands to target, don't start if all tracepoints disabled.
6661
6662 2010-03-28 Pedro Alves <pedro@codesourcery.com>
6663
6664 * cli/cli-script.c (process_next_line): Handle 'stepping'.
6665
6666 2010-03-26 Stan Shebs <stan@codesourcery.com>
6667
6668 * tracepoint.c (disconnect_or_stop_tracing): Get out of tfind mode.
6669
6670 2010-03-26 Tom Tromey <tromey@redhat.com>
6671
6672 * breakpoint.c (commands_command_1): Duplicate 'arg'.
6673
6674 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
6675
6676 * breakpoint.c (expand_line_sal_maybe): Always call skip_prologue_sal.
6677 (skip_prologue_sal): Remove local definition.
6678 (resolve_sal_pc): Remove now unnecessary code.
6679 * linespec.c (minsym_found): Call skip_prologue_sal.
6680 * symtab.c (find_function_start_pc): Remove.
6681 (find_function_start_sal): Extract prologue skipping into ...
6682 (skip_prologue_sal): ... this new function. Handle code both
6683 with and without debug info. Respect SAL's explicit_pc and
6684 explicit_line flags. Inline old find_function_start_pc.
6685 * symtab.h (find_function_start_pc): Remove.
6686 (skip_prologue_sal): Add prototype.
6687
6688 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
6689
6690 * dwarf2read.c (read_func_scope): Also scan specification DIEs
6691 for DW_TAG_imported_module children.
6692
6693 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
6694
6695 * dwarf2read.c (dwarf2_name): Work around GCC bugzilla debug/41828 by
6696 ignoring spurious DW_AT_name attributes for unnamed structs or unions.
6697 * completer.c (add_struct_fields): Fix inverted logic.
6698
6699 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
6700
6701 * breakpoint.c (bpstat_clear_actions): Reset bs->commands_left.
6702
6703 2010-03-26 Pedro Alves <pedro@codesourcery.com>
6704
6705 * tracepoint.c (current_trace_status): Don't make sure error_desc
6706 is non-NULL here.
6707 (parse_trace_status): Release a previous error_desc string, and
6708 set it to NULL by default. If stop reason is tracepoint_error,
6709 make sure error_desc is not left NULL.
6710
6711 2010-03-26 Pedro Alves <pedro@codesourcery.com>
6712
6713 * tracepoint.c (trace_save): Remove X from tracepoint error
6714 description.
6715
6716 2010-03-26 Pedro Alves <pedro@codesourcery.com>
6717
6718 * tracepoint.c (parse_trace_status): Don't allow plain strings in
6719 the terror description. Don't expect an X prefix.
6720
6721 2010-03-25 Stan Shebs <stan@codesourcery.com>
6722
6723 * tracepoint.h (trace_stop_reason): Add tracepoint_error.
6724 (struct trace_status): New field error_desc.
6725 * tracepoint.c (stop_reason_names): Add terror.
6726 (current_trace_status): Ensure non-NULL error description.
6727 (trace_status_command): Add error report.
6728 (trace_status_mi): Ditto.
6729 (trace_save): Add special case for error description.
6730 (parse_trace_status): Add case for errors.
6731
6732 2010-03-25 Keith Seitz <keiths@redhat.com>
6733
6734 * dwarf2read.c (read_subroutine_type): If the compilation unit
6735 language is Java, mark any formal parameter named "this" as
6736 artificial (GCC/43521).
6737 (dwarf2_name): Add special handling for Java constructors.
6738
6739 2010-03-25 Tom Tromey <tromey@redhat.com>
6740
6741 PR gdb/11327, PR gdb/11328, PR breakpoints/11368:
6742 * infrun.c (handle_inferior_event): Change initialization of
6743 stop_stack_dummy.
6744 (handle_inferior_event): Change assignment to stop_stack_dummy.
6745 (normal_stop): Update use of stop_stack_dummy.
6746 (struct inferior_status) <stop_stack_dummy>: Change type.
6747 * inferior.h (stop_stack_dummy): Update.
6748 * infcmd.c (stop_stack_dummy): Change type.
6749 * infcall.c (cleanup_delete_std_terminate_breakpoint): New
6750 function.
6751 (call_function_by_hand): Call set_std_terminate_breakpoint.
6752 Rewrite std::terminate handling.
6753 * breakpoint.h (enum bptype) <bp_std_terminate,
6754 bp_std_terminate_master>: New.
6755 (enum stop_stack_kind): New.
6756 (struct bpstat_what) <call_dummy>: Change type.
6757 (set_std_terminate_breakpoint, delete_std_terminate_breakpoint):
6758 Declare.
6759 * breakpoint.c (create_std_terminate_master_breakpoint): New
6760 function.
6761 (update_breakpoints_after_exec): Handle bp_std_terminate_master.
6762 Call create_std_terminate_master_breakpoint.
6763 (print_it_typical): Handle new breakpoint kinds.
6764 (bpstat_stop_status): Handle bp_std_terminate_master.
6765 (bpstat_what): Correctly set call_dummy field. Handle
6766 bp_std_terminate_master and bp_std_terminate.
6767 (print_one_breakpoint_location): Update.
6768 (allocate_bp_location): Update.
6769 (set_std_terminate_breakpoint): New function.
6770 (delete_std_terminate_breakpoint): Likewise.
6771 (create_thread_event_breakpoint): Update.
6772 (delete_command): Update.
6773 (breakpoint_re_set_one): Update.
6774 (breakpoint_re_set): Call create_std_terminate_master_breakpoint.
6775
6776 2010-03-25 Jan Kratochvil <jan.kratochvil@redhat.com>
6777
6778 * symfile.c (build_section_addr_info_from_bfd): New.
6779 (build_section_addr_info_from_objfile): Base it on
6780 build_section_addr_info_from_bfd.
6781 (addrs_section_compar, addrs_section_sort): New.
6782 (addr_info_make_relative): New variables my_cleanup, abfd_addrs,
6783 addrs_sorted, abfd_addrs_sorted and addrs_to_abfd_addrs. Build
6784 addrs_to_abfd_addrs. Use it for recalculating ADDRS.
6785
6786 2010-03-24 Michael Snyder <msnyder@localhost.localdomain>
6787
6788 * elfread.c (find_separate_debug_file_by_buildid):
6789 Remove unused local variable.
6790
6791 2010-03-24 Tom Tromey <tromey@redhat.com>
6792
6793 PR breakpoints/9352:
6794 * NEWS: Mention changes to `commands' and `rbreak'.
6795 * symtab.c (do_end_rbreak_breakpoints): New function.
6796 (rbreak_command): Call start_rbreak_breakpoints; arrange to call
6797 end_rbreak_breakpoints.
6798 * breakpoint.c (breakpoint_count, tracepoint_count): Now static.
6799 (set_breakpoint_count): Likewise. Clear last_was_multi.
6800 (multi_start, multi_end, last_was_multi): New globals.
6801 (start_rbreak_breakpoints, end_rbreak_breakpoints): New
6802 functions.
6803 (struct commands_info): New
6804 (do_map_commands_command): New function.
6805 (commands_command_1): New function.
6806 (commands_command): Use it.
6807 (commands_from_control_command): Likewise.
6808 (do_delete_breakpoint): New function.
6809 (delete_command): Use it.
6810 (map_breakpoint_numbers): Add 'data' argument. Pass to callback.
6811 (do_map_disable_breakpoint): New function.
6812 (disable_command): Use it.
6813 (do_map_enable_breakpoint): New function.
6814 (enable_command): Use it.
6815 (enable_once_breakpoint): Add argument.
6816 (enable_once_command): Update.
6817 (enable_delete_breakpoint): Add argument.
6818 (enable_delete_command): Update.
6819 (break_command_really): Set last_was_multi when needed.
6820 (check_tracepoint_command): Fix formatting.
6821 (validate_commands_for_breakpoint): New function.
6822 (breakpoint_set_commands): Use it.
6823 (tracepoint_save_command): Update.
6824 * breakpoint.h (start_rbreak_breakpoints, end_rbreak_breakpoints):
6825 Declare.
6826
6827 2010-03-24 Tom Tromey <tromey@redhat.com>
6828
6829 * breakpoint.h (struct counted_command_line): New struct.
6830 (struct breakpoint) <commands>: Change type.
6831 (struct bpstats) <commands>: Change type.
6832 <commands_left>: New field.
6833 * breakpoint.c (alloc_counted_command_line): New function.
6834 (incref_counted_command_line): Likewise.
6835 (decref_counted_command_line): Likewise.
6836 (do_cleanup_counted_command_line): Likewise.
6837 (make_cleanup_decref_counted_command_line): Likewise.
6838 (breakpoint_set_commands): Use decref_counted_command_line and
6839 alloc_counted_command_line.
6840 (commands_command): Don't error if breakpoint commands are
6841 executing.
6842 (commands_from_control_command): Likewise.
6843 (bpstat_free): Update.
6844 (bpstat_copy): Likewise.
6845 (bpstat_clear_actions): Likewise.
6846 (bpstat_do_actions_1): Likewise.
6847 (bpstat_stop_status): Likewise.
6848 (print_one_breakpoint_location): Likewise.
6849 (delete_breakpoint): Likewise.
6850 (bpstat_alloc): Initialize new field.
6851 (tracepoint_save_command): Update.
6852 * tracepoint.c (encode_actions): Update.
6853 (trace_dump_command): Update.
6854
6855 2010-03-24 Daniel Jacobowitz <dan@codesourcery.com>
6856
6857 * dwarf2-frame.c (dwarf2_frame_find_quirks): Use producer_is_realview.
6858 * dwarf2read.c (load_full_comp_unit): Read DW_AT_producer.
6859 (read_structure_type): For RealView, set TYPE_STUB on structures with
6860 no byte size and no children.
6861 (read_subroutine_type): Mark functions as prototyped by default.
6862 * symtab.c (producer_is_realview): New function.
6863 * symtab.h (expand_line_sal): Fix declaration formatting.
6864 (producer_is_realview): Declare.
6865
6866 2010-03-24 Daniel Jacobowitz <dan@codesourcery.com>
6867
6868 * arm-tdep.c (skip_prologue_function): New function.
6869 (submask, bit, bits, sbits, BranchDest): Move higher in the file.
6870 (thumb_analyze_prologue): Document return value. Recognize more
6871 Thumb instructions, skippable calls, and some Thumb-2 instructions.
6872 Add debug output.
6873 (arm_skip_prologue): Remove call dummy check. Check the prologue
6874 for non-GNU compilers.
6875 (arm_instruction_changes_pc): New function.
6876 (arm_analyze_prologue): New function, broken out from
6877 arm_scan_prologue. Recognize more ARM instructions and skippable
6878 calls. Update comments. Handle NULL cache. Return the address
6879 of the first unrecognized instruction. Do not skip past other
6880 instructions which change control flow. Add debug output.
6881 (arm_scan_prologue): Use arm_analyze_prologue.
6882 (ARM_PC_32): Delete.
6883 (shifted_reg_val): Simplify ARM_PC_32 check.
6884
6885 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6886
6887 * tracepoint.c (tvariables_info_1): Actually compute
6888 the number of rows in the result.
6889
6890 2010-03-24 Pedro Alves <pedro@codesourcery.com>
6891
6892 * remote.c (crc32): Constify `buf' parameter.
6893 (remote_verify_memory): New, abstracted out from...
6894 (compare_sections_command): ... this. Remove hardcoded target
6895 checks.
6896 (init_remote_ops): Install remote_verify_memory.
6897 * target.c (target_verify_memory): New.
6898 * target.h (struct target_ops) <to_verify_memory>: New field.
6899 (target_verify_memory): Declare.
6900
6901 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6902
6903 Implement -trace-save.
6904
6905 * mi-cmds.h (mi_cmds_trace_save): Declare.
6906 * mi-cmds.c (mi_cmds): Register -trace-save.
6907 * mi/mi-main.c (mi_cmd_trace_save): New.
6908 * remote.c (remote_save_trace_data): Take const parameter.
6909 * target.h (struct target_ops::to_save_trace_data): Take
6910 const parameter.
6911 * target.c (update_current_target): Adjust to the above.
6912 * tracepoint.c (trave_save): New, extracted from
6913 (trace_save_command): ...this.
6914 (tfile_trace_find): Remove message that is unnecessary now
6915 that 'tfind' reports found frame.
6916 * tracepoint.h (trace_save): Declare.
6917
6918 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6919
6920 Implement -trace-find.
6921
6922 * mi/mi-cmds.c (mi_cmds): Register -trace-find.
6923 * mi/mi-cmds.h (mi_cmd_trace_find): Declare.
6924 * mi/mi-main.c (mi_cmd_trace_find): New.
6925 * target.h (struct target_ops): Document to_trace_find.
6926 * tracepoint.h (tfind_1): Declare.
6927 * tracepoint.c (finish_tfind_command): Rename to...
6928 (tfind_1): ...this.
6929 * remote.c (remote_trace_find): Return -1 if target say
6930 there's no frame. Improve error diagnostics.
6931
6932 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6933
6934 -trace-define-variable and -trace-list-variables.
6935
6936 * tracepoint.c (create_trace_state_variable): Make
6937 private copy of name, as opposed to assuming the
6938 pointer lives forever.
6939 (tvariables_info_1): New.
6940 (tvariables_info): Use the above.
6941 * tracepoint.h (create_trace_state_variable, tvariables_info_1):
6942 Declare.
6943 * mi/mi-cmds.c (mi_cmds): Register -trace-define-variable
6944 and -trace-list-variables.
6945 * mi/mi-cmds.h (mi_cmd_trace_define_variable)
6946 (mi_cmd_trace_list_variables): New.
6947 * mi/mi-main.c (mi_cmd_trace_define_variable)
6948 (mi_cmd_trace_list_variables): New.
6949
6950 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6951
6952 Implement -break-passcount.
6953
6954 * mi/mi-cmd-break.c (mi_cmd_break_passcount): New.
6955 * mi/mi-cmds.c (mi_cmds): Register -break-passcount.
6956 * mi/mi-cmds.h (mi_cmd_break_passcount): Declare.
6957
6958 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6959
6960 -trace-start/-trace-end/-trace-status.
6961
6962 * mi/mi-cmds.c (mi_cmds): Register -trace-start, -trace-status
6963 and -trace-stop.
6964 * mi/mi-cmds.h (mi_cmd_trace_start, mi_cmd_trace_status)
6965 (mi_cmd_trace_stop): Declare.
6966 * mi/mi-main.c (mi_cmd_trace_start, mi_cmd_trace_status)
6967 (mi_cmd_trace_stop): New.
6968 * tracepoint.c (start_tracing): New, extracted from...
6969 (trace_start_command): ...this.
6970 (trace_status_mi): New.
6971 * tracepoint.h (struct trace_status): Document
6972 stopping_tracepoint.
6973 (start_tracing, stop_tracing, trace_status_mi): Declare.
6974
6975 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6976
6977 Implement creating tracepoints with -break-insert.
6978
6979 * mi/mi-cmd-break.c (mi_cmd_break_insert): Handle -a
6980 to mean that tracepoint should be created.
6981
6982 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6983
6984 * breakpoint.c (check_no_tracepoint_commands): Use
6985 current spelling of 'teval'.
6986
6987 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6988
6989 Unify actions and commands
6990
6991 * defs.h (read_command_lines, read_command_lines_1): New
6992 parameters validator and closure.
6993 * tracepoint.h (struct action_line): Remove.
6994 * breakpoint.h (struct breakpoint): Remove the 'actions'
6995 field.
6996 * defs.h (enum command_control_type): New value
6997 while_stepping_control.
6998 (struct command_line): Add comments.
6999 * breakpoint.c (breakoint_is_tracepoint): New.
7000 (breakpoint_set_commands): For tracepoints,
7001 verify the commands are permissible.
7002 (check_tracepoint_commands): New.
7003 (commands_command): Require that each new line is validated using
7004 check_tracepoint_command, if we set commands for a tracepoint.
7005 (create_tracepoint_from_upload): Likewise.
7006 (print_one_breakpoint_location): Remove the code to print
7007 actions specifically.
7008 (tracepoint_save_command): Relay to print_command_lines.
7009 * cli/cli-script.c (process_next_line): New parameters validator
7010 and closure. Handle 'while-stepping'. Call validator if not null.
7011 (read_command_lines, read_command_lines1): Likewise.
7012 (recurse_read_control_structure): New parameters validator and
7013 closure. Handle while_stepping_control.
7014 (print_command_lines): Handle while-stepping.
7015 (get_command_line, define_command, document_command): Adjust.
7016 * remote.c (remote_download_tracepoint): Adjust.
7017 * tracepoint.c (make_cleanup_free_actions, read_actions)
7018 (free_actions, do_free_actions_cleanup): Remove.
7019 (trace_actions_command): Use read_command_lines.
7020 (validate_actionline): Use error in one place.
7021 (encode_actions_1): New, extracted from...
7022 (encode_actions): ...this. Also use cleanups for exception
7023 safety.
7024 (trace_dump_command): Adjust.
7025 * mi/mi-cmd-break (mi_cmd_break_commands): Validate commands if
7026 it's tracepoint.
7027
7028 2010-03-23 Mike Frysinger <vapier@gentoo.org>
7029
7030 * Makefile.in (OPCODES_CFLAGS): Add -I$(OPCODES_SRC)/..
7031
7032 2010-03-22 Stan Shebs <stan@codesourcery.com>
7033
7034 * value.c (value_static_field): Be lazy about the field's value.
7035
7036 2010-03-22 Reid Kleckner <reid@kleckner.net>
7037
7038 PR gdb/11094
7039 * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Add
7040 bp_jit_event.
7041 (disable_breakpoints_in_shlibs): Likewise.
7042
7043 2010-03-22 Ulrich Weigand <uweigand@de.ibm.com>
7044
7045 * dwarf2read.c (partial_die_parent_scope): Work around buggy
7046 GCC 4.1 debug info generation (GCC PR c++/28460).
7047 (determine_prefix): Likewise.
7048
7049 2010-03-20 Daniel Jacobowitz <dan@codesourcery.com>
7050
7051 * tui/tui-disasm.c (tui_get_begin_asm_address): Default to
7052 get_current_arch.
7053 * tui/tui-layout.c (extract_display_start_addr): Likewise.
7054
7055 2010-03-19 Stan Shebs <stan@codesourcery.com>
7056
7057 * ax-gdb.c (gen_fetch): Handle bool.
7058 (gen_usual_unary): Ditto.
7059 (gen_cast): Ditto.
7060 (gen_equal): New function.
7061 (gen_less): New function.
7062 (gen_expr_binop_rest): Call them, also return integer type from
7063 logical operations.
7064 (gen_expr): Ditto.
7065
7066 2010-03-19 Tom Tromey <tromey@redhat.com>
7067
7068 * jv-lang.c (jv_dynamics_objfile_data_key)
7069 (jv_type_objfile_data_key): New globals.
7070 (class_symtab): Move earlier.
7071 (jv_per_objfile_free): New function.
7072 (get_dynamics_objfile): Call set_objfile_data. Add 'gdbarch'
7073 parameter.
7074 Remove ancient #if 1.
7075 (add_class_symbol): Remove redundant declaration.
7076 (java_lookup_class): Use alloc_type, not alloc_type_arch.
7077 (java_link_class_type): Mark as static. Update.
7078 (jv_clear_object_type): New function.
7079 (set_java_object_type): Likewise.
7080 (get_java_object_type): Use set_java_object_type.
7081 (is_object_type): Likewise.
7082 (_initialize_java_language): Register new objfile keys.
7083 (get_java_class_symtab): Add 'gdbarch' parameter.
7084 (add_class_symtab_symbol): Update.
7085 (type_from_class): Update.
7086
7087 2010-03-19 Stan Shebs <stan@codesourcery.com>
7088
7089 * ax-general.c (ax_const_l): Fix a sizing bug.
7090
7091 2010-03-18 Joel Brobecker <brobecker@adacore.com>
7092
7093 GDB 7.1 released.
7094
7095 2010-03-18 Stan Shebs <stan@codesourcery.com>
7096 Pedro Alves <pedro@codesourcery.com>
7097
7098 * target.h (struct target_ops): New method
7099 to_set_circular_trace_buffer.
7100 (target_set_circular_trace_buffer): New macro.
7101 * target.c (update_current_target): Add
7102 to_set_circular_trace_buffer, fix to_set_disconnected_tracing
7103 default behavior.
7104 * remote.c (remote_set_circular_trace_buffer): New function.
7105 (init_remote_ops): Add it to vector.
7106 * tracepoint.h (struct trace_status): New field traceframes_created,
7107 change buffer_size and buffer_free to int.
7108 * tracepoint.c (circular_trace_buffer): New global.
7109 (start_tracing): Send values of disconnected tracing and circular
7110 trace buffer settings.
7111 (set_circular_trace_buffer): New function.
7112 (parse_trace_state): Handle total space and frames created.
7113 (trace_status_command): Display total space and total frames
7114 created.
7115 (trace_save): Write out new status values.
7116 (parse_trace_status): Set traceframe_count, traceframes_created,
7117 buffer_free and buffer_size to -1 by default.
7118 (_initialize_tracepoint): New setshow for circular-trace-buffer.
7119 * NEWS: Mention the circular trace buffer option.
7120
7121 2010-03-18 Tom Tromey <tromey@redhat.com>
7122
7123 * infcmd.c (finish_command_continuation): Wrap print_return_value
7124 in TRY_CATCH.
7125
7126 2010-03-18 Joel Brobecker <brobecker@adacore.com>
7127
7128 * dwarf2read.c (add_partial_subprogram): Make sure the subprogram
7129 DIE has a name before creating the associated partial symbol.
7130 (read_func_scope): Emit a complaint if the subprogram does not
7131 have a name or when we can't extract the subprogram PC bounds.
7132
7133 2010-03-18 Ulrich Weigand <uweigand@de.ibm.com>
7134
7135 * mi/mi-main.c (mi_cmd_list_thread_groups): Use get_current_arch
7136 instead of selected frame architecture.
7137
7138 2010-03-18 Pedro Alves <pedro@codesourcery.com>
7139
7140 * infcmd.c (until_command): Use ERROR_NO_INFERIOR. Ensure there's
7141 a valid selected thread, and that it is not running.
7142 (advance_command): Ditto.
7143 (finish_command): Ditto.
7144
7145 2010-03-17 Stan Shebs <stan@codesourcery.com>
7146
7147 * ax-gdb.c (require_rvalue): Disallow non-scalars.
7148
7149 * infcall.c: Include tracepoint.h.
7150 (call_function_by_hand): Disallow calls in tfind mode.
7151 * infcmd.c: Include tracepoint.h.
7152 (ensure_not_tfind_mode): New function.
7153 (continue_1): Call it.
7154 (step_1) Ditto.
7155 (jump_command): Ditto.
7156 (signal_command): Ditto.
7157 (advance_command): Ditto.
7158 (until_command): Ditto.
7159 (finish_command): Ditto.
7160 * tracepoint.h (disconnect_or_stop_tracing): Declare.
7161
7162 * ax-gdb.h (struct axs_value): New field optimized_out.
7163 (gen_trace_for_var): Add gdbarch argument.
7164 * ax-gdb.c (gen_trace_static_fields): New function.
7165 (gen_traced_pop): Call it, add gdbarch argument.
7166 (gen_trace_for_expr): Update call to it.
7167 (gen_trace_for_var): Ditto, and report optimized-out variables.
7168 (gen_struct_ref_recursive): Check for optimized-out value.
7169 (gen_struct_elt_for_reference): Ditto.
7170 (gen_static_field): Pass gdbarch instead of expression, assume
7171 optimization if field not found.
7172 (gen_var_ref): Set the optimized_out flag.
7173 (gen_expr): Error on optimized-out variable.
7174 * tracepoint.c (collect_symbol): Handle struct-valued vars as
7175 expressions, skip optimized-out variables with computed locations.
7176 * dwarf2loc.c (dwarf2_tracepoint_var_ref): Flag instead of
7177 erroring out if location expression missing.
7178 (loclist_tracepoint_var_ref): Don't error out here.
7179
7180 2010-03-17 Tom Tromey <tromey@redhat.com>
7181
7182 * dwarf2read.c (dwarf2_get_section_info): Handle case where no
7183 DWARF data is available.
7184
7185 2010-03-17 Daniel Jacobowitz <dan@codesourcery.com>
7186
7187 * symfile.c (generic_load): Reset breakpoints after loading.
7188
7189 2010-03-17 Tom Tromey <tromey@redhat.com>
7190
7191 * linux-nat.c (linux_nat_detach): Check debug_linux_nat.
7192
7193 2010-03-17 Jan Kratochvil <jan.kratochvil@redhat.com>
7194
7195 * spu-tdep.c (spu_catch_start): Replace set_breakpoint call with the
7196 create_breakpoint call, adjust the parameters.
7197
7198 2010-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
7199 Chandru <chandru@in.ibm.com>
7200
7201 * dwarf2read.c (read_subrange_type): Set TYPE_HIGH_BOUND_UNDEFINED.
7202 * valarith.c (value_subscripted_rvalue): Suppress error if
7203 TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED.
7204
7205 2010-03-16 Holger Hans Peter Freyther <zecke@selfish.org>
7206
7207 * linux-record.c (record_linux_msghdr): Remove unintended semicolons.
7208
7209 2010-03-16 Joel Brobecker <brobecker@adacore.com>
7210
7211 * ada-tasks.c (task_command_1): Check that the task ptid is valid
7212 before doing the associated thread switch.
7213
7214 2010-03-16 Daniel Jacobowitz <dan@codesourcery.com>
7215
7216 * MAINTAINERS: Update my email address.
7217
7218 2010-03-16 Vladimir Prus <vladimir@codesourcery.com>
7219
7220 Simplify MI breakpoint setting.
7221
7222 * breakpoint.c (break_command_really): Make nonstatic and
7223 rename to...
7224 (create_breakpoint): ...this. Rename prior function by this name
7225 to...
7226 (create_breakpoint_sal): ...this.
7227 (create_breakpoints): Rename to...
7228 (create_breakpoints_sal): ...this.
7229 (set_breakpoint): Remove.
7230 * breakpoint.h: Adjust to above changes.
7231 * mi/mi-cmd-break.c (mi_cmd_break_insert): Simplify.
7232
7233 2010-03-15 Stan Shebs <stan@codesourcery.com>
7234
7235 * ax-gdb.c: Include cp-support.h.
7236 (find_field): Remove.
7237 (gen_primitive_field): New function.
7238 (gen_struct_ref_recursive): New function.
7239 (gen_struct_ref): Rewrite to call gen_struct_ref_recursive instead
7240 of find_field.
7241 (gen_static_field): New function.
7242 (gen_struct_elt_for_reference): New.
7243 (gen_namespace_elt): New.
7244 (gen_maybe_namespace_elt): New.
7245 (gen_aggregate_elt_ref): New.
7246 (gen_expr): Add OP_SCOPE, display opcode name in error message.
7247
7248 2010-03-15 Tom Tromey <tromey@redhat.com>
7249
7250 * dwarf2read.c (die_needs_namespace): Also return 0 for
7251 DW_TAG_subprogram.
7252
7253 2010-03-15 Sami Wagiaalla <swagiaal@redhat.com>
7254
7255 PR c++/7936:
7256 * cp-support.h: Added char *declaration element to using_direct
7257 data struct.
7258 (cp_add_using): Added char *declaration argument.
7259 (cp_add_using_directive): Ditto.
7260 (cp_lookup_symbol_imports): made extern.
7261 * cp-namespace.c: Updated with the above changes.
7262 * dwarf2read.c (read_import_statement): Ditto.
7263 (read_namespace): Ditto.
7264 (read_import_statement): Support import declarations.
7265 * cp-namespace.c (cp_lookup_symbol_imports): Check for imported
7266 declarations.
7267 Added support for 'declaration_only' search.
7268 (cp_lookup_symbol_namespace): Attempt to search for the name as
7269 is before consideration of imports.
7270 * symtab.c (lookup_symbol_aux_local): Added a 'declaration_only'
7271 search at every block level search.
7272 Now takes language argument.
7273 (lookup_symbol_aux): Updated.
7274
7275 2010-03-15 Tom Tromey <tromey@redhat.com>
7276
7277 * c-exp.y (name_not_typename): Add 'operator' clause.
7278
7279 2010-03-15 Ralf Corsepius <ralf.corsepius@rtems.org> (tiny change)
7280
7281 * configure.ac: Exit if ${gdb_target_obs}" is not set.
7282 * configure: Regenerate.
7283
7284 2010-03-15 Jan Kratochvil <jan.kratochvil@redhat.com>
7285
7286 * symfile.c (addr_info_make_relative): Ignore also missing ".dynbss"
7287 and ".sdynbss". Update the comment.
7288
7289 2010-03-15 Jie Zhang <jie@codesourcery.com>
7290
7291 * MAINTAINERS: Update my email address.
7292
7293 2010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
7294
7295 * gdbtypes.h (TYPE_IS_OPAQUE): Correct HAVE_CPLUS_STRUCT check.
7296
7297 2010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
7298
7299 * charset.c [USE_WIN32API]: Include <windows.h>.
7300 (_initialize_charset): Correct type of w32_host_default_charset.
7301
7302 2010-03-14 Pedro Alves <pedro@codesourcery.com>
7303
7304 * infrun.c (ptid_match): Don't assert that PTID is not a pid ptid.
7305
7306 2010-03-12 Tom Tromey <tromey@redhat.com>
7307
7308 PR c++/9708:
7309 * dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: A variable
7310 in a lexical block does not need a namespace.
7311 (new_symbol) <DW_TAG_variable>: Put extern variables on
7312 list_in_scope in all cases.
7313
7314 2010-03-12 Stan Shebs <stan@codesourcery.com>
7315
7316 * ax-gdb.c (gen_expr): Add shift expressions.
7317 (gen_expr_binop_rest): Ditto.
7318
7319 2010-03-12 Sami Wagiaalla <swagiaal@redhat.com>
7320
7321 * buildsym.c (finish_block): Reset using_directives pointer
7322 after block initialization.
7323
7324 2010-03-12 H.J. Lu <hongjiu.lu@intel.com>
7325
7326 * amd64-tdep.c (amd64_word_names): Replace "sp" with "".
7327 * i386-tdep.c (i386_word_names): Likewise.
7328
7329 2010-03-12 Pedro Alves <pedro@codesourcery.com>
7330
7331 * target.c (memory_xfer_partial): Don't use the stack cache if
7332 inspecting trace frames.
7333 * tracepoint.c (finish_tfind_command): Invalidate the target
7334 dcache.
7335
7336 2010-03-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7337
7338 * solib-svr4.c (LM_ADDR_CHECK) <info_verbose>: Use printf_unfiltered
7339 for the PIC displacement, print also the displacement value.
7340 (svr4_exec_displacement): Print DISPLACEMENT if INFO_VERBOSE.
7341
7342 2010-03-10 Kevin Buettner <kevinb@redhat.com>
7343
7344 * remote-mips.c (close_ports, mips_initialize_cleanups)
7345 (mips_exit_cleanups, mips_send_command, mips_open, pmon_open)
7346 (ddb_open, lsi_open, mips_remove_breakpoint, mips_remove_watchpoint)
7347 (mips_stopped_by_watchpoint, send_srec, pmon_checkset)
7348 (pmon_make_fastrec, pmon_check_ack, mips_expect_download)
7349 (pmon_check_entry_address, pmon_check_total, pmon_end_download)
7350 (pmon_download, pmon_load_fast, _initialize_remote_mips): Add
7351 comments describing each of these functions.
7352 (mips_enter_debug, mips_exit_debug, common_open)
7353 (mips_signal_from_protocol, pmon_makeb64, pmon_zeroset): Add
7354 blank line after the comment describing the function.
7355
7356 2010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
7357
7358 * solib-svr4.c (svr4_exec_displacement): Return now success, new
7359 parameter displacementp. Update comment.
7360 (svr4_relocate_main_executable): Return if non-zero SECTION_OFFSETS
7361 element exists. Return if svr4_exec_displacement was not successful.
7362 Update comment.
7363
7364 2010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
7365 Daniel Jacobowitz <dan@codesourcery.com>
7366
7367 * solib-svr4.c (read_program_header): Support type == -1 to read
7368 all program headers.
7369 (read_program_headers_from_bfd): New function.
7370 (svr4_static_exec_displacement): Remove and move the comment ...
7371 (svr4_exec_displacement): ... here. Remove variable found. New
7372 variable displacement. Check also DYNAMIC. Verify DISPLACEMENT
7373 alignment for ELF targets. Compare target vs. exec_bfd PHDRs for ELF
7374 targets using read_program_headers_from_bfd. Remove the call of
7375 svr4_static_exec_displacement.
7376
7377 2010-03-10 Tom Tromey <tromey@redhat.com>
7378
7379 * dwarf2read.c (struct pubnames_header): Remove.
7380 (_PUBNAMES_HEADER): Remove.
7381 (_ACTUAL_PUBNAMES_HEADER_SIZE): Remove.
7382 (struct aranges_header): Remove.
7383 (_ARANGES_HEADER, _ACTUAL_ARANGES_HEADER_SIZE): Remove.
7384 (struct dwarf2_per_objfile) <pubnames, aranges>: Remove.
7385 (PUBNAMES_SECTION): Remove.
7386 (ARANGES_SECTION): Remove.
7387 (dwarf2_locate_sections): Don't handle pubnames or aranges.
7388 (dwarf2_build_psymtabs): Remove dead code.
7389 (dwarf2_build_psymtabs_easy): Remove.
7390
7391 2010-03-10 Tom Tromey <tromey@redhat.com>
7392
7393 * elfread.c (elf_symfile_read): Don't call
7394 dwarf2_build_frame_info.
7395 * dwarf2read.c (struct dwarf2_section_info) <readin>: New field.
7396 (struct dwarf2_per_objfile) <objfile>: New field.
7397 (dwarf2_has_info): Now idempotent. Set objfile field.
7398 (dwarf2_read_section): Check and set readin field. Call
7399 posix_madvise.
7400 (dwarf2_build_psymtabs): Don't read all sections.
7401 (read_type_comp_unit_head): Read types section.
7402 (create_debug_types_hash_table): Likewise.
7403 (init_cu_die_reader): Add asserts.
7404 (process_type_comp_unit): Add assert.
7405 (dwarf2_build_psymtabs_hard): Read info section.
7406 (load_partial_comp_unit): Add assert.
7407 (create_all_comp_units): Read info section.
7408 (load_full_comp_unit): Likewise.
7409 (dwarf2_ranges_read): Read ranges section.
7410 (dwarf2_record_block_ranges): Add assert.
7411 (dwarf2_read_abbrevs): Read abbrev section.
7412 (read_indirect_string): Read str section.
7413 (dwarf_decode_line_header): Read line section.
7414 (read_signatured_type_at_offset): Read types section.
7415 (dwarf_decode_macros): Read macinfo section.
7416 (dwarf2_symbol_mark_computed): Read loc section.
7417 * dwarf2-frame.c (dwarf2_frame_find_fde): Call
7418 dwarf2_build_frame_info.
7419 (dwarf2_build_frame_info): Unconditionally set
7420 dwarf2_frame_objfile_data on the objfile.
7421 * configure.ac: Check for posix_madvise.
7422 * config.in, configure: Rebuild.
7423
7424 2010-03-10 Tom Tromey <tromey@redhat.com>
7425
7426 * xcoffread.c (xcoff_start_psymtab): Update.
7427 (xcoff_end_psymtab): Update.
7428 * psymtab.c (allocate_psymtab): Remove dead code.
7429 * psympriv.h (struct partial_symtab) <read_symtab_private>: Now
7430 void*.
7431 * mdebugread.c (parse_partial_symbols): Update.
7432 (new_psymtab): Likewise.
7433 * dwarf2read.c (process_psymtab_comp_unit): Update.
7434 (psymtab_to_symtab_1): Update.
7435 * dbxread.c (start_psymtab): Update.
7436 (end_psymtab): Likewise.
7437
7438 2010-03-10 Tom Tromey <tromey@redhat.com>
7439
7440 * xcoffread.c: Include psymtab.h.
7441 (xcoff_sym_fns): Update.
7442 * symtab.h (struct partial_symbol): Remove.
7443 (PSYMBOL_DOMAIN, PSYMBOL_CLASS): Remove.
7444 (struct partial_symtab): Remove.
7445 (PSYMTAB_TO_SYMTAB): Remove.
7446 (lookup_partial_symbol, lookup_partial_symtab, find_pc_psymtab)
7447 (find_pc_sect_psymtab): Remove.
7448 (find_pc_sect_symtab_via_partial): Declare.
7449 (find_pc_psymtab, find_pc_sect_psymbol, psymtab_to_symtab)
7450 (find_main_psymtab): Remove.
7451 (find_main_filename): Declare.
7452 (fixup_psymbol_section): Remove.
7453 (fixup_section): Declare.
7454 * symtab.c: Include psymtab.h.
7455 (lookup_symtab): Use lookup_symtab method.
7456 (lookup_partial_symtab): Remove.
7457 (find_pc_sect_psymtab_closer): Remove.
7458 (find_pc_sect_psymtab): Remove.
7459 (find_pc_sect_symtab_via_partial): New function.
7460 (find_pc_psymtab, find_pc_sect_psymbol, find_pc_psymbol): Remove.
7461 (fixup_section): No longer static.
7462 (fixup_psymbol_section): Remove.
7463 (lookup_symbol_aux): Use lookup_symbol_aux_quick.
7464 (lookup_global_symbol_from_objfile): Likewise.
7465 (lookup_symbol_aux_psymtabs): Remove.
7466 (lookup_symbol_aux_quick): New function.
7467 (lookup_symbol_global): Use lookup_symbol_aux_quick.
7468 (lookup_partial_symbol): Remove.
7469 (basic_lookup_transparent_type_quick): New function.
7470 (basic_lookup_transparent_type): Use it.
7471 (find_main_psymtab): Remove.
7472 (find_main_filename): New function.
7473 (find_pc_sect_symtab): Use find_pc_sect_symtab method.
7474 (find_line_symtab): Use expand_symtabs_with_filename method.
7475 (output_partial_symbol_filename): New function.
7476 (sources_info): Use map_partial_symbol_filenames.
7477 (struct search_symbols_data): New type.
7478 (search_symbols_file_matches): New function.
7479 (search_symbols_name_matches): Likewise.
7480 (search_symbols): Use expand_symtabs_matching method.
7481 (struct add_name_data): Rename from add_macro_name_data.
7482 (add_macro_name): Update.
7483 (add_partial_symbol_name): New function.
7484 (default_make_symbol_completion_list): Use
7485 map_partial_symbol_names.
7486 (struct add_partial_symbol_name): New type.
7487 (maybe_add_partial_symtab_filename): New function.
7488 (make_source_files_completion_list): Use
7489 map_partial_symbol_filenames.
7490 (expand_line_sal): Use expand_symtabs_with_filename method.
7491 * symmisc.c: Include psymtab.h.
7492 (print_objfile_statistics): Use print_stats method.
7493 (dump_objfile): Use dump method.
7494 (dump_psymtab, maintenance_print_psymbols)
7495 (maintenance_info_psymtabs, maintenance_check_symtabs)
7496 (extend_psymbol_list): Remove.
7497 * symfile.h (struct quick_symbol_functions): New struct.
7498 (struct sym_fns) <qf>: New field.
7499 (sort_pst_symbols): Remove.
7500 (increment_reading_symtab): Declare.
7501 * symfile.c: Include psymtab.h.
7502 (compare_psymbols, sort_pst_symbols): Remove.
7503 (psymtab_to_symtab): Remove.
7504 (increment_reading_symtab): New function.
7505 (symbol_file_add_with_addrs_or_offsets): Use expand_all_symtabs
7506 method.
7507 (set_initial_language): Use find_main_filename.
7508 (allocate_psymtab, discard_psymtab, cashier_psymtab): Remove.
7509 (free_named_symtabs): Remove unused code.
7510 (start_psymtab_common, add_psymbol_to_bcache)
7511 (append_psymbol_to_list, add_psymbol_to_list, init_psymbol_list):
7512 Remove.
7513 * stack.c: Include psymtab.h, symfile.h.
7514 (backtrace_command_1): Use find_pc_sect_symtab_via_partial.
7515 * source.h (psymtab_to_fullname): Don't declare.
7516 * source.c: Include psymtab.h.
7517 (select_source_symtab): Use find_last_source_symtab method.
7518 (forget_cached_source_info): Use forget_cached_source_info
7519 method.
7520 (find_and_open_source): No longer static.
7521 (psymtab_to_fullname): Remove.
7522 * somread.c: Include psymtab.h.
7523 (som_sym_fns): Update.
7524 * psympriv.h: New file.
7525 * psymtab.h: New file.
7526 * psymtab.c: New file.
7527 * objfiles.h: (ALL_OBJFILE_PSYMTABS): Remove.
7528 (ALL_PSYMTABS, ALL_PSPACE_PSYMTABS): Likewise.
7529 * objfiles.c: Include psymtab.h.
7530 (objfile_relocate1): Use relocate method.
7531 (objfile_has_partial_symbols): Use has_symbols method.
7532 * mipsread.c: Include psymtab.h.
7533 (ecoff_sym_fns): Update.
7534 * mi/mi-cmd-file.c: Include psymtab.h.
7535 (print_partial_file_name): New function.
7536 (mi_cmd_file_list_exec_source_files): Use
7537 map_partial_symbol_filenames.
7538 * mdebugread.c: Include psympriv.h.
7539 * machoread.c: Include psympriv.h.
7540 (macho_sym_fns): Update.
7541 * m2-exp.y (yylex): Use lookup_symtab.
7542 * elfread.c: Include psympriv.h.
7543 (elf_sym_fns): Update.
7544 * dwarf2read.c: Include psympriv.h.
7545 * dbxread.c: Include psympriv.h.
7546 (aout_sym_fns): Update.
7547 * cp-support.c: Include psymtab.h.
7548 (read_in_psymtabs): Remove.
7549 (make_symbol_overload_list_qualified): Use
7550 expand_symtabs_for_function method.
7551 * coffread.c: Include psympriv.h.
7552 (coff_sym_fns): Update.
7553 * blockframe.c: Include psymtab.h.
7554 (find_pc_partial_function): Use find_pc_sect_symtab method.
7555 * ada-lang.h (ada_update_initial_language): Update.
7556 * ada-lang.c: Include psymtab.h.
7557 (ada_update_initial_language): Remove 'main_pst' argument.
7558 (ada_lookup_partial_symbol): Remove.
7559 (struct ada_psym_data): New type.
7560 (ada_add_psyms): New function.
7561 (ada_add_non_local_symbols): Use map_ada_symtabs method.
7562 (struct add_partial_datum): New type.
7563 (ada_add_partial_symbol_completions): New function.
7564 (ada_make_symbol_completion_list): Use map_partial_symbol_names.
7565 (ada_exception_support_info_sniffer): Update.
7566 * Makefile.in (SFILES): Add psymtab.c.
7567 (COMMON_OBS): Add psymtab.o.
7568 (HFILES_NO_SRCDIR): Add psymtab.h, psympriv.h.
7569
7570 2010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
7571
7572 * remote-fileio.c (cygwin_conv_path): Define macro for old cygwin API.
7573
7574 2010-03-10 Sami Wagiaalla <swagiaal@redhat.com>
7575
7576 PR C++/11236:
7577 * cp-namespace.c (cp_add_using): Deleted.
7578 (cp_add_using_directive): Use obstack allocations.
7579 Merged the function cp_add_using into this one.
7580 Added 'struct obstack *' argument.
7581 (cp_scan_for_anonymous_namespaces): Updated.
7582 * cp-support.h: Updated.
7583 * dwarf2read.c (read_import_statement): Updated.
7584 (read_namespace): Updated.
7585
7586 2010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
7587
7588 * windows-nat.c (cygwin_conv_path): Remove old macro.
7589
7590 2010-03-10 Pedro Alves <pedro@codesourcery.com>
7591
7592 * breakpoint.c (condition_command): Handle watchpoint conditions.
7593 (is_hardware_watchpoint): Add comment.
7594 (is_watchpoint): New.
7595 (update_watchpoint): Don't reparse the watchpoint's condition
7596 unless necessary.
7597 (WP_IGNORE): New.
7598 (watchpoint_check): Use it.
7599 (bpstat_check_watchpoint): Handle it.
7600 (bpstat_check_breakpoint_conditions): Evaluate watchpoint local
7601 conditions in a frame where it makes sense.
7602 (watch_command_1): Store the innermost block of the condition
7603 expression.
7604 (delete_breakpoint): Delete the watchpoint condition expression.
7605 * breakpoint.h (struct bp_location) <cond>: Update comment.
7606 (struct breakpoint): New field `cond_exp_valid_block'.
7607
7608 2010-03-09 Joel Brobecker <brobecker@adacore.com>
7609
7610 Adjust handling of Ada DIEs after dwarf2_physname patch.
7611 * dwarf2read.c (dwarf2_compute_name): Add handling of Ada DIEs.
7612
7613 2010-03-09 Christopher Faylor <me+cygwin@cgf.cx>
7614 Pierre Muller <muller@ics.u-strasbg.fr>
7615
7616 * windows-nat.c (cygwin_conv_path): Redefine to properly convert
7617 from/to posix/win32.
7618 (windows_make_so): Use non-Cygwin 1.7 specific function.
7619 (windows_create_inferior): Make sure that cygallargs points to
7620 original args in non Cygwin 1.7. case.
7621
7622 2010-03-09 Michael Snyder <msnyder@vmware.com>
7623
7624 * i386-tdep.c (i386_record_lea_modrm_addr): Use extract_signed_int
7625 after target_read_memory to get host byte order.
7626 (i386_process_record): Ditto.
7627
7628 2010-03-09 Keith Seitz <keiths@redhat.com>
7629
7630 Based on work from Daniel Jacobowitz <dan@codesourcery.com>
7631 * c-typeprint.c (cp_type_print_method_args): For non-static methods,
7632 print out const or volatile qualifiers, too.
7633 (c_type_print_args): Add parameters show_artificial and language.
7634 Skip artificial parameters when requested.
7635 Use the appropriate language printer.
7636 (c_type_print_varspec): Tell c_type_print_args to skip artificial
7637 parameters and pass language_c.
7638 * dwarf2read.c (die_list): New file global.
7639 (struct partial_die_info): Update comments for name field.
7640 (pdi_needs_namespace): Renamed to ...
7641 (die_needs_namespace): ... this. Rewrite.
7642 (dwarf2_linkage_name): Remove.
7643 (add_partial_symbol): Do not predicate the call to
7644 partial_die_full_name based on pdi_needs_namespace.
7645 Remove call to cp_check_possible_namespace_symbols and associated
7646 outdated comments.
7647 (guess_structure_name): Do not inspect child subprogram DIEs.
7648 (dwarf2_fullname): Update comments.
7649 Use die_needs_namespace to assist in computing the name.
7650 (read_func_scope): Use dwarf2_name to get the DIE's name.
7651 Use dwarf2_physname to get the "linkage name" of the DIE.
7652 (dwarf2_add_member_field): Use dwarf2_physname instead of
7653 dwarf2_linkage_name.
7654 (read_structure_type): For structs and classes, set TYPE_NAME, too.
7655 (determine_class): Remove.
7656 (read_partial_die): Ignore DW_AT_MIPS_linkage_name for all languages
7657 except Ada.
7658 (new_symbol): Unconditionally call dwarf2_name.
7659 Compute the "linkage name" using dwarf2_physname.
7660 Use dwarf2_name instead of dwarf2_full_name for enumerator DIEs.
7661 When determining to scan for anonymous C++ namespaces, ignore
7662 the linkage name.
7663 (dwarf2_physname): New function.
7664 (dwarf2_full_name): Move content to new function and call
7665 that.
7666 (dwarf2_compute_name): "New" function.
7667 (_initialize_dwarf2_read): Initialize die_list.
7668 * gnu-v3-eabi.c (gnu_v3_find_method_in): Remove unused variable
7669 physname.
7670 (gnu_v3_print_method_ptr): Use the physname for virtual methods
7671 without a demangled name.
7672 Print out type information for non-virtual methods.
7673 * linespec.c (decode_line_1): Force ANY string using "::" (or
7674 "." for java) to use decode_compound, and clean up any stray quoting.
7675 If we found a file symtab, re-evaluate whether the remainder is_quoted.
7676 (decode_compound): Stop consuming at an open parenthesis.
7677 Keep template parameters.
7678 Keep any overload information.
7679 Keep keywords like "const".
7680 Remove paren_pointer.
7681 Move is_quoted check from set_flags to here.
7682 Remove #if 0 code from 2000. Ten years is long enough.
7683 (find_method): Before comparing symbol names, canonicalize the string
7684 from the user.
7685 If a specific overload is requested, find it. Otherwise throw an error.
7686 (find_method_overload_end): New function.
7687 (set_flags): Remove.
7688 (decode_compound): Assume that parentheses are matched.
7689 It's a lot easier.
7690 * symtab.c (symbol_find_demangled_name): Add DMGL_VERBOSE flag
7691 to cplus_demangle.
7692 * linespec.c (decode_line_1): Keep important keywords like
7693 "const" and "volatile".
7694 * symtab.h (SYMBOL_CPLUS_DEMANGLED_NAME): Remove.
7695 * typeprint.h (c_type_print_args): Add declaration.
7696 * ui-file.c (do_ui_file_obsavestring): New function.
7697 (ui_file_obsavestring): New function.
7698 * ui-file.h (ui_file_obsavestring): Add declaration.
7699 * valops.c (find_overload_match): Resolve the object to
7700 a non-pointer type.
7701 If the object is a data member, search the object for the member
7702 and return with staticp set.
7703 Use SYMBOL_NATURAL_NAME instead of SYMBOL_CPLUS_DEMANGLED_NAME.
7704 Do not attempt to extract a function name from non-function types.
7705 If the extracted function name and the original name are the same,
7706 we don't have a C++ method.
7707
7708 From Jan Kratochvil <jan.kratochvil@redhat.com>:
7709 * dwarf2read.c (new_symbol <DW_TAG_enumerator>): Call dwarf2_full_name.
7710
7711 * ada-lang.c (ada_lookup_symbol): Remove linkage_name parameters
7712 and arguments from symbol lookups.
7713 * ax-gdb.c (gen_expr): Likewise.
7714 * cp-namespace.c (cp_lookup_symbol_nonlocal, lookup_namespace_scope,
7715 cp_lookup_symbol_namespace, lookup_symbol_file, lookup_nested_type,
7716 lookup_possible_namespace_symbol): Likewise.
7717 * cp-support.c (read_in_psymtabs): Likewise.
7718 * cp-support.h (cp_lookup_symbol_nonlocal): Likewise.
7719 * language.h (la_lookup_symbol_nonlocal): Likewise.
7720 * scm-valprint.c (scm_inferior_print): Likewise.
7721 * solib-darwin.c (darwin_relocate_section_addresses): Likewise.
7722 * solib-svr.c (elf_lookup_lib): Likewise.
7723 * solib.c (show_auto_solib_add): Likewise.
7724 * solist.h (lookup_lib_global, solib_global_lookup): Likewise.
7725 * symmisc.c (maintenance_check_symtabs): Likewise.
7726 * symtab.c (lookup_symbol_in_language, lookup_symbol_aux,
7727 lookup_symbol_aux_local, lookup_symbol_aux_block,
7728 lookup_symbol_from_objfile, lookup_symbol_aux_symtabs,
7729 lookup_symbol_aux_psymtabs,basic_lookup_symbol_nonlocal,
7730 lookup_symbol_static, lookup_symbol_global, symbol_matches_domain,
7731 basic_lookup_transparent_type, find_main_psymtab,
7732 lookup_block_symbol): Likewise.
7733 * symtab.h (basic_lookp_symbol_nonlocal, lookup_symbol_static,
7734 lookup_symbol_global, lookup_symbol_aux_block,
7735 lookup_symbol_partial_symbol, lookup_block_symbol,
7736 lookup_global_symbol, value_maybe_namespace_elt): Likewise.
7737
7738 2010-03-09 Pierre Muller <muller@ics.u-strasbg.fr>
7739
7740 * python/python-internal.h: Include symtab.h.
7741
7742 2010-03-09 Joel Brobecker <brobecker@adacore.com>
7743 Pierre Muller <muller@ics.u-strasbg.fr>
7744
7745 * p-lang.c (is_pascal_string_type): Remove unneeded parentheses.
7746 * p-valprint.c (pascal_val_print): Remove undeed block and fix
7747 indentation.
7748
7749 2010-03-08 Tom Tromey <tromey@redhat.com>
7750
7751 * breakpoint.c (breakpoint_1): Add "QUIT".
7752
7753 2010-03-08 Daniel Jacobowitz <dan@codesourcery.com>
7754 Pedro Alves <pedro@codesourcery.com>
7755
7756 * solib.c (solib_find): Replace extension if
7757 solib_symbols_extension is set in the target gdbarch.
7758 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
7759 solib_symbols_extension to "sym".
7760 * gdbarch.sh (solib_symbols_extension): New variable.
7761 (pstring): New function.
7762 * gdbarch.h, gdbarch.c: Regenerate.
7763
7764 2010-03-08 Tom Tromey <tromey@redhat.com>
7765
7766 PR cli/9591:
7767 * NEWS: Update.
7768 * utils.c: Include main.h.
7769 (fputs_maybe_filtered): Don't paginate if `batch_flag'.
7770 (defaulted_query): Use default answer if `batch_flag'.
7771 * main.h (batch_flag): Declare.
7772 * main.c (batch_flag): New global.
7773 (captured_main): Remove 'batch'. Update.
7774
7775 2010-03-08 Kevin Buettner <kevinb@redhat.com>
7776
7777 From Richard Sandiford, Martin M. Hunt, Corinna Vinschen,
7778 and Kevin Buettner:
7779
7780 * remote-mips.c (rockhopper_ops): New target_ops struct.
7781 (MON_ROCKHOPPER): New mips_monitor_type.
7782 (read_hex_value): New function.
7783 (mips_request): Send 8-byte values with a 'T' packet. Read the
7784 packet argument as a string and use read_hex_value to parse it.
7785 (mips_exit_debug): Wait for response when using MON_ROCKHOPPER.
7786 (rockhopper_open): New function.
7787 (mips_wait): Read the PC, FP and SP fields as strings. Use
7788 read_hex_value to parse them and mips_set_register to commit them.
7789 (mips_set_register): New function.
7790 (mips_fetch_registers): Do not cast register value to "unsigned"
7791 when reading a MON_ROCKHOPPER 't' packet. Use mips_set_register.
7792 (mips_store_registers): Use a 'T' packet to set registers when
7793 using MON_ROCKHOPPER.
7794 (pmon_end_download): Don't run initEther if using MON_ROCKHOPPER
7795 and expect the total to be printed before the entry address.
7796 (_initialize_remote_mips): Initialize and add rockhopper_ops.
7797
7798 2010-03-08 Kevin Buettner <kevinb@redhat.com>
7799
7800 * remote-mips.c (mips_fetch_word): Add new parameter, `valp'.
7801 Change return value to int. Store value fetched in location
7802 addressed by `val'. Use function's return value as success
7803 or failure indicator. Adjust all callers.
7804
7805 2010-03-08 Pierre Muller <muller@ics.u-strasbg.fr>
7806
7807 * p-lang.c (is_pascal_string_type): Check that TYPE arg is non NULL.
7808
7809 2010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
7810 Hui Zhu <teawater@gmail.com>
7811
7812 * record.c (record_open_1): Check tmp_to_stopped_by_watchpoint and
7813 tmp_to_stopped_data_address.
7814 (record_open): Reset tmp_to_stopped_by_watchpoint and
7815 tmp_to_stopped_data_address.
7816 * target.c (init_dummy_target): Add to_stopped_by_watchpoint and
7817 to_stopped_data_address.
7818
7819 2010-03-08 Hui Zhu <teawater@gmail.com>
7820
7821 * i386-tdep.c (i386_process_record): Initialize regnum.
7822
7823 2010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
7824
7825 * symfile.c (addr_info_make_relative): New variable sect_name, use it.
7826 Do not warn on ".gnu.liblist" and ".gnu.conflict".
7827
7828 2010-03-08 Joel Brobecker <brobecker@adacore.com>
7829
7830 Memory error when reading wrong core file.
7831 * solib-svr4.c (solib_svr4_r_map): catch and print all exception
7832 errors while reading the inferior memory, and return zero if
7833 an exception was raised.
7834
7835 2010-03-07 Michael Snyder <msnyder@vmware.com>
7836
7837 * record.c (record_restore): Rename tmpu8 to rectype.
7838
7839 * i386-tdep.c (i386_record_lea_modrm_addr): Rename local variables
7840 tmpu8, tmpi16, tmpi32, tmpulongest to addr8, addr16, addr32, addr64.
7841
7842 (i386_record_push): Rename local tmpulongest to addr.
7843
7844 (i386_process_record): Rename local tmpulongest to addr.
7845
7846 Rename local variables tmpu16, tmpu32, tmpu64 to addr16, addr32,
7847 addr64.
7848
7849 Rename local variable tmpu8 to opcode8 and regnum.
7850
7851 2010-03-07 Joel Brobecker <brobecker@adacore.com>
7852
7853 * remote.c (remote_get_ada_task_ptid): New function.
7854 (init_remote_ops): Set remote_ops.to_get_ada_task_ptid.
7855
7856 2010-03-06 Christopher Faylor <me+cygwin@cgf.cx>
7857
7858 * windows-nat.c: Reorganize #ifdef __CYGWIN__ considerations into one
7859 block. Define helper macros to reduce ifdefs in code.
7860 (get_module_name): Use cygwin_buf_t for buffer and __PMAX for buffer
7861 size. Call unadorned GetModuleFileNameEx rather than
7862 GetModuleFileNameEx*.
7863 (windows_make_so): Use __PMAX to denote maximum buffer size and
7864 cygwin_buf_t for buffer type. Use GetSystemDirectory{W,A} as
7865 appropriate.
7866 (get_image_name): Use __PMAX to denote maximum buffer size.
7867 (handle_load_dll): Likewise.
7868 (windows_pid_to_exec_file): Likewise.
7869 (windows_create_inferior): Add many accommodations for older Cygwin and
7870 non-Cygwin.
7871 (bad_GetModuleFileNameExW): Control inclusion of this function based on
7872 __USEWIDE conditional.
7873 (bad_GetModuleFileNameExA): Likewise.
7874 (_initialize_loadable): Just use real function names without the dyn_
7875 part since they are defined earlier.
7876
7877 2010-03-05 Corinna Vinschen <vinschen@redhat.com>
7878 Tom Tromey <tromey@redhat.com>
7879
7880 * utils.c (host_char_to_target): Add 'gdbarch' argument.
7881 (parse_escape): Likewise.
7882 * python/py-utils.c (unicode_to_target_string): Update.
7883 (unicode_to_target_python_string): Update.
7884 (target_string_to_unicode): Update.
7885 * printcmd.c (printf_command): Update.
7886 * p-exp.y (yylex): Update.
7887 * objc-exp.y (yylex): Update.
7888 * mi/mi-parse.c: Include charset.h.
7889 (mi_parse_escape): New function.
7890 (mi_parse_argv): Use it.
7891 * jv-exp.y (yylex): Update.
7892 * i386-cygwin-tdep.c (i386_cygwin_auto_wide_charset): New
7893 function.
7894 (i386_cygwin_init_abi): Call set_gdbarch_auto_wide_charset.
7895 * gdbarch.sh (auto_charset, auto_wide_charset): New.
7896 * gdbarch.c: Rebuild.
7897 * gdbarch.h: Rebuild.
7898 * defs.h (parse_escape): Update.
7899 * cli/cli-setshow.c: Include arch-utils.h.
7900 (do_setshow_command): Update.
7901 * cli/cli-cmds.c (echo_command): Update.
7902 * charset.h (target_charset, target_wide_charset): Update.
7903 * charset.c: Include arch-utils.h.
7904 (target_charset_name): Default to "auto".
7905 (target_wide_charset_name): Likewise.
7906 (show_target_charset_name): Handle "auto".
7907 (show_target_wide_charset_name): Likewise.
7908 (be_le_arch): New global.
7909 (set_be_le_names): Add 'gdbarch' argument.
7910 (validate): Likewise. Don't call set_be_le_names.
7911 (set_charset_sfunc, set_host_charset_sfunc)
7912 (set_target_charset_sfunc, set_target_wide_charset_sfunc):
7913 Update.
7914 (target_charset): Add 'gdbarch' argument.
7915 (target_wide_charset): Likewise. Remove 'byte_order' argument.
7916 (auto_target_charset_name): New global.
7917 (default_auto_charset, default_auto_wide_charset): New functions.
7918 (_initialize_charset): Set auto_target_charset_name. Allow "auto"
7919 for target charsets. Copy result of nl_langinfo. Use GetACP if
7920 USE_WIN32API.
7921 * c-lang.c (charset_for_string_type): Add 'gdbarch' argument,
7922 remove 'byte_order' argument. Update.
7923 (classify_type): Likewise.
7924 (c_emit_char): Update.
7925 (c_printchar): Update.
7926 (c_printstr): Update.
7927 (c_get_string): Update.
7928 (evaluate_subexp_c): Update.
7929 * arch-utils.h (default_auto_charset, default_auto_wide_charset):
7930 Declare.
7931 * python/python.c (gdbpy_target_charset): New function.
7932 (gdbpy_target_wide_charset): Likewise.
7933 (GdbMethods): Update.
7934 * NEWS: Update.
7935
7936 2010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
7937
7938 * symfile.c (build_section_addr_info_from_objfile): Do not mask
7939 off high address bits.
7940
7941 2010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
7942
7943 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Extract
7944 address as UnsignedLongLong, not LongLong.
7945
7946 2010-03-05 Kevin Buettner <kevinb@redhat.com>
7947 Pedro Alves <pedro@codesourcery.com>
7948
7949 * remote-mips.c (gdbthread.h): Include.
7950 (remote_mips_ptid): Declare.
7951 (mips_error): Only mourn the inferior when inferior_ptid is non-null.
7952 (common_open): Set inferior_ptid, add it as an inferior, and
7953 as a thread too. Delete FIXME comment regarding start_remote().
7954 (mips_close): Invoke generic_mourn_inferior().
7955 (mips_kill): Make sure that target_mourn_inferior is invoked.
7956 (mips_mourn_inferior): Don't invoke generic_mourn_inferior, as
7957 it's now invoked from mips_close().
7958 (mips_load): Don't null out inferior_ptid. Don't call
7959 clear_symtab_users().
7960 (mips_thread_alive, mips_pid_to_str): New functions.
7961 (_initialize_remote_mips): Initialize remote_mips_ptid. Initialize
7962 to_thread_alive and to_pid_to_str operations.
7963
7964 2010-03-04 Tom Tromey <tromey@redhat.com>
7965
7966 * dwarf2read.c (skip_one_die) <DW_FORM_ref_addr>: Use offset size
7967 in DWARF 3 and later.
7968 (read_attribute_value) <DW_FORM_ref_addr>: Likewise.
7969
7970 2010-03-04 Keith Seitz <keiths@redhat.com>
7971
7972 * linespec.c (decode_line_1): Update comments for is_quote_enclosed.
7973 If the filename portion of the linespec was quoted, recheck the
7974 remainder for additional quoting.
7975 (locate_first_half): Skip over completer chars, too.
7976
7977 2010-03-04 Tom Tromey <tromey@redhat.com>
7978
7979 * printcmd.c (printf_command): Pass dummy argument to
7980 printf_filtered.
7981
7982 2010-03-04 Doug Evans <dje@google.com>
7983
7984 * arm-tdep.c (arm_make_stub_cache): Delete unused locals reg,
7985 unwound_fp.
7986
7987 * arm-tdep.c (arm_stub_unwind_sniffer): Add comment.
7988
7989 2010-03-04 Pedro Alves <pedro@codesourcery.com>
7990
7991 * breakpoint.c (update_watchpoint): Create a sentinel location if
7992 the software watchpoint isn't watching any memory.
7993 (breakpoint_address_bits): Skip dummy software watchpoint locations.
7994
7995 2010-03-04 Pedro Alves <pedro@codesourcery.com>
7996
7997 * utils.c (fputs_maybe_filtered): Check if there's already a top
7998 level interpreter before dereferencing it. If there isn't one,
7999 don't paginate either.
8000
8001 2010-03-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
8002
8003 * arm-tdep.c (arm_pc_is_thumb): Add heuristic that tries to get
8004 the state right when single stepping.
8005 (arm_get_next_pc_raw, thumb_get_next_pc_raw): New functions.
8006 Get the next PC along with the instruction state.
8007 (thumb_get_next_pc): Remove.
8008 (arm_get_next_pc): Modified to use arm_get_next_pc_raw.
8009
8010 2010-03-04 Hui Zhu <teawater@gmail.com>
8011
8012 * i386-tdep.c (i386_process_record): Change "addr" to "tmpu64".
8013
8014 2010-03-03 Pedro Alves <pedro@codesourcery.com>
8015
8016 * utils.c (fputs_maybe_filtered): Always disable pagination if the
8017 top level interpreter is MI.
8018
8019 2010-03-03 Stan Shebs <stan@codesourcery.com>
8020
8021 * remote.c (remote_download_tracepoint): Iterate over locations.
8022 * tracepoint.c (validate_actionline): Ditto.
8023 (encode_actions): Add location argument.
8024 (trace_dump_command): Check all locations to see if stepping
8025 frame.
8026
8027 2010-03-03 H.J. Lu <hongjiu.lu@intel.com>
8028 Eli Zaretskii <eliz@gnu.org>
8029
8030 * NEWS: Add X86 general purpose registers section.
8031
8032 2010-03-03 Tom Tromey <tromey@redhat.com>
8033
8034 PR mi/11098:
8035 * varobj.c (install_new_value): Handle case where new print_value
8036 is NULL.
8037
8038 2010-03-03 Dainis Jonitis <jonitis@gmail.com>
8039
8040 PR gdb/11345:
8041 * printcmd.c (printf_command): Print end of format string using
8042 printf_filtered.
8043
8044 2010-03-02 Tom Tromey <tromey@redhat.com>
8045
8046 * mi/mi-cmd-break.c (mi_read_next_line): Add missing 'void'.
8047 * defs.h (read_command_lines_1): Add missing 'void'.
8048 * cli/cli-script.c (recurse_read_control_structure): Add missing
8049 'void'.
8050 (read_next_line): Likewise.
8051 (read_command_lines_1): Likewise.
8052
8053 2010-03-02 Ulrich Weigand <uweigand@de.ibm.com>
8054
8055 * spu-tdep.c (spu_analyze_prologue): Track instruction to
8056 store backchain as part of prologue.
8057
8058 2010-03-02 Daniel Jacobowitz <dan@codesourcery.com>
8059
8060 * progspace.c (update_address_spaces): Update inferior address spaces
8061 also.
8062
8063 2010-03-02 Doug Evans <dje@google.com>
8064
8065 * dwarf2read.c (add_partial_subprogram): Add missing baseaddr to
8066 lowpc,highpc args to addrmap_set_empty.
8067
8068 2010-03-02 H.J. Lu <hongjiu.lu@intel.com>
8069
8070 * amd64-tdep.c (amd64_byte_names): New.
8071 (amd64_word_names): Likewise.
8072 (amd64_dword_names): Likewise.
8073 (amd64_pseudo_register_name): Likewise.
8074 (amd64_pseudo_register_read): Likewise.
8075 (amd64_pseudo_register_write): Likewise.
8076 (amd64_init_abi): Set num_byte_regs, num_word_regs, num_dword_regs
8077 and num_mmx_regs. Call set_gdbarch_pseudo_register_read,
8078 set_gdbarch_pseudo_register_write and
8079 set_tdesc_pseudo_register_name. Don't call
8080 set_gdbarch_num_pseudo_regs. Don't set mm0_regnum.
8081
8082 * i386-tdep.c (i386_num_mmx_regs): Removed.
8083 (i386_num_pseudo_regs): Likewise.
8084 (i386_byte_names): New.
8085 (i386_word_names): Likewise.
8086 (i386_byte_regnum_p): Likewise.
8087 (i386_word_regnum_p): Likewise.
8088 (i386_mmx_regnum_p): Updated.
8089 (i386_pseudo_register_name): Make it global. Handle byte and
8090 word pseudo-registers.
8091 (i386_pseudo_register_read): Likewise.
8092 (i386_pseudo_register_write): Likewise.
8093 (i386_pseudo_register_type): Handle byte, word and dword
8094 pseudo-registers
8095 (i386_register_reggroup_p): Don't include pseudo
8096 registers, except for MXX, in any register groups. Don't
8097 include pseudo byte, word, dword registers in general_reggroup.
8098 (i386_gdbarch_init): Set num_byte_regs, num_word_regs,
8099 num_dword_regs, al_regnum, ax_regnum and eax_regnum. Put MMX
8100 pseudo-registers after word pseudo-registers. Call
8101 set_gdbarch_num_pseudo_regs after calling gdbarch_init_osabi.
8102
8103 * i386-tdep.h (gdbarch_tdep): Add num_mmx_regs, num_byte_regs,
8104 al_regnum, num_word_regs, ax_regnum, num_dword_regs and
8105 eax_regnum.
8106 (i386_byte_regnum_p): New.
8107 (i386_word_regnum_p): Likewise.
8108 (i386_dword_regnum_p): Likewise.
8109 (i386_pseudo_register_name): Likewise.
8110 (i386_pseudo_register_read): Likewise.
8111 (i386_pseudo_register_write): Likewise.
8112
8113 2010-03-01 H.J. Lu <hongjiu.lu@intel.com>
8114
8115 * target-descriptions.c (tdesc_type): Remove
8116 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
8117 (tdesc_predefined_types): Likewise.
8118 (tdesc_gdb_type): Likewise. Pass NULL to append_flags_type_flag
8119 if flag name is empty.
8120 (maint_print_c_tdesc_cmd): Handle TDESC_TYPE_FLAGS.
8121
8122 * features/i386/32bit-core.xml: Define i386_eflags.
8123 * features/i386/64bit-core.xml: Likewise.
8124
8125 * features/i386/32bit-sse.xml: Define i386_mxcsr.
8126 * features/i386/64bit-sse.xml: Likewise.
8127
8128 * features/i386/amd64-linux.c: Regenerated.
8129 * features/i386/amd64.c: Likewise.
8130 * features/i386/i386-linux.c: Likewise.
8131 * features/i386/i386.c: Likewise.
8132
8133 2010-03-01 Daniel Jacobowitz <dan@codesourcery.com>
8134
8135 * gdbtypes.c (append_composite_type_field_raw): New.
8136 (append_composite_type_field_aligned): Use the new function.
8137 * gdbtypes.h (append_composite_type_field_raw): Declare.
8138 * target-descriptions.c (struct tdesc_type_field): Add start and end.
8139 (struct tdesc_type_flag): New type.
8140 (struct tdesc_type): Add TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS to
8141 kind. Add size to u.u. Add u.f for flags.
8142 (tdesc_gdb_type): Handle TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS.
8143 (tdesc_free_type): Likewise.
8144 (tdesc_create_struct, tdesc_set_struct_size, tdesc_create_flags): New.
8145 (tdesc_add_field): Handle TDESC_TYPE_STRUCT.
8146 (tdesc_add_bitfield, tdesc_add_flag): New.
8147 * target-descriptions.h (tdesc_create_struct, tdesc_set_struct_size)
8148 (tdesc_create_flags, tdesc_add_bitfield, tdesc_add_flag): Declare.
8149 * xml-tdesc.c (struct tdesc_parsing_data): Rename current_union to
8150 current_type. Add current_type_size and current_type_is_flags.
8151 (tdesc_start_union): Clear the new fields.
8152 (tdesc_start_struct, tdesc_start_flags): New.
8153 (tdesc_start_field): Handle struct fields, including bitfields.
8154 (field_attributes): Make type optional. Add start and end.
8155 (union_children): Rename to struct_union_children.
8156 (union_attributes): Rename to struct_union_attributes. Add optional
8157 size.
8158 (flags_attributes): New.
8159 (feature_children): Add struct and flags.
8160 * features/gdb-target.dtd: Add flags and struct to features.
8161 Make field type optional. Add field start and end.
8162
8163 2010-03-01 H.J. Lu <hongjiu.lu@intel.com>
8164
8165 * amd64-linux-nat.c (AMD64_LINUX_USER64_CS): New.
8166 (amd64_linux_read_description): Likewise.
8167 (_initialize_amd64_linux_nat): Set to_read_description to
8168 amd64_linux_read_description.
8169
8170 * amd64-linux-tdep.c: Include "features/i386/amd64-linux.c".
8171 (amd64_linux_register_name): Removed.
8172 (amd64_linux_register_type): Likewise.
8173 (amd64_linux_core_read_description): New.
8174 (amd64_linux_init_abi): Set target description to
8175 tdesc_amd64_linux if needed. Support orig_rax in target
8176 description. Don't call set_gdbarch_register_name nor
8177 set_gdbarch_register_type. Call
8178 set_gdbarch_core_read_description.
8179 (_initialize_amd64_linux_tdep): Call
8180 initialize_tdesc_amd64_linux.
8181
8182 * amd64-linux-tdep.h (tdesc_amd64_linux): New.
8183
8184 * amd64-tdep.c: Include "features/i386/amd64.c".
8185 (amd64_register_names): Removed.
8186 (amd64_register_name): Likewise.
8187 (amd64_register_type): Likewise.
8188 (amd64_init_abi): Set num_core_regs and register_names. Set
8189 target description to tdesc_amd64 if needed. Don't call
8190 set_gdbarch_register_name nor set_gdbarch_register_type.
8191 (_initialize_amd64_tdep): New.
8192
8193 * i386-linux-nat.c (i386_linux_read_description): New.
8194 (_initialize_i386_linux_nat): Set to_read_description to
8195 i386_linux_read_description.
8196
8197 * i386-linux-tdep.c: Include "features/i386/i386-linux.c".
8198 (i386_linux_register_name): Removed.
8199 (i386_linux_core_read_description): New.
8200 (i386_linux_read_description): Likewise.
8201 (i386_linux_init_abi): Don't call set_gdbarch_register_name.
8202 Set target description to tdesc_i386_linux if needed. Support
8203 orig_eax. Set register_reggroup_p. Call
8204 set_gdbarch_core_read_description.
8205 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_linux.
8206
8207 * i386-linux-tdep.h (tdesc_i386_linux): New.
8208
8209 * i386-nto-tdep.c (i386nto_regset_id): Replace I386_NUM_FREGS
8210 with I387_NUM_REGS.
8211
8212 * i386-tdep.c: Include "features/i386/i386.c".
8213 (i386_register_names): Make it const.
8214 (i386_mmx_names): Likewise.
8215 (i386_num_register_names): Removed.
8216 (i386_register_name): Likewise.
8217 (i386_eflags_type): Likewise.
8218 (i386_mxcsr_type): Likewise.
8219 (i386_sse_type): Likewise.
8220 (i386_register_type): Likewise.
8221 (i387_ext_type): Call tdesc_find_type instead of arch_float_type.
8222 (i386_pseudo_register_name): New.
8223 (i386_pseudo_register_type): Likewise.
8224 (i386_mmx_type): Make it static.
8225 (i386_gdbarch_init): Check arch. Replace I386_NUM_FREGS with
8226 I387_NUM_REGS. Set num_core_regs and register_names. Don't
8227 call set_gdbarch_register_name nor set_gdbarch_register_type.
8228 Set register_reggroup_p. Set target description to tdesc_i386
8229 if needed. Call set_tdesc_pseudo_register_type,
8230 set_tdesc_pseudo_register_name and tdesc_use_registers.
8231 (_initialize_i386_tdep): Call initialize_tdesc_i386.
8232 initialize_tdesc_x86_64.
8233
8234 * i386-tdep.h (gdbarch_tdep): Remove i386_eflags_type,
8235 i386_mxcsr_type and i386_sse_type. Add num_core_regs,
8236 register_names, tdesc and register_reggroup_p.
8237 (I386_NUM_FREGS): Removed.
8238 (i386_eflags_type): Likewise.
8239 (i386_mxcsr_type): Likewise.
8240 (i386_mmx_type): Likewise.
8241 (i386_sse_type): Likewise.
8242 (i386_register_name): Likewise.
8243 (i386_regnum): Add I386_MXCSR_REGNUM.
8244 (I386_SSE_NUM_REGS): Defined with I386_MXCSR_REGNUM.
8245
8246 * i387-tdep.h (I387_NUM_REGS): New.
8247
8248 * regformats/i386/i386-linux.dat: Generated.
8249 * regformats/i386/i386.dat: Likewise.
8250 * regformats/i386/amd64-linux.dat: Likewise.
8251 * regformats/i386/amd64.dat: Likewise.
8252
8253 * regformats/reg-i386-linux.dat: Removed.
8254 * regformats/reg-i386.dat: Likewise.
8255 * regformats/reg-x86-64-linux.dat: Likewise.
8256 * regformats/reg-x86-64.dat: Likewise.
8257
8258 2010-03-01 Corinna Vinschen <vinschen@redhat.com>
8259
8260 * remote-fileio.c (remote_fileio_func_rename): Use Cygwin 1.7
8261 cygwin_conv_path API rather than the deprecated
8262 cygwin_conv_to_full_posix_path.
8263 * windows-nat.c:
8264 (GetModuleFileNameExA): Undefine for Cygwin.
8265 (GetModuleFileNameExW): Define for Cygwin.
8266 (get_module_name): Change size of pathbuf to PATH_MAX for Cygwin.
8267 Call GetModuleFileNameExW and convert path to POSIX using
8268 cygwin_conv_path.
8269 (windows_make_so): Always define p. Drop unused variable m.
8270 Don't use Win32 functions to check file existance, rather use
8271 access on Cygwin. Fetch system directory using GetSystemDirectoryW.
8272 Use canonicalize_file_name to get full path.
8273 (get_image_name): Use wcstombs, rather than WideCharToMultiByte
8274 to convert Unicode pathname to multibyte on Cygwin. Otherwise,
8275 use correct target buffer size in call to WideCharToMultiByte.
8276 (handle_load_dll): Change size of dll_buf to PATH_MAX for Cygwin.
8277 (windows_pid_to_exec_file): Change size of path to PATH_MAX for Cygwin.
8278 (windows_create_inferior): Convert all paths and arguments to wchar_t
8279 and use CreateProcessW on Cygwin.
8280 (_initialize_windows_nat): Disable DOS-style path warning on Cygwin.
8281 (bad_GetModuleFileNameExA): Undefine for Cygwin.
8282 (bad_GetModuleFileNameExW): Define for Cygwin.
8283 (_initialize_loadable): Load GetModuleFileNameExW into
8284 dyn_GetModuleFileNameExW on Cygwin. Don't load ANSI function on Cygwin.
8285
8286 2010-02-28 Phil Muldoon <pmuldoon@redhat.com>
8287
8288 PR python/11036
8289 * python/py-frame.c (frapy_read_var): Add block argument and logic
8290 to cope with user provided blocks.
8291
8292 2010-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
8293
8294 * infcall.c (call_function_by_hand): Remove gdb_assert on sp and old_sp.
8295 New comment.
8296
8297 2010-02-28 Corinna Vinschen <vinschen@redhat.com>
8298
8299 * Makefile.in (SUBDIR_MI_OBS): Move mi-common.o from here...
8300 (COMMON_OBS): ... to here since it's used unconditionally.
8301 (SUBDIR_MI_SRCS): Move mi/mi-common.c from here...
8302 (SFILES): To here.
8303
8304 2010-02-26 David Daney <ddaney@caviumnetworks.com>
8305
8306 * mips-linux-tdep.c: Update struct sigframe comments.
8307 (SIGFRAME_CODE_OFFSET): Delete macro.
8308 (mips_linux_o32_sigframe_init): Calculate sigcontext_base using
8309 this_frame's sp.
8310 (mips_linux_n32n64_sigframe_init): Same.
8311
8312 2010-02-26 Kevin Buettner <kevinb@redhat.com>
8313
8314 * remote-mips.c (mips_load): Don't use pseudo-register when
8315 invalidating regcache.
8316
8317 2010-02-26 Daniel Jacobowitz <dan@codesourcery.com>
8318
8319 * arm-tdep.c (thumb_get_next_pc): Correct conditional branch opcode.
8320
8321 2010-02-26 Pedro Alves <pedro@codesourcery.com>
8322
8323 * NEWS: Add "New targets" section, and mention ARM Symbian
8324 support.
8325
8326 2010-02-26 Ulrich Weigand <uweigand@de.ibm.com>
8327
8328 * dwarf2loc.c (struct piece_closure): Remove ARCH member,
8329 add ADDR_SIZE member.
8330 (allocate_piece_closure): Update.
8331 (copy_pieced_value_closure): Likewise.
8332 (dwarf2_evaluate_loc_desc): Likewise.
8333 (read_pieced_value): Use DWARF address size instead of
8334 GDB's gdbarch_addr_bit as size of values on the DWARF stack.
8335
8336 2010-02-26 Phil Muldoon <pmuldoon@redhat.com>
8337 Tom Tromey <tromey@redhat.com>
8338
8339 * python/py-type.c (typy_lookup_typename): Add in block argument.
8340 If provided restrict lookup to specified blocks.
8341 (gdbpy_lookup_type): Likewise.
8342 (typy_lookup_type): Likewise.
8343
8344 2010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
8345
8346 Symbian config
8347
8348 gdb/
8349 * arm-symbian-tdep.c: New.
8350 * configure.tgt (arm*-*-symbianelf*): New target.
8351 (*-*-symbianelf*): New OS.
8352 * osabi.c (gdb_osabi_names): Add Symbian.
8353 * defs.h (gdb_osabi): Add GDB_OSABI_SYMBIAN.
8354 * Makefile.in (ALL_TARGET_OBJS): Add arm-symbian-tdep.o.
8355 (ALLDEPFILES): Add arm-symbian-tdep.c.
8356
8357 2010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
8358
8359 * symfile.c (find_lowest_section): Include SEC_ALLOC sections.
8360
8361 2010-02-24 Pedro Alves <pedro@codesourcery.com>
8362
8363 * mi/mi-main.c (mi_cmd_execute): Fix typo.
8364
8365 2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
8366 Tom Tromey <tromey@redhat.com>
8367 Thiago Jung Bauermann <bauerman@br.ibm.com>
8368
8369 * python/python.c (_initialize_python): Call
8370 gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
8371 gdbpy_initialize_blocks.
8372 * python/python-internal.h: Declare struct symbol, block and
8373 symtab_and_line. Declare block_object_type and
8374 symbol_object_type
8375 (gdbpy_lookup_symbol gdbpy_block_for_pc)
8376 (symtab_and_line_to_sal_object, symtab_to_symtab_object)
8377 (symbol_to_symbol_object, block_to_block_object)
8378 (gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
8379 (gdbpy_initialize_blocks ): Declare.
8380 * python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
8381 (frapy_select): Add methods.
8382 (frapy_read_var): Add symbol branch.
8383 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
8384 py-block.
8385 (SUBDIR_PYTHON_SRCS): Likewise.
8386 (py-symbol.o): New rule.
8387 (py-symtab.o): Likewise.
8388 (py-block.o): Likewise.
8389 * python/py-symbol.c: New file.
8390 * python/py-symtab.c: Likewise.
8391 * python/py-block.c: Likewise.
8392
8393 2010-02-24 Pedro Alves <pedro@codesourcery.com>
8394
8395 PR gdb/11321
8396
8397 * inferior.h (prepare_for_detach): Declare.
8398 (struct inferior) <detaching>: New field.
8399 * infrun.c (prepare_for_detach): New.
8400 (handle_inferior_event) <random signal>: Don't stop if detaching.
8401 * target.c (target_detach): Call prepare_for_detach.
8402
8403 2010-02-24 Pedro Alves <pedro@codesourcery.com>
8404
8405 Per-process displaced stepping queue.
8406
8407 * infrun.c (displaced_step_ptid, displaced_step_request_queue)
8408 (displaced_step_gdbarch, displaced_step_closure,
8409 (displaced_step_original, displaced_step_copy): Move globals to
8410 this...
8411 (struct displaced_step_inferior_state): ... new structure.
8412 (displaced_step_inferior_states): New global.
8413 (get_displaced_stepping_state, add_displaced_stepping_state)
8414 (remove_displaced_stepping_state, infrun_inferior_exit): New
8415 functions.
8416 (displaced_step_clear): Add displaced_step_inferior_state
8417 parameter, and adjust to handle it.
8418 (displaced_step_clear_cleanup): Parameter is now a
8419 displaced_step_inferior_state. Adjust.
8420 (displaced_step_prepare): Adjust.
8421 (displaced_step_fixup, displaced_step_fixup)
8422 (infrun_thread_ptid_changed, resume): Adjust.
8423 (init_wait_for_inferior): Don't call displaced_step_clear.
8424 (infrun_thread_stop_requested): Rewrite.
8425 (_initialize_infrun): Install infrun_inferior_exit as
8426 inferior_exit observer.
8427
8428 2010-02-24 Pedro Alves <pedro@codesourcery.com>
8429
8430 * inferior.h (ptid_match): Declare.
8431 * infrun.c (ptid_match): New.
8432 * remote.c (queued_stop_reply): Rewrite and use ptid_match.
8433 (handle_notification): Add debug output.
8434 * linux-nat.c (ptid_match): Delete.
8435
8436 2010-02-24 David S. Miller <davem@davemloft.net>
8437
8438 * gdb_ptrace.h (PT_SYSCALL): If PTRACE_SYSCALL is available, use it.
8439 * syscalls/sparc-linux.xml: New.
8440 * syscalls/sparc64-linux.xml: New.
8441 * Makefile.in (XML_SYSCALL_FILES): Add new syscall XML files.
8442 * sparc-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC32): Define.
8443 (sparc32_linux_get_syscall_number): New function.
8444 (sparc32_linux_init_abi): Set syscall XML file name and hook up
8445 syscall number fetcher.
8446 * sparc64-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC64): Define.
8447 (sparc64_linux_get_syscall_number): New function.
8448 (sparc64_linux_init_abi): Set syscall XML file name and hook up
8449 syscall number fetcher.
8450
8451 2010-02-24 Vladimir Prus <vladimir@codesourcery.com>
8452
8453 Multiexec MI
8454
8455 * breakpoint.c (clear_syscall_counts): Take struct inferior*.
8456 * inferior.c (add_inferior_silent): Notify inferior_added
8457 observer.
8458 (delete_inferior_1): Notify inferior_removed observer.
8459 (exit_inferior_1): Pass inferior, not pid, to observer.
8460 (inferior_appeared): Likewise.
8461 (add_inferior_with_spaces): New.
8462 (add_inferior_command): Use the above.
8463 * inferior.h (delete_inferior_1, add_inferior_with_spaces):
8464 Declare.
8465
8466 * inflow.c (inflow_inferior_exit): Likewise.
8467 * jit.c (jit_inferior_exit_hook): Likewise.
8468
8469 * mi/mi-cmds.c (mi_cmds): Register add-inferior and
8470 remove-inferior.
8471 * mi/mi-cmds.h (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
8472 * mi/mi-interp.c (mi_inferior_added, mi_inferior_removed): New.
8473 (report_initial_inferior): New.
8474 (mi_inferior_removed): Register the above. Make sure
8475 inferior_added observer is called on the first inferior.
8476 (mi_new_thread, mi_thread_exit): Thread group is now identified by
8477 inferior number, not pid.
8478 (mi_solib_loaded, mi_solib_unloaded): Report which inferiors are
8479 affected.
8480 * mi/mi-main.c (current_context): New.
8481 (proceed_thread_callback): Use typed closure.
8482 Proceed everything if pid is 0. Most implementation split into
8483 (proceed_thread): ... this.
8484 (run_one_inferior): New.
8485 (mi_cmd_exec_continue, mi_cmd_exec_interrupt, mi_cmd_exec_run):
8486 Adjust for multiexec behaviour.
8487 (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
8488 (mi_cmd_execute): Handle the 'thread-group' option here.
8489 Do some extra checks.
8490 * mi-parse.c (mi_parse): Handle the --all and --thread-group
8491 options.
8492 * mi-parse.h (struct mi_parse): New fields all and thread_group.
8493
8494 2010-02-24 Vladimir Prus <vladimir@codesourcery.com>
8495
8496 Make -exec-run a proper MI commands.
8497
8498 * mi/mi-cmds.h (mi_cmd_exec_run): Declare.
8499 * mi/mi-cmds.c (mi_cmds): Adjust.
8500 * mi/mi-main.c (mi_cmd_exec_run): New.
8501
8502 2010-02-24 Pedro Alves <pedro@codesourcery.com>
8503 Stan Shebs <stan@codesourcery.com>
8504
8505 * tracepoint.h (set_traceframe_number)
8506 (cleanup_restore_current_traceframe): Declare.
8507 * tracepoint.c (set_traceframe_number): New.
8508 (struct current_traceframe_cleanup): New.
8509 (do_restore_current_traceframe_cleanup)
8510 (restore_current_traceframe_cleanup_dtor)
8511 (make_cleanup_restore_current_traceframe): New.
8512 * infrun.c: Include tracepoint.h.
8513 (fetch_inferior_event): Switch out and in of tfind mode.
8514
8515 2010-02-24 Pedro Alves <pedro@codesourcery.com>
8516
8517 * breakpoint.c (breakpoint_init_inferior): Also delete
8518 bp_shlib_event breakpoints.
8519 * solib-frv.c (enable_break): Remove call to
8520 remove_solib_event_breakpoints.
8521 * solib-svr4.c (enable_break): Ditto.
8522 * solib-darwin.c (darwin_solib_create_inferior_hook): Ditto.
8523 * solib-pa64.c (pa64_solib_create_inferior_hook): Ditto.
8524 * solib-som.c (som_solib_create_inferior_hook): Ditto.
8525 * solib-spu.c (spu_enable_break): Ditto.
8526
8527 2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
8528
8529 * c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE.
8530
8531 2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
8532
8533 * varobj.c (varobj_update): Avoid non-constants in initializers.
8534
8535 2010-02-23 Tom Tromey <tromey@redhat.com>
8536
8537 * dwarf2loc.c (read_pieced_value) <DWARF_VALUE_STACK>: Correctly
8538 handle big-endian values.
8539 (dwarf2_evaluate_loc_desc) <DWARF_VALUE_STACK>: Likewise.
8540
8541 2010-02-22 Pedro Alves <pedro@codesourcery.com>
8542
8543 PR9605
8544
8545 gdb/
8546 * breakpoint.c (insert_bp_location): If inserting the read
8547 watchpoint failed, fallback to an access watchpoint.
8548 (bpstat_check_watchpoint): Stop for read watchpoint triggers even
8549 if the value changed, if not watching the same memory for writes.
8550 (watchpoint_locations_match): Add comment.
8551 (update_global_location_list): Copy the location's watchpoint type.
8552 * i386-nat.c (i386_length_and_rw_bits): It's an internal error to
8553 handle read watchpoints here.
8554 (i386_insert_watchpoint): Read watchpoints aren't supported.
8555 * remote.c (remote_insert_watchpoint): Return 1 for unsupported
8556 packets.
8557 * target.h (target_insert_watchpoint): Update description.
8558
8559 2010-02-19 Tom Tromey <tromey@redhat.com>
8560
8561 * p-typeprint.c (pascal_type_print_varspec_prefix): Update.
8562 * m2-typeprint.c (m2_print_type): Update.
8563 * gdbtypes.c (recursive_dump_type): Update.
8564 (copy_type_recursive): Update.
8565 * c-typeprint.c (c_type_print_varspec_prefix): Update.
8566 (c_type_print_base): Update.
8567 * gdbtypes.h (TYPE_CODE_TEMPLATE, TYPE_CODE_TEMPLATE_ARG):
8568 Remove.
8569 (struct cplus_struct_type) <ntemplate_args>: Remove.
8570 <struct template_arg>: Remove.
8571 <is_dynamic>: Move earlier.
8572 (TYPE_TEMPLATE_ARGS): Remove.
8573 (TYPE_NTEMPLATE_ARGS): Remove.
8574 (TYPE_TEMPLATE_ARG): Remove.
8575
8576 2010-02-19 Tom Tromey <tromey@redhat.com>
8577
8578 PR c++/8693, PR c++/9496:
8579 * cp-namespace.c (cp_lookup_nested_type): Handle TYPE_CODE_UNION.
8580 * c-exp.y (lex_one_token): Rename from yylex. Don't call
8581 write_dollar_variable. Don't try to classify NAME tokens.
8582 (token_and_value): New type.
8583 (token_fifo, popping, name_obstack): New globals.
8584 (classify_name): New function.
8585 (classify_inner_name): Likewise.
8586 (yylex): Likewise.
8587 (VARIABLE): Now has type sval.
8588 (exp : VARIABLE): Call write_dollar_variable.
8589 (qualified_name): Use TYPENAME, not typebase. Add production for
8590 multiple "::" instances.
8591 (variable): Use name_not_typename.
8592 (qualified_type): Remove.
8593 (typebase): Update.
8594
8595 2010-02-19 Jan Kratochvil <jan.kratochvil@redhat.com>
8596
8597 * symfile.c (addr_info_make_relative): Extend comment. Move SECT to
8598 a more inner block. Initialize ADDR by LOWER_OFFSET only if it was
8599 found by bfd_get_section_by_name.
8600 * symfile.h (struct section_addr_info) <sectindex>: New comment.
8601
8602 2010-02-19 Joel Brobecker <brobecker@adacore.com>
8603
8604 * NEWS: Add new "[...] since 7.1" section. Rename the "[...] since
8605 7.0 section" into "Changes in 7.1".
8606
8607 2010-02-19 Joel Brobecker <brobecker@adacore.com>
8608
8609 GDB 7.1 branch created (branch timestamp: 2010-02-18 20:00 UTC)
8610 * version.in: Bump version to 7.1.50.20100219-cvs.
8611
8612 2010-02-18 Harald Koenig <H.Koenig@science-computing.de>
8613
8614 * mi/mi-main.c (mi_cmd_exec_jump): Drop unneeded `return'.
8615 * symfile.c (symfile_map_offsets_to_segments): Fix assertion.
8616
8617 2010-02-17 Tom Tromey <tromey@redhat.com>
8618
8619 * NEWS: Add Python API Improvements section.
8620
8621 2010-02-18 Daniel Jacobowitz <dan@codesourcery.com>
8622
8623 * NEWS: Correct typo.
8624
8625 2010-02-17 Tom Tromey <tromey@redhat.com>
8626
8627 * objfiles.c (gdb_bfd_ref): Handle abfd==NULL.
8628
8629 2010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8630
8631 * symfile.c (build_section_addr_info_from_objfile): Include sections
8632 only if they are SEC_ALLOC or SEC_LOAD.
8633
8634 2010-02-17 H.J. Lu <hongjiu.lu@intel.com>
8635
8636 PR shlibs/11293
8637 * solib-svr4.c (enable_break): Check size of CORE_ADDR instead
8638 of ULONGEST for address size.
8639
8640 2010-02-17 Tom Tromey <tromey@redhat.com>
8641
8642 * NEWS: Add C++ improvements section.
8643
8644 2010-02-17 Ulrich Weigand <uweigand@de.ibm.com>
8645
8646 * python/python-internal.h [!WITH_THREAD] (PyGILState_Release,
8647 PyThreadState_Swap): Avoid "statement with no effect" warning.
8648
8649 2010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8650
8651 * solib-svr4.c (enable_break <target_auxv_search>): New variable
8652 addr_bit. Adjust LOAD_ADDR sign for cross-arch inferiors.
8653
8654 2010-02-17 Tristan Gingold <gingold@adacore.com>
8655 Petr Hluzin <petr.hluzin@gmail.com>
8656
8657 * avr-tdep.c (avr_scan_prologue): Convert an if statement to a
8658 gdb_assert. Fix info->size for SIG prologue.
8659
8660 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
8661
8662 * infcmd.c (show_inferior_tty_command): Check for NULL.
8663 Correct output message.
8664
8665 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
8666
8667 * linespec.c (decode_line_1): Handle FILE:FUNCTION even if
8668 FUNCTION contains parentheses. Improve removal of a trailing
8669 single quote.
8670
8671 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
8672
8673 * gcore.c (do_bfd_delete_cleanup): New function.
8674 (gcore_command): Use it. Discard the cleanup after success.
8675 (gcore_copy_callback): Delete dead code.
8676
8677 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
8678
8679 * symfile.c (addr_info_make_relative): Always use
8680 find_lowest_section.
8681
8682 2010-02-16 Sami Wagiaalla <swagiaal@redhat.com>
8683
8684 * NEWS: Added entry for namespace fixes.
8685
8686 2010-02-15 Tom Tromey <tromey@redhat.com>
8687
8688 * dwarf2read.c (guess_structure_name): Allocate name on the
8689 objfile obstack.
8690
8691 2010-02-15 Tom Tromey <tromey@redhat.com>
8692
8693 * c-typeprint.c (c_type_print_base): Reverse order of test.
8694
8695 2010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
8696
8697 * solib-svr4.c (LM_ADDR_CHECK): New variable minpagesize. Optionally
8698 initialize it from ELF BFD. Extend the prelink condition by it.
8699
8700 2010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
8701
8702 * defs.h (parse_pid_to_attach): New.
8703 * utils.c (parse_pid_to_attach): New.
8704 * darwin-nat.c (darwin_attach): Replace ARGS parsing by parse_pid.
8705 * gnu-nat.c (gnu_attach): Likewise.
8706 * nto-procfs.c (procfs_attach): Likewise.
8707 * procfs.c (procfs_attach): Likewise.
8708 * windows-nat.c (windows_attach): Likewise.
8709 * inf-ptrace.c (inf_ptrace_attach): Likewise. Remove variable dummy.
8710 * inf-ttrace.c (inf_ttrace_attach): Likewise.
8711 * remote.c (extended_remote_attach_1): Likewise. New comment on getpid
8712 check.
8713
8714 2010-02-14 Masaki Muranaka <monaka@monami-software.com>
8715
8716 * MAINTAINERS: Add myself for write after approval privileges.
8717
8718 2010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
8719
8720 * solib-svr4.c: (LM_ADDR_CHECK): Move variable align to a more inner
8721 block.
8722
8723 2010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
8724
8725 * solib-svr4.c: (LM_ADDR_CHECK): Print successful prelink adjustment
8726 only if INFO_VERBOSE.
8727
8728 2010-02-12 Tomas Holmberg <th@virtutech.com>
8729
8730 * mi/mi-main.c: Added the --reverse flag to the following MI
8731 commands: exec-continue, exec-finish, exec-next, exec-step,
8732 exec-next-instruction, exec-step-instruction. This is to
8733 support reverse execution over the MI interface to gdb.
8734
8735 2010-02-12 Pedro Alves <pedro@codesourcery.com>
8736
8737 * tracepoint.c (_initialize_tracepoint): Specify that the address
8738 range of `tfind outsize' is exclusive, and that the address range
8739 of `tfind range' is inclusive, in the commands' help strings.
8740
8741 2010-02-12 Joel Brobecker <brobecker@adacore.com>
8742
8743 Spurious "dll not found" error messages on x64-windows.
8744 * windows-nat.c: Add include of complaints.h.
8745 (handle_unload_dll): Change dll-not-found error into a complaint.
8746
8747 2010-02-12 Pedro Alves <pedro@codesourcery.com>
8748
8749 * breakpoint.c (allocate_bp_location): Use bp_loc_other for
8750 bp_tracepoint and bp_fast_tracepoint, not
8751 bp_loc_software_breakpoint.
8752 (update_global_location_list): Tracepoints are never duplicates of
8753 anything.
8754
8755 2010-02-12 Pedro Alves <pedro@codesourcery.com>
8756
8757 * breakpoint.c (break_command_really): Change return type to int.
8758 Return false if no breakpoint was created, true otherwise.
8759 (trace_command): Don't set the tracepoint count if no tracepoint
8760 was created.
8761 (ftrace_command): Ditto.
8762 (create_tracepoint_from_upload): Bail out if the tracepoint wasn't
8763 created in the breakpoints table.
8764
8765 2010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8766 Ulrich Weigand <uweigand@de.ibm.com>
8767
8768 * solib-svr4.c (LM_ADDR_CHECK): New comment on PPC-aware condition.
8769
8770 2010-02-11 Pedro Alves <pedro@codesourcery.com>
8771
8772 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out if
8773 the offset value isn't of integral type.
8774
8775 2010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8776
8777 * breakpoint.c (delete_breakpoint) <bpt->related_breakpoint != NULL>:
8778 New.
8779
8780 2010-02-11 Pedro Alves <pedro@codesourcery.com>
8781
8782 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out on
8783 non-subscriptable types.
8784 * valarith.c (binop_types_user_defined_p): New, abstracted out
8785 from ...
8786 (binop_user_defined_p): ... this.
8787 * value.h (binop_types_user_defined_p): Declare.
8788
8789 2010-02-11 Pedro Alves <pedro@codesourcery.com>
8790
8791 * tracepoint.c (tfile_open): Remove spurious discard_cleanups.
8792 Merge uploaded TSVs before merging uploaded tracepoints.
8793
8794 2010-02-11 Pedro Alves <pedro@codesourcery.com>
8795
8796 * ax-gdb.c (gen_deref): Don't allow dereferencing void pointers.
8797
8798 2010-02-11 Vladimir Prus <vladimir@codesourcery.com>
8799
8800 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Add extra
8801 whitespace character after a dot in comment.
8802 (mi_cmd_stack_list_arguments, mi_cmd_stack_list_variables):
8803 Likewise.
8804 (list_args_or_locals): For the 'all' (that is
8805 -stack-list-variables) case, always output list of tuples.
8806 Output 'arg' field if variable is argument.
8807
8808 2010-02-10 Tom Tromey <tromey@redhat.com>
8809
8810 * parser-defs.h (parser_debug): Declare.
8811 * parse.c (_initialize_parse): Install "debug parser" set/show
8812 command.
8813 (parser_debug): New global.
8814 (show_parserdebug): New function.
8815 * c-exp.y (c_parse): Set yydebug.
8816
8817 2010-02-10 H.J. Lu <hongjiu.lu@intel.com>
8818
8819 * target-descriptions.c (tdesc_type): Add TDESC_TYPE_I387_EXT,
8820 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
8821 (tdesc_predefined_types): Add i387_ext, i386_eflags and
8822 i386_mxcsr.
8823 (tdesc_find_type): New.
8824 (tdesc_gdb_type): Use tdesc_find_type. Handle TDESC_TYPE_I387_EXT,
8825 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
8826
8827 * target-descriptions.h (tdesc_find_type): New.
8828
8829 2010-02-10 Michael Snyder <msnyder@vmware.com>
8830
8831 * gdb-gdb.py: Comment fix.
8832
8833 2010-02-09 Tristan Gingold <gingold@adacore.com>
8834
8835 * machoread.c (macho_symfile_relocate): New function.
8836 (macho_sym_fns): Use macho_symfile_relocate instead of
8837 default_symfile_relocate.
8838 (macho_oso_data): New type.
8839 (current_oso): New variable.
8840 (macho_add_oso_symfile): Do not compute section_addr_info, but
8841 instead set vma of sections.
8842 Do not set SYMFILE_VERBOSE to call symbol_file_add_from_bfd.
8843 Set and clear current_oso.
8844
8845 2010-02-09 Joel Brobecker <brobecker@adacore.com>
8846
8847 Wrong type description for tagged type parameter.
8848 * ada-lang.c (ada_evaluate_subexp) [OP_VAR_VALUE]: When noside is
8849 EVAL_AVOID_SIDE_EFFECTS, also handle the case when type is a
8850 reference to a tagged type.
8851
8852 2010-02-09 Tristan Gingold <gingold@adacore.com>
8853
8854 * objfiles.c (objfile_separate_debug_iterate): Do not iterate on
8855 brothers of the parent.
8856
8857 2010-02-08 Tom Tromey <tromey@redhat.com>
8858
8859 PR c++/8017:
8860 * value.h: Update.
8861 * valops.c (search_struct_field): Make 'name' const.
8862 (search_struct_method): Likewise.
8863 (find_method_list): Make 'method' const.
8864 (value_struct_elt): Make 'name' and 'err' const.
8865 (value_find_oload_method_list): Make 'method' const.
8866 (find_overload_match): Make 'name' const.
8867 * eval.c (evaluate_subexp_standard): New locals function,
8868 function_name.
8869 <OP_FUNCALL>: Handle OP_SCOPE specially.
8870
8871 2010-02-08 Ulrich Weigand <uweigand@de.ibm.com>
8872
8873 * infrun.c (handle_inferior_event): Do not look up regcache
8874 for exited processes.
8875
8876 2010-02-08 Chris Moller <moller@mollerware.com>
8877
8878 PR gdb/10728
8879 * valarith.c (value_ptrdiff): Added a test for a zero type length,
8880 warn if found, and assume length = 1.
8881
8882 2010-02-08 Chris Moller <cmoller@redhat.com>
8883
8884 PR gdb/9067
8885 * cp-valprint.c (cp_print_value_fields) Fix use of obstacks.
8886 (cp_print_static_field) Fix use of obstacks.
8887
8888 2010-02-08 Pedro Alves <pedro@codesourcery.com>
8889
8890 * linux-nat.c (linux_nat_resume): In non-stop, also only tag
8891 resumed LWPs as resumed.
8892 (linux_nat_wait_1): If there's no resumed LWP in the set of LWPs
8893 we're waiting for, bail out with TARGET_WAITKIND_IGNORE, instead
8894 of throwing an internal error. If an LWP of a process we're not
8895 waiting for reports a signal, don't force collecting a SIGSTOP,
8896 and if it was breakpoint hit in non-stop mode, cancel it. Don't
8897 go through all LWPs cancelling breakpoints in non-stop mode.
8898 (resume_stopped_resumed_lwps): New.
8899 (linux_nat_wait): Use it.
8900
8901 2010-02-07 H.J. Lu <hongjiu.lu@intel.com>
8902
8903 * features/Makefile (WHICH): Add i386/i386, i386/i386-linux,
8904 i386/amd64 and i386/amd64-linux.
8905 (i386/i386-expedite): New.
8906 (i386/i386-linux-expedite): Likewise.
8907 (i386/amd64-expedite):Likewise.
8908 (i386/amd64-linux-expedite): Likewise.
8909 ($(outdir)/i386/i386-linux.dat): Likewise.
8910 ($(outdir)/i386/amd64.dat): Likewise.
8911 ($(outdir)/i386/amd64-linux.dat): Likewise.
8912
8913 * features/i386/32bit-core.xml: New.
8914 * features/i386/32bit-linux.xml: Likewise.
8915 * features/i386/32bit-sse.xml: Likewise.
8916 * features/i386/64bit-core.xml: Likewise.
8917 * features/i386/64bit-linux.xml: Likewise.
8918 * features/i386/64bit-sse.xml: Likewise.
8919 * features/i386/i386-linux.xml: Likewise.
8920 * features/i386/i386.xml: Likewise.
8921 * features/i386/amd64-linux.xml: Likewise.
8922 * features/i386/amd64.xml: Likewise.
8923 * features/i386/i386-linux.c: Likewise.
8924 * features/i386/i386.c: Likewise.
8925 * features/i386/amd64-linux.c: Likewise.
8926 * features/i386/amd64.c: Likewise.
8927
8928 2010-02-05 Sami Wagiaalla <swagiaal@redhat.com>
8929
8930 PR c++/7935:
8931 * cp-support.h: Added char* alias element to using_direct data
8932 struct.
8933 (cp_add_using): Added char* alias argument.
8934 (cp_add_using_directive): Ditto.
8935 * cp-namespace.c: Updated with the above changes.
8936 (cp_lookup_symbol_imports): Check for aliases.
8937 * dwarf2read.c (read_import_statement): Figure out local alias
8938 for the import and pass it on to cp_add_using.
8939 (read_namespace): Pass alias argument to cp_add_using.
8940
8941 2010-02-05 Hui Zhu <teawater@gmail.com>
8942
8943 * defs.h (gdb_bfd_errmsg): New extern.
8944 * exec.c (exec_file_attach): Change bfd_errmsg to
8945 gdb_bfd_errmsg.
8946 * utils.c (AMBIGUOUS_MESS1): New macro.
8947 (AMBIGUOUS_MESS2): New macro.
8948 (gdb_bfd_errmsg): New function.
8949
8950 2010-02-04 Doug Evans <dje@google.com>
8951
8952 * solib-svr4.c (enable_break): Add comment.
8953
8954 2010-02-04 Anthony Green <green@moxielogic.com>
8955
8956 * moxie-tdep.c (moxie_analyze_prologue): Fail protocol analysis
8957 gracefully.
8958
8959 2010-02-04 Tom Tromey <tromey@redhat.com>
8960
8961 * valops.c (search_struct_field): Account for
8962 value_embedded_offset. Fix check for virtual base past the end of
8963 the object. Use value_copy when making a slice of the value.
8964
8965 2010-02-04 H.J. Lu <hongjiu.lu@intel.com>
8966
8967 PR tui/9622
8968 * tui/tui-interp.c (tui_init): Call tui_initialize_readline
8969 only if gdb_stdout is a tty.
8970
8971 2010-02-04 H.J. Lu <hongjiu.lu@intel.com>
8972
8973 * target-descriptions.c: Include "osabi.h".
8974 (maint_print_c_tdesc_cmd): Generate set_tdesc_osabi for valid
8975 OSABI.
8976
8977 2010-02-04 Tristan Gingold <gingold@adacore.com>
8978
8979 * machoread.c (macho_add_oso): Renamed to macho_register_oso.
8980 (macho_symtab_read): Adjust calls to macho_add_oso.
8981 (macho_oso_symfile): Renamed to macho_symfile_read_all_oso.
8982 (macho_symfile_read): Adjust call to macho_oso_symfile.
8983 (macho_new_init): Move this function after declarations.
8984 (macho_symfile_init): Ditto.
8985 * darwin-nat-info.c (darwin_lib_gdb_ports): Remove.
8986 * darwin-nat.c (darwin_lookup_task): Remove unused prototype.
8987
8988 2010-02-04 Vladimir Prus <vladimir@codesourcery.com>
8989
8990 Include MI command in remotelog.
8991
8992 * mi/mi-main.c (mi_execute_command): Call target_log_command.
8993
8994 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
8995
8996 * remote.c (remote_state): Remove gdbarch.
8997 (init_remote_state): Don't set gdbarch.
8998 (remote_query_supported): Pass target_gdbarch instead of
8999 rs->gdbarch to gdbarch_qsupported.
9000
9001 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
9002
9003 * gdbarch.sh: Add qsupported.
9004
9005 * gdbarch.c: Regenerated.
9006 * gdbarch.h: Likewise.
9007
9008 * remote.c (remote_state): Add gdbarch.
9009 (init_remote_state): Set gdbarch.
9010 (remote_query_supported): Support gdbarch_qsupported.
9011
9012 2010-02-03 Daniel Jacobowitz <dan@codesourcery.com>
9013
9014 * amd64fbsd-nat.c (amd64fbsd_supply_pcb): Also check for
9015 __FreeBSD_kernel_version.
9016
9017 2010-02-03 Tristan Gingold <gingold@adacore.com>
9018
9019 * symfile.h (struct sym_fns): Add sym_relocate field.
9020 (default_symfile_relocate): New prototype.
9021 (symfile_relocate_debug_section): First argument is now an objfile.
9022 * symfile.c (default_symfile_relocate): Rename from
9023 symfile_relocate_debug_section, first argument is now an objfile.
9024 (symfile_relocate_debug_section): New function.
9025 * coffread.c (coff_sym_fns): Set sym_relocate field.
9026 * somread.c (som_sym_fns): Ditto.
9027 * mipsread.c (ecoff_sym_fns): Ditto.
9028 * machoread.c (macho_sym_fns): Ditto.
9029 * elfread.c (elf_sym_fns): Ditto.
9030 * dwarf2read.c (dwarf2_read_section): Ditto.
9031 * xcoffread.c (xcoff_sym_fns): Ditto.
9032 * dbxread.c (aout_sym_fns): Ditto.
9033 (dbx_psymtab_to_symtab): Adjust call to symfile_relocate_debug_section.
9034 (elfstab_build_psymtabs): Ditto.
9035
9036 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
9037
9038 * defs.h (MAX_REGISTER_SIZE): Increase to 32.
9039
9040 2010-02-02 Tom Tromey <tromey@redhat.com>
9041
9042 * valops.c (value_cast_structs): Try downcasting using the RTTI
9043 type.
9044
9045 2010-02-02 Tom Tromey <tromey@redhat.com>
9046
9047 * gnu-v2-abi.c: Don't include gnu-v2-abi.h.
9048 (gnuv2_baseclass_offset): Now static.
9049 * Makefile.in (HFILES_NO_SRCDIR): Remove gnu-v2-abi.h.
9050 * gnu-v2-abi.h: Remove.
9051
9052 2010-02-02 Tom Tromey <tromey@redhat.com>
9053
9054 * m2-typeprint.c (m2_record_fields): Don't use
9055 TYPE_DECLARED_TYPE.
9056 * gdbtypes.h (TYPE_DECLARED_CLASS): New macro.
9057 (struct main_type) <flag_declared_class>: New field.
9058 (struct cplus_struct_type) <declared_type>: Remove.
9059 <ntemplate_args>: Move earlier.
9060 (DECLARED_TYPE_CLASS, DECLARED_TYPE_UNION, DECLARED_TYPE_STRUCT)
9061 (DECLARED_TYPE_TEMPLATE): Remove.
9062 (TYPE_DECLARED_TYPE): Remove.
9063 * gdbtypes.c (lookup_union): Don't use TYPE_DECLARED_TYPE.
9064 * dwarf2read.c (read_structure_type): Set TYPE_DECLARED_CLASS.
9065 * c-typeprint.c (c_type_print_base): Use TYPE_DECLARED_CLASS, not
9066 TYPE_DECLARED_TYPE.
9067
9068 2010-02-02 Tom Tromey <tromey@redhat.com>
9069
9070 PR c++/11226, PR c++/9629, PR c++/9688, PR c++/8890:
9071 * valops.c (search_struct_field): Compute nbases after calling
9072 CHECK_TYPEDEF.
9073 (check_field): Call CHECK_TYPEDEF.
9074 * cp-valprint.c (cp_print_value): Pass correct address to
9075 baseclass_offset. Fix check for virtual base past the end of the
9076 object. Don't offset address passed to cp_print_value_fields or
9077 apply_val_pretty_printer.
9078 (cp_print_value_fields): Fix call to val_print.
9079 (cp_print_value_fields_rtti): New function.
9080 * c-valprint.c (c_val_print): Use cp_print_value_fields_rtti.
9081 * p-valprint.c (pascal_object_print_value_fields): Fix call to
9082 val_print.
9083 * python/py-prettyprint.c (apply_val_pretty_printer): Add embedded
9084 offset to address.
9085 * language.h (struct language_defn) <la_val_print>: Document.
9086 * c-lang.h (cp_print_value_fields_rtti): Declare.
9087
9088 2010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
9089
9090 PR libc/11214:
9091 * linux-low.c (linux_tracefork_child) [!(__UCLIBC__ && HAS_NOMMU)]: New.
9092 (linux_test_for_tracefork): Move `stack' into [__UCLIBC__ && HAS_NOMMU].
9093 (linux_test_for_tracefork) [!(__UCLIBC__ && HAS_NOMMU)]: New.
9094
9095 2010-02-01 Michael Matz <matz@suse.de>
9096 Daniel Jacobowitz <dan@codesourcery.com>
9097
9098 * i386-tdep.c (i386_frame_cache): Assume valid anonymous
9099 functions use a frame pointer.
9100
9101 2010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
9102
9103 * solib-svr4.c (scan_dyntag): New variable dyn_addr. Replace gdb_assert
9104 by a conditional setting DYN_ADDR. Use DYN_ADDR.
9105 * config/djgpp/fnchange.lst: Add translations for
9106 symbol-without-target_section.exp and symbol-without-target_section.c.
9107
9108 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
9109
9110 * gdbarch.sh: Set LANG and LC_ALL to C, not c.
9111 (remote_breakpoint_for_pc): Correct invalid_p check.
9112 * gdbarch.c: Regenerated.
9113
9114 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
9115
9116 * arm-tdep.c (arm_find_mapping_symbol): New function, from
9117 arm_pc_is_thumb.
9118 (arm_pc_is_thumb): Use arm_find_mapping_symbol.
9119 (extend_buffer_earlier): New function.
9120 (MAX_IT_BLOCK_PREFIX, IT_SCAN_THRESHOLD): New constants.
9121 (arm_adjust_breakpoint_address): New function.
9122 (arm_gdbarch_init): Register arm_adjust_breakpoint_address.
9123
9124 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
9125
9126 * arm-linux-tdep.c (arm_linux_thumb2_be_breakpoint)
9127 (arm_linux_thumb2_le_breakpoint): New constants.
9128 (arm_linux_init_abi): Set thumb2_breakpoint and
9129 thumb2_breakpoint_size.
9130 * arm-tdep.c (thumb_insn_size, thumb_advance_itstate): New functions.
9131 (thumb_get_next_pc): Add a comment. Rename IT to ITSTATE.
9132 Implement support for single stepping through IT blocks if
9133 a 32-bit Thumb breakpoint instruction is available.
9134 (arm_breakpoint_from_pc): If a 32-bit Thumb breakpoint instruction
9135 is available, use it when needed.
9136 (arm_remote_breakpoint_from_pc): New function.
9137 (arm_gdbarch_init): Register arm_remote_breakpoint_from_pc.
9138 * arm-tdep.h (struct gdbarch_tdep): Correct thumb_breakpoint
9139 comment. Add thumb2_breakpoint and thumb2_breakpoint_size.
9140
9141 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
9142
9143 * arch-utils.c (default_remote_breakpoint_from_pc): New function.
9144 * arch-utils.h (default_remote_breakpoint_from_pc): Declare.
9145 * gdbarch.c, gdbarch.h: Regenerated.
9146 * gdbarch.sh (remote_breakpoint_from_pc): New architecture method.
9147 * remote.c (remote_insert_breakpoint, remote_insert_hw_breakpoint): Use
9148 gdbarch_remote_breakpoint_from_pc.
9149
9150 2010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
9151
9152 * infrun.c (prepare_to_proceed): Handle other signals which might
9153 match a breakpoint.
9154 (handle_inferior_event): Move the check for unusual breakpoint
9155 signals earlier.
9156
9157 2010-01-29 Paul Hilfinger <hilfinger@adacore.com>
9158
9159 amd64 - function returning record with field straddling 2 registers.
9160 * amd64-tdep.c (amd_classify_aggregate): Handle the case of
9161 a record of length <= 16 in which a field straddles the two
9162 eightbytes.
9163
9164 2010-01-29 Joel Brobecker <brobecker@adacore.com>
9165
9166 Implement return values on amd64-windows.
9167 * amd64-windows-tdep.c: #include gdbcore.h and regcache.h.
9168 (amd64_windows_return_value): New function.
9169 (amd64_windows_init_abi): Call set_gdbarch_return_value with
9170 amd64_windows_return_value.
9171
9172 2010-01-29 Joel Brobecker <brobecker@adacore.com>
9173
9174 amd64-windows: 32 bytes allocated on stack by caller for integer
9175 parameter registers.
9176 * i386-tdep.h (struct gdbarch_tdep): Add new field
9177 integer_param_regs_saved_in_caller_frame.
9178 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
9179 tdep->integer_param_regs_saved_in_caller_frame to 1.
9180 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
9181 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
9182
9183 2010-01-29 Joel Brobecker <brobecker@adacore.com>
9184
9185 amd64-windows: memory args passed by pointer during function calls.
9186 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
9187 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
9188 where tdep->memory_args_by_pointer is non-zero.
9189 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
9190 tdep->memory_args_by_pointer to 1.
9191
9192 2010-01-29 Joel Brobecker <brobecker@adacore.com>
9193
9194 amd64-windows: Integer parameters in function calls.
9195 * i386-tdep.h (enum amd64_reg_class): New, moved here from
9196 amd64-tdep.c.
9197 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
9198 call_dummy_integer_regs, and classify.
9199 * amd64-tdep.h (amd64_classify): Add declaration.
9200 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
9201 (amd64_reg_class): Delete, moved to i386-tdep.h.
9202 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
9203 Replace call to amd64_classify by call to tdep->classify.
9204 (amd64_push_arguments): Get the list of registers to use for
9205 passing integer parameters from the gdbarch tdep structure,
9206 rather than using a hardcoded one. Replace calls to amd64_classify
9207 by calls to tdep->classify.
9208 (amd64_push_dummy_call): Get the register number used for
9209 the "hidden" argument from tdep->call_dummy_integer_regs.
9210 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
9211 and tdep->call_dummy_integer_regs. Set tdep->classify.
9212 * amd64-windows-tdep.c: Add include of gdbtypes.h.
9213 (amd64_windows_dummy_call_integer_regs): New static global.
9214 (amd64_windows_classify): New function.
9215 (amd64_windows_init_abi): Initialize tdep->call_dummy_num_integer_regs
9216 tdep->call_dummy_integer_regs and tdep->classify.
9217
9218 2010-01-28 Daniel Jacobowitz <dan@codesourcery.com>
9219
9220 * regcache.c (regcache_xmalloc): Add aspace argument. Use it
9221 for the new regcache. All callers updated.
9222 (regcache_cpy, regcache_cpy_no_passthrough): Do not set aspace here.
9223 (get_thread_arch_regcache): Do not set aspace here.
9224 * regcache.h (regcache_xmalloc): Update declaration.
9225
9226 * frame.c, infcall.c, ppc-linux-tdep.c: Calls to
9227 regcache_xmalloc updated.
9228
9229 2010-01-28 Joel Brobecker <brobecker@adacore.com>
9230
9231 Another -Wunused-function error in procfs.c (sparc-solaris)
9232 * procfs.c (insert_dbx_link_breakpoint): Delete declaration. Move up.
9233 Only define if SYS_syssgi is defined.
9234 (remove_dbx_link_breakpoint): Delete declaration. Move up.
9235 (dbx_link_addr, insert_dbx_link_bpt_in_file)
9236 (insert_dbx_link_bpt_in_region): Move up. Only define if SYS_syssgi
9237 is itself defined.
9238
9239 2010-01-27 Christopher Faylor <me+cygwin@cgf.cx>
9240
9241 * windows-nat.c (windows_initialization_done): New variable.
9242 (get_windows_debug_event): Issue error when process dies before
9243 completely initializing.
9244 (do_initial_windows_stuff): Set flag to indicate when we are done with
9245 the initial steps of attaching to the child.
9246
9247 2010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
9248
9249 * symtab.h (struct symbol <symtab>): New comment on NULL values.
9250
9251 2010-01-27 Doug Evans <dje@google.com>
9252
9253 * solib-svr4.c (solib_break_names): Add __dl_rtld_db_dlactivity.
9254
9255 * breakpoint.c (bpstat_stop_status): Delete useless code.
9256
9257 2010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
9258
9259 * printcmd.c (display_uses_solib_p): Remove variable section. Access
9260 objfile via SYMBOL_SYMTAB.
9261
9262 2010-01-26 Tom Tromey <tromey@redhat.com>
9263
9264 PR exp/7643:
9265 * eval.c (evaluate_subexp_for_address) <UNOP_IND>: Call
9266 coerce_array on result.
9267
9268 2010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
9269
9270 * cp-namespace.c (cp_lookup_symbol_namespace): Added
9271 search_parent argument.
9272 (cp_add_using): Initialize 'searched' field.
9273 (reset_directive_searched): New function.
9274 * cp-support.h: Add 'searched' field to using_direct struct.
9275 (cp_lookup_symbol_imports): Ditto.
9276 * cp-namespace.c (cp_lookup_symbol_imports): Ditto.
9277 Perform recursive search.
9278 Implement non parent search.
9279 * valops.c (value_maybe_namespace_elt): Updated.
9280
9281 2010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
9282
9283 PR gdb/10929:
9284 * dwarf2read.c (read_lexical_block_scope): Create blocks for
9285 scopes which contain using directives even if they contain no
9286 declarations.
9287 * symtab.c (lookup_symbol_aux): Pass lowest level block to
9288 la_lookup_symbol_nonlocal.
9289 * cp-namespace.c (cp_lookup_symbol_nonlocal): call
9290 cp_lookup_symbol_namespace.
9291 (cp_lookup_symbol_namespace): Perform an import lookup at every
9292 block level.
9293 (cp_lookup_symbol_imports): New function.
9294 (cp_lookup_symbol_in_namespace): New function.
9295
9296 2010-01-25 Tom Tromey <tromey@redhat.com>
9297
9298 PR gdb/11049:
9299 * c-valprint.c (c_val_print): Fix test of extract_unsigned_integer
9300 result.
9301
9302 2010-01-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
9303
9304 * configure.ac: Only use host_os part when disabling TUI on osf.
9305 Use test to check variables, prefix strings with x.
9306 * configure: Regenerate.
9307
9308 * solib-osf.c (osf_current_sos): Initialize tail.
9309
9310 2010-01-25 gingold <gingold@adacore.com>
9311
9312 * windows-nat.c (windows_continue): Use %x to print thread id.
9313 (get_windows_debug_event): Ditto.
9314
9315 2010-01-22 Tom Tromey <tromey@redhat.com>
9316
9317 PR symtab/11199:
9318 * dwarf2read.c (quirk_gcc_member_function_pointer): Change return
9319 type and arguments. Use smash_to_methodptr_type.
9320 (read_structure_type): Call quirk_gcc_member_function_pointer
9321 later.
9322 * gdbtypes.h (smash_to_methodptr_type): Declare.
9323 * gdbtypes.c (smash_to_methodptr_type): New function.
9324 (lookup_methodptr_type): Use it.
9325
9326 2010-01-21 Tom Tromey <tromey@redhat.com>
9327
9328 PR symtab/11198:
9329 * symtab.h (lookup_minimal_symbol_and_objfile): Declare.
9330 * minsyms.c (lookup_minimal_symbol_and_objfile): New function.
9331 * glibc-tdep.c (find_minsym_and_objfile): Remove.
9332 (glibc_skip_solib_resolver): Use
9333 lookup_minimal_symbol_and_objfile.
9334
9335 2010-01-21 Kai Tietz <kai.tietz@onevision.com>
9336
9337 * inflow.c (check_syscall): Guard by #if clause for GO32 and
9338 WIN32 targets.
9339
9340 2010-01-20 Tom Tromey <tromey@redhat.com>
9341
9342 PR backtrace/10770:
9343 * valarith.c (value_binop): Handle BINOP_GTR, BINOP_LEQ, and
9344 BINOP_GEQ. Handle BINOP_NOTEQUAL in the signed case.
9345 * dwarf2expr.c (new_dwarf_expr_context): Allocate
9346 dwarf_stack_values, not CORE_ADDRs.
9347 (execute_stack_op): Change DW_OP_div and comparison operators to
9348 use signed operands.
9349
9350 2010-01-20 Vladimir Prus <vladimir@codesourcery.com>
9351
9352 Per-inferior args and tty and environment.
9353
9354 * infcmd.c (inferior_args): Rename to ...
9355 (inferior_args_scratch): ... this.
9356 (inferior_io_terminal): Rename to ...
9357 (inferior_io_terminal_scratch): ... this.
9358 (inferior_argc, inferior_argv): Remove.
9359 (set_inferior_io_terminal, get_inferior_io_terminal): Store
9360 inside current_inferior().
9361 (set_inferior_tty_command, show_inferior_tty_command): New.
9362 (get_inferior_args, set_inferior_args): Store inside
9363 current_inferior().
9364 (notice_args_set): Likewise and rename to...
9365 (set_args_command): ... this.
9366 (set_inferior_args_vector): Likewise.
9367 (notice_args_read): Rename to...
9368 (show_args_command): ...new.
9369 (tty_command): Remove.
9370 (run_command_1): Don't free old args, as they are freed by
9371 set_inferior_arg now.
9372 (run_no_args_command): Likewise.
9373 (inferior_environ): Remove.
9374 (run_command_1): Use environment of the current inferior.
9375 (environment_info, set_environment_command)
9376 (unset_environment_command, path_info, path_command): Likewise.
9377 (_initialize_infcmd): Adjust for function and variable renames.
9378 Do not init inferior_environ.
9379 * inferior.h (set_inferior_arg): Adjust prototype.
9380 (struct inferior): New fields args, argc, argv, terminal, environment.
9381 (inferior_environ): Remove declaration.
9382 * inferior.c (free_inferior): Free new fields.
9383 (add_inferior_silent): Initialize 'environment' field.
9384 * main.c (captured_main): Set arguments only after the initial
9385 inferior has been created. Set set_inferior_io_terminal,
9386 not tty_command.
9387 * mi/mi-main.c (mi_cmd_env_path): Use environment of the current
9388 inferior.
9389 (_initialize_mi_cmd_env): Adjust for disappearance of global
9390 inferior_environ.
9391 * solib.c (solib_find): Use environment of the current inferior.
9392
9393 2010-01-20 Jan Kratochvil <jan.kratochvil@redhat.com>
9394
9395 * varobj.c (varobj_add_child, install_dynamic_child): Wrap into #if
9396 HAVE_PYTHON.
9397 (instantiate_pretty_printer): Move HAVE_PYTHON outside of the function.
9398
9399 2010-01-20 Joel Brobecker <brobecker@adacore.com>
9400
9401 Get rid of ada-lang.c:function_name_from_pc.
9402 * ada-lang.c: Add "stack.h" #include.
9403 (function_name_from_pc): Delete.
9404 (is_known_support_routine): Replace call to function_name_from_pc
9405 by call to find_frame_funname.
9406 (ada_unhandled_exception_name_addr_from_raise): Likewise.
9407
9408 2010-01-19 Tom Tromey <tromey@redhat.com>
9409
9410 PR c++/11026:
9411 * dwarf2read.c (read_partial_die): Allocate partial DIE's name on
9412 objfile obstack.
9413
9414 2010-01-19 Tom Tromey <tromey@redhat.com>
9415
9416 * top.c (stop_sig, float_handler, do_nothing): Remove.
9417
9418 2010-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9419
9420 * breakpoint.c (watchpoint_check): Check the call
9421 gdbarch_in_function_epilogue_p before calling frame_find_by_id.
9422 Extend the comment.
9423 * config/djgpp/fnchange.lst: Add translations for
9424 watchpoint-cond-gone.exp, watchpoint-cond-gone.c and
9425 watchpoint-cond-gone-stripped.c.
9426
9427 2010-01-19 Tom Tromey <tromey@redhat.com>
9428
9429 PR c++/8000:
9430 * dwarf2read.c (partial_die_parent_scope): Put enumeration type
9431 into parent scope, and enumerator into grandparent scope.
9432
9433 2010-01-19 Joel Brobecker <brobecker@adacore.com>
9434
9435 * NEWS: Add entry for "set/show ada trust-PAD-over-XVS" commands.
9436
9437 2010-01-19 Joel Brobecker <brobecker@adacore.com>
9438
9439 * configure.host: Make x86_64-*-solaris2.1[0-9]* an alias of
9440 i[34567]86-*-solaris2.1[0-9]*.
9441 * configure.tgt: Likewise.
9442
9443 2010-01-19 Joel Brobecker <brobecker@adacore.com>
9444
9445 * NEWS: Document the source command enhancement allowing it
9446 to load Python scripts. Document the "set/show script-extension"
9447 commands.
9448
9449 2010-01-19 Joel Brobecker <brobecker@adacore.com>
9450
9451 Add -Wunused-function to compile flags.
9452 * configure.ac: Add -Wunused-function to build_warnings.
9453 * configure: Regenerate.
9454
9455 2010-01-19 Joel Brobecker <brobecker@adacore.com>
9456
9457 "delete" ada-lex.c:input function, not used.
9458 * ada-lex.l: #define YY_NO_INPUT.
9459
9460 2010-01-19 Joel Brobecker <brobecker@adacore.com>
9461
9462 Delete free_named_symtabs and associated cleanup.
9463 * symfile.h (free_named_symtabs): Delete declaration.
9464 * symfile.c: Remove some commented out code (clear_symtab_users_once).
9465 (cashier_psymtab): Comment function out.
9466 Delete declaration.
9467 (free_named_symtabs): Delete.
9468 * coffread.c (coff_end_symtab): Remove call to free_named_symtabs.
9469 * dbxread.c (end_psymtab): Likewise.
9470 * dwarf2read.c (process_psymtab_comp_unit): Ditto.
9471 * exec.c (exec_close_1): Ditto.
9472 * xcoffread.c (xcoff_end_psymtab): Likewise.
9473
9474 2010-01-19 Joel Brobecker <brobecker@adacore.com>
9475
9476 * stack.c (print_block_frame_labels): Comment function out.
9477
9478 2010-01-19 Joel Brobecker <brobecker@adacore.com>
9479
9480 Delete unused or undefined functions.
9481 * breakpoint.c (ep_parse_optional_filename): Delete.
9482 * dcache.c (dcache_write_line): Remove declaration.
9483 * infrun.c (build_infrun): Remove declaration.
9484 * tracepoint.c (tracepoint_save_command): Remove declaration.
9485 * linux-nat.c (init_lwp_list): Delete. No longer used.
9486 * event-loop.c (check_async_signal_handlers): Delete declaration.
9487 * infrun.c (init_execution_control_state): Delete.
9488 (proceed): Update comment to avoid mentioning
9489 init_execution_control_state.
9490 * target.c (kill_or_be_killed, nosupport_runtime): Delete.
9491 * ada-lang.c (ada_to_static_fixed_value): Delete.
9492 * scm-lang.c (evaluate_subexp_scm): Delete declaration.
9493 * cp-namespace.c (cp_copy_usings): Delete.
9494 * xml-syscall.c (xml_number_of_syscalls): Delete.
9495 * progspace.c (find_program_space_by_num): Delete.
9496 * inflow.c (handle_sigio): Delete declaration.
9497 * hppa-tdep.c (hppa_alignof): Delete.
9498 * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset)
9499 (mipsnbsd_core_osabi_sniffer): Delete.
9500
9501 2010-01-18 Tom Tromey <tromey@redhat.com>
9502
9503 PR c++/9680:
9504 * c-exp.y (REINTERPRET_CAST, DYNAMIC_CAST, STATIC_CAST)
9505 (CONST_CAST): New tokens.
9506 (exp): Add new productions.
9507 (ident_tokens): Add const_cast, dynamic_cast, static_cast, and
9508 reinterpret_cast.
9509 (is_cast_operator): New function.
9510 (yylex): Handle cast operators specially.
9511 * eval.c (evaluate_subexp_standard) <UNOP_DYNAMIC_CAST,
9512 UNOP_REINTERPRET_CAST>: New cases.
9513 * expprint.c (print_subexp_standard): Likewise.
9514 (op_name_standard): Likewise.
9515 (dump_subexp_body_standard): Likewise.
9516 * parse.c (operator_length_standard): Likewise.
9517 * expression.h (enum exp_opcode): New constants UNOP_DYNAMIC_CAST,
9518 UNOP_REINTERPRET_CAST.
9519 * gdbtypes.c (class_types_same_p): New function.
9520 (is_ancestor): Use it.
9521 (is_public_ancestor): New function.
9522 (is_unique_ancestor_worker): Likewise.
9523 (is_unique_ancestor): Likewise.
9524 * gdbtypes.h (class_types_same_p, is_public_ancestor)
9525 (is_unique_ancestor): Declare.
9526 * valops.c (value_reinterpret_cast): New function.
9527 (dynamic_cast_check_1): Likewise.
9528 (dynamic_cast_check_2): Likewise.
9529 (value_dynamic_cast): Likewise.
9530 * value.h (value_reinterpret_cast, value_dynamic_cast): Declare.
9531
9532 2010-01-18 Joel Brobecker <brobecker@adacore.com>
9533
9534 Fix build failure when building without Python support.
9535 * python/python.c: Always include exceptions.h, even when HAVE_PYTHON
9536 is not defined.
9537
9538 2010-01-18 Joel Brobecker <brobecker@adacore.com>
9539
9540 Use XVS field type instead of doing a parallel lookup.
9541 * ada-lang.c (ada_get_base_type): Follow the XVS field type
9542 if it is a reference type instead of doing a type lookup using
9543 the XVS field name.
9544
9545 2010-01-18 Joel Brobecker <brobecker@adacore.com>
9546
9547 Trust PAD types instead of using PAD___XVS.
9548 * ada-lang.c (trust_pad_over_xvs): New static variable.
9549 (ada_is_aligner_type): If !trust_pad_over_xvs and there is a
9550 parallel XVS type, follow the XVS type instead of the PAD type.
9551 (unwrap_value): Make sure that there is no parallel XVE type
9552 before returning the value as is.
9553 (set_ada_list, show_ada_list): New static variables.
9554 (set_ada_command, show_ada_command): New functions.
9555 (_initialize_ada_language): Add new "set/show ada" prefix commands.
9556 Add new "set/show ada trust-PAD-over-XVS" setting.
9557
9558 2010-01-18 Tom Tromey <tromey@redhat.com>
9559 Thiago Jung Bauermann <bauerman@br.ibm.com>
9560
9561 Allow "source" to load python scripts.
9562 * exceptions.h (enum errors): Add UNSUPPORTED_ERROR.
9563 * python/python.c (source_python_script): New function.
9564 * python/python.h (source_python_script): Add declaration.
9565 * cli/cli-cmds.c: #include exceptions.h and python/python.h.
9566 (script_ext_off, script_ext_soft, script_ext_strict)
9567 (script_ext_enums, script_ext_mode): New static constants.
9568 (show_script_ext_mode, find_and_open_script): New functions.
9569 (source_script): Enhance to handle Python scripts.
9570 (init_cli_cmds): Add set/show script-extension commands.
9571
9572 2010-01-16 Stan Shebs <stan@codesourcery.com>
9573
9574 * tracepoint.h (struct trace_status): Use unsigned long long
9575 instead of size_t.
9576 * tracepoint.c (trace_status_command): Fix printf directive.
9577 (trace_save_command): Check fwrite returns, fix printf directive.
9578 (trace_filename): New global.
9579 (tfile_open): Set it, check read returns.
9580 (tfile_close): Free trace_filename.
9581 (tfile_get_traceframe_address): Check read returns.
9582 (tfile_trace_find): Ditto.
9583 (tfile_fetch_registers): Ditto.
9584 (tfile_xfer_partial): Ditto.
9585 (tfile_get_trace_state_variable_value): Ditto.
9586
9587 2010-01-15 Stan Shebs <stan@codesourcery.com>
9588
9589 Add trace file support.
9590 * tracepoint.h (enum trace_stop_reason): New enum.
9591 (struct trace_status): New struct.
9592 (parse_trace_status): Declare.
9593 (struct uploaded_tp): Move here from remote.c,
9594 add fields for actions.
9595 (struct uploaded_tsv): New struct.
9596 * tracepoint.c (tfile_ops): New target vector.
9597 (trace_fd): New global.
9598 (tfile_open): New function.
9599 (tfile_close): New function.
9600 (tfile_files_info): New function.
9601 (tfile_get_trace_status): New function.
9602 (tfile_get_traceframe_address): New function.
9603 (tfile_trace_find): New function.
9604 (tfile_fetch_registers): New function.
9605 (tfile_xfer_partial): New function.
9606 (tfile_get_trace_state_variable_value): New function.
9607 (init_tfile_ops): New function.
9608 (_initialize_tracepoint): Call it, add tfile target.
9609 (trace_status): New global.
9610 (current_trace_status): New function.
9611 (trace_running_p): Remove, change all users to get from
9612 current_trace_status()->running.
9613 (get_trace_status): Remove.
9614 (trace_status_command): Call target_get_trace_status directly,
9615 report more detail including tracing stop reasons.
9616 (trace_find_command): Always allow tfind on a file.
9617 (trace_find_pc_command): Ditto.
9618 (trace_find_tracepoint_command): Ditto.
9619 (trace_find_line_command): Ditto.
9620 (trace_find_range_command): Ditto.
9621 (trace_find_outside_command): Ditto.
9622 (trace_frames_offset, cur_offset): Declare as off_t.
9623 (trace_regblock_size): Rename from reg_size, update users.
9624 (parse_trace_status): New function.
9625 (tfile_interp_line): New function.
9626 (disconnect_or_stop_tracing): Ensure current trace
9627 status before asking what to do.
9628 (stop_reason_names): New global.
9629 (trace_save_command): New command.
9630 (get_uploaded_tp): Move here from remote.c.
9631 (find_matching_tracepoint): Ditto.
9632 (merge_uploaded_tracepoints): New function.
9633 (parse_trace_status): Use stop_reason_names.
9634 (_initialize_tracepoint): Define tsave command.
9635 * target.h (target_ops): New fields to_save_trace_data,
9636 to_upload_tracepoints, to_upload_trace_state_variables,
9637 to_get_raw_trace_data, change to_get_trace_status
9638 to take a pointer to a status struct.
9639 (target_save_trace_data): New macro.
9640 (target_upload_tracepoints): New macro.
9641 (target_upload_trace_state_variables): New macro.
9642 (target_get_raw_trace_data): New macro.
9643 * target.c (update_current_target): Add new methods, change
9644 signature of to_get_trace_status.
9645 * remote.c (hex2bin): Make globally visible.
9646 (bin2hex): Ditto.
9647 (remote_download_trace_state_variable): Download name also.
9648 (remote_get_trace_status): Update parameter, use
9649 parse_trace_status.
9650 (remote_save_trace_data): New function.
9651 (remote_upload_tracepoints): New function.
9652 (remote_upload_trace_state_variables): New function.
9653 (remote_get_raw_trace_data): New function.
9654 (remote_start_remote): Use them.
9655 (_initialize_remote_ops): Add operations.
9656 * ax-gdb.c: Include breakpoint.h.
9657 * breakpoint.c (create_tracepoint_from_upload): Use
9658 break_command_really, return tracepoint, warn about unimplemented
9659 parts.
9660 * NEWS: Mention trace file addition.
9661
9662 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9663
9664 Fix compilation warning on gcc-3.4.
9665 * exec.c (print_section_info): Move the `displacement' variable
9666 initialization to its declaration.
9667
9668 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9669
9670 * gdb-gdb.py (StructMainTypePrettyPrinter): Fix TYPE_CODE_RANGE
9671 comparison.
9672
9673 2010-01-15 Eric Botcazou <botcazou@adacore.com>
9674
9675 "info tasks" broken by typedefs in ATCB type definitions.
9676 * ada-lang.c (ada_template_to_fixed_record_type_1): Add call to
9677 ada_check_typedef before retrieving the length of the type for
9678 regular fields.
9679
9680 2010-01-15 Joel Brobecker <brobecker@adacore.com>
9681
9682 Do not use name-based lookup for unconstrained packed arrays.
9683 * ada-lang.c (find_parallel_type_by_descriptive_type):
9684 Limit the fallback to name-based lookups to the case where
9685 the type is a constrained packed array.
9686
9687 2010-01-15 Joel Brobecker <brobecker@adacore.com>
9688
9689 Enhance gdb-gdb.py to handle main_type.type_specific.
9690 * gdb-gdb.py: Print the type-specific part of struct main_type.
9691
9692 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9693
9694 * configure.ac (AC_CHECK_FUNCS): Check for setrlimit and getrlimit.
9695 * configure: Regenerate.
9696 * config.in: Regenerate.
9697 * utils.c: Include sys/resource.h.
9698 (dump_core, can_dump_core): New.
9699 (internal_vproblem): Update the comment. Check can_dump_core while
9700 setting dump_core_p. Replace two abort calls by dump_core calls.
9701
9702 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9703 Eli Zaretskii <eliz@gnu.org>
9704
9705 * NEWS: Document the PIE support.
9706
9707 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9708
9709 * linux-tdep.c: Remove includes gdbcore.h, observer.h and elf-bfd.h.
9710 (check_is_pie_binary, _initialize_linux_tdep): Remove.
9711
9712 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9713
9714 * solib-svr4.c (svr4_exec_displacement): New comment for entry_point.
9715 Replace exec_entry_point call by bfd_get_start_address.
9716
9717 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9718
9719 Support Valgrind attachments broken by the PIE support.
9720 * auxv.c: Include gdbcore.h.
9721 (procfs_xfer_auxv): Make static. Reduce its comment. Drop its
9722 parameters ops, object and annex. Remove their assertions.
9723 (ld_so_xfer_auxv, memory_xfer_auxv): New function.
9724 * auxv.h (procfs_xfer_auxv): Remove comment. Rename to ...
9725 (memory_xfer_auxv): ... here.
9726 * linux-nat.c (linux_xfer_partial): Rename procfs_xfer_auxv to
9727 memory_xfer_auxv.
9728 * procfs.c (procfs_xfer_partial): Likewise.
9729 * solib-svr4.c (svr4_relocate_main_executable): New prototype.
9730 (svr4_special_symbol_handling): Call svr4_relocate_main_executable.
9731 (svr4_solib_create_inferior_hook): Conditionalize the
9732 svr4_relocate_main_executable call.
9733
9734 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9735
9736 * solib-svr4.c (scan_dyntag): Remove variable dyn_addr. New variable
9737 target_section. Find SECT in current_target_sections, gdb_assert it.
9738 (elf_lookup_lib_symbol): Pass the binary file if given symfile_objfile.
9739 New variable abfd.
9740 * symtab.c (lookup_objfile_from_block): Return the binary file instead
9741 of separate debug info file.
9742
9743 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9744
9745 Support PIEs with no symfile_objfile.
9746 * exec.c (print_section_info <abfd == exec_bfd>): Relocate Entry point.
9747 * solib-svr4.c (svr4_relocate_main_executable <exec_bfd>): New block.
9748
9749 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
9750
9751 * solib-svr4.c (svr4_relocate_main_executable): Move the static exec
9752 code part to ...
9753 (svr4_static_exec_displacement): ... a new function.
9754 (svr4_exec_displacement): New function.
9755 (svr4_relocate_main_executable): Call svr4_exec_displacement. Allocate
9756 new_offsets using alloca now. Remove variable old_chain and changed.
9757 Call objfile_relocate unconditionally now.
9758
9759 2010-01-14 Doug Evans <dje@google.com>
9760
9761 * gdbtypes.c (arch_flags_type): Fix comment.
9762 * gdbtypes.h (arch_composite_type): Fix comment.
9763
9764 2009-01-14 Tristan Gingold <gingold@adacore.com>
9765
9766 * machoread.c (macho_add_oso_symfile): Add symfile_flags parameter.
9767 Call xstrdup for abfd->filename. Pass symfile_flags and objfile flags
9768 to symbol_file_add_from_bfd. Add OSO as separate objfile.
9769 (macho_oso_symfile): Add symfile_flags parameter. Pass it to
9770 macho_add_oso_symfile.
9771 (macho_symfile_read): Pass symfile_flags to macho_oso_symfile.
9772
9773 2010-01-14 Joel Brobecker <brobecker@adacore.com>
9774
9775 Tru64: Dead threads are never deleted.
9776 * dec-thread.c (dec_thread_ptid_is_alive): New function.
9777 (dec_thread_count_gdb_threads): Fix counter increment.
9778 (dec_thread_add_gdb_thread): Fix *listp increment.
9779 (resync_thread_list): Fix bug in deletion of dead threads that
9780 caused all threads to be deleted, instead of just the dead ones.
9781
9782 2010-01-13 Phil Muldoon <pmuldoon@redhat.com>
9783
9784 PR python/10705
9785
9786 * python/python-internal.h: Add lazy_string_object_type
9787 definition.
9788 (create_lazy_string_object, gdbpy_initialize_lazy_string)
9789 (gdbpy_is_lazystring, gdbpy_extract_lazy_string): Define.
9790 * python/py-value.c (valpy_lazy_string): New function.
9791 (convert_value_from_python): Add lazy string conversion.
9792 * python/py-prettyprint.c (pretty_print_one_value): Check if
9793 return is also a lazy string.
9794 (print_string_repr): Add lazy string printing branch.
9795 (print_children): Likewise.
9796 * python/py-lazy-string.c: New file. Implement lazy strings.
9797 * python/python.c (_initialize_python): Call
9798 gdbpy_initialize_lazy_string.
9799 * varobj.c (value_get_print_value): Add lazy string printing
9800 branch. Account for encoding.
9801 * c-lang.c (c_printstr): Account for new encoding argument. If
9802 encoding is NULL, find encoding suited for type, otherwise use
9803 user encoding.
9804 * language.h (language_defn): Add encoding argument.
9805 (LA_PRINT_STRING): Likewise.
9806 * language.c (unk_lang_printstr): Update to reflect new encoding
9807 argument to language_defn.
9808 * ada-lang.h (ada_printstr): Likewise.
9809 * c-lang.h (c_printstr): Likewise.
9810 * p-lang.h (pascal_printstr);
9811 * f-lang.c (f_printstr): Likewise.
9812 * m2-lang.c (m2_printstr): Likewise.
9813 * objc-lang.c (objc_printstr): Likewise.
9814 * p-lang.c (pascal_printstr): Likewise.
9815 * scm-lang.c (scm_printstr): Likewise.
9816 * c-valprint.c (c_val_print): Update LA_PRINT_STRING call for
9817 encoding argument.
9818 * ada-valprint.c (ada_printstr): Likewise.
9819 * f-valprint.c (f_val_print): Likewise
9820 * m2-valprint.c (m2_val_print): Likewise.
9821 * p-valprint.c (pascal_val_print): Likewise.
9822 * expprint.c (print_subexp_standard): Likewise.
9823 * valprint.c (val_print_string): Likewise.
9824 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-lazy-string.
9825 (SUBDIR_PYTHON_SRCS): Likewise.
9826 (py-lazy-string.o): New rule.
9827
9828 2010-01-13 Doug Evans <dje@google.com>
9829
9830 * mi/mi-main.c (list_available_thread_groups): Avoid "may be used
9831 uninitialized" warning from gcc on local `tree'.
9832
9833 2010-01-13 Vladimir Prus <vladimir@codesourcery.com>
9834
9835 Implement core awareness.
9836
9837 * bcache.c (compare_ints): Remove
9838 (print_percentage): Use compare_positive_ints.
9839 * defs.h (compare_positive_ints): Declare.
9840 * linux-nat.h (struct lin_lwp): New field core.
9841 (linux_nat_core_of_thread_1): Declare.
9842 * linux-nat.c (add_lwp): Init the 'core' field.
9843 (linux_nat_wait_1): Record the core.
9844 (linux_nat_core_of_thread_1, linux_nat_core_of_thread): New.
9845 (linux_nat_add_target): Register the above.
9846 * linux-thread-db.c (update_thread_core): New.
9847 (thread_db_find_new_threads): Update core information for
9848 every thread.
9849 * remote.c (struct private_thread_info): New.
9850 (free_private_thread_info, demand_private_info): New.
9851 (PACKET_qXfer_threads, use_osdata_threads): New.
9852 (struct thread_item, threads_parsing_context
9853 (start_thread, end_thread, thread_attributes)
9854 (thread_children, threads_children, threads_elements): New.
9855 (remote_threads_info): Try qXfer:threads before anything
9856 else.
9857 (remote_protocol_packets): Register qXfer:threads.
9858 (remote_open_1): Init use_osdata_threads.
9859 (struct stop_reply): New field 'core'.
9860 (remote_parse_stop_reply): Parse core number.
9861 (process_stop_reply): Record core number.
9862 (remote_xfer_partial): Handle qXfer:threads.
9863 (remote_core_of_thread): New.
9864 (init_remote_ops): Register remote_core_of_thread.
9865 (_initialize_remote): Register qXfer:read.
9866 * target.c (target_core_of_thread): New
9867 * target.h (enum target_object): New value TARGET_OBJECT_THREADS.
9868 (struct target_ops): New field to_core_of_threads.
9869 (target_core_of_thread): Declare.
9870 * gdbthread.h (struct thread_info): New field private_dtor.
9871 * thread.c (print_thread_info): Report the core.
9872 * ui-out.c (MAX_UI_OUT_LEVELS): Increase.
9873 * utils.c (compare_positive_ints): New.
9874 * features/threads.dtd: New.
9875 * mi/mi-interp.c (mi_on_normal_stop): Report the core.
9876 * mi/mi-main.c (struct collect_cores_data, collect_cores)
9877 (do_nothing, free_vector_of_osdata_items)
9878 (splay_tree_int_comparator, free_splay_tree): New.
9879 (print_one_inferior_data): Implemented printing of selected
9880 inferiors. Collect and print cores.
9881 (output_cores): New.
9882 (mi_cmd_list_thread_groups): Support --recurse. Permit specifying
9883 thread groups together with --available.
9884
9885 2010-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
9886
9887 * configure: Regenerate (for _STRUCTURED_PROC).
9888
9889 2010-01-12 Joel Brobecker <brobecker@adacore.com>
9890
9891 Delete dead function.
9892 * ada-lang.c (extract_string): Delete. No longer used.
9893
9894 2010-01-12 Joel Brobecker <brobecker@adacore.com>
9895
9896 Fix -Wunused warning in dec-thread.c.
9897 * dec-thread.c (dec_thread_count_gdb_threads)
9898 (dec_thread_add_gdb_thread): Prevent -Wunused warning.
9899
9900 2010-01-12 Joel Brobecker <brobecker@adacore.com>
9901
9902 * ada-valprint.c (ada_print_floating): Remove trailing space.
9903
9904 2010-01-12 Joel Brobecker <brobecker@adacore.com>
9905
9906 Add support for DW_AT_GNAT_descriptive_type.
9907 * gdbtypes.h (enum type_specific_kind): New enum.
9908 (struct main_type) [type_specific_field]: New component.
9909 [type_specific]: Add new component "gnat_stuff".
9910 (struct gnat_aux_type): New type.
9911 (INIT_CPLUS_SPECIFIC): Also set TYPE_SPECIFIC_FIELD (type).
9912 (HAVE_CPLUS_STRUCT): Also check TYPE_SPECIFIC_FIELD (type).
9913 (gnat_aux_default, allocate_gnat_aux_type): Add declaration.
9914 (INIT_GNAT_SPECIFIC, ALLOCATE_GNAT_AUX_TYPE, HAVE_GNAT_AUX_INFO)
9915 (TYPE_SPECIFIC_FIELD): New macros.
9916 (TYPE_CPLUS_SPECIFIC): Return cplus_struct_default if the given
9917 type does not hold any cplus-specific data.
9918 (TYPE_RAW_CPLUS_SPECIFIC): New macro.
9919 (TYPE_GNAT_SPECIFIC, TYPE_DESCRIPTIVE_TYPE): New macros.
9920 (TYPE_IS_OPAQUE): Use HAVE_CPLUS_STRUCT to check if type has
9921 cplus-specific data.
9922 * gdbtypes.c (allocate_cplus_struct_type): Minor stylistic rewrite.
9923 Set new component TYPE_SPECIFIC_FIELD (type).
9924 (gnat_aux_default): New constant.
9925 (allocate_gnat_aux_type): New function.
9926 (init_type): Add initialization the type-specific stuff for
9927 TYPE_CODE_FLT and TYPE_CODE_FUNC types.
9928 (print_gnat_stuff): New function.
9929 (recursive_dump_type): Use HAVE_CPLUS_STRUCT to check for cplus-
9930 specific data. Adjust code that prints the contents of the
9931 type-specific union using the TYPE_SPECIFIC_FIELD value.
9932 * dwarf2read.c (dwarf2_attach_fields_to_type): Do not allocate
9933 the type cplus stuff for Ada types.
9934 (dwarf2_add_member_fn, dwarf2_attach_fn_fields_to_type):
9935 Error out if these routines are called with an Ada type.
9936 (read_structure_type, read_array_type, read_subrange_type):
9937 Add call to set_descriptive_type.
9938 (set_die_type): Initialize the gnat-specific data if necessary.
9939 (need_gnat_info, die_descriptive_type, set_descriptive_type):
9940 New functions.
9941 * ada-lang.c (decode_constrained_packed_array_type): Use
9942 decode_constrained_packed_array_type instead of doing a standard
9943 lookup to locate a parallel type.
9944 (find_parallel_type_by_descriptive_type): New function.
9945 (ada_find_parallel_type_with_name): New function.
9946 (ada_find_parallel_type): Reimplement using
9947 ada_find_parallel_type_with_name.
9948 * ada-valprint.c (print_field_values): Use HAVE_CPLUS_STRUCT
9949 to check if type has a cplus stuff.
9950 * linespec.c (total_number_of_methods): Likewise.
9951 * mdebugread.c (new_type): Likewise.
9952
9953 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9954
9955 * NEWS: Document the 0b binary number prefix parsing.
9956
9957 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9958
9959 * objfiles.c (objfile_relocate1): Change the return type to int.
9960 Describe the new return value. Return non-zero if data changed.
9961 (objfile_relocate): New variable changed. Set it. Call
9962 breakpoint_re_set depending on CHANGED.
9963
9964 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9965
9966 Implement binary numbers parsing.
9967 * c-exp.y (parse_number): New case 'b' and 'B'.
9968
9969 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9970 Tristan Gingold <gingold@adacore.com>
9971
9972 * solib.c (info_sharedlibrary_command): Replace
9973 objfile_has_partial_symbols and objfile_has_full_symbols calls by
9974 objfile_has_symbols.
9975
9976 2010-01-10 Joel Brobecker <brobecker@adacore.com>
9977
9978 * NEWS: Document the improvements made to the mips-irix port.
9979
9980 2010-01-09 Joel Brobecker <brobecker@adacore.com>
9981
9982 Fix the documentation of valprint.c:value_print.
9983 * valprint.c (value_print): Update the function description to
9984 mention that the syntax of the output follows the current_language,
9985 not necessarily C.
9986
9987 2010-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
9988
9989 Fix displacement of separate debug info files.
9990 * objfiles.c (objfile_relocate): Rename to ...
9991 (objfile_relocate1): ... here and make it static. Extend the comment.
9992 (objfile_relocate): New function.
9993 * solib-spu.c (spu_relocate_main_executable): Explicitly check if
9994 SYMFILE_OBJFILE is NULL. Remove variables objfile and old_chain.
9995 Remove following of SEPARATE_DEBUG_OBJFILE. new_offsets is now
9996 allocated using alloca.
9997 * symfile.c (copy_section_addr_info): Remove.
9998 (build_section_addr_info_from_objfile): Make it global. New variables
9999 addr_bit and mask, use them.
10000 * symfile.h (build_section_addr_info_from_objfile): New prototype.
10001 (copy_section_addr_info): Remove.
10002
10003 2010-01-09 Joel Brobecker <brobecker@adacore.com>
10004
10005 Signal unwinder for mips-irix N32.
10006 * mips-irix-tdep.c: #include mips-tdep.h, trad-frame.h, and
10007 tramp-frame.h.
10008 (SIGTRAMP_FRAME_SIZE, SIGCONTEXT_PC_OFF, SIGCONTEXT_REGS_OFF)
10009 (SIGCONTEXT_FPREGS_OFF, SIGCONTEXT_FPCSR_OFF, SIGCONTEXT_HI_OFF)
10010 (SIGCONTEXT_LO_OFF): New macros.
10011 (mips_irix_n32_tramp_frame_init): New function.
10012 (mips_irix_n32_tramp_frame): New static constant.
10013 (mips_irix_init_abi): Prepend the mips_irix_n32_tramp_frame unwinder.
10014
10015 2010-01-09 Joel Brobecker <brobecker@adacore.com>
10016
10017 Breakpoint in shared library does not work on mips-irix.
10018 * procfs.c: #include "observer.h".
10019 (procfs_inferior_created): New function, moving here the code
10020 which unsets the syssgi syscall-exit notifications.
10021 (procfs_create_inferior): Remove the code which unsets the syssgi
10022 syscall-exit notifications. It is too early to do this here.
10023 (_initialize_procfs): Attach the procfs_inferior_created observer.
10024
10025 2010-01-09 Joel Brobecker <brobecker@adacore.com>
10026
10027 Wrong return convention for arrays (mips-irix).
10028 * mips-tdep.c (mips_n32n64_return_value): Arrays whose size is
10029 128 bits or smaller are returned the same way as structs
10030 and unions of the the same size.
10031
10032 2010-01-09 Joel Brobecker <brobecker@adacore.com>
10033
10034 Cannot set the PC on mips-irix.
10035 * irix5-nat.c (fill_gregset): Check regno against the raw PC
10036 register number, no the cooked one.
10037
10038 2010-01-09 Joel Brobecker <brobecker@adacore.com>
10039
10040 Error while loading core file on mips-irix.
10041 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing
10042 if debugging from a core file.
10043
10044 2010-01-09 Joel Brobecker <brobecker@adacore.com>
10045
10046 GDB hangs when attaching to process on mips-irix.
10047 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing if
10048 attaching to a process.
10049
10050 2010-01-09 Joel Brobecker <brobecker@adacore.com>
10051
10052 Use the correct breakpoint instruction on mips-irix.
10053 * mips-tdep.c (mips_breakpoint_from_pc): Add new static variable
10054 containing the correct breakpoint instruction to use on mips-irix.
10055 Use it when the osabi is GDB_OSABI_IRIX.
10056
10057 2010-01-09 Joel Brobecker <brobecker@adacore.com>
10058
10059 -Wunused warning in procfs.c (mips-irix only).
10060 * procfs.c (gdb_praddset, gdb_prdelset): New macros. Use them
10061 throughout instead of using praddset and prdelset respectively.
10062
10063 2010-01-09 Joel Brobecker <brobecker@adacore.com>
10064
10065 GDB crash while stepping into function.
10066 * infrun.c (handle_inferior_event): Refetch the current frame
10067 after handling what.main_action, in case that pointer became
10068 dangling.
10069
10070 2010-01-09 Joel Brobecker <brobecker@adacore.com>
10071
10072 Fix build failure of solaris-hosted cross debuggers.
10073 * ada-valprint.c, parse.c: Include defs.h before including ctype.h.
10074
10075 2010-01-09 Daniel Gutson <dgutson@codesourcery.com>
10076
10077 Fix build failure on sparc-solaris.
10078 * procfs.c: (procfs_do_thread_registers) Use elfcore_write_lwpstatus.
10079
10080 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
10081
10082 Move some symfile code into subroutines.
10083 * symfile.h (relative_addr_info_to_section_offsets)
10084 (addr_info_make_relative): New prototypes.
10085 * symfile.c (default_symfile_offsets): Move a part to ...
10086 (relative_addr_info_to_section_offsets): ... this new function.
10087 (default_symfile_offsets): Call it.
10088 (syms_from_objfile <!mainline && addrs && addrs->other[0].name>): Move
10089 this part to ...
10090 (addr_info_make_relative): ... this new function.
10091
10092 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
10093
10094 Add from_tty to solib_create_inferior_hook.
10095 * infcmd.c (post_create_inferior): Move solib_add after
10096 solib_create_inferior_hook. Pass from_tty to
10097 solib_create_inferior_hook. Call solib_add and SOLIB_ADD with
10098 0 from_tty and comment why.
10099 * infrun.c (follow_exec): Pass from_tty solib_create_inferior_hook as 0.
10100 * linux-nat.c (linux_child_follow_fork): Likewise.
10101 * nto-procfs.c (procfs_post_attach, procfs_create_inferior): Likewise.
10102 * solib-darwin.c (darwin_solib_create_inferior_hook): New parameter
10103 from_tty.
10104 * solib-frv.c (frv_solib_create_inferior_hook): Likewise.
10105 * solib-irix.c (irix_solib_create_inferior_hook): Likewise.
10106 * solib-null.c (null_solib_create_inferior_hook): Likewise.
10107 * solib-osf.c (osf_solib_create_inferior_hook): Likewise.
10108 * solib-pa64.c (pa64_solib_create_inferior_hook): Likewise.
10109 * solib-som.c (som_solib_create_inferior_hook): Likewise.
10110 * solib-spu.c (spu_solib_create_inferior_hook): New parameter from_tty.
10111 Pass it to svr4_so_ops.solib_create_inferior_hook.
10112 * solib-sunos.c (sunos_solib_create_inferior_hook): New parameter
10113 from_tty.
10114 * solib-svr4.c (enable_break): New parameter from_tty. Pass it to
10115 solib_add.
10116 (svr4_solib_create_inferior_hook): New parameter from_tty. Pass it to
10117 enable_break.
10118 * solib-target.c (solib_target_solib_create_inferior_hook): New
10119 parameter from_tty.
10120 * solib.c (solib_create_inferior_hook): New parameter from_tty. Pass
10121 it to ops->solib_create_inferior_hook.
10122 (reload_shared_libraries): Pass from_tty to solib_create_inferior_hook.
10123 Move solib_add after solib_create_inferior_hook, call it now with
10124 from_tty as 0. New comment there.
10125 * solib.h (solib_create_inferior_hook): New parameter from_tty.
10126 * solist.h (struct target_so_ops <solib_create_inferior_hook>):
10127 Likewise.
10128
10129 2010-01-08 Vladimir Prus <vladimir@codesourcery.com>
10130
10131 Fix multiexec race.
10132 * infrun.c (handle_inferior_event): Use get_thread_regcache
10133 with events ptid, not get_current_regcache.
10134
10135 2009-01-08 Joel Brobecker <brobecker@adacore.com>
10136
10137 GDB crash with empty executable name (MinGW).
10138 * source.c (openp): Add assert that parameter string is not NULL.
10139 if parameter string is an empty string, then return with a failure
10140 immediately.
10141
10142 2009-01-08 Joel Brobecker <brobecker@adacore.com>
10143
10144 Get rid of support for VAX Floats.
10145 * ada-lang.h (ada_is_vax_floating_type, ada_vax_float_type_suffix)
10146 (ada_vax_float_print_function): Delete.
10147 * ada-lang.c (ada_is_vax_floating_type, ada_vax_float_type_suffix)
10148 (ada_vax_float_print_function): Delete.
10149 * ada-typeprint.c (print_vax_floating_point_type): Delete.
10150 (ada_print_type): Remove support for VAX floats.
10151 * ada-valprint.c (ada_val_print_1): Remove support for VAX floats.
10152
10153 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
10154
10155 * stabsread.c (read_args): Handle zero arguments.
10156
10157 2009-01-08 Joel Brobecker <brobecker@adacore.com>
10158
10159 Cannot find in-tree libiconv.a after reconfigure.
10160 * acinclude.m4 (AM_ICONV): If we find an in-tree libiconv.a
10161 that we can use, then cache the path to this archive.
10162 * configure: Regenerate.
10163
10164 2010-01-07 Stan Shebs <stan@codesourcery.com>
10165
10166 Make tracepoint operations go through target vector.
10167 * target.h (enum trace_find_type): New enum.
10168 (struct target_ops): New fields to_trace_init,
10169 to_download_tracepoint, to_download_trace_state_variable,
10170 to_trace_set_readonly_regions, to_trace_start, to_get_trace_status,
10171 to_trace_stop, to_trace_find, to_get_trace_state_variable_value,
10172 to_set_disconnected_tracing.
10173 (target_trace_init): New macro.
10174 (target_download_tracepoint): New macro.
10175 (target_download_trace_state_variable): New macro.
10176 (target_trace_start): New macro.
10177 (target_trace_set_readonly_regions): New macro.
10178 (target_get_trace_status): New macro.
10179 (target_trace_stop): New macro.
10180 (target_trace_find): New macro.
10181 (target_get_trace_state_variable_value): New macro.
10182 (target_set_disconnected_tracing): New macro.
10183 * target.c (update_current_target): Inherit and set defaults for
10184 tracepoint operations.
10185 * tracepoint.c (default_collect): Make globally visible.
10186 (target_is_remote): Remove, along with all calls.
10187 (tvariables_info): Call target_get_trace_state_variable_value.
10188 (remote_set_transparent_ranges): Remove.
10189 (trace_start_command): Call target_trace_init,
10190 target_download_tracepoint, etc.
10191 (download_tracepoint): Remove.
10192 (trace_stop_command): Simplify.
10193 (stop_tracing): Call target_trace_stop.
10194 (get_trace_status): Call target_get_trace_status.
10195 (trace_status_command): Add case for targets that cannot trace.
10196 (finish_tfind_command): Change to take numerical arguments, call
10197 target_trace_find.
10198 (trace_find_command): Update call to finish_tfind_command.
10199 (trace_find_pc_command): Ditto.
10200 (trace_find_tracepoint_command): Ditto.
10201 (trace_find_line_command): Ditto.
10202 (trace_find_range_command): Ditto.
10203 (trace_find_outside_command): Ditto.
10204 (set_disconnected_tracing_value): Call
10205 target_set_disconnected_tracing.
10206 * remote.c: Add protocol encoding bits from tracepoint.c.
10207 (trace_error): Move from tracepoint.c.
10208 (remote_get_noisy_reply): Ditto.
10209 (free_actions_list_cleanup_wrapper): Ditto.
10210 (free_actions_list): Ditto.
10211 (remote_trace_init): New function.
10212 (remote_download_tracepoint): New function.
10213 (remote_download_trace_state_variable): New function.
10214 (remote_trace_set_readonly_regions): New function.
10215 (remote_trace_start): New function.
10216 (remote_get_trace_status): New function.
10217 (remote_trace_stop): New function.
10218 (remote_trace_find): New function.
10219 (remote_download_trace_state_variable): New function.
10220 (remote_set_disconnected_tracing): New function.
10221 (init_remote_ops): Add tracepoint operations.
10222
10223 * tracepoint.c (trace_dump_command): Don't decr_pc_after_break.
10224
10225 2010-01-07 Tristan Gingold <gingold@adacore.com>
10226
10227 * symfile.c (build_section_addr_info_from_objfile): New function.
10228 (symbol_file_add_separate): Don't use offsets from objfile but
10229 built an addr info.
10230
10231 2010-01-06 Stan Shebs <stan@codesourcery.com>
10232
10233 Support disconnected tracing.
10234 * infcmd.c (detach_command): Ask whether to stop tracing.
10235 * cli/cli-cmds.c (quit_command): Ditto.
10236 * breakpoint.h (struct breakpoint): New field number_on_target.
10237 * breakpoint.c (create_tracepoint_from_upload): New function.
10238 (get_tracepoint_by_number_on_target): New function.
10239 * remote.c (struct remote): New field disconnected_tracing.
10240 (remote_disconnected_tracing_feature): New function.
10241 (remote_protocol_features): Add DisconnectedTracing.
10242 (struct uploaded_tp): New struct.
10243 (uploaded_tps): New global.
10244 (get_uploaded_tp): New function.
10245 (find_matching_tracepoint): New function.
10246 (remote_get_tracing_state): New function.
10247 (remote_start_remote): Call it.
10248 * tracepoint.c (disconnected_tracing): New global.
10249 (trace_start_command): Initialize number_on_target.
10250 (stop_tracing): New function, split out from...
10251 (trace_stop_command): Call stop_tracing.
10252 (get_trace_status): New function, split out from...
10253 (trace_status_command): Call get_trace_status, add info on
10254 disconnection behavior.
10255 (disconnect_or_stop_tracing): New function.
10256 (finish_tfind_command): Translate from number on target.
10257 (trace_find_tracepoint_command): Translate to number on target.
10258 (send_disconnected_tracing_value): New function.
10259 (set_disconnected_tracing): New function.
10260 (_initialize_tracepoint): Add disconnected-tracing variable.
10261 * NEWS: Mention disconnected tracing.
10262
10263 2010-01-06 Tristan Gingold <gingold@adacore.com>
10264
10265 * symtab.c (lookup_global_symbol_from_objfile): Rename objfile
10266 parameter to main_objfile. Iterate on all separate debug objfiles.
10267 * symfile.h (symbol_file_add_separate)
10268 (find_separate_debug_file_by_debuglink): Remove parameter names.
10269 * symfile.c (symbol_file_add_separate): Use add_separate_objfile.
10270 (reread_symbols): Use free_objfile_separate_debug.
10271 * objfiles.h (struct objfile): Add separate_debug_objfile_link.
10272 Adjust comment.
10273 (objfile_separate_debug_iterate, add_separate_debug_objfile)
10274 (free_objfile_separate_debug): New prototypes.
10275 * objfiles.c (objfile_separate_debug_iterate): New function.
10276 (add_separate_debug_objfile, free_objfile_separate_debug): New
10277 functions.
10278 (free_objfile): Use free_objfile_separate_debug. Adjust for
10279 multiple separate debug objfile.
10280 (objfile_has_symbols): Adjust comment. Iterate on all separate
10281 debug objfiles.
10282 * minsyms.c (lookup_minimal_symbol): Adjust for multiple separate
10283 debug objfile.
10284 (lookup_minimal_symbol_text): Ditto.
10285 (lookup_minimal_symbol_by_pc_name): Ditto.
10286 (lookup_minimal_symbol_solib_trampoline): Ditto.
10287 (lookup_minimal_symbol_by_pc_section_1): Iterate on all separate
10288 debug objfiles.
10289
10290 2010-01-05 Stan Shebs <stan@codesourcery.com>
10291
10292 Add fast tracepoints.
10293 * arch-utils.h (default_fast_tracepoint_valid_at): Declare.
10294 * arch-utils.c (default_fast_tracepoint_valid_at): New function.
10295 * breakpoint.h (enum bptype): Add bp_fast_tracepoint.
10296 * breakpoint.c (tracepoint_type): New function.
10297 (ALL_TRACEPOINTS): Use it.
10298 (should_be_inserted): Ditto.
10299 (bpstat_check_location): Ditto.
10300 (print_one_breakpoint_location): Ditto.
10301 (user_settable_breakpoint): Ditto.
10302 (set_breakpoint_location_function): Ditto.
10303 (disable_breakpoints_in_shlibs): Ditto.
10304 (delete_trace_command): Ditto.
10305 (print_it_typical): Add bp_fast_tracepoint case.
10306 (bpstat_what): Ditto.
10307 (print_one_breakpoint_location): Ditto.
10308 (allocate_bp_location): Ditto.
10309 (mention): Ditto.
10310 (breakpoint_re_set_one): Ditto.
10311 (disable_command): Ditto.
10312 (enable_command): Ditto.
10313 (check_fast_tracepoint_sals): New function.
10314 (break_command_really): Call it.
10315 (ftrace_command): New function.
10316 (_initialize_breakpoint): Add ftrace command.
10317 * gdbarch.sh (fast_tracepoint_valid_at): New.
10318 * gdbarch.h, gdbarch.c: Regenerate.
10319 * i386-tdep.c (i386_fast_tracepoint_valid_at): New function.
10320 (i386_gdbarch_init): Use it.
10321 * remote.c (struct remote_state): New field fast_tracepoints.
10322 (PACKET_FastTracepoints): New packet config type.
10323 (remote_fast_tracepoint_feature): New function.
10324 (remote_protocol_features): Add FastTracepoints.
10325 (remote_supports_fast_tracepoints): New function.
10326 (_initialize_remote): Add FastTracepoints.
10327 * tracepoint.c (download_tracepoint): Add fast tracepoint option.
10328 * NEWS: Mention fast tracepoints.
10329
10330 2010-01-06 Joel Brobecker <brobecker@adacore.com>
10331
10332 * gdb-gdb.py: New file.
10333
10334 2010-01-05 Michael Snyder <msnyder@vmware.com>
10335
10336 * infrun.c (handle_inferior_event): Fix typo in comment.
10337
10338 2010-01-05 Jan Kratochvil <jan.kratochvil@redhat.com>
10339
10340 * symfile.c (syms_from_objfile): Remove the !MAINLINE conditional.
10341
10342 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
10343
10344 * features/Makefile (WHICH): Add s390-linux32, s390-linux64,
10345 and s390x-linux64.
10346 (s390-linux32-expedite): Define.
10347 (s390-linux64-expedite): Define.
10348 (s390x-linux64-expedite): Define.
10349 * features/s390-acr.xml: New file.
10350 * features/s390-fpr.xml: New file.
10351 * features/s390-core32.xml: New file.
10352 * features/s390-core64.xml: New file.
10353 * features/s390x-core64.xml: New file.
10354 * features/s390-linux32.xml: New file.
10355 * features/s390-linux64.xml: New file.
10356 * features/s390x-linux64.xml: New file.
10357 * features/s390-linux32.c: New generated file.
10358 * features/s390-linux64.c: New generated file.
10359 * features/s390x-linux64.c: New generated file.
10360
10361 * regformats/s390-linux32.dat: New generated file.
10362 * regformats/s390-linux64.dat: New generated file.
10363 * regformats/s390x-linux64.dat: New generated file.
10364 * regformats/reg-s390.dat: Remove.
10365 * regformats/reg-s390x.dat: Remove.
10366
10367 * s390-nat.c: Include "auxv.h" and <elf.h>.
10368 (HWCAP_S390_HIGH_GPRS): Define if undefined.
10369 (s390_target_wordsize): New function.
10370 (s390_auxv_parse): Likewise.
10371 (s390_get_hwcap): Likewise.
10372 (s390_read_description): Likewise.
10373 (_initialize_s390_nat): Install s390_auxv_parse and
10374 s390_read_description.
10375
10376 * s390-tdep.c: Include "features/s390-linux32.c",
10377 "features/s390-linux64.c", and "features/s390x-linux64.c".
10378 (struct gdbarch_tdep): Add gpr_full_regnum, pc_regnum, and cc_regnum.
10379 (s390_register_call_saved): New function.
10380 (s390_register_name): Remove.
10381 (s390_register_type): Remove.
10382 (s390_dwarf_regmap): Add lower half GPR pseudo DWARF CFI regnums.
10383 (s390_dwarf_reg_to_regnum): Remap GPR regnums to full GPRs.
10384 (s390_adjust_frame_regnum): Remap GPR regnums to lower halves for CFI.
10385 (s390_pseudo_register_name): New function.
10386 (s390_pseudo_register_type): New function.
10387 (s390_pseudo_register_read): Handle both 32-bit and 64-bit cases.
10388 Handle full GPR pesudos and varying pseudo register numbers.
10389 (s390_pseudo_register_write): Likewise
10390 (s390x_pseudo_register_read): Remove.
10391 (s390x_pseudo_register_write): Likewise.
10392 (s390_register_group): Remove.
10393 (s390_pseudo_register_group): New function.
10394 (s390_regmap_gregset): Add GPR upper halves.
10395 (s390x_regmap_gregset): Likewise.
10396 (s390_regmap_fpregset): Likewise.
10397 (s390_regmap_upper): New global variable.
10398 (s390_upper_regset): New global variable.
10399 (s390_upper_regset_sections): New global variable.
10400 (s390_regset_from_core_section): Handle GPR upper halves.
10401 (s390_core_read_description): New function.
10402 (s390_prologue_frame_unwind_cache): Set up ABI call-saved/clobbered
10403 register information. Handle varying pseudo register numbers.
10404 (s390_backchain_frame_unwind_cache): Likewise.
10405 (s390_frame_prev_register): Unwind full GPRs to show lower halves.
10406 (s390_stub_frame_unwind_cache): Handle varying pseudo register numbers.
10407 (s390_sigtramp_frame_unwind_cache): Unwind PSWM and PSWA as well as
10408 PC and CC pseudos. Unwind upper halves and full GPRs as appropriate.
10409 Handle varying pseudo register numbers.
10410 (s390_unwind_pc): Handle varying pseudo register numbers.
10411 (s390_dwarf2_prev_register): New function.
10412 (s390_dwarf2_frame_init_reg): Set up ABI call-saved/clobbered
10413 register information. Handle varying pseudo register numbers.
10414 Install s390_dwarf2_prev_register to unwind full GPRs.
10415 (s390_gdbarch_init): Handle target descriptions. Assign varying
10416 pseudo register numbers. Install s390_adjust_frame_regnum.
10417 (_initialize_s390_tdep): Initialize target descriptions.
10418
10419 * s390-tdep.h (S390_R0_UPPER_REGNUM .. S390_R15_UPPER_REGNUM): Define.
10420 (S390_NUM_REGS): Redefine to include upper half registers.
10421 (S390_PC_REGNUM, S390_CC_REGNUM): Remove.
10422 (S390_NUM_PSEUDO_REGS, S390_NUM_TOTAL_REGS): Likewise.
10423 (tdesc_s390_linux32): Add declaration.
10424 (tdesc_s390_linux64): Likewise.
10425 (tdesc_s390x_linux64): Likewise.
10426
10427 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
10428
10429 * regset.h (struct core_regset_section): Add HUMAN_NAME.
10430 * i386-linux-tdep.c (i386_linux_regset_sections): Fill in HUMAN_NAME.
10431 * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
10432 (ppc_linux_vmx_regset_sections): Likewise.
10433 (ppc_linux_fp_regset_sections): Likewise.
10434
10435 * corelow.c (get_core_register_section): Constify arguments.
10436 (get_core_registers): Use gdbarch_core_regset_sections instead
10437 of hard-coded platform-specific register section names.
10438
10439 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
10440
10441 * dwarf2loc.c (read_pieced_value): If a piece occupies part of
10442 a register, assume the least-significant part is used.
10443 (write_pieced_value): Likewise.
10444
10445 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
10446
10447 * printcmd.c: Include "arch-utils.h".
10448 (do_one_display): Re-parse expression if current architecture changed.
10449
10450 2010-01-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10451 Joel Brobecker <brobecker@adacore.com>
10452
10453 * gdbtypes.c (check_typedef): New comment on type length.
10454 * value.c (allocate_value_lazy): Remove the unused atype variable. New
10455 comment on type length.
10456 (value_primitive_field): Keep the original TYPE value, new comment.
10457
10458 2010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10459
10460 * cli/cli-script.c (process_next_line): Rename p1 as p_end and p2 as
10461 p_start. Change != comparisons to > and < comparisons.
10462
10463 2010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10464
10465 * cli/cli-script.c (process_next_line): Check P2 overrun.
10466
10467 2009-01-01 Joel Brobecker <brobecker@adacore.com>
10468
10469 Update the copyright hearder to add year 2010 for most GDB files.
10470
10471 2009-01-01 Joel Brobecker <brobecker@adacore.com>
10472
10473 Fix build failure in inf-ptrace.c.
10474 * inf-ptrace.c (inf_ptrace_follow_fork): Fix typo.
10475
10476 2010-01-01 Joel Brobecker <brobecker@adacore.com>
10477
10478 * top.c (print_gdb_version): Update copyright year.
10479
10480 2010-01-01, 10 Joel Brobecker <brobecker@adacore.com>
10481
10482 Fix break *FUN'address thread NUM.
10483 * ada-lex.l (task): Expand rule to also match the thread keyword.
10484
10485 2010-01-01 Joel Brobecker <brobecker@adacore.com>
10486
10487 Fix break *FUN'address task NUM.
10488 * ada-lex.l (task): New rule.
10489 * ada-lang.c (valid_task_id): Make sure the Ada task list has
10490 been built before using it.
10491
10492 For older changes see ChangeLog-2009.
10493 \f
10494 Local Variables:
10495 mode: change-log
10496 left-margin: 8
10497 fill-column: 74
10498 version-control: never
10499 coding: utf-8
10500 End:
This page took 0.413318 seconds and 3 git commands to generate.