* solib-svr4.c (enable_break): Don't attempt to place breakpoints,
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2010-12-13 Kevin Buettner <kevinb@redhat.com>
2
3 * solib-svr4.c (enable_break): Don't attempt to place breakpoints,
4 when attaching, on the names in bkpt_names: _start, __start, and
5 main.
6
7 2010-12-12 Stan Shebs <stan@codesourcery.com>
8
9 * value.c (value_of_internalvar): Add case for trace state
10 variables.
11
12 2010-12-12 Doug Evans <dje@google.com>
13
14 * dwarf2read.c (dwarf2_per_objfile): New member quick_file_names_table.
15 (dwarf2_per_cu_quick_data): Move definition down to "quick functions"
16 section. Delete members lines full_names. Rename read_lines to
17 no_file_data.
18 (quick_file_names): New struct.
19 (hash_file_name_entry, eq_file_name_entry): New functions.
20 (delete_file_name_entry, create_quick_file_names_table): New functions.
21 (dwarf2_read_index): Initialize quick_file_names_table.
22 (dw2_get_file_names): Renamed from dw2_require_line_header.
23 Return pointer to quick_file_names entry. All callers updated.
24 (dw2_get_real_path): Renamed from dw2_require_full_path.
25 Replace per_cu arg with pointer to quick_file_names entry.
26 All callers updated.
27 (dw2_free_cached_file_names): New function.
28 (dw2_forget_cached_source_info): Call it (via htab_traverse_noresize).
29 (dwarf2_initialize_objfile): Initialize quick_file_names_table in
30 the OBJF_READNOW case.
31 (dwarf2_free_objfile): Rewrite freeing of quick file names tables.
32
33 2010-12-12 Mark Kettenis <kettenis@gnu.org>
34
35 * mips64obsd-tdep.c (floatformats_mips64_quad): New define.
36 (mips64obsd_init_abi): Set long_double_bit and long_double_format.
37
38 2010-12-12 Mark Kettenis <kettenis@gnu.org>
39
40 * sparc-tdep.c: Fix typo in comment.
41
42 2010-12-10 Doug Evans <dje@google.com>
43
44 * dwarf2read.c: Whitespace cleanup, plus comment additions.
45 No code changes.
46
47 2010-12-10 Tom Tromey <tromey@redhat.com>
48
49 * NEWS: Document exception-handling change.
50
51 2010-12-09 Marc Khouzam <marc.khouzam@ericsson.com>
52
53 * mi/mi-parse.c (mi_parse): Wrong error message.
54
55 2010-12-09 Doug Evans <dje@google.com>
56
57 * symfile.h (quick_symbol_functions): Clarify usage of
58 map_symbol_filenames.
59
60 2010-12-09 Tom Tromey <tromey@redhat.com>
61
62 * mi/mi-parse.h (mi_parse): Update.
63 * mi/mi-parse.c (mi_parse_cleanup): New function.
64 (mi_parse): Add 'token' argument. Throw exception on error.
65 * mi/mi-main.c (mi_print_exception): New function.
66 (mi_execute_command): Use mi_print_exception. Catch exceptions
67 from mi_parse.
68
69 2010-12-09 Tom Tromey <tromey@redhat.com>
70
71 PR c++/9593:
72 * thread.c (clear_thread_inferior_resources): Call
73 delete_longjmp_breakpoint.
74 * infrun.c (handle_inferior_event): Handle exception breakpoints.
75 (handle_inferior_event): Likewise.
76 (insert_exception_resume_breakpoint): New function.
77 (check_exception_resume): Likewise.
78 * inferior.h (delete_longjmp_breakpoint_cleanup): Declare.
79 * infcmd.c (delete_longjmp_breakpoint_cleanup): No longer static.
80 (step_1): Set thread's initiating frame.
81 (until_next_continuation): New function.
82 (until_next_command): Support exception breakpoints.
83 (finish_command_continuation): Delete longjmp breakpoint.
84 (finish_forward): Support exception breakpoints.
85 * gdbthread.h (struct thread_info) <initiating_frame>: New field.
86 * breakpoint.h (enum bptype) <bp_exception, bp_exception_resume,
87 bp_exception_master>: New constants.
88 (struct bpstat_what) <is_longjmp>: New field.
89 (set_longjmp_breakpoint): Update.
90 * breakpoint.c (create_exception_master_breakpoint): New function.
91 (update_breakpoints_after_exec): Handle bp_exception_master. Call
92 create_exception_master_breakpoint.
93 (print_it_typical): Handle bp_exception_master, bp_exception.
94 (bpstat_stop_status): Handle bp_exception_master.
95 (bpstat_what): Handle bp_exception_master, bp_exception,
96 bp_exception_resume.
97 (bptype_string): Likewise.
98 (print_one_breakpoint_location): Likewise.
99 (allocate_bp_location): Likewise.
100 (set_longjmp_breakpoint): Handle exception breakpoints. Change
101 interface.
102 (delete_longjmp_breakpoint): Handle exception breakpoints.
103 (mention): Likewise.
104 (struct until_break_command_continuation_args) <thread_num>: New
105 field.
106 (until_break_command_continuation): Call
107 delete_longjmp_breakpoint.
108 (until_break_command): Support exception breakpoints.
109 (delete_command): Likewise.
110 (breakpoint_re_set_one): Likewise.
111 (breakpoint_re_set): Likewise.
112
113 2010-12-08 Doug Evans <dje@google.com>
114
115 * gdbtypes.h (TYPE_IS_OPAQUE): Reformat.
116
117 * gdbtypes.c (check_typedef): Tweak comment.
118
119 PR symtab/12302
120 * dwarf2read.c (struct psymtab_cu_index_map): New struct.
121 (hash_psymtab_cu_index, eq_psymtab_cu_index): New functions.
122 (struct addrmap_index_data): New struct.
123 (add_address_entry): Remove arg `pst', new args `start', `end'.
124 (add_address_entry_worker, write_address_map): New functions.
125 (write_psymtabs_to_index): Address table generation moved to
126 write_address_map. Build a table mapping psymtab to CU index
127 to pass to it.
128
129 * dwarf2read.c (write_psymtabs_to_index): When stat fails, pass file
130 name to perror.
131
132 * symfile.h (quick_symbol_functions): Clarify usage of
133 expand_symtabs_with_filename.
134 * dwarf2read.c (dw2_expand_symtabs_with_filename): Only iterate over
135 comp units, ignore type units.
136
137 * dwarf2read.c (dw2_expand_symtabs_with_filename): Use FILENAME_CMP.
138
139 2010-12-07 Doug Evans <dje@google.com>
140
141 * dwarf2read.c (dw2_lookup_symtab): Remove duplicate call to
142 gdb_realpath.
143
144 PR python/12227
145 * NEWS: Mention -data-directory.
146 * main.c (captured_main): Recognize -data-directory.
147
148 2010-12-06 Marc Khouzam <marc.khouzam@ericsson.com>
149
150 * mi/mi-parse.c (mi_parse): Missing else.
151
152 2010-12-04 Masaki Muranaka <monaka@monami-software.com>
153
154 * configure.tgt: Accept microblaze*-*-linux* for linux target
155 and microblaze*-*-* for as target.
156
157 2010-12-02 Keith Seitz <keiths@redhat.com>
158
159 * linespec.c (find_method): Move name canonicalization outside
160 the loop.
161 Be paranoid and use a cleanup.
162
163 2010-12-01 Doug Evans <dje@google.com>
164
165 * dwarf2read.c (save_gdb_index_command): Add comment.
166
167 2010-12-01 Ulrich Weigand <uweigand@de.ibm.com>
168
169 * valops.c (value_assign): Returned value is never lazy. If a
170 C++ class type is returned, fix incorrect enclosing type / embedded
171 offset. If internal variable is returned, allocate new internalvar
172 value using value_of_internalvar.
173
174 * NEWS: Document changes in behavior of "print x = 0" and similar
175 expressions.
176
177 2010-11-29 Doug Evans <dje@google.com>
178
179 * python/lib/gdb/printing.py (register_pretty_printer): Change
180 printer-name:subprinter-name to printer-name;subprinter-name.
181 * python/lib/gdb/command/pretty_printers.py (parse_printer_regexps):
182 Ditto.
183 (InfoPrettyPrinter, EnablePrettyPrinter, DisablePrettyPrinter): Ditto.
184
185 2010-11-29 Tom Tromey <tromey@redhat.com>
186
187 * opencl-lang.c (lval_func_check_synthetic_pointer): New
188 function.
189 * value.h (struct lval_funcs) <indirect, check_synthetic_pointer>:
190 New fields.
191 (value_bits_synthetic_pointer): Declare.
192 * value.c (value_bits_synthetic_pointer): New function.
193 * valprint.c (valprint_check_validity): Handle synthetic
194 pointers.
195 * valops.c (value_ind): Use new 'indirect' lval_funcs method.
196 * valarith.c (value_ptradd): Use set_value_component_location.
197 * p-valprint.c (pascal_object_print_value_fields): Handle
198 synthetic pointers.
199 * jv-valprint.c (java_print_value_fields): Handle synthetic
200 pointers.
201 * dwarf2read.c (dwarf_stack_op_name): Add
202 DW_OP_GNU_implicit_pointer.
203 (dwarf2_fetch_die_location_block): Add get_frame_pc, baton
204 arguments. Handle location lists.
205 (fill_in_loclist_baton): New function.
206 (dwarf2_symbol_mark_computed): Use it.
207 * dwarf2loc.h (dwarf2_find_location_expression): Declare.
208 (dwarf2_fetch_die_location_block): Add get_frame_pc, baton
209 arguments.
210 * dwarf2loc.c (dwarf2_find_location_expression): Rename from
211 find_location_expression. No longer static. Update all callers.
212 (dwarf_expr_frame_pc): New function.
213 (per_cu_dwarf_call): Add get_frame_pc, baton arguments. Update
214 all callers.
215 (struct piece_closure) <per_cu>: New field.
216 (allocate_piece_closure): Add per_cu argument.
217 (read_pieced_value): Handle DWARF_VALUE_IMPLICIT_POINTER.
218 (check_pieced_value_bits): Remove validity argument, add check_for
219 argument. Handle DWARF_VALUE_IMPLICIT_POINTER.
220 (check_pieced_value_validity, check_pieced_value_invalid):
221 Update.
222 (check_pieced_synthetic_pointer): New function.
223 (get_frame_address_in_block_wrapper): New function.
224 (indirect_pieced_value): New function.
225 (pieced_value_funcs): Update.
226 (invalid_synthetic_pointer): New function.
227 (dwarf2_evaluate_loc_desc_full): Rename from
228 dwarf2_evaluate_loc_desc. Add byte_offset argument.
229 (dwarf2_evaluate_loc_desc): Rewrite.
230 (dwarf2_loc_desc_needs_frame): Set new field on context.
231 (get_ax_pc): New function.
232 (disassemble_dwarf_expression): Handle
233 DW_OP_GNU_implicit_pointer.
234 * dwarf2expr.h (enum dwarf_value_location)
235 <DWARF_VALUE_IMPLICIT_POINTER>: New constant.
236 (struct dwarf_expr_context) <get_frame_pc>: New field.
237 (struct dwarf_expr_piece) <v.ptr>: New field.
238 * dwarf2expr.c (add_piece): Handle DWARF_VALUE_IMPLICIT_POINTER.
239 (execute_stack_op): Handle DW_OP_GNU_implicit_pointer.
240 * dwarf2-frame.c (no_get_frame_pc): New function.
241 (execute_stack_op): Set new field on context.
242 * cp-valprint.c (cp_print_value_fields): Handle synthetic
243 pointers.
244
245 2010-11-29 Phil Muldoon <pmuldoon@redhat.com>
246
247 PR python/12199
248
249 * python/py-breakpoint.c (bppy_delete_breakpoint): New function.
250
251 2010-11-28 Jan Kratochvil <jan.kratochvil@redhat.com>
252
253 Fix step_resume_breakpoint unsaved during an infcall.
254 * gdbthread.h (struct thread_control_state): Move here field
255 step_resume_breakpoint ...
256 (struct thread_info): ... from here.
257 * infrun.c (save_infcall_control_state): Reset
258 control.step_resume_breakpoint to NULL.
259 (restore_infcall_control_state, discard_infcall_control_state): Delete
260 control.step_resume_breakpoint.
261 * arm-linux-tdep.c, infrun.c, thread.c: Update all the references to
262 the moved field.
263
264 2010-11-28 Jan Kratochvil <jan.kratochvil@redhat.com>
265
266 Rename and move inferior_thread_state and inferior_status.
267 * gdbthread.h (struct thread_control_state): New struct, move fields
268 step_range_start, step_range_end, step_frame_id, step_stack_frame_id,
269 trap_expected, proceed_to_finish, in_infcall, step_over_calls,
270 stop_step and stop_bpstat here from struct thread_info.
271 (struct thread_suspend_state): New struct, move field stop_signal here
272 from struct thread_info.
273 (struct thread_info): Move the fields above from this struct.
274 * inferior.h: Move the inferior_thread_state and inferior_status
275 declarations comment to their definitions at infrun.c.
276 (struct inferior_control_state): New struct, move field stop_soon from
277 struct inferior here.
278 (struct inferior_suspend_state): New empty struct.
279 (struct inferior): New fields control and suspend. Move out field
280 stop_soon.
281 * infrun.c (struct inferior_thread_state): Rename to ...
282 (infcall_suspend_state): ... here. Replace field stop_signal by
283 fields thread_suspend and inferior_suspend.
284 (save_inferior_thread_state): Rename to ...
285 (save_infcall_suspend_state): ... here. New variable inf. Update the
286 code for new fields.
287 (restore_inferior_thread_state): Rename to ...
288 (restore_infcall_suspend_state): ... here. New variable inf. Update
289 the code for new fields.
290 (do_restore_inferior_thread_state_cleanup): Rename to ...
291 (do_restore_infcall_suspend_state_cleanup): ... here.
292 (make_cleanup_restore_inferior_thread_state): Rename to ...
293 (make_cleanup_restore_infcall_suspend_state): ... here.
294 (discard_inferior_thread_state): Rename to ...
295 (discard_infcall_suspend_state): ... here.
296 (get_inferior_thread_state_regcache): Rename to ...
297 (get_infcall_suspend_state_regcache): ... here.
298 (struct inferior_status): Rename to ...
299 (struct infcall_control_state): ... here. Replace fields
300 step_range_start, step_range_end, step_frame_id, step_stack_frame_id,
301 trap_expected, proceed_to_finish, in_infcall, step_over_calls,
302 stop_step, stop_bpstat and stop_soon by fields thread_control and
303 inferior_control.
304 (save_inferior_status): Rename to ...
305 (save_infcall_control_state): ... here. Update the code for new
306 fields.
307 (restore_inferior_status): Rename to ...
308 (restore_infcall_control_state): ... here. Update the code for new
309 fields.
310 (do_restore_inferior_status_cleanup): Rename to ...
311 (do_restore_infcall_control_state_cleanup): ... here.
312 (make_cleanup_restore_inferior_status): Rename to ...
313 (make_cleanup_restore_infcall_control_state): ... here.
314 (discard_inferior_status): Rename to ...
315 (discard_infcall_control_state): ... here.
316 * alpha-tdep.c, breakpoint.c, dummy-frame.c, dummy-frame.h,
317 exceptions.c, fbsd-nat.c, gdbthread.h, infcall.c, infcmd.c,
318 inferior.c, inferior.h, infrun.c, linux-nat.c, mi/mi-interp.c,
319 mips-tdep.c, procfs.c, solib-irix.c, solib-osf.c, solib-spu.c,
320 solib-sunos.c, solib-svr4.c, thread.c, windows-nat.c: Update all the
321 references to the moved fields and renamed functions.
322
323 2010-11-26 Jan Kratochvil <jan.kratochvil@redhat.com>
324
325 * infcall.c (struct inferior_thread_state) <siginfo_gdbarch>: Fix up
326 the comment.
327 (save_inferior_thread_state): Reset tp->stop_signal.
328
329 2010-11-26 Jan Kratochvil <jan.kratochvil@redhat.com>
330
331 * infcall.c (call_function_by_hand): Remove variable
332 caller_state_cleanup.
333
334 2010-11-25 Marc Khouzam <marc.khouzam@ericsson.com>
335
336 PR breakpoints/12217
337
338 * breakpoint.c (is_marker_spec): Check for NULL.
339
340 2010-11-25 Pedro Alves <pedro@codesourcery.com>
341
342 * breakpoint.h: No longer include python.h or python-internal.h.
343 (struct breakpoint_object): Forward declare.
344 * defs.h (PyObject) [!HAVE_PYTHON]: Don't define.
345 * varobj.c (PyObject) [!HAVE_PYTHON]: Define.
346 * python/py-breakpoint.c (build_bp_list): Cast py_bp_object to
347 PyObject pointer.
348 (gdbpy_breakpoint_created): Remove casts around py_bp_object
349 accesses.
350
351 2010-11-24 Joel Brobecker <brobecker@adacore.com>
352
353 * rs6000-tdep.c (bfd_uses_spe_extensions): Use bfd_elf_get_obj_attr_int
354 only if HAVE_ELF is defined.
355
356 2010-11-24 Jan Kratochvil <jan.kratochvil@redhat.com>
357
358 Code cleanup.
359 * infrun.c (struct inferior_status) <stepping_over_breakpoint>
360 (save_inferior_status) <stepping_over_breakpoint>
361 (restore_inferior_status) <stepping_over_breakpoint>: Rename to
362 trap_expected.
363 (struct inferior_status) <step_resume_break_address>: Remove.
364
365 2010-11-24 Jan Kratochvil <jan.kratochvil@redhat.com>
366
367 Code cleanup.
368 * infrun.c (struct inferior_status, save_inferior_status)
369 (restore_inferior_status): Group and reorder the fields, comment their
370 groups.
371
372 2010-11-24 Jan Kratochvil <jan.kratochvil@redhat.com>
373
374 Code cleanup.
375 * dictionary.c
376 (struct dict_vector) <iter_match_first, iter_match_next>
377 (iter_match_first_hashed, iter_match_next_hashed)
378 (iter_match_first_linear, iter_match_next_linear)
379 (dict_iter_match_first, dict_iter_match_next, iter_match_first_hashed)
380 (iter_match_next_hashed, iter_match_first_linear)
381 (iter_match_next_linear): Use symbol_compare_ftype.
382 * dictionary.h: Include symfile.h.
383 (dict_iter_match_first, dict_iter_match_next): Use
384 symbol_compare_ftype.
385 * dwarf2read.c (dw2_map_matching_symbols): Likewise.
386 * psymtab.c (match_partial_symbol, match_partial_symbol, map_block)
387 (map_matching_symbols_psymtab): Likewise.
388 * symfile.h (symbol_compare_ftype): New typedef.
389 (struct quick_symbol_functions) <map_matching_symbols): Use
390 symbol_compare_ftype.
391
392 2010-11-23 Tom Tromey <tromey@redhat.com>
393
394 * configure: Rebuild.
395 * configure.ac (READLINE_TEXI_INCFLAG): New subst.
396
397 2010-11-19 Tom Tromey <tromey@redhat.com>
398
399 * Makefile.in (SUBDIRS): Add doc.
400 * configure: Rebuild.
401 * configure.ac: Don't configure in doc. Create doc/Makefile.
402
403 2010-11-23 Phil Muldoon <pmuldoon@redhat.com>
404
405 PR python/12212
406
407 * python/py-inferior.c (find_thread_object): Check if PIDGET
408 returns 0.
409
410 010-11-22 Joel Brobecker <brobecker@adacore.com>
411
412 * ada-lang.c (ada_template_to_fixed_record_type_1): Delete bit_incr.
413
414 2010-11-22 Joel Brobecker <brobecker@adacore.com>
415
416 * ada-lang.c (ada_to_fixed_type): Expand function documentation.
417 Return the original type if the main type portions match rather
418 than when the type themselves match.
419
420 2010-11-22 Joel Brobecker <brobecker@adacore.com>
421
422 * ada-lang.c (ada_template_to_fixed_record_type_1):
423 For dynamic fields, check the field size against the maximum
424 object size.
425
426 2010-11-22 Joel Brobecker <brobecker@adacore.com>
427
428 * mips-irix-tdep.c (mips_irix_n32_stack_tramp_frame_init): New
429 function.
430 (mips_irix_n32_stack_tramp_frame): New static global.
431 (mips_irix_init_abi): Add mips_irix_n32_stack_tramp_frame to
432 list of unwinder.
433
434 2010-11-22 Jerome Guitton <guitton@adacore.com>
435
436 * ada-tasks.c (get_tcb_types_info): Use C lookups to get
437 ATCB symbols.
438
439 2010-11-22 Joel Brobecker <brobecker@adacore.com>
440
441 * ada-lang.c (ada_check_typedef): Call ada_check_typedef only
442 if type1 is a typedef.
443
444 2010-11-22 Joel Brobecker <brobecker@adacore.com>
445
446 * ada-lang.h (ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS): Add
447 "_finalizer" to the list.
448
449 2010-11-22 Joel Brobecker <brobecker@adacore.com>
450
451 * symfile.c: Remove all "#if 0"/"#endif" blocks.
452
453 2010-11-22 Joel Brobecker <brobecker@adacore.com>
454
455 * symfile.c: Add missing second space after period in various comments.
456
457 2010-11-22 Joel Brobecker <brobecker@adacore.com>
458
459 * ada-typeprint.c (print_array_type): Fix formatting in comment.
460 (print_selected_record_field_types): Fix formatting in function
461 documentation.
462
463 2010-11-22 Joel Brobecker <brobecker@adacore.com>
464
465 * ravenscar-thread.c (_initialize_ravenscar): Fix copy/paste typo
466 in name of "show ravenscar" prefix command name.
467
468 2010-11-22 Joel Brobecker <brobecker@adacore.com>
469
470 * ravenscar-thread.c (show_ravenscar_task_switching_command):
471 Add missing '\n' in output.
472
473 2010-11-22 Joel Brobecker <brobecker@adacore.com>
474
475 * ravenscar-thread.c (running_thread_name): Change value.
476 (read_thread_id): Remove advance declaration.
477 (get_running_thread_msymbol): New function.
478 (has_ravenscar_runtime): Use get_running_thread_msymbol to
479 compute msym_running_thread.
480 (get_running_thread_id): Renames read_thread_id. Slight modifications
481 to not take any argument anymore, using get_running_thread_msymbol
482 to determine which symbol to use instead.
483 (ravenscar_running_thread): Use get_running_thread_id instead of
484 read_thread_id.
485
486 2010-11-22 Joel Brobecker <brobecker@adacore.com>
487
488 * ravenscar-sparc-thread.c (supply_register_at_address):
489 Fix passing of buf in call to regcache_raw_supply.
490
491 2010-11-22 Jan Kratochvil <jan.kratochvil@redhat.com>
492
493 * dwarf2read.c (dwarf2_read_index): Ignore higher .gdb_index versions.
494
495 2010-11-22 Tom Tromey <tromey@redhat.com>
496
497 * Makefile.in (.PRECIOUS): Reference ada-lex.c.
498
499 2010-11-19 Keith Seitz <keiths@redhat.com>
500
501 * data-directory/Makefile.in (SYSCALLS_INSTALL_DIR):
502 Remove extraneous '/' after $(DESTDIR).
503 (PYTHON_INSTALL_DIR): Likewise.
504
505 2010-11-19 Jan Kratochvil <jan.kratochvil@redhat.com>
506
507 Fix stale memory references.
508 * elfread.c (elf_symfile_read): Replace xmalloc by bfd_alloc, drop
509 xfree, new comment.
510
511 2010-11-19 Jan Kratochvil <jan.kratochvil@redhat.com>
512 Tom Tromey <tromey@redhat.com>
513
514 * Makefile.in (.y.c): Directly create $@ from YLWRAP.
515 (.PHONY): Remove for .y outputs.
516
517 2010-11-19 Will Drewry <wad@google.com>
518 Tavis Ormandy <taviso@google.com>
519 Jan Kratochvil <jan.kratochvil@redhat.com>
520
521 * dwarf2read.c (decode_locdesc): Enforce location description stack
522 boundaries.
523
524 2010-11-18 Pierre Muller <muller@ics.u-strasbg.fr>
525
526 * arm-tdep.c (arm_in_function_epilogue_p): Fix code when "MOV SP"
527 instruction is found.
528
529 2010-11-17 Tom Tromey <tromey@redhat.com>
530
531 * value.c (value_entirely_optimized_out): Check the
532 'check_any_valid' field.
533
534 2010-11-16 Jan Kratochvil <jan.kratochvil@redhat.com>
535
536 * ada-lang.c (modify_general_field): Remove.
537 (make_array_descriptor): Replace all modify_general_field calls by
538 modify_field.
539 * value.c (modify_field): Update comment. New variable bytesize.
540 Normalize BITPOS. Initialize BYTESIZE, use it.
541
542 2010-11-16 Jan Kratochvil <jan.kratochvil@redhat.com>
543
544 * dwarf2read.c (dw2_forget_cached_source_info): Clear the FULL_NAMES
545 elements after xfree.
546
547 2010-11-16 Tom Tromey <tromey@redhat.com>
548
549 * gdb-add-index.sh: Really remove.
550
551 2010-11-16 Jan Kratochvil <jan.kratochvil@redhat.com>
552
553 Code cleanup.
554 * dwarf2read.c (alloc_one_comp_unit): Rename prototype to ...
555 (init_one_comp_unit): ... this one.
556 (prepare_one_comp_unit): New prototype.
557 (dw2_require_line_header, process_psymtab_comp_unit): Use
558 init_one_comp_unit.
559 (process_psymtab_comp_unit): Use prepare_one_comp_unit.
560 (load_partial_comp_unit): Remove variable attr. Use
561 init_one_comp_unit with xmalloc. Use prepare_one_comp_unit.
562 (load_full_comp_unit): Use init_one_comp_unit with xmalloc. Use
563 prepare_one_comp_unit.
564 (read_signatured_type): Remove variable attr. Use init_one_comp_unit.
565 Use prepare_one_comp_unit.
566 (alloc_one_comp_unit): Rename to ...
567 (init_one_comp_unit): ... here and remove there calloc, new parameter
568 cu.
569 (prepare_one_comp_unit): New function.
570
571 2010-11-14 Pierre Muller <muller@ics.u-strasbg.fr>
572
573 * arm-tdep.c (arm_in_function_epilogue_p): Fix code to avoid
574 possible used of uninitialized variable.
575
576 2010-11-12 Nathan Froyd <froydnj@codesourcery.com>
577
578 * rs6000-tdep.c (bfd_uses_spe_extensions): New function.
579 (rs6000_gdbarch_init): Call it.
580
581 2010-11-12 Nathan Froyd <froydnj@codesourcery.com>
582
583 * rs6000-tdep.c (gdb_print_insn_powerpc): Disassemble e500
584 instructions if debugging an E500 binary.
585
586 2010-11-12 Tom Tromey <tromey@redhat.com>
587
588 * varobj.c (value_get_print_value): Rearrange. Pass stream to
589 apply_varobj_pretty_printer.
590 * c-lang.c: Include exceptions.h.
591 (c_get_string): Throw MEMORY_ERROR when appropriate.
592 * python/py-prettyprint.c (enum string_repr_result): New.
593 (print_stack_unless_memory_error): New function.
594 (print_string_repr): Change return type. Use
595 print_stack_unless_memory_error.
596 (print_children): Use print_stack_unless_memory_error.
597 (apply_val_pretty_printer): Update. Don't print children if
598 string representation threw an exception.
599 (apply_varobj_pretty_printer): Add 'stream' argument. Use
600 print_stack_unless_memory_error.
601 * python/python.c (gdbpy_gdb_error, gdbpy_gdb_memory_error): New
602 globals.
603 (_initialize_python): Initialize them.
604 * python/python-internal.h (GDB_PY_HANDLE_EXCEPTION): Use
605 gdbpy_convert_exception.
606 (GDB_PY_SET_HANDLE_EXCEPTION): Likewise.
607 (gdbpy_gdb_error, gdbpy_gdb_memory_error): Declare.
608 (gdbpy_convert_exception): Declare.
609 (apply_varobj_pretty_printer): Update.
610 * python/py-utils.c (gdbpy_convert_exception): New function.
611
612 2010-11-12 Marc Khouzam <marc.khouzam@ericsson.com>
613
614 * mi/mi-main.c (mi_cmd_target_detach): Accept new
615 thread-group id format.
616
617 2010-11-12 Jan Kratochvil <jan.kratochvil@redhat.com>
618
619 * spu-tdep.c (spu_catch_start): Fix compilation error typo.
620
621 2010-11-11 Phil Muldoon <pmuldoon@redhat.com>
622
623 * python/py-breakpoint.c (BPPY_REQUIRE_VALID): Check if bp is
624 NULL.
625 (BPPY_SET_REQUIRE_VALID): Ditto.
626 (bpnum_is_valid): Delete function.
627 (bppy_get_visibility): New function.
628 (bppy_new): Parse for, and validate internal keyword. Pass
629 internal keyword to breakpoint or watchpoint functions.
630 (build_bp_list): New function.
631 (gdbpy_breakpoints): Rewrite. Use build_bp_list and
632 iterate_over_breakpoints.
633 (gdbpy_breakpoint_created): Rewrite. Do not store breakpoints in a
634 look-aside vector.
635 (gdbpy_breakpoint_deleted): Rewrite, defer breakpoint management
636 to internal breakpoint chain.
637
638 * breakpoint.c (set_breakpoint_number): New function.
639 (breakpoint_1): Check if breakpoint number is more than zero.
640 (set_raw_breakpoint_without_location): Set py_bp_object to NULL.
641 (create_breakpoint_sal): Take a new parameter called internal.
642 Call set_breakpoint_number with internal parameter. Do not
643 mention internal breakpoints. All callers updated.
644 (create_breakpoint): Ditto.
645 (create_breakpoints_sal): Ditto.
646 (watch_command_1): Ditto.
647 (watch_command_wrapper): Take a new parameter called internal.
648 All callers updated.
649 (rwatch_command_wrapper): Ditto.
650 (awatch_command_wrapper): Ditto.
651 (save_breakpoints): Update breakpoint save condition check.
652 (iterate_over_breakpoints): New function.
653 * breakpoint.h: Add conditional python includes. Add py_bp_object
654 and comment to struct breakpoint. Update all callers.
655 * defs.h: Add PyObject definition for GDB builds without Python.
656
657 2010-11-10 Doug Evans <dje@google.com>
658
659 * python/lib/gdb/command/pretty_printers.py
660 (do_enable_pretty_printer_1): Handle printer.subprinters is None.
661
662 * value.c (set_value_enclosing_type): Renamed from
663 value_change_enclosing_type. All callers updated.
664 * value.h (set_value_enclosing_type): Update.
665 * valops.c (value_full_object): Always return a copy if we need to
666 make changes to the input value.
667
668 2010-11-09 Pedro Alves <pedro@codesourcery.com>
669
670 * breakpoint.c (watch_command_1): Get a pointer of the lazy
671 version of the expression's value, even if reading the value from
672 memory fails. When creating a -location watchpoint, get the
673 value's address from the lazy value pointer.
674
675 2010-11-07 Jan Kratochvil <jan.kratochvil@redhat.com>
676
677 * infrun.c (restore_inferior_thread_state): Use
678 discard_inferior_thread_state to free the data.
679 (discard_inferior_thread_state): xfree also siginfo_data.
680
681 2010-11-05 Doug Evans <dje@google.com>
682
683 Make gdb.parameter("directories") work.
684 New command "set directories".
685 * NEWS: Document them.
686 * source.c (set_directories_command): New function.
687 (show_directories_1): Renamed from show_directories.
688 All callers updated.
689 (show_directories_command): New function.
690 (_initialize_source): Install "directories" as a set/show
691 variable instead of just a show command.
692
693 2010-11-05 Ken Werner <ken.werner@de.ibm.com>
694
695 * NEWS: Mention OpenCL C language support.
696 * Makefile.in (SFILES): Add opencl-lang.c.
697 (COMMON_OBS): Add opencl-lang.o.
698 * opencl-lang.c: New File
699 * defs.h (enum language): Add language_opencl.
700 * dwarf2read.c (read_file_scope): Handle DW_AT_producer for the
701 IBM XL C OpenCL compiler.
702 * c-lang.h: Include "parser-defs.h".
703 (evaluate_subexp_c): Declare.
704 * c-lang.c (evaluate_subexp_c): Remove the static qualifier.
705 (c_op_print_tab): Add declaration.
706 * eval.c (binop_promote): Handle language_opencl.
707 * c-exp.y: Lookup the primitive types instead of referring to the
708 builtins.
709
710 2010-11-05 Jan Kratochvil <jan.kratochvil@redhat.com>
711
712 Fix configure --enable-plugins --without-python.
713 * configure.ac (for ELF support in BFD) <"$plugins" = "yes">: New.
714 * configure: Regenerate.
715
716 2010-11-05 Jan Kratochvil <jan.kratochvil@redhat.com>
717
718 * solib.c (solib_read_symbols): Call exception_fprintf even without
719 FROM_TTY. Print also so->so_name.
720
721 2010-11-04 Sami Wagiaalla <swagiaal@redhat.com>
722
723 * gdbtypes.h (struct rank): Created subrank.
724 * gdbtypes.c: Initialized subrank for all
725 'BADNESS' constants.
726 (distance_to_ancestor): New function.
727 (is_ancestor): Use distance_to_ancestor.
728 (is_public_ancestor): Ditto.
729 (sum_ranks): Handle subrank.
730 (compare_ranks): Ditto.
731 (rank_one_type): Subrank base conversions.
732
733 2010-11-04 Sami Wagiaalla <swagiaal@redhat.com>
734
735 * gdbtypes.h: Create struct rank.
736 Convert all 'BADNESS' macros to const struct rank declarations.
737 (sum_ranks): New function.
738 (compare_ranks): New function.
739 * valops.c (find_oload_champ): Updated.
740 (classify_oload_match): Use compare_ranks.
741 Improved comments.
742 (compare_parameters): Use compare_ranks.
743 * gdbtypes.c: Initialize 'BADNESS' constants.
744 (sum_ranks): New function.
745 (compare_ranks): New function.
746 (compare_badness): Use compare_ranks.
747 (rank_function): Use global constants instead of literals.
748 (rank_one_type): Ditto.
749 Return struct rank.
750 Use sum_ranks.
751
752 2010-11-04 Doug Evans <dje@google.com>
753
754 * python/py-prettyprint.c (find_pretty_printer_from_gdb): Fix comment.
755 (find_pretty_printer): Fix comments.
756
757 2010-11-04 Hui Zhu <teawater@gmail.com>
758
759 * tracepoint.c (remote_trace_set_readonly_regions): Change lma to vma.
760
761 2010-11-03 Joel Brobecker <brobecker@adacore.com>
762
763 * ada-valprint.c (ada_val_print_array): Move variables `eltlen'
764 and `len' declaration and computation inside block where they
765 are being used.
766
767 2010-11-03 Joel Brobecker <brobecker@adacore.com>
768
769 * valprint.c (val_print_array_elements): Put back handling of
770 empty arrays.
771
772 2010-11-03 Ken Werner <ken.werner@de.ibm.com>
773
774 * dwarf2read.c (read_array_type): Read the DW_AT_byte_size from the
775 DIE and set the length of the type.
776 * gdbtypes.h (get_array_bounds): Move here from valprint.h.
777 * gdbtypes.c (get_array_bounds): Move here from valprint.c and
778 return 0 if the corresponding bounds of the type are undefined.
779 * valprint.h (get_array_bounds): Move declaration to gdbtypes.h.
780 * valprint.c (get_array_bounds): Move implementation to gdbtypes.c.
781 (val_print_array_elements): Use get_array_bounds to compute the number
782 of array elements instead of dividing the length of the array by the
783 length of the element types.
784 * valarith.c (vector_binop): Likewise.
785 * valops.c (value_cast): Likewise.
786 * c-valprint.c (c_val_print): Likewise.
787 * c-typeprint.c (c_type_print_varspec_suffix): Likewise.
788
789 2010-11-03 Ken Werner <ken.werner@de.ibm.com>
790
791 * valarith.c (value_pos, value_neg, value_complement): Handle
792 vector types.
793 * valops.c (value_one): Likewise.
794
795 2010-11-03 Ken Werner <ken.werner@de.ibm.com>
796
797 * value.h (value_non_lval): Declare.
798 * value.c (value_non_lval): New function.
799 * eval.c (evaluate_subexp_standard) <UNOP_POSTINCREMENT,
800 UNOP_POSTDECREMENT>: Call value_non_lval to ensure to return a
801 non-lvalue.
802
803 2010-11-02 Doug Evans <dje@google.com>
804
805 New python module gdb.printing, and new commands info pretty-printer,
806 enable pretty-printer, disable pretty-printer.
807 * NEWS: Mention them.
808 * data-directory/Makefile.in (PYTHON_FILES): Add gdb/printing.py,
809 gdb/command/__init__.py, gdb/command/pretty_printers.py.
810 * python/lib/gdb/__init__.py: Install pretty-printer commands.
811 * python/lib/gdb/printing.py: New file.
812 * python/lib/gdb/command/__init__.py: New file.
813 * python/lib/gdb/command/pretty_printers.py: New file.
814
815 2010-11-02 Tom Tromey <tromey@redhat.com>
816
817 * NEWS: Mention Guile removal.
818 * defs.h (enum language) <language_scm>: Remove.
819 * Makefile.in (SFILES): Remove scm-exp.c, scm-lang.c,
820 scm-valprint.c.
821 (HFILES_NO_SRCDIR): Remove scm-lang.h, scm-tags.h.
822 (COMMON_OBS): Remove scm-exp.o, scm-lang.o, scm-valprint.o.
823 * scm-exp.c, scm-lang.c, scm-valprint.c, scm-lang.h, scm-tags.h:
824 Remove.
825
826 2010-11-02 Doug Evans <dje@google.com>
827
828 * top.c: #include "python/python.h".
829 (gdb_init): Add a comment regarding initialize_all_files.
830 Call finish_python_initialization at the end.
831 * python/python.h (finish_python_initialization): Declare.
832 * python/python.c (finish_python_initialization): New function.
833 (_initialize_python): Move python-implemented initialization there
834 and call it.
835 (GdbMethods): Use #ifdef HAVE_PYTHON for consistency.
836
837 2010-11-02 Jan Kratochvil <jan.kratochvil@redhat.com>
838
839 Revert:
840 2010-10-17 Jan Kratochvil <jan.kratochvil@redhat.com>
841 Pedro Alves <pedro@codesourcery.com>
842 * gdbthread.h (currently_stepping): New declaration.
843 * infrun.c (currently_stepping): Remove the forward declaration.
844 (currently_stepping): Make it global.
845 * linux-nat.c (resume_callback) <lp->stopped && lp->status == 0>: New
846 variables tp and step, initialized them. Pass STEP to to_resume.
847 Print also possibly "PTRACE_SINGLESTEP" if STEP. Initialize LP->STEP.
848 * remote.c (currently_stepping_callback): New.
849 (remote_vcont_resume)
850 <ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid)>:
851 New variable tp. Call currently_stepping_callback and step such
852 thread.
853
854 2010-11-01 Hui Zhu <teawater@gmail.com>
855
856 * tracepoint.c (tfile_xfer_partial): Change lma to vma.
857
858 2010-10-28 Hui Zhu <teawater@gmail.com>
859
860 * tracepoint.c (trace_save): Change utp->actions to
861 utp->step_actions.
862
863 2010-10-26 Joel Brobecker <brobecker@adacore.com>
864
865 * (_FILE_OFFSET_BITS): Fix typo in comment.
866
867 2010-10-26 Joel Brobecker <brobecker@adacore.com>
868
869 * python/python-internal.h (_FILE_OFFSET_BITS): Undefine.
870 (PyEval_InitThreads): Remove duplicate. Define as nothing.
871 (PyEval_ReleaseLock): Define as nothing.
872
873 2010-10-26 Joel Brobecker <brobecker@adacore.com>
874
875 * dwarf2read.c (psymtab_include_file_name): Replace call to strcmp
876 by call to FILENAME_CMP.
877
878 2010-10-26 Joel Brobecker <brobecker@adacore.com>
879
880 * dictionary.c (dict_hash): Move assignment out of if condition.
881
882 2010-10-22 Jie Zhang <jie@codesourcery.com>
883
884 * Makefile.in (install): Remove dependency of install-only and
885 recursively invoke make for install-only.
886 * data-directory/Makefile.in: Add FLAGS_TO_PASS variable.
887 (install): Pass FLAGS_TO_PASS when recursively make install-only.
888
889 2010-10-20 Hui Zhu <teawater@gmail.com>
890
891 * tracepoint.c (tfile_get_traceframe_address): Call
892 extract_signed_integer.
893 (tfile_trace_find): Call extract_signed_integer and
894 extract_unsigned_integer. Change data_size to unsigned int.
895 (tfile_fetch_registers): Call extract_unsigned_integer.
896 (tfile_xfer_partial): Ditto.
897 (tfile_get_trace_state_variable_value): Call
898 extract_signed_integer and extract_unsigned_integer.
899
900 2010-10-20 Vladimir Prus <vladimir@codesourcery.com>
901
902 * remote.c (remote_get_threadlist): If we got empty
903 response, bail out immediately, and don't emit any
904 warnings.
905
906 2010-10-19 Ulrich Weigand <uweigand@de.ibm.com>
907
908 * arm-tdep.c (thumb_get_next_pc_raw): Handle Thumb-16 encoding
909 for "mov pc, REG" as well.
910 (thumb_instruction_changes_pc): Likewise.
911
912 2010-10-19 Sami Wagiaalla <swagiaal@redhat.com>
913
914 PR C++/11500:
915 * valarith.c (value_x_unop): Handle STRUCTOP_PTR.
916 * eval.c (evaluate_subexp_standard): Check for overload of
917 'operator->'.
918 * valarith.c (value_x_binop): Throw NOT_FOUND_ERROR.
919 (value_x_unop): Ditto.
920 * valops.c: Include "exceptions.h".
921 (find_overload_match): Throw NOT_FOUND_ERROR.
922 (value_struct_elt): Ditto.
923
924 2010-10-19 Tom Tromey <tromey@redhat.com>
925
926 * python/py-cmd.c (cmdpy_function): Unreference exception state.
927
928 2010-10-19 Sami Wagiaalla <swagiaal@redhat.com>
929
930 * gdbtypes.h: Introduce BOOL_PTR_CONVERSION_BADNESS.
931 * gdbtypes.c (rank_one_type): Use BOOL_PTR_CONVERSION_BADNESS
932 for conversion.
933 Make all other conversions illegal.
934
935 2010-10-18 Doug Evans <dje@google.com>
936
937 * c-typeprint.c (c_type_print_base, case TYPE_CODE_TYPEDEF): Verify
938 assumptions of when this case happens. Print "<unnamed typedef>".
939
940 2010-10-18 Tom Tromey <tromey@redhat.com>
941
942 * valprint.c (val_print_string): Pass 'encoding' to
943 LA_PRINT_STRING.
944
945 2010-10-17 Jan Kratochvil <jan.kratochvil@redhat.com>
946
947 Fix the `stopped language detection' testcase for gcc-4.5.
948 * dwarf2read.c (read_partial_die): Set also LANGUAGE_OF_MAIN.
949 * symfile.c (set_initial_language): Move variable filename to a more
950 inner block. Prefer LANGUAGE_OF_MAIN.
951 * symtab.c (language_of_main): New variable.
952 (set_main_name): Always reset LANGUAGE_OF_MAIN.
953 * symtab.h (language_of_main): New declaration.
954
955 2010-10-17 Jan Kratochvil <jan.kratochvil@redhat.com>
956 Pedro Alves <pedro@codesourcery.com>
957
958 * gdbthread.h (currently_stepping): New declaration.
959 * infrun.c (currently_stepping): Remove the forward declaration.
960 (currently_stepping): Make it global.
961 * linux-nat.c (resume_callback) <lp->stopped && lp->status == 0>: New
962 variables tp and step, initialized them. Pass STEP to to_resume.
963 Print also possibly "PTRACE_SINGLESTEP" if STEP. Initialize LP->STEP.
964 * remote.c (currently_stepping_callback): New.
965 (remote_vcont_resume)
966 <ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid)>:
967 New variable tp. Call currently_stepping_callback and step such
968 thread.
969
970 2010-10-17 Jan Kratochvil <jan.kratochvil@redhat.com>
971
972 * infrun.c (follow_exec): Replace symbol_file_add_main by
973 symbol_file_add with SYMFILE_DEFER_BP_RESET, set_initial_language and
974 breakpoint_re_set.
975 * m32r-rom.c (m32r_load, m32r_upload_command): Use parameter 0 for
976 clear_symtab_users.
977 * objfiles.c (free_all_objfiles): Likewise.
978 * remote-m32r-sdi.c (m32r_load): Likewise.
979 * solib-som.c (som_solib_create_inferior_hook): Likewise.
980 * symfile.c (new_symfile_objfile): New comment for add_flags. Call
981 clear_symtab_users with ADD_FLAGS.
982 (reread_symbols): Use parameter 0 for clear_symtab_users.
983 (clear_symtab_users): New parameter add_flags. Do not call
984 breakpoint_re_set if SYMFILE_DEFER_BP_RESET.
985 (clear_symtab_users_cleanup): Use parameter 0 for clear_symtab_users.
986 * symtab.h (clear_symtab_users): New parameter add_flags.
987
988 2010-10-17 Jan Kratochvil <jan.kratochvil@redhat.com>
989
990 Fix GCC false warning.
991 * varobj.c (value_get_print_value) <str_addr>: Initialize it.
992
993 2010-10-16 Pierre Muller <muller@ics.u-strasbg.fr>
994
995 * p-typeprint.c (pascal_type_print_method_args): Fix problem in
996 display of type of method arguments.
997
998 2010-10-15 Tom Tromey <tromey@redhat.com>
999
1000 PR python/11948:
1001 * varobj.c (value_get_print_value): Use val_print_string to print
1002 lazy strings.
1003 * python/py-prettyprint.c (print_string_repr): Use
1004 val_print_string to print lazy strings. Fix cleanup logic.
1005 (print_children): Likewise.
1006 * python/python-internal.h (gdbpy_extract_lazy_string): Update.
1007 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Rewrite.
1008 Change return type to 'void', add 'addr' argument.
1009 * value.h (val_print_string): Update.
1010 * valprint.c (val_print_string): Add 'encoding' argument.
1011 * printcmd.c (print_formatted): Update.
1012 * p-valprint.c (pascal_val_print): Update.
1013 * m2-valprint.c (print_unpacked_pointer): Update.
1014 (m2_print_array_contents): Likewise.
1015 * jv-valprint.c (java_value_print): Update.
1016 * f-valprint.c (f_val_print): Update.
1017 * c-valprint.c (c_val_print): Update.
1018 * auxv.c (fprint_target_auxv): Update.
1019
1020 2010-10-15 Doug Evans <dje@google.com>
1021 Jan Kratochvil <jan.kratochvil@redhat.com>
1022
1023 PR exp/12117
1024 * gdbtypes.c (check_typedef): Clean up function comment.
1025 Keep track of instance flags as we strip typedefs and create a new
1026 type to preserve them if necessary.
1027 * gdbtypes.h (type) <instance_flags>: Extend the comment.
1028
1029 2010-10-15 Pierre Muller <muller@ics.u-strasbg.fr>
1030
1031 * p-lang.c (is_pascal_string_type): Use TYPE_FIELD_NAME accessor.
1032
1033 2010-10-14 Sami Wagiaalla <swagiaal@redhat.com>
1034
1035 * gdbtypes.h: Create BASE_PTR_CONVERSION_BADNESS.
1036 * gdbtypes.c (rank_one_type): Move type comparison code out of here
1037 to...
1038 (types_equal): ...here. And changed it as follows:
1039 Outside of typedefs type must be of the same TYPE_CODE.
1040 When compairing two pointers or references they are equal if their
1041 targets are equal.
1042 Correct pointer conversions.
1043
1044 2010-10-14 Pierre Muller <muller@ics.u-strasbg.fr>
1045
1046 * p-lang.c (is_pascal_string_type): Avoid crashes on structures
1047 having fields without names.
1048
1049 2010-10-13 Tom Tromey <tromey@redhat.com>
1050
1051 * language.h (LA_PRINT_ARRAY_INDEX): Fix argument name.
1052
1053 2010-10-13 Doug Evans <dje@google.com>
1054
1055 New python module gdb.types.
1056 * NEWS: Document it.
1057 * data-directory/Makefile.in (PYTHON_FILES): Add gdb/types.py.
1058 * python/lib/gdb/types.py: New file.
1059
1060 * c-typeprint.c: Whitespace cleanup.
1061 (cp_type_print_method_args): Remove unnecessary forward decl.
1062 (cp_type_print_derivation_info): Ditto.
1063 (c_type_print_varspec_prefix): Mark as static at definition.
1064 (c_type_print_modifier): Fix arg descriptions.
1065
1066 2010-10-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1067
1068 * python/py-breakpoint.c (bppy_set_condition): New comment.
1069 * python/py-cmd.c (cmdpy_function): Call also gdbpy_print_stack for
1070 failed PyUnicode_Decode.
1071 (cmdpy_completer): Skip element for failed
1072 python_string_to_host_string.
1073 (cmdpy_init): Return -1 on failed python_string_to_host_string.
1074 * python/py-frame.c (frapy_read_var): Extend the function comment.
1075 * python/py-function.c (fnpy_init): Return -1 on failed
1076 python_string_to_host_string.
1077 * python/py-inferior.c (infpy_read_memory, infpy_write_memory): Extend
1078 the function comment.
1079 (infpy_search_memory): Extend the function comment. Remove the
1080 PyErr_SetString call on already set error state.
1081 * python/py-param.c (set_parameter_value): Extend the function
1082 comment. Return -1 on failed python_string_to_host_string, twice.
1083 (set_attr): Extend the function comment.
1084 (compute_enum_values): Extend the function comment. New variable
1085 back_to. Protect self->enumeration by BACK_TO cleanups. Return 0 on
1086 failed python_string_to_host_string.
1087 (get_doc_string): Call gdbpy_print_stack on failed
1088 python_string_to_host_string.
1089 (parmpy_init): Extend the function comment.
1090 * python/py-prettyprint.c (pretty_print_one_value): Likewise.
1091 (gdbpy_get_display_hint, print_children): Call gdbpy_print_stack on
1092 failed python_string_to_host_string.
1093 * python/py-value.c (valpy_new, valpy_getitem, valpy_call)
1094 (valpy_binop, valpy_richcompare): Extend the function comment.
1095 * python/python.c
1096 (struct python_env) <error_type, error_value, error_traceback>: New
1097 fields.
1098 (restore_python_env): Handle PyErr_Occurred. Call PyErr_Restore.
1099 (ensure_python_env): Call PyErr_Fetch.
1100 * varobj.c (update_dynamic_varobj_children): Call gdbpy_print_stack on
1101 failed convert_value_from_python.
1102 (value_get_print_value): Call gdbpy_print_stack on failed
1103 python_string_to_target_python_string.
1104
1105 2010-10-12 Tom Tromey <tromey@redhat.com>
1106
1107 * python/py-prettyprint.c (search_pp_list): Fix error checking.
1108
1109 2010-10-12 Sami Wagiaalla <swagiaal@redhat.com>
1110
1111 * gdbtypes.c (do_is_ancestor): New function.
1112 (is_ancestor): Use do_is_ancestor.
1113 (is_public_ancestor): Use do_is_ancestor.
1114
1115 2010-10-12 Pierre Muller <muller@ics.u-strasbg.fr>
1116
1117 * ser-go32.c (struct dos_ops): Add missing fdopen field.
1118
1119 2010-10-12 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
1120
1121 * arm-tdep.c (arm_mode_strings): Add NULL entry at end of array.
1122
1123 2010-10-11 Doug Evans <dje@google.com>
1124
1125 * c-typeprint.c (c_type_print_modifier): Add note that this prints
1126 the address space id too.
1127
1128 2010-10-11 Jan Kratochvil <jan.kratochvil@redhat.com>
1129
1130 Fix attaching to re-prelinked executables on ppc64.
1131 * solib-svr4.c (svr4_exec_displacement): New variable plt2_asect,
1132 initialize it, try to adjust FILESZ field by it.
1133
1134 2010-10-08 Daniel Jacobowitz <dan@codesourcery.com>
1135
1136 * tracepoint.c (merge_uploaded_trace_state_variables): Only print
1137 messages if info_verbose.
1138
1139 2010-10-08 Ken Werner <ken.werner@de.ibm.com>
1140
1141 * valops.c (value_cast): Handle vector types.
1142 * valarith.c (value_binop): Widen scalar to vector if appropriate.
1143
1144 2010-10-08 Ulrich Weigand <uweigand@de.ibm.com>
1145
1146 * arm-tdep.c (thumb_expand_immediate): New function.
1147 (thumb_instruction_changes_pc): Likewise.
1148 (thumb2_instruction_changes_pc): Likewise.
1149 (thumb_analyze_prologue): Handle 32-bit Thumb instructions during
1150 prologue parsing. Improved support for optimized code.
1151 (thumb_scan_prologue): Do not reply on line-number information,
1152 use same heuristics as arm_scan_prologue insead.
1153 (skip_prologue_function): Accept functions
1154 "__tls_get_addr" and "__aeabi_read_tp".
1155
1156 2010-10-08 Ulrich Weigand <uweigand@de.ibm.com>
1157 Daniel Jacobowitz <dan@codesourcery.com>
1158
1159 * arm-tdep.c (thumb_in_function_epilogue_p)
1160 (arm_in_function_epilogue_p): New.
1161 (arm_gdbarch_init): Install arm_in_function_epilogue_p as
1162 gdbarch_in_function_epilogue_p callback.
1163
1164 2010-10-07 Doug Evans <dje@google.com>
1165
1166 * cc-with-index.sh (output_file): Default to a.out.
1167
1168 * dwarf2read.c (mapped_index): Rename member index_table to
1169 symbol_table and index_table_slots to symbol_table_slots.
1170 All uses updated.
1171 (create_symbol_hash_table): Renamed from create_index_table.
1172 All callers updated.
1173 (add_indices_to_cpool): Rename arg index_table to symbol_hash_table.
1174 (write_hash_table): Rename local index_table to symbol_hash_table.
1175
1176 * addrmap.h (addrmap_foreach_fn): New typedef.
1177 (addrmap_foreach): Declare.
1178 * addrmap.c (struct addrmap_funcs): New member foreach.
1179 (addrmap_foreach): New function.
1180 (addrmap_fixed_foreach): New function.
1181 (addrmap_fixed_funcs): Update.
1182 (struct mutable_foreach_data): New struct.
1183 (addrmap_mutable_foreach_worker): New function.
1184 (addrmap_mutable_foreach): New function.
1185 (addrmap_mutable_funcs): Update.
1186
1187 2010-10-07 Paul Hilfinger <hilfinger@adacore.com>
1188
1189 * dictionary.c (dict_hash): Revert to msymbol_hash_iw in
1190 more cases.
1191
1192 2010-10-07 Paul Hilfinger <hilfinger@adacore.com>
1193
1194 * ada-lang.c (full_match): Declare.
1195 (ada_match_name): Rename to match_name (we should avoid prefixing static
1196 symbols with "ada_").
1197 (match_name): New name for ada_match_name.
1198 (struct ada_psym_data): Remove and replace with...
1199 (struct match_data): User data for map_matching_symbols.
1200 (ada_add_psyms): Remove.
1201 (aux_add_nonlocal_symbols): New function, used as callback for
1202 map_matching_symbols.
1203 (compare_names): Ordering function adopted from strcmp_iw for Ada-encoded
1204 symbols.
1205 (ada_add_non_local_symbols): Rename to add_nonlocal_symbols.
1206 (add_nonlocal_symbols): Renamed from ada_add_non_local_symbols.
1207 Rework to use map_matching_symbols instead of map_ada_symtabs.
1208 (ada_lookup_symbol_list): Use add_nonlocal_symbols.
1209 * psymtab.c: Include dependency on dictionary.h.
1210 (match_partial_symbol): New function.
1211 (ada_lookup_partial_symbol): Remove.
1212 (map_block): New function, auxiliary to map_matching_symbols_psymtab.
1213 (map_matching_symbols_psymtab): New function.
1214 (psym_functions): Replace map_ada_symtabs with map_matching_symbols_psymtab.
1215 * symfile.h: Replace map_ada_symtabs definition with map_matching_symbols.
1216
1217 2010-10-06 Paul Hilfinger <hilfinger@adacore.com>
1218
1219 * ada-lang.c (ada_match_name): Use new API for wild_match.
1220 (wild_match): Change API to be consistent with that of strcmp_iw;
1221 return 0 for a match, and switch operand order.
1222 (full_match): New function.
1223 (ada_add_block_symbols): Use dict_iter_match_{first,next} for
1224 matching to allow use of hashing.
1225 * dictionary.c (struct dict_vector): Generalize iter_name_first,
1226 iter_name_next ot iter_match_first, iter_match_next.
1227 (iter_name_first_hashed): Replace with iter_match_first_hashed.
1228 (iter_name_next_hashed): Replace with iter_match_next_hashed.
1229 (iter_name_first_linear): Replace with iter_match_first_linear.
1230 (iter_name_next_linear): Replace with iter_match_next_linear.
1231 (dict_iter_name_first): Re-implement to use dict_iter_match_first.
1232 (dict_iter_name_next): Re-implement to use dict_iter_match_next.
1233 (dict_iter_match_first): New function.
1234 (dict_iter_match_next): New function.
1235 (dict_hash): New function.
1236 * dictionary.h (dict_iter_match_first, dict_iter_match_next): Declare.
1237 * psymtab.c (ada_lookup_partial_symbol): Use new wild_match API.
1238
1239 2010-10-06 Doug Evans <dje@google.com>
1240
1241 * data-directory/Makefile.in: Remove @host_makefile_frag@, @frags@.
1242
1243 2010-10-06 Ken Werner <ken.werner@de.ibm.com>
1244
1245 * dwarf2read.c (read_tag_const_type): Handle const arrays.
1246
1247 2010-10-06 Doug Evans <dje@google.com>
1248
1249 * Makefile.in (REQUIRED_SUBDIRS): New var.
1250 (subdir_do): Verify required subdir Makefiles exist.
1251
1252 Create subdir data-directory.
1253 * Makefile.in (XML_SYSCALL_DIR, XML_SYSCALL_FILES): Moved to
1254 data-directory/Makefile.in.
1255 (SUBDIRS): Add data-directory.
1256 (all): Remove xml-syscall-copy dependency.
1257 (xml-syscall-copy): Moved to data-directory/Makefile.in as
1258 stamp-syscalls.
1259 (xml-syscall-install): Moved to data-directory/Makefile.in as
1260 install-syscalls.
1261 (install-only): Remove xml-syscall-install dependency.
1262 (all-data-directory): New rule.
1263 (data-directory/Makefile): New rule.
1264 * configure.ac (AC_OUTPUT): Add data-directory/Makefile.
1265 * configure: Regenerate.
1266 * data-directory/Makefile.in: New file.
1267 * python/lib/gdb/__init__.py: New file.
1268
1269 2010-10-06 Joel Brobecker <brobecker@adacore.com>
1270
1271 Fix ARI warnings in advance_wild_match.
1272 * ada-lang.c (advance_wild_match): Delete local variable t2.
1273 Adjust code accordingly. Minor reformatting.
1274
1275 2010-10-06 Ken Werner <ken.werner@de.ibm.com>
1276
1277 * gdbtypes.h (struct main_type): Remove flag_nottext.
1278 (enum type_flag_value): Remove TYPE_FLAG_NOTTEXT.
1279 (enum type_instance_flag_value): Add TYPE_INSTANCE_FLAG_NOTTEXT.
1280 (TYPE_NOTTEXT): Use TYPE_INSTANCE_FLAG_NOTTEXT instead of flag_nottext.
1281 * gdbtypes.c (make_vector_type): Use TYPE_INSTANCE_FLAG_NOTTEXT instead
1282 of TYPE_FLAG_NOTTEXT.
1283 (init_type): Remove the initialization of the flag_nottext field.
1284 (gdbtypes_post_init): Use TYPE_INSTANCE_FLAG_NOTTEXT instead of
1285 TYPE_FLAG_NOTTEXT.
1286 * c-valprint.c (c_val_print): Remove TYPE_VECTOR check.
1287
1288 2010-10-04 Doug Evans <dje@google.com>
1289
1290 * cc-with-index.sh: New file.
1291
1292 * dwarf2read.c (dw2_do_instantiate_symtab): Insert blank line after
1293 function comment.
1294 (dw2_instantiate_symtab, dw2_get_cu, extract_cu_value): Ditto.
1295 (create_cus_from_index, create_addrmap_from_index): Ditto.
1296 (mapped_index_string_hash, find_slot_in_mapped_hash): Ditto.
1297 (dw2_setup, dw2_require_line_header, dw2_require_full_path): Ditto.
1298 (dw2_do_expand_symtabs_matching): Ditto.
1299 (eq_strtab_entry, create_strtab, add_string): Ditto.
1300 (hash_strtab_entry): Ditto.
1301 (hash_symtab_entry, eq_symtab_entry, delete_symtab_entry): Ditto.
1302 (create_index_table, create_mapped_symtab, find_slot): Ditto.
1303 (hash_expand, add_index_entry, add_indices_to_cpool): Ditto.
1304 (write_hash_table, add_address_entry, write_psymbols): Ditto.
1305 (write_obstack, unlink_if_set, write_one_signatured_type): Ditto.
1306 (write_psymtabs_to_index): Ditto.
1307
1308 2010-10-04 Joel Brobecker <brobecker@adacore.com>
1309
1310 * ada-lang.c: #include "value.h".
1311 (ensure_lval): Delete advance declaration. Remove gdbarch and sp
1312 arguments. Implement using value_allocate_space_in_inferior
1313 instead of allocating memory from the stack.
1314 (make_array_descriptor): Remove gdbarch and sp parameters. Update
1315 calls to ensure_lval.
1316 (ada_convert_actual): Remove gdbarch and sp parameters. Update
1317 calls to make_array_descriptor and ensure_lval.
1318 * ada-lang.h (ada_convert_actual): Update declaration.
1319 * infcall.c (value_arg_coerce): Update call to ada_convert_actual.
1320
1321 2010-10-04 Doug Evans <dje@google.com>
1322
1323 * python/python.c (_initialize_python): Define new function
1324 GdbSetPythonDirectory in python. Use it to update sys.path and
1325 gdb.__path__.
1326
1327 2010-10-03 Paul Hilfinger <hilfinger@adacore.com>
1328
1329 * gdb/ada-typeprint.c (print_selected_record_field_types): New function,
1330 incorporating and generalizing print_record_field_types.
1331 (print_record_field_types): Change return value and update comment.
1332 Re-implement using print_selected_record_field_types.
1333 (print_choices): Print "=>" here.
1334 Handle case of unencoded variant branch.
1335 (print_variant_clauses): Reformat comment.
1336 Special-case unencoded variant branch.
1337
1338 2010-10-03 Paul Hilfinger <hilfinger@adacore.com>
1339
1340 * ada-lang.c (wild_match): Reimplement.
1341 Change API to eliminate unused length argument, reverse arguments and
1342 make 0 the 'true' return value.
1343 (advance_wild_match): New auxiliary function for wild_match to improve
1344 readability.
1345 (ada_match_name, ada_add_block_symbols): Use new API for wild_match.
1346 * psymtab.c (ada_lookup_partial_symbol, map_ada_symtabs): Use new
1347 API for wild_match.
1348 * symfile.h (map_ada_symtabs): Modify declaration to use new API for
1349 wild_match.
1350 * dwarf2read.c (dw2_map_ada_symtabs): Ditto.
1351
1352 2010-10-01 Doug Evans <dje@google.com>
1353
1354 * dwarf2read.c (_initialize_dwarf2_read): Add usage info to help text
1355 for `save gdb-index' command.
1356
1357 2010-10-01 Tom Tromey <tromey@redhat.com>
1358
1359 * symfile.h (allocate_symtab): Update.
1360 * symfile.c (allocate_symtab): Make 'filename' const.
1361 * psymtab.c (add_psymbol_to_bcache): Make 'name' const.
1362 (add_psymbol_to_list): Likewise.
1363 * psympriv.h (struct partial_symtab) <filename, dirname>: Now
1364 const.
1365 (add_psymbol_to_list): Update.
1366 * mdebugread.c (new_symtab): Make 'name' const.
1367 (psymtab_to_symtab_1): Make 'filename' const.
1368 * elfread.c (elfstab_offset_sections): Update.
1369 * dwarf2read.c (dwarf_decode_lines): Make 'comp_dir' const.
1370 (dwarf2_start_subfile): Make 'dirname' and 'comp_dir' const.
1371 (psymtab_include_file_name): Update.
1372 * dbxread.c (find_stab_function_addr): Make 'filename' const.
1373 * buildsym.h (start_subfile): Update.
1374 * buildsym.c (start_subfile): Make arguments const.
1375
1376 2010-09-30 Ali Lakhia <lakhia@alumni.utexas.net>
1377
1378 * fork-child.c (breakup_args): Fix crash if shell forking is
1379 disabled at compile time.
1380
1381 2010-10-01 Joel Brobecker <brobecker@adacore.com>
1382
1383 * ada-lang.c (desc_bounds): Add handling of the case where
1384 the P_BOUNDS field is a pointer to a stub.
1385 (desc_data_target_type): Same for P_ARRAY field.
1386 (ada_check_typedef): Strip the typedef layers from the type
1387 found by ada_find_any_type.
1388
1389 2010-10-01 Joel Brobecker <brobecker@adacore.com>
1390
1391 * sparc-tdep.c (sparc32_frame_align): New function.
1392 (sparc32_gdbarch_init): Set the frame_align gdbarch method.
1393 * sparc64-tdep.c (sparc64_frame_align): New function.
1394 (sparc64_gdbarch_init): Set the frame_align gdbarch method.
1395
1396 2010-09-30 H.J. Lu <hongjiu.lu@intel.com>
1397
1398 * defs.h (MAX_REGISTER_SIZE): Set to 64.
1399
1400 2010-09-30 Tom Tromey <tromey@redhat.com>
1401
1402 * symfile.h (struct sym_fns) <next>: Remove.
1403 (add_symtab_fns): Update.
1404 * symfile.c (sym_fns_ptr): New typedef.
1405 (symtab_fns): Now a VEC.
1406 (add_symtab_fns): Update. Change argument type.
1407 (find_sym_fns): Update. Change return type.
1408 (get_symfile_segment_data): Update.
1409 * objfiles.h (struct objfile) <sf>: Now const.
1410 * somread.c (som_sym_fns): Now const. Update.
1411 * xcoffread.c (xcoff_sym_fns): Now const. Update.
1412 * mipsread.c (ecoff_sym_fns): Now const. Update.
1413 * machoread.c (macho_sym_fns): Now const. Update.
1414 * elfread.c (elf_sym_fns): Now const. Update.
1415 (elf_sym_fns_gdb_index): Likewise.
1416 * dbxread.c (aout_sym_fns): Now const. Update.
1417 * coffread.c (coff_sym_fns): Now const. Update.
1418
1419 2010-09-30 Tom Tromey <tromey@redhat.com>
1420
1421 * value.c (value_primitive_field): Take 'offset' into account for
1422 packed field.
1423
1424 2010-09-30 Tom Tromey <tromey@redhat.com>
1425
1426 * completer.c (count_struct_fields): Handle anonymous structs and
1427 unions.
1428 (add_struct_fields): Likewise.
1429
1430 2010-09-30 Jan Kratochvil <jan.kratochvil@redhat.com>
1431
1432 Fix printing parameters of inlined functions.
1433 * ada-lang.c (is_known_support_routine)
1434 (ada_unhandled_exception_name_addr_from_raise): Provide NULL parameter
1435 for find_frame_funname.
1436 * python/py-frame.c (frapy_name): Likewise.
1437 * stack.c (find_frame_funname): New parameter funcp. Update the
1438 function comment. Fill it in.
1439 (print_frame): New variable func. Initialize it by
1440 find_frame_funname. Print arguments only if FUNC is not NULL. Use
1441 FUNC as the parameter of print_args_stub.
1442 * stack.h (find_frame_funname): New parameter funcp. Remove the
1443 function declaration comment.
1444
1445 2010-09-30 Jan Kratochvil <jan.kratochvil@redhat.com>
1446
1447 PR corefiles/12071.
1448 * inferior.c (have_live_inferiors): New variables old_chain, inf and
1449 tp. Iterate INFERIOR_LIST and call target_has_execution.
1450
1451 2010-09-29 Jan Kratochvil <jan.kratochvil@redhat.com>
1452
1453 Fix GDB crash on inferior calls with self-referencing classes.
1454 * gnu-v3-abi.c (gnuv3_pass_by_reference): Do not call itself on static
1455 member fields.
1456
1457 2010-09-29 Doug Evans <dje@google.com>
1458
1459 Workaround for gcc/45682.
1460 * dwarf2read.c (partial_die_info): New fields fixup_called,
1461 linkage_name.
1462 (guess_partial_die_structure_name): Renamed from guess_structure_name.
1463 Move definition next to use. Use linkage_name to determine if class
1464 is in a namespace. All callers updated.
1465 (fixup_partial_die): Return early if already called.
1466 Set fixup_called when done.
1467 (guess_full_die_structure_name): New function.
1468 (determine_prefix): Call it for class/struct/union dies if c++ and
1469 .debug_types section is present and parent is DW_TAG_compile_unit.
1470
1471 2010-09-28 Joel Brobecker <brobecker@adacore.com>
1472
1473 * configure.tgt (sparc-*-*): Set gdb_sim to ../sim/erc32/libsim.a.
1474 (sparc-*-rtems*): Delete. Now redundant with sparc-*-*.
1475
1476 2010-09-28 Joel Brobecker <brobecker@adacore.com>
1477
1478 * NEWS: Announce Ravenscar Profile support.
1479
1480 2010-09-28 Joel Brobecker <brobecker@adacore.com>
1481 Jerome Guitton <guitton@adacore.com>
1482
1483 * ravenscar-thread.c, ravenscar-thread.h, ravenscar-sparc-thread.c:
1484 New files.
1485 * configure.tgt (sparc-*-*): Add ravenscar-thread.o and
1486 ravenscar-sparc-thread.o to gdb_target_obs.
1487
1488 2010-09-28 Joel Brobecker <brobecker@adacore.com>
1489
1490 * ada-tasks.c (iterate_over_live_ada_tasks): New function.
1491 * ada-lang.h (iterate_over_live_ada_tasks): Declare.
1492
1493 2010-09-27 Pierre Muller <muller@ics.u-strasbg.fr>
1494
1495 * amd64-windows-tdep.c (amd64_skip_main_prologue): New function.
1496 (amd64_windows_init_abi): Register amd64_skip_main_prologue as gdbarch
1497 skip_main_prologue method.
1498
1499 2010-09-27 Tom Tromey <tromey@redhat.com>
1500
1501 * dwarf2read.c (dwarf2_read_index): Only allow version 3.
1502 (write_psymbols): Add 'psyms_seen' and 'is_static' arguments.
1503 Only emit a given psymbol once.
1504 (struct signatured_type_index_data) <psyms_seen>: New field.
1505 (write_one_signatured_type): Update.
1506 (cleanup_htab): New function.
1507 (write_psymtabs_to_index): Update. Create psyms_seen hash. Bump
1508 version to 3.
1509 (save_gdb_index_command): Update index documentation.
1510
1511 2010-09-27 Tom Tromey <tromey@redhat.com>
1512
1513 * bcache.c (expand_hash_table): Use hash_function, not hash.
1514
1515 2010-09-27 Tom Tromey <tromey@redhat.com>
1516
1517 * gdb_wchar.h: Change minimum libiconv to 0x108.
1518
1519 2010-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1520
1521 Fix lost siginfo_t for inferior calls.
1522 * infrun.c
1523 (struct inferior_thread_state) <siginfo_gdbarch, siginfo_data>: New.
1524 (save_inferior_thread_state): New variables regcache, gdbarch and
1525 siginfo_data. Initialize SIGINFO_DATA if gdbarch_get_siginfo_type_p.
1526 Move INF_STATE allocation later, pre-clear it. Initialize REGISTERS
1527 using REGCACHE.
1528 (restore_inferior_thread_state): New variables regcache and gdbarch.
1529 Restore SIGINFO_DATA for matching GDBARCH. Restore REGISTERS using
1530 REGCACHE. Free also SIGINFO_DATA.
1531
1532 2010-09-24 Tom Tromey <tromey@redhat.com>
1533
1534 * dwarf2read.c (dw2_expand_symtabs_matching): Add missing
1535 MAYBE_SWAPs.
1536 (dw2_map_symbol_names): Likewise.
1537
1538 2010-09-24 Sami Wagiaalla <swagiaal@redhat.com>
1539
1540 * valops.c (find_oload_champ_namespace_loop): replace incorrect
1541 discard_cleanups do_cleanups.
1542
1543 2010-09-24 Pedro Alves <pedro@codesourcery.com>
1544
1545 PR gdb/11842
1546
1547 * amd64-linux-nat.c (compat_siginfo_from_siginfo)
1548 (siginfo_from_compat_siginfo): Also copy si_pid and si_uid when
1549 si_code is < 0. Check for si_code == SI_TIMER before checking for
1550 si_code < 0.
1551
1552 2010-09-24 Pedro Alves <pedro@codesourcery.com>
1553
1554 * objfiles.h (ALL_OBJSECTIONS): Handle breaks in the inner loop.
1555
1556 2010-09-22 Joel Brobecker <brobecker@adacore.com>
1557
1558 * ada-tasks.c (read_atcb): Do not compute the task ptid when
1559 debugging a core file.
1560
1561 2010-09-22 Jan Kratochvil <jan.kratochvil@redhat.com>
1562
1563 Code cleanup.
1564 * objfiles.c (allocate_objfile) <objfile->name != NULL>: Remove.
1565 (free_objfile) <objfile->name != NULL>: Remove the conditional around
1566 xfree.
1567 * objfiles.h (struct objfile) <name>: New comment it is never NULL.
1568 * python/py-auto-load.c (auto_load_new_objfile) <!objfile->name>:
1569 Remove.
1570 * python/py-objfile.c (objfpy_get_filename) <obj->objfile->name>
1571 Remove the conditional.
1572 * python/py-progspace.c (pspy_get_filename) <objfile->name>: Likewise.
1573
1574 2010-09-22 Jan Kratochvil <jan.kratochvil@redhat.com>
1575
1576 * main.c: Include objfiles.h.
1577 (captured_main): New variable objfile. Call
1578 load_auto_scripts_for_objfile for ALL_OBJFILES.
1579
1580 2010-09-22 Jan Kratochvil <jan.kratochvil@redhat.com>
1581
1582 * dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: Add also
1583 DW_TAG_constant.
1584
1585 2010-09-22 Joel Brobecker <brobecker@adacore.com>
1586
1587 * dwarf2read.c (scan_partial_symbols): Add handling of
1588 DW_TAG_constant DIEs.
1589 (add_partial_symbol, load_partial_dies, new_symbol): Likewise.
1590
1591 2010-09-22 Joel Brobecker <brobecker@adacore.com>
1592
1593 * configure.ac: Add support for --enable-gdbserver.
1594 * configure: Regenerate.
1595
1596 2010-09-22 Sami Wagiaalla <swagiaal@redhat.com>
1597
1598 PR C++/12028
1599 * valops.c (find_oload_champ_namespace_loop): removed incorrect
1600 'old_cleanups' reassignment.
1601
1602 2010-09-16 Jan Kratochvil <jan.kratochvil@redhat.com>
1603
1604 * charset.c (wchar_iterate) <EILSEQ>: Return any possibly converted
1605 characters.
1606
1607 2010-09-16 Phil Muldoon <pmuldoon@redhat.com>
1608
1609 PR mi/11407
1610 * mi/mi-cmd-stack.c (list_args_or_locals): Catch exceptions from
1611 read_var_value and common_val_print and print a warning.
1612
1613 2010-09-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1614
1615 * MAINTAINERS (GLOBAL MAINTAINERS) <Jan Kratochvil>: Move the entry to
1616 keep the list in alphabetical order. Use longer e-mail address.
1617
1618 2010-09-15 Tom Tromey <tromey@redhat.com>
1619
1620 * MAINTAINERS (GLOBAL MAINTAINERS): Add Jan Kratochvil.
1621
1622 2010-09-15 Tom Tromey <tromey@redhat.com>
1623
1624 * charset.c (iconv_open): New define.
1625 (iconv): Likewise.
1626 (iconv_close): Likewise.
1627 (phony_iconv_open): Add "phony_" prefix.
1628 (phony_iconv_close): Likewise.
1629 (phony_iconv): Likewise.
1630 * gdb_wchar.h: Check _LIBICONV_VERSION, __STDC_ISO_10646__.
1631 Change how INTERMEDIATE_ENCODING is defined.
1632
1633 2010-09-15 Doug Evans <dje@google.com>
1634
1635 * dwarf2read.c (struct die_info): Fix comment.
1636
1637 2010-09-15 Alan Modra <amodra@gmail.com>
1638
1639 PR 4606
1640 * gcore.c (gcore_create_callback): Clear SEC_HAS_CONTENTS rather
1641 than setting SEC_NEVER_LOAD on sections that need not be copied.
1642
1643 2010-09-14 Tom Tromey <tromey@redhat.com>
1644
1645 * psympriv.h (add_psymbol_to_list, init_psymbol_list)
1646 (start_psymtab_common, allocate_psymtab, discard_psymtab):
1647 Declare.
1648 * symfile.h (extend_psymbol_list): Remove.
1649 (add_psymbol_to_list, init_psymbol_list, start_psymtab_common)
1650 (allocate_psymtab, discard_psymtab): Move to psympriv.h.
1651 * psymtab.c (extend_psymbol_list): Move earlier. Now static.
1652
1653 2010-09-14 Jan Kratochvil <jan.kratochvil@redhat.com>
1654
1655 * dwarf2read.c (dw2_map_ada_symtabs): Remove the internal_error.
1656 Update the comment.
1657
1658 2010-09-14 Tom Tromey <tromey@redhat.com>
1659
1660 PR symtab/8399:
1661 * dwarf2loc.c (locexpr_describe_location_piece): Don't call error
1662 for unrecognized frame base expression.
1663
1664 2010-09-14 Tom Tromey <tromey@redhat.com>
1665
1666 PR exp/11803:
1667 * value.c (value_static_field): Use value_of_variable.
1668
1669 2010-09-14 Pierre Muller <muller@ics.u-strasbg.fr>
1670
1671 * m32r-rom.c: Replace winsock.h with winsock2.h header.
1672 * remote-m32r-sdi.c: Replace winsock.h by winsock2.h.
1673
1674 2010-09-13 Sami Wagiaalla <swagiaal@redhat.com>
1675
1676 PR symtab/11992:
1677 * c-exp.y (classify_name): Check is_a_member_of_this before returning
1678 UNKNOWN_CPP_NAME.
1679
1680 2010-09-13 Joel Brobecker <brobecker@adacore.com>
1681
1682 * NEWS: Add x86-lynxos to the list of platforms supported by
1683 gdbserver.
1684
1685 2010-09-13 Joel Brobecker <brobecker@adacore.com>
1686
1687 * NEWS: Announce GDBserver support for version 5.x of ppc-lynxos.
1688
1689 2010-09-13 Tom Tromey <tromey@redhat.com>
1690
1691 * Makefile.in (HFILES_NO_SRCDIR): Add progspace.h.
1692
1693 2010-09-13 H.J. Lu <hongjiu.lu@intel.com>
1694
1695 * i386-tdep.c (i386_ymm_type): Set type name to
1696 builtin_type_vec256i.
1697
1698 2010-09-12 Michael Snyder <msnyder@vmware.com>
1699
1700 * i386-tdep.c (i386_gdbarch_init): Fix typo in comments.
1701
1702 2010-09-12 H.J. Lu <hongjiu.lu@intel.com>
1703
1704 * i386-tdep.c (i386_gdbarch_init): Fix typo in comments.
1705
1706 2010-09-11 H.J. Lu <hongjiu.lu@intel.com>
1707
1708 * amd64-tdep.c (amd64_register_name): Removed.
1709 (amd64_init_abi): Don't call set_gdbarch_register_name.
1710
1711 * i386-tdep.c (i386_ymmh_regnum_p): Make it static.
1712
1713 * i386-tdep.h (i386_ymmh_regnum_p): Removed.
1714
1715 2010-09-11 Jan Kratochvil <jan.kratochvil@redhat.com>
1716 Paul Bolle <pebolle@tiscali.nl>
1717
1718 Redirect also uiout and stdtarg{,err} in execute_command_to_string.
1719 * cli-logging.c (struct saved_output_files) <targerr>: New.
1720 (set_logging_redirect, pop_output_files, handle_redirections):
1721 Redirect also gdb_stdtargerr.
1722 * defs.h (struct ui_out, make_cleanup_ui_out_redirect_pop): New
1723 declarations.
1724 * event-top.c (gdb_setup_readline, gdb_disable_readline): Redirect
1725 also gdb_stdtargerr.
1726 * top.c (execute_command_to_string): Move make_cleanup_ui_file_delete
1727 to the top. Redirect also gdb_stdlog, gdb_stdtarg and gdb_stdtargerr.
1728 Use ui_out_redirect, register make_cleanup_ui_out_redirect_pop.
1729 * tui/tui-io.c (tui_setup_io): Redirect also gdb_stdtargerr.
1730 * utils.c (do_ui_out_redirect_pop, make_cleanup_ui_out_redirect_pop):
1731 New functions.
1732
1733 2010-09-10 Pierre Muller <muller@ics.u-strasbg.fr>
1734
1735 * hppa-tdep.c (unwind_command): Use host_address_to_string function
1736 to display a host address.
1737 * monitor.c (monitor_read_memory): Likewise.
1738 * xtensa-tdep.c (xtensa_push_dummy_call): Likewise.
1739
1740 2010-09-10 Pierre Muller <muller@ics.u-strasbg.fr>
1741
1742 * coffread.c (struct coff_symbol): Change c_value type from `long' to
1743 `CORE_ADDRESS' as it might contain target addresses.
1744
1745 2010-09-10 Pierre Muller <muller@ics.u-strasbg.fr>
1746
1747 * alpha-mdebug-tdep.c (find_proc_desc): Use SYMBOL_VALUE_BYTES macro
1748 before cast to pointer to avoid warning.
1749
1750 2010-09-09 Kevin Buettner <kevinb@redhat.com>
1751
1752 * v850-tdep.c (v850_gdbarch_init): Change the v850's `char'
1753 type to be signed.
1754
1755 2010-09-09 Ulrich Weigand <uweigand@de.ibm.com>
1756
1757 * dwarf2read.c (fixup_partial_die): Do not set dummy name for
1758 anonymous class partial DIEs.
1759
1760 2010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
1761
1762 * dwarf2read.c (dwarf2_compute_name): Check that the first
1763 argument is a pointer.
1764
1765 2010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
1766
1767 * dwarf2read.c (read_func_scope, read_structure_type)
1768 (read_common_block): Check for a NULL return from new_symbol.
1769
1770 2010-09-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1771
1772 * dwarf2read.c (dwarf2_read_index): Return on no SEC_HAS_CONTENTS.
1773
1774 2010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
1775
1776 * dwarf2read.c (read_structure_type): Move processing of
1777 fields and member functions from here...
1778 (process_structure_scope): ... to here.
1779
1780 2010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
1781
1782 * gnu-v3-abi.c (gnuv3_print_method_ptr): Do not use
1783 the domain type.
1784 (gnuv3_make_method_ptr): Likewise.
1785
1786 2010-09-08 Tom Tromey <tromey@redhat.com>
1787
1788 * breakpoint.c (create_breakpoint): Add missing _().
1789
1790 2010-09-08 Doug Evans <dje@google.com>
1791
1792 * dwarf2-frame.h (dwarf2_frame_build_info): Delete, unused.
1793
1794 2010-09-08 Tom Tromey <tromey@redhat.com>
1795
1796 Revert:
1797 2010-09-01 Tom Tromey <tromey@redhat.com>
1798 * dwarf2read.c, gdbtypes.c, psymtab.c, symfile.h, symtab.c,
1799 symtab.h: Revert earlier change.
1800
1801 2010-09-09 Sami Wagiaalla <swagiaal@redhat.com>
1802
1803 * psymtab.c (add_psymbol_to_bcache): Initialize
1804 obj_section.
1805 memset psymbol.ginfo.value to 0.
1806
1807 2010-09-06 Pedro Alves <pedro@codesourcery.com>
1808
1809 * infrun.c (resume): Extend comment on ignoring single-step
1810 requests on vfork parents waiting for a vfork-done.
1811
1812 2010-09-06 Jan Kratochvil <jan.kratochvil@redhat.com>
1813 Pedro Alves <pedro@codesourcery.com>
1814
1815 * corelow.c (core_open): Use target_signal_from_host if CORE_GDBARCH
1816 is NULL.
1817 * fork-child.c (startup_inferior) <resume_signal>: Use enum
1818 target_signal type.
1819 * linux-nat.c (linux_nat_resume): Use target_signal_to_host before
1820 calling strsignal. Use enum target_signal type for saved_signo.
1821 (linux_handle_extended_wait) <signo>: Use enum target_signal type.
1822 (linux_nat_wait_1): Use enum target_signal type for signo. Use
1823 target_signal_to_host before calling strsignal.
1824 * remote-m32r-sdi.c (m32r_wait, m32r_detach): Replace 0 by
1825 TARGET_SIGNAL_0.
1826
1827 2010-09-06 Pedro Alves <pedro@codesourcery.com>
1828 Jan Kratochvil <jan.kratochvil@redhat.com>
1829
1830 * common/signals.c (ANY): Remove.
1831 (SET): No longer use ANY.
1832
1833 2010-09-06 Yao Qi <yao@codesourcery.com>
1834
1835 * infrunc(resume): When inferior is waiting_for_vfork_done,
1836 clear step and don't use displaced stepping.
1837
1838 2010-09-04 Daniel Jacobowitz <dan@codesourcery.com>
1839
1840 * breakpoint.c (can_use_hardware_watchpoint): Handle the first
1841 value specially.
1842
1843 2010-09-04 Jan Kratochvil <jan.kratochvil@redhat.com>
1844
1845 Code cleanup - split print_stop_reason.
1846 * infrun.c (enum inferior_stop_reason): Remove.
1847 (print_stop_reason): Remove by splitting into ...
1848 (print_exited_reason, print_signal_exited_reason)
1849 (print_no_history_reason, print_signal_received_reason)
1850 (print_end_stepping_range_reason): ... these new functions. Update
1851 the preceding comment.
1852 (handle_inferior_event): Change the calls to print_exited_reason,
1853 print_signal_exited_reason, print_no_history_reason,
1854 print_signal_received_reason, print_end_stepping_range_reason.
1855 (handle_step_into_function, handle_step_into_function_backward):
1856 Change the calls to print_end_stepping_range_reason.
1857
1858 2010-09-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1859
1860 * breakpoint.c (save_breakpoints): Use RETURN_MASK_ALL.
1861 * cli-out.c: Include vec.h.
1862 (cli_field_fmt, cli_spaces, cli_text, cli_message, cli_flush): New
1863 variable stream, initialize it, use it.
1864 (cli_redirect): New function comment. Replace the stream and
1865 original_stream fields by the new streams field. Remove the
1866 original_stream != NULL conditional, assert error on NULL instead.
1867 (out_field_fmt, field_separator): New variable stream, initialize it, use it.
1868 (cli_out_data_ctor): Assert non-NULL stream. Replace the stream and
1869 original_stream fields by the new streams field.
1870 (cli_out_set_stream): Replace the stream field by the new streams
1871 field.
1872 * cli-out.h: Include vec.h.
1873 (ui_filep): New typedef, call DEF_VEC_P for it.
1874 (struct cli_ui_out_data): Replace the stream and original_stream
1875 fields by the new streams field.
1876 * cli/cli-logging.c (set_logging_redirect): Call ui_out_redirect with
1877 NULL first. Extend the comment.
1878 (handle_redirections): Call ui_out_redirect with output.
1879 * python/py-breakpoint.c (bppy_get_commands): Move ui_out_redirect
1880 calls outside of the TRY_CATCH block.
1881
1882 2010-09-03 Joel Brobecker <brobecker@adacore.com>
1883
1884 GDB 7.2 released.
1885
1886 2010-09-02 Joel Brobecker <brobecker@adacore.com>
1887
1888 Back out the following change:
1889 | 2010-06-29 Hui Zhu <teawater@gmail.com>
1890 | * record.c (set_record_pic_cmdlist,
1891 | show_record_pic_cmdlist): New variables.
1892 | (set_record_pic_command,
1893 | show_record_pic_command): New functions.
1894 | (record_pic_function, record_pic_line, record_pic_enum,
1895 | set_record_pic_type, record_pic_hide_nofunction,
1896 | record_pic_hide_nosource, record_pic_hide_same): New variables.
1897 | (record_pic_fputs): New function.
1898 | (function_list, node_list, edge_list): New struct.
1899 | (function_list, node_list, edge_list): New variables.
1900 | (record_pic_cleanups, record_pic_node,
1901 | record_pic_edge, cmd_record_pic): New functions.
1902 | (_initialize_record): Add new commands for record pic.
1903
1904 2010-09-02 Daniel Jacobowitz <dan@codesourcery.com>
1905
1906 * config.in, configure: Regenerated.
1907 * configure.ac: Check for waitpid.
1908 * ser-pipe.c (pipe_close): Wait for the program to exit.
1909
1910 2010-09-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1911
1912 * cli/cli-logging.c: Include gdb_assert.h.
1913 (set_logging_overwrite): New function.
1914 (logging_redirect): New comment.
1915 (logging_no_redirect_file, set_logging_redirect)
1916 (pop_output_files) <logging_no_redirect_file>: New.
1917 (handle_redirections) <!logging_redirect>: New variable
1918 no_redirect_file. Remove file autoclose for tee_file_new. No longer
1919 discard cleanup for the close of former OUTPUT. Set
1920 LOGGING_NO_REDIRECT_FILE.
1921 (handle_redirections) <logging_redirect>: gdb_assert
1922 LOGGING_NO_REDIRECT_FILE.
1923 (show_logging_command) <logging_redirect handling>: Adjust messages
1924 for SAVED_FILENAME not NULL.
1925 (_initialize_cli_logging): Install set_logging_overwrite and
1926 set_logging_redirect.
1927
1928 2010-09-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1929
1930 * iq2000-tdep.c (iq2000_scan_prologue): Initialize SAL.END.
1931
1932 2010-09-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1933
1934 * Makefile.in (GDB_WARN_CFLAGS_NO_FORMAT): Convert it to the no- form.
1935 (monitor.o): Replace $(INTERNAL_WARN_CFLAGS) by $(INTERNAL_CFLAGS) and
1936 add $(GDB_WARN_CFLAGS_NO_FORMAT).
1937 (printcmd.o): Replace $(INTERNAL_CFLAGS_BASE) by $(INTERNAL_CFLAGS).
1938
1939 2010-09-02 Yao Qi <yao@codesourcery.com>
1940
1941 * linux-nat.c (status_to_str): Use WTERMSIG to extract the signal
1942 number from a WIFSIGNALED status.
1943
1944 2010-09-01 Tom Tromey <tromey@redhat.com>
1945
1946 * symtab.h (lookup_type_symbol): Declare.
1947 * symtab.c (lookup_symbol_in_language_full): Rename from
1948 lookup_symbol_in_language. Add 'for_type' argument.
1949 (lookup_symbol_in_language): New function.
1950 (lookup_type_symbol): Likewise.
1951 (lookup_symbol_aux): Add 'for_type' argument.
1952 (match_symbol_aux): New function.
1953 (lookup_symbol_aux_symtabs): Use expand_one_symtab_matching.
1954 (match_transparent_type): New function.
1955 (basic_lookup_transparent_type): Use expand_one_symtab_matching.
1956 * symfile.h (struct quick_symbol_functions)
1957 <pre_expand_symtabs_matching>: Remove.
1958 <expand_one_symtab_matching>: New field.
1959 * psymtab.c (expand_one_symtab_matching_psymtabs): New function.
1960 (pre_expand_symtabs_matching_psymtabs): Remove.
1961 (psym_functions): Update.
1962 * gdbtypes.c (lookup_typename): Use lookup_type_symbol.
1963 * dwarf2read.c (dw2_lookup_symbol): Update comment.
1964 (dw2_pre_expand_symtabs_matching): Remove.
1965 (dw2_expand_one_symtab_matching): New function.
1966 (dwarf2_gdb_index_functions): Update.
1967
1968 2010-09-01 Joel Brobecker <brobecker@adacore.com>
1969
1970 * NEWS: Add entry announcing GDBserver support on powerpc-lynxos.
1971
1972 2010-09-01 Marc Khouzam <marc.khouzam@ericsson.com>
1973
1974 * mi/mi-main.c (mi_cmd_list_target_features): Add `reverse'
1975 as a feature reported by -list-target-features.
1976
1977 2010-09-01 Joel Brobecker <brobecker@adacore.com>
1978
1979 * features/Makefile (WHICH): Add rs6000/powerpc-32.
1980 (powerpc-32.o, powerpc-32.c): New rules.
1981 (clean): Also remove powerpc-32.c.
1982 * regformats/rs6000/powerpc-32.dat: Generate.
1983
1984 2010-08-31 Sami Wagiaalla <swagiaal@redhat.com>
1985
1986 * symfile.c (reread_symbols): Use psymbol_bcache_free, and
1987 psymbol_bcache_init.
1988 * psymtab.h (psymbol_bcache_init): New function prototype.
1989 (psymbol_bcache_free): New function prototype.
1990 (psymbol_bcache_get_bcache): New function prototype.
1991 * psymtab.c (psymbol_bcache_init): New function.
1992 (psymbol_bcache_free): New function.
1993 (psymbol_bcache_full): New function.
1994 (psymbol_bcache_get_bcache): New function.
1995 (add_psymbol_to_bcache): use psymbol_bcache_full.
1996 * objfiles.h (psymbol_cache): Change type of psymbol_cache to
1997 psymbol_bcache.
1998 * symmisc.c (print_symbol_bcache_statistics): Updated.
1999 (print_objfile_statistics): Updated.
2000 * objfiles.c (allocate_objfile): Use psymbol_bcache_init to initialize
2001 psymbol_cache.
2002 (free_objfile): Use psymbol_bcache_free.
2003
2004 2010-08-31 Tom Tromey <tromey@redhat.com>
2005
2006 PR c++/11961:
2007 * dwarf2read.c (new_symbol_full) <DW_TAG_template_type_param>:
2008 Don't set TYPE_NAME on the type.
2009
2010 2010-08-31 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
2011
2012 * infrun.c (set_exec_direction_func): Error out if target does not
2013 support reverse execution.
2014
2015 2010-08-31 Jan Kratochvil <jan.kratochvil@redhat.com>
2016
2017 Make linux_get_siginfo_type `type *' unique.
2018 * linux-tdep.c (linux_gdbarch_data_handle, struct linux_gdbarch_data)
2019 (init_linux_gdbarch_data, get_linux_gdbarch_data): New.
2020 (linux_get_siginfo_type): New variable linux_gdbarch_data. Initialize
2021 it. Use linux_gdbarch_data->siginfo_type as a persistent storage.
2022 (_initialize_linux_tdep): New.
2023
2024 2010-08-31 Jan Kratochvil <jan.kratochvil@redhat.com>
2025
2026 Code cleanup.
2027 * defs.h (find_memory_region_ftype): New typedef.
2028 (exec_set_find_memory_regions): Use it.
2029 * exec.c (exec_set_find_memory_regions): Use find_memory_region_ftype.
2030 * fbsd-nat.c (fbsd_find_memory_regions): Likewise.
2031 * gcore.c (objfile_find_memory_regions): Likewise.
2032 * gnu-nat.c (gnu_find_memory_regions): Likewise.
2033 * linux-nat.c (linux_nat_find_memory_regions): Likewise.
2034 * procfs.c (iterate_over_mappings_cb_ftype): Remove.
2035 (iterate_over_mappings): Rename iterate_over_mappings_cb_ftype to
2036 find_memory_region_ftype.
2037 (insert_dbx_link_bpt_in_region): Likewise.
2038 (iterate_over_mappings): Likewise. Drop the comment part about the
2039 function prototype.
2040 (find_memory_regions_callback): Use find_memory_region_ftype.
2041 (proc_find_memory_regions): Likewise.
2042 (info_mappings_callback): Rename iterate_over_mappings_cb_ftype to
2043 find_memory_region_ftype.
2044 * target.c (dummy_find_memory_regions): Use find_memory_region_ftype.
2045 * target.h (struct target_ops) <to_find_memory_regions>: Likewise.
2046
2047 2010-08-31 Sami Wagiaalla <swagiaal@redhat.com>
2048
2049 * psymtab.c (add_psymbol_to_bcache): Remove 'static' from
2050 'static partial_symbol psymbol'.
2051 (psymbol_hash): New function.
2052 (psymbol_compare): New function.
2053 * bcache.c (hash_continue): New.
2054 (hash): Use hash_continue.
2055 * bcache.c: Add hash_function and compare_function
2056 pointers to bcache struct.
2057 (bcache_full): Use bcache->hash_function, and
2058 bcache->compare_function.
2059 (bcache_compare): New function.
2060 (bcache_xmalloc): Take hash_function and
2061 compare_function arguments and initialize the
2062 bcach's pointers.
2063 Updated comment.
2064 * objfiles.c (allocate_objfile): Updated.
2065 * symfile.c (reread_symbols): Updated.
2066 * python/py-type.c (typy_richcompare): Updated.
2067
2068 2010-08-30 Andre Poenitz <andre.poenitz@nokia.com>
2069 Tom Tromey <tromey@redhat.com>
2070
2071 PR python/11792:
2072 * python/py-value.c (valpy_get_dynamic_type): New function.
2073 (value_object_getset): Add "dynamic_type".
2074 (valpy_get_type): Fail on error.
2075
2076 2010-08-30 Yao Qi <yao@codesourcery.com>
2077
2078 * arm-linux-tdep.c (arm_linux_sigreturn_return_addr): New.
2079 (arm_linux_syscall_next_pc): New.
2080 (arm_linux_copy_svc): Use arm_linux_sigreturn_return_addr instead.
2081 (arm_linux_init_abi): Initialize syscall_next_pc.
2082 * arm-tdep.c (thumb_get_next_pc_raw): Get next pc of SWI in Thumb mode.
2083 (arm_get_next_pc_raw): Get next pc of SWI in ARM mode.
2084 * arm-tdep.h (struct gdbarch_tdep): Add a function pointer syscall_next_pc.
2085 Declare arm_frame_is_thumb.
2086
2087 2010-08-30 Jan Kratochvil <jan.kratochvil@redhat.com>
2088
2089 Code cleanup.
2090 * breakpoint.c (bpstat_alloc): Remove unused prototype.
2091 (bpstat_alloc): Change parameters cbs to bs_link_pointer. Adjust the
2092 code.
2093 (bpstat_stop_status): Change root_bs into bs_head and bs_link. Adjust
2094 calls of bpstat_alloc. Remove explicit bs chain termination.
2095
2096 2010-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2097
2098 Code cleanup.
2099 * linux-nat.c (pull_pid_from_list): Rename status to statusp.
2100 (my_waitpid): Likewise.
2101
2102 2010-08-27 Doug Evans <dje@google.com>
2103
2104 * dwarf2read.c (dw2_require_line_header): Read from .debug_types
2105 as appropriate.
2106
2107 2010-08-27 Tom Tromey <tromey@redhat.com>
2108
2109 * dwarf2read.c (dwarf2_attach_fields_to_type): Don't set
2110 TYPE_FIELD_IGNORE_BITS.
2111
2112 2010-08-27 Doug Evans <dje@google.com>
2113
2114 * dwarf2read.c (dwarf2_per_objfile_free): Reorganize buffers to match
2115 the order they're defined in. munmap .debug_types buffer.
2116
2117 2010-08-26 Doug Evans <dje@google.com>
2118
2119 * dwarf2read.c (dw2_require_full_path): Rename parameter cu to per_cu.
2120 (dw2_forget_cached_source_info): Rename local cu to per_cu.
2121 (dw2_lookup_symtab, dw2_do_expand_symtabs_matching): Ditto.
2122 (dw2_print_stats, dw2_expand_all_symtabs): Ditto.
2123 (dw2_expand_symtabs_with_filename, dw2_find_symbol_file): Ditto.
2124 (dw2_find_symbol_file, dw2_expand_symtabs_matching): Ditto.
2125 (dw2_map_symbol_filenames, dwarf2_initialize_objfile): Ditto.
2126 (dwarf2_free_objfile, write_one_signatured_type): Ditto.
2127 (write_psymtabs_to_index): Ditto.
2128
2129 2010-08-26 Pedro Alves <pedro@codesourcery.com>
2130
2131 * NEWS: Mention libthread_db debugging with core files.
2132
2133 2010-08-26 Doug Evans <dje@google.com>
2134
2135 * dwarf2read.c (dwarf2_build_include_psymtabs): Remove unnecessary
2136 forward decl. Pass pst->dirname to dwarf_decode_lines.
2137 (psymtab_include_file_name): New function.
2138 (dwarf_decode_lines): Call it. Update comments.
2139
2140 2010-08-25 Pedro Alves <pedro@codesourcery.com>
2141
2142 * dwarf2read.c (inherit_abstract_dies): Handle origin die's
2143 compilation unit being different from target die's.
2144
2145 2010-08-24 Doug Evans <dje@google.com>
2146
2147 PR symtab/11942
2148 * dwarf2read.c (dwarf2_per_objfile): New members debug_info_type_hash,
2149 debug_types_type_hash.
2150 (dwarf2_cu, dwarf2_per_cu_data): Delete member type_hash.
2151 All uses updated.
2152 (lookup_die_type): Renamed from tag_type_to_tag. First look in
2153 appropriate type_hash table. All callers updated.
2154 (allocate_signatured_type_table): Renamed from
2155 allocate_signatured_type_hash_table. All callers updated.
2156 (create_signatured_type_table_from_index): Renamed from
2157 create_signatured_type_hash_from_index. All callers updated.
2158 (read_die_type): Add comment. Move actual reading to ...
2159 (read_die_type_1): ... here. New function.
2160 (follow_die_ref_or_sig): Tweak comment.
2161 (set_die_type): Rewrite to use appropriate choice of
2162 debug_info_type_hash or debug_types_type_hash.
2163 (get_die_type_at_offset): New function.
2164 (get_die_type): Call it.
2165
2166 2010-08-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2167
2168 * python/py-type.c (typy_richcompare): Initialize worklist.
2169
2170 2010-08-24 Daniel Jacobowitz <dan@codesourcery.com>
2171 Kazu Hirata <kazu@codesourcery.com>
2172 Jonathan Larmour <jifl@eCosCentric.com>
2173
2174 * arm-tdep.c: Include features/arm-with-m.c.
2175 (arm_psr_thumb_bit): New. Update all uses of CPSR_T to
2176 call this function.
2177 (arm_pc_is_thumb): Add a gdbarch argument. Update all callers.
2178 Check is_m after force-mode.
2179 (arm_gdbarch_init): Check the binary before the target description.
2180 Add check for M profile attribute. If we have an M-profile device,
2181 but no target register description, use arm-with-m. Recognize the
2182 new org.gnu.gdb.arm.m-profile feature and its xpsr register.
2183 (_initialize_arm_tdep): Call initialize_tdesc_arm_with_m.
2184 * arm-tdep.h (XPSR_T): Define.
2185 (struct gdbarch_tdep): Add is_m member.
2186 * features/arm-m-profile.xml, features/arm-with-m.c,
2187 features/arm-with-m.xml: New files.
2188
2189 2010-08-23 Doug Evans <dje@google.com>
2190
2191 * dwarf2read.c (read_structure_type): Add comment.
2192 (read_enumeration_type): Add comment.
2193 (process_enumeration_scope): Move definition of some locals
2194 closer to their use.
2195 (read_namespace_type): Add comment.
2196 (set_die_type): Fix typo in comment.
2197
2198 2010-08-23 Tom Tromey <tromey@redhat.com>
2199
2200 PR python/11145:
2201 * python/py-value.c: Include expression.h.
2202 (valpy_do_cast): New function.
2203 (valpy_cast): Use it.
2204 (valpy_dynamic_cast): New function.
2205 (valpy_reinterpret_cast): Likewise.
2206 (value_object_methods): Add dynamic_cast, reinterpret_cast.
2207
2208 2010-08-23 Tom Tromey <tromey@redhat.com>
2209
2210 PR python/11391:
2211 * python/py-value.c (valpy_nonzero): Don't throw error for other
2212 Value types.
2213
2214 2010-08-23 Tom Tromey <tromey@redhat.com>
2215
2216 PR python/10676:
2217 * python/py-type.c: Include bcache.h, vec.h.
2218 (struct type_equality_entry): New.
2219 (compare_strings): New function.
2220 (check_types_equal): Likewise.
2221 (check_types_worklist): Likewise.
2222 (typy_richcompare): Likewise.
2223 (type_object_type): Set tp_richcompare field.
2224
2225 2010-08-23 Tom Tromey <tromey@redhat.com>
2226
2227 PR python/10953:
2228 * python/py-type.c (typy_fields): Call check_typedef.
2229 (typy_template_argument): Add TRY_CATCH.
2230
2231 2010-08-23 Tom Tromey <tromey@redhat.com>
2232
2233 PR python/11915:
2234 * python/py-type.c (typy_array): New function.
2235 (type_object_methods): Add "array".
2236
2237 2010-08-20 Pedro Alves <pedro@codesourcery.com>
2238
2239 * python/python.c: Include "serial.h".
2240 (gdbpy_event_fds): Change type to `struct serial *' a array from
2241 int array.
2242 (gdbpy_run_events): Change parameters. Use serial_readchar in
2243 place of read.
2244 (gdbpy_post_event): Use serial_write in place of write.
2245 (gdbpy_initialize_events): Use serial_pipe instead of pipe, and
2246 serial_async in place of add_file_handler.
2247
2248 2010-08-20 Pedro Alves <pedro@codesourcery.com>
2249
2250 * serial.h (gdb_pipe, serial_pipe): Declare.
2251 * serial.c (serial_interface_lookup): Take a const char pointer.
2252 (serial_fdopen): Rename to ...
2253 (serial_fdopen_ops): ... this. Add an OPS parameter and use it.
2254 Call the OPS' fdopen function if there is one.
2255 (serial_fdopen): Rewrite as wrapper to serial_fdopen_ops.
2256 (serial_pipe): New.
2257 (struct serial_ops) <fdopen>: New field.
2258
2259 * ser-mingw.c (free_pipe_state):
2260 (free_pipe_state): Close output on non-pex pipes.
2261 (pipe_windows_fdopen): New.
2262 (gdb_pipe): New.
2263 (_initialize_ser_windows): Register pipe_windows_fdopen.
2264 * ser-go32.c (gdb_pipe): New.
2265 * ser-pipe.c (pipe_close): Close file descriptor even if there's
2266 no state pointer.
2267 (pipe_ops): Delete.
2268 (gdb_pipe): New.
2269
2270 2010-08-20 Keith Seitz <keiths@redhat.com>
2271
2272 PR symtab/11465:
2273 * dwarf2read.c (struct delayed_method_info): New struct.
2274 (struct dwarf2_cu): Add vector method_list.
2275 (scan_partial_symbols): Count methods for union, class, structure,
2276 and interface types.
2277 (add_to_method_list): New function.
2278 (free_delayed_list): New function.
2279 (compute_delayed_physnames): New function.
2280 (process_full_comp_unit): Make a cleanup for the CU's delayed
2281 physname list, compute the delayed physnames, and free the
2282 the list.
2283 (dwarf2_add_member_fn): For C++ and Java, delay the computation
2284 of the physname until after the CU is read.
2285
2286 * dwarf2read.c (read_structure_type): Check if the current
2287 DIE's type was already completed after dwarf2_full_name
2288 was called.
2289
2290 2010-08-19 Stan Shebs <stan@codesourcery.com>
2291
2292 * NEWS: Mention some additional changes.
2293
2294 2010-08-19 Tom Tromey <tromey@redhat.com>
2295
2296 * Makefile.in (install-python): Add DESTDIR.
2297
2298 2010-08-19 Doug Evans <dje@google.com>
2299
2300 PR exp/11926
2301 * parser-defs.h (parse_float, parse_c_float): Declare.
2302 * parse.c (parse_float, parse_c_float): New function.
2303 * c-exp.y (parse_number): Call parse_c_float.
2304 * objc-exp.y (parse_number): Ditto.
2305 * p-exp.y (parse_number): Ditto. Use ANSI/ISO-style definition.
2306 * jv-exp.y (parse_number): Call parse_float, fix suffix handling.
2307
2308 2010-08-19 Joel Brobecker <brobecker@adacore.com>
2309
2310 * psymtab.c (map_symbol_filenames_psymtab): Call FUN with
2311 the arguments in the correct order.
2312 * symtab.c (maybe_add_partial_symtab_filename): Declare
2313 the arguments in the correct order.
2314
2315 2010-08-19 Jan Kratochvil <jan.kratochvil@redhat.com>
2316
2317 * varobj.c (varobj_create): Replace variable old_fi with old_id,
2318 initialize it by null_frame_id, wrap its usage by get_frame_id,
2319 frame_id_p and frame_find_by_id.
2320
2321 2010-08-18 Tom Tromey <tromey@redhat.com>
2322
2323 PR python/11900:
2324 * configure: Rebuild.
2325 * configure.ac: Add install-python to CONFIG_INSTALL.
2326 * Makefile.in (install-python): New.
2327
2328 2010-08-18 Doug Evans <dje@google.com>
2329
2330 * gdb_assert.h (gdb_assert_not_reached): New macro.
2331 (gdb_assert_fail): Fix typo in comment.
2332 * avr-tdep.c (avr_return_value): Use gdb_assert_not_reached instead of
2333 gdb_assert (0).
2334 * darwin-nat.c (darwin_check_new_threads): Ditto.
2335 * dwarf2read.c (dwarf2_get_section_info): Ditto.
2336 (munmap_section_buffer): Ditto.
2337 * m32c-tdep.c (make_types): Ditto.
2338 (m32c_decode_srcdest4, m32c_decode_sd23, m32c_frame_base): Ditto.
2339 * macroexp.c (get_character_constant): Ditto.
2340 (get_string_literal): Ditto.
2341 * mep-tdep.c (mep_pseudo_cr_size): Ditto.
2342 (mep_pseudo_cr_index, mep_register_type): Ditto.
2343 (mep_pseudo_register_read, mep_pseudo_register_write): Ditto.
2344 (mep_get_insn, mep_analyze_prologue): Ditto.
2345 * objfiles.c (qsort_cmp): Ditto.
2346 * prologue-value.c (pv_is_identical): Ditto.
2347 * record.c (record_get_loc): Ditto.
2348 * value.c (value_static_field): Ditto.
2349 * xtensa-tdep.c (call0_track_op): Ditto.
2350
2351 2010-08-18 Tom Tromey <tromey@redhat.com>
2352
2353 PR symtab/11919:
2354 * gdbtypes.c (lookup_struct_elt_type): Clean up error emission.
2355 * parse.c (parse_field_expression): Use RETURN_MASK_ERROR. Move
2356 name-copying lower. Document exception behavior.
2357 * completer.c (expression_completer): Catch exceptions from
2358 parse_field_expression.
2359
2360 2010-08-18 Pedro Alves <pedro@codesourcery.com>
2361
2362 PR corefile/8210
2363
2364 * linux-thread-db.c (add_thread_db_info): Skip glibc/BZ5983
2365 workaround on core files.
2366 (try_thread_db_load_1): Don't try enabling thread event reporting
2367 on core files.
2368 (thread_db_load): Allow thread_db on core files.
2369 (attach_thread): Don't check thread signals on core files, nor try
2370 really attaching to the thread, nor enabling thread event event
2371 reporting.
2372 (thread_db_detach): Don't try disabing thread event reporting or
2373 removing thread event breakpoints when debugging a core file.
2374 (find_new_threads_callback): Don't try enabling thread event
2375 reporting on core files.
2376 (thread_db_find_new_threads_2): Don't look for a stopped lwp when
2377 debugging a core file.
2378 (thread_db_find_new_threads): Don't update thread
2379 cores (processors) when debugging a core (dump).
2380
2381 2010-08-18 Pedro Alves <pedro@codesourcery.com>
2382
2383 PR corefile/8210
2384
2385 * corelow.c (add_to_thread_list): Don't use
2386 gdbarch_core_reg_section_encodes_pid. Use bfd_core_file_pid.
2387 (get_core_register_section): Don't use
2388 gdbarch_core_reg_section_encodes_pid.
2389
2390 * gdbarch.sh (core_reg_section_encodes_pid): Delete.
2391 * gdbarch.h, gdbarch.c: Regenerate.
2392 * amd64-sol2-tdep.c (amd64_sol2_init_abi): Don't set
2393 gdbarch_core_reg_section_encodes_pid.
2394 * i386-sol2-tdep.c (i386_sol2_init_abi): Ditto.
2395 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Ditto.
2396 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Ditto.
2397
2398 2010-08-18 Yao Qi <yao@codesourcery.com>
2399
2400 * MAINTAINERS : Add myself under Write After Approval.
2401
2402 2010-08-17 Tom Tromey <tromey@redhat.com>
2403
2404 * NEWS: Mention template parameter support.
2405
2406 2010-08-17 Pedro Alves <pedro@codesourcery.com>
2407
2408 PR breakpoints/11371
2409
2410 * breakpoint.c (decref_bp_location): Assert the reference count is
2411 sane.
2412
2413 2010-08-17 Pedro Alves <pedro@codesourcery.com>
2414
2415 PR breakpoints/11371
2416
2417 * breakpoint.c (breakpoint_init_inferior): Decrement the
2418 location's reference count instead of deleting right away.
2419 (bpstat_free): Decrement the location's reference count. Make
2420 static.
2421 (bpstat_copy): Increment the location's reference count.
2422 (bpstat_find_breakpoint): Adjust.
2423 (bpstat_num): Adjust.
2424 (print_it_typical): Adjust. Use the breakpoint pointer in the
2425 bpstat instead of the location's owner.
2426 (bpstat_alloc): Remove const qualifier from the 'bl' parameter.
2427 Adjust to record the location's owner in the bpstat.
2428 (watchpoint_check): Use the breakpoint pointer in the bpstat
2429 instead of the location's owner.
2430 (bpstat_check_breakpoint_conditions): Don't handle
2431 bp_watchpoint_scope here. Use the breakpoint pointer in the
2432 bpstat instead of the location's owner.
2433 (bpstat_stop_status): Defer inferior function calls to after
2434 building the bpstat list. Handle bp_watchpoint_scope here. Use
2435 the breakpoint pointer in the bpstat instead of the location's
2436 owner.
2437 (bpstat_what): Use the breakpoint pointer in the bpstat instead of
2438 the location's owner.
2439 (free_bp_location): Don't walk bpstats clearing locations.
2440 (incref_bp_location): New.
2441 (decref_bp_location): New.
2442 (breakpoint_auto_delete): Use the breakpoint pointer in the bpstat
2443 instead of the location's owner.
2444 (update_global_location_list): Clear the location's owner, and
2445 decrement the location's reference count instead of deleting it
2446 right away.
2447 (breakpoint_retire_moribund): Decrement the location's reference
2448 count instead of deleting it right away.
2449 (bpstat_remove_bp_location): Delete.
2450 (bpstat_remove_breakpoint): New.
2451 (bpstat_remove_bp_location_callback): Delete.
2452 (bpstat_remove_breakpoint_callback): New.
2453 (delete_breakpoint): Iterate over all threads' stop_bpstat's
2454 clearing references to the breakpoint that is being deleted.
2455
2456 * breakpoint.h (struct bp_location) <refc>: New field.
2457 <owner>: Update comments.
2458 (bpstat_free): Delete declaration.
2459 (struct bpstats): Change the type of the breakpoint_at field to
2460 struct breakpoint point, from struct bp_location pointer. Add new
2461 field bp_location_at.
2462
2463 2010-08-16 Tom Tromey <tromey@redhat.com>
2464
2465 * NEWS: Fix typo.
2466
2467 2010-08-16 Tom Tromey <tromey@redhat.com>
2468
2469 * NEWS: Mention watch -location.
2470
2471 2010-08-16 Jan Kratochvil <jan.kratochvil@redhat.com>
2472
2473 * breakpoint.c (update_watchpoint): Add source empty line. Prefer
2474 EXP_STRING_REPARSE to EXP_STRING.
2475 (watch_command_1): Set also EXP_STRING_REPARSE.
2476 (delete_breakpoint): Free also EXP_STRING_REPARSE.
2477 * breakpoint.h (struct breakpoint): New field exp_string_reparse.
2478 Update comment for exp_string.
2479
2480 2010-08-16 Tom Tromey <tromey@redhat.com>
2481
2482 * value.c (release_value): Clear 'next' pointer.
2483 * breakpoint.c (watch_command_1): Add 'just_location' argument.
2484 (watch_command_wrapper): Update.
2485 (watch_maybe_just_location): New function.
2486 (watch_command): Update.
2487 (rwatch_command_wrapper): Update.
2488 (rwatch_command): Update.
2489 (awatch_command_wrapper): Update.
2490 (awatch_command): Update.
2491 (check_for_argument): New function.
2492 (_initialize_breakpoint): Update help text.
2493
2494 2010-08-14 Ulrich Weigand <uweigand@de.ibm.com>
2495
2496 * arm-tdep.c (arm_push_dummy_call): Handle pointers to
2497 typedef'ed function types correctly.
2498
2499 2010-08-13 Tom Tromey <tromey@redhat.com>
2500
2501 * python/python-internal.h (gdbpy_get_hook_function): Don't
2502 declare.
2503
2504 2010-08-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2505
2506 * cli/cli-logging.c (logging_overwrite, logging_redirect): Make them
2507 static.
2508
2509 2010-08-13 Ken Werner <ken.werner@de.ibm.com>
2510
2511 * python/python.c (gdbpy_solib_name): Remove the const qualifier of
2512 the format strings to be compatible with Python 2.4.
2513
2514 2010-08-13 Vladimir Prus <vladimir@codesourcery.com>
2515
2516 Easier and more stubborn MI memory read commands.
2517
2518 * mi/mi-cmds.c (mi_cmds): Register data-read-memory-bytes
2519 and data-write-memory-bytes.
2520 * mi/mi-cmds.h (mi_cmd_data_read_memory_bytes)
2521 (mi_cmd_data_write_memory_bytes): New.
2522 * mi/mi-main.c (mi_cmd_data_read_memory): Use regular target_read.
2523 (mi_cmd_data_read_memory_bytes, mi_cmd_data_write_memory_bytes):
2524 New.
2525 (mi_cmd_list_features): Add "data-read-memory-bytes" feature.
2526 * target.c (target_read_until_error): Remove.
2527 (read_whatever_is_readable, free_memory_read_result_vector)
2528 (read_memory_robust): New.
2529 * target.h (target_read_until_error): Remove.
2530 (struct memory_read_result, free_memory_read_result_vector)
2531 (read_memory_robust): New.
2532
2533 2010-08-13 Hui Zhu <teawater@gmail.com>
2534
2535 * dwarf2read.c (load_partial_comp_unit): Initialize free_cu_cleanup.
2536 (read_comp_unit): Initialize back_to.
2537
2538 2010-08-12 Daniel Jacobowitz <dan@codesourcery.com>
2539 Pedro Alves <pedro@codesourcery.com>
2540
2541 * dwarf2read.c: Include "c-lang.h" and "valprint.h".
2542 (struct dwarf2_per_objfile) <reading_partial_symbols>: New field.
2543 (struct partial_die_info) <has_template_arguments>: New field.
2544 <num_attrs>: Change type to unsigned char.
2545 <building_fullname>: New field.
2546 (dwarf2_build_psymtabs_hard): Set reading_partial_symbols. Only
2547 allocate a CU if we don't have one already. Add a cleanup for the
2548 CU.
2549 (partial_die_full_name): Handle template arguments not in
2550 DW_AT_name.
2551 (dwarf2_psymtab_to_symtab): Clear reading_partial_symbols.
2552 (load_full_comp_unit): Only allocate a CU if we don't have one
2553 already.
2554 (do_ui_file_peek_last): New.
2555 (dwarf2_compute_name): Handle template parameters not in
2556 DW_AT_name.
2557 (read_comp_unit): Read and free abbrevs if not read yet.
2558 (load_partial_dies): Handle template arguments not in DW_AT_name.
2559 (find_partial_die): If we have a CU, but no a partial dies yet,
2560 also read in the CU.
2561 (dwarf2_const_value_attr): New, abstracted out from
2562 dwarf2_const_value.
2563 (dwarf2_const_value, dwarf2_const_value_data): Adjust to use
2564 dwarf2_const_value_attr.
2565 (determine_prefix): Detect and break loops created by RCVT's debug
2566 info.
2567 (maybe_queue_comp_unit): Bail out early if reading partial
2568 symbols.
2569 (follow_die_offset): Load full CU if we have no dies.
2570 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Make public.
2571 * dwarf2loc.h (dwarf2_evaluate_loc_desc): Declare.
2572
2573 2010-08-11 Tom Tromey <tromey@redhat.com>
2574 Phil Muldoon <pmuldoon@redhat.com>
2575
2576 * python/python.c (gdbpy_run_events): New function.
2577 (gdbpy_post_event): Likewise.
2578 (gdbpy_initialize_events): Likewise.
2579 (_initialize_python): Call gdbpy_initialize_events.
2580
2581 2010-08-11 Ken Werner <ken.werner@de.ibm.com>
2582
2583 * gdb/valarith.c (vector_binop): New function.
2584 (scalar_binop): Likewise.
2585 (value_binop): Call scalar_binop or vector_binop depending on the types.
2586 * gdb/eval.c (ptrmath_type_p): Return 0 in case of TYPE_VECTOR.
2587 (evaluate_subexp_with_coercion): Add vector check to not convert vectors
2588 to pointers.
2589 * gdb/value.c (coerce_array): Add vector check to not coerce vectors.
2590
2591 2010-08-11 Brad Roberts <braddr@puremagic.com>
2592
2593 * d-lang.c (extract_identifiers): Handle multiple digits.
2594
2595 2010-08-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2596
2597 Code cleanup.
2598 * dummy-frame.c (dummy_frame_unwinder): Remove its static qualifier.
2599 Rename to dummy_frame_unwind.
2600 (dummy_frame_unwind): Remove.
2601 * dummy-frame.h (dummy_frame_unwind): Reference directly the struct.
2602 * frame-unwind.c (frame_unwind_init): Use address of
2603 dummy_frame_unwind and inline_frame_unwind.
2604 * frame.c (create_sentinel_frame): Use address of
2605 sentinel_frame_unwind.
2606 * inline-frame.c (inline_frame_unwinder): Rename to
2607 inline_frame_unwind.
2608 (inline_frame_unwind): Remove.
2609 * inline-frame.h (inline_frame_unwind): Reference directly the struct.
2610 * sentinel-frame.c (sentinel_frame_unwinder): Rename to
2611 sentinel_frame_unwind.
2612 (sentinel_frame_unwind): Remove.
2613 * sentinel-frame.h (sentinel_frame_unwind): Reference directly the
2614 struct.
2615
2616 2010-08-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2617
2618 Code cleanup.
2619 * frame-unwind.c (frame_unwind_find_by_frame): Remove the return type
2620 and returned value. New comment from frame-unwind.h.
2621 * frame-unwind.h (frame_unwind_find_by_frame): Remove the return type.
2622 Extend the comment.
2623 * frame.c (get_frame_id, frame_unwind_register_value)
2624 (create_new_frame, get_prev_frame_1, frame_unwinder_is)
2625 (get_frame_type, frame_unwind_arch): Do not use the return value of
2626 frame_unwind_find_by_frame.
2627
2628 2010-08-11 Phil Muldoon <pmuldoon@redhat.com>
2629 Thiago Jung Bauermann <bauerman@br.ibm.com>
2630 Tom Tromey <tromey@redhat.com>
2631
2632 * python/python.c (gdbpy_solib_address): New function.
2633 (gdbpy_decode_line): Likewise.
2634
2635 2010-08-10 Tom Tromey <tromey@redhat.com>
2636
2637 Revert gdb-add-index addition:
2638 * Makefile.in (install-only): Don't install gdb-add-index.
2639 * gdb-add-index.sh: Remove.
2640
2641 2010-08-09 Kevin Buettner <kevinb@redhat.com>
2642
2643 * remote-sim.c (gdbsim_xfer_inferior_memory): Replace
2644 `target_has_execution' check with `to_has_memory' check.
2645 (gdbsim_has_all_memory, gdbsim_has_memory): New functions.
2646 (init_gdbsym_ops): Initialize relevant fields of `gdbsim_ops'
2647 with `gdbsim_has_all_memory' and `gdbsim_has_memory'.
2648
2649 2010-08-09 Kevin Buettner <kevinb@redhat.com>
2650
2651 * remote-sim.c (program_loaded, gdbsim_desc, remote_sim_ptid)
2652 (resume_siggnal, resume_step): Move these static globals...
2653 (struct sim_inferior_data): ...into this new struct.
2654 (sim_inferior_data_key, next_pid, sim_argv, gdbsim_is_open):
2655 New static globals.
2656 (gdb_callback, callbacks_initialized): Move these globals to
2657 a point earlier in the file.
2658 (check_for_duplicate_sim_descriptor, get_sim_inferior_data)
2659 (get_sim_inferior_data_by_ptid, sim_inferior_data_cleanup)
2660 (gdbsim_close_inferior, gdbsim_resume_inferior)
2661 (gdbsim_stop_inferior): New functions.
2662 (SIM_INSTANCE_NOT_NEEDED, SIM_INSTANCE_NEEDED, INITIAL_PID):
2663 New constants.
2664 (gdbsim_fetch_register, gdbsim_store_register, gdbsim_load)
2665 (gdbsim_create_inferior, gdbsim_open, gdbsim_close, gdbsim_resume)
2666 (gdbsim_stop, gdbsim_cntrl_c, gdbsim_wait)
2667 (gdbsim_xfer_inferior_memory, gdbsim_files_info)
2668 (gdbsim_mourn_inferior, simulator_command, gdbsim_thread_alive,
2669 (gdbsim_pid_to_str): Invoke `get_sim_inferior_data' to set
2670 new local variable `sim_data' in each of these functions. Use
2671 `sim_data' to reference former globals `program_loaded',
2672 `gdbsim_desc', `remote_sim_ptid', `resume_siggnal', and
2673 `resume_step'.
2674 (gdbsim_open): Remove local variable `argv'. Put results of call
2675 to `gdb_buildargv' in `sim_argv' rather than in `argv'. Don't
2676 make a cleanup for it. Free it though when a sim instance cannot
2677 be obtained.
2678 (gdbsim_close): Free sim_argv and null it out as appropriate.
2679 Close sim instances in all inferiors.
2680 (gdbsim_cntrl_c): Stop all inferiors.
2681 (gdbsim_wait):
2682 (_initialize_remote_sim): Initialize `sim_inferior_data_key'.
2683
2684 2010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
2685
2686 * dwarf2read.c (new_symbol): Add symbol to variable list at end of
2687 function after symbol construction is complete.
2688 Do the same for template symbol addition to template_symbols list.
2689
2690 2010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
2691
2692 * symtab.c (symbol_get_demangled_name): Remove assertion and
2693 return NULL when language_specific.cplus_specific is not initialized.
2694 * stabsread.c (define_symbol): Set the name before calling
2695 cp_scan_for_anonymous_namespaces.
2696
2697 2010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
2698
2699 * symtab.h: Renamed SYMBOL_INIT_LANGUAGE_SPECIFIC to
2700 SYMBOL_SET_LANGUAGE.
2701 (symbol_init_language_specific): Renamed to symbol_set_language.
2702 * symtab.c (symbol_init_language_specific): Removed redundant check
2703 for language_cplus.
2704 Renamed to symbol_set_language.
2705 * stabsread.c (define_symbol): Updated.
2706 (read_enum_type): Updated
2707 * psymtab.c (add_psymbol_to_bcache): Updated.
2708 * minsyms.c (install_minimal_symbols): Updated.
2709 * coffread.c (process_coff_symbol): SYMBOL_SET_LANGUAGE instead of
2710 SYMBOL_LANGUAGE to set the language.
2711 * minsyms.c (prim_record_minimal_symbol_full): Ditto.
2712 * mdebugread.c (new_symbol): Ditto.
2713 * cp-namespace.c (check_one_possible_namespace_symbol): Ditto.
2714 * dwarf2read.c (new_symbol_full): Ditto.
2715 * jv-lang.c (add_class_symbol): Ditto.
2716
2717 2010-08-07 Jan Kratochvil <jan.kratochvil@redhat.com>
2718
2719 * defs.h (make_cleanup_restore_uinteger, make_cleanup_restore_ui_file)
2720 (make_cleanup_restore_page_info)
2721 (set_batch_flag_and_make_cleanup_restore_page_info): New declarations.
2722 * gdbcmd.h (execute_command_to_string): New declaration.
2723 * python/python.c (struct restore_ui_file_closure, restore_ui_file)
2724 (make_cleanup_restore_ui_file): Move to utils.c
2725 (execute_gdb_command) <to_string>: Move ...
2726 * top.c (execute_command_to_string): ... here. Call
2727 set_batch_flag_and_make_cleanup_restore_page_info.
2728 * utils.c (make_cleanup_restore_integer): New source file blank line.
2729 (make_cleanup_restore_uinteger): New.
2730 (struct restore_ui_file_closure, do_restore_ui_file)
2731 (make_cleanup_restore_ui_file): Move here from python/python.c.
2732 (init_page_info) <batch_flag>
2733 (do_restore_page_info_cleanup, make_cleanup_restore_page_info)
2734 (set_batch_flag_and_make_cleanup_restore_page_info): New.
2735
2736 2010-08-06 Maciej W. Rozycki <macro@codesourcery.com>
2737
2738 * thread.c (add_thread_silent): Use null_ptid instead of
2739 minus_one_ptid while getting rid of stale inferior_ptid.
2740
2741 2010-08-06 Corinna Vinschen <vinschen@redhat.com>
2742
2743 * dwarf2-frame.c (struct dwarf2_cie): Add ptr_size member.
2744 Throughout, call read_encoded_value with ptr_size rather than addr_size.
2745 (decode_frame_entry_1): Remove redundant setting of
2746 addr_size. Call gdbarch_dwarf2_addr_size rather than gdbarch_ptr_bit
2747 to determine addr_size in Dwarf versions < 4. Set ptr_size dependent
2748 on examined frame section. Add comment to explain why.
2749 * gdbarch.sh (dwarf2_addr_size): Define as variable. Add lengthy
2750 comment to explain usage.
2751 * gdbarch.c: Regenerate.
2752 * gdbarch.h: Regenerate.
2753
2754 * xstormy16-tdep.c (xstormy16_gdbarch_init): Set dwarf2_addr_size to 4.
2755
2756 2010-08-06 Jan Kratochvil <jan.kratochvil@redhat.com>
2757
2758 Code cleanup.
2759 * varobj.c (varobj_create): Move variables fi, old_fi and block to
2760 a more inner block.
2761
2762 2010-08-05 Pedro Alves <pedro@codesourcery.com>
2763
2764 * configure.tgt (alpha*-*-linux*, am33_2.0*-*-linux*, frv-*-*)
2765 (hppa*-*-linux*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
2766 (microblaze*-linux-*, mips*-*-linux*, sh*-*-linux*)
2767 (sparc-*-linux*, sparc64-*-linux*, xtensa*-*-linux*): Add
2768 linux-tdep.o to gdb_target_obs.
2769
2770 2010-08-05 Marc Khouzam <marc.khouzam@ericsson.com>
2771
2772 * mi/mi-main.c (mi_cmd_remove_inferior): Properly access first
2773 argument.
2774
2775 2010-08-05 Hui Zhu <teawater@gmail.com>
2776
2777 * mips-linux-tdep.c(regset.h): New include.
2778 (mips_supply_gregset_wrapper, mips_fill_gregset_wrapper,
2779 mips_supply_fpregset_wrapper, mips_fill_fpregset_wrapper,
2780 mips64_supply_gregset_wrapper, mips64_fill_gregset_wrapper,
2781 mips64_supply_fpregset_wrapper, mips64_fill_fpregset_wrapper,
2782 mips_linux_regset_from_core_section): New functions.
2783 (fetch_core_registers, regset_core_fns): Deleted.
2784 (mips_linux_init_abi): Add mips_linux_regset_from_core_section.
2785 Deleted regset_core_fns.
2786 * mips-tdep.c(mips_gdbarch_init): Initialize tdep->gregset,
2787 tdep->gregset64, tdep->fpregset and tdep->fpregset64.
2788 * mips-tdep.h(gdbarch_tdep): Add gregset, gregset64, fpregset
2789 and fpregset64.
2790
2791 2010-08-04 Pedro Alves <pedro@codesourcery.com>
2792
2793 * s390-tdep.c: Include linux-tdep.h.
2794 (s390_gdbarch_init): Call linux_init_abi.
2795
2796 2010-08-04 Pedro Alves <pedro@codesourcery.com>
2797
2798 * corelow.c (core_pid_to_str): Default to using normal_pid_to_str
2799 instead of printing "Thread" here.
2800 * linux-tdep.c: Include inferior.h.
2801 (linux_core_pid_to_str): New.
2802 (linux_init_abi): New.
2803 * linux-tdep.h (linux_init_abi): Declare.
2804 * alpha-linux-tdep.c: Include linux-tdep.h.
2805 (alpha_linux_init_abi): Call linux_init_abi.
2806 * amd64-linux-tdep.c (amd64_linux_init_abi): Call linux_init_abi.
2807 * arm-linux-tdep.c (arm_linux_init_abi): Call linux_init_abi.
2808 * frv-linux-tdep.c: Include linux-tdep.h
2809 (frv_linux_init_abi): Call linux_init_abi.
2810 * hppa-linux-tdep.c: Include linux-tdep.h
2811 (hppa_linux_init_abi): Call linux_init_abi.
2812 * i386-linux-tdep.c (i386_linux_init_abi): Call linux_init_abi.
2813 * ia64-linux-tdep.c: Include linux-tdep.h.
2814 (ia64_linux_init_abi): Call linux_init_abi.
2815 * m32r-linux-tdep.c: Include linux-tdep.h.
2816 (m32r_linux_init_abi): Call linux_init_abi.
2817 * m68klinux-tdep.c: Include linux-tdep.h.
2818 (m68k_linux_init_abi): Call linux_init_abi.
2819 * microblaze-linux-tdep.c: Include linux-tdep.h.
2820 (microblaze_linux_init_abi): Call linux_init_abi.
2821 * mips-linux-tdep.c: Include linux-tdep.h.
2822 (mips_linux_init_abi): Call linux_init_abi.
2823 * mn10300-linux-tdep.c: Include linux-tdep.h.
2824 (am33_linux_init_osabi): Call linux_init_abi. Rename the
2825 'gdbinfo' parameter to 'info'.
2826 * ppc-linux-tdep.c: Include linux-tdep.h.
2827 (ppc_linux_init_abi): Call linux_init_abi.
2828 * sh-linux-tdep.c: Include linux-tdep.h.
2829 (sh_linux_init_abi): Call linux_init_abi.
2830 * sparc-linux-tdep.c: Include linux-tdep.h.
2831 (sparc32_linux_init_abi): Call linux_init_abi.
2832 * sparc64-linux-tdep.c: Include linux-tdep.h.
2833 (sparc64_linux_init_abi): Call linux_init_abi.
2834 * xtensa-linux-tdep.c: Include linux-tdep.h.
2835 (xtensa_linux_init_abi): Call linux_init_abi.
2836 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): New.
2837 (i386_cygwin_init_abi): Install it as gdbarch_core_pid_to_str
2838 callback.
2839
2840 2010-08-03 Doug Evans <dje@google.com>
2841
2842 * breakpoint.c (bpdisp_text): Constify bpdisps.
2843 * solib-svr4.c (solib_break_names): Constify.
2844 (bkpt_names, main_name_list): Constify.
2845 (match_main): Constify soname arg.
2846 (bfd_lookup_symbol): Remove unnecessary forward decl.
2847 Constify symname arg.
2848 (enable_break): Constify bkpt_namep.
2849 * symtab.c (search_symbols): Constify types, types2, types3, types4.
2850 (symtab_symbol_info): Constify classnames.
2851
2852 2010-08-03 Phil Muldoon <pmuldoon@redhat.com>
2853
2854 * NEWS: Document Python value inferior function calls.
2855
2856 2010-08-02 Doug Evans <dje@google.com>
2857
2858 * dwarf2read.c (dwarf_attr_name): Add DW_AT_GNU_odr_signature.
2859
2860 2010-07-31 Paul Pluzhnikov <ppluzhnikov@google.com>
2861
2862 * linux-thread-db.c (libthread_db_debug): New variable.
2863 (thread_db_find_new_threads_silently): Control verbosity with it.
2864 (try_thread_db_load_1, try_thread_db_load): Likewise.
2865 (find_new_threads_once): Likewise.
2866 (_initialize_thread_db): Set/show it.
2867
2868 2010-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
2869
2870 * common/signals.c (signals): Move the content to signals.def.
2871 Include it. Remove the INDENT comments.
2872
2873 2010-07-30 Tom Tromey <tromey@redhat.com>
2874
2875 * Makefile.in (install-only): Install gdb-add-index.
2876 * gdb-add-index.sh: New file.
2877
2878 2010-07-31 Renquan Cheng <crq@gcc.gnu.org>
2879
2880 * MAINTAINERS: Add myself for write after approval privileges.
2881
2882 2010-07-30 Jan Kratochvil <jan.kratochvil@redhat.com>
2883
2884 * symfile.c (addr_section_name): New function.
2885 (addrs_section_compar): Use it.
2886 (addr_info_make_relative): Use it. Move variable sect_name into a more
2887 inner block. Make ".dynbss" and ".sdynbss" checks more strict.
2888
2889 2010-07-30 Tom Tromey <tromey@redhat.com>
2890
2891 * configure: Rebuild.
2892 * configure.ac: Add missing case for Python 2.7.
2893
2894 2010-07-29 DJ Delorie <dj@redhat.com>
2895
2896 * rx-tdep.c (rx_analyze_prologue): Don't require branches to have
2897 conditions.
2898
2899 2010-07-29 Pedro Alves <pedro@codesourcery.com>
2900
2901 * PROBLEMS: Remove mention of all problems.
2902
2903 2010-07-28 Pedro Alves <pedro@codesourcery.com>
2904
2905 PR build/11848
2906 * configure.ac: Check for wresize.
2907 * configure, config.in: Regenerate.
2908 * tui/tui-win.c (make_visible_with_new_height): Wrap wresize call
2909 with HAVE_WRESIZE.
2910
2911 2010-07-28 Tom Tromey <tromey@redhat.com>
2912
2913 PR python/11060:
2914 * python/py-type.c (typy_legacy_template_argument): New function,
2915 extracted from typy_template_argument.
2916 (typy_template_argument): Use TYPE_TEMPLATE_ARGUMENT. Return a
2917 value when needed.
2918
2919 2010-07-28 Oleg Nesterov <oleg@redhat.com>
2920
2921 * remote.c (readchar): Call pop_target in case of SERIAL_ERROR.
2922
2923 2010-07-27 Tom Tromey <tromey@redhat.com>
2924
2925 * dwarf2read.c (dwarf2_const_value_data): Never sign extend.
2926
2927 2010-07-28 Daniel Jacobowitz <dan@codesourcery.com>
2928
2929 * dwarf2read.c (read_subroutine_type): Improve THIS detection,
2930 handling DW_AT_object_pointer, and workaround GCC PR 43053.
2931
2932 2010-07-28 Tom Tromey <tromey@redhat.com>
2933
2934 * Makefile.in (HFILES_NO_SRCDIR): Remove link-warning.h.
2935
2936 2010-07-28 Joel Brobecker <brobecker@adacore.com>
2937
2938 * remote.c (remote_download_tracepoint): Add missing gettext markup.
2939 * tracepoint.c (parse_static_tracepoint_marker_definition): Likewise.
2940
2941 2010-07-28 Joel Brobecker <brobecker@adacore.com>
2942
2943 * breakpoint.c (breakpoint_re_set_one): Move call to set_language
2944 down, just before the block that parse the breakpoint addr_string.
2945
2946 2010-07-28 Tom Tromey <tromey@redhat.com>
2947
2948 PR c++/9946:
2949 * symfile.c (reread_symbols): Clear template_symbols.
2950 * symtab.h (struct symbol) <is_cplus_template_function>: New
2951 field.
2952 (SYMBOL_IS_CPLUS_TEMPLATE_FUNCTION): New macro.
2953 (struct template_symbol): New.
2954 * symtab.c (lookup_symbol_aux_local): Use
2955 cp_lookup_symbol_imports_or_template.
2956 * objfiles.h (struct objfile) <template_symbols>: New field.
2957 * objfiles.c (relocate_one_symbol): New function.
2958 (objfile_relocate1): Use it. Relocate isolated symbols.
2959 * gdbtypes.h (struct cplus_struct_type) <n_template_arguments,
2960 template_arguments>: New fields.
2961 (TYPE_N_TEMPLATE_ARGUMENTS): New macro.
2962 (TYPE_TEMPLATE_ARGUMENTS): Likewise.
2963 (TYPE_TEMPLATE_ARGUMENT): Likewise.
2964 (lookup_typename): Update.
2965 * gdbtypes.c (lookup_typename): Constify "block" argument.
2966 * dwarf2read.c: Include vec.h.
2967 (symbolp): New typedef.
2968 (read_func_scope): Read template arguments. Allocate a
2969 template_symbol when needed.
2970 (read_structure_type): Read template arguments.
2971 (new_symbol_full): New function, from new_symbol. Handle
2972 DW_TAG_template_type_param and DW_TAG_template_value_param.
2973 (new_symbol): Rewrite as wrapper.
2974 * cp-support.h (cp_lookup_symbol_imports_or_template): Declare.
2975 * cp-namespace.c: Include language.h.
2976 (search_symbol_list): New function.
2977 (cp_lookup_symbol_imports_or_template): Likewise.
2978
2979 2010-07-28 Balazs Kezes <rlblaster@gmail.com>
2980
2981 * tui/tui-win.c (make_visible_with_new_height): Resize and move
2982 the command window to the new size and position.
2983
2984 2010-07-28 Balazs Kezes <rlblaster@gmail.com>
2985
2986 * tui/tui-win.c (tui_resize_all): Update the locator's origin's
2987 coordinates.
2988
2989 2010-07-28 Balazs Kezes <rlblaster@gmail.com>
2990
2991 * tui/tui-io.c (tui_handle_resize_during_io): Call tui_resize_all
2992 after a detecting a resize.
2993 * tui/tui-win.c (tui_resize_all): Remove tui_set_win_resized_to
2994 call.
2995
2996 2010-07-28 Pedro Alves <pedro@codesourcery.com>
2997
2998 * configure.ac: Check for resize_term.
2999 * configure, config.in: Regenerate.
3000
3001 2010-07-27 Joel Brobecker <brobecker@adacore.com>
3002
3003 * MAINTAINERS (Write After Approval): Reorder a couple of entries.
3004
3005 2010-07-27 Daniel Jacobowitz <dan@codesourcery.com>
3006
3007 * dwarf2read.c (read_string): Rename to ...
3008 (read_direct_string): ... this.
3009 (skip_one_die, read_attribute_value, dwarf_decode_line_header)
3010 (dwarf_decode_lines, dwarf_decode_macros): Adjust.
3011
3012 2010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
3013
3014 * linux-nat.c (linux_nat_lp_status_is_event): New function.
3015 (count_events_callback, select_event_lwp_callback)
3016 (cancel_breakpoints_callback, linux_nat_wait_1): Use it.
3017
3018 2010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
3019
3020 * ia64-linux-nat.c (ia64_linux_status_is_event): New function.
3021 (_initialize_ia64_linux_nat): Install it.
3022 * linux-nat.c (sigtrap_is_event, linux_nat_status_is_event)
3023 (linux_nat_set_status_is_event): New.
3024 (stop_wait_callback, count_events_callback, select_event_lwp_callback)
3025 cancel_breakpoints_callback, linux_nat_filter_event)
3026 (linux_nat_wait_1): Use linux_nat_status_is_event.
3027 * linux-nat.h (linux_nat_set_status_is_event): New prototype.
3028
3029 2010-07-27 Tom Tromey <tromey@redhat.com>
3030
3031 * NEWS: Mention labels, .gdb_index.
3032
3033 2010-07-28 CHENG Renquan <rqcheng@smu.edu.sg>
3034
3035 * cli/cli-cmds.c (disassemble_command): Add support of disassemble
3036 "start,+length" form of arguments.
3037 * NEWS: Add "Changed commands" (disassemble) section for "Changes
3038 since GDB 7.1"; and merge two separated paragraphs of disassemble
3039 description in "Changes in GDB 7.0".
3040
3041 2010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
3042
3043 * top.c (input_from_terminal_p): Return 0 on BATCH_FLAG.
3044 * utils.c (defaulted_query): Do not explicitly check for BATCH_FLAG.
3045 (fputs_maybe_filtered): Do not do filtering also on
3046 ! INPUT_FROM_TERMINAL_P.
3047
3048 2010-07-27 Joel Brobecker <brobecker@adacore.com>
3049
3050 * dwarf2read.c (dw2_find_pc_sect_symtab): Remove trailing newline
3051 in warning message.
3052
3053 2010-07-27 Phil Muldoon <pmuldoon@redhat.com>
3054
3055 * python/py-value.c (valpy_call): New Function.
3056
3057 2010-07-27 Ken Werner <ken.werner@de.ibm.com>
3058
3059 * dwarf2read.c (dwarf2_read_index): Initialize the types_list and
3060 types_list_elements variables.
3061
3062 2010-07-26 Tom Tromey <tromey@redhat.com>
3063
3064 * dwarf2loc.c (locexpr_describe_location_piece): Also recognize
3065 TLS with DW_OP_const4u or DW_OP_const8u.
3066
3067 2010-07-26 Thiago Jung Bauermann <bauerman@br.ibm.com>
3068
3069 * ppc-linux-nat.c (store_vsx_register): Use PTRACE_GETVSXREGS to get
3070 VSX registers contents.
3071
3072 2010-07-26 Jerome Guitton <guitton@adacore.com>
3073
3074 * dwarf2read.c (add_partial_symbol): Do not add a global variable if
3075 its adress is null. Add comment to explain why.
3076 (new_symbol): Ditto.
3077
3078 2010-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
3079
3080 * linux-nat.c (linux_nat_do_thread_registers): Convert STOP_SIGNAL to
3081 the host signal first.
3082
3083 2010-07-23 Tom Tromey <tromey@redhat.com>
3084
3085 * dwarf2read.c (struct dwarf2_per_objfile) <n_type_comp_units,
3086 type_comp_units>: New fields.
3087 (dw2_get_cu): New function.
3088 (create_cus_from_index): Remove unused argument.
3089 (create_signatured_type_hash_from_index): New function.
3090 (create_addrmap_from_index): Update.
3091 (dwarf2_read_index): Handle version 2.
3092 (dw2_find_last_source_symtab, dw2_forget_cached_source_info)
3093 (dw2_lookup_symtab, dw2_do_expand_symtabs_matching)
3094 (dw2_print_stats, dw2_expand_all_symtabs)
3095 (dw2_expand_symtabs_with_filename, dw2_find_symbol_file)
3096 (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Update.
3097 (dwarf2_initialize_objfile): Call create_debug_types_hash_table.
3098 (allocate_signatured_type_hash_table): New function.
3099 (add_signatured_type_cu_to_list): Likewise.
3100 (create_debug_types_hash_table): Use them. Set type_comp_units.
3101 (read_signatured_type): Ensure section data is available.
3102 (add_address_entry): Don't record empty ranges.
3103 (struct signatured_type_index_data): New.
3104 (write_one_signatured_type): New function.
3105 (write_psymtabs_to_index): Write type CUs.
3106 (save_gdb_index_command): Update comment.
3107 (process_type_comp_unit): Move inititalization of
3108 from_debug_types...
3109 (create_debug_types_hash_table): ... here.
3110
3111 2010-07-23 Jan Kratochvil <jan.kratochvil@redhat.com>
3112
3113 * gdb_gcore.sh (tmpfile): Remove the variable, its initialization,
3114 cleanup and generating of gdb script to it.
3115 (gdb): Use redirection from /dev/null. Use --nx. Turn off pagination
3116 and terminal size. Convert $tmpfile to a series of -ex-es.
3117
3118 2010-07-23 Keith Seitz <keiths@redhat.com>
3119
3120 * symtab.c (basic_lookup_transparent_type): Call pre-expand
3121 hook for STATIC_BLOCK types, too.
3122
3123 2010-07-23 Keith Seitz <keiths@redhat.com>
3124
3125 * dwarf2read.c: Remove unused typedef dwarf2_cu_per_cu_data_ptr
3126 and vector definition.
3127
3128 2010-07-23 Jan Kratochvil <jan.kratochvil@redhat.com>
3129
3130 * linux-nat.c (cancel_breakpoint): Remove unused forward declaration.
3131
3132 2010-07-22 Jan Kratochvil <jan.kratochvil@redhat.com>
3133
3134 * dwarf2read.c: Include completer.h.
3135 (save_gdb_index_command): Use matching usage command name.
3136 (_initialize_dwarf2_read): New variable c, initialize it by add_cmd.
3137 Set filename_completer for it.
3138
3139 2010-07-22 Tom Tromey <tromey@redhat.com>
3140
3141 * dwarf2read.c (create_debug_types_hash_table): Set objfile on
3142 type signature's per-CU data.
3143
3144 2010-07-22 Pedro Alves <pedro@codesourcery.com>
3145
3146 * NEWS: Mention target reported shared libraries support by
3147 default.
3148
3149 2010-07-21 Pedro Alves <pedro@codesourcery.com>
3150
3151 PR symtab/11827
3152
3153 Revert:
3154 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
3155 * dwarf2read.c (process_die): Also allow DW_TAG_const_type
3156 and DW_TAG_volatile_type.
3157 (new_symbol): Likewise.
3158
3159 2010-07-21 Sami Wagiaalla <swagiaal@redhat.com>
3160
3161 * eval.c (evaluate_subexp_standard): Disabled evaluation of C++
3162 function symbols before overload resolution.
3163
3164 2010-07-21 Pedro Alves <pedro@codesourcery.com>
3165
3166 * breakpoint.c (bptype_string): New, abstracted out from
3167 print_one_breakpoint_location.
3168 (print_one_breakpoint_location): Adjust.
3169 (breakpoint_1): Adjust the type column width dynamically.
3170
3171 2010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
3172
3173 * symfile.c (find_separate_debug_file_by_debuglink): Remove
3174 a gdb_assert call, new comment.
3175
3176 2010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
3177
3178 * linux-nat.c (linux_handle_extended_wait): Handle case when
3179 event == PTRACE_EVENT_CLONE && stopping && WSTOPSIG (status) != SIGSTOP.
3180
3181 2010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
3182
3183 Code cleanup.
3184 * linux-nat.c (linux_nat_wait_1): Reset STATUS after calling
3185 linux_nat_wait_1. Use always LP->STATUS afterwards.
3186
3187 2010-07-20 Hui Zhu <teawater@gmail.com>
3188
3189 * inf-ptrace.c (inf_ptrace_create_inferior): Initialize back_to.
3190 (inf_ptrace_attach): Ditto.
3191
3192 2010-07-19 Jan Kratochvil <jan.kratochvil@redhat.com>
3193
3194 Make core files the process_stratum.
3195 * corefile.c (core_target): New variable.
3196 (core_file_command): Remove variable t, use core_target.
3197 * corelow.c (core_ops): Make it static.
3198 (init_core_ops): Change to process_stratum. Initialize CORE_TARGET.
3199 * defs.h (make_cleanup_unpush_target): New prototype.
3200 * gdbarch.h: Regenerate.
3201 * gdbarch.sh (core_pid_to_str): Remove core_stratum from its comment.
3202 * gdbcore.h (core_target): New declaration.
3203 * inf-ptrace.c (inf_ptrace_create_inferior, inf_ptrace_attach): New
3204 variables ops_already_pushed and back_to. Use push_target,
3205 make_cleanup_unpush_target and discard_cleanups calls.
3206 * record.c (record_open): Replace core_stratum by a core_bfd check.
3207 * target.c (target_is_pushed): New function.
3208 (find_core_target): Remove.
3209 * target.h (enum strata) <core_stratum>: Remove.
3210 (target_is_pushed): New declaration.
3211 (find_core_target): Remove declaration.
3212 * tracepoint.c (init_tfile_ops) <to_stratum>: Remove comment.
3213 * utils.c (do_unpush_target, make_cleanup_unpush_target): New functions.
3214
3215 2010-07-19 Hui Zhu <teawater@gmail.com>
3216
3217 * breakpoint.c (single_step_breakpoints_inserted): New
3218 function.
3219 * breakpoint.h (single_step_breakpoints_inserted): Extern.
3220 * infrun.c (maybe_software_singlestep): Add check code.
3221 * record.c (record_resume): Add code for software single step.
3222 (record_wait): Ditto.
3223
3224 2010-07-18 Jan Kratochvil <jan.kratochvil@redhat.com>
3225
3226 * linux-nat.c (linux_handle_extended_wait): Move variable new_lp into
3227 a more inner block. Remove its unused declaration initializer.
3228
3229 2010-07-16 Thiago Jung Bauermann <bauerman@br.ibm.com>
3230
3231 * NEWS: Mention support for the new ptrace interface and hardware
3232 accelerated watchpoint conditions on powerpc-linux.
3233
3234 2010-07-16 Ozkan Sezer <sezeroz@gmail.com>
3235
3236 * target.c (debug_to_insert_breakpoint): Instead of casting to unsigned
3237 long and %ld, use core_addr_to_string() and %s to print CORE_ADDR vars
3238 and host_address_to_string() and %s for pointers.
3239 (debug_to_remove_breakpoint): Likewise.
3240 (debug_to_region_ok_for_hw_watchpoint): Likewise.
3241 (debug_to_can_accel_watchpoint_condition): Likewise.
3242 (debug_to_stopped_data_address): Likewise.
3243 (debug_to_watchpoint_addr_within_range): Likewise.
3244 (debug_to_insert_hw_breakpoint): Likewise.
3245 (debug_to_remove_hw_breakpoint): Likewise.
3246 (debug_to_insert_watchpoint): Likewise.
3247 (debug_to_remove_watchpoint): Likewise.
3248
3249 2010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
3250
3251 * symtab.h (symbol_set_demangled_name): Now takes an optional objfile*
3252 argument.
3253 (cplus_specific): New struct.
3254 * symtab.c (symbol_set_demangled_name): Updated.
3255 Use cplus_specific for cplus symbols.
3256 (symbol_get_demangled_name): Retrive the name from the cplus_specific
3257 struct for cplus symbols.
3258 (symbol_init_language_specific): Set cplus_specific for cplus symbols.
3259 (symbol_set_names): Pass objfile to symbol_set_demangled_name.
3260 * symtab.c (symbol_init_cplus_specific): New function.
3261
3262 2010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
3263
3264 * symtab.h (symbol_set_demangled_name): New function.
3265 (symbol_get_demangled_name): New function.
3266 * symtab.c (symbol_set_demangled_name): New function.
3267 (symbol_get_demangled_name): New function.
3268 (symbol_init_language_specific): Use demangled_name setter and getter.
3269 (symbol_set_names): Ditto.
3270 (symbol_natural_name): Ditto.
3271 (symbol_demangled_name): Ditto.
3272 * dwarf2read.c (new_symbol): Ditto.
3273
3274 2010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
3275
3276 * symtab.h: Renamed cplus_specific to mangled_lang.
3277 * symtab.c (symbol_init_language_specific): Updated.
3278 (symbol_set_names): Updated.
3279 (symbol_natural_name): Updated.
3280 (symbol_demangled_name): Updated.
3281 * ada-lang.c (ada_decode_symbol): Updated.
3282 * dwarf2read.c (new_symbol): Updated.
3283
3284 2010-07-14 Ken Werner <ken.werner@de.ibm.com>
3285
3286 * valops.c (value_assign): Do not call to value_coerce_to_target.
3287 (value_must_coerce_to_target): Return 0 in case of TYPE_VECTOR.
3288
3289 2010-07-14 Ken Werner <ken.werner@de.ibm.com>
3290
3291 * MAINTAINERS: Add myself for write after approval privileges.
3292
3293 2010-07-13 Emmanuel Thomé <Emmanuel.Thome@gmail.com>
3294
3295 * c-valprint.c (c_val_print): Add embedded_offset to address in
3296 call to val_print_array_elements.
3297
3298 2010-07-13 Tom Tromey <tromey@redhat.com>
3299
3300 * dwarf2read.c (dwarf2_read_index): Correctly set 'total_size'.
3301
3302 2010-07-13 Tom Tromey <tromey@redhat.com>
3303
3304 * dwarf2read.c (dwarf2_per_cu_text_offset): Fix reference to
3305 objfile.
3306
3307 2010-07-13 Tom Tromey <tromey@redhat.com>
3308
3309 * symfile.c (set_initial_language): Update.
3310 (deduce_language_from_filename): Argument type now const.
3311 * symtab.h (find_main_filename): Update.
3312 (deduce_language_from_filename): Update.
3313 * symtab.c (find_main_filename): Make result const.
3314 * dwarf2read.c (dw2_find_symbol_file): Change return type.
3315 * psymtab.c (find_symbol_file_from_partial): Change return type.
3316 * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
3317 Make result const.
3318
3319 2010-07-13 Tom Tromey <tromey@redhat.com>
3320
3321 * breakpoint.c (save_cmdlist): No longer static.
3322 * gdbcmd.h (save_cmdlist): Declare.
3323 * symfile.c (symbol_file_add_with_addrs_or_offsets): Set
3324 OBJF_READNOW on objfile if readnow_symbol_files.
3325 * elfread.c (elf_symfile_read): Use dwarf2_initialize_objfile.
3326 (elf_sym_fns_gdb_index): New global.
3327 * dwarf2read.c: Include exceptions.h.
3328 (offset_type): New.
3329 (struct mapped_index): New.
3330 (dwarf2_per_cu_data_ptr): New typedef.
3331 (struct dwarf2_per_objfile) <using_index, index_table, gdb_index>:
3332 New fields.
3333 (GDB_INDEX_SECTION): New define.
3334 (struct dwarf2_per_cu_quick_data): New.
3335 (struct dwarf2_per_cu_data) <objfile>: New field.
3336 <psymtab>: Removed.
3337 <v>: New field.
3338 (byte_swap): New function.
3339 (MAYBE_SWAP): New macro.
3340 (INDEX_SUFFIX): New macro.
3341 (dw2_do_instantiate_symtab): New function.
3342 (dw2_instantiate_symtab): Likewise.
3343 (create_cus_from_index): Likewise.
3344 (create_addrmap_from_index): Likewise.
3345 (mapped_index_string_hash): Likewise.
3346 (find_slot_in_mapped_hash): Likewise.
3347 (dwarf2_read_index): Likewise.
3348 (dw2_setup): Likewise.
3349 (dw2_require_line_header): Likewise.
3350 (dw2_require_full_path): Likewise.
3351 (dw2_find_last_source_symtab): Likewise.
3352 (dw2_forget_cached_source_info): Likewise.
3353 (dw2_lookup_symtab): Likewise.
3354 (dw2_lookup_symbol): Likewise.
3355 (dw2_do_expand_symtabs_matching): Likewise.
3356 (dw2_pre_expand_symtabs_matching): Likewise.
3357 (dw2_print_stats): Likewise.
3358 (dw2_dump): Likewise.
3359 (dw2_relocate): Likewise.
3360 (dw2_expand_symtabs_for_function): Likewise.
3361 (dw2_expand_all_symtabs): Likewise.
3362 (dw2_expand_symtabs_with_filename): Likewise.
3363 (dw2_find_symbol_file): Likewise.
3364 (dw2_map_ada_symtabs): Likewise.
3365 (dw2_expand_symtabs_matching): Likewise.
3366 (dw2_find_pc_sect_symtab): Likewise.
3367 (dw2_map_symbol_names): Likewise.
3368 (dw2_map_symbol_filenames): Likewise.
3369 (dw2_has_symbols): Likewise.
3370 (dwarf2_gdb_index_functions): New global.
3371 (dwarf2_initialize_objfile): New function.
3372 (process_psymtab_comp_unit): Update.
3373 (add_partial_subprogram): Likewise.
3374 (dwarf2_psymtab_to_symtab): Likewise.
3375 (psymtab_to_symtab_1): Use dw2_do_instantiate_symtab.
3376 (process_full_comp_unit): Update.
3377 (find_file_and_directory): New function.
3378 (read_file_scope): Use find_file_and_directory.
3379 (dwarf2_per_cu_objfile): Update.
3380 (dwarf2_per_cu_addr_size): Update.
3381 (dwarf2_per_cu_offset_size): Update.
3382 (dwarf2_free_objfile): Free the index, if needed.
3383 (dwarf2_per_objfile_free): Unmap the index, if needed.
3384 (struct strtab_entry): New.
3385 (hash_strtab_entry): New function.
3386 (eq_strtab_entry): Likewise.
3387 (create_strtab): Likewise.
3388 (add_string): Likewise.
3389 (struct symtab_index_entry): New.
3390 (struct mapped_symtab): New.
3391 (hash_symtab_entry): New function.
3392 (eq_symtab_entry): Likewise.
3393 (delete_symtab_entry): Likewise.
3394 (create_index_table): Likewise.
3395 (create_mapped_symtab): Likewise.
3396 (cleanup_mapped_symtab): Likewise.
3397 (find_slot): Likewise.
3398 (hash_expand): Likewise.
3399 (add_index_entry): Likewise.
3400 (add_indices_to_cpool): Likewise.
3401 (write_hash_table): Likewise.
3402 (add_address_entry): Likewise.
3403 (write_psymbols): Likewise.
3404 (write_obstack): Likewise.
3405 (unlink_if_set): Likewise.
3406 (write_psymtabs_to_index): Likewise.
3407 (save_gdb_index_command): Likewise.
3408 (_initialize_dwarf2_read): Install "save gdb-index"
3409 command.
3410 (create_all_comp_units): Initialize 'objfile' field of CU.
3411 (dwarf2_locate_sections): Check for .gdb_index.
3412 * psymtab.h (dwarf2_gdb_index_functions): Declare.
3413 * symfile.h (dwarf2_initialize_objfile): Declare.
3414
3415 2010-07-13 Tom Tromey <tromey@redhat.com>
3416
3417 * symtab.c (lookup_symbol_aux_symtabs): Call pre-expand hook.
3418 (basic_lookup_transparent_type): Likewise.
3419 * symfile.h (struct quick_symbol_functions)
3420 <pre_expand_symtabs_matching>: New field.
3421 * psymtab.c (pre_expand_symtabs_matching_psymtabs): New function.
3422 (psym_functions): Update.
3423
3424 2010-07-13 Tom Tromey <tromey@redhat.com>
3425
3426 PR breakpoints/8357:
3427 * symtab.h (domain_enum_tag) <LABEL_DOMAIN>: Update comment.
3428 * linespec.c (decode_line_1): Update comment. Call decode_label.
3429 (decode_label): New function.
3430 (symbol_found): Handle LOC_LABEL.
3431 * dwarf2read.c (new_symbol) <DW_TAG_label>: Set symbol's type and
3432 domain. Call add_symbol_to_list.
3433
3434 2010-07-13 Tom Tromey <tromey@redhat.com>
3435
3436 * dwarf2loc.h (dwarf2_per_cu_text_offset): Declare.
3437 * dwarf2loc.c (find_location_expression): Use
3438 dwarf2_per_cu_text_offset.
3439 (dwarf2_evaluate_loc_desc): Likewise.
3440 (dwarf2_loc_desc_needs_frame): Likewise.
3441 (compile_dwarf_to_ax): Likewise.
3442 (loclist_describe_location): Likewise.
3443 * dwarf2read.c (dwarf2_per_cu_text_offset): New function.
3444 (dwarf2_per_cu_objfile): Update comment.
3445
3446 2010-07-12 Jan Kratochvil <jan.kratochvil@redhat.com>
3447
3448 * dwarf2read.c (read_subrange_type): Call read_subrange_type.
3449 * p-lang.c (pascal_printstr): Likewise.
3450
3451 2010-07-09 Tom Tromey <tromey@redhat.com>
3452
3453 * python/py-prettyprint.c (gdbpy_get_display_hint): Don't use
3454 'hint' if it is NULL.
3455
3456 2010-07-09 Hui Zhu <teawater@gmail.com>
3457
3458 * source.c (print_source_lines_base): Add check for noprint.
3459
3460 2010-07-08 Joel Brobecker <brobecker@adacore.com>
3461
3462 * python/python-config.py: Resync with Python 2.7 version of this
3463 script.
3464
3465 2010-07-08 Joel Brobecker <brobecker@adacore.com>
3466
3467 * NEWS: Fix typo in section name (s/GDB 7.1/GDB 7.2).
3468
3469 2010-07-07 Joel Brobecker <brobecker@adacore.com>
3470
3471 * NEWS: Create a new section for the next release branch.
3472 Rename the section of the current branch, now that it has
3473 been cut.
3474
3475 2010-07-07 Joel Brobecker <brobecker@adacore.com>
3476
3477 GDB 7.2 branch created (branch timestamp: 2010-07-07 17:00 UTC)
3478 * version.in: Bump version to 7.2.50.20100707-cvs.
3479
3480 2010-07-07 Tom Tromey <tromey@redhat.com>
3481
3482 * dwarf2read.c (dwarf2_const_value) <DW_form_addr>: Create a
3483 LOC_COMPUTED symbol.
3484 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Set new field.
3485 (dwarf2_loc_desc_needs_frame): Likewise.
3486 (compile_dwarf_to_ax) <DW_OP_addr>: Use offset.
3487 * dwarf2expr.h (struct dwarf_expr_context) <offset>: New field.
3488 * dwarf2expr.c (execute_stack_op) <DW_OP_addr>: Use offset.
3489 * dwarf2-frame.c (execute_stack_op): Set 'offset' field. Add
3490 'offset' argument.
3491 (struct dwarf2_frame_cache) <text_offset>: New field.
3492 (dwarf2_frame_cache): Set new field.
3493 (dwarf2_frame_prev_register): Update.
3494 (dwarf2_frame_sniffer): Update.
3495 (dwarf2_frame_base_sniffer): Update.
3496 (dwarf2_frame_find_fde): Add 'out_offset' argument.
3497
3498 2010-07-07 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
3499 Thiago Jung Bauermann <bauerman@br.ibm.com>
3500
3501 Support for hw accelerated condition watchpoints in booke powerpc.
3502
3503 * breakpoint.c (fetch_watchpoint_value): Rename to fetch_subexp_value
3504 and move to eval.c. Change callers.
3505 (insert_bp_location): Pass watchpoint condition in
3506 target_insert_watchpoint.
3507 (remove_breakpoint_1) Pass watchpoint condition in
3508 target_remove_watchpoint.
3509 (watchpoint_locations_match): Call
3510 target_can_accel_watchpoint_condition.
3511 * eval.c: Include wrapper.h.
3512 (fetch_subexp_value): Moved from breakpoint.c.
3513 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint):
3514 Formatting fix.
3515 (can_use_watchpoint_cond_accel): New function.
3516 (calculate_dvc): Likewise.
3517 (num_memory_accesses): Likewise.
3518 (check_condition): Likewise.
3519 (ppc_linux_can_accel_watchpoint_condition): Likewise
3520 (ppc_linux_insert_watchpoint): Call can_use_watchpoint_cond_accel,
3521 check_condition and calculate_dvc.
3522 (ppc_linux_remove_watchpoint): Likewise.
3523 (_initialize_ppc_linux_nat): Set to_can_accel_watchpoint_condition to
3524 ppc_linux_can_accel_watchpoint_condition
3525 * target.c (debug_to_insert_watchpoint): Add argument for watchpoint
3526 condition.
3527 (debug_to_remove_watchpoint): Likewise.
3528 (debug_to_can_accel_watchpoint_condition): New function.
3529 (update_current_target): Set to_can_accel_watchpoint_condition.
3530 (setup_target_debug): Set to_can_accel_watchpoint_condition.
3531 * target.h: Add opaque declaration for struct expression.
3532 (struct target_ops) <to_insert_watchpoint>,
3533 <to_remove_watchpoint>: Add new arguments to pass the watchpoint
3534 <to_can_accel_watchpoint_condition>: New member.
3535 condition. Update all callers and implementations.
3536 (target_can_accel_watchpoint_condition): New macro.
3537 * value.c (free_value_chain): New function.
3538 * value.h (fetch_subexp_value): New prototype.
3539 (free_value_chain): Likewise.
3540
3541 2010-07-07 Ulrich Weigand <uweigand@de.ibm.com>
3542
3543 * linux-nat.c (linux_nat_do_thread_registers): Use section size
3544 from gdbarch_core_regset_sections also for .reg if present.
3545
3546 * amd64-linux-tdep.c (amd64_linux_regset_sections): Fix incorrect
3547 section size for .reg.
3548 * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
3549 (ppc_linux_vmx_regset_sections): Likewise.
3550 (ppc_linux_fp_regset_sections): Likewise.
3551 (ppc64_linux_vsx_regset_sections): New variable.
3552 (ppc64_linux_vmx_regset_sections): Likewise.
3553 (ppc64_linux_fp_regset_sections): Likewise.
3554 (ppc_linux_init_abi): Install core_regset_section lists appropriate
3555 for current word size.
3556
3557 2010-07-06 Joel Brobecker <brobecker@adacore.com>
3558
3559 * server.c (myresume): Make static.
3560
3561 2010-07-06 Tom Tromey <tromey@redhat.com>
3562
3563 * configure, config.in: Rebuild.
3564 * configure.ac (HAVE_LIBPYTHON2_7): New define.
3565 * python/python-internal.h: Handle HAVE_LIBPYTHON2_7.
3566
3567 2010-07-06 Andreas Schwab <schwab@linux-m68k.org>
3568
3569 * breakpoint.c (_initialize_breakpoint): Add "cl" as alias for
3570 "clear".
3571
3572 2010-07-06 Ken Werner <ken.werner@de.ibm.com>
3573
3574 * gdbtypes.h (floatformats_ieee_half): Add declaration.
3575 * gdbtypes.c (floatformats_ieee_half): New variable.
3576 * doublest.c (floatformat_from_length): Set format to
3577 gdbarch_half_format if length matches.
3578 * gdbarch.sh (half_bit): New architecture method.
3579 (half_format): Likewise.
3580 * gdbarch.h: Regenerate.
3581 * gdbarch.c: Likewise.
3582
3583 2010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3584 Joel Brobecker <brobecker@adacore.com>
3585
3586 Fix re-run of PIE executable, PR shlibs/11776.
3587 * solib-svr4.c (svr4_relocate_main_executable) <symfile_objfile>: Remove
3588 the part of pre-set SYMFILE_OBJFILE->SECTION_OFFSETS.
3589
3590 2010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3591 Joel Brobecker <brobecker@adacore.com>
3592
3593 * auxv.c (memory_xfer_auxv): Update attach comment.
3594 * solib-svr4.c (svr4_special_symbol_handling): Remove the call to
3595 svr4_relocate_main_executable.
3596 (svr4_solib_create_inferior_hook): Make the call to
3597 svr4_relocate_main_executable unconditional.
3598
3599 2010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3600 Joel Brobecker <brobecker@adacore.com>
3601
3602 * auxv.c (ld_so_xfer_auxv): Do not error on failed read of data_address.
3603
3604 2010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3605 Joel Brobecker <brobecker@adacore.com>
3606
3607 Fix attaching to PIEs prelinked on the disk after the process was
3608 started.
3609 * solib-svr4.c (svr4_exec_displacement): New variable arch_size.
3610 Verify it against bfd_get_arch_size. Try to match arbitrary
3611 displacement for the phdrs comparison.
3612
3613 2010-07-02 Tom Tromey <tromey@redhat.com>
3614
3615 PR exp/11780:
3616 * libunwind-frame.c (libunwind_frame_prev_register): Don't set
3617 value as optimized-out.
3618
3619 2010-07-02 Ulrich Weigand <uweigand@de.ibm.com>
3620 Thiago Jung Bauermann <bauerman@br.ibm.com>
3621
3622 * breakpoint.c (can_use_hardware_watchpoint): Answer "what does this
3623 represent?" question in comment. Change comment to a proper sentence.
3624
3625 2010-07-02 Ken Werner <ken.werner@de.ibm.com>
3626
3627 * c-valprint.c (c_val_print): Fix printing of character vectors.
3628
3629 2010-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3630
3631 * spu-tdep.c (spu_catch_start): Adjust the caller of changed
3632 create_breakpoint prototype.
3633
3634 2010-07-01 Pedro Alves <pedro@codesourcery.com>
3635
3636 * breakpoint.c (BREAK_ARGS_HELP, _initialize_breakpoint): Clarify
3637 usefulness suggestion of multiple breakpoints at same location.
3638
3639 2010-07-01 Pedro Alves <pedro@codesourcery.com>
3640
3641 * breakpoint.c (BREAK_ARGS_HELP): Add missing `the'.
3642
3643 2010-07-01 Pedro Alves <pedro@codesourcery.com>
3644
3645 * dwarf2loc.c (locexpr_tracepoint_var_ref)
3646 (loclist_tracepoint_var_ref): Handle optimized out values.
3647
3648 2010-07-01 Pedro Alves <pedro@codesourcery.com>
3649
3650 * breakpoint.c (update_watchpoint, _initialize_breakpoint): Remove
3651 unnecessary space in string.
3652 * filesystem.c (_initialize_filesystem): Ditto.
3653 * frame.c (_initialize_frame): Ditto.
3654 * infcmd.c (step_once): Ditto.
3655 * infrun.c (_initialize_infrun): Ditto.
3656 * linux-nat.c (linux_child_follow_fork): Ditto.
3657 * maint.c (maintenance_deprecate): Ditto.
3658 * memattr.c (_initialize_mem): Ditto.
3659 * mips-tdep.c (_initialize_mips_tdep): Ditto.
3660 * monitor.c (monitor_open): Ditto.
3661 * procfs.c (procfs_xfer_memory): Ditto.
3662 * reverse.c (bookmarks_info): Ditto.
3663 * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs): Ditto.
3664 * stack.c (_initialize_stack): Ditto.
3665 * tracepoint.c (_initialize_tracepoint): Ditto.
3666 * xtensa-tdep.c (xtensa_supply_gregset,
3667 xtensa_regset_from_core_section): Ditto.
3668
3669 2010-07-01 Tom Tromey <tromey@redhat.com>
3670
3671 * value.h (struct lval_funcs) <check_any_valid>: Rename from
3672 check_all_valid.
3673 * value.c (value_entirely_optimized_out): Invert result. Update
3674 for new function name.
3675
3676 2010-07-01 Pedro Alves <pedro@codesourcery.com>
3677
3678 Static tracepoints support.
3679
3680 * NEWS: Mention new support for static tracepoints.
3681 (New packets): Mention qTfSTM, qTsSTM, qTSTMat and
3682 qXfer:statictrace:read.
3683 (New features in the GDB remote stub, GDBserver): Mention static
3684 tracepoints support using an UST based backend.
3685 (New commands): Mention "info static-tracepoint-markers" and
3686 "strace".
3687 * breakpoint.c (is_marker_spec): New.
3688 (is_tracepoint): Handle static tracepoints.
3689 (validate_commands_for_breakpoint): Static tracepoints can't do
3690 while-stepping.
3691 (static_tracepoints_here): New.
3692 (bpstat_what): Handle static tracepoints.
3693 (print_one_breakpoint_location, allocate_bp_location, mention):
3694 Ditto.
3695 (create_breakpoint_sal): Ditto.
3696 (decode_static_tracepoint_spec): New.
3697 (create_breakpoint): Replace `hardwareflag', and `traceflag' with
3698 `type_wanted'. Adjust. Handle static tracepoint marker
3699 locations.
3700 (break_command_1): Adjust.
3701 (update_static_tracepoint): New.
3702 (update_breakpoint_locations): Handle static tracepoints.
3703 (breakpoint_re_set_one): Handle static tracepoint marker
3704 locations.
3705 (disable_command, enable_command): Handle static tracepoints.
3706 (trace_command, ftrace_command): Adjust.
3707 (strace_command): New.
3708 (create_tracepoint_from_upload): Adjust.
3709 (save_breakpoints): Handle static tracepoints.
3710 (_initialize_breakpoint): Install the "strace" command.
3711 * breakpoint.h (enum bptype): New bp_static_tracepoint type.
3712 (struct breakpoint): New fields static_trace_marker_id and
3713 static_trace_marker_id_idx.
3714 (breakpoints_here_p): Declare.
3715 (create_breakpoint): Adjust.
3716 (static_tracepoints_here): Declare.
3717 * remote.c (struct remote_state) <static_tracepoints>: New field.
3718 (PACKET_qXfer_statictrace_read, PACKET_StaticTracepoints): New.
3719 (remote_static_tracepoint_marker_at): New.
3720 (remote_static_tracepoint_markers_by_strid): New.
3721 (remote_static_tracepoint_feature): New.
3722 (remote_disconnected_tracing_feature): Handle "StaticTracepoints".
3723 (remote_xfer_partial): Handle TARGET_OBJECT_STATIC_TRACE_DATA.
3724 (remote_supports_static_tracepoints): New.
3725 (remote_download_tracepoint): Download static tracepoints.
3726 (init_remote_ops): Install remote_static_tracepoint_marker_at and
3727 remote_static_tracepoint_markers_by_strid.
3728 (_initialize_remote): Install set|show remote static-tracepoints,
3729 and set|show remote read-sdata-object commands.
3730 * target.c (update_current_target): Inherit and default
3731 to_static_tracepoint_marker_at, and
3732 to_static_tracepoint_markers_by_strid.
3733 * target.h (static_tracepoint_marker): Forward declare.
3734 (enum target_object): New object TARGET_OBJECT_STATIC_TRACE_DATA.
3735 (static_tracepoint_marker_p): New typedef.
3736 (DEF_VEC_P(static_tracepoint_marker_p)): New VEC type.
3737 (struct target_ops): New fields to_static_tracepoint_marker_at and
3738 to_static_tracepoint_markers_by_strid.
3739 (target_static_tracepoint_marker_at)
3740 (target_static_tracepoint_markers_by_strid): New.
3741 * tracepoint.c: Include source.h.
3742 (validate_actionline): Handle $_sdata.
3743 (struct collection_list): New field strace_data.
3744 (add_static_trace_data): New.
3745 (clear_collection_list): Clear strace_data.
3746 (stringify_collection_list): Account for a possible static trace
3747 data collection.
3748 (encode_actions_1): Encode an $_sdata collection.
3749 (parse_tracepoint_definition): Handle static tracepoints.
3750 (parse_static_tracepoint_marker_definition): New.
3751 (release_static_tracepoint_marker): New.
3752 (print_one_static_tracepoint_marker): New.
3753 (info_static_tracepoint_markers_command): New.
3754 (sdata_make_value): New.
3755 (_initialize_tracepoint): Create the $_sdata convenience variable.
3756 Add the "info static-tracepoint-markers" command.
3757 Mention $_sdata in the "collect" command's help output.
3758 * tracepoint.h (struct static_tracepoint_marker): New.
3759 (parse_static_tracepoint_marker_definition)
3760 (release_static_tracepoint_marker): Declare.
3761 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
3762 * python/py-breakpoint.c (bppy_new): Adjust.
3763
3764 2010-06-30 Joel Brobecker <brobecker@adacore.com>
3765
3766 * python/python-internal.h (_XOPEN_SOURCE): Undefine before
3767 including Python.h.
3768
3769 2010-06-29 Doug Evans <dje@google.com>
3770
3771 PR gdb/11702
3772 * dwarf2read.c (dwarf2_add_field): Only create a symbol if
3773 DW_AT_external is present.
3774
3775 PR gdb/11702
3776 * NEWS: Add entry.
3777 * dwarf2read.c (dwarf2_add_field): If DW_AT_const_value is present,
3778 create a symbol for the field and record the value.
3779 (new_symbol): Handle DW_TAG_member.
3780 * gdbtypes.c (field_is_static): Remove FIXME.
3781 * symtab.c (search_symbols): When searching for VARIABLES_DOMAIN,
3782 only ignore LOC_CONST symbols that are enums.
3783
3784 * dwarf2read.c: Remove trailing whitespace.
3785
3786 Delete FIELD_LOC_KIND_DWARF_BLOCK, unused.
3787 * gdbtypes.h (enum field_loc_kind): Delete FIELD_LOC_KIND_DWARF_BLOCK.
3788 (struct main_type, field loc): Delete dwarf_block.
3789 (FIELD_DWARF_BLOCK): Delete.
3790 (SET_FIELD_DWARF_BLOCK): Delete.
3791 (TYPE_FIELD_DWARF_BLOCK): Delete.
3792 * gdb-gdb.py (StructMainTypePrettyPrinter.struct_field_location_img):
3793 Update.
3794
3795 2010-06-29 Hui Zhu <teawater@gmail.com>
3796
3797 * record.c (set_record_pic_cmdlist,
3798 show_record_pic_cmdlist): New variables.
3799 (set_record_pic_command,
3800 show_record_pic_command): New functions.
3801 (record_pic_function, record_pic_line, record_pic_enum,
3802 set_record_pic_type, record_pic_hide_nofunction,
3803 record_pic_hide_nosource, record_pic_hide_same): New variables.
3804 (record_pic_fputs): New function.
3805 (function_list, node_list, edge_list): New struct.
3806 (function_list, node_list, edge_list): New variables.
3807 (record_pic_cleanups, record_pic_node,
3808 record_pic_edge, cmd_record_pic): New functions.
3809 (_initialize_record): Add new commands for record pic.
3810
3811 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3812
3813 * dwarf2read.c (read_structure_type) <fi.typedef_field_list>: Call
3814 ALLOCATE_CPLUS_STRUCT_TYPE.
3815
3816 2010-06-28 Phil Muldoon <pmuldoon@redhat.com>
3817 Tom Tromey <tromey@redhat.com>
3818 Thiago Jung Bauermann <bauerman@br.ibm.com>
3819
3820 * value.c (pack_unsigned_long): New function.
3821 (value_from_ulongest): New function.
3822 * value.h (value_from_ulongest): Declare.
3823 * python/python.c (_initialize_python): Call
3824 gdbpy_initialize_thread and gdbpy_initialize_inferior.
3825 * python/python-internal.h: Define thread_object.
3826 (gdbpy_inferiors, gdbpy_selected_thread)
3827 (frame_info_to_frame_object, create_thread_object)
3828 (find_thread_object, find_inferior_object)
3829 (gdbpy_initialize_thread, gdbpy_initialize_inferiors)
3830 (gdbpy_is_value_object, get_addr_from_python): Declare.
3831 * python/py-value.c (builtin_type_upylong): Define.
3832 (convert_value_from_python): Add logic for ulongest.
3833 (gdbpy_is_value_object): New function.
3834 * python/py-utils.c (get_addr_from_python): New function.
3835 * python/py-frame.c (frame_info_to_frame_object): Return a PyObject.
3836 (gdbpy_selected_frame): Use PyObject over frame_info.
3837 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-inferior and
3838 py-infthread.
3839 (SUBDIR_PYTHON_SRCS): Likewise.
3840 (py-inferior.o): New Rule.
3841 (py-infthread.o): New Rule.
3842 * python/py-inferior.c: New File.
3843 * python/py-infthread.c: New File.
3844
3845 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3846
3847 * c-typeprint.c (c_type_print_base): For no fields check include also
3848 TYPE_TYPEDEF_FIELD_COUNT. Print new typedefs section.
3849 * dwarf2read.c (struct typedef_field_list)
3850 (struct field_info) <typedef_field_list, typedef_field_list_count>: New.
3851 (dwarf2_add_typedef): New.
3852 (read_structure_type): Call dwarf2_add_typedef for DW_TAG_typedef.
3853 Copy also FI.TYPEDEF_FIELD_LIST.
3854 * gdbtypes.h (struct typedef_field)
3855 (struct cplus_struct_type) <typedef_field, typedef_field_count>
3856 (TYPE_TYPEDEF_FIELD_ARRAY, TYPE_TYPEDEF_FIELD, TYPE_TYPEDEF_FIELD_NAME)
3857 (TYPE_TYPEDEF_FIELD_TYPE, TYPE_TYPEDEF_FIELD_COUNT): New.
3858
3859 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3860
3861 * cp-namespace.c (cp_lookup_nested_type): New variable
3862 concatenated_name. Turn the current return condition into a reverse
3863 one. Call also lookup_static_symbol_aux on the constructed qualified
3864 name.
3865 * symtab.c (lookup_symbol_aux): Move variable objfile and searching in
3866 other files into a called ...
3867 (lookup_static_symbol_aux): ... new function here.
3868 * symtab.h (lookup_static_symbol_aux): New prototype.
3869 * valops.c (value_maybe_namespace_elt): Call also
3870 lookup_static_symbol_aux if we failed otherwise.
3871
3872 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3873
3874 Fix PR c++/11703 and PR gdb/1448.
3875 * c-exp.y (yylex) <last_was_coloncolon && first_was_coloncolon>: Add
3876 FIRST_ITER check.
3877
3878 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3879
3880 Fix modification of cplus_struct_default.
3881 * dwarf2read.c (dwarf2_add_member_fn) <no DW_AT_vtable_elem_location>:
3882 Call ALLOCATE_CPLUS_STRUCT_TYPE.
3883 * gdbtypes.c (cplus_struct_default): New empty initializer, comment it.
3884
3885 2010-06-28 Joel Brobecker <brobecker@adacore.com>
3886
3887 * NEWS: Add entry announcing the python directory.
3888
3889 2010-06-28 Tom Tromey <tromey@redhat.com>
3890
3891 * dwarf2read.c (read_structure_type): Allocate null cleanup later.
3892
3893 2010-06-28 Doug Evans <dje@google.com>
3894
3895 * breakpoint.c (breakpoint_sals_to_pc): Delete arg address, unused.
3896 All callers updated.
3897
3898 2010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3899
3900 * cp-valprint.c (cp_print_value_fields) <recurse == 0>: Call
3901 obstack_begin after each obstack_free.
3902
3903 2010-06-27 Doug Evans <dje@google.com>
3904
3905 * value.c (value_static_field): Use `switch' instead of `if'.
3906 Assert-fail if passed invalid TYPE_FIELD_LOC_KIND.
3907
3908 * valops.c (search_struct_field): Fix typo in error message.
3909
3910 2010-06-26 Ulrich Weigand <uweigand@de.ibm.com>
3911
3912 * dwarf2expr.c (execute_stack_op): Place preprocessor
3913 directives at the start of the source line.
3914
3915 2010-06-25 Paul Hilfinger <hilfinger@adacore.com>
3916
3917 * defs.h (make_command_stats_cleanup): Declare.
3918 (set_display_time): Declare.
3919 (set_display_space): Declare.
3920 * event-top.c (command_handler): Use make_command_stats_cleanup.
3921 * main.c (display_time, display_space): Move definitions to utils.c.
3922 (captured_main): Use make_command_stats_cleanup to get start-up
3923 statistics.
3924 Use set_display_time and set_display_space for processing OPT_STATISTICS
3925 case.
3926 * maint.c (maintenance_time_display): Use set_display_time.
3927 (maintenance_space_display): Use set_display_space.
3928 * top.c (execute_command): Remove obsolete 'maint time' code.
3929 (command_loop): Use make_command_stats_cleanup.
3930 * utils.c (struct cmd_stats): Structure for storing initial time
3931 and space usage.
3932 (display_time, display_space): Move definitions here from utils.c.
3933 (set_display_time): New function.
3934 (set_display_space): New function.
3935 (make_command_stats_cleanup): New function.
3936 (report_command_stats): New auxiliary function for
3937 make_command_stats_cleanup.
3938
3939 2010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
3940
3941 * solib-spu.c (append_ocl_sos): Fix xsnprintf statement for
3942 hosts where CORE_ADDR is long long.
3943
3944 2010-06-25 Tom Tromey <tromey@redhat.com>
3945
3946 PR python/10808:
3947 * python/python.c (execute_gdb_command): Add keywords. Accept
3948 "to_string" argument.
3949 (struct restore_ui_file_closure): New.
3950 (restore_ui_file): New function.
3951 (make_cleanup_restore_ui_file): Likewise.
3952 (GdbMethods) <execute>: Update.
3953
3954 2010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
3955
3956 * s390-tdep.c (s390_push_dummy_call): Error on stack overflow
3957 during inferior call stack frame setup.
3958
3959 2010-06-25 Ken Werner <ken.werner@de.ibm.com>
3960
3961 * solib-spu.c: Include "exception.h".
3962 (ocl_program_data_key): New variable.
3963 (append_ocl_sos): New function.
3964 (ocl_enable_break): Likewise.
3965 (spu_current_sos): Call append_ocl_sos.
3966 (spu_solib_loaded): Call ocl_enable_break.
3967 (_initialize_spu_solib): Register ocl_program_data_key.
3968
3969 2010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
3970
3971 * cp-support.c (reset_directive_searched): New function.
3972 (make_symbol_overload_list_using): Prevent recursive calls.
3973
3974 2010-06-25 Phil Muldoon <pmuldoon@redhat.com>
3975
3976 * printcmd.c (print_variable_and_value): Print error message on
3977 caught exception.
3978
3979 2010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
3980
3981 * dwarf2expr.h (struct dwarf_value_location): Use ULONGEST as type
3982 of stack values.
3983 (struct dwarf_expr_piece): Rename "expr" member to "mem". Add new
3984 "value" member.
3985 (dwarf_expr_push): Change input type to ULONGEST.
3986 (dwarf_expr_fetch): Change return type to ULONGEST.
3987 (dwarf_expr_fetch_address): Add prototype.
3988 (dwarf2_read_address): Remove prototype.
3989 * dwarf2expr.c (dwarf_expr_push): Use ULONGEST as type of stack values.
3990 Truncate stack values to ctx->addr_size bytes.
3991 (dwarf_expr_fetch): Change return value to ULONGEST.
3992 (dwarf_expr_fetch_address): New function.
3993 (add_piece): Use dwarf_expr_fetch_address instead of dwarf_expr_fetch
3994 when appropriate. Update for struct dwarf_expr_piece changes.
3995 (dwarf2_read_address): Remove.
3996 (unsigned_address_type): Remove.
3997 (signed_address_type): Remove.
3998 (execute_stack_op): Use dwarf_expr_fetch_address instead of
3999 dwarf_expr_fetch when appropriate. Use ULONGEST as type of stack
4000 values. Perform operations on ULONGEST instead of on GDB values,
4001 sign-extending from ctx->addr_size bytes as needed. Read DW_OP_addr
4002 values and DW_OP_deref results as unsigned integers.
4003 * dwarf2loc.c (read_pieced_value): Update for struct dwarf_expr_piece
4004 changes.
4005 (write_pieced_value): Likewise.
4006 (dwarf2_evaluate_loc_desc): Use dwarf_expr_fetch_address instead of
4007 dwarf_expr_fetch when appropriate.
4008 (compile_dwarf_to_ax): Read DW_OP_addr values as unsigned integers.
4009 * dwarf2-frame.c (execute_stack_op): Use dwarf_expr_fetch_address
4010 instead of dwarf_expr_fetch when appropriate.
4011
4012 2010-06-25 Pierre Muller <muller@ics.u-strasbg.fr>
4013
4014 * c-typeprint.c (c_print_typedef): Append new type name for typedefs.
4015
4016 2010-06-24 Joel Brobecker <brobecker@adacore.com>
4017
4018 * python/python.c (_initialize_python): Add new "constant"
4019 PYTHONDIR in gdb module. Insert this path at the head of
4020 sys.path. Set gdb.__path__ to gdb.PYTHONDIR + '/gdb' and
4021 exec its __init__.py script if it exists in that directory.
4022
4023 2010-06-24 Kevin Buettner <kevinb@redhat.com>
4024
4025 * rx-tdep.c (RX_ACC_REGNUM): Define.
4026 (RX_NUM_REGS): Redefine to 26.
4027 (rx_register_name): Add register "acc". Change order of several
4028 registers. Change name of "vct" register to "fintv" to match RX
4029 documentation.
4030 (rx_register_type): Add case for RX_ACC_REGNUM.
4031
4032 2010-06-24 Tom Tromey <tromey@redhat.com>
4033
4034 * psymtab.c (lookup_partial_symbol): Mark definition as static.
4035
4036 2010-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
4037 Tom Tromey <tromey@redhat.com>
4038
4039 Fix GDB startup on readonly filesystem.
4040 * charset.c (find_charset_names): Use PEX_USE_PIPES for pex_init.
4041
4042 2010-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
4043 Pedro Alves <pedro@codesourcery.com>
4044
4045 Fix PR 9436.
4046 * breakpoint.c (handle_jit_event): New function.
4047 (bpstat_what): Remove enum class, kc, ss, sn, sgl, slr, clr, sr, shl,
4048 jit, err, table and bs_class. New variables shlib_event, jit_event,
4049 this_action and bptype. Change bs_class assignments to this_action
4050 assignments. new unhandled bptype internal error. Move here
4051 shlib_event and jit_event handling from handle_inferior_event.
4052 * breakpoint.h (enum bpstat_what_main_action): Extend the comment.
4053 Reorder items. Remove BPSTAT_WHAT_CHECK_SHLIBS and
4054 BPSTAT_WHAT_CHECK_JIT.
4055 * inferior.h (debug_infrun, stop_on_solib_events): New declarations.
4056 * infrun.c (debug_infrun, stop_on_solib_events): Remove static.
4057 (handle_inferior_event): Reinitialize frame and gdbarch after
4058 bpstat_what call. Move BPSTAT_WHAT_CHECK_SHLIBS and
4059 BPSTAT_WHAT_CHECK_JIT handling to bpstat_what. Reinitialize even
4060 gdbarch when frame gets reinitialized.
4061
4062 2010-06-24 Hui Zhu <teawater@gmail.com>
4063
4064 * printcmd.c (ui_printf): New function.
4065 (printf_command): Call ui_printf.
4066 (_initialize_printcmd): New command "eval".
4067
4068 2010-06-23 Ulrich Weigand <uweigand@de.ibm.com>
4069
4070 * infrun.c (handle_inferior_event): Handle presence of single-step
4071 breakpoints for TARGET_WAITKIND_FORKED and TARGET_WAITKIND_VFORKED.
4072 Cancel single-step breakpoints for TARGET_WAITKIND_EXITED,
4073 TARGET_WAITKIND_SIGNALED, and TARGET_WAITKIND_EXECD.
4074 * breakpoint.c (detach_single_step_breakpoints): New function.
4075 (detach_breakpoints): Call it.
4076 (cancel_single_step_breakpoints): New function.
4077 * breakpoint.h (cancel_single_step_breakpoints): Add prototype.
4078
4079 * spu-tdep.c (spu_memory_remove_breakpoint): New function.
4080 (spu_gdbarch_init): Install it.
4081
4082 2010-06-23 Jan Kratochvil <jan.kratochvil@redhat.com>
4083
4084 * configure.ac: Always set RDYNAMIC at least as `-rdynamic'.
4085 * configure: Regenerate.
4086
4087 2010-06-22 Hui Zhu <teawater@gmail.com>
4088
4089 * i386-tdep.c (i386_record_lea_modrm): Change warning to query.
4090 (i386_process_record): Ditto.
4091 * record.c (record_memory_query): New variable.
4092 (_initialize_record): New command "set record memory-query".
4093 * record.h (record_memory_query): New extern.
4094
4095 2010-06-21 Doug Evans <dje@google.com>
4096
4097 * i386-tdep.h (i386_displaced_step_copy_insn): Declare.
4098 * i386-tdep.c (i386_displaced_step_copy_insn): New function.
4099 (i386_syscall_p): Change type of lengthp to int.
4100 (i386_displaced_step_fixup): Handle kernels that run one past a
4101 syscall insn.
4102 * i386-linux-tdep.c (i386_linux_init_abi): Use
4103 i386_displaced_step_copy_insn instead of
4104 simple_displaced_step_copy_insn.
4105
4106 2010-06-21 Tom Tromey <tromey@redhat.com>
4107
4108 * dwarf2read.c (read_base_type): Handle DW_ATE_UTF.
4109 (dwarf_type_encoding_name): Likewise.
4110
4111 2010-06-21 Tom Tromey <tromey@redhat.com>
4112
4113 * p-valprint.c (pascal_val_print): Use TYPE_ERROR_NAME.
4114 * p-typeprint.c (pascal_type_print_base): Use TYPE_ERROR_NAME.
4115 * m2-valprint.c (m2_val_print): Use TYPE_ERROR_NAME.
4116 * gdbtypes.h (TYPE_ERROR_NAME): New macro.
4117 * f-valprint.c (f_val_print): Use TYPE_ERROR_NAME.
4118 * f-typeprint.c (f_type_print_base): Use TYPE_ERROR_NAME.
4119 * dwarf2read.c (tag_type_to_type): Create a new error type on
4120 failure.
4121 * c-valprint.c (c_val_print): Use TYPE_ERROR_NAME.
4122 * c-typeprint.c (c_type_print_base): Use TYPE_ERROR_NAME.
4123
4124 2010-06-21 Michael Snyder <msnyder@vmware.com>
4125
4126 * breakpoint.c (_initialize_breakpoint): Use add_prefix_cmd,
4127 not add_abbrev_prefix_cmd, for "enable breakpoints".
4128
4129 2010-06-21 Ulrich Weigand <uweigand@de.ibm.com>
4130
4131 * dwarf2loc.c (find_location_expression): Add relocation offset
4132 to base-address-selection entry base addresses. Read addresses
4133 (and offsets) as signed/unsigned integers, depending on the
4134 BFD's sign_extend_vma flag. Do not call dwarf2_read_address.
4135 (loclist_describe_location): Likewise.
4136 (disassemble_dwarf_expression): Read DW_OP_addr operand as
4137 unsigned integer. Do not call dwarf2_read_address.
4138 (locexpr_describe_location): Likewise for DW_OP_GNU_push_tls_address.
4139
4140 2010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
4141
4142 * spu-tdep.c (spu_frame_unwind_cache): Use LSLR register
4143 value instead of hard-coded SPU_LS_SIZE.
4144 (spu_software_single_step): Likewise.
4145 * spu-tdep.h (SPU_LS_SIZE): Remove.
4146
4147 2010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
4148
4149 * spu-multiarch.c (spu_xfer_partial): Wrap around local store
4150 limit on local store memory accesses.
4151 * spu-linux-nat.c (spu_xfer_partial): Likewise.
4152 * spu-tdep.c (spu_lslr): Remove.
4153 (spu_pointer_to_address): Do not truncate addresses.
4154 (spu_integer_to_address): Likewise.
4155 (spu_overlay_new_objfile): Use SPU_OVERLAY_LMA.
4156 * spu-tdep.h: Add comments.
4157 (SPUADDR_SPU): Respect SPU_OVERLAY_LMA bit.
4158 (SPU_OVERLAY_LMA): Define.
4159
4160 2010-06-18 Stan Shebs <stan@codesourcery.com>
4161
4162 * osdata.c (get_osdata): Warn separately if target does not report
4163 type list.
4164 (info_osdata_command): Allow empty type, report error if target
4165 does not return available types of OS data.
4166 * linux-nat.c (linux_nat_xfer_osdata): Report list of OS data
4167 types if no annex supplied.
4168
4169 * thread.c (thread_id_make_value): Make a value representing the
4170 current thread.
4171 (_initialize_thread): Create $_thread.
4172
4173 2010-06-17 Joel Brobecker <brobecker@adacore.com>
4174
4175 * dwarf2read.c (psymtabs_addrmap_cleanup): Add empty line after
4176 last local variable declaration. No real code change.
4177
4178 2010-06-17 Tom Tromey <tromey@redhat.com>
4179
4180 * dwarf2read.c (psymtabs_addrmap_cleanup): New function.
4181 (dwarf2_build_psymtabs_hard): Use it. Create addrmap on a
4182 temporary obstack.
4183
4184 2010-06-16 Sergio Durigan Junior <sergiodj@redhat.com>
4185 Jan Kratochvil <jan.kratochvil@redhat.com>
4186
4187 * breakpoint.c: Include parser-defs.h.
4188 (watchpoint_exp_is_const): New function.
4189 (watch_command_1): Call watchpoint_exp_is_const to check
4190 if the expression is constant.
4191
4192 2010-06-15 Andreas Schwab <schwab@linux-m68k.org>
4193
4194 * configure.ac: Check for RDYNAMIC also for cross builds.
4195 * configure: Regenerate.
4196
4197 2010-06-15 Pedro Alves <pedro@codesourcery.com>
4198
4199 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
4200 (SFILES): Remove solib-null.c, add solib-target.c.
4201 (COMMON_OBS): Remove solib-null.o, add solib-target.o.
4202 (ALLDEPFILES): Remove solib-target.c.
4203 * solib-target.c (_initialize_solib_target): Set
4204 current_target_so_ops to solib_target_so_ops if not already set.
4205 * solib-null.c: Delete.
4206
4207 2010-06-14 Pedro Alves <pedro@codesourcery.com>
4208
4209 * NEWS: Mention GDBserver's JIT compilation of tracepoint
4210 bytecode.
4211
4212 2010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
4213
4214 * cp-valprint.c (cp_print_static_field): Members of
4215 dont_print_stat_array_obstack are of type "struct type *".
4216 (_initialize_cp_valprint): Likewise.
4217
4218 2010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
4219
4220 * frame.c (frame_register_unwind): Do not access contents
4221 of "optimized out" unwound register value.
4222
4223 2010-06-14 Jan Kratochvil <jan.kratochvil@redhat.com>
4224
4225 * ada-lang.h (ada_print_type): Make varstring const.
4226 * ada-typeprint.c (print_func_type): Make name const.
4227 (ada_print_type): Make varstring const.
4228 * c-lang.h (c_print_type): Make varstring const.
4229 * c-typeprint.c (c_print_type): Likewise.
4230 * f-lang.h (f_print_type): Likewise.
4231 * f-typeprint.c (f_print_type): Likewise.
4232 * jv-lang.h (java_print_type): Likewise.
4233 * jv-typeprint.c (java_print_type): Likewise.
4234 * language.c (unk_lang_print_type): Likewise.
4235 * language.h (struct language_defn) <la_print_type>: Likewise.
4236 * m2-lang.h (m2_print_type): Likewise.
4237 * m2-typeprint.c (m2_print_type): Likewise.
4238 * p-lang.h (pascal_print_type): Likewise.
4239 * p-typeprint.c (pascal_print_type): Likewise.
4240
4241 2010-06-11 Stan Shebs <stan@codesourcery.com>
4242
4243 Add per-operation permission flags.
4244
4245 * target.h (struct target_ops): New method to_set_permissions.
4246 (target_set_permissions): New macro.
4247 (target_insert_breakpoint): Change macro to function.
4248 (target_remove_breakpoint): Ditto.
4249 (target_stop): Ditto.
4250 (may_write_registers): Declare.
4251 (may_write_memory): Declare.
4252 (may_insert_breakpoints): Declare.
4253 (may_insert_tracepoints): Declare.
4254 (may_insert_fast_tracepoints): Declare.
4255 (may_stop): Declare.
4256 * target.c (may_write_registers, may_write_registers_1): New globals.
4257 (may_write_memory, may_write_memory_1): New globals.
4258 (may_insert_breakpoints, may_insert_breakpoints_1): New globals.
4259 (may_insert_tracepoints, may_insert_tracepoints_1): New globals.
4260 (may_insert_fast_tracepoints, may_insert_fast_tracepoints_1): New
4261 globals.
4262 (may_stop, may_stop_1): New global.
4263 (target_xfer_partial): Test for write permission.
4264 (target_store_registers): Ditto.
4265 (target_insert_breakpoint): New function.
4266 (target_remove_breakpoint): New function.
4267 (target_stop): New function.
4268 (_initialize_targets): Add new set/show variables.
4269 (set_write_memory_permission): New function.
4270 (update_target_permissions): New function.
4271 (set_target_permissions): New function.
4272 (update_current_target): Default to_set_permissions.
4273 (_initialize_targets): Use new globals and setter function.
4274 * tracepoint.c (start_tracing): Test for permission.
4275 * inferior.h (update_observer_mode): Declare.
4276 * infrun.c (non_stop_1): Define earlier.
4277 (observer_mode, observer_mode_1): New globals.
4278 (set_observer_mode, show_observer_mode): New functions.
4279 (update_observer_mode): New function.
4280 (_initialize_infrun): Define "set observer" command.
4281 * remote.c (PACKET_QAllow): New optional packet.
4282 (remote_protocol_features): Add QAllow.
4283 (remote_set_permissions): New function.
4284 (remote_start_remote): Call it.
4285 (init_remote_ops): Add it to target vector.
4286 (_initialize_remote): Add config command for QAllow.
4287
4288 2010-06-11 Tom Tromey <tromey@redhat.com>
4289
4290 * dwarf2read.c (dwarf2_add_member_fn): Handle correct form of
4291 DW_AT_vtable_elem_location even when GCC extension is seen.
4292
4293 2010-06-11 Tom Tromey <tromey@redhat.com>
4294
4295 PR gdb/9977, PR exp/11636:
4296 * value.h (value_offset): Update.
4297 (struct lval_funcs) <check_validity>: New field.
4298 <copy_closure>: Make argument const.
4299 (value_computed_closure): Update.
4300 (value_contents_for_printing): Declare.
4301 (value_bits_valid): Likewise.
4302 (val_print): Likewise.
4303 (set_value_component_location): Update.
4304 (value_entirely_optimized_out): Declare.
4305 * value.c (value_offset): Argument now const.
4306 (require_not_optimized_out): New function.
4307 (value_contents_for_printing): New function.
4308 (value_contents_all): Call require_not_optimized_out.
4309 (value_contents): Likewise.
4310 (value_bits_valid): New function.
4311 (value_computed_closure): Argument now const.
4312 (set_value_component_location): Make 'whole' argument const.
4313 (value_entirely_optimized_out): New function.
4314 (value_bitsize): Argument now 'const'.
4315 (value_bitpos): Likewise.
4316 (value_type): Likewise.
4317 * valprint.h (val_print_array_elements): Update.
4318 * valprint.c (val_print): Add 'val' argument. Use
4319 valprint_check_validity.
4320 (valprint_check_validity): New function.
4321 (value_check_printable): Use value_entirely_optimized_out.
4322 (common_val_print): Update.
4323 (value_print): Likewise.
4324 (val_print_array_elements): Add 'val' argument.
4325 * valops.c (value_fetch_lazy): Use value_contents_for_printing,
4326 value_bits_valid. Reinit frame cache for lval_computed.
4327 * sh64-tdep.c (sh64_do_register): Update.
4328 * scm-valprint.c (scm_val_print): Add 'val' argument.
4329 * scm-lang.h (scm_val_print): Update.
4330 * python/python.h (apply_val_pretty_printer): Update.
4331 * python/py-prettyprint.c (apply_val_pretty_printer): Add 'val'
4332 argument. Call set_value_component_location.
4333 * printcmd.c (print_scalar_formatted): Update.
4334 * p-valprint.c (pascal_val_print): Add 'val' argument.
4335 (pascal_object_print_value_fields): Likewise.
4336 (pascal_object_print_value): Likewise.
4337 (pascal_object_print_static_field): Update.
4338 * p-lang.h (pascal_val_print): Update.
4339 (pascal_object_print_value_fields): Update.
4340 * mt-tdep.c (mt_registers_info): Update.
4341 * mi/mi-main.c (get_register): Update.
4342 (mi_cmd_data_evaluate_expression): Use common_val_print.
4343 * m2-valprint.c (m2_print_array_contents): Add 'val' argument.
4344 (m2_print_unbounded_array): Likewise.
4345 (m2_val_print): Likewise.
4346 * m2-lang.h (m2_val_print): Update.
4347 * language.h (struct language_defn) <la_val_print>: Add 'val'
4348 argument.
4349 (LA_VAL_PRINT): Likewise.
4350 * language.c (unk_lang_val_print): Add 'val' argument.
4351 * jv-valprint.c (java_print_value_fields): Add 'val' argument.
4352 (java_val_print): Likewise.
4353 * jv-lang.h (java_val_print): Add 'val' argument.
4354 * infcmd.c (default_print_registers_info): Update.
4355 * f-valprint.c (f77_print_array_1): Add 'val' argument.
4356 (f77_print_array): Likewise.
4357 (f_val_print): Likewise.
4358 * f-lang.h (f_val_print): Add 'val' argument.
4359 * dwarf2loc.c (read_pieced_value): Use value_bitsize and
4360 value_bitpos.
4361 <DWARF_VALUE_OPTIMIZED_OUT>: Don't print warning. Call
4362 set_value_optimized_out.
4363 (write_pieced_value): Use value_bitsize and value_bitpos.
4364 <default>: Don't exit loop.
4365 (check_pieced_value_validity): New function.
4366 (pieced_value_funcs): Reference check_pieced_value_validity,
4367 check_pieced_value_invalid.
4368 (copy_pieced_value_closure): Update.
4369 (check_pieced_value_bits): New function.
4370 (check_pieced_value_invalid): New function.
4371 * d-valprint.c (dynamic_array_type): Add 'val' argument.
4372 (d_val_print): Likewise.
4373 * d-lang.h (d_val_print): Update.
4374 * cp-valprint.c (cp_print_value_fields): Add 'val' argument.
4375 (cp_print_value_fields_rtti): Likewise.
4376 (cp_print_value): Likewise.
4377 (cp_print_static_field): Update.
4378 * c-valprint.c (c_val_print): Add 'val' argument.
4379 (c_value_print): Update.
4380 * c-lang.h (c_val_print): Update.
4381 (cp_print_value_fields): Likewise.
4382 (cp_print_value_fields_rtti): Likewise.
4383 * ada-valprint.c (struct ada_val_print_args): Remove.
4384 (val_print_packed_array_elements): Add 'val' argument.
4385 (ada_val_print): Likewise. Rewrite.
4386 (ada_val_print_stub): Remove.
4387 (ada_val_print_array): Add 'val' argument.
4388 (ada_val_print_1): Likewise.
4389 (print_variant_part): Likewise.
4390 (ada_value_print): Update.
4391 (print_record): Add 'val' argument.
4392 (print_field_values): Likewise.
4393 * ada-lang.h (ada_val_print): Update.
4394
4395 2010-06-11 Tom Tromey <tromey@redhat.com>
4396
4397 * vec.h (VEC_cleanup): New macro.
4398 (DEF_VEC_ALLOC_FUNC_I): Update.
4399 (DEF_VEC_ALLOC_FUNC_P): Likewise.
4400 (DEF_VEC_ALLOC_FUNC_O): Likewise.
4401 * dwarf2loc.c (struct axs_var_loc): Remove.
4402 (unimplemented): New function.
4403 (translate_register): Likewise.
4404 (access_memory): Likewise.
4405 (compile_dwarf_to_ax): Likewise.
4406 (dwarf2_tracepoint_var_loc): Remove.
4407 (dwarf2_tracepoint_var_access): Likewise.
4408 (dwarf2_tracepoint_var_ref): Likewise.
4409 (locexpr_tracepoint_var_ref): Use compile_dwarf_to_ax.
4410 (loclist_tracepoint_var_ref): Likewise.
4411 * dwarf2expr.h (dwarf_expr_require_composition): Declare.
4412 * dwarf2expr.c (dwarf_expr_require_composition): Rename from
4413 require_composition. No longer static.
4414 (execute_stack_op): Update.
4415 * ax-gdb.h (trace_kludge): Declare.
4416
4417 2010-06-11 Jan Kratochvil <jan.kratochvil@redhat.com>
4418
4419 * breakpoint.c (breakpoint_restore_shadows): New OWNER comment.
4420 (should_be_inserted): Return zero also on NULL OWNER.
4421 (breakpoint_program_space_exit): New OWNER comment.
4422 (insert_breakpoint_locations): Extend comment for OWNER.
4423 (remove_breakpoint_1, remove_breakpoint): Assert on OWNER.
4424 (breakpoint_init_inferior, breakpoint_here_p, breakpoint_thread_match):
4425 New OWNER comment.
4426 (print_it_typical): Return PRINT_UNKNOWN on NULL OWNER.
4427 (watchpoint_check): New assert on BREAKPOINT_AT and OWNER.
4428 (bpstat_check_location): New assert on OWNER.
4429 (bpstat_check_watchpoint, bpstat_check_breakpoint_conditions): Move BL
4430 and B initializations to the code block. New assert on them.
4431 (print_one_breakpoint_location): New OWNER comment.
4432 (watchpoint_locations_match): Assert on OWNER.
4433 (breakpoint_locations_match): Move HW_POINT1 and HW_POINT2
4434 initializations to the code block. New assert on OWNER.
4435 (set_breakpoint_location_function): New assert on OWNER.
4436 (disable_breakpoints_in_shlibs, disable_breakpoints_in_unloaded_shlib)
4437 (bp_location_compare, update_global_location_list)
4438 (update_global_location_list): New OWNER comment.
4439
4440 2010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
4441
4442 * Makefile.in (HFILES_NO_SRCDIR): Remove config/i386/nm-linux.h
4443
4444 2010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
4445
4446 * config/nm-linux.h (struct target_ops): Remove forward declaration.
4447 (lin_thread_get_thread_signals): Remove prototype.
4448 (GET_THREAD_SIGNALS): Remove.
4449 * linux-nat.h (lin_thread_get_thread_signals): Add prototype.
4450 * linux-thread-db.c (check_thread_signals): Directly call
4451 lin_thread_get_thread_signals; do not check GET_THREAD_SIGNALS.
4452
4453 2010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
4454
4455 * gregset.h (GDB_FPXREGSET_T): Remove.
4456 (gdb_fpxregset_t): Likewise.
4457 (supply_fpxregset): Remove prototype.
4458 (fill_fpxregset): Likewise.
4459 * i386-linux-nat.c (supply_fpxregset): Remove.
4460 (fill_fpxregset): Likewise.
4461 (fetch_fpxregs): Inline supply_fpxregset call.
4462 (store_fpxregs): Inline fill_fpxregset call.
4463
4464 * config/i386/linux.mh: Set NAT_FILE to config/nm-linux.h.
4465 * config/i386/nm-linux.h: Remove file.
4466
4467 2010-06-09 Michael Snyder <msnyder@vmware.com>
4468
4469 * target.c (update_current_target): Fix spelling error in comment.
4470 (target_mourn_inferior): Fix spelling error in error message.
4471
4472 2010-06-08 Paul Hilfinger <hilfingr@adacore.com>
4473
4474 * dictionary.h (dict_iter_name_first, dict_iter_name_next): Refer to
4475 SYMBOL_SEARCH_NAME, not SYMBOL_BEST_NAME, in comments.
4476
4477 2010-06-08 Michael Snyder <msnyder@vmware.com>
4478
4479 * remote.c (remote_close): Set inferior_ptid to null_ptid.
4480
4481 2010-06-08 Jan Kratochvil <jan.kratochvil@redhat.com>
4482
4483 * configure.ac <"${have_libpython}" != no>: New workaround of
4484 python#4434.
4485 * configure: Regenerate.
4486
4487 2010-06-08 Hui Zhu <teawater@gmail.com>
4488
4489 * record.c (record_wait): Move signal out of replay code.
4490
4491 2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4492
4493 Fix PR 10640.
4494 * dwarf2-frame.c (no_dwarf_call): New function.
4495 (execute_stack_op): Set CTX->DWARF_CALL.
4496 * dwarf2expr.c (execute_stack_op) <DW_OP_call2, DW_OP_call4>: New.
4497 * dwarf2expr.h (struct dwarf_expr_context) <dwarf_call>: New.
4498 (struct dwarf_expr_context) <get_subr>: Remove the #if0-ed field.
4499 * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call): New functions.
4500 (dwarf2_evaluate_loc_desc): Initialize CTX->DWARF_CALL.
4501 (needs_frame_dwarf_call): New function.
4502 (dwarf2_loc_desc_needs_frame): Initialize CTX->DWARF_CALL.
4503 * dwarf2read.c (follow_die_offset): Based on former follow_die_ref.
4504 Update the comment. Move variables die, offset and error call to ...
4505 (follow_die_ref): ... a new function.
4506 (dwarf2_fetch_die_location_block): New function.
4507 * dwarf2loc.h (dwarf2_fetch_die_location_block): New prototype.
4508
4509 2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4510
4511 * dwarf2loc.c (struct dwarf_expr_baton) Replace objfile by per_cu.
4512 (dwarf_expr_tls_address): Use per_cu instead of objfile.
4513 (dwarf2_evaluate_loc_desc): Drop initialization of BATON.OBJFILE.
4514 Initialize new BATON.PER_CU. Adjust CTX->GDBARCH initialization for
4515 this change.
4516 (struct needs_frame_baton): New field per_cu.
4517 (dwarf2_loc_desc_needs_frame): Initialize new BATON.PER_CU.
4518 * dwarf2read.c (struct dwarf2_per_cu_data) <cu>: Extend the comment.
4519
4520 2010-06-07 Sami Wagiaalla <swagiaal@redhat.com>
4521
4522 * cp-support.c (make_symbol_overload_list_namespace): Only search
4523 static and global blocks.
4524 (make_symbol_overload_list_block): New function.
4525 (make_symbol_overload_list): Separate namespace search from block
4526 search.
4527 (make_symbol_overload_list_qualified): Use
4528 make_symbol_overload_list_block.
4529
4530 2010-06-07 Sami Wagiaalla <swagiaal@redhat.com>
4531
4532 * value.h: Created oload_search_type enum.
4533 (find_overload_match): Use oload_search_type enum.
4534 * valops.c (find_overload_match): Support combined member and
4535 non-member search.
4536 * eval.c (evaluate_subexp_standard): Calls to
4537 find_overload_match now use oload_search_type enum.
4538 (oload_method_static): Verify index is a proper value.
4539 * valarith.c (value_user_defined_cpp_op): Search for and handle
4540 both member and non-member operators.
4541 (value_user_defined_cpp_op): New function.
4542 (value_user_defined_op): New function.
4543 (value_x_unop): Use value_user_defined_op.
4544 (value_x_binop): Ditto.
4545 * cp-support.c (make_symbol_overload_list_using): Added block
4546 iteration.
4547 Add check for namespace aliases and imported declarations.
4548
4549 2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4550
4551 * breakpoint.h (owner): Extend the comment.
4552
4553 2010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4554
4555 Clear stale specific bp_location from former whole breakpoint.
4556 * breakpoint.c (delete_breakpoint): Move the stale referencing clear
4557 code ...
4558 (free_bp_location): ... here. Rename there the called function to
4559 bpstat_remove_bp_location_callback.
4560 (bpstat_remove_breakpoint_callback): Rename to ...
4561 (bpstat_remove_bp_location_callback): ... here, change DATA resolution
4562 to struct bp_location. Change the called function to
4563 bpstat_remove_bp_location. Create new declaration for the function.
4564 (bpstat_remove_breakpoint): Rename to ...
4565 (bpstat_remove_bp_location): ..., change the parameter to loc, adjust
4566 code for the new parameter type.
4567
4568 2010-06-07 Nathan Sidwell <nathan@codesourcery.com>
4569
4570 * README: Make version-agnostic.
4571
4572 2010-06-05 Jan Kratochvil <jan.kratochvil@redhat.com>
4573
4574 Fix duplicate types for single DIE.
4575 * dwarf2read.c (read_structure_type): Move set_descriptive_type after
4576 set_die_type.
4577 (read_array_type): Remove type initialization. Recheck get_die_type
4578 after initial die_type. Move set_die_type before set_descriptive_type.
4579 (read_set_type): New variable domain_type. Recheck get_die_type after
4580 initial die_type. Move attr initialization later.
4581 (read_tag_pointer_type, read_tag_reference_type): New variable
4582 target_type. Recheck get_die_type after initial die_type.
4583 (read_tag_ptr_to_member_type): Recheck get_die_type after initial
4584 die_type and die_containing_type.
4585 (read_tag_const_type, read_tag_volatile_type, read_subroutine_type):
4586 Recheck get_die_type after initial die_type.
4587 (read_subrange_type): Recheck get_die_type after initial die_type.
4588 Move set_die_type before set_descriptive_type.
4589 (set_die_type): Extend the function comment. Call complaint if DIE has
4590 some type already set.
4591
4592 2010-06-05 Vladimir Prus <vladimir@codesourcery.com>
4593
4594 * mi/mi-main.c (mi_cmd_list_thread_groups): Adjust
4595 for current naming of thread groups (iN, not N).
4596
4597 2010-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
4598
4599 * ada-lang.c (ada_operator_length): Constify `struct expression'.
4600 * parse.c (operator_length): Likewise.
4601 (operator_length_standard): Likewise.
4602 * parser-defs.h (operator_length): Likewise.
4603 (operator_length_standard): Likewise.
4604 (struct exp_descriptor <operator_length>): Likewise.
4605
4606 2010-06-04 Doug Evans <dje@google.com>
4607
4608 Add support for enabling/disabling individual pretty-printers.
4609 * python/py-prettyprint.c (search_pp_list): Skip disabled printers.
4610 * python/python-internal.h (gdbpy_enabled_cst): Declare.
4611 * python/python.c (gdbpy_enabled_cst): Define.
4612 (_initialize_python): Initialize gdbpy_enabled_cst.
4613 * NEWS: Add entry.
4614
4615 2010-06-04 Jan Kratochvil <jan.kratochvil@redhat.com>
4616
4617 * breakpoint.c (update_global_location_list): Fix comment typo.
4618
4619 2010-06-04 Hui Zhu <teawater@gmail.com>
4620
4621 * dwarf2loc.c (disassemble_dwarf_expression): Change ul to l.
4622
4623 2010-06-03 Doug Evans <dje@google.com>
4624
4625 * configure.ac: Don't fail if python is unusable when
4626 configured with --with-python=auto.
4627 * configure: Regenerate.
4628
4629 2010-06-03 Sami Wagiaalla <swagiaal@redhat.com>
4630
4631 * dwarf2read.c (new_symbol): Remove redundant naming of symbol.
4632
4633 2010-06-03 Pierre Muller <muller@ics.u-strasbg.fr>
4634
4635 * valprint.h (get_array_bounds): Change low and high parameter types
4636 to LONGEST *.
4637 * valprint.c (get_array_bounds): Use get_discrete_bounds call to
4638 compute bounds.
4639 (val_print_array_elements): Adapt to change above.
4640 * ada-valprint.c (print_optional_low_bound): Adapt to change above.
4641 * p-valprint.c (pascal_val_print): Likewise.
4642
4643 2010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4644
4645 * symfile.c (init_filename_language_table): New extensions .for, .FOR,
4646 .ftn, .FTN, .fpp, .FPP, .f90, .F90, .f95, .F95, .f03, .F03, .f08 and
4647 .F08.
4648
4649 2010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4650
4651 Support DW_TAG_module as separate namespaces.
4652 * dwarf2read.c (typename_concat): New parameter physname.
4653 (read_module_type): New function and declaration.
4654 (scan_partial_symbols): Scan also DW_TAG_module children.
4655 (partial_die_parent_scope): Accept scope even from DW_TAG_module. Pass
4656 to typename_concat backward compatible physname value 0.
4657 (partial_die_full_name, read_namespace_type): Pass to typename_concat
4658 backward compatible physname value 0.
4659 (add_partial_module, read_module): Remove FIXME comment.
4660 (process_die) <DW_TAG_module>: Set PROCESSING_HAS_NAMESPACE_INFO.
4661 (die_needs_namespace) <DW_TAG_variable>: Allow returning true even for
4662 DIEs under DW_TAG_module.
4663 (dwarf2_compute_name): Move the ada block for DW_AT_linkage_name and
4664 DW_AT_MIPS_linkage_name first, extend it for language_fortran
4665 && physname and return there instead of just setting NAME. Extend
4666 the main block for language_fortran. Pass physname parameter to the
4667 typename_concat call.
4668 (read_import_statement, read_func_scope, get_scope_pc_bounds)
4669 (load_partial_dies, determine_prefix): Support also DW_TAG_module.
4670 (new_symbol): Fill in cplus_specific.demangled_name if it is still
4671 missing from SYMBOL_SET_NAMES in the language_fortran case.
4672 (new_symbol) <DW_TAG_variable>: Force LOC_UNRESOLVED for gfortran module
4673 variables.
4674 (read_type_die) <DW_TAG_module>: New.
4675 (MAX_SEP_LEN): Increase to 7.
4676 (typename_concat): New parameter physname. New variable lead. Support
4677 also language_fortran.
4678 * f-exp.y (yylex): Consider : also as a symbol name character class.
4679 * f-lang.c: Include cp-support.h.
4680 (f_word_break_characters, f_make_symbol_completion_list): New functions.
4681 (f_language_defn): Use cp_lookup_symbol_nonlocal,
4682 f_word_break_characters and f_make_symbol_completion_list.
4683 * f-typeprint.c (f_type_print_base) <TYPE_CODE_MODULE>: New.
4684 * gdbtypes.h (enum type_code) <TYPE_CODE_MODULE>: New.
4685 * symtab.c (symbol_init_language_specific): Support language_fortran.
4686 (symbol_find_demangled_name): New comment on language_fortran.
4687 (symbol_natural_name, symbol_demangled_name): Use demangled_name even
4688 for language_fortran.
4689 (lookup_symbol_aux_local): Check imports also for language_fortran.
4690 (default_make_symbol_completion_list): Rename to ...
4691 (default_make_symbol_completion_list_break_on): ... this name. New
4692 parameter break_on, use it.
4693 (default_make_symbol_completion_list): New stub.
4694 * symtab.h (default_make_symbol_completion_list_break_on): New
4695 prototype.
4696
4697 2010-06-02 Joel Brobecker <brobecker@adacore.com>
4698
4699 * remote.c (remote_get_noisy_reply): Remove trailing "\n" in call
4700 to error.
4701
4702 2010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4703
4704 * dwarf2read.c (typename_concat): Add const to the variable sep.
4705
4706 2010-06-02 Tom Tromey <tromey@redhat.com>
4707
4708 * dwarf2loc.h (dwarf2_per_cu_data): Declare.
4709 * dwarf2read.c (dwarf_stack_op_name): No longer static. Return
4710 type is const. Add 'def' argument. Add missing operators, remove
4711 unhandled ones.
4712 (decode_locdesc): Update.
4713 (dwarf2_always_disassemble): New global.
4714 (show_dwarf2_always_disassemble): New function.
4715 (_initialize_dwarf2_read): Add always-disassemble.
4716 (dwarf2_per_cu_offset_size): New function.
4717 * dwarf2loc.c (dwarf2_always_disassemble): Declare.
4718 (piece_end_p): New function.
4719 (locexpr_describe_location_piece): Replace 'size' argument with
4720 'end'. Use piece_end_p. Rewrite recognition of TLS. Recognize
4721 some constants. Remove errors.
4722 (disassemble_dwarf_expression): New function.
4723 (locexpr_describe_location_1): Use disassemble_dwarf_expression.
4724 Add 'offset_size' argument.
4725 (loclist_describe_location): Change output formatting.
4726 * dwarf2expr.h (dwarf_stack_op_name): Declare.
4727
4728 2010-06-02 Sami Wagiaalla <swagiaal@redhat.com>
4729
4730 * cp-support.c (make_symbol_overload_list_adl_namespace): Handle
4731 anonymous type case.
4732
4733 2010-06-02 Pierre Muller <muller@ics.u-strasbg.fr>
4734
4735 * dwarf2read.c (read_subrange_type): Handle missing base type
4736 according to Dwarf-2 specifications.
4737
4738 2010-06-01 Sergio Durigan Junior <sergiodj@redhat.com>
4739
4740 * expprint.c (print_subexp_standard): Remove exp_opcodes BINOP_INCL,
4741 BINOP_EXCL.
4742 (op_name_standard): Remove exp_opcodes BINOP_INCL, BINOP_EXCL,
4743 UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH.
4744 (dump_subexp_body_standard): Remove exp_opcodes BINOP_INCL,
4745 BINOP_EXCL, UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH, UNOP_CARD,
4746 UNOP_CHMAX, UNOP_CHMIN.
4747 * expression.h (enum exp_opcode) <BINOP_INCL, BINOP_EXCL,
4748 UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH, UNOP_CARD, UNOP_CHMAX,
4749 UNOP_CHMIN>: Remove opcodes.
4750
4751 2010-06-01 Pierre Muller <muller@ics.u-strasbg.fr>
4752
4753 * dwarf2read.c (read_func_scope): Do not complain for
4754 external function if bounds are not found.
4755
4756 2010-06-01 Pedro Alves <pedro@codesourcery.com>
4757
4758 * NEWS: Mention gdbserver fast tracepoints support.
4759
4760 2010-05-31 Pierre Muller <muller@ics.u-strasbg.fr>
4761
4762 * windows-nat.c (GetConsoleFontSize, GetCurrentConsoleFont):
4763 New macros.
4764 (windows_set_console_info): New function.
4765 (windows_create_inferior): Call windows_set_console_info
4766 if NEW_CONSOLE is true.
4767 (bad_GetCurrentConsoleFont, bad_GetConsoleFontSize): New functions.
4768 (_initialize_loadable): Initialize GetConsoleFontSize and
4769 GetCurrentConsoleFont.
4770
4771 2010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
4772
4773 * Makefile.in (RDYNAMIC): New.
4774 (SFILES): Add proc-service.list.
4775 * config/alpha/alpha-linux.mh (NAT_CDEPS): New.
4776 (LOADLIBES): Replace -rdynamic by $(RDYNAMIC).
4777 * config/arm/linux.mh: Likewise.
4778 * config/i386/linux.mh: Likewise.
4779 * config/i386/linux64.mh: Likewise.
4780 * config/ia64/linux.mh: Likewise.
4781 * config/m32r/linux.mh: Likewise.
4782 * config/m68k/linux.mh: Likewise.
4783 * config/mips/linux.mh: Likewise.
4784 * config/pa/linux.mh: Likewise.
4785 * config/powerpc/linux.mh: Likewise.
4786 * config/powerpc/ppc64-linux.mh: Likewise.
4787 * config/s390/s390.mh: Likewise.
4788 * config/sparc/linux.mh: Likewise.
4789 * config/sparc/linux64.mh: Likewise.
4790 * config/xtensa/linux.mh: Likewise.
4791 * configure.ac: New RDYNAMIC on native host and GCC.
4792 (solaris*): Replace -Wl,-export-dynamic by $RDYNAMIC.
4793 * configure: Regenerate.
4794 * proc-service.list: New.
4795
4796 2010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
4797
4798 * linux-nat.c (linux_nat_core_of_thread_1): Fix crash on invalid
4799 CONTENT.
4800
4801 2010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
4802
4803 * linux-nat.c (linux_nat_wait_1): Do not call
4804 linux_nat_core_of_thread_1 on TARGET_WAITKIND_EXITED or
4805 TARGET_WAITKIND_SIGNALLED.
4806
4807 2010-05-27 Joel Brobecker <brobecker@adacore.com>
4808
4809 * ada-lang.c (ada_inferior_data): New struct.
4810 (ada_inferior_data): New static global.
4811 (ada_inferior_data_cleanup, get_ada_inferior_data, ada_inferior_exit)
4812 (ada_get_tsd_type): New functions.
4813 (ada_tag_name_2): Use ada_get_tsd_type instead of ada_find_any_type
4814 to look the tsd type up.
4815 (_initialize_ada_language): Attach ada_inferior_exit to inferior_exit
4816 event. Set ada_inferior_data.
4817
4818 2010-05-27 Pedro Alves <pedro@codesourcery.com>
4819
4820 * remote.c (unpack_varlen_hex): Remove forward declaration.
4821 (remote_console_output): Make static, and add forward declaration.
4822 * remote.h: Drop FIXME comment.
4823 (unpack_varlen_hex): Declare.
4824 (remote_console_output, remote_cisco_objfile_relocate)
4825 (deprecated_target_resume_hook, deprecated_target_wait_loop_hook):
4826 Delete declarations.
4827 * tracepoint.c: Include "remote.h".
4828 (unpack_varlen_hex): Delete declaration.
4829
4830 2010-05-27 Tom Tromey <tromey@redhat.com>
4831
4832 * dwarf2loc.c (struct piece_closure) <refc>: New field.
4833 (allocate_piece_closure): Initialize refc.
4834 (copy_pieced_value_closure): Use refc.
4835 (free_pieced_value_closure): Likewise.
4836
4837 2010-05-27 Tom Tromey <tromey@redhat.com>
4838
4839 * arm-tdep.c (push_stack_item): 'contents' now const.
4840 (arm_push_dummy_call): Make 'val' const. Use value_contents, not
4841 value_contents_writeable. Introduce new temporary.
4842
4843 2010-05-27 Tom Tromey <tromey@redhat.com>
4844
4845 * findcmd.c (parse_find_args): Use value_contents, not
4846 value_contents_raw.
4847
4848 2010-05-27 Tom Tromey <tromey@redhat.com>
4849
4850 * alpha-tdep.c (alpha_push_dummy_call): Make alpha_arg.contents
4851 const. Use value_contents, not value_contents_writeable.
4852
4853 2010-05-27 Joel Brobecker <brobecker@adacore.com>
4854
4855 * ada-lang.c (ensure_lval): Replace call to value_contents_raw
4856 by call to value_contents.
4857
4858 2010-05-27 Ozkan Sezer <sezeroz@gmail.com>
4859
4860 * MAINTAINERS: Add myself for write after approval privileges.
4861
4862 2010-05-26 Doug Evans <dje@google.com>
4863
4864 Allow python to find its files if moved from original location.
4865 * acinclude.m4 (GDB_AC_DEFINE_RELOCATABLE): New function.
4866 (GDB_AC_WITH_DIR): Call it.
4867 * configure.ac: Define WITH_PYTHON_PATH if we can find the
4868 python installation directory.
4869 * config.in: Regenerate.
4870 * configure: Regenerate.
4871 * defs.h (python_libdir): Declare.
4872 * main.c (python_libdir): Define.
4873 (captured_main): Initialize python_libdir.
4874 * python/python.c (_initialize_python): #ifdef WITH_PYTHON_PATH,
4875 call Py_SetProgramName to make sure python can find its libraries
4876 and modules.
4877
4878 * configure.ac: Try to use python's distutils to fetch compilation
4879 parameters.
4880 * configure: Regenerate.
4881 * python/python-config.py: New file.
4882
4883 2010-05-26 Ozkan Sezer <sezeroz@gmail.com>
4884
4885 * ser-tcp.c (net_open): Check error return from socket() call by its
4886 equality to -1 not by it being negative.
4887 (net_close): Likewise.
4888
4889 2010-05-26 Pedro Alves <pedro@codesourcery.com>
4890
4891 * NEWS: Mention the `qRelocInsn' feature.
4892 * gdbarch.sh (relocate_instruction): New.
4893 * amd64-tdep.c (rip_relative_offset): New.
4894 (append_insns): New.
4895 (amd64_relocate_instruction): New.
4896 (amd64_init_abi): Install it.
4897 * i386-tdep.c (append_insns): New.
4898 (i386_relocate_instruction): New.
4899 (i386_gdbarch_init): Install it.
4900 * remote.c (remote_get_noisy_reply): Handle qRelocInsn requests.
4901 * gdbarch.h, gdbarch.c: Regenerate.
4902
4903 2010-05-26 Tom Tromey <tromey@redhat.com>
4904
4905 * dwarf2loc.h (struct dwarf2_locexpr_baton) <data>: Now const.
4906 (struct dwarf2_loclist_baton) <data>: Likewise.
4907 * dwarf2loc.c (find_location_expression): Constify return type.
4908 (dwarf2_evaluate_loc_desc): Make 'data' argument const.
4909 (dwarf2_loc_desc_needs_frame): Likewise.
4910 (loclist_read_variable): Constify.
4911 (loclist_describe_location): Likewise.
4912 (loclist_tracepoint_var_ref): Likewise.
4913
4914 2010-05-25 Tom Tromey <tromey@redhat.com>
4915
4916 * dwarf2loc.c (dwarf_expr_frame_base): Constify.
4917 (dwarf_expr_frame_base_1): Likewise.
4918 (read_pieced_value): Update.
4919 (needs_frame_frame_base): Constify.
4920 (dwarf2_tracepoint_var_loc): Likewise.
4921 (dwarf2_tracepoint_var_access): Likewise.
4922 (locexpr_describe_location_piece): Likewise.
4923 (locexpr_describe_location_1): Likewise.
4924 * dwarf2expr.h (struct dwarf_expr_context) <get_frame_base>:
4925 Constify.
4926 (data): Now const.
4927 (struct dwarf_expr_piece) <v.literal.data>: Likewise.
4928 (dwarf_expr_eval, read_uleb128, read_sleb128)
4929 (dwarf2_read_address): Update.
4930 * dwarf2expr.c (dwarf_expr_eval): Constify.
4931 (read_uleb128): Likewise.
4932 (read_sleb128): Likewise.
4933 (dwarf2_read_address): Likewise.
4934 (require_composition): Likewise.
4935 (execute_stack_op): Likewise.
4936 * dwarf2-frame.h (struct dwarf2_frame_state_reg) <loc.exp>: Now a
4937 "const gdb_byte *".
4938 * dwarf2-frame.c (struct dwarf2_frame_state_reg_info) <cfa_exp>:
4939 Now const.
4940 (no_get_frame_base): Constify.
4941 (execute_stack_op): Likewise.
4942 (execute_cfa_program): Likewise.
4943 (read_encoded_value): Likewise.
4944
4945 2010-05-25 Doug Evans <dje@google.com>
4946
4947 * ser-pipe.c (pipe_open): Ignore SIGINTs in child.
4948
4949 * event-loop.h (GDB_READABLE, GDB_WRITABLE, GDB_EXCEPTION): Move to ...
4950 * event-loop.c: ... here.
4951 * tui/tui-io.c (tui_readline_output): Rename parameter `code' to
4952 `error' for clarity.
4953 (tui_getc): Pass correct value for `error' parameter to
4954 tui_readline_output.
4955
4956 Add python gdb.GdbError and gdb.string_to_argv.
4957 * NEWS: Document them.
4958 * python/py-cmd.c (cmdpy_function): Don't print a traceback if
4959 the exception is gdb.GdbError. Print a second traceback if there's
4960 an error computing the error message.
4961 (gdbpy_string_to_argv): New function.
4962 * python/py-utils.c (gdbpy_obj_to_string): New function.
4963 (gdbpy_exception_to_string): New function.
4964 * python/python-internal.h (gdbpy_string_to_argv): Declare.
4965 (gdbpy_obj_to_string, gdbpy_exception_to_string): Declare.
4966 (gdbpy_gdberror_exc): Declare.
4967 * python/python.c (gdbpy_gdberror_exc): New global.
4968 (_initialize_python): Initialize gdbpy_gdberror_exc and create
4969 gdb.GdbError.
4970 (GdbMethods): Add string_to_argv.
4971
4972 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
4973
4974 * windows-nat.c (display_selector): Call GetLastError to give better
4975 failure explanation.
4976
4977 2010-05-24 Pedro Alves <pedro@codesourcery.com>
4978
4979 * config.in: Regenerate.
4980
4981 2010-05-23 Jan Kratochvil <jan.kratochvil@redhat.com>
4982
4983 Code cleanup.
4984 * target.c (push_target): Return only void. Remove the return value
4985 comment.
4986 * target.h (push_target): Return only void.
4987
4988 2010-05-23 Pedro Alves <pedro@codesourcery.com>
4989
4990 Update gnulib from latest git.
4991 (250b80067c1e1d8faa0c42fb572f721975b929c5)
4992
4993 * gnulib/memcmp.c: Removed.
4994 * gnulib/memchr.valgrind: New.
4995 * gnulib/stddef.in.h: New.
4996 * gnulib/Makefile.am: Updated.
4997 * gnulib/memchr.c: Updated.
4998 * gnulib/memmem.c: Updated.
4999 * gnulib/stdint.in.h: Updated.
5000 * gnulib/str-two-way.h: Updated.
5001 * gnulib/string.in.h: Updated.
5002 * gnulib/wchar.in.h: Updated.
5003
5004 * gnulib/extra/link-warning.h: Removed.
5005 * gnulib/extra/c++defs.h: New.
5006 * gnulib/extra/warn-on-use.h: New.
5007 * gnulib/extra/arg-nonnull.h: Updated.
5008
5009 * gnulib/m4/extensions.m4: Updated.
5010 * gnulib/m4/gnulib-cache.m4: Updated.
5011 * gnulib/m4/gnulib-common.m4: Updated.
5012 * gnulib/m4/gnulib-comp.m4: Updated.
5013 * gnulib/m4/gnulib-tool.m4: Updated.
5014 * gnulib/m4/include_next.m4: Updated.
5015 * gnulib/m4/longlong.m4: Updated.
5016 * gnulib/m4/memchr.m4: Updated.
5017 * gnulib/m4/memmem.m4: Updated.
5018 * gnulib/m4/stdint.m4: Updated.
5019 * gnulib/m4/string_h.m4: Updated.
5020 * gnulib/m4/memcmp.m4: Removed.
5021 * gnulib/m4/onceonly_2_57.m4: Removed.
5022 * gnulib/m4/00gnulib.m4: New.
5023 * gnulib/m4/mmap-anon.m4: New.
5024 * gnulib/m4/multiarch.m4: New.
5025 * gnulib/m4/onceonly.m4: New.
5026 * gnulib/m4/stddef_h.m4: New.
5027 * gnulib/m4/warn-on-use.m4: New.
5028 * gnulib/m4/wchar.m4: Removed.
5029 * gnulib/m4/wchar_h.m4: New.
5030 * gnulib/m4/wchar_t.m4: New.
5031 * gnulib/m4/wint_t.m4: New.
5032
5033 * aclocal.m4: Regenerate.
5034 * config.in: Likewise.
5035 * configure: Likewise.
5036 * gnulib/Makefile.in: Likewise.
5037
5038 2010-05-21 Tom Tromey <tromey@redhat.com>
5039
5040 * dwarf2loc.c (extract_bits_primitive): New function.
5041 (extract_bits): Likewise.
5042 (insert_bits): Likewise.
5043 (copy_bitwise): Likewise.
5044 (read_pieced_value): Do all operations in bits.
5045 (write_pieced_value): Likewise.
5046 * dwarf2expr.h (struct dwarf_expr_piece) <offset>: New field.
5047 * dwarf2expr.c (add_piece): New arguments bit_piece, offset.
5048 Always use xrealloc to resize piece array.
5049 (execute_stack_op) <DW_OP_reg0>: Handle DW_OP_bit_piece.
5050 <DW_OP_piece>: Update.
5051 <DW_OP_bit_piece>: New case.
5052
5053 2010-05-21 Tom Tromey <tromey@redhat.com>
5054
5055 * dwarf2loc.c (read_pieced_value): Exit loop when result is full.
5056 <DWARF_VALUE_OPTIMIZED_OUT>: New case.
5057 * dwarf2expr.h (enum dwarf_value_location)
5058 <DWARF_VALUE_OPTIMIZED_OUT>: New constant.
5059 * dwarf2expr.c (dwarf_expr_stack_empty_p): New function.
5060 (add_piece): Handle empty piece.
5061 (execute_stack_op) <DW_OP_piece>: Handle
5062 DWARF_VALUE_OPTIMIZED_OUT.
5063
5064 2010-05-21 Tom Tromey <tromey@redhat.com>
5065
5066 * eval.c (evaluate_subexp_standard) <BINOP_SUBSCRIPT>: Call
5067 evaluate_subexp, not evaluate_subexp_with_coercion.
5068
5069 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
5070
5071 * dwarf2read.c (new_symbol): Handle DW_AT_variable_parameter
5072 attribute.
5073
5074 2010-05-21 Tom Tromey <tromey@redhat.com>
5075
5076 * dwarf2loc.c (read_pieced_value): Work properly when 'v' has an
5077 offset.
5078 (write_pieced_value): Likewise.
5079
5080 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
5081
5082 * dwarf2read.c (process_die): Also allow DW_TAG_const_type
5083 and DW_TAG_volatile_type.
5084 (new_symbol): Likewise.
5085
5086 2010-05-20 Pierre Muller <muller@ics.u-strasbg.fr>
5087
5088 * p-valprint.c (pascal_val_print): Call get_array_bounds
5089 to obtain the number of elements in an array.
5090
5091 2010-05-19 Doug Evans <dje@google.com>
5092
5093 * python.c (gdbpy_print_stack): Ensure output ends with a newline.
5094
5095 * python.c (source_python_script): Add comment.
5096 (source_python_script_for_objfile): Remove unnecessary call to
5097 gdbpy_print_stack.
5098
5099 2010-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
5100 Sergio Durigan Junior <sergiodj@redhat.com>
5101
5102 Code cleanup.
5103 * parse.c (exp_iterate): Use operator_length wrapper function.
5104
5105 2010-05-18 Michael Snyder <msnyder@vmware.com>
5106
5107 * ada-lang.c: White space.
5108 * ada-typeprint.c: White space.
5109 * ada-valprint.c: White space.
5110 * addrmap.c: White space.
5111 * auxv.c: White space.
5112 * ax-gdb.c: White space.
5113
5114 2010-05-18 Hui Zhu <teawater@gmail.com>
5115
5116 * linux-fork.c (inferior_call_waitpid_cleanup): Add check
5117 for oldfp.
5118 (inferior_call_waitpid): Move make_cleanup out of check.
5119 Check the return of waitpid.
5120 (delete_checkpoint_command): Add pptid to save fi->parent_ptid.
5121
5122 2010-05-17 Michael Snyder <msnyder@vmware.com>
5123
5124 * tui/tui.c: White space.
5125 * tui/tui-data.c: White space.
5126 * tui/tui-disasm.c: White space.
5127 * tui/tui-file.c: White space.
5128 * tui/tui-interp.c: White space.
5129 * tui/tui-main.c: White space.
5130 * tui/tui-out.c: White space.
5131 * tui/tui-regs.c: White space.
5132 * tui/tui-source.c: White space.
5133 * tui/tui-stack.c: White space.
5134 * tui/tui-win.c: White space.
5135 * tui/tui-winsource.c: White space.
5136
5137 * procfs.c: White space.
5138
5139 * python/py-auto-load.c: White space.
5140 * python/py-block.c: White space.
5141 * python/py-breakpoint.c: White space.
5142 * python/py-cmd.c: White space.
5143 * python/py-function.c: White space.
5144 * python/py-lazy-string.c: White space.
5145 * python/py-objfile.c: White space.
5146 * python/py-param.c: White space.
5147 * python/py-prettyprint.c: White space.
5148 * python/py-progspace.c: White space.
5149 * python/py-symtab.c: White space.
5150 * python/python.c: White space.
5151 * python/py-type.c: White space.
5152 * python/py-utils.c: White space.
5153 * python/py-value.c: White space.
5154
5155 * mi/mi-cmd-break.c: White space.
5156 * mi/mi-cmd-env.c: White space.
5157 * mi/mi-cmds.c: White space.
5158 * mi/mi-cmd-stack.c: White space.
5159 * mi/mi-cmd-var.c: White space.
5160 * mi/mi-console.c: White space.
5161 * mi/mi-getopt.c: White space.
5162 * mi/mi-interp.c: White space.
5163 * mi/mi-main.c: White space.
5164 * mi/mi-out.c: White space.
5165 * mi/mi-parse.c: White space.
5166
5167 * cli/cli-cmds.c: White space.
5168 * cli/cli-decode.c: White space.
5169 * cli/cli-dump.c: White space.
5170 * cli/cli-interp.c: White space.
5171 * cli/cli-logging.c: White space.
5172 * cli/cli-script.c: White space.
5173 * cli/cli-setshow.c: White space.
5174
5175 * valarith.c: White space.
5176 * valops.c: White space.
5177 * valprint.c: White space.
5178 * value.c: White space.
5179 * varobj.c: White space.
5180 * xcoffread.c: White space.
5181 * xml-support.c: White space.
5182 * xml-tdesc.c: White space.
5183
5184 2010-05-17 Andreas Schwab <schwab@redhat.com>
5185
5186 PR gdb/11092
5187 * c-lang.c (c_printstr): Compute real length of NUL terminated
5188 string at first.
5189
5190 2010-05-17 Joel Brobecker <brobecker@adacore.com>
5191
5192 * parse.c (parse_exp_in_context): When block is not NULL, use
5193 its associated language to parse the expression instead of
5194 the current_language.
5195
5196 2010-05-17 Joel Brobecker <brobecker@adacore.com>
5197
5198 * jv-lang.c (java_lookup_class): Remove commented out code.
5199 (type_from_class): Likewise.
5200 (java_op_print_tab): Remove commented-out elements.
5201
5202 2010-05-17 Joel Brobecker <brobecker@adacore.com>
5203
5204 * ada-lang.c (to_fixed_range_type): The the raw index type as
5205 argument instead of the raw type name. Remove orig_type parameter.
5206 Update calls throughout.
5207 (ada_fixup_array_indexes_type): New function.
5208 (ada_array_bound_from_type): Add call to ada_fixup_array_indexes_type.
5209 * ada-lang.h (ada_fixup_array_indexes_type): Add declaration.
5210 * ada-typeprint.c (print_range_type): Renames print_range_type_named.
5211 Remove name parameter.
5212 (print_array_type): Add call to ada_fixup_array_indexes_type.
5213 Update calls to print_range_type.
5214 (ada_print_type): Update calls to print_range_type.
5215
5216 2010-05-17 Pierre Muller <muller@ics.u-strasbg.fr>
5217
5218 * dwarf2read.c (read_set_type): Set type length if
5219 DW_AT_byte_size attribute is present.
5220
5221 2010-05-17 Pierre Muller <muller@ics.u-strasbg.fr>
5222
5223 * p-valprint.c (pascal_val_print): Handle set type if range limits
5224 are undefined but size is known.
5225
5226 2010-05-17 Pedro Alves <pedro@codesourcery.com>
5227
5228 * procfs.c: Reformat.
5229
5230 2010-05-16 Michael Snyder <msnyder@vmware.com>
5231
5232 * target.c: White space.
5233 * target-descriptions.c: White space.
5234 * target-memory.c: White space.
5235 * thread.c: White space.
5236 * top.c: White space.
5237 * tracepoint.c: White space.
5238 * trad-frame.c: White space.
5239 * tramp-frame.c: White space.
5240 * ui-file.c: White space.
5241 * ui-out.c: White space.
5242 * user-regs.c: White space.
5243 * utils.c: White space.
5244
5245 * scm-exp.c: White space.
5246 * scm-lang.c: White space.
5247 * scm-valprint.c: White space.
5248 * sentinel-frame.c: White space.
5249 * ser-base.c: White space.
5250 * ser-go32.c: White space.
5251 * serial.c: White space.
5252 * ser-mingw.c: White space.
5253 * ser-pipe.c: White space.
5254 * ser-tcp.c: White space.
5255 * ser-unix.c: White space.
5256 * solib.c: White space.
5257 * solib-darwin.c: White space.
5258 * solib-frv.c: White space.
5259 * solib-irix.c: White space.
5260 * solib-osf.c: White space.
5261 * solib-pa64.c: White space.
5262 * solib-som.c: White space.
5263 * solib-spu.c: White space.
5264 * solib-svr4.c: White space.
5265 * solib-target.c: White space.
5266 * source.c: White space.
5267 * stabsread.c: White space.
5268 * stack.c: White space.
5269 * std-regs.c: White space.
5270 * symfile.c: White space.
5271 * symmisc.c: White space.
5272 * symtab.c: White space.
5273
5274 2010-05-16 Michael Snyder <msnyder@vmware.com>
5275
5276 * source.c (_initialize_source): Add "rev" as an abbreviation
5277 for the "reverse-search" command.
5278
5279 2010-05-16 Michael Snyder <msnyder@vmware.com>
5280
5281 * record.c: White space.
5282 * regcache.c: White space.
5283 * reggroups.c: White space.
5284 * remote-fileio.c: White space.
5285 * remote-m32r-sdi.c: White space.
5286 * remote-mips.c: White space.
5287 * remote-sim.c: White space.
5288 * remote.c: White space.
5289 (process_g_packet): Remove orphan braces.
5290
5291 2010-05-15 Michael Snyder <msnyder@vmware.com>
5292
5293 * parse.c: White space.
5294 * p-lang.c: White space.
5295 * posix-hdep.c: White space.
5296 * printcmd.c: White space.
5297 * progspace.c: White space.
5298 * prologue-value.c: White space.
5299 * psymtab.c: White space.
5300 * p-typeprint.c: White space.
5301 * p-valprint.c: White space.
5302
5303 * objc-lang.c: White space.
5304 * objfiles.c: White space.
5305 * observer.c: White space.
5306 * osabi.c: White space.
5307 * osdata.c: White space.
5308
5309 * m2-lang.c: White space.
5310 * m2-valprint.c: White space.
5311 * macrocmd.c: White space.
5312 * macroexp.c: White space.
5313 * macroscope.c: White space.
5314 * macrotab.c: White space.
5315 * main.c: White space.
5316 * maint.c: White space.
5317 * mdebugread.c: White space.
5318 * memattr.c: White space.
5319 * minsyms.c: White space.
5320 * monitor.c: White space.
5321
5322 2010-05-14 Michael Snyder <msnyder@vmware.com>
5323
5324 * jv-lang.c: White space.
5325 * jv-typeprint.c: White space.
5326 * jv-valprint.c: White space.
5327 * language.c: White space.
5328 * libunwind-frame.c: White space.
5329 * linespec.c: White space.
5330 * linux-nat.c: White space.
5331 * linux-record.c: White space.
5332 * linux-thread-db.c: White space.
5333
5334 * infcall.c: White space.
5335 * inf-child.c: White space.
5336 * infcmd.c: White space.
5337 * inferior.c: White space.
5338 * inf-loop.c: White space.
5339 * inflow.c: White space.
5340 * inline-frame.c: White space.
5341 * interps.c: White space.
5342
5343 * gcore.c: White space.
5344 * gdb.c: White space.
5345 * gdbtypes.c: White space.
5346 * gnu-nat.c: White space.
5347 * gnu-v2-abi.c: White space.
5348 * gnu-v3-abi.c: White space.
5349
5350 * findcmd.c: White space.
5351 * findvar.c: White space.
5352 * fork-child.c: White space.
5353 * frame-base.c: White space.
5354 * frame.c: White space.
5355 * frame-unwind.c: White space.
5356 * f-valprint.c: White space.
5357
5358 * elfread.c: White space.
5359 * environ.c: White space.
5360 * eval.c: White space.
5361 * event-loop.c: White space.
5362 * event-top.c: White space.
5363 * exceptions.c: White space.
5364 * exec.c: White space.
5365 * expprint.c: White space.
5366
5367 * dbxread.c: White space.
5368 * dcache.c: White space.
5369 * disasm.c: White space.
5370 * doublest.c: White space.
5371 * dsrec.c: White space.
5372 * dummy-frame.c: White space.
5373 * dwarf2expr.c: White space.
5374 * dwarf2-frame.c: White space.
5375 * dwarf2loc.c: White space.
5376 * dwarf2read.c: White space.
5377
5378 2010-05-14 Phil Muldoon <pmuldoon@redhat.com>
5379
5380 PR python/11482
5381
5382 * python/py-value.c (valpy_hash): New function.
5383 (value_object_type): Register valpy_hash.
5384
5385 2010-05-14 Hui Zhu <teawater@gmail.com>
5386 Michael Snyder <msnyder@vmware.com>
5387
5388 * linux-fork.c (gdbthread.h): New include.
5389 (fork_info): Add parent_ptid.
5390 (inferior_call_waitpid_cleanup, inferior_call_waitpid): New
5391 functions.
5392 (delete_checkpoint_command): Call inferior_call_waitpid.
5393 (checkpoint_command): Set parent_ptid.
5394
5395 2010-05-13 Michael Snyder <msnyder@vmware.com>
5396
5397 * dictionary.c: Re-indent to GNU coding standard.
5398
5399 * charset.c: White space.
5400 * c-lang.c: White space.
5401 * cli-out.c: White space.
5402 * coffread.c: White space.
5403 * complaints.c: White space.
5404 * completer.c: White space.
5405 * corefile.c: White space.
5406 * corelow.c: White space.
5407 * cp-abi.c: White space.
5408 * cp-namespace.c: White space.
5409 * cp-support.c: White space.
5410 * cp-valprint.c: White space.
5411 * c-typeprint.c: White space.
5412 * c-valprint.c: White space.
5413 * blockframe.c: White space.
5414 * breakpoint.c: White space.
5415 * buildsym.c: White space.
5416 * blockframe.c: White space.
5417 * bcache.c: White space.
5418 * gdbarch.sh: White space, add blank lines.
5419 * arch-utils.c: Ditto.
5420 * gdbarch.c: Regenerate.
5421 * frame.c: White space, add blank lines.
5422 * stack.c: White space, add blank lines.
5423 (initialize_stack): Remove long-dead code.
5424
5425 2010-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
5426
5427 Code cleanup.
5428 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Change the parameter to type.
5429 (locexpr_read_variable, loclist_read_variable): Update the callers.
5430
5431 2010-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
5432
5433 Code cleanup.
5434 * dwarf2read.c (die_type, die_descriptive_type): Remove variable type.
5435 Remove check of NULL returned by tag_type_to_type.
5436 (die_containing_type): Remove variable type. Remove type_die variable
5437 initialization. Remove check of NULL returned by tag_type_to_type.
5438
5439 2010-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
5440
5441 PR exp/11530.
5442 * gdbtypes.c (lookup_struct_elt_type): Also lookup
5443 names of unnamed structures or unions.
5444
5445 2010-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
5446
5447 * procfs.c (proc_watchpoint_address): New function.
5448 (procfs_stopped_by_watchpoint): Remove useless check after
5449 find_procinfo_or_die call.
5450 (procfs_stopped_data_address): New function.
5451 (procfs_use_watchpoints): Register new watchpoint related function.
5452
5453 2010-05-11 Tom Tromey <tromey@redhat.com>
5454
5455 * eval.c (evaluate_subexp_standard): Revert inadvertent change.
5456
5457 2010-05-10 Michael Snyder <msnyder@vmware.com>
5458
5459 * utils.c: White space cleanup.
5460
5461 2010-05-10 Tom Tromey <tromey@redhat.com>
5462
5463 * eval.c (ptrmath_type_p): Add 'lang' argument.
5464 (evaluate_subexp_standard): Update.
5465 (evaluate_subexp_with_coercion): Update.
5466 * language.h (CAST_IS_CONVERSION): Add 'LANG' argument.
5467
5468 2010-05-10 Michael Snyder <msnyder@vmware.com>
5469
5470 * utils.c (do_fclose_cleanup) Restore local variable.
5471
5472 2010-05-09 Doug Evans <dje@google.com>
5473
5474 * record.c (init_record_core_ops): Rename record_core to record-core.
5475
5476 2010-05-08 Joel Brobecker <brobecker@adacore.com>
5477
5478 Implement task switching on pa-hpux.
5479 * inf-ttrace.c (inf_ttrace_get_ada_task_ptid): New function.
5480 (inf_ttrace_target): Set t->to_get_ada_task_ptid.
5481
5482 2010-05-08 Pierre Muller <muller@ics.u-strasbg.fr>
5483
5484 * valops.c (find_overload_match): Add missing i18n markup.
5485
5486 2010-05-08 Pierre Muller <muller@ics.u-strasbg.fr>
5487
5488 * p-exp.y (exp : SIZEOF '(' exp ')'): New rule.
5489
5490 2010-05-08 Jan Kratochvil <jan.kratochvil@redhat.com>
5491
5492 * dwarf2read.c (typename_concat): Use (char *) NULL terminated stdarg
5493 list for the obconcat call.
5494 * mdebugread.c (parse_symbol): Likewise.
5495 * stabsread.c (define_symbol, read_member_functions, read_cpp_abbrev):
5496 Likewise.
5497 * symfile.c (obconcat): Replace the s1, s2 and s3 parameters by `...'.
5498 New variable ap. Remove variables len and val.
5499 * symfile.h (obconcat): Likewise for the prototype.
5500
5501 2010-05-07 Michael Snyder <msnyder@vmware.com>
5502
5503 * python/python.c (execute_gdb_command): Remove unused variables.
5504 * python/py-block.c (gdbpy_block_for_pc): Remove unused variable.
5505 * python/py-breakpoint.c (gdbpy_breakpoint_created):
5506 Remove unused variable.
5507 * python/py-cmd.c (cmdpy_function): Remove unused variable.
5508 (cmdpy_completer): Remove unused variable.
5509 * python/py-frame.c (frapy_find_sal): Remove unused variable.
5510 * python/py-function.c (fnpy_call): Remove unused variable.
5511 * python/py-objfile.c (objfile_to_objfile_object):
5512 Remove unused variable.
5513 * python/py-param.c (parmpy_init): Remove unused variable.
5514 * python/py-prettyprint.c (apply_varobj_pretty_printer):
5515 Remove unused variable.
5516 (gdbpy_default_visualizer): Remove unused variable.
5517 * python/py-progspace.c (pspace_to_pspace_object):
5518 Remove unused variable.
5519 * python/py-symtab.c (symtab_and_line_to_sal_object):
5520 Remove unused variable.
5521 * python/py-type.c (typy_template_argument):
5522 Remove unused variable.
5523 * python/py-value.c (valpy_string): Remove unused variable.
5524 (convert_value_from_python): Remove unused variables.
5525
5526 2010-05-07 Michael Snyder <msnyder@vmware.com>
5527
5528 * valops.c (value_cast_pointers): Restore unused variable 'type1',
5529 and use it to compute variable 't1'.
5530
5531 2010-05-07 Joel Brobecker <brobecker@adacore.com>
5532
5533 * ada-lang.c (assign_aggregate): Remove unused variable.
5534
5535 2010-05-07 Sami Wagiaalla <swagiaal@redhat.com>
5536
5537 PR C++/7943:
5538 * valops.c (find_overload_match): Handle fsym == NULL case.
5539 Add int no_adl argument.
5540 (find_oload_champ_namespace_loop): Call make_symbol_overload_list_adl
5541 when appropriate.
5542 Add int no_adl argument.
5543 (find_oload_champ_namespace): Add int no_adl argument.
5544 * parse.c (operator_length_standard): Return length for OP_ADL_FUNC
5545 expression.
5546 * expprint.c (op_name_standard): Added string for OP_ADL_FUNC case.
5547 * eval.c (evaluate_subexp_standard): Added OP_ADL_FUNC case.
5548 Evaluate arguments and use them to perform ADL lookup.
5549 Pass no_adl argument to find_overload_match.
5550 Disable adl lookup when evaluating a fully qualified OP_FUNCALL.
5551 * cp-support.h: Added prototype for
5552 make_symbol_overload_list_namespace.
5553 * cp-support.c (make_symbol_overload_list_namespace): New function.
5554 (make_symbol_overload_list_adl_namespace): New function.
5555 (make_symbol_overload_list_adl): New function.
5556 (make_symbol_overload_list_using): Moved code to add function to
5557 overload set to make_symbol_overload_list_namespace.
5558 * c-exp.y: create UNKNOWN_CPP_NAME token.
5559 Add parse rule for ADL functions.
5560 (classify_name): Recognize an UNKNOWN_CPP_NAME.
5561
5562 2010-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
5563
5564 * fbsd-nat.c (fbsd_make_corefile_notes): Add cast to NULL used as
5565 sentinel.
5566
5567 2010-05-07 Joel Brobecker <brobecker@adacore.com>
5568
5569 Implement task switching on solaris targets.
5570 * sol-thread.c (thread_db_find_thread_from_tid)
5571 (sol_get_ada_task_ptid): New functions.
5572 (init_sol_thread_ops): Set sol_thread_ops.to_get_ada_task_ptid.
5573
5574 2010-05-07 Pedro Alves <pedro@codesourcery.com>
5575
5576 * remote.c (remote_query_supported_append): Use reconcat.
5577 (remote_query_supported): Install a cleanup. Use reconcat.
5578
5579 2010-05-07 Pedro Alves <pedro@codesourcery.com>
5580
5581 * gdbarch.sh (qsupported): Delete.
5582 * gdbarch.h, gdbarch.c: Regenerate.
5583 * remote.c (remote_query_supported): Remove use of
5584 gdbarch_qsupported.
5585
5586 2010-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
5587
5588 * xml-syscall.c (syscall_start_syscalls_info): Remove unused
5589 function.
5590
5591 2010-05-06 Michael Snyder <msnyder@vmware.com>
5592
5593 * xml-support.c (xinclude_start_include): Delete unused variable.
5594 (xml_process_xincludes): Delete unused variable.
5595 * xml-syscall.c (syscall_parse_xml): Delete unused variable.
5596 * target-descriptions.c (tdesc_gdb_type): Delete unused variable.
5597 (tdesc_find_arch_register): Delete unused variable.
5598 (tdesc_use_registers): Delete unused variable.
5599 * xml-tdesc.c (tdesc_start_target): Delete unused variable.
5600 * inferior.c (print_inferior): Delete unused variable.
5601 * record.c (record_open_1): Delete unused variable.
5602 (record_restore): Delete unused variable.
5603 (cmd_record_save): Delete unused variable.
5604 * gcore.c (derive_heap_segment): Delete unused variable.
5605 (objfile_find_memory_regions): Use unused variable.
5606 * jit.c (jit_inferior_init): Delete unused variable.
5607 * progspace.c (clone_program_space): Delete unused variable.
5608 (pspace_empty_p): Delete unused variable.
5609
5610 * frame-unwind.c (frame_unwind_find_by_frame):
5611 Delete unused variable.
5612 * gnu-v2-abi.c (gnuv2_value_rtti_type): Delete unused variable.
5613 * cp-support.c (mangled_name_to_comp): Delete unused variable.
5614 (method_name_from_physname): Delete unused variable.
5615 (cp_func_name): Delete unused variable.
5616 (cp_validate_operator): Delete unused variable.
5617 * cp-namespace.c (cp_scan_for_anonymous_namespaces):
5618 Delete unused variable.
5619 * trad-frame.c (trad_frame_get_prev_register):
5620 Delete unused variable.
5621 * tramp-frame.c (tramp_frame_cache): Delete unused variable.
5622
5623 * serial.c (serial_for_fd): Delete unused variable.
5624 * mdebugread.c (psymtab_to_symtab_1): Delete unused variable.
5625 * top.c (execute_command): Delete unused variable.
5626 (init_main): Delete unused variable.
5627 * utils.c (do_fclose_cleanup): Delete unused variable.
5628 (do_all_inferior_continuations): Delete unused variable.
5629 (initialize_utils): Delete unused variable.
5630 (internal_problem_mode): Delete unused global.
5631 * frame.c (get_prev_frame): Delete unused global.
5632 (get_frame_locals_address): Delete unused global.
5633 (get_frame_args_address): Delete unused global.
5634
5635 * p-typeprint.c (pascal_type_print_base): Delete unused variable.
5636 (pascal_type_print_varspec_prefix): Delete unused variable.
5637 * f-typeprint.c (f_type_print_base): Delete unused variable.
5638 (f_type_print_varspec_suffix): Delete unused variable.
5639 * m2-typeprint.c (m2_print_type): Delete unused variable.
5640 (m2_long_set): Delete unused variable.
5641 * ada-valprint.c (ada_val_print_1): Delete unused variable.
5642 * d-valprint.c (dynamic_array_type): Delete unused variable.
5643 * f-valprint.c (f77_get_dynamic_length_of_aggregate):
5644 Delete unused variable.
5645 (f77_create_arrayprint_offset_tbl): Delete unused variable.
5646 * m2-valprint.c (m2_val_print): Delete unused variable.
5647
5648 * ui-out.c (ui_out_field_int): Delete unused variable.
5649 (ui_out_field_fmt_int): Delete unused variable.
5650 * varobj.c (varobj_list_children): Delete unused variable.
5651 (varobj_set_value): Delete unused variable.
5652 (install_new_value_visualizer): Delete unused variable.
5653 (varobj_set_visualizer): Delete unused variable.
5654 (varobj_update): Delete unused variable.
5655 (varobj_editable_p): Delete unused variable.
5656 (c_value_of_root): Delete unused variable.
5657 (cplus_describe_child): Delete unused variable.
5658
5659 * ada-lang.c (add_defn_to_vec): Delete unused variable.
5660 (decode_constrained_packed_array_type): Delete unused variable.
5661 (add_defn_to_vec): Delete unused variable.
5662 (symbol_completion_match): Delete unused variable.
5663 (value_tag_from_contents_and_address): Delete unused variable.
5664 (ada_evaluate_subexp): Delete unused variable.
5665 * c-lang.c (classify_type): Delete unused variable.
5666 * f-lang.c (f_printstr): Delete unused variable.
5667 * objc-lang.c (objc_printstr): Delete unused variable.
5668 * ada-tasks.c (get_known_tasks_addr): Delete unused variable.
5669 * jv-lang.c (type_from_class): ifdef unused variable.
5670 (java_class_name_from_physname): Delete unused variable.
5671 * m2-lang.c (m2_printstr): Delete unused variable.
5672
5673 * objfiles.c (objfile_relocate): Delete unused variable.
5674 * maint.c (_initialize_maint_cmds): Delete unused variable.
5675 * demangle.c (_initialize_demangler): Delete unused variable.
5676 * corefile.c (reopen_exec_file): Delete unused variable.
5677 * dwarf2expr.c (dwarf2_read_address): Delete unused variable.
5678 * dwarf2-frame.c (decode_frame_entry): Delete unused variable.
5679
5680 * osabi.c (_initialize_gdb_osabi): Delete unused variable.
5681 * memattr.c (mem_delete): Delete unused variable.
5682 (invalidate_target_mem_regions): Delete unused variable.
5683 * mem-break.c (default_memory_insert_breakpoint):
5684 Delete unused variable.
5685 * target.c (target_get_osdata): Delete unused variable.
5686 * parse.c (length_of_subexp): Delete unused variable.
5687 (prefixify_subexp): Delete unused variable.
5688 (exp_iterate): Delete unused variable.
5689 * reverse.c (delete_bookmark_command): Delete unused variable.
5690
5691 * macrocmd.c (_initialize_macrocmd): Delete unused variable.
5692 * macroexp.c (gather_arguments): Delete unused variable.
5693 (substitute_args): Delete unused variable.
5694 * completer.c (gdb_completer_loc_break_characters): Unused, delete.
5695 * gdbarch.sh (gdbarch_printable_names): Delete unused variable.
5696 (_initialize_gdbarch): Delete unused variable.
5697 * gdbarch.c, gdbarch.h: Regenerate.
5698 * arch-utils.c (initialize_current_architecture):
5699 Delete unused variable.
5700 (_initialize_gdbarch_utils): Delete unused variable.
5701 * gdbtypes.c (make_cv_type): Delete unused variable.
5702 (make_type_with_address_space): Delete unused variable.
5703
5704 * linespec.c (decode_compound): Delete unused variable.
5705 * dictionary.c (iterator_next_hashed): Delete unused variable.
5706 * infcall.c (call_function_by_hand): Delete unused variable.
5707 * infcmd.c (step_1): Delete unused variable.
5708 (registers_info): Delete unused variable.
5709 (attach_command): Delete unused variable.
5710 * infrun.c (follow_exec): Delete unused variable.
5711 (handle_step_into_function_backwards): Delete unused variable.
5712 (_initialize_infrun): Delete unused variable.
5713 * stack.c (parse_frame_specification_1): Delete unused variable.
5714 (frame_info): Delete unused variable.
5715 (backtrace_command_1): Delete unused variable.
5716 (catch_info): Delete unused variable.
5717
5718 * eval.c (evaluate_subexp_standard): Delete unused variable.
5719 * valops.c (value_cast_pointers): Delete unused variable.
5720 (value_dynamic_cast): Delete unused variable.
5721 (value_array): Delete unused variable.
5722 (find_overload_match): Delete unused variable.
5723 * valarith.c (value_subscript): Delete unused variable.
5724 (value_binop): Delete unused variable.
5725 * valprint.c (_initialize_valprint): Delete unused variable.
5726 * printcmd.c (print_command_1): Delete unused variable.
5727 (address_info): Delete unused variable.
5728 (printf_command): Delete unused variable.
5729
5730 * auxv.c (target_auxv_search): Delete unused variable.
5731 * blockframe.c (get_frame_block): Delete unused variable.
5732 * regcache.c (regcache_cpy): Delete unused variable.
5733 (regcache_cpy_no_passthrough): Delete unused variable.
5734 * charset.c (wchar_iterate): Delete unused variable.
5735 (find_charset_names): Delete unused variable.
5736 (_initialize_charset): Delete unused variable.
5737 * disasm.c (do_mixed_source_and_assembly):
5738 Delete unused variable.
5739 * source.c (set_default_source_symtab_and_line):
5740 Delete unused variable.
5741 (set_substitute_path_command): Delete unused variable.
5742 * value.c (preserve_values): Delete unused variable.
5743 (value_from_double): Delete unused variable.
5744
5745 2010-05-05 Michael Snyder <msnyder@vmware.com>
5746
5747 * psymtab.c (lookup_partial_symbol): Delete unused variable.
5748 (find_last_source_symtab_from_partial): Delete unused variable.
5749 * symfile.c (place_section): Delete unused variable.
5750 (default_symfile_offsets): Delete unused variable.
5751 (get_debug_link_info): Delete unused variable.
5752 (find_separate_debug_file_by_debuglink): Delete unused variable.
5753 (add_symbol_file_command): Delete unused variable.
5754 (symfile_find_segment_sections): Delete unused variable.
5755 * symmisc.c (free_symtab): Delete unused variable.
5756 (dump_symtab_1): Delete unused variable.
5757 * symtab.c (lookup_symbil_aux_quick): Delete unused variable.
5758 (find_pc_sect_symtab): Delete unused variable.
5759 (skip_prologue_using_lineinfo): Delete unused variable.
5760 (sources_info): Delete unused variable.
5761 (completion_list_add_name): Delete unused variable.
5762 (expand_line_sal): Delete unused variable.
5763
5764 * breakpoint.c (validate_commands_for_breakpoint):
5765 Delete unused variables.
5766 (insert_catchpoint): Delete unused variable.
5767 (update_watchpoint): Delete unused variable.
5768 (insert_bp_location): Delete unused variable.
5769 (insert_breakpoint_locations): Delete unused variable.
5770 (remove_breakpoint_1): Delete unused variable.
5771 (software_breakpoint_inserted_here_p): Delete unused variable.
5772 (watchpoints_triggered): Delete unused variable.
5773 (bpstat_check_watchpoint): Delete unused variable.
5774 (bpstat_stop_status): Delete unused variable.
5775 (print_one_breakpoint_location): Delete unused variable.
5776 (allocate_bp_location): Delete unused variable.
5777 (create_breakpoint): Delete unused variable.
5778 (watch_command_1): Delete unused variable.
5779 (catch_exception_command_1): Delete unused variable.
5780 (catch_ada_exception_command): Delete unused variable.
5781 (delete_breakpoint): Delete unused variable.
5782 (breakpoint_re_set_one): Delete unused variable.
5783 (do_enable_breakpoint): Delete unused variable.
5784
5785 2010-05-06 Pedro Alves <pedro@codesourcery.com>
5786
5787 * amd64-tdep.c: Include disasm.h.
5788 (amd64_insn_length_fprintf, amd64_insn_length_init_dis)
5789 (amd64_insn_length): Moved to disasm.c and renamed.
5790 (fixup_riprel): Adjust.
5791 * disasm.c (do_ui_file_delete): New.
5792 (gdb_insn_length): New.
5793 (gdb_buffered_insn_length_fprintf)
5794 (gdb_buffered_insn_length_init_dis)
5795 (gdb_buffered_insn_length): New, moved from amd64-tdep.c, and
5796 renamed.
5797 * disasm.h (gdb_insn_length): Declare.
5798 (gdb_buffered_insn_length): Declare.
5799
5800 2010-05-06 Pedro Alves <pedro@codesourcery.com>
5801
5802 * remote.c (clear_threads_parsing_context): New.
5803 (remote_threads_info): Delete unused null_cleanup. Install a
5804 cleanup to clear the threads_parsing_context in case parsing
5805 throws.
5806
5807 2010-05-05 Michael Snyder <msnyder@vmware.com>
5808
5809 * c-exp.y (parse_string_or_char): Delete unused variable.
5810 (c_lex): Delete unused variable.
5811 * cp-name-parser.y (cpname_lex): Delete unused variable.
5812 * ada-exp.y (find_primitive_type): Delete unused variable.
5813 (write_var_or_type): Delete unused variable.
5814 * jv-exp.y (java_parse): Delete unused variable.
5815 (push_expression_name): Delete unused variable.
5816 * p-exp.y (pascal_lex): Delete unused variable.
5817
5818 2010-05-05 Pedro Alves <pedro@codesourcery.com>
5819
5820 * remote.c (remote_threads_info): Really revert previous previous
5821 change.
5822
5823 2010-05-05 Michael Snyder <msnyder@vmware.com>
5824
5825 * elfread.c (elf_symtab_read): Delete unused variable.
5826 (find_separate_debug_file_by_buildid): Delete unused variables.
5827 (elf_symfile_read): Delete unused variable.
5828
5829 * coffread.c (coff_symfile_read): Delete unused variables.
5830
5831 * coff-pe-read.c (add_pe_exported_sym): Delete unused variable.
5832 (read_pe_exported_syms): Delete unused variable.
5833
5834 * stabsread.c (define_symbol): Delete unused variable.
5835
5836 * dwarf2read.c (read_type_comp_unit_head): Delete unused variable.
5837 (process_psymtab_comp_unit): Delete unused variable.
5838 (dwarf2_build_psymtabs_hard): Delete unused variable.
5839 (load_partial_comp_unit): Delete unused variable.
5840 (create_all_comp_units): Delete unused variable.
5841 (scan_partial_symbols): Delete unused variable.
5842 (add_partial_symbol): Delete unused variable.
5843 (add_partial_namespace): Delete unused variable.
5844 (add_partial_enumeration): Delete unused variable.
5845 (load_full_comp_unit): Delete unused variable.
5846 (process_full_comp_unit): Delete unused variable.
5847 (read_file_scope): Delete unused variable.
5848 (read_type_unit_scope): Delete unused variable.
5849 (process_structure_scope): Delete unused variable.
5850 (process_enumeration_scope): Delete unused variable.
5851 (read_tag_ptr_to_member_type): Delete unused variable.
5852 (read_typedef): Delete unused variable.
5853 (read_partial_die): Delete unused variable.
5854 (decode_locdesc): Delete unused variable.
5855 (zeroed_partial_die): Delete unused global variable.
5856
5857 * tui/tui-interp.c (_initialize_tui_interp):
5858 Delete unused variable.
5859 * tui/tui-regs.c tui_display_registers_from):
5860 Delete unused variable.
5861 (tui_check_register_values): Delete unused variable.
5862 (tui_register_format): Delete unused variable.
5863 * tui/tui-win.c (_initialize_tui_win): Delete unused variable.
5864 * tui/tui-windata.c (tui_display_data_from_line):
5865 Delete unused variables.
5866 (tui_vertical_data_scroll): Delete unused variables.
5867
5868 2010-05-05 Michael Snyder <msnyder@vmware.com>
5869
5870 * remote.c (remote_threads_info): Revert questionable part of
5871 the previous change.
5872
5873 2010-05-05 Michael Snyder <msnyder@vmware.com>
5874
5875 * mi/mi-out.c (mi_table_begin): Delete unused variable.
5876 * mi/mi-cmd-var.c (print_varobj): Delete unused variable.
5877 (mi_cmd_var_list_children): Delete unused variable.
5878 (varobj_update_one): Delete unused variable.
5879 * mi/mi-cmd-break.c (mi_cmd_break_insert): Delete unused variables.
5880 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals):
5881 Delete unused variable.
5882 (mi_cmd_stack_list_variables): Delete unused variable.
5883 (list_args_or_locals): Delete unused variable.
5884 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file):
5885 Delete unused variables.
5886 (mi_cmd_file_list_exec_source_files): Delete unused variable.
5887 * mi/mi-cmd-target.c (mi_cmd_target_file_delete):
5888 Delete unused variable.
5889 * mi/mi-interp.c (mi_interpreter_exec): Delete unused variable.
5890 (mi_cmd_interpreter_exec): Delete unused variable.
5891 (mi_on_normal_stop): Delete unused variable.
5892 * mi/mi-main.c (run_one_inferior): Delete unused variable.
5893 (print_one_inferior): Delete unused variables.
5894 (mi_execute_command): Delete unused variable.
5895 (mi_cmd_execute): Delete unused variable.
5896 (timestamp): Delete unused variable.
5897
5898 * cli/cli-dump.c (dump_memory_to_file): Delete unused variable.
5899 (restore_binary_file): Delete unused variable.
5900 * cli/cli-decode.c (deprecated_cmd_warning): Delete unused variables.
5901 * cli/cli-script.c (define_command): Delete unused variables.
5902 (recurse_read_control_structure): Delete unused variable.
5903 (script_from_file): Delete unused variable.
5904 * cli/cli-cmds.c (complete_command): Delete unused variable.
5905 (disassemble_command): Delete unused variable.
5906
5907 * ax-gdb.c (gen_struct_elt_for_reference): Delete unused variables.
5908 * tracepoint.c (delete_trace_variable_command):
5909 Delete unused variables.
5910 (encode_actions_1): Delete unused variables.
5911 (start_tracing): Delete unused variable.
5912 (trace_status_mi): Delete unused variable.
5913 (tfind_1): Delete unused variable.
5914 (trace_find_pc_command): Delete unused variable.
5915 (trace_find_line_command): Delete unused variables.
5916 (trace_find_range_command): Delete unused variables.
5917 (trace_find_outside_command): Delete unused variables.
5918 (parse_tracepoint_definition): Delete unused variables.
5919 (tfile_fetch_registers): Delete unused variable.
5920
5921 * dcache.c (dcache_init): Delete unused variable.
5922 (dcache_info): Delete unused variable.
5923
5924 * remote.c (remote_threads_info): Delete unused variable.
5925 (process_stop_reply) :Delete unused variable.
5926 (remote_get_trace_status): Delete unused variables.
5927
5928 * linux-thread-db.c (add_thread_db_info): Delete unused variable.
5929 (thread_from_lwp): Delete unused variable.
5930 (enable_thread_event_reporting): Delete unused variable.
5931 (check_for_thread_db): Delete unused variables.
5932 (thread_db_find_new_threads_2): Delete unused variable.
5933
5934 * linux-fork.c (info_checkpoints_command): Delete unused variables.
5935 (checkpoint_command): Delete unused variable.
5936 (linux_fork_context): Delete unused variables.
5937
5938 * linux-nat.c (linux_parent_pid): Delete unused global variable.
5939 (linux_tracefork_child): Delete unused variable.
5940 (linux_child_follow_fork): Delete unused variable.
5941 (linux_nat_detach): Delete unused variable.
5942 (linux_handle_extended_wait): Delete unused variable.
5943 (linux_nat_has_pending_sigint): Delete unused variable.
5944 (linux_nat_find_memory_regions): Delete unused variable.
5945 (linux_nat_make_corefile_notes): Delete unused variables.
5946 (linux_nat_info_proc_cmd): Delete unused variable.
5947 (linux_proc_pending_signals): Delete unused variable.
5948 (linux_nat_stop_lwp): Delete unused variables.
5949 (_initialize_linux_nat): Delete unused variable.
5950
5951 * ser-pipe.c (pipe_ops): Delete unused global variable.
5952
5953 * linux-record.c (record_linux_system_call):
5954 Delete unused variables.
5955
5956 * corelow.c (core_xfer_partial): Delete unused variables.
5957
5958 * solib-svr4.c (find_program_interpreter): Delete unused variable.
5959 (svr4_solib_create_inferior_hook): Add ifdef around
5960 conditionally-used variable declarations.
5961
5962 * solib.c (solib_find): Delete unused variable.
5963 (free_so_symbols): Delete unused variable.
5964 (info_sharedlibrary_command): Delete unused variable.
5965 (reload_shared_libraries_1): Delete unused variable.
5966 (_initialize_solib): Delete unused variable.
5967
5968 * i386-tdep.c (i386_supply_xstateregset) Delete unused variable.
5969 (i386_collect_xstateregset): Delete unused variable.
5970 * i387-tdep.c (i387_print_float_info): Delete unused variable.
5971
5972 * features/i386/i386-mmx.c (initialize_tdesc_i386_mmx):
5973 Delete unused variable 'type'.
5974
5975 2010-05-05 Joel Brobecker <brobecker@adacore.com>
5976
5977 * gdbtypes.h (MAX_OF_TYPE, MIN_OF_TYPE): Delete macros. *
5978 ada-lang.c: Remove comment mentioning these macros.
5979 * m2-exp.y: Delete commented out code.
5980
5981 2010-05-05 Joel Brobecker <brobecker@adacore.com>
5982
5983 * sparc-tdep.c (sparc_structure_or_union_p): Return non-zero
5984 for array types.
5985 * sparc64-tdep.c (sparc64_structure_or_union_p): Likewise.
5986
5987 2010-05-04 Pierre Muller <muller@ics.u-strasbg.fr>
5988
5989 ARI fix: Remove ATTRIBUTE_UNUSED throughout.
5990 * arm-linux-tdep.c (arm_linux_cleanup_svc): Remove
5991 ATTRIBUTE_UNUSED.
5992 (cleanup_kernel_helper_return): Likewise.
5993 * arm-tdep.c (copy_unmodified): Likewise.
5994 (copy_preload): Likewise.
5995 (copy_copro_load_store): Likewise.
5996 (cleanup_branch): Likewise.
5997 (copy_b_bl_blx): Likewise.
5998 (copy_bx_blx_reg): Likewise.
5999 (copy_alu_imm): Likewise.
6000 (copy_alu_reg): Likewise.
6001 (copy_alu_shifted_reg): Likewise.
6002 (cleanup_load): Likewise.
6003 (cleanup_store): Likewise.
6004 (cleanup_block_load_pc): Likewise.
6005 (cleanup_svc): Likewise.
6006 (copy_undef): Likewise.
6007 (copy_unpred): Likewise.
6008 * remote.c (register_remote_support_xml): Likewise.
6009
6010 2010-05-05 Hui Zhu <teawater@gmail.com>
6011
6012 * gdbarch.h (gdbarch_has_dos_based_file_system): Update comment.
6013
6014 2010-05-04 Mark Kettenis <kettenis@gnu.org>
6015
6016 * remote.c (register_remote_support_xml)
6017 (remote_query_supported_append, remote_query_supported): Add cast
6018 to NULL used as sentinel.
6019 * tracepoint.c (tvariables_info_1): Likewise.
6020 * utils.c (add_internal_problem_command): Likewise.
6021
6022 2010-05-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
6023
6024 * dwarf2loc.c (read_pieced_value, write_pieced_value,
6025 dwarf2_evaluate_loc_desc): Handle not being able to access DWARF
6026 registers gracefully.
6027
6028 2010-05-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
6029
6030 * exec.c (print_section_info): Display entry point without arch
6031 specific parts.
6032
6033 2010-05-04 Pierre Muller <muller@ics.u-strasbg.fr>
6034
6035 PR exp/11349.
6036 * printcmd.c (x_command): Only dereference once implicitly for
6037 TYPE_CODE_REF.
6038
6039 2010-05-03 Doug Evans <dje@google.com>
6040
6041 * event-loop.c (gdb_timer): Delete unused global.
6042 (create_timer): Update.
6043
6044 2010-05-03 Jan Kratochvil <jan.kratochvil@redhat.com>
6045
6046 * cp-namespace.c (cp_lookup_symbol_imports): Support ALIAS for the
6047 CURRENT->DECLARATION case.
6048 * cp-support.h (struct using_direct): Provide extended comment.
6049
6050 2010-05-03 Mark Kettenis <kettenis@gnu.org>
6051
6052 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Renamed from
6053 HPPABSD_SIZEOF_GREGS.
6054 (HPPAOBSD_SIZEOF_FPREGS): New define.
6055 (hppaobsd_supply_gregset): Renamed from hppabsd_supply_gregset.
6056 (hppaobsd_supply_fpregset): New function.
6057 (hppaobsd_gregset): Renamed from hppabsd_gregset.
6058 (hppaobsd_fpregset): New variable.
6059 (hppaobsd_regset_from_core_section): Handle floating-point registers.
6060 (_initialize_hppabsd_tdep): Remove spurious blank line.
6061
6062 2010-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
6063
6064 PR pascal/11349.
6065 * p-valprint.c (pascal_value_print): Always dereference a value with
6066 type code TYPE_CODE_REF.
6067
6068 2010-05-03 Pedro Alves <pedro@codesourcery.com>
6069
6070 * remote.c (remote_notice_signals): New.
6071 (remote_start_remote): In non-stop mode, update the remote end on
6072 which signals it can silently pass.
6073 (init_remote_ops): Install remote_notice_signals.
6074
6075 2010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
6076
6077 * cli/cli-cmds.h (error_no_arg): Remove. Move the comment ...
6078 * command.h (error_no_arg): ... here. Remove NORETURN, change
6079 ATTR_NORETURN to ATTRIBUTE_NORETURN.
6080 * defs.h (NORETURN, ATTR_NORETURN): Remove.
6081 (perror_with_name, verror, error, error_stream, vfatal, fatal)
6082 (internal_verror, internal_error, nomem): Remove NORETURN, change
6083 ATTR_NORETURN to ATTRIBUTE_NORETURN.
6084 * exceptions.c (throw_exception, deprecated_throw_reason, throw_verror)
6085 (throw_vfatal, throw_error): Remove NORETURN.
6086 (throw_it): Remove NORETURN, change ATTR_NORETURN to ATTRIBUTE_NORETURN.
6087 * exceptions.h (throw_exception, throw_verror, throw_vfatal)
6088 (throw_error, deprecated_throw_reason): Remove NORETURN, change
6089 ATTR_NORETURN to ATTRIBUTE_NORETURN.
6090 * linespec.c (cplusplus_error): Remove NORETURN, change ATTR_NORETURN
6091 to ATTRIBUTE_NORETURN for prototype, for the definition only remove
6092 NORETURN.
6093 * remote-mips.c (mips_error): Change NORETURN to ATTRIBUTE_NORETURN.
6094 * remote-sim.c (gdb_os_error): Change ATTR_NORETURN to
6095 ATTRIBUTE_NORETURN.
6096 * target.c (tcomplain): Likewise.
6097 * target.h (noprocess): Remove NORETURN, change ATTR_NORETURN to
6098 ATTRIBUTE_NORETURN.
6099 * utils.c (verror, error, vfatal, fatal, error_stream, internal_verror)
6100 (internal_error, perror_with_name, nomem): Remove NORETURN.
6101 * xml-support.h (gdb_xml_error): Change ATTR_NORETURN to
6102 ATTRIBUTE_NORETURN.
6103
6104 2010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
6105
6106 * ada-lang.c (lim_warning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
6107 * amd64-tdep.c (amd64_insn_length_fprintf): Likewise.
6108 * cli-out.c (cli_field_fmt): New ATTRIBUTE_PRINTF.
6109 (cli_message, out_field_fmt): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
6110 * complaints.c (find_complaint): New ATTRIBUTE_PRINTF.
6111 (vcomplaint): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
6112 * complaints.h (complaint, internal_complaint): Likewise.
6113 * defs.h: Change ATTR_FORMAT to ATTRIBUTE_PRINTF in the top comment.
6114 (ATTR_FORMAT): Remove.
6115 (query, nquery, yquery, vprintf_filtered, vfprintf_filtered)
6116 (fprintf_filtered, fprintfi_filtered, printf_filtered, printfi_filtered)
6117 (vprintf_unfiltered, vfprintf_unfiltered, fprintf_unfiltered)
6118 (printf_unfiltered, xasprintf, xvasprintf, xstrprintf, xstrvprintf)
6119 (xsnprintf, verror, error, vfatal, fatal, internal_verror)
6120 (internal_error, internal_vwarning, internal_warning, warning)
6121 (vwarning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
6122 * disasm.c (fprintf_disasm): Likewise.
6123 * exceptions.c (throw_it): Likewise.
6124 * exceptions.h (exception_fprintf, throw_verror, throw_vfatal)
6125 (throw_error): Likewise.
6126 * language.h (type_error, range_error): Likewise.
6127 * linespec.c (cplusplus_error): Likewise.
6128 * mi/mi-interp.c (mi_interp_query_hook): Likewise.
6129 * mi/mi-out.c (mi_field_fmt, mi_message): Likewise.
6130 * monitor.c (monitor_debug): Likewise.
6131 * parser-defs.h (parser_fprintf): Likewise.
6132 * serial.h (serial_printf): Likewise.
6133 * tui/tui-hooks.c (tui_query_hook): Likewise.
6134 * ui-out.c (default_field_fmt, default_message, uo_field_fmt)
6135 (uo_message): Likewise.
6136 * ui-out.h (ui_out_field_fmt, ui_out_message): Likewise.
6137 * utils.c (vfprintf_maybe_filtered, internal_vproblem, defaulted_query):
6138 Likewise.
6139 * xml-support.h (gdb_xml_debug, gdb_xml_error): Likewise.
6140
6141 2010-05-02 Pedro Alves <pedro@codesourcery.com>
6142
6143 * cli-out.c (cli_table_begin, cli_table_body, cli_table_end)
6144 (cli_table_header, cli_begin, cli_end, cli_field_int)
6145 (cli_field_skip, cli_field_string, cli_field_fmt, cli_spaces)
6146 (cli_text, cli_message, cli_wrap_hint, cli_flush, cli_redirect):
6147 Delete forward declarations.
6148 (cli_ui_out_impl): Move below the callbacks.
6149 (_initialize_cli_out): Delete.
6150
6151 2010-05-02 Pedro Alves <pedro@codesourcery.com>
6152
6153 * README: Use consistent `GDB' and `GDBserver' spellings.
6154
6155 2010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
6156
6157 * cli/cli-dump.h (parse_and_eval_with_error): Remove the declaration.
6158
6159 2010-05-01 Pedro Alves <pedro@codesourcery.com>
6160
6161 * infrun.c (prepare_for_detach): In non-stop, context switch to
6162 the thread that got the event before handling the event.
6163
6164 2010-04-30 Tom Tromey <tromey@redhat.com>
6165
6166 * symtab.c (symbol_set_names): Fix typo.
6167
6168 2010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
6169
6170 * python/py-param.c (parm_constants): Avoid ARI warning
6171 by adding ARI comment.
6172 (parmpy_init): Likewise.
6173
6174 2010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
6175
6176 * windows-tdep.c (windows_get_tlb_type): Remember last GDBARCH
6177 and created type for re-use.
6178
6179 2010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
6180
6181 * NEWS: Mention gdbserver support for x86_64 Windows 64-bit.
6182
6183 2010-04-29 Doug Evans <dje@google.com>
6184
6185 * ser-base.h (reschedule): Delete prototype.
6186 * ser-base.c (reschedule): Make static.
6187
6188 2010-04-29 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
6189
6190 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Remove.
6191 (ARM_LINUX_JB_PC_FPA): Add, offset of PC in longjmp buffer for FPA.
6192 (ARM_LINUX_JB_PC_EABI): Add, offset of PC in longjmp buffer for
6193 EABI.
6194 (arm_linux_init_abi): Set up JB_PC field dependent on FP model in
6195 use.
6196
6197 2010-04-29 Pedro Alves <pedro@codesourcery.com>
6198
6199 PR gdb/11557
6200
6201 * regcache.c (registers_changed): Rename to ...
6202 (registers_changed_ptid): ... this, and only delete register cache
6203 entries matching the ptid filter argument.
6204 (registers_changed): Reimplement on top of registers_changed_ptid.
6205 * regcache.h (registers_changed_ptid): Declare.
6206 * target.c (target_resume): Flush register caches.
6207
6208 2010-04-29 Phil Muldoon <pmuldoon@redhat.com>
6209 Tom Tromey <tromey@redhat.com>
6210 Thiago Jung Bauermann <bauerman@br.ibm.com>
6211
6212 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-parameter.
6213 (SUBDIR_PYTHON_SRCS): Likewise.
6214 (py-parameter.o): New rule.
6215 * python/py-parameter.c: New file.
6216 * python/python-internal.h (gdbpy_initialize_parameter)
6217 (gdbpy_parameter, gdbpy_parameter_value)
6218 (gdbpy_parse_command_name): Declare.
6219 * python/py-cmd.c (parse_command_name): Rename to
6220 gdbpy_parse_command_name.
6221 (gdbpy_parse_command_name): Accept a starting list parameter and
6222 use over cmdlist.
6223 (cmdpy_init): Use gdbpy_parse_command_name.
6224 * python/python.c (parameter_to_python): Rename to
6225 gdbpy_parameter_to_python. Accept enum var_types and value.
6226 (gdbpy_parameter): Use gdbpy_parameter_value.
6227 (_initialize_python): Call gdbpy_initialize_parameters.
6228
6229 2010-04-29 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
6230
6231 * MAINTAINERS: Add myself for write after approval privileges.
6232
6233 2010-04-29 Mihail Zenkov <mihail.zenkov@gmail.com>
6234
6235 D language support.
6236 * Makefile.in (SFILES): Add d-lang.c d-valprint.c.
6237 (COMMON_OBS): Add d-lang.o d-valprint.o.
6238 (HFILES_NO_SRCDIR): Add d-lang.h.
6239 * NEWS: Mention D language support.
6240 * c-lang.c (c_emit_char, exp_descriptor_c): Make public.
6241 * c-lang.h (c_emit_char, exp_descriptor_c): Add declaration.
6242 * d-lang.c: New file.
6243 * d-lang.h: New file.
6244 * d-valprint.c: New file.
6245 * defs.h (enum language): Add language_d.
6246 * dwarf2read.c (set_cu_language): Add DW_LANG_D.
6247 * language.c (binop_result_type, integral_type, character_type)
6248 (string_type, boolean_type, structured_type): Add language_d.
6249 * symfile.c (init_filename_language_table): Add language_d.
6250 * symtab.c: Include d-lang.h.
6251 (symbol_init_language_specific, symbol_find_demangled_name)
6252 (symbol_natural_name, lookup_symbol_in_language)
6253 (symbol_demangled_name, symbol_matches_domain): Add language_d.
6254
6255 2010-04-27 Joel Brobecker <brobecker@adacore.com>
6256
6257 * solib-svr4.c (solib_svr4_r_map): Expand function description.
6258
6259 2010-04-27 Joel Brobecker <brobecker@adacore.com>
6260
6261 * symfile.c (init_filename_language_table): Register .dg files
6262 with language_ada.
6263
6264 2010-04-27 Joel Brobecker <brobecker@adacore.com>
6265
6266 * gdbtypes.h (struct main_type): Expand comment about target_type
6267 field.
6268
6269 2010-04-27 Pedro Alves <pedro@codesourcery.com>
6270 Tristan Gingold <gingold@adacore.com>
6271
6272 * symfile.c (reread_symbols): Also search for file in libraries.
6273 Update comment.
6274
6275 2010-04-27 Joel Brobecker <brobecker@adacore.com>
6276
6277 * configure.tgt: Treat x86-lynxos targets as x86 bareboard targets
6278 in terms of configuration.
6279
6280 2010-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
6281
6282 * objfiles.c: Include solist.h.
6283 (free_all_objfiles): New variable so. Check stale solist objfiles.
6284 * symfile.c (symbol_file_clear): Swap the order of free_all_objfiles
6285 and no_shared_libraries.
6286
6287 2010-04-27 Joel Brobecker <brobecker@adacore.com>
6288
6289 ARI warning fix.
6290 * python/py-auto-load.c (source_section_scripts): Remove trailing
6291 new-line in i18n string.
6292
6293 2010-04-26 Doug Evans <dje@google.com>
6294
6295 * serial.c (serial_write): Handle serial_debug_p akin to serial_read.
6296
6297 2010-04-26 Tom Tromey <tromey@redhat.com>
6298
6299 * cli/cli-decode.c (complete_on_cmdlist): Make two passes over the
6300 command list.
6301
6302 2010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
6303
6304 Removal of config/i386/nm-i386sol2.h native configuration file.
6305 * config/i386/nm-i386sol2.h: Remove file.
6306 * config/i386/i386sol2.mh: Remove NAT_FILE definition.
6307 * config/i386/sol2-64.mh: Idem.
6308 * config/djgpp/fnchange.lst: Remove reference to that file.
6309 * Makefile.in (HFILES_NO_SRCDIR): Idem.
6310
6311 2010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
6312
6313 PR breakpoints/11531.
6314 * config/i386/nm-i386sol2.h (CANNOT_STEP_HW_WATCHPOINTS): Remove
6315 macro definition and related comment.
6316 * infrun.c (CANNOT_STEP_HW_WATCHPOINTS): Remove macro.
6317 (resume): Remove code and comment related to this macro.
6318
6319 2010-04-26 Jan Kratochvil <jan.kratochvil@redhat.com>
6320
6321 * cp-namespace.c (cp_lookup_symbol_in_namespace): Fix alloca size.
6322 Fix whitespace.
6323
6324 2010-04-24 Pedro Alves <pedro@codesourcery.com>
6325
6326 * defs.h: Adjust comment.
6327 * filesystem.h, filesystem.c: New files.
6328 * Makefile.in (SFILES): Add filesystem.c.
6329 (COMMON_OBS): Add filesystem.o.
6330 * solib.c (solib_find): Handle DOS-based filesystems. Handle
6331 different target and host path flavours.
6332 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
6333 has_dos_based_file_system on the gdbarch.
6334 * arm-wince-tdep.c (arm_wince_init_abi): Ditto.
6335 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Ditto.
6336 * i386-tdep.c (i386_go32_init_abi): Ditto.
6337 * gdbarch.sh (has_dos_based_file_system): New.
6338 * gdbarch.h, gdbarch.c: Regenerate.
6339 * NEWS: Mention improved support for remote targets with DOS-based
6340 filesystems. Mention new `set/show target-file-system-kind'
6341 commands.
6342
6343 2010-04-23 Stan Shebs <stan@codesourcery.com>
6344
6345 * ax.h (struct agent_expr): Merge in agent_reqs fields, add some
6346 comments.
6347 (struct agent_reqs): Remove.
6348 (ax_reg_mask): Declare.
6349 * ax-general.c (new_agent_expr): Add gdbarch argument, set new fields.
6350 (free_agent_expr): Free reg_mask.
6351 (ax_print): Add scope and register mask info.
6352 (ax_reqs): Remove agent_reqs argument, use agent expression
6353 fields, and move part of register mask computation to...
6354 (ax_reg_mask): New function.
6355 * ax-gdb.c (gen_trace_static_fields): Call it.
6356 (gen_traced_pop): Ditto.
6357 (is_nontrivial_conversion): Add dummy gdbarch to new_agent_expr.
6358 (gen_trace_for_var): Pass gdbarch to new_agent_expr.
6359 (gen_trace_for_expr): Ditto, and clear optimized_out flag.
6360 (gen_eval_for_expr): Ditto, and require an rvalue.
6361 (agent_command): Call ax_reqs.
6362 (agent_eval_command): Ditto.
6363 * tracepoint.c (report_agent_reqs_errors): Use agent expression fields.
6364 (validate_action_line): Ditto.
6365 (collect_symbol): Ditto.
6366 (encode_actions_1): Ditto.
6367
6368 2010-04-23 Daniel Jacobowitz <dan@codesourcery.com>
6369 Paul Pluzhnikov <ppluzhnikov@google.com>
6370 Jan Kratochvil <jan.kratochvil@redhat.com>
6371
6372 Fix deadlock on looped list of loaded shared objects.
6373 * solib-svr4.c (LM_PREV): New function.
6374 (IGNORE_FIRST_LINK_MAP_ENTRY): Use it.
6375 (svr4_current_sos): Check for correct l_prev. New variables prev_lm
6376 and next_lm. Clear prev_lm for solib_svr4_r_ldsomap.
6377 * config/djgpp/fnchange.lst: Add translation for solib-corrupted.exp.
6378
6379 2010-04-23 Doug Evans <dje@google.com>
6380
6381 * configure.ac (CONFIG_SRCS): Add py-auto-load.o even if not using
6382 python.
6383 * configure: Regenerate.
6384 * main.c: #include "python/python.h".
6385 (captured_main): Defer loading auto-loaded scripts until after
6386 local_gdbinit has been sourced.
6387 * python/py-auto-load.c (gdbpy_global_auto_load): New global.
6388 (load_auto_scripts_for_objfile): New function.
6389 (auto_load_new_objfile): Call it.
6390 * python/python.h (gdbpy_global_auto_load): Declare.
6391 (load_auto_scripts_for_objfile): Declare.
6392
6393 Add support for auto-loading scripts from .debug_gdb_scripts section.
6394 * NEWS: Add entry for .debug_gdb_scripts.
6395 * Makefile.in SUBDIR_PYTHON_OBS): Add py-auto-load.o.
6396 (SUBDIR_PYTHON_SRCS): Add py-auto-load.c.
6397 (py-auto-load.o): New rule.
6398 * cli/cli-cmds.c (find_and_open_script): Make externally visible.
6399 * cli/cli-cmds.h (find_and_open_script): Update prototype.
6400 * python/py-auto-load.c: New file.
6401 * python/python-internal.h: #include <stdio.h>.
6402 (set_python_list, show_python_list): Declare.
6403 (gdbpy_initialize_auto_load): Declare.
6404 (source_python_script_for_objfile): Declare.
6405 * python/python.c: Remove #include of observer.h.
6406 (gdbpy_auto_load): Moved to py-auto-load.c.
6407 (GDBPY_AUTO_FILENAME): Ditto.
6408 (gdbpy_new_objfile): Delete.
6409 (source_python_script_for_objfile): New function.
6410 (set_python_list, show_python_list): Make externally visible.
6411 (_initialize_python): Move "auto-load" command to py-auto-load.c
6412 and observer_attach_new_objfile to py-auto-load.c.
6413
6414 2010-04-23 Jerome Guitton <guitton@adacore.com>
6415
6416 * alpha-tdep.c (INSN_OPCODE, MEM_RA, MEM_RB, MEM_DISP, BR_RA)
6417 (OPR_FUNCTION, OPR_HAS_IMMEDIATE, OPR_RA, OPR_RC, OPR_LIT): New macros.
6418 (lda_opcode, stq_opcode, bne_opcode, subq_opcode, subq_function):
6419 New constants.
6420 (alpha_heuristic_analyze_probing_loop): New function.
6421 (alpha_heuristic_frame_unwind_cache): In the prologue analysis, detect
6422 and handle cases when a stack probe loop is generated.
6423 * alpha-mdebug-tdep.c (alpha_mdebug_frameless): New function.
6424 (alpha_mdebug_max_frame_size_exceeded): New function.
6425 (alpha_mdebug_after_prologue): Use alpha_mdebug_frameless.
6426 (alpha_mdebug_frame_sniffer, alpha_mdebug_frame_base_sniffer):
6427 Return 0 when the maximum debuggable frame size has been exceeded.
6428
6429 2010-04-23 Joel Brobecker <brobecker@adacore.com>
6430
6431 Fix ARI warning.
6432 * ppc-linux-nat.c (booke_cmp_hw_point): Do not mark inline.
6433
6434 2010-04-20 Chris Moller <cmoller@redhat.com>
6435
6436 PR 10179
6437
6438 * symtab.c (rbreak_command): Added code to include a filename
6439 specification in the rbreak argument.
6440 * NEWS: Added a brief description of filename-qualified rbreak.
6441
6442 2010-04-22 Jan Kratochvil <jan.kratochvil@redhat.com>
6443
6444 Fix crashes on dangling display expressions.
6445 * ada-lang.c (ada_operator_check): New function.
6446 (ada_exp_descriptor): Fill-in the field operator_check.
6447 * c-lang.c (exp_descriptor_c): Fill-in the field operator_check.
6448 * jv-lang.c (exp_descriptor_java): Likewise.
6449 * m2-lang.c (exp_descriptor_modula2): Likewise.
6450 * scm-lang.c (exp_descriptor_scm): Likewise.
6451 * parse.c (exp_descriptor_standard): Likewise.
6452 (operator_check_standard): New function.
6453 (exp_iterate, exp_uses_objfile_iter, exp_uses_objfile): New functions.
6454 * parser-defs.h (struct exp_descriptor): New field operator_check.
6455 (operator_check_standard, exp_uses_objfile): New declarations.
6456 * printcmd.c: Remove the inclusion of solib.h.
6457 (display_uses_solib_p): Remove the function.
6458 (clear_dangling_display_expressions): Call lookup_objfile_from_block
6459 and exp_uses_objfile instead of display_uses_solib_p.
6460 * solist.h (struct so_list) <objfile>: New comment.
6461 * symtab.c (lookup_objfile_from_block): Remove the static qualifier.
6462 * symtab.h (lookup_objfile_from_block): New declaration.
6463 (struct general_symbol_info) <obj_section>: Extend the comment.
6464
6465 2010-04-22 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
6466 Thiago Jung Bauermann <bauerman@br.ibm.com>
6467
6468 * ppc-linux-nat.c (PTRACE_GET_DEBUGREG): Update comment.
6469 (PPC_PTRACE_GETWDBGINFO, PPC_PTRACE_SETHWDEBUG, PPC_PTRACE_DELHWDEBUG,
6470 ppc_debug_info, PPC_DEBUG_FEATURE_INSN_BP_RANGE,
6471 PPC_DEBUG_FEATURE_INSN_BP_MASK, PPC_DEBUG_FEATURE_DATA_BP_RANGE,
6472 PPC_DEBUG_FEATURE_DATA_BP_MASK, ppc_hw_breakpoint,
6473 PPC_BREAKPOINT_TRIGGER_EXECUTE, PPC_BREAKPOINT_TRIGGER READ,
6474 PPC_BREAKPOINT_TRIGGER_WRITE, PPC_BREAKPOINT_TRIGGER_RW,
6475 PPC_BREAKPOINT_MODE_EXACT PPC_BREAKPOINT_MODE_RANGE_INCLUSIVE,
6476 PPC_BREAKPOINT_MODE_RANGE_EXCLUSIVE, PPC_BREAKPOINT_MODE_MASK,
6477 PPC_BREAKPOINT_CONDITION_NONE, PPC_BREAKPOINT_CONDITION_AND,
6478 PPC_BREAKPOINT_CONDITION_EXACT, PPC_BREAKPOINT_CONDITION_OR,
6479 PPC_BREAKPOINT_CONDITION_AND_OR, PPC_BREAKPOINT_CONDITION_BE_ALL,
6480 PPC_BREAKPOINT_CONDITION_BE_SHIFT, PPC_BREAKPOINT_CONDITION_BE):
6481 Define, in case <ptrace.h> doesn't provide it.
6482 (booke_debug_info): New variable.
6483 (max_slots_number): Ditto.
6484 (hw_break_tuple): New struct.
6485 (thread_points): Ditto.
6486 (ppc_threads): New variable.
6487 (PPC_DEBUG_CURRENT_VERSION): New define.
6488 (have_ptrace_new_debug_booke): New function.
6489 (ppc_linux_check_watch_resources): Renamed to ...
6490 (ppc_linux_can_use_hw_breakpoint): ... this. Handle BookE processors.
6491 (ppc_linux_region_ok_for_hw_watchpoint): Handle BookE processors.
6492 (booke_cmp_hw_point): New function.
6493 (booke_find_thread_points_by_tid): Ditto.
6494 (booke_insert_point): Ditto.
6495 (booke_remove_point): Ditto.
6496 (ppc_linux_insert_hw_breakpoint): Ditto.
6497 (ppc_linux_remove_hw_breakpoint): Ditto.
6498 (get_trigger_type): Ditto.
6499 (ppc_linux_insert_watchpoint): Handle BookE processors.
6500 (ppc_linux_remove_watchpoint): Ditto.
6501 (ppc_linux_new_thread): Ditto.
6502 (ppc_linux_thread_exit): New function..
6503 (ppc_linux_stopped_data_address): Handle BookE processors.
6504 (ppc_linux_watchpoint_addr_within_range): Ditto.
6505 (_initialize_ppc_linux_nat): Initialize to_insert_hw_breakpoint and
6506 to_remove_hw_breakpoint fields of the target operations struct.
6507 Add observe for the thread_exit event.
6508
6509 2010-04-22 H.J. Lu <hongjiu.lu@intel.com>
6510
6511 * i386-linux-nat.c (regmap): Removed.
6512 (fetch_register): Replace regmap with
6513 i386_linux_gregset_reg_offset.
6514 (store_register): Likewise.
6515 (supply_gregset): Likewise.
6516 (fill_gregset): Likewise.
6517
6518 * i386-linux-tdep.c (i386_linux_gregset_reg_offset): Make it
6519 global.
6520
6521 * i386-linux-tdep.h (i386_linux_gregset_reg_offset): New.
6522
6523 2010-04-22 Chris Moller <cmoller@redhat.com>
6524
6525 * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
6526 method of popping recursion-detection stack with a method based on
6527 obstack_object_size(). (Similar to the PR9167 patch below, but for
6528 the static array obstack rather than the static member obstack.)
6529
6530 2010-04-22 H.J. Lu <hongjiu.lu@intel.com>
6531
6532 * amd64-linux-nat.c (amd64_linux_gregset64_reg_offset): Removed.
6533 (_initialize_amd64_linux_nat): Replace
6534 amd64_linux_gregset64_reg_offset with
6535 amd64_linux_gregset_reg_offset.
6536
6537 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Make it
6538 global.
6539
6540 * amd64-tdep.h (amd64_linux_gregset_reg_offset): New.
6541
6542 2010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
6543
6544 PR stabs/11479.
6545 * stabsread.c (set_length_in_type_chain): New function.
6546 (read_struct_type): Call set_length_in_type_chain function.
6547 (read_enum_type): Idem.
6548
6549 2010-04-21 Stan Shebs <stan@codesourcery.com>
6550 Nathan Sidwell <nathan@codesourcery.com>
6551
6552 * tracepoint.c (trace_save): Open in binary mode.
6553
6554 2010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
6555
6556 * gdbtypes.h (builtin_type): Add builtin_char16 and builtin_char32
6557 fields.
6558 * gdbtypes.c (gdbtypes_post_init): Set builtin_char16 and
6559 builtin_char32 fields.
6560 * printcmd.c (decode_format): Set char size to '\0'
6561 for strings unless explicit size is given.
6562 (print_formatted): Correct calculation of NEXT_ADDRESS
6563 for 16 or 32 bit strings.
6564 (do_examine): Do not force byte size for strings.
6565 Use builtin_char16 and builtin_char32 types to display
6566 16 or 32 bit-wide strings.
6567 (x_command): Set LAST_SIZE to 'b' for string type.
6568
6569 2010-04-21 H.J. Lu <hongjiu.lu@intel.com>
6570
6571 PR corefiles/11523
6572 * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
6573 XCR0 first.
6574
6575 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Return 0 if
6576 there is no .reg-xstate section.
6577 (i386_linux_core_read_description): Check XCR0 first.
6578
6579 2010-04-21 Mike Frysinger <vapier@gentoo.org>
6580
6581 * gdb/sparc-tdep.c (sparc32_store_return_value): Add gdb_assert ()
6582 for len <= 8.
6583
6584 2010-04-21 Chris Moller <cmoller@redhat.com>
6585
6586 PR 9167
6587 * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
6588 method of popping recursion-detection stack with a method based on
6589 obstack_object_size().
6590
6591 2010-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
6592
6593 PR pascal/11492.
6594 * p-valprint.c (pascal_val_print): Fix default printing of integer
6595 arrays.
6596
6597 2010-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
6598
6599 Fix compilation warning on gcc-4.1.2.
6600 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Initialize
6601 local variable`pc' to zero.
6602
6603 2010-04-20 Joel Brobecker <brobecker@adacore.com>
6604
6605 Implement thread support with core files on alpha-tru64.
6606 * dec-thread.c (dec_thread_find_new_threads): New function,
6607 extracted from resync_thread_list.
6608 (resync_thread_list): Add OPS parameter. Replace extracted-out
6609 code by call to dec_thread_find_new_threads.
6610 (dec_thread_wait): Update call to resync_thread_list.
6611 (init_dec_thread_ops): Set dec_thread_ops.to_find_new_threads.
6612
6613 2010-04-20 Joel Brobecker <brobecker@adacore.com>
6614
6615 * ada-lang.c (value_pointer): New function.
6616 (make_array_descriptor): Call value_pointer to convert addresses to
6617 pointers.
6618
6619 2010-04-20 Joel Brobecker <brobecker@adacore.com>
6620
6621 * rs6000-aix-tdep.c: #include exceptions.h.
6622 (rs6000_convert_from_func_ptr_addr): If an exception is thrown
6623 while reading the memory at ADDR, then ADDR cannot be a function
6624 descriptor.
6625
6626 2010-04-20 Joel Brobecker <brobecker@adacore.com>
6627
6628 * ada-typeprint.c (ada_print_typedef): New function.
6629 * ada-lang.h (ada_print_typedef): Add declaration.
6630 * ada-lang.c (ada_language_defn): set la_print_typdef field
6631 to ada_print_typedef.
6632
6633 2010-04-20 Joel Brobecker <brobecker@adacore.com>
6634
6635 * procfs.c (procfs_address_to_host_pointer): Only define when used.
6636
6637 2010-04-20 Joel Brobecker <brobecker@adacore.com>
6638
6639 * procfs.c (iterate_over_mappings_cb_ftype): New typedef.
6640 (iterate_over_mappings): Adjust function profile. Add declaration.
6641 (insert_dbx_link_bpt_in_region, info_mappings_callback):
6642 Adjust accordingly.
6643
6644 2010-04-20 Joel Brobecker <brobecker@adacore.com>
6645
6646 * procfs.c (solib_mappings_callback): Move function up to avoid
6647 a compiler warning.
6648
6649 2010-04-20 Joel Brobecker <brobecker@adacore.com>
6650
6651 * procfs.c (find_signalled_thread, find_stop_signal): Move
6652 these functions down to define them only when used.
6653
6654 2010-04-20 Joel Brobecker <brobecker@adacore.com>
6655
6656 * valprint.c (common_val_print): Fix the value before extracting
6657 its contents.
6658 * ada-lang.c (ada_to_fixed_value): Make this function extern.
6659 * ada-lang.h (ada_to_fixed_value): New function declaration.
6660 * ada-valprint.c (ada_value_print): Use ada_to_fixed_value
6661 to avoid code duplication and fix a bug in the handling of
6662 fixed types contents.
6663
6664 2010-04-20 Tom Tromey <tromey@redhat.com>
6665
6666 * dwarf2read.c (dwarf2_compute_name): Handle DW_AT_linkage_name.
6667 (read_partial_die): Likewise.
6668 (dwarf_attr_name): Likewise.
6669
6670 2010-04-20 Chris Moller <cmoller@redhat.com>
6671
6672 PR 10867
6673
6674 * cp-valprint.c (global): Adding new static array recursion
6675 detection obstack.
6676 (cp_print_value_fields, cp_print_static_field): Added new static
6677 array recursion detection code.
6678
6679 2010-04-20 Mark Kettenis <kettenis@gnu.org>
6680
6681 * i386-linux-tdep.c (i386_linux_regset_sections): Size of the
6682 general-purpose register set should be 68 instead of 144.
6683 (i386_linux_sse_regset_sections): Likewise.
6684 (i386_linux_avx_regset_sections): Likewise.
6685
6686 2010-04-20 Stan Shebs <stan@codesourcery.com>
6687 Nathan Sidwell <nathan@codesourcery.com>
6688
6689 * dwarf2loc.c (struct axs_var_loc): New struct.
6690 (dwarf2_tracepoint_var_loc): New function.
6691 (dwarf2_tracepoint_var_access): New function.
6692 (dwarf2_tracepoint_var_ref): Use dwarf2_tracepoint_var_loc, deal
6693 with DW_OP_piece.
6694 (locexpr_describe_location_piece): New function.
6695 (locexpr_describe_location_1): New function.
6696 (locexpr_describe_location): Call it, update signature.
6697 (loclist_describe_location): Rewrite to loop over locations,
6698 update signature.
6699 * symtab.h (struct symbol_computed_ops): Add address to
6700 describe_location arguments, return void.
6701 * printcmd.c (address_info): Get context PC, pass to computed
6702 location description.
6703 * tracepoint.c (scope_info): Ditto.
6704 * ax-gdb.c (trace_kludge): Export.
6705
6706 2010-04-20 Tom Tromey <tromey@redhat.com>
6707
6708 * dwarf2-frame.c (decode_frame_entry_1): Handle CIE version 4.
6709 (struct dwarf2_cie) <segment_size>: New field.
6710 * dwarf2read.c (partial_read_comp_unit_head): Accept DWARF 4.
6711 (skip_one_die): Handle DW_FORM_flag_present, DW_FORM_sec_offset,
6712 DW_FORM_exprloc.
6713 (read_attribute_value): Handle DW_FORM_flag_present,
6714 DW_FORM_sec_offset, DW_FORM_exprloc.
6715 (dump_die_shallow): Likewise.
6716 (attr_form_is_section_offset): Handle DW_FORM_sec_offset.
6717 (dwarf2_const_value): Handle DW_FORM_exprloc.
6718 (attr_form_is_block): Likewise.
6719 (struct line_header) <maximum_ops_per_instruction>: New field.
6720 (dwarf_decode_line_header): Set new field.
6721 (dwarf_decode_lines): Handle new field.
6722
6723 2010-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
6724
6725 * f-exp.y: Add new production to recognize the `logical*8' type.
6726 (LOGICAL_S8_KEYWORD): New token.
6727 * f-lang.c (enum f_primitive_types)
6728 <f_primitive_type_logical_s8>: New field.
6729 (f_language_arch_info): Handling `logical*8' type.
6730 (build_fortran_types): Building `logical*8' type.
6731 * f-lang.h (struct builtin_f_type) <builtin_logical_s8>: New field.
6732
6733 2010-04-19 Doug Evans <dje@google.com>
6734
6735 * ser-base.c (generic_readchar): Watch for EOF in read of error_fd.
6736 * ser-pipe.c (pipe_open): Fix file descriptor leaks.
6737 (pipe_close): Ditto.
6738
6739 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
6740
6741 * configure.tgt (x86_64-*-mingw*): Set BUILD_GDBSERVER to yes.
6742
6743 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
6744
6745 * windows-tdep.c (windows_get_tlb_type): Change current_seh.handle
6746 type to void function.
6747
6748 2010-04-19 Stan Shebs <stan@codesourcery.com>
6749 Vladimir Prus <vladimir@codesourcery.com>
6750
6751 * tracepoint.c (tfind_1): Add missing newline, report exit from
6752 tfind mode as such.
6753 * target.c (update_current_target): Make default
6754 to_trace_find return -1.
6755
6756 2010-04-19 Mike Frysinger <vapier@gentoo.org>
6757
6758 * objc-lang.c (find_methods): Move symname check up.
6759
6760 2010-04-19 Pedro Alves <pedro@codesourcery.com>
6761
6762 * ada-lang.c (print_recreate_exception)
6763 <ex_catch_exception_unhandled>: It's "catch exception unhandled",
6764 not "catch unhandled".
6765
6766 2010-04-19 Pedro Alves <pedro@codesourcery.com>
6767
6768 PR breakpoints/8554.
6769
6770 Implement `save-breakpoints'.
6771
6772 * breakpoint.c (save_cmdlist): New.
6773 (breakpoint_set_cmdlist, breakpoint_show_cmdlist): Moved up close
6774 to save_cmdlist.
6775 (print_recreate_catch_fork): New.
6776 (catch_fork_breakpoint_ops): Install it.
6777 (print_recreate_catch_vfork): New.
6778 (catch_vfork_breakpoint_ops): Install it.
6779 (print_recreate_catch_syscall): New.
6780 (catch_syscall_breakpoint_ops): Install it.
6781 (print_recreate_catch_exec): New.
6782 (catch_exec_breakpoint_ops): Install it.
6783 (print_recreate_exception_catchpoint): New.
6784 (gnu_v3_exception_catchpoint_ops): Install it.
6785 (save_breakpoints): New, based on tracepoint_save_command, but
6786 handle all breakpoint types.
6787 (save_breakpoints_command): New.
6788 (tracepoint_save_command): Rename to...
6789 (save_tracepoints_command): ... this, and reimplement using
6790 save_breakpoints.
6791 (save_command): New.
6792 (_initialize_breakpoints): Install the "save" command prefix.
6793 Install the "save breakpoints" command. Make "save-tracepoints" a
6794 deprecated alias for "save tracepoints".
6795 * breakpoint.h (struct breakpoint_ops): New field `print_recreate'.
6796 * ada-lang.c (print_recreate_exception): New.
6797 (print_recreate_catch_exception): New.
6798 (catch_exception_breakpoint_ops): Install it.
6799 (print_recreate_catch_exception_unhandled): New.
6800 (catch_exception_unhandled_breakpoint_ops): Install it.
6801 (print_recreate_catch_assert): New.
6802 (catch_assert_breakpoint_ops): Install it.
6803
6804 * NEWS: Mention the new `save breakpoints' command. Mention the
6805 new `save tracepoints' alias and that `save-tracepoints' is now
6806 deprecated.
6807
6808 2010-04-18 Pedro Alves <pedro@codesourcery.com>
6809
6810 PR tui/9217
6811
6812 * tui/tui-out.c: Include cli-out.h.
6813 (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
6814 (tui_begin, tui_end, tui_field_int, tui_field_skip)
6815 (tui_field_string, tui_field_fmt, tui_spaces, tui_text)
6816 (tui_message, tui_wrap_hint, tui_flush): Delete forward
6817 declarations.
6818 (struct ui_out_data): Rename to...
6819 (struct tui_ui_out_data): ... this. Remove `stream' and
6820 `suppress_output' fields, and inherit cli_ui_out_data.
6821 (tui_out_data): New typedef.
6822 (tui_ui_out_impl): Don't initialize fields staticaly.
6823 (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
6824 (tui_begin, tui_end): Delete.
6825 (tui_field_int): Adjust to delegate most work to the base type.
6826 (tui_field_skip): Delete.
6827 (tui_field_string, tui_field_fmt): Adjust comment. Adjust to
6828 delegate most work to the base type.
6829 (tui_spaces): Delete.
6830 (tui_text): Adjust to delegate most work to the base type.
6831 (tui_message): Delete.
6832 (tui_wrap_hint): Delete.
6833 (tui_flush): Delete.
6834 (out_field_fmt): Delete.
6835 (field_separator): Delete.
6836 (tui_out_new): Adjust to initialize the base type.
6837 (_initialize_tui_out): Initialize tui_ui_out_impl.
6838 * cli-out.c (struct ui_out_data): Moved out to cli-out.h, renamed
6839 cli_ui_out_data.
6840 (cli_out_data): Adjust.
6841 (cli_ui_out_impl): Make extern.
6842 (cli_table_header, cli_field_int, cli_field_skip): Use
6843 uo_field_string instead of cli_field_string.
6844 (cli_redirect): Adjust to use cli_out_data.
6845 (cli_out_data_ctor): New.
6846 (cli_out_new): Use it.
6847 * cli-out.h (struct ui_file): Remove forward declaration.
6848 (struct cli_ui_out_data): New, moved from cli-out.c, and renamed.
6849 (cli_ui_out_impl): Declare.
6850 (cli_out_data_ctor): Declare.
6851 * ui-out.c (struct ui_out) <data>: Change type to void pointer.
6852 (uo_field_string): No longer static.
6853 (ui_out_data): Change return type to void pointer.
6854 (ui_out_new): Change `data' parameter type to void pointer.
6855 * ui-out.h (struct ui_out_data): Don't forward declare.
6856 (ui_out_data): Change return type to void pointer.
6857 (ui_out_new): Change `data' parameter type to void pointer.
6858 (uo_field_string): Declare.
6859
6860 2010-04-17 Pedro Alves <pedro@codesourcery.com>
6861
6862 * ui-file.c (tee_file_isatty): Return whether `tee->one' is a tty,
6863 instead of always false.
6864
6865 2010-04-17 H.J. Lu <hongjiu.lu@intel.com>
6866
6867 PR corefiles/11511
6868 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Support
6869 orig_rax.
6870
6871 2010-04-17 Pedro Alves <pedro@codesourcery.com>
6872
6873 * breakpoint.c (watchpoints_triggered): Use
6874 is_hardware_watchpoint.
6875 (watchpoints_triggered): Ditto.
6876 (bpstat_check_location): Use is_watchpoint and
6877 is_hardware_watchpoint.
6878 (bpstat_check_watchpoint): Use is_watchpoint and
6879 is_hardware_watchpoint.
6880 (bpstat_stop_status): Fix comment.
6881 (user_settable_breakpoint): Use is_watchpoint.
6882 (hw_watchpoint_used_count): Use is_hardware_watchpoint.
6883 (disable_watchpoints_before_interactive_call_start): Use
6884 is_watchpoint.
6885 (enable_watchpoints_after_interactive_call_stop): Use
6886 is_watchpoint.
6887 (clear_command): Use is_watchpoint.
6888 (do_enable_breakpoint): Use is_watchpoint.
6889
6890 2010-04-16 Mike Frysinger <vapier@gentoo.org>
6891
6892 * solib-frv.c (enable_break1_done): Delete.
6893 (enable_break2): Do not check enable_break1_done. Move the
6894 enable_break2_done setting and call to
6895 remove_solib_event_breakpoints() to the end. Return without
6896 warning when the contents of _dl_debug_addr are 0.
6897 (enable_break): Do not set enable_break1_done.
6898 (frv_clear_solib): Likewise.
6899
6900 2010-04-16 Kevin Buettner <kevinb@redhat.com>
6901
6902 * m32c-tdep.c (m32c_m16c_address_to_pointer): Print warning
6903 instead of an error if no PLT entry is found. Return a
6904 potentially useful result.
6905 (m32c_m16c_pointer_to_address): Add code to search for function
6906 address when no .plt entry is found.
6907
6908 2010-04-16 Stan Shebs <stan@codesourcery.com>
6909
6910 * tracepoint.c (trace_variable_command): Run a cleanup.
6911
6912 2010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
6913
6914 * p-lang.c (pascal_one_char): Do not restrict C to 0..255 range.
6915
6916 2010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
6917
6918 Support for Windows OS Thread Information Block.
6919 * NEWS: Document new feature.
6920 * remote.c (PACKET_qGetTIBAddr): New enum element.
6921 (remote_get_tib_address): New function.
6922 (init_remote_ops): Set to_get_tib_address field
6923 to remote_get_tib_address.
6924 (_initialize_remote): Add add_packet_config_cmd
6925 for PACKET_qGetTIBAddr.
6926 * target.c (update_current_target): Set default value for
6927 new to_get_tib_address field.
6928 * target.h (target_ops): New field to_get_tib_address.
6929 (target_get_tib_address): New macro.
6930 * windows-nat.c (thread_info): Add thread_local_base field.
6931 (windows_add_thread): Add tlb argument of type 'void *'.
6932 (fake_create_process): Adapt windows_add_thread call.
6933 (get_windows_debug_event): Idem.
6934 (windows_get_tib_address): New function.
6935 (init_windows_ops): Set to_get_tib_address field
6936 to remote_get_tib_address.
6937 (_initialize_windows_nat): Replace info_w32_cmdlist
6938 initialization by a call to init_w32_command_list.
6939 (info_w32_command, info_w32_cmdlist): Removed from here...
6940 to windows-tdep.c file.
6941 * windows-tdep.h (info_w32_cmdlist): Declare.
6942 (init_w32_command_list): New external function
6943 declaration.
6944 * windows-tdep.c: Add several headers.
6945 (info_w32_cmdlist): to here, made global.
6946 (thread_information_32): New struct.
6947 (thread_information_64): New struct.
6948 (TIB_NAME): New char array.
6949 (MAX_TIB32, MAX_TIB64, FULL_TIB_SIZE): New constants.
6950 (maint_display_all_tib): New static variable.
6951 (windows_get_tlb_type): New function.
6952 (tlb_value_read, tlb_value_write): New functions.
6953 (tlb_value_funcs): New static struct.
6954 (tlb_make_value): New function.
6955 (display_one_tib): New function.
6956 (display_tib): New function.
6957 (show_maint_show_all_tib):New function.
6958 (info_w32_command): Moved from windows-nat.c.
6959 (init_w32_command_list): New function.
6960 (_initialize_windows_tdep): New function.
6961 New "maint set/show show-all-tib" command
6962 New "$_tlb" internal variable.
6963
6964 2010-04-16 Joel Brobecker <brobecker@adacore.com>
6965
6966 * tui/tui-regs.c (tui_display_register): Add comment about
6967 a couple of casts.
6968 * tui/tui-stack.c (tui_show_locator_content): Ditto.
6969
6970 2010-04-15 Stan Shebs <stan@codesourcery.com>
6971
6972 * frame.c: Include tracepoint.h.
6973 (get_current_frame): Allow a trace frame to be an alternate source
6974 of stack frame data.
6975 * tracepoint.c (tfind_1): Don't try to get current stack frame if
6976 it won't succeed.
6977
6978 2010-04-15 Pedro Alves <pedro@codesourcery.com>
6979
6980 * ppc-linux-tdep.c (bsd_uthread_solib_loaded): Always pass 0 for
6981 flags.
6982 * solib-spu.c (spu_solib_loaded): Always pass 0 for flags.
6983
6984 2010-04-15 Doug Evans <dje@google.com>
6985
6986 * NEWS: Add entry for python program space support.
6987 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-progspace.o.
6988 (SUBDIR_PYTHON_SRCS): Add py-progspace.c.
6989 (py-progspace.o): New rule.
6990 * python/py-prettyprint.c (find_pretty_printer_from_objfiles): New
6991 function.
6992 (find_pretty_printer_from_progspace): New function.
6993 (find_pretty_printer_from_gdb): New function.
6994 (find_pretty_printer): Rewrite.
6995 * python/py-progspace.c: New file.
6996 * python/python-internal.h (program_space): Add forward decl.
6997 (pspace_to_pspace_object, pspy_get_printers): Declare.
6998 (gdbpy_initialize_pspace): Declare.
6999 * python/python.c: #include "progspace.h".
7000 (gdbpy_get_current_progspace, gdbpy_progspaces): New functions.
7001 (_initialize_python): Call gdbpy_initialize_pspace.
7002 (GdbMethods): Add current_progspace, progspaces.
7003
7004 Add -s option to source command.
7005 * NEWS: Document new option.
7006 * cli/cli-cmds.c (find_and_open_script): Add function comment.
7007 Delete from_tty and cleanupp args. Split filep arg into file and
7008 full_pathp. New arg search_path.
7009 (source_script_from_stream): New function.
7010 (source_script_with_search): New function.
7011 (source_script): Rewrite.
7012 (source_command): Parse "-s" option.
7013 (init_cli_cmds): Add "-s" docs to source command help, and reformat.
7014 * python/python.c (source_python_script): Make file arg a const char *.
7015 Don't call fclose, leave for caller.
7016 * python/python.h (source_python_script): Update.
7017
7018 2010-04-14 Daniel Jacobowitz <dan@codesourcery.com>
7019 Pedro Alves <pedro@codesourcery.com>
7020
7021 Avoid rereading shared libraries that haven't changed.
7022
7023 * solib.c (free_so_symbols): New function, from ...
7024 (free_so): ... here. Call it.
7025 (solib_read_symbols): Don't warn here if symbols have already been
7026 loaded.
7027 (solib_add): Warn here instead, if a pattern was specified.
7028 (reload_shared_libraries_1): New.
7029 (reload_shared_libraries): Rewrite to not fetch the library list.
7030
7031 2010-04-14 Doug Evans <dje@google.com>
7032
7033 * source.c (openp): Strip DOS drive letter if present before
7034 concatenating string to search path.
7035
7036 2010-04-14 Pedro Alves <pedro@codesourcery.com>
7037
7038 * objfiles.h (gdb_bfd_close_or_warn): Declare.
7039 * objfiles.c (gdb_bfd_close_or_warn): New.
7040 * corelow.c: Include objfiles.h
7041 (core_close): Use gdb_bfd_close_or_warn.
7042 * elfread.c (build_id_verify): Ditto.
7043 * exec.c (exec_close, exec_close_1): Ditto.
7044
7045 2010-04-14 Daniel Jacobowitz <dan@codesourcery.com>
7046 Pedro Alves <pedro@codesourcery.com>
7047
7048 Group errors for many missing shared libraries.
7049
7050 * solist.h (struct so_list): Remove from_tty.
7051 * solib.c (solib_bfd_open): Return NULL if we failed to open a BFD.
7052 (solib_map_sections): Take so_list argument. Return 0 if we
7053 failed to open a BFD. Add target sections here.
7054 (symbol_add_stub): Delete.
7055 (solib_read_symbols): Inline symbol_add_stub. Use current flags,
7056 not from_tty copied from the so_list. Don't warn a second time
7057 for a missing library.
7058 (update_solib_list): Don't save from_tty. Use TRY_CATCH. Do not
7059 add to the section table here. Print out a single warning for all
7060 missing libraries.
7061 * bsd-uthread.c (bsd_uthread_solib_loaded): Always pass 0 for
7062 flags.
7063
7064 2010-04-14 Phil Muldoon <pmuldoon@redhat.com>
7065
7066 * python/py-block.c (gdbpy_block_for_pc): Use i8n to encompass
7067 error/warning messages. Capitalize and use complete sentences.
7068 (blpy_block_syms_iternext): Likewise.
7069 * python/py-cmd.c (parse_command_name, cmdpy_init): Likewise.
7070 * python/py-frame.c (FRAPY_REQUIRE_VALID, frapy_block)
7071 (frame_info_to_frame_object, frapy_read_var)
7072 (gdbpy_frame_stop_reason_string): Likewise.
7073 * python/py-lazy-string.c (stpy_convert_to_value)
7074 (gdbpy_create_lazy_string_object): Likewise.
7075 * python/py-objfile.c (objfpy_set_printers): Likewise.
7076 * python/py-prettyprint.c (gdbpy_default_visualizer): Likewise.
7077 * python/python.c (parameter_to_python): Likewise.
7078 * python/py-type.c (typy_range, typy_target): Likewise.
7079 * python/py-value.c (valpy_cast, valpy_length, valpy_getitem)
7080 (valpy_richcompare, valpy_int, valpy_long, valpy_float): Likewise.
7081
7082
7083 2010-04-14 Phil Muldoon <pmuldoon@redhat.com>
7084
7085 PR python/11381
7086
7087 * python/py-prettyprint.c (pretty_print_one_value): Test for
7088 Py_None.
7089 (print_string_repr): Test for Py_None. Set flags accordingly.
7090 Return value depending on return type.
7091 (print_children): Take a value indicating whether data was printed
7092 before this function was called. Alter output accordingly.
7093 (apply_val_pretty_printer): Capture return value from
7094 print_string_repr and pass to print_children.
7095
7096 2010-04-13 Mark Kettenis <kettenis@gnu.org>
7097
7098 PR corefiles/11481
7099 * i386-linux-tdep.c (i386_linux_regset_sections): Remove extended
7100 register note sections.
7101 (i386_linux_sse_regset_sections, i386_linux_avx_regset_sections):
7102 New variables.
7103 (i386_linux_init_abi): Install list of supported register note
7104 sections that matches the target description.
7105
7106 2010-04-13 Pedro Alves <pedro@codesourcery.com>
7107
7108 * remote.c (remote_get_noisy_reply): Don't error out on empty
7109 replies.
7110 (remote_start_remote): Update and merge tracepoints and trace
7111 state variables as long as the target supports tracepoints.
7112 (remote_trace_init): Fix prototype.
7113 (remote_download_trace_state_variable): Validate reply.
7114 (remote_trace_set_readonly_regions): Fix prototype.
7115 (remote_trace_start): Fix prototype. Check for empty reply.
7116 (remote_get_trace_status): Small cleanup.
7117 (remote_trace_stop): Fix prototype. Check for empty reply.
7118 (remote_trace_find): Check for empty reply.
7119 (remote_save_trace_data): Validate reply.
7120 (remote_set_disconnected_tracing): Check for empty reply, and
7121 validate reply.
7122 (remote_set_circular_trace_buffer): Ditto.
7123
7124 2010-04-13 Pierre Muller <muller@ics.u-strasbg.fr>
7125
7126 Suppress unused value warning during compilation.
7127 * tui/tui-regs.c (tui_display_register): Cast wstandout and wstandend
7128 calls to void.
7129 * tui/tui-stack.c (tui_show_locator_content): Likewise.
7130
7131 2010-04-12 Stan Shebs <stan@codesourcery.com>
7132
7133 * tracepoint.c (tfile_xfer_partial): Check read result.
7134
7135 2010-04-12 Mike Frysinger <vapier@gentoo.org>
7136
7137 * remote-m32r-sdi.c (m32r_files_info): Add const to local "file" var.
7138 * remote-sim.c (gdbsim_files_info): Likewise.
7139
7140 2010-04-12 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
7141
7142 * arm-tdep.h (gdb_regnum): Add ARM_FPSCR_REGNUM
7143 * arm-linux-nat.c (arm_linux_vfp_register_count): New
7144 variable.
7145 (fetch_vfp_registers): New function to fetch VFP registers.
7146 (store_vfp_registers): New function to store VFP registers.
7147 (arm_linux_fetch_inferior_registers): Add support for VFP
7148 registers.
7149 (arm_linux_store_inferior_registers): Likewise.
7150 (arm_linux_read_description): Likewise.
7151 (_initialize_arm_linux_nat): Delay initialising iWMMX tdesc
7152 until we need it.
7153
7154 2010-04-11 H.J. Lu <hongjiu.lu@intel.com>
7155
7156 * amd64-tdep.c (amd64_supply_xstateregset): Remove the unused
7157 tdep.
7158 (amd64_collect_xstateregset): Likewise.
7159
7160 2010-04-09 Stan Shebs <stan@codesourcery.com>
7161
7162 * tracepoint.c (trace_status_mi): Report frames created.
7163
7164 * tracepoint.c (trace_dump_command): Include default-collect
7165 expressions.
7166
7167 2010-04-09 Ulrich Weigand <uweigand@de.ibm.com>
7168
7169 * symtab.c (find_function_start_sal): Never return SAL pointing
7170 before function start address, even if line info is missing.
7171
7172 2010-04-09 Pedro Alves <pedro@codesourcery.com>
7173
7174 * NEWS: Mention tracepoints support.
7175
7176 2010-04-09 Pedro Alves <pedro@codesourcery.com>
7177
7178 * tracepoint.c (trace_status_mi): Report disconnected tracing and
7179 circular trace buffer statuses.
7180
7181 2010-04-09 Jan Kratochvil <jan.kratochvil@redhat.com>
7182
7183 * config/djgpp/fnchange.lst: Fix typo in translations for
7184 symbol-without-target_section.exp and symbol-without-target_section.c.
7185
7186 2010-04-09 Pedro Alves <pedro@codesourcery.com>
7187
7188 * breakpoint.c (condition_command): Pass condition expression to
7189 set_breakpoint_condition stripped from breakpoint number.
7190
7191 2010-04-09 Phil Muldoon <pmuldoon@redhat.com>
7192 Thiago Jung Bauermann <bauerman@br.ibm.com>
7193 Tom Tromey <tromey@redhat.com>
7194
7195 * breakpoint.c (condition_command): Simplify. Move condition
7196 setting code to ...
7197 (set_breakpoint_condition): ... here. New function.
7198 * breakpoint.h (set_breakpoint_condition): Declare.
7199 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-breakpoint.
7200 (SUBDIR_PYTHON_SRCS): Likewise.
7201 (py-breakpoint.o): New rule.
7202 * python/py-breakpoint.c: New file.
7203 * python/python-internal.h (gdbpy_breakpoints)
7204 (gdbpy_initialize_breakpoints): Declare.
7205 (GDB_PY_SET_HANDLE_EXCEPTION) Define.
7206
7207 2010-04-09 Pedro Alves <pedro@codesourcery.com>
7208
7209 * regformats/regdat.sh: Include server.h. Don't include
7210 regcache.h.
7211
7212 2010-04-08 Stan Shebs <stan@codesourcery.com>
7213 Pedro Alves <pedro@codesourcery.com>
7214
7215 * tracepoint.h (struct trace_status): New fields disconnected_tracing
7216 and circular_buffer.
7217 (disconnect_tracing): Rename from disconnect_or_stop_tracing.
7218 * tracepoint.c (trace_status_command): Display target's status for
7219 disconnected tracing and circular buffer.
7220 (disconnect_tracing): Rename from disconnect_or_stop_tracing, add
7221 query for non-disconnected-tracing case, remove the stop_tracing
7222 call.
7223 (tfile_open): Clear disconnected and circular buffer status.
7224 (trace_save): Save disconnected and circular buffer status.
7225 (parse_trace_status): Parse disconnected and circular buffer status,
7226 also recognize disconnected as a stop reason.
7227 * remote.c (remote_set_disconnected_tracing): Only set
7228 QTDisconnected if the remote end supports disconnected tracing.
7229 Warn otherwise, if trying to enable disconnected tracing.
7230 * infcmd.c (detach_command): Update disconnect_tracing call.
7231 * cli/cli-cmds.c (quit_command): Ditto.
7232
7233 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
7234
7235 * i387-tdep.c (i387_collect_xsave): Replace abort with
7236 internal_error.
7237
7238 2010-04-08 Stan Shebs <stan@codesourcery.com>
7239
7240 * breakpoint.c (default_collect_info): New function.
7241 (breakpoints_info): Call it.
7242 (maintenance_info_breakpoints): Ditto.
7243 (tracepoints_info): Ditto.
7244
7245 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
7246
7247 * i387-tdep.c (i387_collect_xsave): Re-indent.
7248
7249 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
7250
7251 * i386-linux-nat.c (have_ptrace_getfpxregs): Initialize to -1
7252 if HAVE_PTRACE_GETFPXREGS is defined.
7253 (i386_linux_read_description): Set have_ptrace_getfpxregs and
7254 have_ptrace_getregset to 0 if ptrace PTRACE_GETFPXREGS failed.
7255
7256 * i386-linux-tdep.c: Include "features/i386/i386-mmx-linux.c"
7257 (i386_linux_core_read_description): Return tdesc_i386_mmx_linux
7258 if .reg-xfp section doesn't exist.
7259 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_mmx_linux.
7260
7261 * i386-linux-tdep.h (tdesc_i386_mmx_linux): New.
7262
7263 * i386-tdep.c: Include "features/i386/i386-mmx.c".
7264 (i386_go32_init_abi): Set tdesc to tdesc_i386_mmx.
7265 (i386_validate_tdesc_p): Make org.gnu.gdb.i386.sse optional. Set
7266 xcr0 to I386_XSTATE_X87_MASK if SSE isn't available.
7267 (i386_gdbarch_init): Update comments.
7268 (_initialize_i386_tdep): Call initialize_tdesc_i386_mmx.
7269
7270 * common/i386-xstate.h (I386_XSTATE_X87_MASK): New.
7271
7272 * config/djgpp/fnchange.lst: Add i386 MMX XML files.
7273
7274 * features/Makefile (i386/i386-mmx-expedite): New.
7275 (i386/i386-mmx-linux-expedite): Likewise.
7276 ($(outdir)/i386/i386-mmx.dat): Likewise.
7277 ($(outdir)/i386/i386-mmx-linux.dat): Likewise.
7278
7279 * features/i386/i386-mmx-linux.c: New.
7280 * features/i386/i386-mmx-linux.xml: Likewise.
7281 * features/i386/i386-mmx.c: Likewise.
7282 * features/i386/i386-mmx.xml: Likewise.
7283 * regformats/i386/i386-mmx-linux.dat: Likewise.
7284 * regformats/i386/i386-mmx.dat: Likewise.
7285
7286 * features/Makefile (WHICH): Add i386/i386-mmx and
7287 i386/i386-mmx-linux.
7288
7289 2010-04-08 Doug Evans <dje@google.com>
7290
7291 * source.c (openp): Skip $cdir in PATH.
7292
7293 2010-04-08 Phil Muldoon <pmuldoon@redhat.com>
7294
7295 PR python/11417
7296 * python/py-lazy-string.c (stpy_convert_to_value): Check for
7297 a NULL address.
7298 (gdbpy_create_lazy_string_object): Allow strings with a NULL
7299 address and a zero length.
7300
7301 2010-04-08 Hui Zhu <teawater@gmail.com>
7302
7303 * i386-tdep.c (i386_process_record): Add support for insn
7304 rdtsc.
7305
7306 2010-04-07 Doug Evans <dje@google.com>
7307
7308 * python/python.c (source_python_script): Use ensure_python_env
7309 to prepare environment for script.
7310
7311 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
7312
7313 * amd64-linux-nat.c: Include "regset.h", "elf/common.h",
7314 <sys/uio.h> and "i386-xstate.h".
7315 (PTRACE_GETREGSET): New.
7316 (PTRACE_SETREGSET): Likewise.
7317 (have_ptrace_getregset): Likewise.
7318 (amd64_linux_gregset64_reg_offset): Include 16 upper YMM
7319 registers.
7320 (amd64_linux_gregset32_reg_offset): Include 8 upper YMM
7321 registers.
7322 (amd64_linux_fetch_inferior_registers): Support PTRACE_GETFPREGS.
7323 (amd64_linux_store_inferior_registers): Likewise.
7324 (amd64_linux_read_description): Check and enable AVX target
7325 descriptions.
7326
7327 * amd64-linux-tdep.c: Include "regset.h", "i386-linux-tdep.h"
7328 and "features/i386/amd64-avx-linux.c".
7329 (amd64_linux_regset_sections): New.
7330 (amd64_linux_core_read_description): Check and enable AVX
7331 target description.
7332 (amd64_linux_init_abi): Set xsave_xcr0_offset. Call
7333 set_gdbarch_core_regset_sections.
7334 (_initialize_amd64_linux_tdep): Call
7335 initialize_tdesc_amd64_avx_linux.
7336
7337 * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM): Replace
7338 AMD64_MXCSR_REGNUM with AMD64_YMM15H_REGNUM.
7339 (tdesc_amd64_avx_linux): New.
7340 (amd64_linux_update_xstateregset): Likewise.
7341
7342 * amd64-tdep.c: Include "features/i386/amd64-avx.c".
7343 (amd64_ymm_names): New.
7344 (amd64_ymmh_names): Likewise.
7345 (amd64_register_name): Likewise.
7346 (amd64_supply_xstateregset): Likewise.
7347 (amd64_collect_xstateregset): Likewise.
7348 (amd64_supply_xsave): Likewise.
7349 (amd64_collect_xsave): Likewise.
7350 (AMD64_NUM_REGS): Removed.
7351 (amd64_dwarf_reg_to_regnum): Return %ymmN register number for
7352 %xmmN if AVX is available.
7353 (amd64_pseudo_register_name): Support pseudo YMM registers.
7354 (amd64_regset_from_core_section): Support .reg-xstate section.
7355 (amd64_init_abi): Set ymmh_register_names, num_ymm_regs
7356 and ymm0h_regnum. Call set_gdbarch_register_name.
7357 (amd64_init_abi): Call initialize_tdesc_amd64_avx.
7358
7359 * amd64-tdep.h (amd64_regnum): Add AMD64_YMM0H_REGNUM and
7360 AMD64_YMM15H_REGNUM.
7361 (AMD64_NUM_REGS): New.
7362 (amd64_supply_xsave): Likewise.
7363 (amd64_collect_xsave): Likewise.
7364 (amd64_register_name): Removed.
7365 (amd64_register_type): Likewise.
7366
7367 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
7368
7369 * i387-tdep.c: Include "i386-xstate.h".
7370 (XSAVE_XSTATE_BV_ADDR): New.
7371 (xsave_avxh_offset): Likewise.
7372 (XSAVE_AVXH_ADDR): Likewise.
7373 (i387_supply_xsave): Likewise.
7374 (i387_collect_xsave): Likewise.
7375
7376 * i387-tdep.h (I387_NUM_YMM_REGS): New.
7377 (I387_YMM0H_REGNUM): Likewise.
7378 (I387_YMMENDH_REGNUM): Likewise.
7379 (i387_supply_xsave): Likewise.
7380 (i387_collect_xsave): Likewise.
7381
7382 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
7383
7384 * i386-linux-nat.c: Include "regset.h", "elf/common.h",
7385 <sys/uio.h> and "i386-xstate.h".
7386 (PTRACE_GETREGSET): New.
7387 (PTRACE_SETREGSET): Likewise.
7388 (fetch_xstateregs): Likewise.
7389 (store_xstateregs): Likewise.
7390 (GETXSTATEREGS_SUPPLIES): Likewise.
7391 (regmap): Include 8 upper YMM registers.
7392 (i386_linux_fetch_inferior_registers): Support XSAVE extended
7393 state.
7394 (i386_linux_store_inferior_registers): Likewise.
7395 (i386_linux_read_description): Check and enable AVX target
7396 descriptions.
7397
7398 * i386-linux-tdep.c: Include "regset.h", "i387-tdep.h",
7399 "i386-xstate.h" and "features/i386/i386-avx-linux.c".
7400 (i386_linux_regset_sections): Add ".reg-xstate".
7401 (i386_linux_gregset_reg_offset): Include 8 upper YMM registers.
7402 (i386_linux_core_read_xcr0): New.
7403 (i386_linux_core_read_description): Check and enable AVX target
7404 description.
7405 (i386_linux_init_abi): Set xsave_xcr0_offset.
7406 (_initialize_i386_linux_tdep): Call
7407 initialize_tdesc_i386_avx_linux.
7408
7409 * i386-linux-tdep.h (I386_LINUX_ORIG_EAX_REGNUM): Replace
7410 I386_SSE_NUM_REGS with I386_AVX_NUM_REGS.
7411 (i386_linux_core_read_xcr0): New.
7412 (tdesc_i386_avx_linux): Likewise.
7413 (I386_LINUX_XSAVE_XCR0_OFFSET): Likewise.
7414
7415 * i386-tdep.c: Include "i386-xstate.h" and
7416 "features/i386/i386-avx.c".
7417 (i386_ymm_names): New.
7418 (i386_ymmh_names): Likewise.
7419 (i386_ymmh_regnum_p): Likewise.
7420 (i386_ymm_regnum_p): Likewise.
7421 (i386_xmm_regnum_p): Likewise.
7422 (i386_register_name): Likewise.
7423 (i386_ymm_type): Likewise.
7424 (i386_supply_xstateregset): Likewise.
7425 (i386_collect_xstateregset): Likewise.
7426 (i386_sse_regnum_p): Removed.
7427 (i386_pseudo_register_name): Support pseudo YMM registers.
7428 (i386_pseudo_register_type): Likewise.
7429 (i386_pseudo_register_read): Likewise.
7430 (i386_pseudo_register_write): Likewise.
7431 (i386_dbx_reg_to_regnum): Return %ymmN register number for
7432 %xmmN if AVX is available.
7433 (i386_regset_from_core_section): Support .reg-xstate section.
7434 (i386_register_reggroup_p): Supper upper YMM and YMM registers.
7435 (i386_process_record): Replace i386_sse_regnum_p with
7436 i386_xmm_regnum_p.
7437 (i386_validate_tdesc_p): Support org.gnu.gdb.i386.avx feature.
7438 Set ymmh_register_names, num_ymm_regs, ymm0h_regnum and xcr0.
7439 (i386_gdbarch_init): Set xstateregset. Set xsave_xcr0_offset.
7440 Call set_gdbarch_register_name. Replace I386_SSE_NUM_REGS with
7441 I386_AVX_NUM_REGS. Set ymmh_register_names, ymm0h_regnum and
7442 num_ymm_regs. Add num_ymm_regs to set_gdbarch_num_pseudo_regs.
7443 Set ymm0_regnum.
7444 (_initialize_i386_tdep): Call initialize_tdesc_i386_avx.
7445
7446 * i386-tdep.h (gdbarch_tdep): Add xstateregset, ymm0_regnum,
7447 xcr0, xsave_xcr0_offset, ymm0h_regnum, ymmh_register_names and
7448 i386_ymm_type.
7449 (i386_regnum): Add I386_YMM0H_REGNUM, and I386_YMM7H_REGNUM.
7450 (I386_AVX_NUM_REGS): New.
7451 (i386_xmm_regnum_p): Likewise.
7452 (i386_ymm_regnum_p): Likewise.
7453 (i386_ymmh_regnum_p): Likewise.
7454
7455 * common/i386-xstate.h: New.
7456
7457 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
7458
7459 * config/djgpp/fnchange.lst: Add x86 AVX XML files.
7460
7461 * features/Makefile (WHICH): Add i386/i386-avx,
7462 i386/i386-avx-linux, i386/x86-64-avx and i386/x86-64-avx-linux.
7463 (i386/i386-avx-expedite): New.
7464 (i386/i386-avx-linux-expedite): Likewise.
7465 (i386/x86-64-avx-expedite):Likewise.
7466 (i386/x86-64-avx-linux-expedite): Likewise.
7467 ($(outdir)/i386/i386-avx.dat): New dependency.
7468 ($(outdir)/i386/i386-avx-linux.dat): Likewise.
7469 ($(outdir)/i386/x86-avx-64.dat): Likewise.
7470 ($(outdir)/i386/x86-64-avx-linux.dat): Likewise.
7471
7472 * features/i386/32bit-avx.xml: New.
7473 * features/i386/64bit-avx.xml: Likewise.
7474 * features/i386/i386-avx-linux.c: Likewise.
7475 * features/i386/i386-avx-linux.xml: Likewise.
7476 * features/i386/i386-avx.c: Likewise.
7477 * features/i386/i386-avx.xml: Likewise.
7478 * features/i386/x86-64-avx-linux.c: Likewise.
7479 * features/i386/x86-64-avx-linux.xml: Likewise.
7480 * features/i386/x86-64-avx.c: Likewise.
7481 * features/i386/x86-64-avx.xml: Likewise.
7482 * regformats/i386/i386-avx-linux.dat: Likewise.
7483 * regformats/i386/i386-avx.dat: Likewise.
7484 * regformats/i386/x86-64-avx-linux.dat: Likewise.
7485 * regformats/i386/x86-64-avx.dat: Likewise.
7486
7487 2010-04-07 Doug Evans <dje@google.com>
7488
7489 * top.c (source_file_name): Make const char *.
7490 * top.h (source_file_name): Update.
7491 * cli/cli-script.c (source_cleanup_lines_args): Make old_file
7492 const char *.
7493 (script_from_file): Change `file' arg to const char *.
7494 * cli/cli-script.h (script_from_file): Update.
7495
7496 2010-04-06 Doug Evans <dje@google.com>
7497
7498 * cli/cli-cmds.c (source_command): Run cleanups.
7499
7500 2010-04-06 Stan Shebs <stan@codesourcery.com>
7501
7502 * defs.h (char_ptr): Move typedef here from...
7503 * ada-lang.c (char_ptr): Remove.
7504 * charset.c (char_ptr): Remove.
7505 * tracepoint.h (struct uploaded_string): Remove.
7506 (struct uploaded_tp): Use vectors for string arrays.
7507 * tracepoint.c (trace_save): Use vectors of actions.
7508 (parse_tracepoint_definition): Ditto.
7509 (get_uploaded_tp): Clear vectors.
7510 * breakpoint.c (create_tracepoint_from_upload): Use vectors.
7511 (next_cmd): Change to an int.
7512 (read_next_cmd): Use vector of command strings.
7513
7514 2010-04-06 Doug Evans <dje@google.com>
7515
7516 * top.h (source_script, cd_command): Delete.
7517 * main.c: #include "cli/cli-cmds.h"
7518
7519 2010-04-06 Kevin Buettner <kevinb@redhat.com>
7520
7521 * m32c-tdep.c (make_types): When calling `arch_type', pass size of
7522 type in bytes, not bits.
7523
7524 2010-04-06 Pierre Muller <muller@ics.u-strasbg.fr>
7525
7526 * stabsread.c (define_symbol): Add support for char
7527 and string constants.
7528
7529 2010-04-06 Pierre Muller <muller@ics.u-strasbg.fr>
7530
7531 Remove remaining "%ll" uses.
7532 * go32-nat.c (go32_pte_for_address): Replace "0x%llx" using
7533 hex_string call.
7534 * rs6000-nat.c (rs6000_ptrace64): Idem.
7535 * solib-pa64.c (pa64_current_sos): Idem.
7536 * solib-spu.c (spu_current_sos): Idem.
7537 * linux-nat.c (linux_nat_find_memory_regions): Replace "%lld" using
7538 plongest call.
7539 * nto-procfs.c (procfs_meminfo): Replace "0x%016llx" using
7540 phex (VAR, 8) call.
7541 * sh64-tdep.c (sh64_show_media_regs): Idem.
7542
7543 2010-04-05 Stan Shebs <stan@codesourcery.com>
7544
7545 * tracepoint.c: Include gdbcore.h.
7546 (tfile_xfer_partial): Return partial results, also try reading
7547 from executable.
7548 (tfile_has_all_memory): New function.
7549 (init_tfile_ops): Use it.
7550
7551 2010-04-05 Sergio Durigan Junior <sergiodj@redhat.com>
7552
7553 PR gdb/10736:
7554 * xml-syscall.c (my_gdb_datadir): New variable to keep track of
7555 the changes in data-directory.
7556 (init_sysinfo): Reload the syscall XML file if the data-directory
7557 has changed.
7558
7559 2010-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7560
7561 Code cleanup.
7562 * breakpoint.c (bpstat_stop_status): Use bpstat_causes_stop.
7563
7564 2010-04-04 Stan Shebs <stan@codesourcery.com>
7565 Nathan Sidwell <nathan@codesourcery.com>
7566
7567 * breakpoint.c (breakpoint_1): Add filter argument, return number of
7568 breakpoints printed.
7569 (is_hardware_watchpoint): Make argument const.
7570 (is_watchpoint): Ditto.
7571 (is_tracepoint): Merge of tracepoint_type and breakpoint_is_tracepoint,
7572 use it everywhere.
7573 (breakpoints_info): Pass NULL to breakpoint_1.
7574 (maintenance_info_breakpoints): Ditto.
7575 (watchpoints_info): New function.
7576 (tracepoints_info): Use breakpoint_1 filter.
7577 (set_ignore_count): Warn that tracepoint ignore count will be ignored.
7578 (_initialize_breakpoint): Make "info watchpoints" its own command.
7579 * breakpoint.h (is_tracepoint): Rename from breakpoint_is_tracepoint.
7580 * mi/mi-cmd-break.c (mi_cmd_break_commands): Use is_tracepoint.
7581
7582 2010-04-04 Stan Shebs <stan@codesourcery.com>
7583
7584 * tracepoint.c (tfile_fetch_registers): Add fallback case.
7585
7586 2010-04-04 Jan Kratochvil <jan.kratochvil@redhat.com>
7587
7588 * infcmd.c (run_command_1): Call proceed with regcache_read_pc address.
7589 * config/djgpp/fnchange.lst: Add translation for break-entry.exp.
7590
7591 2010-04-04 Jan Kratochvil <jan.kratochvil@redhat.com>
7592
7593 * breakpoint.c (bpstat_find_step_resume_breakpoint): Remove.
7594 * breakpoint.h (bpstat_find_step_resume_breakpoint): Remove.
7595
7596 2010-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7597
7598 * dwarf2read.c (read_namespace_type): Use common "return set_die_type"
7599 code form.
7600
7601 2010-04-02 Hui Zhu <teawater@gmail.com>
7602
7603 * i386-tdep.c (OT_DQUAD): New enum.
7604 (i386_process_record): Add code for MMX, 3DNow!, SSE, SSE2,
7605 SSE3, SSSE3 and SSE4.
7606
7607 2010-04-02 Hui Zhu <teawater@gmail.com>
7608
7609 * i386-tdep.c (i386_record_lea_modrm_addr): Remove useless
7610 "*addr = 0".
7611
7612 2010-04-02 Pedro Alves <pedro@codesourcery.com>
7613
7614 * tracepoint.c (trace_dump_actions): New, factored out from
7615 trace_dump_command, and adjusted to recurse into while-stepping's
7616 action list.
7617 (trace_dump_command): Use it.
7618
7619 2010-04-02 Pedro Alves <pedro@codesourcery.com>
7620
7621 * breakpoint.h (struct counted_command_line): Moved definition to
7622 breakpoint.c, and forward declare.
7623 (breakpoint_commands): Declare.
7624 * breakpoint.c (struct counted_command_line): Moved here.
7625 (breakpoint_commands): New.
7626 * tracepoint.c (encode_actions): Use breakpoint_commands.
7627 * remote.c (remote_download_tracepoint): Ditto.
7628
7629 2010-04-01 H.J. Lu <hongjiu.lu@intel.com>
7630
7631 * remote.c (remote_parse_stop_reply): Use hex_string instead
7632 of phex_nz for error.
7633
7634 2010-04-01 Stan Shebs <stan@codesourcery.com>
7635 Nathan Sidwell <nathan@codesourcery.com>
7636
7637 * tracepoint.h (enum actionline_type): Remove.
7638 (validate_actionline): Change return to void.
7639 * tracepoint.c (report_agent_reqs_errors): New function.
7640 (validate_actionline): Call it, change return to void, report errors
7641 more consistently.
7642 (collect_symbol): Call report_agent_reqs_errors.
7643 (encode_actions_1): Ditto.
7644 (encode_actions): Don't expect a result from validate_actionline.
7645
7646 2010-04-01 Stan Shebs <stan@codesourcery.com>
7647
7648 * tracepoint.c (trace_start_command): Confirm if trace is running.
7649 (trace_stop_command): Error if trace not running.
7650
7651 2010-04-01 H.J. Lu <hongjiu.lu@intel.com>
7652
7653 * amd64-tdep.c (amd64_byte_names): Add "ah", "bh", "ch", "dh".
7654 (AMD64_NUM_LOWER_BYTE_REGS): New.
7655 (amd64_pseudo_register_read): Handle "ah", "bh", "ch", "dh".
7656 (amd64_pseudo_register_write): Likewise.
7657 (amd64_init_abi): Set num_byte_regs to 20.
7658
7659 2010-04-01 Pedro Alves <pedro@codesourcery.com>
7660
7661 * breakpoint.c (multi_start, multi_end, last_was_multi): Delete.
7662 (prev_breakpoint_count): New.
7663 (set_breakpoint_count): Adjust.
7664 (rbreak_start_breakpoint_count): New.
7665 (start_rbreak_breakpoints): Adjust.
7666 (end_rbreak_breakpoints): Adjust.
7667 (struct commands_info) <arg>: New field.
7668 (do_map_commands_command): Tweak output to include breakpoint spec
7669 range.
7670 (commands_command_1): Adjust. Avoid setting an xfree cleanup if
7671 ARG was empty on entry. Set INFO's arg.
7672 (create_breakpoint): Adjust.
7673
7674 * NEWS: Clarify `commands' changes.
7675
7676 2010-04-01 Pedro Alves <pedro@codesourcery.com>
7677
7678 * tracepoint.c: Include stack.h.
7679 (struct add_local_symbols_data): New.
7680 (do_collect_symbol): New.
7681 (add_local_symbols): Rewrite using iterate_over_block_arg_vars and
7682 iterate_over_block_local_vars.
7683 * stack.c (print_block_frame_locals): Rewrite as ...
7684 (iterate_over_block_locals): ... this. Take a callback function
7685 pointer and generic data pointer, and call that instead of
7686 print_variable_and_value.
7687 (struct print_variable_and_value_data): New.
7688 (do_print_variable_and_value): New.
7689 (iterate_over_block_local_vars): New, abstracted out from
7690 print_frame_local_vars.
7691 (print_frame_local_vars): Rewrite using
7692 iterate_over_block_local_vars.
7693 (iterate_over_block_arg_vars): New, abstracted out from
7694 print_frame_arg_vars.
7695 (print_frame_arg_vars): Rewrite using iterate_over_block_arg_vars.
7696 * stack.h (iterate_over_block_arg_local_vars_cb): New typedef.
7697 (iterate_over_block_arg_vars, iterate_over_block_local_vars): Declare.
7698
7699 2010-03-31 Richard Earnshaw <rearnsha@arm.com>
7700
7701 * arm-tdep.c (thumb_get_next_pc_raw): Correctly detect TBH
7702 instructions. Use the PC+4 if the base of the TBB or TBH is the
7703 PC register.
7704
7705 2010-03-31 Jan Kratochvil <jan.kratochvil@redhat.com>
7706
7707 Fix crash on reading wrong function declaration DWARF.
7708 * dwarf2read.c (read_subroutine_type): New variable void_type.
7709 Pre-fill all TYPE_FIELD_TYPEs. Move nparams and iparams initialization
7710 more close to their use.
7711
7712 2010-03-31 Stan Shebs <stan@codesourcery.com>
7713
7714 * breakpoint.c (tracepoint_save_command): Include variables,
7715 conditionals, tracepoint types, and default-collect.
7716 * tracepoint.c (save_trace_state_variables): New function.
7717 * tracepoint.h (save_trace_state_variables): Declare it.
7718
7719 2010-03-31 Pierre Muller <muller@ics.u-strasbg.fr>
7720
7721 * remote.c (end_thread): ARI fix: Use xstrdup instead of strdup.
7722
7723 2010-03-30 Keith Seitz <keiths@redhat.com>
7724
7725 * c-typeprint.c (c_type_print_args): Don't print "void"
7726 for java, regardless of whether it is TYPE_PROTOTYPED.
7727 Use the passed-in language instead of current_language.
7728 (c_type_print_varspec_suffix): Use current_language instead
7729 of assuming language_c.
7730 * jv-typeprint.c (java_type_print_base): (bz 9320) Strip off
7731 any return type specifier from the physname.
7732
7733 2010-03-30 Pedro Alves <pedro@codesourcery.com>
7734
7735 * tui/tui-interp.c (tui_is_toplevel): New.
7736 (tui_init): Set it.
7737 (tui_allowed_p): New.
7738 * tui/tui.c (tui_enable): Check if the TUI is allowed before
7739 enabling it.
7740 * tui/tui.h (tui_allowed_p): Declare.
7741
7742 2010-03-30 Ozkan Sezer <sezeroz@gmail.com>
7743
7744 * serial.h: Include winsock2.h before windows.h.
7745
7746 2010-03-30 H.J. Lu <hongjiu.lu@intel.com>
7747
7748 * NEWS: Mention xmlRegisters= in qSupported packet.
7749
7750 * i386-tdep.c: Include "remote.h".
7751 (_initialize_i386_tdep): Call register_remote_support_xml.
7752
7753 * remote.c (remote_support_xml): New.
7754 (register_remote_support_xml): Likewise.
7755 (remote_query_supported_append): Likewise.
7756 (remote_query_supported): Support remote_support_xml.
7757
7758 * remote.h (register_remote_support_xml): New.
7759
7760 2010-03-29 Stan Shebs <stan@codesourcery.com>
7761
7762 * tracepoint.c (trace_find_line_command): Remove dead code.
7763
7764 * tracepoint.h (struct uploaded_string): New struct.
7765 (struct uploaded_tp): New fields for source strings.
7766 * breakpoint.c (this_utp, next_cmd): New globals.
7767 (read_uploaded_action): New function.
7768 (create_tracepoint_from_upload): Fill in more parts
7769 of a tracepoint.
7770 * tracepoint.c (encode_source_string): New function.
7771 (trace_save): Write out source strings, fix error checks.
7772 (parse_tracepoint_definition): Add source string parsing.
7773 * remote.c (PACKET_TracepointSource): New packet type.
7774 (remote_download_command_source): New function.
7775 (remote_download_tracepoint): Download source pieces also.
7776 (_initialize_remote): Add packet config command.
7777
7778 * tracepoint.c (collect_symbol): Send LOC_UNRESOLVED symbols to
7779 expression handler.
7780
7781 * tracepoint.c (start_tracing): Check tracepoints before sending
7782 commands to target, don't start if all tracepoints disabled.
7783
7784 2010-03-28 Pedro Alves <pedro@codesourcery.com>
7785
7786 * cli/cli-script.c (process_next_line): Handle 'stepping'.
7787
7788 2010-03-26 Stan Shebs <stan@codesourcery.com>
7789
7790 * tracepoint.c (disconnect_or_stop_tracing): Get out of tfind mode.
7791
7792 2010-03-26 Tom Tromey <tromey@redhat.com>
7793
7794 * breakpoint.c (commands_command_1): Duplicate 'arg'.
7795
7796 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
7797
7798 * breakpoint.c (expand_line_sal_maybe): Always call skip_prologue_sal.
7799 (skip_prologue_sal): Remove local definition.
7800 (resolve_sal_pc): Remove now unnecessary code.
7801 * linespec.c (minsym_found): Call skip_prologue_sal.
7802 * symtab.c (find_function_start_pc): Remove.
7803 (find_function_start_sal): Extract prologue skipping into ...
7804 (skip_prologue_sal): ... this new function. Handle code both
7805 with and without debug info. Respect SAL's explicit_pc and
7806 explicit_line flags. Inline old find_function_start_pc.
7807 * symtab.h (find_function_start_pc): Remove.
7808 (skip_prologue_sal): Add prototype.
7809
7810 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
7811
7812 * dwarf2read.c (read_func_scope): Also scan specification DIEs
7813 for DW_TAG_imported_module children.
7814
7815 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
7816
7817 * dwarf2read.c (dwarf2_name): Work around GCC bugzilla debug/41828 by
7818 ignoring spurious DW_AT_name attributes for unnamed structs or unions.
7819 * completer.c (add_struct_fields): Fix inverted logic.
7820
7821 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
7822
7823 * breakpoint.c (bpstat_clear_actions): Reset bs->commands_left.
7824
7825 2010-03-26 Pedro Alves <pedro@codesourcery.com>
7826
7827 * tracepoint.c (current_trace_status): Don't make sure error_desc
7828 is non-NULL here.
7829 (parse_trace_status): Release a previous error_desc string, and
7830 set it to NULL by default. If stop reason is tracepoint_error,
7831 make sure error_desc is not left NULL.
7832
7833 2010-03-26 Pedro Alves <pedro@codesourcery.com>
7834
7835 * tracepoint.c (trace_save): Remove X from tracepoint error
7836 description.
7837
7838 2010-03-26 Pedro Alves <pedro@codesourcery.com>
7839
7840 * tracepoint.c (parse_trace_status): Don't allow plain strings in
7841 the terror description. Don't expect an X prefix.
7842
7843 2010-03-25 Stan Shebs <stan@codesourcery.com>
7844
7845 * tracepoint.h (trace_stop_reason): Add tracepoint_error.
7846 (struct trace_status): New field error_desc.
7847 * tracepoint.c (stop_reason_names): Add terror.
7848 (current_trace_status): Ensure non-NULL error description.
7849 (trace_status_command): Add error report.
7850 (trace_status_mi): Ditto.
7851 (trace_save): Add special case for error description.
7852 (parse_trace_status): Add case for errors.
7853
7854 2010-03-25 Keith Seitz <keiths@redhat.com>
7855
7856 * dwarf2read.c (read_subroutine_type): If the compilation unit
7857 language is Java, mark any formal parameter named "this" as
7858 artificial (GCC/43521).
7859 (dwarf2_name): Add special handling for Java constructors.
7860
7861 2010-03-25 Tom Tromey <tromey@redhat.com>
7862
7863 PR gdb/11327, PR gdb/11328, PR breakpoints/11368:
7864 * infrun.c (handle_inferior_event): Change initialization of
7865 stop_stack_dummy.
7866 (handle_inferior_event): Change assignment to stop_stack_dummy.
7867 (normal_stop): Update use of stop_stack_dummy.
7868 (struct inferior_status) <stop_stack_dummy>: Change type.
7869 * inferior.h (stop_stack_dummy): Update.
7870 * infcmd.c (stop_stack_dummy): Change type.
7871 * infcall.c (cleanup_delete_std_terminate_breakpoint): New
7872 function.
7873 (call_function_by_hand): Call set_std_terminate_breakpoint.
7874 Rewrite std::terminate handling.
7875 * breakpoint.h (enum bptype) <bp_std_terminate,
7876 bp_std_terminate_master>: New.
7877 (enum stop_stack_kind): New.
7878 (struct bpstat_what) <call_dummy>: Change type.
7879 (set_std_terminate_breakpoint, delete_std_terminate_breakpoint):
7880 Declare.
7881 * breakpoint.c (create_std_terminate_master_breakpoint): New
7882 function.
7883 (update_breakpoints_after_exec): Handle bp_std_terminate_master.
7884 Call create_std_terminate_master_breakpoint.
7885 (print_it_typical): Handle new breakpoint kinds.
7886 (bpstat_stop_status): Handle bp_std_terminate_master.
7887 (bpstat_what): Correctly set call_dummy field. Handle
7888 bp_std_terminate_master and bp_std_terminate.
7889 (print_one_breakpoint_location): Update.
7890 (allocate_bp_location): Update.
7891 (set_std_terminate_breakpoint): New function.
7892 (delete_std_terminate_breakpoint): Likewise.
7893 (create_thread_event_breakpoint): Update.
7894 (delete_command): Update.
7895 (breakpoint_re_set_one): Update.
7896 (breakpoint_re_set): Call create_std_terminate_master_breakpoint.
7897
7898 2010-03-25 Jan Kratochvil <jan.kratochvil@redhat.com>
7899
7900 * symfile.c (build_section_addr_info_from_bfd): New.
7901 (build_section_addr_info_from_objfile): Base it on
7902 build_section_addr_info_from_bfd.
7903 (addrs_section_compar, addrs_section_sort): New.
7904 (addr_info_make_relative): New variables my_cleanup, abfd_addrs,
7905 addrs_sorted, abfd_addrs_sorted and addrs_to_abfd_addrs. Build
7906 addrs_to_abfd_addrs. Use it for recalculating ADDRS.
7907
7908 2010-03-24 Michael Snyder <msnyder@localhost.localdomain>
7909
7910 * elfread.c (find_separate_debug_file_by_buildid):
7911 Remove unused local variable.
7912
7913 2010-03-24 Tom Tromey <tromey@redhat.com>
7914
7915 PR breakpoints/9352:
7916 * NEWS: Mention changes to `commands' and `rbreak'.
7917 * symtab.c (do_end_rbreak_breakpoints): New function.
7918 (rbreak_command): Call start_rbreak_breakpoints; arrange to call
7919 end_rbreak_breakpoints.
7920 * breakpoint.c (breakpoint_count, tracepoint_count): Now static.
7921 (set_breakpoint_count): Likewise. Clear last_was_multi.
7922 (multi_start, multi_end, last_was_multi): New globals.
7923 (start_rbreak_breakpoints, end_rbreak_breakpoints): New
7924 functions.
7925 (struct commands_info): New
7926 (do_map_commands_command): New function.
7927 (commands_command_1): New function.
7928 (commands_command): Use it.
7929 (commands_from_control_command): Likewise.
7930 (do_delete_breakpoint): New function.
7931 (delete_command): Use it.
7932 (map_breakpoint_numbers): Add 'data' argument. Pass to callback.
7933 (do_map_disable_breakpoint): New function.
7934 (disable_command): Use it.
7935 (do_map_enable_breakpoint): New function.
7936 (enable_command): Use it.
7937 (enable_once_breakpoint): Add argument.
7938 (enable_once_command): Update.
7939 (enable_delete_breakpoint): Add argument.
7940 (enable_delete_command): Update.
7941 (break_command_really): Set last_was_multi when needed.
7942 (check_tracepoint_command): Fix formatting.
7943 (validate_commands_for_breakpoint): New function.
7944 (breakpoint_set_commands): Use it.
7945 (tracepoint_save_command): Update.
7946 * breakpoint.h (start_rbreak_breakpoints, end_rbreak_breakpoints):
7947 Declare.
7948
7949 2010-03-24 Tom Tromey <tromey@redhat.com>
7950
7951 * breakpoint.h (struct counted_command_line): New struct.
7952 (struct breakpoint) <commands>: Change type.
7953 (struct bpstats) <commands>: Change type.
7954 <commands_left>: New field.
7955 * breakpoint.c (alloc_counted_command_line): New function.
7956 (incref_counted_command_line): Likewise.
7957 (decref_counted_command_line): Likewise.
7958 (do_cleanup_counted_command_line): Likewise.
7959 (make_cleanup_decref_counted_command_line): Likewise.
7960 (breakpoint_set_commands): Use decref_counted_command_line and
7961 alloc_counted_command_line.
7962 (commands_command): Don't error if breakpoint commands are
7963 executing.
7964 (commands_from_control_command): Likewise.
7965 (bpstat_free): Update.
7966 (bpstat_copy): Likewise.
7967 (bpstat_clear_actions): Likewise.
7968 (bpstat_do_actions_1): Likewise.
7969 (bpstat_stop_status): Likewise.
7970 (print_one_breakpoint_location): Likewise.
7971 (delete_breakpoint): Likewise.
7972 (bpstat_alloc): Initialize new field.
7973 (tracepoint_save_command): Update.
7974 * tracepoint.c (encode_actions): Update.
7975 (trace_dump_command): Update.
7976
7977 2010-03-24 Daniel Jacobowitz <dan@codesourcery.com>
7978
7979 * dwarf2-frame.c (dwarf2_frame_find_quirks): Use producer_is_realview.
7980 * dwarf2read.c (load_full_comp_unit): Read DW_AT_producer.
7981 (read_structure_type): For RealView, set TYPE_STUB on structures with
7982 no byte size and no children.
7983 (read_subroutine_type): Mark functions as prototyped by default.
7984 * symtab.c (producer_is_realview): New function.
7985 * symtab.h (expand_line_sal): Fix declaration formatting.
7986 (producer_is_realview): Declare.
7987
7988 2010-03-24 Daniel Jacobowitz <dan@codesourcery.com>
7989
7990 * arm-tdep.c (skip_prologue_function): New function.
7991 (submask, bit, bits, sbits, BranchDest): Move higher in the file.
7992 (thumb_analyze_prologue): Document return value. Recognize more
7993 Thumb instructions, skippable calls, and some Thumb-2 instructions.
7994 Add debug output.
7995 (arm_skip_prologue): Remove call dummy check. Check the prologue
7996 for non-GNU compilers.
7997 (arm_instruction_changes_pc): New function.
7998 (arm_analyze_prologue): New function, broken out from
7999 arm_scan_prologue. Recognize more ARM instructions and skippable
8000 calls. Update comments. Handle NULL cache. Return the address
8001 of the first unrecognized instruction. Do not skip past other
8002 instructions which change control flow. Add debug output.
8003 (arm_scan_prologue): Use arm_analyze_prologue.
8004 (ARM_PC_32): Delete.
8005 (shifted_reg_val): Simplify ARM_PC_32 check.
8006
8007 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
8008
8009 * tracepoint.c (tvariables_info_1): Actually compute
8010 the number of rows in the result.
8011
8012 2010-03-24 Pedro Alves <pedro@codesourcery.com>
8013
8014 * remote.c (crc32): Constify `buf' parameter.
8015 (remote_verify_memory): New, abstracted out from...
8016 (compare_sections_command): ... this. Remove hardcoded target
8017 checks.
8018 (init_remote_ops): Install remote_verify_memory.
8019 * target.c (target_verify_memory): New.
8020 * target.h (struct target_ops) <to_verify_memory>: New field.
8021 (target_verify_memory): Declare.
8022
8023 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
8024
8025 Implement -trace-save.
8026
8027 * mi-cmds.h (mi_cmds_trace_save): Declare.
8028 * mi-cmds.c (mi_cmds): Register -trace-save.
8029 * mi/mi-main.c (mi_cmd_trace_save): New.
8030 * remote.c (remote_save_trace_data): Take const parameter.
8031 * target.h (struct target_ops::to_save_trace_data): Take
8032 const parameter.
8033 * target.c (update_current_target): Adjust to the above.
8034 * tracepoint.c (trave_save): New, extracted from
8035 (trace_save_command): ...this.
8036 (tfile_trace_find): Remove message that is unnecessary now
8037 that 'tfind' reports found frame.
8038 * tracepoint.h (trace_save): Declare.
8039
8040 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
8041
8042 Implement -trace-find.
8043
8044 * mi/mi-cmds.c (mi_cmds): Register -trace-find.
8045 * mi/mi-cmds.h (mi_cmd_trace_find): Declare.
8046 * mi/mi-main.c (mi_cmd_trace_find): New.
8047 * target.h (struct target_ops): Document to_trace_find.
8048 * tracepoint.h (tfind_1): Declare.
8049 * tracepoint.c (finish_tfind_command): Rename to...
8050 (tfind_1): ...this.
8051 * remote.c (remote_trace_find): Return -1 if target say
8052 there's no frame. Improve error diagnostics.
8053
8054 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
8055
8056 -trace-define-variable and -trace-list-variables.
8057
8058 * tracepoint.c (create_trace_state_variable): Make
8059 private copy of name, as opposed to assuming the
8060 pointer lives forever.
8061 (tvariables_info_1): New.
8062 (tvariables_info): Use the above.
8063 * tracepoint.h (create_trace_state_variable, tvariables_info_1):
8064 Declare.
8065 * mi/mi-cmds.c (mi_cmds): Register -trace-define-variable
8066 and -trace-list-variables.
8067 * mi/mi-cmds.h (mi_cmd_trace_define_variable)
8068 (mi_cmd_trace_list_variables): New.
8069 * mi/mi-main.c (mi_cmd_trace_define_variable)
8070 (mi_cmd_trace_list_variables): New.
8071
8072 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
8073
8074 Implement -break-passcount.
8075
8076 * mi/mi-cmd-break.c (mi_cmd_break_passcount): New.
8077 * mi/mi-cmds.c (mi_cmds): Register -break-passcount.
8078 * mi/mi-cmds.h (mi_cmd_break_passcount): Declare.
8079
8080 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
8081
8082 -trace-start/-trace-end/-trace-status.
8083
8084 * mi/mi-cmds.c (mi_cmds): Register -trace-start, -trace-status
8085 and -trace-stop.
8086 * mi/mi-cmds.h (mi_cmd_trace_start, mi_cmd_trace_status)
8087 (mi_cmd_trace_stop): Declare.
8088 * mi/mi-main.c (mi_cmd_trace_start, mi_cmd_trace_status)
8089 (mi_cmd_trace_stop): New.
8090 * tracepoint.c (start_tracing): New, extracted from...
8091 (trace_start_command): ...this.
8092 (trace_status_mi): New.
8093 * tracepoint.h (struct trace_status): Document
8094 stopping_tracepoint.
8095 (start_tracing, stop_tracing, trace_status_mi): Declare.
8096
8097 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
8098
8099 Implement creating tracepoints with -break-insert.
8100
8101 * mi/mi-cmd-break.c (mi_cmd_break_insert): Handle -a
8102 to mean that tracepoint should be created.
8103
8104 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
8105
8106 * breakpoint.c (check_no_tracepoint_commands): Use
8107 current spelling of 'teval'.
8108
8109 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
8110
8111 Unify actions and commands
8112
8113 * defs.h (read_command_lines, read_command_lines_1): New
8114 parameters validator and closure.
8115 * tracepoint.h (struct action_line): Remove.
8116 * breakpoint.h (struct breakpoint): Remove the 'actions'
8117 field.
8118 * defs.h (enum command_control_type): New value
8119 while_stepping_control.
8120 (struct command_line): Add comments.
8121 * breakpoint.c (breakoint_is_tracepoint): New.
8122 (breakpoint_set_commands): For tracepoints,
8123 verify the commands are permissible.
8124 (check_tracepoint_commands): New.
8125 (commands_command): Require that each new line is validated using
8126 check_tracepoint_command, if we set commands for a tracepoint.
8127 (create_tracepoint_from_upload): Likewise.
8128 (print_one_breakpoint_location): Remove the code to print
8129 actions specifically.
8130 (tracepoint_save_command): Relay to print_command_lines.
8131 * cli/cli-script.c (process_next_line): New parameters validator
8132 and closure. Handle 'while-stepping'. Call validator if not null.
8133 (read_command_lines, read_command_lines1): Likewise.
8134 (recurse_read_control_structure): New parameters validator and
8135 closure. Handle while_stepping_control.
8136 (print_command_lines): Handle while-stepping.
8137 (get_command_line, define_command, document_command): Adjust.
8138 * remote.c (remote_download_tracepoint): Adjust.
8139 * tracepoint.c (make_cleanup_free_actions, read_actions)
8140 (free_actions, do_free_actions_cleanup): Remove.
8141 (trace_actions_command): Use read_command_lines.
8142 (validate_actionline): Use error in one place.
8143 (encode_actions_1): New, extracted from...
8144 (encode_actions): ...this. Also use cleanups for exception
8145 safety.
8146 (trace_dump_command): Adjust.
8147 * mi/mi-cmd-break (mi_cmd_break_commands): Validate commands if
8148 it's tracepoint.
8149
8150 2010-03-23 Mike Frysinger <vapier@gentoo.org>
8151
8152 * Makefile.in (OPCODES_CFLAGS): Add -I$(OPCODES_SRC)/..
8153
8154 2010-03-22 Stan Shebs <stan@codesourcery.com>
8155
8156 * value.c (value_static_field): Be lazy about the field's value.
8157
8158 2010-03-22 Reid Kleckner <reid@kleckner.net>
8159
8160 PR gdb/11094
8161 * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Add
8162 bp_jit_event.
8163 (disable_breakpoints_in_shlibs): Likewise.
8164
8165 2010-03-22 Ulrich Weigand <uweigand@de.ibm.com>
8166
8167 * dwarf2read.c (partial_die_parent_scope): Work around buggy
8168 GCC 4.1 debug info generation (GCC PR c++/28460).
8169 (determine_prefix): Likewise.
8170
8171 2010-03-20 Daniel Jacobowitz <dan@codesourcery.com>
8172
8173 * tui/tui-disasm.c (tui_get_begin_asm_address): Default to
8174 get_current_arch.
8175 * tui/tui-layout.c (extract_display_start_addr): Likewise.
8176
8177 2010-03-19 Stan Shebs <stan@codesourcery.com>
8178
8179 * ax-gdb.c (gen_fetch): Handle bool.
8180 (gen_usual_unary): Ditto.
8181 (gen_cast): Ditto.
8182 (gen_equal): New function.
8183 (gen_less): New function.
8184 (gen_expr_binop_rest): Call them, also return integer type from
8185 logical operations.
8186 (gen_expr): Ditto.
8187
8188 2010-03-19 Tom Tromey <tromey@redhat.com>
8189
8190 * jv-lang.c (jv_dynamics_objfile_data_key)
8191 (jv_type_objfile_data_key): New globals.
8192 (class_symtab): Move earlier.
8193 (jv_per_objfile_free): New function.
8194 (get_dynamics_objfile): Call set_objfile_data. Add 'gdbarch'
8195 parameter.
8196 Remove ancient #if 1.
8197 (add_class_symbol): Remove redundant declaration.
8198 (java_lookup_class): Use alloc_type, not alloc_type_arch.
8199 (java_link_class_type): Mark as static. Update.
8200 (jv_clear_object_type): New function.
8201 (set_java_object_type): Likewise.
8202 (get_java_object_type): Use set_java_object_type.
8203 (is_object_type): Likewise.
8204 (_initialize_java_language): Register new objfile keys.
8205 (get_java_class_symtab): Add 'gdbarch' parameter.
8206 (add_class_symtab_symbol): Update.
8207 (type_from_class): Update.
8208
8209 2010-03-19 Stan Shebs <stan@codesourcery.com>
8210
8211 * ax-general.c (ax_const_l): Fix a sizing bug.
8212
8213 2010-03-18 Joel Brobecker <brobecker@adacore.com>
8214
8215 GDB 7.1 released.
8216
8217 2010-03-18 Stan Shebs <stan@codesourcery.com>
8218 Pedro Alves <pedro@codesourcery.com>
8219
8220 * target.h (struct target_ops): New method
8221 to_set_circular_trace_buffer.
8222 (target_set_circular_trace_buffer): New macro.
8223 * target.c (update_current_target): Add
8224 to_set_circular_trace_buffer, fix to_set_disconnected_tracing
8225 default behavior.
8226 * remote.c (remote_set_circular_trace_buffer): New function.
8227 (init_remote_ops): Add it to vector.
8228 * tracepoint.h (struct trace_status): New field traceframes_created,
8229 change buffer_size and buffer_free to int.
8230 * tracepoint.c (circular_trace_buffer): New global.
8231 (start_tracing): Send values of disconnected tracing and circular
8232 trace buffer settings.
8233 (set_circular_trace_buffer): New function.
8234 (parse_trace_state): Handle total space and frames created.
8235 (trace_status_command): Display total space and total frames
8236 created.
8237 (trace_save): Write out new status values.
8238 (parse_trace_status): Set traceframe_count, traceframes_created,
8239 buffer_free and buffer_size to -1 by default.
8240 (_initialize_tracepoint): New setshow for circular-trace-buffer.
8241 * NEWS: Mention the circular trace buffer option.
8242
8243 2010-03-18 Tom Tromey <tromey@redhat.com>
8244
8245 * infcmd.c (finish_command_continuation): Wrap print_return_value
8246 in TRY_CATCH.
8247
8248 2010-03-18 Joel Brobecker <brobecker@adacore.com>
8249
8250 * dwarf2read.c (add_partial_subprogram): Make sure the subprogram
8251 DIE has a name before creating the associated partial symbol.
8252 (read_func_scope): Emit a complaint if the subprogram does not
8253 have a name or when we can't extract the subprogram PC bounds.
8254
8255 2010-03-18 Ulrich Weigand <uweigand@de.ibm.com>
8256
8257 * mi/mi-main.c (mi_cmd_list_thread_groups): Use get_current_arch
8258 instead of selected frame architecture.
8259
8260 2010-03-18 Pedro Alves <pedro@codesourcery.com>
8261
8262 * infcmd.c (until_command): Use ERROR_NO_INFERIOR. Ensure there's
8263 a valid selected thread, and that it is not running.
8264 (advance_command): Ditto.
8265 (finish_command): Ditto.
8266
8267 2010-03-17 Stan Shebs <stan@codesourcery.com>
8268
8269 * ax-gdb.c (require_rvalue): Disallow non-scalars.
8270
8271 * infcall.c: Include tracepoint.h.
8272 (call_function_by_hand): Disallow calls in tfind mode.
8273 * infcmd.c: Include tracepoint.h.
8274 (ensure_not_tfind_mode): New function.
8275 (continue_1): Call it.
8276 (step_1) Ditto.
8277 (jump_command): Ditto.
8278 (signal_command): Ditto.
8279 (advance_command): Ditto.
8280 (until_command): Ditto.
8281 (finish_command): Ditto.
8282 * tracepoint.h (disconnect_or_stop_tracing): Declare.
8283
8284 * ax-gdb.h (struct axs_value): New field optimized_out.
8285 (gen_trace_for_var): Add gdbarch argument.
8286 * ax-gdb.c (gen_trace_static_fields): New function.
8287 (gen_traced_pop): Call it, add gdbarch argument.
8288 (gen_trace_for_expr): Update call to it.
8289 (gen_trace_for_var): Ditto, and report optimized-out variables.
8290 (gen_struct_ref_recursive): Check for optimized-out value.
8291 (gen_struct_elt_for_reference): Ditto.
8292 (gen_static_field): Pass gdbarch instead of expression, assume
8293 optimization if field not found.
8294 (gen_var_ref): Set the optimized_out flag.
8295 (gen_expr): Error on optimized-out variable.
8296 * tracepoint.c (collect_symbol): Handle struct-valued vars as
8297 expressions, skip optimized-out variables with computed locations.
8298 * dwarf2loc.c (dwarf2_tracepoint_var_ref): Flag instead of
8299 erroring out if location expression missing.
8300 (loclist_tracepoint_var_ref): Don't error out here.
8301
8302 2010-03-17 Tom Tromey <tromey@redhat.com>
8303
8304 * dwarf2read.c (dwarf2_get_section_info): Handle case where no
8305 DWARF data is available.
8306
8307 2010-03-17 Daniel Jacobowitz <dan@codesourcery.com>
8308
8309 * symfile.c (generic_load): Reset breakpoints after loading.
8310
8311 2010-03-17 Tom Tromey <tromey@redhat.com>
8312
8313 * linux-nat.c (linux_nat_detach): Check debug_linux_nat.
8314
8315 2010-03-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8316
8317 * spu-tdep.c (spu_catch_start): Replace set_breakpoint call with the
8318 create_breakpoint call, adjust the parameters.
8319
8320 2010-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
8321 Chandru <chandru@in.ibm.com>
8322
8323 * dwarf2read.c (read_subrange_type): Set TYPE_HIGH_BOUND_UNDEFINED.
8324 * valarith.c (value_subscripted_rvalue): Suppress error if
8325 TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED.
8326
8327 2010-03-16 Holger Hans Peter Freyther <zecke@selfish.org>
8328
8329 * linux-record.c (record_linux_msghdr): Remove unintended semicolons.
8330
8331 2010-03-16 Joel Brobecker <brobecker@adacore.com>
8332
8333 * ada-tasks.c (task_command_1): Check that the task ptid is valid
8334 before doing the associated thread switch.
8335
8336 2010-03-16 Daniel Jacobowitz <dan@codesourcery.com>
8337
8338 * MAINTAINERS: Update my email address.
8339
8340 2010-03-16 Vladimir Prus <vladimir@codesourcery.com>
8341
8342 Simplify MI breakpoint setting.
8343
8344 * breakpoint.c (break_command_really): Make nonstatic and
8345 rename to...
8346 (create_breakpoint): ...this. Rename prior function by this name
8347 to...
8348 (create_breakpoint_sal): ...this.
8349 (create_breakpoints): Rename to...
8350 (create_breakpoints_sal): ...this.
8351 (set_breakpoint): Remove.
8352 * breakpoint.h: Adjust to above changes.
8353 * mi/mi-cmd-break.c (mi_cmd_break_insert): Simplify.
8354
8355 2010-03-15 Stan Shebs <stan@codesourcery.com>
8356
8357 * ax-gdb.c: Include cp-support.h.
8358 (find_field): Remove.
8359 (gen_primitive_field): New function.
8360 (gen_struct_ref_recursive): New function.
8361 (gen_struct_ref): Rewrite to call gen_struct_ref_recursive instead
8362 of find_field.
8363 (gen_static_field): New function.
8364 (gen_struct_elt_for_reference): New.
8365 (gen_namespace_elt): New.
8366 (gen_maybe_namespace_elt): New.
8367 (gen_aggregate_elt_ref): New.
8368 (gen_expr): Add OP_SCOPE, display opcode name in error message.
8369
8370 2010-03-15 Tom Tromey <tromey@redhat.com>
8371
8372 * dwarf2read.c (die_needs_namespace): Also return 0 for
8373 DW_TAG_subprogram.
8374
8375 2010-03-15 Sami Wagiaalla <swagiaal@redhat.com>
8376
8377 PR c++/7936:
8378 * cp-support.h: Added char *declaration element to using_direct
8379 data struct.
8380 (cp_add_using): Added char *declaration argument.
8381 (cp_add_using_directive): Ditto.
8382 (cp_lookup_symbol_imports): made extern.
8383 * cp-namespace.c: Updated with the above changes.
8384 * dwarf2read.c (read_import_statement): Ditto.
8385 (read_namespace): Ditto.
8386 (read_import_statement): Support import declarations.
8387 * cp-namespace.c (cp_lookup_symbol_imports): Check for imported
8388 declarations.
8389 Added support for 'declaration_only' search.
8390 (cp_lookup_symbol_namespace): Attempt to search for the name as
8391 is before consideration of imports.
8392 * symtab.c (lookup_symbol_aux_local): Added a 'declaration_only'
8393 search at every block level search.
8394 Now takes language argument.
8395 (lookup_symbol_aux): Updated.
8396
8397 2010-03-15 Tom Tromey <tromey@redhat.com>
8398
8399 * c-exp.y (name_not_typename): Add 'operator' clause.
8400
8401 2010-03-15 Ralf Corsepius <ralf.corsepius@rtems.org> (tiny change)
8402
8403 * configure.ac: Exit if ${gdb_target_obs}" is not set.
8404 * configure: Regenerate.
8405
8406 2010-03-15 Jan Kratochvil <jan.kratochvil@redhat.com>
8407
8408 * symfile.c (addr_info_make_relative): Ignore also missing ".dynbss"
8409 and ".sdynbss". Update the comment.
8410
8411 2010-03-15 Jie Zhang <jie@codesourcery.com>
8412
8413 * MAINTAINERS: Update my email address.
8414
8415 2010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
8416
8417 * gdbtypes.h (TYPE_IS_OPAQUE): Correct HAVE_CPLUS_STRUCT check.
8418
8419 2010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
8420
8421 * charset.c [USE_WIN32API]: Include <windows.h>.
8422 (_initialize_charset): Correct type of w32_host_default_charset.
8423
8424 2010-03-14 Pedro Alves <pedro@codesourcery.com>
8425
8426 * infrun.c (ptid_match): Don't assert that PTID is not a pid ptid.
8427
8428 2010-03-12 Tom Tromey <tromey@redhat.com>
8429
8430 PR c++/9708:
8431 * dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: A variable
8432 in a lexical block does not need a namespace.
8433 (new_symbol) <DW_TAG_variable>: Put extern variables on
8434 list_in_scope in all cases.
8435
8436 2010-03-12 Stan Shebs <stan@codesourcery.com>
8437
8438 * ax-gdb.c (gen_expr): Add shift expressions.
8439 (gen_expr_binop_rest): Ditto.
8440
8441 2010-03-12 Sami Wagiaalla <swagiaal@redhat.com>
8442
8443 * buildsym.c (finish_block): Reset using_directives pointer
8444 after block initialization.
8445
8446 2010-03-12 H.J. Lu <hongjiu.lu@intel.com>
8447
8448 * amd64-tdep.c (amd64_word_names): Replace "sp" with "".
8449 * i386-tdep.c (i386_word_names): Likewise.
8450
8451 2010-03-12 Pedro Alves <pedro@codesourcery.com>
8452
8453 * target.c (memory_xfer_partial): Don't use the stack cache if
8454 inspecting trace frames.
8455 * tracepoint.c (finish_tfind_command): Invalidate the target
8456 dcache.
8457
8458 2010-03-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8459
8460 * solib-svr4.c (LM_ADDR_CHECK) <info_verbose>: Use printf_unfiltered
8461 for the PIC displacement, print also the displacement value.
8462 (svr4_exec_displacement): Print DISPLACEMENT if INFO_VERBOSE.
8463
8464 2010-03-10 Kevin Buettner <kevinb@redhat.com>
8465
8466 * remote-mips.c (close_ports, mips_initialize_cleanups)
8467 (mips_exit_cleanups, mips_send_command, mips_open, pmon_open)
8468 (ddb_open, lsi_open, mips_remove_breakpoint, mips_remove_watchpoint)
8469 (mips_stopped_by_watchpoint, send_srec, pmon_checkset)
8470 (pmon_make_fastrec, pmon_check_ack, mips_expect_download)
8471 (pmon_check_entry_address, pmon_check_total, pmon_end_download)
8472 (pmon_download, pmon_load_fast, _initialize_remote_mips): Add
8473 comments describing each of these functions.
8474 (mips_enter_debug, mips_exit_debug, common_open)
8475 (mips_signal_from_protocol, pmon_makeb64, pmon_zeroset): Add
8476 blank line after the comment describing the function.
8477
8478 2010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
8479
8480 * solib-svr4.c (svr4_exec_displacement): Return now success, new
8481 parameter displacementp. Update comment.
8482 (svr4_relocate_main_executable): Return if non-zero SECTION_OFFSETS
8483 element exists. Return if svr4_exec_displacement was not successful.
8484 Update comment.
8485
8486 2010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
8487 Daniel Jacobowitz <dan@codesourcery.com>
8488
8489 * solib-svr4.c (read_program_header): Support type == -1 to read
8490 all program headers.
8491 (read_program_headers_from_bfd): New function.
8492 (svr4_static_exec_displacement): Remove and move the comment ...
8493 (svr4_exec_displacement): ... here. Remove variable found. New
8494 variable displacement. Check also DYNAMIC. Verify DISPLACEMENT
8495 alignment for ELF targets. Compare target vs. exec_bfd PHDRs for ELF
8496 targets using read_program_headers_from_bfd. Remove the call of
8497 svr4_static_exec_displacement.
8498
8499 2010-03-10 Tom Tromey <tromey@redhat.com>
8500
8501 * dwarf2read.c (struct pubnames_header): Remove.
8502 (_PUBNAMES_HEADER): Remove.
8503 (_ACTUAL_PUBNAMES_HEADER_SIZE): Remove.
8504 (struct aranges_header): Remove.
8505 (_ARANGES_HEADER, _ACTUAL_ARANGES_HEADER_SIZE): Remove.
8506 (struct dwarf2_per_objfile) <pubnames, aranges>: Remove.
8507 (PUBNAMES_SECTION): Remove.
8508 (ARANGES_SECTION): Remove.
8509 (dwarf2_locate_sections): Don't handle pubnames or aranges.
8510 (dwarf2_build_psymtabs): Remove dead code.
8511 (dwarf2_build_psymtabs_easy): Remove.
8512
8513 2010-03-10 Tom Tromey <tromey@redhat.com>
8514
8515 * elfread.c (elf_symfile_read): Don't call
8516 dwarf2_build_frame_info.
8517 * dwarf2read.c (struct dwarf2_section_info) <readin>: New field.
8518 (struct dwarf2_per_objfile) <objfile>: New field.
8519 (dwarf2_has_info): Now idempotent. Set objfile field.
8520 (dwarf2_read_section): Check and set readin field. Call
8521 posix_madvise.
8522 (dwarf2_build_psymtabs): Don't read all sections.
8523 (read_type_comp_unit_head): Read types section.
8524 (create_debug_types_hash_table): Likewise.
8525 (init_cu_die_reader): Add asserts.
8526 (process_type_comp_unit): Add assert.
8527 (dwarf2_build_psymtabs_hard): Read info section.
8528 (load_partial_comp_unit): Add assert.
8529 (create_all_comp_units): Read info section.
8530 (load_full_comp_unit): Likewise.
8531 (dwarf2_ranges_read): Read ranges section.
8532 (dwarf2_record_block_ranges): Add assert.
8533 (dwarf2_read_abbrevs): Read abbrev section.
8534 (read_indirect_string): Read str section.
8535 (dwarf_decode_line_header): Read line section.
8536 (read_signatured_type_at_offset): Read types section.
8537 (dwarf_decode_macros): Read macinfo section.
8538 (dwarf2_symbol_mark_computed): Read loc section.
8539 * dwarf2-frame.c (dwarf2_frame_find_fde): Call
8540 dwarf2_build_frame_info.
8541 (dwarf2_build_frame_info): Unconditionally set
8542 dwarf2_frame_objfile_data on the objfile.
8543 * configure.ac: Check for posix_madvise.
8544 * config.in, configure: Rebuild.
8545
8546 2010-03-10 Tom Tromey <tromey@redhat.com>
8547
8548 * xcoffread.c (xcoff_start_psymtab): Update.
8549 (xcoff_end_psymtab): Update.
8550 * psymtab.c (allocate_psymtab): Remove dead code.
8551 * psympriv.h (struct partial_symtab) <read_symtab_private>: Now
8552 void*.
8553 * mdebugread.c (parse_partial_symbols): Update.
8554 (new_psymtab): Likewise.
8555 * dwarf2read.c (process_psymtab_comp_unit): Update.
8556 (psymtab_to_symtab_1): Update.
8557 * dbxread.c (start_psymtab): Update.
8558 (end_psymtab): Likewise.
8559
8560 2010-03-10 Tom Tromey <tromey@redhat.com>
8561
8562 * xcoffread.c: Include psymtab.h.
8563 (xcoff_sym_fns): Update.
8564 * symtab.h (struct partial_symbol): Remove.
8565 (PSYMBOL_DOMAIN, PSYMBOL_CLASS): Remove.
8566 (struct partial_symtab): Remove.
8567 (PSYMTAB_TO_SYMTAB): Remove.
8568 (lookup_partial_symbol, lookup_partial_symtab, find_pc_psymtab)
8569 (find_pc_sect_psymtab): Remove.
8570 (find_pc_sect_symtab_via_partial): Declare.
8571 (find_pc_psymtab, find_pc_sect_psymbol, psymtab_to_symtab)
8572 (find_main_psymtab): Remove.
8573 (find_main_filename): Declare.
8574 (fixup_psymbol_section): Remove.
8575 (fixup_section): Declare.
8576 * symtab.c: Include psymtab.h.
8577 (lookup_symtab): Use lookup_symtab method.
8578 (lookup_partial_symtab): Remove.
8579 (find_pc_sect_psymtab_closer): Remove.
8580 (find_pc_sect_psymtab): Remove.
8581 (find_pc_sect_symtab_via_partial): New function.
8582 (find_pc_psymtab, find_pc_sect_psymbol, find_pc_psymbol): Remove.
8583 (fixup_section): No longer static.
8584 (fixup_psymbol_section): Remove.
8585 (lookup_symbol_aux): Use lookup_symbol_aux_quick.
8586 (lookup_global_symbol_from_objfile): Likewise.
8587 (lookup_symbol_aux_psymtabs): Remove.
8588 (lookup_symbol_aux_quick): New function.
8589 (lookup_symbol_global): Use lookup_symbol_aux_quick.
8590 (lookup_partial_symbol): Remove.
8591 (basic_lookup_transparent_type_quick): New function.
8592 (basic_lookup_transparent_type): Use it.
8593 (find_main_psymtab): Remove.
8594 (find_main_filename): New function.
8595 (find_pc_sect_symtab): Use find_pc_sect_symtab method.
8596 (find_line_symtab): Use expand_symtabs_with_filename method.
8597 (output_partial_symbol_filename): New function.
8598 (sources_info): Use map_partial_symbol_filenames.
8599 (struct search_symbols_data): New type.
8600 (search_symbols_file_matches): New function.
8601 (search_symbols_name_matches): Likewise.
8602 (search_symbols): Use expand_symtabs_matching method.
8603 (struct add_name_data): Rename from add_macro_name_data.
8604 (add_macro_name): Update.
8605 (add_partial_symbol_name): New function.
8606 (default_make_symbol_completion_list): Use
8607 map_partial_symbol_names.
8608 (struct add_partial_symbol_name): New type.
8609 (maybe_add_partial_symtab_filename): New function.
8610 (make_source_files_completion_list): Use
8611 map_partial_symbol_filenames.
8612 (expand_line_sal): Use expand_symtabs_with_filename method.
8613 * symmisc.c: Include psymtab.h.
8614 (print_objfile_statistics): Use print_stats method.
8615 (dump_objfile): Use dump method.
8616 (dump_psymtab, maintenance_print_psymbols)
8617 (maintenance_info_psymtabs, maintenance_check_symtabs)
8618 (extend_psymbol_list): Remove.
8619 * symfile.h (struct quick_symbol_functions): New struct.
8620 (struct sym_fns) <qf>: New field.
8621 (sort_pst_symbols): Remove.
8622 (increment_reading_symtab): Declare.
8623 * symfile.c: Include psymtab.h.
8624 (compare_psymbols, sort_pst_symbols): Remove.
8625 (psymtab_to_symtab): Remove.
8626 (increment_reading_symtab): New function.
8627 (symbol_file_add_with_addrs_or_offsets): Use expand_all_symtabs
8628 method.
8629 (set_initial_language): Use find_main_filename.
8630 (allocate_psymtab, discard_psymtab, cashier_psymtab): Remove.
8631 (free_named_symtabs): Remove unused code.
8632 (start_psymtab_common, add_psymbol_to_bcache)
8633 (append_psymbol_to_list, add_psymbol_to_list, init_psymbol_list):
8634 Remove.
8635 * stack.c: Include psymtab.h, symfile.h.
8636 (backtrace_command_1): Use find_pc_sect_symtab_via_partial.
8637 * source.h (psymtab_to_fullname): Don't declare.
8638 * source.c: Include psymtab.h.
8639 (select_source_symtab): Use find_last_source_symtab method.
8640 (forget_cached_source_info): Use forget_cached_source_info
8641 method.
8642 (find_and_open_source): No longer static.
8643 (psymtab_to_fullname): Remove.
8644 * somread.c: Include psymtab.h.
8645 (som_sym_fns): Update.
8646 * psympriv.h: New file.
8647 * psymtab.h: New file.
8648 * psymtab.c: New file.
8649 * objfiles.h: (ALL_OBJFILE_PSYMTABS): Remove.
8650 (ALL_PSYMTABS, ALL_PSPACE_PSYMTABS): Likewise.
8651 * objfiles.c: Include psymtab.h.
8652 (objfile_relocate1): Use relocate method.
8653 (objfile_has_partial_symbols): Use has_symbols method.
8654 * mipsread.c: Include psymtab.h.
8655 (ecoff_sym_fns): Update.
8656 * mi/mi-cmd-file.c: Include psymtab.h.
8657 (print_partial_file_name): New function.
8658 (mi_cmd_file_list_exec_source_files): Use
8659 map_partial_symbol_filenames.
8660 * mdebugread.c: Include psympriv.h.
8661 * machoread.c: Include psympriv.h.
8662 (macho_sym_fns): Update.
8663 * m2-exp.y (yylex): Use lookup_symtab.
8664 * elfread.c: Include psympriv.h.
8665 (elf_sym_fns): Update.
8666 * dwarf2read.c: Include psympriv.h.
8667 * dbxread.c: Include psympriv.h.
8668 (aout_sym_fns): Update.
8669 * cp-support.c: Include psymtab.h.
8670 (read_in_psymtabs): Remove.
8671 (make_symbol_overload_list_qualified): Use
8672 expand_symtabs_for_function method.
8673 * coffread.c: Include psympriv.h.
8674 (coff_sym_fns): Update.
8675 * blockframe.c: Include psymtab.h.
8676 (find_pc_partial_function): Use find_pc_sect_symtab method.
8677 * ada-lang.h (ada_update_initial_language): Update.
8678 * ada-lang.c: Include psymtab.h.
8679 (ada_update_initial_language): Remove 'main_pst' argument.
8680 (ada_lookup_partial_symbol): Remove.
8681 (struct ada_psym_data): New type.
8682 (ada_add_psyms): New function.
8683 (ada_add_non_local_symbols): Use map_ada_symtabs method.
8684 (struct add_partial_datum): New type.
8685 (ada_add_partial_symbol_completions): New function.
8686 (ada_make_symbol_completion_list): Use map_partial_symbol_names.
8687 (ada_exception_support_info_sniffer): Update.
8688 * Makefile.in (SFILES): Add psymtab.c.
8689 (COMMON_OBS): Add psymtab.o.
8690 (HFILES_NO_SRCDIR): Add psymtab.h, psympriv.h.
8691
8692 2010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
8693
8694 * remote-fileio.c (cygwin_conv_path): Define macro for old cygwin API.
8695
8696 2010-03-10 Sami Wagiaalla <swagiaal@redhat.com>
8697
8698 PR C++/11236:
8699 * cp-namespace.c (cp_add_using): Deleted.
8700 (cp_add_using_directive): Use obstack allocations.
8701 Merged the function cp_add_using into this one.
8702 Added 'struct obstack *' argument.
8703 (cp_scan_for_anonymous_namespaces): Updated.
8704 * cp-support.h: Updated.
8705 * dwarf2read.c (read_import_statement): Updated.
8706 (read_namespace): Updated.
8707
8708 2010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
8709
8710 * windows-nat.c (cygwin_conv_path): Remove old macro.
8711
8712 2010-03-10 Pedro Alves <pedro@codesourcery.com>
8713
8714 * breakpoint.c (condition_command): Handle watchpoint conditions.
8715 (is_hardware_watchpoint): Add comment.
8716 (is_watchpoint): New.
8717 (update_watchpoint): Don't reparse the watchpoint's condition
8718 unless necessary.
8719 (WP_IGNORE): New.
8720 (watchpoint_check): Use it.
8721 (bpstat_check_watchpoint): Handle it.
8722 (bpstat_check_breakpoint_conditions): Evaluate watchpoint local
8723 conditions in a frame where it makes sense.
8724 (watch_command_1): Store the innermost block of the condition
8725 expression.
8726 (delete_breakpoint): Delete the watchpoint condition expression.
8727 * breakpoint.h (struct bp_location) <cond>: Update comment.
8728 (struct breakpoint): New field `cond_exp_valid_block'.
8729
8730 2010-03-09 Joel Brobecker <brobecker@adacore.com>
8731
8732 Adjust handling of Ada DIEs after dwarf2_physname patch.
8733 * dwarf2read.c (dwarf2_compute_name): Add handling of Ada DIEs.
8734
8735 2010-03-09 Christopher Faylor <me+cygwin@cgf.cx>
8736 Pierre Muller <muller@ics.u-strasbg.fr>
8737
8738 * windows-nat.c (cygwin_conv_path): Redefine to properly convert
8739 from/to posix/win32.
8740 (windows_make_so): Use non-Cygwin 1.7 specific function.
8741 (windows_create_inferior): Make sure that cygallargs points to
8742 original args in non Cygwin 1.7. case.
8743
8744 2010-03-09 Michael Snyder <msnyder@vmware.com>
8745
8746 * i386-tdep.c (i386_record_lea_modrm_addr): Use extract_signed_int
8747 after target_read_memory to get host byte order.
8748 (i386_process_record): Ditto.
8749
8750 2010-03-09 Keith Seitz <keiths@redhat.com>
8751
8752 Based on work from Daniel Jacobowitz <dan@codesourcery.com>
8753 * c-typeprint.c (cp_type_print_method_args): For non-static methods,
8754 print out const or volatile qualifiers, too.
8755 (c_type_print_args): Add parameters show_artificial and language.
8756 Skip artificial parameters when requested.
8757 Use the appropriate language printer.
8758 (c_type_print_varspec): Tell c_type_print_args to skip artificial
8759 parameters and pass language_c.
8760 * dwarf2read.c (die_list): New file global.
8761 (struct partial_die_info): Update comments for name field.
8762 (pdi_needs_namespace): Renamed to ...
8763 (die_needs_namespace): ... this. Rewrite.
8764 (dwarf2_linkage_name): Remove.
8765 (add_partial_symbol): Do not predicate the call to
8766 partial_die_full_name based on pdi_needs_namespace.
8767 Remove call to cp_check_possible_namespace_symbols and associated
8768 outdated comments.
8769 (guess_structure_name): Do not inspect child subprogram DIEs.
8770 (dwarf2_fullname): Update comments.
8771 Use die_needs_namespace to assist in computing the name.
8772 (read_func_scope): Use dwarf2_name to get the DIE's name.
8773 Use dwarf2_physname to get the "linkage name" of the DIE.
8774 (dwarf2_add_member_field): Use dwarf2_physname instead of
8775 dwarf2_linkage_name.
8776 (read_structure_type): For structs and classes, set TYPE_NAME, too.
8777 (determine_class): Remove.
8778 (read_partial_die): Ignore DW_AT_MIPS_linkage_name for all languages
8779 except Ada.
8780 (new_symbol): Unconditionally call dwarf2_name.
8781 Compute the "linkage name" using dwarf2_physname.
8782 Use dwarf2_name instead of dwarf2_full_name for enumerator DIEs.
8783 When determining to scan for anonymous C++ namespaces, ignore
8784 the linkage name.
8785 (dwarf2_physname): New function.
8786 (dwarf2_full_name): Move content to new function and call
8787 that.
8788 (dwarf2_compute_name): "New" function.
8789 (_initialize_dwarf2_read): Initialize die_list.
8790 * gnu-v3-eabi.c (gnu_v3_find_method_in): Remove unused variable
8791 physname.
8792 (gnu_v3_print_method_ptr): Use the physname for virtual methods
8793 without a demangled name.
8794 Print out type information for non-virtual methods.
8795 * linespec.c (decode_line_1): Force ANY string using "::" (or
8796 "." for java) to use decode_compound, and clean up any stray quoting.
8797 If we found a file symtab, re-evaluate whether the remainder is_quoted.
8798 (decode_compound): Stop consuming at an open parenthesis.
8799 Keep template parameters.
8800 Keep any overload information.
8801 Keep keywords like "const".
8802 Remove paren_pointer.
8803 Move is_quoted check from set_flags to here.
8804 Remove #if 0 code from 2000. Ten years is long enough.
8805 (find_method): Before comparing symbol names, canonicalize the string
8806 from the user.
8807 If a specific overload is requested, find it. Otherwise throw an error.
8808 (find_method_overload_end): New function.
8809 (set_flags): Remove.
8810 (decode_compound): Assume that parentheses are matched.
8811 It's a lot easier.
8812 * symtab.c (symbol_find_demangled_name): Add DMGL_VERBOSE flag
8813 to cplus_demangle.
8814 * linespec.c (decode_line_1): Keep important keywords like
8815 "const" and "volatile".
8816 * symtab.h (SYMBOL_CPLUS_DEMANGLED_NAME): Remove.
8817 * typeprint.h (c_type_print_args): Add declaration.
8818 * ui-file.c (do_ui_file_obsavestring): New function.
8819 (ui_file_obsavestring): New function.
8820 * ui-file.h (ui_file_obsavestring): Add declaration.
8821 * valops.c (find_overload_match): Resolve the object to
8822 a non-pointer type.
8823 If the object is a data member, search the object for the member
8824 and return with staticp set.
8825 Use SYMBOL_NATURAL_NAME instead of SYMBOL_CPLUS_DEMANGLED_NAME.
8826 Do not attempt to extract a function name from non-function types.
8827 If the extracted function name and the original name are the same,
8828 we don't have a C++ method.
8829
8830 From Jan Kratochvil <jan.kratochvil@redhat.com>:
8831 * dwarf2read.c (new_symbol <DW_TAG_enumerator>): Call dwarf2_full_name.
8832
8833 * ada-lang.c (ada_lookup_symbol): Remove linkage_name parameters
8834 and arguments from symbol lookups.
8835 * ax-gdb.c (gen_expr): Likewise.
8836 * cp-namespace.c (cp_lookup_symbol_nonlocal, lookup_namespace_scope,
8837 cp_lookup_symbol_namespace, lookup_symbol_file, lookup_nested_type,
8838 lookup_possible_namespace_symbol): Likewise.
8839 * cp-support.c (read_in_psymtabs): Likewise.
8840 * cp-support.h (cp_lookup_symbol_nonlocal): Likewise.
8841 * language.h (la_lookup_symbol_nonlocal): Likewise.
8842 * scm-valprint.c (scm_inferior_print): Likewise.
8843 * solib-darwin.c (darwin_relocate_section_addresses): Likewise.
8844 * solib-svr.c (elf_lookup_lib): Likewise.
8845 * solib.c (show_auto_solib_add): Likewise.
8846 * solist.h (lookup_lib_global, solib_global_lookup): Likewise.
8847 * symmisc.c (maintenance_check_symtabs): Likewise.
8848 * symtab.c (lookup_symbol_in_language, lookup_symbol_aux,
8849 lookup_symbol_aux_local, lookup_symbol_aux_block,
8850 lookup_symbol_from_objfile, lookup_symbol_aux_symtabs,
8851 lookup_symbol_aux_psymtabs,basic_lookup_symbol_nonlocal,
8852 lookup_symbol_static, lookup_symbol_global, symbol_matches_domain,
8853 basic_lookup_transparent_type, find_main_psymtab,
8854 lookup_block_symbol): Likewise.
8855 * symtab.h (basic_lookp_symbol_nonlocal, lookup_symbol_static,
8856 lookup_symbol_global, lookup_symbol_aux_block,
8857 lookup_symbol_partial_symbol, lookup_block_symbol,
8858 lookup_global_symbol, value_maybe_namespace_elt): Likewise.
8859
8860 2010-03-09 Pierre Muller <muller@ics.u-strasbg.fr>
8861
8862 * python/python-internal.h: Include symtab.h.
8863
8864 2010-03-09 Joel Brobecker <brobecker@adacore.com>
8865 Pierre Muller <muller@ics.u-strasbg.fr>
8866
8867 * p-lang.c (is_pascal_string_type): Remove unneeded parentheses.
8868 * p-valprint.c (pascal_val_print): Remove undeed block and fix
8869 indentation.
8870
8871 2010-03-08 Tom Tromey <tromey@redhat.com>
8872
8873 * breakpoint.c (breakpoint_1): Add "QUIT".
8874
8875 2010-03-08 Daniel Jacobowitz <dan@codesourcery.com>
8876 Pedro Alves <pedro@codesourcery.com>
8877
8878 * solib.c (solib_find): Replace extension if
8879 solib_symbols_extension is set in the target gdbarch.
8880 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
8881 solib_symbols_extension to "sym".
8882 * gdbarch.sh (solib_symbols_extension): New variable.
8883 (pstring): New function.
8884 * gdbarch.h, gdbarch.c: Regenerate.
8885
8886 2010-03-08 Tom Tromey <tromey@redhat.com>
8887
8888 PR cli/9591:
8889 * NEWS: Update.
8890 * utils.c: Include main.h.
8891 (fputs_maybe_filtered): Don't paginate if `batch_flag'.
8892 (defaulted_query): Use default answer if `batch_flag'.
8893 * main.h (batch_flag): Declare.
8894 * main.c (batch_flag): New global.
8895 (captured_main): Remove 'batch'. Update.
8896
8897 2010-03-08 Kevin Buettner <kevinb@redhat.com>
8898
8899 From Richard Sandiford, Martin M. Hunt, Corinna Vinschen,
8900 and Kevin Buettner:
8901
8902 * remote-mips.c (rockhopper_ops): New target_ops struct.
8903 (MON_ROCKHOPPER): New mips_monitor_type.
8904 (read_hex_value): New function.
8905 (mips_request): Send 8-byte values with a 'T' packet. Read the
8906 packet argument as a string and use read_hex_value to parse it.
8907 (mips_exit_debug): Wait for response when using MON_ROCKHOPPER.
8908 (rockhopper_open): New function.
8909 (mips_wait): Read the PC, FP and SP fields as strings. Use
8910 read_hex_value to parse them and mips_set_register to commit them.
8911 (mips_set_register): New function.
8912 (mips_fetch_registers): Do not cast register value to "unsigned"
8913 when reading a MON_ROCKHOPPER 't' packet. Use mips_set_register.
8914 (mips_store_registers): Use a 'T' packet to set registers when
8915 using MON_ROCKHOPPER.
8916 (pmon_end_download): Don't run initEther if using MON_ROCKHOPPER
8917 and expect the total to be printed before the entry address.
8918 (_initialize_remote_mips): Initialize and add rockhopper_ops.
8919
8920 2010-03-08 Kevin Buettner <kevinb@redhat.com>
8921
8922 * remote-mips.c (mips_fetch_word): Add new parameter, `valp'.
8923 Change return value to int. Store value fetched in location
8924 addressed by `val'. Use function's return value as success
8925 or failure indicator. Adjust all callers.
8926
8927 2010-03-08 Pierre Muller <muller@ics.u-strasbg.fr>
8928
8929 * p-lang.c (is_pascal_string_type): Check that TYPE arg is non NULL.
8930
8931 2010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8932 Hui Zhu <teawater@gmail.com>
8933
8934 * record.c (record_open_1): Check tmp_to_stopped_by_watchpoint and
8935 tmp_to_stopped_data_address.
8936 (record_open): Reset tmp_to_stopped_by_watchpoint and
8937 tmp_to_stopped_data_address.
8938 * target.c (init_dummy_target): Add to_stopped_by_watchpoint and
8939 to_stopped_data_address.
8940
8941 2010-03-08 Hui Zhu <teawater@gmail.com>
8942
8943 * i386-tdep.c (i386_process_record): Initialize regnum.
8944
8945 2010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8946
8947 * symfile.c (addr_info_make_relative): New variable sect_name, use it.
8948 Do not warn on ".gnu.liblist" and ".gnu.conflict".
8949
8950 2010-03-08 Joel Brobecker <brobecker@adacore.com>
8951
8952 Memory error when reading wrong core file.
8953 * solib-svr4.c (solib_svr4_r_map): catch and print all exception
8954 errors while reading the inferior memory, and return zero if
8955 an exception was raised.
8956
8957 2010-03-07 Michael Snyder <msnyder@vmware.com>
8958
8959 * record.c (record_restore): Rename tmpu8 to rectype.
8960
8961 * i386-tdep.c (i386_record_lea_modrm_addr): Rename local variables
8962 tmpu8, tmpi16, tmpi32, tmpulongest to addr8, addr16, addr32, addr64.
8963
8964 (i386_record_push): Rename local tmpulongest to addr.
8965
8966 (i386_process_record): Rename local tmpulongest to addr.
8967
8968 Rename local variables tmpu16, tmpu32, tmpu64 to addr16, addr32,
8969 addr64.
8970
8971 Rename local variable tmpu8 to opcode8 and regnum.
8972
8973 2010-03-07 Joel Brobecker <brobecker@adacore.com>
8974
8975 * remote.c (remote_get_ada_task_ptid): New function.
8976 (init_remote_ops): Set remote_ops.to_get_ada_task_ptid.
8977
8978 2010-03-06 Christopher Faylor <me+cygwin@cgf.cx>
8979
8980 * windows-nat.c: Reorganize #ifdef __CYGWIN__ considerations into one
8981 block. Define helper macros to reduce ifdefs in code.
8982 (get_module_name): Use cygwin_buf_t for buffer and __PMAX for buffer
8983 size. Call unadorned GetModuleFileNameEx rather than
8984 GetModuleFileNameEx*.
8985 (windows_make_so): Use __PMAX to denote maximum buffer size and
8986 cygwin_buf_t for buffer type. Use GetSystemDirectory{W,A} as
8987 appropriate.
8988 (get_image_name): Use __PMAX to denote maximum buffer size.
8989 (handle_load_dll): Likewise.
8990 (windows_pid_to_exec_file): Likewise.
8991 (windows_create_inferior): Add many accommodations for older Cygwin and
8992 non-Cygwin.
8993 (bad_GetModuleFileNameExW): Control inclusion of this function based on
8994 __USEWIDE conditional.
8995 (bad_GetModuleFileNameExA): Likewise.
8996 (_initialize_loadable): Just use real function names without the dyn_
8997 part since they are defined earlier.
8998
8999 2010-03-05 Corinna Vinschen <vinschen@redhat.com>
9000 Tom Tromey <tromey@redhat.com>
9001
9002 * utils.c (host_char_to_target): Add 'gdbarch' argument.
9003 (parse_escape): Likewise.
9004 * python/py-utils.c (unicode_to_target_string): Update.
9005 (unicode_to_target_python_string): Update.
9006 (target_string_to_unicode): Update.
9007 * printcmd.c (printf_command): Update.
9008 * p-exp.y (yylex): Update.
9009 * objc-exp.y (yylex): Update.
9010 * mi/mi-parse.c: Include charset.h.
9011 (mi_parse_escape): New function.
9012 (mi_parse_argv): Use it.
9013 * jv-exp.y (yylex): Update.
9014 * i386-cygwin-tdep.c (i386_cygwin_auto_wide_charset): New
9015 function.
9016 (i386_cygwin_init_abi): Call set_gdbarch_auto_wide_charset.
9017 * gdbarch.sh (auto_charset, auto_wide_charset): New.
9018 * gdbarch.c: Rebuild.
9019 * gdbarch.h: Rebuild.
9020 * defs.h (parse_escape): Update.
9021 * cli/cli-setshow.c: Include arch-utils.h.
9022 (do_setshow_command): Update.
9023 * cli/cli-cmds.c (echo_command): Update.
9024 * charset.h (target_charset, target_wide_charset): Update.
9025 * charset.c: Include arch-utils.h.
9026 (target_charset_name): Default to "auto".
9027 (target_wide_charset_name): Likewise.
9028 (show_target_charset_name): Handle "auto".
9029 (show_target_wide_charset_name): Likewise.
9030 (be_le_arch): New global.
9031 (set_be_le_names): Add 'gdbarch' argument.
9032 (validate): Likewise. Don't call set_be_le_names.
9033 (set_charset_sfunc, set_host_charset_sfunc)
9034 (set_target_charset_sfunc, set_target_wide_charset_sfunc):
9035 Update.
9036 (target_charset): Add 'gdbarch' argument.
9037 (target_wide_charset): Likewise. Remove 'byte_order' argument.
9038 (auto_target_charset_name): New global.
9039 (default_auto_charset, default_auto_wide_charset): New functions.
9040 (_initialize_charset): Set auto_target_charset_name. Allow "auto"
9041 for target charsets. Copy result of nl_langinfo. Use GetACP if
9042 USE_WIN32API.
9043 * c-lang.c (charset_for_string_type): Add 'gdbarch' argument,
9044 remove 'byte_order' argument. Update.
9045 (classify_type): Likewise.
9046 (c_emit_char): Update.
9047 (c_printchar): Update.
9048 (c_printstr): Update.
9049 (c_get_string): Update.
9050 (evaluate_subexp_c): Update.
9051 * arch-utils.h (default_auto_charset, default_auto_wide_charset):
9052 Declare.
9053 * python/python.c (gdbpy_target_charset): New function.
9054 (gdbpy_target_wide_charset): Likewise.
9055 (GdbMethods): Update.
9056 * NEWS: Update.
9057
9058 2010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
9059
9060 * symfile.c (build_section_addr_info_from_objfile): Do not mask
9061 off high address bits.
9062
9063 2010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
9064
9065 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Extract
9066 address as UnsignedLongLong, not LongLong.
9067
9068 2010-03-05 Kevin Buettner <kevinb@redhat.com>
9069 Pedro Alves <pedro@codesourcery.com>
9070
9071 * remote-mips.c (gdbthread.h): Include.
9072 (remote_mips_ptid): Declare.
9073 (mips_error): Only mourn the inferior when inferior_ptid is non-null.
9074 (common_open): Set inferior_ptid, add it as an inferior, and
9075 as a thread too. Delete FIXME comment regarding start_remote().
9076 (mips_close): Invoke generic_mourn_inferior().
9077 (mips_kill): Make sure that target_mourn_inferior is invoked.
9078 (mips_mourn_inferior): Don't invoke generic_mourn_inferior, as
9079 it's now invoked from mips_close().
9080 (mips_load): Don't null out inferior_ptid. Don't call
9081 clear_symtab_users().
9082 (mips_thread_alive, mips_pid_to_str): New functions.
9083 (_initialize_remote_mips): Initialize remote_mips_ptid. Initialize
9084 to_thread_alive and to_pid_to_str operations.
9085
9086 2010-03-04 Tom Tromey <tromey@redhat.com>
9087
9088 * dwarf2read.c (skip_one_die) <DW_FORM_ref_addr>: Use offset size
9089 in DWARF 3 and later.
9090 (read_attribute_value) <DW_FORM_ref_addr>: Likewise.
9091
9092 2010-03-04 Keith Seitz <keiths@redhat.com>
9093
9094 * linespec.c (decode_line_1): Update comments for is_quote_enclosed.
9095 If the filename portion of the linespec was quoted, recheck the
9096 remainder for additional quoting.
9097 (locate_first_half): Skip over completer chars, too.
9098
9099 2010-03-04 Tom Tromey <tromey@redhat.com>
9100
9101 * printcmd.c (printf_command): Pass dummy argument to
9102 printf_filtered.
9103
9104 2010-03-04 Doug Evans <dje@google.com>
9105
9106 * arm-tdep.c (arm_make_stub_cache): Delete unused locals reg,
9107 unwound_fp.
9108
9109 * arm-tdep.c (arm_stub_unwind_sniffer): Add comment.
9110
9111 2010-03-04 Pedro Alves <pedro@codesourcery.com>
9112
9113 * breakpoint.c (update_watchpoint): Create a sentinel location if
9114 the software watchpoint isn't watching any memory.
9115 (breakpoint_address_bits): Skip dummy software watchpoint locations.
9116
9117 2010-03-04 Pedro Alves <pedro@codesourcery.com>
9118
9119 * utils.c (fputs_maybe_filtered): Check if there's already a top
9120 level interpreter before dereferencing it. If there isn't one,
9121 don't paginate either.
9122
9123 2010-03-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
9124
9125 * arm-tdep.c (arm_pc_is_thumb): Add heuristic that tries to get
9126 the state right when single stepping.
9127 (arm_get_next_pc_raw, thumb_get_next_pc_raw): New functions.
9128 Get the next PC along with the instruction state.
9129 (thumb_get_next_pc): Remove.
9130 (arm_get_next_pc): Modified to use arm_get_next_pc_raw.
9131
9132 2010-03-04 Hui Zhu <teawater@gmail.com>
9133
9134 * i386-tdep.c (i386_process_record): Change "addr" to "tmpu64".
9135
9136 2010-03-03 Pedro Alves <pedro@codesourcery.com>
9137
9138 * utils.c (fputs_maybe_filtered): Always disable pagination if the
9139 top level interpreter is MI.
9140
9141 2010-03-03 Stan Shebs <stan@codesourcery.com>
9142
9143 * remote.c (remote_download_tracepoint): Iterate over locations.
9144 * tracepoint.c (validate_actionline): Ditto.
9145 (encode_actions): Add location argument.
9146 (trace_dump_command): Check all locations to see if stepping
9147 frame.
9148
9149 2010-03-03 H.J. Lu <hongjiu.lu@intel.com>
9150 Eli Zaretskii <eliz@gnu.org>
9151
9152 * NEWS: Add X86 general purpose registers section.
9153
9154 2010-03-03 Tom Tromey <tromey@redhat.com>
9155
9156 PR mi/11098:
9157 * varobj.c (install_new_value): Handle case where new print_value
9158 is NULL.
9159
9160 2010-03-03 Dainis Jonitis <jonitis@gmail.com>
9161
9162 PR gdb/11345:
9163 * printcmd.c (printf_command): Print end of format string using
9164 printf_filtered.
9165
9166 2010-03-02 Tom Tromey <tromey@redhat.com>
9167
9168 * mi/mi-cmd-break.c (mi_read_next_line): Add missing 'void'.
9169 * defs.h (read_command_lines_1): Add missing 'void'.
9170 * cli/cli-script.c (recurse_read_control_structure): Add missing
9171 'void'.
9172 (read_next_line): Likewise.
9173 (read_command_lines_1): Likewise.
9174
9175 2010-03-02 Ulrich Weigand <uweigand@de.ibm.com>
9176
9177 * spu-tdep.c (spu_analyze_prologue): Track instruction to
9178 store backchain as part of prologue.
9179
9180 2010-03-02 Daniel Jacobowitz <dan@codesourcery.com>
9181
9182 * progspace.c (update_address_spaces): Update inferior address spaces
9183 also.
9184
9185 2010-03-02 Doug Evans <dje@google.com>
9186
9187 * dwarf2read.c (add_partial_subprogram): Add missing baseaddr to
9188 lowpc,highpc args to addrmap_set_empty.
9189
9190 2010-03-02 H.J. Lu <hongjiu.lu@intel.com>
9191
9192 * amd64-tdep.c (amd64_byte_names): New.
9193 (amd64_word_names): Likewise.
9194 (amd64_dword_names): Likewise.
9195 (amd64_pseudo_register_name): Likewise.
9196 (amd64_pseudo_register_read): Likewise.
9197 (amd64_pseudo_register_write): Likewise.
9198 (amd64_init_abi): Set num_byte_regs, num_word_regs, num_dword_regs
9199 and num_mmx_regs. Call set_gdbarch_pseudo_register_read,
9200 set_gdbarch_pseudo_register_write and
9201 set_tdesc_pseudo_register_name. Don't call
9202 set_gdbarch_num_pseudo_regs. Don't set mm0_regnum.
9203
9204 * i386-tdep.c (i386_num_mmx_regs): Removed.
9205 (i386_num_pseudo_regs): Likewise.
9206 (i386_byte_names): New.
9207 (i386_word_names): Likewise.
9208 (i386_byte_regnum_p): Likewise.
9209 (i386_word_regnum_p): Likewise.
9210 (i386_mmx_regnum_p): Updated.
9211 (i386_pseudo_register_name): Make it global. Handle byte and
9212 word pseudo-registers.
9213 (i386_pseudo_register_read): Likewise.
9214 (i386_pseudo_register_write): Likewise.
9215 (i386_pseudo_register_type): Handle byte, word and dword
9216 pseudo-registers
9217 (i386_register_reggroup_p): Don't include pseudo
9218 registers, except for MXX, in any register groups. Don't
9219 include pseudo byte, word, dword registers in general_reggroup.
9220 (i386_gdbarch_init): Set num_byte_regs, num_word_regs,
9221 num_dword_regs, al_regnum, ax_regnum and eax_regnum. Put MMX
9222 pseudo-registers after word pseudo-registers. Call
9223 set_gdbarch_num_pseudo_regs after calling gdbarch_init_osabi.
9224
9225 * i386-tdep.h (gdbarch_tdep): Add num_mmx_regs, num_byte_regs,
9226 al_regnum, num_word_regs, ax_regnum, num_dword_regs and
9227 eax_regnum.
9228 (i386_byte_regnum_p): New.
9229 (i386_word_regnum_p): Likewise.
9230 (i386_dword_regnum_p): Likewise.
9231 (i386_pseudo_register_name): Likewise.
9232 (i386_pseudo_register_read): Likewise.
9233 (i386_pseudo_register_write): Likewise.
9234
9235 2010-03-01 H.J. Lu <hongjiu.lu@intel.com>
9236
9237 * target-descriptions.c (tdesc_type): Remove
9238 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
9239 (tdesc_predefined_types): Likewise.
9240 (tdesc_gdb_type): Likewise. Pass NULL to append_flags_type_flag
9241 if flag name is empty.
9242 (maint_print_c_tdesc_cmd): Handle TDESC_TYPE_FLAGS.
9243
9244 * features/i386/32bit-core.xml: Define i386_eflags.
9245 * features/i386/64bit-core.xml: Likewise.
9246
9247 * features/i386/32bit-sse.xml: Define i386_mxcsr.
9248 * features/i386/64bit-sse.xml: Likewise.
9249
9250 * features/i386/amd64-linux.c: Regenerated.
9251 * features/i386/amd64.c: Likewise.
9252 * features/i386/i386-linux.c: Likewise.
9253 * features/i386/i386.c: Likewise.
9254
9255 2010-03-01 Daniel Jacobowitz <dan@codesourcery.com>
9256
9257 * gdbtypes.c (append_composite_type_field_raw): New.
9258 (append_composite_type_field_aligned): Use the new function.
9259 * gdbtypes.h (append_composite_type_field_raw): Declare.
9260 * target-descriptions.c (struct tdesc_type_field): Add start and end.
9261 (struct tdesc_type_flag): New type.
9262 (struct tdesc_type): Add TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS to
9263 kind. Add size to u.u. Add u.f for flags.
9264 (tdesc_gdb_type): Handle TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS.
9265 (tdesc_free_type): Likewise.
9266 (tdesc_create_struct, tdesc_set_struct_size, tdesc_create_flags): New.
9267 (tdesc_add_field): Handle TDESC_TYPE_STRUCT.
9268 (tdesc_add_bitfield, tdesc_add_flag): New.
9269 * target-descriptions.h (tdesc_create_struct, tdesc_set_struct_size)
9270 (tdesc_create_flags, tdesc_add_bitfield, tdesc_add_flag): Declare.
9271 * xml-tdesc.c (struct tdesc_parsing_data): Rename current_union to
9272 current_type. Add current_type_size and current_type_is_flags.
9273 (tdesc_start_union): Clear the new fields.
9274 (tdesc_start_struct, tdesc_start_flags): New.
9275 (tdesc_start_field): Handle struct fields, including bitfields.
9276 (field_attributes): Make type optional. Add start and end.
9277 (union_children): Rename to struct_union_children.
9278 (union_attributes): Rename to struct_union_attributes. Add optional
9279 size.
9280 (flags_attributes): New.
9281 (feature_children): Add struct and flags.
9282 * features/gdb-target.dtd: Add flags and struct to features.
9283 Make field type optional. Add field start and end.
9284
9285 2010-03-01 H.J. Lu <hongjiu.lu@intel.com>
9286
9287 * amd64-linux-nat.c (AMD64_LINUX_USER64_CS): New.
9288 (amd64_linux_read_description): Likewise.
9289 (_initialize_amd64_linux_nat): Set to_read_description to
9290 amd64_linux_read_description.
9291
9292 * amd64-linux-tdep.c: Include "features/i386/amd64-linux.c".
9293 (amd64_linux_register_name): Removed.
9294 (amd64_linux_register_type): Likewise.
9295 (amd64_linux_core_read_description): New.
9296 (amd64_linux_init_abi): Set target description to
9297 tdesc_amd64_linux if needed. Support orig_rax in target
9298 description. Don't call set_gdbarch_register_name nor
9299 set_gdbarch_register_type. Call
9300 set_gdbarch_core_read_description.
9301 (_initialize_amd64_linux_tdep): Call
9302 initialize_tdesc_amd64_linux.
9303
9304 * amd64-linux-tdep.h (tdesc_amd64_linux): New.
9305
9306 * amd64-tdep.c: Include "features/i386/amd64.c".
9307 (amd64_register_names): Removed.
9308 (amd64_register_name): Likewise.
9309 (amd64_register_type): Likewise.
9310 (amd64_init_abi): Set num_core_regs and register_names. Set
9311 target description to tdesc_amd64 if needed. Don't call
9312 set_gdbarch_register_name nor set_gdbarch_register_type.
9313 (_initialize_amd64_tdep): New.
9314
9315 * i386-linux-nat.c (i386_linux_read_description): New.
9316 (_initialize_i386_linux_nat): Set to_read_description to
9317 i386_linux_read_description.
9318
9319 * i386-linux-tdep.c: Include "features/i386/i386-linux.c".
9320 (i386_linux_register_name): Removed.
9321 (i386_linux_core_read_description): New.
9322 (i386_linux_read_description): Likewise.
9323 (i386_linux_init_abi): Don't call set_gdbarch_register_name.
9324 Set target description to tdesc_i386_linux if needed. Support
9325 orig_eax. Set register_reggroup_p. Call
9326 set_gdbarch_core_read_description.
9327 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_linux.
9328
9329 * i386-linux-tdep.h (tdesc_i386_linux): New.
9330
9331 * i386-nto-tdep.c (i386nto_regset_id): Replace I386_NUM_FREGS
9332 with I387_NUM_REGS.
9333
9334 * i386-tdep.c: Include "features/i386/i386.c".
9335 (i386_register_names): Make it const.
9336 (i386_mmx_names): Likewise.
9337 (i386_num_register_names): Removed.
9338 (i386_register_name): Likewise.
9339 (i386_eflags_type): Likewise.
9340 (i386_mxcsr_type): Likewise.
9341 (i386_sse_type): Likewise.
9342 (i386_register_type): Likewise.
9343 (i387_ext_type): Call tdesc_find_type instead of arch_float_type.
9344 (i386_pseudo_register_name): New.
9345 (i386_pseudo_register_type): Likewise.
9346 (i386_mmx_type): Make it static.
9347 (i386_gdbarch_init): Check arch. Replace I386_NUM_FREGS with
9348 I387_NUM_REGS. Set num_core_regs and register_names. Don't
9349 call set_gdbarch_register_name nor set_gdbarch_register_type.
9350 Set register_reggroup_p. Set target description to tdesc_i386
9351 if needed. Call set_tdesc_pseudo_register_type,
9352 set_tdesc_pseudo_register_name and tdesc_use_registers.
9353 (_initialize_i386_tdep): Call initialize_tdesc_i386.
9354 initialize_tdesc_x86_64.
9355
9356 * i386-tdep.h (gdbarch_tdep): Remove i386_eflags_type,
9357 i386_mxcsr_type and i386_sse_type. Add num_core_regs,
9358 register_names, tdesc and register_reggroup_p.
9359 (I386_NUM_FREGS): Removed.
9360 (i386_eflags_type): Likewise.
9361 (i386_mxcsr_type): Likewise.
9362 (i386_mmx_type): Likewise.
9363 (i386_sse_type): Likewise.
9364 (i386_register_name): Likewise.
9365 (i386_regnum): Add I386_MXCSR_REGNUM.
9366 (I386_SSE_NUM_REGS): Defined with I386_MXCSR_REGNUM.
9367
9368 * i387-tdep.h (I387_NUM_REGS): New.
9369
9370 * regformats/i386/i386-linux.dat: Generated.
9371 * regformats/i386/i386.dat: Likewise.
9372 * regformats/i386/amd64-linux.dat: Likewise.
9373 * regformats/i386/amd64.dat: Likewise.
9374
9375 * regformats/reg-i386-linux.dat: Removed.
9376 * regformats/reg-i386.dat: Likewise.
9377 * regformats/reg-x86-64-linux.dat: Likewise.
9378 * regformats/reg-x86-64.dat: Likewise.
9379
9380 2010-03-01 Corinna Vinschen <vinschen@redhat.com>
9381
9382 * remote-fileio.c (remote_fileio_func_rename): Use Cygwin 1.7
9383 cygwin_conv_path API rather than the deprecated
9384 cygwin_conv_to_full_posix_path.
9385 * windows-nat.c:
9386 (GetModuleFileNameExA): Undefine for Cygwin.
9387 (GetModuleFileNameExW): Define for Cygwin.
9388 (get_module_name): Change size of pathbuf to PATH_MAX for Cygwin.
9389 Call GetModuleFileNameExW and convert path to POSIX using
9390 cygwin_conv_path.
9391 (windows_make_so): Always define p. Drop unused variable m.
9392 Don't use Win32 functions to check file existance, rather use
9393 access on Cygwin. Fetch system directory using GetSystemDirectoryW.
9394 Use canonicalize_file_name to get full path.
9395 (get_image_name): Use wcstombs, rather than WideCharToMultiByte
9396 to convert Unicode pathname to multibyte on Cygwin. Otherwise,
9397 use correct target buffer size in call to WideCharToMultiByte.
9398 (handle_load_dll): Change size of dll_buf to PATH_MAX for Cygwin.
9399 (windows_pid_to_exec_file): Change size of path to PATH_MAX for Cygwin.
9400 (windows_create_inferior): Convert all paths and arguments to wchar_t
9401 and use CreateProcessW on Cygwin.
9402 (_initialize_windows_nat): Disable DOS-style path warning on Cygwin.
9403 (bad_GetModuleFileNameExA): Undefine for Cygwin.
9404 (bad_GetModuleFileNameExW): Define for Cygwin.
9405 (_initialize_loadable): Load GetModuleFileNameExW into
9406 dyn_GetModuleFileNameExW on Cygwin. Don't load ANSI function on Cygwin.
9407
9408 2010-02-28 Phil Muldoon <pmuldoon@redhat.com>
9409
9410 PR python/11036
9411 * python/py-frame.c (frapy_read_var): Add block argument and logic
9412 to cope with user provided blocks.
9413
9414 2010-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
9415
9416 * infcall.c (call_function_by_hand): Remove gdb_assert on sp and old_sp.
9417 New comment.
9418
9419 2010-02-28 Corinna Vinschen <vinschen@redhat.com>
9420
9421 * Makefile.in (SUBDIR_MI_OBS): Move mi-common.o from here...
9422 (COMMON_OBS): ... to here since it's used unconditionally.
9423 (SUBDIR_MI_SRCS): Move mi/mi-common.c from here...
9424 (SFILES): To here.
9425
9426 2010-02-26 David Daney <ddaney@caviumnetworks.com>
9427
9428 * mips-linux-tdep.c: Update struct sigframe comments.
9429 (SIGFRAME_CODE_OFFSET): Delete macro.
9430 (mips_linux_o32_sigframe_init): Calculate sigcontext_base using
9431 this_frame's sp.
9432 (mips_linux_n32n64_sigframe_init): Same.
9433
9434 2010-02-26 Kevin Buettner <kevinb@redhat.com>
9435
9436 * remote-mips.c (mips_load): Don't use pseudo-register when
9437 invalidating regcache.
9438
9439 2010-02-26 Daniel Jacobowitz <dan@codesourcery.com>
9440
9441 * arm-tdep.c (thumb_get_next_pc): Correct conditional branch opcode.
9442
9443 2010-02-26 Pedro Alves <pedro@codesourcery.com>
9444
9445 * NEWS: Add "New targets" section, and mention ARM Symbian
9446 support.
9447
9448 2010-02-26 Ulrich Weigand <uweigand@de.ibm.com>
9449
9450 * dwarf2loc.c (struct piece_closure): Remove ARCH member,
9451 add ADDR_SIZE member.
9452 (allocate_piece_closure): Update.
9453 (copy_pieced_value_closure): Likewise.
9454 (dwarf2_evaluate_loc_desc): Likewise.
9455 (read_pieced_value): Use DWARF address size instead of
9456 GDB's gdbarch_addr_bit as size of values on the DWARF stack.
9457
9458 2010-02-26 Phil Muldoon <pmuldoon@redhat.com>
9459 Tom Tromey <tromey@redhat.com>
9460
9461 * python/py-type.c (typy_lookup_typename): Add in block argument.
9462 If provided restrict lookup to specified blocks.
9463 (gdbpy_lookup_type): Likewise.
9464 (typy_lookup_type): Likewise.
9465
9466 2010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
9467
9468 Symbian config
9469
9470 gdb/
9471 * arm-symbian-tdep.c: New.
9472 * configure.tgt (arm*-*-symbianelf*): New target.
9473 (*-*-symbianelf*): New OS.
9474 * osabi.c (gdb_osabi_names): Add Symbian.
9475 * defs.h (gdb_osabi): Add GDB_OSABI_SYMBIAN.
9476 * Makefile.in (ALL_TARGET_OBJS): Add arm-symbian-tdep.o.
9477 (ALLDEPFILES): Add arm-symbian-tdep.c.
9478
9479 2010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
9480
9481 * symfile.c (find_lowest_section): Include SEC_ALLOC sections.
9482
9483 2010-02-24 Pedro Alves <pedro@codesourcery.com>
9484
9485 * mi/mi-main.c (mi_cmd_execute): Fix typo.
9486
9487 2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
9488 Tom Tromey <tromey@redhat.com>
9489 Thiago Jung Bauermann <bauerman@br.ibm.com>
9490
9491 * python/python.c (_initialize_python): Call
9492 gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
9493 gdbpy_initialize_blocks.
9494 * python/python-internal.h: Declare struct symbol, block and
9495 symtab_and_line. Declare block_object_type and
9496 symbol_object_type
9497 (gdbpy_lookup_symbol gdbpy_block_for_pc)
9498 (symtab_and_line_to_sal_object, symtab_to_symtab_object)
9499 (symbol_to_symbol_object, block_to_block_object)
9500 (gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
9501 (gdbpy_initialize_blocks ): Declare.
9502 * python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
9503 (frapy_select): Add methods.
9504 (frapy_read_var): Add symbol branch.
9505 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
9506 py-block.
9507 (SUBDIR_PYTHON_SRCS): Likewise.
9508 (py-symbol.o): New rule.
9509 (py-symtab.o): Likewise.
9510 (py-block.o): Likewise.
9511 * python/py-symbol.c: New file.
9512 * python/py-symtab.c: Likewise.
9513 * python/py-block.c: Likewise.
9514
9515 2010-02-24 Pedro Alves <pedro@codesourcery.com>
9516
9517 PR gdb/11321
9518
9519 * inferior.h (prepare_for_detach): Declare.
9520 (struct inferior) <detaching>: New field.
9521 * infrun.c (prepare_for_detach): New.
9522 (handle_inferior_event) <random signal>: Don't stop if detaching.
9523 * target.c (target_detach): Call prepare_for_detach.
9524
9525 2010-02-24 Pedro Alves <pedro@codesourcery.com>
9526
9527 Per-process displaced stepping queue.
9528
9529 * infrun.c (displaced_step_ptid, displaced_step_request_queue)
9530 (displaced_step_gdbarch, displaced_step_closure,
9531 (displaced_step_original, displaced_step_copy): Move globals to
9532 this...
9533 (struct displaced_step_inferior_state): ... new structure.
9534 (displaced_step_inferior_states): New global.
9535 (get_displaced_stepping_state, add_displaced_stepping_state)
9536 (remove_displaced_stepping_state, infrun_inferior_exit): New
9537 functions.
9538 (displaced_step_clear): Add displaced_step_inferior_state
9539 parameter, and adjust to handle it.
9540 (displaced_step_clear_cleanup): Parameter is now a
9541 displaced_step_inferior_state. Adjust.
9542 (displaced_step_prepare): Adjust.
9543 (displaced_step_fixup, displaced_step_fixup)
9544 (infrun_thread_ptid_changed, resume): Adjust.
9545 (init_wait_for_inferior): Don't call displaced_step_clear.
9546 (infrun_thread_stop_requested): Rewrite.
9547 (_initialize_infrun): Install infrun_inferior_exit as
9548 inferior_exit observer.
9549
9550 2010-02-24 Pedro Alves <pedro@codesourcery.com>
9551
9552 * inferior.h (ptid_match): Declare.
9553 * infrun.c (ptid_match): New.
9554 * remote.c (queued_stop_reply): Rewrite and use ptid_match.
9555 (handle_notification): Add debug output.
9556 * linux-nat.c (ptid_match): Delete.
9557
9558 2010-02-24 David S. Miller <davem@davemloft.net>
9559
9560 * gdb_ptrace.h (PT_SYSCALL): If PTRACE_SYSCALL is available, use it.
9561 * syscalls/sparc-linux.xml: New.
9562 * syscalls/sparc64-linux.xml: New.
9563 * Makefile.in (XML_SYSCALL_FILES): Add new syscall XML files.
9564 * sparc-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC32): Define.
9565 (sparc32_linux_get_syscall_number): New function.
9566 (sparc32_linux_init_abi): Set syscall XML file name and hook up
9567 syscall number fetcher.
9568 * sparc64-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC64): Define.
9569 (sparc64_linux_get_syscall_number): New function.
9570 (sparc64_linux_init_abi): Set syscall XML file name and hook up
9571 syscall number fetcher.
9572
9573 2010-02-24 Vladimir Prus <vladimir@codesourcery.com>
9574
9575 Multiexec MI
9576
9577 * breakpoint.c (clear_syscall_counts): Take struct inferior*.
9578 * inferior.c (add_inferior_silent): Notify inferior_added
9579 observer.
9580 (delete_inferior_1): Notify inferior_removed observer.
9581 (exit_inferior_1): Pass inferior, not pid, to observer.
9582 (inferior_appeared): Likewise.
9583 (add_inferior_with_spaces): New.
9584 (add_inferior_command): Use the above.
9585 * inferior.h (delete_inferior_1, add_inferior_with_spaces):
9586 Declare.
9587
9588 * inflow.c (inflow_inferior_exit): Likewise.
9589 * jit.c (jit_inferior_exit_hook): Likewise.
9590
9591 * mi/mi-cmds.c (mi_cmds): Register add-inferior and
9592 remove-inferior.
9593 * mi/mi-cmds.h (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
9594 * mi/mi-interp.c (mi_inferior_added, mi_inferior_removed): New.
9595 (report_initial_inferior): New.
9596 (mi_inferior_removed): Register the above. Make sure
9597 inferior_added observer is called on the first inferior.
9598 (mi_new_thread, mi_thread_exit): Thread group is now identified by
9599 inferior number, not pid.
9600 (mi_solib_loaded, mi_solib_unloaded): Report which inferiors are
9601 affected.
9602 * mi/mi-main.c (current_context): New.
9603 (proceed_thread_callback): Use typed closure.
9604 Proceed everything if pid is 0. Most implementation split into
9605 (proceed_thread): ... this.
9606 (run_one_inferior): New.
9607 (mi_cmd_exec_continue, mi_cmd_exec_interrupt, mi_cmd_exec_run):
9608 Adjust for multiexec behaviour.
9609 (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
9610 (mi_cmd_execute): Handle the 'thread-group' option here.
9611 Do some extra checks.
9612 * mi-parse.c (mi_parse): Handle the --all and --thread-group
9613 options.
9614 * mi-parse.h (struct mi_parse): New fields all and thread_group.
9615
9616 2010-02-24 Vladimir Prus <vladimir@codesourcery.com>
9617
9618 Make -exec-run a proper MI commands.
9619
9620 * mi/mi-cmds.h (mi_cmd_exec_run): Declare.
9621 * mi/mi-cmds.c (mi_cmds): Adjust.
9622 * mi/mi-main.c (mi_cmd_exec_run): New.
9623
9624 2010-02-24 Pedro Alves <pedro@codesourcery.com>
9625 Stan Shebs <stan@codesourcery.com>
9626
9627 * tracepoint.h (set_traceframe_number)
9628 (cleanup_restore_current_traceframe): Declare.
9629 * tracepoint.c (set_traceframe_number): New.
9630 (struct current_traceframe_cleanup): New.
9631 (do_restore_current_traceframe_cleanup)
9632 (restore_current_traceframe_cleanup_dtor)
9633 (make_cleanup_restore_current_traceframe): New.
9634 * infrun.c: Include tracepoint.h.
9635 (fetch_inferior_event): Switch out and in of tfind mode.
9636
9637 2010-02-24 Pedro Alves <pedro@codesourcery.com>
9638
9639 * breakpoint.c (breakpoint_init_inferior): Also delete
9640 bp_shlib_event breakpoints.
9641 * solib-frv.c (enable_break): Remove call to
9642 remove_solib_event_breakpoints.
9643 * solib-svr4.c (enable_break): Ditto.
9644 * solib-darwin.c (darwin_solib_create_inferior_hook): Ditto.
9645 * solib-pa64.c (pa64_solib_create_inferior_hook): Ditto.
9646 * solib-som.c (som_solib_create_inferior_hook): Ditto.
9647 * solib-spu.c (spu_enable_break): Ditto.
9648
9649 2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
9650
9651 * c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE.
9652
9653 2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
9654
9655 * varobj.c (varobj_update): Avoid non-constants in initializers.
9656
9657 2010-02-23 Tom Tromey <tromey@redhat.com>
9658
9659 * dwarf2loc.c (read_pieced_value) <DWARF_VALUE_STACK>: Correctly
9660 handle big-endian values.
9661 (dwarf2_evaluate_loc_desc) <DWARF_VALUE_STACK>: Likewise.
9662
9663 2010-02-22 Pedro Alves <pedro@codesourcery.com>
9664
9665 PR9605
9666
9667 gdb/
9668 * breakpoint.c (insert_bp_location): If inserting the read
9669 watchpoint failed, fallback to an access watchpoint.
9670 (bpstat_check_watchpoint): Stop for read watchpoint triggers even
9671 if the value changed, if not watching the same memory for writes.
9672 (watchpoint_locations_match): Add comment.
9673 (update_global_location_list): Copy the location's watchpoint type.
9674 * i386-nat.c (i386_length_and_rw_bits): It's an internal error to
9675 handle read watchpoints here.
9676 (i386_insert_watchpoint): Read watchpoints aren't supported.
9677 * remote.c (remote_insert_watchpoint): Return 1 for unsupported
9678 packets.
9679 * target.h (target_insert_watchpoint): Update description.
9680
9681 2010-02-19 Tom Tromey <tromey@redhat.com>
9682
9683 * p-typeprint.c (pascal_type_print_varspec_prefix): Update.
9684 * m2-typeprint.c (m2_print_type): Update.
9685 * gdbtypes.c (recursive_dump_type): Update.
9686 (copy_type_recursive): Update.
9687 * c-typeprint.c (c_type_print_varspec_prefix): Update.
9688 (c_type_print_base): Update.
9689 * gdbtypes.h (TYPE_CODE_TEMPLATE, TYPE_CODE_TEMPLATE_ARG):
9690 Remove.
9691 (struct cplus_struct_type) <ntemplate_args>: Remove.
9692 <struct template_arg>: Remove.
9693 <is_dynamic>: Move earlier.
9694 (TYPE_TEMPLATE_ARGS): Remove.
9695 (TYPE_NTEMPLATE_ARGS): Remove.
9696 (TYPE_TEMPLATE_ARG): Remove.
9697
9698 2010-02-19 Tom Tromey <tromey@redhat.com>
9699
9700 PR c++/8693, PR c++/9496:
9701 * cp-namespace.c (cp_lookup_nested_type): Handle TYPE_CODE_UNION.
9702 * c-exp.y (lex_one_token): Rename from yylex. Don't call
9703 write_dollar_variable. Don't try to classify NAME tokens.
9704 (token_and_value): New type.
9705 (token_fifo, popping, name_obstack): New globals.
9706 (classify_name): New function.
9707 (classify_inner_name): Likewise.
9708 (yylex): Likewise.
9709 (VARIABLE): Now has type sval.
9710 (exp : VARIABLE): Call write_dollar_variable.
9711 (qualified_name): Use TYPENAME, not typebase. Add production for
9712 multiple "::" instances.
9713 (variable): Use name_not_typename.
9714 (qualified_type): Remove.
9715 (typebase): Update.
9716
9717 2010-02-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9718
9719 * symfile.c (addr_info_make_relative): Extend comment. Move SECT to
9720 a more inner block. Initialize ADDR by LOWER_OFFSET only if it was
9721 found by bfd_get_section_by_name.
9722 * symfile.h (struct section_addr_info) <sectindex>: New comment.
9723
9724 2010-02-19 Joel Brobecker <brobecker@adacore.com>
9725
9726 * NEWS: Add new "[...] since 7.1" section. Rename the "[...] since
9727 7.0 section" into "Changes in 7.1".
9728
9729 2010-02-19 Joel Brobecker <brobecker@adacore.com>
9730
9731 GDB 7.1 branch created (branch timestamp: 2010-02-18 20:00 UTC)
9732 * version.in: Bump version to 7.1.50.20100219-cvs.
9733
9734 2010-02-18 Harald Koenig <H.Koenig@science-computing.de>
9735
9736 * mi/mi-main.c (mi_cmd_exec_jump): Drop unneeded `return'.
9737 * symfile.c (symfile_map_offsets_to_segments): Fix assertion.
9738
9739 2010-02-17 Tom Tromey <tromey@redhat.com>
9740
9741 * NEWS: Add Python API Improvements section.
9742
9743 2010-02-18 Daniel Jacobowitz <dan@codesourcery.com>
9744
9745 * NEWS: Correct typo.
9746
9747 2010-02-17 Tom Tromey <tromey@redhat.com>
9748
9749 * objfiles.c (gdb_bfd_ref): Handle abfd==NULL.
9750
9751 2010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
9752
9753 * symfile.c (build_section_addr_info_from_objfile): Include sections
9754 only if they are SEC_ALLOC or SEC_LOAD.
9755
9756 2010-02-17 H.J. Lu <hongjiu.lu@intel.com>
9757
9758 PR shlibs/11293
9759 * solib-svr4.c (enable_break): Check size of CORE_ADDR instead
9760 of ULONGEST for address size.
9761
9762 2010-02-17 Tom Tromey <tromey@redhat.com>
9763
9764 * NEWS: Add C++ improvements section.
9765
9766 2010-02-17 Ulrich Weigand <uweigand@de.ibm.com>
9767
9768 * python/python-internal.h [!WITH_THREAD] (PyGILState_Release,
9769 PyThreadState_Swap): Avoid "statement with no effect" warning.
9770
9771 2010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
9772
9773 * solib-svr4.c (enable_break <target_auxv_search>): New variable
9774 addr_bit. Adjust LOAD_ADDR sign for cross-arch inferiors.
9775
9776 2010-02-17 Tristan Gingold <gingold@adacore.com>
9777 Petr Hluzin <petr.hluzin@gmail.com>
9778
9779 * avr-tdep.c (avr_scan_prologue): Convert an if statement to a
9780 gdb_assert. Fix info->size for SIG prologue.
9781
9782 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
9783
9784 * infcmd.c (show_inferior_tty_command): Check for NULL.
9785 Correct output message.
9786
9787 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
9788
9789 * linespec.c (decode_line_1): Handle FILE:FUNCTION even if
9790 FUNCTION contains parentheses. Improve removal of a trailing
9791 single quote.
9792
9793 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
9794
9795 * gcore.c (do_bfd_delete_cleanup): New function.
9796 (gcore_command): Use it. Discard the cleanup after success.
9797 (gcore_copy_callback): Delete dead code.
9798
9799 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
9800
9801 * symfile.c (addr_info_make_relative): Always use
9802 find_lowest_section.
9803
9804 2010-02-16 Sami Wagiaalla <swagiaal@redhat.com>
9805
9806 * NEWS: Added entry for namespace fixes.
9807
9808 2010-02-15 Tom Tromey <tromey@redhat.com>
9809
9810 * dwarf2read.c (guess_structure_name): Allocate name on the
9811 objfile obstack.
9812
9813 2010-02-15 Tom Tromey <tromey@redhat.com>
9814
9815 * c-typeprint.c (c_type_print_base): Reverse order of test.
9816
9817 2010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9818
9819 * solib-svr4.c (LM_ADDR_CHECK): New variable minpagesize. Optionally
9820 initialize it from ELF BFD. Extend the prelink condition by it.
9821
9822 2010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9823
9824 * defs.h (parse_pid_to_attach): New.
9825 * utils.c (parse_pid_to_attach): New.
9826 * darwin-nat.c (darwin_attach): Replace ARGS parsing by parse_pid.
9827 * gnu-nat.c (gnu_attach): Likewise.
9828 * nto-procfs.c (procfs_attach): Likewise.
9829 * procfs.c (procfs_attach): Likewise.
9830 * windows-nat.c (windows_attach): Likewise.
9831 * inf-ptrace.c (inf_ptrace_attach): Likewise. Remove variable dummy.
9832 * inf-ttrace.c (inf_ttrace_attach): Likewise.
9833 * remote.c (extended_remote_attach_1): Likewise. New comment on getpid
9834 check.
9835
9836 2010-02-14 Masaki Muranaka <monaka@monami-software.com>
9837
9838 * MAINTAINERS: Add myself for write after approval privileges.
9839
9840 2010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
9841
9842 * solib-svr4.c: (LM_ADDR_CHECK): Move variable align to a more inner
9843 block.
9844
9845 2010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
9846
9847 * solib-svr4.c: (LM_ADDR_CHECK): Print successful prelink adjustment
9848 only if INFO_VERBOSE.
9849
9850 2010-02-12 Tomas Holmberg <th@virtutech.com>
9851
9852 * mi/mi-main.c: Added the --reverse flag to the following MI
9853 commands: exec-continue, exec-finish, exec-next, exec-step,
9854 exec-next-instruction, exec-step-instruction. This is to
9855 support reverse execution over the MI interface to gdb.
9856
9857 2010-02-12 Pedro Alves <pedro@codesourcery.com>
9858
9859 * tracepoint.c (_initialize_tracepoint): Specify that the address
9860 range of `tfind outsize' is exclusive, and that the address range
9861 of `tfind range' is inclusive, in the commands' help strings.
9862
9863 2010-02-12 Joel Brobecker <brobecker@adacore.com>
9864
9865 Spurious "dll not found" error messages on x64-windows.
9866 * windows-nat.c: Add include of complaints.h.
9867 (handle_unload_dll): Change dll-not-found error into a complaint.
9868
9869 2010-02-12 Pedro Alves <pedro@codesourcery.com>
9870
9871 * breakpoint.c (allocate_bp_location): Use bp_loc_other for
9872 bp_tracepoint and bp_fast_tracepoint, not
9873 bp_loc_software_breakpoint.
9874 (update_global_location_list): Tracepoints are never duplicates of
9875 anything.
9876
9877 2010-02-12 Pedro Alves <pedro@codesourcery.com>
9878
9879 * breakpoint.c (break_command_really): Change return type to int.
9880 Return false if no breakpoint was created, true otherwise.
9881 (trace_command): Don't set the tracepoint count if no tracepoint
9882 was created.
9883 (ftrace_command): Ditto.
9884 (create_tracepoint_from_upload): Bail out if the tracepoint wasn't
9885 created in the breakpoints table.
9886
9887 2010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9888 Ulrich Weigand <uweigand@de.ibm.com>
9889
9890 * solib-svr4.c (LM_ADDR_CHECK): New comment on PPC-aware condition.
9891
9892 2010-02-11 Pedro Alves <pedro@codesourcery.com>
9893
9894 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out if
9895 the offset value isn't of integral type.
9896
9897 2010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9898
9899 * breakpoint.c (delete_breakpoint) <bpt->related_breakpoint != NULL>:
9900 New.
9901
9902 2010-02-11 Pedro Alves <pedro@codesourcery.com>
9903
9904 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out on
9905 non-subscriptable types.
9906 * valarith.c (binop_types_user_defined_p): New, abstracted out
9907 from ...
9908 (binop_user_defined_p): ... this.
9909 * value.h (binop_types_user_defined_p): Declare.
9910
9911 2010-02-11 Pedro Alves <pedro@codesourcery.com>
9912
9913 * tracepoint.c (tfile_open): Remove spurious discard_cleanups.
9914 Merge uploaded TSVs before merging uploaded tracepoints.
9915
9916 2010-02-11 Pedro Alves <pedro@codesourcery.com>
9917
9918 * ax-gdb.c (gen_deref): Don't allow dereferencing void pointers.
9919
9920 2010-02-11 Vladimir Prus <vladimir@codesourcery.com>
9921
9922 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Add extra
9923 whitespace character after a dot in comment.
9924 (mi_cmd_stack_list_arguments, mi_cmd_stack_list_variables):
9925 Likewise.
9926 (list_args_or_locals): For the 'all' (that is
9927 -stack-list-variables) case, always output list of tuples.
9928 Output 'arg' field if variable is argument.
9929
9930 2010-02-10 Tom Tromey <tromey@redhat.com>
9931
9932 * parser-defs.h (parser_debug): Declare.
9933 * parse.c (_initialize_parse): Install "debug parser" set/show
9934 command.
9935 (parser_debug): New global.
9936 (show_parserdebug): New function.
9937 * c-exp.y (c_parse): Set yydebug.
9938
9939 2010-02-10 H.J. Lu <hongjiu.lu@intel.com>
9940
9941 * target-descriptions.c (tdesc_type): Add TDESC_TYPE_I387_EXT,
9942 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
9943 (tdesc_predefined_types): Add i387_ext, i386_eflags and
9944 i386_mxcsr.
9945 (tdesc_find_type): New.
9946 (tdesc_gdb_type): Use tdesc_find_type. Handle TDESC_TYPE_I387_EXT,
9947 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
9948
9949 * target-descriptions.h (tdesc_find_type): New.
9950
9951 2010-02-10 Michael Snyder <msnyder@vmware.com>
9952
9953 * gdb-gdb.py: Comment fix.
9954
9955 2010-02-09 Tristan Gingold <gingold@adacore.com>
9956
9957 * machoread.c (macho_symfile_relocate): New function.
9958 (macho_sym_fns): Use macho_symfile_relocate instead of
9959 default_symfile_relocate.
9960 (macho_oso_data): New type.
9961 (current_oso): New variable.
9962 (macho_add_oso_symfile): Do not compute section_addr_info, but
9963 instead set vma of sections.
9964 Do not set SYMFILE_VERBOSE to call symbol_file_add_from_bfd.
9965 Set and clear current_oso.
9966
9967 2010-02-09 Joel Brobecker <brobecker@adacore.com>
9968
9969 Wrong type description for tagged type parameter.
9970 * ada-lang.c (ada_evaluate_subexp) [OP_VAR_VALUE]: When noside is
9971 EVAL_AVOID_SIDE_EFFECTS, also handle the case when type is a
9972 reference to a tagged type.
9973
9974 2010-02-09 Tristan Gingold <gingold@adacore.com>
9975
9976 * objfiles.c (objfile_separate_debug_iterate): Do not iterate on
9977 brothers of the parent.
9978
9979 2010-02-08 Tom Tromey <tromey@redhat.com>
9980
9981 PR c++/8017:
9982 * value.h: Update.
9983 * valops.c (search_struct_field): Make 'name' const.
9984 (search_struct_method): Likewise.
9985 (find_method_list): Make 'method' const.
9986 (value_struct_elt): Make 'name' and 'err' const.
9987 (value_find_oload_method_list): Make 'method' const.
9988 (find_overload_match): Make 'name' const.
9989 * eval.c (evaluate_subexp_standard): New locals function,
9990 function_name.
9991 <OP_FUNCALL>: Handle OP_SCOPE specially.
9992
9993 2010-02-08 Ulrich Weigand <uweigand@de.ibm.com>
9994
9995 * infrun.c (handle_inferior_event): Do not look up regcache
9996 for exited processes.
9997
9998 2010-02-08 Chris Moller <moller@mollerware.com>
9999
10000 PR gdb/10728
10001 * valarith.c (value_ptrdiff): Added a test for a zero type length,
10002 warn if found, and assume length = 1.
10003
10004 2010-02-08 Chris Moller <cmoller@redhat.com>
10005
10006 PR gdb/9067
10007 * cp-valprint.c (cp_print_value_fields) Fix use of obstacks.
10008 (cp_print_static_field) Fix use of obstacks.
10009
10010 2010-02-08 Pedro Alves <pedro@codesourcery.com>
10011
10012 * linux-nat.c (linux_nat_resume): In non-stop, also only tag
10013 resumed LWPs as resumed.
10014 (linux_nat_wait_1): If there's no resumed LWP in the set of LWPs
10015 we're waiting for, bail out with TARGET_WAITKIND_IGNORE, instead
10016 of throwing an internal error. If an LWP of a process we're not
10017 waiting for reports a signal, don't force collecting a SIGSTOP,
10018 and if it was breakpoint hit in non-stop mode, cancel it. Don't
10019 go through all LWPs cancelling breakpoints in non-stop mode.
10020 (resume_stopped_resumed_lwps): New.
10021 (linux_nat_wait): Use it.
10022
10023 2010-02-07 H.J. Lu <hongjiu.lu@intel.com>
10024
10025 * features/Makefile (WHICH): Add i386/i386, i386/i386-linux,
10026 i386/amd64 and i386/amd64-linux.
10027 (i386/i386-expedite): New.
10028 (i386/i386-linux-expedite): Likewise.
10029 (i386/amd64-expedite):Likewise.
10030 (i386/amd64-linux-expedite): Likewise.
10031 ($(outdir)/i386/i386-linux.dat): Likewise.
10032 ($(outdir)/i386/amd64.dat): Likewise.
10033 ($(outdir)/i386/amd64-linux.dat): Likewise.
10034
10035 * features/i386/32bit-core.xml: New.
10036 * features/i386/32bit-linux.xml: Likewise.
10037 * features/i386/32bit-sse.xml: Likewise.
10038 * features/i386/64bit-core.xml: Likewise.
10039 * features/i386/64bit-linux.xml: Likewise.
10040 * features/i386/64bit-sse.xml: Likewise.
10041 * features/i386/i386-linux.xml: Likewise.
10042 * features/i386/i386.xml: Likewise.
10043 * features/i386/amd64-linux.xml: Likewise.
10044 * features/i386/amd64.xml: Likewise.
10045 * features/i386/i386-linux.c: Likewise.
10046 * features/i386/i386.c: Likewise.
10047 * features/i386/amd64-linux.c: Likewise.
10048 * features/i386/amd64.c: Likewise.
10049
10050 2010-02-05 Sami Wagiaalla <swagiaal@redhat.com>
10051
10052 PR c++/7935:
10053 * cp-support.h: Added char* alias element to using_direct data
10054 struct.
10055 (cp_add_using): Added char* alias argument.
10056 (cp_add_using_directive): Ditto.
10057 * cp-namespace.c: Updated with the above changes.
10058 (cp_lookup_symbol_imports): Check for aliases.
10059 * dwarf2read.c (read_import_statement): Figure out local alias
10060 for the import and pass it on to cp_add_using.
10061 (read_namespace): Pass alias argument to cp_add_using.
10062
10063 2010-02-05 Hui Zhu <teawater@gmail.com>
10064
10065 * defs.h (gdb_bfd_errmsg): New extern.
10066 * exec.c (exec_file_attach): Change bfd_errmsg to
10067 gdb_bfd_errmsg.
10068 * utils.c (AMBIGUOUS_MESS1): New macro.
10069 (AMBIGUOUS_MESS2): New macro.
10070 (gdb_bfd_errmsg): New function.
10071
10072 2010-02-04 Doug Evans <dje@google.com>
10073
10074 * solib-svr4.c (enable_break): Add comment.
10075
10076 2010-02-04 Anthony Green <green@moxielogic.com>
10077
10078 * moxie-tdep.c (moxie_analyze_prologue): Fail protocol analysis
10079 gracefully.
10080
10081 2010-02-04 Tom Tromey <tromey@redhat.com>
10082
10083 * valops.c (search_struct_field): Account for
10084 value_embedded_offset. Fix check for virtual base past the end of
10085 the object. Use value_copy when making a slice of the value.
10086
10087 2010-02-04 H.J. Lu <hongjiu.lu@intel.com>
10088
10089 PR tui/9622
10090 * tui/tui-interp.c (tui_init): Call tui_initialize_readline
10091 only if gdb_stdout is a tty.
10092
10093 2010-02-04 H.J. Lu <hongjiu.lu@intel.com>
10094
10095 * target-descriptions.c: Include "osabi.h".
10096 (maint_print_c_tdesc_cmd): Generate set_tdesc_osabi for valid
10097 OSABI.
10098
10099 2010-02-04 Tristan Gingold <gingold@adacore.com>
10100
10101 * machoread.c (macho_add_oso): Renamed to macho_register_oso.
10102 (macho_symtab_read): Adjust calls to macho_add_oso.
10103 (macho_oso_symfile): Renamed to macho_symfile_read_all_oso.
10104 (macho_symfile_read): Adjust call to macho_oso_symfile.
10105 (macho_new_init): Move this function after declarations.
10106 (macho_symfile_init): Ditto.
10107 * darwin-nat-info.c (darwin_lib_gdb_ports): Remove.
10108 * darwin-nat.c (darwin_lookup_task): Remove unused prototype.
10109
10110 2010-02-04 Vladimir Prus <vladimir@codesourcery.com>
10111
10112 Include MI command in remotelog.
10113
10114 * mi/mi-main.c (mi_execute_command): Call target_log_command.
10115
10116 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
10117
10118 * remote.c (remote_state): Remove gdbarch.
10119 (init_remote_state): Don't set gdbarch.
10120 (remote_query_supported): Pass target_gdbarch instead of
10121 rs->gdbarch to gdbarch_qsupported.
10122
10123 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
10124
10125 * gdbarch.sh: Add qsupported.
10126
10127 * gdbarch.c: Regenerated.
10128 * gdbarch.h: Likewise.
10129
10130 * remote.c (remote_state): Add gdbarch.
10131 (init_remote_state): Set gdbarch.
10132 (remote_query_supported): Support gdbarch_qsupported.
10133
10134 2010-02-03 Daniel Jacobowitz <dan@codesourcery.com>
10135
10136 * amd64fbsd-nat.c (amd64fbsd_supply_pcb): Also check for
10137 __FreeBSD_kernel_version.
10138
10139 2010-02-03 Tristan Gingold <gingold@adacore.com>
10140
10141 * symfile.h (struct sym_fns): Add sym_relocate field.
10142 (default_symfile_relocate): New prototype.
10143 (symfile_relocate_debug_section): First argument is now an objfile.
10144 * symfile.c (default_symfile_relocate): Rename from
10145 symfile_relocate_debug_section, first argument is now an objfile.
10146 (symfile_relocate_debug_section): New function.
10147 * coffread.c (coff_sym_fns): Set sym_relocate field.
10148 * somread.c (som_sym_fns): Ditto.
10149 * mipsread.c (ecoff_sym_fns): Ditto.
10150 * machoread.c (macho_sym_fns): Ditto.
10151 * elfread.c (elf_sym_fns): Ditto.
10152 * dwarf2read.c (dwarf2_read_section): Ditto.
10153 * xcoffread.c (xcoff_sym_fns): Ditto.
10154 * dbxread.c (aout_sym_fns): Ditto.
10155 (dbx_psymtab_to_symtab): Adjust call to symfile_relocate_debug_section.
10156 (elfstab_build_psymtabs): Ditto.
10157
10158 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
10159
10160 * defs.h (MAX_REGISTER_SIZE): Increase to 32.
10161
10162 2010-02-02 Tom Tromey <tromey@redhat.com>
10163
10164 * valops.c (value_cast_structs): Try downcasting using the RTTI
10165 type.
10166
10167 2010-02-02 Tom Tromey <tromey@redhat.com>
10168
10169 * gnu-v2-abi.c: Don't include gnu-v2-abi.h.
10170 (gnuv2_baseclass_offset): Now static.
10171 * Makefile.in (HFILES_NO_SRCDIR): Remove gnu-v2-abi.h.
10172 * gnu-v2-abi.h: Remove.
10173
10174 2010-02-02 Tom Tromey <tromey@redhat.com>
10175
10176 * m2-typeprint.c (m2_record_fields): Don't use
10177 TYPE_DECLARED_TYPE.
10178 * gdbtypes.h (TYPE_DECLARED_CLASS): New macro.
10179 (struct main_type) <flag_declared_class>: New field.
10180 (struct cplus_struct_type) <declared_type>: Remove.
10181 <ntemplate_args>: Move earlier.
10182 (DECLARED_TYPE_CLASS, DECLARED_TYPE_UNION, DECLARED_TYPE_STRUCT)
10183 (DECLARED_TYPE_TEMPLATE): Remove.
10184 (TYPE_DECLARED_TYPE): Remove.
10185 * gdbtypes.c (lookup_union): Don't use TYPE_DECLARED_TYPE.
10186 * dwarf2read.c (read_structure_type): Set TYPE_DECLARED_CLASS.
10187 * c-typeprint.c (c_type_print_base): Use TYPE_DECLARED_CLASS, not
10188 TYPE_DECLARED_TYPE.
10189
10190 2010-02-02 Tom Tromey <tromey@redhat.com>
10191
10192 PR c++/11226, PR c++/9629, PR c++/9688, PR c++/8890:
10193 * valops.c (search_struct_field): Compute nbases after calling
10194 CHECK_TYPEDEF.
10195 (check_field): Call CHECK_TYPEDEF.
10196 * cp-valprint.c (cp_print_value): Pass correct address to
10197 baseclass_offset. Fix check for virtual base past the end of the
10198 object. Don't offset address passed to cp_print_value_fields or
10199 apply_val_pretty_printer.
10200 (cp_print_value_fields): Fix call to val_print.
10201 (cp_print_value_fields_rtti): New function.
10202 * c-valprint.c (c_val_print): Use cp_print_value_fields_rtti.
10203 * p-valprint.c (pascal_object_print_value_fields): Fix call to
10204 val_print.
10205 * python/py-prettyprint.c (apply_val_pretty_printer): Add embedded
10206 offset to address.
10207 * language.h (struct language_defn) <la_val_print>: Document.
10208 * c-lang.h (cp_print_value_fields_rtti): Declare.
10209
10210 2010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10211
10212 PR libc/11214:
10213 * linux-low.c (linux_tracefork_child) [!(__UCLIBC__ && HAS_NOMMU)]: New.
10214 (linux_test_for_tracefork): Move `stack' into [__UCLIBC__ && HAS_NOMMU].
10215 (linux_test_for_tracefork) [!(__UCLIBC__ && HAS_NOMMU)]: New.
10216
10217 2010-02-01 Michael Matz <matz@suse.de>
10218 Daniel Jacobowitz <dan@codesourcery.com>
10219
10220 * i386-tdep.c (i386_frame_cache): Assume valid anonymous
10221 functions use a frame pointer.
10222
10223 2010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10224
10225 * solib-svr4.c (scan_dyntag): New variable dyn_addr. Replace gdb_assert
10226 by a conditional setting DYN_ADDR. Use DYN_ADDR.
10227 * config/djgpp/fnchange.lst: Add translations for
10228 symbol-without-target_section.exp and symbol-without-target_section.c.
10229
10230 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
10231
10232 * gdbarch.sh: Set LANG and LC_ALL to C, not c.
10233 (remote_breakpoint_for_pc): Correct invalid_p check.
10234 * gdbarch.c: Regenerated.
10235
10236 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
10237
10238 * arm-tdep.c (arm_find_mapping_symbol): New function, from
10239 arm_pc_is_thumb.
10240 (arm_pc_is_thumb): Use arm_find_mapping_symbol.
10241 (extend_buffer_earlier): New function.
10242 (MAX_IT_BLOCK_PREFIX, IT_SCAN_THRESHOLD): New constants.
10243 (arm_adjust_breakpoint_address): New function.
10244 (arm_gdbarch_init): Register arm_adjust_breakpoint_address.
10245
10246 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
10247
10248 * arm-linux-tdep.c (arm_linux_thumb2_be_breakpoint)
10249 (arm_linux_thumb2_le_breakpoint): New constants.
10250 (arm_linux_init_abi): Set thumb2_breakpoint and
10251 thumb2_breakpoint_size.
10252 * arm-tdep.c (thumb_insn_size, thumb_advance_itstate): New functions.
10253 (thumb_get_next_pc): Add a comment. Rename IT to ITSTATE.
10254 Implement support for single stepping through IT blocks if
10255 a 32-bit Thumb breakpoint instruction is available.
10256 (arm_breakpoint_from_pc): If a 32-bit Thumb breakpoint instruction
10257 is available, use it when needed.
10258 (arm_remote_breakpoint_from_pc): New function.
10259 (arm_gdbarch_init): Register arm_remote_breakpoint_from_pc.
10260 * arm-tdep.h (struct gdbarch_tdep): Correct thumb_breakpoint
10261 comment. Add thumb2_breakpoint and thumb2_breakpoint_size.
10262
10263 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
10264
10265 * arch-utils.c (default_remote_breakpoint_from_pc): New function.
10266 * arch-utils.h (default_remote_breakpoint_from_pc): Declare.
10267 * gdbarch.c, gdbarch.h: Regenerated.
10268 * gdbarch.sh (remote_breakpoint_from_pc): New architecture method.
10269 * remote.c (remote_insert_breakpoint, remote_insert_hw_breakpoint): Use
10270 gdbarch_remote_breakpoint_from_pc.
10271
10272 2010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
10273
10274 * infrun.c (prepare_to_proceed): Handle other signals which might
10275 match a breakpoint.
10276 (handle_inferior_event): Move the check for unusual breakpoint
10277 signals earlier.
10278
10279 2010-01-29 Paul Hilfinger <hilfinger@adacore.com>
10280
10281 amd64 - function returning record with field straddling 2 registers.
10282 * amd64-tdep.c (amd_classify_aggregate): Handle the case of
10283 a record of length <= 16 in which a field straddles the two
10284 eightbytes.
10285
10286 2010-01-29 Joel Brobecker <brobecker@adacore.com>
10287
10288 Implement return values on amd64-windows.
10289 * amd64-windows-tdep.c: #include gdbcore.h and regcache.h.
10290 (amd64_windows_return_value): New function.
10291 (amd64_windows_init_abi): Call set_gdbarch_return_value with
10292 amd64_windows_return_value.
10293
10294 2010-01-29 Joel Brobecker <brobecker@adacore.com>
10295
10296 amd64-windows: 32 bytes allocated on stack by caller for integer
10297 parameter registers.
10298 * i386-tdep.h (struct gdbarch_tdep): Add new field
10299 integer_param_regs_saved_in_caller_frame.
10300 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
10301 tdep->integer_param_regs_saved_in_caller_frame to 1.
10302 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
10303 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
10304
10305 2010-01-29 Joel Brobecker <brobecker@adacore.com>
10306
10307 amd64-windows: memory args passed by pointer during function calls.
10308 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
10309 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
10310 where tdep->memory_args_by_pointer is non-zero.
10311 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
10312 tdep->memory_args_by_pointer to 1.
10313
10314 2010-01-29 Joel Brobecker <brobecker@adacore.com>
10315
10316 amd64-windows: Integer parameters in function calls.
10317 * i386-tdep.h (enum amd64_reg_class): New, moved here from
10318 amd64-tdep.c.
10319 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
10320 call_dummy_integer_regs, and classify.
10321 * amd64-tdep.h (amd64_classify): Add declaration.
10322 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
10323 (amd64_reg_class): Delete, moved to i386-tdep.h.
10324 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
10325 Replace call to amd64_classify by call to tdep->classify.
10326 (amd64_push_arguments): Get the list of registers to use for
10327 passing integer parameters from the gdbarch tdep structure,
10328 rather than using a hardcoded one. Replace calls to amd64_classify
10329 by calls to tdep->classify.
10330 (amd64_push_dummy_call): Get the register number used for
10331 the "hidden" argument from tdep->call_dummy_integer_regs.
10332 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
10333 and tdep->call_dummy_integer_regs. Set tdep->classify.
10334 * amd64-windows-tdep.c: Add include of gdbtypes.h.
10335 (amd64_windows_dummy_call_integer_regs): New static global.
10336 (amd64_windows_classify): New function.
10337 (amd64_windows_init_abi): Initialize tdep->call_dummy_num_integer_regs
10338 tdep->call_dummy_integer_regs and tdep->classify.
10339
10340 2010-01-28 Daniel Jacobowitz <dan@codesourcery.com>
10341
10342 * regcache.c (regcache_xmalloc): Add aspace argument. Use it
10343 for the new regcache. All callers updated.
10344 (regcache_cpy, regcache_cpy_no_passthrough): Do not set aspace here.
10345 (get_thread_arch_regcache): Do not set aspace here.
10346 * regcache.h (regcache_xmalloc): Update declaration.
10347
10348 * frame.c, infcall.c, ppc-linux-tdep.c: Calls to
10349 regcache_xmalloc updated.
10350
10351 2010-01-28 Joel Brobecker <brobecker@adacore.com>
10352
10353 Another -Wunused-function error in procfs.c (sparc-solaris)
10354 * procfs.c (insert_dbx_link_breakpoint): Delete declaration. Move up.
10355 Only define if SYS_syssgi is defined.
10356 (remove_dbx_link_breakpoint): Delete declaration. Move up.
10357 (dbx_link_addr, insert_dbx_link_bpt_in_file)
10358 (insert_dbx_link_bpt_in_region): Move up. Only define if SYS_syssgi
10359 is itself defined.
10360
10361 2010-01-27 Christopher Faylor <me+cygwin@cgf.cx>
10362
10363 * windows-nat.c (windows_initialization_done): New variable.
10364 (get_windows_debug_event): Issue error when process dies before
10365 completely initializing.
10366 (do_initial_windows_stuff): Set flag to indicate when we are done with
10367 the initial steps of attaching to the child.
10368
10369 2010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
10370
10371 * symtab.h (struct symbol <symtab>): New comment on NULL values.
10372
10373 2010-01-27 Doug Evans <dje@google.com>
10374
10375 * solib-svr4.c (solib_break_names): Add __dl_rtld_db_dlactivity.
10376
10377 * breakpoint.c (bpstat_stop_status): Delete useless code.
10378
10379 2010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
10380
10381 * printcmd.c (display_uses_solib_p): Remove variable section. Access
10382 objfile via SYMBOL_SYMTAB.
10383
10384 2010-01-26 Tom Tromey <tromey@redhat.com>
10385
10386 PR exp/7643:
10387 * eval.c (evaluate_subexp_for_address) <UNOP_IND>: Call
10388 coerce_array on result.
10389
10390 2010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
10391
10392 * cp-namespace.c (cp_lookup_symbol_namespace): Added
10393 search_parent argument.
10394 (cp_add_using): Initialize 'searched' field.
10395 (reset_directive_searched): New function.
10396 * cp-support.h: Add 'searched' field to using_direct struct.
10397 (cp_lookup_symbol_imports): Ditto.
10398 * cp-namespace.c (cp_lookup_symbol_imports): Ditto.
10399 Perform recursive search.
10400 Implement non parent search.
10401 * valops.c (value_maybe_namespace_elt): Updated.
10402
10403 2010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
10404
10405 PR gdb/10929:
10406 * dwarf2read.c (read_lexical_block_scope): Create blocks for
10407 scopes which contain using directives even if they contain no
10408 declarations.
10409 * symtab.c (lookup_symbol_aux): Pass lowest level block to
10410 la_lookup_symbol_nonlocal.
10411 * cp-namespace.c (cp_lookup_symbol_nonlocal): call
10412 cp_lookup_symbol_namespace.
10413 (cp_lookup_symbol_namespace): Perform an import lookup at every
10414 block level.
10415 (cp_lookup_symbol_imports): New function.
10416 (cp_lookup_symbol_in_namespace): New function.
10417
10418 2010-01-25 Tom Tromey <tromey@redhat.com>
10419
10420 PR gdb/11049:
10421 * c-valprint.c (c_val_print): Fix test of extract_unsigned_integer
10422 result.
10423
10424 2010-01-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
10425
10426 * configure.ac: Only use host_os part when disabling TUI on osf.
10427 Use test to check variables, prefix strings with x.
10428 * configure: Regenerate.
10429
10430 * solib-osf.c (osf_current_sos): Initialize tail.
10431
10432 2010-01-25 gingold <gingold@adacore.com>
10433
10434 * windows-nat.c (windows_continue): Use %x to print thread id.
10435 (get_windows_debug_event): Ditto.
10436
10437 2010-01-22 Tom Tromey <tromey@redhat.com>
10438
10439 PR symtab/11199:
10440 * dwarf2read.c (quirk_gcc_member_function_pointer): Change return
10441 type and arguments. Use smash_to_methodptr_type.
10442 (read_structure_type): Call quirk_gcc_member_function_pointer
10443 later.
10444 * gdbtypes.h (smash_to_methodptr_type): Declare.
10445 * gdbtypes.c (smash_to_methodptr_type): New function.
10446 (lookup_methodptr_type): Use it.
10447
10448 2010-01-21 Tom Tromey <tromey@redhat.com>
10449
10450 PR symtab/11198:
10451 * symtab.h (lookup_minimal_symbol_and_objfile): Declare.
10452 * minsyms.c (lookup_minimal_symbol_and_objfile): New function.
10453 * glibc-tdep.c (find_minsym_and_objfile): Remove.
10454 (glibc_skip_solib_resolver): Use
10455 lookup_minimal_symbol_and_objfile.
10456
10457 2010-01-21 Kai Tietz <kai.tietz@onevision.com>
10458
10459 * inflow.c (check_syscall): Guard by #if clause for GO32 and
10460 WIN32 targets.
10461
10462 2010-01-20 Tom Tromey <tromey@redhat.com>
10463
10464 PR backtrace/10770:
10465 * valarith.c (value_binop): Handle BINOP_GTR, BINOP_LEQ, and
10466 BINOP_GEQ. Handle BINOP_NOTEQUAL in the signed case.
10467 * dwarf2expr.c (new_dwarf_expr_context): Allocate
10468 dwarf_stack_values, not CORE_ADDRs.
10469 (execute_stack_op): Change DW_OP_div and comparison operators to
10470 use signed operands.
10471
10472 2010-01-20 Vladimir Prus <vladimir@codesourcery.com>
10473
10474 Per-inferior args and tty and environment.
10475
10476 * infcmd.c (inferior_args): Rename to ...
10477 (inferior_args_scratch): ... this.
10478 (inferior_io_terminal): Rename to ...
10479 (inferior_io_terminal_scratch): ... this.
10480 (inferior_argc, inferior_argv): Remove.
10481 (set_inferior_io_terminal, get_inferior_io_terminal): Store
10482 inside current_inferior().
10483 (set_inferior_tty_command, show_inferior_tty_command): New.
10484 (get_inferior_args, set_inferior_args): Store inside
10485 current_inferior().
10486 (notice_args_set): Likewise and rename to...
10487 (set_args_command): ... this.
10488 (set_inferior_args_vector): Likewise.
10489 (notice_args_read): Rename to...
10490 (show_args_command): ...new.
10491 (tty_command): Remove.
10492 (run_command_1): Don't free old args, as they are freed by
10493 set_inferior_arg now.
10494 (run_no_args_command): Likewise.
10495 (inferior_environ): Remove.
10496 (run_command_1): Use environment of the current inferior.
10497 (environment_info, set_environment_command)
10498 (unset_environment_command, path_info, path_command): Likewise.
10499 (_initialize_infcmd): Adjust for function and variable renames.
10500 Do not init inferior_environ.
10501 * inferior.h (set_inferior_arg): Adjust prototype.
10502 (struct inferior): New fields args, argc, argv, terminal, environment.
10503 (inferior_environ): Remove declaration.
10504 * inferior.c (free_inferior): Free new fields.
10505 (add_inferior_silent): Initialize 'environment' field.
10506 * main.c (captured_main): Set arguments only after the initial
10507 inferior has been created. Set set_inferior_io_terminal,
10508 not tty_command.
10509 * mi/mi-main.c (mi_cmd_env_path): Use environment of the current
10510 inferior.
10511 (_initialize_mi_cmd_env): Adjust for disappearance of global
10512 inferior_environ.
10513 * solib.c (solib_find): Use environment of the current inferior.
10514
10515 2010-01-20 Jan Kratochvil <jan.kratochvil@redhat.com>
10516
10517 * varobj.c (varobj_add_child, install_dynamic_child): Wrap into #if
10518 HAVE_PYTHON.
10519 (instantiate_pretty_printer): Move HAVE_PYTHON outside of the function.
10520
10521 2010-01-20 Joel Brobecker <brobecker@adacore.com>
10522
10523 Get rid of ada-lang.c:function_name_from_pc.
10524 * ada-lang.c: Add "stack.h" #include.
10525 (function_name_from_pc): Delete.
10526 (is_known_support_routine): Replace call to function_name_from_pc
10527 by call to find_frame_funname.
10528 (ada_unhandled_exception_name_addr_from_raise): Likewise.
10529
10530 2010-01-19 Tom Tromey <tromey@redhat.com>
10531
10532 PR c++/11026:
10533 * dwarf2read.c (read_partial_die): Allocate partial DIE's name on
10534 objfile obstack.
10535
10536 2010-01-19 Tom Tromey <tromey@redhat.com>
10537
10538 * top.c (stop_sig, float_handler, do_nothing): Remove.
10539
10540 2010-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
10541
10542 * breakpoint.c (watchpoint_check): Check the call
10543 gdbarch_in_function_epilogue_p before calling frame_find_by_id.
10544 Extend the comment.
10545 * config/djgpp/fnchange.lst: Add translations for
10546 watchpoint-cond-gone.exp, watchpoint-cond-gone.c and
10547 watchpoint-cond-gone-stripped.c.
10548
10549 2010-01-19 Tom Tromey <tromey@redhat.com>
10550
10551 PR c++/8000:
10552 * dwarf2read.c (partial_die_parent_scope): Put enumeration type
10553 into parent scope, and enumerator into grandparent scope.
10554
10555 2010-01-19 Joel Brobecker <brobecker@adacore.com>
10556
10557 * NEWS: Add entry for "set/show ada trust-PAD-over-XVS" commands.
10558
10559 2010-01-19 Joel Brobecker <brobecker@adacore.com>
10560
10561 * configure.host: Make x86_64-*-solaris2.1[0-9]* an alias of
10562 i[34567]86-*-solaris2.1[0-9]*.
10563 * configure.tgt: Likewise.
10564
10565 2010-01-19 Joel Brobecker <brobecker@adacore.com>
10566
10567 * NEWS: Document the source command enhancement allowing it
10568 to load Python scripts. Document the "set/show script-extension"
10569 commands.
10570
10571 2010-01-19 Joel Brobecker <brobecker@adacore.com>
10572
10573 Add -Wunused-function to compile flags.
10574 * configure.ac: Add -Wunused-function to build_warnings.
10575 * configure: Regenerate.
10576
10577 2010-01-19 Joel Brobecker <brobecker@adacore.com>
10578
10579 "delete" ada-lex.c:input function, not used.
10580 * ada-lex.l: #define YY_NO_INPUT.
10581
10582 2010-01-19 Joel Brobecker <brobecker@adacore.com>
10583
10584 Delete free_named_symtabs and associated cleanup.
10585 * symfile.h (free_named_symtabs): Delete declaration.
10586 * symfile.c: Remove some commented out code (clear_symtab_users_once).
10587 (cashier_psymtab): Comment function out.
10588 Delete declaration.
10589 (free_named_symtabs): Delete.
10590 * coffread.c (coff_end_symtab): Remove call to free_named_symtabs.
10591 * dbxread.c (end_psymtab): Likewise.
10592 * dwarf2read.c (process_psymtab_comp_unit): Ditto.
10593 * exec.c (exec_close_1): Ditto.
10594 * xcoffread.c (xcoff_end_psymtab): Likewise.
10595
10596 2010-01-19 Joel Brobecker <brobecker@adacore.com>
10597
10598 * stack.c (print_block_frame_labels): Comment function out.
10599
10600 2010-01-19 Joel Brobecker <brobecker@adacore.com>
10601
10602 Delete unused or undefined functions.
10603 * breakpoint.c (ep_parse_optional_filename): Delete.
10604 * dcache.c (dcache_write_line): Remove declaration.
10605 * infrun.c (build_infrun): Remove declaration.
10606 * tracepoint.c (tracepoint_save_command): Remove declaration.
10607 * linux-nat.c (init_lwp_list): Delete. No longer used.
10608 * event-loop.c (check_async_signal_handlers): Delete declaration.
10609 * infrun.c (init_execution_control_state): Delete.
10610 (proceed): Update comment to avoid mentioning
10611 init_execution_control_state.
10612 * target.c (kill_or_be_killed, nosupport_runtime): Delete.
10613 * ada-lang.c (ada_to_static_fixed_value): Delete.
10614 * scm-lang.c (evaluate_subexp_scm): Delete declaration.
10615 * cp-namespace.c (cp_copy_usings): Delete.
10616 * xml-syscall.c (xml_number_of_syscalls): Delete.
10617 * progspace.c (find_program_space_by_num): Delete.
10618 * inflow.c (handle_sigio): Delete declaration.
10619 * hppa-tdep.c (hppa_alignof): Delete.
10620 * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset)
10621 (mipsnbsd_core_osabi_sniffer): Delete.
10622
10623 2010-01-18 Tom Tromey <tromey@redhat.com>
10624
10625 PR c++/9680:
10626 * c-exp.y (REINTERPRET_CAST, DYNAMIC_CAST, STATIC_CAST)
10627 (CONST_CAST): New tokens.
10628 (exp): Add new productions.
10629 (ident_tokens): Add const_cast, dynamic_cast, static_cast, and
10630 reinterpret_cast.
10631 (is_cast_operator): New function.
10632 (yylex): Handle cast operators specially.
10633 * eval.c (evaluate_subexp_standard) <UNOP_DYNAMIC_CAST,
10634 UNOP_REINTERPRET_CAST>: New cases.
10635 * expprint.c (print_subexp_standard): Likewise.
10636 (op_name_standard): Likewise.
10637 (dump_subexp_body_standard): Likewise.
10638 * parse.c (operator_length_standard): Likewise.
10639 * expression.h (enum exp_opcode): New constants UNOP_DYNAMIC_CAST,
10640 UNOP_REINTERPRET_CAST.
10641 * gdbtypes.c (class_types_same_p): New function.
10642 (is_ancestor): Use it.
10643 (is_public_ancestor): New function.
10644 (is_unique_ancestor_worker): Likewise.
10645 (is_unique_ancestor): Likewise.
10646 * gdbtypes.h (class_types_same_p, is_public_ancestor)
10647 (is_unique_ancestor): Declare.
10648 * valops.c (value_reinterpret_cast): New function.
10649 (dynamic_cast_check_1): Likewise.
10650 (dynamic_cast_check_2): Likewise.
10651 (value_dynamic_cast): Likewise.
10652 * value.h (value_reinterpret_cast, value_dynamic_cast): Declare.
10653
10654 2010-01-18 Joel Brobecker <brobecker@adacore.com>
10655
10656 Fix build failure when building without Python support.
10657 * python/python.c: Always include exceptions.h, even when HAVE_PYTHON
10658 is not defined.
10659
10660 2010-01-18 Joel Brobecker <brobecker@adacore.com>
10661
10662 Use XVS field type instead of doing a parallel lookup.
10663 * ada-lang.c (ada_get_base_type): Follow the XVS field type
10664 if it is a reference type instead of doing a type lookup using
10665 the XVS field name.
10666
10667 2010-01-18 Joel Brobecker <brobecker@adacore.com>
10668
10669 Trust PAD types instead of using PAD___XVS.
10670 * ada-lang.c (trust_pad_over_xvs): New static variable.
10671 (ada_is_aligner_type): If !trust_pad_over_xvs and there is a
10672 parallel XVS type, follow the XVS type instead of the PAD type.
10673 (unwrap_value): Make sure that there is no parallel XVE type
10674 before returning the value as is.
10675 (set_ada_list, show_ada_list): New static variables.
10676 (set_ada_command, show_ada_command): New functions.
10677 (_initialize_ada_language): Add new "set/show ada" prefix commands.
10678 Add new "set/show ada trust-PAD-over-XVS" setting.
10679
10680 2010-01-18 Tom Tromey <tromey@redhat.com>
10681 Thiago Jung Bauermann <bauerman@br.ibm.com>
10682
10683 Allow "source" to load python scripts.
10684 * exceptions.h (enum errors): Add UNSUPPORTED_ERROR.
10685 * python/python.c (source_python_script): New function.
10686 * python/python.h (source_python_script): Add declaration.
10687 * cli/cli-cmds.c: #include exceptions.h and python/python.h.
10688 (script_ext_off, script_ext_soft, script_ext_strict)
10689 (script_ext_enums, script_ext_mode): New static constants.
10690 (show_script_ext_mode, find_and_open_script): New functions.
10691 (source_script): Enhance to handle Python scripts.
10692 (init_cli_cmds): Add set/show script-extension commands.
10693
10694 2010-01-16 Stan Shebs <stan@codesourcery.com>
10695
10696 * tracepoint.h (struct trace_status): Use unsigned long long
10697 instead of size_t.
10698 * tracepoint.c (trace_status_command): Fix printf directive.
10699 (trace_save_command): Check fwrite returns, fix printf directive.
10700 (trace_filename): New global.
10701 (tfile_open): Set it, check read returns.
10702 (tfile_close): Free trace_filename.
10703 (tfile_get_traceframe_address): Check read returns.
10704 (tfile_trace_find): Ditto.
10705 (tfile_fetch_registers): Ditto.
10706 (tfile_xfer_partial): Ditto.
10707 (tfile_get_trace_state_variable_value): Ditto.
10708
10709 2010-01-15 Stan Shebs <stan@codesourcery.com>
10710
10711 Add trace file support.
10712 * tracepoint.h (enum trace_stop_reason): New enum.
10713 (struct trace_status): New struct.
10714 (parse_trace_status): Declare.
10715 (struct uploaded_tp): Move here from remote.c,
10716 add fields for actions.
10717 (struct uploaded_tsv): New struct.
10718 * tracepoint.c (tfile_ops): New target vector.
10719 (trace_fd): New global.
10720 (tfile_open): New function.
10721 (tfile_close): New function.
10722 (tfile_files_info): New function.
10723 (tfile_get_trace_status): New function.
10724 (tfile_get_traceframe_address): New function.
10725 (tfile_trace_find): New function.
10726 (tfile_fetch_registers): New function.
10727 (tfile_xfer_partial): New function.
10728 (tfile_get_trace_state_variable_value): New function.
10729 (init_tfile_ops): New function.
10730 (_initialize_tracepoint): Call it, add tfile target.
10731 (trace_status): New global.
10732 (current_trace_status): New function.
10733 (trace_running_p): Remove, change all users to get from
10734 current_trace_status()->running.
10735 (get_trace_status): Remove.
10736 (trace_status_command): Call target_get_trace_status directly,
10737 report more detail including tracing stop reasons.
10738 (trace_find_command): Always allow tfind on a file.
10739 (trace_find_pc_command): Ditto.
10740 (trace_find_tracepoint_command): Ditto.
10741 (trace_find_line_command): Ditto.
10742 (trace_find_range_command): Ditto.
10743 (trace_find_outside_command): Ditto.
10744 (trace_frames_offset, cur_offset): Declare as off_t.
10745 (trace_regblock_size): Rename from reg_size, update users.
10746 (parse_trace_status): New function.
10747 (tfile_interp_line): New function.
10748 (disconnect_or_stop_tracing): Ensure current trace
10749 status before asking what to do.
10750 (stop_reason_names): New global.
10751 (trace_save_command): New command.
10752 (get_uploaded_tp): Move here from remote.c.
10753 (find_matching_tracepoint): Ditto.
10754 (merge_uploaded_tracepoints): New function.
10755 (parse_trace_status): Use stop_reason_names.
10756 (_initialize_tracepoint): Define tsave command.
10757 * target.h (target_ops): New fields to_save_trace_data,
10758 to_upload_tracepoints, to_upload_trace_state_variables,
10759 to_get_raw_trace_data, change to_get_trace_status
10760 to take a pointer to a status struct.
10761 (target_save_trace_data): New macro.
10762 (target_upload_tracepoints): New macro.
10763 (target_upload_trace_state_variables): New macro.
10764 (target_get_raw_trace_data): New macro.
10765 * target.c (update_current_target): Add new methods, change
10766 signature of to_get_trace_status.
10767 * remote.c (hex2bin): Make globally visible.
10768 (bin2hex): Ditto.
10769 (remote_download_trace_state_variable): Download name also.
10770 (remote_get_trace_status): Update parameter, use
10771 parse_trace_status.
10772 (remote_save_trace_data): New function.
10773 (remote_upload_tracepoints): New function.
10774 (remote_upload_trace_state_variables): New function.
10775 (remote_get_raw_trace_data): New function.
10776 (remote_start_remote): Use them.
10777 (_initialize_remote_ops): Add operations.
10778 * ax-gdb.c: Include breakpoint.h.
10779 * breakpoint.c (create_tracepoint_from_upload): Use
10780 break_command_really, return tracepoint, warn about unimplemented
10781 parts.
10782 * NEWS: Mention trace file addition.
10783
10784 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
10785
10786 Fix compilation warning on gcc-3.4.
10787 * exec.c (print_section_info): Move the `displacement' variable
10788 initialization to its declaration.
10789
10790 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
10791
10792 * gdb-gdb.py (StructMainTypePrettyPrinter): Fix TYPE_CODE_RANGE
10793 comparison.
10794
10795 2010-01-15 Eric Botcazou <botcazou@adacore.com>
10796
10797 "info tasks" broken by typedefs in ATCB type definitions.
10798 * ada-lang.c (ada_template_to_fixed_record_type_1): Add call to
10799 ada_check_typedef before retrieving the length of the type for
10800 regular fields.
10801
10802 2010-01-15 Joel Brobecker <brobecker@adacore.com>
10803
10804 Do not use name-based lookup for unconstrained packed arrays.
10805 * ada-lang.c (find_parallel_type_by_descriptive_type):
10806 Limit the fallback to name-based lookups to the case where
10807 the type is a constrained packed array.
10808
10809 2010-01-15 Joel Brobecker <brobecker@adacore.com>
10810
10811 Enhance gdb-gdb.py to handle main_type.type_specific.
10812 * gdb-gdb.py: Print the type-specific part of struct main_type.
10813
10814 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
10815
10816 * configure.ac (AC_CHECK_FUNCS): Check for setrlimit and getrlimit.
10817 * configure: Regenerate.
10818 * config.in: Regenerate.
10819 * utils.c: Include sys/resource.h.
10820 (dump_core, can_dump_core): New.
10821 (internal_vproblem): Update the comment. Check can_dump_core while
10822 setting dump_core_p. Replace two abort calls by dump_core calls.
10823
10824 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10825 Eli Zaretskii <eliz@gnu.org>
10826
10827 * NEWS: Document the PIE support.
10828
10829 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10830
10831 * linux-tdep.c: Remove includes gdbcore.h, observer.h and elf-bfd.h.
10832 (check_is_pie_binary, _initialize_linux_tdep): Remove.
10833
10834 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10835
10836 * solib-svr4.c (svr4_exec_displacement): New comment for entry_point.
10837 Replace exec_entry_point call by bfd_get_start_address.
10838
10839 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10840
10841 Support Valgrind attachments broken by the PIE support.
10842 * auxv.c: Include gdbcore.h.
10843 (procfs_xfer_auxv): Make static. Reduce its comment. Drop its
10844 parameters ops, object and annex. Remove their assertions.
10845 (ld_so_xfer_auxv, memory_xfer_auxv): New function.
10846 * auxv.h (procfs_xfer_auxv): Remove comment. Rename to ...
10847 (memory_xfer_auxv): ... here.
10848 * linux-nat.c (linux_xfer_partial): Rename procfs_xfer_auxv to
10849 memory_xfer_auxv.
10850 * procfs.c (procfs_xfer_partial): Likewise.
10851 * solib-svr4.c (svr4_relocate_main_executable): New prototype.
10852 (svr4_special_symbol_handling): Call svr4_relocate_main_executable.
10853 (svr4_solib_create_inferior_hook): Conditionalize the
10854 svr4_relocate_main_executable call.
10855
10856 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10857
10858 * solib-svr4.c (scan_dyntag): Remove variable dyn_addr. New variable
10859 target_section. Find SECT in current_target_sections, gdb_assert it.
10860 (elf_lookup_lib_symbol): Pass the binary file if given symfile_objfile.
10861 New variable abfd.
10862 * symtab.c (lookup_objfile_from_block): Return the binary file instead
10863 of separate debug info file.
10864
10865 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10866
10867 Support PIEs with no symfile_objfile.
10868 * exec.c (print_section_info <abfd == exec_bfd>): Relocate Entry point.
10869 * solib-svr4.c (svr4_relocate_main_executable <exec_bfd>): New block.
10870
10871 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10872
10873 * solib-svr4.c (svr4_relocate_main_executable): Move the static exec
10874 code part to ...
10875 (svr4_static_exec_displacement): ... a new function.
10876 (svr4_exec_displacement): New function.
10877 (svr4_relocate_main_executable): Call svr4_exec_displacement. Allocate
10878 new_offsets using alloca now. Remove variable old_chain and changed.
10879 Call objfile_relocate unconditionally now.
10880
10881 2010-01-14 Doug Evans <dje@google.com>
10882
10883 * gdbtypes.c (arch_flags_type): Fix comment.
10884 * gdbtypes.h (arch_composite_type): Fix comment.
10885
10886 2009-01-14 Tristan Gingold <gingold@adacore.com>
10887
10888 * machoread.c (macho_add_oso_symfile): Add symfile_flags parameter.
10889 Call xstrdup for abfd->filename. Pass symfile_flags and objfile flags
10890 to symbol_file_add_from_bfd. Add OSO as separate objfile.
10891 (macho_oso_symfile): Add symfile_flags parameter. Pass it to
10892 macho_add_oso_symfile.
10893 (macho_symfile_read): Pass symfile_flags to macho_oso_symfile.
10894
10895 2010-01-14 Joel Brobecker <brobecker@adacore.com>
10896
10897 Tru64: Dead threads are never deleted.
10898 * dec-thread.c (dec_thread_ptid_is_alive): New function.
10899 (dec_thread_count_gdb_threads): Fix counter increment.
10900 (dec_thread_add_gdb_thread): Fix *listp increment.
10901 (resync_thread_list): Fix bug in deletion of dead threads that
10902 caused all threads to be deleted, instead of just the dead ones.
10903
10904 2010-01-13 Phil Muldoon <pmuldoon@redhat.com>
10905
10906 PR python/10705
10907
10908 * python/python-internal.h: Add lazy_string_object_type
10909 definition.
10910 (create_lazy_string_object, gdbpy_initialize_lazy_string)
10911 (gdbpy_is_lazystring, gdbpy_extract_lazy_string): Define.
10912 * python/py-value.c (valpy_lazy_string): New function.
10913 (convert_value_from_python): Add lazy string conversion.
10914 * python/py-prettyprint.c (pretty_print_one_value): Check if
10915 return is also a lazy string.
10916 (print_string_repr): Add lazy string printing branch.
10917 (print_children): Likewise.
10918 * python/py-lazy-string.c: New file. Implement lazy strings.
10919 * python/python.c (_initialize_python): Call
10920 gdbpy_initialize_lazy_string.
10921 * varobj.c (value_get_print_value): Add lazy string printing
10922 branch. Account for encoding.
10923 * c-lang.c (c_printstr): Account for new encoding argument. If
10924 encoding is NULL, find encoding suited for type, otherwise use
10925 user encoding.
10926 * language.h (language_defn): Add encoding argument.
10927 (LA_PRINT_STRING): Likewise.
10928 * language.c (unk_lang_printstr): Update to reflect new encoding
10929 argument to language_defn.
10930 * ada-lang.h (ada_printstr): Likewise.
10931 * c-lang.h (c_printstr): Likewise.
10932 * p-lang.h (pascal_printstr);
10933 * f-lang.c (f_printstr): Likewise.
10934 * m2-lang.c (m2_printstr): Likewise.
10935 * objc-lang.c (objc_printstr): Likewise.
10936 * p-lang.c (pascal_printstr): Likewise.
10937 * scm-lang.c (scm_printstr): Likewise.
10938 * c-valprint.c (c_val_print): Update LA_PRINT_STRING call for
10939 encoding argument.
10940 * ada-valprint.c (ada_printstr): Likewise.
10941 * f-valprint.c (f_val_print): Likewise
10942 * m2-valprint.c (m2_val_print): Likewise.
10943 * p-valprint.c (pascal_val_print): Likewise.
10944 * expprint.c (print_subexp_standard): Likewise.
10945 * valprint.c (val_print_string): Likewise.
10946 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-lazy-string.
10947 (SUBDIR_PYTHON_SRCS): Likewise.
10948 (py-lazy-string.o): New rule.
10949
10950 2010-01-13 Doug Evans <dje@google.com>
10951
10952 * mi/mi-main.c (list_available_thread_groups): Avoid "may be used
10953 uninitialized" warning from gcc on local `tree'.
10954
10955 2010-01-13 Vladimir Prus <vladimir@codesourcery.com>
10956
10957 Implement core awareness.
10958
10959 * bcache.c (compare_ints): Remove
10960 (print_percentage): Use compare_positive_ints.
10961 * defs.h (compare_positive_ints): Declare.
10962 * linux-nat.h (struct lin_lwp): New field core.
10963 (linux_nat_core_of_thread_1): Declare.
10964 * linux-nat.c (add_lwp): Init the 'core' field.
10965 (linux_nat_wait_1): Record the core.
10966 (linux_nat_core_of_thread_1, linux_nat_core_of_thread): New.
10967 (linux_nat_add_target): Register the above.
10968 * linux-thread-db.c (update_thread_core): New.
10969 (thread_db_find_new_threads): Update core information for
10970 every thread.
10971 * remote.c (struct private_thread_info): New.
10972 (free_private_thread_info, demand_private_info): New.
10973 (PACKET_qXfer_threads, use_osdata_threads): New.
10974 (struct thread_item, threads_parsing_context
10975 (start_thread, end_thread, thread_attributes)
10976 (thread_children, threads_children, threads_elements): New.
10977 (remote_threads_info): Try qXfer:threads before anything
10978 else.
10979 (remote_protocol_packets): Register qXfer:threads.
10980 (remote_open_1): Init use_osdata_threads.
10981 (struct stop_reply): New field 'core'.
10982 (remote_parse_stop_reply): Parse core number.
10983 (process_stop_reply): Record core number.
10984 (remote_xfer_partial): Handle qXfer:threads.
10985 (remote_core_of_thread): New.
10986 (init_remote_ops): Register remote_core_of_thread.
10987 (_initialize_remote): Register qXfer:read.
10988 * target.c (target_core_of_thread): New
10989 * target.h (enum target_object): New value TARGET_OBJECT_THREADS.
10990 (struct target_ops): New field to_core_of_threads.
10991 (target_core_of_thread): Declare.
10992 * gdbthread.h (struct thread_info): New field private_dtor.
10993 * thread.c (print_thread_info): Report the core.
10994 * ui-out.c (MAX_UI_OUT_LEVELS): Increase.
10995 * utils.c (compare_positive_ints): New.
10996 * features/threads.dtd: New.
10997 * mi/mi-interp.c (mi_on_normal_stop): Report the core.
10998 * mi/mi-main.c (struct collect_cores_data, collect_cores)
10999 (do_nothing, free_vector_of_osdata_items)
11000 (splay_tree_int_comparator, free_splay_tree): New.
11001 (print_one_inferior_data): Implemented printing of selected
11002 inferiors. Collect and print cores.
11003 (output_cores): New.
11004 (mi_cmd_list_thread_groups): Support --recurse. Permit specifying
11005 thread groups together with --available.
11006
11007 2010-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
11008
11009 * configure: Regenerate (for _STRUCTURED_PROC).
11010
11011 2010-01-12 Joel Brobecker <brobecker@adacore.com>
11012
11013 Delete dead function.
11014 * ada-lang.c (extract_string): Delete. No longer used.
11015
11016 2010-01-12 Joel Brobecker <brobecker@adacore.com>
11017
11018 Fix -Wunused warning in dec-thread.c.
11019 * dec-thread.c (dec_thread_count_gdb_threads)
11020 (dec_thread_add_gdb_thread): Prevent -Wunused warning.
11021
11022 2010-01-12 Joel Brobecker <brobecker@adacore.com>
11023
11024 * ada-valprint.c (ada_print_floating): Remove trailing space.
11025
11026 2010-01-12 Joel Brobecker <brobecker@adacore.com>
11027
11028 Add support for DW_AT_GNAT_descriptive_type.
11029 * gdbtypes.h (enum type_specific_kind): New enum.
11030 (struct main_type) [type_specific_field]: New component.
11031 [type_specific]: Add new component "gnat_stuff".
11032 (struct gnat_aux_type): New type.
11033 (INIT_CPLUS_SPECIFIC): Also set TYPE_SPECIFIC_FIELD (type).
11034 (HAVE_CPLUS_STRUCT): Also check TYPE_SPECIFIC_FIELD (type).
11035 (gnat_aux_default, allocate_gnat_aux_type): Add declaration.
11036 (INIT_GNAT_SPECIFIC, ALLOCATE_GNAT_AUX_TYPE, HAVE_GNAT_AUX_INFO)
11037 (TYPE_SPECIFIC_FIELD): New macros.
11038 (TYPE_CPLUS_SPECIFIC): Return cplus_struct_default if the given
11039 type does not hold any cplus-specific data.
11040 (TYPE_RAW_CPLUS_SPECIFIC): New macro.
11041 (TYPE_GNAT_SPECIFIC, TYPE_DESCRIPTIVE_TYPE): New macros.
11042 (TYPE_IS_OPAQUE): Use HAVE_CPLUS_STRUCT to check if type has
11043 cplus-specific data.
11044 * gdbtypes.c (allocate_cplus_struct_type): Minor stylistic rewrite.
11045 Set new component TYPE_SPECIFIC_FIELD (type).
11046 (gnat_aux_default): New constant.
11047 (allocate_gnat_aux_type): New function.
11048 (init_type): Add initialization the type-specific stuff for
11049 TYPE_CODE_FLT and TYPE_CODE_FUNC types.
11050 (print_gnat_stuff): New function.
11051 (recursive_dump_type): Use HAVE_CPLUS_STRUCT to check for cplus-
11052 specific data. Adjust code that prints the contents of the
11053 type-specific union using the TYPE_SPECIFIC_FIELD value.
11054 * dwarf2read.c (dwarf2_attach_fields_to_type): Do not allocate
11055 the type cplus stuff for Ada types.
11056 (dwarf2_add_member_fn, dwarf2_attach_fn_fields_to_type):
11057 Error out if these routines are called with an Ada type.
11058 (read_structure_type, read_array_type, read_subrange_type):
11059 Add call to set_descriptive_type.
11060 (set_die_type): Initialize the gnat-specific data if necessary.
11061 (need_gnat_info, die_descriptive_type, set_descriptive_type):
11062 New functions.
11063 * ada-lang.c (decode_constrained_packed_array_type): Use
11064 decode_constrained_packed_array_type instead of doing a standard
11065 lookup to locate a parallel type.
11066 (find_parallel_type_by_descriptive_type): New function.
11067 (ada_find_parallel_type_with_name): New function.
11068 (ada_find_parallel_type): Reimplement using
11069 ada_find_parallel_type_with_name.
11070 * ada-valprint.c (print_field_values): Use HAVE_CPLUS_STRUCT
11071 to check if type has a cplus stuff.
11072 * linespec.c (total_number_of_methods): Likewise.
11073 * mdebugread.c (new_type): Likewise.
11074
11075 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11076
11077 * NEWS: Document the 0b binary number prefix parsing.
11078
11079 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11080
11081 * objfiles.c (objfile_relocate1): Change the return type to int.
11082 Describe the new return value. Return non-zero if data changed.
11083 (objfile_relocate): New variable changed. Set it. Call
11084 breakpoint_re_set depending on CHANGED.
11085
11086 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11087
11088 Implement binary numbers parsing.
11089 * c-exp.y (parse_number): New case 'b' and 'B'.
11090
11091 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11092 Tristan Gingold <gingold@adacore.com>
11093
11094 * solib.c (info_sharedlibrary_command): Replace
11095 objfile_has_partial_symbols and objfile_has_full_symbols calls by
11096 objfile_has_symbols.
11097
11098 2010-01-10 Joel Brobecker <brobecker@adacore.com>
11099
11100 * NEWS: Document the improvements made to the mips-irix port.
11101
11102 2010-01-09 Joel Brobecker <brobecker@adacore.com>
11103
11104 Fix the documentation of valprint.c:value_print.
11105 * valprint.c (value_print): Update the function description to
11106 mention that the syntax of the output follows the current_language,
11107 not necessarily C.
11108
11109 2010-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
11110
11111 Fix displacement of separate debug info files.
11112 * objfiles.c (objfile_relocate): Rename to ...
11113 (objfile_relocate1): ... here and make it static. Extend the comment.
11114 (objfile_relocate): New function.
11115 * solib-spu.c (spu_relocate_main_executable): Explicitly check if
11116 SYMFILE_OBJFILE is NULL. Remove variables objfile and old_chain.
11117 Remove following of SEPARATE_DEBUG_OBJFILE. new_offsets is now
11118 allocated using alloca.
11119 * symfile.c (copy_section_addr_info): Remove.
11120 (build_section_addr_info_from_objfile): Make it global. New variables
11121 addr_bit and mask, use them.
11122 * symfile.h (build_section_addr_info_from_objfile): New prototype.
11123 (copy_section_addr_info): Remove.
11124
11125 2010-01-09 Joel Brobecker <brobecker@adacore.com>
11126
11127 Signal unwinder for mips-irix N32.
11128 * mips-irix-tdep.c: #include mips-tdep.h, trad-frame.h, and
11129 tramp-frame.h.
11130 (SIGTRAMP_FRAME_SIZE, SIGCONTEXT_PC_OFF, SIGCONTEXT_REGS_OFF)
11131 (SIGCONTEXT_FPREGS_OFF, SIGCONTEXT_FPCSR_OFF, SIGCONTEXT_HI_OFF)
11132 (SIGCONTEXT_LO_OFF): New macros.
11133 (mips_irix_n32_tramp_frame_init): New function.
11134 (mips_irix_n32_tramp_frame): New static constant.
11135 (mips_irix_init_abi): Prepend the mips_irix_n32_tramp_frame unwinder.
11136
11137 2010-01-09 Joel Brobecker <brobecker@adacore.com>
11138
11139 Breakpoint in shared library does not work on mips-irix.
11140 * procfs.c: #include "observer.h".
11141 (procfs_inferior_created): New function, moving here the code
11142 which unsets the syssgi syscall-exit notifications.
11143 (procfs_create_inferior): Remove the code which unsets the syssgi
11144 syscall-exit notifications. It is too early to do this here.
11145 (_initialize_procfs): Attach the procfs_inferior_created observer.
11146
11147 2010-01-09 Joel Brobecker <brobecker@adacore.com>
11148
11149 Wrong return convention for arrays (mips-irix).
11150 * mips-tdep.c (mips_n32n64_return_value): Arrays whose size is
11151 128 bits or smaller are returned the same way as structs
11152 and unions of the the same size.
11153
11154 2010-01-09 Joel Brobecker <brobecker@adacore.com>
11155
11156 Cannot set the PC on mips-irix.
11157 * irix5-nat.c (fill_gregset): Check regno against the raw PC
11158 register number, no the cooked one.
11159
11160 2010-01-09 Joel Brobecker <brobecker@adacore.com>
11161
11162 Error while loading core file on mips-irix.
11163 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing
11164 if debugging from a core file.
11165
11166 2010-01-09 Joel Brobecker <brobecker@adacore.com>
11167
11168 GDB hangs when attaching to process on mips-irix.
11169 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing if
11170 attaching to a process.
11171
11172 2010-01-09 Joel Brobecker <brobecker@adacore.com>
11173
11174 Use the correct breakpoint instruction on mips-irix.
11175 * mips-tdep.c (mips_breakpoint_from_pc): Add new static variable
11176 containing the correct breakpoint instruction to use on mips-irix.
11177 Use it when the osabi is GDB_OSABI_IRIX.
11178
11179 2010-01-09 Joel Brobecker <brobecker@adacore.com>
11180
11181 -Wunused warning in procfs.c (mips-irix only).
11182 * procfs.c (gdb_praddset, gdb_prdelset): New macros. Use them
11183 throughout instead of using praddset and prdelset respectively.
11184
11185 2010-01-09 Joel Brobecker <brobecker@adacore.com>
11186
11187 GDB crash while stepping into function.
11188 * infrun.c (handle_inferior_event): Refetch the current frame
11189 after handling what.main_action, in case that pointer became
11190 dangling.
11191
11192 2010-01-09 Joel Brobecker <brobecker@adacore.com>
11193
11194 Fix build failure of solaris-hosted cross debuggers.
11195 * ada-valprint.c, parse.c: Include defs.h before including ctype.h.
11196
11197 2010-01-09 Daniel Gutson <dgutson@codesourcery.com>
11198
11199 Fix build failure on sparc-solaris.
11200 * procfs.c: (procfs_do_thread_registers) Use elfcore_write_lwpstatus.
11201
11202 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
11203
11204 Move some symfile code into subroutines.
11205 * symfile.h (relative_addr_info_to_section_offsets)
11206 (addr_info_make_relative): New prototypes.
11207 * symfile.c (default_symfile_offsets): Move a part to ...
11208 (relative_addr_info_to_section_offsets): ... this new function.
11209 (default_symfile_offsets): Call it.
11210 (syms_from_objfile <!mainline && addrs && addrs->other[0].name>): Move
11211 this part to ...
11212 (addr_info_make_relative): ... this new function.
11213
11214 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
11215
11216 Add from_tty to solib_create_inferior_hook.
11217 * infcmd.c (post_create_inferior): Move solib_add after
11218 solib_create_inferior_hook. Pass from_tty to
11219 solib_create_inferior_hook. Call solib_add and SOLIB_ADD with
11220 0 from_tty and comment why.
11221 * infrun.c (follow_exec): Pass from_tty solib_create_inferior_hook as 0.
11222 * linux-nat.c (linux_child_follow_fork): Likewise.
11223 * nto-procfs.c (procfs_post_attach, procfs_create_inferior): Likewise.
11224 * solib-darwin.c (darwin_solib_create_inferior_hook): New parameter
11225 from_tty.
11226 * solib-frv.c (frv_solib_create_inferior_hook): Likewise.
11227 * solib-irix.c (irix_solib_create_inferior_hook): Likewise.
11228 * solib-null.c (null_solib_create_inferior_hook): Likewise.
11229 * solib-osf.c (osf_solib_create_inferior_hook): Likewise.
11230 * solib-pa64.c (pa64_solib_create_inferior_hook): Likewise.
11231 * solib-som.c (som_solib_create_inferior_hook): Likewise.
11232 * solib-spu.c (spu_solib_create_inferior_hook): New parameter from_tty.
11233 Pass it to svr4_so_ops.solib_create_inferior_hook.
11234 * solib-sunos.c (sunos_solib_create_inferior_hook): New parameter
11235 from_tty.
11236 * solib-svr4.c (enable_break): New parameter from_tty. Pass it to
11237 solib_add.
11238 (svr4_solib_create_inferior_hook): New parameter from_tty. Pass it to
11239 enable_break.
11240 * solib-target.c (solib_target_solib_create_inferior_hook): New
11241 parameter from_tty.
11242 * solib.c (solib_create_inferior_hook): New parameter from_tty. Pass
11243 it to ops->solib_create_inferior_hook.
11244 (reload_shared_libraries): Pass from_tty to solib_create_inferior_hook.
11245 Move solib_add after solib_create_inferior_hook, call it now with
11246 from_tty as 0. New comment there.
11247 * solib.h (solib_create_inferior_hook): New parameter from_tty.
11248 * solist.h (struct target_so_ops <solib_create_inferior_hook>):
11249 Likewise.
11250
11251 2010-01-08 Vladimir Prus <vladimir@codesourcery.com>
11252
11253 Fix multiexec race.
11254 * infrun.c (handle_inferior_event): Use get_thread_regcache
11255 with events ptid, not get_current_regcache.
11256
11257 2009-01-08 Joel Brobecker <brobecker@adacore.com>
11258
11259 GDB crash with empty executable name (MinGW).
11260 * source.c (openp): Add assert that parameter string is not NULL.
11261 if parameter string is an empty string, then return with a failure
11262 immediately.
11263
11264 2009-01-08 Joel Brobecker <brobecker@adacore.com>
11265
11266 Get rid of support for VAX Floats.
11267 * ada-lang.h (ada_is_vax_floating_type, ada_vax_float_type_suffix)
11268 (ada_vax_float_print_function): Delete.
11269 * ada-lang.c (ada_is_vax_floating_type, ada_vax_float_type_suffix)
11270 (ada_vax_float_print_function): Delete.
11271 * ada-typeprint.c (print_vax_floating_point_type): Delete.
11272 (ada_print_type): Remove support for VAX floats.
11273 * ada-valprint.c (ada_val_print_1): Remove support for VAX floats.
11274
11275 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
11276
11277 * stabsread.c (read_args): Handle zero arguments.
11278
11279 2009-01-08 Joel Brobecker <brobecker@adacore.com>
11280
11281 Cannot find in-tree libiconv.a after reconfigure.
11282 * acinclude.m4 (AM_ICONV): If we find an in-tree libiconv.a
11283 that we can use, then cache the path to this archive.
11284 * configure: Regenerate.
11285
11286 2010-01-07 Stan Shebs <stan@codesourcery.com>
11287
11288 Make tracepoint operations go through target vector.
11289 * target.h (enum trace_find_type): New enum.
11290 (struct target_ops): New fields to_trace_init,
11291 to_download_tracepoint, to_download_trace_state_variable,
11292 to_trace_set_readonly_regions, to_trace_start, to_get_trace_status,
11293 to_trace_stop, to_trace_find, to_get_trace_state_variable_value,
11294 to_set_disconnected_tracing.
11295 (target_trace_init): New macro.
11296 (target_download_tracepoint): New macro.
11297 (target_download_trace_state_variable): New macro.
11298 (target_trace_start): New macro.
11299 (target_trace_set_readonly_regions): New macro.
11300 (target_get_trace_status): New macro.
11301 (target_trace_stop): New macro.
11302 (target_trace_find): New macro.
11303 (target_get_trace_state_variable_value): New macro.
11304 (target_set_disconnected_tracing): New macro.
11305 * target.c (update_current_target): Inherit and set defaults for
11306 tracepoint operations.
11307 * tracepoint.c (default_collect): Make globally visible.
11308 (target_is_remote): Remove, along with all calls.
11309 (tvariables_info): Call target_get_trace_state_variable_value.
11310 (remote_set_transparent_ranges): Remove.
11311 (trace_start_command): Call target_trace_init,
11312 target_download_tracepoint, etc.
11313 (download_tracepoint): Remove.
11314 (trace_stop_command): Simplify.
11315 (stop_tracing): Call target_trace_stop.
11316 (get_trace_status): Call target_get_trace_status.
11317 (trace_status_command): Add case for targets that cannot trace.
11318 (finish_tfind_command): Change to take numerical arguments, call
11319 target_trace_find.
11320 (trace_find_command): Update call to finish_tfind_command.
11321 (trace_find_pc_command): Ditto.
11322 (trace_find_tracepoint_command): Ditto.
11323 (trace_find_line_command): Ditto.
11324 (trace_find_range_command): Ditto.
11325 (trace_find_outside_command): Ditto.
11326 (set_disconnected_tracing_value): Call
11327 target_set_disconnected_tracing.
11328 * remote.c: Add protocol encoding bits from tracepoint.c.
11329 (trace_error): Move from tracepoint.c.
11330 (remote_get_noisy_reply): Ditto.
11331 (free_actions_list_cleanup_wrapper): Ditto.
11332 (free_actions_list): Ditto.
11333 (remote_trace_init): New function.
11334 (remote_download_tracepoint): New function.
11335 (remote_download_trace_state_variable): New function.
11336 (remote_trace_set_readonly_regions): New function.
11337 (remote_trace_start): New function.
11338 (remote_get_trace_status): New function.
11339 (remote_trace_stop): New function.
11340 (remote_trace_find): New function.
11341 (remote_download_trace_state_variable): New function.
11342 (remote_set_disconnected_tracing): New function.
11343 (init_remote_ops): Add tracepoint operations.
11344
11345 * tracepoint.c (trace_dump_command): Don't decr_pc_after_break.
11346
11347 2010-01-07 Tristan Gingold <gingold@adacore.com>
11348
11349 * symfile.c (build_section_addr_info_from_objfile): New function.
11350 (symbol_file_add_separate): Don't use offsets from objfile but
11351 built an addr info.
11352
11353 2010-01-06 Stan Shebs <stan@codesourcery.com>
11354
11355 Support disconnected tracing.
11356 * infcmd.c (detach_command): Ask whether to stop tracing.
11357 * cli/cli-cmds.c (quit_command): Ditto.
11358 * breakpoint.h (struct breakpoint): New field number_on_target.
11359 * breakpoint.c (create_tracepoint_from_upload): New function.
11360 (get_tracepoint_by_number_on_target): New function.
11361 * remote.c (struct remote): New field disconnected_tracing.
11362 (remote_disconnected_tracing_feature): New function.
11363 (remote_protocol_features): Add DisconnectedTracing.
11364 (struct uploaded_tp): New struct.
11365 (uploaded_tps): New global.
11366 (get_uploaded_tp): New function.
11367 (find_matching_tracepoint): New function.
11368 (remote_get_tracing_state): New function.
11369 (remote_start_remote): Call it.
11370 * tracepoint.c (disconnected_tracing): New global.
11371 (trace_start_command): Initialize number_on_target.
11372 (stop_tracing): New function, split out from...
11373 (trace_stop_command): Call stop_tracing.
11374 (get_trace_status): New function, split out from...
11375 (trace_status_command): Call get_trace_status, add info on
11376 disconnection behavior.
11377 (disconnect_or_stop_tracing): New function.
11378 (finish_tfind_command): Translate from number on target.
11379 (trace_find_tracepoint_command): Translate to number on target.
11380 (send_disconnected_tracing_value): New function.
11381 (set_disconnected_tracing): New function.
11382 (_initialize_tracepoint): Add disconnected-tracing variable.
11383 * NEWS: Mention disconnected tracing.
11384
11385 2010-01-06 Tristan Gingold <gingold@adacore.com>
11386
11387 * symtab.c (lookup_global_symbol_from_objfile): Rename objfile
11388 parameter to main_objfile. Iterate on all separate debug objfiles.
11389 * symfile.h (symbol_file_add_separate)
11390 (find_separate_debug_file_by_debuglink): Remove parameter names.
11391 * symfile.c (symbol_file_add_separate): Use add_separate_objfile.
11392 (reread_symbols): Use free_objfile_separate_debug.
11393 * objfiles.h (struct objfile): Add separate_debug_objfile_link.
11394 Adjust comment.
11395 (objfile_separate_debug_iterate, add_separate_debug_objfile)
11396 (free_objfile_separate_debug): New prototypes.
11397 * objfiles.c (objfile_separate_debug_iterate): New function.
11398 (add_separate_debug_objfile, free_objfile_separate_debug): New
11399 functions.
11400 (free_objfile): Use free_objfile_separate_debug. Adjust for
11401 multiple separate debug objfile.
11402 (objfile_has_symbols): Adjust comment. Iterate on all separate
11403 debug objfiles.
11404 * minsyms.c (lookup_minimal_symbol): Adjust for multiple separate
11405 debug objfile.
11406 (lookup_minimal_symbol_text): Ditto.
11407 (lookup_minimal_symbol_by_pc_name): Ditto.
11408 (lookup_minimal_symbol_solib_trampoline): Ditto.
11409 (lookup_minimal_symbol_by_pc_section_1): Iterate on all separate
11410 debug objfiles.
11411
11412 2010-01-05 Stan Shebs <stan@codesourcery.com>
11413
11414 Add fast tracepoints.
11415 * arch-utils.h (default_fast_tracepoint_valid_at): Declare.
11416 * arch-utils.c (default_fast_tracepoint_valid_at): New function.
11417 * breakpoint.h (enum bptype): Add bp_fast_tracepoint.
11418 * breakpoint.c (tracepoint_type): New function.
11419 (ALL_TRACEPOINTS): Use it.
11420 (should_be_inserted): Ditto.
11421 (bpstat_check_location): Ditto.
11422 (print_one_breakpoint_location): Ditto.
11423 (user_settable_breakpoint): Ditto.
11424 (set_breakpoint_location_function): Ditto.
11425 (disable_breakpoints_in_shlibs): Ditto.
11426 (delete_trace_command): Ditto.
11427 (print_it_typical): Add bp_fast_tracepoint case.
11428 (bpstat_what): Ditto.
11429 (print_one_breakpoint_location): Ditto.
11430 (allocate_bp_location): Ditto.
11431 (mention): Ditto.
11432 (breakpoint_re_set_one): Ditto.
11433 (disable_command): Ditto.
11434 (enable_command): Ditto.
11435 (check_fast_tracepoint_sals): New function.
11436 (break_command_really): Call it.
11437 (ftrace_command): New function.
11438 (_initialize_breakpoint): Add ftrace command.
11439 * gdbarch.sh (fast_tracepoint_valid_at): New.
11440 * gdbarch.h, gdbarch.c: Regenerate.
11441 * i386-tdep.c (i386_fast_tracepoint_valid_at): New function.
11442 (i386_gdbarch_init): Use it.
11443 * remote.c (struct remote_state): New field fast_tracepoints.
11444 (PACKET_FastTracepoints): New packet config type.
11445 (remote_fast_tracepoint_feature): New function.
11446 (remote_protocol_features): Add FastTracepoints.
11447 (remote_supports_fast_tracepoints): New function.
11448 (_initialize_remote): Add FastTracepoints.
11449 * tracepoint.c (download_tracepoint): Add fast tracepoint option.
11450 * NEWS: Mention fast tracepoints.
11451
11452 2010-01-06 Joel Brobecker <brobecker@adacore.com>
11453
11454 * gdb-gdb.py: New file.
11455
11456 2010-01-05 Michael Snyder <msnyder@vmware.com>
11457
11458 * infrun.c (handle_inferior_event): Fix typo in comment.
11459
11460 2010-01-05 Jan Kratochvil <jan.kratochvil@redhat.com>
11461
11462 * symfile.c (syms_from_objfile): Remove the !MAINLINE conditional.
11463
11464 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
11465
11466 * features/Makefile (WHICH): Add s390-linux32, s390-linux64,
11467 and s390x-linux64.
11468 (s390-linux32-expedite): Define.
11469 (s390-linux64-expedite): Define.
11470 (s390x-linux64-expedite): Define.
11471 * features/s390-acr.xml: New file.
11472 * features/s390-fpr.xml: New file.
11473 * features/s390-core32.xml: New file.
11474 * features/s390-core64.xml: New file.
11475 * features/s390x-core64.xml: New file.
11476 * features/s390-linux32.xml: New file.
11477 * features/s390-linux64.xml: New file.
11478 * features/s390x-linux64.xml: New file.
11479 * features/s390-linux32.c: New generated file.
11480 * features/s390-linux64.c: New generated file.
11481 * features/s390x-linux64.c: New generated file.
11482
11483 * regformats/s390-linux32.dat: New generated file.
11484 * regformats/s390-linux64.dat: New generated file.
11485 * regformats/s390x-linux64.dat: New generated file.
11486 * regformats/reg-s390.dat: Remove.
11487 * regformats/reg-s390x.dat: Remove.
11488
11489 * s390-nat.c: Include "auxv.h" and <elf.h>.
11490 (HWCAP_S390_HIGH_GPRS): Define if undefined.
11491 (s390_target_wordsize): New function.
11492 (s390_auxv_parse): Likewise.
11493 (s390_get_hwcap): Likewise.
11494 (s390_read_description): Likewise.
11495 (_initialize_s390_nat): Install s390_auxv_parse and
11496 s390_read_description.
11497
11498 * s390-tdep.c: Include "features/s390-linux32.c",
11499 "features/s390-linux64.c", and "features/s390x-linux64.c".
11500 (struct gdbarch_tdep): Add gpr_full_regnum, pc_regnum, and cc_regnum.
11501 (s390_register_call_saved): New function.
11502 (s390_register_name): Remove.
11503 (s390_register_type): Remove.
11504 (s390_dwarf_regmap): Add lower half GPR pseudo DWARF CFI regnums.
11505 (s390_dwarf_reg_to_regnum): Remap GPR regnums to full GPRs.
11506 (s390_adjust_frame_regnum): Remap GPR regnums to lower halves for CFI.
11507 (s390_pseudo_register_name): New function.
11508 (s390_pseudo_register_type): New function.
11509 (s390_pseudo_register_read): Handle both 32-bit and 64-bit cases.
11510 Handle full GPR pesudos and varying pseudo register numbers.
11511 (s390_pseudo_register_write): Likewise
11512 (s390x_pseudo_register_read): Remove.
11513 (s390x_pseudo_register_write): Likewise.
11514 (s390_register_group): Remove.
11515 (s390_pseudo_register_group): New function.
11516 (s390_regmap_gregset): Add GPR upper halves.
11517 (s390x_regmap_gregset): Likewise.
11518 (s390_regmap_fpregset): Likewise.
11519 (s390_regmap_upper): New global variable.
11520 (s390_upper_regset): New global variable.
11521 (s390_upper_regset_sections): New global variable.
11522 (s390_regset_from_core_section): Handle GPR upper halves.
11523 (s390_core_read_description): New function.
11524 (s390_prologue_frame_unwind_cache): Set up ABI call-saved/clobbered
11525 register information. Handle varying pseudo register numbers.
11526 (s390_backchain_frame_unwind_cache): Likewise.
11527 (s390_frame_prev_register): Unwind full GPRs to show lower halves.
11528 (s390_stub_frame_unwind_cache): Handle varying pseudo register numbers.
11529 (s390_sigtramp_frame_unwind_cache): Unwind PSWM and PSWA as well as
11530 PC and CC pseudos. Unwind upper halves and full GPRs as appropriate.
11531 Handle varying pseudo register numbers.
11532 (s390_unwind_pc): Handle varying pseudo register numbers.
11533 (s390_dwarf2_prev_register): New function.
11534 (s390_dwarf2_frame_init_reg): Set up ABI call-saved/clobbered
11535 register information. Handle varying pseudo register numbers.
11536 Install s390_dwarf2_prev_register to unwind full GPRs.
11537 (s390_gdbarch_init): Handle target descriptions. Assign varying
11538 pseudo register numbers. Install s390_adjust_frame_regnum.
11539 (_initialize_s390_tdep): Initialize target descriptions.
11540
11541 * s390-tdep.h (S390_R0_UPPER_REGNUM .. S390_R15_UPPER_REGNUM): Define.
11542 (S390_NUM_REGS): Redefine to include upper half registers.
11543 (S390_PC_REGNUM, S390_CC_REGNUM): Remove.
11544 (S390_NUM_PSEUDO_REGS, S390_NUM_TOTAL_REGS): Likewise.
11545 (tdesc_s390_linux32): Add declaration.
11546 (tdesc_s390_linux64): Likewise.
11547 (tdesc_s390x_linux64): Likewise.
11548
11549 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
11550
11551 * regset.h (struct core_regset_section): Add HUMAN_NAME.
11552 * i386-linux-tdep.c (i386_linux_regset_sections): Fill in HUMAN_NAME.
11553 * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
11554 (ppc_linux_vmx_regset_sections): Likewise.
11555 (ppc_linux_fp_regset_sections): Likewise.
11556
11557 * corelow.c (get_core_register_section): Constify arguments.
11558 (get_core_registers): Use gdbarch_core_regset_sections instead
11559 of hard-coded platform-specific register section names.
11560
11561 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
11562
11563 * dwarf2loc.c (read_pieced_value): If a piece occupies part of
11564 a register, assume the least-significant part is used.
11565 (write_pieced_value): Likewise.
11566
11567 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
11568
11569 * printcmd.c: Include "arch-utils.h".
11570 (do_one_display): Re-parse expression if current architecture changed.
11571
11572 2010-01-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11573 Joel Brobecker <brobecker@adacore.com>
11574
11575 * gdbtypes.c (check_typedef): New comment on type length.
11576 * value.c (allocate_value_lazy): Remove the unused atype variable. New
11577 comment on type length.
11578 (value_primitive_field): Keep the original TYPE value, new comment.
11579
11580 2010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
11581
11582 * cli/cli-script.c (process_next_line): Rename p1 as p_end and p2 as
11583 p_start. Change != comparisons to > and < comparisons.
11584
11585 2010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
11586
11587 * cli/cli-script.c (process_next_line): Check P2 overrun.
11588
11589 2009-01-01 Joel Brobecker <brobecker@adacore.com>
11590
11591 Update the copyright hearder to add year 2010 for most GDB files.
11592
11593 2009-01-01 Joel Brobecker <brobecker@adacore.com>
11594
11595 Fix build failure in inf-ptrace.c.
11596 * inf-ptrace.c (inf_ptrace_follow_fork): Fix typo.
11597
11598 2010-01-01 Joel Brobecker <brobecker@adacore.com>
11599
11600 * top.c (print_gdb_version): Update copyright year.
11601
11602 2010-01-01, 10 Joel Brobecker <brobecker@adacore.com>
11603
11604 Fix break *FUN'address thread NUM.
11605 * ada-lex.l (task): Expand rule to also match the thread keyword.
11606
11607 2010-01-01 Joel Brobecker <brobecker@adacore.com>
11608
11609 Fix break *FUN'address task NUM.
11610 * ada-lex.l (task): New rule.
11611 * ada-lang.c (valid_task_id): Make sure the Ada task list has
11612 been built before using it.
11613
11614 For older changes see ChangeLog-2009.
11615 \f
11616 Local Variables:
11617 mode: change-log
11618 left-margin: 8
11619 fill-column: 74
11620 version-control: never
11621 coding: utf-8
11622 End:
This page took 0.2727 seconds and 4 git commands to generate.