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